From 6a882568b9fac11b352ee37c44e14b30d70c1a51 Mon Sep 17 00:00:00 2001 From: liabru Date: Mon, 22 Jun 2015 10:58:09 +0100 Subject: [PATCH 01/10] initial work on browser tests --- .gitignore | 2 + demo/js/Demo.js | 3 + tests/browser/TestDemo.js | 168 ++++++++++ tests/browser/lib/lodash.js | 98 ++++++ tests/browser/lib/resurrect.js | 542 +++++++++++++++++++++++++++++++++ 5 files changed, 813 insertions(+) create mode 100644 tests/browser/TestDemo.js create mode 100644 tests/browser/lib/lodash.js create mode 100644 tests/browser/lib/resurrect.js diff --git a/.gitignore b/.gitignore index ed24ce21..6ec1a08d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ matter-doc-theme build/matter-dev.js build/matter-dev.min.js demo/js/lib/matter-dev.js +tests/browser/diffs +tests/browser/worlds \ No newline at end of file diff --git a/demo/js/Demo.js b/demo/js/Demo.js index 2d23dcd3..8e75d60e 100644 --- a/demo/js/Demo.js +++ b/demo/js/Demo.js @@ -34,6 +34,8 @@ _sceneEvents = [], _useInspector = window.location.hash.indexOf('-inspect') !== -1, _isMobile = /(ipad|iphone|ipod|android)/gi.test(navigator.userAgent); + + window.Matter.Demo = Demo; // initialise the demo @@ -51,6 +53,7 @@ // create a Matter engine // NOTE: this is actually Matter.Engine.create(), see the aliases at top of this file _engine = Engine.create(container, options); + window.Matter.Demo._engine = _engine; // add a mouse controlled constraint _mouseConstraint = MouseConstraint.create(_engine); diff --git a/tests/browser/TestDemo.js b/tests/browser/TestDemo.js new file mode 100644 index 00000000..3d63cf9b --- /dev/null +++ b/tests/browser/TestDemo.js @@ -0,0 +1,168 @@ +var page = require('webpage').create(); +var fs = require('fs'); +var Resurrect = require('./lib/resurrect'); +var _ = require('./lib/lodash'); + +page.onConsoleMessage = function(msg) { + console.log(msg); +}; + +page.onError = function(msg) { + console.log(msg); +}; + +phantom.onError = function(msg, trace) { + var msgStack = ['PHANTOM ERROR: ' + msg]; + if (trace && trace.length) { + msgStack.push('TRACE:'); + trace.forEach(function(t) { + msgStack.push(' -> ' + (t.file || t.sourceURL) + ': ' + t.line + (t.function ? ' (in function ' + t.function +')' : '')); + }); + } + console.error(msgStack.join('\n')); + phantom.exit(1); +}; + +var log = function(msg) { + console.log(JSON.stringify(msg)); +} + +var type = function(obj) { + // https://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/ + if (obj === global) { + return "global"; + } + return ({}).toString.call(obj).match(/\s([a-z|A-Z]+)/)[1].toLowerCase(); +}; + +var compare = function(objectA, objectB) { + if (objectA === objectB) { + return { equal: true }; + } + + if ((type(objectA) === 'undefined' && type(objectB) === 'null') + || (type(objectA) === 'null' && type(objectB) === 'undefined')) { + return { equal: true }; + } + + if (type(objectA) !== type(objectB)) { + return { equal: false, expected: type(objectA), actual: type(objectB) }; + } + + if (_.isNumber(objectA)) { + if (objectA.toFixed(5) === objectB.toFixed(5)) { + return { equal: true }; + } else { + return { equal: false, expected: objectA, actual: objectB }; + } + } + + if (_.isArray(objectA)) { + var arrayDelta = [], + isEqual = true; + + for (var i = 0; i < Math.max(objectA.length, objectB.length); i++) { + var diff = compare(objectA[i], objectB[i]); + arrayDelta[i] = diff; + + if (diff.equal !== true) { + isEqual = false; + } + } + + return isEqual ? { equal: true } : arrayDelta; + } + + if (_.isObject(objectA)) { + var keys = _.union(_.keys(objectA), _.keys(objectB)), + objectDelta = { equal: true }; + + for (var i = 0; i < keys.length; i++) { + var key = keys[i], + diff = compare(objectA[key], objectB[key]); + + if (diff.equal !== true) { + objectDelta[key] = diff; + objectDelta.equal = false; + } + } + + return objectDelta.equal ? { equal: true } : objectDelta; + } + + return { equal: false, expected: objectA, actual: objectB }; +}; + +page.open('http://localhost:9000/demo/dev.html', function(status) { + var demos = page.evaluate(function() { + var options = Array.prototype.slice.call(document.getElementById('demo-select').options); + return options.map(function(o) { return o.value }); + }); + + var worldsPath = 'tests/browser/worlds', + diffsPath = 'tests/browser/diffs' + resurrect = new Resurrect({ cleanup: true }), + frames = 10; + + fs.removeTree(diffsPath); + fs.makeDirectory(diffsPath); + + console.log(demos); + + for (var i = 0; i < demos.length; i += 1) { + var demo = demos[i], + worldStartPath = worldsPath + '/' + demo + '/' + demo + '-0.json', + worldEndPath = worldsPath + '/' + demo + '/' + demo + '-' + frames + '.json', + worldStartDiffPath = diffsPath + '/' + demo + '/' + demo + '-0.json', + worldEndDiffPath = diffsPath + '/' + demo + '/' + demo + '-' + frames + '.json'; + + var worldStart = page.evaluate(function(demo) { + var engine = Matter.Demo._engine; + Matter.Runner.stop(engine); + Matter.Demo[demo](); + return engine.world; + }, demo); + + var worldEnd = page.evaluate(function(demo, frames) { + var engine = Matter.Demo._engine; + for (var j = 0; j <= frames; j += 1) { + Matter.Events.trigger(engine, 'tick', { timestamp: engine.timing.timestamp }); + Matter.Engine.update(engine, engine.timing.delta); + Matter.Events.trigger(engine, 'afterTick', { timestamp: engine.timing.timestamp }); + } + return engine.world; + }, demo, frames); + + if (fs.exists(worldStartPath)) { + var worldStartRef = resurrect.resurrect(fs.read(worldStartPath)); + var worldStartDiff = compare(worldStart, worldStartRef); + + if (!worldStartDiff.equal) { + fs.write(worldStartDiffPath, JSON.stringify(worldStartDiff, null, 2), 'w'); + console.log(demo, 'start equal:', worldStartDiff.equal); + } + } else { + console.warn('no existing start reference world for', demo); + fs.write(worldStartPath, resurrect.stringify(worldStart), 'w'); + console.log('wrote', worldEndPath); + } + + if (fs.exists(worldEndPath)) { + var worldEndRef = resurrect.resurrect(fs.read(worldEndPath)); + var worldEndDiff = compare(worldEnd, worldEndRef); + + if (!worldEndDiff.equal) { + fs.write(worldEndDiffPath, JSON.stringify(worldEndDiff, null, 2), 'w'); + console.log(demo, 'end equal:', worldEndDiff.equal); + } + } else { + console.warn('no existing end reference world for', demo); + fs.write(worldEndPath, resurrect.stringify(worldEnd), 'w'); + console.log('wrote', worldEndPath); + } + } + + console.log('done'); + + phantom.exit(); +}); \ No newline at end of file diff --git a/tests/browser/lib/lodash.js b/tests/browser/lib/lodash.js new file mode 100644 index 00000000..4d6e9ff0 --- /dev/null +++ b/tests/browser/lib/lodash.js @@ -0,0 +1,98 @@ +/** + * @license + * lodash 3.9.3 (Custom Build) lodash.com/license | Underscore.js 1.8.3 underscorejs.org/LICENSE + * Build: `lodash modern -o ./lodash.js` + */ +;(function(){function n(n,t){if(n!==t){var r=null===n,e=n===m,u=n===n,i=null===t,o=t===m,f=t===t;if(n>t&&!i||!u||r&&!o&&f||e&&f)return 1;if(n=n&&9<=n&&13>=n||32==n||160==n||5760==n||6158==n||8192<=n&&(8202>=n||8232==n||8233==n||8239==n||8287==n||12288==n||65279==n); +}function _(n,t){for(var r=-1,e=n.length,u=-1,i=[];++ro(t,l,0)&&u.push(l);return u}function at(n,t){var r=true;return Mu(n,function(n,e,u){return r=!!t(n,e,u)}),r}function ct(n,t,r,e){var u=e,i=u;return Mu(n,function(n,o,f){o=+t(n,o,f),(r(o,u)||o===e&&o===i)&&(u=o,i=n)}),i}function st(n,t){var r=[];return Mu(n,function(n,e,u){t(n,e,u)&&r.push(n); +}),r}function pt(n,t,r,e){var u;return r(n,function(n,r,i){return t(n,r,i)?(u=e?r:n,false):void 0}),u}function ht(n,t,r){for(var e=-1,u=n.length,i=-1,o=[];++et&&(t=-t>u?0:u+t),r=r===m||r>u?u:+r||0,0>r&&(r+=u),u=t>r?0:r-t>>>0,t>>>=0,r=Me(u);++eu(l,s,0)&&((t||f)&&l.push(s),a.push(c))}return a}function Ft(n,t){for(var r=-1,e=t.length,u=Me(e);++r>>1,o=n[i];(r?o<=t:ou?m:i,u=1);++earguments.length;return typeof e=="function"&&i===m&&Ti(r)?n(r,e,u,o):Et(r,mr(e,i,4),u,o,t)}}function sr(n,t,r,e,u,i,o,f,l,a){function c(){for(var w=arguments.length,A=w,j=Me(w);A--;)j[A]=arguments[A];if(e&&(j=qt(j,e,u)),i&&(j=Dt(j,i,o)),v||y){var A=c.placeholder,k=_(j,A),w=w-k.length; +if(wt?0:t)):[]}function qr(n,t,r){var e=n?n.length:0;return e?((r?Cr(n,t,r):null==t)&&(t=1), +t=e-(+t||0),Ct(n,0,0>t?0:t)):[]}function Dr(n){return n?n[0]:m}function Kr(n,t,e){var u=n?n.length:0;if(!u)return-1;if(typeof e=="number")e=0>e?ku(u+e,0):e;else if(e)return e=zt(n,t),n=n[e],(t===t?t===n:n!==n)?e:-1;return r(n,t,e||0)}function Vr(n){var t=n?n.length:0;return t?n[t-1]:m}function Yr(n){return Pr(n,1)}function Zr(n,t,e,u){if(!n||!n.length)return[];null!=t&&typeof t!="boolean"&&(u=e,e=Cr(n,t,u)?null:t,t=false);var i=mr();if((null!=e||i!==it)&&(e=i(e,u,3)),t&&br()==r){t=e;var o;e=-1,u=n.length; +for(var i=-1,f=[];++er?ku(u+r,0):r||0,typeof n=="string"||!Ti(n)&&me(n)?rt?0:+t||0,e);++r=n&&(t=null),r}}function fe(n,t,r){function e(){var r=t-(wi()-a);0>=r||r>t?(f&&cu(f),r=p,f=s=p=m,r&&(h=wi(),l=n.apply(c,o),s||f||(o=c=null))):s=gu(e,r)}function u(){s&&cu(s),f=s=p=m,(v||_!==t)&&(h=wi(),l=n.apply(c,o),s||f||(o=c=null))}function i(){if(o=arguments,a=wi(),c=this,p=v&&(s||!g),false===_)var r=g&&!s;else{f||g||(h=a);var i=_-(a-h),y=0>=i||i>_;y?(f&&(f=cu(f)),h=a,l=n.apply(c,o)):f||(f=gu(u,i))}return y&&s?s=cu(s):s||t===_||(s=gu(e,t)),r&&(y=true,l=n.apply(c,o)), +!y||s||f||(o=c=null),l}var o,f,l,a,c,s,p,h=0,_=false,v=true;if(typeof n!="function")throw new Je(N);if(t=0>t?0:+t||0,true===r)var g=true,v=false;else ve(r)&&(g=r.leading,_="maxWait"in r&&ku(+r.maxWait||0,t),v="trailing"in r?r.trailing:v);return i.cancel=function(){s&&cu(s),f&&cu(f),f=s=p=m},i}function le(n,t){function r(){var e=arguments,u=t?t.apply(this,e):e[0],i=r.cache;return i.has(u)?i.get(u):(e=n.apply(this,e),r.cache=i.set(u,e),e)}if(typeof n!="function"||t&&typeof t!="function")throw new Je(N);return r.cache=new le.Cache, +r}function ae(n,t){if(typeof n!="function")throw new Je(N);return t=ku(t===m?n.length-1:+t||0,0),function(){for(var r=arguments,e=-1,u=ku(r.length-t,0),i=Me(u);++et}function se(n){return p(n)&&Ir(n)&&uu.call(n)==z}function pe(n){return!!n&&1===n.nodeType&&p(n)&&-1t||!n||!Au(t))return r;do t%2&&(r+=n),t=su(t/2),n+=n;while(t);return r}function Se(n,t,r){var e=n;return(n=u(n))?(r?Cr(e,t,r):null==t)?n.slice(v(n),g(n)+1):(t+="",n.slice(i(n,t),o(n,t)+1)):n}function Te(n,t,r){ +return r&&Cr(n,t,r)&&(t=null),n=u(n),n.match(t||Wn)||[]}function Ue(n,t,r){return r&&Cr(n,t,r)&&(t=null),p(n)?Ne(n):it(n,t)}function $e(n){return function(){return n}}function Fe(n){return n}function Ne(n){return xt(ot(n,true))}function Le(n,t,r){if(null==r){var e=ve(t),u=e?Ki(t):null;((u=u&&u.length?yt(t,u):null)?u.length:e)||(u=false,r=t,t=n,n=this)}u||(u=yt(t,Ki(t)));var i=true,e=-1,o=$i(n),f=u.length;false===r?i=false:ve(r)&&"chain"in r&&(i=r.chain);for(;++e=S)return r}else n=0;return Ku(r,e)}}(),Ju=ae(function(n,t){return Ir(n)?lt(n,ht(t,false,true)):[]}),Xu=tr(),Hu=tr(true),Qu=ae(function(n){for(var t=n.length,e=t,u=Me(c),i=br(),o=i==r,f=[];e--;){var l=n[e]=Ir(l=n[e])?l:[];u[e]=o&&120<=l.length?Vu(e&&l):null}var o=n[0],a=-1,c=o?o.length:0,s=u[0]; +n:for(;++a(s?qn(s,l):i(f,l,0))){for(e=t;--e;){var p=u[e];if(0>(p?qn(p,l):i(n[e],l,0)))continue n}s&&s.push(l),f.push(l)}return f}),ni=ae(function(t,r){r=ht(r);var e=et(t,r);return Rt(t,r.sort(n)),e}),ti=_r(),ri=_r(true),ei=ae(function(n){return $t(ht(n,false,true))}),ui=ae(function(n,t){return Ir(n)?lt(n,t):[]}),ii=ae(Gr),oi=ae(function(n){var t=n.length,r=2--n?t.apply(this,arguments):void 0}},Nn.ary=function(n,t,r){return r&&Cr(n,t,r)&&(t=null),t=n&&null==t?n.length:ku(+t||0,0),vr(n,I,null,null,null,null,t)},Nn.assign=Ni,Nn.at=fi,Nn.before=oe,Nn.bind=bi,Nn.bindAll=xi,Nn.bindKey=Ai,Nn.callback=Ue,Nn.chain=Hr,Nn.chunk=function(n,t,r){t=(r?Cr(n,t,r):null==t)?1:ku(+t||1,1),r=0;for(var e=n?n.length:0,u=-1,i=Me(au(e/t));rr&&(r=-r>u?0:u+r),e=e===m||e>u?u:+e||0,0>e&&(e+=u),u=r>e?0:e>>>0,r>>>=0;rt?0:t)):[]},Nn.takeRight=function(n,t,r){var e=n?n.length:0;return e?((r?Cr(n,t,r):null==t)&&(t=1),t=e-(+t||0),Ct(n,0>t?0:t)):[]},Nn.takeRightWhile=function(n,t,r){return n&&n.length?Nt(n,mr(t,r,3),false,true):[]},Nn.takeWhile=function(n,t,r){return n&&n.length?Nt(n,mr(t,r,3)):[]; +},Nn.tap=function(n,t,r){return t.call(r,n),n},Nn.throttle=function(n,t,r){var e=true,u=true;if(typeof n!="function")throw new Je(N);return false===r?e=false:ve(r)&&(e="leading"in r?!!r.leading:e,u="trailing"in r?!!r.trailing:u),Fn.leading=e,Fn.maxWait=+t,Fn.trailing=u,fe(n,t,Fn)},Nn.thru=Qr,Nn.times=function(n,t,r){if(n=su(n),1>n||!Au(n))return[];var e=-1,u=Me(Ou(n,4294967295));for(t=Mt(t,r,1);++ee?u[e]=t(e):t(e);return u},Nn.toArray=xe,Nn.toPlainObject=Ae,Nn.transform=function(n,t,r,e){var u=Ti(n)||we(n); +return t=mr(t,e,4),null==r&&(u||ve(n)?(e=n.constructor,r=u?Ti(n)?new e:[]:Bu($i(e)?e.prototype:null)):r={}),(u?Kn:vt)(n,function(n,e,u){return t(r,n,e,u)}),r},Nn.union=ei,Nn.uniq=Zr,Nn.unzip=Gr,Nn.unzipWith=Jr,Nn.values=Re,Nn.valuesIn=function(n){return Ft(n,ke(n))},Nn.where=function(n,t){return te(n,xt(t))},Nn.without=ui,Nn.wrap=function(n,t){return t=null==t?Fe:t,vr(t,O,null,[n],[])},Nn.xor=function(){for(var n=-1,t=arguments.length;++nr?0:+r||0,e),r-=t.length,0<=r&&n.indexOf(t,r)==r},Nn.escape=function(n){return(n=u(n))&&pn.test(n)?n.replace(cn,a):n},Nn.escapeRegExp=Ee,Nn.every=ne,Nn.find=ai,Nn.findIndex=Xu,Nn.findKey=zi,Nn.findLast=ci,Nn.findLastIndex=Hu,Nn.findLastKey=Bi,Nn.findWhere=function(n,t){return ai(n,xt(t))},Nn.first=Dr,Nn.get=function(n,t,r){ +return n=null==n?m:dt(n,Br(t),t+""),n===m?r:n},Nn.gt=ce,Nn.gte=function(n,t){return n>=t},Nn.has=function(n,t){if(null==n)return false;var r=ru.call(n,t);if(!r&&!Wr(t)){if(t=Br(t),n=1==t.length?n:dt(n,Ct(t,0,-1)),null==n)return false;t=Vr(t),r=ru.call(n,t)}return r||Tr(n.length)&&Er(t,n.length)&&(Ti(n)||se(n))},Nn.identity=Fe,Nn.includes=re,Nn.indexOf=Kr,Nn.inRange=function(n,t,r){return t=+t||0,"undefined"===typeof r?(r=t,t=0):r=+r||0,n>=Ou(t,r)&&nr?ku(e+r,0):Ou(r||0,e-1))+1;else if(r)return u=zt(n,t,true)-1,n=n[u],(t===t?t===n:n!==n)?u:-1;if(t!==t)return s(n,u,true);for(;u--;)if(n[u]===t)return u;return-1},Nn.lt=be,Nn.lte=function(n,t){return n<=t},Nn.max=oo,Nn.min=fo,Nn.noConflict=function(){return h._=iu,this},Nn.noop=ze,Nn.now=wi, +Nn.pad=function(n,t,r){n=u(n),t=+t;var e=n.length;return er?0:+r||0,n.length),n.lastIndexOf(t,r)==r},Nn.sum=function(n,t,r){r&&Cr(n,t,r)&&(t=null);var e=mr(),u=null==t;if(u&&e===it||(u=false, +t=e(t,r,3)),u){for(n=Ti(n)?n:Lr(n),t=n.length,r=0;t--;)r+=+n[t]||0;n=r}else n=Ut(n,t);return n},Nn.template=function(n,t,r){var e=Nn.templateSettings;r&&Cr(n,t,r)&&(t=r=null),n=u(n),t=tt(rt({},r||t),e,nt),r=tt(rt({},t.imports),e.imports,nt);var i,o,f=Ki(r),l=Ft(r,f),a=0;r=t.interpolate||En;var s="__p+='";r=Ze((t.escape||En).source+"|"+r.source+"|"+(r===vn?An:En).source+"|"+(t.evaluate||En).source+"|$","g");var p="sourceURL"in t?"//# sourceURL="+t.sourceURL+"\n":"";if(n.replace(r,function(t,r,e,u,f,l){ +return e||(e=u),s+=n.slice(a,l).replace(Cn,c),r&&(i=true,s+="'+__e("+r+")+'"),f&&(o=true,s+="';"+f+";\n__p+='"),e&&(s+="'+((__t=("+e+"))==null?'':__t)+'"),a=l+t.length,t}),s+="';",(t=t.variable)||(s="with(obj){"+s+"}"),s=(o?s.replace(on,""):s).replace(fn,"$1").replace(ln,"$1;"),s="function("+(t||"obj")+"){"+(t?"":"obj||(obj={});")+"var __t,__p=''"+(i?",__e=_.escape":"")+(o?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+s+"return __p}",t=eo(function(){return De(f,p+"return "+s).apply(m,l); +}),t.source=s,_e(t))throw t;return t},Nn.trim=Se,Nn.trimLeft=function(n,t,r){var e=n;return(n=u(n))?n.slice((r?Cr(e,t,r):null==t)?v(n):i(n,t+"")):n},Nn.trimRight=function(n,t,r){var e=n;return(n=u(n))?(r?Cr(e,t,r):null==t)?n.slice(0,g(n)+1):n.slice(0,o(n,t+"")+1):n},Nn.trunc=function(n,t,r){r&&Cr(n,t,r)&&(t=null);var e=C;if(r=W,null!=t)if(ve(t)){var i="separator"in t?t.separator:i,e="length"in t?+t.length||0:e;r="omission"in t?u(t.omission):r}else e=+t||0;if(n=u(n),e>=n.length)return n;if(e-=r.length, +1>e)return r;if(t=n.slice(0,e),null==i)return t+r;if(de(i)){if(n.slice(e).search(i)){var o,f=n.slice(0,e);for(i.global||(i=Ze(i.source,(jn.exec(i)||"")+"g")),i.lastIndex=0;n=i.exec(f);)o=n.index;t=t.slice(0,null==o?e:o)}}else n.indexOf(i,e)!=e&&(i=t.lastIndexOf(i),-1u.__dir__?"Right":"")}),u},Bn.prototype[n+"Right"]=function(t){return this.reverse()[n](t).reverse(); +},Bn.prototype[n+"RightWhile"]=function(n,t){return this.reverse()[r](n,t).reverse()}}),Kn(["first","last"],function(n,t){var r="take"+(t?"Right":"");Bn.prototype[n]=function(){return this[r](1).value()[0]}}),Kn(["initial","rest"],function(n,t){var r="drop"+(t?"":"Right");Bn.prototype[n]=function(){return this[r](1)}}),Kn(["pluck","where"],function(n,t){var r=t?"filter":"map",e=t?xt:Be;Bn.prototype[n]=function(n){return this[r](e(n))}}),Bn.prototype.compact=function(){return this.filter(Fe)},Bn.prototype.reject=function(n,t){ +return n=mr(n,t,1),this.filter(function(t){return!n(t)})},Bn.prototype.slice=function(n,t){n=null==n?0:+n||0;var r=this;return 0>n?r=this.takeRight(-n):n&&(r=this.drop(n)),t!==m&&(t=+t||0,r=0>t?r.dropRight(-t):r.take(t-n)),r},Bn.prototype.toArray=function(){return this.drop(0)},vt(Bn.prototype,function(n,t){var r=Nn[t];if(r){var e=/^(?:filter|map|reject)|While$/.test(t),u=/^(?:first|last)$/.test(t);Nn.prototype[t]=function(){function t(n){return n=[n],_u.apply(n,i),r.apply(Nn,n)}var i=arguments,o=this.__chain__,f=this.__wrapped__,l=!!this.__actions__.length,a=f instanceof Bn,c=i[0],s=a||Ti(f); +return s&&e&&typeof c=="function"&&1!=c.length&&(a=s=false),a=a&&!l,u&&!o?a?n.call(f):r.call(Nn,this.value()):s?(f=n.apply(a?f:new Bn(this),i),u||!l&&!f.__actions__||(f.__actions__||(f.__actions__=[])).push({func:Qr,args:[t],thisArg:Nn}),new zn(f,o)):this.thru(t)}}}),Kn("concat join pop push replace shift sort splice split unshift".split(" "),function(n){var t=(/^(?:replace|split)$/.test(n)?Qe:Xe)[n],r=/^(?:push|sort|unshift)$/.test(n)?"tap":"thru",e=/^(?:join|pop|replace|shift)$/.test(n);Nn.prototype[n]=function(){ +var n=arguments;return e&&!this.__chain__?t.apply(this.value(),n):this[r](function(r){return t.apply(r,n)})}}),vt(Bn.prototype,function(n,t){var r=Nn[t];if(r){var e=r.name;(Lu[e]||(Lu[e]=[])).push({name:t,func:r})}}),Lu[sr(null,x).name]=[{name:"wrapper",func:null}],Bn.prototype.clone=function(){var n=this.__actions__,t=this.__iteratees__,r=this.__views__,e=new Bn(this.__wrapped__);return e.__actions__=n?Dn(n):null,e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=t?Dn(t):null, +e.__takeCount__=this.__takeCount__,e.__views__=r?Dn(r):null,e},Bn.prototype.reverse=function(){if(this.__filtered__){var n=new Bn(this);n.__dir__=-1,n.__filtered__=true}else n=this.clone(),n.__dir__*=-1;return n},Bn.prototype.value=function(){var n=this.__wrapped__.value();if(!Ti(n))return Lt(n,this.__actions__);var t,r=this.__dir__,e=0>r;t=n.length;for(var u=this.__views__,i=0,o=-1,f=u?u.length:0;++op.index:u=_:!h(s))))continue n}else if(p=h(s),_==F)s=p;else if(!p){if(_==$)continue n;break n}}a[l++]=s}return a},Nn.prototype.chain=function(){ +return Hr(this)},Nn.prototype.commit=function(){return new zn(this.value(),this.__chain__)},Nn.prototype.plant=function(n){for(var t,r=this;r instanceof Ln;){var e=Mr(r);t?u.__wrapped__=e:t=e;var u=e,r=r.__wrapped__}return u.__wrapped__=n,t},Nn.prototype.reverse=function(){var n=this.__wrapped__;return n instanceof Bn?(this.__actions__.length&&(n=new Bn(this)),new zn(n.reverse(),this.__chain__)):this.thru(function(n){return n.reverse()})},Nn.prototype.toString=function(){return this.value()+""},Nn.prototype.run=Nn.prototype.toJSON=Nn.prototype.valueOf=Nn.prototype.value=function(){ +return Lt(this.__wrapped__,this.__actions__)},Nn.prototype.collect=Nn.prototype.map,Nn.prototype.head=Nn.prototype.first,Nn.prototype.select=Nn.prototype.filter,Nn.prototype.tail=Nn.prototype.rest,Nn}var m,w="3.9.3",b=1,x=2,A=4,j=8,k=16,O=32,R=64,I=128,E=256,C=30,W="...",S=150,T=16,U=0,$=1,F=2,N="Expected a function",L="__lodash_placeholder__",z="[object Arguments]",B="[object Array]",M="[object Boolean]",P="[object Date]",q="[object Error]",D="[object Function]",K="[object Number]",V="[object Object]",Y="[object RegExp]",Z="[object String]",G="[object ArrayBuffer]",J="[object Float32Array]",X="[object Float64Array]",H="[object Int8Array]",Q="[object Int16Array]",nn="[object Int32Array]",tn="[object Uint8Array]",rn="[object Uint8ClampedArray]",en="[object Uint16Array]",un="[object Uint32Array]",on=/\b__p\+='';/g,fn=/\b(__p\+=)''\+/g,ln=/(__e\(.*?\)|\b__t\))\+'';/g,an=/&(?:amp|lt|gt|quot|#39|#96);/g,cn=/[&<>"'`]/g,sn=RegExp(an.source),pn=RegExp(cn.source),hn=/<%-([\s\S]+?)%>/g,_n=/<%([\s\S]+?)%>/g,vn=/<%=([\s\S]+?)%>/g,gn=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\n\\]|\\.)*?\1)\]/,yn=/^\w*$/,dn=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\n\\]|\\.)*?)\2)\]/g,mn=/[.*+?^${}()|[\]\/\\]/g,wn=RegExp(mn.source),bn=/[\u0300-\u036f\ufe20-\ufe23]/g,xn=/\\(\\)?/g,An=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,jn=/\w*$/,kn=/^0[xX]/,On=/^\[object .+?Constructor\]$/,Rn=/^\d+$/,In=/[\xc0-\xd6\xd8-\xde\xdf-\xf6\xf8-\xff]/g,En=/($^)/,Cn=/['\n\r\u2028\u2029\\]/g,Wn=RegExp("[A-Z\\xc0-\\xd6\\xd8-\\xde]+(?=[A-Z\\xc0-\\xd6\\xd8-\\xde][a-z\\xdf-\\xf6\\xf8-\\xff]+)|[A-Z\\xc0-\\xd6\\xd8-\\xde]?[a-z\\xdf-\\xf6\\xf8-\\xff]+|[A-Z\\xc0-\\xd6\\xd8-\\xde]+|[0-9]+","g"),Sn=" \t\x0b\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",Tn="Array ArrayBuffer Date Error Float32Array Float64Array Function Int8Array Int16Array Int32Array Math Number Object RegExp Set String _ clearTimeout document isFinite parseFloat parseInt setTimeout TypeError Uint8Array Uint8ClampedArray Uint16Array Uint32Array WeakMap window".split(" "),Un={}; +Un[J]=Un[X]=Un[H]=Un[Q]=Un[nn]=Un[tn]=Un[rn]=Un[en]=Un[un]=true,Un[z]=Un[B]=Un[G]=Un[M]=Un[P]=Un[q]=Un[D]=Un["[object Map]"]=Un[K]=Un[V]=Un[Y]=Un["[object Set]"]=Un[Z]=Un["[object WeakMap]"]=false;var $n={};$n[z]=$n[B]=$n[G]=$n[M]=$n[P]=$n[J]=$n[X]=$n[H]=$n[Q]=$n[nn]=$n[K]=$n[V]=$n[Y]=$n[Z]=$n[tn]=$n[rn]=$n[en]=$n[un]=true,$n[q]=$n[D]=$n["[object Map]"]=$n["[object Set]"]=$n["[object WeakMap]"]=false;var Fn={leading:false,maxWait:0,trailing:false},Nn={"\xc0":"A","\xc1":"A","\xc2":"A","\xc3":"A","\xc4":"A","\xc5":"A", +"\xe0":"a","\xe1":"a","\xe2":"a","\xe3":"a","\xe4":"a","\xe5":"a","\xc7":"C","\xe7":"c","\xd0":"D","\xf0":"d","\xc8":"E","\xc9":"E","\xca":"E","\xcb":"E","\xe8":"e","\xe9":"e","\xea":"e","\xeb":"e","\xcc":"I","\xcd":"I","\xce":"I","\xcf":"I","\xec":"i","\xed":"i","\xee":"i","\xef":"i","\xd1":"N","\xf1":"n","\xd2":"O","\xd3":"O","\xd4":"O","\xd5":"O","\xd6":"O","\xd8":"O","\xf2":"o","\xf3":"o","\xf4":"o","\xf5":"o","\xf6":"o","\xf8":"o","\xd9":"U","\xda":"U","\xdb":"U","\xdc":"U","\xf9":"u","\xfa":"u", +"\xfb":"u","\xfc":"u","\xdd":"Y","\xfd":"y","\xff":"y","\xc6":"Ae","\xe6":"ae","\xde":"Th","\xfe":"th","\xdf":"ss"},Ln={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},zn={"&":"&","<":"<",">":">",""":'"',"'":"'","`":"`"},Bn={"function":true,object:true},Mn={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Pn=Bn[typeof exports]&&exports&&!exports.nodeType&&exports,qn=Bn[typeof module]&&module&&!module.nodeType&&module,Dn=Bn[typeof self]&&self&&self.Object&&self,Kn=Bn[typeof window]&&window&&window.Object&&window,Vn=qn&&qn.exports===Pn&&Pn,Yn=Pn&&qn&&typeof global=="object"&&global&&global.Object&&global||Kn!==(this&&this.window)&&Kn||Dn||this,Zn=d(); +typeof define=="function"&&typeof define.amd=="object"&&define.amd?(Yn._=Zn, define(function(){return Zn})):Pn&&qn?Vn?(qn.exports=Zn)._=Zn:Pn._=Zn:Yn._=Zn}).call(this); \ No newline at end of file diff --git a/tests/browser/lib/resurrect.js b/tests/browser/lib/resurrect.js new file mode 100644 index 00000000..8e56e278 --- /dev/null +++ b/tests/browser/lib/resurrect.js @@ -0,0 +1,542 @@ +/** + * # ResurrectJS + * @version 1.0.3 + * @license Public Domain + * + * ResurrectJS preserves object behavior (prototypes) and reference + * circularity with a special JSON encoding. Unlike regular JSON, + * Date, RegExp, DOM objects, and `undefined` are also properly + * preserved. + * + * ## Examples + * + * function Foo() {} + * Foo.prototype.greet = function() { return "hello"; }; + * + * // Behavior is preserved: + * var necromancer = new Resurrect(); + * var json = necromancer.stringify(new Foo()); + * var foo = necromancer.resurrect(json); + * foo.greet(); // => "hello" + * + * // References to the same object are preserved: + * json = necromancer.stringify([foo, foo]); + * var array = necromancer.resurrect(json); + * array[0] === array[1]; // => true + * array[1].greet(); // => "hello" + * + * // Dates are restored properly + * json = necromancer.stringify(new Date()); + * var date = necromancer.resurrect(json); + * Object.prototype.toString.call(date); // => "[object Date]" + * + * ## Options + * + * Options are provided to the constructor as an object with these + * properties: + * + * prefix ('#'): A prefix string used for temporary properties added + * to objects during serialization and deserialization. It is + * important that you don't use any properties beginning with this + * string. This option must be consistent between both + * serialization and deserialization. + * + * cleanup (false): Perform full property cleanup after both + * serialization and deserialization using the `delete` + * operator. This may cause performance penalties (breaking hidden + * classes in V8) on objects that ResurrectJS touches, so enable + * with care. + * + * revive (true): Restore behavior (__proto__) to objects that have + * been resurrected. If this is set to false during serialization, + * resurrection information will not be encoded. You still get + * circularity and Date support. + * + * resolver (Resurrect.NamespaceResolver(window)): Converts between + * a name and a prototype. Create a custom resolver if your + * constructors are not stored in global variables. The resolver + * has two methods: getName(object) and getPrototype(string). + * + * For example, + * + * var necromancer = new Resurrect({ + * prefix: '__#', + * cleanup: true + * }); + * + * ## Caveats + * + * * With the default resolver, all constructors must be named and + * stored in the global variable under that name. This is required + * so that the prototypes can be looked up and reconnected at + * resurrection time. + * + * * The wrapper objects Boolean, String, and Number will be + * unwrapped. This means extra properties added to these objects + * will not be preserved. + * + * * Functions cannot ever be serialized. Resurrect will throw an + * error if a function is found when traversing a data structure. + * + * @see http://nullprogram.com/blog/2013/03/28/ + */ + +/** + * @param {Object} [options] See options documentation. + * @namespace + * @constructor + */ +function Resurrect(options) { + this.table = null; + this.prefix = '#'; + this.cleanup = false; + this.revive = true; + for (var option in options) { + if (options.hasOwnProperty(option)) { + this[option] = options[option]; + } + } + this.refcode = this.prefix + 'id'; + this.origcode = this.prefix + 'original'; + this.buildcode = this.prefix + '.'; + this.valuecode = this.prefix + 'v'; +} + +if (module) + module.exports = Resurrect; + +/** + * Portable access to the global object (window, global). + * Uses indirect eval. + * @constant + */ +Resurrect.GLOBAL = (0, eval)('this'); + +/** + * Escape special regular expression characters in a string. + * @param {string} string + * @returns {string} The string escaped for exact matches. + * @see http://stackoverflow.com/a/6969486 + */ +Resurrect.escapeRegExp = function (string) { + return string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); +}; + +/* Helper Objects */ + +/** + * @param {string} [message] + * @constructor + */ +Resurrect.prototype.Error = function ResurrectError(message) { + this.message = message || ''; + this.stack = new Error().stack; +}; +Resurrect.prototype.Error.prototype = Object.create(Error.prototype); +Resurrect.prototype.Error.prototype.name = 'ResurrectError'; + +/** + * Resolves prototypes through the properties on an object and + * constructor names. + * @param {Object} scope + * @constructor + */ +Resurrect.NamespaceResolver = function(scope) { + this.scope = scope; +}; + +/** + * Gets the prototype of the given property name from an object. If + * not found, it throws an error. + * @param {string} name + * @returns {Object} + * @method + */ +Resurrect.NamespaceResolver.prototype.getPrototype = function(name) { + var constructor = this.scope[name]; + if (constructor) { + return constructor.prototype; + } else { + throw new Resurrect.prototype.Error('Unknown constructor: ' + name); + } +}; + +/** + * Get the prototype name for an object, to be fetched later with getPrototype. + * @param {Object} object + * @returns {?string} Null if the constructor is Object. + * @method + */ +Resurrect.NamespaceResolver.prototype.getName = function(object) { + var constructor = object.constructor.name; + if (constructor == null) { // IE + var funcPattern = /^\s*function\s*([A-Za-z0-9_$]*)/; + constructor = funcPattern.exec(object.constructor)[1]; + } + + if (constructor === '') { + var msg = "Can't serialize objects with anonymous constructors."; + throw new Resurrect.prototype.Error(msg); + } else if (constructor === 'Object' || constructor === 'Array') { + return null; + } else { + return constructor; + } +}; + +/* Set the default resolver searches the global object. */ +Resurrect.prototype.resolver = + new Resurrect.NamespaceResolver(Resurrect.GLOBAL); + +/** + * Create a DOM node from HTML source; behaves like a constructor. + * @param {string} html + * @constructor + */ +Resurrect.Node = function(html) { + var div = document.createElement('div'); + div.innerHTML = html; + return div.firstChild; +}; + +/* Type Tests */ + +/** + * @param {string} type + * @returns {Function} A function that tests for type. + */ +Resurrect.is = function(type) { + var string = '[object ' + type + ']'; + return function(object) { + return Object.prototype.toString.call(object) === string; + }; +}; + +Resurrect.isArray = Resurrect.is('Array'); +Resurrect.isString = Resurrect.is('String'); +Resurrect.isBoolean = Resurrect.is('Boolean'); +Resurrect.isNumber = Resurrect.is('Number'); +Resurrect.isFunction = Resurrect.is('Function'); +Resurrect.isDate = Resurrect.is('Date'); +Resurrect.isRegExp = Resurrect.is('RegExp'); +Resurrect.isObject = Resurrect.is('Object'); + +Resurrect.isAtom = function(object) { + return !Resurrect.isObject(object) && !Resurrect.isArray(object); +}; + +/** + * @param {*} object + * @returns {boolean} True if object is a primitive or a primitive wrapper. + */ +Resurrect.isPrimitive = function(object) { + return object == null || + Resurrect.isNumber(object) || + Resurrect.isString(object) || + Resurrect.isBoolean(object); +}; + +/* Methods */ + +/** + * Create a reference (encoding) to an object. + * @param {(Object|undefined)} object + * @returns {Object} + * @method + */ +Resurrect.prototype.ref = function(object) { + var ref = {}; + if (object === undefined) { + ref[this.prefix] = -1; + } else { + ref[this.prefix] = object[this.refcode]; + } + return ref; +}; + +/** + * Lookup an object in the table by reference object. + * @param {Object} ref + * @returns {(Object|undefined)} + * @method + */ +Resurrect.prototype.deref = function(ref) { + return this.table[ref[this.prefix]]; +}; + +/** + * Put a temporary identifier on an object and store it in the table. + * @param {Object} object + * @returns {number} The unique identifier number. + * @method + */ +Resurrect.prototype.tag = function(object) { + if (this.revive) { + var constructor = this.resolver.getName(object); + if (constructor) { + var proto = Object.getPrototypeOf(object); + if (this.resolver.getPrototype(constructor) !== proto) { + throw new this.Error('Constructor mismatch!'); + } else { + object[this.prefix] = constructor; + } + } + } + object[this.refcode] = this.table.length; + this.table.push(object); + return object[this.refcode]; +}; + +/** + * Create a builder object (encoding) for serialization. + * @param {string} name The name of the constructor. + * @param value The value to pass to the constructor. + * @returns {Object} + * @method + */ +Resurrect.prototype.builder = function(name, value) { + var builder = {}; + builder[this.buildcode] = name; + builder[this.valuecode] = value; + return builder; +}; + +/** + * Build a value from a deserialized builder. + * @param {Object} ref + * @returns {Object} + * @method + * @see http://stackoverflow.com/a/14378462 + * @see http://nullprogram.com/blog/2013/03/24/ + */ +Resurrect.prototype.build = function(ref) { + var type = ref[this.buildcode].split(/\./).reduce(function(object, name) { + return object[name]; + }, Resurrect.GLOBAL); + /* Brilliant hack by kybernetikos: */ + var args = [null].concat(ref[this.valuecode]); + var factory = type.bind.apply(type, args); + var result = new factory(); + if (Resurrect.isPrimitive(result)) { + return result.valueOf(); // unwrap + } else { + return result; + } +}; + +/** + * Dereference or build an object or value from an encoding. + * @param {Object} ref + * @returns {(Object|undefined)} + * @method + */ +Resurrect.prototype.decode = function(ref) { + if (this.prefix in ref) { + return this.deref(ref); + } else if (this.buildcode in ref) { + return this.build(ref); + } else { + throw new this.Error('Unknown encoding.'); + } +}; + +/** + * @param {Object} object + * @returns {boolean} True if the provided object is tagged for serialization. + * @method + */ +Resurrect.prototype.isTagged = function(object) { + return (this.refcode in object) && (object[this.refcode] != null); +}; + +/** + * Visit root and all its ancestors, visiting atoms with f. + * @param {*} root + * @param {Function} f + * @param {Function} replacer + * @returns {*} A fresh copy of root to be serialized. + * @method + */ +Resurrect.prototype.visit = function(root, f, replacer) { + if (Resurrect.isAtom(root)) { + return f(root); + } else if (!this.isTagged(root)) { + var copy = null; + if (Resurrect.isArray(root)) { + copy = []; + root[this.refcode] = this.tag(copy); + for (var i = 0; i < root.length; i++) { + copy.push(this.visit(root[i], f, replacer)); + } + } else { /* Object */ + copy = Object.create(Object.getPrototypeOf(root)); + root[this.refcode] = this.tag(copy); + for (var key in root) { + var value = root[key]; + if (root.hasOwnProperty(key)) { + if (replacer && value !== undefined) { + // Call replacer like JSON.stringify's replacer + value = replacer.call(root, key, root[key]); + if (value === undefined) { + continue; // Omit from result + } + } + copy[key] = this.visit(value, f, replacer); + } + } + } + copy[this.origcode] = root; + return this.ref(copy); + } else { + return this.ref(root); + } +}; + +/** + * Manage special atom values, possibly returning an encoding. + * @param {*} atom + * @returns {*} + * @method + */ +Resurrect.prototype.handleAtom = function(atom) { + var Node = Resurrect.GLOBAL.Node || function() {}; + if (Resurrect.isFunction(atom)) { + throw new this.Error("Can't serialize functions."); + } else if (atom instanceof Node) { + var xmls = new XMLSerializer(); + return this.builder('Resurrect.Node', [xmls.serializeToString(atom)]); + } else if (Resurrect.isDate(atom)) { + return this.builder('Date', [atom.toISOString()]); + } else if (Resurrect.isRegExp(atom)) { + var args = atom.toString().match(/\/(.+)\/([gimy]*)/).slice(1); + return this.builder('RegExp', args); + } else if (atom === undefined) { + return this.ref(undefined); + } else if (Resurrect.isNumber(atom) && (isNaN(atom) || !isFinite(atom))) { + return this.builder('Number', [atom.toString()]); + } else { + return atom; + } +}; + +/** + * Hides intrusive keys from a user-supplied replacer. + * @param {Function} replacer function of two arguments (key, value) + * @returns {Function} A function that skips the replacer for intrusive keys. + * @method + */ +Resurrect.prototype.replacerWrapper = function(replacer) { + var skip = new RegExp('^' + Resurrect.escapeRegExp(this.prefix)); + return function(k, v) { + if (skip.test(k)) { + return v; + } else { + return replacer(k, v); + } + }; +}; + +/** + * Serialize an arbitrary JavaScript object, carefully preserving it. + * @param {*} object + * @param {(Function|Array)} replacer + * @param {string} space + * @method + */ +Resurrect.prototype.stringify = function(object, replacer, space) { + if (Resurrect.isFunction(replacer)) { + replacer = this.replacerWrapper(replacer); + } else if (Resurrect.isArray(replacer)) { + var acceptKeys = replacer; + replacer = function(k, v) { + return acceptKeys.indexOf(k) >= 0 ? v : undefined; + }; + } + if (Resurrect.isAtom(object)) { + return JSON.stringify(this.handleAtom(object), replacer, space); + } else { + this.table = []; + this.visit(object, this.handleAtom.bind(this), replacer); + for (var i = 0; i < this.table.length; i++) { + if (this.cleanup) { + delete this.table[i][this.origcode][this.refcode]; + } else { + this.table[i][this.origcode][this.refcode] = null; + } + delete this.table[i][this.refcode]; + delete this.table[i][this.origcode]; + } + var table = this.table; + this.table = null; + return JSON.stringify(table, null, space); + } +}; + +/** + * Restore the __proto__ of the given object to the proper value. + * @param {Object} object + * @returns {Object} Its argument, or a copy, with the prototype restored. + * @method + */ +Resurrect.prototype.fixPrototype = function(object) { + if (this.prefix in object) { + var name = object[this.prefix]; + var prototype = this.resolver.getPrototype(name); + if ('__proto__' in object) { + object.__proto__ = prototype; + if (this.cleanup) { + delete object[this.prefix]; + } + return object; + } else { // IE + var copy = Object.create(prototype); + for (var key in object) { + if (object.hasOwnProperty(key) && key !== this.prefix) { + copy[key] = object[key]; + } + } + return copy; + } + } else { + return object; + } +}; + +/** + * Deserialize an encoded object, restoring circularity and behavior. + * @param {string} string + * @returns {*} The decoded object or value. + * @method + */ +Resurrect.prototype.resurrect = function(string) { + var result = null; + var data = JSON.parse(string); + if (Resurrect.isArray(data)) { + this.table = data; + /* Restore __proto__. */ + if (this.revive) { + for (var i = 0; i < this.table.length; i++) { + this.table[i] = this.fixPrototype(this.table[i]); + } + } + /* Re-establish object references and construct atoms. */ + for (i = 0; i < this.table.length; i++) { + var object = this.table[i]; + for (var key in object) { + if (object.hasOwnProperty(key)) { + if (!(Resurrect.isAtom(object[key]))) { + object[key] = this.decode(object[key]); + } + } + } + } + result = this.table[0]; + } else if (Resurrect.isObject(data)) { + this.table = []; + result = this.decode(data); + } else { + result = data; + } + this.table = null; + return result; +}; From a88b3badf5fee3a5bf1e1d3f8cfd41e3bb52d413 Mon Sep 17 00:00:00 2001 From: liabru Date: Mon, 3 Aug 2015 21:00:54 +0100 Subject: [PATCH 02/10] implemented automated browser tests --- Gruntfile.js | 14 +- package.json | 4 +- tests/browser/TestDemo.js | 249 +++++++++++++++++++----------------- tests/browser/lib/lodash.js | 98 -------------- 4 files changed, 147 insertions(+), 218 deletions(-) delete mode 100644 tests/browser/lib/lodash.js diff --git a/Gruntfile.js b/Gruntfile.js index 4384f199..7b38f994 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -57,7 +57,7 @@ module.exports = function(grunt) { options: { jshintrc: '.jshintrc' }, - all: ['src/**/*.js', 'demo/js/*.js', '!src/module/*'] + all: ['src/**/*.js', 'demo/js/*.js', 'tests/browser/TestDemo.js', '!src/module/*'] }, connect: { watch: { @@ -107,6 +107,16 @@ module.exports = function(grunt) { src: 'build/<%= buildName %>.js', dest: 'build/<%= buildName %>.js' } + }, + shell: { + testBrowser: { + command: 'phantomjs tests/browser/TestDemo.js', + options: { + execOptions: { + timeout: 1000 * 60 + } + } + } } }); @@ -118,9 +128,11 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-yuidoc'); grunt.loadNpmTasks('grunt-preprocess'); + grunt.loadNpmTasks('grunt-shell'); grunt.registerTask('default', ['test', 'build']); grunt.registerTask('test', ['jshint']); + grunt.registerTask('testBrowser', ['shell:testBrowser']); grunt.registerTask('dev', ['build:dev', 'connect:watch', 'watch']); grunt.registerTask('build', function(mode) { diff --git a/package.json b/package.json index 98e8906d..20b9a7b6 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "rigid body physics" ], "devDependencies": { + "fast-json-patch": "^0.5.4", "grunt": "~0.4.2", "grunt-contrib-concat": "~0.3.0", "grunt-contrib-connect": "~0.6.0", @@ -28,7 +29,8 @@ "grunt-contrib-uglify": "~0.2.7", "grunt-contrib-watch": "~0.5.3", "grunt-contrib-yuidoc": "~0.5.1", - "grunt-preprocess": "^4.1.0" + "grunt-preprocess": "^4.1.0", + "grunt-shell": "^1.1.2" }, "scripts": { "dev": "npm install && grunt dev", diff --git a/tests/browser/TestDemo.js b/tests/browser/TestDemo.js index 3d63cf9b..1f70c545 100644 --- a/tests/browser/TestDemo.js +++ b/tests/browser/TestDemo.js @@ -1,118 +1,52 @@ var page = require('webpage').create(); var fs = require('fs'); var Resurrect = require('./lib/resurrect'); -var _ = require('./lib/lodash'); - -page.onConsoleMessage = function(msg) { - console.log(msg); -}; - -page.onError = function(msg) { - console.log(msg); -}; - -phantom.onError = function(msg, trace) { - var msgStack = ['PHANTOM ERROR: ' + msg]; - if (trace && trace.length) { - msgStack.push('TRACE:'); - trace.forEach(function(t) { - msgStack.push(' -> ' + (t.file || t.sourceURL) + ': ' + t.line + (t.function ? ' (in function ' + t.function +')' : '')); - }); - } - console.error(msgStack.join('\n')); - phantom.exit(1); -}; - -var log = function(msg) { - console.log(JSON.stringify(msg)); -} - -var type = function(obj) { - // https://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/ - if (obj === global) { - return "global"; - } - return ({}).toString.call(obj).match(/\s([a-z|A-Z]+)/)[1].toLowerCase(); -}; - -var compare = function(objectA, objectB) { - if (objectA === objectB) { - return { equal: true }; - } - - if ((type(objectA) === 'undefined' && type(objectB) === 'null') - || (type(objectA) === 'null' && type(objectB) === 'undefined')) { - return { equal: true }; - } - - if (type(objectA) !== type(objectB)) { - return { equal: false, expected: type(objectA), actual: type(objectB) }; - } - - if (_.isNumber(objectA)) { - if (objectA.toFixed(5) === objectB.toFixed(5)) { - return { equal: true }; - } else { - return { equal: false, expected: objectA, actual: objectB }; - } - } - - if (_.isArray(objectA)) { - var arrayDelta = [], - isEqual = true; - - for (var i = 0; i < Math.max(objectA.length, objectB.length); i++) { - var diff = compare(objectA[i], objectB[i]); - arrayDelta[i] = diff; - - if (diff.equal !== true) { - isEqual = false; - } - } - - return isEqual ? { equal: true } : arrayDelta; - } - - if (_.isObject(objectA)) { - var keys = _.union(_.keys(objectA), _.keys(objectB)), - objectDelta = { equal: true }; - - for (var i = 0; i < keys.length; i++) { - var key = keys[i], - diff = compare(objectA[key], objectB[key]); - - if (diff.equal !== true) { - objectDelta[key] = diff; - objectDelta.equal = false; - } - } - - return objectDelta.equal ? { equal: true } : objectDelta; +var compare = require('fast-json-patch').compare; +var system = require('system'); + +var demo, + frames = 10, + testUrl = 'http://localhost:9000/demo/dev.html', + refsPath = 'tests/browser/refs', + diffsPath = 'tests/browser/diffs'; + +var update = arg('--update'), + updateAll = typeof arg('--updateAll') !== 'undefined', + diff = arg('--diff'); + +var resurrect = new Resurrect({ cleanup: true }), + created = [], + changed = []; + +var test = function(status) { + if (status === 'fail') { + console.log('failed to load', testUrl); + console.log('check dev server is running!'); + console.log('use `grunt dev`'); + phantom.exit(1); + return; } - return { equal: false, expected: objectA, actual: objectB }; -}; - -page.open('http://localhost:9000/demo/dev.html', function(status) { var demos = page.evaluate(function() { - var options = Array.prototype.slice.call(document.getElementById('demo-select').options); - return options.map(function(o) { return o.value }); + var demoSelect = document.getElementById('demo-select'), + options = Array.prototype.slice.call(demoSelect); + return options.map(function(o) { return o.value; }); }); - var worldsPath = 'tests/browser/worlds', - diffsPath = 'tests/browser/diffs' - resurrect = new Resurrect({ cleanup: true }), - frames = 10; - fs.removeTree(diffsPath); - fs.makeDirectory(diffsPath); - console.log(demos); + if (diff) { + fs.makeDirectory(diffsPath); + } for (var i = 0; i < demos.length; i += 1) { - var demo = demos[i], - worldStartPath = worldsPath + '/' + demo + '/' + demo + '-0.json', - worldEndPath = worldsPath + '/' + demo + '/' + demo + '-' + frames + '.json', + 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'; @@ -125,11 +59,13 @@ page.open('http://localhost:9000/demo/dev.html', function(status) { var worldEnd = page.evaluate(function(demo, frames) { var engine = Matter.Demo._engine; + for (var j = 0; j <= frames; j += 1) { Matter.Events.trigger(engine, 'tick', { timestamp: engine.timing.timestamp }); Matter.Engine.update(engine, engine.timing.delta); Matter.Events.trigger(engine, 'afterTick', { timestamp: engine.timing.timestamp }); } + return engine.world; }, demo, frames); @@ -137,32 +73,109 @@ page.open('http://localhost:9000/demo/dev.html', function(status) { var worldStartRef = resurrect.resurrect(fs.read(worldStartPath)); var worldStartDiff = compare(worldStart, worldStartRef); - if (!worldStartDiff.equal) { - fs.write(worldStartDiffPath, JSON.stringify(worldStartDiff, null, 2), 'w'); - console.log(demo, 'start equal:', worldStartDiff.equal); + if (worldStartDiff.length !== 0) { + if (diff) { + fs.write(worldStartDiffPath, JSON.stringify(worldStartDiff, null, 2), 'w'); + } + + if (forceUpdate) { + hasCreated = true; + fs.write(worldStartPath, resurrect.stringify(worldStart, null, 2), 'w'); + } else { + hasChanged = true; + } } } else { - console.warn('no existing start reference world for', demo); - fs.write(worldStartPath, resurrect.stringify(worldStart), 'w'); - console.log('wrote', worldEndPath); + hasCreated = true; + fs.write(worldStartPath, resurrect.stringify(worldStart, null, 2), 'w'); } if (fs.exists(worldEndPath)) { var worldEndRef = resurrect.resurrect(fs.read(worldEndPath)); var worldEndDiff = compare(worldEnd, worldEndRef); - if (!worldEndDiff.equal) { - fs.write(worldEndDiffPath, JSON.stringify(worldEndDiff, null, 2), 'w'); - console.log(demo, 'end equal:', worldEndDiff.equal); + if (worldEndDiff.length !== 0) { + if (diff) { + fs.write(worldEndDiffPath, JSON.stringify(worldEndDiff, null, 2), 'w'); + } + + if (forceUpdate) { + hasCreated = true; + fs.write(worldEndPath, resurrect.stringify(worldEnd, null, 2), 'w'); + } else { + hasChanged = true; + } } } else { - console.warn('no existing end reference world for', demo); - fs.write(worldEndPath, resurrect.stringify(worldEnd), 'w'); - console.log('wrote', worldEndPath); + hasCreated = true; + fs.write(worldEndPath, resurrect.stringify(worldEnd, null, 2), 'w'); } + + if (hasChanged) { + changed.push("'" + demo + "'"); + system.stdout.write('x'); + } else if (hasCreated) { + created.push("'" + demo + "'"); + system.stdout.write('+'); + } else { + system.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('changes detected on:'); + console.log(changed.join(', ')); + console.log('review, then --update [name] or --updateAll'); + console.log('use --diff for diff log'); + } + + phantom.exit(!isOk); +}; + +function arg(name) { + var index = system.args.indexOf(name); + if (index >= 0) { + return system.args[index + 1] || true; } + return undefined; +} + +page.onError = function(msg, trace) { + setTimeout(function() { + var msgStack = ['testing \'' + demo + '\'', msg]; + + if (trace && trace.length) { + trace.forEach(function(t) { + msgStack.push(' -> ' + (t.file || t.sourceURL) + ': ' + t.line + (t.function ? ' (fn: ' + t.function +')' : '')); + }); + } + + console.log(msgStack.join('\n')); + phantom.exit(1); + }, 0); +}; + + +page.onResourceReceived = function(res) { + setTimeout(function() { + if (res.stage === 'end' + && (res.status !== 304 && res.status !== 200 && res.status !== null)) { + console.log('error', res.status, res.url); + phantom.exit(1); + } + }, 0); +}; - console.log('done'); +phantom.onError = page.onError; - phantom.exit(); -}); \ No newline at end of file +page.open(testUrl, test); \ No newline at end of file diff --git a/tests/browser/lib/lodash.js b/tests/browser/lib/lodash.js deleted file mode 100644 index 4d6e9ff0..00000000 --- a/tests/browser/lib/lodash.js +++ /dev/null @@ -1,98 +0,0 @@ -/** - * @license - * lodash 3.9.3 (Custom Build) lodash.com/license | Underscore.js 1.8.3 underscorejs.org/LICENSE - * Build: `lodash modern -o ./lodash.js` - */ -;(function(){function n(n,t){if(n!==t){var r=null===n,e=n===m,u=n===n,i=null===t,o=t===m,f=t===t;if(n>t&&!i||!u||r&&!o&&f||e&&f)return 1;if(n=n&&9<=n&&13>=n||32==n||160==n||5760==n||6158==n||8192<=n&&(8202>=n||8232==n||8233==n||8239==n||8287==n||12288==n||65279==n); -}function _(n,t){for(var r=-1,e=n.length,u=-1,i=[];++ro(t,l,0)&&u.push(l);return u}function at(n,t){var r=true;return Mu(n,function(n,e,u){return r=!!t(n,e,u)}),r}function ct(n,t,r,e){var u=e,i=u;return Mu(n,function(n,o,f){o=+t(n,o,f),(r(o,u)||o===e&&o===i)&&(u=o,i=n)}),i}function st(n,t){var r=[];return Mu(n,function(n,e,u){t(n,e,u)&&r.push(n); -}),r}function pt(n,t,r,e){var u;return r(n,function(n,r,i){return t(n,r,i)?(u=e?r:n,false):void 0}),u}function ht(n,t,r){for(var e=-1,u=n.length,i=-1,o=[];++et&&(t=-t>u?0:u+t),r=r===m||r>u?u:+r||0,0>r&&(r+=u),u=t>r?0:r-t>>>0,t>>>=0,r=Me(u);++eu(l,s,0)&&((t||f)&&l.push(s),a.push(c))}return a}function Ft(n,t){for(var r=-1,e=t.length,u=Me(e);++r>>1,o=n[i];(r?o<=t:ou?m:i,u=1);++earguments.length;return typeof e=="function"&&i===m&&Ti(r)?n(r,e,u,o):Et(r,mr(e,i,4),u,o,t)}}function sr(n,t,r,e,u,i,o,f,l,a){function c(){for(var w=arguments.length,A=w,j=Me(w);A--;)j[A]=arguments[A];if(e&&(j=qt(j,e,u)),i&&(j=Dt(j,i,o)),v||y){var A=c.placeholder,k=_(j,A),w=w-k.length; -if(wt?0:t)):[]}function qr(n,t,r){var e=n?n.length:0;return e?((r?Cr(n,t,r):null==t)&&(t=1), -t=e-(+t||0),Ct(n,0,0>t?0:t)):[]}function Dr(n){return n?n[0]:m}function Kr(n,t,e){var u=n?n.length:0;if(!u)return-1;if(typeof e=="number")e=0>e?ku(u+e,0):e;else if(e)return e=zt(n,t),n=n[e],(t===t?t===n:n!==n)?e:-1;return r(n,t,e||0)}function Vr(n){var t=n?n.length:0;return t?n[t-1]:m}function Yr(n){return Pr(n,1)}function Zr(n,t,e,u){if(!n||!n.length)return[];null!=t&&typeof t!="boolean"&&(u=e,e=Cr(n,t,u)?null:t,t=false);var i=mr();if((null!=e||i!==it)&&(e=i(e,u,3)),t&&br()==r){t=e;var o;e=-1,u=n.length; -for(var i=-1,f=[];++er?ku(u+r,0):r||0,typeof n=="string"||!Ti(n)&&me(n)?rt?0:+t||0,e);++r=n&&(t=null),r}}function fe(n,t,r){function e(){var r=t-(wi()-a);0>=r||r>t?(f&&cu(f),r=p,f=s=p=m,r&&(h=wi(),l=n.apply(c,o),s||f||(o=c=null))):s=gu(e,r)}function u(){s&&cu(s),f=s=p=m,(v||_!==t)&&(h=wi(),l=n.apply(c,o),s||f||(o=c=null))}function i(){if(o=arguments,a=wi(),c=this,p=v&&(s||!g),false===_)var r=g&&!s;else{f||g||(h=a);var i=_-(a-h),y=0>=i||i>_;y?(f&&(f=cu(f)),h=a,l=n.apply(c,o)):f||(f=gu(u,i))}return y&&s?s=cu(s):s||t===_||(s=gu(e,t)),r&&(y=true,l=n.apply(c,o)), -!y||s||f||(o=c=null),l}var o,f,l,a,c,s,p,h=0,_=false,v=true;if(typeof n!="function")throw new Je(N);if(t=0>t?0:+t||0,true===r)var g=true,v=false;else ve(r)&&(g=r.leading,_="maxWait"in r&&ku(+r.maxWait||0,t),v="trailing"in r?r.trailing:v);return i.cancel=function(){s&&cu(s),f&&cu(f),f=s=p=m},i}function le(n,t){function r(){var e=arguments,u=t?t.apply(this,e):e[0],i=r.cache;return i.has(u)?i.get(u):(e=n.apply(this,e),r.cache=i.set(u,e),e)}if(typeof n!="function"||t&&typeof t!="function")throw new Je(N);return r.cache=new le.Cache, -r}function ae(n,t){if(typeof n!="function")throw new Je(N);return t=ku(t===m?n.length-1:+t||0,0),function(){for(var r=arguments,e=-1,u=ku(r.length-t,0),i=Me(u);++et}function se(n){return p(n)&&Ir(n)&&uu.call(n)==z}function pe(n){return!!n&&1===n.nodeType&&p(n)&&-1t||!n||!Au(t))return r;do t%2&&(r+=n),t=su(t/2),n+=n;while(t);return r}function Se(n,t,r){var e=n;return(n=u(n))?(r?Cr(e,t,r):null==t)?n.slice(v(n),g(n)+1):(t+="",n.slice(i(n,t),o(n,t)+1)):n}function Te(n,t,r){ -return r&&Cr(n,t,r)&&(t=null),n=u(n),n.match(t||Wn)||[]}function Ue(n,t,r){return r&&Cr(n,t,r)&&(t=null),p(n)?Ne(n):it(n,t)}function $e(n){return function(){return n}}function Fe(n){return n}function Ne(n){return xt(ot(n,true))}function Le(n,t,r){if(null==r){var e=ve(t),u=e?Ki(t):null;((u=u&&u.length?yt(t,u):null)?u.length:e)||(u=false,r=t,t=n,n=this)}u||(u=yt(t,Ki(t)));var i=true,e=-1,o=$i(n),f=u.length;false===r?i=false:ve(r)&&"chain"in r&&(i=r.chain);for(;++e=S)return r}else n=0;return Ku(r,e)}}(),Ju=ae(function(n,t){return Ir(n)?lt(n,ht(t,false,true)):[]}),Xu=tr(),Hu=tr(true),Qu=ae(function(n){for(var t=n.length,e=t,u=Me(c),i=br(),o=i==r,f=[];e--;){var l=n[e]=Ir(l=n[e])?l:[];u[e]=o&&120<=l.length?Vu(e&&l):null}var o=n[0],a=-1,c=o?o.length:0,s=u[0]; -n:for(;++a(s?qn(s,l):i(f,l,0))){for(e=t;--e;){var p=u[e];if(0>(p?qn(p,l):i(n[e],l,0)))continue n}s&&s.push(l),f.push(l)}return f}),ni=ae(function(t,r){r=ht(r);var e=et(t,r);return Rt(t,r.sort(n)),e}),ti=_r(),ri=_r(true),ei=ae(function(n){return $t(ht(n,false,true))}),ui=ae(function(n,t){return Ir(n)?lt(n,t):[]}),ii=ae(Gr),oi=ae(function(n){var t=n.length,r=2--n?t.apply(this,arguments):void 0}},Nn.ary=function(n,t,r){return r&&Cr(n,t,r)&&(t=null),t=n&&null==t?n.length:ku(+t||0,0),vr(n,I,null,null,null,null,t)},Nn.assign=Ni,Nn.at=fi,Nn.before=oe,Nn.bind=bi,Nn.bindAll=xi,Nn.bindKey=Ai,Nn.callback=Ue,Nn.chain=Hr,Nn.chunk=function(n,t,r){t=(r?Cr(n,t,r):null==t)?1:ku(+t||1,1),r=0;for(var e=n?n.length:0,u=-1,i=Me(au(e/t));rr&&(r=-r>u?0:u+r),e=e===m||e>u?u:+e||0,0>e&&(e+=u),u=r>e?0:e>>>0,r>>>=0;rt?0:t)):[]},Nn.takeRight=function(n,t,r){var e=n?n.length:0;return e?((r?Cr(n,t,r):null==t)&&(t=1),t=e-(+t||0),Ct(n,0>t?0:t)):[]},Nn.takeRightWhile=function(n,t,r){return n&&n.length?Nt(n,mr(t,r,3),false,true):[]},Nn.takeWhile=function(n,t,r){return n&&n.length?Nt(n,mr(t,r,3)):[]; -},Nn.tap=function(n,t,r){return t.call(r,n),n},Nn.throttle=function(n,t,r){var e=true,u=true;if(typeof n!="function")throw new Je(N);return false===r?e=false:ve(r)&&(e="leading"in r?!!r.leading:e,u="trailing"in r?!!r.trailing:u),Fn.leading=e,Fn.maxWait=+t,Fn.trailing=u,fe(n,t,Fn)},Nn.thru=Qr,Nn.times=function(n,t,r){if(n=su(n),1>n||!Au(n))return[];var e=-1,u=Me(Ou(n,4294967295));for(t=Mt(t,r,1);++ee?u[e]=t(e):t(e);return u},Nn.toArray=xe,Nn.toPlainObject=Ae,Nn.transform=function(n,t,r,e){var u=Ti(n)||we(n); -return t=mr(t,e,4),null==r&&(u||ve(n)?(e=n.constructor,r=u?Ti(n)?new e:[]:Bu($i(e)?e.prototype:null)):r={}),(u?Kn:vt)(n,function(n,e,u){return t(r,n,e,u)}),r},Nn.union=ei,Nn.uniq=Zr,Nn.unzip=Gr,Nn.unzipWith=Jr,Nn.values=Re,Nn.valuesIn=function(n){return Ft(n,ke(n))},Nn.where=function(n,t){return te(n,xt(t))},Nn.without=ui,Nn.wrap=function(n,t){return t=null==t?Fe:t,vr(t,O,null,[n],[])},Nn.xor=function(){for(var n=-1,t=arguments.length;++nr?0:+r||0,e),r-=t.length,0<=r&&n.indexOf(t,r)==r},Nn.escape=function(n){return(n=u(n))&&pn.test(n)?n.replace(cn,a):n},Nn.escapeRegExp=Ee,Nn.every=ne,Nn.find=ai,Nn.findIndex=Xu,Nn.findKey=zi,Nn.findLast=ci,Nn.findLastIndex=Hu,Nn.findLastKey=Bi,Nn.findWhere=function(n,t){return ai(n,xt(t))},Nn.first=Dr,Nn.get=function(n,t,r){ -return n=null==n?m:dt(n,Br(t),t+""),n===m?r:n},Nn.gt=ce,Nn.gte=function(n,t){return n>=t},Nn.has=function(n,t){if(null==n)return false;var r=ru.call(n,t);if(!r&&!Wr(t)){if(t=Br(t),n=1==t.length?n:dt(n,Ct(t,0,-1)),null==n)return false;t=Vr(t),r=ru.call(n,t)}return r||Tr(n.length)&&Er(t,n.length)&&(Ti(n)||se(n))},Nn.identity=Fe,Nn.includes=re,Nn.indexOf=Kr,Nn.inRange=function(n,t,r){return t=+t||0,"undefined"===typeof r?(r=t,t=0):r=+r||0,n>=Ou(t,r)&&nr?ku(e+r,0):Ou(r||0,e-1))+1;else if(r)return u=zt(n,t,true)-1,n=n[u],(t===t?t===n:n!==n)?u:-1;if(t!==t)return s(n,u,true);for(;u--;)if(n[u]===t)return u;return-1},Nn.lt=be,Nn.lte=function(n,t){return n<=t},Nn.max=oo,Nn.min=fo,Nn.noConflict=function(){return h._=iu,this},Nn.noop=ze,Nn.now=wi, -Nn.pad=function(n,t,r){n=u(n),t=+t;var e=n.length;return er?0:+r||0,n.length),n.lastIndexOf(t,r)==r},Nn.sum=function(n,t,r){r&&Cr(n,t,r)&&(t=null);var e=mr(),u=null==t;if(u&&e===it||(u=false, -t=e(t,r,3)),u){for(n=Ti(n)?n:Lr(n),t=n.length,r=0;t--;)r+=+n[t]||0;n=r}else n=Ut(n,t);return n},Nn.template=function(n,t,r){var e=Nn.templateSettings;r&&Cr(n,t,r)&&(t=r=null),n=u(n),t=tt(rt({},r||t),e,nt),r=tt(rt({},t.imports),e.imports,nt);var i,o,f=Ki(r),l=Ft(r,f),a=0;r=t.interpolate||En;var s="__p+='";r=Ze((t.escape||En).source+"|"+r.source+"|"+(r===vn?An:En).source+"|"+(t.evaluate||En).source+"|$","g");var p="sourceURL"in t?"//# sourceURL="+t.sourceURL+"\n":"";if(n.replace(r,function(t,r,e,u,f,l){ -return e||(e=u),s+=n.slice(a,l).replace(Cn,c),r&&(i=true,s+="'+__e("+r+")+'"),f&&(o=true,s+="';"+f+";\n__p+='"),e&&(s+="'+((__t=("+e+"))==null?'':__t)+'"),a=l+t.length,t}),s+="';",(t=t.variable)||(s="with(obj){"+s+"}"),s=(o?s.replace(on,""):s).replace(fn,"$1").replace(ln,"$1;"),s="function("+(t||"obj")+"){"+(t?"":"obj||(obj={});")+"var __t,__p=''"+(i?",__e=_.escape":"")+(o?",__j=Array.prototype.join;function print(){__p+=__j.call(arguments,'')}":";")+s+"return __p}",t=eo(function(){return De(f,p+"return "+s).apply(m,l); -}),t.source=s,_e(t))throw t;return t},Nn.trim=Se,Nn.trimLeft=function(n,t,r){var e=n;return(n=u(n))?n.slice((r?Cr(e,t,r):null==t)?v(n):i(n,t+"")):n},Nn.trimRight=function(n,t,r){var e=n;return(n=u(n))?(r?Cr(e,t,r):null==t)?n.slice(0,g(n)+1):n.slice(0,o(n,t+"")+1):n},Nn.trunc=function(n,t,r){r&&Cr(n,t,r)&&(t=null);var e=C;if(r=W,null!=t)if(ve(t)){var i="separator"in t?t.separator:i,e="length"in t?+t.length||0:e;r="omission"in t?u(t.omission):r}else e=+t||0;if(n=u(n),e>=n.length)return n;if(e-=r.length, -1>e)return r;if(t=n.slice(0,e),null==i)return t+r;if(de(i)){if(n.slice(e).search(i)){var o,f=n.slice(0,e);for(i.global||(i=Ze(i.source,(jn.exec(i)||"")+"g")),i.lastIndex=0;n=i.exec(f);)o=n.index;t=t.slice(0,null==o?e:o)}}else n.indexOf(i,e)!=e&&(i=t.lastIndexOf(i),-1u.__dir__?"Right":"")}),u},Bn.prototype[n+"Right"]=function(t){return this.reverse()[n](t).reverse(); -},Bn.prototype[n+"RightWhile"]=function(n,t){return this.reverse()[r](n,t).reverse()}}),Kn(["first","last"],function(n,t){var r="take"+(t?"Right":"");Bn.prototype[n]=function(){return this[r](1).value()[0]}}),Kn(["initial","rest"],function(n,t){var r="drop"+(t?"":"Right");Bn.prototype[n]=function(){return this[r](1)}}),Kn(["pluck","where"],function(n,t){var r=t?"filter":"map",e=t?xt:Be;Bn.prototype[n]=function(n){return this[r](e(n))}}),Bn.prototype.compact=function(){return this.filter(Fe)},Bn.prototype.reject=function(n,t){ -return n=mr(n,t,1),this.filter(function(t){return!n(t)})},Bn.prototype.slice=function(n,t){n=null==n?0:+n||0;var r=this;return 0>n?r=this.takeRight(-n):n&&(r=this.drop(n)),t!==m&&(t=+t||0,r=0>t?r.dropRight(-t):r.take(t-n)),r},Bn.prototype.toArray=function(){return this.drop(0)},vt(Bn.prototype,function(n,t){var r=Nn[t];if(r){var e=/^(?:filter|map|reject)|While$/.test(t),u=/^(?:first|last)$/.test(t);Nn.prototype[t]=function(){function t(n){return n=[n],_u.apply(n,i),r.apply(Nn,n)}var i=arguments,o=this.__chain__,f=this.__wrapped__,l=!!this.__actions__.length,a=f instanceof Bn,c=i[0],s=a||Ti(f); -return s&&e&&typeof c=="function"&&1!=c.length&&(a=s=false),a=a&&!l,u&&!o?a?n.call(f):r.call(Nn,this.value()):s?(f=n.apply(a?f:new Bn(this),i),u||!l&&!f.__actions__||(f.__actions__||(f.__actions__=[])).push({func:Qr,args:[t],thisArg:Nn}),new zn(f,o)):this.thru(t)}}}),Kn("concat join pop push replace shift sort splice split unshift".split(" "),function(n){var t=(/^(?:replace|split)$/.test(n)?Qe:Xe)[n],r=/^(?:push|sort|unshift)$/.test(n)?"tap":"thru",e=/^(?:join|pop|replace|shift)$/.test(n);Nn.prototype[n]=function(){ -var n=arguments;return e&&!this.__chain__?t.apply(this.value(),n):this[r](function(r){return t.apply(r,n)})}}),vt(Bn.prototype,function(n,t){var r=Nn[t];if(r){var e=r.name;(Lu[e]||(Lu[e]=[])).push({name:t,func:r})}}),Lu[sr(null,x).name]=[{name:"wrapper",func:null}],Bn.prototype.clone=function(){var n=this.__actions__,t=this.__iteratees__,r=this.__views__,e=new Bn(this.__wrapped__);return e.__actions__=n?Dn(n):null,e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=t?Dn(t):null, -e.__takeCount__=this.__takeCount__,e.__views__=r?Dn(r):null,e},Bn.prototype.reverse=function(){if(this.__filtered__){var n=new Bn(this);n.__dir__=-1,n.__filtered__=true}else n=this.clone(),n.__dir__*=-1;return n},Bn.prototype.value=function(){var n=this.__wrapped__.value();if(!Ti(n))return Lt(n,this.__actions__);var t,r=this.__dir__,e=0>r;t=n.length;for(var u=this.__views__,i=0,o=-1,f=u?u.length:0;++op.index:u=_:!h(s))))continue n}else if(p=h(s),_==F)s=p;else if(!p){if(_==$)continue n;break n}}a[l++]=s}return a},Nn.prototype.chain=function(){ -return Hr(this)},Nn.prototype.commit=function(){return new zn(this.value(),this.__chain__)},Nn.prototype.plant=function(n){for(var t,r=this;r instanceof Ln;){var e=Mr(r);t?u.__wrapped__=e:t=e;var u=e,r=r.__wrapped__}return u.__wrapped__=n,t},Nn.prototype.reverse=function(){var n=this.__wrapped__;return n instanceof Bn?(this.__actions__.length&&(n=new Bn(this)),new zn(n.reverse(),this.__chain__)):this.thru(function(n){return n.reverse()})},Nn.prototype.toString=function(){return this.value()+""},Nn.prototype.run=Nn.prototype.toJSON=Nn.prototype.valueOf=Nn.prototype.value=function(){ -return Lt(this.__wrapped__,this.__actions__)},Nn.prototype.collect=Nn.prototype.map,Nn.prototype.head=Nn.prototype.first,Nn.prototype.select=Nn.prototype.filter,Nn.prototype.tail=Nn.prototype.rest,Nn}var m,w="3.9.3",b=1,x=2,A=4,j=8,k=16,O=32,R=64,I=128,E=256,C=30,W="...",S=150,T=16,U=0,$=1,F=2,N="Expected a function",L="__lodash_placeholder__",z="[object Arguments]",B="[object Array]",M="[object Boolean]",P="[object Date]",q="[object Error]",D="[object Function]",K="[object Number]",V="[object Object]",Y="[object RegExp]",Z="[object String]",G="[object ArrayBuffer]",J="[object Float32Array]",X="[object Float64Array]",H="[object Int8Array]",Q="[object Int16Array]",nn="[object Int32Array]",tn="[object Uint8Array]",rn="[object Uint8ClampedArray]",en="[object Uint16Array]",un="[object Uint32Array]",on=/\b__p\+='';/g,fn=/\b(__p\+=)''\+/g,ln=/(__e\(.*?\)|\b__t\))\+'';/g,an=/&(?:amp|lt|gt|quot|#39|#96);/g,cn=/[&<>"'`]/g,sn=RegExp(an.source),pn=RegExp(cn.source),hn=/<%-([\s\S]+?)%>/g,_n=/<%([\s\S]+?)%>/g,vn=/<%=([\s\S]+?)%>/g,gn=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\n\\]|\\.)*?\1)\]/,yn=/^\w*$/,dn=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\n\\]|\\.)*?)\2)\]/g,mn=/[.*+?^${}()|[\]\/\\]/g,wn=RegExp(mn.source),bn=/[\u0300-\u036f\ufe20-\ufe23]/g,xn=/\\(\\)?/g,An=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,jn=/\w*$/,kn=/^0[xX]/,On=/^\[object .+?Constructor\]$/,Rn=/^\d+$/,In=/[\xc0-\xd6\xd8-\xde\xdf-\xf6\xf8-\xff]/g,En=/($^)/,Cn=/['\n\r\u2028\u2029\\]/g,Wn=RegExp("[A-Z\\xc0-\\xd6\\xd8-\\xde]+(?=[A-Z\\xc0-\\xd6\\xd8-\\xde][a-z\\xdf-\\xf6\\xf8-\\xff]+)|[A-Z\\xc0-\\xd6\\xd8-\\xde]?[a-z\\xdf-\\xf6\\xf8-\\xff]+|[A-Z\\xc0-\\xd6\\xd8-\\xde]+|[0-9]+","g"),Sn=" \t\x0b\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000",Tn="Array ArrayBuffer Date Error Float32Array Float64Array Function Int8Array Int16Array Int32Array Math Number Object RegExp Set String _ clearTimeout document isFinite parseFloat parseInt setTimeout TypeError Uint8Array Uint8ClampedArray Uint16Array Uint32Array WeakMap window".split(" "),Un={}; -Un[J]=Un[X]=Un[H]=Un[Q]=Un[nn]=Un[tn]=Un[rn]=Un[en]=Un[un]=true,Un[z]=Un[B]=Un[G]=Un[M]=Un[P]=Un[q]=Un[D]=Un["[object Map]"]=Un[K]=Un[V]=Un[Y]=Un["[object Set]"]=Un[Z]=Un["[object WeakMap]"]=false;var $n={};$n[z]=$n[B]=$n[G]=$n[M]=$n[P]=$n[J]=$n[X]=$n[H]=$n[Q]=$n[nn]=$n[K]=$n[V]=$n[Y]=$n[Z]=$n[tn]=$n[rn]=$n[en]=$n[un]=true,$n[q]=$n[D]=$n["[object Map]"]=$n["[object Set]"]=$n["[object WeakMap]"]=false;var Fn={leading:false,maxWait:0,trailing:false},Nn={"\xc0":"A","\xc1":"A","\xc2":"A","\xc3":"A","\xc4":"A","\xc5":"A", -"\xe0":"a","\xe1":"a","\xe2":"a","\xe3":"a","\xe4":"a","\xe5":"a","\xc7":"C","\xe7":"c","\xd0":"D","\xf0":"d","\xc8":"E","\xc9":"E","\xca":"E","\xcb":"E","\xe8":"e","\xe9":"e","\xea":"e","\xeb":"e","\xcc":"I","\xcd":"I","\xce":"I","\xcf":"I","\xec":"i","\xed":"i","\xee":"i","\xef":"i","\xd1":"N","\xf1":"n","\xd2":"O","\xd3":"O","\xd4":"O","\xd5":"O","\xd6":"O","\xd8":"O","\xf2":"o","\xf3":"o","\xf4":"o","\xf5":"o","\xf6":"o","\xf8":"o","\xd9":"U","\xda":"U","\xdb":"U","\xdc":"U","\xf9":"u","\xfa":"u", -"\xfb":"u","\xfc":"u","\xdd":"Y","\xfd":"y","\xff":"y","\xc6":"Ae","\xe6":"ae","\xde":"Th","\xfe":"th","\xdf":"ss"},Ln={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},zn={"&":"&","<":"<",">":">",""":'"',"'":"'","`":"`"},Bn={"function":true,object:true},Mn={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Pn=Bn[typeof exports]&&exports&&!exports.nodeType&&exports,qn=Bn[typeof module]&&module&&!module.nodeType&&module,Dn=Bn[typeof self]&&self&&self.Object&&self,Kn=Bn[typeof window]&&window&&window.Object&&window,Vn=qn&&qn.exports===Pn&&Pn,Yn=Pn&&qn&&typeof global=="object"&&global&&global.Object&&global||Kn!==(this&&this.window)&&Kn||Dn||this,Zn=d(); -typeof define=="function"&&typeof define.amd=="object"&&define.amd?(Yn._=Zn, define(function(){return Zn})):Pn&&qn?Vn?(qn.exports=Zn)._=Zn:Pn._=Zn:Yn._=Zn}).call(this); \ No newline at end of file From 08c5648bb921624e13853fe8ce544f9740307101 Mon Sep 17 00:00:00 2001 From: liabru Date: Tue, 4 Aug 2015 00:37:40 +0100 Subject: [PATCH 03/10] added testDemo to grunt test --- .gitignore | 3 +-- .travis.yml | 3 ++- Gruntfile.js | 23 +++++++++++++++++++---- demo/js/Demo.js | 7 ++++--- tests/browser/TestDemo.js | 11 +++++++---- 5 files changed, 33 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 6ec1a08d..fece6cb7 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,4 @@ matter-doc-theme build/matter-dev.js build/matter-dev.min.js demo/js/lib/matter-dev.js -tests/browser/diffs -tests/browser/worlds \ No newline at end of file +tests/browser/diffs \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 4f411ab6..422054b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,4 +3,5 @@ node_js: - "0.10" before_install: npm install -g grunt-cli install: npm install -before_script: grunt \ No newline at end of file +before_script: + - grunt dev \ No newline at end of file diff --git a/Gruntfile.js b/Gruntfile.js index 7b38f994..a22fee61 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -109,8 +109,11 @@ module.exports = function(grunt) { } }, shell: { - testBrowser: { - command: 'phantomjs tests/browser/TestDemo.js', + testDemo: { + command: function(arg) { + arg = arg ? ' --' + arg : ''; + return 'phantomjs tests/browser/TestDemo.js' + arg; + }, options: { execOptions: { timeout: 1000 * 60 @@ -131,10 +134,22 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-shell'); grunt.registerTask('default', ['test', 'build']); - grunt.registerTask('test', ['jshint']); - grunt.registerTask('testBrowser', ['shell:testBrowser']); + grunt.registerTask('test', ['jshint', 'testDemo']); grunt.registerTask('dev', ['build:dev', 'connect:watch', 'watch']); + grunt.registerTask('testDemo', function() { + var updateAll = grunt.option('updateAll'), + diff = grunt.option('diff'); + + if (updateAll) { + grunt.task.run('shell:testDemo:updateAll'); + } else if (diff) { + grunt.task.run('shell:testDemo:diff'); + } else { + grunt.task.run('shell:testDemo'); + } + }); + grunt.registerTask('build', function(mode) { var isDev = (mode === 'dev'), isRelease = (mode === 'release'), diff --git a/demo/js/Demo.js b/demo/js/Demo.js index 8e75d60e..00304ed6 100644 --- a/demo/js/Demo.js +++ b/demo/js/Demo.js @@ -25,6 +25,7 @@ } var Demo = {}; + Matter.Demo = Demo; var _engine, _gui, @@ -34,8 +35,6 @@ _sceneEvents = [], _useInspector = window.location.hash.indexOf('-inspect') !== -1, _isMobile = /(ipad|iphone|ipod|android)/gi.test(navigator.userAgent); - - window.Matter.Demo = Demo; // initialise the demo @@ -53,7 +52,6 @@ // create a Matter engine // NOTE: this is actually Matter.Engine.create(), see the aliases at top of this file _engine = Engine.create(container, options); - window.Matter.Demo._engine = _engine; // add a mouse controlled constraint _mouseConstraint = MouseConstraint.create(_engine); @@ -1611,6 +1609,9 @@ var demoSelect = document.getElementById('demo-select'), demoReset = document.getElementById('demo-reset'); + // engine reference for external use + Matter.Demo._engine = _engine; + // create a Matter.Gui if (!_isMobile && Gui) { _gui = Gui.create(_engine); diff --git a/tests/browser/TestDemo.js b/tests/browser/TestDemo.js index 1f70c545..3a2dd020 100644 --- a/tests/browser/TestDemo.js +++ b/tests/browser/TestDemo.js @@ -53,6 +53,9 @@ var test = function(status) { var worldStart = page.evaluate(function(demo) { var engine = Matter.Demo._engine; Matter.Runner.stop(engine); + if (!(demo in Matter.Demo)) { + throw '\'' + demo + '\' is not defined in Matter.Demo'; + } Matter.Demo[demo](); return engine.world; }, demo); @@ -71,7 +74,7 @@ var test = function(status) { if (fs.exists(worldStartPath)) { var worldStartRef = resurrect.resurrect(fs.read(worldStartPath)); - var worldStartDiff = compare(worldStart, worldStartRef); + var worldStartDiff = compare(worldStartRef, worldStart); if (worldStartDiff.length !== 0) { if (diff) { @@ -92,7 +95,7 @@ var test = function(status) { if (fs.exists(worldEndPath)) { var worldEndRef = resurrect.resurrect(fs.read(worldEndPath)); - var worldEndDiff = compare(worldEnd, worldEndRef); + var worldEndDiff = compare(worldEndRef, worldEnd); if (worldEndDiff.length !== 0) { if (diff) { @@ -133,9 +136,9 @@ var test = function(status) { if (isOk) { console.log('ok'); } else { - console.log('changes detected on:'); + console.log('\nchanges detected on:'); console.log(changed.join(', ')); - console.log('review, then --update [name] or --updateAll'); + console.log('\nreview, then --update [name] or --updateAll'); console.log('use --diff for diff log'); } From ae32d63b12f195448ece4d61fbfbf6478fed7691 Mon Sep 17 00:00:00 2001 From: liabru Date: Tue, 4 Aug 2015 00:53:31 +0100 Subject: [PATCH 04/10] updated browser test refs --- .../refs/airFriction/airFriction-0.json | 1427 + .../refs/airFriction/airFriction-10.json | 1497 + tests/browser/refs/avalanche/avalanche-0.json | 36249 +++++++ .../browser/refs/avalanche/avalanche-10.json | 37319 +++++++ tests/browser/refs/ballPool/ballPool-0.json | 66852 ++++++++++++ tests/browser/refs/ballPool/ballPool-10.json | 68422 ++++++++++++ .../browser/refs/beachBalls/beachBalls-0.json | 3307 + .../refs/beachBalls/beachBalls-10.json | 3397 + tests/browser/refs/bridge/bridge-0.json | 8066 ++ tests/browser/refs/bridge/bridge-10.json | 8396 ++ .../browser/refs/broadphase/broadphase-0.json | 22924 ++++ .../refs/broadphase/broadphase-10.json | 23964 +++++ tests/browser/refs/car/car-0.json | 4332 + tests/browser/refs/car/car-10.json | 4462 + tests/browser/refs/catapult/catapult-0.json | 2923 + tests/browser/refs/catapult/catapult-10.json | 3053 + tests/browser/refs/chains/chains-0.json | 7493 ++ tests/browser/refs/chains/chains-10.json | 7733 ++ .../refs/circleStack/circleStack-0.json | 40902 +++++++ .../refs/circleStack/circleStack-10.json | 41942 ++++++++ tests/browser/refs/cloth/cloth-0.json | 82964 +++++++++++++++ tests/browser/refs/cloth/cloth-10.json | 85424 +++++++++++++++ .../collisionFiltering-0.json | 22345 ++++ .../collisionFiltering-10.json | 22915 ++++ .../compositeManipulation-0.json | 3821 + .../compositeManipulation-10.json | 4021 + tests/browser/refs/compound/compound-0.json | 1668 + tests/browser/refs/compound/compound-10.json | 1728 + .../refs/compoundStack/compoundStack-0.json | 17966 ++++ .../refs/compoundStack/compoundStack-10.json | 18726 ++++ tests/browser/refs/concave/concave-0.json | 6237 ++ tests/browser/refs/concave/concave-10.json | 6517 ++ tests/browser/refs/events/events-0.json | 11979 +++ tests/browser/refs/events/events-10.json | 12339 +++ tests/browser/refs/friction/friction-0.json | 2021 + tests/browser/refs/friction/friction-10.json | 2121 + tests/browser/refs/gravity/gravity-0.json | 22915 ++++ tests/browser/refs/gravity/gravity-10.json | 23955 +++++ .../refs/manipulation/manipulation-0.json | 2695 + .../refs/manipulation/manipulation-10.json | 2829 + tests/browser/refs/mixed/mixed-0.json | 17875 ++++ tests/browser/refs/mixed/mixed-10.json | 18515 ++++ .../browser/refs/mixedSolid/mixedSolid-0.json | 8705 ++ .../refs/mixedSolid/mixedSolid-10.json | 9105 ++ .../refs/newtonsCradle/newtonsCradle-0.json | 6563 ++ .../refs/newtonsCradle/newtonsCradle-10.json | 6723 ++ tests/browser/refs/pyramid/pyramid-0.json | 12605 +++ tests/browser/refs/pyramid/pyramid-10.json | 13285 +++ .../browser/refs/raycasting/raycasting-0.json | 14451 +++ .../refs/raycasting/raycasting-10.json | 15101 +++ .../refs/restitution/restitution-0.json | 2091 + .../refs/restitution/restitution-10.json | 2181 + tests/browser/refs/rounded/rounded-0.json | 4610 + tests/browser/refs/rounded/rounded-10.json | 4730 + tests/browser/refs/sleeping/sleeping-0.json | 9198 ++ tests/browser/refs/sleeping/sleeping-10.json | 9598 ++ tests/browser/refs/slingshot/slingshot-0.json | 7069 ++ .../browser/refs/slingshot/slingshot-10.json | 7439 ++ tests/browser/refs/softBody/softBody-0.json | 31055 ++++++ tests/browser/refs/softBody/softBody-10.json | 31745 ++++++ tests/browser/refs/sprites/sprites-0.json | 11829 +++ tests/browser/refs/sprites/sprites-10.json | 12269 +++ tests/browser/refs/stack/stack-0.json | 10052 ++ tests/browser/refs/stack/stack-10.json | 10592 ++ .../refs/staticFriction/staticFriction-0.json | 2390 + .../staticFriction/staticFriction-10.json | 2500 + tests/browser/refs/stress/stress-0.json | 50312 +++++++++ tests/browser/refs/stress/stress-10.json | 53052 ++++++++++ tests/browser/refs/stress2/stress2-0.json | 83252 +++++++++++++++ tests/browser/refs/stress2/stress2-10.json | 87792 ++++++++++++++++ tests/browser/refs/svg/svg-0.json | 889 + tests/browser/refs/svg/svg-10.json | 929 + tests/browser/refs/terrain/terrain-0.json | 96 + tests/browser/refs/terrain/terrain-10.json | 96 + tests/browser/refs/timescale/timescale-0.json | 21617 ++++ .../browser/refs/timescale/timescale-10.json | 22347 ++++ tests/browser/refs/views/views-0.json | 14237 +++ tests/browser/refs/views/views-10.json | 14877 +++ .../refs/wreckingBall/wreckingBall-0.json | 10579 ++ .../refs/wreckingBall/wreckingBall-10.json | 11129 ++ 80 files changed, 1403326 insertions(+) create mode 100644 tests/browser/refs/airFriction/airFriction-0.json create mode 100644 tests/browser/refs/airFriction/airFriction-10.json create mode 100644 tests/browser/refs/avalanche/avalanche-0.json create mode 100644 tests/browser/refs/avalanche/avalanche-10.json create mode 100644 tests/browser/refs/ballPool/ballPool-0.json create mode 100644 tests/browser/refs/ballPool/ballPool-10.json create mode 100644 tests/browser/refs/beachBalls/beachBalls-0.json create mode 100644 tests/browser/refs/beachBalls/beachBalls-10.json create mode 100644 tests/browser/refs/bridge/bridge-0.json create mode 100644 tests/browser/refs/bridge/bridge-10.json create mode 100644 tests/browser/refs/broadphase/broadphase-0.json create mode 100644 tests/browser/refs/broadphase/broadphase-10.json create mode 100644 tests/browser/refs/car/car-0.json create mode 100644 tests/browser/refs/car/car-10.json create mode 100644 tests/browser/refs/catapult/catapult-0.json create mode 100644 tests/browser/refs/catapult/catapult-10.json create mode 100644 tests/browser/refs/chains/chains-0.json create mode 100644 tests/browser/refs/chains/chains-10.json create mode 100644 tests/browser/refs/circleStack/circleStack-0.json create mode 100644 tests/browser/refs/circleStack/circleStack-10.json create mode 100644 tests/browser/refs/cloth/cloth-0.json create mode 100644 tests/browser/refs/cloth/cloth-10.json create mode 100644 tests/browser/refs/collisionFiltering/collisionFiltering-0.json create mode 100644 tests/browser/refs/collisionFiltering/collisionFiltering-10.json create mode 100644 tests/browser/refs/compositeManipulation/compositeManipulation-0.json create mode 100644 tests/browser/refs/compositeManipulation/compositeManipulation-10.json create mode 100644 tests/browser/refs/compound/compound-0.json create mode 100644 tests/browser/refs/compound/compound-10.json create mode 100644 tests/browser/refs/compoundStack/compoundStack-0.json create mode 100644 tests/browser/refs/compoundStack/compoundStack-10.json create mode 100644 tests/browser/refs/concave/concave-0.json create mode 100644 tests/browser/refs/concave/concave-10.json create mode 100644 tests/browser/refs/events/events-0.json create mode 100644 tests/browser/refs/events/events-10.json create mode 100644 tests/browser/refs/friction/friction-0.json create mode 100644 tests/browser/refs/friction/friction-10.json create mode 100644 tests/browser/refs/gravity/gravity-0.json create mode 100644 tests/browser/refs/gravity/gravity-10.json create mode 100644 tests/browser/refs/manipulation/manipulation-0.json create mode 100644 tests/browser/refs/manipulation/manipulation-10.json create mode 100644 tests/browser/refs/mixed/mixed-0.json create mode 100644 tests/browser/refs/mixed/mixed-10.json create mode 100644 tests/browser/refs/mixedSolid/mixedSolid-0.json create mode 100644 tests/browser/refs/mixedSolid/mixedSolid-10.json create mode 100644 tests/browser/refs/newtonsCradle/newtonsCradle-0.json create mode 100644 tests/browser/refs/newtonsCradle/newtonsCradle-10.json create mode 100644 tests/browser/refs/pyramid/pyramid-0.json create mode 100644 tests/browser/refs/pyramid/pyramid-10.json create mode 100644 tests/browser/refs/raycasting/raycasting-0.json create mode 100644 tests/browser/refs/raycasting/raycasting-10.json create mode 100644 tests/browser/refs/restitution/restitution-0.json create mode 100644 tests/browser/refs/restitution/restitution-10.json create mode 100644 tests/browser/refs/rounded/rounded-0.json create mode 100644 tests/browser/refs/rounded/rounded-10.json create mode 100644 tests/browser/refs/sleeping/sleeping-0.json create mode 100644 tests/browser/refs/sleeping/sleeping-10.json create mode 100644 tests/browser/refs/slingshot/slingshot-0.json create mode 100644 tests/browser/refs/slingshot/slingshot-10.json create mode 100644 tests/browser/refs/softBody/softBody-0.json create mode 100644 tests/browser/refs/softBody/softBody-10.json create mode 100644 tests/browser/refs/sprites/sprites-0.json create mode 100644 tests/browser/refs/sprites/sprites-10.json create mode 100644 tests/browser/refs/stack/stack-0.json create mode 100644 tests/browser/refs/stack/stack-10.json create mode 100644 tests/browser/refs/staticFriction/staticFriction-0.json create mode 100644 tests/browser/refs/staticFriction/staticFriction-10.json create mode 100644 tests/browser/refs/stress/stress-0.json create mode 100644 tests/browser/refs/stress/stress-10.json create mode 100644 tests/browser/refs/stress2/stress2-0.json create mode 100644 tests/browser/refs/stress2/stress2-10.json create mode 100644 tests/browser/refs/svg/svg-0.json create mode 100644 tests/browser/refs/svg/svg-10.json create mode 100644 tests/browser/refs/terrain/terrain-0.json create mode 100644 tests/browser/refs/terrain/terrain-10.json create mode 100644 tests/browser/refs/timescale/timescale-0.json create mode 100644 tests/browser/refs/timescale/timescale-10.json create mode 100644 tests/browser/refs/views/views-0.json create mode 100644 tests/browser/refs/views/views-10.json create mode 100644 tests/browser/refs/wreckingBall/wreckingBall-0.json create mode 100644 tests/browser/refs/wreckingBall/wreckingBall-10.json diff --git a/tests/browser/refs/airFriction/airFriction-0.json b/tests/browser/refs/airFriction/airFriction-0.json new file mode 100644 index 00000000..bc80c25a --- /dev/null +++ b/tests/browser/refs/airFriction/airFriction-0.json @@ -0,0 +1,1427 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 149 + }, + "composites": { + "#": 152 + }, + "constraints": { + "#": 153 + }, + "events": { + "#": 157 + }, + "gravity": { + "#": 159 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + }, + { + "#": 128 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3600, + "axes": { + "#": 87 + }, + "bounds": { + "#": 90 + }, + "collisionFilter": { + "#": 93 + }, + "constraintImpulse": { + "#": 94 + }, + "density": 0.001, + "force": { + "#": 95 + }, + "friction": 0.1, + "frictionAir": 0.001, + "frictionStatic": 0.5, + "id": 4, + "inertia": 8640, + "inverseInertia": 0.00011574074074074075, + "inverseMass": 0.2777777777777778, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.6, + "motion": 0, + "parent": null, + "position": { + "#": 96 + }, + "positionImpulse": { + "#": 97 + }, + "positionPrev": { + "#": 98 + }, + "render": { + "#": 99 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 101 + }, + "vertices": { + "#": 102 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 230, + "y": 130 + }, + { + "x": 170, + "y": 70 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 100 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 100 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170, + "y": 70 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 70 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 130 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 170, + "y": 130 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3600, + "axes": { + "#": 108 + }, + "bounds": { + "#": 111 + }, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": 0.001, + "force": { + "#": 116 + }, + "friction": 0.1, + "frictionAir": 0.05, + "frictionStatic": 0.5, + "id": 5, + "inertia": 8640, + "inverseInertia": 0.00011574074074074075, + "inverseMass": 0.2777777777777778, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.6, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "render": { + "#": 120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 122 + }, + "vertices": { + "#": 123 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 430, + "y": 130 + }, + { + "x": 370, + "y": 70 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 100 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 121 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 70 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 70 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430, + "y": 130 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 130 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3600, + "axes": { + "#": 129 + }, + "bounds": { + "#": 132 + }, + "collisionFilter": { + "#": 135 + }, + "constraintImpulse": { + "#": 136 + }, + "density": 0.001, + "force": { + "#": 137 + }, + "friction": 0.1, + "frictionAir": 0.1, + "frictionStatic": 0.5, + "id": 6, + "inertia": 8640, + "inverseInertia": 0.00011574074074074075, + "inverseMass": 0.2777777777777778, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.6, + "motion": 0, + "parent": null, + "position": { + "#": 138 + }, + "positionImpulse": { + "#": 139 + }, + "positionPrev": { + "#": 140 + }, + "render": { + "#": 141 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 143 + }, + "vertices": { + "#": 144 + } + }, + [ + { + "#": 130 + }, + { + "#": 131 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 133 + }, + "min": { + "#": 134 + } + }, + { + "x": 630, + "y": 130 + }, + { + "x": 570, + "y": 70 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 100 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 142 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 570, + "y": 70 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 70 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 630, + "y": 130 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 570, + "y": 130 + }, + { + "max": { + "#": 150 + }, + "min": { + "#": 151 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [], + [ + { + "#": 154 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 155 + }, + "pointB": "", + "render": { + "#": 156 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 158 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/airFriction/airFriction-10.json b/tests/browser/refs/airFriction/airFriction-10.json new file mode 100644 index 00000000..bc7b86b7 --- /dev/null +++ b/tests/browser/refs/airFriction/airFriction-10.json @@ -0,0 +1,1497 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 156 + }, + "composites": { + "#": 159 + }, + "constraints": { + "#": 160 + }, + "events": { + "#": 164 + }, + "gravity": { + "#": 166 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3600, + "axes": { + "#": 91 + }, + "bounds": { + "#": 94 + }, + "collisionFilter": { + "#": 97 + }, + "constraintImpulse": { + "#": 98 + }, + "density": 0.001, + "force": { + "#": 99 + }, + "friction": 0.1, + "frictionAir": 0.001, + "frictionStatic": 0.5, + "id": 4, + "inertia": 8640, + "inverseInertia": 0.00011574074074074075, + "inverseMass": 0.2777777777777778, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.6, + "motion": 0, + "parent": null, + "position": { + "#": 100 + }, + "positionImpulse": { + "#": 101 + }, + "positionPrev": { + "#": 102 + }, + "region": { + "#": 103 + }, + "render": { + "#": 104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0403235195726515, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 106 + }, + "vertices": { + "#": 107 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 95 + }, + "min": { + "#": 96 + } + }, + { + "x": 230, + "y": 148.2723595024786 + }, + { + "x": 170, + "y": 88.27235950247865 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 118.27235950247865 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 115.232035982906 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,1,3", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 105 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0403235195726515 + }, + [ + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170, + "y": 88.27235950247865 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 88.27235950247865 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 148.2723595024786 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 170, + "y": 148.2723595024786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3600, + "axes": { + "#": 113 + }, + "bounds": { + "#": 116 + }, + "collisionFilter": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "density": 0.001, + "force": { + "#": 121 + }, + "friction": 0.1, + "frictionAir": 0.05, + "frictionStatic": 0.5, + "id": 5, + "inertia": 8640, + "inverseInertia": 0.00011574074074074075, + "inverseMass": 0.2777777777777778, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.6, + "motion": 0, + "parent": null, + "position": { + "#": 122 + }, + "positionImpulse": { + "#": 123 + }, + "positionPrev": { + "#": 124 + }, + "region": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3955550429085495, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 430, + "y": 145.59556529584847 + }, + { + "x": 370, + "y": 85.59556529584846 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 115.59556529584846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 113.2000102529399 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,1,3", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.3955550429085495 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 85.59556529584846 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 85.59556529584846 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430, + "y": 145.59556529584847 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 145.59556529584847 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3600, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.1, + "frictionStatic": 0.5, + "id": 6, + "inertia": 8640, + "inverseInertia": 0.00011574074074074075, + "inverseMass": 0.2777777777777778, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.6, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "region": { + "#": 147 + }, + "render": { + "#": 148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9060816775277751, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 150 + }, + "vertices": { + "#": 151 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 630, + "y": 143.40082045780542 + }, + { + "x": 570, + "y": 83.40082045780544 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 113.40082045780544 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 111.49473878027766 + }, + { + "endCol": 13, + "endRow": 2, + "id": "11,13,1,2", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 149 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.9060816775277751 + }, + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 570, + "y": 83.40082045780544 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 83.40082045780544 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 630, + "y": 143.40082045780542 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 570, + "y": 143.40082045780542 + }, + { + "max": { + "#": 157 + }, + "min": { + "#": 158 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [], + [ + { + "#": 161 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 162 + }, + "pointB": "", + "render": { + "#": 163 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 165 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/avalanche/avalanche-0.json b/tests/browser/refs/avalanche/avalanche-0.json new file mode 100644 index 00000000..b304d7da --- /dev/null +++ b/tests/browser/refs/avalanche/avalanche-0.json @@ -0,0 +1,36249 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 149 + }, + "composites": { + "#": 152 + }, + "constraints": { + "#": 4075 + }, + "gravity": { + "#": 4079 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + }, + { + "#": 128 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 87 + }, + "bounds": { + "#": 90 + }, + "collisionFilter": { + "#": 93 + }, + "constraintImpulse": { + "#": 94 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 95 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 96 + }, + "positionImpulse": { + "#": 97 + }, + "positionPrev": { + "#": 98 + }, + "render": { + "#": 99 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 101 + }, + "vertices": { + "#": 102 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 545.6743509008983, + "y": 225.4063326122905 + }, + { + "x": -145.67435090089828, + "y": 74.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 150 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 100 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -141.9267246091838, + "y": 74.5936673877095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545.6743509008983, + "y": 205.76058759771672 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 541.9267246091838, + "y": 225.4063326122905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -145.67435090089828, + "y": 94.23941240228328 + }, + { + "angle": -0.18849555921538758, + "anglePrev": -0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 108 + }, + "bounds": { + "#": 111 + }, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 116 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "render": { + "#": 120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 122 + }, + "vertices": { + "#": 123 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": 0.1873813145857246 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 845.6743509008983, + "y": 425.4063326122905 + }, + { + "x": 154.32564909910172, + "y": 274.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 350 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 121 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 154.32564909910172, + "y": 405.7605875977167 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 841.9267246091838, + "y": 274.5936673877095 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 845.6743509008983, + "y": 294.2394124022833 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 158.0732753908162, + "y": 425.4063326122905 + }, + { + "angle": 0.12566370614359174, + "anglePrev": 0.12566370614359174, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 129 + }, + "bounds": { + "#": 132 + }, + "collisionFilter": { + "#": 135 + }, + "constraintImpulse": { + "#": 136 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 137 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 138 + }, + "positionImpulse": { + "#": 139 + }, + "positionPrev": { + "#": 140 + }, + "render": { + "#": 141 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 143 + }, + "vertices": { + "#": 144 + } + }, + [ + { + "#": 130 + }, + { + "#": 131 + } + ], + { + "x": -0.12533323356430426, + "y": 0.9921147013144779 + }, + { + "x": -0.9921147013144779, + "y": -0.12533323356430426 + }, + { + "max": { + "#": 133 + }, + "min": { + "#": 134 + } + }, + { + "x": 688.4934777957103, + "y": 633.7877787606512 + }, + { + "x": -8.493477795710305, + "y": 526.2122212393488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 580 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 142 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.986813124424202, + "y": 526.2122212393488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 688.4934777957103, + "y": 613.9454847343617 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685.9868131244242, + "y": 633.7877787606512 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -8.493477795710305, + "y": 546.0545152656383 + }, + { + "max": { + "#": 150 + }, + "min": { + "#": 151 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 153 + } + ], + { + "bodies": { + "#": 154 + }, + "composites": { + "#": 4073 + }, + "constraints": { + "#": 4074 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 155 + }, + { + "#": 191 + }, + { + "#": 230 + }, + { + "#": 275 + }, + { + "#": 311 + }, + { + "#": 356 + }, + { + "#": 389 + }, + { + "#": 431 + }, + { + "#": 470 + }, + { + "#": 509 + }, + { + "#": 545 + }, + { + "#": 587 + }, + { + "#": 623 + }, + { + "#": 668 + }, + { + "#": 713 + }, + { + "#": 755 + }, + { + "#": 791 + }, + { + "#": 824 + }, + { + "#": 869 + }, + { + "#": 905 + }, + { + "#": 950 + }, + { + "#": 992 + }, + { + "#": 1025 + }, + { + "#": 1067 + }, + { + "#": 1112 + }, + { + "#": 1145 + }, + { + "#": 1184 + }, + { + "#": 1220 + }, + { + "#": 1256 + }, + { + "#": 1301 + }, + { + "#": 1346 + }, + { + "#": 1385 + }, + { + "#": 1421 + }, + { + "#": 1457 + }, + { + "#": 1499 + }, + { + "#": 1544 + }, + { + "#": 1583 + }, + { + "#": 1619 + }, + { + "#": 1664 + }, + { + "#": 1697 + }, + { + "#": 1739 + }, + { + "#": 1784 + }, + { + "#": 1820 + }, + { + "#": 1853 + }, + { + "#": 1886 + }, + { + "#": 1928 + }, + { + "#": 1961 + }, + { + "#": 2006 + }, + { + "#": 2042 + }, + { + "#": 2084 + }, + { + "#": 2123 + }, + { + "#": 2162 + }, + { + "#": 2201 + }, + { + "#": 2237 + }, + { + "#": 2279 + }, + { + "#": 2321 + }, + { + "#": 2363 + }, + { + "#": 2399 + }, + { + "#": 2441 + }, + { + "#": 2486 + }, + { + "#": 2525 + }, + { + "#": 2570 + }, + { + "#": 2609 + }, + { + "#": 2651 + }, + { + "#": 2687 + }, + { + "#": 2726 + }, + { + "#": 2759 + }, + { + "#": 2801 + }, + { + "#": 2837 + }, + { + "#": 2873 + }, + { + "#": 2906 + }, + { + "#": 2945 + }, + { + "#": 2984 + }, + { + "#": 3029 + }, + { + "#": 3062 + }, + { + "#": 3095 + }, + { + "#": 3134 + }, + { + "#": 3176 + }, + { + "#": 3212 + }, + { + "#": 3248 + }, + { + "#": 3284 + }, + { + "#": 3320 + }, + { + "#": 3356 + }, + { + "#": 3398 + }, + { + "#": 3443 + }, + { + "#": 3479 + }, + { + "#": 3524 + }, + { + "#": 3569 + }, + { + "#": 3605 + }, + { + "#": 3638 + }, + { + "#": 3671 + }, + { + "#": 3713 + }, + { + "#": 3746 + }, + { + "#": 3785 + }, + { + "#": 3830 + }, + { + "#": 3875 + }, + { + "#": 3917 + }, + { + "#": 3953 + }, + { + "#": 3998 + }, + { + "#": 4040 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 445.64723200000003, + "axes": { + "#": 156 + }, + "bounds": { + "#": 164 + }, + "circleRadius": 12.11321159122085, + "collisionFilter": { + "#": 167 + }, + "constraintImpulse": { + "#": 168 + }, + "density": 0.001, + "force": { + "#": 169 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 126.46280868085778, + "inverseInertia": 0.007907463154037685, + "inverseMass": 2.243927322317577, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.44564723200000006, + "motion": 0, + "parent": null, + "position": { + "#": 170 + }, + "positionImpulse": { + "#": 171 + }, + "positionPrev": { + "#": 172 + }, + "render": { + "#": 173 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 175 + }, + "vertices": { + "#": 176 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + } + ], + { + "x": -0.900896921339718, + "y": -0.43403310601913536 + }, + { + "x": -0.6236538782909027, + "y": -0.7817006077090614 + }, + { + "x": -0.22240673703341207, + "y": -0.974953969847885 + }, + { + "x": 0.22240673703341207, + "y": -0.974953969847885 + }, + { + "x": 0.6236538782909027, + "y": -0.7817006077090614 + }, + { + "x": 0.900896921339718, + "y": -0.43403310601913536 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 165 + }, + "min": { + "#": 166 + } + }, + { + "x": 43.620000000000005, + "y": 44.226 + }, + { + "x": 20, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 31.810000000000002, + "y": 32.113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 31.810000000000002, + "y": 32.113 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 174 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 43.620000000000005, + "y": 34.808 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 41.28, + "y": 39.665 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 37.066, + "y": 43.027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 31.810000000000002, + "y": 44.226 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 26.554000000000002, + "y": 43.027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 22.340000000000003, + "y": 39.665 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 20, + "y": 34.808 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20, + "y": 29.418 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 22.340000000000003, + "y": 24.561 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 26.554000000000002, + "y": 21.198999999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 31.810000000000002, + "y": 20 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 37.066, + "y": 21.198999999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 41.28, + "y": 24.561 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 43.620000000000005, + "y": 29.418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 732.475276, + "axes": { + "#": 192 + }, + "bounds": { + "#": 201 + }, + "circleRadius": 15.467721193415638, + "collisionFilter": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "density": 0.001, + "force": { + "#": 206 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 341.60522862031934, + "inverseInertia": 0.002927355661500897, + "inverseMass": 1.3652337939117005, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7324752760000001, + "motion": 0, + "parent": null, + "position": { + "#": 207 + }, + "positionImpulse": { + "#": 208 + }, + "positionPrev": { + "#": 209 + }, + "render": { + "#": 210 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 212 + }, + "vertices": { + "#": 213 + } + }, + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": -0.9238350355607171, + "y": -0.38279083984668255 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.38279083984668255, + "y": -0.9238350355607171 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38279083984668255, + "y": -0.9238350355607171 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238350355607171, + "y": -0.38279083984668255 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 202 + }, + "min": { + "#": 203 + } + }, + { + "x": 73.962, + "y": 50.342 + }, + { + "x": 43.620000000000005, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 58.791000000000004, + "y": 35.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 58.791000000000004, + "y": 35.171 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 211 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 73.962, + "y": 38.189 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 71.65200000000002, + "y": 43.763999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 67.38400000000001, + "y": 48.032000000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 61.809000000000005, + "y": 50.342 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 55.773, + "y": 50.342 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 50.198, + "y": 48.032000000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 45.93000000000001, + "y": 43.763999999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 43.620000000000005, + "y": 38.189 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 43.620000000000005, + "y": 32.153 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 45.93000000000001, + "y": 26.578 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 50.198, + "y": 22.31 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 55.773, + "y": 20 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 61.809000000000005, + "y": 20 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 67.38400000000001, + "y": 22.31 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 71.65200000000002, + "y": 26.578 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 73.962, + "y": 32.153 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1023.0280239999998, + "axes": { + "#": 231 + }, + "bounds": { + "#": 242 + }, + "circleRadius": 18.19465877914952, + "collisionFilter": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "density": 0.001, + "force": { + "#": 247 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 666.3140407130343, + "inverseInertia": 0.0015007938282823555, + "inverseMass": 0.9774903292385275, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0230280239999998, + "motion": 0, + "parent": null, + "position": { + "#": 248 + }, + "positionImpulse": { + "#": 249 + }, + "positionPrev": { + "#": 250 + }, + "render": { + "#": 251 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 253 + }, + "vertices": { + "#": 254 + } + }, + [ + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + } + ], + { + "x": -0.9510624654126439, + "y": -0.3089986842742595 + }, + { + "x": -0.8090549880907667, + "y": -0.5877329548744475 + }, + { + "x": -0.5877329548744475, + "y": -0.8090549880907667 + }, + { + "x": -0.3089986842742595, + "y": -0.9510624654126439 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089986842742595, + "y": -0.9510624654126439 + }, + { + "x": 0.5877329548744475, + "y": -0.8090549880907667 + }, + { + "x": 0.8090549880907667, + "y": -0.5877329548744475 + }, + { + "x": 0.9510624654126439, + "y": -0.3089986842742595 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 243 + }, + "min": { + "#": 244 + } + }, + { + "x": 109.90400000000001, + "y": 55.94200000000001 + }, + { + "x": 73.962, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 91.933, + "y": 37.971000000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 91.933, + "y": 37.971000000000004 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 252 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 109.90400000000001, + "y": 40.81700000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 108.14500000000001, + "y": 46.231 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 104.799, + "y": 50.837 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100.19300000000001, + "y": 54.18300000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 94.77900000000001, + "y": 55.94200000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 89.087, + "y": 55.94200000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 83.673, + "y": 54.18300000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 79.06700000000001, + "y": 50.837 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 75.721, + "y": 46.231 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 73.962, + "y": 40.81700000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 73.962, + "y": 35.125 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 75.721, + "y": 29.711000000000006 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 79.06700000000001, + "y": 25.105000000000004 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 83.673, + "y": 21.759000000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 89.087, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 94.77900000000001, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 100.19300000000001, + "y": 21.759000000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 104.799, + "y": 25.105000000000004 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 108.14500000000001, + "y": 29.711000000000006 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 109.90400000000001, + "y": 35.125 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 574.28005, + "axes": { + "#": 276 + }, + "bounds": { + "#": 284 + }, + "circleRadius": 13.750814471879288, + "collisionFilter": { + "#": 287 + }, + "constraintImpulse": { + "#": 288 + }, + "density": 0.001, + "force": { + "#": 289 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 210.00413885422935, + "inverseInertia": 0.004761810912184603, + "inverseMass": 1.7413107072063536, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5742800499999999, + "motion": 0, + "parent": null, + "position": { + "#": 290 + }, + "positionImpulse": { + "#": 291 + }, + "positionPrev": { + "#": 292 + }, + "render": { + "#": 293 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 295 + }, + "vertices": { + "#": 296 + } + }, + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + } + ], + { + "x": -0.9009638128018401, + "y": -0.4338942359856497 + }, + { + "x": -0.6234987739411211, + "y": -0.7818243273868618 + }, + { + "x": -0.22256744167907103, + "y": -0.9749172959304976 + }, + { + "x": 0.22256744167907103, + "y": -0.9749172959304976 + }, + { + "x": 0.6234987739411211, + "y": -0.7818243273868618 + }, + { + "x": 0.9009638128018401, + "y": -0.4338942359856497 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 285 + }, + "min": { + "#": 286 + } + }, + { + "x": 136.716, + "y": 47.501999999999995 + }, + { + "x": 109.90400000000001, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.31000000000002, + "y": 33.751 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.31000000000002, + "y": 33.751 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 294 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 136.716, + "y": 36.81099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 134.06100000000004, + "y": 42.324 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 129.276, + "y": 46.13999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 123.31000000000002, + "y": 47.501999999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 117.34400000000002, + "y": 46.13999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 112.55900000000001, + "y": 42.324 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 109.90400000000001, + "y": 36.81099999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 109.90400000000001, + "y": 30.690999999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 112.55900000000001, + "y": 25.177999999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 117.34400000000002, + "y": 21.362 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 123.31000000000002, + "y": 20 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 129.276, + "y": 21.362 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 134.06100000000004, + "y": 25.177999999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 136.716, + "y": 30.690999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1195.2601479999998, + "axes": { + "#": 312 + }, + "bounds": { + "#": 323 + }, + "circleRadius": 19.667052469135804, + "collisionFilter": { + "#": 326 + }, + "constraintImpulse": { + "#": 327 + }, + "density": 0.001, + "force": { + "#": 328 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 909.5546177631703, + "inverseInertia": 0.0010994391985599042, + "inverseMass": 0.8366379500506865, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1952601479999998, + "motion": 0, + "parent": null, + "position": { + "#": 329 + }, + "positionImpulse": { + "#": 330 + }, + "positionPrev": { + "#": 331 + }, + "render": { + "#": 332 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 334 + }, + "vertices": { + "#": 335 + } + }, + [ + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "x": -0.9510292915090645, + "y": -0.3091007710953933 + }, + { + "x": -0.8090733104102286, + "y": -0.5877077321099611 + }, + { + "x": -0.5877077321099611, + "y": -0.8090733104102286 + }, + { + "x": -0.3091007710953933, + "y": -0.9510292915090645 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091007710953933, + "y": -0.9510292915090645 + }, + { + "x": 0.5877077321099611, + "y": -0.8090733104102286 + }, + { + "x": 0.8090733104102286, + "y": -0.5877077321099611 + }, + { + "x": 0.9510292915090645, + "y": -0.3091007710953933 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 324 + }, + "min": { + "#": 325 + } + }, + { + "x": 175.56600000000003, + "y": 58.849999999999994 + }, + { + "x": 136.716, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 156.14100000000002, + "y": 39.425 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 156.14100000000002, + "y": 39.425 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 333 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.56600000000003, + "y": 42.501999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 173.66400000000002, + "y": 48.354 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170.04800000000003, + "y": 53.331999999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 165.07000000000002, + "y": 56.94799999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 159.21800000000002, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 153.06400000000002, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 147.21200000000002, + "y": 56.94799999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 142.23400000000004, + "y": 53.331999999999994 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 138.61800000000002, + "y": 48.354 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 136.716, + "y": 42.501999999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 136.716, + "y": 36.348 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 138.61800000000002, + "y": 30.495999999999995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 142.23400000000004, + "y": 25.517999999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 147.21200000000002, + "y": 21.901999999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 153.06400000000002, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 159.21800000000002, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 165.07000000000002, + "y": 21.901999999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 170.04800000000003, + "y": 25.517999999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 173.66400000000002, + "y": 30.495999999999995 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 175.56600000000003, + "y": 36.348 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 431.46854399999995, + "axes": { + "#": 357 + }, + "bounds": { + "#": 364 + }, + "circleRadius": 11.99275548696845, + "collisionFilter": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "density": 0.001, + "force": { + "#": 369 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 118.56753749026406, + "inverseInertia": 0.008434011713215457, + "inverseMass": 2.3176660591044156, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.43146854399999995, + "motion": 0, + "parent": null, + "position": { + "#": 370 + }, + "positionImpulse": { + "#": 371 + }, + "positionPrev": { + "#": 372 + }, + "render": { + "#": 373 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 375 + }, + "vertices": { + "#": 376 + } + }, + [ + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": -0.8660138975112615, + "y": -0.5000199289201924 + }, + { + "x": -0.5000199289201924, + "y": -0.8660138975112615 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000199289201924, + "y": -0.8660138975112615 + }, + { + "x": 0.8660138975112615, + "y": -0.5000199289201924 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 365 + }, + "min": { + "#": 366 + } + }, + { + "x": 198.73400000000004, + "y": 43.168 + }, + { + "x": 175.56600000000003, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.15000000000003, + "y": 31.584 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.15000000000003, + "y": 31.584 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 374 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 198.73400000000004, + "y": 34.688 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.63000000000002, + "y": 40.064 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 190.25400000000005, + "y": 43.168 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 184.04600000000002, + "y": 43.168 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 178.67000000000004, + "y": 40.064 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 175.56600000000003, + "y": 34.688 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 175.56600000000003, + "y": 28.48 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 178.67000000000004, + "y": 23.104 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 184.04600000000002, + "y": 20 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 190.25400000000005, + "y": 20 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 195.63000000000002, + "y": 23.104 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 198.73400000000004, + "y": 28.48 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 828.5975979999998, + "axes": { + "#": 390 + }, + "bounds": { + "#": 400 + }, + "circleRadius": 16.40693587105624, + "collisionFilter": { + "#": 403 + }, + "constraintImpulse": { + "#": 404 + }, + "density": 0.001, + "force": { + "#": 405 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 437.12315220007827, + "inverseInertia": 0.00228768482055209, + "inverseMass": 1.206858434557036, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8285975979999999, + "motion": 0, + "parent": null, + "position": { + "#": 406 + }, + "positionImpulse": { + "#": 407 + }, + "positionPrev": { + "#": 408 + }, + "render": { + "#": 409 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 411 + }, + "vertices": { + "#": 412 + } + }, + [ + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "x": -0.9396755074993973, + "y": -0.34206715803442794 + }, + { + "x": -0.7660159168444758, + "y": -0.6428216044447457 + }, + { + "x": -0.5000465688762351, + "y": -0.8659985155617211 + }, + { + "x": -0.1737252699374666, + "y": -0.9847941564535982 + }, + { + "x": 0.1737252699374666, + "y": -0.9847941564535982 + }, + { + "x": 0.5000465688762351, + "y": -0.8659985155617211 + }, + { + "x": 0.7660159168444758, + "y": -0.6428216044447457 + }, + { + "x": 0.9396755074993973, + "y": -0.34206715803442794 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 401 + }, + "min": { + "#": 402 + } + }, + { + "x": 231.05000000000007, + "y": 52.81399999999999 + }, + { + "x": 198.73400000000004, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 214.89200000000005, + "y": 36.407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 214.89200000000005, + "y": 36.407 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 410 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 231.05000000000007, + "y": 39.256 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 229.10100000000006, + "y": 44.61 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.43800000000005, + "y": 48.974999999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220.50400000000005, + "y": 51.824 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 214.89200000000005, + "y": 52.81399999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 209.28000000000006, + "y": 51.824 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 204.34600000000006, + "y": 48.974999999999994 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200.68300000000005, + "y": 44.61 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 198.73400000000004, + "y": 39.256 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 198.73400000000004, + "y": 33.55799999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 200.68300000000005, + "y": 28.203999999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 204.34600000000006, + "y": 23.839 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 209.28000000000006, + "y": 20.989999999999995 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 214.89200000000005, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 220.50400000000005, + "y": 20.989999999999995 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 225.43800000000005, + "y": 23.839 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 229.10100000000006, + "y": 28.203999999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 231.05000000000007, + "y": 33.55799999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 783.3593100000002, + "axes": { + "#": 432 + }, + "bounds": { + "#": 441 + }, + "circleRadius": 15.996013374485596, + "collisionFilter": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "density": 0.001, + "force": { + "#": 446 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 390.7154522672976, + "inverseInertia": 0.0025594073492539436, + "inverseMass": 1.2765534119968522, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7833593100000001, + "motion": 0, + "parent": null, + "position": { + "#": 447 + }, + "positionImpulse": { + "#": 448 + }, + "positionPrev": { + "#": 449 + }, + "render": { + "#": 450 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 452 + }, + "vertices": { + "#": 453 + } + }, + [ + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": -0.9238430135485202, + "y": -0.3827715850446434 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3827715850446434, + "y": -0.9238430135485202 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827715850446434, + "y": -0.9238430135485202 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238430135485202, + "y": -0.3827715850446434 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 442 + }, + "min": { + "#": 443 + } + }, + { + "x": 262.42800000000005, + "y": 51.378 + }, + { + "x": 231.05000000000007, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 246.73900000000006, + "y": 35.689 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 246.73900000000006, + "y": 35.689 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 451 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 262.42800000000005, + "y": 38.81 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260.0390000000001, + "y": 44.576 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 255.62600000000006, + "y": 48.989 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 249.86000000000007, + "y": 51.378 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 243.61800000000005, + "y": 51.378 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 237.85200000000006, + "y": 48.989 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 233.43900000000005, + "y": 44.576 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 231.05000000000007, + "y": 38.81 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 231.05000000000007, + "y": 32.568 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 233.43900000000005, + "y": 26.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 237.85200000000006, + "y": 22.389 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 243.61800000000005, + "y": 20 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 249.86000000000007, + "y": 20 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 255.62600000000006, + "y": 22.389 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 260.0390000000001, + "y": 26.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 262.42800000000005, + "y": 32.568 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 754.4775720000002, + "axes": { + "#": 471 + }, + "bounds": { + "#": 480 + }, + "circleRadius": 15.698259602194788, + "collisionFilter": { + "#": 483 + }, + "constraintImpulse": { + "#": 484 + }, + "density": 0.001, + "force": { + "#": 485 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 362.43592371593485, + "inverseInertia": 0.002759108395622964, + "inverseMass": 1.32542044603017, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7544775720000002, + "motion": 0, + "parent": null, + "position": { + "#": 486 + }, + "positionImpulse": { + "#": 487 + }, + "positionPrev": { + "#": 488 + }, + "render": { + "#": 489 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 491 + }, + "vertices": { + "#": 492 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + } + ], + { + "x": -0.9238576132125803, + "y": -0.3827363459473821 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3827363459473821, + "y": -0.9238576132125803 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827363459473821, + "y": -0.9238576132125803 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238576132125803, + "y": -0.3827363459473821 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 481 + }, + "min": { + "#": 482 + } + }, + { + "x": 293.22200000000004, + "y": 50.794 + }, + { + "x": 262.42800000000005, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 277.82500000000005, + "y": 35.397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 277.82500000000005, + "y": 35.397 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 490 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 293.22200000000004, + "y": 38.46 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 290.87800000000004, + "y": 44.117999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 286.54600000000005, + "y": 48.449999999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280.88800000000003, + "y": 50.794 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 274.76200000000006, + "y": 50.794 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 269.10400000000004, + "y": 48.449999999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 264.77200000000005, + "y": 44.117999999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 262.42800000000005, + "y": 38.46 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 262.42800000000005, + "y": 32.334 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 264.77200000000005, + "y": 26.676 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 269.10400000000004, + "y": 22.343999999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 274.76200000000006, + "y": 20 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.88800000000003, + "y": 20 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 286.54600000000005, + "y": 22.343999999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 290.87800000000004, + "y": 26.676 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 293.22200000000004, + "y": 32.334 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 546.5734600000001, + "axes": { + "#": 510 + }, + "bounds": { + "#": 518 + }, + "circleRadius": 13.414909122085048, + "collisionFilter": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "density": 0.001, + "force": { + "#": 523 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 190.22932853820927, + "inverseInertia": 0.0052568129619357876, + "inverseMass": 1.8295802361131839, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5465734600000001, + "motion": 0, + "parent": null, + "position": { + "#": 524 + }, + "positionImpulse": { + "#": 525 + }, + "positionPrev": { + "#": 526 + }, + "render": { + "#": 527 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 529 + }, + "vertices": { + "#": 530 + } + }, + [ + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "x": -0.9009289164305454, + "y": -0.4339666894351262 + }, + { + "x": -0.6235094308206882, + "y": -0.7818158284900999 + }, + { + "x": -0.22258377112347572, + "y": -0.9749135678779182 + }, + { + "x": 0.22258377112347572, + "y": -0.9749135678779182 + }, + { + "x": 0.6235094308206882, + "y": -0.7818158284900999 + }, + { + "x": 0.9009289164305454, + "y": -0.4339666894351262 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 519 + }, + "min": { + "#": 520 + } + }, + { + "x": 319.38000000000005, + "y": 46.83 + }, + { + "x": 293.22200000000004, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 306.30100000000004, + "y": 33.415 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 306.30100000000004, + "y": 33.415 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 528 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.38000000000005, + "y": 36.4 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.78900000000004, + "y": 41.778999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.12200000000007, + "y": 45.501 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 306.30100000000004, + "y": 46.83 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.48, + "y": 45.501 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.81300000000005, + "y": 41.778999999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 293.22200000000004, + "y": 36.4 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 293.22200000000004, + "y": 30.43 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 295.81300000000005, + "y": 25.051 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 300.48, + "y": 21.329 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 306.30100000000004, + "y": 20 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 312.12200000000007, + "y": 21.329 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 316.78900000000004, + "y": 25.051 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 319.38000000000005, + "y": 30.43 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 973.9752019999999, + "axes": { + "#": 546 + }, + "bounds": { + "#": 556 + }, + "circleRadius": 17.787937242798353, + "collisionFilter": { + "#": 559 + }, + "constraintImpulse": { + "#": 560 + }, + "density": 0.001, + "force": { + "#": 561 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 603.96569072653, + "inverseInertia": 0.0016557231898339578, + "inverseMass": 1.0267201854282941, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9739752019999999, + "motion": 0, + "parent": null, + "position": { + "#": 562 + }, + "positionImpulse": { + "#": 563 + }, + "positionPrev": { + "#": 564 + }, + "render": { + "#": 565 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 567 + }, + "vertices": { + "#": 568 + } + }, + [ + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": -0.9396846715303921, + "y": -0.3420419829360413 + }, + { + "x": -0.7660141089546303, + "y": -0.6428237588036427 + }, + { + "x": -0.5000213741632397, + "y": -0.8660130630538465 + }, + { + "x": -0.17368375845285658, + "y": -0.9848014784969049 + }, + { + "x": 0.17368375845285658, + "y": -0.9848014784969049 + }, + { + "x": 0.5000213741632397, + "y": -0.8660130630538465 + }, + { + "x": 0.7660141089546303, + "y": -0.6428237588036427 + }, + { + "x": 0.9396846715303921, + "y": -0.3420419829360413 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 557 + }, + "min": { + "#": 558 + } + }, + { + "x": 354.416, + "y": 55.57599999999999 + }, + { + "x": 319.38000000000005, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 336.898, + "y": 37.788 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 336.898, + "y": 37.788 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 566 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 354.416, + "y": 40.876999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.303, + "y": 46.681999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 348.33200000000005, + "y": 51.413999999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 342.982, + "y": 54.503 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 336.898, + "y": 55.57599999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 330.814, + "y": 54.503 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 325.464, + "y": 51.413999999999994 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 321.49300000000005, + "y": 46.681999999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 319.38000000000005, + "y": 40.876999999999995 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 319.38000000000005, + "y": 34.699 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 321.49300000000005, + "y": 28.894 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 325.464, + "y": 24.162 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.814, + "y": 21.072999999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 336.898, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 342.982, + "y": 21.072999999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 348.33200000000005, + "y": 24.162 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 352.303, + "y": 28.894 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 354.416, + "y": 34.699 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 485.5904, + "axes": { + "#": 588 + }, + "bounds": { + "#": 596 + }, + "circleRadius": 12.644504458161865, + "collisionFilter": { + "#": 599 + }, + "constraintImpulse": { + "#": 600 + }, + "density": 0.001, + "force": { + "#": 601 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 150.14835557749134, + "inverseInertia": 0.006660079600298396, + "inverseMass": 2.0593487844899734, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4855904, + "motion": 0, + "parent": null, + "position": { + "#": 602 + }, + "positionImpulse": { + "#": 603 + }, + "positionPrev": { + "#": 604 + }, + "render": { + "#": 605 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 607 + }, + "vertices": { + "#": 608 + } + }, + [ + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "x": -0.9010093877027451, + "y": -0.43379958883282077 + }, + { + "x": -0.6233938910669198, + "y": -0.7819079591489303 + }, + { + "x": -0.2226655662703444, + "y": -0.9748948895124575 + }, + { + "x": 0.2226655662703444, + "y": -0.9748948895124575 + }, + { + "x": 0.6233938910669198, + "y": -0.7819079591489303 + }, + { + "x": 0.9010093877027451, + "y": -0.43379958883282077 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 597 + }, + "min": { + "#": 598 + } + }, + { + "x": 379.07, + "y": 45.28999999999999 + }, + { + "x": 354.416, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.743, + "y": 32.644999999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.743, + "y": 32.644999999999996 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 606 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 379.07, + "y": 35.458999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 376.629, + "y": 40.528999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 372.229, + "y": 44.03699999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.743, + "y": 45.28999999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.257, + "y": 44.03699999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 356.85699999999997, + "y": 40.528999999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 354.416, + "y": 35.458999999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 354.416, + "y": 29.830999999999996 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.85699999999997, + "y": 24.760999999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 361.257, + "y": 21.252999999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 366.743, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 372.229, + "y": 21.252999999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 376.629, + "y": 24.760999999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 379.07, + "y": 29.830999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1013.2448800000001, + "axes": { + "#": 624 + }, + "bounds": { + "#": 635 + }, + "circleRadius": 18.10806755829904, + "collisionFilter": { + "#": 638 + }, + "constraintImpulse": { + "#": 639 + }, + "density": 0.001, + "force": { + "#": 640 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 653.6311476673523, + "inverseInertia": 0.0015299148511645328, + "inverseMass": 0.9869282537109884, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.01324488, + "motion": 0, + "parent": null, + "position": { + "#": 641 + }, + "positionImpulse": { + "#": 642 + }, + "positionPrev": { + "#": 643 + }, + "render": { + "#": 644 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 646 + }, + "vertices": { + "#": 647 + } + }, + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + } + ], + { + "x": -0.95103925715127, + "y": -0.3090701075114839 + }, + { + "x": -0.8089955390833857, + "y": -0.5878147818345351 + }, + { + "x": -0.5878147818345351, + "y": -0.8089955390833857 + }, + { + "x": -0.3090701075114839, + "y": -0.95103925715127 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090701075114839, + "y": -0.95103925715127 + }, + { + "x": 0.5878147818345351, + "y": -0.8089955390833857 + }, + { + "x": 0.8089955390833857, + "y": -0.5878147818345351 + }, + { + "x": 0.95103925715127, + "y": -0.3090701075114839 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 636 + }, + "min": { + "#": 637 + } + }, + { + "x": 414.84, + "y": 55.77000000000001 + }, + { + "x": 379.07, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 396.955, + "y": 37.885000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 396.955, + "y": 37.885000000000005 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 645 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 414.84, + "y": 40.718 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 413.089, + "y": 46.10600000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.75899999999996, + "y": 50.68900000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.176, + "y": 54.019000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 399.788, + "y": 55.77000000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 394.12199999999996, + "y": 55.77000000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 388.734, + "y": 54.019000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 384.151, + "y": 50.68900000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 380.82099999999997, + "y": 46.10600000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 379.07, + "y": 40.718 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 379.07, + "y": 35.05200000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 380.82099999999997, + "y": 29.664000000000005 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 384.151, + "y": 25.081000000000003 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 388.734, + "y": 21.751000000000005 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.12199999999996, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 399.788, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 405.176, + "y": 21.751000000000005 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 409.75899999999996, + "y": 25.081000000000003 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 413.089, + "y": 29.664000000000005 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 414.84, + "y": 35.05200000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1043.5045799999998, + "axes": { + "#": 669 + }, + "bounds": { + "#": 680 + }, + "circleRadius": 18.37615740740741, + "collisionFilter": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "density": 0.001, + "force": { + "#": 685 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 693.2543810769114, + "inverseInertia": 0.0014424719515606747, + "inverseMass": 0.9583091623804854, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0435045799999998, + "motion": 0, + "parent": null, + "position": { + "#": 686 + }, + "positionImpulse": { + "#": 687 + }, + "positionPrev": { + "#": 688 + }, + "render": { + "#": 689 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 691 + }, + "vertices": { + "#": 692 + } + }, + [ + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": -0.9510391812432063, + "y": -0.30907034108799836 + }, + { + "x": -0.8090293436440933, + "y": -0.5877682546061905 + }, + { + "x": -0.5877682546061905, + "y": -0.8090293436440933 + }, + { + "x": -0.30907034108799836, + "y": -0.9510391812432063 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907034108799836, + "y": -0.9510391812432063 + }, + { + "x": 0.5877682546061905, + "y": -0.8090293436440933 + }, + { + "x": 0.8090293436440933, + "y": -0.5877682546061905 + }, + { + "x": 0.9510391812432063, + "y": -0.30907034108799836 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 681 + }, + "min": { + "#": 682 + } + }, + { + "x": 451.13999999999993, + "y": 56.3 + }, + { + "x": 414.84, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.98999999999995, + "y": 38.15 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.98999999999995, + "y": 38.15 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 690 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 451.13999999999993, + "y": 41.025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 449.36299999999994, + "y": 46.492999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 445.9839999999999, + "y": 51.144 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 441.33299999999997, + "y": 54.523 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 435.86499999999995, + "y": 56.3 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 430.11499999999995, + "y": 56.3 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 424.64699999999993, + "y": 54.523 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 419.996, + "y": 51.144 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 416.61699999999996, + "y": 46.492999999999995 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 414.84, + "y": 41.025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 414.84, + "y": 35.275 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 416.61699999999996, + "y": 29.807 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 419.996, + "y": 25.156 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 424.64699999999993, + "y": 21.776999999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 430.11499999999995, + "y": 20 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 435.86499999999995, + "y": 20 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 441.33299999999997, + "y": 21.776999999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 445.9839999999999, + "y": 25.156 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 449.36299999999994, + "y": 29.807 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 451.13999999999993, + "y": 35.275 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 804.3326420000001, + "axes": { + "#": 714 + }, + "bounds": { + "#": 724 + }, + "circleRadius": 16.16482338820302, + "collisionFilter": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "density": 0.001, + "force": { + "#": 729 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 411.89626816350983, + "inverseInertia": 0.0024277957274500763, + "inverseMass": 1.243266713027419, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8043326420000001, + "motion": 0, + "parent": null, + "position": { + "#": 730 + }, + "positionImpulse": { + "#": 731 + }, + "positionPrev": { + "#": 732 + }, + "render": { + "#": 733 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 735 + }, + "vertices": { + "#": 736 + } + }, + [ + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + } + ], + { + "x": -0.939689356498254, + "y": -0.3420291117491275 + }, + { + "x": -0.766129298042305, + "y": -0.6426864699689927 + }, + { + "x": -0.4999897122177319, + "y": -0.8660313433568266 + }, + { + "x": -0.17366340060749713, + "y": -0.9848050686757457 + }, + { + "x": 0.17366340060749713, + "y": -0.9848050686757457 + }, + { + "x": 0.4999897122177319, + "y": -0.8660313433568266 + }, + { + "x": 0.766129298042305, + "y": -0.6426864699689927 + }, + { + "x": 0.939689356498254, + "y": -0.3420291117491275 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 725 + }, + "min": { + "#": 726 + } + }, + { + "x": 482.9779999999999, + "y": 52.33 + }, + { + "x": 451.13999999999993, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 467.0589999999999, + "y": 36.165 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 467.0589999999999, + "y": 36.165 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 734 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 482.9779999999999, + "y": 38.971999999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 481.05799999999994, + "y": 44.247 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 477.44999999999993, + "y": 48.547999999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 472.5879999999999, + "y": 51.355 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 467.0589999999999, + "y": 52.33 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 461.5299999999999, + "y": 51.355 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 456.6679999999999, + "y": 48.547999999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 453.0599999999999, + "y": 44.247 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 451.13999999999993, + "y": 38.971999999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 451.13999999999993, + "y": 33.358 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.0599999999999, + "y": 28.083 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 456.6679999999999, + "y": 23.782 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 461.5299999999999, + "y": 20.975 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.0589999999999, + "y": 20 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 472.5879999999999, + "y": 20.975 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 477.44999999999993, + "y": 23.782 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 481.05799999999994, + "y": 28.083 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 482.9779999999999, + "y": 33.358 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 580.047414, + "axes": { + "#": 756 + }, + "bounds": { + "#": 764 + }, + "circleRadius": 13.81974451303155, + "collisionFilter": { + "#": 767 + }, + "constraintImpulse": { + "#": 768 + }, + "density": 0.001, + "force": { + "#": 769 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 214.24336698195748, + "inverseInertia": 0.004667589079125213, + "inverseMass": 1.7239969972523659, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.580047414, + "motion": 0, + "parent": null, + "position": { + "#": 770 + }, + "positionImpulse": { + "#": 771 + }, + "positionPrev": { + "#": 772 + }, + "render": { + "#": 773 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 775 + }, + "vertices": { + "#": 776 + } + }, + [ + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "x": -0.9009946077275478, + "y": -0.4338302857637789 + }, + { + "x": -0.6234848799770796, + "y": -0.7818354075123272 + }, + { + "x": -0.22259080644452373, + "y": -0.9749119616080092 + }, + { + "x": 0.22259080644452373, + "y": -0.9749119616080092 + }, + { + "x": 0.6234848799770796, + "y": -0.7818354075123272 + }, + { + "x": 0.9009946077275478, + "y": -0.4338302857637789 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 765 + }, + "min": { + "#": 766 + } + }, + { + "x": 509.9239999999999, + "y": 47.64 + }, + { + "x": 482.9779999999999, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 496.4509999999999, + "y": 33.82 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 496.4509999999999, + "y": 33.82 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 774 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 509.9239999999999, + "y": 36.894999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 507.2559999999999, + "y": 42.436 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 502.4469999999999, + "y": 46.271 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 496.4509999999999, + "y": 47.64 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 490.4549999999999, + "y": 46.271 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 485.6459999999999, + "y": 42.436 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 482.9779999999999, + "y": 36.894999999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 482.9779999999999, + "y": 30.745 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 485.6459999999999, + "y": 25.204 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 490.4549999999999, + "y": 21.369 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 496.4509999999999, + "y": 20 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 502.4469999999999, + "y": 21.369 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 507.2559999999999, + "y": 25.204 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 509.9239999999999, + "y": 30.745 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 369.23864399999997, + "axes": { + "#": 792 + }, + "bounds": { + "#": 799 + }, + "circleRadius": 11.09400720164609, + "collisionFilter": { + "#": 802 + }, + "constraintImpulse": { + "#": 803 + }, + "density": 0.001, + "force": { + "#": 804 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 86.83240242313165, + "inverseInertia": 0.011516438243030872, + "inverseMass": 2.7082755725860594, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.36923864399999995, + "motion": 0, + "parent": null, + "position": { + "#": 805 + }, + "positionImpulse": { + "#": 806 + }, + "positionPrev": { + "#": 807 + }, + "render": { + "#": 808 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 810 + }, + "vertices": { + "#": 811 + } + }, + [ + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + } + ], + { + "x": -0.866081210108875, + "y": -0.49990332815090055 + }, + { + "x": -0.49990332815090055, + "y": -0.866081210108875 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49990332815090055, + "y": -0.866081210108875 + }, + { + "x": 0.866081210108875, + "y": -0.49990332815090055 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 800 + }, + "min": { + "#": 801 + } + }, + { + "x": 531.3559999999998, + "y": 41.432 + }, + { + "x": 509.92399999999986, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.6399999999999, + "y": 30.716 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.6399999999999, + "y": 30.716 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 809 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 531.3559999999998, + "y": 33.587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 528.4849999999999, + "y": 38.561 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 523.511, + "y": 41.432 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 517.7689999999999, + "y": 41.432 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 512.7949999999998, + "y": 38.561 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 509.92399999999986, + "y": 33.587 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 509.92399999999986, + "y": 27.845000000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 512.7949999999998, + "y": 22.871000000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 517.7689999999999, + "y": 20 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 523.511, + "y": 20 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 528.4849999999999, + "y": 22.871000000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 531.3559999999998, + "y": 27.845000000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1186.2008119999998, + "axes": { + "#": 825 + }, + "bounds": { + "#": 836 + }, + "circleRadius": 19.59254972565158, + "collisionFilter": { + "#": 839 + }, + "constraintImpulse": { + "#": 840 + }, + "density": 0.001, + "force": { + "#": 841 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 895.8191409307356, + "inverseInertia": 0.0011162967549019135, + "inverseMass": 0.843027580055307, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1862008119999998, + "motion": 0, + "parent": null, + "position": { + "#": 842 + }, + "positionImpulse": { + "#": 843 + }, + "positionPrev": { + "#": 844 + }, + "render": { + "#": 845 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 847 + }, + "vertices": { + "#": 848 + } + }, + [ + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + } + ], + { + "x": -0.9510700273465118, + "y": -0.3089754085410449 + }, + { + "x": -0.8090111291820679, + "y": -0.5877933249532148 + }, + { + "x": -0.5877933249532148, + "y": -0.8090111291820679 + }, + { + "x": -0.3089754085410449, + "y": -0.9510700273465118 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089754085410449, + "y": -0.9510700273465118 + }, + { + "x": 0.5877933249532148, + "y": -0.8090111291820679 + }, + { + "x": 0.8090111291820679, + "y": -0.5877933249532148 + }, + { + "x": 0.9510700273465118, + "y": -0.3089754085410449 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 837 + }, + "min": { + "#": 838 + } + }, + { + "x": 570.0579999999998, + "y": 58.702 + }, + { + "x": 531.3559999999998, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.7069999999998, + "y": 39.351 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.7069999999998, + "y": 39.351 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 846 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 570.0579999999998, + "y": 42.416 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 568.1639999999998, + "y": 48.245999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 564.5609999999998, + "y": 53.205 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.6019999999997, + "y": 56.808 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.7719999999998, + "y": 58.702 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 547.6419999999997, + "y": 58.702 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 541.8119999999998, + "y": 56.808 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 536.8529999999997, + "y": 53.205 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 533.2499999999998, + "y": 48.245999999999995 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 531.3559999999998, + "y": 42.416 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 531.3559999999998, + "y": 36.286 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 533.2499999999998, + "y": 30.456 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 536.8529999999997, + "y": 25.497 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 541.8119999999998, + "y": 21.894 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 547.6419999999997, + "y": 20 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 553.7719999999998, + "y": 20 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 559.6019999999997, + "y": 21.894 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 564.5609999999998, + "y": 25.497 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 568.1639999999998, + "y": 30.456 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 570.0579999999998, + "y": 36.286 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 585.3796979999998, + "axes": { + "#": 870 + }, + "bounds": { + "#": 878 + }, + "circleRadius": 13.883273319615911, + "collisionFilter": { + "#": 881 + }, + "constraintImpulse": { + "#": 882 + }, + "density": 0.001, + "force": { + "#": 883 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 218.2004829364277, + "inverseInertia": 0.004582941277409308, + "inverseMass": 1.7082929309242976, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5853796979999999, + "motion": 0, + "parent": null, + "position": { + "#": 884 + }, + "positionImpulse": { + "#": 885 + }, + "positionPrev": { + "#": 886 + }, + "render": { + "#": 887 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 889 + }, + "vertices": { + "#": 890 + } + }, + [ + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + } + ], + { + "x": -0.9009641800326721, + "y": -0.4338934734448706 + }, + { + "x": -0.6235099396116037, + "y": -0.7818154227217151 + }, + { + "x": -0.22253036510011648, + "y": -0.9749257595368013 + }, + { + "x": 0.22253036510011648, + "y": -0.9749257595368013 + }, + { + "x": 0.6235099396116037, + "y": -0.7818154227217151 + }, + { + "x": 0.9009641800326721, + "y": -0.4338934734448706 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 879 + }, + "min": { + "#": 880 + } + }, + { + "x": 597.1279999999997, + "y": 47.76599999999999 + }, + { + "x": 570.0579999999998, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 583.5929999999997, + "y": 33.882999999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 583.5929999999997, + "y": 33.882999999999996 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 888 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 597.1279999999997, + "y": 36.971999999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 594.4469999999998, + "y": 42.538999999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 589.6169999999997, + "y": 46.39099999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 583.5929999999997, + "y": 47.76599999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 577.5689999999997, + "y": 46.39099999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 572.7389999999997, + "y": 42.538999999999994 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 570.0579999999998, + "y": 36.971999999999994 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 570.0579999999998, + "y": 30.793999999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 572.7389999999997, + "y": 25.226999999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 577.5689999999997, + "y": 21.374999999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 583.5929999999997, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 589.6169999999997, + "y": 21.374999999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 594.4469999999998, + "y": 25.226999999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 597.1279999999997, + "y": 30.793999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.07426, + "axes": { + "#": 906 + }, + "bounds": { + "#": 917 + }, + "circleRadius": 19.274819958847736, + "collisionFilter": { + "#": 920 + }, + "constraintImpulse": { + "#": 921 + }, + "density": 0.001, + "force": { + "#": 922 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 839.1582416552851, + "inverseInertia": 0.0011916703553163535, + "inverseMass": 0.8710237959694349, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.14807426, + "motion": 0, + "parent": null, + "position": { + "#": 923 + }, + "positionImpulse": { + "#": 924 + }, + "positionPrev": { + "#": 925 + }, + "render": { + "#": 926 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 928 + }, + "vertices": { + "#": 929 + } + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + } + ], + { + "x": -0.9510438158398417, + "y": -0.30905607962438386 + }, + { + "x": -0.8089440000270397, + "y": -0.5878857072767232 + }, + { + "x": -0.5878857072767232, + "y": -0.8089440000270397 + }, + { + "x": -0.30905607962438386, + "y": -0.9510438158398417 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905607962438386, + "y": -0.9510438158398417 + }, + { + "x": 0.5878857072767232, + "y": -0.8089440000270397 + }, + { + "x": 0.8089440000270397, + "y": -0.5878857072767232 + }, + { + "x": 0.9510438158398417, + "y": -0.30905607962438386 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 918 + }, + "min": { + "#": 919 + } + }, + { + "x": 635.2039999999997, + "y": 58.07599999999999 + }, + { + "x": 597.1279999999997, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 616.1659999999997, + "y": 39.038 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 616.1659999999997, + "y": 39.038 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 927 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.2039999999997, + "y": 42.053 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.3399999999997, + "y": 47.788999999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.7949999999997, + "y": 52.666999999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 624.9169999999997, + "y": 56.211999999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 619.1809999999997, + "y": 58.07599999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 613.1509999999997, + "y": 58.07599999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 607.4149999999997, + "y": 56.211999999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 602.5369999999997, + "y": 52.666999999999994 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 598.9919999999997, + "y": 47.788999999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 597.1279999999997, + "y": 42.053 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 597.1279999999997, + "y": 36.022999999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 598.9919999999997, + "y": 30.287 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 602.5369999999997, + "y": 25.409 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 607.4149999999997, + "y": 21.863999999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 613.1509999999997, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 619.1809999999997, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 624.9169999999997, + "y": 21.863999999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 629.7949999999997, + "y": 25.409 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 633.3399999999997, + "y": 30.287 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 635.2039999999997, + "y": 36.022999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 813.928944, + "axes": { + "#": 951 + }, + "bounds": { + "#": 961 + }, + "circleRadius": 16.261016803840878, + "collisionFilter": { + "#": 964 + }, + "constraintImpulse": { + "#": 965 + }, + "density": 0.001, + "force": { + "#": 966 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 421.78337188051313, + "inverseInertia": 0.002370885309066403, + "inverseMass": 1.2286084766632897, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.813928944, + "motion": 0, + "parent": null, + "position": { + "#": 967 + }, + "positionImpulse": { + "#": 968 + }, + "positionPrev": { + "#": 969 + }, + "render": { + "#": 970 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 972 + }, + "vertices": { + "#": 973 + } + }, + [ + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + } + ], + { + "x": -0.9396692887425622, + "y": -0.34208424078587313 + }, + { + "x": -0.7660396478221458, + "y": -0.6427933244554761 + }, + { + "x": -0.49996774664129423, + "y": -0.8660440244689798 + }, + { + "x": -0.17369442727416068, + "y": -0.9847995968388195 + }, + { + "x": 0.17369442727416068, + "y": -0.9847995968388195 + }, + { + "x": 0.49996774664129423, + "y": -0.8660440244689798 + }, + { + "x": 0.7660396478221458, + "y": -0.6427933244554761 + }, + { + "x": 0.9396692887425622, + "y": -0.34208424078587313 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 962 + }, + "min": { + "#": 963 + } + }, + { + "x": 52.02799999999999, + "y": 91.37199999999999 + }, + { + "x": 19.999999999999996, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 36.013999999999996, + "y": 75.11099999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 36.013999999999996, + "y": 75.11099999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 971 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 52.02799999999999, + "y": 77.93499999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 50.096, + "y": 83.24199999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 46.465999999999994, + "y": 87.56799999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 41.57599999999999, + "y": 90.39099999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 36.013999999999996, + "y": 91.37199999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 30.451999999999995, + "y": 90.39099999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 25.561999999999998, + "y": 87.56799999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 21.931999999999995, + "y": 83.24199999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 19.999999999999996, + "y": 77.93499999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 19.999999999999996, + "y": 72.28699999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 21.931999999999995, + "y": 66.97999999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 25.561999999999998, + "y": 62.65399999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 30.451999999999995, + "y": 59.83099999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 36.013999999999996, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 41.57599999999999, + "y": 59.83099999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 46.465999999999994, + "y": 62.65399999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 50.096, + "y": 66.97999999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 52.02799999999999, + "y": 72.28699999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 405.9288839999999, + "axes": { + "#": 993 + }, + "bounds": { + "#": 1000 + }, + "circleRadius": 11.63198731138546, + "collisionFilter": { + "#": 1003 + }, + "constraintImpulse": { + "#": 1004 + }, + "density": 0.001, + "force": { + "#": 1005 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 104.94637250178351, + "inverseInertia": 0.009528676181570788, + "inverseMass": 2.463485697657327, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.40592888399999993, + "motion": 0, + "parent": null, + "position": { + "#": 1006 + }, + "positionImpulse": { + "#": 1007 + }, + "positionPrev": { + "#": 1008 + }, + "render": { + "#": 1009 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1011 + }, + "vertices": { + "#": 1012 + } + }, + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + } + ], + { + "x": -0.8659753666343715, + "y": -0.5000866568730521 + }, + { + "x": -0.5000866568730521, + "y": -0.8659753666343715 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000866568730521, + "y": -0.8659753666343715 + }, + { + "x": 0.8659753666343715, + "y": -0.5000866568730521 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1001 + }, + "min": { + "#": 1002 + } + }, + { + "x": 74.5, + "y": 81.322 + }, + { + "x": 52.02799999999999, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 63.263999999999996, + "y": 70.086 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 63.263999999999996, + "y": 70.086 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1010 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 74.5, + "y": 73.09700000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 71.489, + "y": 78.31099999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 66.275, + "y": 81.322 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 60.25299999999999, + "y": 81.322 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 55.038999999999994, + "y": 78.31099999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 52.02799999999999, + "y": 73.09700000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.02799999999999, + "y": 67.07499999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 55.038999999999994, + "y": 61.861 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 60.25299999999999, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 66.275, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 71.489, + "y": 61.861 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 74.5, + "y": 67.07499999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 813.045236, + "axes": { + "#": 1026 + }, + "bounds": { + "#": 1036 + }, + "circleRadius": 16.25192901234568, + "collisionFilter": { + "#": 1039 + }, + "constraintImpulse": { + "#": 1040 + }, + "density": 0.001, + "force": { + "#": 1041 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 420.8679825768214, + "inverseInertia": 0.0023760419927345484, + "inverseMass": 1.2299438650176162, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8130452360000001, + "motion": 0, + "parent": null, + "position": { + "#": 1042 + }, + "positionImpulse": { + "#": 1043 + }, + "positionPrev": { + "#": 1044 + }, + "render": { + "#": 1045 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1047 + }, + "vertices": { + "#": 1048 + } + }, + [ + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + } + ], + { + "x": -0.939720981661198, + "y": -0.3419422124068839 + }, + { + "x": -0.7660677180217655, + "y": -0.6427598707176146 + }, + { + "x": -0.4999115829199475, + "y": -0.8660764453917866 + }, + { + "x": -0.173643819893381, + "y": -0.9848085213953193 + }, + { + "x": 0.173643819893381, + "y": -0.9848085213953193 + }, + { + "x": 0.4999115829199475, + "y": -0.8660764453917866 + }, + { + "x": 0.7660677180217655, + "y": -0.6427598707176146 + }, + { + "x": 0.939720981661198, + "y": -0.3419422124068839 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1037 + }, + "min": { + "#": 1038 + } + }, + { + "x": 106.50999999999999, + "y": 91.35399999999998 + }, + { + "x": 74.5, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 90.505, + "y": 75.10199999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 90.505, + "y": 75.10199999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1046 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 106.50999999999999, + "y": 77.92399999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 104.58, + "y": 83.228 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 100.952, + "y": 87.55199999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 96.06299999999999, + "y": 90.374 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 90.505, + "y": 91.35399999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 84.947, + "y": 90.374 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 80.05799999999999, + "y": 87.55199999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 76.42999999999999, + "y": 83.228 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 74.5, + "y": 77.92399999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 74.5, + "y": 72.27999999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 76.42999999999999, + "y": 66.976 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 80.05799999999999, + "y": 62.65199999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 84.947, + "y": 59.82999999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 90.505, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 96.06299999999999, + "y": 59.82999999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 100.952, + "y": 62.65199999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 104.58, + "y": 66.976 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 106.50999999999999, + "y": 72.27999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1175.440884, + "axes": { + "#": 1068 + }, + "bounds": { + "#": 1079 + }, + "circleRadius": 19.503557956104252, + "collisionFilter": { + "#": 1082 + }, + "constraintImpulse": { + "#": 1083 + }, + "density": 0.001, + "force": { + "#": 1084 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 879.6410498592595, + "inverseInertia": 0.00113682734583612, + "inverseMass": 0.8507446130315133, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1754408840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1085 + }, + "positionImpulse": { + "#": 1086 + }, + "positionPrev": { + "#": 1087 + }, + "render": { + "#": 1088 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1090 + }, + "vertices": { + "#": 1091 + } + }, + [ + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + } + ], + { + "x": -0.9510810304000095, + "y": -0.3089415375330036 + }, + { + "x": -0.8090123548449776, + "y": -0.5877916380046453 + }, + { + "x": -0.5877916380046453, + "y": -0.8090123548449776 + }, + { + "x": -0.3089415375330036, + "y": -0.9510810304000095 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089415375330036, + "y": -0.9510810304000095 + }, + { + "x": 0.5877916380046453, + "y": -0.8090123548449776 + }, + { + "x": 0.8090123548449776, + "y": -0.5877916380046453 + }, + { + "x": 0.9510810304000095, + "y": -0.3089415375330036 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1080 + }, + "min": { + "#": 1081 + } + }, + { + "x": 145.036, + "y": 97.376 + }, + { + "x": 106.50999999999999, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.773, + "y": 78.113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.773, + "y": 78.113 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1089 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 145.036, + "y": 81.164 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 143.151, + "y": 86.967 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 139.564, + "y": 91.904 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 134.627, + "y": 95.491 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 128.824, + "y": 97.376 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 122.722, + "y": 97.376 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 116.919, + "y": 95.491 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 111.982, + "y": 91.904 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.395, + "y": 86.967 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 106.50999999999999, + "y": 81.164 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 106.50999999999999, + "y": 75.062 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 108.395, + "y": 69.259 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 111.982, + "y": 64.322 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 116.919, + "y": 60.735 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 122.722, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 128.824, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 134.627, + "y": 60.735 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 139.564, + "y": 64.322 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 143.151, + "y": 69.259 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 145.036, + "y": 75.062 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 324.43099600000005, + "axes": { + "#": 1113 + }, + "bounds": { + "#": 1120 + }, + "circleRadius": 10.399219821673526, + "collisionFilter": { + "#": 1123 + }, + "constraintImpulse": { + "#": 1124 + }, + "density": 0.001, + "force": { + "#": 1125 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 67.03663440105248, + "inverseInertia": 0.014917216667194436, + "inverseMass": 3.082319545078238, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.3244309960000001, + "motion": 0, + "parent": null, + "position": { + "#": 1126 + }, + "positionImpulse": { + "#": 1127 + }, + "positionPrev": { + "#": 1128 + }, + "render": { + "#": 1129 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1131 + }, + "vertices": { + "#": 1132 + } + }, + [ + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + } + ], + { + "x": -0.8659473272702323, + "y": -0.5001352081123076 + }, + { + "x": -0.5001352081123076, + "y": -0.8659473272702323 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5001352081123076, + "y": -0.8659473272702323 + }, + { + "x": 0.8659473272702323, + "y": -0.5001352081123076 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1121 + }, + "min": { + "#": 1122 + } + }, + { + "x": 165.12599999999998, + "y": 78.94 + }, + { + "x": 145.036, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.081, + "y": 68.895 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.081, + "y": 68.895 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1130 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 165.12599999999998, + "y": 71.58699999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 162.434, + "y": 76.24799999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 157.773, + "y": 78.94 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 152.38899999999998, + "y": 78.94 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 147.72799999999998, + "y": 76.24799999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 145.036, + "y": 71.58699999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 145.036, + "y": 66.203 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 147.72799999999998, + "y": 61.541999999999994 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 152.38899999999998, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 157.773, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 162.434, + "y": 61.541999999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 165.12599999999998, + "y": 66.203 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 722.1773659999999, + "axes": { + "#": 1146 + }, + "bounds": { + "#": 1155 + }, + "circleRadius": 15.358667695473251, + "collisionFilter": { + "#": 1158 + }, + "constraintImpulse": { + "#": 1159 + }, + "density": 0.001, + "force": { + "#": 1160 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 332.0674558099107, + "inverseInertia": 0.0030114363286851023, + "inverseMass": 1.3847013865012214, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7221773659999999, + "motion": 0, + "parent": null, + "position": { + "#": 1161 + }, + "positionImpulse": { + "#": 1162 + }, + "positionPrev": { + "#": 1163 + }, + "render": { + "#": 1164 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1166 + }, + "vertices": { + "#": 1167 + } + }, + [ + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + } + ], + { + "x": -0.9238500637214436, + "y": -0.3827545685708854 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3827545685708854, + "y": -0.9238500637214436 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827545685708854, + "y": -0.9238500637214436 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238500637214436, + "y": -0.3827545685708854 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1156 + }, + "min": { + "#": 1157 + } + }, + { + "x": 195.25399999999996, + "y": 88.97799999999998 + }, + { + "x": 165.12599999999998, + "y": 58.84999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 180.18999999999997, + "y": 73.91399999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 180.18999999999997, + "y": 73.91399999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1165 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195.25399999999996, + "y": 76.91 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 192.95999999999998, + "y": 82.44699999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 188.72299999999996, + "y": 86.68399999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 183.18599999999998, + "y": 88.97799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 177.19399999999996, + "y": 88.97799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 171.65699999999998, + "y": 86.68399999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 167.41999999999996, + "y": 82.44699999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12599999999998, + "y": 76.91 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 165.12599999999998, + "y": 70.91799999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 167.41999999999996, + "y": 65.38099999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 171.65699999999998, + "y": 61.14399999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 177.19399999999996, + "y": 58.84999999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 183.18599999999998, + "y": 58.84999999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 188.72299999999996, + "y": 61.14399999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 192.95999999999998, + "y": 65.38099999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 195.25399999999996, + "y": 70.91799999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 486.2764840000001, + "axes": { + "#": 1185 + }, + "bounds": { + "#": 1193 + }, + "circleRadius": 12.653506515775035, + "collisionFilter": { + "#": 1196 + }, + "constraintImpulse": { + "#": 1197 + }, + "density": 0.001, + "force": { + "#": 1198 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 150.57294030609683, + "inverseInertia": 0.006641299545370631, + "inverseMass": 2.0564432640752575, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4862764840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1199 + }, + "positionImpulse": { + "#": 1200 + }, + "positionPrev": { + "#": 1201 + }, + "render": { + "#": 1202 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1204 + }, + "vertices": { + "#": 1205 + } + }, + [ + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + } + ], + { + "x": -0.9009708147132571, + "y": -0.43387969649999736 + }, + { + "x": -0.6234599159723792, + "y": -0.7818553147326646 + }, + { + "x": -0.22268014841323974, + "y": -0.9748915588426528 + }, + { + "x": 0.22268014841323974, + "y": -0.9748915588426528 + }, + { + "x": 0.6234599159723792, + "y": -0.7818553147326646 + }, + { + "x": 0.9009708147132571, + "y": -0.43387969649999736 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1194 + }, + "min": { + "#": 1195 + } + }, + { + "x": 219.926, + "y": 84.15799999999999 + }, + { + "x": 195.25399999999996, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.58999999999997, + "y": 71.50399999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.58999999999997, + "y": 71.50399999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1203 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 219.926, + "y": 74.32 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 217.48299999999998, + "y": 79.39299999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 213.07999999999998, + "y": 82.904 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 207.58999999999997, + "y": 84.15799999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 202.09999999999997, + "y": 82.904 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 197.69699999999997, + "y": 79.39299999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 195.25399999999996, + "y": 74.32 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 195.25399999999996, + "y": 68.68799999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 197.69699999999997, + "y": 63.61499999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 202.09999999999997, + "y": 60.10399999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 207.58999999999997, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 213.07999999999998, + "y": 60.10399999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 217.48299999999998, + "y": 63.61499999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 219.926, + "y": 68.68799999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 555.028152, + "axes": { + "#": 1221 + }, + "bounds": { + "#": 1229 + }, + "circleRadius": 13.518304183813443, + "collisionFilter": { + "#": 1232 + }, + "constraintImpulse": { + "#": 1233 + }, + "density": 0.001, + "force": { + "#": 1234 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 196.15998479488022, + "inverseInertia": 0.005097879677374955, + "inverseMass": 1.8017104112585627, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.555028152, + "motion": 0, + "parent": null, + "position": { + "#": 1235 + }, + "positionImpulse": { + "#": 1236 + }, + "positionPrev": { + "#": 1237 + }, + "render": { + "#": 1238 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1240 + }, + "vertices": { + "#": 1241 + } + }, + [ + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + } + ], + { + "x": -0.901008887984407, + "y": -0.4338006267550824 + }, + { + "x": -0.6234578160368234, + "y": -0.781856989239461 + }, + { + "x": -0.22241855165218072, + "y": -0.9749512746188632 + }, + { + "x": 0.22241855165218072, + "y": -0.9749512746188632 + }, + { + "x": 0.6234578160368234, + "y": -0.781856989239461 + }, + { + "x": 0.901008887984407, + "y": -0.4338006267550824 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1230 + }, + "min": { + "#": 1231 + } + }, + { + "x": 246.284, + "y": 85.886 + }, + { + "x": 219.926, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 233.105, + "y": 72.368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 233.105, + "y": 72.368 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1239 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 246.284, + "y": 75.376 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.67399999999998, + "y": 80.797 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 238.97, + "y": 84.548 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 233.105, + "y": 85.886 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 227.23999999999998, + "y": 84.548 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 222.536, + "y": 80.797 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 219.926, + "y": 75.376 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 219.926, + "y": 69.35999999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 222.536, + "y": 63.93899999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 227.23999999999998, + "y": 60.187999999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 233.105, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 238.97, + "y": 60.187999999999995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 243.67399999999998, + "y": 63.93899999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 246.284, + "y": 69.35999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1227.1883159999998, + "axes": { + "#": 1257 + }, + "bounds": { + "#": 1268 + }, + "circleRadius": 19.928369341563787, + "collisionFilter": { + "#": 1271 + }, + "constraintImpulse": { + "#": 1272 + }, + "density": 0.001, + "force": { + "#": 1273 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 958.7962512746001, + "inverseInertia": 0.001042974457472716, + "inverseMass": 0.8148708612704882, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.227188316, + "motion": 0, + "parent": null, + "position": { + "#": 1274 + }, + "positionImpulse": { + "#": 1275 + }, + "positionPrev": { + "#": 1276 + }, + "render": { + "#": 1277 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1279 + }, + "vertices": { + "#": 1280 + } + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + } + ], + { + "x": -0.9510458539268092, + "y": -0.30904980784434416 + }, + { + "x": -0.80899262671849, + "y": -0.5878187900323687 + }, + { + "x": -0.5878187900323687, + "y": -0.80899262671849 + }, + { + "x": -0.30904980784434416, + "y": -0.9510458539268092 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30904980784434416, + "y": -0.9510458539268092 + }, + { + "x": 0.5878187900323687, + "y": -0.80899262671849 + }, + { + "x": 0.80899262671849, + "y": -0.5878187900323687 + }, + { + "x": 0.9510458539268092, + "y": -0.30904980784434416 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1269 + }, + "min": { + "#": 1270 + } + }, + { + "x": 285.65, + "y": 98.21599999999998 + }, + { + "x": 246.284, + "y": 58.84999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265.967, + "y": 78.53299999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265.967, + "y": 78.53299999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1278 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.65, + "y": 81.64999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.72299999999996, + "y": 87.57999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280.058, + "y": 92.62399999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275.014, + "y": 96.28899999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 269.08399999999995, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 262.85, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.91999999999996, + "y": 96.28899999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 251.87599999999998, + "y": 92.62399999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 248.21099999999998, + "y": 87.57999999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 246.284, + "y": 81.64999999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 246.284, + "y": 75.416 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 248.21099999999998, + "y": 69.48599999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 251.87599999999998, + "y": 64.44199999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 256.91999999999996, + "y": 60.77699999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 262.85, + "y": 58.84999999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 269.08399999999995, + "y": 58.84999999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 275.014, + "y": 60.77699999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 280.058, + "y": 64.44199999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 283.72299999999996, + "y": 69.48599999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 285.65, + "y": 75.416 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1120.7724680000001, + "axes": { + "#": 1302 + }, + "bounds": { + "#": 1313 + }, + "circleRadius": 19.04419581618656, + "collisionFilter": { + "#": 1316 + }, + "constraintImpulse": { + "#": 1317 + }, + "density": 0.001, + "force": { + "#": 1318 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 799.721573279466, + "inverseInertia": 0.001250435193212608, + "inverseMass": 0.8922417605283286, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1207724680000002, + "motion": 0, + "parent": null, + "position": { + "#": 1319 + }, + "positionImpulse": { + "#": 1320 + }, + "positionPrev": { + "#": 1321 + }, + "render": { + "#": 1322 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1324 + }, + "vertices": { + "#": 1325 + } + }, + [ + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + } + ], + { + "x": -0.9510722943806661, + "y": -0.3089684302020123 + }, + { + "x": -0.8089319902014619, + "y": -0.5879022327128056 + }, + { + "x": -0.5879022327128056, + "y": -0.8089319902014619 + }, + { + "x": -0.3089684302020123, + "y": -0.9510722943806661 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089684302020123, + "y": -0.9510722943806661 + }, + { + "x": 0.5879022327128056, + "y": -0.8089319902014619 + }, + { + "x": 0.8089319902014619, + "y": -0.5879022327128056 + }, + { + "x": 0.9510722943806661, + "y": -0.3089684302020123 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1314 + }, + "min": { + "#": 1315 + } + }, + { + "x": 323.27, + "y": 96.47 + }, + { + "x": 285.65, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 304.46, + "y": 77.66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 304.46, + "y": 77.66 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1323 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 323.27, + "y": 80.639 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 321.429, + "y": 86.306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 317.926, + "y": 91.12599999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 313.106, + "y": 94.62899999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 307.43899999999996, + "y": 96.47 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.481, + "y": 96.47 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 295.81399999999996, + "y": 94.62899999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 290.99399999999997, + "y": 91.12599999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 287.491, + "y": 86.306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.65, + "y": 80.639 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.65, + "y": 74.681 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 287.491, + "y": 69.014 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 290.99399999999997, + "y": 64.19399999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 295.81399999999996, + "y": 60.690999999999995 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 301.481, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 307.43899999999996, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 313.106, + "y": 60.690999999999995 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 317.926, + "y": 64.19399999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 321.429, + "y": 69.014 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 323.27, + "y": 74.681 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 628.0030680000002, + "axes": { + "#": 1347 + }, + "bounds": { + "#": 1356 + }, + "circleRadius": 14.322573731138545, + "collisionFilter": { + "#": 1359 + }, + "constraintImpulse": { + "#": 1360 + }, + "density": 0.001, + "force": { + "#": 1361 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 251.1088965588656, + "inverseInertia": 0.003982336005230214, + "inverseMass": 1.5923489087158402, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6280030680000003, + "motion": 0, + "parent": null, + "position": { + "#": 1362 + }, + "positionImpulse": { + "#": 1363 + }, + "positionPrev": { + "#": 1364 + }, + "render": { + "#": 1365 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1367 + }, + "vertices": { + "#": 1368 + } + }, + [ + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "x": -0.923916516222473, + "y": -0.3825941335819576 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3825941335819576, + "y": -0.923916516222473 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3825941335819576, + "y": -0.923916516222473 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923916516222473, + "y": -0.3825941335819576 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1357 + }, + "min": { + "#": 1358 + } + }, + { + "x": 351.36400000000003, + "y": 86.94399999999999 + }, + { + "x": 323.27, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.317, + "y": 72.89699999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.317, + "y": 72.89699999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1366 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 351.36400000000003, + "y": 75.69099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 349.226, + "y": 80.85399999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 345.274, + "y": 84.806 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340.111, + "y": 86.94399999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 334.523, + "y": 86.94399999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 329.36, + "y": 84.806 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 325.408, + "y": 80.85399999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.27, + "y": 75.69099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 323.27, + "y": 70.103 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 325.408, + "y": 64.94 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 329.36, + "y": 60.98799999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 334.523, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 340.111, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 345.274, + "y": 60.98799999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 349.226, + "y": 64.94 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 351.36400000000003, + "y": 70.103 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 536.790174, + "axes": { + "#": 1386 + }, + "bounds": { + "#": 1394 + }, + "circleRadius": 13.294367283950617, + "collisionFilter": { + "#": 1397 + }, + "constraintImpulse": { + "#": 1398 + }, + "density": 0.001, + "force": { + "#": 1399 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 183.48032886968383, + "inverseInertia": 0.005450175537401865, + "inverseMass": 1.8629253075709244, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.536790174, + "motion": 0, + "parent": null, + "position": { + "#": 1400 + }, + "positionImpulse": { + "#": 1401 + }, + "positionPrev": { + "#": 1402 + }, + "render": { + "#": 1403 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1405 + }, + "vertices": { + "#": 1406 + } + }, + [ + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "x": -0.9009869891740203, + "y": -0.43384610789902656 + }, + { + "x": -0.6234782418052662, + "y": -0.7818407011632318 + }, + { + "x": -0.22243926136633385, + "y": -0.9749465498183989 + }, + { + "x": 0.22243926136633385, + "y": -0.9749465498183989 + }, + { + "x": 0.6234782418052662, + "y": -0.7818407011632318 + }, + { + "x": 0.9009869891740203, + "y": -0.43384610789902656 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1395 + }, + "min": { + "#": 1396 + } + }, + { + "x": 377.28600000000006, + "y": 85.43799999999999 + }, + { + "x": 351.36400000000003, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 364.32500000000005, + "y": 72.14399999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 364.32500000000005, + "y": 72.14399999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1404 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.28600000000006, + "y": 75.10199999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.71900000000005, + "y": 80.43299999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370.093, + "y": 84.12199999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.32500000000005, + "y": 85.43799999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 358.5570000000001, + "y": 84.12199999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 353.93100000000004, + "y": 80.43299999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 351.36400000000003, + "y": 75.10199999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 351.36400000000003, + "y": 69.18599999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.93100000000004, + "y": 63.85499999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 358.5570000000001, + "y": 60.16599999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 364.32500000000005, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 370.093, + "y": 60.16599999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 374.71900000000005, + "y": 63.85499999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 377.28600000000006, + "y": 69.18599999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 438.00552799999997, + "axes": { + "#": 1422 + }, + "bounds": { + "#": 1430 + }, + "circleRadius": 12.008959190672154, + "collisionFilter": { + "#": 1433 + }, + "constraintImpulse": { + "#": 1434 + }, + "density": 0.001, + "force": { + "#": 1435 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 122.16296885484358, + "inverseInertia": 0.008185786653467954, + "inverseMass": 2.2830762081158027, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.438005528, + "motion": 0, + "parent": null, + "position": { + "#": 1436 + }, + "positionImpulse": { + "#": 1437 + }, + "positionPrev": { + "#": 1438 + }, + "render": { + "#": 1439 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1441 + }, + "vertices": { + "#": 1442 + } + }, + [ + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + } + ], + { + "x": -0.9009529061315026, + "y": -0.43391688251691707 + }, + { + "x": -0.6235308204487997, + "y": -0.7817987694736074 + }, + { + "x": -0.22249452113027474, + "y": -0.9749339403605815 + }, + { + "x": 0.22249452113027474, + "y": -0.9749339403605815 + }, + { + "x": 0.6235308204487997, + "y": -0.7817987694736074 + }, + { + "x": 0.9009529061315026, + "y": -0.43391688251691707 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1431 + }, + "min": { + "#": 1432 + } + }, + { + "x": 400.7020000000001, + "y": 82.868 + }, + { + "x": 377.28600000000006, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 388.9940000000001, + "y": 70.859 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 388.9940000000001, + "y": 70.859 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1440 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400.7020000000001, + "y": 73.53099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 398.3830000000001, + "y": 78.34599999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 394.20400000000006, + "y": 81.67899999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 388.9940000000001, + "y": 82.868 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 383.7840000000001, + "y": 81.67899999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 379.6050000000001, + "y": 78.34599999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 377.28600000000006, + "y": 73.53099999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 377.28600000000006, + "y": 68.187 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 379.6050000000001, + "y": 63.37199999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 383.7840000000001, + "y": 60.038999999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 388.9940000000001, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 394.20400000000006, + "y": 60.038999999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 398.3830000000001, + "y": 63.37199999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 400.7020000000001, + "y": 68.187 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 802.396328, + "axes": { + "#": 1458 + }, + "bounds": { + "#": 1468 + }, + "circleRadius": 16.145361796982165, + "collisionFilter": { + "#": 1471 + }, + "constraintImpulse": { + "#": 1472 + }, + "density": 0.001, + "force": { + "#": 1473 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 409.9154941824296, + "inverseInertia": 0.0024395272054658127, + "inverseMass": 1.2462669196063418, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.802396328, + "motion": 0, + "parent": null, + "position": { + "#": 1474 + }, + "positionImpulse": { + "#": 1475 + }, + "positionPrev": { + "#": 1476 + }, + "render": { + "#": 1477 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1479 + }, + "vertices": { + "#": 1480 + } + }, + [ + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + } + ], + { + "x": -0.9396788158754413, + "y": -0.3420580696240458 + }, + { + "x": -0.7660385515515891, + "y": -0.6427946309177943 + }, + { + "x": -0.5000517732992366, + "y": -0.8659955103926862 + }, + { + "x": -0.17353097513080934, + "y": -0.9848284117906786 + }, + { + "x": 0.17353097513080934, + "y": -0.9848284117906786 + }, + { + "x": 0.5000517732992366, + "y": -0.8659955103926862 + }, + { + "x": 0.7660385515515891, + "y": -0.6427946309177943 + }, + { + "x": 0.9396788158754413, + "y": -0.3420580696240458 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1469 + }, + "min": { + "#": 1470 + } + }, + { + "x": 432.50200000000007, + "y": 91.13999999999999 + }, + { + "x": 400.7020000000001, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 416.6020000000001, + "y": 74.99499999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 416.6020000000001, + "y": 74.99499999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1478 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 432.50200000000007, + "y": 77.79899999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430.58400000000006, + "y": 83.068 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 426.9800000000001, + "y": 87.36299999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 422.1240000000001, + "y": 90.16699999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 416.6020000000001, + "y": 91.13999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 411.0800000000001, + "y": 90.16699999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 406.2240000000001, + "y": 87.36299999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 402.6200000000001, + "y": 83.068 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 400.7020000000001, + "y": 77.79899999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 400.7020000000001, + "y": 72.19099999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 402.6200000000001, + "y": 66.922 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 406.2240000000001, + "y": 62.62699999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 411.0800000000001, + "y": 59.82299999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 416.6020000000001, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 422.1240000000001, + "y": 59.82299999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 426.9800000000001, + "y": 62.62699999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 430.58400000000006, + "y": 66.922 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 432.50200000000007, + "y": 72.19099999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1091.045108, + "axes": { + "#": 1500 + }, + "bounds": { + "#": 1511 + }, + "circleRadius": 18.78999485596708, + "collisionFilter": { + "#": 1514 + }, + "constraintImpulse": { + "#": 1515 + }, + "density": 0.001, + "force": { + "#": 1516 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 757.8605778590133, + "inverseInertia": 0.0013195039156477042, + "inverseMass": 0.9165523887762117, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.091045108, + "motion": 0, + "parent": null, + "position": { + "#": 1517 + }, + "positionImpulse": { + "#": 1518 + }, + "positionPrev": { + "#": 1519 + }, + "render": { + "#": 1520 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1522 + }, + "vertices": { + "#": 1523 + } + }, + [ + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + } + ], + { + "x": -0.9510378187801216, + "y": -0.30907453348658226 + }, + { + "x": -0.8091110339454614, + "y": -0.587655796149163 + }, + { + "x": -0.587655796149163, + "y": -0.8091110339454614 + }, + { + "x": -0.30907453348658226, + "y": -0.9510378187801216 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907453348658226, + "y": -0.9510378187801216 + }, + { + "x": 0.587655796149163, + "y": -0.8091110339454614 + }, + { + "x": 0.8091110339454614, + "y": -0.587655796149163 + }, + { + "x": 0.9510378187801216, + "y": -0.30907453348658226 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1512 + }, + "min": { + "#": 1513 + } + }, + { + "x": 469.6200000000001, + "y": 95.96799999999999 + }, + { + "x": 432.50200000000007, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451.0610000000001, + "y": 77.40899999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451.0610000000001, + "y": 77.40899999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1521 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 469.6200000000001, + "y": 80.34799999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 467.8030000000001, + "y": 85.939 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 464.34800000000007, + "y": 90.696 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 459.59100000000007, + "y": 94.151 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 454.0000000000001, + "y": 95.96799999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 448.12200000000007, + "y": 95.96799999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 442.5310000000001, + "y": 94.151 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 437.7740000000001, + "y": 90.696 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.3190000000001, + "y": 85.939 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 432.50200000000007, + "y": 80.34799999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 432.50200000000007, + "y": 74.47 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 434.3190000000001, + "y": 68.87899999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 437.7740000000001, + "y": 64.12199999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 442.5310000000001, + "y": 60.66699999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 448.12200000000007, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 454.0000000000001, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 459.59100000000007, + "y": 60.66699999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 464.34800000000007, + "y": 64.12199999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 467.8030000000001, + "y": 68.87899999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 469.6200000000001, + "y": 74.47 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 677.950314, + "axes": { + "#": 1545 + }, + "bounds": { + "#": 1554 + }, + "circleRadius": 14.881129972565159, + "collisionFilter": { + "#": 1557 + }, + "constraintImpulse": { + "#": 1558 + }, + "density": 0.001, + "force": { + "#": 1559 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 292.6404130867056, + "inverseInertia": 0.00341716302766328, + "inverseMass": 1.4750343489036277, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.677950314, + "motion": 0, + "parent": null, + "position": { + "#": 1560 + }, + "positionImpulse": { + "#": 1561 + }, + "positionPrev": { + "#": 1562 + }, + "render": { + "#": 1563 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1565 + }, + "vertices": { + "#": 1566 + } + }, + [ + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + } + ], + { + "x": -0.9238951037390043, + "y": -0.3826458379325384 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3826458379325384, + "y": -0.9238951037390043 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826458379325384, + "y": -0.9238951037390043 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238951037390043, + "y": -0.3826458379325384 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1555 + }, + "min": { + "#": 1556 + } + }, + { + "x": 498.8100000000002, + "y": 88.03999999999999 + }, + { + "x": 469.6200000000001, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 484.21500000000015, + "y": 73.445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 484.21500000000015, + "y": 73.445 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1564 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.8100000000002, + "y": 76.34799999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 496.58800000000014, + "y": 81.713 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 492.4830000000002, + "y": 85.818 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 487.11800000000017, + "y": 88.03999999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 481.3120000000001, + "y": 88.03999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 475.9470000000001, + "y": 85.818 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 471.84200000000016, + "y": 81.713 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 469.6200000000001, + "y": 76.34799999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 469.6200000000001, + "y": 70.542 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 471.84200000000016, + "y": 65.17699999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 475.9470000000001, + "y": 61.071999999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 481.3120000000001, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 487.11800000000017, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 492.4830000000002, + "y": 61.071999999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 496.58800000000014, + "y": 65.17699999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 498.8100000000002, + "y": 70.542 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 460.97596999999996, + "axes": { + "#": 1584 + }, + "bounds": { + "#": 1592 + }, + "circleRadius": 12.320001714677641, + "collisionFilter": { + "#": 1595 + }, + "constraintImpulse": { + "#": 1596 + }, + "density": 0.001, + "force": { + "#": 1597 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 135.31220425278414, + "inverseInertia": 0.007390316383671093, + "inverseMass": 2.1693104740362066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.46097596999999996, + "motion": 0, + "parent": null, + "position": { + "#": 1598 + }, + "positionImpulse": { + "#": 1599 + }, + "positionPrev": { + "#": 1600 + }, + "render": { + "#": 1601 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1603 + }, + "vertices": { + "#": 1604 + } + }, + [ + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + } + ], + { + "x": -0.9009673433676825, + "y": -0.4338869048323313 + }, + { + "x": -0.6235156169322131, + "y": -0.7818108949366475 + }, + { + "x": -0.22252763105305415, + "y": -0.9749263835889949 + }, + { + "x": 0.22252763105305415, + "y": -0.9749263835889949 + }, + { + "x": 0.6235156169322131, + "y": -0.7818108949366475 + }, + { + "x": 0.9009673433676825, + "y": -0.4338869048323313 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1593 + }, + "min": { + "#": 1594 + } + }, + { + "x": 522.8320000000002, + "y": 83.48999999999998 + }, + { + "x": 498.8100000000002, + "y": 58.84999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8210000000002, + "y": 71.16999999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8210000000002, + "y": 71.16999999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1602 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.8320000000002, + "y": 73.91099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520.4530000000002, + "y": 78.85099999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 516.1660000000002, + "y": 82.26999999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510.8210000000002, + "y": 83.48999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 505.47600000000017, + "y": 82.26999999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 501.1890000000002, + "y": 78.85099999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 498.8100000000002, + "y": 73.91099999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 498.8100000000002, + "y": 68.42899999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 501.1890000000002, + "y": 63.48899999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 505.47600000000017, + "y": 60.069999999999986 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 510.8210000000002, + "y": 58.84999999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 516.1660000000002, + "y": 60.069999999999986 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 520.4530000000002, + "y": 63.48899999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 522.8320000000002, + "y": 68.42899999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1205.152204, + "axes": { + "#": 1620 + }, + "bounds": { + "#": 1631 + }, + "circleRadius": 19.748585390946502, + "collisionFilter": { + "#": 1634 + }, + "constraintImpulse": { + "#": 1635 + }, + "density": 0.001, + "force": { + "#": 1636 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 924.671990568659, + "inverseInertia": 0.0010814645735997858, + "inverseMass": 0.8297707100239432, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.205152204, + "motion": 0, + "parent": null, + "position": { + "#": 1637 + }, + "positionImpulse": { + "#": 1638 + }, + "positionPrev": { + "#": 1639 + }, + "render": { + "#": 1640 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1642 + }, + "vertices": { + "#": 1643 + } + }, + [ + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + } + ], + { + "x": -0.9510828167087596, + "y": -0.30893603830134786 + }, + { + "x": -0.8089600004028265, + "y": -0.5878636897685203 + }, + { + "x": -0.5878636897685203, + "y": -0.8089600004028265 + }, + { + "x": -0.30893603830134786, + "y": -0.9510828167087596 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30893603830134786, + "y": -0.9510828167087596 + }, + { + "x": 0.5878636897685203, + "y": -0.8089600004028265 + }, + { + "x": 0.8089600004028265, + "y": -0.5878636897685203 + }, + { + "x": 0.9510828167087596, + "y": -0.30893603830134786 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1632 + }, + "min": { + "#": 1633 + } + }, + { + "x": 561.8420000000002, + "y": 97.85999999999999 + }, + { + "x": 522.8320000000002, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 542.3370000000002, + "y": 78.35499999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 542.3370000000002, + "y": 78.35499999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1641 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 561.8420000000002, + "y": 81.44399999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 559.9330000000002, + "y": 87.32099999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 556.3010000000003, + "y": 92.31899999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 551.3030000000002, + "y": 95.951 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 545.4260000000003, + "y": 97.85999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 539.2480000000002, + "y": 97.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 533.3710000000002, + "y": 95.951 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 528.3730000000003, + "y": 92.31899999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 524.7410000000002, + "y": 87.32099999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 522.8320000000002, + "y": 81.44399999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 522.8320000000002, + "y": 75.26599999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 524.7410000000002, + "y": 69.38899999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 528.3730000000003, + "y": 64.39099999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 533.3710000000002, + "y": 60.758999999999986 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 539.2480000000002, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 545.4260000000003, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 551.3030000000002, + "y": 60.758999999999986 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 556.3010000000003, + "y": 64.39099999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 559.9330000000002, + "y": 69.38899999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 561.8420000000002, + "y": 75.26599999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 362.584524, + "axes": { + "#": 1665 + }, + "bounds": { + "#": 1672 + }, + "circleRadius": 10.994041495198903, + "collisionFilter": { + "#": 1675 + }, + "constraintImpulse": { + "#": 1676 + }, + "density": 0.001, + "force": { + "#": 1677 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 83.73095584960791, + "inverseInertia": 0.011943014263400204, + "inverseMass": 2.7579776129661835, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.362584524, + "motion": 0, + "parent": null, + "position": { + "#": 1678 + }, + "positionImpulse": { + "#": 1679 + }, + "positionPrev": { + "#": 1680 + }, + "render": { + "#": 1681 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1683 + }, + "vertices": { + "#": 1684 + } + }, + [ + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + } + ], + { + "x": -0.8660831831124717, + "y": -0.4998999099117431 + }, + { + "x": -0.4998999099117431, + "y": -0.8660831831124717 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4998999099117431, + "y": -0.8660831831124717 + }, + { + "x": 0.8660831831124717, + "y": -0.4998999099117431 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1673 + }, + "min": { + "#": 1674 + } + }, + { + "x": 583.0800000000003, + "y": 80.088 + }, + { + "x": 561.8420000000002, + "y": 58.849999999999994 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 572.4610000000002, + "y": 69.469 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 572.4610000000002, + "y": 69.469 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1682 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 583.0800000000003, + "y": 72.314 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.2350000000002, + "y": 77.243 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575.3060000000003, + "y": 80.088 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 569.6160000000002, + "y": 80.088 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 564.6870000000002, + "y": 77.243 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 561.8420000000002, + "y": 72.314 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 561.8420000000002, + "y": 66.624 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 564.6870000000002, + "y": 61.69499999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 569.6160000000002, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 575.3060000000003, + "y": 58.849999999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 580.2350000000002, + "y": 61.69499999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 583.0800000000003, + "y": 66.624 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 805.817864, + "axes": { + "#": 1698 + }, + "bounds": { + "#": 1708 + }, + "circleRadius": 16.1798268175583, + "collisionFilter": { + "#": 1711 + }, + "constraintImpulse": { + "#": 1712 + }, + "density": 0.001, + "force": { + "#": 1713 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 413.41882770208514, + "inverseInertia": 0.002418854519902545, + "inverseMass": 1.2409752186878795, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.805817864, + "motion": 0, + "parent": null, + "position": { + "#": 1714 + }, + "positionImpulse": { + "#": 1715 + }, + "positionPrev": { + "#": 1716 + }, + "render": { + "#": 1717 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1719 + }, + "vertices": { + "#": 1720 + } + }, + [ + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + } + ], + { + "x": -0.9396790547219881, + "y": -0.34205741348023866 + }, + { + "x": -0.7659992927826746, + "y": -0.6428414139244937 + }, + { + "x": -0.5000818959792287, + "y": -0.8659781159554899 + }, + { + "x": -0.17368381518741813, + "y": -0.9848014684909557 + }, + { + "x": 0.17368381518741813, + "y": -0.9848014684909557 + }, + { + "x": 0.5000818959792287, + "y": -0.8659781159554899 + }, + { + "x": 0.7659992927826746, + "y": -0.6428414139244937 + }, + { + "x": 0.9396790547219881, + "y": -0.34205741348023866 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1709 + }, + "min": { + "#": 1710 + } + }, + { + "x": 614.9480000000002, + "y": 91.21000000000001 + }, + { + "x": 583.0800000000003, + "y": 58.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.0140000000002, + "y": 75.03 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.0140000000002, + "y": 75.03 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1718 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 614.9480000000002, + "y": 77.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.0260000000003, + "y": 83.12 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.4140000000002, + "y": 87.424 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.5480000000002, + "y": 90.23400000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 599.0140000000002, + "y": 91.21000000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 593.4800000000002, + "y": 90.23400000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 588.6140000000003, + "y": 87.424 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 585.0020000000002, + "y": 83.12 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 583.0800000000003, + "y": 77.84 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 583.0800000000003, + "y": 72.22 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 585.0020000000002, + "y": 66.94 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 588.6140000000003, + "y": 62.636 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 593.4800000000002, + "y": 59.826 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 599.0140000000002, + "y": 58.85 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 604.5480000000002, + "y": 59.826 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 609.4140000000002, + "y": 62.636 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 613.0260000000003, + "y": 66.94 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 614.9480000000002, + "y": 72.22 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1175.440884, + "axes": { + "#": 1740 + }, + "bounds": { + "#": 1751 + }, + "circleRadius": 19.50347222222222, + "collisionFilter": { + "#": 1754 + }, + "constraintImpulse": { + "#": 1755 + }, + "density": 0.001, + "force": { + "#": 1756 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 879.6410498592595, + "inverseInertia": 0.00113682734583612, + "inverseMass": 0.8507446130315133, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1754408840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1757 + }, + "positionImpulse": { + "#": 1758 + }, + "positionPrev": { + "#": 1759 + }, + "render": { + "#": 1760 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1762 + }, + "vertices": { + "#": 1763 + } + }, + [ + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": -0.9510810304000095, + "y": -0.3089415375330036 + }, + { + "x": -0.8090123548449776, + "y": -0.5877916380046453 + }, + { + "x": -0.5877916380046453, + "y": -0.8090123548449776 + }, + { + "x": -0.3089415375330036, + "y": -0.9510810304000095 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089415375330036, + "y": -0.9510810304000095 + }, + { + "x": 0.5877916380046453, + "y": -0.8090123548449776 + }, + { + "x": 0.8090123548449776, + "y": -0.5877916380046453 + }, + { + "x": 0.9510810304000095, + "y": -0.3089415375330036 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1752 + }, + "min": { + "#": 1753 + } + }, + { + "x": 58.52600000000001, + "y": 136.742 + }, + { + "x": 20.000000000000004, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.263000000000005, + "y": 117.47899999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.263000000000005, + "y": 117.47899999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1761 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 58.52600000000001, + "y": 120.52999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 56.641000000000005, + "y": 126.33299999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 53.054, + "y": 131.26999999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 48.117000000000004, + "y": 134.85699999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 42.31400000000001, + "y": 136.742 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 36.212, + "y": 136.742 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 30.409000000000006, + "y": 134.85699999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 25.472000000000005, + "y": 131.26999999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 21.885000000000005, + "y": 126.33299999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 20.000000000000004, + "y": 120.52999999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 20.000000000000004, + "y": 114.42799999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 21.885000000000005, + "y": 108.62499999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 25.472000000000005, + "y": 103.68799999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 30.409000000000006, + "y": 100.10099999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 36.212, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 42.31400000000001, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 48.117000000000004, + "y": 100.10099999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 53.054, + "y": 103.68799999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 56.641000000000005, + "y": 108.62499999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 58.52600000000001, + "y": 114.42799999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 568.46124, + "axes": { + "#": 1785 + }, + "bounds": { + "#": 1793 + }, + "circleRadius": 13.68102709190672, + "collisionFilter": { + "#": 1796 + }, + "constraintImpulse": { + "#": 1797 + }, + "density": 0.001, + "force": { + "#": 1798 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 205.77002535077511, + "inverseInertia": 0.004859794317929956, + "inverseMass": 1.7591348884226479, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.56846124, + "motion": 0, + "parent": null, + "position": { + "#": 1799 + }, + "positionImpulse": { + "#": 1800 + }, + "positionPrev": { + "#": 1801 + }, + "render": { + "#": 1802 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1804 + }, + "vertices": { + "#": 1805 + } + }, + [ + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + } + ], + { + "x": -0.9009636264752368, + "y": -0.43389462288508485 + }, + { + "x": -0.6234924793998962, + "y": -0.7818293471927041 + }, + { + "x": -0.22254384035750657, + "y": -0.974922683662111 + }, + { + "x": 0.22254384035750657, + "y": -0.974922683662111 + }, + { + "x": 0.6234924793998962, + "y": -0.7818293471927041 + }, + { + "x": 0.9009636264752368, + "y": -0.43389462288508485 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1794 + }, + "min": { + "#": 1795 + } + }, + { + "x": 85.202, + "y": 125.57799999999997 + }, + { + "x": 58.526, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 71.864, + "y": 111.89699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 71.864, + "y": 111.89699999999998 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1803 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 85.202, + "y": 114.94099999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 82.56, + "y": 120.42699999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 77.80000000000001, + "y": 124.22299999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 71.864, + "y": 125.57799999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 65.928, + "y": 124.22299999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 61.168000000000006, + "y": 120.42699999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 58.526, + "y": 114.94099999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 58.526, + "y": 108.85299999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 61.168000000000006, + "y": 103.36699999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 65.928, + "y": 99.57099999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 71.864, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 77.80000000000001, + "y": 99.57099999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 82.56, + "y": 103.36699999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 85.202, + "y": 108.85299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 366.82313200000004, + "axes": { + "#": 1821 + }, + "bounds": { + "#": 1828 + }, + "circleRadius": 11.058170438957475, + "collisionFilter": { + "#": 1831 + }, + "constraintImpulse": { + "#": 1832 + }, + "density": 0.001, + "force": { + "#": 1833 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 85.70002548110048, + "inverseInertia": 0.011668607965822963, + "inverseMass": 2.726109431942803, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.36682313200000005, + "motion": 0, + "parent": null, + "position": { + "#": 1834 + }, + "positionImpulse": { + "#": 1835 + }, + "positionPrev": { + "#": 1836 + }, + "render": { + "#": 1837 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1839 + }, + "vertices": { + "#": 1840 + } + }, + [ + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + } + ], + { + "x": -0.8660197514843452, + "y": -0.5000097899431502 + }, + { + "x": -0.5000097899431502, + "y": -0.8660197514843452 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000097899431502, + "y": -0.8660197514843452 + }, + { + "x": 0.8660197514843452, + "y": -0.5000097899431502 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1829 + }, + "min": { + "#": 1830 + } + }, + { + "x": 106.564, + "y": 119.57799999999997 + }, + { + "x": 85.202, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 95.883, + "y": 108.89699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 95.883, + "y": 108.89699999999998 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1838 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 106.564, + "y": 111.75899999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 103.702, + "y": 116.71599999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 98.74499999999999, + "y": 119.57799999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 93.021, + "y": 119.57799999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 88.064, + "y": 116.71599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 85.202, + "y": 111.75899999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 85.202, + "y": 106.03499999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 88.064, + "y": 101.07799999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 93.021, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 98.74499999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 103.702, + "y": 101.07799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 106.564, + "y": 106.03499999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 389.07123600000006, + "axes": { + "#": 1854 + }, + "bounds": { + "#": 1861 + }, + "circleRadius": 11.387988683127572, + "collisionFilter": { + "#": 1864 + }, + "constraintImpulse": { + "#": 1865 + }, + "density": 0.001, + "force": { + "#": 1866 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 96.41081889936525, + "inverseInertia": 0.010372279910243391, + "inverseMass": 2.5702234127634145, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.38907123600000004, + "motion": 0, + "parent": null, + "position": { + "#": 1867 + }, + "positionImpulse": { + "#": 1868 + }, + "positionPrev": { + "#": 1869 + }, + "render": { + "#": 1870 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1872 + }, + "vertices": { + "#": 1873 + } + }, + [ + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + } + ], + { + "x": -0.8660952066747344, + "y": -0.4998790783530045 + }, + { + "x": -0.4998790783530045, + "y": -0.8660952066747344 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4998790783530045, + "y": -0.8660952066747344 + }, + { + "x": 0.8660952066747344, + "y": -0.4998790783530045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1862 + }, + "min": { + "#": 1863 + } + }, + { + "x": 128.564, + "y": 120.21599999999998 + }, + { + "x": 106.564, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.564, + "y": 109.21599999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.564, + "y": 109.21599999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1871 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 128.564, + "y": 112.16299999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125.61699999999999, + "y": 117.26899999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120.511, + "y": 120.21599999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 114.61699999999999, + "y": 120.21599999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 109.511, + "y": 117.26899999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 106.564, + "y": 112.16299999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 106.564, + "y": 106.26899999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 109.511, + "y": 101.16299999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 114.61699999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 120.511, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 125.61699999999999, + "y": 101.16299999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 128.564, + "y": 106.26899999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 815.3892460000001, + "axes": { + "#": 1887 + }, + "bounds": { + "#": 1897 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1900 + }, + "constraintImpulse": { + "#": 1901 + }, + "density": 0.001, + "force": { + "#": 1902 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 423.2982063032686, + "inverseInertia": 0.0023624007498948816, + "inverseMass": 1.2264081294984357, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8153892460000001, + "motion": 0, + "parent": null, + "position": { + "#": 1903 + }, + "positionImpulse": { + "#": 1904 + }, + "positionPrev": { + "#": 1905 + }, + "render": { + "#": 1906 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1908 + }, + "vertices": { + "#": 1909 + } + }, + [ + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + } + ], + { + "x": -0.9397159229781226, + "y": -0.3419561142915492 + }, + { + "x": -0.7660706997750172, + "y": -0.6427563169243967 + }, + { + "x": -0.4999828073287557, + "y": -0.8660353297502684 + }, + { + "x": -0.17354312409985562, + "y": -0.9848262710131479 + }, + { + "x": 0.17354312409985562, + "y": -0.9848262710131479 + }, + { + "x": 0.4999828073287557, + "y": -0.8660353297502684 + }, + { + "x": 0.7660706997750172, + "y": -0.6427563169243967 + }, + { + "x": 0.9397159229781226, + "y": -0.3419561142915492 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1898 + }, + "min": { + "#": 1899 + } + }, + { + "x": 160.61999999999998, + "y": 130.766 + }, + { + "x": 128.564, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.59199999999998, + "y": 114.49099999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.59199999999998, + "y": 114.49099999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1907 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160.61999999999998, + "y": 117.31699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 158.68699999999998, + "y": 122.62899999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 155.05399999999997, + "y": 126.95899999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150.159, + "y": 129.78499999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 144.59199999999998, + "y": 130.766 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 139.02499999999998, + "y": 129.78499999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 134.13, + "y": 126.95899999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 130.49699999999999, + "y": 122.62899999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 128.564, + "y": 117.31699999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 128.564, + "y": 111.66499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 130.49699999999999, + "y": 106.35299999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 134.13, + "y": 102.02299999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 139.02499999999998, + "y": 99.19699999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 144.59199999999998, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 150.159, + "y": 99.19699999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 155.05399999999997, + "y": 102.02299999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 158.68699999999998, + "y": 106.35299999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 160.61999999999998, + "y": 111.66499999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 317.56207599999993, + "axes": { + "#": 1929 + }, + "bounds": { + "#": 1936 + }, + "circleRadius": 10.288365912208505, + "collisionFilter": { + "#": 1939 + }, + "constraintImpulse": { + "#": 1940 + }, + "density": 0.001, + "force": { + "#": 1941 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 64.22805737291344, + "inverseInertia": 0.015569519628998225, + "inverseMass": 3.148990624434639, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.3175620759999999, + "motion": 0, + "parent": null, + "position": { + "#": 1942 + }, + "positionImpulse": { + "#": 1943 + }, + "positionPrev": { + "#": 1944 + }, + "render": { + "#": 1945 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1947 + }, + "vertices": { + "#": 1948 + } + }, + [ + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + } + ], + { + "x": -0.8660042176110888, + "y": -0.5000366937333759 + }, + { + "x": -0.5000366937333759, + "y": -0.8660042176110888 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000366937333759, + "y": -0.8660042176110888 + }, + { + "x": 0.8660042176110888, + "y": -0.5000366937333759 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1937 + }, + "min": { + "#": 1938 + } + }, + { + "x": 180.49599999999995, + "y": 118.09199999999998 + }, + { + "x": 160.61999999999998, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170.55799999999996, + "y": 108.15399999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170.55799999999996, + "y": 108.15399999999998 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1946 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.49599999999995, + "y": 110.81699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 177.83299999999997, + "y": 115.42899999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 173.22099999999998, + "y": 118.09199999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 167.89499999999995, + "y": 118.09199999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 163.28299999999996, + "y": 115.42899999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 160.61999999999998, + "y": 110.81699999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 160.61999999999998, + "y": 105.49099999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 163.28299999999996, + "y": 100.87899999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 167.89499999999995, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 173.22099999999998, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 177.83299999999997, + "y": 100.87899999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 180.49599999999995, + "y": 105.49099999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1084.703512, + "axes": { + "#": 1962 + }, + "bounds": { + "#": 1973 + }, + "circleRadius": 18.735468106995885, + "collisionFilter": { + "#": 1976 + }, + "constraintImpulse": { + "#": 1977 + }, + "density": 0.001, + "force": { + "#": 1978 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 749.0761960708147, + "inverseInertia": 0.0013349776768309747, + "inverseMass": 0.9219109083146398, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0847035120000001, + "motion": 0, + "parent": null, + "position": { + "#": 1979 + }, + "positionImpulse": { + "#": 1980 + }, + "positionPrev": { + "#": 1981 + }, + "render": { + "#": 1982 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1984 + }, + "vertices": { + "#": 1985 + } + }, + [ + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + } + ], + { + "x": -0.9510278004650076, + "y": -0.309105358644411 + }, + { + "x": -0.8090384664562262, + "y": -0.5877556973727756 + }, + { + "x": -0.5877556973727756, + "y": -0.8090384664562262 + }, + { + "x": -0.309105358644411, + "y": -0.9510278004650076 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.309105358644411, + "y": -0.9510278004650076 + }, + { + "x": 0.5877556973727756, + "y": -0.8090384664562262 + }, + { + "x": 0.8090384664562262, + "y": -0.5877556973727756 + }, + { + "x": 0.9510278004650076, + "y": -0.309105358644411 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1974 + }, + "min": { + "#": 1975 + } + }, + { + "x": 217.50599999999994, + "y": 135.22599999999997 + }, + { + "x": 180.49599999999995, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 199.00099999999995, + "y": 116.72099999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 199.00099999999995, + "y": 116.72099999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1983 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 217.50599999999994, + "y": 119.65199999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 215.69399999999996, + "y": 125.22699999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 212.24899999999994, + "y": 129.969 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 207.50699999999995, + "y": 133.414 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 201.93199999999996, + "y": 135.22599999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 196.06999999999994, + "y": 135.22599999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 190.49499999999995, + "y": 133.414 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 185.75299999999996, + "y": 129.969 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 182.30799999999994, + "y": 125.22699999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 180.49599999999995, + "y": 119.65199999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 180.49599999999995, + "y": 113.78999999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 182.30799999999994, + "y": 108.21499999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 185.75299999999996, + "y": 103.47299999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 190.49499999999995, + "y": 100.02799999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 196.06999999999994, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 201.93199999999996, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 207.50699999999995, + "y": 100.02799999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 212.24899999999994, + "y": 103.47299999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 215.69399999999996, + "y": 108.21499999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 217.50599999999994, + "y": 113.78999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 445.4528199999999, + "axes": { + "#": 2007 + }, + "bounds": { + "#": 2015 + }, + "circleRadius": 12.110553840877916, + "collisionFilter": { + "#": 2018 + }, + "constraintImpulse": { + "#": 2019 + }, + "density": 0.001, + "force": { + "#": 2020 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 126.35249452584083, + "inverseInertia": 0.00791436689677295, + "inverseMass": 2.2449066547608796, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4454528199999999, + "motion": 0, + "parent": null, + "position": { + "#": 2021 + }, + "positionImpulse": { + "#": 2022 + }, + "positionPrev": { + "#": 2023 + }, + "render": { + "#": 2024 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2026 + }, + "vertices": { + "#": 2027 + } + }, + [ + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + } + ], + { + "x": -0.9009345127462495, + "y": -0.43395507111068327 + }, + { + "x": -0.6235175483747363, + "y": -0.7818093545543942 + }, + { + "x": -0.22262330164139782, + "y": -0.974904541771287 + }, + { + "x": 0.22262330164139782, + "y": -0.974904541771287 + }, + { + "x": 0.6235175483747363, + "y": -0.7818093545543942 + }, + { + "x": 0.9009345127462495, + "y": -0.43395507111068327 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2016 + }, + "min": { + "#": 2017 + } + }, + { + "x": 241.11999999999992, + "y": 122.43799999999999 + }, + { + "x": 217.50599999999994, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 229.31299999999993, + "y": 110.32699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 229.31299999999993, + "y": 110.32699999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2025 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 241.11999999999992, + "y": 113.02199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 238.78099999999992, + "y": 117.87799999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 234.56799999999993, + "y": 121.23799999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 229.31299999999993, + "y": 122.43799999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 224.05799999999994, + "y": 121.23799999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 219.84499999999994, + "y": 117.87799999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 217.50599999999994, + "y": 113.02199999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 217.50599999999994, + "y": 107.63199999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 219.84499999999994, + "y": 102.77599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 224.05799999999994, + "y": 99.41599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 229.31299999999993, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 234.56799999999993, + "y": 99.41599999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 238.78099999999992, + "y": 102.77599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 241.11999999999992, + "y": 107.63199999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 911.0345159999998, + "axes": { + "#": 2043 + }, + "bounds": { + "#": 2053 + }, + "circleRadius": 17.203746570644718, + "collisionFilter": { + "#": 2056 + }, + "constraintImpulse": { + "#": 2057 + }, + "density": 0.001, + "force": { + "#": 2058 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 528.4283772509327, + "inverseInertia": 0.0018924040476447272, + "inverseMass": 1.0976532529092455, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9110345159999998, + "motion": 0, + "parent": null, + "position": { + "#": 2059 + }, + "positionImpulse": { + "#": 2060 + }, + "positionPrev": { + "#": 2061 + }, + "render": { + "#": 2062 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2064 + }, + "vertices": { + "#": 2065 + } + }, + [ + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + } + ], + { + "x": -0.9397298835134565, + "y": -0.34191774746535936 + }, + { + "x": -0.7660081005673731, + "y": -0.6428309185665895 + }, + { + "x": -0.49997360015891584, + "y": -0.866040645203291 + }, + { + "x": -0.17372804656081567, + "y": -0.9847936666318297 + }, + { + "x": 0.17372804656081567, + "y": -0.9847936666318297 + }, + { + "x": 0.49997360015891584, + "y": -0.866040645203291 + }, + { + "x": 0.7660081005673731, + "y": -0.6428309185665895 + }, + { + "x": 0.9397298835134565, + "y": -0.34191774746535936 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2054 + }, + "min": { + "#": 2055 + } + }, + { + "x": 275.0039999999999, + "y": 132.624 + }, + { + "x": 241.1199999999999, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 258.0619999999999, + "y": 115.41999999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 258.0619999999999, + "y": 115.41999999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2063 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + }, + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.0039999999999, + "y": 118.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.9609999999999, + "y": 124.02199999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 269.1199999999999, + "y": 128.599 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.9459999999999, + "y": 131.58599999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 258.0619999999999, + "y": 132.624 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 252.1779999999999, + "y": 131.58599999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 247.0039999999999, + "y": 128.599 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 243.1629999999999, + "y": 124.02199999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 241.1199999999999, + "y": 118.40699999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 241.1199999999999, + "y": 112.43299999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 243.1629999999999, + "y": 106.81799999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 247.0039999999999, + "y": 102.24099999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 252.1779999999999, + "y": 99.25399999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 258.0619999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 263.9459999999999, + "y": 99.25399999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 269.1199999999999, + "y": 102.24099999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 272.9609999999999, + "y": 106.81799999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 275.0039999999999, + "y": 112.43299999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 677.77246, + "axes": { + "#": 2085 + }, + "bounds": { + "#": 2094 + }, + "circleRadius": 14.879243827160494, + "collisionFilter": { + "#": 2097 + }, + "constraintImpulse": { + "#": 2098 + }, + "density": 0.001, + "force": { + "#": 2099 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 292.48689019105535, + "inverseInertia": 0.0034189566559608537, + "inverseMass": 1.4754214120768494, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.67777246, + "motion": 0, + "parent": null, + "position": { + "#": 2100 + }, + "positionImpulse": { + "#": 2101 + }, + "positionPrev": { + "#": 2102 + }, + "render": { + "#": 2103 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2105 + }, + "vertices": { + "#": 2106 + } + }, + [ + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + } + ], + { + "x": -0.923905558521943, + "y": -0.3826205939730068 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3826205939730068, + "y": -0.923905558521943 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826205939730068, + "y": -0.923905558521943 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.923905558521943, + "y": -0.3826205939730068 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2095 + }, + "min": { + "#": 2096 + } + }, + { + "x": 304.18999999999994, + "y": 127.40199999999999 + }, + { + "x": 275.0039999999999, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 289.5969999999999, + "y": 112.80899999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 289.5969999999999, + "y": 112.80899999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2104 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.18999999999994, + "y": 115.71199999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 301.96899999999994, + "y": 121.07499999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 297.86299999999994, + "y": 125.18099999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 292.49999999999994, + "y": 127.40199999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 286.6939999999999, + "y": 127.40199999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 281.3309999999999, + "y": 125.18099999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 277.2249999999999, + "y": 121.07499999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 275.0039999999999, + "y": 115.71199999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 275.0039999999999, + "y": 109.90599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 277.2249999999999, + "y": 104.54299999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 281.3309999999999, + "y": 100.43699999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 286.6939999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 292.49999999999994, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 297.86299999999994, + "y": 100.43699999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 301.96899999999994, + "y": 104.54299999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 304.18999999999994, + "y": 109.90599999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 645.4580440000001, + "axes": { + "#": 2124 + }, + "bounds": { + "#": 2133 + }, + "circleRadius": 14.519761659807955, + "collisionFilter": { + "#": 2136 + }, + "constraintImpulse": { + "#": 2137 + }, + "density": 0.001, + "force": { + "#": 2138 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 265.26173364337563, + "inverseInertia": 0.003769861510987576, + "inverseMass": 1.5492873770738844, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6454580440000001, + "motion": 0, + "parent": null, + "position": { + "#": 2139 + }, + "positionImpulse": { + "#": 2140 + }, + "positionPrev": { + "#": 2141 + }, + "render": { + "#": 2142 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2144 + }, + "vertices": { + "#": 2145 + } + }, + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + } + ], + { + "x": -0.9238791446772537, + "y": -0.38268436867793 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.38268436867793, + "y": -0.9238791446772537 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38268436867793, + "y": -0.9238791446772537 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238791446772537, + "y": -0.38268436867793 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2134 + }, + "min": { + "#": 2135 + } + }, + { + "x": 332.6719999999999, + "y": 126.69799999999998 + }, + { + "x": 304.18999999999994, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 318.4309999999999, + "y": 112.45699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 318.4309999999999, + "y": 112.45699999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2143 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 332.6719999999999, + "y": 115.28999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330.5039999999999, + "y": 120.52399999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 326.49799999999993, + "y": 124.52999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 321.26399999999995, + "y": 126.69799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 315.5979999999999, + "y": 126.69799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 310.3639999999999, + "y": 124.52999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 306.35799999999995, + "y": 120.52399999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 304.18999999999994, + "y": 115.28999999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 304.18999999999994, + "y": 109.62399999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 306.35799999999995, + "y": 104.38999999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 310.3639999999999, + "y": 100.38399999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 315.5979999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 321.26399999999995, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 326.49799999999993, + "y": 100.38399999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 330.5039999999999, + "y": 104.38999999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 332.6719999999999, + "y": 109.62399999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 701.518604, + "axes": { + "#": 2163 + }, + "bounds": { + "#": 2172 + }, + "circleRadius": 15.13764574759945, + "collisionFilter": { + "#": 2175 + }, + "constraintImpulse": { + "#": 2176 + }, + "density": 0.001, + "force": { + "#": 2177 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 313.3408048982135, + "inverseInertia": 0.0031914132611130645, + "inverseMass": 1.4254789456731214, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.701518604, + "motion": 0, + "parent": null, + "position": { + "#": 2178 + }, + "positionImpulse": { + "#": 2179 + }, + "positionPrev": { + "#": 2180 + }, + "render": { + "#": 2181 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2183 + }, + "vertices": { + "#": 2184 + } + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + } + ], + { + "x": -0.9238414250006175, + "y": -0.38277541908125257 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.38277541908125257, + "y": -0.9238414250006175 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38277541908125257, + "y": -0.9238414250006175 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238414250006175, + "y": -0.38277541908125257 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2173 + }, + "min": { + "#": 2174 + } + }, + { + "x": 362.3659999999999, + "y": 127.90999999999997 + }, + { + "x": 332.6719999999999, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 347.5189999999999, + "y": 113.06299999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 347.5189999999999, + "y": 113.06299999999997 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2182 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 362.3659999999999, + "y": 116.01599999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 360.1049999999999, + "y": 121.47299999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 355.9289999999999, + "y": 125.64899999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350.47199999999987, + "y": 127.90999999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 344.5659999999999, + "y": 127.90999999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 339.10899999999987, + "y": 125.64899999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 334.9329999999999, + "y": 121.47299999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 332.6719999999999, + "y": 116.01599999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 332.6719999999999, + "y": 110.10999999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 334.9329999999999, + "y": 104.65299999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 339.10899999999987, + "y": 100.47699999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 344.5659999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 350.47199999999987, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 355.9289999999999, + "y": 100.47699999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 360.1049999999999, + "y": 104.65299999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 362.3659999999999, + "y": 110.10999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 525.421234, + "axes": { + "#": 2202 + }, + "bounds": { + "#": 2210 + }, + "circleRadius": 13.152649176954732, + "collisionFilter": { + "#": 2213 + }, + "constraintImpulse": { + "#": 2214 + }, + "density": 0.001, + "force": { + "#": 2215 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 175.79059459614115, + "inverseInertia": 0.00568858648153154, + "inverseMass": 1.903234843379017, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5254212340000001, + "motion": 0, + "parent": null, + "position": { + "#": 2216 + }, + "positionImpulse": { + "#": 2217 + }, + "positionPrev": { + "#": 2218 + }, + "render": { + "#": 2219 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2221 + }, + "vertices": { + "#": 2222 + } + }, + [ + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + } + ], + { + "x": -0.9009571503073934, + "y": -0.43390807011391347 + }, + { + "x": -0.6234649211973956, + "y": -0.7818513234856901 + }, + { + "x": -0.22258823397227795, + "y": -0.9749125489484186 + }, + { + "x": 0.22258823397227795, + "y": -0.9749125489484186 + }, + { + "x": 0.6234649211973956, + "y": -0.7818513234856901 + }, + { + "x": 0.9009571503073934, + "y": -0.43390807011391347 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2211 + }, + "min": { + "#": 2212 + } + }, + { + "x": 388.01199999999983, + "y": 124.52199999999999 + }, + { + "x": 362.3659999999999, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375.18899999999985, + "y": 111.36899999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375.18899999999985, + "y": 111.36899999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2220 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 388.01199999999983, + "y": 114.29599999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 385.47199999999987, + "y": 119.56999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380.89599999999984, + "y": 123.21899999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375.18899999999985, + "y": 124.52199999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 369.48199999999986, + "y": 123.21899999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 364.90599999999984, + "y": 119.56999999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.3659999999999, + "y": 114.29599999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 362.3659999999999, + "y": 108.44199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 364.90599999999984, + "y": 103.16799999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.48199999999986, + "y": 99.51899999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 375.18899999999985, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 380.89599999999984, + "y": 99.51899999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.47199999999987, + "y": 103.16799999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 388.01199999999983, + "y": 108.44199999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 872.5480859999998, + "axes": { + "#": 2238 + }, + "bounds": { + "#": 2248 + }, + "circleRadius": 16.836376886145406, + "collisionFilter": { + "#": 2251 + }, + "constraintImpulse": { + "#": 2252 + }, + "density": 0.001, + "force": { + "#": 2253 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 484.72476647781866, + "inverseInertia": 0.002063026420676528, + "inverseMass": 1.14606864199803, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8725480859999998, + "motion": 0, + "parent": null, + "position": { + "#": 2254 + }, + "positionImpulse": { + "#": 2255 + }, + "positionPrev": { + "#": 2256 + }, + "render": { + "#": 2257 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2259 + }, + "vertices": { + "#": 2260 + } + }, + [ + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + } + ], + { + "x": -0.9396735154300404, + "y": -0.3420726302985222 + }, + { + "x": -0.7659877878867642, + "y": -0.6428551227207739 + }, + { + "x": -0.5000382510050222, + "y": -0.8660033184300384 + }, + { + "x": -0.17359994787229877, + "y": -0.984816256008569 + }, + { + "x": 0.17359994787229877, + "y": -0.984816256008569 + }, + { + "x": 0.5000382510050222, + "y": -0.8660033184300384 + }, + { + "x": 0.7659877878867642, + "y": -0.6428551227207739 + }, + { + "x": 0.9396735154300404, + "y": -0.3420726302985222 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2249 + }, + "min": { + "#": 2250 + } + }, + { + "x": 421.17399999999986, + "y": 131.88799999999998 + }, + { + "x": 388.01199999999983, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 404.59299999999985, + "y": 115.05199999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 404.59299999999985, + "y": 115.05199999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2258 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 421.17399999999986, + "y": 117.97599999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 419.17399999999986, + "y": 123.46999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 415.41499999999985, + "y": 127.94899999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 410.35099999999983, + "y": 130.873 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 404.59299999999985, + "y": 131.88799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 398.83499999999987, + "y": 130.873 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 393.77099999999984, + "y": 127.94899999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 390.01199999999983, + "y": 123.46999999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 388.01199999999983, + "y": 117.97599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 388.01199999999983, + "y": 112.12799999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 390.01199999999983, + "y": 106.63399999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 393.77099999999984, + "y": 102.15499999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 398.83499999999987, + "y": 99.23099999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 404.59299999999985, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 410.35099999999983, + "y": 99.23099999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 415.41499999999985, + "y": 102.15499999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 419.17399999999986, + "y": 106.63399999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 421.17399999999986, + "y": 112.12799999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 934.4759899999998, + "axes": { + "#": 2280 + }, + "bounds": { + "#": 2290 + }, + "circleRadius": 17.423396776406037, + "collisionFilter": { + "#": 2293 + }, + "constraintImpulse": { + "#": 2294 + }, + "density": 0.001, + "force": { + "#": 2295 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 555.971799948351, + "inverseInertia": 0.00179865237785963, + "inverseMass": 1.0701184521605527, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9344759899999998, + "motion": 0, + "parent": null, + "position": { + "#": 2296 + }, + "positionImpulse": { + "#": 2297 + }, + "positionPrev": { + "#": 2298 + }, + "render": { + "#": 2299 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2301 + }, + "vertices": { + "#": 2302 + } + }, + [ + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + } + ], + { + "x": -0.9396679073788373, + "y": -0.3420880352223341 + }, + { + "x": -0.7660628997995242, + "y": -0.6427656132298492 + }, + { + "x": -0.5000132900139428, + "y": -0.8660177306553445 + }, + { + "x": -0.17353077193722832, + "y": -0.9848284475942345 + }, + { + "x": 0.17353077193722832, + "y": -0.9848284475942345 + }, + { + "x": 0.5000132900139428, + "y": -0.8660177306553445 + }, + { + "x": 0.7660628997995242, + "y": -0.6427656132298492 + }, + { + "x": 0.9396679073788373, + "y": -0.3420880352223341 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2291 + }, + "min": { + "#": 2292 + } + }, + { + "x": 455.49199999999985, + "y": 133.06199999999998 + }, + { + "x": 421.17399999999986, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.33299999999986, + "y": 115.63899999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.33299999999986, + "y": 115.63899999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2300 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 455.49199999999985, + "y": 118.66499999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.42199999999985, + "y": 124.35099999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.53299999999984, + "y": 128.986 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 444.29199999999986, + "y": 132.012 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 438.33299999999986, + "y": 133.06199999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 432.37399999999985, + "y": 132.012 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 427.13299999999987, + "y": 128.986 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 423.24399999999986, + "y": 124.35099999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 421.17399999999986, + "y": 118.66499999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 421.17399999999986, + "y": 112.61299999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.24399999999986, + "y": 106.92699999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 427.13299999999987, + "y": 102.29199999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 432.37399999999985, + "y": 99.26599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 438.33299999999986, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 444.29199999999986, + "y": 99.26599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 449.53299999999984, + "y": 102.29199999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 453.42199999999985, + "y": 106.92699999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 455.49199999999985, + "y": 112.61299999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 877.9976040000001, + "axes": { + "#": 2322 + }, + "bounds": { + "#": 2332 + }, + "circleRadius": 16.889017489711932, + "collisionFilter": { + "#": 2335 + }, + "constraintImpulse": { + "#": 2336 + }, + "density": 0.001, + "force": { + "#": 2337 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 490.79839163286067, + "inverseInertia": 0.002037496489491443, + "inverseMass": 1.1389552721376217, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8779976040000002, + "motion": 0, + "parent": null, + "position": { + "#": 2338 + }, + "positionImpulse": { + "#": 2339 + }, + "positionPrev": { + "#": 2340 + }, + "render": { + "#": 2341 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2343 + }, + "vertices": { + "#": 2344 + } + }, + [ + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + } + ], + { + "x": -0.9397037941413872, + "y": -0.3419894432234442 + }, + { + "x": -0.7660507096677773, + "y": -0.6427801414305631 + }, + { + "x": -0.4998798798502105, + "y": -0.8660947440788099 + }, + { + "x": -0.17373670193003282, + "y": -0.9847921396936893 + }, + { + "x": 0.17373670193003282, + "y": -0.9847921396936893 + }, + { + "x": 0.4998798798502105, + "y": -0.8660947440788099 + }, + { + "x": 0.7660507096677773, + "y": -0.6427801414305631 + }, + { + "x": 0.9397037941413872, + "y": -0.3419894432234442 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2333 + }, + "min": { + "#": 2334 + } + }, + { + "x": 488.75599999999986, + "y": 131.99399999999997 + }, + { + "x": 455.49199999999985, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 472.12399999999985, + "y": 115.10499999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 472.12399999999985, + "y": 115.10499999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2342 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 488.75599999999986, + "y": 118.03799999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 486.74999999999983, + "y": 123.54999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 482.97999999999985, + "y": 128.04299999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 477.89999999999986, + "y": 130.97499999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 472.12399999999985, + "y": 131.99399999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 466.34799999999984, + "y": 130.97499999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 461.26799999999986, + "y": 128.04299999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 457.4979999999999, + "y": 123.54999999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.49199999999985, + "y": 118.03799999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 455.49199999999985, + "y": 112.17199999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.4979999999999, + "y": 106.65999999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 461.26799999999986, + "y": 102.16699999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 466.34799999999984, + "y": 99.23499999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 472.12399999999985, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 477.89999999999986, + "y": 99.23499999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 482.97999999999985, + "y": 102.16699999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 486.74999999999983, + "y": 106.65999999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 488.75599999999986, + "y": 112.17199999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 466.51646800000003, + "axes": { + "#": 2364 + }, + "bounds": { + "#": 2372 + }, + "circleRadius": 12.393732853223593, + "collisionFilter": { + "#": 2375 + }, + "constraintImpulse": { + "#": 2376 + }, + "density": 0.001, + "force": { + "#": 2377 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 138.58440234768833, + "inverseInertia": 0.007215819262914912, + "inverseMass": 2.1435470526626723, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.466516468, + "motion": 0, + "parent": null, + "position": { + "#": 2378 + }, + "positionImpulse": { + "#": 2379 + }, + "positionPrev": { + "#": 2380 + }, + "render": { + "#": 2381 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2383 + }, + "vertices": { + "#": 2384 + } + }, + [ + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + } + ], + { + "x": -0.9009649185072199, + "y": -0.43389194002571496 + }, + { + "x": -0.6234340924457695, + "y": -0.781875905995523 + }, + { + "x": -0.22264756782844594, + "y": -0.974899000173904 + }, + { + "x": 0.22264756782844594, + "y": -0.974899000173904 + }, + { + "x": 0.6234340924457695, + "y": -0.781875905995523 + }, + { + "x": 0.9009649185072199, + "y": -0.43389194002571496 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2373 + }, + "min": { + "#": 2374 + } + }, + { + "x": 512.9219999999999, + "y": 123.00399999999999 + }, + { + "x": 488.75599999999986, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500.8389999999999, + "y": 110.60999999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500.8389999999999, + "y": 110.60999999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2382 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.9219999999999, + "y": 113.36799999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.5289999999999, + "y": 118.33699999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.2159999999999, + "y": 121.77599999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500.8389999999999, + "y": 123.00399999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.4619999999999, + "y": 121.77599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 491.1489999999999, + "y": 118.33699999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 488.75599999999986, + "y": 113.36799999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 488.75599999999986, + "y": 107.85199999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 491.1489999999999, + "y": 102.88299999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 495.4619999999999, + "y": 99.44399999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 500.8389999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 506.2159999999999, + "y": 99.44399999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 510.5289999999999, + "y": 102.88299999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 512.9219999999999, + "y": 107.85199999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 931.3309979999999, + "axes": { + "#": 2400 + }, + "bounds": { + "#": 2410 + }, + "circleRadius": 17.394332990397807, + "collisionFilter": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "density": 0.001, + "force": { + "#": 2415 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 552.235835577075, + "inverseInertia": 0.0018108205508884092, + "inverseMass": 1.073732112586679, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.931330998, + "motion": 0, + "parent": null, + "position": { + "#": 2416 + }, + "positionImpulse": { + "#": 2417 + }, + "positionPrev": { + "#": 2418 + }, + "render": { + "#": 2419 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2421 + }, + "vertices": { + "#": 2422 + } + }, + [ + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + } + ], + { + "x": -0.9397063998567887, + "y": -0.34198228326653596 + }, + { + "x": -0.7660732221405516, + "y": -0.6427533106248406 + }, + { + "x": -0.4999135130815133, + "y": -0.8660753312723436 + }, + { + "x": -0.17365312127940863, + "y": -0.984806881307152 + }, + { + "x": 0.17365312127940863, + "y": -0.984806881307152 + }, + { + "x": 0.4999135130815133, + "y": -0.8660753312723436 + }, + { + "x": 0.7660732221405516, + "y": -0.6427533106248406 + }, + { + "x": 0.9397063998567887, + "y": -0.34198228326653596 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2411 + }, + "min": { + "#": 2412 + } + }, + { + "x": 547.1819999999999, + "y": 133.004 + }, + { + "x": 512.9219999999999, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.0519999999999, + "y": 115.60999999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.0519999999999, + "y": 115.60999999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2420 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 547.1819999999999, + "y": 118.62999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545.1159999999999, + "y": 124.30699999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 541.233, + "y": 128.935 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 536.0009999999999, + "y": 131.95499999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 530.0519999999999, + "y": 133.004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 524.1029999999998, + "y": 131.95499999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 518.8709999999999, + "y": 128.935 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 514.9879999999998, + "y": 124.30699999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 512.9219999999999, + "y": 118.62999999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 512.9219999999999, + "y": 112.58999999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 514.9879999999998, + "y": 106.91299999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.8709999999999, + "y": 102.28499999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 524.1029999999998, + "y": 99.26499999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 530.0519999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 536.0009999999999, + "y": 99.26499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 541.233, + "y": 102.28499999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.1159999999999, + "y": 106.91299999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 547.1819999999999, + "y": 112.58999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1165.6303160000004, + "axes": { + "#": 2442 + }, + "bounds": { + "#": 2453 + }, + "circleRadius": 19.42168209876543, + "collisionFilter": { + "#": 2456 + }, + "constraintImpulse": { + "#": 2457 + }, + "density": 0.001, + "force": { + "#": 2458 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 865.0188515831029, + "inverseInertia": 0.001156044169638457, + "inverseMass": 0.8579049345864813, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1656303160000006, + "motion": 0, + "parent": null, + "position": { + "#": 2459 + }, + "positionImpulse": { + "#": 2460 + }, + "positionPrev": { + "#": 2461 + }, + "render": { + "#": 2462 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2464 + }, + "vertices": { + "#": 2465 + } + }, + [ + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + } + ], + { + "x": -0.951042534033901, + "y": -0.30906002403801114 + }, + { + "x": -0.8089921923046451, + "y": -0.5878193878991439 + }, + { + "x": -0.5878193878991439, + "y": -0.8089921923046451 + }, + { + "x": -0.30906002403801114, + "y": -0.951042534033901 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906002403801114, + "y": -0.951042534033901 + }, + { + "x": 0.5878193878991439, + "y": -0.8089921923046451 + }, + { + "x": 0.8089921923046451, + "y": -0.5878193878991439 + }, + { + "x": 0.951042534033901, + "y": -0.30906002403801114 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2454 + }, + "min": { + "#": 2455 + } + }, + { + "x": 585.5479999999999, + "y": 136.58199999999997 + }, + { + "x": 547.1819999999999, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.3649999999999, + "y": 117.39899999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.3649999999999, + "y": 117.39899999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2463 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 585.5479999999999, + "y": 120.43699999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 583.6699999999998, + "y": 126.21599999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580.0979999999998, + "y": 131.13199999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575.1819999999999, + "y": 134.70399999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 569.4029999999999, + "y": 136.58199999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.3269999999999, + "y": 136.58199999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 557.5479999999999, + "y": 134.70399999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 552.632, + "y": 131.13199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 549.06, + "y": 126.21599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 547.1819999999999, + "y": 120.43699999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 547.1819999999999, + "y": 114.36099999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 549.06, + "y": 108.58199999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 552.632, + "y": 103.66599999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 557.5479999999999, + "y": 100.09399999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 563.3269999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 569.4029999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 575.1819999999999, + "y": 100.09399999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 580.0979999999998, + "y": 103.66599999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 583.6699999999998, + "y": 108.58199999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 585.5479999999999, + "y": 114.36099999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 645.906722, + "axes": { + "#": 2487 + }, + "bounds": { + "#": 2496 + }, + "circleRadius": 14.525162894375857, + "collisionFilter": { + "#": 2499 + }, + "constraintImpulse": { + "#": 2500 + }, + "density": 0.001, + "force": { + "#": 2501 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 265.6306452069542, + "inverseInertia": 0.003764625874476549, + "inverseMass": 1.5482111672465302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.645906722, + "motion": 0, + "parent": null, + "position": { + "#": 2502 + }, + "positionImpulse": { + "#": 2503 + }, + "positionPrev": { + "#": 2504 + }, + "render": { + "#": 2505 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2507 + }, + "vertices": { + "#": 2508 + } + }, + [ + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + } + ], + { + "x": -0.9238684412302941, + "y": -0.3827102079886379 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3827102079886379, + "y": -0.9238684412302941 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827102079886379, + "y": -0.9238684412302941 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238684412302941, + "y": -0.3827102079886379 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2497 + }, + "min": { + "#": 2498 + } + }, + { + "x": 614.0399999999998, + "y": 126.70799999999997 + }, + { + "x": 585.5479999999999, + "y": 98.21599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.7939999999999, + "y": 112.46199999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.7939999999999, + "y": 112.46199999999997 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2506 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + }, + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 614.0399999999998, + "y": 115.29599999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 611.8709999999999, + "y": 120.53199999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 607.8639999999999, + "y": 124.53899999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 602.6279999999998, + "y": 126.70799999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 596.9599999999999, + "y": 126.70799999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 591.7239999999998, + "y": 124.53899999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.7169999999999, + "y": 120.53199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 585.5479999999999, + "y": 115.29599999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 585.5479999999999, + "y": 109.62799999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 587.7169999999999, + "y": 104.39199999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 591.7239999999998, + "y": 100.38499999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 596.9599999999999, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 602.6279999999998, + "y": 98.21599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 607.8639999999999, + "y": 100.38499999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 611.8709999999999, + "y": 104.39199999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 614.0399999999998, + "y": 109.62799999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1044.3317600000003, + "axes": { + "#": 2526 + }, + "bounds": { + "#": 2537 + }, + "circleRadius": 18.383787722908096, + "collisionFilter": { + "#": 2540 + }, + "constraintImpulse": { + "#": 2541 + }, + "density": 0.001, + "force": { + "#": 2542 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 694.3538941887333, + "inverseInertia": 0.0014401877894965598, + "inverseMass": 0.9575501179816648, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0443317600000004, + "motion": 0, + "parent": null, + "position": { + "#": 2543 + }, + "positionImpulse": { + "#": 2544 + }, + "positionPrev": { + "#": 2545 + }, + "render": { + "#": 2546 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2548 + }, + "vertices": { + "#": 2549 + } + }, + [ + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + } + ], + { + "x": -0.9510723935535957, + "y": -0.30896812492591236 + }, + { + "x": -0.8089841194218436, + "y": -0.5878304981227706 + }, + { + "x": -0.5878304981227706, + "y": -0.8089841194218436 + }, + { + "x": -0.30896812492591236, + "y": -0.9510723935535957 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30896812492591236, + "y": -0.9510723935535957 + }, + { + "x": 0.5878304981227706, + "y": -0.8089841194218436 + }, + { + "x": 0.8089841194218436, + "y": -0.5878304981227706 + }, + { + "x": 0.9510723935535957, + "y": -0.30896812492591236 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2538 + }, + "min": { + "#": 2539 + } + }, + { + "x": 56.31399999999999, + "y": 173.056 + }, + { + "x": 19.999999999999996, + "y": 136.74200000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.157, + "y": 154.899 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.157, + "y": 154.899 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2547 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.31399999999999, + "y": 157.775 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 54.53699999999999, + "y": 163.245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 51.156, + "y": 167.898 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 46.503, + "y": 171.279 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 41.033, + "y": 173.056 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 35.28099999999999, + "y": 173.056 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 29.810999999999996, + "y": 171.279 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 25.157999999999994, + "y": 167.898 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 21.776999999999997, + "y": 163.245 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 19.999999999999996, + "y": 157.775 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 19.999999999999996, + "y": 152.023 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 21.776999999999997, + "y": 146.553 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 25.157999999999994, + "y": 141.9 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 29.810999999999996, + "y": 138.519 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 35.28099999999999, + "y": 136.74200000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 41.033, + "y": 136.74200000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 46.503, + "y": 138.519 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 51.156, + "y": 141.9 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 54.53699999999999, + "y": 146.553 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 56.31399999999999, + "y": 152.023 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 607.250026, + "axes": { + "#": 2571 + }, + "bounds": { + "#": 2580 + }, + "circleRadius": 14.08397633744856, + "collisionFilter": { + "#": 2583 + }, + "constraintImpulse": { + "#": 2584 + }, + "density": 0.001, + "force": { + "#": 2585 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 234.78678707670187, + "inverseInertia": 0.004259183459388252, + "inverseMass": 1.6467681468654227, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6072500260000001, + "motion": 0, + "parent": null, + "position": { + "#": 2586 + }, + "positionImpulse": { + "#": 2587 + }, + "positionPrev": { + "#": 2588 + }, + "render": { + "#": 2589 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2591 + }, + "vertices": { + "#": 2592 + } + }, + [ + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + } + ], + { + "x": -0.923877104160839, + "y": -0.3826892948690653 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826892948690653, + "y": -0.923877104160839 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826892948690653, + "y": -0.923877104160839 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923877104160839, + "y": -0.3826892948690653 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2581 + }, + "min": { + "#": 2582 + } + }, + { + "x": 83.94, + "y": 164.36799999999997 + }, + { + "x": 56.31399999999999, + "y": 136.74199999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 70.127, + "y": 150.55499999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 70.127, + "y": 150.55499999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2590 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 83.94, + "y": 153.30299999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 81.837, + "y": 158.37999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 77.952, + "y": 162.265 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 72.875, + "y": 164.36799999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 67.37899999999999, + "y": 164.36799999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 62.30199999999999, + "y": 162.265 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 58.416999999999994, + "y": 158.37999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 56.31399999999999, + "y": 153.30299999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 56.31399999999999, + "y": 147.807 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 58.416999999999994, + "y": 142.73 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 62.30199999999999, + "y": 138.84499999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 67.37899999999999, + "y": 136.74199999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 72.875, + "y": 136.74199999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 77.952, + "y": 138.84499999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 81.837, + "y": 142.73 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 83.94, + "y": 147.807 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 844.5415139999999, + "axes": { + "#": 2610 + }, + "bounds": { + "#": 2620 + }, + "circleRadius": 16.56400034293553, + "collisionFilter": { + "#": 2623 + }, + "constraintImpulse": { + "#": 2624 + }, + "density": 0.001, + "force": { + "#": 2625 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 454.10729029624963, + "inverseInertia": 0.002202122761225925, + "inverseMass": 1.1840744160268717, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8445415139999999, + "motion": 0, + "parent": null, + "position": { + "#": 2626 + }, + "positionImpulse": { + "#": 2627 + }, + "positionPrev": { + "#": 2628 + }, + "render": { + "#": 2629 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2631 + }, + "vertices": { + "#": 2632 + } + }, + [ + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + } + ], + { + "x": -0.9397274265311816, + "y": -0.3419245001825443 + }, + { + "x": -0.7660369174432036, + "y": -0.6427965783310567 + }, + { + "x": -0.499953188487916, + "y": -0.866052428736717 + }, + { + "x": -0.17366632796128756, + "y": -0.9848045524531466 + }, + { + "x": 0.17366632796128756, + "y": -0.9848045524531466 + }, + { + "x": 0.499953188487916, + "y": -0.866052428736717 + }, + { + "x": 0.7660369174432036, + "y": -0.6427965783310567 + }, + { + "x": 0.9397274265311816, + "y": -0.3419245001825443 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2621 + }, + "min": { + "#": 2622 + } + }, + { + "x": 116.564, + "y": 169.86999999999998 + }, + { + "x": 83.94, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100.252, + "y": 153.30599999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100.252, + "y": 153.30599999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2630 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 116.564, + "y": 156.182 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 114.597, + "y": 161.588 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 110.899, + "y": 165.99499999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 105.917, + "y": 168.87099999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100.252, + "y": 169.86999999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 94.58699999999999, + "y": 168.87099999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 89.60499999999999, + "y": 165.99499999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 85.907, + "y": 161.588 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 83.94, + "y": 156.182 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 83.94, + "y": 150.42999999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 85.907, + "y": 145.02399999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 89.60499999999999, + "y": 140.617 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 94.58699999999999, + "y": 137.74099999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100.252, + "y": 136.742 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 105.917, + "y": 137.74099999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 110.899, + "y": 140.617 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 114.597, + "y": 145.02399999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 116.564, + "y": 150.42999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 572.138606, + "axes": { + "#": 2652 + }, + "bounds": { + "#": 2660 + }, + "circleRadius": 13.725094307270233, + "collisionFilter": { + "#": 2663 + }, + "constraintImpulse": { + "#": 2664 + }, + "density": 0.001, + "force": { + "#": 2665 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 208.44088187722204, + "inverseInertia": 0.004797523360072091, + "inverseMass": 1.7478282176959057, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.572138606, + "motion": 0, + "parent": null, + "position": { + "#": 2666 + }, + "positionImpulse": { + "#": 2667 + }, + "positionPrev": { + "#": 2668 + }, + "render": { + "#": 2669 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2671 + }, + "vertices": { + "#": 2672 + } + }, + [ + { + "#": 2653 + }, + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + }, + { + "#": 2658 + }, + { + "#": 2659 + } + ], + { + "x": -0.900975596199869, + "y": -0.4338697673868169 + }, + { + "x": -0.6235165271626534, + "y": -0.7818101690020565 + }, + { + "x": -0.22249138498727297, + "y": -0.9749346560700592 + }, + { + "x": 0.22249138498727297, + "y": -0.9749346560700592 + }, + { + "x": 0.6235165271626534, + "y": -0.7818101690020565 + }, + { + "x": 0.900975596199869, + "y": -0.4338697673868169 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2661 + }, + "min": { + "#": 2662 + } + }, + { + "x": 143.326, + "y": 164.19199999999998 + }, + { + "x": 116.564, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.945, + "y": 150.46699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.945, + "y": 150.46699999999998 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2670 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2673 + }, + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 143.326, + "y": 153.521 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.676, + "y": 159.02399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 135.89999999999998, + "y": 162.833 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 129.945, + "y": 164.19199999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 123.99, + "y": 162.833 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 119.214, + "y": 159.02399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 116.564, + "y": 153.521 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 116.564, + "y": 147.41299999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 119.214, + "y": 141.91 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 123.99, + "y": 138.101 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 129.945, + "y": 136.742 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 135.89999999999998, + "y": 138.101 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 140.676, + "y": 141.91 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 143.326, + "y": 147.41299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 618.1187619999998, + "axes": { + "#": 2688 + }, + "bounds": { + "#": 2697 + }, + "circleRadius": 14.209233539094651, + "collisionFilter": { + "#": 2700 + }, + "constraintImpulse": { + "#": 2701 + }, + "density": 0.001, + "force": { + "#": 2702 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 243.26656400082345, + "inverseInertia": 0.004110716999302111, + "inverseMass": 1.6178120799381273, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6181187619999998, + "motion": 0, + "parent": null, + "position": { + "#": 2703 + }, + "positionImpulse": { + "#": 2704 + }, + "positionPrev": { + "#": 2705 + }, + "render": { + "#": 2706 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2708 + }, + "vertices": { + "#": 2709 + } + }, + [ + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + } + ], + { + "x": -0.9239179117527256, + "y": -0.3825907635352463 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3825907635352463, + "y": -0.9239179117527256 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3825907635352463, + "y": -0.9239179117527256 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9239179117527256, + "y": -0.3825907635352463 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2698 + }, + "min": { + "#": 2699 + } + }, + { + "x": 171.198, + "y": 164.614 + }, + { + "x": 143.326, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 157.262, + "y": 150.678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 157.262, + "y": 150.678 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2707 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 171.198, + "y": 153.45 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 169.077, + "y": 158.572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.156, + "y": 162.493 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160.034, + "y": 164.614 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 154.49, + "y": 164.614 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 149.368, + "y": 162.493 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 145.447, + "y": 158.572 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 143.326, + "y": 153.45 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 143.326, + "y": 147.906 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 145.447, + "y": 142.784 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 149.368, + "y": 138.863 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 154.49, + "y": 136.742 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 160.034, + "y": 136.742 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 165.156, + "y": 138.863 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 169.077, + "y": 142.784 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 171.198, + "y": 147.906 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 420.81690000000003, + "axes": { + "#": 2727 + }, + "bounds": { + "#": 2734 + }, + "circleRadius": 11.84357853223594, + "collisionFilter": { + "#": 2737 + }, + "constraintImpulse": { + "#": 2738 + }, + "density": 0.001, + "force": { + "#": 2739 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 112.78565541699, + "inverseInertia": 0.008866375748784808, + "inverseMass": 2.3763304182888088, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.42081690000000005, + "motion": 0, + "parent": null, + "position": { + "#": 2740 + }, + "positionImpulse": { + "#": 2741 + }, + "positionPrev": { + "#": 2742 + }, + "render": { + "#": 2743 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2745 + }, + "vertices": { + "#": 2746 + } + }, + [ + { + "#": 2728 + }, + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + } + ], + { + "x": -0.8660769509358482, + "y": -0.4999107070844396 + }, + { + "x": -0.4999107070844396, + "y": -0.8660769509358482 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4999107070844396, + "y": -0.8660769509358482 + }, + { + "x": 0.8660769509358482, + "y": -0.4999107070844396 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2735 + }, + "min": { + "#": 2736 + } + }, + { + "x": 194.078, + "y": 159.62199999999999 + }, + { + "x": 171.198, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 182.638, + "y": 148.182 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 182.638, + "y": 148.182 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2744 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 194.078, + "y": 151.24699999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 191.013, + "y": 156.557 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 185.703, + "y": 159.62199999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 179.573, + "y": 159.62199999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 174.263, + "y": 156.557 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 171.198, + "y": 151.24699999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 171.198, + "y": 145.117 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 174.263, + "y": 139.807 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 179.573, + "y": 136.742 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 185.703, + "y": 136.742 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 191.013, + "y": 139.807 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 194.078, + "y": 145.117 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 863.7712119999999, + "axes": { + "#": 2760 + }, + "bounds": { + "#": 2770 + }, + "circleRadius": 16.75158607681756, + "collisionFilter": { + "#": 2773 + }, + "constraintImpulse": { + "#": 2774 + }, + "density": 0.001, + "force": { + "#": 2775 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 475.0222152143297, + "inverseInertia": 0.0021051647017156887, + "inverseMass": 1.1577139711389226, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8637712119999998, + "motion": 0, + "parent": null, + "position": { + "#": 2776 + }, + "positionImpulse": { + "#": 2777 + }, + "positionPrev": { + "#": 2778 + }, + "render": { + "#": 2779 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2781 + }, + "vertices": { + "#": 2782 + } + }, + [ + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + }, + { + "#": 2766 + }, + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + } + ], + { + "x": -0.9396829680088987, + "y": -0.3420466629481816 + }, + { + "x": -0.7660468096589216, + "y": -0.6427847893435158 + }, + { + "x": -0.4999654532036348, + "y": -0.8660453484678986 + }, + { + "x": -0.17378533390904755, + "y": -0.9847835588179369 + }, + { + "x": 0.17378533390904755, + "y": -0.9847835588179369 + }, + { + "x": 0.4999654532036348, + "y": -0.8660453484678986 + }, + { + "x": 0.7660468096589216, + "y": -0.6427847893435158 + }, + { + "x": 0.9396829680088987, + "y": -0.3420466629481816 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2771 + }, + "min": { + "#": 2772 + } + }, + { + "x": 227.07199999999997, + "y": 170.246 + }, + { + "x": 194.078, + "y": 136.74200000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210.575, + "y": 153.494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210.575, + "y": 153.494 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2780 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + }, + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 227.07199999999997, + "y": 156.403 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225.082, + "y": 161.87 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 221.343, + "y": 166.326 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 216.304, + "y": 169.235 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 210.575, + "y": 170.246 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 204.84599999999998, + "y": 169.235 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 199.807, + "y": 166.326 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 196.06799999999998, + "y": 161.87 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 194.078, + "y": 156.403 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 194.078, + "y": 150.585 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 196.06799999999998, + "y": 145.118 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 199.807, + "y": 140.662 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 204.84599999999998, + "y": 137.753 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 210.575, + "y": 136.74200000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 216.304, + "y": 137.753 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 221.343, + "y": 140.662 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 225.082, + "y": 145.118 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 227.07199999999997, + "y": 150.585 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 523.6658279999999, + "axes": { + "#": 2802 + }, + "bounds": { + "#": 2810 + }, + "circleRadius": 13.130787037037038, + "collisionFilter": { + "#": 2813 + }, + "constraintImpulse": { + "#": 2814 + }, + "density": 0.001, + "force": { + "#": 2815 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 174.6179419646033, + "inverseInertia": 0.005726788374373977, + "inverseMass": 1.9096147705861, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5236658279999999, + "motion": 0, + "parent": null, + "position": { + "#": 2816 + }, + "positionImpulse": { + "#": 2817 + }, + "positionPrev": { + "#": 2818 + }, + "render": { + "#": 2819 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2821 + }, + "vertices": { + "#": 2822 + } + }, + [ + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + }, + { + "#": 2808 + }, + { + "#": 2809 + } + ], + { + "x": -0.9009347745088626, + "y": -0.43395452766466774 + }, + { + "x": -0.623421188186519, + "y": -0.7818861951205613 + }, + { + "x": -0.22263428901817583, + "y": -0.974902032695271 + }, + { + "x": 0.22263428901817583, + "y": -0.974902032695271 + }, + { + "x": 0.623421188186519, + "y": -0.7818861951205613 + }, + { + "x": 0.9009347745088626, + "y": -0.43395452766466774 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2811 + }, + "min": { + "#": 2812 + } + }, + { + "x": 252.67599999999996, + "y": 163.004 + }, + { + "x": 227.07199999999997, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 239.87399999999997, + "y": 149.873 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 239.87399999999997, + "y": 149.873 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2820 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.67599999999996, + "y": 152.795 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250.13999999999996, + "y": 158.06 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 245.57099999999997, + "y": 161.703 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 239.87399999999997, + "y": 163.004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 234.17699999999996, + "y": 161.703 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 229.60799999999998, + "y": 158.06 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 227.07199999999997, + "y": 152.795 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.07199999999997, + "y": 146.951 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 229.60799999999998, + "y": 141.68599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 234.17699999999996, + "y": 138.043 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 239.87399999999997, + "y": 136.742 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 245.57099999999997, + "y": 138.043 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 250.13999999999996, + "y": 141.68599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 252.67599999999996, + "y": 146.951 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 569.8258799999999, + "axes": { + "#": 2838 + }, + "bounds": { + "#": 2846 + }, + "circleRadius": 13.697230795610425, + "collisionFilter": { + "#": 2849 + }, + "constraintImpulse": { + "#": 2850 + }, + "density": 0.001, + "force": { + "#": 2851 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 206.75914841461585, + "inverseInertia": 0.004836545360472716, + "inverseMass": 1.7549220474156073, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5698258799999999, + "motion": 0, + "parent": null, + "position": { + "#": 2852 + }, + "positionImpulse": { + "#": 2853 + }, + "positionPrev": { + "#": 2854 + }, + "render": { + "#": 2855 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2857 + }, + "vertices": { + "#": 2858 + } + }, + [ + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + } + ], + { + "x": -0.9009565423044396, + "y": -0.4339093325555795 + }, + { + "x": -0.6235140499160456, + "y": -0.7818121446724212 + }, + { + "x": -0.22245061563058832, + "y": -0.9749439592128218 + }, + { + "x": 0.22245061563058832, + "y": -0.9749439592128218 + }, + { + "x": 0.6235140499160456, + "y": -0.7818121446724212 + }, + { + "x": 0.9009565423044396, + "y": -0.4339093325555795 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2847 + }, + "min": { + "#": 2848 + } + }, + { + "x": 279.384, + "y": 164.136 + }, + { + "x": 252.67599999999996, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 266.03, + "y": 150.439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 266.03, + "y": 150.439 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2856 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.384, + "y": 153.487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 276.7389999999999, + "y": 158.97899999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 271.97299999999996, + "y": 162.78 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 266.03, + "y": 164.136 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.087, + "y": 162.78 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 255.32099999999997, + "y": 158.97899999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.67599999999996, + "y": 153.487 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.67599999999996, + "y": 147.391 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 255.32099999999997, + "y": 141.899 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 260.087, + "y": 138.098 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 266.03, + "y": 136.742 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 271.97299999999996, + "y": 138.098 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 276.7389999999999, + "y": 141.899 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 279.384, + "y": 147.391 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 349.69686400000006, + "axes": { + "#": 2874 + }, + "bounds": { + "#": 2881 + }, + "circleRadius": 10.796596364883403, + "collisionFilter": { + "#": 2884 + }, + "constraintImpulse": { + "#": 2885 + }, + "density": 0.001, + "force": { + "#": 2886 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 77.88449319287959, + "inverseInertia": 0.012839526316535404, + "inverseMass": 2.859619581833024, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.34969686400000005, + "motion": 0, + "parent": null, + "position": { + "#": 2887 + }, + "positionImpulse": { + "#": 2888 + }, + "positionPrev": { + "#": 2889 + }, + "render": { + "#": 2890 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2892 + }, + "vertices": { + "#": 2893 + } + }, + [ + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + } + ], + { + "x": -0.8659770013124215, + "y": -0.5000838261711195 + }, + { + "x": -0.5000838261711195, + "y": -0.8659770013124215 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000838261711195, + "y": -0.8659770013124215 + }, + { + "x": 0.8659770013124215, + "y": -0.5000838261711195 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2882 + }, + "min": { + "#": 2883 + } + }, + { + "x": 300.24199999999996, + "y": 157.6 + }, + { + "x": 279.384, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 289.813, + "y": 147.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 289.813, + "y": 147.171 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2891 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300.24199999999996, + "y": 149.965 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 297.447, + "y": 154.80499999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 292.60699999999997, + "y": 157.6 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 287.019, + "y": 157.6 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 282.179, + "y": 154.80499999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 279.384, + "y": 149.965 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 279.384, + "y": 144.37699999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 282.179, + "y": 139.537 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 287.019, + "y": 136.742 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 292.60699999999997, + "y": 136.742 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 297.447, + "y": 139.537 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.24199999999996, + "y": 144.37699999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 615.732246, + "axes": { + "#": 2907 + }, + "bounds": { + "#": 2916 + }, + "circleRadius": 14.181970164609053, + "collisionFilter": { + "#": 2919 + }, + "constraintImpulse": { + "#": 2920 + }, + "density": 0.001, + "force": { + "#": 2921 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 241.39171788103542, + "inverseInertia": 0.0041426441999672416, + "inverseMass": 1.6240825561700398, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6157322460000001, + "motion": 0, + "parent": null, + "position": { + "#": 2922 + }, + "positionImpulse": { + "#": 2923 + }, + "positionPrev": { + "#": 2924 + }, + "render": { + "#": 2925 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2927 + }, + "vertices": { + "#": 2928 + } + }, + [ + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + } + ], + { + "x": -0.9239089060803667, + "y": -0.3826125105970534 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3826125105970534, + "y": -0.9239089060803667 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826125105970534, + "y": -0.9239089060803667 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9239089060803667, + "y": -0.3826125105970534 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2917 + }, + "min": { + "#": 2918 + } + }, + { + "x": 328.05999999999995, + "y": 164.55999999999997 + }, + { + "x": 300.24199999999996, + "y": 136.74199999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 314.15099999999995, + "y": 150.65099999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 314.15099999999995, + "y": 150.65099999999998 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2926 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 328.05999999999995, + "y": 153.41799999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325.9429999999999, + "y": 158.52999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 322.03, + "y": 162.44299999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 316.91799999999995, + "y": 164.55999999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 311.38399999999996, + "y": 164.55999999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 306.27199999999993, + "y": 162.44299999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 302.359, + "y": 158.52999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300.24199999999996, + "y": 153.41799999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 300.24199999999996, + "y": 147.884 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 302.359, + "y": 142.772 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 306.27199999999993, + "y": 138.85899999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 311.38399999999996, + "y": 136.74199999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 316.91799999999995, + "y": 136.74199999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 322.03, + "y": 138.85899999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 325.9429999999999, + "y": 142.772 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 328.05999999999995, + "y": 147.884 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 731.546114, + "axes": { + "#": 2946 + }, + "bounds": { + "#": 2955 + }, + "circleRadius": 15.458290466392318, + "collisionFilter": { + "#": 2958 + }, + "constraintImpulse": { + "#": 2959 + }, + "density": 0.001, + "force": { + "#": 2960 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 340.7391093603774, + "inverseInertia": 0.0029347966597587294, + "inverseMass": 1.366967824532795, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.731546114, + "motion": 0, + "parent": null, + "position": { + "#": 2961 + }, + "positionImpulse": { + "#": 2962 + }, + "positionPrev": { + "#": 2963 + }, + "render": { + "#": 2964 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2966 + }, + "vertices": { + "#": 2967 + } + }, + [ + { + "#": 2947 + }, + { + "#": 2948 + }, + { + "#": 2949 + }, + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + } + ], + { + "x": -0.9238794134821804, + "y": -0.38268371972664617 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.38268371972664617, + "y": -0.9238794134821804 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38268371972664617, + "y": -0.9238794134821804 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238794134821804, + "y": -0.38268371972664617 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2956 + }, + "min": { + "#": 2957 + } + }, + { + "x": 358.38199999999995, + "y": 167.064 + }, + { + "x": 328.05999999999995, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 343.22099999999995, + "y": 151.903 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 343.22099999999995, + "y": 151.903 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2965 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 358.38199999999995, + "y": 154.91899999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 356.07399999999996, + "y": 160.49099999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 351.80899999999997, + "y": 164.756 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 346.23699999999997, + "y": 167.064 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 340.2049999999999, + "y": 167.064 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 334.6329999999999, + "y": 164.756 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330.36799999999994, + "y": 160.49099999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.05999999999995, + "y": 154.91899999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 328.05999999999995, + "y": 148.887 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 330.36799999999994, + "y": 143.315 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 334.6329999999999, + "y": 139.05 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 340.2049999999999, + "y": 136.742 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 346.23699999999997, + "y": 136.742 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 351.80899999999997, + "y": 139.05 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 356.07399999999996, + "y": 143.315 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 358.38199999999995, + "y": 148.887 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1138.37292, + "axes": { + "#": 2985 + }, + "bounds": { + "#": 2996 + }, + "circleRadius": 19.193458504801097, + "collisionFilter": { + "#": 2999 + }, + "constraintImpulse": { + "#": 3000 + }, + "density": 0.001, + "force": { + "#": 3001 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 825.0362217611556, + "inverseInertia": 0.0012120679960758083, + "inverseMass": 0.8784467571487908, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1383729200000001, + "motion": 0, + "parent": null, + "position": { + "#": 3002 + }, + "positionImpulse": { + "#": 3003 + }, + "positionPrev": { + "#": 3004 + }, + "render": { + "#": 3005 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3007 + }, + "vertices": { + "#": 3008 + } + }, + [ + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + } + ], + { + "x": -0.9510377399849168, + "y": -0.30907477594326865 + }, + { + "x": -0.8090600428695182, + "y": -0.5877259965595987 + }, + { + "x": -0.5877259965595987, + "y": -0.8090600428695182 + }, + { + "x": -0.30907477594326865, + "y": -0.9510377399849168 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907477594326865, + "y": -0.9510377399849168 + }, + { + "x": 0.5877259965595987, + "y": -0.8090600428695182 + }, + { + "x": 0.8090600428695182, + "y": -0.5877259965595987 + }, + { + "x": 0.9510377399849168, + "y": -0.30907477594326865 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2997 + }, + "min": { + "#": 2998 + } + }, + { + "x": 396.29599999999994, + "y": 174.65599999999998 + }, + { + "x": 358.38199999999995, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.33899999999994, + "y": 155.69899999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.33899999999994, + "y": 155.69899999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3006 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.29599999999994, + "y": 158.70199999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.43999999999994, + "y": 164.41299999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.91099999999994, + "y": 169.271 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 386.05299999999994, + "y": 172.79999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 380.3419999999999, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.33599999999996, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 368.62499999999994, + "y": 172.79999999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 363.76699999999994, + "y": 169.271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 360.23799999999994, + "y": 164.41299999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 358.38199999999995, + "y": 158.70199999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.38199999999995, + "y": 152.69599999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 360.23799999999994, + "y": 146.98499999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 363.76699999999994, + "y": 142.12699999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 368.62499999999994, + "y": 138.59799999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 374.33599999999996, + "y": 136.742 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 380.3419999999999, + "y": 136.742 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 386.05299999999994, + "y": 138.59799999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 390.91099999999994, + "y": 142.12699999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 394.43999999999994, + "y": 146.98499999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 396.29599999999994, + "y": 152.69599999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 343.22203199999996, + "axes": { + "#": 3030 + }, + "bounds": { + "#": 3037 + }, + "circleRadius": 10.696116255144034, + "collisionFilter": { + "#": 3040 + }, + "constraintImpulse": { + "#": 3041 + }, + "density": 0.001, + "force": { + "#": 3042 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 75.02704455757933, + "inverseInertia": 0.013328527145069033, + "inverseMass": 2.913565875048488, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.34322203199999995, + "motion": 0, + "parent": null, + "position": { + "#": 3043 + }, + "positionImpulse": { + "#": 3044 + }, + "positionPrev": { + "#": 3045 + }, + "render": { + "#": 3046 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3048 + }, + "vertices": { + "#": 3049 + } + }, + [ + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + } + ], + { + "x": -0.8659780516638863, + "y": -0.5000820073112204 + }, + { + "x": -0.5000820073112204, + "y": -0.8659780516638863 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000820073112204, + "y": -0.8659780516638863 + }, + { + "x": 0.8659780516638863, + "y": -0.5000820073112204 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3038 + }, + "min": { + "#": 3039 + } + }, + { + "x": 416.9599999999999, + "y": 157.40599999999998 + }, + { + "x": 396.29599999999994, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 406.62799999999993, + "y": 147.07399999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 406.62799999999993, + "y": 147.07399999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3047 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 416.9599999999999, + "y": 149.84199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.1909999999999, + "y": 154.63699999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.3959999999999, + "y": 157.40599999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 403.85999999999996, + "y": 157.40599999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 399.06499999999994, + "y": 154.63699999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 396.29599999999994, + "y": 149.84199999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 396.29599999999994, + "y": 144.30599999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 399.06499999999994, + "y": 139.511 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 403.85999999999996, + "y": 136.742 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 409.3959999999999, + "y": 136.742 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 414.1909999999999, + "y": 139.511 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 416.9599999999999, + "y": 144.30599999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 328.23895999999996, + "axes": { + "#": 3063 + }, + "bounds": { + "#": 3070 + }, + "circleRadius": 10.460090877914952, + "collisionFilter": { + "#": 3073 + }, + "constraintImpulse": { + "#": 3074 + }, + "density": 0.001, + "force": { + "#": 3075 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 68.61953633030359, + "inverseInertia": 0.014573109255452408, + "inverseMass": 3.0465609566883836, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.32823895999999997, + "motion": 0, + "parent": null, + "position": { + "#": 3076 + }, + "positionImpulse": { + "#": 3077 + }, + "positionPrev": { + "#": 3078 + }, + "render": { + "#": 3079 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3081 + }, + "vertices": { + "#": 3082 + } + }, + [ + { + "#": 3064 + }, + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + } + ], + { + "x": -0.8659610549644546, + "y": -0.5001114388662279 + }, + { + "x": -0.5001114388662279, + "y": -0.8659610549644546 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5001114388662279, + "y": -0.8659610549644546 + }, + { + "x": 0.8659610549644546, + "y": -0.5001114388662279 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3071 + }, + "min": { + "#": 3072 + } + }, + { + "x": 437.1679999999999, + "y": 156.95000000000002 + }, + { + "x": 416.9599999999999, + "y": 136.74200000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 427.0639999999999, + "y": 146.846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 427.0639999999999, + "y": 146.846 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3080 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3083 + }, + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + }, + { + "#": 3087 + }, + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.1679999999999, + "y": 149.553 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.4599999999999, + "y": 154.242 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.7709999999999, + "y": 156.95000000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 424.3569999999999, + "y": 156.95000000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 419.6679999999999, + "y": 154.242 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 416.9599999999999, + "y": 149.553 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 416.9599999999999, + "y": 144.139 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 419.6679999999999, + "y": 139.45000000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 424.3569999999999, + "y": 136.74200000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 429.7709999999999, + "y": 136.74200000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 434.4599999999999, + "y": 139.45000000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 437.1679999999999, + "y": 144.139 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 714.3709199999998, + "axes": { + "#": 3096 + }, + "bounds": { + "#": 3105 + }, + "circleRadius": 15.275505829903977, + "collisionFilter": { + "#": 3108 + }, + "constraintImpulse": { + "#": 3109 + }, + "density": 0.001, + "force": { + "#": 3110 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 324.9272263186872, + "inverseInertia": 0.0030776122128319417, + "inverseMass": 1.3998330167191018, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7143709199999999, + "motion": 0, + "parent": null, + "position": { + "#": 3111 + }, + "positionImpulse": { + "#": 3112 + }, + "positionPrev": { + "#": 3113 + }, + "render": { + "#": 3114 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3116 + }, + "vertices": { + "#": 3117 + } + }, + [ + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + } + ], + { + "x": -0.9238839269066341, + "y": -0.3826728231839534 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3826728231839534, + "y": -0.9238839269066341 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826728231839534, + "y": -0.9238839269066341 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238839269066341, + "y": -0.3826728231839534 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3106 + }, + "min": { + "#": 3107 + } + }, + { + "x": 467.13199999999983, + "y": 166.706 + }, + { + "x": 437.1679999999999, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.14999999999986, + "y": 151.724 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.14999999999986, + "y": 151.724 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3115 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 467.13199999999983, + "y": 154.70399999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 464.8509999999999, + "y": 160.21099999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460.6369999999999, + "y": 164.42499999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 455.1299999999999, + "y": 166.706 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 449.16999999999985, + "y": 166.706 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 443.66299999999984, + "y": 164.42499999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 439.44899999999984, + "y": 160.21099999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 437.1679999999999, + "y": 154.70399999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 437.1679999999999, + "y": 148.744 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 439.44899999999984, + "y": 143.237 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 443.66299999999984, + "y": 139.023 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 449.16999999999985, + "y": 136.742 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 455.1299999999999, + "y": 136.742 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 460.6369999999999, + "y": 139.023 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 464.8509999999999, + "y": 143.237 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 467.13199999999983, + "y": 148.744 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 788.65954, + "axes": { + "#": 3135 + }, + "bounds": { + "#": 3145 + }, + "circleRadius": 16.00655864197531, + "collisionFilter": { + "#": 3148 + }, + "constraintImpulse": { + "#": 3149 + }, + "density": 0.001, + "force": { + "#": 3150 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 396.00036994809216, + "inverseInertia": 0.0025252501661326234, + "inverseMass": 1.2679742642813907, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.78865954, + "motion": 0, + "parent": null, + "position": { + "#": 3151 + }, + "positionImpulse": { + "#": 3152 + }, + "positionPrev": { + "#": 3153 + }, + "render": { + "#": 3154 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3156 + }, + "vertices": { + "#": 3157 + } + }, + [ + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + } + ], + { + "x": -0.9396935768098462, + "y": -0.3420175166600646 + }, + { + "x": -0.7661086842967768, + "y": -0.6427110422616539 + }, + { + "x": -0.499950859205193, + "y": -0.866053773376682 + }, + { + "x": -0.17375455068018675, + "y": -0.9847889906563367 + }, + { + "x": 0.17375455068018675, + "y": -0.9847889906563367 + }, + { + "x": 0.499950859205193, + "y": -0.866053773376682 + }, + { + "x": 0.7661086842967768, + "y": -0.6427110422616539 + }, + { + "x": 0.9396935768098462, + "y": -0.3420175166600646 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3146 + }, + "min": { + "#": 3147 + } + }, + { + "x": 498.6579999999998, + "y": 168.756 + }, + { + "x": 467.13199999999983, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 482.8949999999998, + "y": 152.749 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 482.8949999999998, + "y": 152.749 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3155 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.6579999999998, + "y": 155.529 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 496.75699999999983, + "y": 160.752 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 493.1839999999998, + "y": 165.011 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 488.36999999999983, + "y": 167.79 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 482.8949999999998, + "y": 168.756 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 477.4199999999998, + "y": 167.79 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 472.6059999999998, + "y": 165.011 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 469.0329999999998, + "y": 160.752 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 467.13199999999983, + "y": 155.529 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 467.13199999999983, + "y": 149.969 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 469.0329999999998, + "y": 144.74599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 472.6059999999998, + "y": 140.487 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 477.4199999999998, + "y": 137.708 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 482.8949999999998, + "y": 136.742 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 488.36999999999983, + "y": 137.708 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 493.1839999999998, + "y": 140.487 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 496.75699999999983, + "y": 144.74599999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 498.6579999999998, + "y": 149.969 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 439.96750399999996, + "axes": { + "#": 3177 + }, + "bounds": { + "#": 3185 + }, + "circleRadius": 12.03596536351166, + "collisionFilter": { + "#": 3188 + }, + "constraintImpulse": { + "#": 3189 + }, + "density": 0.001, + "force": { + "#": 3190 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 123.25983907729764, + "inverseInertia": 0.008112942605522052, + "inverseMass": 2.272895136364435, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.43996750399999995, + "motion": 0, + "parent": null, + "position": { + "#": 3191 + }, + "positionImpulse": { + "#": 3192 + }, + "positionPrev": { + "#": 3193 + }, + "render": { + "#": 3194 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3196 + }, + "vertices": { + "#": 3197 + } + }, + [ + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + } + ], + { + "x": -0.9009746413575853, + "y": -0.433871750210325 + }, + { + "x": -0.6235105065942435, + "y": -0.7818149705439197 + }, + { + "x": -0.22254091077125632, + "y": -0.9749233523888426 + }, + { + "x": 0.22254091077125632, + "y": -0.9749233523888426 + }, + { + "x": 0.6235105065942435, + "y": -0.7818149705439197 + }, + { + "x": 0.9009746413575853, + "y": -0.433871750210325 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3186 + }, + "min": { + "#": 3187 + } + }, + { + "x": 522.1259999999997, + "y": 160.814 + }, + { + "x": 498.6579999999998, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.39199999999977, + "y": 148.778 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.39199999999977, + "y": 148.778 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3195 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3198 + }, + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.1259999999997, + "y": 151.456 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 519.8019999999998, + "y": 156.28199999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 515.6139999999998, + "y": 159.62199999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510.39199999999977, + "y": 160.814 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 505.1699999999998, + "y": 159.62199999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 500.98199999999974, + "y": 156.28199999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 498.6579999999998, + "y": 151.456 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 498.6579999999998, + "y": 146.1 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 500.98199999999974, + "y": 141.274 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 505.1699999999998, + "y": 137.934 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 510.39199999999977, + "y": 136.742 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 515.6139999999998, + "y": 137.934 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 519.8019999999998, + "y": 141.274 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 522.1259999999997, + "y": 146.1 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 465.1898319999999, + "axes": { + "#": 3213 + }, + "bounds": { + "#": 3221 + }, + "circleRadius": 12.376071673525377, + "collisionFilter": { + "#": 3224 + }, + "constraintImpulse": { + "#": 3225 + }, + "density": 0.001, + "force": { + "#": 3226 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 137.79733623042054, + "inverseInertia": 0.007257034332854085, + "inverseMass": 2.1496600553384413, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4651898319999999, + "motion": 0, + "parent": null, + "position": { + "#": 3227 + }, + "positionImpulse": { + "#": 3228 + }, + "positionPrev": { + "#": 3229 + }, + "render": { + "#": 3230 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3232 + }, + "vertices": { + "#": 3233 + } + }, + [ + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + } + ], + { + "x": -0.9009385766022528, + "y": -0.4339466340345395 + }, + { + "x": -0.6234986347783991, + "y": -0.7818244383680217 + }, + { + "x": -0.22257831674696424, + "y": -0.9749148131575847 + }, + { + "x": 0.22257831674696424, + "y": -0.9749148131575847 + }, + { + "x": 0.6234986347783991, + "y": -0.7818244383680217 + }, + { + "x": 0.9009385766022528, + "y": -0.4339466340345395 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3222 + }, + "min": { + "#": 3223 + } + }, + { + "x": 546.2579999999998, + "y": 161.494 + }, + { + "x": 522.1259999999997, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 534.1919999999998, + "y": 149.118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 534.1919999999998, + "y": 149.118 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3231 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 546.2579999999998, + "y": 151.87199999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 543.8679999999998, + "y": 156.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 539.5619999999998, + "y": 160.268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 534.1919999999998, + "y": 161.494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 528.8219999999998, + "y": 160.268 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 524.5159999999997, + "y": 156.834 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 522.1259999999997, + "y": 151.87199999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1259999999997, + "y": 146.364 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 524.5159999999997, + "y": 141.402 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.8219999999998, + "y": 137.968 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 534.1919999999998, + "y": 136.742 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 539.5619999999998, + "y": 137.968 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 543.8679999999998, + "y": 141.402 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 546.2579999999998, + "y": 146.364 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 549.15125, + "axes": { + "#": 3249 + }, + "bounds": { + "#": 3257 + }, + "circleRadius": 13.446630658436213, + "collisionFilter": { + "#": 3260 + }, + "constraintImpulse": { + "#": 3261 + }, + "density": 0.001, + "force": { + "#": 3262 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 192.02790707024445, + "inverseInertia": 0.005207576415620656, + "inverseMass": 1.8209919398344263, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.54915125, + "motion": 0, + "parent": null, + "position": { + "#": 3263 + }, + "positionImpulse": { + "#": 3264 + }, + "positionPrev": { + "#": 3265 + }, + "render": { + "#": 3266 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3268 + }, + "vertices": { + "#": 3269 + } + }, + [ + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + } + ], + { + "x": -0.9010113457917152, + "y": -0.4337955218240528 + }, + { + "x": -0.6234511928676252, + "y": -0.7818622705514925 + }, + { + "x": -0.22258884624550823, + "y": -0.9749124091563783 + }, + { + "x": 0.22258884624550823, + "y": -0.9749124091563783 + }, + { + "x": 0.6234511928676252, + "y": -0.7818622705514925 + }, + { + "x": 0.9010113457917152, + "y": -0.4337955218240528 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3258 + }, + "min": { + "#": 3259 + } + }, + { + "x": 572.4759999999999, + "y": 163.636 + }, + { + "x": 546.2579999999998, + "y": 136.742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 559.3669999999998, + "y": 150.189 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 559.3669999999998, + "y": 150.189 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3267 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3270 + }, + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 572.4759999999999, + "y": 153.18099999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 569.8799999999999, + "y": 158.57299999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 565.2009999999998, + "y": 162.304 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.3669999999998, + "y": 163.636 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.5329999999999, + "y": 162.304 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 548.8539999999998, + "y": 158.57299999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.2579999999998, + "y": 153.18099999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 546.2579999999998, + "y": 147.197 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 548.8539999999998, + "y": 141.805 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 553.5329999999999, + "y": 138.074 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 559.3669999999998, + "y": 136.742 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 565.2009999999998, + "y": 138.074 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 569.8799999999999, + "y": 141.805 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 572.4759999999999, + "y": 147.197 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 555.09128, + "axes": { + "#": 3285 + }, + "bounds": { + "#": 3293 + }, + "circleRadius": 13.519247256515776, + "collisionFilter": { + "#": 3296 + }, + "constraintImpulse": { + "#": 3297 + }, + "density": 0.001, + "force": { + "#": 3298 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 196.2046090072847, + "inverseInertia": 0.005096720230271818, + "inverseMass": 1.8015055109494786, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.55509128, + "motion": 0, + "parent": null, + "position": { + "#": 3299 + }, + "positionImpulse": { + "#": 3300 + }, + "positionPrev": { + "#": 3301 + }, + "render": { + "#": 3302 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3304 + }, + "vertices": { + "#": 3305 + } + }, + [ + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + } + ], + { + "x": -0.901008887984407, + "y": -0.4338006267550824 + }, + { + "x": -0.6234578160368234, + "y": -0.781856989239461 + }, + { + "x": -0.22254048726425574, + "y": -0.9749234490605854 + }, + { + "x": 0.22254048726425574, + "y": -0.9749234490605854 + }, + { + "x": 0.6234578160368234, + "y": -0.781856989239461 + }, + { + "x": 0.901008887984407, + "y": -0.4338006267550824 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3294 + }, + "min": { + "#": 3295 + } + }, + { + "x": 46.36, + "y": 201.694 + }, + { + "x": 20, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 33.18, + "y": 188.17499999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 33.18, + "y": 188.17499999999998 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3303 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 46.36, + "y": 191.183 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 43.75, + "y": 196.60399999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 39.046, + "y": 200.355 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 33.18, + "y": 201.694 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 27.314, + "y": 200.355 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 22.61, + "y": 196.60399999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 20, + "y": 191.183 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20, + "y": 185.16699999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 22.61, + "y": 179.74599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 27.314, + "y": 175.99499999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 33.18, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 39.046, + "y": 175.99499999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 43.75, + "y": 179.74599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 46.36, + "y": 185.16699999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 580.8002039999999, + "axes": { + "#": 3321 + }, + "bounds": { + "#": 3329 + }, + "circleRadius": 13.828489368998628, + "collisionFilter": { + "#": 3332 + }, + "constraintImpulse": { + "#": 3333 + }, + "density": 0.001, + "force": { + "#": 3334 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 214.7998214113765, + "inverseInertia": 0.004655497352974227, + "inverseMass": 1.7217624806481648, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5808002039999999, + "motion": 0, + "parent": null, + "position": { + "#": 3335 + }, + "positionImpulse": { + "#": 3336 + }, + "positionPrev": { + "#": 3337 + }, + "render": { + "#": 3338 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3340 + }, + "vertices": { + "#": 3341 + } + }, + [ + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + } + ], + { + "x": -0.900989908126125, + "y": -0.43384004593268777 + }, + { + "x": -0.6234459070160497, + "y": -0.7818664854212226 + }, + { + "x": -0.2224497580083217, + "y": -0.9749441548940324 + }, + { + "x": 0.2224497580083217, + "y": -0.9749441548940324 + }, + { + "x": 0.6234459070160497, + "y": -0.7818664854212226 + }, + { + "x": 0.900989908126125, + "y": -0.43384004593268777 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3330 + }, + "min": { + "#": 3331 + } + }, + { + "x": 73.324, + "y": 202.31199999999998 + }, + { + "x": 46.36, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 59.842, + "y": 188.48399999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 59.842, + "y": 188.48399999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3339 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3342 + }, + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + }, + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 73.324, + "y": 191.56099999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 70.654, + "y": 197.10599999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 65.842, + "y": 200.94299999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 59.842, + "y": 202.31199999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 53.842, + "y": 200.94299999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 49.03, + "y": 197.10599999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 46.36, + "y": 191.56099999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 46.36, + "y": 185.40699999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 49.03, + "y": 179.862 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 53.842, + "y": 176.02499999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 59.842, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 65.842, + "y": 176.02499999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 70.654, + "y": 179.862 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.324, + "y": 185.40699999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 822.838178, + "axes": { + "#": 3357 + }, + "bounds": { + "#": 3367 + }, + "circleRadius": 16.349665637860085, + "collisionFilter": { + "#": 3370 + }, + "constraintImpulse": { + "#": 3371 + }, + "density": 0.001, + "force": { + "#": 3372 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 431.0675559878762, + "inverseInertia": 0.002319822000308752, + "inverseMass": 1.2153057876223141, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.822838178, + "motion": 0, + "parent": null, + "position": { + "#": 3373 + }, + "positionImpulse": { + "#": 3374 + }, + "positionPrev": { + "#": 3375 + }, + "render": { + "#": 3376 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3378 + }, + "vertices": { + "#": 3379 + } + }, + [ + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + } + ], + { + "x": -0.939700837042068, + "y": -0.3419975685036909 + }, + { + "x": -0.7660516746559193, + "y": -0.6427789913779554 + }, + { + "x": -0.5000222876887215, + "y": -0.8660125355989585 + }, + { + "x": -0.17364468034730493, + "y": -0.9848083696776151 + }, + { + "x": 0.17364468034730493, + "y": -0.9848083696776151 + }, + { + "x": 0.5000222876887215, + "y": -0.8660125355989585 + }, + { + "x": 0.7660516746559193, + "y": -0.6427789913779554 + }, + { + "x": 0.939700837042068, + "y": -0.3419975685036909 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3368 + }, + "min": { + "#": 3369 + } + }, + { + "x": 105.526, + "y": 207.35599999999997 + }, + { + "x": 73.324, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 89.425, + "y": 191.00599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 89.425, + "y": 191.00599999999997 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3377 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + }, + { + "#": 3389 + }, + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + }, + { + "#": 3395 + }, + { + "#": 3396 + }, + { + "#": 3397 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 105.526, + "y": 193.84499999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 103.584, + "y": 199.18099999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 99.934, + "y": 203.53099999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 95.017, + "y": 206.36999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 89.425, + "y": 207.35599999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 83.833, + "y": 206.36999999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 78.916, + "y": 203.53099999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 75.26599999999999, + "y": 199.18099999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 73.324, + "y": 193.84499999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 73.324, + "y": 188.16699999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 75.26599999999999, + "y": 182.83099999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 78.916, + "y": 178.48099999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 83.833, + "y": 175.64199999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 89.425, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 95.017, + "y": 175.64199999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 99.934, + "y": 178.48099999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 103.584, + "y": 182.83099999999996 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 105.526, + "y": 188.16699999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1028.4780559999997, + "axes": { + "#": 3399 + }, + "bounds": { + "#": 3410 + }, + "circleRadius": 18.24326989026063, + "collisionFilter": { + "#": 3413 + }, + "constraintImpulse": { + "#": 3414 + }, + "density": 0.001, + "force": { + "#": 3415 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 673.4323322400562, + "inverseInertia": 0.0014849301884180001, + "inverseMass": 0.9723104874879316, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0284780559999998, + "motion": 0, + "parent": null, + "position": { + "#": 3416 + }, + "positionImpulse": { + "#": 3417 + }, + "positionPrev": { + "#": 3418 + }, + "render": { + "#": 3419 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3421 + }, + "vertices": { + "#": 3422 + } + }, + [ + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + }, + { + "#": 3408 + }, + { + "#": 3409 + } + ], + { + "x": -0.9510392189175532, + "y": -0.3090702251603838 + }, + { + "x": -0.8090314393016936, + "y": -0.5877653700426984 + }, + { + "x": -0.5877653700426984, + "y": -0.8090314393016936 + }, + { + "x": -0.3090702251603838, + "y": -0.9510392189175532 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090702251603838, + "y": -0.9510392189175532 + }, + { + "x": 0.5877653700426984, + "y": -0.8090314393016936 + }, + { + "x": 0.8090314393016936, + "y": -0.5877653700426984 + }, + { + "x": 0.9510392189175532, + "y": -0.3090702251603838 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3411 + }, + "min": { + "#": 3412 + } + }, + { + "x": 141.56399999999996, + "y": 210.694 + }, + { + "x": 105.526, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.54499999999999, + "y": 192.67499999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.54499999999999, + "y": 192.67499999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3420 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + }, + { + "#": 3435 + }, + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + }, + { + "#": 3440 + }, + { + "#": 3441 + }, + { + "#": 3442 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 141.56399999999996, + "y": 195.529 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 139.79999999999998, + "y": 200.957 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 136.445, + "y": 205.575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 131.827, + "y": 208.92999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 126.39899999999999, + "y": 210.694 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120.69099999999999, + "y": 210.694 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 115.26299999999999, + "y": 208.92999999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 110.64499999999998, + "y": 205.575 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 107.28999999999999, + "y": 200.957 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 105.526, + "y": 195.529 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 105.526, + "y": 189.82099999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 107.28999999999999, + "y": 184.39299999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 110.64499999999998, + "y": 179.77499999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 115.26299999999999, + "y": 176.42 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 120.69099999999999, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 126.39899999999999, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 131.827, + "y": 176.42 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 136.445, + "y": 179.77499999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 139.79999999999998, + "y": 184.39299999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 141.56399999999996, + "y": 189.82099999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 510.6009000000001, + "axes": { + "#": 3444 + }, + "bounds": { + "#": 3452 + }, + "circleRadius": 12.966092249657065, + "collisionFilter": { + "#": 3455 + }, + "constraintImpulse": { + "#": 3456 + }, + "density": 0.001, + "force": { + "#": 3457 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 166.01355400407064, + "inverseInertia": 0.00602360455445391, + "inverseMass": 1.958476767275576, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5106009000000001, + "motion": 0, + "parent": null, + "position": { + "#": 3458 + }, + "positionImpulse": { + "#": 3459 + }, + "positionPrev": { + "#": 3460 + }, + "render": { + "#": 3461 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3463 + }, + "vertices": { + "#": 3464 + } + }, + [ + { + "#": 3445 + }, + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + } + ], + { + "x": -0.9009489805770172, + "y": -0.43392503315346237 + }, + { + "x": -0.6235531003785562, + "y": -0.7817809993906799 + }, + { + "x": -0.22250482746270506, + "y": -0.9749315882439095 + }, + { + "x": 0.22250482746270506, + "y": -0.9749315882439095 + }, + { + "x": 0.6235531003785562, + "y": -0.7817809993906799 + }, + { + "x": 0.9009489805770172, + "y": -0.43392503315346237 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3453 + }, + "min": { + "#": 3454 + } + }, + { + "x": 166.84599999999995, + "y": 200.588 + }, + { + "x": 141.56399999999996, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 154.20499999999996, + "y": 187.62199999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 154.20499999999996, + "y": 187.62199999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3462 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3465 + }, + { + "#": 3466 + }, + { + "#": 3467 + }, + { + "#": 3468 + }, + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + }, + { + "#": 3474 + }, + { + "#": 3475 + }, + { + "#": 3476 + }, + { + "#": 3477 + }, + { + "#": 3478 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 166.84599999999995, + "y": 190.50699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 164.34199999999996, + "y": 195.706 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 159.83099999999996, + "y": 199.30399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 154.20499999999996, + "y": 200.588 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 148.57899999999995, + "y": 199.30399999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 144.06799999999996, + "y": 195.706 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 141.56399999999996, + "y": 190.50699999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 141.56399999999996, + "y": 184.737 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 144.06799999999996, + "y": 179.53799999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 148.57899999999995, + "y": 175.94 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 154.20499999999996, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 159.83099999999996, + "y": 175.94 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 164.34199999999996, + "y": 179.53799999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 166.84599999999995, + "y": 184.737 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1006.7004680000002, + "axes": { + "#": 3480 + }, + "bounds": { + "#": 3491 + }, + "circleRadius": 18.048996913580247, + "collisionFilter": { + "#": 3494 + }, + "constraintImpulse": { + "#": 3495 + }, + "density": 0.001, + "force": { + "#": 3496 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 645.2149843764809, + "inverseInertia": 0.0015498710107707343, + "inverseMass": 0.9933441294476479, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0067004680000002, + "motion": 0, + "parent": null, + "position": { + "#": 3497 + }, + "positionImpulse": { + "#": 3498 + }, + "positionPrev": { + "#": 3499 + }, + "render": { + "#": 3500 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3502 + }, + "vertices": { + "#": 3503 + } + }, + [ + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + }, + { + "#": 3488 + }, + { + "#": 3489 + }, + { + "#": 3490 + } + ], + { + "x": -0.9510639936676508, + "y": -0.3089939804412682 + }, + { + "x": -0.8090652252473527, + "y": -0.5877188624635511 + }, + { + "x": -0.5877188624635511, + "y": -0.8090652252473527 + }, + { + "x": -0.3089939804412682, + "y": -0.9510639936676508 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089939804412682, + "y": -0.9510639936676508 + }, + { + "x": 0.5877188624635511, + "y": -0.8090652252473527 + }, + { + "x": 0.8090652252473527, + "y": -0.5877188624635511 + }, + { + "x": 0.9510639936676508, + "y": -0.3089939804412682 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3492 + }, + "min": { + "#": 3493 + } + }, + { + "x": 202.49999999999994, + "y": 210.30999999999997 + }, + { + "x": 166.84599999999995, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 184.67299999999994, + "y": 192.48299999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 184.67299999999994, + "y": 192.48299999999998 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3501 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + }, + { + "#": 3511 + }, + { + "#": 3512 + }, + { + "#": 3513 + }, + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + }, + { + "#": 3521 + }, + { + "#": 3522 + }, + { + "#": 3523 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 202.49999999999994, + "y": 195.30599999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200.75499999999994, + "y": 200.67699999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 197.43599999999995, + "y": 205.24599999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 192.86699999999993, + "y": 208.56499999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 187.49599999999995, + "y": 210.30999999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 181.84999999999994, + "y": 210.30999999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 176.47899999999996, + "y": 208.56499999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 171.90999999999994, + "y": 205.24599999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 168.59099999999995, + "y": 200.67699999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 166.84599999999995, + "y": 195.30599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 166.84599999999995, + "y": 189.65999999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 168.59099999999995, + "y": 184.289 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 171.90999999999994, + "y": 179.71999999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 176.47899999999996, + "y": 176.40099999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 181.84999999999994, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 187.49599999999995, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 192.86699999999993, + "y": 176.40099999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 197.43599999999995, + "y": 179.71999999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 200.75499999999994, + "y": 184.289 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 202.49999999999994, + "y": 189.65999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1180.0324160000002, + "axes": { + "#": 3525 + }, + "bounds": { + "#": 3536 + }, + "circleRadius": 19.541366598079563, + "collisionFilter": { + "#": 3539 + }, + "constraintImpulse": { + "#": 3540 + }, + "density": 0.001, + "force": { + "#": 3541 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 886.5266168317393, + "inverseInertia": 0.0011279977171737843, + "inverseMass": 0.8474343470916987, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1800324160000002, + "motion": 0, + "parent": null, + "position": { + "#": 3542 + }, + "positionImpulse": { + "#": 3543 + }, + "positionPrev": { + "#": 3544 + }, + "render": { + "#": 3545 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3547 + }, + "vertices": { + "#": 3548 + } + }, + [ + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + }, + { + "#": 3533 + }, + { + "#": 3534 + }, + { + "#": 3535 + } + ], + { + "x": -0.9510280591785613, + "y": -0.30910456265648806 + }, + { + "x": -0.8090542788276972, + "y": -0.5877339312227897 + }, + { + "x": -0.5877339312227897, + "y": -0.8090542788276972 + }, + { + "x": -0.30910456265648806, + "y": -0.9510280591785613 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30910456265648806, + "y": -0.9510280591785613 + }, + { + "x": 0.5877339312227897, + "y": -0.8090542788276972 + }, + { + "x": 0.8090542788276972, + "y": -0.5877339312227897 + }, + { + "x": 0.9510280591785613, + "y": -0.30910456265648806 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3537 + }, + "min": { + "#": 3538 + } + }, + { + "x": 241.10199999999992, + "y": 213.25799999999995 + }, + { + "x": 202.49999999999994, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.80099999999993, + "y": 193.95699999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.80099999999993, + "y": 193.95699999999997 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3546 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + }, + { + "#": 3557 + }, + { + "#": 3558 + }, + { + "#": 3559 + }, + { + "#": 3560 + }, + { + "#": 3561 + }, + { + "#": 3562 + }, + { + "#": 3563 + }, + { + "#": 3564 + }, + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 241.10199999999992, + "y": 197.01399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 239.21199999999993, + "y": 202.82899999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 235.61899999999994, + "y": 207.77499999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230.67299999999994, + "y": 211.36799999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 224.85799999999992, + "y": 213.25799999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 218.74399999999994, + "y": 213.25799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 212.92899999999992, + "y": 211.36799999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.98299999999992, + "y": 207.77499999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 204.38999999999993, + "y": 202.82899999999995 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 202.49999999999994, + "y": 197.01399999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 202.49999999999994, + "y": 190.89999999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 204.38999999999993, + "y": 185.08499999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 207.98299999999992, + "y": 180.13899999999995 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 212.92899999999992, + "y": 176.54599999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 218.74399999999994, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 224.85799999999992, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 230.67299999999994, + "y": 176.54599999999996 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 235.61899999999994, + "y": 180.13899999999995 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 239.21199999999993, + "y": 185.08499999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 241.10199999999992, + "y": 190.89999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 522.984246, + "axes": { + "#": 3570 + }, + "bounds": { + "#": 3578 + }, + "circleRadius": 13.12221364883402, + "collisionFilter": { + "#": 3581 + }, + "constraintImpulse": { + "#": 3582 + }, + "density": 0.001, + "force": { + "#": 3583 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 174.1636865391301, + "inverseInertia": 0.005741725039653003, + "inverseMass": 1.9121034861918191, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.522984246, + "motion": 0, + "parent": null, + "position": { + "#": 3584 + }, + "positionImpulse": { + "#": 3585 + }, + "positionPrev": { + "#": 3586 + }, + "render": { + "#": 3587 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3589 + }, + "vertices": { + "#": 3590 + } + }, + [ + { + "#": 3571 + }, + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + } + ], + { + "x": -0.9009719230040777, + "y": -0.43387739507645984 + }, + { + "x": -0.6235456985788892, + "y": -0.7817869030520816 + }, + { + "x": -0.22242029990218445, + "y": -0.9749508757837096 + }, + { + "x": 0.22242029990218445, + "y": -0.9749508757837096 + }, + { + "x": 0.6235456985788892, + "y": -0.7817869030520816 + }, + { + "x": 0.9009719230040777, + "y": -0.43387739507645984 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3579 + }, + "min": { + "#": 3580 + } + }, + { + "x": 266.68799999999993, + "y": 200.89999999999995 + }, + { + "x": 241.10199999999992, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.89499999999992, + "y": 187.77799999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.89499999999992, + "y": 187.77799999999996 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3588 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + }, + { + "#": 3594 + }, + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + }, + { + "#": 3602 + }, + { + "#": 3603 + }, + { + "#": 3604 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 266.68799999999993, + "y": 190.69799999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 264.15399999999994, + "y": 195.95999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 259.58899999999994, + "y": 199.60099999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 253.89499999999992, + "y": 200.89999999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 248.20099999999994, + "y": 199.60099999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 243.6359999999999, + "y": 195.95999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 241.10199999999992, + "y": 190.69799999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 241.10199999999992, + "y": 184.85799999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 243.6359999999999, + "y": 179.59599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 248.20099999999994, + "y": 175.95499999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 253.89499999999992, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 259.58899999999994, + "y": 175.95499999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 264.15399999999994, + "y": 179.59599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 266.68799999999993, + "y": 184.85799999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 423.244812, + "axes": { + "#": 3606 + }, + "bounds": { + "#": 3613 + }, + "circleRadius": 11.87795781893004, + "collisionFilter": { + "#": 3616 + }, + "constraintImpulse": { + "#": 3617 + }, + "density": 0.001, + "force": { + "#": 3618 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 114.09084813562451, + "inverseInertia": 0.008764944921885922, + "inverseMass": 2.362698777746625, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.423244812, + "motion": 0, + "parent": null, + "position": { + "#": 3619 + }, + "positionImpulse": { + "#": 3620 + }, + "positionPrev": { + "#": 3621 + }, + "render": { + "#": 3622 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3624 + }, + "vertices": { + "#": 3625 + } + }, + [ + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + } + ], + { + "x": -0.8660528810551013, + "y": -0.49995240495087007 + }, + { + "x": -0.49995240495087007, + "y": -0.8660528810551013 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49995240495087007, + "y": -0.8660528810551013 + }, + { + "x": 0.8660528810551013, + "y": -0.49995240495087007 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3614 + }, + "min": { + "#": 3615 + } + }, + { + "x": 289.63399999999996, + "y": 197.602 + }, + { + "x": 266.68799999999993, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 278.16099999999994, + "y": 186.129 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 278.16099999999994, + "y": 186.129 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3623 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + }, + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 289.63399999999996, + "y": 189.203 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 286.55999999999995, + "y": 194.528 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 281.23499999999996, + "y": 197.602 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275.08699999999993, + "y": 197.602 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 269.76199999999994, + "y": 194.528 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 266.68799999999993, + "y": 189.203 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 266.68799999999993, + "y": 183.05499999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 269.76199999999994, + "y": 177.73 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 275.08699999999993, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.23499999999996, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 286.55999999999995, + "y": 177.73 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 289.63399999999996, + "y": 183.05499999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 346.487844, + "axes": { + "#": 3639 + }, + "bounds": { + "#": 3646 + }, + "circleRadius": 10.7468707133059, + "collisionFilter": { + "#": 3649 + }, + "constraintImpulse": { + "#": 3650 + }, + "density": 0.001, + "force": { + "#": 3651 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 76.46162572822102, + "inverseInertia": 0.013078455898314918, + "inverseMass": 2.886104137032871, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.346487844, + "motion": 0, + "parent": null, + "position": { + "#": 3652 + }, + "positionImpulse": { + "#": 3653 + }, + "positionPrev": { + "#": 3654 + }, + "render": { + "#": 3655 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3657 + }, + "vertices": { + "#": 3658 + } + }, + [ + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + } + ], + { + "x": -0.8659999984426783, + "y": -0.5000440007612145 + }, + { + "x": -0.5000440007612145, + "y": -0.8659999984426783 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000440007612145, + "y": -0.8659999984426783 + }, + { + "x": 0.8659999984426783, + "y": -0.5000440007612145 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3647 + }, + "min": { + "#": 3648 + } + }, + { + "x": 310.396, + "y": 195.41799999999998 + }, + { + "x": 289.63399999999996, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300.015, + "y": 185.03699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300.015, + "y": 185.03699999999998 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3656 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3659 + }, + { + "#": 3660 + }, + { + "#": 3661 + }, + { + "#": 3662 + }, + { + "#": 3663 + }, + { + "#": 3664 + }, + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 310.396, + "y": 187.81799999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 307.614, + "y": 192.63599999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.796, + "y": 195.41799999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.234, + "y": 195.41799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 292.416, + "y": 192.63599999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 289.63399999999996, + "y": 187.81799999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.63399999999996, + "y": 182.25599999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 292.416, + "y": 177.438 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 297.234, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 302.796, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 307.614, + "y": 177.438 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 310.396, + "y": 182.25599999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 956.757512, + "axes": { + "#": 3672 + }, + "bounds": { + "#": 3682 + }, + "circleRadius": 17.630186899862824, + "collisionFilter": { + "#": 3685 + }, + "constraintImpulse": { + "#": 3686 + }, + "density": 0.001, + "force": { + "#": 3687 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 582.8009229244419, + "inverseInertia": 0.0017158517783089483, + "inverseMass": 1.0451969150569889, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.956757512, + "motion": 0, + "parent": null, + "position": { + "#": 3688 + }, + "positionImpulse": { + "#": 3689 + }, + "positionPrev": { + "#": 3690 + }, + "render": { + "#": 3691 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3693 + }, + "vertices": { + "#": 3694 + } + }, + [ + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + } + ], + { + "x": -0.9397075647021542, + "y": -0.3419790824619932 + }, + { + "x": -0.7660618415307433, + "y": -0.6427668744969101 + }, + { + "x": -0.49998638622321817, + "y": -0.8660332635594586 + }, + { + "x": -0.17360831062514825, + "y": -0.9848147818152824 + }, + { + "x": 0.17360831062514825, + "y": -0.9848147818152824 + }, + { + "x": 0.49998638622321817, + "y": -0.8660332635594586 + }, + { + "x": 0.7660618415307433, + "y": -0.6427668744969101 + }, + { + "x": 0.9397075647021542, + "y": -0.3419790824619932 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3683 + }, + "min": { + "#": 3684 + } + }, + { + "x": 345.12000000000006, + "y": 209.91599999999997 + }, + { + "x": 310.396, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 327.75800000000004, + "y": 192.28599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 327.75800000000004, + "y": 192.28599999999997 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3692 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3695 + }, + { + "#": 3696 + }, + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + }, + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 345.12000000000006, + "y": 195.34699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 343.026, + "y": 201.10099999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 339.09000000000003, + "y": 205.79199999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 333.788, + "y": 208.85299999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 327.75800000000004, + "y": 209.91599999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.72800000000007, + "y": 208.85299999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 316.42600000000004, + "y": 205.79199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 312.49000000000007, + "y": 201.10099999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 310.396, + "y": 195.34699999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 310.396, + "y": 189.22499999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 312.49000000000007, + "y": 183.47099999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 316.42600000000004, + "y": 178.77999999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 321.72800000000007, + "y": 175.71899999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 327.75800000000004, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 333.788, + "y": 175.71899999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 339.09000000000003, + "y": 178.77999999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 343.026, + "y": 183.47099999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 345.12000000000006, + "y": 189.22499999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 374.2776119999999, + "axes": { + "#": 3714 + }, + "bounds": { + "#": 3721 + }, + "circleRadius": 11.169881687242798, + "collisionFilter": { + "#": 3724 + }, + "constraintImpulse": { + "#": 3725 + }, + "density": 0.001, + "force": { + "#": 3726 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 89.21856250806918, + "inverseInertia": 0.011208429859084056, + "inverseMass": 2.671813562816042, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.3742776119999999, + "motion": 0, + "parent": null, + "position": { + "#": 3727 + }, + "positionImpulse": { + "#": 3728 + }, + "positionPrev": { + "#": 3729 + }, + "render": { + "#": 3730 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3732 + }, + "vertices": { + "#": 3733 + } + }, + [ + { + "#": 3715 + }, + { + "#": 3716 + }, + { + "#": 3717 + }, + { + "#": 3718 + }, + { + "#": 3719 + }, + { + "#": 3720 + } + ], + { + "x": -0.8660098852086632, + "y": -0.5000268779984512 + }, + { + "x": -0.5000268779984512, + "y": -0.8660098852086632 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000268779984512, + "y": -0.8660098852086632 + }, + { + "x": 0.8660098852086632, + "y": -0.5000268779984512 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3722 + }, + "min": { + "#": 3723 + } + }, + { + "x": 366.69800000000004, + "y": 196.23399999999995 + }, + { + "x": 345.12000000000006, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355.90900000000005, + "y": 185.44499999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355.90900000000005, + "y": 185.44499999999996 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3731 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 366.69800000000004, + "y": 188.33599999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 363.8070000000001, + "y": 193.34299999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.80000000000007, + "y": 196.23399999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.01800000000003, + "y": 196.23399999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 348.011, + "y": 193.34299999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 345.12000000000006, + "y": 188.33599999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 345.12000000000006, + "y": 182.55399999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 348.011, + "y": 177.54699999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.01800000000003, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 358.80000000000007, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 363.8070000000001, + "y": 177.54699999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 366.69800000000004, + "y": 182.55399999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 706.691188, + "axes": { + "#": 3747 + }, + "bounds": { + "#": 3756 + }, + "circleRadius": 15.193115569272976, + "collisionFilter": { + "#": 3759 + }, + "constraintImpulse": { + "#": 3760 + }, + "density": 0.001, + "force": { + "#": 3761 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 317.9786205172635, + "inverseInertia": 0.003144865520748772, + "inverseMass": 1.4150452375528983, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7066911880000001, + "motion": 0, + "parent": null, + "position": { + "#": 3762 + }, + "positionImpulse": { + "#": 3763 + }, + "positionPrev": { + "#": 3764 + }, + "render": { + "#": 3765 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3767 + }, + "vertices": { + "#": 3768 + } + }, + [ + { + "#": 3748 + }, + { + "#": 3749 + }, + { + "#": 3750 + }, + { + "#": 3751 + }, + { + "#": 3752 + }, + { + "#": 3753 + }, + { + "#": 3754 + }, + { + "#": 3755 + } + ], + { + "x": -0.9239181562297293, + "y": -0.38259017314753085 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.38259017314753085, + "y": -0.9239181562297293 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38259017314753085, + "y": -0.9239181562297293 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9239181562297293, + "y": -0.38259017314753085 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3757 + }, + "min": { + "#": 3758 + } + }, + { + "x": 396.50000000000006, + "y": 204.458 + }, + { + "x": 366.69800000000004, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 381.59900000000005, + "y": 189.557 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 381.59900000000005, + "y": 189.557 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3766 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + }, + { + "#": 3776 + }, + { + "#": 3777 + }, + { + "#": 3778 + }, + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.50000000000006, + "y": 192.521 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.232, + "y": 197.998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.04, + "y": 202.19 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.56300000000005, + "y": 204.458 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 378.63500000000005, + "y": 204.458 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 373.1580000000001, + "y": 202.19 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 368.96600000000007, + "y": 197.998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 366.69800000000004, + "y": 192.521 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 366.69800000000004, + "y": 186.593 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 368.96600000000007, + "y": 181.11599999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 373.1580000000001, + "y": 176.92399999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 378.63500000000005, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 384.56300000000005, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.04, + "y": 176.92399999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.232, + "y": 181.11599999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.50000000000006, + "y": 186.593 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1214.3271480000003, + "axes": { + "#": 3786 + }, + "bounds": { + "#": 3797 + }, + "circleRadius": 19.82334533607682, + "collisionFilter": { + "#": 3800 + }, + "constraintImpulse": { + "#": 3801 + }, + "density": 0.001, + "force": { + "#": 3802 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 938.8048244237383, + "inverseInertia": 0.001065184129847037, + "inverseMass": 0.8235013123498081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2143271480000004, + "motion": 0, + "parent": null, + "position": { + "#": 3803 + }, + "positionImpulse": { + "#": 3804 + }, + "positionPrev": { + "#": 3805 + }, + "render": { + "#": 3806 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3808 + }, + "vertices": { + "#": 3809 + } + }, + [ + { + "#": 3787 + }, + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + }, + { + "#": 3792 + }, + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + } + ], + { + "x": -0.9510897406360536, + "y": -0.3089147216576842 + }, + { + "x": -0.8089452104431093, + "y": -0.5878840417132903 + }, + { + "x": -0.5878840417132903, + "y": -0.8089452104431093 + }, + { + "x": -0.3089147216576842, + "y": -0.9510897406360536 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089147216576842, + "y": -0.9510897406360536 + }, + { + "x": 0.5878840417132903, + "y": -0.8089452104431093 + }, + { + "x": 0.8089452104431093, + "y": -0.5878840417132903 + }, + { + "x": 0.9510897406360536, + "y": -0.3089147216576842 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3798 + }, + "min": { + "#": 3799 + } + }, + { + "x": 435.6580000000001, + "y": 213.814 + }, + { + "x": 396.50000000000006, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 416.07900000000006, + "y": 194.23499999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 416.07900000000006, + "y": 194.23499999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3807 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 435.6580000000001, + "y": 197.33599999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 433.7420000000001, + "y": 203.23499999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430.09600000000006, + "y": 208.25199999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.07900000000006, + "y": 211.898 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 419.18000000000006, + "y": 213.814 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 412.97800000000007, + "y": 213.814 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 407.07900000000006, + "y": 211.898 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 402.06200000000007, + "y": 208.25199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 398.41600000000005, + "y": 203.23499999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 396.50000000000006, + "y": 197.33599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 396.50000000000006, + "y": 191.134 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 398.41600000000005, + "y": 185.23499999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 402.06200000000007, + "y": 180.218 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 407.07900000000006, + "y": 176.57199999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 412.97800000000007, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 419.18000000000006, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.07900000000006, + "y": 176.57199999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 430.09600000000006, + "y": 180.218 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 433.7420000000001, + "y": 185.23499999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 435.6580000000001, + "y": 191.134 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1146.079588, + "axes": { + "#": 3831 + }, + "bounds": { + "#": 3842 + }, + "circleRadius": 19.25810185185185, + "collisionFilter": { + "#": 3845 + }, + "constraintImpulse": { + "#": 3846 + }, + "density": 0.001, + "force": { + "#": 3847 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 836.2448559249976, + "inverseInertia": 0.0011958220046613829, + "inverseMass": 0.8725397524486754, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.146079588, + "motion": 0, + "parent": null, + "position": { + "#": 3848 + }, + "positionImpulse": { + "#": 3849 + }, + "positionPrev": { + "#": 3850 + }, + "render": { + "#": 3851 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3853 + }, + "vertices": { + "#": 3854 + } + }, + [ + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + }, + { + "#": 3841 + } + ], + { + "x": -0.9510462652577498, + "y": -0.3090485420436181 + }, + { + "x": -0.8090876097037712, + "y": -0.5876880463509853 + }, + { + "x": -0.5876880463509853, + "y": -0.8090876097037712 + }, + { + "x": -0.3090485420436181, + "y": -0.9510462652577498 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090485420436181, + "y": -0.9510462652577498 + }, + { + "x": 0.5876880463509853, + "y": -0.8090876097037712 + }, + { + "x": 0.8090876097037712, + "y": -0.5876880463509853 + }, + { + "x": 0.9510462652577498, + "y": -0.3090485420436181 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3843 + }, + "min": { + "#": 3844 + } + }, + { + "x": 473.7000000000001, + "y": 212.69799999999995 + }, + { + "x": 435.6580000000001, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 454.6790000000001, + "y": 193.67699999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 454.6790000000001, + "y": 193.67699999999996 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3852 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + }, + { + "#": 3858 + }, + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 473.7000000000001, + "y": 196.68999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 471.8380000000001, + "y": 202.41999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 468.2970000000001, + "y": 207.29499999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 463.4220000000001, + "y": 210.83599999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 457.69200000000006, + "y": 212.69799999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 451.6660000000001, + "y": 212.69799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.9360000000001, + "y": 210.83599999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 441.0610000000001, + "y": 207.29499999999996 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 437.5200000000001, + "y": 202.41999999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 435.6580000000001, + "y": 196.68999999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 435.6580000000001, + "y": 190.66399999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 437.5200000000001, + "y": 184.93399999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 441.0610000000001, + "y": 180.05899999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 445.9360000000001, + "y": 176.51799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 451.6660000000001, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 457.69200000000006, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 463.4220000000001, + "y": 176.51799999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 468.2970000000001, + "y": 180.05899999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 471.8380000000001, + "y": 184.93399999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 473.7000000000001, + "y": 190.66399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 809.1720039999999, + "axes": { + "#": 3876 + }, + "bounds": { + "#": 3886 + }, + "circleRadius": 16.21343449931413, + "collisionFilter": { + "#": 3889 + }, + "constraintImpulse": { + "#": 3890 + }, + "density": 0.001, + "force": { + "#": 3891 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 416.8676232415635, + "inverseInertia": 0.0023988430481216025, + "inverseMass": 1.2358311892362506, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8091720039999999, + "motion": 0, + "parent": null, + "position": { + "#": 3892 + }, + "positionImpulse": { + "#": 3893 + }, + "positionPrev": { + "#": 3894 + }, + "render": { + "#": 3895 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3897 + }, + "vertices": { + "#": 3898 + } + }, + [ + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + }, + { + "#": 3880 + }, + { + "#": 3881 + }, + { + "#": 3882 + }, + { + "#": 3883 + }, + { + "#": 3884 + }, + { + "#": 3885 + } + ], + { + "x": -0.9397000670254936, + "y": -0.34199968425757765 + }, + { + "x": -0.7660476536156142, + "y": -0.642783783546234 + }, + { + "x": -0.5000349901212652, + "y": -0.866005201286012 + }, + { + "x": -0.17352189738950702, + "y": -0.9848300112843563 + }, + { + "x": 0.17352189738950702, + "y": -0.9848300112843563 + }, + { + "x": 0.5000349901212652, + "y": -0.866005201286012 + }, + { + "x": 0.7660476536156142, + "y": -0.642783783546234 + }, + { + "x": 0.9397000670254936, + "y": -0.34199968425757765 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3887 + }, + "min": { + "#": 3888 + } + }, + { + "x": 505.63400000000007, + "y": 207.08199999999997 + }, + { + "x": 473.7000000000001, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 489.6670000000001, + "y": 190.86899999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 489.6670000000001, + "y": 190.86899999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3896 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + }, + { + "#": 3907 + }, + { + "#": 3908 + }, + { + "#": 3909 + }, + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + }, + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.63400000000007, + "y": 193.68399999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 503.7080000000001, + "y": 198.97599999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500.0890000000001, + "y": 203.28899999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 495.2120000000001, + "y": 206.10499999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 489.6670000000001, + "y": 207.08199999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 484.12200000000007, + "y": 206.10499999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 479.24500000000006, + "y": 203.28899999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 475.6260000000001, + "y": 198.97599999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 473.7000000000001, + "y": 193.68399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.7000000000001, + "y": 188.05399999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 475.6260000000001, + "y": 182.76199999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 479.24500000000006, + "y": 178.44899999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 484.12200000000007, + "y": 175.63299999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 489.6670000000001, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 495.2120000000001, + "y": 175.63299999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 500.0890000000001, + "y": 178.44899999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 503.7080000000001, + "y": 182.76199999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 505.63400000000007, + "y": 188.05399999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 516.0449700000001, + "axes": { + "#": 3918 + }, + "bounds": { + "#": 3926 + }, + "circleRadius": 13.035022290809328, + "collisionFilter": { + "#": 3929 + }, + "constraintImpulse": { + "#": 3930 + }, + "density": 0.001, + "force": { + "#": 3931 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 169.572527516552, + "inverseInertia": 0.0058971816640663675, + "inverseMass": 1.9378156132400626, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5160449700000002, + "motion": 0, + "parent": null, + "position": { + "#": 3932 + }, + "positionImpulse": { + "#": 3933 + }, + "positionPrev": { + "#": 3934 + }, + "render": { + "#": 3935 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3937 + }, + "vertices": { + "#": 3938 + } + }, + [ + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + }, + { + "#": 3925 + } + ], + { + "x": -0.9009492528126831, + "y": -0.4339244679160969 + }, + { + "x": -0.6235380818920394, + "y": -0.7817929779873929 + }, + { + "x": -0.22252992994878026, + "y": -0.9749258588615808 + }, + { + "x": 0.22252992994878026, + "y": -0.9749258588615808 + }, + { + "x": 0.6235380818920394, + "y": -0.7817929779873929 + }, + { + "x": 0.9009492528126831, + "y": -0.4339244679160969 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3927 + }, + "min": { + "#": 3928 + } + }, + { + "x": 531.0500000000002, + "y": 200.72599999999997 + }, + { + "x": 505.63400000000007, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 518.3420000000001, + "y": 187.69099999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 518.3420000000001, + "y": 187.69099999999997 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3936 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3939 + }, + { + "#": 3940 + }, + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 531.0500000000002, + "y": 190.59199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 528.5330000000001, + "y": 195.81799999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 523.998, + "y": 199.43499999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 518.3420000000001, + "y": 200.72599999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 512.6860000000001, + "y": 199.43499999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 508.1510000000001, + "y": 195.81799999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 505.63400000000007, + "y": 190.59199999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 505.63400000000007, + "y": 184.78999999999996 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 508.1510000000001, + "y": 179.56399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 512.6860000000001, + "y": 175.94699999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 518.3420000000001, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 523.998, + "y": 175.94699999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 528.5330000000001, + "y": 179.56399999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 531.0500000000002, + "y": 184.78999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1172.14282, + "axes": { + "#": 3954 + }, + "bounds": { + "#": 3965 + }, + "circleRadius": 19.475951646090536, + "collisionFilter": { + "#": 3968 + }, + "constraintImpulse": { + "#": 3969 + }, + "density": 0.001, + "force": { + "#": 3970 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 874.7117635443166, + "inverseInertia": 0.0011432337390182312, + "inverseMass": 0.8531383573206547, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1721428200000001, + "motion": 0, + "parent": null, + "position": { + "#": 3971 + }, + "positionImpulse": { + "#": 3972 + }, + "positionPrev": { + "#": 3973 + }, + "render": { + "#": 3974 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3976 + }, + "vertices": { + "#": 3977 + } + }, + [ + { + "#": 3955 + }, + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + }, + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + } + ], + { + "x": -0.9510521578978217, + "y": -0.30903040782081065 + }, + { + "x": -0.8090836879313054, + "y": -0.5876934455338754 + }, + { + "x": -0.5876934455338754, + "y": -0.8090836879313054 + }, + { + "x": -0.30903040782081065, + "y": -0.9510521578978217 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30903040782081065, + "y": -0.9510521578978217 + }, + { + "x": 0.5876934455338754, + "y": -0.8090836879313054 + }, + { + "x": 0.8090836879313054, + "y": -0.5876934455338754 + }, + { + "x": 0.9510521578978217, + "y": -0.30903040782081065 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3966 + }, + "min": { + "#": 3967 + } + }, + { + "x": 569.5220000000002, + "y": 213.12799999999996 + }, + { + "x": 531.0500000000002, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.2860000000002, + "y": 193.89199999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.2860000000002, + "y": 193.89199999999997 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3975 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3978 + }, + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + }, + { + "#": 3984 + }, + { + "#": 3985 + }, + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 569.5220000000002, + "y": 196.93899999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 567.6390000000001, + "y": 202.73399999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 564.0580000000002, + "y": 207.66399999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.1280000000002, + "y": 211.24499999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.3330000000002, + "y": 213.12799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 547.2390000000001, + "y": 213.12799999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 541.4440000000002, + "y": 211.24499999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 536.5140000000001, + "y": 207.66399999999996 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 532.9330000000002, + "y": 202.73399999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 531.0500000000002, + "y": 196.93899999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 531.0500000000002, + "y": 190.84499999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 532.9330000000002, + "y": 185.04999999999995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 536.5140000000001, + "y": 180.11999999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 541.4440000000002, + "y": 176.53899999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 547.2390000000001, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 553.3330000000002, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 559.1280000000002, + "y": 176.53899999999996 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 564.0580000000002, + "y": 180.11999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 567.6390000000001, + "y": 185.04999999999995 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 569.5220000000002, + "y": 190.84499999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 904.4403919999999, + "axes": { + "#": 3999 + }, + "bounds": { + "#": 4009 + }, + "circleRadius": 17.141160836762687, + "collisionFilter": { + "#": 4012 + }, + "constraintImpulse": { + "#": 4013 + }, + "density": 0.001, + "force": { + "#": 4014 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 520.8064673147039, + "inverseInertia": 0.001920099044000038, + "inverseMass": 1.105656059642237, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9044403919999999, + "motion": 0, + "parent": null, + "position": { + "#": 4015 + }, + "positionImpulse": { + "#": 4016 + }, + "positionPrev": { + "#": 4017 + }, + "render": { + "#": 4018 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4020 + }, + "vertices": { + "#": 4021 + } + }, + [ + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + }, + { + "#": 4006 + }, + { + "#": 4007 + }, + { + "#": 4008 + } + ], + { + "x": -0.9396952926793908, + "y": -0.3420128022694386 + }, + { + "x": -0.7659860703993571, + "y": -0.6428571691706884 + }, + { + "x": -0.4999696792449819, + "y": -0.8660429087728101 + }, + { + "x": -0.17367992955782482, + "y": -0.9848021537693695 + }, + { + "x": 0.17367992955782482, + "y": -0.9848021537693695 + }, + { + "x": 0.4999696792449819, + "y": -0.8660429087728101 + }, + { + "x": 0.7659860703993571, + "y": -0.6428571691706884 + }, + { + "x": 0.9396952926793908, + "y": -0.3420128022694386 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4010 + }, + "min": { + "#": 4011 + } + }, + { + "x": 603.2840000000001, + "y": 208.93799999999996 + }, + { + "x": 569.5220000000002, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.4030000000001, + "y": 191.79699999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.4030000000001, + "y": 191.79699999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4019 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4022 + }, + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + }, + { + "#": 4027 + }, + { + "#": 4028 + }, + { + "#": 4029 + }, + { + "#": 4030 + }, + { + "#": 4031 + }, + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 603.2840000000001, + "y": 194.77399999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 601.2480000000002, + "y": 200.36799999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 597.4210000000002, + "y": 204.92799999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 592.2660000000002, + "y": 207.90399999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 586.4030000000001, + "y": 208.93799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 580.5400000000001, + "y": 207.90399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 575.3850000000001, + "y": 204.92799999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.5580000000001, + "y": 200.36799999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 569.5220000000002, + "y": 194.77399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 569.5220000000002, + "y": 188.81999999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 571.5580000000001, + "y": 183.22599999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 575.3850000000001, + "y": 178.66599999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 580.5400000000001, + "y": 175.68999999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.4030000000001, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.2660000000002, + "y": 175.68999999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 597.4210000000002, + "y": 178.66599999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 601.2480000000002, + "y": 183.22599999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 603.2840000000001, + "y": 188.81999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 336.960508, + "axes": { + "#": 4041 + }, + "bounds": { + "#": 4048 + }, + "circleRadius": 10.59855109739369, + "collisionFilter": { + "#": 4051 + }, + "constraintImpulse": { + "#": 4052 + }, + "density": 0.001, + "force": { + "#": 4053 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 72.31452373591827, + "inverseInertia": 0.013828480757915922, + "inverseMass": 2.9677068269377136, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.336960508, + "motion": 0, + "parent": null, + "position": { + "#": 4054 + }, + "positionImpulse": { + "#": 4055 + }, + "positionPrev": { + "#": 4056 + }, + "render": { + "#": 4057 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4059 + }, + "vertices": { + "#": 4060 + } + }, + [ + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + } + ], + { + "x": -0.8660247035831383, + "y": -0.5000012127822667 + }, + { + "x": -0.5000012127822667, + "y": -0.8660247035831383 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000012127822667, + "y": -0.8660247035831383 + }, + { + "x": 0.8660247035831383, + "y": -0.5000012127822667 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4049 + }, + "min": { + "#": 4050 + } + }, + { + "x": 623.758, + "y": 195.12999999999997 + }, + { + "x": 603.2840000000001, + "y": 174.65599999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 613.5210000000001, + "y": 184.89299999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 613.5210000000001, + "y": 184.89299999999997 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4058 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + }, + { + "#": 4066 + }, + { + "#": 4067 + }, + { + "#": 4068 + }, + { + "#": 4069 + }, + { + "#": 4070 + }, + { + "#": 4071 + }, + { + "#": 4072 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 623.758, + "y": 187.63599999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 621.0150000000001, + "y": 192.38699999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.2640000000001, + "y": 195.12999999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 610.778, + "y": 195.12999999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 606.027, + "y": 192.38699999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 603.2840000000001, + "y": 187.63599999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 603.2840000000001, + "y": 182.14999999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 606.027, + "y": 177.39899999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 610.778, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 616.2640000000001, + "y": 174.65599999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 621.0150000000001, + "y": 177.39899999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 623.758, + "y": 182.14999999999998 + }, + [], + [], + [ + { + "#": 4076 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 4077 + }, + "pointB": "", + "render": { + "#": 4078 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/avalanche/avalanche-10.json b/tests/browser/refs/avalanche/avalanche-10.json new file mode 100644 index 00000000..b0d8976f --- /dev/null +++ b/tests/browser/refs/avalanche/avalanche-10.json @@ -0,0 +1,37319 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 156 + }, + "composites": { + "#": 159 + }, + "constraints": { + "#": 4182 + }, + "gravity": { + "#": 4186 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 91 + }, + "bounds": { + "#": 94 + }, + "collisionFilter": { + "#": 97 + }, + "constraintImpulse": { + "#": 98 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 99 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 100 + }, + "positionImpulse": { + "#": 101 + }, + "positionPrev": { + "#": 102 + }, + "region": { + "#": 103 + }, + "render": { + "#": 104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 106 + }, + "vertices": { + "#": 107 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 95 + }, + "min": { + "#": 96 + } + }, + { + "x": 545.6743509008983, + "y": 225.4063326122905 + }, + { + "x": -145.67435090089828, + "y": 74.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 150 + }, + { + "endCol": 11, + "endRow": 4, + "id": "-4,11,1,4", + "startCol": -4, + "startRow": 1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 105 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -141.9267246091838, + "y": 74.5936673877095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545.6743509008983, + "y": 205.76058759771672 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 541.9267246091838, + "y": 225.4063326122905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -145.67435090089828, + "y": 94.23941240228328 + }, + { + "angle": -0.18849555921538758, + "anglePrev": -0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 113 + }, + "bounds": { + "#": 116 + }, + "collisionFilter": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 121 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 122 + }, + "positionImpulse": { + "#": 123 + }, + "positionPrev": { + "#": 124 + }, + "region": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": 0.1873813145857246 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 845.6743509008983, + "y": 425.4063326122905 + }, + { + "x": 154.32564909910172, + "y": 274.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 350 + }, + { + "endCol": 17, + "endRow": 8, + "id": "3,17,5,8", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 154.32564909910172, + "y": 405.7605875977167 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 841.9267246091838, + "y": 274.5936673877095 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 845.6743509008983, + "y": 294.2394124022833 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 158.0732753908162, + "y": 425.4063326122905 + }, + { + "angle": 0.12566370614359174, + "anglePrev": 0.12566370614359174, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 143 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "region": { + "#": 147 + }, + "render": { + "#": 148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 150 + }, + "vertices": { + "#": 151 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": -0.12533323356430426, + "y": 0.9921147013144779 + }, + { + "x": -0.9921147013144779, + "y": -0.12533323356430426 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 688.4934777957103, + "y": 633.7877787606512 + }, + { + "x": -8.493477795710305, + "y": 526.2122212393488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 580 + }, + { + "endCol": 14, + "endRow": 13, + "id": "-1,14,10,13", + "startCol": -1, + "startRow": 10 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 149 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.986813124424202, + "y": 526.2122212393488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 688.4934777957103, + "y": 613.9454847343617 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685.9868131244242, + "y": 633.7877787606512 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -8.493477795710305, + "y": 546.0545152656383 + }, + { + "max": { + "#": 157 + }, + "min": { + "#": 158 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 160 + } + ], + { + "bodies": { + "#": 161 + }, + "composites": { + "#": 4180 + }, + "constraints": { + "#": 4181 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 162 + }, + { + "#": 199 + }, + { + "#": 239 + }, + { + "#": 285 + }, + { + "#": 322 + }, + { + "#": 368 + }, + { + "#": 402 + }, + { + "#": 445 + }, + { + "#": 485 + }, + { + "#": 525 + }, + { + "#": 562 + }, + { + "#": 605 + }, + { + "#": 642 + }, + { + "#": 688 + }, + { + "#": 734 + }, + { + "#": 777 + }, + { + "#": 814 + }, + { + "#": 848 + }, + { + "#": 894 + }, + { + "#": 931 + }, + { + "#": 977 + }, + { + "#": 1020 + }, + { + "#": 1054 + }, + { + "#": 1097 + }, + { + "#": 1143 + }, + { + "#": 1177 + }, + { + "#": 1217 + }, + { + "#": 1254 + }, + { + "#": 1291 + }, + { + "#": 1337 + }, + { + "#": 1383 + }, + { + "#": 1423 + }, + { + "#": 1460 + }, + { + "#": 1497 + }, + { + "#": 1540 + }, + { + "#": 1586 + }, + { + "#": 1626 + }, + { + "#": 1663 + }, + { + "#": 1709 + }, + { + "#": 1743 + }, + { + "#": 1786 + }, + { + "#": 1832 + }, + { + "#": 1869 + }, + { + "#": 1903 + }, + { + "#": 1937 + }, + { + "#": 1980 + }, + { + "#": 2014 + }, + { + "#": 2060 + }, + { + "#": 2097 + }, + { + "#": 2140 + }, + { + "#": 2180 + }, + { + "#": 2220 + }, + { + "#": 2260 + }, + { + "#": 2297 + }, + { + "#": 2340 + }, + { + "#": 2383 + }, + { + "#": 2426 + }, + { + "#": 2463 + }, + { + "#": 2506 + }, + { + "#": 2552 + }, + { + "#": 2592 + }, + { + "#": 2638 + }, + { + "#": 2678 + }, + { + "#": 2721 + }, + { + "#": 2758 + }, + { + "#": 2798 + }, + { + "#": 2832 + }, + { + "#": 2875 + }, + { + "#": 2912 + }, + { + "#": 2949 + }, + { + "#": 2983 + }, + { + "#": 3023 + }, + { + "#": 3063 + }, + { + "#": 3109 + }, + { + "#": 3143 + }, + { + "#": 3177 + }, + { + "#": 3217 + }, + { + "#": 3260 + }, + { + "#": 3297 + }, + { + "#": 3334 + }, + { + "#": 3371 + }, + { + "#": 3408 + }, + { + "#": 3445 + }, + { + "#": 3488 + }, + { + "#": 3534 + }, + { + "#": 3571 + }, + { + "#": 3617 + }, + { + "#": 3663 + }, + { + "#": 3700 + }, + { + "#": 3734 + }, + { + "#": 3768 + }, + { + "#": 3811 + }, + { + "#": 3845 + }, + { + "#": 3885 + }, + { + "#": 3931 + }, + { + "#": 3977 + }, + { + "#": 4020 + }, + { + "#": 4057 + }, + { + "#": 4103 + }, + { + "#": 4146 + } + ], + { + "angle": 0.02793828614841702, + "anglePrev": 0.020198932806899297, + "angularSpeed": 0.006255764387225795, + "angularVelocity": 0.007655471319574433, + "area": 445.64723200000003, + "axes": { + "#": 163 + }, + "bounds": { + "#": 171 + }, + "circleRadius": 12.11321159122085, + "collisionFilter": { + "#": 174 + }, + "constraintImpulse": { + "#": 175 + }, + "density": 0.001, + "force": { + "#": 176 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 126.46280868085778, + "inverseInertia": 0.007907463154037685, + "inverseMass": 2.243927322317577, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.44564723200000006, + "motion": 0, + "parent": null, + "position": { + "#": 177 + }, + "positionImpulse": { + "#": 178 + }, + "positionPrev": { + "#": 179 + }, + "region": { + "#": 180 + }, + "render": { + "#": 181 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4207376165178287, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 183 + }, + "vertices": { + "#": 184 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": -0.8884207839692521, + "y": -0.45902996700810295 + }, + { + "x": -0.6015739640221315, + "y": -0.7988171041050008 + }, + { + "x": -0.19508494349907138, + "y": -0.9807863502414604 + }, + { + "x": 0.24955494276270934, + "y": -0.9683606407442947 + }, + { + "x": 0.6452470325393467, + "y": -0.7639739962846688 + }, + { + "x": 0.9126699113090232, + "y": -0.4086974834656802 + }, + { + "x": 0.9996097514685058, + "y": 0.027934651762142475 + }, + { + "max": { + "#": 172 + }, + "min": { + "#": 173 + } + }, + { + "x": 43.95661174722798, + "y": 46.91833886134148 + }, + { + "x": 20.189854434574876, + "y": 22.281090153207646 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 32.070529485916914, + "y": 34.389363072745674 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 32.04744630297255, + "y": 34.255906325051015 + }, + { + "endCol": 0, + "endRow": 0, + "id": "0,0,0,0", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 182 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0247011600874103, + "y": 0.1459062655243173 + }, + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 43.80063676426101, + "y": 37.4132195902642 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 41.32587134221595, + "y": 42.20295706802332 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 37.019599550303354, + "y": 45.44592842993477 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 31.732157049122073, + "y": 46.49763599228369 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 26.511701842866415, + "y": 45.152279370611126 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 22.39326264940245, + "y": 41.67387476364834 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 20.189854434574876, + "y": 36.75340311564239 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20.340422207572814, + "y": 31.365506555227128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 22.815187629617853, + "y": 26.575769077468003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 27.121459421530457, + "y": 23.332797715556563 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 32.40890192271175, + "y": 22.281090153207646 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 37.629357128967406, + "y": 23.626446774880204 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 41.747796322431356, + "y": 27.104851381842987 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 43.95120453725895, + "y": 32.02532302984893 + }, + { + "angle": 0.004761876566637283, + "anglePrev": 0.00412040943716539, + "angularSpeed": 0.0010272988020385784, + "angularVelocity": 0.000641558391274717, + "area": 732.475276, + "axes": { + "#": 200 + }, + "bounds": { + "#": 209 + }, + "circleRadius": 15.467721193415638, + "collisionFilter": { + "#": 212 + }, + "constraintImpulse": { + "#": 213 + }, + "density": 0.001, + "force": { + "#": 214 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 341.60522862031934, + "inverseInertia": 0.002927355661500897, + "inverseMass": 1.3652337939117005, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7324752760000001, + "motion": 0, + "parent": null, + "position": { + "#": 215 + }, + "positionImpulse": { + "#": 216 + }, + "positionPrev": { + "#": 217 + }, + "region": { + "#": 218 + }, + "render": { + "#": 219 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7589318513175578, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 221 + }, + "vertices": { + "#": 222 + } + }, + [ + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "x": -0.9220017655430354, + "y": -0.38718567165576445 + }, + { + "x": -0.7037316217267943, + "y": -0.7104659066991009 + }, + { + "x": -0.3783873280923958, + "y": -0.9256473572257944 + }, + { + "x": 0.004761858570360723, + "y": -0.9999886622872061 + }, + { + "x": 0.38718567165576445, + "y": -0.9220017655430354 + }, + { + "x": 0.7104659066991009, + "y": -0.7037316217267943 + }, + { + "x": 0.9256473572257944, + "y": -0.3783873280923958 + }, + { + "x": 0.9999886622872061, + "y": 0.004761858570360723 + }, + { + "max": { + "#": 210 + }, + "min": { + "#": 211 + } + }, + { + "x": 76.32543344192025, + "y": 59.675597132370974 + }, + { + "x": 45.76134223630667, + "y": 28.57139973651237 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 60.94654152103121, + "y": 43.75659902123693 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 60.62665086350632, + "y": 43.17216236485185 + }, + { + "endCol": 1, + "endRow": 1, + "id": "0,1,0,1", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 220 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.31988805924176944, + "y": 0.5844377185146286 + }, + [ + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 76.10299822742506, + "y": 46.84680696039066 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 73.76647705601188, + "y": 52.4107438593443 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 69.4782018329918, + "y": 56.658371857607804 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 63.892265147443055, + "y": 58.94179830596148 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 57.85633358187748, + "y": 58.91305572763077 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 52.292396682923844, + "y": 56.576534556217574 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 48.04476868466034, + "y": 52.28825933319748 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 45.76134223630667, + "y": 46.70232264764878 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 45.79008481463735, + "y": 40.6663910820832 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 48.12660598605056, + "y": 35.102454183129545 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 52.414881209070664, + "y": 30.85482618486605 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 58.00081789461936, + "y": 28.57139973651237 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 64.03674946018494, + "y": 28.60014231484306 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 69.6006863591386, + "y": 30.936663486256265 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 73.8483143574021, + "y": 35.22493870927638 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 76.1317408057558, + "y": 40.81087539482508 + }, + { + "angle": -0.023930824024644845, + "anglePrev": -0.01791512953526413, + "angularSpeed": 0.005675895726533155, + "angularVelocity": -0.00630950349623037, + "area": 1023.0280239999998, + "axes": { + "#": 240 + }, + "bounds": { + "#": 251 + }, + "circleRadius": 18.19465877914952, + "collisionFilter": { + "#": 254 + }, + "constraintImpulse": { + "#": 255 + }, + "density": 0.001, + "force": { + "#": 256 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 666.3140407130343, + "inverseInertia": 0.0015007938282823555, + "inverseMass": 0.9774903292385275, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0230280239999998, + "motion": 0, + "parent": null, + "position": { + "#": 257 + }, + "positionImpulse": { + "#": 258 + }, + "positionPrev": { + "#": 259 + }, + "region": { + "#": 260 + }, + "render": { + "#": 261 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6275850132102301, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 263 + }, + "vertices": { + "#": 264 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + } + ], + { + "x": -0.9581840364823289, + "y": -0.28615267293952 + }, + { + "x": -0.8228869240800039, + "y": -0.5682051655679935 + }, + { + "x": -0.6069241747852209, + "y": -0.794759741092413 + }, + { + "x": -0.33166774534686067, + "y": -0.9433962617567077 + }, + { + "x": -0.02392853995536065, + "y": -0.9997136714957965 + }, + { + "x": 0.28615267293952, + "y": -0.9581840364823289 + }, + { + "x": 0.5682051655679935, + "y": -0.8228869240800039 + }, + { + "x": 0.794759741092413, + "y": -0.6069241747852209 + }, + { + "x": 0.9433962617567077, + "y": -0.33166774534686067 + }, + { + "x": 0.9997136714957965, + "y": -0.02392853995536065 + }, + { + "max": { + "#": 252 + }, + "min": { + "#": 253 + } + }, + { + "x": 112.17092346136299, + "y": 63.54203679972056 + }, + { + "x": 75.83105461200579, + "y": 26.90852854666014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 93.86500962716973, + "y": 44.94248356182405 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 93.54710413292504, + "y": 44.50635303618741 + }, + { + "endCol": 2, + "endRow": 1, + "id": "1,2,0,1", + "startCol": 1, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 262 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3161544929891562, + "y": 0.3631021285550773 + }, + [ + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 111.89896464233367, + "y": 47.3576488793633 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 110.27001740949088, + "y": 52.81218899862301 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 107.0351903197003, + "y": 57.49693506422329 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 102.51057404348131, + "y": 60.9521918640826 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 97.14021452778455, + "y": 62.84023732756204 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 91.44984430963046, + "y": 62.976438576987974 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 85.99530419037073, + "y": 61.34749134414518 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 81.31055812477047, + "y": 58.11266425435464 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 77.85530132491115, + "y": 53.58804797813563 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 75.96725586143172, + "y": 48.21768846243887 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 75.83105461200579, + "y": 42.52731824428479 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 77.46000184484858, + "y": 37.072778125025074 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 80.69482893463915, + "y": 32.38803205942481 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 85.21944521085814, + "y": 28.93277525956549 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 90.5898047265549, + "y": 27.044729796086063 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 96.28017494470899, + "y": 26.90852854666014 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 101.73471506396872, + "y": 28.53747577950293 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 106.41946112956899, + "y": 31.772302869293465 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 109.8747179294283, + "y": 36.296919145512454 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 111.76276339290773, + "y": 41.667278661209224 + }, + { + "angle": 0.011458788711903041, + "anglePrev": 0.006481250282792605, + "angularSpeed": 0.004426950715943123, + "angularVelocity": 0.005041604452332833, + "area": 574.28005, + "axes": { + "#": 286 + }, + "bounds": { + "#": 294 + }, + "circleRadius": 13.750814471879288, + "collisionFilter": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "density": 0.001, + "force": { + "#": 299 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 210.00413885422935, + "inverseInertia": 0.004761810912184603, + "inverseMass": 1.7413107072063536, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5742800499999999, + "motion": 0, + "parent": null, + "position": { + "#": 300 + }, + "positionImpulse": { + "#": 301 + }, + "positionPrev": { + "#": 302 + }, + "region": { + "#": 303 + }, + "render": { + "#": 304 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905542885682784, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 306 + }, + "vertices": { + "#": 307 + } + }, + [ + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "x": -0.8959328698762521, + "y": -0.4441894783482637 + }, + { + "x": -0.614499276772401, + "y": -0.7889173840435993 + }, + { + "x": -0.21138170302595546, + "y": -0.9774035889159846 + }, + { + "x": 0.2337239566924815, + "y": -0.9723029939622789 + }, + { + "x": 0.6324164042231624, + "y": -0.7746286153179766 + }, + { + "x": 0.9058764570146692, + "y": -0.4235420222676257 + }, + { + "x": 0.9999343487989875, + "y": 0.011458537949725144 + }, + { + "max": { + "#": 295 + }, + "min": { + "#": 296 + } + }, + { + "x": 138.4585302705327, + "y": 68.15251222750852 + }, + { + "x": 111.39660048599349, + "y": 37.752453277395496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 124.83678349211887, + "y": 51.50255050773037 + }, + { + "x": 0.016267228267957345, + "y": 0.03579824760761325 + }, + { + "x": 124.78425852105886, + "y": 48.604330240406284 + }, + { + "endCol": 2, + "endRow": 1, + "id": "2,2,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 305 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.039339939161479265, + "y": 2.898074006160961 + }, + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 138.20684024599188, + "y": 54.71596277480928 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 135.4888436302138, + "y": 60.19817842148159 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 130.66043199039447, + "y": 63.95909879240908 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 124.6792171367722, + "y": 65.25264773806524 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 118.72921534052496, + "y": 63.82237551759295 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 113.98825526233797, + "y": 59.951796938486595 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 111.39660048599349, + "y": 54.40873645530125 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 111.4667267382458, + "y": 48.28913824065145 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 114.18472335402394, + "y": 42.80692259397916 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 119.01313499384327, + "y": 39.046002223051644 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 124.99434984746554, + "y": 37.752453277395496 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 130.9443516437127, + "y": 39.18272549786777 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 135.68531172189978, + "y": 43.05330407697414 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 138.2769664982442, + "y": 48.596364560159486 + }, + { + "angle": 0.010839447307558295, + "anglePrev": 0.006716858888242363, + "angularSpeed": 0.003983950918580778, + "angularVelocity": 0.004135289891704341, + "area": 1195.2601479999998, + "axes": { + "#": 323 + }, + "bounds": { + "#": 334 + }, + "circleRadius": 19.667052469135804, + "collisionFilter": { + "#": 337 + }, + "constraintImpulse": { + "#": 338 + }, + "density": 0.001, + "force": { + "#": 339 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 909.5546177631703, + "inverseInertia": 0.0010994391985599042, + "inverseMass": 0.8366379500506865, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1952601479999998, + "motion": 0, + "parent": null, + "position": { + "#": 340 + }, + "positionImpulse": { + "#": 341 + }, + "positionPrev": { + "#": 342 + }, + "region": { + "#": 343 + }, + "render": { + "#": 344 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.534253368055718, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 346 + }, + "vertices": { + "#": 347 + } + }, + [ + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + } + ], + { + "x": -0.9476230062086154, + "y": -0.3193910426172691 + }, + { + "x": -0.8026554781526334, + "y": -0.5964429422765999 + }, + { + "x": -0.5789034707116829, + "y": -0.8153960826481615 + }, + { + "x": -0.2987741825612023, + "y": -0.9543238380313495 + }, + { + "x": 0.010839235047825163, + "y": -0.999941253766229 + }, + { + "x": 0.3193910426172691, + "y": -0.9476230062086154 + }, + { + "x": 0.5964429422765999, + "y": -0.8026554781526334 + }, + { + "x": 0.8153960826481615, + "y": -0.5789034707116829 + }, + { + "x": 0.9543238380313495, + "y": -0.2987741825612023 + }, + { + "x": 0.999941253766229, + "y": 0.010839235047825163 + }, + { + "max": { + "#": 335 + }, + "min": { + "#": 336 + } + }, + { + "x": 176.99761155784387, + "y": 77.15923452137031 + }, + { + "x": 138.05641729941053, + "y": 35.71070020535371 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 157.5404003771927, + "y": 55.16791138600488 + }, + { + "x": 0.25911529967694225, + "y": 0.002969277431332152 + }, + { + "x": 157.5051686004067, + "y": 52.63302656152439 + }, + { + "endCol": 3, + "endRow": 1, + "id": "2,3,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 345 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0415667163308342, + "y": 2.534955097774727 + }, + [ + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 176.93090690535956, + "y": 58.45528276464757 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 174.9655874371963, + "y": 64.28632275662657 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 171.2958421515095, + "y": 69.22483564394192 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 166.27893991632834, + "y": 72.78666550549255 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 160.40666747422742, + "y": 74.62512256665605 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 154.25302899855004, + "y": 74.5584179141717 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 148.42198900657098, + "y": 72.59309844600845 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 143.48347611925567, + "y": 68.92335316032171 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 139.92164625770505, + "y": 63.9064509251405 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 138.08318919654153, + "y": 58.03417848303955 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 138.14989384902583, + "y": 51.88054000736218 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 140.1152133171891, + "y": 46.04950001538317 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 143.78495860287592, + "y": 41.110987128067826 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 148.80186083805705, + "y": 37.54915726651722 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 154.67413328015797, + "y": 35.71070020535371 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 160.82777175583536, + "y": 35.77740485783804 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 166.6588117478144, + "y": 37.74272432600127 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 171.59732463512972, + "y": 41.41246961168803 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 175.15915449668034, + "y": 46.42937184686925 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 176.99761155784387, + "y": 52.3016442889702 + }, + { + "angle": 0.025517006036365572, + "anglePrev": 0.00645444547600157, + "angularSpeed": 0.018114349593549274, + "angularVelocity": 0.01872762621192301, + "area": 431.46854399999995, + "axes": { + "#": 369 + }, + "bounds": { + "#": 376 + }, + "circleRadius": 11.99275548696845, + "collisionFilter": { + "#": 379 + }, + "constraintImpulse": { + "#": 380 + }, + "density": 0.001, + "force": { + "#": 381 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 118.56753749026406, + "inverseInertia": 0.008434011713215457, + "inverseMass": 2.3176660591044156, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.43146854399999995, + "motion": 0, + "parent": null, + "position": { + "#": 382 + }, + "positionImpulse": { + "#": 383 + }, + "positionPrev": { + "#": 384 + }, + "region": { + "#": 385 + }, + "render": { + "#": 386 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.396782784335321, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 388 + }, + "vertices": { + "#": 389 + } + }, + [ + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + } + ], + { + "x": -0.8529743473780559, + "y": -0.5219528357188793 + }, + { + "x": -0.4777614680119809, + "y": -0.8784896013516817 + }, + { + "x": 0.025514237031238743, + "y": -0.9996744588658418 + }, + { + "x": 0.5219528357188793, + "y": -0.8529743473780559 + }, + { + "x": 0.8784896013516817, + "y": -0.4777614680119809 + }, + { + "x": 0.9996744588658418, + "y": 0.025514237031238743 + }, + { + "max": { + "#": 377 + }, + "min": { + "#": 378 + } + }, + { + "x": 199.5245286501006, + "y": 62.33646781646481 + }, + { + "x": 176.08584436867133, + "y": 36.62383238341876 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.74526949191824, + "y": 48.283257506665635 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.71613630832405, + "y": 45.891726791367276 + }, + { + "endCol": 4, + "endRow": 1, + "id": "3,4,0,1", + "startCol": 3, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 387 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.06121850728362688, + "y": 2.392344582291372 + }, + [ + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.24630223167517, + "y": 51.681803948755075 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 196.00614817307567, + "y": 56.976857647872876 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 190.55270209046796, + "y": 59.942682629912504 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 184.34672304982877, + "y": 59.78429024642258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 179.051669350711, + "y": 56.544136187823064 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.08584436867133, + "y": 51.09069010521534 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 176.2442367521613, + "y": 44.88471106457618 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 179.4843908107608, + "y": 39.589657365458386 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 184.9378368933685, + "y": 36.62383238341876 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 191.1438159340077, + "y": 36.78222476690868 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 196.43886963312548, + "y": 40.0223788255082 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 199.40469461516514, + "y": 45.47582490811592 + }, + { + "angle": 0.003142028883768958, + "anglePrev": 0.0009087856568349642, + "angularSpeed": 0.001958193826723877, + "angularVelocity": 0.0022364114538985166, + "area": 828.5975979999998, + "axes": { + "#": 403 + }, + "bounds": { + "#": 413 + }, + "circleRadius": 16.40693587105624, + "collisionFilter": { + "#": 416 + }, + "constraintImpulse": { + "#": 417 + }, + "density": 0.001, + "force": { + "#": 418 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 437.12315220007827, + "inverseInertia": 0.00228768482055209, + "inverseMass": 1.206858434557036, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8285975979999999, + "motion": 0, + "parent": null, + "position": { + "#": 419 + }, + "positionImpulse": { + "#": 420 + }, + "positionPrev": { + "#": 421 + }, + "region": { + "#": 422 + }, + "render": { + "#": 423 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9112381298328183, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 425 + }, + "vertices": { + "#": 426 + } + }, + [ + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "x": -0.9385960859802838, + "y": -0.34501795226117127 + }, + { + "x": -0.7639923749357129, + "y": -0.6452252715448217 + }, + { + "x": -0.4973231126899151, + "y": -0.8675653990244273 + }, + { + "x": -0.17063016580733503, + "y": -0.985335144261363 + }, + { + "x": 0.17681865899312105, + "y": -0.9842434464256665 + }, + { + "x": 0.5027650884341192, + "y": -0.8644230826694946 + }, + { + "x": 0.7680318963856655, + "y": -0.6404115911929124 + }, + { + "x": 0.9407456522248687, + "y": -0.3391129868052923 + }, + { + "x": 0.9999950638313077, + "y": 0.003142023713905721 + }, + { + "max": { + "#": 414 + }, + "min": { + "#": 415 + } + }, + { + "x": 231.51712802560505, + "y": 73.46890033590036 + }, + { + "x": 199.15937054011783, + "y": 37.743923223572494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 215.35025615865786, + "y": 54.15084223585276 + }, + { + "x": 0.009013546884566506, + "y": 0.0020337276208628186 + }, + { + "x": 215.37577239121964, + "y": 51.2386904227831 + }, + { + "endCol": 4, + "endRow": 1, + "id": "4,4,0,1", + "startCol": 4, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 424 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.027679628003056678, + "y": 2.91214901372728 + }, + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 231.49922477448322, + "y": 57.05059699187745 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 229.53341200011175, + "y": 62.39844675941186 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.85671514778645, + "y": 66.75191598017146 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220.91378787728186, + "y": 69.58539917202248 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 215.29870497558383, + "y": 70.557761248133 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 209.68984328083928, + "y": 69.5501330978576 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 204.76481926145652, + "y": 66.68564441599777 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 201.11555227615364, + "y": 62.309156729510086 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 199.18338429171067, + "y": 56.949059353538864 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 199.2012875428325, + "y": 51.251087479828065 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 201.16710031720396, + "y": 45.90323771229365 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 204.84379716952927, + "y": 41.54976849153403 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 209.78672444003385, + "y": 38.716285299683044 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 215.40180734173188, + "y": 37.743923223572494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 221.01066903647643, + "y": 38.751551373847924 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 225.9356930558592, + "y": 41.61604005570773 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 229.58496004116208, + "y": 45.99252774219543 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 231.51712802560505, + "y": 51.35262511816665 + }, + { + "angle": 0.0028850730526235506, + "anglePrev": 0.0003232352531758065, + "angularSpeed": 0.0028850730526235506, + "angularVelocity": 0.002547633127840936, + "area": 783.3593100000002, + "axes": { + "#": 446 + }, + "bounds": { + "#": 455 + }, + "circleRadius": 15.996013374485596, + "collisionFilter": { + "#": 458 + }, + "constraintImpulse": { + "#": 459 + }, + "density": 0.001, + "force": { + "#": 460 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 390.7154522672976, + "inverseInertia": 0.0025594073492539436, + "inverseMass": 1.2765534119968522, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7833593100000001, + "motion": 0, + "parent": null, + "position": { + "#": 461 + }, + "positionImpulse": { + "#": 462 + }, + "positionPrev": { + "#": 463 + }, + "region": { + "#": 464 + }, + "render": { + "#": 465 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6680765737373284, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 467 + }, + "vertices": { + "#": 468 + } + }, + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + } + ], + { + "x": -0.9227348462265228, + "y": -0.3854353429037294 + }, + { + "x": -0.7050637864455259, + "y": -0.7091438902247541 + }, + { + "x": -0.38010464113239606, + "y": -0.9249434911331678 + }, + { + "x": 0.0028850690502371713, + "y": -0.9999958381796273 + }, + { + "x": 0.3854353429037294, + "y": -0.9227348462265228 + }, + { + "x": 0.7091438902247541, + "y": -0.7050637864455259 + }, + { + "x": 0.9249434911331678, + "y": -0.38010464113239606 + }, + { + "x": 0.9999958381796273, + "y": 0.0028850690502371713 + }, + { + "max": { + "#": 456 + }, + "min": { + "#": 457 + } + }, + { + "x": 262.8466544111784, + "y": 69.23320610820915 + }, + { + "x": 231.38513339507173, + "y": 36.17054363209101 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.1487154054725, + "y": 51.86848263779697 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.16281180074517, + "y": 50.20152763618033 + }, + { + "endCol": 5, + "endRow": 1, + "id": "4,5,0,1", + "startCol": 4, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 466 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.011808065711420568, + "y": 1.666957962618497 + }, + [ + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 262.82864581016685, + "y": 55.034733497084765 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260.4230204446121, + "y": 60.793817070067476 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 255.9973070010067, + "y": 65.19406689423548 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250.22443856810196, + "y": 67.56642164350295 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 243.9824645461847, + "y": 67.54841304249136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 238.223380973202, + "y": 65.14278767693655 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 233.823131149034, + "y": 60.71707423333117 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 231.45077639976654, + "y": 54.944205800426424 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 231.46878500077813, + "y": 48.70223177850918 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 233.8744103663329, + "y": 42.94314820552647 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 238.3001238099383, + "y": 38.54289838135848 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 244.07299224284304, + "y": 36.17054363209101 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 250.3149662647603, + "y": 36.18855223310259 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 256.07404983774296, + "y": 38.59417759865739 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 260.474299661911, + "y": 43.01989104226278 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 262.8466544111784, + "y": 48.79275947516752 + }, + { + "angle": -0.0008533505503374764, + "anglePrev": 0.002259247733034415, + "angularSpeed": 0.0009700032960430001, + "angularVelocity": -0.003112699984340714, + "area": 754.4775720000002, + "axes": { + "#": 486 + }, + "bounds": { + "#": 495 + }, + "circleRadius": 15.698259602194788, + "collisionFilter": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "density": 0.001, + "force": { + "#": 500 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 362.43592371593485, + "inverseInertia": 0.002759108395622964, + "inverseMass": 1.32542044603017, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7544775720000002, + "motion": 0, + "parent": null, + "position": { + "#": 501 + }, + "positionImpulse": { + "#": 502 + }, + "positionPrev": { + "#": 503 + }, + "region": { + "#": 504 + }, + "render": { + "#": 505 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5981287418528782, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 507 + }, + "vertices": { + "#": 508 + } + }, + [ + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + } + ], + { + "x": -0.9241838850645442, + "y": -0.38194783228473134 + }, + { + "x": -0.7077099336140903, + "y": -0.7065031138388135 + }, + { + "x": -0.38352458089870156, + "y": -0.9235306686009269 + }, + { + "x": -0.0008533504467681498, + "y": -0.9999996358964413 + }, + { + "x": 0.38194783228473134, + "y": -0.9241838850645442 + }, + { + "x": 0.7065031138388135, + "y": -0.7077099336140903 + }, + { + "x": 0.9235306686009269, + "y": -0.38352458089870156 + }, + { + "x": 0.9999996358964413, + "y": -0.0008533504467681498 + }, + { + "max": { + "#": 496 + }, + "min": { + "#": 497 + } + }, + { + "x": 295.0735912387289, + "y": 60.39921596039816 + }, + { + "x": 264.00656791249685, + "y": 29.065174857929957 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 279.4061761188128, + "y": 44.46478306424591 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 278.9690031455639, + "y": 44.44755530930416 + }, + { + "endCol": 6, + "endRow": 1, + "id": "5,6,0,1", + "startCol": 5, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 506 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.43717417960044713, + "y": 0.017224835981281217 + }, + [ + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 294.8057843251288, + "y": 47.514642912167815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 292.46661343541535, + "y": 53.1746411055171 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.13831172684735, + "y": 57.51033624235588 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 282.4823140403925, + "y": 59.859163645724955 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 276.35631627089094, + "y": 59.86439127056186 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270.6963180775416, + "y": 57.52522038084842 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 266.36062294070285, + "y": 53.19691867228043 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 264.0117955373338, + "y": 47.54092098582559 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 264.00656791249685, + "y": 41.414923216324006 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 266.3457388022103, + "y": 35.7549250229747 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 270.6740405107783, + "y": 31.41922988613593 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.33003819723314, + "y": 29.07040248276686 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 282.4560359667347, + "y": 29.065174857929957 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 288.11603416008404, + "y": 31.404345747643397 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 292.4517292969228, + "y": 35.73264745621137 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 294.80055670029185, + "y": 41.38864514266623 + }, + { + "angle": 0.004773682232093633, + "anglePrev": -0.00039549926604232966, + "angularSpeed": 0.004795804006603698, + "angularVelocity": 0.004977121821948252, + "area": 546.5734600000001, + "axes": { + "#": 526 + }, + "bounds": { + "#": 534 + }, + "circleRadius": 13.414909122085048, + "collisionFilter": { + "#": 537 + }, + "constraintImpulse": { + "#": 538 + }, + "density": 0.001, + "force": { + "#": 539 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 190.22932853820927, + "inverseInertia": 0.0052568129619357876, + "inverseMass": 1.8295802361131839, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5465734600000001, + "motion": 0, + "parent": null, + "position": { + "#": 540 + }, + "positionImpulse": { + "#": 541 + }, + "positionPrev": { + "#": 542 + }, + "region": { + "#": 543 + }, + "render": { + "#": 544 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.919235246078799, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 546 + }, + "vertices": { + "#": 547 + } + }, + [ + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": -0.8988470400403598, + "y": -0.4382624768454219 + }, + { + "x": -0.6197702004000605, + "y": -0.7847833450679677 + }, + { + "x": -0.21792732510294707, + "y": -0.97596499987114 + }, + { + "x": 0.2272351449052999, + "y": -0.9738399195555023 + }, + { + "x": 0.6272344527091681, + "y": -0.7788304958940876 + }, + { + "x": 0.902990262453684, + "y": -0.42966101279244173 + }, + { + "x": 0.9999886060006107, + "y": 0.004773664101635715 + }, + { + "max": { + "#": 535 + }, + "min": { + "#": 536 + } + }, + { + "x": 321.0602941415798, + "y": 67.4735154346802 + }, + { + "x": 294.61084852538994, + "y": 37.73647929955912 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.7039488906153, + "y": 51.15132644905731 + }, + { + "x": 0.03725085205720258, + "y": 0.0000901419108931136 + }, + { + "x": 307.5077348136652, + "y": 48.24437446111512 + }, + { + "endCol": 6, + "endRow": 1, + "id": "6,6,0,1", + "startCol": 6, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 545 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.22978296320678737, + "y": 2.9071169368923933 + }, + [ + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.7685504811539, + "y": 54.198727190754425 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.15190246380365, + "y": 59.56529733874437 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 313.4671880618126, + "y": 63.26497623991631 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.6399101866919, + "y": 64.5661735985555 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.8253207107534, + "y": 63.20940124244507 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.1761414643348, + "y": 59.465164960548464 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 294.61084852538994, + "y": 54.07385768518384 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 294.63934730007674, + "y": 48.10392570736019 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 297.255995317427, + "y": 42.73735555937024 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.94070971941807, + "y": 39.03767665819831 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 307.76798759453874, + "y": 37.73647929955912 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 313.58257707047727, + "y": 39.09325165566955 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 318.2317563168958, + "y": 42.83748793756615 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 320.7970492558407, + "y": 48.22879521293078 + }, + { + "angle": 0.0009080118588124367, + "anglePrev": 0.00029613832120635876, + "angularSpeed": 0.0009080118588124367, + "angularVelocity": 0.0006745117296295266, + "area": 973.9752019999999, + "axes": { + "#": 563 + }, + "bounds": { + "#": 573 + }, + "circleRadius": 17.787937242798353, + "collisionFilter": { + "#": 576 + }, + "constraintImpulse": { + "#": 577 + }, + "density": 0.001, + "force": { + "#": 578 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 603.96569072653, + "inverseInertia": 0.0016557231898339578, + "inverseMass": 1.0267201854282941, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9739752019999999, + "motion": 0, + "parent": null, + "position": { + "#": 579 + }, + "positionImpulse": { + "#": 580 + }, + "positionPrev": { + "#": 581 + }, + "region": { + "#": 582 + }, + "render": { + "#": 583 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.917932643919916, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 585 + }, + "vertices": { + "#": 586 + } + }, + [ + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + } + ], + { + "x": -0.939373706018169, + "y": -0.34289508663976315 + }, + { + "x": -0.765430101654963, + "y": -0.6435190436035855 + }, + { + "x": -0.4992348180099749, + "y": -0.8664667313212593 + }, + { + "x": -0.17278947555481436, + "y": -0.9849587794103327 + }, + { + "x": 0.174577898151162, + "y": -0.9846433656289584 + }, + { + "x": 0.5008075180561422, + "y": -0.8655586807712385 + }, + { + "x": 0.766597484686788, + "y": -0.6421279440048454 + }, + { + "x": 0.9399948622862486, + "y": -0.3411885972236714 + }, + { + "x": 0.9999995877572605, + "y": 0.0009080117340386679 + }, + { + "max": { + "#": 574 + }, + "min": { + "#": 575 + } + }, + { + "x": 356.0803715305777, + "y": 76.21903903422218 + }, + { + "x": 320.7896835535208, + "y": 37.735772542566934 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.31048118009886, + "y": 55.52376520959308 + }, + { + "x": 0.11078991338864096, + "y": 0 + }, + { + "x": 338.12328330355245, + "y": 52.6162783863929 + }, + { + "endCol": 7, + "endRow": 1, + "id": "6,7,0,1", + "startCol": 6, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 584 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.20153801454847553, + "y": 2.9074843425982593 + }, + [ + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 355.8256691101841, + "y": 58.628670485732144 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.7073989731369, + "y": 64.43174946386901 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.7321038986274, + "y": 69.16014179854051 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.37930125587957, + "y": 72.24428266234558 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.29432946737376, + "y": 73.31175787661923 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.2113062720492, + "y": 72.23323397556581 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 326.8641133257943, + "y": 69.1393773862065 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 322.89741167433573, + "y": 64.40377362234328 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.7896835535208, + "y": 58.59685738661837 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.79529325001363, + "y": 52.418859933454016 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 322.91356338706083, + "y": 46.615780955317135 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.88885846157035, + "y": 41.887388620645645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.24166110431815, + "y": 38.80324775684058 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.32663289282397, + "y": 37.735772542566934 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.4096560881485, + "y": 38.81429644362036 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 349.75684903440344, + "y": 41.90815303297964 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.723550685862, + "y": 46.643756796842865 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 355.83127880667695, + "y": 52.45067303256779 + }, + { + "angle": 0, + "anglePrev": 0.0015720159697242436, + "angularSpeed": 0, + "angularVelocity": -0.001346047419425206, + "area": 485.5904, + "axes": { + "#": 606 + }, + "bounds": { + "#": 614 + }, + "circleRadius": 12.644504458161865, + "collisionFilter": { + "#": 617 + }, + "constraintImpulse": { + "#": 618 + }, + "density": 0.001, + "force": { + "#": 619 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 150.14835557749134, + "inverseInertia": 0.006660079600298396, + "inverseMass": 2.0593487844899734, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4855904, + "motion": 0, + "parent": null, + "position": { + "#": 620 + }, + "positionImpulse": { + "#": 621 + }, + "positionPrev": { + "#": 622 + }, + "region": { + "#": 623 + }, + "render": { + "#": 624 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 626 + }, + "vertices": { + "#": 627 + } + }, + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + } + ], + { + "x": -0.9010093877027451, + "y": -0.43379958883282077 + }, + { + "x": -0.6233938910669198, + "y": -0.7819079591489303 + }, + { + "x": -0.2226655662703444, + "y": -0.9748948895124575 + }, + { + "x": 0.2226655662703444, + "y": -0.9748948895124575 + }, + { + "x": 0.6233938910669198, + "y": -0.7819079591489303 + }, + { + "x": 0.9010093877027451, + "y": -0.43379958883282077 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 615 + }, + "min": { + "#": 616 + } + }, + { + "x": 380.4328669196681, + "y": 65.93302548206142 + }, + { + "x": 355.7788669196681, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.1058669196681, + "y": 50.38075476702577 + }, + { + "x": 1.0902935357344627, + "y": 0 + }, + { + "x": 367.9062571639735, + "y": 47.473494002947795 + }, + { + "endCol": 7, + "endRow": 1, + "id": "7,7,0,1", + "startCol": 7, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 625 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.17084695723877985, + "y": 2.907265739556813 + }, + [ + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380.4328669196681, + "y": 53.19475476702577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 377.9918669196681, + "y": 58.26475476702577 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 373.59186691966806, + "y": 61.772754767025766 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 368.1058669196681, + "y": 63.02575476702577 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 362.6198669196681, + "y": 61.772754767025766 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 358.21986691966805, + "y": 58.26475476702577 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 355.7788669196681, + "y": 53.19475476702577 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 355.7788669196681, + "y": 47.56675476702577 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 358.21986691966805, + "y": 42.49675476702577 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 362.6198669196681, + "y": 38.988754767025775 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 368.1058669196681, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 373.59186691966806, + "y": 38.988754767025775 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 377.9918669196681, + "y": 42.49675476702577 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 380.4328669196681, + "y": 47.56675476702577 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1013.2448800000001, + "axes": { + "#": 643 + }, + "bounds": { + "#": 654 + }, + "circleRadius": 18.10806755829904, + "collisionFilter": { + "#": 657 + }, + "constraintImpulse": { + "#": 658 + }, + "density": 0.001, + "force": { + "#": 659 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 653.6311476673523, + "inverseInertia": 0.0015299148511645328, + "inverseMass": 0.9869282537109884, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.01324488, + "motion": 0, + "parent": null, + "position": { + "#": 660 + }, + "positionImpulse": { + "#": 661 + }, + "positionPrev": { + "#": 662 + }, + "region": { + "#": 663 + }, + "render": { + "#": 664 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 666 + }, + "vertices": { + "#": 667 + } + }, + [ + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + } + ], + { + "x": -0.95103925715127, + "y": -0.3090701075114839 + }, + { + "x": -0.8089955390833857, + "y": -0.5878147818345351 + }, + { + "x": -0.5878147818345351, + "y": -0.8089955390833857 + }, + { + "x": -0.3090701075114839, + "y": -0.95103925715127 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090701075114839, + "y": -0.95103925715127 + }, + { + "x": 0.5878147818345351, + "y": -0.8089955390833857 + }, + { + "x": 0.8089955390833857, + "y": -0.5878147818345351 + }, + { + "x": 0.95103925715127, + "y": -0.3090701075114839 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 655 + }, + "min": { + "#": 656 + } + }, + { + "x": 414.84, + "y": 73.50575476702579 + }, + { + "x": 379.07, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 396.955, + "y": 55.62075476702578 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 396.955, + "y": 52.71348405199013 + }, + { + "endCol": 8, + "endRow": 1, + "id": "7,8,0,1", + "startCol": 7, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 665 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 414.84, + "y": 58.45375476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 413.089, + "y": 63.84175476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.75899999999996, + "y": 68.42475476702579 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.176, + "y": 71.75475476702579 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 399.788, + "y": 73.50575476702579 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 394.12199999999996, + "y": 73.50575476702579 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 388.734, + "y": 71.75475476702579 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 384.151, + "y": 68.42475476702579 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 380.82099999999997, + "y": 63.84175476702578 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 379.07, + "y": 58.45375476702578 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 379.07, + "y": 52.78775476702578 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 380.82099999999997, + "y": 47.399754767025776 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 384.151, + "y": 42.81675476702578 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 388.734, + "y": 39.48675476702578 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.12199999999996, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 399.788, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 405.176, + "y": 39.48675476702578 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 409.75899999999996, + "y": 42.81675476702578 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 413.089, + "y": 47.399754767025776 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 414.84, + "y": 52.78775476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1043.5045799999998, + "axes": { + "#": 689 + }, + "bounds": { + "#": 700 + }, + "circleRadius": 18.37615740740741, + "collisionFilter": { + "#": 703 + }, + "constraintImpulse": { + "#": 704 + }, + "density": 0.001, + "force": { + "#": 705 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 693.2543810769114, + "inverseInertia": 0.0014424719515606747, + "inverseMass": 0.9583091623804854, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0435045799999998, + "motion": 0, + "parent": null, + "position": { + "#": 706 + }, + "positionImpulse": { + "#": 707 + }, + "positionPrev": { + "#": 708 + }, + "region": { + "#": 709 + }, + "render": { + "#": 710 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 712 + }, + "vertices": { + "#": 713 + } + }, + [ + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + } + ], + { + "x": -0.9510391812432063, + "y": -0.30907034108799836 + }, + { + "x": -0.8090293436440933, + "y": -0.5877682546061905 + }, + { + "x": -0.5877682546061905, + "y": -0.8090293436440933 + }, + { + "x": -0.30907034108799836, + "y": -0.9510391812432063 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907034108799836, + "y": -0.9510391812432063 + }, + { + "x": 0.5877682546061905, + "y": -0.8090293436440933 + }, + { + "x": 0.8090293436440933, + "y": -0.5877682546061905 + }, + { + "x": 0.9510391812432063, + "y": -0.30907034108799836 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 701 + }, + "min": { + "#": 702 + } + }, + { + "x": 451.13999999999993, + "y": 74.03575476702578 + }, + { + "x": 414.84, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.98999999999995, + "y": 55.88575476702577 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.98999999999995, + "y": 52.97848405199012 + }, + { + "endCol": 9, + "endRow": 1, + "id": "8,9,0,1", + "startCol": 8, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 711 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 451.13999999999993, + "y": 58.76075476702577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 449.36299999999994, + "y": 64.22875476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 445.9839999999999, + "y": 68.87975476702577 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 441.33299999999997, + "y": 72.25875476702578 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 435.86499999999995, + "y": 74.03575476702578 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 430.11499999999995, + "y": 74.03575476702578 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 424.64699999999993, + "y": 72.25875476702578 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 419.996, + "y": 68.87975476702577 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 416.61699999999996, + "y": 64.22875476702578 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 414.84, + "y": 58.76075476702577 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 414.84, + "y": 53.01075476702577 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 416.61699999999996, + "y": 47.54275476702577 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 419.996, + "y": 42.89175476702577 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 424.64699999999993, + "y": 39.512754767025775 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 430.11499999999995, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 435.86499999999995, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 441.33299999999997, + "y": 39.512754767025775 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 445.9839999999999, + "y": 42.89175476702577 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 449.36299999999994, + "y": 47.54275476702577 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 451.13999999999993, + "y": 53.01075476702577 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 804.3326420000001, + "axes": { + "#": 735 + }, + "bounds": { + "#": 745 + }, + "circleRadius": 16.16482338820302, + "collisionFilter": { + "#": 748 + }, + "constraintImpulse": { + "#": 749 + }, + "density": 0.001, + "force": { + "#": 750 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 411.89626816350983, + "inverseInertia": 0.0024277957274500763, + "inverseMass": 1.243266713027419, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8043326420000001, + "motion": 0, + "parent": null, + "position": { + "#": 751 + }, + "positionImpulse": { + "#": 752 + }, + "positionPrev": { + "#": 753 + }, + "region": { + "#": 754 + }, + "render": { + "#": 755 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 757 + }, + "vertices": { + "#": 758 + } + }, + [ + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + } + ], + { + "x": -0.939689356498254, + "y": -0.3420291117491275 + }, + { + "x": -0.766129298042305, + "y": -0.6426864699689927 + }, + { + "x": -0.4999897122177319, + "y": -0.8660313433568266 + }, + { + "x": -0.17366340060749713, + "y": -0.9848050686757457 + }, + { + "x": 0.17366340060749713, + "y": -0.9848050686757457 + }, + { + "x": 0.4999897122177319, + "y": -0.8660313433568266 + }, + { + "x": 0.766129298042305, + "y": -0.6426864699689927 + }, + { + "x": 0.939689356498254, + "y": -0.3420291117491275 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 746 + }, + "min": { + "#": 747 + } + }, + { + "x": 482.9779999999999, + "y": 70.06575476702578 + }, + { + "x": 451.13999999999993, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 467.0589999999999, + "y": 53.900754767025774 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 467.0589999999999, + "y": 50.99348405199012 + }, + { + "endCol": 10, + "endRow": 1, + "id": "9,10,0,1", + "startCol": 9, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 756 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 482.9779999999999, + "y": 56.70775476702577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 481.05799999999994, + "y": 61.982754767025774 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 477.44999999999993, + "y": 66.28375476702577 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 472.5879999999999, + "y": 69.09075476702577 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 467.0589999999999, + "y": 70.06575476702578 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 461.5299999999999, + "y": 69.09075476702577 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 456.6679999999999, + "y": 66.28375476702577 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 453.0599999999999, + "y": 61.982754767025774 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 451.13999999999993, + "y": 56.70775476702577 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 451.13999999999993, + "y": 51.09375476702577 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.0599999999999, + "y": 45.818754767025766 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 456.6679999999999, + "y": 41.51775476702578 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 461.5299999999999, + "y": 38.710754767025776 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.0589999999999, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 472.5879999999999, + "y": 38.710754767025776 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 477.44999999999993, + "y": 41.51775476702578 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 481.05799999999994, + "y": 45.818754767025766 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 482.9779999999999, + "y": 51.09375476702577 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 580.047414, + "axes": { + "#": 778 + }, + "bounds": { + "#": 786 + }, + "circleRadius": 13.81974451303155, + "collisionFilter": { + "#": 789 + }, + "constraintImpulse": { + "#": 790 + }, + "density": 0.001, + "force": { + "#": 791 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 214.24336698195748, + "inverseInertia": 0.004667589079125213, + "inverseMass": 1.7239969972523659, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.580047414, + "motion": 0, + "parent": null, + "position": { + "#": 792 + }, + "positionImpulse": { + "#": 793 + }, + "positionPrev": { + "#": 794 + }, + "region": { + "#": 795 + }, + "render": { + "#": 796 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 798 + }, + "vertices": { + "#": 799 + } + }, + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + } + ], + { + "x": -0.9009946077275478, + "y": -0.4338302857637789 + }, + { + "x": -0.6234848799770796, + "y": -0.7818354075123272 + }, + { + "x": -0.22259080644452373, + "y": -0.9749119616080092 + }, + { + "x": 0.22259080644452373, + "y": -0.9749119616080092 + }, + { + "x": 0.6234848799770796, + "y": -0.7818354075123272 + }, + { + "x": 0.9009946077275478, + "y": -0.4338302857637789 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 787 + }, + "min": { + "#": 788 + } + }, + { + "x": 509.94899999999996, + "y": 68.28302548206143 + }, + { + "x": 483.00299999999993, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 496.47599999999994, + "y": 51.555754767025775 + }, + { + "x": 5.2128457054094674e-14, + "y": 0 + }, + { + "x": 496.47599999999994, + "y": 48.648484051990124 + }, + { + "endCol": 10, + "endRow": 1, + "id": "10,10,0,1", + "startCol": 10, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 797 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 509.94899999999996, + "y": 54.63075476702577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 507.28099999999995, + "y": 60.171754767025774 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 502.4719999999999, + "y": 64.00675476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 496.47599999999994, + "y": 65.37575476702578 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 490.47999999999996, + "y": 64.00675476702578 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 485.67099999999994, + "y": 60.171754767025774 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.00299999999993, + "y": 54.63075476702577 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 483.00299999999993, + "y": 48.48075476702578 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 485.67099999999994, + "y": 42.939754767025775 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 490.47999999999996, + "y": 39.104754767025774 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 496.47599999999994, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 502.4719999999999, + "y": 39.104754767025774 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 507.28099999999995, + "y": 42.939754767025775 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 509.94899999999996, + "y": 48.48075476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 369.23864399999997, + "axes": { + "#": 815 + }, + "bounds": { + "#": 822 + }, + "circleRadius": 11.09400720164609, + "collisionFilter": { + "#": 825 + }, + "constraintImpulse": { + "#": 826 + }, + "density": 0.001, + "force": { + "#": 827 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 86.83240242313165, + "inverseInertia": 0.011516438243030872, + "inverseMass": 2.7082755725860594, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.36923864399999995, + "motion": 0, + "parent": null, + "position": { + "#": 828 + }, + "positionImpulse": { + "#": 829 + }, + "positionPrev": { + "#": 830 + }, + "region": { + "#": 831 + }, + "render": { + "#": 832 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 834 + }, + "vertices": { + "#": 835 + } + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "x": -0.866081210108875, + "y": -0.49990332815090055 + }, + { + "x": -0.49990332815090055, + "y": -0.866081210108875 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49990332815090055, + "y": -0.866081210108875 + }, + { + "x": 0.866081210108875, + "y": -0.49990332815090055 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 823 + }, + "min": { + "#": 824 + } + }, + { + "x": 531.3309999999998, + "y": 62.07502548206143 + }, + { + "x": 509.89899999999983, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.6149999999999, + "y": 48.451754767025776 + }, + { + "x": -5.2128457054094674e-14, + "y": 0 + }, + { + "x": 520.6149999999999, + "y": 45.544484051990125 + }, + { + "endCol": 11, + "endRow": 1, + "id": "10,11,0,1", + "startCol": 10, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 833 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 531.3309999999998, + "y": 51.32275476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 528.4599999999999, + "y": 56.296754767025774 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 523.486, + "y": 59.16775476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 517.7439999999999, + "y": 59.16775476702578 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 512.7699999999999, + "y": 56.296754767025774 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 509.89899999999983, + "y": 51.32275476702578 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 509.89899999999983, + "y": 45.58075476702577 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 512.7699999999999, + "y": 40.60675476702578 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 517.7439999999999, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 523.486, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 528.4599999999999, + "y": 40.60675476702578 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 531.3309999999998, + "y": 45.58075476702577 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1186.2008119999998, + "axes": { + "#": 849 + }, + "bounds": { + "#": 860 + }, + "circleRadius": 19.59254972565158, + "collisionFilter": { + "#": 863 + }, + "constraintImpulse": { + "#": 864 + }, + "density": 0.001, + "force": { + "#": 865 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 895.8191409307356, + "inverseInertia": 0.0011162967549019135, + "inverseMass": 0.843027580055307, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1862008119999998, + "motion": 0, + "parent": null, + "position": { + "#": 866 + }, + "positionImpulse": { + "#": 867 + }, + "positionPrev": { + "#": 868 + }, + "region": { + "#": 869 + }, + "render": { + "#": 870 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 872 + }, + "vertices": { + "#": 873 + } + }, + [ + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + } + ], + { + "x": -0.9510700273465118, + "y": -0.3089754085410449 + }, + { + "x": -0.8090111291820679, + "y": -0.5877933249532148 + }, + { + "x": -0.5877933249532148, + "y": -0.8090111291820679 + }, + { + "x": -0.3089754085410449, + "y": -0.9510700273465118 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089754085410449, + "y": -0.9510700273465118 + }, + { + "x": 0.5877933249532148, + "y": -0.8090111291820679 + }, + { + "x": 0.8090111291820679, + "y": -0.5877933249532148 + }, + { + "x": 0.9510700273465118, + "y": -0.3089754085410449 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 861 + }, + "min": { + "#": 862 + } + }, + { + "x": 570.0579999999998, + "y": 76.43775476702578 + }, + { + "x": 531.3559999999998, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.7069999999998, + "y": 57.086754767025774 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.7069999999998, + "y": 54.17948405199012 + }, + { + "endCol": 11, + "endRow": 1, + "id": "11,11,0,1", + "startCol": 11, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 871 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 570.0579999999998, + "y": 60.15175476702577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 568.1639999999998, + "y": 65.98175476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 564.5609999999998, + "y": 70.94075476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.6019999999997, + "y": 74.54375476702577 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.7719999999998, + "y": 76.43775476702578 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 547.6419999999997, + "y": 76.43775476702578 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 541.8119999999998, + "y": 74.54375476702577 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 536.8529999999997, + "y": 70.94075476702578 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 533.2499999999998, + "y": 65.98175476702578 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 531.3559999999998, + "y": 60.15175476702577 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 531.3559999999998, + "y": 54.021754767025776 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 533.2499999999998, + "y": 48.19175476702578 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 536.8529999999997, + "y": 43.232754767025774 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 541.8119999999998, + "y": 39.62975476702577 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 547.6419999999997, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 553.7719999999998, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 559.6019999999997, + "y": 39.62975476702577 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 564.5609999999998, + "y": 43.232754767025774 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 568.1639999999998, + "y": 48.19175476702578 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 570.0579999999998, + "y": 54.021754767025776 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 585.3796979999998, + "axes": { + "#": 895 + }, + "bounds": { + "#": 903 + }, + "circleRadius": 13.883273319615911, + "collisionFilter": { + "#": 906 + }, + "constraintImpulse": { + "#": 907 + }, + "density": 0.001, + "force": { + "#": 908 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 218.2004829364277, + "inverseInertia": 0.004582941277409308, + "inverseMass": 1.7082929309242976, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5853796979999999, + "motion": 0, + "parent": null, + "position": { + "#": 909 + }, + "positionImpulse": { + "#": 910 + }, + "positionPrev": { + "#": 911 + }, + "region": { + "#": 912 + }, + "render": { + "#": 913 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 915 + }, + "vertices": { + "#": 916 + } + }, + [ + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + } + ], + { + "x": -0.9009641800326721, + "y": -0.4338934734448706 + }, + { + "x": -0.6235099396116037, + "y": -0.7818154227217151 + }, + { + "x": -0.22253036510011648, + "y": -0.9749257595368013 + }, + { + "x": 0.22253036510011648, + "y": -0.9749257595368013 + }, + { + "x": 0.6235099396116037, + "y": -0.7818154227217151 + }, + { + "x": 0.9009641800326721, + "y": -0.4338934734448706 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 904 + }, + "min": { + "#": 905 + } + }, + { + "x": 597.1279999999997, + "y": 65.50175476702577 + }, + { + "x": 570.0579999999998, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 583.5929999999997, + "y": 51.61875476702577 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 583.5929999999997, + "y": 48.71148405199012 + }, + { + "endCol": 12, + "endRow": 1, + "id": "11,12,0,1", + "startCol": 11, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 914 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 597.1279999999997, + "y": 54.70775476702577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 594.4469999999998, + "y": 60.27475476702577 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 589.6169999999997, + "y": 64.12675476702577 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 583.5929999999997, + "y": 65.50175476702577 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 577.5689999999997, + "y": 64.12675476702577 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 572.7389999999997, + "y": 60.27475476702577 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 570.0579999999998, + "y": 54.70775476702577 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 570.0579999999998, + "y": 48.52975476702577 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 572.7389999999997, + "y": 42.96275476702577 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 577.5689999999997, + "y": 39.110754767025774 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 583.5929999999997, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 589.6169999999997, + "y": 39.110754767025774 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 594.4469999999998, + "y": 42.96275476702577 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 597.1279999999997, + "y": 48.52975476702577 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.07426, + "axes": { + "#": 932 + }, + "bounds": { + "#": 943 + }, + "circleRadius": 19.274819958847736, + "collisionFilter": { + "#": 946 + }, + "constraintImpulse": { + "#": 947 + }, + "density": 0.001, + "force": { + "#": 948 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 839.1582416552851, + "inverseInertia": 0.0011916703553163535, + "inverseMass": 0.8710237959694349, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.14807426, + "motion": 0, + "parent": null, + "position": { + "#": 949 + }, + "positionImpulse": { + "#": 950 + }, + "positionPrev": { + "#": 951 + }, + "region": { + "#": 952 + }, + "render": { + "#": 953 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 955 + }, + "vertices": { + "#": 956 + } + }, + [ + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + } + ], + { + "x": -0.9510438158398417, + "y": -0.30905607962438386 + }, + { + "x": -0.8089440000270397, + "y": -0.5878857072767232 + }, + { + "x": -0.5878857072767232, + "y": -0.8089440000270397 + }, + { + "x": -0.30905607962438386, + "y": -0.9510438158398417 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905607962438386, + "y": -0.9510438158398417 + }, + { + "x": 0.5878857072767232, + "y": -0.8089440000270397 + }, + { + "x": 0.8089440000270397, + "y": -0.5878857072767232 + }, + { + "x": 0.9510438158398417, + "y": -0.30905607962438386 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 944 + }, + "min": { + "#": 945 + } + }, + { + "x": 635.2039999999997, + "y": 75.81175476702577 + }, + { + "x": 597.1279999999997, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 616.1659999999997, + "y": 56.77375476702577 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 616.1659999999997, + "y": 53.86648405199012 + }, + { + "endCol": 13, + "endRow": 1, + "id": "12,13,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 954 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.2039999999997, + "y": 59.78875476702577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.3399999999997, + "y": 65.52475476702577 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.7949999999997, + "y": 70.40275476702577 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 624.9169999999997, + "y": 73.94775476702577 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 619.1809999999997, + "y": 75.81175476702577 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 613.1509999999997, + "y": 75.81175476702577 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 607.4149999999997, + "y": 73.94775476702577 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 602.5369999999997, + "y": 70.40275476702577 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 598.9919999999997, + "y": 65.52475476702577 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 597.1279999999997, + "y": 59.78875476702577 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 597.1279999999997, + "y": 53.75875476702577 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 598.9919999999997, + "y": 48.02275476702577 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 602.5369999999997, + "y": 43.14475476702577 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 607.4149999999997, + "y": 39.59975476702577 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 613.1509999999997, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 619.1809999999997, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 624.9169999999997, + "y": 39.59975476702577 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 629.7949999999997, + "y": 43.14475476702577 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 633.3399999999997, + "y": 48.02275476702577 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 635.2039999999997, + "y": 53.75875476702577 + }, + { + "angle": 0.044945077110553226, + "anglePrev": 0.04291764631609831, + "angularSpeed": 0.004145728061225416, + "angularVelocity": 0.002010233376965702, + "area": 813.928944, + "axes": { + "#": 978 + }, + "bounds": { + "#": 988 + }, + "circleRadius": 16.261016803840878, + "collisionFilter": { + "#": 991 + }, + "constraintImpulse": { + "#": 992 + }, + "density": 0.001, + "force": { + "#": 993 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 421.78337188051313, + "inverseInertia": 0.002370885309066403, + "inverseMass": 1.2286084766632897, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.813928944, + "motion": 0, + "parent": null, + "position": { + "#": 994 + }, + "positionImpulse": { + "#": 995 + }, + "positionPrev": { + "#": 996 + }, + "region": { + "#": 997 + }, + "render": { + "#": 998 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4195091299544472, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1000 + }, + "vertices": { + "#": 1001 + } + }, + [ + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + } + ], + { + "x": -0.923350527650744, + "y": -0.3839580746476005 + }, + { + "x": -0.736385385257473, + "y": -0.6765623137444206 + }, + { + "x": -0.4605515373889071, + "y": -0.8876329654810678 + }, + { + "x": -0.12927202684939187, + "y": -0.9916091685105832 + }, + { + "x": 0.21776601360315456, + "y": -0.9760010057983504 + }, + { + "x": 0.5383741610735071, + "y": -0.8427059170840073 + }, + { + "x": 0.7941467248461203, + "y": -0.6077260726809252 + }, + { + "x": 0.9540901810481963, + "y": -0.2995194925667108 + }, + { + "x": 0.9989901400370745, + "y": 0.044929946680434284 + }, + { + "max": { + "#": 989 + }, + "min": { + "#": 990 + } + }, + { + "x": 52.019100131527786, + "y": 78.56577607725892 + }, + { + "x": 19.760162172297168, + "y": 45.65721758784641 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 35.884872444276425, + "y": 61.90179625498924 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 35.90969339474657, + "y": 61.761633645845755 + }, + { + "endCol": 1, + "endRow": 1, + "id": "0,1,0,1", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 999 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01792775402581981, + "y": 0.134883260092046 + }, + [ + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 51.75581837740458, + "y": 65.44245257659443 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 49.58732619981989, + "y": 70.65728859278458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 45.76662504214575, + "y": 74.81582423213497 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 40.7547260178856, + "y": 77.41626595819234 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 35.15426658130588, + "y": 78.14637492213214 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 29.641959700113173, + "y": 76.91646523131917 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 24.88373515481074, + "y": 73.8766086267272 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 21.45176789581571, + "y": 69.39188157447686 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 19.760162172297168, + "y": 64.00343624431346 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 20.01392651114826, + "y": 58.361139933384095 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 22.18241868873294, + "y": 53.14630391719392 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 26.003119846407078, + "y": 48.98776827784352 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 31.015018870667244, + "y": 46.38732655178619 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 36.61547830724697, + "y": 45.65721758784641 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 42.127785188439674, + "y": 46.88712727865934 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 46.886009733742085, + "y": 49.926983883251324 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 50.31797699273713, + "y": 54.411710935501674 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 52.009582716255665, + "y": 59.80015626566504 + }, + { + "angle": 0.014117005632624767, + "anglePrev": 0.004536203321336489, + "angularSpeed": 0.008832315794948161, + "angularVelocity": 0.009581027967014493, + "area": 405.9288839999999, + "axes": { + "#": 1021 + }, + "bounds": { + "#": 1028 + }, + "circleRadius": 11.63198731138546, + "collisionFilter": { + "#": 1031 + }, + "constraintImpulse": { + "#": 1032 + }, + "density": 0.001, + "force": { + "#": 1033 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 104.94637250178351, + "inverseInertia": 0.009528676181570788, + "inverseMass": 2.463485697657327, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.40592888399999993, + "motion": 0, + "parent": null, + "position": { + "#": 1034 + }, + "positionImpulse": { + "#": 1035 + }, + "positionPrev": { + "#": 1036 + }, + "region": { + "#": 1037 + }, + "render": { + "#": 1038 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7853437231905837, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1040 + }, + "vertices": { + "#": 1041 + } + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "x": -0.8588295863522262, + "y": -0.5122613996838561 + }, + { + "x": -0.4878122535235249, + "y": -0.8729485696834035 + }, + { + "x": 0.014116536741312524, + "y": -0.999900356730825 + }, + { + "x": 0.5122613996838561, + "y": -0.8588295863522262 + }, + { + "x": 0.8729485696834035, + "y": -0.4878122535235249 + }, + { + "x": 0.999900356730825, + "y": 0.014116536741312524 + }, + { + "max": { + "#": 1029 + }, + "min": { + "#": 1030 + } + }, + { + "x": 83.06772163995801, + "y": 80.20136544096218 + }, + { + "x": 59.94741093379698, + "y": 57.10168278066448 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 71.2247962341526, + "y": 68.37906808102011 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 70.57756970246683, + "y": 67.93706931725092 + }, + { + "endCol": 1, + "endRow": 1, + "id": "1,1,1,1", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1039 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6472312201379111, + "y": 0.4419968472176379 + }, + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 82.41717175025207, + "y": 71.54838146196201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 79.33286815356634, + "y": 76.71935702982843 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 74.07688280144374, + "y": 79.65645338137577 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 68.05548285321068, + "y": 79.57144359711958 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 62.8845072853443, + "y": 76.48714000043384 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 59.94741093379698, + "y": 71.23115464831126 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 60.03242071805317, + "y": 65.20975470007821 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 63.116724314738875, + "y": 60.038779132211786 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 68.37270966686144, + "y": 57.10168278066448 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 74.39410961509451, + "y": 57.18669256492067 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 79.56508518296094, + "y": 60.27099616160639 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 82.50218153450824, + "y": 65.52698151372896 + }, + { + "angle": -0.004333793686589444, + "anglePrev": -0.0034824375222330846, + "angularSpeed": 0.003022870501394938, + "angularVelocity": -0.0007537832281150143, + "area": 813.045236, + "axes": { + "#": 1055 + }, + "bounds": { + "#": 1065 + }, + "circleRadius": 16.25192901234568, + "collisionFilter": { + "#": 1068 + }, + "constraintImpulse": { + "#": 1069 + }, + "density": 0.001, + "force": { + "#": 1070 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 420.8679825768214, + "inverseInertia": 0.0023760419927345484, + "inverseMass": 1.2299438650176162, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8130452360000001, + "motion": 0, + "parent": null, + "position": { + "#": 1071 + }, + "positionImpulse": { + "#": 1072 + }, + "positionPrev": { + "#": 1073 + }, + "region": { + "#": 1074 + }, + "render": { + "#": 1075 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7915545449956014, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1077 + }, + "vertices": { + "#": 1078 + } + }, + [ + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + } + ], + { + "x": -0.9411940592269176, + "y": -0.33786645716311847 + }, + { + "x": -0.768846103930061, + "y": -0.6394338655964081 + }, + { + "x": -0.5036602731975967, + "y": -0.8639018053011126 + }, + { + "x": -0.17791013281956017, + "y": -0.9840467390526356 + }, + { + "x": 0.16937424563441544, + "y": -0.9855518073220565 + }, + { + "x": 0.4961535034337637, + "y": -0.8682348190612961 + }, + { + "x": 0.7632749440300531, + "y": -0.6460738036911252 + }, + { + "x": 0.9382302545019052, + "y": -0.3460115453814945 + }, + { + "x": 0.999990609130839, + "y": -0.0043337801205511235 + }, + { + "max": { + "#": 1066 + }, + "min": { + "#": 1067 + } + }, + { + "x": 113.35473915680518, + "y": 95.68540470318436 + }, + { + "x": 80.7329277325703, + "y": 62.65140482081315 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 96.75000735920958, + "y": 78.90325220040756 + }, + { + "x": 0.13804008540619075, + "y": -0.1224741919199909 + }, + { + "x": 95.99714947577085, + "y": 78.54808826962376 + }, + { + "endCol": 2, + "endRow": 1, + "id": "1,2,1,1", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1076 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.7550611106087928, + "y": 0.4470531559513802 + }, + [ + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 112.76708698584885, + "y": 81.65586354854537 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 110.86009147998573, + "y": 86.96817793500803 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 107.2508648153003, + "y": 91.30786028316712 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 102.37414065475986, + "y": 94.15102163314373 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 96.8204399537288, + "y": 95.15509958000196 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 91.25824504366145, + "y": 94.19919593296378 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 86.35706102812055, + "y": 91.39841028500592 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 82.7103558329526, + "y": 87.09017384540154 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 80.7573875875707, + "y": 81.79458785020421 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 80.7329277325703, + "y": 76.15064085226976 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 82.63992323843343, + "y": 70.83832646580711 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.24914990311885, + "y": 66.49864411764801 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 91.1258740636593, + "y": 63.6554827676714 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 96.67957476469036, + "y": 62.65140482081315 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 102.2417696747577, + "y": 63.607308467851354 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 107.1429536902986, + "y": 66.4080941158092 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 110.78965888546655, + "y": 70.71633055541362 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 112.74262713084845, + "y": 76.01191655061092 + }, + { + "angle": 0.016649884531667863, + "anglePrev": 0.01566328781966438, + "angularSpeed": 0.0012176784445623548, + "angularVelocity": 0.0009153801069507542, + "area": 1175.440884, + "axes": { + "#": 1098 + }, + "bounds": { + "#": 1109 + }, + "circleRadius": 19.503557956104252, + "collisionFilter": { + "#": 1112 + }, + "constraintImpulse": { + "#": 1113 + }, + "density": 0.001, + "force": { + "#": 1114 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 879.6410498592595, + "inverseInertia": 0.00113682734583612, + "inverseMass": 0.8507446130315133, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1754408840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1115 + }, + "positionImpulse": { + "#": 1116 + }, + "positionPrev": { + "#": 1117 + }, + "region": { + "#": 1118 + }, + "render": { + "#": 1119 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7812476921090619, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1121 + }, + "vertices": { + "#": 1122 + } + }, + [ + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "x": -0.9458056014746355, + "y": -0.3247333740458507 + }, + { + "x": -0.7991140100436033, + "y": -0.60117950643051 + }, + { + "x": -0.5742408265358105, + "y": -0.8186864315105442 + }, + { + "x": -0.2930640586411727, + "y": -0.9560928080122575 + }, + { + "x": 0.01664911526589828, + "y": -0.9998613938746025 + }, + { + "x": 0.3247333740458507, + "y": -0.9458056014746355 + }, + { + "x": 0.60117950643051, + "y": -0.7991140100436033 + }, + { + "x": 0.8186864315105442, + "y": -0.5742408265358105 + }, + { + "x": 0.9560928080122575, + "y": -0.2930640586411727 + }, + { + "x": 0.9998613938746025, + "y": 0.01664911526589828 + }, + { + "max": { + "#": 1110 + }, + "min": { + "#": 1111 + } + }, + { + "x": 152.0448063997145, + "y": 104.36669610737539 + }, + { + "x": 112.6845652342967, + "y": 65.48808135497876 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 131.99569171517945, + "y": 84.79920783586147 + }, + { + "x": 0.23272520159995636, + "y": -0.22375886365572437 + }, + { + "x": 131.20406431314174, + "y": 84.65229823897324 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,1,2", + "startCol": 2, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1120 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.7986883986051225, + "y": 0.12248470045972226 + }, + [ + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 151.2052252947096, + "y": 88.17049685593986 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 149.22387175136802, + "y": 93.94130894231797 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 145.55517224947207, + "y": 98.81790426741811 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.55913617145438, + "y": 102.32221040517858 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 134.72555692052387, + "y": 104.1103343167442 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 128.62440269510103, + "y": 104.00874141539167 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 122.85359060872291, + "y": 102.02738787205006 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 117.97699528362278, + "y": 98.3586883701541 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 114.47268914586233, + "y": 93.36265229213643 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 112.6845652342967, + "y": 87.52907304120588 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 112.78615813564922, + "y": 81.42791881578306 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 114.76751167899083, + "y": 75.65710672940496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 118.43621118088677, + "y": 70.78051140430482 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 123.43224725890447, + "y": 67.27620526654438 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 129.26582650983502, + "y": 65.48808135497876 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 135.36698073525787, + "y": 65.58967425633126 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 141.13779282163594, + "y": 67.57102779967289 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 146.01438814673608, + "y": 71.23972730156883 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 149.51869428449652, + "y": 76.2357633795865 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 151.3068181960621, + "y": 82.06934263051706 + }, + { + "angle": 0.26171137186914073, + "anglePrev": 0.185187974908981, + "angularSpeed": 0.07627233098152372, + "angularVelocity": 0.07626990253243499, + "area": 324.43099600000005, + "axes": { + "#": 1144 + }, + "bounds": { + "#": 1151 + }, + "circleRadius": 10.399219821673526, + "collisionFilter": { + "#": 1154 + }, + "constraintImpulse": { + "#": 1155 + }, + "density": 0.001, + "force": { + "#": 1156 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 67.03663440105248, + "inverseInertia": 0.014917216667194436, + "inverseMass": 3.082319545078238, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.3244309960000001, + "motion": 0, + "parent": null, + "position": { + "#": 1157 + }, + "positionImpulse": { + "#": 1158 + }, + "positionPrev": { + "#": 1159 + }, + "region": { + "#": 1160 + }, + "render": { + "#": 1161 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7963757420629443, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1163 + }, + "vertices": { + "#": 1164 + } + }, + [ + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + } + ], + { + "x": -0.7070586142693022, + "y": -0.7071549448229676 + }, + { + "x": -0.25905486609793815, + "y": -0.965862607388328 + }, + { + "x": 0.2587340272402001, + "y": -0.9659486027465788 + }, + { + "x": 0.7071549448229676, + "y": -0.7070586142693022 + }, + { + "x": 0.965862607388328, + "y": -0.25905486609793815 + }, + { + "x": 0.9659486027465788, + "y": 0.2587340272402001 + }, + { + "max": { + "#": 1152 + }, + "min": { + "#": 1153 + } + }, + { + "x": 173.14396208840958, + "y": 97.84114744006041 + }, + { + "x": 151.21642113440961, + "y": 74.48370905351264 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 161.61588685032962, + "y": 84.88317476943264 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160.52545694544037, + "y": 82.33495227822489 + }, + { + "endCol": 3, + "endRow": 1, + "id": "3,3,1,1", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1162 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.1286225330950401, + "y": 2.5584583801360026 + }, + [ + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170.62232856358835, + "y": 90.08249171165421 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 166.81603562402802, + "y": 93.88826614772543 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 161.6172371852956, + "y": 95.28264048535266 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 156.41656990810802, + "y": 93.88961648269141 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 152.6107954720368, + "y": 90.08332354313104 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 151.21642113440961, + "y": 84.88452510439862 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 152.60944513707088, + "y": 79.68385782721107 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 156.41573807663121, + "y": 75.87808339113985 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.61453651536362, + "y": 74.48370905351264 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 166.8152037925512, + "y": 75.87673305617389 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 170.62097822862242, + "y": 79.68302599573424 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 172.01535256624962, + "y": 84.88182443446667 + }, + { + "angle": 0.028288325394874053, + "anglePrev": 0.021425199160379438, + "angularSpeed": 0.007321709925387193, + "angularVelocity": 0.00708578145315911, + "area": 722.1773659999999, + "axes": { + "#": 1178 + }, + "bounds": { + "#": 1187 + }, + "circleRadius": 15.358667695473251, + "collisionFilter": { + "#": 1190 + }, + "constraintImpulse": { + "#": 1191 + }, + "density": 0.001, + "force": { + "#": 1192 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 332.0674558099107, + "inverseInertia": 0.0030114363286851023, + "inverseMass": 1.3847013865012214, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7221773659999999, + "motion": 0, + "parent": null, + "position": { + "#": 1193 + }, + "positionImpulse": { + "#": 1194 + }, + "positionPrev": { + "#": 1195 + }, + "region": { + "#": 1196 + }, + "render": { + "#": 1197 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.16001427555392, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1199 + }, + "vertices": { + "#": 1200 + } + }, + [ + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + } + ], + { + "x": -0.9126544006400085, + "y": -0.40873211886567823 + }, + { + "x": -0.6868236772434534, + "y": -0.7268240752601555 + }, + { + "x": -0.35647074725981864, + "y": -0.934306484162465 + }, + { + "x": 0.028284552687771018, + "y": -0.9995999120044241 + }, + { + "x": 0.40873211886567823, + "y": -0.9126544006400085 + }, + { + "x": 0.7268240752601555, + "y": -0.6868236772434534 + }, + { + "x": 0.934306484162465, + "y": -0.35647074725981864 + }, + { + "x": 0.9995999120044241, + "y": 0.028284552687771018 + }, + { + "max": { + "#": 1188 + }, + "min": { + "#": 1189 + } + }, + { + "x": 201.95854301657965, + "y": 110.32920919908337 + }, + { + "x": 170.7419835520168, + "y": 77.02406631092447 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 185.88469714630398, + "y": 92.16677990521167 + }, + { + "x": 0.07144715629695798, + "y": 0.05890145675491533 + }, + { + "x": 185.0899207719234, + "y": 89.13995828372275 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,1,2", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1198 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.8816369763306113, + "y": 3.0253867097479343 + }, + [ + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200.85792970088607, + "y": 95.58765974326552 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.40823593451574, + "y": 101.05755969216825 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 194.05308945761487, + "y": 105.1730228695929 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.45341998098064, + "y": 107.30949349949887 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.4638173082501, + "y": 107.14001245979374 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.99391735934742, + "y": 104.69031869342342 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 172.87845418192273, + "y": 100.3351722165226 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 170.7419835520168, + "y": 94.73550273988836 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 170.91146459172188, + "y": 88.74590006715782 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 173.3611583580922, + "y": 83.27600011825508 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 177.71630483499308, + "y": 79.16053694083044 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 183.31597431162731, + "y": 77.02406631092447 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 189.30557698435786, + "y": 77.1935473506296 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 194.77547693326053, + "y": 79.64324111699992 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 198.89094011068522, + "y": 83.99838759390074 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 201.02741074059116, + "y": 89.59805707053498 + }, + { + "angle": -0.01655381802911003, + "anglePrev": -0.008153773906444343, + "angularSpeed": 0.007158996222844591, + "angularVelocity": -0.008308855406932733, + "area": 486.2764840000001, + "axes": { + "#": 1218 + }, + "bounds": { + "#": 1226 + }, + "circleRadius": 12.653506515775035, + "collisionFilter": { + "#": 1229 + }, + "constraintImpulse": { + "#": 1230 + }, + "density": 0.001, + "force": { + "#": 1231 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 150.57294030609683, + "inverseInertia": 0.006641299545370631, + "inverseMass": 2.0564432640752575, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4862764840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1232 + }, + "positionImpulse": { + "#": 1233 + }, + "positionPrev": { + "#": 1234 + }, + "region": { + "#": 1235 + }, + "render": { + "#": 1236 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.059152482287261, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1238 + }, + "vertices": { + "#": 1239 + } + }, + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "x": -0.9080294090330727, + "y": -0.41890642431341296 + }, + { + "x": -0.636316594409691, + "y": -0.7714280210614939 + }, + { + "x": -0.23878707913167985, + "y": -0.9710719493630536 + }, + { + "x": 0.20651219829404868, + "y": -0.9784440259696819 + }, + { + "x": 0.610432395406858, + "y": -0.7920683623512843 + }, + { + "x": 0.8936653339978664, + "y": -0.44873407582941827 + }, + { + "x": 0.9998629886831274, + "y": -0.016553062002068436 + }, + { + "max": { + "#": 1227 + }, + "min": { + "#": 1228 + } + }, + { + "x": 226.57223355100965, + "y": 104.79099042816698 + }, + { + "x": 200.85396169837207, + "y": 76.58065949042981 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 213.23488494936498, + "y": 89.23292574922608 + }, + { + "x": 0.10218645399005291, + "y": -0.0004117943460619475 + }, + { + "x": 212.48309822634664, + "y": 86.3236654288487 + }, + { + "endCol": 4, + "endRow": 2, + "id": "4,4,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1237 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.8588863485813931, + "y": 2.9074914544996773 + }, + [ + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225.6158082003579, + "y": 91.84434135250025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 223.2571166025415, + "y": 96.9570854245608 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 218.91283766405894, + "y": 100.5404875098224 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 213.44434739593916, + "y": 101.88519200802236 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 207.9343420483182, + "y": 100.7222401306051 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 203.47382750845713, + "y": 97.28460430933373 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 200.94718854356773, + "y": 92.25273849821528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200.85396169837207, + "y": 86.62151014595192 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 203.21265329618848, + "y": 81.50876607389137 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 207.55693223467102, + "y": 77.9253639886298 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 213.0254225027908, + "y": 76.58065949042981 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 218.53542785041176, + "y": 77.7436113678471 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 222.99594239027283, + "y": 81.18124718911844 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 225.52258135516223, + "y": 86.21311300023689 + }, + { + "angle": 0.015818691342476134, + "anglePrev": 0.0009872566792648108, + "angularSpeed": 0.013256020382520673, + "angularVelocity": 0.014995849399804435, + "area": 555.028152, + "axes": { + "#": 1255 + }, + "bounds": { + "#": 1263 + }, + "circleRadius": 13.518304183813443, + "collisionFilter": { + "#": 1266 + }, + "constraintImpulse": { + "#": 1267 + }, + "density": 0.001, + "force": { + "#": 1268 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 196.15998479488022, + "inverseInertia": 0.005097879677374955, + "inverseMass": 1.8017104112585627, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.555028152, + "motion": 0, + "parent": null, + "position": { + "#": 1269 + }, + "positionImpulse": { + "#": 1270 + }, + "positionPrev": { + "#": 1271 + }, + "region": { + "#": 1272 + }, + "render": { + "#": 1273 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4351788837875794, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1275 + }, + "vertices": { + "#": 1276 + } + }, + [ + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + } + ], + { + "x": -0.8940342881245308, + "y": -0.4479985397941197 + }, + { + "x": -0.6110123748427301, + "y": -0.7916210443065843 + }, + { + "x": -0.20696891412540797, + "y": -0.9783475193333653 + }, + { + "x": 0.2378125343238537, + "y": -0.971311071963285 + }, + { + "x": 0.6357472520139301, + "y": -0.7718972933990226 + }, + { + "x": 0.9077580321944202, + "y": -0.41949416561677516 + }, + { + "x": 0.9998748871110653, + "y": 0.015818031629582435 + }, + { + "max": { + "#": 1264 + }, + "min": { + "#": 1265 + } + }, + { + "x": 252.96506062816638, + "y": 100.3411803161996 + }, + { + "x": 225.36253452324075, + "y": 72.45351464196528 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.58746629961925, + "y": 85.96982336593267 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.90874732702702, + "y": 85.76757762860122 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1274 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6856283622896626, + "y": 0.17404018539029664 + }, + [ + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.71723679771424, + "y": 89.18591286520903 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.02181379289033, + "y": 94.5649495656849 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 244.25906888727732, + "y": 98.24107224645296 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 238.3736381480506, + "y": 99.48613208990005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 232.53053646146452, + "y": 98.05552673543797 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 227.88645842913667, + "y": 94.23058801309878 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 225.36253452324075, + "y": 88.76898118751649 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 225.45769580152432, + "y": 82.7537338666563 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 228.15311880634817, + "y": 77.37469716618044 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 232.91586371196118, + "y": 73.6985744854124 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 238.80129445118797, + "y": 72.45351464196528 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 244.64439613777398, + "y": 73.8841199964274 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 249.2884741701019, + "y": 77.70905871876656 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 251.8123980759978, + "y": 83.17066554434885 + }, + { + "angle": 0.001998374753517542, + "anglePrev": -0.0008681787937980473, + "angularSpeed": 0.00040147638900787756, + "angularVelocity": 0.002695105714245304, + "area": 1227.1883159999998, + "axes": { + "#": 1292 + }, + "bounds": { + "#": 1303 + }, + "circleRadius": 19.928369341563787, + "collisionFilter": { + "#": 1306 + }, + "constraintImpulse": { + "#": 1307 + }, + "density": 0.001, + "force": { + "#": 1308 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 958.7962512746001, + "inverseInertia": 0.001042974457472716, + "inverseMass": 0.8148708612704882, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.227188316, + "motion": 0, + "parent": null, + "position": { + "#": 1309 + }, + "positionImpulse": { + "#": 1310 + }, + "positionPrev": { + "#": 1311 + }, + "region": { + "#": 1312 + }, + "render": { + "#": 1313 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4812251939877337, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1315 + }, + "vertices": { + "#": 1316 + } + }, + [ + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + } + ], + { + "x": -0.950426358003332, + "y": -0.31094973550804267 + }, + { + "x": -0.8078163299145357, + "y": -0.5894342856700907 + }, + { + "x": -0.5862009469401167, + "y": -0.8101656928101254 + }, + { + "x": -0.30714864599013697, + "y": -0.9516615518483581 + }, + { + "x": 0.0019983734234323256, + "y": -0.9999980032498367 + }, + { + "x": 0.31094973550804267, + "y": -0.950426358003332 + }, + { + "x": 0.5894342856700907, + "y": -0.8078163299145357 + }, + { + "x": 0.8101656928101254, + "y": -0.5862009469401167 + }, + { + "x": 0.9516615518483581, + "y": -0.30714864599013697 + }, + { + "x": 0.9999980032498367, + "y": 0.0019983734234323256 + }, + { + "max": { + "#": 1304 + }, + "min": { + "#": 1305 + } + }, + { + "x": 291.2893899759143, + "y": 99.11886215861833 + }, + { + "x": 250.77127329864103, + "y": 58.794424402710796 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.4604629265684, + "y": 78.48361403063818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 269.7644909753076, + "y": 78.43887317167184 + }, + { + "endCol": 6, + "endRow": 2, + "id": "5,6,1,2", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1314 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.639926408408428, + "y": 0.06282719071398901 + }, + [ + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 290.1371946945741, + "y": 81.63994179086133 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 288.1983481879107, + "y": 87.5660790845459 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 284.5232757104523, + "y": 92.6027449743412 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 279.4719617434633, + "y": 96.25765786070406 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 273.53812271860477, + "y": 98.17280365856553 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 267.30413516634536, + "y": 98.16034579864387 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 261.37799787266067, + "y": 96.22149929198049 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 256.3413319828653, + "y": 92.54642681452202 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.68641909650256, + "y": 87.495112847533 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 250.77127329864103, + "y": 81.56127382267448 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 250.78373115856274, + "y": 75.32728627041503 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 252.72257766522605, + "y": 69.40114897673045 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 256.3976501426845, + "y": 64.36448308693512 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 261.44896410967357, + "y": 60.70957020057226 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 267.3828031345321, + "y": 58.794424402710796 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 273.6167906867915, + "y": 58.80688226263247 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 279.5429279804762, + "y": 60.74572876929585 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 284.5795938702715, + "y": 64.42080124675431 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 288.2345067566343, + "y": 69.47211521374336 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 290.14965255449573, + "y": 75.40595423860188 + }, + { + "angle": -0.00048420184003214353, + "anglePrev": 0.0016640587536390149, + "angularSpeed": 0.0012488626401402593, + "angularVelocity": -0.002035088555384807, + "area": 1120.7724680000001, + "axes": { + "#": 1338 + }, + "bounds": { + "#": 1349 + }, + "circleRadius": 19.04419581618656, + "collisionFilter": { + "#": 1352 + }, + "constraintImpulse": { + "#": 1353 + }, + "density": 0.001, + "force": { + "#": 1354 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 799.721573279466, + "inverseInertia": 0.001250435193212608, + "inverseMass": 0.8922417605283286, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1207724680000002, + "motion": 0, + "parent": null, + "position": { + "#": 1355 + }, + "positionImpulse": { + "#": 1356 + }, + "positionPrev": { + "#": 1357 + }, + "region": { + "#": 1358 + }, + "render": { + "#": 1359 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5735445170180643, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1361 + }, + "vertices": { + "#": 1362 + } + }, + [ + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + } + ], + { + "x": -0.9512217859671122, + "y": -0.308507883046021 + }, + { + "x": -0.8092165587055513, + "y": -0.5875104774527387 + }, + { + "x": -0.5882938501383609, + "y": -0.8086472320421209 + }, + { + "x": -0.30942890491991726, + "y": -0.9509225798139727 + }, + { + "x": -0.0004842018211118419, + "y": -0.9999998827742914 + }, + { + "x": 0.308507883046021, + "y": -0.9512217859671122 + }, + { + "x": 0.5875104774527387, + "y": -0.8092165587055513 + }, + { + "x": 0.8086472320421209, + "y": -0.5882938501383609 + }, + { + "x": 0.9509225798139727, + "y": -0.30942890491991726 + }, + { + "x": 0.9999998827742914, + "y": -0.0004842018211118419 + }, + { + "max": { + "#": 1350 + }, + "min": { + "#": 1351 + } + }, + { + "x": 324.8720866342384, + "y": 111.12134059670117 + }, + { + "x": 287.1535896043876, + "y": 72.93294197570668 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 305.9650298365971, + "y": 91.74438220791619 + }, + { + "x": 0.41975848603820015, + "y": -0.021052587817135912 + }, + { + "x": 305.32552302987733, + "y": 91.59116386436868 + }, + { + "endCol": 6, + "endRow": 2, + "id": "5,6,1,2", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1360 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6663073788053566, + "y": 0.2210363266253097 + }, + [ + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 324.77647006880665, + "y": 94.71427402244571 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 322.93821425633945, + "y": 100.38216477368026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 319.4375485197588, + "y": 105.20386036763169 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 314.6192452437661, + "y": 108.7091938097678 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 308.9531373236368, + "y": 110.55293756567555 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 302.99513802206764, + "y": 110.55582244012571 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 297.3272472708331, + "y": 108.71756662765846 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 292.50555167688157, + "y": 105.21690089107788 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 289.00021823474555, + "y": 100.39859761508514 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 287.15647447883777, + "y": 94.73248969495592 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.1535896043876, + "y": 88.77449039338667 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 288.9918454168548, + "y": 83.10659964215212 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 292.49251115343543, + "y": 78.28490404820066 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 297.31081442942815, + "y": 74.77957060606458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 302.97692234955747, + "y": 72.93582685015683 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.9349216511266, + "y": 72.93294197570668 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 314.60281240236117, + "y": 74.77119778817392 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 319.4245079963127, + "y": 78.27186352475448 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 322.9298414384487, + "y": 83.09016680074724 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 324.7735851943565, + "y": 88.75627472087646 + }, + { + "angle": -0.005335628818339635, + "anglePrev": -0.002671933713861032, + "angularSpeed": 0.0021191740050473954, + "angularVelocity": -0.0026617123298066994, + "area": 628.0030680000002, + "axes": { + "#": 1384 + }, + "bounds": { + "#": 1393 + }, + "circleRadius": 14.322573731138545, + "collisionFilter": { + "#": 1396 + }, + "constraintImpulse": { + "#": 1397 + }, + "density": 0.001, + "force": { + "#": 1398 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 251.1088965588656, + "inverseInertia": 0.003982336005230214, + "inverseMass": 1.5923489087158402, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6280030680000003, + "motion": 0, + "parent": null, + "position": { + "#": 1399 + }, + "positionImpulse": { + "#": 1400 + }, + "positionPrev": { + "#": 1401 + }, + "region": { + "#": 1402 + }, + "render": { + "#": 1403 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9083343771713985, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1405 + }, + "vertices": { + "#": 1406 + } + }, + [ + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "x": -0.9259447353929972, + "y": -0.37765903537184486 + }, + { + "x": -0.7108695573397906, + "y": -0.7033238745041503 + }, + { + "x": -0.3875183397704336, + "y": -0.9218619941952085 + }, + { + "x": -0.005335603501764104, + "y": -0.9999857655663265 + }, + { + "x": 0.37765903537184486, + "y": -0.9259447353929972 + }, + { + "x": 0.7033238745041503, + "y": -0.7108695573397906 + }, + { + "x": 0.9218619941952085, + "y": -0.3875183397704336 + }, + { + "x": 0.9999857655663265, + "y": -0.005335603501764104 + }, + { + "max": { + "#": 1394 + }, + "min": { + "#": 1395 + } + }, + { + "x": 352.8132553519576, + "y": 107.5994664179509 + }, + { + "x": 324.6014372736739, + "y": 76.56906045783967 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6631449987681, + "y": 90.63076818293375 + }, + { + "x": 0.33530158863718845, + "y": -0.0017610357233474924 + }, + { + "x": 337.9648091445176, + "y": 87.72714993231712 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,1,2", + "startCol": 6, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1404 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6871945365377314, + "y": 2.9036822272664864 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 352.7248527238622, + "y": 93.3497791895368 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350.614430877961, + "y": 98.5241132174425 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 346.6835734374818, + "y": 102.4971432679996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 341.53205445014964, + "y": 104.66266055566001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 335.94413399216506, + "y": 104.69247590802783 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 330.7697999642593, + "y": 102.58205406212667 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 326.79676991370224, + "y": 98.65119662164751 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 324.63125262604177, + "y": 93.49967763431533 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 324.6014372736739, + "y": 87.9117571763307 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 326.71185911957514, + "y": 82.737423148425 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 330.64271656005434, + "y": 78.76439309786791 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 335.7942355473865, + "y": 76.59887581020752 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 341.3821560053711, + "y": 76.56906045783967 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 346.5564900332769, + "y": 78.67948230374084 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 350.5295200838339, + "y": 82.61033974421998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 352.6950373714944, + "y": 87.76185873155217 + }, + { + "angle": -0.002746379630444571, + "anglePrev": -0.0014454314689329873, + "angularSpeed": 0.0013440686786177615, + "angularVelocity": -0.0013290401581039734, + "area": 536.790174, + "axes": { + "#": 1424 + }, + "bounds": { + "#": 1432 + }, + "circleRadius": 13.294367283950617, + "collisionFilter": { + "#": 1435 + }, + "constraintImpulse": { + "#": 1436 + }, + "density": 0.001, + "force": { + "#": 1437 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 183.48032886968383, + "inverseInertia": 0.005450175537401865, + "inverseMass": 1.8629253075709244, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.536790174, + "motion": 0, + "parent": null, + "position": { + "#": 1438 + }, + "positionImpulse": { + "#": 1439 + }, + "positionPrev": { + "#": 1440 + }, + "region": { + "#": 1441 + }, + "render": { + "#": 1442 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9100802773970487, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1444 + }, + "vertices": { + "#": 1445 + } + }, + [ + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + } + ], + { + "x": -0.9021750958990794, + "y": -0.43137002253226536 + }, + { + "x": -0.6256231191595593, + "y": -0.7801254468180512 + }, + { + "x": -0.22511599246077205, + "y": -0.9743319711158006 + }, + { + "x": 0.21976085250233846, + "y": -0.975553774892725 + }, + { + "x": 0.6213286618062726, + "y": -0.7835500583996061 + }, + { + "x": 0.8997920866678001, + "y": -0.436318920939725 + }, + { + "x": 0.9999962287018331, + "y": -0.0027463761779715472 + }, + { + "max": { + "#": 1433 + }, + "min": { + "#": 1434 + } + }, + { + "x": 378.4100345442618, + "y": 106.07779126434968 + }, + { + "x": 352.32418621531434, + "y": 76.58356182858992 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 365.29326111625323, + "y": 89.87751169295207 + }, + { + "x": 0.020908662517772368, + "y": -0.000035866421894510835 + }, + { + "x": 365.1554076381039, + "y": 86.97109065684529 + }, + { + "endCol": 7, + "endRow": 2, + "id": "7,7,1,2", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1443 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.13298218835626585, + "y": 2.906430842967609 + }, + [ + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 378.2623360171921, + "y": 92.7999047558094 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.7099866295193, + "y": 98.13793459866773 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.09413545726517, + "y": 101.83962542254808 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 365.32977144116313, + "y": 103.17146155731425 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 359.5581789629609, + "y": 101.87130761813718 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.9220650272656, + "y": 98.1950262666554 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 352.34043377678313, + "y": 92.87109631909478 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 352.32418621531434, + "y": 86.95511863009474 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 354.8765356029872, + "y": 81.61708878723641 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 359.4923867752413, + "y": 77.91539796335606 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 365.25675079134334, + "y": 76.58356182858992 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 371.0283432695456, + "y": 77.88371576776696 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 375.66445720524086, + "y": 81.55999711924873 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 378.24608845572334, + "y": 86.88392706680936 + }, + { + "angle": 0.0009426238236123661, + "anglePrev": 0.0002989560034614945, + "angularSpeed": 0.0006172036393420604, + "angularVelocity": 0.0006838396082489716, + "area": 438.00552799999997, + "axes": { + "#": 1461 + }, + "bounds": { + "#": 1469 + }, + "circleRadius": 12.008959190672154, + "collisionFilter": { + "#": 1472 + }, + "constraintImpulse": { + "#": 1473 + }, + "density": 0.001, + "force": { + "#": 1474 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 122.16296885484358, + "inverseInertia": 0.008185786653467954, + "inverseMass": 2.2830762081158027, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.438005528, + "motion": 0, + "parent": null, + "position": { + "#": 1475 + }, + "positionImpulse": { + "#": 1476 + }, + "positionPrev": { + "#": 1477 + }, + "region": { + "#": 1478 + }, + "render": { + "#": 1479 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9103256301369806, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1481 + }, + "vertices": { + "#": 1482 + } + }, + [ + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + } + ], + { + "x": -0.9005434855349757, + "y": -0.4347659492882544 + }, + { + "x": -0.6227936013966416, + "y": -0.7823861770630925 + }, + { + "x": -0.22157542646013947, + "y": -0.9751432358320532 + }, + { + "x": 0.22341341810521567, + "y": -0.9747237786216895 + }, + { + "x": 0.6242674854691275, + "y": -0.7812106672249506 + }, + { + "x": 0.9013615261956882, + "y": -0.43306743019324345 + }, + { + "x": 0.9999995557301964, + "y": 0.0009426236840192617 + }, + { + "max": { + "#": 1470 + }, + "min": { + "#": 1471 + } + }, + { + "x": 401.77640843869943, + "y": 103.50929217185505 + }, + { + "x": 378.20815780052044, + "y": 76.58470337434065 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.9186712894933, + "y": 88.59369803910457 + }, + { + "x": 0.020271909913618727, + "y": 0.000010073224515289716 + }, + { + "x": 389.77901077176, + "y": 85.687288847396 + }, + { + "endCol": 8, + "endRow": 2, + "id": "7,8,1,2", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1480 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.13407749692294146, + "y": 2.9064089164857165 + }, + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 401.62414739749875, + "y": 91.27673309010814 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 399.3006096947219, + "y": 96.0895450066258 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 395.11846978658656, + "y": 99.41860430149903 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.9073513216719, + "y": 100.6026927038685 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 384.6984744158779, + "y": 99.40878216271155 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 380.52261803722024, + "y": 96.0718444190873 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 378.20815780052044, + "y": 91.25466061392315 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 378.2131951814879, + "y": 85.910662988101 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 380.5367328842647, + "y": 81.09785107158334 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 384.7188727924001, + "y": 77.7687917767101 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 389.9299912573147, + "y": 76.58470337434065 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 395.1388681631087, + "y": 77.77861391549759 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 399.3147245417664, + "y": 81.11555165912183 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 401.6291847784662, + "y": 85.93273546428598 + }, + { + "angle": 0.0008446255771025935, + "anglePrev": 0.0002864077254738519, + "angularSpeed": 0.0005145506166076235, + "angularVelocity": 0.0005709174631559441, + "area": 802.396328, + "axes": { + "#": 1498 + }, + "bounds": { + "#": 1508 + }, + "circleRadius": 16.145361796982165, + "collisionFilter": { + "#": 1511 + }, + "constraintImpulse": { + "#": 1512 + }, + "density": 0.001, + "force": { + "#": 1513 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 409.9154941824296, + "inverseInertia": 0.0024395272054658127, + "inverseMass": 1.2462669196063418, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.802396328, + "motion": 0, + "parent": null, + "position": { + "#": 1514 + }, + "positionImpulse": { + "#": 1515 + }, + "positionPrev": { + "#": 1516 + }, + "region": { + "#": 1517 + }, + "render": { + "#": 1518 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9099513273339817, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1520 + }, + "vertices": { + "#": 1521 + } + }, + [ + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": -0.9393895697355069, + "y": -0.34285162428102806 + }, + { + "x": -0.7654953575870332, + "y": -0.6434414173121745 + }, + { + "x": -0.49932015306192223, + "y": -0.8664175579627981 + }, + { + "x": -0.17269910206622216, + "y": -0.9849746291887526 + }, + { + "x": 0.17436272439973102, + "y": -0.9846814918235762 + }, + { + "x": 0.5007830368034546, + "y": -0.8655728450280255 + }, + { + "x": 0.7665811990301228, + "y": -0.6421473859586591 + }, + { + "x": 0.9399673916557223, + "y": -0.3412642709454625 + }, + { + "x": 0.9999996433038385, + "y": 0.0008446254766776907 + }, + { + "max": { + "#": 1509 + }, + "min": { + "#": 1510 + } + }, + { + "x": 433.49906231124595, + "y": 111.78301820074712 + }, + { + "x": 401.57076172798384, + "y": 76.58570347585845 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.47312438635146, + "y": 92.7306977169989 + }, + { + "x": 0.03531808312624606, + "y": -0.000025401485111014174 + }, + { + "x": 417.33883443501475, + "y": 89.82332870560931 + }, + { + "endCol": 9, + "endRow": 2, + "id": "8,9,1,2", + "startCol": 8, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1519 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.13733756495673788, + "y": 2.9073691616259794 + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 433.3707503850459, + "y": 95.54812626190204 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 431.4483007375525, + "y": 100.8155043908057 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 427.8406743566631, + "y": 105.10745882857773 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 422.9823077589431, + "y": 107.90735632708696 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 417.4594879080305, + "y": 108.87569195813938 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 411.9383116982955, + "y": 107.89802828332252 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 407.0846817602487, + "y": 105.08992778218382 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.484310712204, + "y": 100.7918852839759 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 401.57076172798384, + "y": 95.5212671717437 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 401.57549838765703, + "y": 89.91326917209577 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 403.49794803515044, + "y": 84.64589104319211 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 407.1055744160398, + "y": 80.35393660542007 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 411.96394101375984, + "y": 77.55403910691088 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 417.4867608646724, + "y": 76.58570347585845 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 423.00793707440744, + "y": 77.5633671506753 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 427.8615670124542, + "y": 80.37146765181399 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 431.46193806049894, + "y": 84.66951015002192 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 433.3754870447191, + "y": 89.9401282622541 + }, + { + "angle": 0.013961274498493374, + "anglePrev": 0.007361580282166277, + "angularSpeed": 0.00679927815253773, + "angularVelocity": 0.006613354359831922, + "area": 1091.045108, + "axes": { + "#": 1541 + }, + "bounds": { + "#": 1552 + }, + "circleRadius": 18.78999485596708, + "collisionFilter": { + "#": 1555 + }, + "constraintImpulse": { + "#": 1556 + }, + "density": 0.001, + "force": { + "#": 1557 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 757.8605778590133, + "inverseInertia": 0.0013195039156477042, + "inverseMass": 0.9165523887762117, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.091045108, + "motion": 0, + "parent": null, + "position": { + "#": 1558 + }, + "positionImpulse": { + "#": 1559 + }, + "positionPrev": { + "#": 1560 + }, + "region": { + "#": 1561 + }, + "render": { + "#": 1562 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1773160072922828, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1564 + }, + "vertices": { + "#": 1565 + } + }, + [ + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + } + ], + { + "x": -0.9466301992545978, + "y": -0.3223216807153998 + }, + { + "x": -0.8008280230507722, + "y": -0.5988943792494568 + }, + { + "x": -0.5763026706955101, + "y": -0.8172363377562346 + }, + { + "x": -0.29576714329809173, + "y": -0.9552600677016108 + }, + { + "x": 0.013960820954191419, + "y": -0.9999025429902081 + }, + { + "x": 0.3223216807153998, + "y": -0.9466301992545978 + }, + { + "x": 0.5988943792494568, + "y": -0.8008280230507722 + }, + { + "x": 0.8172363377562346, + "y": -0.5763026706955101 + }, + { + "x": 0.9552600677016108, + "y": -0.29576714329809173 + }, + { + "x": 0.9999025429902081, + "y": 0.013960820954191419 + }, + { + "max": { + "#": 1553 + }, + "min": { + "#": 1554 + } + }, + { + "x": 471.39813253244034, + "y": 109.47249351588734 + }, + { + "x": 433.82235805300803, + "y": 71.16151721325934 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.4205802011477, + "y": 89.75973936139896 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.1174155938933, + "y": 88.65543720836703 + }, + { + "endCol": 9, + "endRow": 2, + "id": "9,9,1,2", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1563 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.308624976205067, + "y": 1.104375710283577 + }, + [ + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 470.93674064371857, + "y": 92.957551811336 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 469.0418627731505, + "y": 98.52264011752051 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 465.52078786184023, + "y": 103.2309418781282 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460.7160168284391, + "y": 106.61919353888028 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 455.1001948989071, + "y": 108.3579615095386 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 449.2227677512106, + "y": 108.27589980396985 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 443.65767944502613, + "y": 106.38102193340177 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 438.9493776844185, + "y": 102.85994702209152 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 435.56112602366636, + "y": 98.05517598869035 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 433.82235805300803, + "y": 92.43935405915833 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 433.9044197585768, + "y": 86.56192691146191 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 435.79929762914486, + "y": 80.9968386052774 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 439.32037254045514, + "y": 76.28853684466971 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 444.1251435738563, + "y": 72.90028518391763 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 449.7409655033883, + "y": 71.16151721325934 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.6183926510848, + "y": 71.24357891882806 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 461.18348095726924, + "y": 73.13845678939614 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 465.8917827178769, + "y": 76.6595317007064 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 469.280034378629, + "y": 81.46430273410756 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 471.01880234928734, + "y": 87.08012466363958 + }, + { + "angle": 0.0004940021754339463, + "anglePrev": 0.0002087600781331757, + "angularSpeed": 0.0004940021754339463, + "angularVelocity": 0.0003789222115571746, + "area": 677.950314, + "axes": { + "#": 1587 + }, + "bounds": { + "#": 1596 + }, + "circleRadius": 14.881129972565159, + "collisionFilter": { + "#": 1599 + }, + "constraintImpulse": { + "#": 1600 + }, + "density": 0.001, + "force": { + "#": 1601 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 292.6404130867056, + "inverseInertia": 0.00341716302766328, + "inverseMass": 1.4750343489036277, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.677950314, + "motion": 0, + "parent": null, + "position": { + "#": 1602 + }, + "positionImpulse": { + "#": 1603 + }, + "positionPrev": { + "#": 1604 + }, + "region": { + "#": 1605 + }, + "render": { + "#": 1606 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9258900191976758, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1608 + }, + "vertices": { + "#": 1609 + } + }, + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + } + ], + { + "x": -0.92370596313751, + "y": -0.38310219741500473 + }, + { + "x": -0.7067573826320716, + "y": -0.7074560071799968 + }, + { + "x": -0.38218938506989186, + "y": -0.924084018874852 + }, + { + "x": 0.0004940021553413839, + "y": -0.9999998779809278 + }, + { + "x": 0.38310219741500473, + "y": -0.92370596313751 + }, + { + "x": 0.7074560071799968, + "y": -0.7067573826320716 + }, + { + "x": 0.924084018874852, + "y": -0.38218938506989186 + }, + { + "x": 0.9999998779809278, + "y": 0.0004940021553413839 + }, + { + "max": { + "#": 1597 + }, + "min": { + "#": 1598 + } + }, + { + "x": 500.4299971504166, + "y": 108.68496906777835 + }, + { + "x": 470.9074230432714, + "y": 76.5848507566267 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 485.50385535066005, + "y": 91.18128306401528 + }, + { + "x": 0.08711812332844848, + "y": 0.00043625252057562735 + }, + { + "x": 485.2374407036393, + "y": 88.27228649023404 + }, + { + "endCol": 10, + "endRow": 2, + "id": "9,10,1,2", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1607 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2836624284224172, + "y": 2.908999683795898 + }, + [ + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500.09741948153476, + "y": 94.0914926712511 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 497.8727694310977, + "y": 99.45539434382962 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 493.76574205313835, + "y": 103.55836596409367 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 488.3996450349815, + "y": 105.77771537140387 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 482.5936457434242, + "y": 105.77484719488996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 477.22974407084564, + "y": 103.55019714445294 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 473.12677245058165, + "y": 99.44316976649355 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.9074230432714, + "y": 94.07707274833669 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 470.91029121978534, + "y": 88.27107345677945 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.1349412702224, + "y": 82.90717178420093 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 477.24196864818174, + "y": 78.8042001639369 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 482.6080656663386, + "y": 76.5848507566267 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 488.4140649578959, + "y": 76.58771893314061 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 493.77796663047445, + "y": 78.81236898357763 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 497.88093825073844, + "y": 82.919396361537 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 500.10028765804867, + "y": 88.28549337969386 + }, + { + "angle": 0, + "anglePrev": -0.000005522899209960065, + "angularSpeed": 0, + "angularVelocity": -2.4018868329233603e-8, + "area": 460.97596999999996, + "axes": { + "#": 1627 + }, + "bounds": { + "#": 1635 + }, + "circleRadius": 12.320001714677641, + "collisionFilter": { + "#": 1638 + }, + "constraintImpulse": { + "#": 1639 + }, + "density": 0.001, + "force": { + "#": 1640 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 135.31220425278414, + "inverseInertia": 0.007390316383671093, + "inverseMass": 2.1693104740362066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.46097596999999996, + "motion": 0, + "parent": null, + "position": { + "#": 1641 + }, + "positionImpulse": { + "#": 1642 + }, + "positionPrev": { + "#": 1643 + }, + "region": { + "#": 1644 + }, + "render": { + "#": 1645 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1647 + }, + "vertices": { + "#": 1648 + } + }, + [ + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + } + ], + { + "x": -0.9009673433676825, + "y": -0.4338869048323313 + }, + { + "x": -0.6235156169322131, + "y": -0.7818108949366475 + }, + { + "x": -0.22252763105305415, + "y": -0.9749263835889949 + }, + { + "x": 0.22252763105305415, + "y": -0.9749263835889949 + }, + { + "x": 0.6235156169322131, + "y": -0.7818108949366475 + }, + { + "x": 0.9009673433676825, + "y": -0.4338869048323313 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1636 + }, + "min": { + "#": 1637 + } + }, + { + "x": 524.052715062156, + "y": 104.13302548206136 + }, + { + "x": 500.03071506215593, + "y": 76.58575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.041715062156, + "y": 88.90575476702571 + }, + { + "x": 0.9765720497246155, + "y": 0 + }, + { + "x": 511.7610125036554, + "y": 85.998465756586 + }, + { + "endCol": 10, + "endRow": 2, + "id": "10,10,1,2", + "startCol": 10, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1646 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.25533650999028623, + "y": 2.9072844365886965 + }, + [ + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 524.052715062156, + "y": 91.64675476702571 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 521.673715062156, + "y": 96.58675476702571 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 517.386715062156, + "y": 100.0057547670257 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 512.041715062156, + "y": 101.2257547670257 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 506.69671506215593, + "y": 100.0057547670257 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 502.40971506215595, + "y": 96.58675476702571 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 500.03071506215593, + "y": 91.64675476702571 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500.03071506215593, + "y": 86.16475476702571 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 502.40971506215595, + "y": 81.22475476702571 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 506.69671506215593, + "y": 77.80575476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 512.041715062156, + "y": 76.58575476702572 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 517.386715062156, + "y": 77.80575476702572 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 521.673715062156, + "y": 81.22475476702571 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 524.052715062156, + "y": 86.16475476702571 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1205.152204, + "axes": { + "#": 1664 + }, + "bounds": { + "#": 1675 + }, + "circleRadius": 19.748585390946502, + "collisionFilter": { + "#": 1678 + }, + "constraintImpulse": { + "#": 1679 + }, + "density": 0.001, + "force": { + "#": 1680 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 924.671990568659, + "inverseInertia": 0.0010814645735997858, + "inverseMass": 0.8297707100239432, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.205152204, + "motion": 0, + "parent": null, + "position": { + "#": 1681 + }, + "positionImpulse": { + "#": 1682 + }, + "positionPrev": { + "#": 1683 + }, + "region": { + "#": 1684 + }, + "render": { + "#": 1685 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1687 + }, + "vertices": { + "#": 1688 + } + }, + [ + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + } + ], + { + "x": -0.9510828167087596, + "y": -0.30893603830134786 + }, + { + "x": -0.8089600004028265, + "y": -0.5878636897685203 + }, + { + "x": -0.5878636897685203, + "y": -0.8089600004028265 + }, + { + "x": -0.30893603830134786, + "y": -0.9510828167087596 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30893603830134786, + "y": -0.9510828167087596 + }, + { + "x": 0.5878636897685203, + "y": -0.8089600004028265 + }, + { + "x": 0.8089600004028265, + "y": -0.5878636897685203 + }, + { + "x": 0.9510828167087596, + "y": -0.30893603830134786 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1676 + }, + "min": { + "#": 1677 + } + }, + { + "x": 561.8420000000002, + "y": 115.59575476702571 + }, + { + "x": 522.8320000000002, + "y": 76.58575476702573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 542.3370000000002, + "y": 96.09075476702571 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 542.3370000000002, + "y": 93.18348405199006 + }, + { + "endCol": 11, + "endRow": 2, + "id": "10,11,1,2", + "startCol": 10, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1686 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 561.8420000000002, + "y": 99.17975476702571 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 559.9330000000002, + "y": 105.05675476702571 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 556.3010000000003, + "y": 110.05475476702571 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 551.3030000000002, + "y": 113.68675476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 545.4260000000003, + "y": 115.59575476702571 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 539.2480000000002, + "y": 115.59575476702571 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 533.3710000000002, + "y": 113.68675476702572 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 528.3730000000003, + "y": 110.05475476702571 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 524.7410000000002, + "y": 105.05675476702571 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 522.8320000000002, + "y": 99.17975476702571 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 522.8320000000002, + "y": 93.00175476702572 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 524.7410000000002, + "y": 87.1247547670257 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 528.3730000000003, + "y": 82.12675476702572 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 533.3710000000002, + "y": 78.49475476702571 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 539.2480000000002, + "y": 76.58575476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 545.4260000000003, + "y": 76.58575476702573 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 551.3030000000002, + "y": 78.49475476702571 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 556.3010000000003, + "y": 82.12675476702572 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 559.9330000000002, + "y": 87.1247547670257 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 561.8420000000002, + "y": 93.00175476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 362.584524, + "axes": { + "#": 1710 + }, + "bounds": { + "#": 1717 + }, + "circleRadius": 10.994041495198903, + "collisionFilter": { + "#": 1720 + }, + "constraintImpulse": { + "#": 1721 + }, + "density": 0.001, + "force": { + "#": 1722 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 83.73095584960791, + "inverseInertia": 0.011943014263400204, + "inverseMass": 2.7579776129661835, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.362584524, + "motion": 0, + "parent": null, + "position": { + "#": 1723 + }, + "positionImpulse": { + "#": 1724 + }, + "positionPrev": { + "#": 1725 + }, + "region": { + "#": 1726 + }, + "render": { + "#": 1727 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1729 + }, + "vertices": { + "#": 1730 + } + }, + [ + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + } + ], + { + "x": -0.8660831831124717, + "y": -0.4998999099117431 + }, + { + "x": -0.4998999099117431, + "y": -0.8660831831124717 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4998999099117431, + "y": -0.8660831831124717 + }, + { + "x": 0.8660831831124717, + "y": -0.4998999099117431 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1718 + }, + "min": { + "#": 1719 + } + }, + { + "x": 583.0800000000003, + "y": 97.82375476702572 + }, + { + "x": 561.8420000000002, + "y": 76.58575476702573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 572.4610000000002, + "y": 87.20475476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 572.4610000000002, + "y": 84.29748405199007 + }, + { + "endCol": 12, + "endRow": 2, + "id": "11,12,1,2", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1728 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 583.0800000000003, + "y": 90.04975476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.2350000000002, + "y": 94.97875476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575.3060000000003, + "y": 97.82375476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 569.6160000000002, + "y": 97.82375476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 564.6870000000002, + "y": 94.97875476702572 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 561.8420000000002, + "y": 90.04975476702572 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 561.8420000000002, + "y": 84.35975476702572 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 564.6870000000002, + "y": 79.43075476702572 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 569.6160000000002, + "y": 76.58575476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 575.3060000000003, + "y": 76.58575476702573 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 580.2350000000002, + "y": 79.43075476702572 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 583.0800000000003, + "y": 84.35975476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 805.817864, + "axes": { + "#": 1744 + }, + "bounds": { + "#": 1754 + }, + "circleRadius": 16.1798268175583, + "collisionFilter": { + "#": 1757 + }, + "constraintImpulse": { + "#": 1758 + }, + "density": 0.001, + "force": { + "#": 1759 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 413.41882770208514, + "inverseInertia": 0.002418854519902545, + "inverseMass": 1.2409752186878795, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.805817864, + "motion": 0, + "parent": null, + "position": { + "#": 1760 + }, + "positionImpulse": { + "#": 1761 + }, + "positionPrev": { + "#": 1762 + }, + "region": { + "#": 1763 + }, + "render": { + "#": 1764 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1766 + }, + "vertices": { + "#": 1767 + } + }, + [ + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + } + ], + { + "x": -0.9396790547219881, + "y": -0.34205741348023866 + }, + { + "x": -0.7659992927826746, + "y": -0.6428414139244937 + }, + { + "x": -0.5000818959792287, + "y": -0.8659781159554899 + }, + { + "x": -0.17368381518741813, + "y": -0.9848014684909557 + }, + { + "x": 0.17368381518741813, + "y": -0.9848014684909557 + }, + { + "x": 0.5000818959792287, + "y": -0.8659781159554899 + }, + { + "x": 0.7659992927826746, + "y": -0.6428414139244937 + }, + { + "x": 0.9396790547219881, + "y": -0.34205741348023866 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1755 + }, + "min": { + "#": 1756 + } + }, + { + "x": 614.9480000000002, + "y": 108.94575476702573 + }, + { + "x": 583.0800000000003, + "y": 76.58575476702573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.0140000000002, + "y": 92.76575476702573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.0140000000002, + "y": 89.85848405199008 + }, + { + "endCol": 12, + "endRow": 2, + "id": "12,12,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1765 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 614.9480000000002, + "y": 95.57575476702573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.0260000000003, + "y": 100.85575476702573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.4140000000002, + "y": 105.15975476702573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.5480000000002, + "y": 107.96975476702573 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 599.0140000000002, + "y": 108.94575476702573 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 593.4800000000002, + "y": 107.96975476702573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 588.6140000000003, + "y": 105.15975476702573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 585.0020000000002, + "y": 100.85575476702573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 583.0800000000003, + "y": 95.57575476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 583.0800000000003, + "y": 89.95575476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 585.0020000000002, + "y": 84.67575476702572 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 588.6140000000003, + "y": 80.37175476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 593.4800000000002, + "y": 77.56175476702573 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 599.0140000000002, + "y": 76.58575476702573 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 604.5480000000002, + "y": 77.56175476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 609.4140000000002, + "y": 80.37175476702573 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 613.0260000000003, + "y": 84.67575476702572 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 614.9480000000002, + "y": 89.95575476702572 + }, + { + "angle": 0.04377064596633346, + "anglePrev": 0.04147038709696158, + "angularSpeed": 0.0031176721519219214, + "angularVelocity": 0.002273878345049239, + "area": 1175.440884, + "axes": { + "#": 1787 + }, + "bounds": { + "#": 1798 + }, + "circleRadius": 19.50347222222222, + "collisionFilter": { + "#": 1801 + }, + "constraintImpulse": { + "#": 1802 + }, + "density": 0.001, + "force": { + "#": 1803 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 879.6410498592595, + "inverseInertia": 0.00113682734583612, + "inverseMass": 0.8507446130315133, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1754408840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1804 + }, + "positionImpulse": { + "#": 1805 + }, + "positionPrev": { + "#": 1806 + }, + "region": { + "#": 1807 + }, + "render": { + "#": 1808 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.3502076320904531, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1810 + }, + "vertices": { + "#": 1811 + } + }, + [ + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + } + ], + { + "x": -0.9366518491404511, + "y": -0.3502617785339608 + }, + { + "x": -0.7825176923187831, + "y": -0.6226283491843967 + }, + { + "x": -0.5518289745656848, + "y": -0.8339573027618288 + }, + { + "x": -0.26702949937186615, + "y": -0.9636883554683074 + }, + { + "x": 0.04375667083123741, + "y": -0.9990422182059009 + }, + { + "x": 0.3502617785339608, + "y": -0.9366518491404511 + }, + { + "x": 0.6226283491843967, + "y": -0.7825176923187831 + }, + { + "x": 0.8339573027618288, + "y": -0.5518289745656848 + }, + { + "x": 0.9636883554683074, + "y": -0.26702949937186615 + }, + { + "x": 0.9990422182059009, + "y": 0.04375667083123741 + }, + { + "max": { + "#": 1799 + }, + "min": { + "#": 1800 + } + }, + { + "x": 71.63439639885453, + "y": 111.9148370273582 + }, + { + "x": 32.643166817347485, + "y": 72.89919294631918 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52.021218669353864, + "y": 92.27724479832554 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 51.8340792681637, + "y": 92.24025332727892 + }, + { + "endCol": 1, + "endRow": 2, + "id": "0,1,1,2", + "startCol": 0, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1809 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.177917951779186, + "y": 0.048577814253107476 + }, + [ + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 71.13226731594804, + "y": 96.16820735629388 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 68.99515277379624, + "y": 101.8831680240258 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 65.19556165319784, + "y": 106.65848427703673 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 60.10633504364366, + "y": 110.02602202984747 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 54.226411726877934, + "y": 111.6552966503319 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 48.13025611138553, + "y": 111.38829344491971 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 42.41529544365357, + "y": 109.2511789027679 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 37.639979190642705, + "y": 105.45158778216948 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 34.27244143783195, + "y": 100.36236117261535 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 32.643166817347485, + "y": 94.48243785584961 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 32.91017002275971, + "y": 88.3862822403572 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 35.04728456491149, + "y": 82.67132157262527 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 38.84687568550987, + "y": 77.89600531961435 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 43.93610229506405, + "y": 74.52846756680361 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 49.81602561182978, + "y": 72.89919294631918 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 55.912181227322186, + "y": 73.16619615173137 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 61.62714189505416, + "y": 75.30331069388315 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 66.40245814806504, + "y": 79.1029018144816 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 69.76999590087578, + "y": 84.19212842403573 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 71.39927052136026, + "y": 90.07205174080147 + }, + { + "angle": -0.025929161884638185, + "anglePrev": -0.024811539158458233, + "angularSpeed": 0.0007189211363093184, + "angularVelocity": -0.0020048564168168546, + "area": 568.46124, + "axes": { + "#": 1833 + }, + "bounds": { + "#": 1841 + }, + "circleRadius": 13.68102709190672, + "collisionFilter": { + "#": 1844 + }, + "constraintImpulse": { + "#": 1845 + }, + "density": 0.001, + "force": { + "#": 1846 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 205.77002535077511, + "inverseInertia": 0.004859794317929956, + "inverseMass": 1.7591348884226479, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.56846124, + "motion": 0, + "parent": null, + "position": { + "#": 1847 + }, + "positionImpulse": { + "#": 1848 + }, + "positionPrev": { + "#": 1849 + }, + "region": { + "#": 1850 + }, + "render": { + "#": 1851 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.40021104775196376, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1853 + }, + "vertices": { + "#": 1854 + } + }, + [ + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + } + ], + { + "x": -0.9119100381626636, + "y": -0.41039015862733486 + }, + { + "x": -0.6435528056786566, + "y": -0.7654017156390028 + }, + { + "x": -0.24774512964233306, + "y": -0.9688252426204135 + }, + { + "x": 0.1971929384609448, + "y": -0.9803647000076744 + }, + { + "x": 0.6030129892472199, + "y": -0.7977313675662578 + }, + { + "x": 0.8894115115653841, + "y": -0.4571073868304673 + }, + { + "x": 0.9996638581155628, + "y": -0.025926256527081016 + }, + { + "max": { + "#": 1842 + }, + "min": { + "#": 1843 + } + }, + { + "x": 95.48454466351713, + "y": 117.97490905061434 + }, + { + "x": 68.41917558106158, + "y": 90.30221580531742 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 81.83161164547538, + "y": 103.97861704819643 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 81.81480981549421, + "y": 104.07022326505883 + }, + { + "endCol": 1, + "endRow": 2, + "id": "1,1,1,2", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1852 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.07103890197879537, + "y": 0.062100257382553536 + }, + [ + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 95.24404770988917, + "y": 106.67578942274196 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 92.74516724005542, + "y": 112.22844251810852 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 88.08518334520218, + "y": 116.1465755045841 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 82.18630876102236, + "y": 117.65501829107541 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 76.21717402165417, + "y": 116.45437202207361 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 71.36035798724734, + "y": 112.78305699773583 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 68.57701463079844, + "y": 107.3673982418584 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 68.41917558106158, + "y": 101.28144467365087 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 70.91805605089533, + "y": 95.72879157828433 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 75.57803994574857, + "y": 91.81065859180875 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 81.4769145299284, + "y": 90.30221580531742 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 87.44604926929658, + "y": 91.50286207431924 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 92.30286530370341, + "y": 95.17417709865703 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 95.08620866015231, + "y": 100.58983585453443 + }, + { + "angle": 0.05314044815593639, + "anglePrev": 0.04100389910960898, + "angularSpeed": 0.010798669326103828, + "angularVelocity": 0.011582935803483373, + "area": 366.82313200000004, + "axes": { + "#": 1870 + }, + "bounds": { + "#": 1877 + }, + "circleRadius": 11.058170438957475, + "collisionFilter": { + "#": 1880 + }, + "constraintImpulse": { + "#": 1881 + }, + "density": 0.001, + "force": { + "#": 1882 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 85.70002548110048, + "inverseInertia": 0.011668607965822963, + "inverseMass": 2.726109431942803, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.36682313200000005, + "motion": 0, + "parent": null, + "position": { + "#": 1883 + }, + "positionImpulse": { + "#": 1884 + }, + "positionPrev": { + "#": 1885 + }, + "region": { + "#": 1886 + }, + "render": { + "#": 1887 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.38083016234244416, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1889 + }, + "vertices": { + "#": 1890 + } + }, + [ + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + } + ], + { + "x": -0.8382390189570633, + "y": -0.5453029865110777 + }, + { + "x": -0.45330494435829016, + "y": -0.8913555000224813 + }, + { + "x": 0.053115441071121205, + "y": -0.9985883786224533 + }, + { + "x": 0.5453029865110777, + "y": -0.8382390189570633 + }, + { + "x": 0.8913555000224813, + "y": -0.45330494435829016 + }, + { + "x": 0.9985883786224533, + "y": 0.053115441071121205 + }, + { + "max": { + "#": 1878 + }, + "min": { + "#": 1879 + } + }, + { + "x": 115.83487500564794, + "y": 121.67308308549482 + }, + { + "x": 93.92275713131782, + "y": 99.77505464703896 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 104.7406959957298, + "y": 110.59299351145096 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 104.77626587058091, + "y": 110.53521641558727 + }, + { + "endCol": 2, + "endRow": 2, + "id": "1,2,2,2", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1888 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1664464128912897, + "y": 0.11616606951115216 + }, + [ + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 115.25460207545069, + "y": 114.01827947714905 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 112.13334889444366, + "y": 118.81626567763502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 107.0313299092666, + "y": 121.41093237586296 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 101.3154100300317, + "y": 121.10689959117185 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 96.51742382954573, + "y": 117.98564641016482 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 93.92275713131782, + "y": 112.88362742498776 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 94.2267899160089, + "y": 107.16770754575286 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 97.34804309701593, + "y": 102.3697213452669 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 102.45006208219299, + "y": 99.77505464703896 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.16598196142789, + "y": 100.07908743173006 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 112.96396816191385, + "y": 103.2003406127371 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 115.55863486014177, + "y": 108.30235959791415 + }, + { + "angle": 0.2813430533495222, + "anglePrev": 0.2593222475320925, + "angularSpeed": 0.03764259134380586, + "angularVelocity": 0.02196977567782271, + "area": 389.07123600000006, + "axes": { + "#": 1904 + }, + "bounds": { + "#": 1911 + }, + "circleRadius": 11.387988683127572, + "collisionFilter": { + "#": 1914 + }, + "constraintImpulse": { + "#": 1915 + }, + "density": 0.001, + "force": { + "#": 1916 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 96.41081889936525, + "inverseInertia": 0.010372279910243391, + "inverseMass": 2.5702234127634145, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.38907123600000004, + "motion": 0, + "parent": null, + "position": { + "#": 1917 + }, + "positionImpulse": { + "#": 1918 + }, + "positionPrev": { + "#": 1919 + }, + "region": { + "#": 1920 + }, + "render": { + "#": 1921 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2613716662720973, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1923 + }, + "vertices": { + "#": 1924 + } + }, + [ + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + } + ], + { + "x": -0.6932537972342897, + "y": -0.7206935358529579 + }, + { + "x": -0.239757540577199, + "y": -0.9708327980328915 + }, + { + "x": 0.27764614765751516, + "y": -0.9606834112708211 + }, + { + "x": 0.7206935358529579, + "y": -0.6932537972342897 + }, + { + "x": 0.9708327980328915, + "y": -0.239757540577199 + }, + { + "x": 0.9606834112708211, + "y": 0.27764614765751516 + }, + { + "max": { + "#": 1912 + }, + "min": { + "#": 1913 + } + }, + { + "x": 137.30848973514372, + "y": 126.08624047044007 + }, + { + "x": 114.37942012551586, + "y": 103.106237764446 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.76516084664159, + "y": 114.49197848557175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.86564089428086, + "y": 114.56146157403076 + }, + { + "endCol": 2, + "endRow": 2, + "id": "2,2,2,2", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1922 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.12181234691811937, + "y": 0.004308081879614178 + }, + [ + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 135.51445517347392, + "y": 120.37722012281952 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 131.26565993051952, + "y": 124.46424642362163 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125.54218723542405, + "y": 125.87771920669749 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 119.87991920939382, + "y": 124.24127281240408 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 115.7928929085917, + "y": 119.9924775694497 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 114.37942012551586, + "y": 114.2690048743542 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 116.01586651980926, + "y": 108.60673684832398 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 120.26466176276364, + "y": 104.51971054752185 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 125.98813445785913, + "y": 103.106237764446 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.65040248388937, + "y": 104.74268415873942 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.73742878469147, + "y": 108.9914794016938 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 137.15090156776733, + "y": 114.7149520967893 + }, + { + "angle": 0.02120241345606209, + "anglePrev": 0.0162739677103303, + "angularSpeed": 0.0055031788610107775, + "angularVelocity": 0.005369601886186879, + "area": 815.3892460000001, + "axes": { + "#": 1938 + }, + "bounds": { + "#": 1948 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1951 + }, + "constraintImpulse": { + "#": 1952 + }, + "density": 0.001, + "force": { + "#": 1953 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 423.2982063032686, + "inverseInertia": 0.0023624007498948816, + "inverseMass": 1.2264081294984357, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8153892460000001, + "motion": 0, + "parent": null, + "position": { + "#": 1954 + }, + "positionImpulse": { + "#": 1955 + }, + "positionPrev": { + "#": 1956 + }, + "region": { + "#": 1957 + }, + "render": { + "#": 1958 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.38900784080585105, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1960 + }, + "vertices": { + "#": 1961 + } + }, + [ + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + } + ], + { + "x": -0.9322549581328102, + "y": -0.36180200806075197 + }, + { + "x": -0.7522715514729097, + "y": -0.6588531800367525 + }, + { + "x": -0.4815097664115309, + "y": -0.8764407252349201 + }, + { + "x": -0.15262498871412764, + "y": -0.9882841761457141 + }, + { + "x": 0.19438324742665886, + "y": -0.9809256613627082 + }, + { + "x": 0.5182310932265638, + "y": -0.8552406293045252 + }, + { + "x": 0.7795254797658974, + "y": -0.626370518459919 + }, + { + "x": 0.9467544615571333, + "y": -0.32195650253048613 + }, + { + "x": 0.9997752372520393, + "y": 0.02120082492802112 + }, + { + "max": { + "#": 1949 + }, + "min": { + "#": 1950 + } + }, + { + "x": 168.67598938384228, + "y": 131.08171321960214 + }, + { + "x": 136.2844000742719, + "y": 98.22026176231114 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 152.36871110819413, + "y": 114.49160374858808 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 152.35822345555468, + "y": 114.50393653684944 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,2,2", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1959 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.13232455451094438, + "y": -0.015363743846307898 + }, + [ + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 168.3331950796232, + "y": 117.65677539100865 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 166.2880107639974, + "y": 122.92660025670561 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 162.56402775512242, + "y": 127.1786044370435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 157.6102144375271, + "y": 129.9001912194951 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 152.02366768249058, + "y": 130.7629457348651 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 146.47871694596282, + "y": 129.66414123474652 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 141.64473069086077, + "y": 126.73499837624958 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 138.10434682586245, + "y": 122.32894900198472 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 136.2844000742719, + "y": 116.977161747116 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 136.40422713676506, + "y": 111.3264321061675 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 138.44941145239088, + "y": 106.05660724047054 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 142.17339446126584, + "y": 101.80460306013268 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.12720777886116, + "y": 99.08301627768111 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.71375453389768, + "y": 98.22026176231114 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 158.25870527042545, + "y": 99.3190662624297 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 163.0926915255275, + "y": 102.2482091209266 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 166.63307539052582, + "y": 106.65425849519143 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 168.45302214211637, + "y": 112.00604575006015 + }, + { + "angle": -0.039860708403462806, + "anglePrev": -0.037082442396971387, + "angularSpeed": 0.00043045034690423003, + "angularVelocity": -0.0030055051207861644, + "area": 317.56207599999993, + "axes": { + "#": 1981 + }, + "bounds": { + "#": 1988 + }, + "circleRadius": 10.288365912208505, + "collisionFilter": { + "#": 1991 + }, + "constraintImpulse": { + "#": 1992 + }, + "density": 0.001, + "force": { + "#": 1993 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 64.22805737291344, + "inverseInertia": 0.015569519628998225, + "inverseMass": 3.148990624434639, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.3175620759999999, + "motion": 0, + "parent": null, + "position": { + "#": 1994 + }, + "positionImpulse": { + "#": 1995 + }, + "positionPrev": { + "#": 1996 + }, + "region": { + "#": 1997 + }, + "render": { + "#": 1998 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6798000641973672, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2000 + }, + "vertices": { + "#": 2001 + } + }, + [ + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + } + ], + { + "x": -0.8852428610706323, + "y": -0.4651290970510023 + }, + { + "x": -0.5341498992675219, + "y": -0.8453897829477808 + }, + { + "x": -0.03985015362102776, + "y": -0.9992056671458485 + }, + { + "x": 0.4651290970510023, + "y": -0.8852428610706323 + }, + { + "x": 0.8453897829477808, + "y": -0.5341498992675219 + }, + { + "x": 0.9992056671458485, + "y": -0.03985015362102776 + }, + { + "max": { + "#": 1989 + }, + "min": { + "#": 1990 + } + }, + { + "x": 187.62602179407702, + "y": 127.15358427243899 + }, + { + "x": 167.3427385749141, + "y": 106.43484956451567 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.58979491488878, + "y": 116.47107644370388 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.85391002018164, + "y": 116.6245028434941 + }, + { + "endCol": 3, + "endRow": 2, + "id": "3,3,2,2", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1999 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04026741962849201, + "y": -0.06593329523840907 + }, + [ + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 187.62602179407702, + "y": 118.7359303086275 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 185.1489260109678, + "y": 123.45038780459696 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180.64671043318396, + "y": 126.29506140470654 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175.32494104996516, + "y": 126.50730332289208 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 170.6104835539957, + "y": 124.03020753978291 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 167.76580995388616, + "y": 119.52799196199905 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 167.55356803570055, + "y": 114.20622257878026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 170.03066381880976, + "y": 109.4917650828108 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 174.53287939659361, + "y": 106.64709148270121 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 179.8546487798124, + "y": 106.43484956451567 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 184.56910627578188, + "y": 108.91194534762485 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 187.4137798758914, + "y": 113.41416092540871 + }, + { + "angle": -0.034334007930191944, + "anglePrev": -0.027317370611307873, + "angularSpeed": 0.008747927158259354, + "angularVelocity": -0.006978061588162391, + "area": 1084.703512, + "axes": { + "#": 2015 + }, + "bounds": { + "#": 2026 + }, + "circleRadius": 18.735468106995885, + "collisionFilter": { + "#": 2029 + }, + "constraintImpulse": { + "#": 2030 + }, + "density": 0.001, + "force": { + "#": 2031 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 749.0761960708147, + "inverseInertia": 0.0013349776768309747, + "inverseMass": 0.9219109083146398, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0847035120000001, + "motion": 0, + "parent": null, + "position": { + "#": 2032 + }, + "positionImpulse": { + "#": 2033 + }, + "positionPrev": { + "#": 2034 + }, + "region": { + "#": 2035 + }, + "render": { + "#": 2036 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.35855499957273823, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2038 + }, + "vertices": { + "#": 2039 + } + }, + [ + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + } + ], + { + "x": -0.9610780491313659, + "y": -0.27627700497480473 + }, + { + "x": -0.8287377005055119, + "y": -0.5596372251386043 + }, + { + "x": -0.6151813770863696, + "y": -0.7883856120491533 + }, + { + "x": -0.34156936726130854, + "y": -0.9398565674339405 + }, + { + "x": -0.034327262701773345, + "y": -0.999410645848544 + }, + { + "x": 0.27627700497480473, + "y": -0.9610780491313659 + }, + { + "x": 0.5596372251386043, + "y": -0.8287377005055119 + }, + { + "x": 0.7883856120491533, + "y": -0.6151813770863696 + }, + { + "x": 0.9398565674339405, + "y": -0.34156936726130854 + }, + { + "x": 0.999410645848544, + "y": -0.034327262701773345 + }, + { + "max": { + "#": 2027 + }, + "min": { + "#": 2028 + } + }, + { + "x": 223.55163604906232, + "y": 141.1801800041445 + }, + { + "x": 186.34237396241787, + "y": 103.63276033915706 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 204.95692884065613, + "y": 122.22746754756326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 205.10831361500632, + "y": 122.19910363764514 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,2,2", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2037 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.19715298118597957, + "y": 0.0525544397145552 + }, + [ + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 223.55163604906232, + "y": 124.52151415424903 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 221.93207844834717, + "y": 130.15542950487026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 218.6518886531307, + "y": 135.01289220749175 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 214.03094079052457, + "y": 138.6186417621718 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 208.52142743993454, + "y": 140.62094834201167 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 202.66288223397035, + "y": 140.82217475596948 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 197.02896688334914, + "y": 139.20261715525436 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 192.17150418072774, + "y": 135.92242736003791 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 188.56575462604766, + "y": 131.3014794974317 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 186.56344804620775, + "y": 125.79196614684167 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 186.36222163224994, + "y": 119.9334209408775 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 187.9817792329651, + "y": 114.29950559025625 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 191.26196902818157, + "y": 109.44204288763483 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 195.8829168907877, + "y": 105.8362933329548 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 201.39243024137772, + "y": 103.83398675311487 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 207.25097544734192, + "y": 103.63276033915706 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 212.88489079796312, + "y": 105.25231793987224 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 217.74235350058453, + "y": 108.53250773508864 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 221.3481030552646, + "y": 113.15345559769484 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 223.3504096351045, + "y": 118.66296894828486 + }, + { + "angle": -0.03730134647387984, + "anglePrev": -0.04139697975855535, + "angularSpeed": 0.005388375272203403, + "angularVelocity": 0.004004482363088618, + "area": 445.4528199999999, + "axes": { + "#": 2061 + }, + "bounds": { + "#": 2069 + }, + "circleRadius": 12.110553840877916, + "collisionFilter": { + "#": 2072 + }, + "constraintImpulse": { + "#": 2073 + }, + "density": 0.001, + "force": { + "#": 2074 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 126.35249452584083, + "inverseInertia": 0.00791436689677295, + "inverseMass": 2.2449066547608796, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4454528199999999, + "motion": 0, + "parent": null, + "position": { + "#": 2075 + }, + "positionImpulse": { + "#": 2076 + }, + "positionPrev": { + "#": 2077 + }, + "region": { + "#": 2078 + }, + "render": { + "#": 2079 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7398940661889744, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2081 + }, + "vertices": { + "#": 2082 + } + }, + [ + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + } + ], + { + "x": -0.9164911645370909, + "y": -0.40005492788546765 + }, + { + "x": -0.6522395998221585, + "y": -0.7580128656057432 + }, + { + "x": -0.25882526126491595, + "y": -0.9659241606519363 + }, + { + "x": 0.18611162199659187, + "y": -0.9825286072974146 + }, + { + "x": 0.5939280411536728, + "y": -0.8045181675582974 + }, + { + "x": 0.8841244546209885, + "y": -0.4672514834017541 + }, + { + "x": 0.999304385437184, + "y": -0.037292696952776504 + }, + { + "max": { + "#": 2070 + }, + "min": { + "#": 2071 + } + }, + { + "x": 243.69986640777017, + "y": 122.33504605965365 + }, + { + "x": 219.58391794497308, + "y": 97.46152305409016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.48320864211766, + "y": 109.56409846611994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.70816606849243, + "y": 109.62276333728272 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,2,2", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2080 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.2335664319147952, + "y": -0.02352113726513494 + }, + [ + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 243.38249933926224, + "y": 111.8169089119517 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 241.2262197181273, + "y": 116.75675862580722 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 237.14145380404182, + "y": 120.27153549313822 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 231.93486049491273, + "y": 121.66667387814972 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 226.63876471309703, + "y": 120.66348173811191 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 222.30339187548884, + "y": 117.46293313530501 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 219.78492558154855, + "y": 112.6975386577946 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 219.58391794497308, + "y": 107.31128802028819 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 221.740197566108, + "y": 102.37143830643267 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 225.8249634801935, + "y": 98.85666143910167 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 231.0315567893226, + "y": 97.46152305409016 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 236.3276525711383, + "y": 98.46471519412798 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 240.66302540874648, + "y": 101.66526379693488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 243.18149170268677, + "y": 106.43065827444529 + }, + { + "angle": 0.11292591947371924, + "anglePrev": 0.07476671944658288, + "angularSpeed": 0.03593500332371356, + "angularVelocity": 0.03866726019818936, + "area": 911.0345159999998, + "axes": { + "#": 2098 + }, + "bounds": { + "#": 2108 + }, + "circleRadius": 17.203746570644718, + "collisionFilter": { + "#": 2111 + }, + "constraintImpulse": { + "#": 2112 + }, + "density": 0.001, + "force": { + "#": 2113 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 528.4283772509327, + "inverseInertia": 0.0018924040476447272, + "inverseMass": 1.0976532529092455, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9110345159999998, + "motion": 0, + "parent": null, + "position": { + "#": 2114 + }, + "positionImpulse": { + "#": 2115 + }, + "positionPrev": { + "#": 2116 + }, + "region": { + "#": 2117 + }, + "render": { + "#": 2118 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7606140125321308, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2120 + }, + "vertices": { + "#": 2121 + } + }, + [ + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + } + ], + { + "x": -0.8952150422343947, + "y": -0.4456344108765286 + }, + { + "x": -0.6886910352937069, + "y": -0.7250549344057193 + }, + { + "x": -0.3991983788817039, + "y": -0.9168645779493388 + }, + { + "x": -0.061648989863562334, + "y": -0.9980978920170119 + }, + { + "x": 0.28359403077486195, + "y": -0.95894443306631 + }, + { + "x": 0.5943797990546189, + "y": -0.8041844654529153 + }, + { + "x": 0.8335672051499547, + "y": -0.5524180613434841 + }, + { + "x": 0.9722737714086446, + "y": -0.2338454905077512 + }, + { + "x": 0.9936306413183771, + "y": 0.11268606228469727 + }, + { + "max": { + "#": 2109 + }, + "min": { + "#": 2110 + } + }, + { + "x": 276.6599749668811, + "y": 131.05659263619648 + }, + { + "x": 242.29466731546913, + "y": 96.10751237579339 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 259.46535090872925, + "y": 113.20193392903474 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 258.9444616002267, + "y": 113.11747065895474 + }, + { + "endCol": 5, + "endRow": 2, + "id": "5,5,2,2", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2119 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5337412391196494, + "y": 0.04519300387734404 + }, + [ + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.9628479659008, + "y": 118.07903592188006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 273.3001283259588, + "y": 123.42805434763511 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.9678289255779, + "y": 127.54307462771379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.4901907193522, + "y": 129.92801166707076 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 257.5266998931833, + "y": 130.29635548227608 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 251.7971453323177, + "y": 128.60192208610445 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 246.99269366218084, + "y": 125.05090967422547 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 243.69192247595402, + "y": 120.07023506367577 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 242.29466731546913, + "y": 114.2607813874254 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 242.96785385155786, + "y": 108.32483193618941 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 245.63057349149992, + "y": 102.97581351043438 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 249.9628728918809, + "y": 98.8607932303557 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 255.44051109810653, + "y": 96.47585619099871 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 261.4040019242752, + "y": 96.10751237579339 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 267.133556485141, + "y": 97.80194577196504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 271.9380081552779, + "y": 101.35295818384401 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 275.2387793415048, + "y": 106.33363279439376 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 276.6360345019895, + "y": 112.1430864706441 + }, + { + "angle": -0.0014337171513242103, + "anglePrev": -0.004269734316149387, + "angularSpeed": 0.004617878805741407, + "angularVelocity": 0.002893528324643838, + "area": 677.77246, + "axes": { + "#": 2141 + }, + "bounds": { + "#": 2150 + }, + "circleRadius": 14.879243827160494, + "collisionFilter": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "density": 0.001, + "force": { + "#": 2155 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 292.48689019105535, + "inverseInertia": 0.0034189566559608537, + "inverseMass": 1.4754214120768494, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.67777246, + "motion": 0, + "parent": null, + "position": { + "#": 2156 + }, + "positionImpulse": { + "#": 2157 + }, + "positionPrev": { + "#": 2158 + }, + "region": { + "#": 2159 + }, + "render": { + "#": 2160 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4527240015315728, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2162 + }, + "vertices": { + "#": 2163 + } + }, + [ + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + } + ], + { + "x": -0.9244531784775342, + "y": -0.3812955819345203 + }, + { + "x": -0.7081198452145032, + "y": -0.7060922636691247 + }, + { + "x": -0.38394481951782894, + "y": -0.9233560394373461 + }, + { + "x": -0.0014337166601459369, + "y": -0.999998972227741 + }, + { + "x": 0.3812955819345203, + "y": -0.9244531784775342 + }, + { + "x": 0.7060922636691247, + "y": -0.7081198452145032 + }, + { + "x": 0.9233560394373461, + "y": -0.38394481951782894 + }, + { + "x": 0.999998972227741, + "y": -0.0014337166601459369 + }, + { + "max": { + "#": 2151 + }, + "min": { + "#": 2152 + } + }, + { + "x": 307.89231957060764, + "y": 138.09516560929194 + }, + { + "x": 277.8370013590912, + "y": 107.73080964880712 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 292.43414844027495, + "y": 122.32795672999094 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 291.8616532316242, + "y": 122.22062914794962 + }, + { + "endCol": 6, + "endRow": 2, + "id": "5,6,2,2", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2161 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5725573366309504, + "y": 0.1525701508245163 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 307.03129552145873, + "y": 125.21003151914657 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 304.8179868265894, + "y": 130.57621029190614 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300.71787788722884, + "y": 134.68809291247982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 295.3580676838736, + "y": 136.91677965224594 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 289.5520736511194, + "y": 136.9251038111748 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 284.1858948783597, + "y": 134.7117951163053 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280.0740122577861, + "y": 130.6116861769448 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 277.8453255180199, + "y": 125.2518759735896 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 277.8370013590912, + "y": 119.44588194083532 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 280.0503100539605, + "y": 114.07970316807575 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 284.15041899332107, + "y": 109.96782054750211 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 289.5102291966763, + "y": 107.7391338077359 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 295.31622322943053, + "y": 107.73080964880712 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 300.6824020021902, + "y": 109.94411834367658 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 304.7942846227638, + "y": 114.0442272830371 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 307.02297136253003, + "y": 119.40403748639228 + }, + { + "angle": 0.016317112844225545, + "anglePrev": 0.01618564693155867, + "angularSpeed": 0.005467271781167413, + "angularVelocity": 0.0007915651316966841, + "area": 645.4580440000001, + "axes": { + "#": 2181 + }, + "bounds": { + "#": 2190 + }, + "circleRadius": 14.519761659807955, + "collisionFilter": { + "#": 2193 + }, + "constraintImpulse": { + "#": 2194 + }, + "density": 0.001, + "force": { + "#": 2195 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 265.26173364337563, + "inverseInertia": 0.003769861510987576, + "inverseMass": 1.5492873770738844, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6454580440000001, + "motion": 0, + "parent": null, + "position": { + "#": 2196 + }, + "positionImpulse": { + "#": 2197 + }, + "positionPrev": { + "#": 2198 + }, + "region": { + "#": 2199 + }, + "render": { + "#": 2200 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7125561768771889, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2202 + }, + "vertices": { + "#": 2203 + } + }, + [ + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + } + ], + { + "x": -0.9175121298975132, + "y": -0.3977077966182318 + }, + { + "x": -0.6954752211755594, + "y": -0.7185500794870224 + }, + { + "x": -0.36755905398480565, + "y": -0.9300001837815918 + }, + { + "x": 0.016316388786954544, + "y": -0.9998668788678585 + }, + { + "x": 0.3977077966182318, + "y": -0.9175121298975132 + }, + { + "x": 0.7185500794870224, + "y": -0.6954752211755594 + }, + { + "x": 0.9300001837815918, + "y": -0.36755905398480565 + }, + { + "x": 0.9998668788678585, + "y": 0.016316388786954544 + }, + { + "max": { + "#": 2191 + }, + "min": { + "#": 2192 + } + }, + { + "x": 335.8476077535643, + "y": 135.65374819695788 + }, + { + "x": 306.71031797691194, + "y": 106.65104512659039 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320.9956465283026, + "y": 120.93637367798101 + }, + { + "x": 0.07934930299784618, + "y": -0.09400882500185515 + }, + { + "x": 320.212821449231, + "y": 120.77014618303933 + }, + { + "endCol": 6, + "endRow": 2, + "id": "6,6,2,2", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2201 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.7362886022248745, + "y": 0.048468441544713414 + }, + [ + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335.1885264208263, + "y": 124.00135823852867 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 332.93541504852993, + "y": 129.19928755163295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.8645848783047, + "y": 133.13939081489707 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 323.5959077034202, + "y": 135.22170222937163 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 317.9306619677548, + "y": 135.12925357050477 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 312.73273265465065, + "y": 132.8761421982083 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 308.7926293913866, + "y": 128.80531202798312 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 306.71031797691194, + "y": 123.53663485309865 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 306.8027666357789, + "y": 117.87138911743335 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 309.05587800807524, + "y": 112.67345980432908 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 313.1267081783005, + "y": 108.73335654106498 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 318.39538535318496, + "y": 106.65104512659039 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 324.06063108885036, + "y": 106.74349378545726 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 329.2585604019545, + "y": 108.9966051577537 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 333.1986636652186, + "y": 113.0674353279789 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 335.28097507969323, + "y": 118.33611250286337 + }, + { + "angle": 0.009514019591545473, + "anglePrev": 0.008469325519294642, + "angularSpeed": 0.00032545473512210336, + "angularVelocity": 0.0011632447280073115, + "area": 701.518604, + "axes": { + "#": 2221 + }, + "bounds": { + "#": 2230 + }, + "circleRadius": 15.13764574759945, + "collisionFilter": { + "#": 2233 + }, + "constraintImpulse": { + "#": 2234 + }, + "density": 0.001, + "force": { + "#": 2235 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 313.3408048982135, + "inverseInertia": 0.0031914132611130645, + "inverseMass": 1.4254789456731214, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.701518604, + "motion": 0, + "parent": null, + "position": { + "#": 2236 + }, + "positionImpulse": { + "#": 2237 + }, + "positionPrev": { + "#": 2238 + }, + "region": { + "#": 2239 + }, + "render": { + "#": 2240 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6046743201532454, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2242 + }, + "vertices": { + "#": 2243 + } + }, + [ + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + } + ], + { + "x": -0.9201579359410319, + "y": -0.3915474082722808 + }, + { + "x": -0.7003474527087731, + "y": -0.7138021052675125 + }, + { + "x": -0.3739687826340198, + "y": -0.9274412917350778 + }, + { + "x": 0.009513876062793592, + "y": -0.9999547420569901 + }, + { + "x": 0.3915474082722808, + "y": -0.9201579359410319 + }, + { + "x": 0.7138021052675125, + "y": -0.7003474527087731 + }, + { + "x": 0.9274412917350778, + "y": -0.3739687826340198 + }, + { + "x": 0.9999547420569901, + "y": 0.009513876062793592 + }, + { + "max": { + "#": 2231 + }, + "min": { + "#": 2232 + } + }, + { + "x": 364.8828310680276, + "y": 137.82915983883905 + }, + { + "x": 334.68711407613375, + "y": 107.67296172006215 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.5615366074673, + "y": 122.5473842513957 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.81716822399113, + "y": 122.42153511628342 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,2,2", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2241 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.7474654606709805, + "y": 0.09390300159849119 + }, + [ + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.37977018677395, + "y": 125.64150312259429 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.06695529330847, + "y": 131.07674527622132 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 357.85141434404034, + "y": 135.2128263326131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 352.37315044285725, + "y": 137.42180678272928 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 346.4674177362687, + "y": 137.3656178307024 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.0321755826417, + "y": 135.0528029372369 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 336.89609452624995, + "y": 130.83726198796867 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 334.68711407613375, + "y": 125.3589980867857 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 334.74330302816065, + "y": 119.45326538019711 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 337.05611792162614, + "y": 114.01802322657011 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 341.27165887089427, + "y": 109.88194217017835 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 346.74992277207735, + "y": 107.67296172006215 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 352.6556554786659, + "y": 107.729150672089 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 358.0908976322929, + "y": 110.04196556555452 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 362.22697868868465, + "y": 114.25750651482274 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 364.43595913880085, + "y": 119.73577041600569 + }, + { + "angle": 0.03175310382360957, + "anglePrev": -0.012946939416457555, + "angularSpeed": 0.03376063083768768, + "angularVelocity": 0.04496103976609013, + "area": 525.421234, + "axes": { + "#": 2261 + }, + "bounds": { + "#": 2269 + }, + "circleRadius": 13.152649176954732, + "collisionFilter": { + "#": 2272 + }, + "constraintImpulse": { + "#": 2273 + }, + "density": 0.001, + "force": { + "#": 2274 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 175.79059459614115, + "inverseInertia": 0.00568858648153154, + "inverseMass": 1.903234843379017, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5254212340000001, + "motion": 0, + "parent": null, + "position": { + "#": 2275 + }, + "positionImpulse": { + "#": 2276 + }, + "positionPrev": { + "#": 2277 + }, + "region": { + "#": 2278 + }, + "render": { + "#": 2279 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6459668901289817, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2281 + }, + "vertices": { + "#": 2282 + } + }, + [ + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + } + ], + { + "x": -0.8867273762906807, + "y": -0.4622927212672132 + }, + { + "x": -0.5983286057755554, + "y": -0.8012508218471167 + }, + { + "x": -0.1915247324215168, + "y": -0.9814877874282831 + }, + { + "x": 0.2534273276548142, + "y": -0.9673544281170887 + }, + { + "x": 0.6479726749410999, + "y": -0.7616635822524768 + }, + { + "x": 0.9142786019485053, + "y": -0.40508596373990347 + }, + { + "x": 0.9994959125551693, + "y": 0.031747768197295294 + }, + { + "max": { + "#": 2270 + }, + "min": { + "#": 2271 + } + }, + { + "x": 390.0221939820334, + "y": 136.89921193522125 + }, + { + "x": 363.78193204650216, + "y": 110.11683255385164 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 376.6913938507106, + "y": 123.26320229168978 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375.9872017455589, + "y": 123.07071048693516 + }, + { + "endCol": 8, + "endRow": 2, + "id": "7,8,2,2", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2280 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6986315626095916, + "y": 0.1640223086274375 + }, + [ + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.415004219892, + "y": 126.59582845933267 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 386.70884687252936, + "y": 131.78653057092748 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 382.019305970525, + "y": 135.28841336857053 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 376.27381545561155, + "y": 136.40957202952794 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 370.6110596246204, + "y": 134.92604434236657 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 366.15321393491973, + "y": 131.13360597018186 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 363.78193204650216, + "y": 125.78162519614487 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 363.9677834815292, + "y": 119.93057612404687 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 366.67394082889183, + "y": 114.73987401245205 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 371.3634817308962, + "y": 111.23799121480906 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 377.10897224580964, + "y": 110.11683255385164 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 382.7717280768008, + "y": 111.60036024101298 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 387.22957376650146, + "y": 115.39279861319763 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 389.60085565491903, + "y": 120.74477938723469 + }, + { + "angle": -0.003190335026424712, + "anglePrev": -0.0061404800461796315, + "angularSpeed": 0.0016231864967970308, + "angularVelocity": 0.002980128514673795, + "area": 872.5480859999998, + "axes": { + "#": 2298 + }, + "bounds": { + "#": 2308 + }, + "circleRadius": 16.836376886145406, + "collisionFilter": { + "#": 2311 + }, + "constraintImpulse": { + "#": 2312 + }, + "density": 0.001, + "force": { + "#": 2313 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 484.72476647781866, + "inverseInertia": 0.002063026420676528, + "inverseMass": 1.14606864199803, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8725480859999998, + "motion": 0, + "parent": null, + "position": { + "#": 2314 + }, + "positionImpulse": { + "#": 2315 + }, + "positionPrev": { + "#": 2316 + }, + "region": { + "#": 2317 + }, + "render": { + "#": 2318 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.974851861099492, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2320 + }, + "vertices": { + "#": 2321 + } + }, + [ + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + } + ], + { + "x": -0.9407600577666791, + "y": -0.33907302120757665 + }, + { + "x": -0.7680348094230298, + "y": -0.6404080976334777 + }, + { + "x": -0.5027985422861029, + "y": -0.8644036243994871 + }, + { + "x": -0.17674095286860708, + "y": -0.9842574031111457 + }, + { + "x": 0.17045717593597565, + "y": -0.9853650852206666 + }, + { + "x": 0.4972728702201399, + "y": -0.867594198080545 + }, + { + "x": 0.7639329699514221, + "y": -0.6452956046814506 + }, + { + "x": 0.9385774088812251, + "y": -0.3450687576959196 + }, + { + "x": 0.9999949108855261, + "y": -0.0031903296144294895 + }, + { + "max": { + "#": 2309 + }, + "min": { + "#": 2310 + } + }, + { + "x": 422.33710354011953, + "y": 146.78481914323132 + }, + { + "x": 388.86440830260193, + "y": 111.15987633194901 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.4546524437874, + "y": 127.99579065161774 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 404.8405799820962, + "y": 126.36549973899373 + }, + { + "endCol": 8, + "endRow": 3, + "id": "8,8,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2319 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6322189941878378, + "y": 1.6308701211723928 + }, + [ + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 422.04489658497283, + "y": 130.86687691571015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420.0624344341036, + "y": 136.3672296153441 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 416.31774305042785, + "y": 140.85819927022104 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 411.2630973454962, + "y": 143.7983402188178 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 405.5083648331759, + "y": 144.83170497128643 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 399.7471559517384, + "y": 143.83508005465754 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 394.6738531992215, + "y": 140.92725076439575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 390.9005828428598, + "y": 136.46026600756005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 388.883065350187, + "y": 130.97267462638388 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 388.86440830260193, + "y": 125.12470438752534 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 390.8468704534712, + "y": 119.62435168789139 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 394.5915618371469, + "y": 115.13338203301446 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 399.64620754207857, + "y": 112.19324108441775 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 405.40094005439886, + "y": 111.15987633194901 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 411.16214893583634, + "y": 112.15650124857794 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 416.23545168835324, + "y": 115.06433053883974 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 420.00872204471494, + "y": 119.53131529567538 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 422.02623953738777, + "y": 125.01890667685161 + }, + { + "angle": -0.0040568762081521145, + "anglePrev": -0.003986087957214181, + "angularSpeed": 0.00007869219713242236, + "angularVelocity": -0.000052818874330313494, + "area": 934.4759899999998, + "axes": { + "#": 2341 + }, + "bounds": { + "#": 2351 + }, + "circleRadius": 17.423396776406037, + "collisionFilter": { + "#": 2354 + }, + "constraintImpulse": { + "#": 2355 + }, + "density": 0.001, + "force": { + "#": 2356 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 555.971799948351, + "inverseInertia": 0.00179865237785963, + "inverseMass": 1.0701184521605527, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9344759899999998, + "motion": 0, + "parent": null, + "position": { + "#": 2357 + }, + "positionImpulse": { + "#": 2358 + }, + "positionPrev": { + "#": 2359 + }, + "region": { + "#": 2360 + }, + "render": { + "#": 2361 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0341722975991494, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2363 + }, + "vertices": { + "#": 2364 + } + }, + [ + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + } + ], + { + "x": -0.9410479797517005, + "y": -0.3382731142216941 + }, + { + "x": -0.7686642091538174, + "y": -0.6396525100130039 + }, + { + "x": -0.5035224924392219, + "y": -0.8639821176435273 + }, + { + "x": -0.17752466007206488, + "y": -0.9841163524026505 + }, + { + "x": 0.16953402779442414, + "y": -0.9855243342606005 + }, + { + "x": 0.49649585825893583, + "y": -0.8680390905550985 + }, + { + "x": 0.7634489824119637, + "y": -0.6458681376675408 + }, + { + "x": 0.9382723697429524, + "y": -0.34589732606214857 + }, + { + "x": 0.9999917708890024, + "y": -0.004056865079984468 + }, + { + "max": { + "#": 2352 + }, + "min": { + "#": 2353 + } + }, + { + "x": 457.9945063893935, + "y": 142.03877903755227 + }, + { + "x": 423.48530677482506, + "y": 106.17245481607179 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440.65644164524144, + "y": 123.59531144027088 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440.4931352197031, + "y": 122.56395714624561 + }, + { + "endCol": 9, + "endRow": 2, + "id": "8,9,2,2", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2362 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.15147040312257332, + "y": 1.0661045269087879 + }, + [ + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8275765156578, + "y": 126.55167479107354 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 455.7806608847624, + "y": 132.2460257110639 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 451.9104964574208, + "y": 136.89676471743053 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 446.6818156599236, + "y": 139.9440018460249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 440.72712440552993, + "y": 141.01816806446993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 434.7639137344684, + "y": 139.9923515640481 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 429.51068078950715, + "y": 136.98763849522217 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 425.60290922287413, + "y": 132.36845378544768 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 423.5098589222891, + "y": 126.69089828688846 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.48530677482506, + "y": 120.63894808946822 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 425.53222240572046, + "y": 114.94459716947776 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 429.4023868330621, + "y": 110.29385816311118 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 434.6310676305593, + "y": 107.24662103451686 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 440.58575888495295, + "y": 106.17245481607179 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 446.54896955601447, + "y": 107.1982713164936 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 451.80220250097574, + "y": 110.20298438531955 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 455.70997406760875, + "y": 114.82216909509401 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.8030243681938, + "y": 120.4997245936533 + }, + { + "angle": -0.019381386334784846, + "anglePrev": -0.017266416862734325, + "angularSpeed": 0.0022578190633003275, + "angularVelocity": -0.0021364935768004023, + "area": 877.9976040000001, + "axes": { + "#": 2384 + }, + "bounds": { + "#": 2394 + }, + "circleRadius": 16.889017489711932, + "collisionFilter": { + "#": 2397 + }, + "constraintImpulse": { + "#": 2398 + }, + "density": 0.001, + "force": { + "#": 2399 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 490.79839163286067, + "inverseInertia": 0.002037496489491443, + "inverseMass": 1.1389552721376217, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8779976040000002, + "motion": 0, + "parent": null, + "position": { + "#": 2400 + }, + "positionImpulse": { + "#": 2401 + }, + "positionPrev": { + "#": 2402 + }, + "region": { + "#": 2403 + }, + "render": { + "#": 2404 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2265282982727925, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2406 + }, + "vertices": { + "#": 2407 + } + }, + [ + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + } + ], + { + "x": -0.9461551199352451, + "y": -0.32371359103429953 + }, + { + "x": -0.7783640255570805, + "y": -0.6278132235932727 + }, + { + "x": -0.5165710617555732, + "y": -0.8562443215325402 + }, + { + "x": -0.19278951388253912, + "y": -0.9812401354087256 + }, + { + "x": 0.15461862988950043, + "y": -0.9879742300743951 + }, + { + "x": 0.4830009298762756, + "y": -0.8756198385935835 + }, + { + "x": 0.7534496449252381, + "y": -0.657505614091646 + }, + { + "x": 0.9328994908151891, + "y": -0.3601368351568064 + }, + { + "x": 0.999812186811131, + "y": -0.01938017295960109 + }, + { + "max": { + "#": 2395 + }, + "min": { + "#": 2396 + } + }, + { + "x": 491.2749199992049, + "y": 144.51922439563313 + }, + { + "x": 457.67039035986437, + "y": 109.5433925578684 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 474.35610869819766, + "y": 126.42922058092157 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 474.1525858578577, + "y": 125.25193301735459 + }, + { + "endCol": 10, + "endRow": 2, + "id": "9,10,2,2", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2405 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.19872699037011898, + "y": 1.172958230464431 + }, + [ + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 491.04182703653095, + "y": 129.03933868817452 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 489.14302730314114, + "y": 134.5891800888345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 485.4608104759706, + "y": 139.15439949623467 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.43858723408755, + "y": 142.1843001065996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 474.6834204393124, + "y": 143.31504860397484 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 468.88875685204533, + "y": 142.40817986462892 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 463.7528882759273, + "y": 139.5751818115335 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 459.8965212145419, + "y": 135.15608890824873 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 457.7840744544455, + "y": 129.68400076150272 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.67039035986437, + "y": 123.81910247366861 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 459.5691900932542, + "y": 118.26926107300869 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 463.2514069204247, + "y": 113.70404166560859 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 468.27363016230777, + "y": 110.67414105524357 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 474.02879695708293, + "y": 109.5433925578684 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 479.82346054435, + "y": 110.45026129721425 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 484.959329120468, + "y": 113.28325935030973 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 488.8156961818534, + "y": 117.70235225359443 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.92814294194983, + "y": 123.17444040034043 + }, + { + "angle": 0.026456984650618853, + "anglePrev": 0.016815285327383012, + "angularSpeed": 0.013331396152007817, + "angularVelocity": 0.008672301602536455, + "area": 466.51646800000003, + "axes": { + "#": 2427 + }, + "bounds": { + "#": 2435 + }, + "circleRadius": 12.393732853223593, + "collisionFilter": { + "#": 2438 + }, + "constraintImpulse": { + "#": 2439 + }, + "density": 0.001, + "force": { + "#": 2440 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 138.58440234768833, + "inverseInertia": 0.007215819262914912, + "inverseMass": 2.1435470526626723, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.466516468, + "motion": 0, + "parent": null, + "position": { + "#": 2441 + }, + "positionImpulse": { + "#": 2442 + }, + "positionPrev": { + "#": 2443 + }, + "region": { + "#": 2444 + }, + "render": { + "#": 2445 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6889542622428044, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2447 + }, + "vertices": { + "#": 2448 + } + }, + [ + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + } + ], + { + "x": -0.8891714785495953, + "y": -0.4575741270372773 + }, + { + "x": -0.6025322463085355, + "y": -0.7980945383589533 + }, + { + "x": -0.19677976989915588, + "y": -0.980447715157945 + }, + { + "x": 0.24835952777669773, + "y": -0.9686679229553005 + }, + { + "x": 0.6438995776057661, + "y": -0.7651100142849498 + }, + { + "x": 0.9121277450013519, + "y": -0.4099060585045657 + }, + { + "x": 0.9996500343961575, + "y": 0.02645389823373551 + }, + { + "max": { + "#": 2436 + }, + "min": { + "#": 2437 + } + }, + { + "x": 515.6921689513541, + "y": 135.62818145934554 + }, + { + "x": 491.1291854326658, + "y": 110.2106504979549 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 503.2809166496033, + "y": 122.6003130242609 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 502.923353472936, + "y": 122.34431369845876 + }, + { + "endCol": 10, + "endRow": 2, + "id": "10,10,2,2", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2446 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3833574824877246, + "y": 0.15537543145188693 + }, + [ + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 515.2867281638837, + "y": 125.67699027148372 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 512.7631162112501, + "y": 130.58094711392494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 508.36065065687353, + "y": 133.9046479191312 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 502.9530470348943, + "y": 134.9899755505669 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 497.61041418697715, + "y": 133.62016269752561 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 493.38989854465245, + "y": 130.06827056615518 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 491.1291854326658, + "y": 125.03770536676728 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 491.2751051353231, + "y": 119.52363577703808 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 493.7987170879567, + "y": 114.61967893459689 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.20118264233304, + "y": 111.29597812939062 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 503.60878626431224, + "y": 110.2106504979549 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 508.9514191122294, + "y": 111.5804633509962 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 513.1719347545543, + "y": 115.13235548236668 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 515.4326478665411, + "y": 120.16292068175454 + }, + { + "angle": 0.006752756330846561, + "anglePrev": 0.0043356817111001485, + "angularSpeed": 0.0024170746197464126, + "angularVelocity": 0.0024170746197464126, + "area": 931.3309979999999, + "axes": { + "#": 2464 + }, + "bounds": { + "#": 2474 + }, + "circleRadius": 17.394332990397807, + "collisionFilter": { + "#": 2477 + }, + "constraintImpulse": { + "#": 2478 + }, + "density": 0.001, + "force": { + "#": 2479 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 552.235835577075, + "inverseInertia": 0.0018108205508884092, + "inverseMass": 1.073732112586679, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.931330998, + "motion": 0, + "parent": null, + "position": { + "#": 2480 + }, + "positionImpulse": { + "#": 2481 + }, + "positionPrev": { + "#": 2482 + }, + "region": { + "#": 2483 + }, + "render": { + "#": 2484 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.911035870965727, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2486 + }, + "vertices": { + "#": 2487 + } + }, + [ + { + "#": 2465 + }, + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + } + ], + { + "x": -0.9373756692870967, + "y": -0.3483200462628697 + }, + { + "x": -0.7617154323443862, + "y": -0.6479117224810839 + }, + { + "x": -0.4940537639383905, + "y": -0.869431353436434 + }, + { + "x": -0.1669990516661551, + "y": -0.9859570562365305 + }, + { + "x": 0.1802992723893811, + "y": -0.9836117996322837 + }, + { + "x": 0.5057504663960071, + "y": -0.8626798164673968 + }, + { + "x": 0.7703960793465148, + "y": -0.6375655895102234 + }, + { + "x": 0.9419942802424147, + "y": -0.3356289260337603 + }, + { + "x": 0.999977200227607, + "y": 0.006752705010332765 + }, + { + "max": { + "#": 2475 + }, + "min": { + "#": 2476 + } + }, + { + "x": 549.5885634262333, + "y": 153.64588992184972 + }, + { + "x": 515.1414535310346, + "y": 115.95136643847565 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 532.2914561400647, + "y": 133.34496985923465 + }, + { + "x": 0.08299501913986176, + "y": -0.0001240841735167426 + }, + { + "x": 532.1443514629262, + "y": 130.4376532173786 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2485 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.14710467713847264, + "y": 2.9073166418560565 + }, + [ + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.4006724108324, + "y": 136.48057484074906 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.2963844088185, + "y": 142.1434943178898 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 543.382221421547, + "y": 146.7451680469881 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 538.129947540825, + "y": 149.72976903906138 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 532.1739995891149, + "y": 150.73857327999366 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 526.2322188125167, + "y": 149.64942535484843 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 521.0207312700571, + "y": 146.594164057547 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 517.1690713203611, + "y": 141.9400488213385 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.1414535310346, + "y": 136.24922716709506 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 515.1822398692971, + "y": 130.2093648777203 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 517.2865278713108, + "y": 124.5464454005795 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 521.2006908585824, + "y": 119.94477167148128 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 526.4529647393043, + "y": 116.96017067940794 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 532.4089126910145, + "y": 115.95136643847565 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 538.3506934676126, + "y": 117.04051436362093 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 543.5621810100723, + "y": 120.09577566092231 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 547.4138409597682, + "y": 124.74989089713081 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 549.4414587490949, + "y": 130.4407125513743 + }, + { + "angle": 0.00023757924260624374, + "anglePrev": 0.0007292357285003674, + "angularSpeed": 0.00009767578287679345, + "angularVelocity": -0.0005695896247449669, + "area": 1165.6303160000004, + "axes": { + "#": 2507 + }, + "bounds": { + "#": 2518 + }, + "circleRadius": 19.42168209876543, + "collisionFilter": { + "#": 2521 + }, + "constraintImpulse": { + "#": 2522 + }, + "density": 0.001, + "force": { + "#": 2523 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 865.0188515831029, + "inverseInertia": 0.001156044169638457, + "inverseMass": 0.8579049345864813, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1656303160000006, + "motion": 0, + "parent": null, + "position": { + "#": 2524 + }, + "positionImpulse": { + "#": 2525 + }, + "positionPrev": { + "#": 2526 + }, + "region": { + "#": 2527 + }, + "render": { + "#": 2528 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.912042032272891, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2530 + }, + "vertices": { + "#": 2531 + } + }, + [ + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + }, + { + "#": 2516 + }, + { + "#": 2517 + } + ], + { + "x": -0.9509690809478879, + "y": -0.30928596327853175 + }, + { + "x": -0.808852515789657, + "y": -0.5880115710602495 + }, + { + "x": -0.5876271715592215, + "y": -0.809131823156962 + }, + { + "x": -0.3088340673529386, + "y": -0.9511159334393682 + }, + { + "x": 0.00023757924037126073, + "y": -0.9999999717780519 + }, + { + "x": 0.30928596327853175, + "y": -0.9509690809478879 + }, + { + "x": 0.5880115710602495, + "y": -0.808852515789657 + }, + { + "x": 0.809131823156962, + "y": -0.5876271715592215 + }, + { + "x": 0.9511159334393682, + "y": -0.3088340673529386 + }, + { + "x": 0.9999999717780519, + "y": 0.00023757924037126073 + }, + { + "max": { + "#": 2519 + }, + "min": { + "#": 2520 + } + }, + { + "x": 588.2399386097461, + "y": 157.09627217793332 + }, + { + "x": 549.7123603405128, + "y": 115.82119403735003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.8960815648634, + "y": 135.00491526170063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.352544514923, + "y": 132.62469021244792 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2529 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5941860638677099, + "y": 2.310557280023488 + }, + [ + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 588.0783592577495, + "y": 138.04747265853038 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.1989863403202, + "y": 143.82602632162232 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 582.6258185015832, + "y": 148.74117754983664 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 577.7089700072758, + "y": 152.31200950948218 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 571.9295239965571, + "y": 154.18863648605125 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 565.8535241680337, + "y": 154.18719295458675 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 560.0749705049416, + "y": 152.30782003715748 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 555.1598192767274, + "y": 148.7346521984206 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 551.5889873170819, + "y": 143.8178037041131 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 549.7123603405128, + "y": 138.0383576933943 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 549.7138038719772, + "y": 131.96235786487085 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 551.5931767894066, + "y": 126.18380420177891 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 555.1663446281435, + "y": 121.26865297356463 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 560.083193122451, + "y": 117.69782101391908 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 565.8626391331696, + "y": 115.82119403735003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 571.9386389616931, + "y": 115.82263756881453 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 577.7171926247852, + "y": 117.7020104862438 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 582.6323438529994, + "y": 121.27517832498066 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 586.2031758126449, + "y": 126.19202681928816 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 588.079802789214, + "y": 131.97147283000697 + }, + { + "angle": -0.0018139807487576563, + "anglePrev": -0.000905491439026463, + "angularSpeed": 0.0009084893097311934, + "angularVelocity": -0.0009084893097311934, + "area": 645.906722, + "axes": { + "#": 2553 + }, + "bounds": { + "#": 2562 + }, + "circleRadius": 14.525162894375857, + "collisionFilter": { + "#": 2565 + }, + "constraintImpulse": { + "#": 2566 + }, + "density": 0.001, + "force": { + "#": 2567 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 265.6306452069542, + "inverseInertia": 0.003764625874476549, + "inverseMass": 1.5482111672465302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.645906722, + "motion": 0, + "parent": null, + "position": { + "#": 2568 + }, + "positionImpulse": { + "#": 2569 + }, + "positionPrev": { + "#": 2570 + }, + "region": { + "#": 2571 + }, + "render": { + "#": 2572 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.911560069774864, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2574 + }, + "vertices": { + "#": 2575 + } + }, + [ + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + } + ], + { + "x": -0.9245611497929899, + "y": -0.3810336996821466 + }, + { + "x": -0.7083882951951279, + "y": -0.7058229404252462 + }, + { + "x": -0.3843854569775247, + "y": -0.9231726926551606 + }, + { + "x": -0.0018139797539326364, + "y": -0.9999983547373728 + }, + { + "x": 0.3810336996821466, + "y": -0.9245611497929899 + }, + { + "x": 0.7058229404252462, + "y": -0.7083882951951279 + }, + { + "x": 0.9231726926551606, + "y": -0.3843854569775247 + }, + { + "x": 0.9999983547373728, + "y": -0.0018139797539326364 + }, + { + "max": { + "#": 2563 + }, + "min": { + "#": 2564 + } + }, + { + "x": 618.6392749899169, + "y": 147.35605814463779 + }, + { + "x": 589.978360089065, + "y": 115.94659056709503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 604.2294774692762, + "y": 130.1977079473063 + }, + { + "x": 0.8643312652137521, + "y": 0 + }, + { + "x": 604.0707973288467, + "y": 127.29047513018608 + }, + { + "endCol": 12, + "endRow": 3, + "id": "12,12,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2573 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.15868014042945788, + "y": 2.9072328171202075 + }, + [ + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + }, + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 618.4805948494874, + "y": 133.0058613290575 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.3210964160536, + "y": 138.24578723654867 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 612.3213716254951, + "y": 142.2600492608553 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 607.0893147621764, + "y": 144.43854369027227 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 601.421324087525, + "y": 144.44882532751757 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 596.1813981800337, + "y": 142.28932689408379 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 592.1671361557272, + "y": 138.28960210352514 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 589.9886417263102, + "y": 133.05754524020654 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 589.978360089065, + "y": 127.3895545655551 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 592.1378585224987, + "y": 122.14962865806393 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 596.1375833130572, + "y": 118.13536663375727 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 601.3696401763759, + "y": 115.95687220434033 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 607.0376308510273, + "y": 115.94659056709503 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 612.2775567585186, + "y": 118.1060890005288 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 616.2918187828251, + "y": 122.10581379108746 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 618.4703132122421, + "y": 127.33787065440605 + }, + { + "angle": 0.00011667706325915034, + "anglePrev": 0.00008092102972002023, + "angularSpeed": 0.00002936945341097374, + "angularVelocity": 0.00003568786611673023, + "area": 1044.3317600000003, + "axes": { + "#": 2593 + }, + "bounds": { + "#": 2604 + }, + "circleRadius": 18.383787722908096, + "collisionFilter": { + "#": 2607 + }, + "constraintImpulse": { + "#": 2608 + }, + "density": 0.001, + "force": { + "#": 2609 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 694.3538941887333, + "inverseInertia": 0.0014401877894965598, + "inverseMass": 0.9575501179816648, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0443317600000004, + "motion": 0, + "parent": null, + "position": { + "#": 2610 + }, + "positionImpulse": { + "#": 2611 + }, + "positionPrev": { + "#": 2612 + }, + "region": { + "#": 2613 + }, + "render": { + "#": 2614 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9063702496159003, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2616 + }, + "vertices": { + "#": 2617 + } + }, + [ + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + } + ], + { + "x": -0.951036337586491, + "y": -0.30907909115641286 + }, + { + "x": -0.8089155275792166, + "y": -0.5879248840126078 + }, + { + "x": -0.5877361042304814, + "y": -0.8090527002513356 + }, + { + "x": -0.3088571544892629, + "y": -0.9511084365732414 + }, + { + "x": 0.0001166770629944191, + "y": -0.9999999931932315 + }, + { + "x": 0.30907909115641286, + "y": -0.951036337586491 + }, + { + "x": 0.5879248840126078, + "y": -0.8089155275792166 + }, + { + "x": 0.8090527002513356, + "y": -0.5877361042304814 + }, + { + "x": 0.9511084365732414, + "y": -0.3088571544892629 + }, + { + "x": 0.9999999931932315, + "y": 0.0001166770629944191 + }, + { + "max": { + "#": 2605 + }, + "min": { + "#": 2606 + } + }, + { + "x": 56.51437697152573, + "y": 193.69484464728208 + }, + { + "x": 20.199622750282206, + "y": 154.4738035195758 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.356958189924875, + "y": 172.63113895921845 + }, + { + "x": -0.0021667986486124907, + "y": 5.908222409778838e-7 + }, + { + "x": 38.35685729178807, + "y": 169.72495270119248 + }, + { + "endCol": 1, + "endRow": 3, + "id": "0,1,3,3", + "startCol": 0, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2615 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0001017225087949214, + "y": 2.9061836277723785 + }, + [ + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.5136225031012, + "y": 175.50925744507498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 54.735984291662234, + "y": 180.97905007270097 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 51.354441416301825, + "y": 185.63165555587915 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 46.70104696282374, + "y": 189.0121126344913 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 41.23083966491581, + "y": 190.78847439886113 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 35.47883970406835, + "y": 190.78780327239477 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 30.00904707644232, + "y": 189.01016506095584 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 25.356441593264183, + "y": 185.6286221855954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 21.975984514651987, + "y": 180.97522773211733 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 20.199622750282206, + "y": 175.5050204342094 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 20.200293876748546, + "y": 169.75302047336191 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 21.97793208818749, + "y": 164.28322784573592 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 25.359474963547918, + "y": 159.63062236255774 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 30.012869417026018, + "y": 156.2501652839456 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 35.48307671493394, + "y": 154.4738035195758 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 41.2350766757814, + "y": 154.47447464604213 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 46.704869303407435, + "y": 156.25211285748105 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 51.35747478658557, + "y": 159.6336557328415 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 54.737931865197766, + "y": 164.28705018631956 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 56.51429362956753, + "y": 169.7572574842275 + }, + { + "angle": 0.000040388751154022826, + "anglePrev": 0.00003005256000695293, + "angularSpeed": 0.000008721331342828195, + "angularVelocity": 0.000010182925369207972, + "area": 607.250026, + "axes": { + "#": 2639 + }, + "bounds": { + "#": 2648 + }, + "circleRadius": 14.08397633744856, + "collisionFilter": { + "#": 2651 + }, + "constraintImpulse": { + "#": 2652 + }, + "density": 0.001, + "force": { + "#": 2653 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 234.78678707670187, + "inverseInertia": 0.004259183459388252, + "inverseMass": 1.6467681468654227, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6072500260000001, + "motion": 0, + "parent": null, + "position": { + "#": 2654 + }, + "positionImpulse": { + "#": 2655 + }, + "positionPrev": { + "#": 2656 + }, + "region": { + "#": 2657 + }, + "render": { + "#": 2658 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907060860090219, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2660 + }, + "vertices": { + "#": 2661 + } + }, + [ + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + } + ], + { + "x": -0.9238616470646056, + "y": -0.3827266087993808 + }, + { + "x": -0.7070782214499961, + "y": -0.70713533976963 + }, + { + "x": -0.3826519803144874, + "y": -0.9238925597499968 + }, + { + "x": 0.00004038875114304212, + "y": -0.9999999991843743 + }, + { + "x": 0.3827266087993808, + "y": -0.9238616470646056 + }, + { + "x": 0.70713533976963, + "y": -0.7070782214499961 + }, + { + "x": 0.9238925597499968, + "y": -0.3826519803144874 + }, + { + "x": 0.9999999991843743, + "y": 0.00004038875114304212 + }, + { + "max": { + "#": 2649 + }, + "min": { + "#": 2650 + } + }, + { + "x": 84.09030198487227, + "y": 184.2837889205282 + }, + { + "x": 56.46389401244943, + "y": 153.75050611234565 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 70.27700498947132, + "y": 167.56361708936757 + }, + { + "x": -0.004333805937591089, + "y": 0.0014689379253607349 + }, + { + "x": 70.27677997683942, + "y": 164.6566077201209 + }, + { + "endCol": 1, + "endRow": 3, + "id": "1,1,3,3", + "startCol": 1, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2659 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0002235948998219328, + "y": 2.9070138926838354 + }, + [ + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + }, + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 84.08989398991693, + "y": 170.31217497694576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 81.98668893794266, + "y": 175.38909003526112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 78.10153203081316, + "y": 179.2739331217943 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 73.02444709741046, + "y": 181.3767280663895 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 67.52844710189314, + "y": 181.37650608981315 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 62.451532043577714, + "y": 179.27330103783893 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 58.566688957044605, + "y": 175.38814413070938 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 56.46389401244943, + "y": 170.31105919730666 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 56.4641159890257, + "y": 164.81505920178938 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 58.56732104099999, + "y": 159.73814414347402 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 62.452477948129484, + "y": 155.85330105694084 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 67.52956288153219, + "y": 153.75050611234565 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 73.02556287704951, + "y": 153.75072808892193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 78.10247793536493, + "y": 155.8539331408962 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 81.98732102189805, + "y": 159.73909004802576 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 84.09011596649323, + "y": 164.81617498142847 + }, + { + "angle": 0.000008480803048385007, + "anglePrev": 0.000006882927489625042, + "angularSpeed": 0.0000015951564537100039, + "angularVelocity": 0.0000015073872125709434, + "area": 844.5415139999999, + "axes": { + "#": 2679 + }, + "bounds": { + "#": 2689 + }, + "circleRadius": 16.56400034293553, + "collisionFilter": { + "#": 2692 + }, + "constraintImpulse": { + "#": 2693 + }, + "density": 0.001, + "force": { + "#": 2694 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 454.10729029624963, + "inverseInertia": 0.002202122761225925, + "inverseMass": 1.1840744160268717, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8445415139999999, + "motion": 0, + "parent": null, + "position": { + "#": 2695 + }, + "positionImpulse": { + "#": 2696 + }, + "positionPrev": { + "#": 2697 + }, + "region": { + "#": 2698 + }, + "render": { + "#": 2699 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072556564404186, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2701 + }, + "vertices": { + "#": 2702 + } + }, + [ + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + } + ], + { + "x": -0.9397245267030435, + "y": -0.34193246981347153 + }, + { + "x": -0.7660314659844744, + "y": -0.6428030749161651 + }, + { + "x": -0.49994584364985895, + "y": -0.8660566687100967 + }, + { + "x": -0.1736579760215918, + "y": -0.9848060252476545 + }, + { + "x": 0.17367467988849264, + "y": -0.9848030795878073 + }, + { + "x": 0.49996053329001433, + "y": -0.866048188701047 + }, + { + "x": 0.7660423688468361, + "y": -0.642790081699716 + }, + { + "x": 0.9397303262917306, + "y": -0.3419165305270244 + }, + { + "x": 0.999999999964038, + "y": 0.000008480803048283345 + }, + { + "max": { + "#": 2690 + }, + "min": { + "#": 2691 + } + }, + { + "x": 112.39670373362577, + "y": 204.58620715986999 + }, + { + "x": 79.7726087697979, + "y": 168.55095150498778 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 96.08463316000085, + "y": 185.11495150439208 + }, + { + "x": -0.025143543184244922, + "y": 0.2226052993508315 + }, + { + "x": 96.084587030288, + "y": 182.20769576100727 + }, + { + "endCol": 2, + "endRow": 4, + "id": "1,2,3,4", + "startCol": 1, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2700 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00004618344652840278, + "y": 2.9072527595199062 + }, + [ + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 112.39660876862467, + "y": 187.9910898431479 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 110.42956292147414, + "y": 193.39707316121397 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 106.73152554670808, + "y": 197.8040417990458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 101.74950115609771, + "y": 200.6799995475816 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 96.08449268397912, + "y": 201.67895150379638 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 90.41950115650512, + "y": 200.67990346008304 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 85.43752554747384, + "y": 197.80386120882568 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 81.73956292250588, + "y": 193.39682984697453 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 79.7726087697979, + "y": 187.9908131654293 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 79.77265755137702, + "y": 182.23881316563626 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 81.73970339852755, + "y": 176.8328298475702 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 85.43774077329361, + "y": 172.42586120973837 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 90.41976516390399, + "y": 169.54990346120258 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 96.08477363602258, + "y": 168.55095150498778 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.74976516349658, + "y": 169.54999954870112 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 106.73174077252786, + "y": 172.42604179995848 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 110.42970339749581, + "y": 176.83307316180964 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 112.3966575502038, + "y": 182.23908984335486 + }, + { + "angle": 0.000001303561891866684, + "anglePrev": 8.743885777111836e-7, + "angularSpeed": 4.2371556238371093e-7, + "angularVelocity": 2.670386094891352e-7, + "area": 572.138606, + "axes": { + "#": 2722 + }, + "bounds": { + "#": 2730 + }, + "circleRadius": 13.725094307270233, + "collisionFilter": { + "#": 2733 + }, + "constraintImpulse": { + "#": 2734 + }, + "density": 0.001, + "force": { + "#": 2735 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 208.44088187722204, + "inverseInertia": 0.004797523360072091, + "inverseMass": 1.7478282176959057, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.572138606, + "motion": 0, + "parent": null, + "position": { + "#": 2736 + }, + "positionImpulse": { + "#": 2737 + }, + "positionPrev": { + "#": 2738 + }, + "region": { + "#": 2739 + }, + "render": { + "#": 2740 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072798121251244, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2742 + }, + "vertices": { + "#": 2743 + } + }, + [ + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + }, + { + "#": 2727 + }, + { + "#": 2728 + }, + { + "#": 2729 + } + ], + { + "x": -0.9009750306230085, + "y": -0.43387094186390096 + }, + { + "x": -0.6235155080241805, + "y": -0.781810981793776 + }, + { + "x": -0.22249011409941918, + "y": -0.9749349461005217 + }, + { + "x": 0.22249265587474862, + "y": -0.9749343660379403 + }, + { + "x": 0.6235175463000665, + "y": -0.7818093562090084 + }, + { + "x": 0.9009761617751983, + "y": -0.43386859290899565 + }, + { + "x": 0.9999999999991503, + "y": 0.0000013035618918663148 + }, + { + "max": { + "#": 2731 + }, + "min": { + "#": 2732 + } + }, + { + "x": 139.1086677693534, + "y": 205.86039472583806 + }, + { + "x": 112.34661621602119, + "y": 175.503114914063 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.72762019708783, + "y": 189.22811491405133 + }, + { + "x": -0.02514335055023825, + "y": 0.1491759878397986 + }, + { + "x": 125.72757652660819, + "y": 186.32083523113423 + }, + { + "endCol": 2, + "endRow": 4, + "id": "2,2,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2741 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00004359116262264706, + "y": 2.907284087440331 + }, + [ + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.10861621599844, + "y": 192.28213235701048 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 136.45860904249957, + "y": 197.78512890256673 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 131.6826040772364, + "y": 201.59412267675194 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125.72760230570086, + "y": 202.95311491403973 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 119.77260407724656, + "y": 201.59410715132978 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 114.99660904251786, + "y": 197.7851009255214 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 112.34661621602119, + "y": 192.28209747108707 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 112.34662417817725, + "y": 186.17409747109224 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 114.99663135167604, + "y": 180.671100925536 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 119.77263631693926, + "y": 176.86210715135078 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 125.7276380884748, + "y": 175.503114914063 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 131.68263631692915, + "y": 176.86212267677294 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 136.45863135165786, + "y": 180.67112890258133 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 139.1086241781545, + "y": 186.17413235701565 + }, + { + "angle": -6.759231256189878e-7, + "anglePrev": -7.539619744980595e-7, + "angularSpeed": 7.803884887907164e-8, + "angularVelocity": 7.803884887907164e-8, + "area": 618.1187619999998, + "axes": { + "#": 2759 + }, + "bounds": { + "#": 2768 + }, + "circleRadius": 14.209233539094651, + "collisionFilter": { + "#": 2771 + }, + "constraintImpulse": { + "#": 2772 + }, + "density": 0.001, + "force": { + "#": 2773 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 243.26656400082345, + "inverseInertia": 0.004110716999302111, + "inverseMass": 1.6178120799381273, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6181187619999998, + "motion": 0, + "parent": null, + "position": { + "#": 2774 + }, + "positionImpulse": { + "#": 2775 + }, + "positionPrev": { + "#": 2776 + }, + "region": { + "#": 2777 + }, + "render": { + "#": 2778 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072635368314765, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2780 + }, + "vertices": { + "#": 2781 + } + }, + [ + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + }, + { + "#": 2766 + }, + { + "#": 2767 + } + ], + { + "x": -0.9239181703544591, + "y": -0.38259013903767625 + }, + { + "x": -0.7071072591362116, + "y": -0.7071063032365603 + }, + { + "x": -0.3825913880326416, + "y": -0.9239176531505697 + }, + { + "x": -6.759231256189366e-7, + "y": -0.9999999999997715 + }, + { + "x": 0.38259013903767625, + "y": -0.9239181703544591 + }, + { + "x": 0.7071063032365603, + "y": -0.7071072591362116 + }, + { + "x": 0.9239176531505697, + "y": -0.3825913880326416 + }, + { + "x": 0.9999999999997715, + "y": -6.759231256189366e-7 + }, + { + "max": { + "#": 2769 + }, + "min": { + "#": 2770 + } + }, + { + "x": 168.15549591826914, + "y": 216.68991709082326 + }, + { + "x": 140.28348277227988, + "y": 185.91064980669557 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 154.21948464593558, + "y": 199.84665168035127 + }, + { + "x": 0.04661879147619022, + "y": 0.37891109499976233 + }, + { + "x": 154.21947524725772, + "y": 196.93938814353498 + }, + { + "endCol": 3, + "endRow": 4, + "id": "2,3,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2779 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000009398677847514136, + "y": 2.9072635368162847 + }, + [ + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + }, + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 168.15548651959128, + "y": 202.61864226068593 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 166.03448998167, + "y": 207.74064369431775 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 162.11349263196553, + "y": 211.6616463446114 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 156.99149406559962, + "y": 213.7826498066892 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.44749406560092, + "y": 213.78265355400697 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 146.3254926319691, + "y": 211.6616570160857 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 142.40448998167545, + "y": 207.74065966638122 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 140.28348651959763, + "y": 202.6186611000153 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 140.28348277227988, + "y": 197.0746611000166 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 142.40447931020117, + "y": 191.9526596663848 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 146.32547665990563, + "y": 188.03165701609115 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 151.44747522627154, + "y": 185.91065355401335 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 156.99147522627024, + "y": 185.91064980669557 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 162.11347665990206, + "y": 188.03164634461683 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 166.0344793101957, + "y": 191.95264369432132 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 168.15548277227353, + "y": 197.07464226068726 + }, + { + "angle": -0.000006912524326559382, + "anglePrev": -0.000006328436672942388, + "angularSpeed": 6.72645576231471e-7, + "angularVelocity": -5.800229377371271e-7, + "area": 420.81690000000003, + "axes": { + "#": 2799 + }, + "bounds": { + "#": 2806 + }, + "circleRadius": 11.84357853223594, + "collisionFilter": { + "#": 2809 + }, + "constraintImpulse": { + "#": 2810 + }, + "density": 0.001, + "force": { + "#": 2811 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 112.78565541699, + "inverseInertia": 0.008866375748784808, + "inverseMass": 2.3763304182888088, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.42081690000000005, + "motion": 0, + "parent": null, + "position": { + "#": 2812 + }, + "positionImpulse": { + "#": 2813 + }, + "positionPrev": { + "#": 2814 + }, + "region": { + "#": 2815 + }, + "render": { + "#": 2816 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072675479731633, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2818 + }, + "vertices": { + "#": 2819 + } + }, + [ + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + } + ], + { + "x": -0.8660804065600802, + "y": -0.49990472029450383 + }, + { + "x": -0.49991669385048776, + "y": -0.8660734952702328 + }, + { + "x": -0.000006912524326504333, + "y": -0.9999999999761088 + }, + { + "x": 0.49990472029450383, + "y": -0.8660804065600802 + }, + { + "x": 0.8660734952702328, + "y": -0.49991669385048776 + }, + { + "x": 0.9999999999761088, + "y": -0.000006912524326504333 + }, + { + "max": { + "#": 2807 + }, + "min": { + "#": 2808 + } + }, + { + "x": 177.43700334068123, + "y": 255.72290193786134 + }, + { + "x": 154.55694623828197, + "y": 229.93559201669808 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 165.9969674248957, + "y": 241.3756132033118 + }, + { + "x": -0.5858307319802191, + "y": 1.479550332861526 + }, + { + "x": 165.9969664017499, + "y": 238.46833784500674 + }, + { + "endCol": 3, + "endRow": 5, + "id": "3,3,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2817 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0000012409103078425687, + "y": 2.9072768367220476 + }, + [ + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 177.43698861150943, + "y": 244.44053412396025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 174.37202531708687, + "y": 249.75055531072044 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 169.06204650410078, + "y": 252.8155920161514 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 162.93204650424724, + "y": 252.8156343899255 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 157.62202531748704, + "y": 249.75067109550295 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 154.55698861205607, + "y": 244.44069228251686 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 154.55694623828197, + "y": 238.31069228266333 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 157.62190953270454, + "y": 233.00067109590313 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 162.93188834569062, + "y": 229.93563439047216 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 169.06188834554416, + "y": 229.93559201669808 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 174.37190953230436, + "y": 233.00055531112062 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 177.43694623773533, + "y": 238.3105341241067 + }, + { + "angle": -2.559882752628626e-8, + "anglePrev": -0.0017141141264197034, + "angularSpeed": 1.4079374514107987e-9, + "angularVelocity": 0.0017142481402748586, + "area": 863.7712119999999, + "axes": { + "#": 2833 + }, + "bounds": { + "#": 2843 + }, + "circleRadius": 16.75158607681756, + "collisionFilter": { + "#": 2846 + }, + "constraintImpulse": { + "#": 2847 + }, + "density": 0.001, + "force": { + "#": 2848 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 475.0222152143297, + "inverseInertia": 0.0021051647017156887, + "inverseMass": 1.1577139711389226, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8637712119999998, + "motion": 0, + "parent": null, + "position": { + "#": 2849 + }, + "positionImpulse": { + "#": 2850 + }, + "positionPrev": { + "#": 2851 + }, + "region": { + "#": 2852 + }, + "render": { + "#": 2853 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707115933176, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2855 + }, + "vertices": { + "#": 2856 + } + }, + [ + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + } + ], + { + "x": -0.939682976764892, + "y": -0.3420466388933992 + }, + { + "x": -0.7660468261134582, + "y": -0.6427847697336153 + }, + { + "x": -0.49996547537338015, + "y": -0.8660453356693688 + }, + { + "x": -0.17378535911835197, + "y": -0.9847835543692358 + }, + { + "x": 0.173785308699743, + "y": -0.9847835632666373 + }, + { + "x": 0.4999654310338891, + "y": -0.8660453612664277 + }, + { + "x": 0.7660467932043843, + "y": -0.6427848089534156 + }, + { + "x": 0.9396829592529049, + "y": -0.34204668700296365 + }, + { + "x": 0.9999999999999999, + "y": -2.5598827526286257e-8 + }, + { + "max": { + "#": 2844 + }, + "min": { + "#": 2845 + } + }, + { + "x": 221.15336594820138, + "y": 399.0358113746422 + }, + { + "x": 188.1593657617656, + "y": 362.62454066304883 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 204.65636583623257, + "y": 379.3765406630489 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 205.4467926245372, + "y": 380.6129460723266 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2854 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.7904320153307935, + "y": -1.236404412169179 + }, + [ + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 221.15336591069953, + "y": 382.285540240745 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 219.16336605064834, + "y": 387.75254029168667 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 215.42436616471673, + "y": 392.2085403874008 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 210.3853662391837, + "y": 395.1175405163932 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 204.6563662650641, + "y": 396.1285406630489 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 198.92736623918367, + "y": 395.1175408097045 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 193.88836616471673, + "y": 392.208540938697 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 190.14936605064835, + "y": 387.7525410344111 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 188.15936591069956, + "y": 382.2855410853527 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 188.1593657617656, + "y": 376.4675410853527 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 190.1493656218168, + "y": 371.000541034411 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 193.8883655077484, + "y": 366.544540938697 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 198.92736543328144, + "y": 363.6355408097045 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 204.65636540740104, + "y": 362.62454066304883 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 210.38536543328146, + "y": 363.6355405163932 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 215.4243655077484, + "y": 366.5445403874008 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 219.16336562181678, + "y": 371.0005402916867 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 221.15336576176557, + "y": 376.467540240745 + }, + { + "angle": 0.012070970837454714, + "anglePrev": 0.011308651922672316, + "angularSpeed": 0.0017134100948243552, + "angularVelocity": 0.0007621363982755203, + "area": 523.6658279999999, + "axes": { + "#": 2876 + }, + "bounds": { + "#": 2884 + }, + "circleRadius": 13.130787037037038, + "collisionFilter": { + "#": 2887 + }, + "constraintImpulse": { + "#": 2888 + }, + "density": 0.001, + "force": { + "#": 2889 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 174.6179419646033, + "inverseInertia": 0.005726788374373977, + "inverseMass": 1.9096147705861, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5236658279999999, + "motion": 0, + "parent": null, + "position": { + "#": 2890 + }, + "positionImpulse": { + "#": 2891 + }, + "positionPrev": { + "#": 2892 + }, + "region": { + "#": 2893 + }, + "render": { + "#": 2894 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.40642280985637913, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2896 + }, + "vertices": { + "#": 2897 + } + }, + [ + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + } + ], + { + "x": -0.8956310132123544, + "y": -0.4447978059435671 + }, + { + "x": -0.613937873646813, + "y": -0.789354348377223 + }, + { + "x": -0.2108503411539569, + "y": -0.9775183546283208 + }, + { + "x": 0.23438579760428424, + "y": -0.97214366113317 + }, + { + "x": 0.6328136661646481, + "y": -0.7743041159100582 + }, + { + "x": 0.9061072636916337, + "y": -0.42304801936099423 + }, + { + "x": 0.9999271467161384, + "y": 0.012070677699409326 + }, + { + "max": { + "#": 2885 + }, + "min": { + "#": 2886 + } + }, + { + "x": 249.9667291601245, + "y": 147.1327727787556 + }, + { + "x": 223.94129059892418, + "y": 120.67084981200263 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.13039130762678, + "y": 133.80089317553222 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.43797860157252, + "y": 133.8344445922493 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2895 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3075909444776812, + "y": -0.03355440017855926 + }, + [ + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 249.89618811964908, + "y": 136.87720911414462 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 247.29682075748957, + "y": 142.1112143029594 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 242.68418014528459, + "y": 145.6987979720377 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 236.9718912387558, + "y": 146.9309365390618 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 231.29101023560088, + "y": 145.56126467033067 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 226.76631658111384, + "y": 141.86337914843511 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 224.29405345512907, + "y": 136.56815148232897 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.36459449560448, + "y": 130.72457723691983 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 226.963961857764, + "y": 125.49057204810505 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 231.57660246996898, + "y": 121.9029883790268 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 237.28889137649776, + "y": 120.67084981200263 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 242.96977237965268, + "y": 122.04052168073387 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 247.49446603413972, + "y": 125.73840720262932 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 249.9667291601245, + "y": 131.03363486873548 + }, + { + "angle": -0.07019251149034629, + "anglePrev": -0.06571231707150078, + "angularSpeed": 0.007110669826817289, + "angularVelocity": -0.004308502895048097, + "area": 569.8258799999999, + "axes": { + "#": 2913 + }, + "bounds": { + "#": 2921 + }, + "circleRadius": 13.697230795610425, + "collisionFilter": { + "#": 2924 + }, + "constraintImpulse": { + "#": 2925 + }, + "density": 0.001, + "force": { + "#": 2926 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 206.75914841461585, + "inverseInertia": 0.004836545360472716, + "inverseMass": 1.7549220474156073, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5698258799999999, + "motion": 0, + "parent": null, + "position": { + "#": 2927 + }, + "positionImpulse": { + "#": 2928 + }, + "positionPrev": { + "#": 2929 + }, + "region": { + "#": 2930 + }, + "render": { + "#": 2931 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7428910195350937, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2933 + }, + "vertices": { + "#": 2934 + } + }, + [ + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + } + ], + { + "x": -0.9291701337087196, + "y": -0.36965235373756256 + }, + { + "x": -0.6768109628418293, + "y": -0.736156858676951 + }, + { + "x": -0.2902804182678968, + "y": -0.9569416276713095 + }, + { + "x": 0.1535252512597723, + "y": -0.9881447248382311 + }, + { + "x": 0.5671463514522859, + "y": -0.8236170323848095 + }, + { + "x": 0.8683057705016968, + "y": -0.4960293226347156 + }, + { + "x": 0.9975375169666268, + "y": -0.07013488607003725 + }, + { + "max": { + "#": 2922 + }, + "min": { + "#": 2923 + } + }, + { + "x": 284.68402461270983, + "y": 154.7996294411089 + }, + { + "x": 257.5781205206729, + "y": 126.73107477233329 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.149137478396, + "y": 140.39434614222512 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.6583739890592, + "y": 140.33826406578206 + }, + { + "endCol": 5, + "endRow": 3, + "id": "5,5,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2932 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.41675736405710495, + "y": 0.13029485547235709 + }, + [ + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + }, + { + "#": 2946 + }, + { + "#": 2947 + }, + { + "#": 2948 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 284.68402461270983, + "y": 142.49825922536013 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 282.4307186746297, + "y": 148.16224204219608 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 277.943037570719, + "y": 152.28814501119606 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 272.1097750128973, + "y": 154.057617512117 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 266.0863066440538, + "y": 153.12176826702455 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.0654601362385, + "y": 149.66439103204414 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 258.04179260956516, + "y": 144.37142176251868 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 257.6142503440822, + "y": 138.2904330590901 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 259.8675562821623, + "y": 132.62645024225415 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 264.35523738607304, + "y": 128.50054727325428 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 270.1884999438948, + "y": 126.73107477233329 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.21196831273824, + "y": 127.66692401742586 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 281.2328148205535, + "y": 131.1243012524061 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 284.25648234722695, + "y": 136.41727052193156 + }, + { + "angle": 0.055951525292068656, + "anglePrev": 0.03364811954471427, + "angularSpeed": 0.019086347135453464, + "angularVelocity": 0.022746617155375494, + "area": 349.69686400000006, + "axes": { + "#": 2950 + }, + "bounds": { + "#": 2957 + }, + "circleRadius": 10.796596364883403, + "collisionFilter": { + "#": 2960 + }, + "constraintImpulse": { + "#": 2961 + }, + "density": 0.001, + "force": { + "#": 2962 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 77.88449319287959, + "inverseInertia": 0.012839526316535404, + "inverseMass": 2.859619581833024, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.34969686400000005, + "motion": 0, + "parent": null, + "position": { + "#": 2963 + }, + "positionImpulse": { + "#": 2964 + }, + "positionPrev": { + "#": 2965 + }, + "region": { + "#": 2966 + }, + "render": { + "#": 2967 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5716384016103095, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2969 + }, + "vertices": { + "#": 2970 + } + }, + [ + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + } + ], + { + "x": -0.836655996721305, + "y": -0.5477287130964383 + }, + { + "x": -0.45087379861011223, + "y": -0.8925877087025612 + }, + { + "x": 0.05592233647056376, + "y": -0.9984351217198209 + }, + { + "x": 0.5477287130964383, + "y": -0.836655996721305 + }, + { + "x": 0.8925877087025612, + "y": -0.45087379861011223 + }, + { + "x": 0.9984351217198209, + "y": 0.05592233647056376 + }, + { + "max": { + "#": 2958 + }, + "min": { + "#": 2959 + } + }, + { + "x": 305.13858050510436, + "y": 158.13873410155114 + }, + { + "x": 283.5736474102623, + "y": 136.62091489003447 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.142574302777, + "y": 147.18984178254925 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 293.65920469760925, + "y": 147.0248840052954 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2968 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.4832491904934386, + "y": 0.07726992443710401 + }, + [ + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.39900717909416, + "y": 150.56268355968592 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 301.3377169053698, + "y": 155.23880661837458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 296.34898798581054, + "y": 157.75876867506403 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 290.7697325256403, + "y": 157.44627465886646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 286.09360946695153, + "y": 154.3849843851421 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 283.5736474102623, + "y": 149.39625546558295 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.88614142645986, + "y": 143.81700000541258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 286.9474317001842, + "y": 139.14087694672392 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 291.9361606197435, + "y": 136.62091489003447 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 297.51541607991373, + "y": 136.93340890623205 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 302.1915391386025, + "y": 139.9946991799564 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 304.7115011952917, + "y": 144.98342809951555 + }, + { + "angle": 0.08185430761978, + "anglePrev": 0.0557737727979208, + "angularSpeed": 0.02400663522823378, + "angularVelocity": 0.02646302745079645, + "area": 615.732246, + "axes": { + "#": 2984 + }, + "bounds": { + "#": 2993 + }, + "circleRadius": 14.181970164609053, + "collisionFilter": { + "#": 2996 + }, + "constraintImpulse": { + "#": 2997 + }, + "density": 0.001, + "force": { + "#": 2998 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 241.39171788103542, + "inverseInertia": 0.0041426441999672416, + "inverseMass": 1.6240825561700398, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6157322460000001, + "motion": 0, + "parent": null, + "position": { + "#": 2999 + }, + "positionImpulse": { + "#": 3000 + }, + "positionPrev": { + "#": 3001 + }, + "region": { + "#": 3002 + }, + "render": { + "#": 3003 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6286782901436451, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3005 + }, + "vertices": { + "#": 3006 + } + }, + [ + { + "#": 2985 + }, + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + } + ], + { + "x": -0.8895319591547088, + "y": -0.4568729513140229 + }, + { + "x": -0.6469241266356796, + "y": -0.7625543747016759 + }, + { + "x": -0.3057899482332307, + "y": -0.9520990009234955 + }, + { + "x": 0.08176293251774878, + "y": -0.9966518062322963 + }, + { + "x": 0.4568729513140229, + "y": -0.8895319591547088 + }, + { + "x": 0.7625543747016759, + "y": -0.6469241266356796 + }, + { + "x": 0.9520990009234955, + "y": -0.3057899482332307 + }, + { + "x": 0.9966518062322963, + "y": 0.08176293251774878 + }, + { + "max": { + "#": 2994 + }, + "min": { + "#": 2995 + } + }, + { + "x": 332.6858884454023, + "y": 162.97825675830387 + }, + { + "x": 304.09740706791337, + "y": 134.32532019431181 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 318.186075075075, + "y": 148.41398820147347 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.71511927800356, + "y": 148.35915638691313 + }, + { + "endCol": 6, + "endRow": 3, + "id": "6,6,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3004 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.4746830551558219, + "y": 0.009445188260997384 + }, + [ + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 331.82226701368336, + "y": 152.30896437770764 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 329.29438302885893, + "y": 157.230756283027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325.0745461561299, + "y": 160.81071644587203 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 319.8065699945304, + "y": 162.50265620863507 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 314.29109889884086, + "y": 162.05018014008186 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 309.3693069935215, + "y": 159.52229615525735 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 305.78934683067644, + "y": 155.30245928252842 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 304.09740706791337, + "y": 150.03448312092885 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 304.54988313646663, + "y": 144.5190120252393 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 307.07776712129106, + "y": 139.59722011991994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 311.2976039940201, + "y": 136.0172599570749 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 316.5655801556196, + "y": 134.32532019431181 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 322.08105125130913, + "y": 134.77779626286508 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 327.0028431566285, + "y": 137.3056802476896 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 330.58280331947356, + "y": 141.52551712041853 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 332.2747430822366, + "y": 146.7934932820181 + }, + { + "angle": 0.09676145148221031, + "anglePrev": 0.07765686412774414, + "angularSpeed": 0.019947107173943723, + "angularVelocity": 0.01900064526457905, + "area": 731.546114, + "axes": { + "#": 3024 + }, + "bounds": { + "#": 3033 + }, + "circleRadius": 15.458290466392318, + "collisionFilter": { + "#": 3036 + }, + "constraintImpulse": { + "#": 3037 + }, + "density": 0.001, + "force": { + "#": 3038 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 340.7391093603774, + "inverseInertia": 0.0029347966597587294, + "inverseMass": 1.366967824532795, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.731546114, + "motion": 0, + "parent": null, + "position": { + "#": 3039 + }, + "positionImpulse": { + "#": 3040 + }, + "positionPrev": { + "#": 3041 + }, + "region": { + "#": 3042 + }, + "render": { + "#": 3043 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5488648888203237, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3045 + }, + "vertices": { + "#": 3046 + } + }, + [ + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + } + ], + { + "x": -0.8825864710239831, + "y": -0.47015010492972525 + }, + { + "x": -0.6354851605255929, + "y": -0.7721130815831068 + }, + { + "x": -0.2916371463068542, + "y": -0.9565290245956963 + }, + { + "x": 0.09661052947918844, + "y": -0.9953222621813254 + }, + { + "x": 0.47015010492972525, + "y": -0.8825864710239831 + }, + { + "x": 0.7721130815831068, + "y": -0.6354851605255929 + }, + { + "x": 0.9565290245956963, + "y": -0.2916371463068542 + }, + { + "x": 0.9953222621813254, + "y": 0.09661052947918844 + }, + { + "max": { + "#": 3034 + }, + "min": { + "#": 3035 + } + }, + { + "x": 362.3867763735883, + "y": 168.0943810210323 + }, + { + "x": 331.2138176260134, + "y": 136.9666114200172 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 346.59527579985377, + "y": 152.34806959385747 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 346.04876221173834, + "y": 152.23410602659175 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3044 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5435436355333536, + "y": 0.1445984193371146 + }, + [ + { + "#": 3047 + }, + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 361.3939792598756, + "y": 156.8146737740303 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 358.558461608503, + "y": 162.1376323168667 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 353.9013682520711, + "y": 165.9706378568413 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 348.1324555051587, + "y": 167.72952776769776 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 342.1286716196809, + "y": 167.14677305387931 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 336.8057130768446, + "y": 164.31125540250682 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 332.97270753686985, + "y": 159.65416204607467 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 331.2138176260134, + "y": 153.88524929916238 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 331.7965723398319, + "y": 147.88146541368465 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 334.6320899912045, + "y": 142.55850687084825 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 339.2891833476364, + "y": 138.72550133087367 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 345.05809609454883, + "y": 136.9666114200172 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 351.0618799800266, + "y": 137.54936613383563 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 356.38483852286294, + "y": 140.38488378520813 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 360.2178440628377, + "y": 145.04197714164027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 361.97673397369414, + "y": 150.81088988855257 + }, + { + "angle": 0.021137087441210366, + "anglePrev": 0.018597365512745996, + "angularSpeed": 0.0008277746371674708, + "angularVelocity": 0.002530693303440301, + "area": 1138.37292, + "axes": { + "#": 3064 + }, + "bounds": { + "#": 3075 + }, + "circleRadius": 19.193458504801097, + "collisionFilter": { + "#": 3078 + }, + "constraintImpulse": { + "#": 3079 + }, + "density": 0.001, + "force": { + "#": 3080 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 825.0362217611556, + "inverseInertia": 0.0012120679960758083, + "inverseMass": 0.8784467571487908, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1383729200000001, + "motion": 0, + "parent": null, + "position": { + "#": 3081 + }, + "positionImpulse": { + "#": 3082 + }, + "positionPrev": { + "#": 3083 + }, + "region": { + "#": 3084 + }, + "render": { + "#": 3085 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5438629535057746, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3087 + }, + "vertices": { + "#": 3088 + } + }, + [ + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + } + ], + { + "x": -0.9442928431394457, + "y": -0.32910640588664075 + }, + { + "x": -0.7964574243407848, + "y": -0.6046946098754672 + }, + { + "x": -0.5704948108764545, + "y": -0.8213012058697097 + }, + { + "x": -0.28890506380503067, + "y": -0.9573577513697854 + }, + { + "x": 0.02113551355083333, + "y": -0.9997766200841781 + }, + { + "x": 0.32910640588664075, + "y": -0.9442928431394457 + }, + { + "x": 0.6046946098754672, + "y": -0.7964574243407848 + }, + { + "x": 0.8213012058697097, + "y": -0.5704948108764545 + }, + { + "x": 0.9573577513697854, + "y": -0.28890506380503067 + }, + { + "x": 0.9997766200841781, + "y": 0.02113551355083333 + }, + { + "max": { + "#": 3076 + }, + "min": { + "#": 3077 + } + }, + { + "x": 399.7488757430894, + "y": 174.25272813124712 + }, + { + "x": 361.2859032286713, + "y": 135.88790964420784 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.30213856280034, + "y": 154.90414497833672 + }, + { + "x": 0.14900492740810978, + "y": -0.16453415990657724 + }, + { + "x": 379.75807954842645, + "y": 154.79490460737995 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3086 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5466255082466773, + "y": 0.12238059726021788 + }, + [ + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + }, + { + "#": 3106 + }, + { + "#": 3107 + }, + { + "#": 3108 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 399.19143400254296, + "y": 158.30714009883266 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 397.2151436777779, + "y": 163.97763686298302 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 393.58425566067086, + "y": 168.75996445603107 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 388.65275361298103, + "y": 172.18549982347818 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 382.90380182252994, + "y": 173.9203803124656 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 376.8991434423044, + "y": 173.7934404180793 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 371.228646678154, + "y": 171.81715009331432 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 366.446319085106, + "y": 168.18626207620727 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 363.02078371765884, + "y": 163.25476002851747 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 361.2859032286713, + "y": 157.5058082380663 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 361.4128431230577, + "y": 151.50114985784074 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 363.38913344782276, + "y": 145.83065309369042 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.0200214649298, + "y": 141.04832550064236 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 371.95152351261964, + "y": 137.62279013319525 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 377.70047530307073, + "y": 135.88790964420784 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 383.70513368329625, + "y": 136.01484953859412 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.37563044744667, + "y": 137.9911398633591 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 394.1579580404947, + "y": 141.62202788046616 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 397.58349340794183, + "y": 146.55352992815597 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 399.31837389692936, + "y": 152.30248171860708 + }, + { + "angle": -0.01197301269691686, + "anglePrev": 0.01161511253961184, + "angularSpeed": 0.019781848275516233, + "angularVelocity": -0.027032066275302573, + "area": 343.22203199999996, + "axes": { + "#": 3110 + }, + "bounds": { + "#": 3117 + }, + "circleRadius": 10.696116255144034, + "collisionFilter": { + "#": 3120 + }, + "constraintImpulse": { + "#": 3121 + }, + "density": 0.001, + "force": { + "#": 3122 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 75.02704455757933, + "inverseInertia": 0.013328527145069033, + "inverseMass": 2.913565875048488, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.34322203199999995, + "motion": 0, + "parent": null, + "position": { + "#": 3123 + }, + "positionImpulse": { + "#": 3124 + }, + "positionPrev": { + "#": 3125 + }, + "region": { + "#": 3126 + }, + "render": { + "#": 3127 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.130978619916633, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3129 + }, + "vertices": { + "#": 3130 + } + }, + [ + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + } + ], + { + "x": -0.871903327285216, + "y": -0.48967804511634877 + }, + { + "x": -0.510414282089965, + "y": -0.8599286369452905 + }, + { + "x": -0.011972726637686452, + "y": -0.9999283243397293 + }, + { + "x": 0.48967804511634877, + "y": -0.871903327285216 + }, + { + "x": 0.8599286369452905, + "y": -0.510414282089965 + }, + { + "x": 0.9999283243397293, + "y": -0.011972726637686452 + }, + { + "max": { + "#": 3118 + }, + "min": { + "#": 3119 + } + }, + { + "x": 419.9184289588864, + "y": 171.02465395180235 + }, + { + "x": 398.6837279703355, + "y": 148.22579752779217 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.0481279247467, + "y": 158.59019748220337 + }, + { + "x": 0.1521932296239375, + "y": 0.006721800224075092 + }, + { + "x": 408.2025192765352, + "y": 157.0272296420625 + }, + { + "endCol": 8, + "endRow": 3, + "id": "8,8,3,3", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3128 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6065237778460073, + "y": 1.4286992500002214 + }, + [ + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 419.41252787915795, + "y": 161.23429687235512 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 416.7011355732889, + "y": 166.0621056676239 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 411.93963173813967, + "y": 168.88831642194828 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 406.40402853459494, + "y": 168.95459743661456 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 401.57621973932623, + "y": 166.24320513074554 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 398.7500089850018, + "y": 161.48170129559628 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 398.6837279703355, + "y": 155.9460980920516 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 401.3951202762045, + "y": 151.11828929678282 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 406.1566241113538, + "y": 148.29207854245846 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 411.6922273148985, + "y": 148.22579752779217 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 416.5200361101672, + "y": 150.9371898336612 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 419.34624686449166, + "y": 155.69869366881045 + }, + { + "angle": 0.02531517993812531, + "anglePrev": 0.03125744763336191, + "angularSpeed": 0.0016504906355670724, + "angularVelocity": -0.005941987173540043, + "area": 328.23895999999996, + "axes": { + "#": 3144 + }, + "bounds": { + "#": 3151 + }, + "circleRadius": 10.460090877914952, + "collisionFilter": { + "#": 3154 + }, + "constraintImpulse": { + "#": 3155 + }, + "density": 0.001, + "force": { + "#": 3156 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 68.61953633030359, + "inverseInertia": 0.014573109255452408, + "inverseMass": 3.0465609566883836, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.32823895999999997, + "motion": 0, + "parent": null, + "position": { + "#": 3157 + }, + "positionImpulse": { + "#": 3158 + }, + "positionPrev": { + "#": 3159 + }, + "region": { + "#": 3160 + }, + "render": { + "#": 3161 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6797720298466238, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3163 + }, + "vertices": { + "#": 3164 + } + }, + [ + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + } + ], + { + "x": -0.8530245317504659, + "y": -0.5218708156545047 + }, + { + "x": -0.47803157860969836, + "y": -0.8783426494551652 + }, + { + "x": 0.025312476117419574, + "y": -0.9996795879444598 + }, + { + "x": 0.5218708156545047, + "y": -0.8530245317504659 + }, + { + "x": 0.8783426494551652, + "y": -0.47803157860969836 + }, + { + "x": 0.9996795879444598, + "y": 0.025312476117419574 + }, + { + "max": { + "#": 3152 + }, + "min": { + "#": 3153 + } + }, + { + "x": 435.2638526724778, + "y": 156.50526283923392 + }, + { + "x": 414.4719325439027, + "y": 135.66017764364645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425.09456924303726, + "y": 145.8294610730871 + }, + { + "x": 0.7449935136855217, + "y": 0.764797582721755 + }, + { + "x": 424.44006467834004, + "y": 144.4049589174259 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3162 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6545095801562866, + "y": 1.4245052240626421 + }, + [ + { + "#": 3165 + }, + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 435.12681092677815, + "y": 148.79135097634313 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 432.3009884021101, + "y": 153.4103023788888 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 427.5449446289125, + "y": 155.99874450252779 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 422.13267933978113, + "y": 155.8617027568281 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 417.51372793723556, + "y": 153.03588023215983 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.9252858135967, + "y": 148.2798364589623 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 415.06232755929636, + "y": 142.86757116983105 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 417.88815008396443, + "y": 138.2486197672854 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 422.644193857162, + "y": 135.66017764364645 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 428.0564591462934, + "y": 135.79721938934614 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 432.67541054883895, + "y": 138.62304191401435 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 435.2638526724778, + "y": 143.37908568721187 + }, + { + "angle": -0.06191558898939856, + "anglePrev": -0.03916994921383517, + "angularSpeed": 0.022880895400524636, + "angularVelocity": -0.022851704664222892, + "area": 714.3709199999998, + "axes": { + "#": 3178 + }, + "bounds": { + "#": 3187 + }, + "circleRadius": 15.275505829903977, + "collisionFilter": { + "#": 3190 + }, + "constraintImpulse": { + "#": 3191 + }, + "density": 0.001, + "force": { + "#": 3192 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 324.9272263186872, + "inverseInertia": 0.0030776122128319417, + "inverseMass": 1.3998330167191018, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7143709199999999, + "motion": 0, + "parent": null, + "position": { + "#": 3193 + }, + "positionImpulse": { + "#": 3194 + }, + "positionPrev": { + "#": 3195 + }, + "region": { + "#": 3196 + }, + "render": { + "#": 3197 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5237954069009978, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3199 + }, + "vertices": { + "#": 3200 + } + }, + [ + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + } + ], + { + "x": -0.9457918973558598, + "y": -0.32477328537920547 + }, + { + "x": -0.7495048185317325, + "y": -0.6619988874595748 + }, + { + "x": -0.43910583794065233, + "y": -0.8984353416281206 + }, + { + "x": -0.06187603725516534, + "y": -0.998083842176396 + }, + { + "x": 0.32477328537920547, + "y": -0.9457918973558598 + }, + { + "x": 0.6619988874595748, + "y": -0.7495048185317325 + }, + { + "x": 0.8984353416281206, + "y": -0.43910583794065233 + }, + { + "x": 0.998083842176396, + "y": -0.06187603725516534 + }, + { + "max": { + "#": 3188 + }, + "min": { + "#": 3189 + } + }, + { + "x": 448.7726679193731, + "y": 184.49285849492816 + }, + { + "x": 417.0945798915913, + "y": 153.62224374588143 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.23226260609835, + "y": 168.7599264603886 + }, + { + "x": 0.270363420319051, + "y": -0.45331714040506904 + }, + { + "x": 430.88058458450354, + "y": 168.4631401449489 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,3,3", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3198 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.362614055985432, + "y": 0.2394887176023417 + }, + [ + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 447.3699453206054, + "y": 170.8071895199174 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 445.4340674137654, + "y": 176.44477647976183 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 441.4888877238272, + "y": 180.91144741168642 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 436.1335792459409, + "y": 183.52882799285496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 430.1849995465696, + "y": 183.8976091748958 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 424.547412586725, + "y": 181.96173126805562 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 420.0807416548005, + "y": 178.01655157811751 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 417.46336107363203, + "y": 172.66124310023116 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 417.0945798915913, + "y": 166.71266340085984 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 419.0304577984313, + "y": 161.0750764410154 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 422.9756374883694, + "y": 156.6084055090908 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 428.3309459662558, + "y": 153.99102492792227 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 434.2795256656271, + "y": 153.62224374588143 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 439.9171126254716, + "y": 155.5581216527216 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 444.3837835573962, + "y": 159.5033013426597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 447.00116413856466, + "y": 164.85860982054606 + }, + { + "angle": 0.03680203084208952, + "anglePrev": 0.024654733323762088, + "angularSpeed": 0.012877902625559393, + "angularVelocity": 0.01240922589081719, + "area": 788.65954, + "axes": { + "#": 3218 + }, + "bounds": { + "#": 3228 + }, + "circleRadius": 16.00655864197531, + "collisionFilter": { + "#": 3231 + }, + "constraintImpulse": { + "#": 3232 + }, + "density": 0.001, + "force": { + "#": 3233 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 396.00036994809216, + "inverseInertia": 0.0025252501661326234, + "inverseMass": 1.2679742642813907, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.78865954, + "motion": 0, + "parent": null, + "position": { + "#": 3234 + }, + "positionImpulse": { + "#": 3235 + }, + "positionPrev": { + "#": 3236 + }, + "region": { + "#": 3237 + }, + "render": { + "#": 3238 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9518405855741366, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3240 + }, + "vertices": { + "#": 3241 + } + }, + [ + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + } + ], + { + "x": -0.9264731949653168, + "y": -0.3763607564701164 + }, + { + "x": -0.741942205364205, + "y": -0.6704638423504279 + }, + { + "x": -0.46774698979747276, + "y": -0.883862406449897 + }, + { + "x": -0.13740284394856547, + "y": -0.9905152489865292 + }, + { + "x": 0.20987095263694727, + "y": -0.9777290950152098 + }, + { + "x": 0.531477676852794, + "y": -0.8470722985714723 + }, + { + "x": 0.7892376707966515, + "y": -0.614087859345449 + }, + { + "x": 0.9516413912041202, + "y": -0.3072111042053763 + }, + { + "x": 0.9993228816916172, + "y": 0.036793724024109804 + }, + { + "max": { + "#": 3229 + }, + "min": { + "#": 3230 + } + }, + { + "x": 513.45148413482, + "y": 166.40792693498497 + }, + { + "x": 481.1377653496647, + "y": 133.68035641639716 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 496.99237848655656, + "y": 149.67651778363486 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 496.09311836273497, + "y": 149.33887188915824 + }, + { + "endCol": 10, + "endRow": 3, + "id": "10,10,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3239 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.8840019955221692, + "y": 0.3971680347764561 + }, + [ + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + }, + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + }, + { + "#": 3258 + }, + { + "#": 3259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.6424185178746, + "y": 153.03461486652958 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.5505320992009, + "y": 158.18413340823514 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.82324697229797, + "y": 162.30878558542153 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.91025686077154, + "y": 164.90877888619048 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 496.4034213461027, + "y": 165.67267915087257 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 490.96767130624835, + "y": 164.50588760812647 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 486.259180712848, + "y": 161.5516443324534 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 482.84530452718246, + "y": 157.1640642033907 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 481.1377653496647, + "y": 151.87465592294552 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 481.3423384552386, + "y": 146.31842070074015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 483.4342248739122, + "y": 141.1689021590346 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 487.16151000081516, + "y": 137.0442499818482 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 492.0745001123416, + "y": 134.44425668107925 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 497.58133562701056, + "y": 133.68035641639716 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 503.0170856668649, + "y": 134.84714795914326 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 507.72557626026526, + "y": 137.80139123481632 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 511.1394524459308, + "y": 142.18897136387903 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 512.8469916234487, + "y": 147.47837964432424 + }, + { + "angle": 0.005201866795545071, + "anglePrev": 0.04623715293018909, + "angularSpeed": 0.0006599766993339193, + "angularVelocity": -0.0461131738327405, + "area": 439.96750399999996, + "axes": { + "#": 3261 + }, + "bounds": { + "#": 3269 + }, + "circleRadius": 12.03596536351166, + "collisionFilter": { + "#": 3272 + }, + "constraintImpulse": { + "#": 3273 + }, + "density": 0.001, + "force": { + "#": 3274 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 123.25983907729764, + "inverseInertia": 0.008112942605522052, + "inverseMass": 2.272895136364435, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.43996750399999995, + "motion": 0, + "parent": null, + "position": { + "#": 3275 + }, + "positionImpulse": { + "#": 3276 + }, + "positionPrev": { + "#": 3277 + }, + "region": { + "#": 3278 + }, + "render": { + "#": 3279 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.908639183296313, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3281 + }, + "vertices": { + "#": 3282 + } + }, + [ + { + "#": 3262 + }, + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + } + ], + { + "x": -0.8987055185879239, + "y": -0.4385526089987503 + }, + { + "x": -0.6194351917032592, + "y": -0.785047796812109 + }, + { + "x": -0.21746650132085965, + "y": -0.9760677849428618 + }, + { + "x": 0.22760929840766997, + "y": -0.9737525390356464 + }, + { + "x": 0.6275689496917487, + "y": -0.778560988865224 + }, + { + "x": 0.9032193843326513, + "y": -0.42917915113125743 + }, + { + "x": 0.9999864703214297, + "y": 0.005201843335662006 + }, + { + "max": { + "#": 3270 + }, + "min": { + "#": 3271 + } + }, + { + "x": 540.5333005321737, + "y": 180.3521643688845 + }, + { + "x": 516.9877394948893, + "y": 153.37228095855806 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 528.7355112740939, + "y": 165.40811811534678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 529.1738631331172, + "y": 165.2992617835393 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,3,3", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3280 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.368447367900103, + "y": -0.19535558611906367 + }, + [ + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540.4554219803925, + "y": 168.1471203125682 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 538.1063493274277, + "y": 172.96096593442732 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 533.9010318329806, + "y": 176.2791354254112 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 528.672901887706, + "y": 177.4439552721355 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4571731369434, + "y": 176.22480737361354 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 519.2866039559783, + "y": 172.8630672428502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 516.9877394948893, + "y": 168.02504345316692 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 517.0156005677952, + "y": 162.66911591812536 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 519.3646732207601, + "y": 157.85527029626624 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 523.5699907152073, + "y": 154.53710080528236 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 528.7981206604819, + "y": 153.37228095855806 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 534.0138494112445, + "y": 154.59142885708002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 538.1844185922095, + "y": 157.95316898784336 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 540.4832830532984, + "y": 162.79119277752665 + }, + { + "angle": 0.03349733045254663, + "anglePrev": 0.05061319393595324, + "angularSpeed": 0.009954509023178614, + "angularVelocity": -0.018430300846602465, + "area": 465.1898319999999, + "axes": { + "#": 3298 + }, + "bounds": { + "#": 3306 + }, + "circleRadius": 12.376071673525377, + "collisionFilter": { + "#": 3309 + }, + "constraintImpulse": { + "#": 3310 + }, + "density": 0.001, + "force": { + "#": 3311 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 137.79733623042054, + "inverseInertia": 0.007257034332854085, + "inverseMass": 2.1496600553384413, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4651898319999999, + "motion": 0, + "parent": null, + "position": { + "#": 3312 + }, + "positionImpulse": { + "#": 3313 + }, + "positionPrev": { + "#": 3314 + }, + "region": { + "#": 3315 + }, + "render": { + "#": 3316 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3972735871795048, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3318 + }, + "vertices": { + "#": 3319 + } + }, + [ + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + } + ], + { + "x": -0.8858998297355402, + "y": -0.4638765909965072 + }, + { + "x": -0.5969647283885215, + "y": -0.8022674822401934 + }, + { + "x": -0.18980251732174203, + "y": -0.981822287595026 + }, + { + "x": 0.2551043908170288, + "y": -0.9669135172216143 + }, + { + "x": 0.6493329967549393, + "y": -0.7605042138773792 + }, + { + "x": 0.9149665008097528, + "y": -0.4035298036031 + }, + { + "x": 0.9994390168844667, + "y": 0.03349106640598937 + }, + { + "max": { + "#": 3307 + }, + "min": { + "#": 3308 + } + }, + { + "x": 564.6116846289503, + "y": 175.5562505313058 + }, + { + "x": 540.0097665313965, + "y": 149.45322562856114 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 552.4602190543403, + "y": 161.8222829015233 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 552.8778532454772, + "y": 160.30481474919705 + }, + { + "endCol": 11, + "endRow": 3, + "id": "11,11,3,3", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3317 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.5445458776099485, + "y": 1.6920353037890266 + }, + [ + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + }, + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 564.4272158351861, + "y": 164.97884116127778 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 561.8723739133258, + "y": 169.8580139143482 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 557.4537811845831, + "y": 173.14587496638526 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 552.0457336164998, + "y": 174.19134017448545 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 546.719806143244, + "y": 172.786180913185 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 542.5312300585776, + "y": 169.20989479725952 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 540.3087534797303, + "y": 164.17063474676843 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 540.4932222734946, + "y": 158.6657246417688 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 543.0480641953549, + "y": 153.7865518886984 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 547.4666569240975, + "y": 150.49869083666132 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 552.8747044921809, + "y": 149.45322562856114 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 558.2006319654366, + "y": 150.85838488986158 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 562.389208050103, + "y": 154.43467100578707 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 564.6116846289503, + "y": 159.47393105627816 + }, + { + "angle": 0.0001507120582033997, + "anglePrev": 0.00012638370283779045, + "angularSpeed": 0.000024328355365609245, + "angularVelocity": 0.000024328355365609245, + "area": 549.15125, + "axes": { + "#": 3335 + }, + "bounds": { + "#": 3343 + }, + "circleRadius": 13.446630658436213, + "collisionFilter": { + "#": 3346 + }, + "constraintImpulse": { + "#": 3347 + }, + "density": 0.001, + "force": { + "#": 3348 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 192.02790707024445, + "inverseInertia": 0.005207576415620656, + "inverseMass": 1.8209919398344263, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.54915125, + "motion": 0, + "parent": null, + "position": { + "#": 3349 + }, + "positionImpulse": { + "#": 3350 + }, + "positionPrev": { + "#": 3351 + }, + "region": { + "#": 3352 + }, + "render": { + "#": 3353 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9076901296202555, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3355 + }, + "vertices": { + "#": 3356 + } + }, + [ + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + } + ], + { + "x": -0.9009459573431874, + "y": -0.43393131017128483 + }, + { + "x": -0.6233333497154709, + "y": -0.7819562232839448 + }, + { + "x": -0.22244191266235713, + "y": -0.9749459449072613 + }, + { + "x": 0.2227357747727486, + "y": -0.9748788512612138 + }, + { + "x": 0.6235690218586315, + "y": -0.7817683000597233 + }, + { + "x": 0.9010767137745592, + "y": -0.43365972362353516 + }, + { + "x": 0.9999999886429378, + "y": 0.00015071205763285094 + }, + { + "max": { + "#": 3344 + }, + "min": { + "#": 3345 + } + }, + { + "x": 628.7502156823508, + "y": 184.2826608575109 + }, + { + "x": 602.4841536689017, + "y": 154.48135351121513 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 615.5936044504986, + "y": 167.92835335849674 + }, + { + "x": 2.9687305527786805, + "y": 0.00018007586974672755 + }, + { + "x": 615.5464440002431, + "y": 165.02104570676417 + }, + { + "endCol": 13, + "endRow": 3, + "id": "12,13,3,3", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3354 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04716045025545668, + "y": 2.9073076517325718 + }, + [ + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + }, + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 628.7021533711423, + "y": 170.92232900887987 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 626.1053407612108, + "y": 176.31393769914098 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 621.4257785076632, + "y": 180.0442324750502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615.5915778254596, + "y": 181.37535320577834 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 609.7577786401774, + "y": 180.0424739667617 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 605.0793410000043, + "y": 176.3107688274172 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 602.4841536689017, + "y": 170.91837764015293 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 602.4850555298548, + "y": 164.9343777081136 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.0818681397864, + "y": 159.5427690178525 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 609.761430393334, + "y": 155.8124742419433 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 615.5956310755375, + "y": 154.48135351121513 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 621.4294302608197, + "y": 155.8142327502318 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 626.1078679009928, + "y": 159.54593788957627 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 628.7030552320954, + "y": 164.93832907684055 + }, + { + "angle": 0.0001425807305280171, + "anglePrev": 0.0001040261461263438, + "angularSpeed": 0.00003855458440167329, + "angularVelocity": 0.00003855458440167329, + "area": 555.09128, + "axes": { + "#": 3372 + }, + "bounds": { + "#": 3380 + }, + "circleRadius": 13.519247256515776, + "collisionFilter": { + "#": 3383 + }, + "constraintImpulse": { + "#": 3384 + }, + "density": 0.001, + "force": { + "#": 3385 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 196.2046090072847, + "inverseInertia": 0.005096720230271818, + "inverseMass": 1.8015055109494786, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.55509128, + "motion": 0, + "parent": null, + "position": { + "#": 3386 + }, + "positionImpulse": { + "#": 3387 + }, + "positionPrev": { + "#": 3388 + }, + "region": { + "#": 3389 + }, + "render": { + "#": 3390 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90633827077167, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3392 + }, + "vertices": { + "#": 3393 + } + }, + [ + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + }, + { + "#": 3379 + } + ], + { + "x": -0.9009470272159265, + "y": -0.43392908885068426 + }, + { + "x": -0.6233463319592875, + "y": -0.7819458743627349 + }, + { + "x": -0.22240147970510857, + "y": -0.9749551691359857 + }, + { + "x": 0.22267949029931847, + "y": -0.974891709165708 + }, + { + "x": 0.6235692874399205, + "y": -0.7817680882216093 + }, + { + "x": 0.9010707304360397, + "y": -0.4336721558406327 + }, + { + "x": 0.9999999898353675, + "y": 0.0001425807300449235 + }, + { + "max": { + "#": 3381 + }, + "min": { + "#": 3382 + } + }, + { + "x": 46.92759393123573, + "y": 222.33262026940739 + }, + { + "x": 20.566621282235214, + "y": 192.38828227574828 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 33.74705003110132, + "y": 205.9072821383326 + }, + { + "x": 0.1329853523804014, + "y": 0 + }, + { + "x": 33.74693487983303, + "y": 203.0009438698421 + }, + { + "endCol": 0, + "endRow": 4, + "id": "0,0,4,4", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3391 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00011515126829216626, + "y": 2.906338268490481 + }, + [ + { + "#": 3394 + }, + { + "#": 3395 + }, + { + "#": 3396 + }, + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 46.926621014295485, + "y": 208.9171613217793 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 44.3158481106876, + "y": 214.3377891309715 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 39.61131333818365, + "y": 218.08811839308987 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 33.745122482211826, + "y": 219.4262820009169 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 27.87931345743512, + "y": 218.08644563596494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 23.17584832556796, + "y": 214.3347749743383 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 20.566621282235214, + "y": 208.9134028937354 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20.56747904790716, + "y": 202.89740295488588 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 23.17825195151505, + "y": 197.4767751456937 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 27.88278672401901, + "y": 193.7264458835753 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 33.74897757999081, + "y": 192.38828227574828 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 39.61478660476753, + "y": 193.72811864070025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 44.31825173663469, + "y": 197.47978930232688 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 46.92747877996744, + "y": 202.90116138292979 + }, + { + "angle": 0.00004983488595836086, + "anglePrev": 0.00003983342242699355, + "angularSpeed": 0.000010001463531367311, + "angularVelocity": 0.000010001463531367311, + "area": 580.8002039999999, + "axes": { + "#": 3409 + }, + "bounds": { + "#": 3417 + }, + "circleRadius": 13.828489368998628, + "collisionFilter": { + "#": 3420 + }, + "constraintImpulse": { + "#": 3421 + }, + "density": 0.001, + "force": { + "#": 3422 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 214.7998214113765, + "inverseInertia": 0.004655497352974227, + "inverseMass": 1.7217624806481648, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5808002039999999, + "motion": 0, + "parent": null, + "position": { + "#": 3423 + }, + "positionImpulse": { + "#": 3424 + }, + "positionPrev": { + "#": 3425 + }, + "region": { + "#": 3426 + }, + "render": { + "#": 3427 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9071124575813725, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3429 + }, + "vertices": { + "#": 3430 + } + }, + [ + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + } + ], + { + "x": -0.9009682866381094, + "y": -0.433884946123266 + }, + { + "x": -0.6234069420147613, + "y": -0.781897553805998 + }, + { + "x": -0.22240117150133815, + "y": -0.974955239441705 + }, + { + "x": 0.22249834396284773, + "y": -0.9749330679250706 + }, + { + "x": 0.6234848704690003, + "y": -0.7818354150946691 + }, + { + "x": 0.9010115273765178, + "y": -0.4337951446646608 + }, + { + "x": 0.999999998758242, + "y": 0.000049834885937733234 + }, + { + "max": { + "#": 3418 + }, + "min": { + "#": 3419 + } + }, + { + "x": 74.53832789452369, + "y": 219.8265339833089 + }, + { + "x": 47.57384700972009, + "y": 189.26342156529074 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 61.056000334922736, + "y": 203.09142154811977 + }, + { + "x": 0.35842848908853675, + "y": 0.000007454751182214972 + }, + { + "x": 61.05582610052441, + "y": 200.18430909575966 + }, + { + "endCol": 1, + "endRow": 4, + "id": "0,1,3,4", + "startCol": 0, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3428 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0001742343983209338, + "y": 2.9071124523601046 + }, + [ + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + }, + { + "#": 3435 + }, + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + }, + { + "#": 3440 + }, + { + "#": 3441 + }, + { + "#": 3442 + }, + { + "#": 3443 + }, + { + "#": 3444 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 74.53784697623732, + "y": 206.1690934182311 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 71.86757064511028, + "y": 211.71396035220008 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 67.05537943462828, + "y": 215.55072054196432 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 61.05531121811998, + "y": 216.9194215309488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 55.05537944952938, + "y": 215.55012252333307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 50.24357067196206, + "y": 211.71288272262655 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 47.57384700972009, + "y": 206.16774967036667 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 47.57415369360816, + "y": 200.01374967800842 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50.24443002473517, + "y": 194.46888274403946 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 55.056621235217186, + "y": 190.6321225542752 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 61.05668945172549, + "y": 189.26342156529074 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 67.05662122031609, + "y": 190.63272057290646 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 71.86842999788338, + "y": 194.469960373613 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 74.53815366012537, + "y": 200.01509342587286 + }, + { + "angle": 0.000004951003990647638, + "anglePrev": 0.0000039885924856099255, + "angularSpeed": 9.624115050377127e-7, + "angularVelocity": 9.624115050377127e-7, + "area": 822.838178, + "axes": { + "#": 3446 + }, + "bounds": { + "#": 3456 + }, + "circleRadius": 16.349665637860085, + "collisionFilter": { + "#": 3459 + }, + "constraintImpulse": { + "#": 3460 + }, + "density": 0.001, + "force": { + "#": 3461 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 431.0675559878762, + "inverseInertia": 0.002319822000308752, + "inverseMass": 1.2153057876223141, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.822838178, + "motion": 0, + "parent": null, + "position": { + "#": 3462 + }, + "positionImpulse": { + "#": 3463 + }, + "positionPrev": { + "#": 3464 + }, + "region": { + "#": 3465 + }, + "render": { + "#": 3466 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907259792862336, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3468 + }, + "vertices": { + "#": 3469 + } + }, + [ + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + } + ], + { + "x": -0.9396991437992244, + "y": -0.3420022209620935 + }, + { + "x": -0.7660484922451789, + "y": -0.6427827840949755 + }, + { + "x": -0.5000180000510733, + "y": -0.8660150112006864 + }, + { + "x": -0.1736398045550084, + "y": -0.9848092293810504 + }, + { + "x": 0.17364955613534494, + "y": -0.9848075099500397 + }, + { + "x": 0.5000265753141128, + "y": -0.8660100599760029 + }, + { + "x": 0.7660548570478819, + "y": -0.642775198645179 + }, + { + "x": 0.9397025302618773, + "y": -0.34199291603690507 + }, + { + "x": 0.9999999999877438, + "y": 0.000004951003990627412 + }, + { + "max": { + "#": 3457 + }, + "min": { + "#": 3458 + } + }, + { + "x": 96.19816094718989, + "y": 249.64230764660786 + }, + { + "x": 63.996100893039916, + "y": 214.03504785432182 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80.0971149487429, + "y": 230.3850478541214 + }, + { + "x": -0.03596288466056039, + "y": 1.0459615898042869 + }, + { + "x": 80.09708300599891, + "y": 227.47778806143455 + }, + { + "endCol": 2, + "endRow": 5, + "id": "1,2,4,5", + "startCol": 1, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3467 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00003194274398268249, + "y": 2.9072597926868546 + }, + [ + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + }, + { + "#": 3474 + }, + { + "#": 3475 + }, + { + "#": 3476 + }, + { + "#": 3477 + }, + { + "#": 3478 + }, + { + "#": 3479 + }, + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 96.19810089264524, + "y": 233.22412757020186 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 94.25607447411176, + "y": 238.56011795528676 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 90.6060529372891, + "y": 242.9100998840688 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 85.68903888144906, + "y": 245.7490755399474 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 80.09703399982766, + "y": 246.735047853921 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 74.50503888158613, + "y": 245.74902016791881 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 69.5880529375467, + "y": 242.90999582386698 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 65.93807447445883, + "y": 238.5599777527557 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 63.996100893039916, + "y": 233.22396813797135 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 63.99612900484055, + "y": 227.54596813804096 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 65.93815542337404, + "y": 222.20997775295606 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 69.58817696019669, + "y": 217.859995824174 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 74.50519101603673, + "y": 215.02102016829542 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 80.09719589765814, + "y": 214.03504785432182 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 85.6891910158997, + "y": 215.021075540324 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 90.60617695993909, + "y": 217.86009988437584 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 94.256155423027, + "y": 222.2101179554871 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 96.1981290044459, + "y": 227.54612757027147 + }, + { + "angle": 8.765012189897099e-7, + "anglePrev": 8.026624687824073e-7, + "angularSpeed": 7.383875020730259e-8, + "angularVelocity": 7.383875020730259e-8, + "area": 1028.4780559999997, + "axes": { + "#": 3489 + }, + "bounds": { + "#": 3500 + }, + "circleRadius": 18.24326989026063, + "collisionFilter": { + "#": 3503 + }, + "constraintImpulse": { + "#": 3504 + }, + "density": 0.001, + "force": { + "#": 3505 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 673.4323322400562, + "inverseInertia": 0.0014849301884180001, + "inverseMass": 0.9723104874879316, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0284780559999998, + "motion": 0, + "parent": null, + "position": { + "#": 3506 + }, + "positionImpulse": { + "#": 3507 + }, + "positionPrev": { + "#": 3508 + }, + "region": { + "#": 3509 + }, + "render": { + "#": 3510 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072749810100116, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3512 + }, + "vertices": { + "#": 3513 + } + }, + [ + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + } + ], + { + "x": -0.9510389480167585, + "y": -0.30907105874729973 + }, + { + "x": -0.8090309241243195, + "y": -0.5877660791595152 + }, + { + "x": -0.5877646609254298, + "y": -0.8090319544784463 + }, + { + "x": -0.30906939157323043, + "y": -0.9510394898176168 + }, + { + "x": 8.765012189895975e-7, + "y": -0.9999999999996159 + }, + { + "x": 0.30907105874729973, + "y": -0.9510389480167585 + }, + { + "x": 0.5877660791595152, + "y": -0.8090309241243195 + }, + { + "x": 0.8090319544784463, + "y": -0.5877646609254298 + }, + { + "x": 0.9510394898176168, + "y": -0.30906939157323043 + }, + { + "x": 0.9999999999996159, + "y": 8.765012189895975e-7 + }, + { + "max": { + "#": 3501 + }, + "min": { + "#": 3502 + } + }, + { + "x": 134.12097666180992, + "y": 241.85694333901588 + }, + { + "x": 98.08293804902371, + "y": 202.91166335514504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 116.10194055055125, + "y": 220.9306658566726 + }, + { + "x": 0.2233938351159846, + "y": 0.19717839133815224 + }, + { + "x": 116.1019069408201, + "y": 218.02339087585685 + }, + { + "endCol": 2, + "endRow": 4, + "id": "2,2,4,4", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3511 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000033609731145389786, + "y": 2.907274980815738 + }, + [ + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + }, + { + "#": 3521 + }, + { + "#": 3522 + }, + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + }, + { + "#": 3533 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 134.12093804900982, + "y": 223.78468165034693 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 132.35693329136188, + "y": 229.21268010419672 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 129.00192924368056, + "y": 233.83067716353332 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 124.38392630302079, + "y": 237.18567311584943 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 118.95592475687471, + "y": 238.94966835820014 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 113.24792475687687, + "y": 238.9496633551312 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 107.81992630302713, + "y": 237.18565859748318 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 103.20192924369047, + "y": 233.83065454980192 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 99.84693329137441, + "y": 229.21265160914209 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 98.08293804902371, + "y": 223.784650062996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 98.08294305209266, + "y": 218.07665006299825 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 99.84694780974058, + "y": 212.64865160914846 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 103.20195185742193, + "y": 208.03065454981186 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 107.81995479808174, + "y": 204.67565859749575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 113.24795634422782, + "y": 202.91166335514504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 118.95595634422563, + "y": 202.91166835821397 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 124.3839547980754, + "y": 204.675673115862 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 129.00195185741205, + "y": 208.03067716354326 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 132.35694780972813, + "y": 212.6486801042031 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 134.1209430520788, + "y": 218.07668165034917 + }, + { + "angle": 0.000001183529514812302, + "anglePrev": 0.0000010159643388504381, + "angularSpeed": 1.675651759618637e-7, + "angularVelocity": 1.675651759618637e-7, + "area": 510.6009000000001, + "axes": { + "#": 3535 + }, + "bounds": { + "#": 3543 + }, + "circleRadius": 12.966092249657065, + "collisionFilter": { + "#": 3546 + }, + "constraintImpulse": { + "#": 3547 + }, + "density": 0.001, + "force": { + "#": 3548 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 166.01355400407064, + "inverseInertia": 0.00602360455445391, + "inverseMass": 1.958476767275576, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5106009000000001, + "motion": 0, + "parent": null, + "position": { + "#": 3549 + }, + "positionImpulse": { + "#": 3550 + }, + "positionPrev": { + "#": 3551 + }, + "region": { + "#": 3552 + }, + "render": { + "#": 3553 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072789949474576, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3555 + }, + "vertices": { + "#": 3556 + } + }, + [ + { + "#": 3536 + }, + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + } + ], + { + "x": -0.9009484670133023, + "y": -0.4339260994528683 + }, + { + "x": -0.6235521751172326, + "y": -0.7817817373836305 + }, + { + "x": -0.22250367360223963, + "y": -0.974931851584257 + }, + { + "x": 0.22250598132285884, + "y": -0.974931324902196 + }, + { + "x": 0.6235540256390065, + "y": -0.781780261396634 + }, + { + "x": 0.9009494941394701, + "y": -0.43392396685344864 + }, + { + "x": 0.9999999999992998, + "y": 0.0000011835295148120254 + }, + { + "max": { + "#": 3544 + }, + "min": { + "#": 3545 + } + }, + { + "x": 152.58009537733955, + "y": 267.3624761162412 + }, + { + "x": 127.29807339126947, + "y": 238.52319712135133 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 139.93907680574327, + "y": 251.4891971213423 + }, + { + "x": 0.06399454824053113, + "y": 1.2989649043048166 + }, + { + "x": 139.9390616486208, + "y": 248.58191812643435 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3554 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000015157122464017902, + "y": 2.9072789949079465 + }, + [ + { + "#": 3557 + }, + { + "#": 3558 + }, + { + "#": 3559 + }, + { + "#": 3560 + }, + { + "#": 3561 + }, + { + "#": 3562 + }, + { + "#": 3563 + }, + { + "#": 3564 + }, + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + }, + { + "#": 3569 + }, + { + "#": 3570 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 152.58007339125177, + "y": 254.37421208233687 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150.0760672380836, + "y": 259.5732091187753 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 145.56506297974752, + "y": 263.1712037798711 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 139.9390614600996, + "y": 264.4551971213333 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 134.31306297975541, + "y": 263.1711904627971 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 129.8020672380978, + "y": 259.573185123898 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 127.29807339126947, + "y": 254.37418216034368 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 127.2980802202348, + "y": 248.60418216034773 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.80208637340294, + "y": 243.4051851239093 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 134.31309063173902, + "y": 239.80719046281342 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 139.93909215138694, + "y": 238.52319712135133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 145.56509063173112, + "y": 239.80720377988754 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 150.07608637338873, + "y": 243.40520911878667 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.58008022021707, + "y": 248.60421208234092 + }, + { + "angle": 6.42231068839632e-7, + "anglePrev": 5.729368746796914e-7, + "angularSpeed": 6.929419415994059e-8, + "angularVelocity": 6.929419415994059e-8, + "area": 1006.7004680000002, + "axes": { + "#": 3572 + }, + "bounds": { + "#": 3583 + }, + "circleRadius": 18.048996913580247, + "collisionFilter": { + "#": 3586 + }, + "constraintImpulse": { + "#": 3587 + }, + "density": 0.001, + "force": { + "#": 3588 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 645.2149843764809, + "inverseInertia": 0.0015498710107707343, + "inverseMass": 0.9933441294476479, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0067004680000002, + "motion": 0, + "parent": null, + "position": { + "#": 3589 + }, + "positionImpulse": { + "#": 3590 + }, + "positionPrev": { + "#": 3591 + }, + "region": { + "#": 3592 + }, + "render": { + "#": 3593 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90726943347521, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3595 + }, + "vertices": { + "#": 3596 + } + }, + [ + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + } + ], + { + "x": -0.9510637952219204, + "y": -0.30899459124404965 + }, + { + "x": -0.8090648477958725, + "y": -0.5877193820702544 + }, + { + "x": -0.5877183428566054, + "y": -0.809065602698499 + }, + { + "x": -0.3089933696383592, + "y": -0.951064192112989 + }, + { + "x": 6.422310688395879e-7, + "y": -0.9999999999997938 + }, + { + "x": 0.30899459124404965, + "y": -0.9510637952219204 + }, + { + "x": 0.5877193820702544, + "y": -0.8090648477958725 + }, + { + "x": 0.809065602698499, + "y": -0.5877183428566054 + }, + { + "x": 0.951064192112989, + "y": -0.3089933696383592 + }, + { + "x": 0.9999999999997938, + "y": 6.422310688395879e-7 + }, + { + "max": { + "#": 3584 + }, + "min": { + "#": 3585 + } + }, + { + "x": 199.13409119727862, + "y": 296.97558206727695 + }, + { + "x": 163.48008518856454, + "y": 258.4143090077735 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.30708700157916, + "y": 276.2413108207881 + }, + { + "x": -0.08101077339944283, + "y": 1.5883503021044723 + }, + { + "x": 181.30708461889432, + "y": 273.33404138731385 + }, + { + "endCol": 4, + "endRow": 6, + "id": "3,4,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3594 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0000023826848487829013, + "y": 2.9072694334742333 + }, + [ + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + }, + { + "#": 3602 + }, + { + "#": 3603 + }, + { + "#": 3604 + }, + { + "#": 3605 + }, + { + "#": 3606 + }, + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + }, + { + "#": 3616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.13408518855718, + "y": 279.0643222698407 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.38908173913444, + "y": 284.4353211491465 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 194.0700788047814, + "y": 289.0043190175806 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 189.5010766732174, + "y": 292.32331608322613 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 184.13007555252534, + "y": 294.0683126338027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 178.48407555252652, + "y": 294.0683090077661 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 173.11307667322083, + "y": 292.32330555834335 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 168.54407880478666, + "y": 289.0043026239903 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 165.22508173914107, + "y": 284.4353004924263 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 163.48008518856454, + "y": 279.0642993717342 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 163.48008881460115, + "y": 273.4182993717355 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 165.22509226402389, + "y": 268.0473004924298 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 168.54409519837694, + "y": 263.47830262399566 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 173.11309732994093, + "y": 260.15930555835007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 178.48409845063298, + "y": 258.4143090077735 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 184.1300984506318, + "y": 258.41431263381014 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 189.5010973299375, + "y": 260.15931608323285 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 194.07009519837166, + "y": 263.47831901758593 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.38909226401725, + "y": 268.04732114915 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.13408881459378, + "y": 273.418322269842 + }, + { + "angle": -3.60780225864444e-7, + "anglePrev": -2.9905499117429304e-7, + "angularSpeed": 4.641841085421192e-8, + "angularVelocity": -6.053451176187096e-8, + "area": 1180.0324160000002, + "axes": { + "#": 3618 + }, + "bounds": { + "#": 3629 + }, + "circleRadius": 19.541366598079563, + "collisionFilter": { + "#": 3632 + }, + "constraintImpulse": { + "#": 3633 + }, + "density": 0.001, + "force": { + "#": 3634 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 886.5266168317393, + "inverseInertia": 0.0011279977171737843, + "inverseMass": 0.8474343470916987, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1800324160000002, + "motion": 0, + "parent": null, + "position": { + "#": 3635 + }, + "positionImpulse": { + "#": 3636 + }, + "positionPrev": { + "#": 3637 + }, + "region": { + "#": 3638 + }, + "render": { + "#": 3639 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072717195706588, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3641 + }, + "vertices": { + "#": 3642 + } + }, + [ + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + }, + { + "#": 3624 + }, + { + "#": 3625 + }, + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + } + ], + { + "x": -0.951028170697313, + "y": -0.30910421954434997 + }, + { + "x": -0.809054490870425, + "y": -0.5877336393319661 + }, + { + "x": -0.587734223113537, + "y": -0.809054066784864 + }, + { + "x": -0.3091049057685859, + "y": -0.9510279476596852 + }, + { + "x": -3.6078022586443603e-7, + "y": -0.9999999999999349 + }, + { + "x": 0.30910421954434997, + "y": -0.951028170697313 + }, + { + "x": 0.5877336393319661, + "y": -0.809054490870425 + }, + { + "x": 0.809054066784864, + "y": -0.587734223113537 + }, + { + "x": 0.9510279476596852, + "y": -0.3091049057685859 + }, + { + "x": 0.9999999999999349, + "y": -3.6078022586443603e-7 + }, + { + "max": { + "#": 3630 + }, + "min": { + "#": 3631 + } + }, + { + "x": 211.8796076079134, + "y": 247.81534311068333 + }, + { + "x": 173.27759693048557, + "y": 206.3060691853173 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 192.57860650500947, + "y": 225.60707028822117 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 192.57861008885914, + "y": 222.6998013539553 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3640 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0000027764539822783263, + "y": 2.9072684070406467 + }, + [ + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + }, + { + "#": 3647 + }, + { + "#": 3648 + }, + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + }, + { + "#": 3657 + }, + { + "#": 3658 + }, + { + "#": 3659 + }, + { + "#": 3660 + }, + { + "#": 3661 + }, + { + "#": 3662 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 211.8796076079134, + "y": 228.6640633248018 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 209.98960970585048, + "y": 234.47906400667605 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 206.3966114902697, + "y": 239.42506530295913 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 201.45061278655342, + "y": 243.0180670873779 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 195.63561346842835, + "y": 244.90806918531476 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 189.52161346842882, + "y": 244.90807139112502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 183.70661278655456, + "y": 243.0180734890622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 178.7606114902715, + "y": 239.4250752734814 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 175.16760970585273, + "y": 234.47907656976508 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 173.27760760791588, + "y": 228.66407725164007 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 173.27760540210554, + "y": 222.55007725164054 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 175.1676033041684, + "y": 216.73507656976628 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 178.7606015197492, + "y": 211.7890752734832 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 183.70660022346553, + "y": 208.19607348906445 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 189.52159954159055, + "y": 206.30607139112757 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 195.63559954159007, + "y": 206.3060691853173 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 201.4506002234644, + "y": 208.19606708738013 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 206.3966015197474, + "y": 211.78906530296092 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 209.98960330416617, + "y": 216.73506400667725 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 211.87960540210307, + "y": 222.55006332480227 + }, + { + "angle": -3.9535836691782057e-7, + "anglePrev": -3.366324225289422e-7, + "angularSpeed": 5.87259443888784e-8, + "angularVelocity": -5.87259443888784e-8, + "area": 522.984246, + "axes": { + "#": 3664 + }, + "bounds": { + "#": 3672 + }, + "circleRadius": 13.12221364883402, + "collisionFilter": { + "#": 3675 + }, + "constraintImpulse": { + "#": 3676 + }, + "density": 0.001, + "force": { + "#": 3677 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 174.1636865391301, + "inverseInertia": 0.005741725039653003, + "inverseMass": 1.9121034861918191, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.522984246, + "motion": 0, + "parent": null, + "position": { + "#": 3678 + }, + "positionImpulse": { + "#": 3679 + }, + "positionPrev": { + "#": 3680 + }, + "region": { + "#": 3681 + }, + "render": { + "#": 3682 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907272949389987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3684 + }, + "vertices": { + "#": 3685 + } + }, + [ + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + } + ], + { + "x": -0.9009720945410657, + "y": -0.43387703886963763 + }, + { + "x": -0.6235460076648336, + "y": -0.7817866565280112 + }, + { + "x": -0.2224206853571532, + "y": -0.9749507878479065 + }, + { + "x": 0.222419914447181, + "y": -0.9749509637193597 + }, + { + "x": 0.6235453894928472, + "y": -0.7817871495760292 + }, + { + "x": 0.9009717514669493, + "y": -0.43387775128321393 + }, + { + "x": 0.9999999999999217, + "y": -3.9535836691781035e-7 + }, + { + "max": { + "#": 3673 + }, + "min": { + "#": 3674 + } + }, + { + "x": 268.5770291277747, + "y": 216.95273985244557 + }, + { + "x": 242.99102681888377, + "y": 190.70873985244765 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.78402797332924, + "y": 203.8307398524466 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.78403621791523, + "y": 200.92346690306832 + }, + { + "endCol": 5, + "endRow": 4, + "id": "5,5,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3683 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000008244585987995379, + "y": 2.9072729493782967 + }, + [ + { + "#": 3686 + }, + { + "#": 3687 + }, + { + "#": 3688 + }, + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + }, + { + "#": 3694 + }, + { + "#": 3695 + }, + { + "#": 3696 + }, + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 268.5770291277747, + "y": 206.75073479462674 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 266.0430312081507, + "y": 212.01273579646448 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 261.47803264765076, + "y": 215.65373760127517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 255.78403316122174, + "y": 216.95273985244557 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250.09003264765167, + "y": 215.65374210361622 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 245.52503120815214, + "y": 212.01274390842747 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 242.99102912777664, + "y": 206.75074491026595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 242.99102681888377, + "y": 200.9107449102665 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 245.52502473850788, + "y": 195.64874390842874 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 250.09002329900773, + "y": 192.00774210361806 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 255.78402278543675, + "y": 190.70873985244765 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.478023299007, + "y": 192.007737601277 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 266.04302473850635, + "y": 195.64873579646576 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 268.57702681888185, + "y": 200.91073479462727 + }, + { + "angle": -0.000003519874014592788, + "anglePrev": -0.0000033065702335200034, + "angularSpeed": 2.1330378107278455e-7, + "angularVelocity": -2.1330378107278455e-7, + "area": 423.244812, + "axes": { + "#": 3701 + }, + "bounds": { + "#": 3708 + }, + "circleRadius": 11.87795781893004, + "collisionFilter": { + "#": 3711 + }, + "constraintImpulse": { + "#": 3712 + }, + "density": 0.001, + "force": { + "#": 3713 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 114.09084813562451, + "inverseInertia": 0.008764944921885922, + "inverseMass": 2.362698777746625, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.423244812, + "motion": 0, + "parent": null, + "position": { + "#": 3714 + }, + "positionImpulse": { + "#": 3715 + }, + "positionPrev": { + "#": 3716 + }, + "region": { + "#": 3717 + }, + "render": { + "#": 3718 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907266683441174, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3720 + }, + "vertices": { + "#": 3721 + } + }, + [ + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + } + ], + { + "x": -0.8660546408192148, + "y": -0.4999493565507417 + }, + { + "x": -0.4999554533448042, + "y": -0.8660511212802574 + }, + { + "x": -0.0000035198740145855203, + "y": -0.9999999999938053 + }, + { + "x": 0.4999493565507417, + "y": -0.8660546408192148 + }, + { + "x": 0.8660511212802574, + "y": -0.4999554533448042 + }, + { + "x": 0.9999999999938053, + "y": -0.0000035198740145855203 + }, + { + "max": { + "#": 3709 + }, + "min": { + "#": 3710 + } + }, + { + "x": 295.73534660526764, + "y": 223.7384995961805 + }, + { + "x": 272.78931682361366, + "y": 197.8852112727075 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 284.26233578524597, + "y": 209.3582220927291 + }, + { + "x": 0.20791271901111671, + "y": 0.10324658792665238 + }, + { + "x": 284.2623439268566, + "y": 206.45095540929933 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3719 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000008141610644543107, + "y": 2.9072666834297736 + }, + [ + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + }, + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 295.73534660526764, + "y": 212.43218170919553 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 292.6613653486158, + "y": 217.75719252925524 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 287.3363761687414, + "y": 220.83121127256535 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 281.1883761687796, + "y": 220.83123291275072 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 275.8633653487198, + "y": 217.75725165609896 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 272.7893466054098, + "y": 212.43226247622462 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 272.7893249652243, + "y": 206.28426247626268 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 275.86330622187614, + "y": 200.95925165620298 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 281.1882954017505, + "y": 197.88523291289286 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 287.33629540171233, + "y": 197.8852112727075 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 292.6613062217721, + "y": 200.95919252935926 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 295.73532496508216, + "y": 206.2841817092336 + }, + { + "angle": -0.000006469279291123915, + "anglePrev": -0.0000059432503316169, + "angularSpeed": 5.260289595070154e-7, + "angularVelocity": -5.260289595070154e-7, + "area": 346.487844, + "axes": { + "#": 3735 + }, + "bounds": { + "#": 3742 + }, + "circleRadius": 10.7468707133059, + "collisionFilter": { + "#": 3745 + }, + "constraintImpulse": { + "#": 3746 + }, + "density": 0.001, + "force": { + "#": 3747 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 76.46162572822102, + "inverseInertia": 0.013078455898314918, + "inverseMass": 2.886104137032871, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.346487844, + "motion": 0, + "parent": null, + "position": { + "#": 3748 + }, + "positionImpulse": { + "#": 3749 + }, + "positionPrev": { + "#": 3750 + }, + "region": { + "#": 3751 + }, + "render": { + "#": 3752 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072585695458715, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3754 + }, + "vertices": { + "#": 3755 + } + }, + [ + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + } + ], + { + "x": -0.8660032333488552, + "y": -0.5000383983548944 + }, + { + "x": -0.5000496031466065, + "y": -0.8659967635002577 + }, + { + "x": -0.000006469279291078789, + "y": -0.9999999999790742 + }, + { + "x": 0.5000383983548944, + "y": -0.8660032333488552 + }, + { + "x": 0.8659967635002577, + "y": -0.5000496031466065 + }, + { + "x": 0.9999999999790742, + "y": -0.000006469279291078789 + }, + { + "max": { + "#": 3743 + }, + "min": { + "#": 3744 + } + }, + { + "x": 314.595980337254, + "y": 237.25116874794497 + }, + { + "x": 293.83393892819953, + "y": 213.58187419670722 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 304.2149623464055, + "y": 223.9628921875557 + }, + { + "x": 0.15115010341838428, + "y": 0.39825567813622614 + }, + { + "x": 304.214967773763, + "y": 221.0556336180149 + }, + { + "endCol": 6, + "endRow": 4, + "id": "6,6,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3753 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000005427357497183038, + "y": 2.9072585695408057 + }, + [ + { + "#": 3756 + }, + { + "#": 3757 + }, + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.595980337254, + "y": 226.74382502990917 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 311.81401150629983, + "y": 231.56184302734331 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 306.9960295039357, + "y": 234.34387419627276 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 301.4340295040521, + "y": 234.34391017840417 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 296.6160115066178, + "y": 231.56194134745002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 293.83398033768844, + "y": 226.74395934508578 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 293.83394435555704, + "y": 221.18195934520222 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 296.6159131865112, + "y": 216.36394134776808 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 301.43389518887534, + "y": 213.58191017883863 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 306.99589518875894, + "y": 213.58187419670722 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 311.81391318619325, + "y": 216.36384302766137 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 314.5959443551226, + "y": 221.1818250300256 + }, + { + "angle": -0.000004702549535572793, + "anglePrev": -0.000004259955467510376, + "angularSpeed": 4.425940680624179e-7, + "angularVelocity": -4.425940680624179e-7, + "area": 956.757512, + "axes": { + "#": 3769 + }, + "bounds": { + "#": 3779 + }, + "circleRadius": 17.630186899862824, + "collisionFilter": { + "#": 3782 + }, + "constraintImpulse": { + "#": 3783 + }, + "density": 0.001, + "force": { + "#": 3784 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 582.8009229244419, + "inverseInertia": 0.0017158517783089483, + "inverseMass": 1.0451969150569889, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.956757512, + "motion": 0, + "parent": null, + "position": { + "#": 3785 + }, + "positionImpulse": { + "#": 3786 + }, + "positionPrev": { + "#": 3787 + }, + "region": { + "#": 3788 + }, + "render": { + "#": 3789 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072693972383292, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3791 + }, + "vertices": { + "#": 3792 + } + }, + [ + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + }, + { + "#": 3776 + }, + { + "#": 3777 + }, + { + "#": 3778 + } + ], + { + "x": -0.9397091728653393, + "y": -0.34197466343684 + }, + { + "x": -0.7660648641653405, + "y": -0.642763272046046 + }, + { + "x": -0.49999045878201126, + "y": -0.8660309123391348 + }, + { + "x": -0.17361294176352352, + "y": -0.9848139654027128 + }, + { + "x": 0.1736036794829339, + "y": -0.9848155982060739 + }, + { + "x": 0.4999823136533686, + "y": -0.8660356147606315 + }, + { + "x": 0.7660588188792062, + "y": -0.6427704769335602 + }, + { + "x": 0.9397059565181886, + "y": -0.3419835014795839 + }, + { + "x": 0.9999999999889432, + "y": -0.0000047025495355554614 + }, + { + "max": { + "#": 3780 + }, + "min": { + "#": 3781 + } + }, + { + "x": 332.7962594224725, + "y": 273.1336531153526 + }, + { + "x": 298.07221012727183, + "y": 234.96638371857648 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 315.4342450281603, + "y": 252.59638371838156 + }, + { + "x": -0.25373050166740474, + "y": 0.8001600422065356 + }, + { + "x": 315.43426553473665, + "y": 249.68911432121556 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3790 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000020506576333332305, + "y": 2.907269397166007 + }, + [ + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + }, + { + "#": 3797 + }, + { + "#": 3798 + }, + { + "#": 3799 + }, + { + "#": 3800 + }, + { + "#": 3801 + }, + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + }, + { + "#": 3809 + }, + { + "#": 3810 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 332.7962594224725, + "y": 255.65730207268268 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330.70228648096565, + "y": 261.41131191975785 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 326.7663085406691, + "y": 266.10233042894083 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 321.4643229352318, + "y": 269.16335536182464 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 315.4343279341087, + "y": 270.2263837181866 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 309.4043229353651, + "y": 269.1634120745721 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 304.1023085409197, + "y": 266.1024370075235 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300.16628648130336, + "y": 261.4114555168104 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 298.07225942285646, + "y": 255.65746536401275 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 298.07223063384816, + "y": 249.53546536408044 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 300.166203575355, + "y": 243.7814555170053 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 304.1021815156515, + "y": 239.09043700782226 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 309.40416712108885, + "y": 236.02941207493842 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 315.43416212221194, + "y": 234.96638371857648 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 321.46416712095555, + "y": 236.029355362191 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 326.76618151540094, + "y": 239.09033042923957 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 330.7022035750173, + "y": 243.7813119199527 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 332.7962306334642, + "y": 249.53530207275037 + }, + { + "angle": -0.000008583133963138185, + "anglePrev": -0.000007777345451611529, + "angularSpeed": 8.057885115266573e-7, + "angularVelocity": -8.057885115266573e-7, + "area": 374.2776119999999, + "axes": { + "#": 3812 + }, + "bounds": { + "#": 3819 + }, + "circleRadius": 11.169881687242798, + "collisionFilter": { + "#": 3822 + }, + "constraintImpulse": { + "#": 3823 + }, + "density": 0.001, + "force": { + "#": 3824 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 89.21856250806918, + "inverseInertia": 0.011208429859084056, + "inverseMass": 2.671813562816042, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.3742776119999999, + "motion": 0, + "parent": null, + "position": { + "#": 3825 + }, + "positionImpulse": { + "#": 3826 + }, + "positionPrev": { + "#": 3827 + }, + "region": { + "#": 3828 + }, + "render": { + "#": 3829 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072601238176623, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3831 + }, + "vertices": { + "#": 3832 + } + }, + [ + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + } + ], + { + "x": -0.8660141769744426, + "y": -0.5000194449011744 + }, + { + "x": -0.5000343110588907, + "y": -0.8660055933790846 + }, + { + "x": -0.0000085831339630328, + "y": -0.9999999999631649 + }, + { + "x": 0.5000194449011744, + "y": -0.8660141769744426 + }, + { + "x": 0.8660055933790846, + "y": -0.5000343110588907 + }, + { + "x": 0.9999999999631649, + "y": -0.0000085831339630328 + }, + { + "max": { + "#": 3820 + }, + "min": { + "#": 3821 + } + }, + { + "x": 357.8701410411351, + "y": 285.18091964939936 + }, + { + "x": 336.2920735314639, + "y": 260.6956098987509 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 347.08111622769223, + "y": 271.48463471219384 + }, + { + "x": -0.14379176966139529, + "y": 1.2837246816801173 + }, + { + "x": 347.08113411047765, + "y": 268.57737458843116 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,5,5", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3830 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000017882785392657752, + "y": 2.9072601237626627 + }, + [ + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + }, + { + "#": 3841 + }, + { + "#": 3842 + }, + { + "#": 3843 + }, + { + "#": 3844 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 357.8701410411351, + "y": 274.375542108655 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.9791840169933, + "y": 279.38256692231084 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.9722088310182, + "y": 282.2736098979561 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.1902088312311, + "y": 282.2736595256367 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 339.1831840175752, + "y": 279.38270250149486 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 336.29214104193005, + "y": 274.3757273155196 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 336.29209141424934, + "y": 268.5937273157326 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 339.18304843839115, + "y": 263.5867025020768 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 344.1900236243664, + "y": 260.6956595264315 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 349.9720236241535, + "y": 260.6956098987509 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 354.9790484378093, + "y": 263.58656692289264 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 357.8700914134544, + "y": 268.59354210886795 + }, + { + "angle": -0.08256168439221453, + "anglePrev": -0.062232381655996094, + "angularSpeed": 0.020329302736218448, + "angularVelocity": -0.020329302736218448, + "area": 706.691188, + "axes": { + "#": 3846 + }, + "bounds": { + "#": 3855 + }, + "circleRadius": 15.193115569272976, + "collisionFilter": { + "#": 3858 + }, + "constraintImpulse": { + "#": 3859 + }, + "density": 0.001, + "force": { + "#": 3860 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 317.9786205172635, + "inverseInertia": 0.003144865520748772, + "inverseMass": 1.4150452375528983, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7066911880000001, + "motion": 0, + "parent": null, + "position": { + "#": 3861 + }, + "positionImpulse": { + "#": 3862 + }, + "positionPrev": { + "#": 3863 + }, + "region": { + "#": 3864 + }, + "render": { + "#": 3865 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.4977633829109798, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3867 + }, + "vertices": { + "#": 3868 + } + }, + [ + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + } + ], + { + "x": -0.9523224479232903, + "y": -0.3050933548627235 + }, + { + "x": -0.7630118029800266, + "y": -0.6463845515737278 + }, + { + "x": -0.4574805726809911, + "y": -0.8892196160788806 + }, + { + "x": -0.08246792034054201, + "y": -0.996593719684559 + }, + { + "x": 0.3050933548627235, + "y": -0.9523224479232903 + }, + { + "x": 0.6463845515737278, + "y": -0.7630118029800266 + }, + { + "x": 0.8892196160788806, + "y": -0.4574805726809911 + }, + { + "x": 0.996593719684559, + "y": -0.08246792034054201 + }, + { + "max": { + "#": 3856 + }, + "min": { + "#": 3857 + } + }, + { + "x": 336.61455413008605, + "y": 365.7236797805349 + }, + { + "x": 305.71230900413, + "y": 333.14045449058574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 321.5198761971771, + "y": 348.2351324234947 + }, + { + "x": -3.143196781104746, + "y": 1.1984728965065683 + }, + { + "x": 322.2327654573152, + "y": 345.84126299936344 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3866 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.7128892601381495, + "y": 2.393869424131271 + }, + [ + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + }, + { + "#": 3880 + }, + { + "#": 3881 + }, + { + "#": 3882 + }, + { + "#": 3883 + }, + { + "#": 3884 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.61455413008605, + "y": 349.96018172764525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 334.8059563735467, + "y": 355.60556277369 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 330.9739410226966, + "y": 360.1289891686752 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325.70263446331666, + "y": 362.84094052462495 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 319.79482689302654, + "y": 363.32981035640364 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 314.14944584698185, + "y": 361.5212125998642 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 309.62601945199657, + "y": 357.6891972490141 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 306.91406809604683, + "y": 352.41789068963413 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 306.42519826426815, + "y": 346.51008311934413 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 308.23379602080763, + "y": 340.8647020732994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 312.06581137165773, + "y": 336.3412756783141 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 317.33711793103765, + "y": 333.6293243223644 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 323.24492550132766, + "y": 333.14045449058574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 328.89030654737246, + "y": 334.94905224712517 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 333.41373294235774, + "y": 338.7810675979752 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 336.12568429830736, + "y": 344.0523741573552 + }, + { + "angle": -0.020223386637190952, + "anglePrev": -0.016586114470665072, + "angularSpeed": 0.003722087429466533, + "angularVelocity": -0.0036492949751292907, + "area": 1214.3271480000003, + "axes": { + "#": 3886 + }, + "bounds": { + "#": 3897 + }, + "circleRadius": 19.82334533607682, + "collisionFilter": { + "#": 3900 + }, + "constraintImpulse": { + "#": 3901 + }, + "density": 0.001, + "force": { + "#": 3902 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 938.8048244237383, + "inverseInertia": 0.001065184129847037, + "inverseMass": 0.8235013123498081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2143271480000004, + "motion": 0, + "parent": null, + "position": { + "#": 3903 + }, + "positionImpulse": { + "#": 3904 + }, + "positionPrev": { + "#": 3905 + }, + "region": { + "#": 3906 + }, + "render": { + "#": 3907 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.34205544033588975, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3909 + }, + "vertices": { + "#": 3910 + } + }, + [ + { + "#": 3887 + }, + { + "#": 3888 + }, + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + }, + { + "#": 3893 + }, + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + } + ], + { + "x": -0.95714213239148, + "y": -0.2896186085200516 + }, + { + "x": -0.8206679885891333, + "y": -0.571405331183623 + }, + { + "x": -0.6041223244668131, + "y": -0.7968915968190494 + }, + { + "x": -0.3280844975004141, + "y": -0.9446483803510709 + }, + { + "x": -0.02022200815384567, + "y": -0.9997955142859093 + }, + { + "x": 0.2896186085200516, + "y": -0.95714213239148 + }, + { + "x": 0.571405331183623, + "y": -0.8206679885891333 + }, + { + "x": 0.7968915968190494, + "y": -0.6041223244668131 + }, + { + "x": 0.9446483803510709, + "y": -0.3280844975004141 + }, + { + "x": 0.9997955142859093, + "y": -0.02022200815384567 + }, + { + "max": { + "#": 3898 + }, + "min": { + "#": 3899 + } + }, + { + "x": 400.5170413558288, + "y": 362.29447527445024 + }, + { + "x": 361.10469956750296, + "y": 322.70561465949476 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.8793365343398, + "y": 342.3433194809836 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 381.07193072402856, + "y": 342.3217555683261 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3908 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.184673123500545, + "y": 0.06311169590759391 + }, + [ + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + }, + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + }, + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + }, + { + "#": 3929 + }, + { + "#": 3930 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400.5170413558288, + "y": 345.04775867314015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 398.72072277655644, + "y": 350.9842977795354 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 395.1769221463778, + "y": 356.0740013164367 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 390.2346774929344, + "y": 359.82070957643094 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 384.3756291217845, + "y": 361.8556074079023 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 378.1748973421833, + "y": 361.98102430247246 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 372.238358235788, + "y": 360.1847057232003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.14865469888673, + "y": 356.6409050930217 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 363.4019464388924, + "y": 351.6986604395782 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 361.36704860742105, + "y": 345.8396120684284 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 361.24163171285085, + "y": 339.63888028882707 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 363.0379502921232, + "y": 333.70234118243184 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 366.5817509223018, + "y": 328.6126376455305 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 371.52399557574523, + "y": 324.8659293855363 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 377.3830439468951, + "y": 322.8310315540648 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 383.5837757264963, + "y": 322.70561465949476 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.52031483289164, + "y": 324.5019332387669 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 394.6100183697929, + "y": 328.04573386894555 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 398.3567266297872, + "y": 332.987978522389 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 400.3916244612586, + "y": 338.84702689353884 + }, + { + "angle": 0.0058217985809951595, + "anglePrev": 0.007377400762284767, + "angularSpeed": 0.0004861882827123188, + "angularVelocity": -0.0017111714017637265, + "area": 1146.079588, + "axes": { + "#": 3932 + }, + "bounds": { + "#": 3943 + }, + "circleRadius": 19.25810185185185, + "collisionFilter": { + "#": 3946 + }, + "constraintImpulse": { + "#": 3947 + }, + "density": 0.001, + "force": { + "#": 3948 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 836.2448559249976, + "inverseInertia": 0.0011958220046613829, + "inverseMass": 0.8725397524486754, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.146079588, + "motion": 0, + "parent": null, + "position": { + "#": 3949 + }, + "positionImpulse": { + "#": 3950 + }, + "positionPrev": { + "#": 3951 + }, + "region": { + "#": 3952 + }, + "render": { + "#": 3953 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8949318342246433, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3955 + }, + "vertices": { + "#": 3956 + } + }, + [ + { + "#": 3933 + }, + { + "#": 3934 + }, + { + "#": 3935 + }, + { + "#": 3936 + }, + { + "#": 3937 + }, + { + "#": 3938 + }, + { + "#": 3939 + }, + { + "#": 3940 + }, + { + "#": 3941 + }, + { + "#": 3942 + } + ], + { + "x": -0.9492309400367099, + "y": -0.31458007323577225 + }, + { + "x": -0.8056525162950666, + "y": -0.5923884055140062 + }, + { + "x": -0.5829677685342083, + "y": -0.812495280509521 + }, + { + "x": -0.30350653619413326, + "y": -0.9528293564366279 + }, + { + "x": 0.005821765694352349, + "y": -0.9999830533785059 + }, + { + "x": 0.31458007323577225, + "y": -0.9492309400367099 + }, + { + "x": 0.5923884055140062, + "y": -0.8056525162950666 + }, + { + "x": 0.812495280509521, + "y": -0.5829677685342083 + }, + { + "x": 0.9528293564366279, + "y": -0.30350653619413326 + }, + { + "x": 0.9999830533785059, + "y": 0.005821765694352349 + }, + { + "max": { + "#": 3944 + }, + "min": { + "#": 3945 + } + }, + { + "x": 486.4015537251593, + "y": 187.1541861938137 + }, + { + "x": 446.85484132031786, + "y": 146.58397238895986 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465.89305995866755, + "y": 165.62219102730955 + }, + { + "x": 0.14824786966810355, + "y": 0.18590848020007955 + }, + { + "x": 464.30435437732245, + "y": 163.06528939396173 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,3,3", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3954 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.551312529330744, + "y": 2.5689758389984263 + }, + [ + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + }, + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + }, + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + }, + { + "#": 3975 + }, + { + "#": 3976 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 484.89619663694305, + "y": 168.7458757724113 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.0008694741237, + "y": 174.46493854054722 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.4315483743504, + "y": 179.31924105344376 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 474.53601611680637, + "y": 182.831799937697 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 468.79527309322464, + "y": 184.66040966565924 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.7693752135658, + "y": 184.625327705585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 457.0503124454299, + "y": 182.7300005427656 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 452.1960099325334, + "y": 179.16067944299238 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 448.68345104828006, + "y": 174.26514718544846 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 446.85484132031786, + "y": 168.52440416186673 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 446.88992328039205, + "y": 162.4985062822078 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 448.7852504432114, + "y": 156.7794435140719 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 452.3545715429847, + "y": 151.92514100117535 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 457.25010380052873, + "y": 148.4125821169221 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 462.99084682411046, + "y": 146.58397238895986 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 469.0167447037693, + "y": 146.61905434903412 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 474.7358074719052, + "y": 148.51438151185351 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 479.5901099848017, + "y": 152.08370261162673 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 483.10266886905504, + "y": 156.97923486917065 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 484.93127859701724, + "y": 162.71997789275238 + }, + { + "angle": 0.012189923683245741, + "anglePrev": 0.0030070876744971724, + "angularSpeed": 0.009697198240972893, + "angularVelocity": 0.009175325225342121, + "area": 809.1720039999999, + "axes": { + "#": 3978 + }, + "bounds": { + "#": 3988 + }, + "circleRadius": 16.21343449931413, + "collisionFilter": { + "#": 3991 + }, + "constraintImpulse": { + "#": 3992 + }, + "density": 0.001, + "force": { + "#": 3993 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 416.8676232415635, + "inverseInertia": 0.0023988430481216025, + "inverseMass": 1.2358311892362506, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8091720039999999, + "motion": 0, + "parent": null, + "position": { + "#": 3994 + }, + "positionImpulse": { + "#": 3995 + }, + "positionPrev": { + "#": 3996 + }, + "region": { + "#": 3997 + }, + "render": { + "#": 3998 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.447668078848976, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4000 + }, + "vertices": { + "#": 4001 + } + }, + [ + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + }, + { + "#": 3984 + }, + { + "#": 3985 + }, + { + "#": 3986 + }, + { + "#": 3987 + } + ], + { + "x": -0.935461404077092, + "y": -0.35342886339702834 + }, + { + "x": -0.7581554479697953, + "y": -0.6520738583271981 + }, + { + "x": -0.4894415635469769, + "y": -0.872036097803692 + }, + { + "x": -0.16150430000360536, + "y": -0.9868720084592254 + }, + { + "x": 0.18551371074032857, + "y": -0.9826416758551174 + }, + { + "x": 0.5105541152965914, + "y": -0.8598456229775869 + }, + { + "x": 0.7738260304025338, + "y": -0.6333981959805827 + }, + { + "x": 0.9437990976862268, + "y": -0.330519686564452 + }, + { + "x": 0.9999257038003039, + "y": 0.012189621793415685 + }, + { + "max": { + "#": 3989 + }, + "min": { + "#": 3990 + } + }, + { + "x": 516.8658895412459, + "y": 197.7530483952895 + }, + { + "x": 483.5356458706799, + "y": 164.75772944893262 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 499.5357733686079, + "y": 180.96952488464694 + }, + { + "x": 0.3179059839922091, + "y": -0.18588952879043705 + }, + { + "x": 498.0750220292332, + "y": 180.6885276589661 + }, + { + "endCol": 10, + "endRow": 4, + "id": "10,10,3,4", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3999 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.4984928056055082, + "y": 0.29525326587460654 + }, + [ + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + }, + { + "#": 4006 + }, + { + "#": 4007 + }, + { + "#": 4008 + }, + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + }, + { + "#": 4019 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 515.4672732958387, + "y": 183.9789474320203 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 513.4769089117888, + "y": 189.24707704495736 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 509.80560395094057, + "y": 193.5156423641777 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 504.8946403185362, + "y": 196.27198436059288 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 499.3381430304712, + "y": 197.18132032036127 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 493.8054642633907, + "y": 196.1368014549039 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 488.9631525809268, + "y": 193.26156188751568 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 485.3969952976686, + "y": 188.90476808575465 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 483.5356458706799, + "y": 183.58968404966936 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 483.6042734413769, + "y": 177.96010233727358 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 485.59463782542707, + "y": 172.69197272433652 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 489.2659427862753, + "y": 168.4234074051162 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 494.17690641867966, + "y": 165.667065408701 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 499.73340370674464, + "y": 164.75772944893262 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 505.2660824738251, + "y": 165.80224831439 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 510.108394156289, + "y": 168.6774878817782 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 513.6745514395474, + "y": 173.03428168353923 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 515.5359008665358, + "y": 178.34936571962453 + }, + { + "angle": 0.0014724811196320333, + "anglePrev": 0.0028708358074632638, + "angularSpeed": 0.0012879266944400745, + "angularVelocity": -0.0007306236965180807, + "area": 516.0449700000001, + "axes": { + "#": 4021 + }, + "bounds": { + "#": 4029 + }, + "circleRadius": 13.035022290809328, + "collisionFilter": { + "#": 4032 + }, + "constraintImpulse": { + "#": 4033 + }, + "density": 0.001, + "force": { + "#": 4034 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 169.572527516552, + "inverseInertia": 0.0058971816640663675, + "inverseMass": 1.9378156132400626, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5160449700000002, + "motion": 0, + "parent": null, + "position": { + "#": 4035 + }, + "positionImpulse": { + "#": 4036 + }, + "positionPrev": { + "#": 4037 + }, + "region": { + "#": 4038 + }, + "render": { + "#": 4039 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4778861878601222, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4041 + }, + "vertices": { + "#": 4042 + } + }, + [ + { + "#": 4022 + }, + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + }, + { + "#": 4027 + }, + { + "#": 4028 + } + ], + { + "x": -0.9003093307380239, + "y": -0.43525062778363877 + }, + { + "x": -0.622386230930774, + "y": -0.7827102781666949 + }, + { + "x": -0.22109412930260364, + "y": -0.9752524729463257 + }, + { + "x": 0.22396524810550592, + "y": -0.9745971309423395 + }, + { + "x": 0.6246885808978759, + "y": -0.7808739827243562 + }, + { + "x": 0.9015872214489421, + "y": -0.4325973672134128 + }, + { + "x": 0.9999989158998719, + "y": 0.0014724805875263372 + }, + { + "max": { + "#": 4030 + }, + "min": { + "#": 4031 + } + }, + { + "x": 541.0886487957597, + "y": 203.1781716052905 + }, + { + "x": 514.3009895438507, + "y": 176.53724675569003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.0132474332908, + "y": 189.57223262444487 + }, + { + "x": 0.1641510669835042, + "y": 0.06901074089006563 + }, + { + "x": 525.5266592432972, + "y": 189.3690591651835 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,3,4", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4040 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.426989305660186, + "y": 0.4625372085431252 + }, + [ + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + }, + { + "#": 4048 + }, + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 539.7169619903619, + "y": 192.4919417627767 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 537.1922695354916, + "y": 197.71422986363066 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 532.6519484896006, + "y": 201.32454824297596 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.9940536488323, + "y": 202.6072184931997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 521.3399607529412, + "y": 201.3078915425699 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 516.8102916316204, + "y": 197.68421776429562 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 514.3009895438507, + "y": 192.4545171961641 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 514.3095328762196, + "y": 186.65252348611304 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 516.8342253310902, + "y": 181.43023538525907 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 521.3745463769809, + "y": 177.81991700591377 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 527.0324412177492, + "y": 176.53724675569003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 532.6865341136403, + "y": 177.83657370631983 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 537.2162032349612, + "y": 181.4602474845941 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 539.7255053227307, + "y": 186.68994805272564 + }, + { + "angle": 0.030794958919349316, + "anglePrev": 0.022944118439146736, + "angularSpeed": 0.004926935441925463, + "angularVelocity": 0.008028514345742713, + "area": 1172.14282, + "axes": { + "#": 4058 + }, + "bounds": { + "#": 4069 + }, + "circleRadius": 19.475951646090536, + "collisionFilter": { + "#": 4072 + }, + "constraintImpulse": { + "#": 4073 + }, + "density": 0.001, + "force": { + "#": 4074 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 874.7117635443166, + "inverseInertia": 0.0011432337390182312, + "inverseMass": 0.8531383573206547, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1721428200000001, + "motion": 0, + "parent": null, + "position": { + "#": 4075 + }, + "positionImpulse": { + "#": 4076 + }, + "positionPrev": { + "#": 4077 + }, + "region": { + "#": 4078 + }, + "render": { + "#": 4079 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4890710567920733, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4081 + }, + "vertices": { + "#": 4082 + } + }, + [ + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + }, + { + "#": 4066 + }, + { + "#": 4067 + }, + { + "#": 4068 + } + ], + { + "x": -0.941086163485376, + "y": -0.338166871376213 + }, + { + "x": -0.7906049441149673, + "y": -0.6123265651112724 + }, + { + "x": -0.562503042970898, + "y": -0.8267952144566878 + }, + { + "x": -0.27960090477413213, + "y": -0.9601163127712634 + }, + { + "x": 0.03079009185549477, + "y": -0.999525872723428 + }, + { + "x": 0.338166871376213, + "y": -0.941086163485376 + }, + { + "x": 0.6123265651112724, + "y": -0.7906049441149673 + }, + { + "x": 0.8267952144566878, + "y": -0.562503042970898 + }, + { + "x": 0.9601163127712634, + "y": -0.27960090477413213 + }, + { + "x": 0.999525872723428, + "y": 0.03079009185549477 + }, + { + "max": { + "#": 4070 + }, + "min": { + "#": 4071 + } + }, + { + "x": 580.0733013054457, + "y": 212.79772178199008 + }, + { + "x": 540.4024603274086, + "y": 173.08042241745076 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 559.7231574250002, + "y": 192.4011195150423 + }, + { + "x": 0.20505002326667784, + "y": -0.039418143625601615 + }, + { + "x": 558.2826996875334, + "y": 191.27368306879185 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,3,4", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4080 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.4591887908610488, + "y": 1.2243185260049074 + }, + [ + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 578.8562197028245, + "y": 196.03895305616285 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.7956839021836, + "y": 201.7732277456313 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 573.0645865991135, + "y": 206.59063097922316 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 568.0266647276525, + "y": 210.01813797659827 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 562.1764345522561, + "y": 211.72181661263383 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 556.0853238838796, + "y": 211.53418179286646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 550.3510491944112, + "y": 209.47364599222567 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 545.5336459608192, + "y": 205.74254868915548 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 542.1061389634442, + "y": 200.70462681769445 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 540.4024603274086, + "y": 194.85439664229827 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 540.5900951471758, + "y": 188.76328597392174 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 542.6506309478168, + "y": 183.0290112844533 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 546.3817282508869, + "y": 178.21160805086143 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 551.4196501223479, + "y": 174.78410105348632 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 557.2698802977443, + "y": 173.08042241745076 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 563.3609909661208, + "y": 173.26805723721813 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 569.0952656555892, + "y": 175.32859303785892 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 573.9126688891812, + "y": 179.0596903409291 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 577.3401758865562, + "y": 184.09761221239015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 579.0438545225918, + "y": 189.94784238778632 + }, + { + "angle": 0.00584768962944931, + "anglePrev": 0.004468389988017775, + "angularSpeed": 0.0013792996414315351, + "angularVelocity": 0.0013792996414315351, + "area": 904.4403919999999, + "axes": { + "#": 4104 + }, + "bounds": { + "#": 4114 + }, + "circleRadius": 17.141160836762687, + "collisionFilter": { + "#": 4117 + }, + "constraintImpulse": { + "#": 4118 + }, + "density": 0.001, + "force": { + "#": 4119 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 520.8064673147039, + "inverseInertia": 0.001920099044000038, + "inverseMass": 1.105656059642237, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9044403919999999, + "motion": 0, + "parent": null, + "position": { + "#": 4120 + }, + "positionImpulse": { + "#": 4121 + }, + "positionPrev": { + "#": 4122 + }, + "region": { + "#": 4123 + }, + "render": { + "#": 4124 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0546868569722365, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4126 + }, + "vertices": { + "#": 4127 + } + }, + [ + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + }, + { + "#": 4110 + }, + { + "#": 4111 + }, + { + "#": 4112 + }, + { + "#": 4113 + } + ], + { + "x": -0.9376792527436143, + "y": -0.3475019697414356 + }, + { + "x": -0.7622137660316565, + "y": -0.647325401071083 + }, + { + "x": -0.4948968096458945, + "y": -0.8689517522868087 + }, + { + "x": -0.16791817551173108, + "y": -0.9858009364637526 + }, + { + "x": 0.17943574455332673, + "y": -0.9837696953945031 + }, + { + "x": 0.5050254521926196, + "y": -0.8631044505954305 + }, + { + "x": 0.7697321815849417, + "y": -0.6383669545273206 + }, + { + "x": 0.9416791993807844, + "y": -0.3365119395408803 + }, + { + "x": 0.999982902311721, + "y": 0.005847656302086511 + }, + { + "max": { + "#": 4115 + }, + "min": { + "#": 4116 + } + }, + { + "x": 608.4895013763073, + "y": 232.0674087018566 + }, + { + "x": 574.3695051181442, + "y": 194.748513407665 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.2676249648796, + "y": 211.8892203361902 + }, + { + "x": 0.1563088767331962, + "y": 0.19184148441919568 + }, + { + "x": 590.9438684001873, + "y": 208.85173889904897 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,4,4", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4125 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.32375656469227576, + "y": 3.037481437141234 + }, + [ + { + "#": 4128 + }, + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + }, + { + "#": 4139 + }, + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + }, + { + "#": 4144 + }, + { + "#": 4145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 608.1309278659924, + "y": 214.96488372240768 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 606.062250887532, + "y": 220.54688224970846 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 602.2086510076475, + "y": 225.08442530358178 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 597.0363365210756, + "y": 228.03022975262422 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 591.1673902882053, + "y": 229.02992726471538 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 585.3105370085683, + "y": 227.961660134826 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580.1730277723062, + "y": 224.955566349309 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 576.372758517897, + "y": 220.37326533409947 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 574.3695051181442, + "y": 214.76745515033667 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 574.4043220637668, + "y": 208.8135569499727 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.4729990422272, + "y": 203.23155842267192 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 580.3265989221117, + "y": 198.6940153687986 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 585.4989134086836, + "y": 195.74821091975616 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 591.3678596415539, + "y": 194.748513407665 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 597.2247129211909, + "y": 195.8167805375544 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 602.362222157453, + "y": 198.82287432307137 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 606.1624914118622, + "y": 203.4051753382809 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 608.165744811615, + "y": 209.0109855220437 + }, + { + "angle": 0.00034151026960957284, + "anglePrev": -0.00024870234871688935, + "angularSpeed": 0.0005902126183264622, + "angularVelocity": 0.0005902126183264622, + "area": 336.960508, + "axes": { + "#": 4147 + }, + "bounds": { + "#": 4154 + }, + "circleRadius": 10.59855109739369, + "collisionFilter": { + "#": 4157 + }, + "constraintImpulse": { + "#": 4158 + }, + "density": 0.001, + "force": { + "#": 4159 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 72.31452373591827, + "inverseInertia": 0.013828480757915922, + "inverseMass": 2.9677068269377136, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.336960508, + "motion": 0, + "parent": null, + "position": { + "#": 4160 + }, + "positionImpulse": { + "#": 4161 + }, + "positionPrev": { + "#": 4162 + }, + "region": { + "#": 4163 + }, + "render": { + "#": 4164 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8311376443208274, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4166 + }, + "vertices": { + "#": 4167 + } + }, + [ + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + } + ], + { + "x": -0.8658538975355635, + "y": -0.5002969399491404 + }, + { + "x": -0.4997054273006199, + "y": -0.8661954086268898 + }, + { + "x": 0.0003415102629712243, + "y": -0.9999999416853683 + }, + { + "x": 0.5002969399491404, + "y": -0.8658538975355635 + }, + { + "x": 0.8661954086268898, + "y": -0.4997054273006199 + }, + { + "x": 0.9999999416853683, + "y": 0.0003415102629712243 + }, + { + "max": { + "#": 4155 + }, + "min": { + "#": 4156 + } + }, + { + "x": 626.9104390425871, + "y": 211.724351128529 + }, + { + "x": 606.4345667112182, + "y": 191.24847879716015 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 616.6725028769026, + "y": 201.48641496284458 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 616.4330972860118, + "y": 198.66541774126836 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4165 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2394055908908092, + "y": 2.820997221576212 + }, + [ + { + "#": 4168 + }, + { + "#": 4169 + }, + { + "#": 4170 + }, + { + "#": 4171 + }, + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 626.9085655172844, + "y": 204.23291084344956 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 624.1639431619822, + "y": 208.98297380374538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 619.4120066763837, + "y": 211.724351128529 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 613.9260069962976, + "y": 211.72247760322637 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 609.1759440360016, + "y": 208.97785524792405 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 606.4345667112182, + "y": 204.2259187623255 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 606.4364402365209, + "y": 198.7399190822396 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 609.1810625918231, + "y": 193.98985612194377 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 613.9329990774215, + "y": 191.24847879716015 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 619.4189987575077, + "y": 191.2503523224628 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 624.1690617178036, + "y": 193.9949746777651 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 626.9104390425871, + "y": 198.74691116336365 + }, + [], + [], + [ + { + "#": 4183 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 4184 + }, + "pointB": "", + "render": { + "#": 4185 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/ballPool/ballPool-0.json b/tests/browser/refs/ballPool/ballPool-0.json new file mode 100644 index 00000000..67797354 --- /dev/null +++ b/tests/browser/refs/ballPool/ballPool-0.json @@ -0,0 +1,66852 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 153 + }, + "composites": { + "#": 156 + }, + "constraints": { + "#": 7508 + }, + "events": { + "#": 7512 + }, + "gravity": { + "#": 7514 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + }, + { + "#": 132 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4676.58, + "axes": { + "#": 87 + }, + "bounds": { + "#": 91 + }, + "collisionFilter": { + "#": 94 + }, + "constraintImpulse": { + "#": 95 + }, + "density": 0.001, + "force": { + "#": 96 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 155, + "inertia": 16835.842152547684, + "inverseInertia": 0.00005939708812538819, + "inverseMass": 0.21383147513781436, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.67658, + "motion": 0, + "parent": null, + "position": { + "#": 97 + }, + "positionImpulse": { + "#": 98 + }, + "positionPrev": { + "#": 99 + }, + "render": { + "#": 100 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 102 + }, + "vertices": { + "#": 103 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + }, + { + "#": 90 + } + ], + { + "x": -0.5000034335836021, + "y": 0.866023421394946 + }, + { + "x": -0.5000034335836021, + "y": -0.866023421394946 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 92 + }, + "min": { + "#": 93 + } + }, + { + "x": 230, + "y": 611.962 + }, + { + "x": 140, + "y": 508.038 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 560 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 560 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 101 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 611.962 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 560 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 508.038 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 8559.455977, + "axes": { + "#": 108 + }, + "bounds": { + "#": 114 + }, + "collisionFilter": { + "#": 117 + }, + "constraintImpulse": { + "#": 118 + }, + "density": 0.001, + "force": { + "#": 119 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 156, + "inertia": 47433.138478766494, + "inverseInertia": 0.000021082307265998248, + "inverseMass": 0.1168298549215145, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 8.559455976999999, + "motion": 0, + "parent": null, + "position": { + "#": 120 + }, + "positionImpulse": { + "#": 121 + }, + "positionPrev": { + "#": 122 + }, + "render": { + "#": 123 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 125 + }, + "vertices": { + "#": 126 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + } + ], + { + "x": 0.3090136209349373, + "y": 0.9510576123856423 + }, + { + "x": -0.8090149467093116, + "y": 0.58778807065211 + }, + { + "x": -0.8090149467093116, + "y": -0.58778807065211 + }, + { + "x": 0.3090136209349373, + "y": -0.9510576123856423 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 115 + }, + "min": { + "#": 116 + } + }, + { + "x": 448.54097878737247, + "y": 617.063 + }, + { + "x": 339.99997878737247, + "y": 502.937 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 560 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 560 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 124 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 448.54097878737247, + "y": 595.267 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 381.4589787873725, + "y": 617.063 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 339.99997878737247, + "y": 560 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 381.4589787873725, + "y": 502.937 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 448.54097878737247, + "y": 524.733 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6400, + "axes": { + "#": 133 + }, + "bounds": { + "#": 136 + }, + "collisionFilter": { + "#": 139 + }, + "constraintImpulse": { + "#": 140 + }, + "density": 0.001, + "force": { + "#": 141 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": 27306.666666666668, + "inverseInertia": 0.00003662109375, + "inverseMass": 0.15625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 6.4, + "motion": 0, + "parent": null, + "position": { + "#": 142 + }, + "positionImpulse": { + "#": 143 + }, + "positionPrev": { + "#": 144 + }, + "render": { + "#": 145 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 147 + }, + "vertices": { + "#": 148 + } + }, + [ + { + "#": 134 + }, + { + "#": 135 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 137 + }, + "min": { + "#": 138 + } + }, + { + "x": 640, + "y": 600 + }, + { + "x": 560, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 560 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 560 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 146 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 640, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 640, + "y": 600 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 600 + }, + { + "max": { + "#": 154 + }, + "min": { + "#": 155 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 157 + } + ], + { + "bodies": { + "#": 158 + }, + "composites": { + "#": 7506 + }, + "constraints": { + "#": 7507 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 159 + }, + { + "#": 204 + }, + { + "#": 255 + }, + { + "#": 309 + }, + { + "#": 357 + }, + { + "#": 411 + }, + { + "#": 453 + }, + { + "#": 507 + }, + { + "#": 558 + }, + { + "#": 609 + }, + { + "#": 657 + }, + { + "#": 711 + }, + { + "#": 756 + }, + { + "#": 810 + }, + { + "#": 864 + }, + { + "#": 918 + }, + { + "#": 966 + }, + { + "#": 1008 + }, + { + "#": 1062 + }, + { + "#": 1110 + }, + { + "#": 1164 + }, + { + "#": 1218 + }, + { + "#": 1260 + }, + { + "#": 1314 + }, + { + "#": 1368 + }, + { + "#": 1407 + }, + { + "#": 1458 + }, + { + "#": 1503 + }, + { + "#": 1551 + }, + { + "#": 1605 + }, + { + "#": 1659 + }, + { + "#": 1707 + }, + { + "#": 1752 + }, + { + "#": 1797 + }, + { + "#": 1851 + }, + { + "#": 1905 + }, + { + "#": 1956 + }, + { + "#": 2001 + }, + { + "#": 2055 + }, + { + "#": 2097 + }, + { + "#": 2151 + }, + { + "#": 2205 + }, + { + "#": 2253 + }, + { + "#": 2295 + }, + { + "#": 2337 + }, + { + "#": 2391 + }, + { + "#": 2430 + }, + { + "#": 2484 + }, + { + "#": 2529 + }, + { + "#": 2583 + }, + { + "#": 2634 + }, + { + "#": 2682 + }, + { + "#": 2733 + }, + { + "#": 2778 + }, + { + "#": 2832 + }, + { + "#": 2886 + }, + { + "#": 2940 + }, + { + "#": 2985 + }, + { + "#": 3039 + }, + { + "#": 3093 + }, + { + "#": 3141 + }, + { + "#": 3195 + }, + { + "#": 3243 + }, + { + "#": 3297 + }, + { + "#": 3345 + }, + { + "#": 3393 + }, + { + "#": 3435 + }, + { + "#": 3489 + }, + { + "#": 3534 + }, + { + "#": 3582 + }, + { + "#": 3624 + }, + { + "#": 3672 + }, + { + "#": 3723 + }, + { + "#": 3777 + }, + { + "#": 3819 + }, + { + "#": 3858 + }, + { + "#": 3909 + }, + { + "#": 3963 + }, + { + "#": 4008 + }, + { + "#": 4053 + }, + { + "#": 4101 + }, + { + "#": 4149 + }, + { + "#": 4197 + }, + { + "#": 4251 + }, + { + "#": 4305 + }, + { + "#": 4350 + }, + { + "#": 4404 + }, + { + "#": 4458 + }, + { + "#": 4503 + }, + { + "#": 4545 + }, + { + "#": 4587 + }, + { + "#": 4641 + }, + { + "#": 4683 + }, + { + "#": 4734 + }, + { + "#": 4788 + }, + { + "#": 4842 + }, + { + "#": 4896 + }, + { + "#": 4941 + }, + { + "#": 4995 + }, + { + "#": 5049 + }, + { + "#": 5088 + }, + { + "#": 5139 + }, + { + "#": 5181 + }, + { + "#": 5232 + }, + { + "#": 5286 + }, + { + "#": 5331 + }, + { + "#": 5376 + }, + { + "#": 5430 + }, + { + "#": 5475 + }, + { + "#": 5520 + }, + { + "#": 5574 + }, + { + "#": 5628 + }, + { + "#": 5670 + }, + { + "#": 5724 + }, + { + "#": 5778 + }, + { + "#": 5817 + }, + { + "#": 5862 + }, + { + "#": 5916 + }, + { + "#": 5964 + }, + { + "#": 6003 + }, + { + "#": 6045 + }, + { + "#": 6096 + }, + { + "#": 6150 + }, + { + "#": 6192 + }, + { + "#": 6246 + }, + { + "#": 6300 + }, + { + "#": 6342 + }, + { + "#": 6390 + }, + { + "#": 6435 + }, + { + "#": 6483 + }, + { + "#": 6537 + }, + { + "#": 6588 + }, + { + "#": 6636 + }, + { + "#": 6684 + }, + { + "#": 6726 + }, + { + "#": 6774 + }, + { + "#": 6822 + }, + { + "#": 6867 + }, + { + "#": 6921 + }, + { + "#": 6963 + }, + { + "#": 7008 + }, + { + "#": 7062 + }, + { + "#": 7101 + }, + { + "#": 7152 + }, + { + "#": 7206 + }, + { + "#": 7251 + }, + { + "#": 7296 + }, + { + "#": 7350 + }, + { + "#": 7398 + }, + { + "#": 7452 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1020.1722720000001, + "axes": { + "#": 160 + }, + "bounds": { + "#": 171 + }, + "circleRadius": 18.169817386831276, + "collisionFilter": { + "#": 174 + }, + "constraintImpulse": { + "#": 175 + }, + "density": 0.001, + "force": { + "#": 176 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 662.5992415979618, + "inverseInertia": 0.001509207884977869, + "inverseMass": 0.980226602355646, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0201722720000002, + "motion": 0, + "parent": null, + "position": { + "#": 177 + }, + "positionImpulse": { + "#": 178 + }, + "positionPrev": { + "#": 179 + }, + "render": { + "#": 180 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 182 + }, + "vertices": { + "#": 183 + } + }, + [ + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": -0.9510482862449724, + "y": -0.3090423227172957 + }, + { + "x": -0.8090478688341852, + "y": -0.5877427548978066 + }, + { + "x": -0.5877427548978066, + "y": -0.8090478688341852 + }, + { + "x": -0.3090423227172957, + "y": -0.9510482862449724 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090423227172957, + "y": -0.9510482862449724 + }, + { + "x": 0.5877427548978066, + "y": -0.8090478688341852 + }, + { + "x": 0.8090478688341852, + "y": -0.5877427548978066 + }, + { + "x": 0.9510482862449724, + "y": -0.3090423227172957 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 172 + }, + "min": { + "#": 173 + } + }, + { + "x": 135.892, + "y": 85.892 + }, + { + "x": 100, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.946, + "y": 67.946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.946, + "y": 67.946 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 181 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 135.892, + "y": 70.788 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 134.135, + "y": 76.195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 130.79399999999998, + "y": 80.794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 126.195, + "y": 84.13499999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 120.788, + "y": 85.892 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 115.104, + "y": 85.892 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 109.697, + "y": 84.13499999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.098, + "y": 80.794 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.757, + "y": 76.195 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 70.788 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 65.104 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.757, + "y": 59.696999999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.098, + "y": 55.098 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 109.697, + "y": 51.757 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 115.104, + "y": 50 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 120.788, + "y": 50 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 126.195, + "y": 51.757 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 130.79399999999998, + "y": 55.098 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 134.135, + "y": 59.696999999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 135.892, + "y": 65.104 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1671.8754580000002, + "axes": { + "#": 205 + }, + "bounds": { + "#": 218 + }, + "circleRadius": 23.201581790123456, + "collisionFilter": { + "#": 221 + }, + "constraintImpulse": { + "#": 222 + }, + "density": 0.001, + "force": { + "#": 223 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1779.5057490627585, + "inverseInertia": 0.0005619537899929159, + "inverseMass": 0.5981306772672298, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6718754580000001, + "motion": 0, + "parent": null, + "position": { + "#": 224 + }, + "positionImpulse": { + "#": 225 + }, + "positionPrev": { + "#": 226 + }, + "render": { + "#": 227 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 229 + }, + "vertices": { + "#": 230 + } + }, + [ + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "x": -0.9659163631346784, + "y": -0.25885435949327934 + }, + { + "x": -0.8660398575651125, + "y": -0.4999749644818225 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.4999749644818225, + "y": -0.8660398575651125 + }, + { + "x": -0.25885435949327934, + "y": -0.9659163631346784 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25885435949327934, + "y": -0.9659163631346784 + }, + { + "x": 0.4999749644818225, + "y": -0.8660398575651125 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660398575651125, + "y": -0.4999749644818225 + }, + { + "x": 0.9659163631346784, + "y": -0.25885435949327934 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 219 + }, + "min": { + "#": 220 + } + }, + { + "x": 191.89799999999997, + "y": 96.006 + }, + { + "x": 145.892, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.89499999999998, + "y": 73.003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.89499999999998, + "y": 73.003 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 228 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 191.89799999999997, + "y": 76.031 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.32999999999998, + "y": 81.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.302, + "y": 87.127 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 183.01899999999998, + "y": 91.41 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 177.77399999999997, + "y": 94.438 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 171.92299999999997, + "y": 96.006 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 165.867, + "y": 96.006 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 160.016, + "y": 94.438 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 154.771, + "y": 91.41 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 150.488, + "y": 87.127 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 147.45999999999998, + "y": 81.882 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 145.892, + "y": 76.031 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 145.892, + "y": 69.975 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 147.45999999999998, + "y": 64.124 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 150.488, + "y": 58.879 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 154.771, + "y": 54.596000000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 160.016, + "y": 51.568 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 165.867, + "y": 50 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 171.92299999999997, + "y": 50 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 177.77399999999997, + "y": 51.568 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 183.01899999999998, + "y": 54.596000000000004 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 187.302, + "y": 58.879 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 190.32999999999998, + "y": 64.124 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 191.89799999999997, + "y": 69.975 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2317.307802, + "axes": { + "#": 256 + }, + "bounds": { + "#": 270 + }, + "circleRadius": 27.29198816872428, + "collisionFilter": { + "#": 273 + }, + "constraintImpulse": { + "#": 274 + }, + "density": 0.001, + "force": { + "#": 275 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 3418.659578448263, + "inverseInertia": 0.0002925123069591802, + "inverseMass": 0.4315352492823481, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.3173078019999998, + "motion": 0, + "parent": null, + "position": { + "#": 276 + }, + "positionImpulse": { + "#": 277 + }, + "positionPrev": { + "#": 278 + }, + "render": { + "#": 279 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 281 + }, + "vertices": { + "#": 282 + } + }, + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": -0.9709241770545208, + "y": -0.2393872227396477 + }, + { + "x": -0.8855010950678353, + "y": -0.46463728932756176 + }, + { + "x": -0.7484566762798334, + "y": -0.6631836877759771 + }, + { + "x": -0.5680951506518395, + "y": -0.8229628787532666 + }, + { + "x": -0.35458550726385507, + "y": -0.9350235922362785 + }, + { + "x": -0.12053563584793033, + "y": -0.9927090009115134 + }, + { + "x": 0.12053563584793033, + "y": -0.9927090009115134 + }, + { + "x": 0.35458550726385507, + "y": -0.9350235922362785 + }, + { + "x": 0.5680951506518395, + "y": -0.8229628787532666 + }, + { + "x": 0.7484566762798334, + "y": -0.6631836877759771 + }, + { + "x": 0.8855010950678353, + "y": -0.46463728932756176 + }, + { + "x": 0.9709241770545208, + "y": -0.2393872227396477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 271 + }, + "min": { + "#": 272 + } + }, + { + "x": 256.08399999999995, + "y": 104.584 + }, + { + "x": 201.89799999999997, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.99099999999996, + "y": 77.292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.99099999999996, + "y": 77.292 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 280 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + }, + { + "#": 308 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 256.08399999999995, + "y": 80.582 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 254.50899999999996, + "y": 86.97 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 251.45199999999997, + "y": 92.796 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.08899999999997, + "y": 97.72 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.67399999999995, + "y": 101.458 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.52199999999996, + "y": 103.791 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 228.99099999999996, + "y": 104.584 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 222.45999999999995, + "y": 103.791 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 216.30799999999996, + "y": 101.458 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 210.89299999999994, + "y": 97.72 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 206.52999999999994, + "y": 92.796 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 203.47299999999996, + "y": 86.97 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 201.89799999999997, + "y": 80.582 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 201.89799999999997, + "y": 74.00200000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 203.47299999999996, + "y": 67.614 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 206.52999999999994, + "y": 61.788000000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 210.89299999999994, + "y": 56.864000000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 216.30799999999996, + "y": 53.126000000000005 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 222.45999999999995, + "y": 50.793000000000006 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 228.99099999999996, + "y": 50 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 235.52199999999996, + "y": 50.793000000000006 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 241.67399999999995, + "y": 53.126000000000005 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 247.08899999999997, + "y": 56.864000000000004 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 251.45199999999997, + "y": 61.788000000000004 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 254.50899999999996, + "y": 67.614 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 256.08399999999995, + "y": 74.00200000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1318.440404, + "axes": { + "#": 310 + }, + "bounds": { + "#": 322 + }, + "circleRadius": 20.626221707818928, + "collisionFilter": { + "#": 325 + }, + "constraintImpulse": { + "#": 326 + }, + "density": 0.001, + "force": { + "#": 327 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1106.6679682910583, + "inverseInertia": 0.0009036133950314137, + "inverseMass": 0.7584719013207669, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.318440404, + "motion": 0, + "parent": null, + "position": { + "#": 328 + }, + "positionImpulse": { + "#": 329 + }, + "positionPrev": { + "#": 330 + }, + "render": { + "#": 331 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 333 + }, + "vertices": { + "#": 334 + } + }, + [ + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + } + ], + { + "x": -0.9594928831235549, + "y": -0.281732865025095 + }, + { + "x": -0.8412614784395286, + "y": -0.5406284536479176 + }, + { + "x": -0.654891631298853, + "y": -0.7557228005391443 + }, + { + "x": -0.4154578190944267, + "y": -0.9096124452497903 + }, + { + "x": -0.1422321170387564, + "y": -0.9898333318709133 + }, + { + "x": 0.1422321170387564, + "y": -0.9898333318709133 + }, + { + "x": 0.4154578190944267, + "y": -0.9096124452497903 + }, + { + "x": 0.654891631298853, + "y": -0.7557228005391443 + }, + { + "x": 0.8412614784395286, + "y": -0.5406284536479176 + }, + { + "x": 0.9594928831235549, + "y": -0.281732865025095 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 323 + }, + "min": { + "#": 324 + } + }, + { + "x": 306.91599999999994, + "y": 91.25200000000001 + }, + { + "x": 266.08399999999995, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 286.49999999999994, + "y": 70.626 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 286.49999999999994, + "y": 70.626 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 332 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 306.91599999999994, + "y": 73.561 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 305.26199999999994, + "y": 79.194 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.08799999999997, + "y": 84.13300000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.65099999999995, + "y": 87.97800000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 292.3109999999999, + "y": 90.417 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 286.49999999999994, + "y": 91.25200000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280.68899999999996, + "y": 90.417 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 275.34899999999993, + "y": 87.97800000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 270.9119999999999, + "y": 84.13300000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 267.73799999999994, + "y": 79.194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 266.08399999999995, + "y": 73.561 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 266.08399999999995, + "y": 67.691 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.73799999999994, + "y": 62.05800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 270.9119999999999, + "y": 57.11900000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 275.34899999999993, + "y": 53.274 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 280.68899999999996, + "y": 50.83500000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 286.49999999999994, + "y": 50 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 292.3109999999999, + "y": 50.83500000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 297.65099999999995, + "y": 53.274 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 302.08799999999997, + "y": 57.11900000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 305.26199999999994, + "y": 62.05800000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 306.91599999999994, + "y": 67.691 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2707.561101999999, + "axes": { + "#": 358 + }, + "bounds": { + "#": 372 + }, + "circleRadius": 29.500578703703702, + "collisionFilter": { + "#": 375 + }, + "constraintImpulse": { + "#": 376 + }, + "density": 0.001, + "force": { + "#": 377 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 4667.076739501968, + "inverseInertia": 0.00021426688606511143, + "inverseMass": 0.3693360786064359, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.707561101999999, + "motion": 0, + "parent": null, + "position": { + "#": 378 + }, + "positionImpulse": { + "#": 379 + }, + "positionPrev": { + "#": 380 + }, + "render": { + "#": 381 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 383 + }, + "vertices": { + "#": 384 + } + }, + [ + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + } + ], + { + "x": -0.9709721851597422, + "y": -0.23919242388946008 + }, + { + "x": -0.8854514284236448, + "y": -0.4647319312275919 + }, + { + "x": -0.7485562773053245, + "y": -0.6630712629173385 + }, + { + "x": -0.5679662429393902, + "y": -0.8230518494489357 + }, + { + "x": -0.3546033705984873, + "y": -0.9350168177953764 + }, + { + "x": -0.12064210006520336, + "y": -0.9926960681355887 + }, + { + "x": 0.12064210006520336, + "y": -0.9926960681355887 + }, + { + "x": 0.3546033705984873, + "y": -0.9350168177953764 + }, + { + "x": 0.5679662429393902, + "y": -0.8230518494489357 + }, + { + "x": 0.7485562773053245, + "y": -0.6630712629173385 + }, + { + "x": 0.8854514284236448, + "y": -0.4647319312275919 + }, + { + "x": 0.9709721851597422, + "y": -0.23919242388946008 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 373 + }, + "min": { + "#": 374 + } + }, + { + "x": 375.486, + "y": 109.00200000000001 + }, + { + "x": 316.91599999999994, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 346.20099999999996, + "y": 79.501 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 346.20099999999996, + "y": 79.501 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 382 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375.486, + "y": 83.057 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.78499999999997, + "y": 89.962 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370.47999999999996, + "y": 96.259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 365.76399999999995, + "y": 101.583 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 359.91099999999994, + "y": 105.622 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 353.26099999999997, + "y": 108.144 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 346.20099999999996, + "y": 109.00200000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 339.14099999999996, + "y": 108.144 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 332.491, + "y": 105.622 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 326.638, + "y": 101.583 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 321.92199999999997, + "y": 96.259 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 318.61699999999996, + "y": 89.962 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 316.91599999999994, + "y": 83.057 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 316.91599999999994, + "y": 75.94500000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 318.61699999999996, + "y": 69.04 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 321.92199999999997, + "y": 62.74300000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 326.638, + "y": 57.419000000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 332.491, + "y": 53.38000000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 339.14099999999996, + "y": 50.858000000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 346.20099999999996, + "y": 50 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 353.26099999999997, + "y": 50.858000000000004 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 359.91099999999994, + "y": 53.38000000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 365.76399999999995, + "y": 57.419000000000004 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 370.47999999999996, + "y": 62.74300000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 373.78499999999997, + "y": 69.04 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 375.486, + "y": 75.94500000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 996.1195440000001, + "axes": { + "#": 412 + }, + "bounds": { + "#": 422 + }, + "circleRadius": 17.989133230452676, + "collisionFilter": { + "#": 425 + }, + "constraintImpulse": { + "#": 426 + }, + "density": 0.001, + "force": { + "#": 427 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 631.7414771039847, + "inverseInertia": 0.0015829259851421786, + "inverseMass": 1.0038955725980614, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9961195440000001, + "motion": 0, + "parent": null, + "position": { + "#": 428 + }, + "positionImpulse": { + "#": 429 + }, + "positionPrev": { + "#": 430 + }, + "render": { + "#": 431 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 433 + }, + "vertices": { + "#": 434 + } + }, + [ + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + } + ], + { + "x": -0.9396858944753611, + "y": -0.3420386231466271 + }, + { + "x": -0.7659728462206221, + "y": -0.6428729258980185 + }, + { + "x": -0.5000642326698002, + "y": -0.8659883158590329 + }, + { + "x": -0.17365750488134477, + "y": -0.9848061083271091 + }, + { + "x": 0.17365750488134477, + "y": -0.9848061083271091 + }, + { + "x": 0.5000642326698002, + "y": -0.8659883158590329 + }, + { + "x": 0.7659728462206221, + "y": -0.6428729258980185 + }, + { + "x": 0.9396858944753611, + "y": -0.3420386231466271 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 423 + }, + "min": { + "#": 424 + } + }, + { + "x": 420.918, + "y": 85.97800000000001 + }, + { + "x": 385.486, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.202, + "y": 67.989 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.202, + "y": 67.989 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 432 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420.918, + "y": 71.113 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 418.781, + "y": 76.98400000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 414.765, + "y": 81.769 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 409.355, + "y": 84.893 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 403.202, + "y": 85.97800000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 397.049, + "y": 84.893 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 391.639, + "y": 81.769 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 387.623, + "y": 76.98400000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 385.486, + "y": 71.113 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 385.486, + "y": 64.86500000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 387.623, + "y": 58.99400000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 391.639, + "y": 54.209 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 397.049, + "y": 51.08500000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 403.202, + "y": 50 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 409.355, + "y": 51.08500000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 414.765, + "y": 54.209 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 418.781, + "y": 58.99400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 420.918, + "y": 64.86500000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1884.285362, + "axes": { + "#": 454 + }, + "bounds": { + "#": 468 + }, + "circleRadius": 24.610403806584365, + "collisionFilter": { + "#": 471 + }, + "constraintImpulse": { + "#": 472 + }, + "density": 0.001, + "force": { + "#": 473 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 2260.38157195383, + "inverseInertia": 0.0004424031820148044, + "inverseMass": 0.5307051788263055, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8842853620000002, + "motion": 0, + "parent": null, + "position": { + "#": 474 + }, + "positionImpulse": { + "#": 475 + }, + "positionPrev": { + "#": 476 + }, + "render": { + "#": 477 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 479 + }, + "vertices": { + "#": 480 + } + }, + [ + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + } + ], + { + "x": -0.9709402105671929, + "y": -0.23932218347603118 + }, + { + "x": -0.8854551295056068, + "y": -0.4647248795063689 + }, + { + "x": -0.7485427632433443, + "y": -0.6630865189370228 + }, + { + "x": -0.5680086319138514, + "y": -0.8230225963309603 + }, + { + "x": -0.35464915280031695, + "y": -0.934999453699315 + }, + { + "x": -0.12050753396518203, + "y": -0.9927124126642269 + }, + { + "x": 0.12050753396518203, + "y": -0.9927124126642269 + }, + { + "x": 0.35464915280031695, + "y": -0.934999453699315 + }, + { + "x": 0.5680086319138514, + "y": -0.8230225963309603 + }, + { + "x": 0.7485427632433443, + "y": -0.6630865189370228 + }, + { + "x": 0.8854551295056068, + "y": -0.4647248795063689 + }, + { + "x": 0.9709402105671929, + "y": -0.23932218347603118 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 469 + }, + "min": { + "#": 470 + } + }, + { + "x": 479.78, + "y": 99.22 + }, + { + "x": 430.918, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.349, + "y": 74.61 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.349, + "y": 74.61 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 478 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + }, + { + "#": 506 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 479.78, + "y": 77.576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 478.36, + "y": 83.337 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475.603, + "y": 88.59 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 471.669, + "y": 93.03099999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 466.786, + "y": 96.401 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 461.239, + "y": 98.505 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 455.349, + "y": 99.22 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 449.459, + "y": 98.505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 443.912, + "y": 96.401 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 439.029, + "y": 93.03099999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 435.09499999999997, + "y": 88.59 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 432.33799999999997, + "y": 83.337 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 430.918, + "y": 77.576 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 430.918, + "y": 71.644 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 432.33799999999997, + "y": 65.883 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 435.09499999999997, + "y": 60.629999999999995 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 439.029, + "y": 56.189 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 443.912, + "y": 52.819 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 449.459, + "y": 50.715 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 455.349, + "y": 50 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 461.239, + "y": 50.715 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 466.786, + "y": 52.819 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 471.669, + "y": 56.189 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 475.603, + "y": 60.629999999999995 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 478.36, + "y": 65.883 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 479.78, + "y": 71.644 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1788.1176700000005, + "axes": { + "#": 508 + }, + "bounds": { + "#": 521 + }, + "circleRadius": 23.994020061728396, + "collisionFilter": { + "#": 524 + }, + "constraintImpulse": { + "#": 525 + }, + "density": 0.001, + "force": { + "#": 526 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 2035.5592109008512, + "inverseInertia": 0.0004912654933567091, + "inverseMass": 0.5592473117275328, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7881176700000005, + "motion": 0, + "parent": null, + "position": { + "#": 527 + }, + "positionImpulse": { + "#": 528 + }, + "positionPrev": { + "#": 529 + }, + "render": { + "#": 530 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 532 + }, + "vertices": { + "#": 533 + } + }, + [ + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + } + ], + { + "x": -0.9659295228350919, + "y": -0.25880524901085716 + }, + { + "x": -0.8660340588347611, + "y": -0.4999850087134508 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.4999850087134508, + "y": -0.8660340588347611 + }, + { + "x": -0.25880524901085716, + "y": -0.9659295228350919 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25880524901085716, + "y": -0.9659295228350919 + }, + { + "x": 0.4999850087134508, + "y": -0.8660340588347611 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660340588347611, + "y": -0.4999850087134508 + }, + { + "x": 0.9659295228350919, + "y": -0.25880524901085716 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 522 + }, + "min": { + "#": 523 + } + }, + { + "x": 537.358, + "y": 97.578 + }, + { + "x": 489.78, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 513.569, + "y": 73.789 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 513.569, + "y": 73.789 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 531 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 537.358, + "y": 76.92099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.737, + "y": 82.971 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 532.605, + "y": 88.396 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 528.1759999999999, + "y": 92.825 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 522.751, + "y": 95.95700000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 516.701, + "y": 97.578 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 510.43699999999995, + "y": 97.578 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 504.38699999999994, + "y": 95.95700000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 498.962, + "y": 92.825 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 494.53299999999996, + "y": 88.396 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 491.40099999999995, + "y": 82.971 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 489.78, + "y": 76.92099999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 489.78, + "y": 70.65700000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 491.40099999999995, + "y": 64.607 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 494.53299999999996, + "y": 59.182 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 498.962, + "y": 54.753 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 504.38699999999994, + "y": 51.621 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 510.43699999999995, + "y": 50 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 516.701, + "y": 50 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 522.751, + "y": 51.621 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 528.1759999999999, + "y": 54.753 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 532.605, + "y": 59.182 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 535.737, + "y": 64.607 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 537.358, + "y": 70.65700000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1722.1149680000003, + "axes": { + "#": 559 + }, + "bounds": { + "#": 572 + }, + "circleRadius": 23.54738940329218, + "collisionFilter": { + "#": 575 + }, + "constraintImpulse": { + "#": 576 + }, + "density": 0.001, + "force": { + "#": 577 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1888.0601807772807, + "inverseInertia": 0.0005296441343243189, + "inverseMass": 0.5806813241750999, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7221149680000003, + "motion": 0, + "parent": null, + "position": { + "#": 578 + }, + "positionImpulse": { + "#": 579 + }, + "positionPrev": { + "#": 580 + }, + "render": { + "#": 581 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 583 + }, + "vertices": { + "#": 584 + } + }, + [ + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + } + ], + { + "x": -0.9659182750337034, + "y": -0.25884722512693675 + }, + { + "x": -0.8660122204453936, + "y": -0.5000228335178696 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.5000228335178696, + "y": -0.8660122204453936 + }, + { + "x": -0.25884722512693675, + "y": -0.9659182750337034 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25884722512693675, + "y": -0.9659182750337034 + }, + { + "x": 0.5000228335178696, + "y": -0.8660122204453936 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660122204453936, + "y": -0.5000228335178696 + }, + { + "x": 0.9659182750337034, + "y": -0.25884722512693675 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 573 + }, + "min": { + "#": 574 + } + }, + { + "x": 594.05, + "y": 96.69200000000001 + }, + { + "x": 547.358, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 570.704, + "y": 73.346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 570.704, + "y": 73.346 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 582 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 594.05, + "y": 76.42 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 592.459, + "y": 82.357 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 589.385, + "y": 87.68100000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 585.039, + "y": 92.027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 579.7149999999999, + "y": 95.101 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 573.7779999999999, + "y": 96.69200000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 567.63, + "y": 96.69200000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 561.693, + "y": 95.101 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 556.3689999999999, + "y": 92.027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 552.0229999999999, + "y": 87.68100000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 548.949, + "y": 82.357 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 547.358, + "y": 76.42 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 547.358, + "y": 70.272 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 548.949, + "y": 64.33500000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 552.0229999999999, + "y": 59.011 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 556.3689999999999, + "y": 54.665000000000006 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 561.693, + "y": 51.59100000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 567.63, + "y": 50 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 573.7779999999999, + "y": 50 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 579.7149999999999, + "y": 51.59100000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 585.039, + "y": 54.665000000000006 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 589.385, + "y": 59.011 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 592.459, + "y": 64.33500000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 594.05, + "y": 70.272 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1254.82541, + "axes": { + "#": 610 + }, + "bounds": { + "#": 622 + }, + "circleRadius": 20.122363683127574, + "collisionFilter": { + "#": 625 + }, + "constraintImpulse": { + "#": 626 + }, + "density": 0.001, + "force": { + "#": 627 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1002.4505113431685, + "inverseInertia": 0.0009975554789833116, + "inverseMass": 0.796923613461095, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.25482541, + "motion": 0, + "parent": null, + "position": { + "#": 628 + }, + "positionImpulse": { + "#": 629 + }, + "positionPrev": { + "#": 630 + }, + "render": { + "#": 631 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 633 + }, + "vertices": { + "#": 634 + } + }, + [ + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "x": -0.9594683116666392, + "y": -0.28181653412738056 + }, + { + "x": -0.8412011657491608, + "y": -0.5407222935502594 + }, + { + "x": -0.6549371857283655, + "y": -0.7556833217361679 + }, + { + "x": -0.4153677317263388, + "y": -0.9096535865045091 + }, + { + "x": -0.1423012985761668, + "y": -0.9898233885009671 + }, + { + "x": 0.1423012985761668, + "y": -0.9898233885009671 + }, + { + "x": 0.4153677317263388, + "y": -0.9096535865045091 + }, + { + "x": 0.6549371857283655, + "y": -0.7556833217361679 + }, + { + "x": 0.8412011657491608, + "y": -0.5407222935502594 + }, + { + "x": 0.9594683116666392, + "y": -0.28181653412738056 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 623 + }, + "min": { + "#": 624 + } + }, + { + "x": 643.886, + "y": 90.244 + }, + { + "x": 604.05, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 623.968, + "y": 70.122 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 623.968, + "y": 70.122 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 632 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 643.886, + "y": 72.98599999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 642.2719999999999, + "y": 78.481 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 639.175, + "y": 83.299 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 634.847, + "y": 87.05 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 629.637, + "y": 89.429 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 623.968, + "y": 90.244 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 618.299, + "y": 89.429 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 613.0889999999999, + "y": 87.05 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 608.761, + "y": 83.299 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 605.664, + "y": 78.481 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 604.05, + "y": 72.98599999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 604.05, + "y": 67.25800000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 605.664, + "y": 61.763 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 608.761, + "y": 56.945 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 613.0889999999999, + "y": 53.194 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 618.299, + "y": 50.815 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 623.968, + "y": 50 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 629.637, + "y": 50.815 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 634.847, + "y": 53.194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 639.175, + "y": 56.945 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 642.2719999999999, + "y": 61.763 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 643.886, + "y": 67.25800000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2214.8878419999996, + "axes": { + "#": 658 + }, + "bounds": { + "#": 672 + }, + "circleRadius": 26.68190586419753, + "collisionFilter": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "density": 0.001, + "force": { + "#": 677 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 3123.1431295098378, + "inverseInertia": 0.00032019025658838285, + "inverseMass": 0.4514901301264176, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.2148878419999996, + "motion": 0, + "parent": null, + "position": { + "#": 678 + }, + "positionImpulse": { + "#": 679 + }, + "positionPrev": { + "#": 680 + }, + "render": { + "#": 681 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 683 + }, + "vertices": { + "#": 684 + } + }, + [ + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": -0.9709599017732182, + "y": -0.23924228127265143 + }, + { + "x": -0.8854538871996172, + "y": -0.46472724650389047 + }, + { + "x": -0.7484889714538617, + "y": -0.6631472382600565 + }, + { + "x": -0.5681180190217404, + "y": -0.8229470921406876 + }, + { + "x": -0.35457925548170977, + "y": -0.9350259630523831 + }, + { + "x": -0.12049387698901172, + "y": -0.9927140704191499 + }, + { + "x": 0.12049387698901172, + "y": -0.9927140704191499 + }, + { + "x": 0.35457925548170977, + "y": -0.9350259630523831 + }, + { + "x": 0.5681180190217404, + "y": -0.8229470921406876 + }, + { + "x": 0.7484889714538617, + "y": -0.6631472382600565 + }, + { + "x": 0.8854538871996172, + "y": -0.46472724650389047 + }, + { + "x": 0.9709599017732182, + "y": -0.23924228127265143 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 673 + }, + "min": { + "#": 674 + } + }, + { + "x": 152.974, + "y": 172.36599999999999 + }, + { + "x": 100, + "y": 119.002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.487, + "y": 145.684 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.487, + "y": 145.684 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 682 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 152.974, + "y": 148.89999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.435, + "y": 155.146 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 148.446, + "y": 160.841 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 144.18, + "y": 165.656 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 138.887, + "y": 169.31 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 132.872, + "y": 171.591 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 126.487, + "y": 172.36599999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 120.10199999999999, + "y": 171.591 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 114.08699999999999, + "y": 169.31 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.794, + "y": 165.656 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.52799999999999, + "y": 160.841 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.53899999999999, + "y": 155.146 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 148.89999999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 142.46800000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.53899999999999, + "y": 136.22199999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.52799999999999, + "y": 130.527 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 108.794, + "y": 125.71199999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 114.08699999999999, + "y": 122.05799999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 120.10199999999999, + "y": 119.777 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 126.487, + "y": 119.002 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 132.872, + "y": 119.777 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 138.887, + "y": 122.05799999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 144.18, + "y": 125.71199999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 148.446, + "y": 130.527 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 151.435, + "y": 136.22199999999998 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 152.974, + "y": 142.46800000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1111.681768, + "axes": { + "#": 712 + }, + "bounds": { + "#": 723 + }, + "circleRadius": 18.9667566872428, + "collisionFilter": { + "#": 726 + }, + "constraintImpulse": { + "#": 727 + }, + "density": 0.001, + "force": { + "#": 728 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 786.8009408760354, + "inverseInertia": 0.001270969502002102, + "inverseMass": 0.8995380051964655, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.111681768, + "motion": 0, + "parent": null, + "position": { + "#": 729 + }, + "positionImpulse": { + "#": 730 + }, + "positionPrev": { + "#": 731 + }, + "render": { + "#": 732 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 734 + }, + "vertices": { + "#": 735 + } + }, + [ + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + } + ], + { + "x": -0.9510984438586632, + "y": -0.30888792480385036 + }, + { + "x": -0.8090274656982102, + "y": -0.5877708394824734 + }, + { + "x": -0.5877708394824734, + "y": -0.8090274656982102 + }, + { + "x": -0.30888792480385036, + "y": -0.9510984438586632 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30888792480385036, + "y": -0.9510984438586632 + }, + { + "x": 0.5877708394824734, + "y": -0.8090274656982102 + }, + { + "x": 0.8090274656982102, + "y": -0.5877708394824734 + }, + { + "x": 0.9510984438586632, + "y": -0.30888792480385036 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 724 + }, + "min": { + "#": 725 + } + }, + { + "x": 200.44, + "y": 156.46800000000002 + }, + { + "x": 162.974, + "y": 119.00200000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.707, + "y": 137.735 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.707, + "y": 137.735 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 733 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200.44, + "y": 140.702 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.607, + "y": 146.346 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.119, + "y": 151.14700000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 190.31799999999998, + "y": 154.63500000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 184.674, + "y": 156.46800000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 178.73999999999998, + "y": 156.46800000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 173.096, + "y": 154.63500000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 168.295, + "y": 151.14700000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 164.807, + "y": 146.346 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 162.974, + "y": 140.702 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 162.974, + "y": 134.76800000000003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 164.807, + "y": 129.12400000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 168.295, + "y": 124.32300000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 173.096, + "y": 120.83500000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 178.73999999999998, + "y": 119.00200000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 184.674, + "y": 119.00200000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 190.31799999999998, + "y": 120.83500000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 195.119, + "y": 124.32300000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 198.607, + "y": 129.12400000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 200.44, + "y": 134.76800000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2295.319759999999, + "axes": { + "#": 757 + }, + "bounds": { + "#": 771 + }, + "circleRadius": 27.16210133744856, + "collisionFilter": { + "#": 774 + }, + "constraintImpulse": { + "#": 775 + }, + "density": 0.001, + "force": { + "#": 776 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 3354.090682779493, + "inverseInertia": 0.00029814339997847423, + "inverseMass": 0.4356691461585293, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.295319759999999, + "motion": 0, + "parent": null, + "position": { + "#": 777 + }, + "positionImpulse": { + "#": 778 + }, + "positionPrev": { + "#": 779 + }, + "render": { + "#": 780 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 782 + }, + "vertices": { + "#": 783 + } + }, + [ + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + } + ], + { + "x": -0.9709455876458091, + "y": -0.23930036738612506 + }, + { + "x": -0.8854576058599221, + "y": -0.4647201611989897 + }, + { + "x": -0.7485037074240805, + "y": -0.6631306055162939 + }, + { + "x": -0.5680897644063303, + "y": -0.8229665968778805 + }, + { + "x": -0.3545851817432643, + "y": -0.9350237156821726 + }, + { + "x": -0.12050012358834578, + "y": -0.9927133121980349 + }, + { + "x": 0.12050012358834578, + "y": -0.9927133121980349 + }, + { + "x": 0.3545851817432643, + "y": -0.9350237156821726 + }, + { + "x": 0.5680897644063303, + "y": -0.8229665968778805 + }, + { + "x": 0.7485037074240805, + "y": -0.6631306055162939 + }, + { + "x": 0.8854576058599221, + "y": -0.4647201611989897 + }, + { + "x": 0.9709455876458091, + "y": -0.23930036738612506 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 772 + }, + "min": { + "#": 773 + } + }, + { + "x": 264.368, + "y": 173.32600000000002 + }, + { + "x": 210.44, + "y": 119.00200000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.404, + "y": 146.16400000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.404, + "y": 146.16400000000002 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 781 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 264.368, + "y": 149.43800000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 262.801, + "y": 155.79600000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 259.758, + "y": 161.59400000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 255.416, + "y": 166.495 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250.027, + "y": 170.215 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 243.904, + "y": 172.537 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 237.404, + "y": 173.32600000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 230.904, + "y": 172.537 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 224.781, + "y": 170.215 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.392, + "y": 166.495 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.05, + "y": 161.59400000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 212.007, + "y": 155.79600000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 210.44, + "y": 149.43800000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 210.44, + "y": 142.89000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 212.007, + "y": 136.532 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 215.05, + "y": 130.734 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 219.392, + "y": 125.83300000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 224.781, + "y": 122.11300000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 230.904, + "y": 119.79100000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 237.404, + "y": 119.00200000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 243.904, + "y": 119.79100000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 250.027, + "y": 122.11300000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 255.416, + "y": 125.83300000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 259.758, + "y": 130.734 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 262.801, + "y": 136.532 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 264.368, + "y": 142.89000000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2363.7519140000004, + "axes": { + "#": 811 + }, + "bounds": { + "#": 825 + }, + "circleRadius": 27.56423611111111, + "collisionFilter": { + "#": 828 + }, + "constraintImpulse": { + "#": 829 + }, + "density": 0.001, + "force": { + "#": 830 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 3557.0682353306725, + "inverseInertia": 0.0002811303955508849, + "inverseMass": 0.4230562412566279, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.3637519140000003, + "motion": 0, + "parent": null, + "position": { + "#": 831 + }, + "positionImpulse": { + "#": 832 + }, + "positionPrev": { + "#": 833 + }, + "render": { + "#": 834 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 836 + }, + "vertices": { + "#": 837 + } + }, + [ + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + } + ], + { + "x": -0.9709428209429523, + "y": -0.23931159282270878 + }, + { + "x": -0.8854660217302829, + "y": -0.46470412561235797 + }, + { + "x": -0.7484793383049184, + "y": -0.6631581109589413 + }, + { + "x": -0.5681373331772201, + "y": -0.8229337583610702 + }, + { + "x": -0.35456803389279123, + "y": -0.9350302184108279 + }, + { + "x": -0.12053359231150376, + "y": -0.9927092490374432 + }, + { + "x": 0.12053359231150376, + "y": -0.9927092490374432 + }, + { + "x": 0.35456803389279123, + "y": -0.9350302184108279 + }, + { + "x": 0.5681373331772201, + "y": -0.8229337583610702 + }, + { + "x": 0.7484793383049184, + "y": -0.6631581109589413 + }, + { + "x": 0.8854660217302829, + "y": -0.46470412561235797 + }, + { + "x": 0.9709428209429523, + "y": -0.23931159282270878 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 826 + }, + "min": { + "#": 827 + } + }, + { + "x": 329.094, + "y": 174.13 + }, + { + "x": 274.368, + "y": 119.00200000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.731, + "y": 146.566 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.731, + "y": 146.566 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 835 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 329.094, + "y": 149.889 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 327.504, + "y": 156.34 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 324.416, + "y": 162.224 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 320.009, + "y": 167.198 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 314.541, + "y": 170.973 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 308.328, + "y": 173.329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 301.731, + "y": 174.13 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 295.134, + "y": 173.329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.921, + "y": 170.973 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 283.453, + "y": 167.198 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 279.046, + "y": 162.224 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 275.95799999999997, + "y": 156.34 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 274.368, + "y": 149.889 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 274.368, + "y": 143.243 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 275.95799999999997, + "y": 136.792 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.046, + "y": 130.90800000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.453, + "y": 125.934 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 288.921, + "y": 122.159 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 295.134, + "y": 119.803 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 301.731, + "y": 119.00200000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 308.328, + "y": 119.803 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 314.541, + "y": 122.159 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 320.009, + "y": 125.934 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 324.416, + "y": 130.90800000000002 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 327.504, + "y": 136.792 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 329.094, + "y": 143.243 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1829.106108, + "axes": { + "#": 865 + }, + "bounds": { + "#": 879 + }, + "circleRadius": 24.247235082304528, + "collisionFilter": { + "#": 882 + }, + "constraintImpulse": { + "#": 883 + }, + "density": 0.001, + "force": { + "#": 884 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 2129.934309931321, + "inverseInertia": 0.0004694980475863806, + "inverseMass": 0.546715138955733, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.829106108, + "motion": 0, + "parent": null, + "position": { + "#": 885 + }, + "positionImpulse": { + "#": 886 + }, + "positionPrev": { + "#": 887 + }, + "render": { + "#": 888 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 890 + }, + "vertices": { + "#": 891 + } + }, + [ + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + } + ], + { + "x": -0.9709720988374455, + "y": -0.2391927743039204 + }, + { + "x": -0.8854260626172822, + "y": -0.46478025736691625 + }, + { + "x": -0.7485032569212987, + "y": -0.6631311140175887 + }, + { + "x": -0.568088667994131, + "y": -0.8229673537247112 + }, + { + "x": -0.3546645491504353, + "y": -0.9349936136551515 + }, + { + "x": -0.12043354466296623, + "y": -0.9927213915897619 + }, + { + "x": 0.12043354466296623, + "y": -0.9927213915897619 + }, + { + "x": 0.3546645491504353, + "y": -0.9349936136551515 + }, + { + "x": 0.568088667994131, + "y": -0.8229673537247112 + }, + { + "x": 0.7485032569212987, + "y": -0.6631311140175887 + }, + { + "x": 0.8854260626172822, + "y": -0.46478025736691625 + }, + { + "x": 0.9709720988374455, + "y": -0.2391927743039204 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 880 + }, + "min": { + "#": 881 + } + }, + { + "x": 387.234, + "y": 167.49600000000004 + }, + { + "x": 339.094, + "y": 119.00200000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 363.164, + "y": 143.24900000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 363.164, + "y": 143.24900000000002 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 889 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 387.234, + "y": 146.17200000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 385.836, + "y": 151.84700000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.11899999999997, + "y": 157.02300000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 379.243, + "y": 161.39800000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.43199999999996, + "y": 164.71900000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 368.967, + "y": 166.79200000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 363.164, + "y": 167.49600000000004 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 357.361, + "y": 166.79200000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 351.896, + "y": 164.71900000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 347.085, + "y": 161.39800000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 343.209, + "y": 157.02300000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 340.49199999999996, + "y": 151.84700000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 339.094, + "y": 146.17200000000003 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 339.094, + "y": 140.32600000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 340.49199999999996, + "y": 134.651 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 343.209, + "y": 129.47500000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 347.085, + "y": 125.10000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 351.896, + "y": 121.77900000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 357.361, + "y": 119.70600000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 363.164, + "y": 119.00200000000002 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 368.967, + "y": 119.70600000000002 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 374.43199999999996, + "y": 121.77900000000002 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 379.243, + "y": 125.10000000000002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 383.11899999999997, + "y": 129.47500000000002 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 385.836, + "y": 134.651 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 387.234, + "y": 140.32600000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1331.712504, + "axes": { + "#": 919 + }, + "bounds": { + "#": 931 + }, + "circleRadius": 20.729616769547324, + "collisionFilter": { + "#": 934 + }, + "constraintImpulse": { + "#": 935 + }, + "density": 0.001, + "force": { + "#": 936 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1129.0606916324366, + "inverseInertia": 0.0008856919804321272, + "inverseMass": 0.7509128261515519, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3317125040000002, + "motion": 0, + "parent": null, + "position": { + "#": 937 + }, + "positionImpulse": { + "#": 938 + }, + "positionPrev": { + "#": 939 + }, + "render": { + "#": 940 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 942 + }, + "vertices": { + "#": 943 + } + }, + [ + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + } + ], + { + "x": -0.9594572104893309, + "y": -0.28185432627517293 + }, + { + "x": -0.8412665659715145, + "y": -0.5406205369559092 + }, + { + "x": -0.6548853702477502, + "y": -0.755728226173581 + }, + { + "x": -0.41541125830941705, + "y": -0.9096337100557491 + }, + { + "x": -0.14237042741969902, + "y": -0.9898134477750504 + }, + { + "x": 0.14237042741969902, + "y": -0.9898134477750504 + }, + { + "x": 0.41541125830941705, + "y": -0.9096337100557491 + }, + { + "x": 0.6548853702477502, + "y": -0.755728226173581 + }, + { + "x": 0.8412665659715145, + "y": -0.5406205369559092 + }, + { + "x": 0.9594572104893309, + "y": -0.28185432627517293 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 932 + }, + "min": { + "#": 933 + } + }, + { + "x": 438.272, + "y": 160.462 + }, + { + "x": 397.234, + "y": 119.002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.753, + "y": 139.732 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.753, + "y": 139.732 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 941 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 438.272, + "y": 142.68200000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 436.609, + "y": 148.34300000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 433.419, + "y": 153.307 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 428.96, + "y": 157.171 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 423.59299999999996, + "y": 159.62199999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 417.753, + "y": 160.462 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 411.913, + "y": 159.62199999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 406.546, + "y": 157.171 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 402.087, + "y": 153.307 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 398.897, + "y": 148.34300000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.234, + "y": 142.68200000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.234, + "y": 136.78199999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 398.897, + "y": 131.12099999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 402.087, + "y": 126.157 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 406.546, + "y": 122.293 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 411.913, + "y": 119.842 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 417.753, + "y": 119.002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 423.59299999999996, + "y": 119.842 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 428.96, + "y": 122.293 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 433.419, + "y": 126.157 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 436.609, + "y": 131.12099999999998 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 438.272, + "y": 136.78199999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 852.4351440000002, + "axes": { + "#": 967 + }, + "bounds": { + "#": 977 + }, + "circleRadius": 16.641010802469136, + "collisionFilter": { + "#": 980 + }, + "constraintImpulse": { + "#": 981 + }, + "density": 0.001, + "force": { + "#": 982 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 462.6357210539542, + "inverseInertia": 0.0021615278598069525, + "inverseMass": 1.173109775023541, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8524351440000002, + "motion": 0, + "parent": null, + "position": { + "#": 983 + }, + "positionImpulse": { + "#": 984 + }, + "positionPrev": { + "#": 985 + }, + "render": { + "#": 986 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 988 + }, + "vertices": { + "#": 989 + } + }, + [ + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + } + ], + { + "x": -0.9397327846091404, + "y": -0.3419097739620075 + }, + { + "x": -0.7660183763241144, + "y": -0.6428186736038145 + }, + { + "x": -0.4999171846810808, + "y": -0.86607321195182 + }, + { + "x": -0.1737063737965816, + "y": -0.9847974896913791 + }, + { + "x": 0.1737063737965816, + "y": -0.9847974896913791 + }, + { + "x": 0.4999171846810808, + "y": -0.86607321195182 + }, + { + "x": 0.7660183763241144, + "y": -0.6428186736038145 + }, + { + "x": 0.9397327846091404, + "y": -0.3419097739620075 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 978 + }, + "min": { + "#": 979 + } + }, + { + "x": 481.04799999999994, + "y": 152.284 + }, + { + "x": 448.272, + "y": 119.00200000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 464.65999999999997, + "y": 135.643 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 464.65999999999997, + "y": 135.643 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 987 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 481.04799999999994, + "y": 138.53300000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 479.07199999999995, + "y": 143.964 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475.35699999999997, + "y": 148.391 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 470.352, + "y": 151.28 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 464.65999999999997, + "y": 152.284 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 458.96799999999996, + "y": 151.28 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 453.96299999999997, + "y": 148.391 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.248, + "y": 143.964 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 448.272, + "y": 138.53300000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 448.272, + "y": 132.753 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 450.248, + "y": 127.322 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 453.96299999999997, + "y": 122.895 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 458.96799999999996, + "y": 120.006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 464.65999999999997, + "y": 119.00200000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 470.352, + "y": 120.006 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 475.35699999999997, + "y": 122.895 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 479.07199999999995, + "y": 127.322 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 481.04799999999994, + "y": 132.753 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2687.108398, + "axes": { + "#": 1009 + }, + "bounds": { + "#": 1023 + }, + "circleRadius": 29.388824588477366, + "collisionFilter": { + "#": 1026 + }, + "constraintImpulse": { + "#": 1027 + }, + "density": 0.001, + "force": { + "#": 1028 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 4596.833586630778, + "inverseInertia": 0.00021754104888816394, + "inverseMass": 0.3721472497143377, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.687108398, + "motion": 0, + "parent": null, + "position": { + "#": 1029 + }, + "positionImpulse": { + "#": 1030 + }, + "positionPrev": { + "#": 1031 + }, + "render": { + "#": 1032 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1034 + }, + "vertices": { + "#": 1035 + } + }, + [ + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + } + ], + { + "x": -0.9709261131040956, + "y": -0.23937937023179934 + }, + { + "x": -0.8855053411184941, + "y": -0.4646291971568505 + }, + { + "x": -0.7484440565964828, + "y": -0.6631979298410096 + }, + { + "x": -0.5681452001163276, + "y": -0.8229283271250164 + }, + { + "x": -0.3545393548617785, + "y": -0.9350410931366568 + }, + { + "x": -0.12054213183122658, + "y": -0.9927082121417065 + }, + { + "x": 0.12054213183122658, + "y": -0.9927082121417065 + }, + { + "x": 0.3545393548617785, + "y": -0.9350410931366568 + }, + { + "x": 0.5681452001163276, + "y": -0.8229283271250164 + }, + { + "x": 0.7484440565964828, + "y": -0.6631979298410096 + }, + { + "x": 0.8855053411184941, + "y": -0.4646291971568505 + }, + { + "x": 0.9709261131040956, + "y": -0.23937937023179934 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1024 + }, + "min": { + "#": 1025 + } + }, + { + "x": 549.3979999999999, + "y": 177.78000000000003 + }, + { + "x": 491.04799999999994, + "y": 119.00200000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.223, + "y": 148.39100000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.223, + "y": 148.39100000000002 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1033 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.3979999999999, + "y": 151.93300000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.702, + "y": 158.812 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 544.4099999999999, + "y": 165.086 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 539.711, + "y": 170.389 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 533.881, + "y": 174.41400000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 527.256, + "y": 176.92600000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 520.223, + "y": 177.78000000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 513.1899999999999, + "y": 176.92600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 506.56499999999994, + "y": 174.41400000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 500.73499999999996, + "y": 170.389 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 496.03599999999994, + "y": 165.086 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 492.74399999999997, + "y": 158.812 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 491.04799999999994, + "y": 151.93300000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 491.04799999999994, + "y": 144.84900000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 492.74399999999997, + "y": 137.97000000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 496.03599999999994, + "y": 131.69600000000003 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 500.73499999999996, + "y": 126.39300000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.56499999999994, + "y": 122.36800000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 513.1899999999999, + "y": 119.85600000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 520.223, + "y": 119.00200000000002 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 527.256, + "y": 119.85600000000002 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 533.881, + "y": 122.36800000000002 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 539.711, + "y": 126.39300000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 544.4099999999999, + "y": 131.69600000000003 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 547.702, + "y": 137.97000000000003 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 549.3979999999999, + "y": 144.84900000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1343.973232, + "axes": { + "#": 1063 + }, + "bounds": { + "#": 1075 + }, + "circleRadius": 20.824909979423868, + "collisionFilter": { + "#": 1078 + }, + "constraintImpulse": { + "#": 1079 + }, + "density": 0.001, + "force": { + "#": 1080 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1149.9463267575188, + "inverseInertia": 0.0008696058039679821, + "inverseMass": 0.7440624382911816, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3439732320000002, + "motion": 0, + "parent": null, + "position": { + "#": 1081 + }, + "positionImpulse": { + "#": 1082 + }, + "positionPrev": { + "#": 1083 + }, + "render": { + "#": 1084 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1086 + }, + "vertices": { + "#": 1087 + } + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + } + ], + { + "x": -0.9594863085383493, + "y": -0.28175525501301946 + }, + { + "x": -0.841200401216122, + "y": -0.5407234829317434 + }, + { + "x": -0.6549498076310009, + "y": -0.7556723823748722 + }, + { + "x": -0.41535304835231424, + "y": -0.9096602911111599 + }, + { + "x": -0.1423896733188219, + "y": -0.9898106793383061 + }, + { + "x": 0.1423896733188219, + "y": -0.9898106793383061 + }, + { + "x": 0.41535304835231424, + "y": -0.9096602911111599 + }, + { + "x": 0.6549498076310009, + "y": -0.7556723823748722 + }, + { + "x": 0.841200401216122, + "y": -0.5407234829317434 + }, + { + "x": 0.9594863085383493, + "y": -0.28175525501301946 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1076 + }, + "min": { + "#": 1077 + } + }, + { + "x": 600.624, + "y": 160.652 + }, + { + "x": 559.3979999999999, + "y": 119.002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580.011, + "y": 139.827 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580.011, + "y": 139.827 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1085 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600.624, + "y": 142.791 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 598.954, + "y": 148.478 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 595.749, + "y": 153.464 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 591.27, + "y": 157.346 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 585.8779999999999, + "y": 159.808 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 580.011, + "y": 160.652 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 574.144, + "y": 159.808 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 568.752, + "y": 157.346 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 564.2729999999999, + "y": 153.464 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 561.068, + "y": 148.478 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 559.3979999999999, + "y": 142.791 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 559.3979999999999, + "y": 136.863 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 561.068, + "y": 131.176 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 564.2729999999999, + "y": 126.19 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 568.752, + "y": 122.30799999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 574.144, + "y": 119.846 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 580.011, + "y": 119.002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 585.8779999999999, + "y": 119.846 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 591.27, + "y": 122.30799999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 595.749, + "y": 126.19 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 598.954, + "y": 131.176 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 600.624, + "y": 136.863 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2600.5853180000004, + "axes": { + "#": 1111 + }, + "bounds": { + "#": 1125 + }, + "circleRadius": 28.912229938271604, + "collisionFilter": { + "#": 1128 + }, + "constraintImpulse": { + "#": 1129 + }, + "density": 0.001, + "force": { + "#": 1130 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 4305.569679703002, + "inverseInertia": 0.00023225730260832288, + "inverseMass": 0.3845288186003671, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6005853180000003, + "motion": 0, + "parent": null, + "position": { + "#": 1131 + }, + "positionImpulse": { + "#": 1132 + }, + "positionPrev": { + "#": 1133 + }, + "render": { + "#": 1134 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1136 + }, + "vertices": { + "#": 1137 + } + }, + [ + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + } + ], + { + "x": -0.970939006803869, + "y": -0.23932706714184315 + }, + { + "x": -0.8854746498616403, + "y": -0.4646876848512401 + }, + { + "x": -0.7485006850783444, + "y": -0.6631340169507588 + }, + { + "x": -0.5681352009209623, + "y": -0.8229352304249088 + }, + { + "x": -0.35453312532100223, + "y": -0.9350434551667225 + }, + { + "x": -0.12051989679740689, + "y": -0.9927109118348314 + }, + { + "x": 0.12051989679740689, + "y": -0.9927109118348314 + }, + { + "x": 0.35453312532100223, + "y": -0.9350434551667225 + }, + { + "x": 0.5681352009209623, + "y": -0.8229352304249088 + }, + { + "x": 0.7485006850783444, + "y": -0.6631340169507588 + }, + { + "x": 0.8854746498616403, + "y": -0.4646876848512401 + }, + { + "x": 0.970939006803869, + "y": -0.23932706714184315 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1126 + }, + "min": { + "#": 1127 + } + }, + { + "x": 668.0260000000001, + "y": 176.82600000000002 + }, + { + "x": 610.624, + "y": 119.00200000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 639.325, + "y": 147.91400000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 639.325, + "y": 147.91400000000002 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1135 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 668.0260000000001, + "y": 151.399 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 666.3580000000001, + "y": 158.16600000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 663.119, + "y": 164.33800000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 658.4970000000001, + "y": 169.555 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 652.7610000000001, + "y": 173.51500000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 646.244, + "y": 175.98600000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 639.325, + "y": 176.82600000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 632.4060000000001, + "y": 175.98600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 625.889, + "y": 173.51500000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 620.153, + "y": 169.555 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 615.5310000000001, + "y": 164.33800000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 612.292, + "y": 158.16600000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 610.624, + "y": 151.399 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 610.624, + "y": 144.42900000000003 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 612.292, + "y": 137.66200000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 615.5310000000001, + "y": 131.49 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 620.153, + "y": 126.27300000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 625.889, + "y": 122.31300000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 632.4060000000001, + "y": 119.84200000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 639.325, + "y": 119.00200000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 646.244, + "y": 119.84200000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 652.7610000000001, + "y": 122.31300000000002 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 658.4970000000001, + "y": 126.27300000000002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 663.119, + "y": 131.49 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 666.3580000000001, + "y": 137.66200000000003 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 668.0260000000001, + "y": 144.42900000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1850.952944, + "axes": { + "#": 1165 + }, + "bounds": { + "#": 1179 + }, + "circleRadius": 24.39152520576132, + "collisionFilter": { + "#": 1182 + }, + "constraintImpulse": { + "#": 1183 + }, + "density": 0.001, + "force": { + "#": 1184 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2181.118018104605, + "inverseInertia": 0.0004584804635509827, + "inverseMass": 0.5402622488278666, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8509529439999999, + "motion": 0, + "parent": null, + "position": { + "#": 1185 + }, + "positionImpulse": { + "#": 1186 + }, + "positionPrev": { + "#": 1187 + }, + "render": { + "#": 1188 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1190 + }, + "vertices": { + "#": 1191 + } + }, + [ + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + } + ], + { + "x": -0.9709079069702696, + "y": -0.2394532024897771 + }, + { + "x": -0.8855151102728375, + "y": -0.4646105783110027 + }, + { + "x": -0.7485061705548478, + "y": -0.663127825265474 + }, + { + "x": -0.568086537608252, + "y": -0.8229688243112665 + }, + { + "x": -0.3545875857376188, + "y": -0.935022804021788 + }, + { + "x": -0.12058023665523107, + "y": -0.9927035844239549 + }, + { + "x": 0.12058023665523107, + "y": -0.9927035844239549 + }, + { + "x": 0.3545875857376188, + "y": -0.935022804021788 + }, + { + "x": 0.568086537608252, + "y": -0.8229688243112665 + }, + { + "x": 0.7485061705548478, + "y": -0.663127825265474 + }, + { + "x": 0.8855151102728375, + "y": -0.4646105783110027 + }, + { + "x": 0.9709079069702696, + "y": -0.2394532024897771 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1180 + }, + "min": { + "#": 1181 + } + }, + { + "x": 148.428, + "y": 236.56400000000002 + }, + { + "x": 100, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 124.214, + "y": 212.17200000000003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 124.214, + "y": 212.17200000000003 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1189 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 148.428, + "y": 215.11200000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 147.01999999999998, + "y": 220.82100000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 144.288, + "y": 226.02800000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.389, + "y": 230.42900000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 135.549, + "y": 233.77000000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 130.051, + "y": 235.85500000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 124.214, + "y": 236.56400000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.377, + "y": 235.85500000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 112.87899999999999, + "y": 233.77000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.039, + "y": 230.42900000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.14, + "y": 226.02800000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.408, + "y": 220.82100000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 215.11200000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 209.23200000000003 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.408, + "y": 203.52300000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.14, + "y": 198.31600000000003 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 108.039, + "y": 193.91500000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 112.87899999999999, + "y": 190.574 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.377, + "y": 188.48900000000003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 124.214, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 130.051, + "y": 188.48900000000003 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 135.549, + "y": 190.574 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 140.389, + "y": 193.91500000000002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 144.288, + "y": 198.31600000000003 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 147.01999999999998, + "y": 203.52300000000002 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 148.428, + "y": 209.23200000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 937.097596, + "axes": { + "#": 1219 + }, + "bounds": { + "#": 1229 + }, + "circleRadius": 17.447980967078188, + "collisionFilter": { + "#": 1232 + }, + "constraintImpulse": { + "#": 1233 + }, + "density": 0.001, + "force": { + "#": 1234 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 559.0956546000535, + "inverseInertia": 0.0017886027046934308, + "inverseMass": 1.0671247096017522, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.937097596, + "motion": 0, + "parent": null, + "position": { + "#": 1235 + }, + "positionImpulse": { + "#": 1236 + }, + "positionPrev": { + "#": 1237 + }, + "render": { + "#": 1238 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1240 + }, + "vertices": { + "#": 1241 + } + }, + [ + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + } + ], + { + "x": -0.9396632611814948, + "y": -0.34210079740590776 + }, + { + "x": -0.7660526086703177, + "y": -0.6427778782358655 + }, + { + "x": -0.5000796067932008, + "y": -0.865979437902285 + }, + { + "x": -0.1735970572002205, + "y": -0.9848167655617075 + }, + { + "x": 0.1735970572002205, + "y": -0.9848167655617075 + }, + { + "x": 0.5000796067932008, + "y": -0.865979437902285 + }, + { + "x": 0.7660526086703177, + "y": -0.6427778782358655 + }, + { + "x": 0.9396632611814948, + "y": -0.34210079740590776 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1230 + }, + "min": { + "#": 1231 + } + }, + { + "x": 192.79399999999998, + "y": 222.67600000000004 + }, + { + "x": 158.428, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.611, + "y": 205.22800000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.611, + "y": 205.22800000000004 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1239 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 192.79399999999998, + "y": 208.25800000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.721, + "y": 213.95200000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.826, + "y": 218.59400000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 181.57899999999998, + "y": 221.62400000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 175.611, + "y": 222.67600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 169.643, + "y": 221.62400000000005 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 164.396, + "y": 218.59400000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 160.50099999999998, + "y": 213.95200000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 158.428, + "y": 208.25800000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 158.428, + "y": 202.19800000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 160.50099999999998, + "y": 196.50400000000005 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 164.396, + "y": 191.86200000000005 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 169.643, + "y": 188.83200000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 175.611, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 181.57899999999998, + "y": 188.83200000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 186.826, + "y": 191.86200000000005 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 190.721, + "y": 196.50400000000005 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 192.79399999999998, + "y": 202.19800000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1848.9085379999997, + "axes": { + "#": 1261 + }, + "bounds": { + "#": 1275 + }, + "circleRadius": 24.37789351851852, + "collisionFilter": { + "#": 1278 + }, + "constraintImpulse": { + "#": 1279 + }, + "density": 0.001, + "force": { + "#": 1280 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 2176.3025218581856, + "inverseInertia": 0.00045949494151492, + "inverseMass": 0.5408596366165951, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8489085379999997, + "motion": 0, + "parent": null, + "position": { + "#": 1281 + }, + "positionImpulse": { + "#": 1282 + }, + "positionPrev": { + "#": 1283 + }, + "render": { + "#": 1284 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1286 + }, + "vertices": { + "#": 1287 + } + }, + [ + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + } + ], + { + "x": -0.9709674753373843, + "y": -0.23921154202284237 + }, + { + "x": -0.8854381720103849, + "y": -0.4647571877302253 + }, + { + "x": -0.7485254378371649, + "y": -0.6631060766654764 + }, + { + "x": -0.5680947037771794, + "y": -0.8229631872327696 + }, + { + "x": -0.3546080683168747, + "y": -0.9350150361810096 + }, + { + "x": -0.12047365436339115, + "y": -0.9927165247966463 + }, + { + "x": 0.12047365436339115, + "y": -0.9927165247966463 + }, + { + "x": 0.3546080683168747, + "y": -0.9350150361810096 + }, + { + "x": 0.5680947037771794, + "y": -0.8229631872327696 + }, + { + "x": 0.7485254378371649, + "y": -0.6631060766654764 + }, + { + "x": 0.8854381720103849, + "y": -0.4647571877302253 + }, + { + "x": 0.9709674753373843, + "y": -0.23921154202284237 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1276 + }, + "min": { + "#": 1277 + } + }, + { + "x": 251.19399999999996, + "y": 236.536 + }, + { + "x": 202.79399999999998, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 226.99399999999997, + "y": 212.15800000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 226.99399999999997, + "y": 212.15800000000002 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1285 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.19399999999996, + "y": 215.096 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.78799999999998, + "y": 220.80300000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 247.05699999999996, + "y": 226.00600000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.15999999999997, + "y": 230.40500000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 238.32299999999998, + "y": 233.74400000000003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 232.82799999999997, + "y": 235.82800000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 226.99399999999997, + "y": 236.536 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 221.15999999999997, + "y": 235.82800000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 215.66499999999996, + "y": 233.74400000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 210.82799999999997, + "y": 230.40500000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 206.93099999999998, + "y": 226.00600000000003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 204.19999999999996, + "y": 220.80300000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 202.79399999999998, + "y": 215.096 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 202.79399999999998, + "y": 209.22000000000003 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 204.19999999999996, + "y": 203.513 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 206.93099999999998, + "y": 198.31 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 210.82799999999997, + "y": 193.911 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 215.66499999999996, + "y": 190.572 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 221.15999999999997, + "y": 188.488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 226.99399999999997, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 232.82799999999997, + "y": 188.488 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 238.32299999999998, + "y": 190.572 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 243.15999999999997, + "y": 193.911 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 247.05699999999996, + "y": 198.31 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 249.78799999999998, + "y": 203.513 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 251.19399999999996, + "y": 209.22000000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2662.7031859999993, + "axes": { + "#": 1315 + }, + "bounds": { + "#": 1329 + }, + "circleRadius": 29.25533693415638, + "collisionFilter": { + "#": 1332 + }, + "constraintImpulse": { + "#": 1333 + }, + "density": 0.001, + "force": { + "#": 1334 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 4513.71283136672, + "inverseInertia": 0.00022154710265367218, + "inverseMass": 0.3755581941155946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6627031859999994, + "motion": 0, + "parent": null, + "position": { + "#": 1335 + }, + "positionImpulse": { + "#": 1336 + }, + "positionPrev": { + "#": 1337 + }, + "render": { + "#": 1338 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1340 + }, + "vertices": { + "#": 1341 + } + }, + [ + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + } + ], + { + "x": -0.9709378772487557, + "y": -0.23933164964893425 + }, + { + "x": -0.8854927136371952, + "y": -0.4646532622240331 + }, + { + "x": -0.7484956802859418, + "y": -0.6631396659779034 + }, + { + "x": -0.568044391747725, + "y": -0.8229979155526198 + }, + { + "x": -0.3545858497834421, + "y": -0.9350234623437822 + }, + { + "x": -0.12052615754469004, + "y": -0.9927101517298554 + }, + { + "x": 0.12052615754469004, + "y": -0.9927101517298554 + }, + { + "x": 0.3545858497834421, + "y": -0.9350234623437822 + }, + { + "x": 0.568044391747725, + "y": -0.8229979155526198 + }, + { + "x": 0.7484956802859418, + "y": -0.6631396659779034 + }, + { + "x": 0.8854927136371952, + "y": -0.4646532622240331 + }, + { + "x": 0.9709378772487557, + "y": -0.23933164964893425 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1330 + }, + "min": { + "#": 1331 + } + }, + { + "x": 319.278, + "y": 246.29000000000002 + }, + { + "x": 261.19399999999996, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.236, + "y": 217.03500000000003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.236, + "y": 217.03500000000003 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1339 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.278, + "y": 220.56100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 317.59, + "y": 227.40900000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.313, + "y": 233.65400000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.63599999999997, + "y": 238.93300000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.832, + "y": 242.93900000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.23699999999997, + "y": 245.44000000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.236, + "y": 246.29000000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 283.235, + "y": 245.44000000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.64, + "y": 242.93900000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 270.836, + "y": 238.93300000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 266.159, + "y": 233.65400000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 262.882, + "y": 227.40900000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.19399999999996, + "y": 220.56100000000004 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 261.19399999999996, + "y": 213.50900000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 262.882, + "y": 206.66100000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 266.159, + "y": 200.41600000000003 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 270.836, + "y": 195.13700000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 276.64, + "y": 191.13100000000003 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 283.235, + "y": 188.63000000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 290.236, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 297.23699999999997, + "y": 188.63000000000002 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 303.832, + "y": 191.13100000000003 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 309.63599999999997, + "y": 195.13700000000003 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 314.313, + "y": 200.41600000000003 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 317.59, + "y": 206.66100000000003 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 319.278, + "y": 213.50900000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 744.9158119999998, + "axes": { + "#": 1369 + }, + "bounds": { + "#": 1378 + }, + "circleRadius": 15.598829732510287, + "collisionFilter": { + "#": 1381 + }, + "constraintImpulse": { + "#": 1382 + }, + "density": 0.001, + "force": { + "#": 1383 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 353.30757950427443, + "inverseInertia": 0.002830394981627904, + "inverseMass": 1.342433579594898, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7449158119999999, + "motion": 0, + "parent": null, + "position": { + "#": 1384 + }, + "positionImpulse": { + "#": 1385 + }, + "positionPrev": { + "#": 1386 + }, + "render": { + "#": 1387 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1389 + }, + "vertices": { + "#": 1390 + } + }, + [ + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + } + ], + { + "x": -0.9238866694289085, + "y": -0.3826662018673176 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826662018673176, + "y": -0.9238866694289085 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826662018673176, + "y": -0.9238866694289085 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238866694289085, + "y": -0.3826662018673176 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1379 + }, + "min": { + "#": 1380 + } + }, + { + "x": 359.876, + "y": 218.37800000000004 + }, + { + "x": 329.278, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.577, + "y": 203.07900000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.577, + "y": 203.07900000000004 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1388 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 359.876, + "y": 206.12200000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 357.547, + "y": 211.74500000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 353.243, + "y": 216.04900000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 347.62, + "y": 218.37800000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.534, + "y": 218.37800000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 335.911, + "y": 216.04900000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 331.60699999999997, + "y": 211.74500000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 329.278, + "y": 206.12200000000004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 329.278, + "y": 200.03600000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 331.60699999999997, + "y": 194.41300000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 335.911, + "y": 190.10900000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 341.534, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 347.62, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 353.243, + "y": 190.10900000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 357.547, + "y": 194.41300000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 359.876, + "y": 200.03600000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1648.4011000000003, + "axes": { + "#": 1408 + }, + "bounds": { + "#": 1421 + }, + "circleRadius": 23.038001543209877, + "collisionFilter": { + "#": 1424 + }, + "constraintImpulse": { + "#": 1425 + }, + "density": 0.001, + "force": { + "#": 1426 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1729.8854325157483, + "inverseInertia": 0.0005780729643729723, + "inverseMass": 0.60664846680823, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6484011000000003, + "motion": 0, + "parent": null, + "position": { + "#": 1427 + }, + "positionImpulse": { + "#": 1428 + }, + "positionPrev": { + "#": 1429 + }, + "render": { + "#": 1430 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1432 + }, + "vertices": { + "#": 1433 + } + }, + [ + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": -0.9659057395099124, + "y": -0.25889399835030735 + }, + { + "x": -0.8660554631739814, + "y": -0.4999479319954234 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.4999479319954234, + "y": -0.8660554631739814 + }, + { + "x": -0.25889399835030735, + "y": -0.9659057395099124 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25889399835030735, + "y": -0.9659057395099124 + }, + { + "x": 0.4999479319954234, + "y": -0.8660554631739814 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660554631739814, + "y": -0.4999479319954234 + }, + { + "x": 0.9659057395099124, + "y": -0.25889399835030735 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1422 + }, + "min": { + "#": 1423 + } + }, + { + "x": 415.558, + "y": 233.46200000000005 + }, + { + "x": 369.876, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 392.717, + "y": 210.62100000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 392.717, + "y": 210.62100000000004 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1431 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 415.558, + "y": 213.62800000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.001, + "y": 219.43700000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 410.99399999999997, + "y": 224.64600000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 406.74199999999996, + "y": 228.89800000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 401.53299999999996, + "y": 231.90500000000003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 395.724, + "y": 233.46200000000005 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 389.71, + "y": 233.46200000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 383.901, + "y": 231.90500000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 378.692, + "y": 228.89800000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.44, + "y": 224.64600000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 371.433, + "y": 219.43700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 369.876, + "y": 213.62800000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 369.876, + "y": 207.61400000000003 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 371.433, + "y": 201.80500000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 374.44, + "y": 196.59600000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 378.692, + "y": 192.34400000000005 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 383.901, + "y": 189.33700000000005 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 389.71, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 395.724, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 401.53299999999996, + "y": 189.33700000000005 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 406.74199999999996, + "y": 192.34400000000005 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 410.99399999999997, + "y": 196.59600000000003 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 414.001, + "y": 201.80500000000004 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 415.558, + "y": 207.61400000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1113.272836, + "axes": { + "#": 1459 + }, + "bounds": { + "#": 1470 + }, + "circleRadius": 18.980259773662553, + "collisionFilter": { + "#": 1473 + }, + "constraintImpulse": { + "#": 1474 + }, + "density": 0.001, + "force": { + "#": 1475 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 789.0547317724531, + "inverseInertia": 0.0012673392094787908, + "inverseMass": 0.8982524028817674, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1132728360000002, + "motion": 0, + "parent": null, + "position": { + "#": 1476 + }, + "positionImpulse": { + "#": 1477 + }, + "positionPrev": { + "#": 1478 + }, + "render": { + "#": 1479 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1481 + }, + "vertices": { + "#": 1482 + } + }, + [ + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + } + ], + { + "x": -0.9510637633325844, + "y": -0.30899468939718355 + }, + { + "x": -0.8089617628829073, + "y": -0.5878612644097065 + }, + { + "x": -0.5878612644097065, + "y": -0.8089617628829073 + }, + { + "x": -0.30899468939718355, + "y": -0.9510637633325844 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30899468939718355, + "y": -0.9510637633325844 + }, + { + "x": 0.5878612644097065, + "y": -0.8089617628829073 + }, + { + "x": 0.8089617628829073, + "y": -0.5878612644097065 + }, + { + "x": 0.9510637633325844, + "y": -0.30899468939718355 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1471 + }, + "min": { + "#": 1472 + } + }, + { + "x": 463.052, + "y": 225.27400000000006 + }, + { + "x": 425.558, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 444.305, + "y": 206.52700000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 444.305, + "y": 206.52700000000004 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1480 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.052, + "y": 209.49600000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.217, + "y": 215.14400000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.726, + "y": 219.94800000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.922, + "y": 223.43900000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 447.274, + "y": 225.27400000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 441.336, + "y": 225.27400000000006 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 435.688, + "y": 223.43900000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.884, + "y": 219.94800000000004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 427.39300000000003, + "y": 215.14400000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 425.558, + "y": 209.49600000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 425.558, + "y": 203.55800000000005 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 427.39300000000003, + "y": 197.91000000000005 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 430.884, + "y": 193.10600000000005 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 435.688, + "y": 189.61500000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 441.336, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 447.274, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.922, + "y": 189.61500000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.726, + "y": 193.10600000000005 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.217, + "y": 197.91000000000005 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.052, + "y": 203.55800000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1274.2530860000002, + "axes": { + "#": 1504 + }, + "bounds": { + "#": 1516 + }, + "circleRadius": 20.277456275720166, + "collisionFilter": { + "#": 1519 + }, + "constraintImpulse": { + "#": 1520 + }, + "density": 0.001, + "force": { + "#": 1521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1033.7314290896877, + "inverseInertia": 0.0009673692526506697, + "inverseMass": 0.7847734574762489, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.274253086, + "motion": 0, + "parent": null, + "position": { + "#": 1522 + }, + "positionImpulse": { + "#": 1523 + }, + "positionPrev": { + "#": 1524 + }, + "render": { + "#": 1525 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1527 + }, + "vertices": { + "#": 1528 + } + }, + [ + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + } + ], + { + "x": -0.9594978217257012, + "y": -0.28171604516540116 + }, + { + "x": -0.8412629145075053, + "y": -0.5406262190037935 + }, + { + "x": -0.6547919983802524, + "y": -0.7558091285881612 + }, + { + "x": -0.4154731207517202, + "y": -0.9096054561912139 + }, + { + "x": -0.14224602222342572, + "y": -0.9898313336935807 + }, + { + "x": 0.14224602222342572, + "y": -0.9898313336935807 + }, + { + "x": 0.4154731207517202, + "y": -0.9096054561912139 + }, + { + "x": 0.6547919983802524, + "y": -0.7558091285881612 + }, + { + "x": 0.8412629145075053, + "y": -0.5406262190037935 + }, + { + "x": 0.9594978217257012, + "y": -0.28171604516540116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1517 + }, + "min": { + "#": 1518 + } + }, + { + "x": 513.1940000000001, + "y": 228.334 + }, + { + "x": 473.052, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 493.12300000000005, + "y": 208.05700000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 493.12300000000005, + "y": 208.05700000000002 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1526 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 513.1940000000001, + "y": 210.943 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.56800000000004, + "y": 216.48100000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 508.44800000000004, + "y": 221.336 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 504.08600000000007, + "y": 225.115 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 498.83600000000007, + "y": 227.513 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 493.12300000000005, + "y": 228.334 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 487.41, + "y": 227.513 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 482.16, + "y": 225.115 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 477.79800000000006, + "y": 221.336 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 474.67800000000005, + "y": 216.48100000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.052, + "y": 210.943 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 473.052, + "y": 205.17100000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 474.67800000000005, + "y": 199.633 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 477.79800000000006, + "y": 194.77800000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 482.16, + "y": 190.99900000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 487.41, + "y": 188.60100000000003 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 493.12300000000005, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 498.83600000000007, + "y": 188.60100000000003 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 504.08600000000007, + "y": 190.99900000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 508.44800000000004, + "y": 194.77800000000002 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 511.56800000000004, + "y": 199.633 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 513.1940000000001, + "y": 205.17100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2780.0004800000006, + "axes": { + "#": 1552 + }, + "bounds": { + "#": 1566 + }, + "circleRadius": 29.892554012345677, + "collisionFilter": { + "#": 1569 + }, + "constraintImpulse": { + "#": 1570 + }, + "density": 0.001, + "force": { + "#": 1571 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 4920.147823896497, + "inverseInertia": 0.00020324592589335107, + "inverseMass": 0.35971216810725143, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.780000480000001, + "motion": 0, + "parent": null, + "position": { + "#": 1572 + }, + "positionImpulse": { + "#": 1573 + }, + "positionPrev": { + "#": 1574 + }, + "render": { + "#": 1575 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1577 + }, + "vertices": { + "#": 1578 + } + }, + [ + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + } + ], + { + "x": -0.9709290995295576, + "y": -0.23936725692275093 + }, + { + "x": -0.885456433914103, + "y": -0.4647223941667968 + }, + { + "x": -0.7484878127877156, + "y": -0.6631485460349451 + }, + { + "x": -0.5681414925182338, + "y": -0.822930886818057 + }, + { + "x": -0.3545580162719157, + "y": -0.9350340170803005 + }, + { + "x": -0.12058414899262154, + "y": -0.9927031091981757 + }, + { + "x": 0.12058414899262154, + "y": -0.9927031091981757 + }, + { + "x": 0.3545580162719157, + "y": -0.9350340170803005 + }, + { + "x": 0.5681414925182338, + "y": -0.822930886818057 + }, + { + "x": 0.7484878127877156, + "y": -0.6631485460349451 + }, + { + "x": 0.885456433914103, + "y": -0.4647223941667968 + }, + { + "x": 0.9709290995295576, + "y": -0.23936725692275093 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1567 + }, + "min": { + "#": 1568 + } + }, + { + "x": 582.544, + "y": 247.56600000000003 + }, + { + "x": 523.194, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 552.869, + "y": 217.67300000000003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 552.869, + "y": 217.67300000000003 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1576 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 582.544, + "y": 221.27600000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.8190000000001, + "y": 228.27300000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 577.47, + "y": 234.65400000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 572.691, + "y": 240.04800000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 566.7610000000001, + "y": 244.14200000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 560.023, + "y": 246.69700000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 552.869, + "y": 247.56600000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 545.715, + "y": 246.69700000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 538.9770000000001, + "y": 244.14200000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 533.047, + "y": 240.04800000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 528.268, + "y": 234.65400000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 524.9190000000001, + "y": 228.27300000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 523.194, + "y": 221.27600000000004 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 523.194, + "y": 214.07000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 524.9190000000001, + "y": 207.07300000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 528.268, + "y": 200.69200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 533.047, + "y": 195.29800000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 538.9770000000001, + "y": 191.20400000000004 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 545.715, + "y": 188.64900000000003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 552.869, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 560.023, + "y": 188.64900000000003 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 566.7610000000001, + "y": 191.20400000000004 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 572.691, + "y": 195.29800000000003 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 577.47, + "y": 200.69200000000004 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 580.8190000000001, + "y": 207.07300000000004 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 582.544, + "y": 214.07000000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2538.757968, + "axes": { + "#": 1606 + }, + "bounds": { + "#": 1620 + }, + "circleRadius": 28.566293724279834, + "collisionFilter": { + "#": 1623 + }, + "constraintImpulse": { + "#": 1624 + }, + "density": 0.001, + "force": { + "#": 1625 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 4103.278629848139, + "inverseInertia": 0.0002437075544238656, + "inverseMass": 0.3938933969305419, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.538757968, + "motion": 0, + "parent": null, + "position": { + "#": 1626 + }, + "positionImpulse": { + "#": 1627 + }, + "positionPrev": { + "#": 1628 + }, + "render": { + "#": 1629 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1631 + }, + "vertices": { + "#": 1632 + } + }, + [ + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + } + ], + { + "x": -0.9709484794471303, + "y": -0.23928863378628235 + }, + { + "x": -0.8854845432949032, + "y": -0.4646688321652492 + }, + { + "x": -0.7484419497782766, + "y": -0.6632003074577784 + }, + { + "x": -0.5680315134165672, + "y": -0.8230068042037588 + }, + { + "x": -0.3546060814505948, + "y": -0.9350157897053153 + }, + { + "x": -0.12053085900440433, + "y": -0.9927095809085659 + }, + { + "x": 0.12053085900440433, + "y": -0.9927095809085659 + }, + { + "x": 0.3546060814505948, + "y": -0.9350157897053153 + }, + { + "x": 0.5680315134165672, + "y": -0.8230068042037588 + }, + { + "x": 0.7484419497782766, + "y": -0.6632003074577784 + }, + { + "x": 0.8854845432949032, + "y": -0.4646688321652492 + }, + { + "x": 0.9709484794471303, + "y": -0.23928863378628235 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1621 + }, + "min": { + "#": 1622 + } + }, + { + "x": 649.2599999999999, + "y": 244.91200000000003 + }, + { + "x": 592.544, + "y": 187.78000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.9019999999999, + "y": 216.34600000000003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.9019999999999, + "y": 216.34600000000003 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1630 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 649.2599999999999, + "y": 219.78900000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 647.612, + "y": 226.47600000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 644.4119999999999, + "y": 232.57400000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 639.8449999999999, + "y": 237.72800000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 634.1769999999999, + "y": 241.64000000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 627.7379999999999, + "y": 244.08200000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 620.9019999999999, + "y": 244.91200000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 614.0659999999999, + "y": 244.08200000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 607.627, + "y": 241.64000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 601.959, + "y": 237.72800000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 597.3919999999999, + "y": 232.57400000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 594.1919999999999, + "y": 226.47600000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 592.544, + "y": 219.78900000000004 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 592.544, + "y": 212.90300000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 594.1919999999999, + "y": 206.21600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 597.3919999999999, + "y": 200.11800000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 601.959, + "y": 194.96400000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 607.627, + "y": 191.05200000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 614.0659999999999, + "y": 188.61000000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 620.9019999999999, + "y": 187.78000000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 627.7379999999999, + "y": 188.61000000000004 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 634.1769999999999, + "y": 191.05200000000002 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 639.8449999999999, + "y": 194.96400000000003 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 644.4119999999999, + "y": 200.11800000000002 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 647.612, + "y": 206.21600000000004 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 649.2599999999999, + "y": 212.90300000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1430.3752400000003, + "axes": { + "#": 1660 + }, + "bounds": { + "#": 1672 + }, + "circleRadius": 21.48386059670782, + "collisionFilter": { + "#": 1675 + }, + "constraintImpulse": { + "#": 1676 + }, + "density": 0.001, + "force": { + "#": 1677 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1302.5556894183874, + "inverseInertia": 0.0007677214940779358, + "inverseMass": 0.6991172470239346, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4303752400000003, + "motion": 0, + "parent": null, + "position": { + "#": 1678 + }, + "positionImpulse": { + "#": 1679 + }, + "positionPrev": { + "#": 1680 + }, + "render": { + "#": 1681 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1683 + }, + "vertices": { + "#": 1684 + } + }, + [ + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + } + ], + { + "x": -0.9594929851315711, + "y": -0.28173251761787593 + }, + { + "x": -0.8412422318463942, + "y": -0.5406584017270957 + }, + { + "x": -0.6548495904335815, + "y": -0.755759230118277 + }, + { + "x": -0.41553945773574935, + "y": -0.9095751530603061 + }, + { + "x": -0.14226837363223738, + "y": -0.9898281213746344 + }, + { + "x": 0.14226837363223738, + "y": -0.9898281213746344 + }, + { + "x": 0.41553945773574935, + "y": -0.9095751530603061 + }, + { + "x": 0.6548495904335815, + "y": -0.755759230118277 + }, + { + "x": 0.8412422318463942, + "y": -0.5406584017270957 + }, + { + "x": 0.9594929851315711, + "y": -0.28173251761787593 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1673 + }, + "min": { + "#": 1674 + } + }, + { + "x": 142.53, + "y": 300.534 + }, + { + "x": 100, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.265, + "y": 279.05 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.265, + "y": 279.05 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1682 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 142.53, + "y": 282.107 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.80700000000002, + "y": 287.975 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 137.501, + "y": 293.119 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 132.88, + "y": 297.123 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 127.318, + "y": 299.664 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 121.265, + "y": 300.534 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 115.212, + "y": 299.664 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 109.65, + "y": 297.123 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 105.029, + "y": 293.119 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 101.723, + "y": 287.975 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 282.107 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 275.99300000000005 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 101.723, + "y": 270.125 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 105.029, + "y": 264.981 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 109.65, + "y": 260.977 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 115.212, + "y": 258.43600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 121.265, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 127.318, + "y": 258.43600000000004 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 132.88, + "y": 260.977 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 137.501, + "y": 264.981 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.80700000000002, + "y": 270.125 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 142.53, + "y": 275.99300000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1228.8538520000002, + "axes": { + "#": 1708 + }, + "bounds": { + "#": 1719 + }, + "circleRadius": 19.941550925925924, + "collisionFilter": { + "#": 1722 + }, + "constraintImpulse": { + "#": 1723 + }, + "density": 0.001, + "force": { + "#": 1724 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 961.4005673522398, + "inverseInertia": 0.0010401491677439567, + "inverseMass": 0.8137664201259303, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2288538520000003, + "motion": 0, + "parent": null, + "position": { + "#": 1725 + }, + "positionImpulse": { + "#": 1726 + }, + "positionPrev": { + "#": 1727 + }, + "render": { + "#": 1728 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1730 + }, + "vertices": { + "#": 1731 + } + }, + [ + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + } + ], + { + "x": -0.9510446700932779, + "y": -0.3090534508578865 + }, + { + "x": -0.8090617057669508, + "y": -0.5877237074182664 + }, + { + "x": -0.5877237074182664, + "y": -0.8090617057669508 + }, + { + "x": -0.3090534508578865, + "y": -0.9510446700932779 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090534508578865, + "y": -0.9510446700932779 + }, + { + "x": 0.5877237074182664, + "y": -0.8090617057669508 + }, + { + "x": 0.8090617057669508, + "y": -0.5877237074182664 + }, + { + "x": 0.9510446700932779, + "y": -0.3090534508578865 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1720 + }, + "min": { + "#": 1721 + } + }, + { + "x": 191.922, + "y": 296.9580000000001 + }, + { + "x": 152.53, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 172.226, + "y": 277.26200000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 172.226, + "y": 277.26200000000006 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1729 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 191.922, + "y": 280.38200000000006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 189.994, + "y": 286.31500000000005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.327, + "y": 291.36300000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 181.279, + "y": 295.0300000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 175.346, + "y": 296.9580000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 169.106, + "y": 296.9580000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 163.173, + "y": 295.0300000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 158.125, + "y": 291.36300000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 154.458, + "y": 286.31500000000005 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 152.53, + "y": 280.38200000000006 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 152.53, + "y": 274.14200000000005 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 154.458, + "y": 268.20900000000006 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 158.125, + "y": 263.16100000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 163.173, + "y": 259.494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 169.106, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 175.346, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 181.279, + "y": 259.494 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 186.327, + "y": 263.16100000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 189.994, + "y": 268.20900000000006 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 191.922, + "y": 274.14200000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1002.7103840000001, + "axes": { + "#": 1753 + }, + "bounds": { + "#": 1764 + }, + "circleRadius": 18.01343878600823, + "collisionFilter": { + "#": 1767 + }, + "constraintImpulse": { + "#": 1768 + }, + "density": 0.001, + "force": { + "#": 1769 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 640.1104675474656, + "inverseInertia": 0.0015622303503822139, + "inverseMass": 0.9972969423242753, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.002710384, + "motion": 0, + "parent": null, + "position": { + "#": 1770 + }, + "positionImpulse": { + "#": 1771 + }, + "positionPrev": { + "#": 1772 + }, + "render": { + "#": 1773 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1775 + }, + "vertices": { + "#": 1776 + } + }, + [ + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + } + ], + { + "x": -0.9510340687309481, + "y": -0.30908607233755825 + }, + { + "x": -0.8089585484139196, + "y": -0.5878656878471851 + }, + { + "x": -0.5878656878471851, + "y": -0.8089585484139196 + }, + { + "x": -0.30908607233755825, + "y": -0.9510340687309481 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908607233755825, + "y": -0.9510340687309481 + }, + { + "x": 0.5878656878471851, + "y": -0.8089585484139196 + }, + { + "x": 0.8089585484139196, + "y": -0.5878656878471851 + }, + { + "x": 0.9510340687309481, + "y": -0.30908607233755825 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1765 + }, + "min": { + "#": 1766 + } + }, + { + "x": 237.506, + "y": 293.1500000000001 + }, + { + "x": 201.922, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.714, + "y": 275.35800000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.714, + "y": 275.35800000000006 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1774 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 237.506, + "y": 278.17600000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 235.764, + "y": 283.53600000000006 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 232.451, + "y": 288.0950000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 227.892, + "y": 291.4080000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 222.532, + "y": 293.1500000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 216.896, + "y": 293.1500000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.536, + "y": 291.4080000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 206.977, + "y": 288.0950000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 203.664, + "y": 283.53600000000006 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 201.922, + "y": 278.17600000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 201.922, + "y": 272.5400000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 203.664, + "y": 267.18000000000006 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 206.977, + "y": 262.6210000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 211.536, + "y": 259.30800000000005 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 216.896, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 222.532, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 227.892, + "y": 259.30800000000005 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 232.451, + "y": 262.6210000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 235.764, + "y": 267.18000000000006 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 237.506, + "y": 272.5400000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.6785539999998, + "axes": { + "#": 1798 + }, + "bounds": { + "#": 1812 + }, + "circleRadius": 24.21804269547325, + "collisionFilter": { + "#": 1815 + }, + "constraintImpulse": { + "#": 1816 + }, + "density": 0.001, + "force": { + "#": 1817 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 2119.6353057013616, + "inverseInertia": 0.00047177927132569257, + "inverseMass": 0.5480417346977817, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.824678554, + "motion": 0, + "parent": null, + "position": { + "#": 1818 + }, + "positionImpulse": { + "#": 1819 + }, + "positionPrev": { + "#": 1820 + }, + "render": { + "#": 1821 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1823 + }, + "vertices": { + "#": 1824 + } + }, + [ + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + } + ], + { + "x": -0.9709530792717644, + "y": -0.23926996855576949 + }, + { + "x": -0.8854490104782353, + "y": -0.46473653809778487 + }, + { + "x": -0.7485517419948672, + "y": -0.6630763828975134 + }, + { + "x": -0.5681051115017207, + "y": -0.8229560026426791 + }, + { + "x": -0.3545561271605673, + "y": -0.9350347334152351 + }, + { + "x": -0.12057688237798207, + "y": -0.9927039918505447 + }, + { + "x": 0.12057688237798207, + "y": -0.9927039918505447 + }, + { + "x": 0.3545561271605673, + "y": -0.9350347334152351 + }, + { + "x": 0.5681051115017207, + "y": -0.8229560026426791 + }, + { + "x": 0.7485517419948672, + "y": -0.6630763828975134 + }, + { + "x": 0.8854490104782353, + "y": -0.46473653809778487 + }, + { + "x": 0.9709530792717644, + "y": -0.23926996855576949 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1813 + }, + "min": { + "#": 1814 + } + }, + { + "x": 295.5880000000001, + "y": 306.00200000000007 + }, + { + "x": 247.50600000000003, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.547, + "y": 281.78400000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.547, + "y": 281.78400000000005 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1822 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 295.5880000000001, + "y": 284.70300000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 294.19100000000003, + "y": 290.37200000000007 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 291.47800000000007, + "y": 295.54100000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 287.60699999999997, + "y": 299.91100000000006 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 282.802, + "y": 303.22800000000007 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 277.343, + "y": 305.29800000000006 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 271.547, + "y": 306.00200000000007 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 265.75100000000003, + "y": 305.29800000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 260.29200000000003, + "y": 303.22800000000007 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.48700000000002, + "y": 299.91100000000006 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 251.616, + "y": 295.54100000000005 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 248.90300000000002, + "y": 290.37200000000007 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 247.50600000000003, + "y": 284.70300000000003 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 247.50600000000003, + "y": 278.865 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 248.90300000000002, + "y": 273.196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 251.616, + "y": 268.02700000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 255.48700000000002, + "y": 263.65700000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 260.29200000000003, + "y": 260.34000000000003 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 265.75100000000003, + "y": 258.27000000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 271.547, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 277.343, + "y": 258.27000000000004 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 282.802, + "y": 260.34000000000003 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 287.60699999999997, + "y": 263.65700000000004 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 291.47800000000007, + "y": 268.02700000000004 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 294.19100000000003, + "y": 273.196 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 295.5880000000001, + "y": 278.865 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2471.436928, + "axes": { + "#": 1852 + }, + "bounds": { + "#": 1866 + }, + "circleRadius": 28.184992283950617, + "collisionFilter": { + "#": 1869 + }, + "constraintImpulse": { + "#": 1870 + }, + "density": 0.001, + "force": { + "#": 1871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 3888.548074751447, + "inverseInertia": 0.0002571653945834061, + "inverseMass": 0.4046229093166645, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.471436928, + "motion": 0, + "parent": null, + "position": { + "#": 1872 + }, + "positionImpulse": { + "#": 1873 + }, + "positionPrev": { + "#": 1874 + }, + "render": { + "#": 1875 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1877 + }, + "vertices": { + "#": 1878 + } + }, + [ + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + } + ], + { + "x": -0.970950739329147, + "y": -0.23927946379951362 + }, + { + "x": -0.8854826960522498, + "y": -0.4646723523000254 + }, + { + "x": -0.7484963444830224, + "y": -0.6631389162879469 + }, + { + "x": -0.5680768171903559, + "y": -0.8229755341265468 + }, + { + "x": -0.3545566221665471, + "y": -0.9350345457136052 + }, + { + "x": -0.12053794545125669, + "y": -0.9927087204746365 + }, + { + "x": 0.12053794545125669, + "y": -0.9927087204746365 + }, + { + "x": 0.3545566221665471, + "y": -0.9350345457136052 + }, + { + "x": 0.5680768171903559, + "y": -0.8229755341265468 + }, + { + "x": 0.7484963444830224, + "y": -0.6631389162879469 + }, + { + "x": 0.8854826960522498, + "y": -0.4646723523000254 + }, + { + "x": 0.970950739329147, + "y": -0.23927946379951362 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1867 + }, + "min": { + "#": 1868 + } + }, + { + "x": 361.54600000000005, + "y": 313.93600000000004 + }, + { + "x": 305.5880000000001, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.56700000000006, + "y": 285.75100000000003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.56700000000006, + "y": 285.75100000000003 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1876 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 361.54600000000005, + "y": 289.148 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 359.9200000000001, + "y": 295.74600000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 356.7630000000001, + "y": 301.76200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 352.25700000000006, + "y": 306.848 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 346.6650000000001, + "y": 310.708 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 340.31200000000007, + "y": 313.117 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 333.56700000000006, + "y": 313.93600000000004 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 326.82200000000006, + "y": 313.117 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.46900000000005, + "y": 310.708 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 314.87700000000007, + "y": 306.848 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 310.37100000000004, + "y": 301.76200000000006 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 307.21400000000006, + "y": 295.74600000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.5880000000001, + "y": 289.148 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 305.5880000000001, + "y": 282.35400000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 307.21400000000006, + "y": 275.75600000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 310.37100000000004, + "y": 269.74 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 314.87700000000007, + "y": 264.654 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.46900000000005, + "y": 260.79400000000004 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 326.82200000000006, + "y": 258.38500000000005 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 333.56700000000006, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 340.31200000000007, + "y": 258.38500000000005 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 346.6650000000001, + "y": 260.79400000000004 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 352.25700000000006, + "y": 264.654 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 356.7630000000001, + "y": 269.74 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 359.9200000000001, + "y": 275.75600000000003 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 361.54600000000005, + "y": 282.35400000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1547.5474520000005, + "axes": { + "#": 1906 + }, + "bounds": { + "#": 1919 + }, + "circleRadius": 22.321694958847736, + "collisionFilter": { + "#": 1922 + }, + "constraintImpulse": { + "#": 1923 + }, + "density": 0.001, + "force": { + "#": 1924 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1524.6827933599404, + "inverseInertia": 0.0006558741295927541, + "inverseMass": 0.646183739766837, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.5475474520000005, + "motion": 0, + "parent": null, + "position": { + "#": 1925 + }, + "positionImpulse": { + "#": 1926 + }, + "positionPrev": { + "#": 1927 + }, + "render": { + "#": 1928 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1930 + }, + "vertices": { + "#": 1931 + } + }, + [ + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + } + ], + { + "x": -0.9659266009741097, + "y": -0.2588161539212787 + }, + { + "x": -0.8660169934454096, + "y": -0.5000145668515801 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.5000145668515801, + "y": -0.8660169934454096 + }, + { + "x": -0.2588161539212787, + "y": -0.9659266009741097 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588161539212787, + "y": -0.9659266009741097 + }, + { + "x": 0.5000145668515801, + "y": -0.8660169934454096 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660169934454096, + "y": -0.5000145668515801 + }, + { + "x": 0.9659266009741097, + "y": -0.2588161539212787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1920 + }, + "min": { + "#": 1921 + } + }, + { + "x": 415.808, + "y": 301.828 + }, + { + "x": 371.54600000000005, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.677, + "y": 279.697 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.677, + "y": 279.697 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1929 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 415.808, + "y": 282.611 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.3, + "y": 288.239 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 411.386, + "y": 293.286 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 407.266, + "y": 297.406 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.219, + "y": 300.32 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 396.591, + "y": 301.828 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 390.76300000000003, + "y": 301.828 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 385.13500000000005, + "y": 300.32 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 380.088, + "y": 297.406 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 375.968, + "y": 293.286 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 373.05400000000003, + "y": 288.239 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 371.54600000000005, + "y": 282.611 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 371.54600000000005, + "y": 276.783 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 373.05400000000003, + "y": 271.155 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 375.968, + "y": 266.108 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 380.088, + "y": 261.988 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 385.13500000000005, + "y": 259.074 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 390.76300000000003, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 396.591, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 402.219, + "y": 259.074 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 407.266, + "y": 261.988 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 411.386, + "y": 266.108 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 414.3, + "y": 271.155 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 415.808, + "y": 276.783 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1055.306792, + "axes": { + "#": 1957 + }, + "bounds": { + "#": 1968 + }, + "circleRadius": 18.48000257201646, + "collisionFilter": { + "#": 1971 + }, + "constraintImpulse": { + "#": 1972 + }, + "density": 0.001, + "force": { + "#": 1973 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 709.0247094978657, + "inverseInertia": 0.0014103880818317378, + "inverseMass": 0.9475917406963869, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.055306792, + "motion": 0, + "parent": null, + "position": { + "#": 1974 + }, + "positionImpulse": { + "#": 1975 + }, + "positionPrev": { + "#": 1976 + }, + "render": { + "#": 1977 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1979 + }, + "vertices": { + "#": 1980 + } + }, + [ + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + } + ], + { + "x": -0.9510937892878595, + "y": -0.30890225634990265 + }, + { + "x": -0.8089379801350923, + "y": -0.5878939906947145 + }, + { + "x": -0.5878939906947145, + "y": -0.8089379801350923 + }, + { + "x": -0.30890225634990265, + "y": -0.9510937892878595 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30890225634990265, + "y": -0.9510937892878595 + }, + { + "x": 0.5878939906947145, + "y": -0.8089379801350923 + }, + { + "x": 0.8089379801350923, + "y": -0.5878939906947145 + }, + { + "x": 0.9510937892878595, + "y": -0.30890225634990265 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1969 + }, + "min": { + "#": 1970 + } + }, + { + "x": 462.312, + "y": 294.07000000000005 + }, + { + "x": 425.808, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 444.06, + "y": 275.81800000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 444.06, + "y": 275.81800000000004 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1978 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 462.312, + "y": 278.70900000000006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460.526, + "y": 284.208 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.127, + "y": 288.88500000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.45, + "y": 292.28400000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.951, + "y": 294.07000000000005 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 441.169, + "y": 294.07000000000005 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 435.67, + "y": 292.28400000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.993, + "y": 288.88500000000005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 427.594, + "y": 284.208 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 425.808, + "y": 278.70900000000006 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 425.808, + "y": 272.927 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 427.594, + "y": 267.42800000000005 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 430.993, + "y": 262.75100000000003 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 435.67, + "y": 259.35200000000003 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 441.169, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.951, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.45, + "y": 259.35200000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.127, + "y": 262.75100000000003 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 460.526, + "y": 267.42800000000005 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 462.312, + "y": 272.927 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2730.0490020000007, + "axes": { + "#": 2002 + }, + "bounds": { + "#": 2016 + }, + "circleRadius": 29.622878086419753, + "collisionFilter": { + "#": 2019 + }, + "constraintImpulse": { + "#": 2020 + }, + "density": 0.001, + "force": { + "#": 2021 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 4744.924363381941, + "inverseInertia": 0.000210751515391333, + "inverseMass": 0.36629379152806857, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.730049002000001, + "motion": 0, + "parent": null, + "position": { + "#": 2022 + }, + "positionImpulse": { + "#": 2023 + }, + "positionPrev": { + "#": 2024 + }, + "render": { + "#": 2025 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2027 + }, + "vertices": { + "#": 2028 + } + }, + [ + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + } + ], + { + "x": -0.9709363184970072, + "y": -0.23933797321670056 + }, + { + "x": -0.8854612825518478, + "y": -0.46471315572257776 + }, + { + "x": -0.7485285981139811, + "y": -0.6631025092740324 + }, + { + "x": -0.5680372022951283, + "y": -0.8230028777645456 + }, + { + "x": -0.354574024436084, + "y": -0.9350279467455501 + }, + { + "x": -0.12056973958972958, + "y": -0.992704859409515 + }, + { + "x": 0.12056973958972958, + "y": -0.992704859409515 + }, + { + "x": 0.354574024436084, + "y": -0.9350279467455501 + }, + { + "x": 0.5680372022951283, + "y": -0.8230028777645456 + }, + { + "x": 0.7485285981139811, + "y": -0.6631025092740324 + }, + { + "x": 0.8854612825518478, + "y": -0.46471315572257776 + }, + { + "x": 0.9709363184970072, + "y": -0.23933797321670056 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2017 + }, + "min": { + "#": 2018 + } + }, + { + "x": 531.126, + "y": 316.812 + }, + { + "x": 472.312, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 501.719, + "y": 287.189 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 501.719, + "y": 287.189 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2026 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 531.126, + "y": 290.76000000000005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 529.4169999999999, + "y": 297.69300000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 526.098, + "y": 304.017 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 521.363, + "y": 309.362 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 515.485, + "y": 313.41900000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 508.808, + "y": 315.951 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 501.719, + "y": 316.812 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 494.63, + "y": 315.951 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 487.953, + "y": 313.41900000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 482.075, + "y": 309.362 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 477.34, + "y": 304.017 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.021, + "y": 297.69300000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 472.312, + "y": 290.76000000000005 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 472.312, + "y": 283.61800000000005 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.021, + "y": 276.68500000000006 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 477.34, + "y": 270.361 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 482.075, + "y": 265.016 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 487.953, + "y": 260.95900000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.63, + "y": 258.427 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 501.719, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 508.808, + "y": 258.427 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 515.485, + "y": 260.95900000000006 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 521.363, + "y": 265.016 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 526.098, + "y": 270.361 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 529.4169999999999, + "y": 276.68500000000006 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 531.126, + "y": 283.61800000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 837.1561759999998, + "axes": { + "#": 2056 + }, + "bounds": { + "#": 2066 + }, + "circleRadius": 16.491062242798353, + "collisionFilter": { + "#": 2069 + }, + "constraintImpulse": { + "#": 2070 + }, + "density": 0.001, + "force": { + "#": 2071 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 446.1998710095896, + "inverseInertia": 0.0022411481153890972, + "inverseMass": 1.1945202444519745, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8371561759999999, + "motion": 0, + "parent": null, + "position": { + "#": 2072 + }, + "positionImpulse": { + "#": 2073 + }, + "positionPrev": { + "#": 2074 + }, + "render": { + "#": 2075 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2077 + }, + "vertices": { + "#": 2078 + } + }, + [ + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + } + ], + { + "x": -0.9396863246024094, + "y": -0.34203744145227044 + }, + { + "x": -0.7659696479015781, + "y": -0.64287673662494 + }, + { + "x": -0.5000448704318415, + "y": -0.8659994962786081 + }, + { + "x": -0.17356618334402651, + "y": -0.9848222073041345 + }, + { + "x": 0.17356618334402651, + "y": -0.9848222073041345 + }, + { + "x": 0.5000448704318415, + "y": -0.8659994962786081 + }, + { + "x": 0.7659696479015781, + "y": -0.64287673662494 + }, + { + "x": 0.9396863246024094, + "y": -0.34203744145227044 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2067 + }, + "min": { + "#": 2068 + } + }, + { + "x": 573.608, + "y": 290.548 + }, + { + "x": 541.126, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.367, + "y": 274.057 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.367, + "y": 274.057 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2076 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 573.608, + "y": 276.921 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 571.649, + "y": 282.303 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.967, + "y": 286.69 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 563.007, + "y": 289.55400000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 557.367, + "y": 290.548 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 551.727, + "y": 289.55400000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.7669999999999, + "y": 286.69 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 543.0849999999999, + "y": 282.303 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 541.126, + "y": 276.921 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 541.126, + "y": 271.193 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 543.0849999999999, + "y": 265.81100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 546.7669999999999, + "y": 261.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 551.727, + "y": 258.56 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 557.367, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 563.007, + "y": 258.56 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 567.967, + "y": 261.424 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 571.649, + "y": 265.81100000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 573.608, + "y": 271.193 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1832.5456639999998, + "axes": { + "#": 2098 + }, + "bounds": { + "#": 2112 + }, + "circleRadius": 24.269740226337447, + "collisionFilter": { + "#": 2115 + }, + "constraintImpulse": { + "#": 2116 + }, + "density": 0.001, + "force": { + "#": 2117 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 2137.952342345815, + "inverseInertia": 0.0004677372737423955, + "inverseMass": 0.5456889940833693, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8325456639999997, + "motion": 0, + "parent": null, + "position": { + "#": 2118 + }, + "positionImpulse": { + "#": 2119 + }, + "positionPrev": { + "#": 2120 + }, + "render": { + "#": 2121 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2123 + }, + "vertices": { + "#": 2124 + } + }, + [ + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + } + ], + { + "x": -0.970951377249592, + "y": -0.23927687522433155 + }, + { + "x": -0.8854699897202892, + "y": -0.4646965647653864 + }, + { + "x": -0.7484645502186983, + "y": -0.6631748012899176 + }, + { + "x": -0.568116313280717, + "y": -0.8229482696891259 + }, + { + "x": -0.354623322192599, + "y": -0.9350092509473285 + }, + { + "x": -0.12049981262239128, + "y": -0.9927133499444684 + }, + { + "x": 0.12049981262239128, + "y": -0.9927133499444684 + }, + { + "x": 0.354623322192599, + "y": -0.9350092509473285 + }, + { + "x": 0.568116313280717, + "y": -0.8229482696891259 + }, + { + "x": 0.7484645502186983, + "y": -0.6631748012899176 + }, + { + "x": 0.8854699897202892, + "y": -0.4646965647653864 + }, + { + "x": 0.970951377249592, + "y": -0.23927687522433155 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2113 + }, + "min": { + "#": 2114 + } + }, + { + "x": 631.7939999999999, + "y": 306.106 + }, + { + "x": 583.608, + "y": 257.56600000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 607.7009999999999, + "y": 281.836 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 607.7009999999999, + "y": 281.836 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2122 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.7939999999999, + "y": 284.761 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630.3939999999999, + "y": 290.442 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 627.675, + "y": 295.623 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.795, + "y": 300.002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 618.9799999999999, + "y": 303.326 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 613.5089999999999, + "y": 305.401 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 607.7009999999999, + "y": 306.106 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 601.8929999999999, + "y": 305.401 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4219999999999, + "y": 303.326 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 591.6069999999999, + "y": 300.002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 587.7269999999999, + "y": 295.623 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 585.0079999999999, + "y": 290.442 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 583.608, + "y": 284.761 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 583.608, + "y": 278.911 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 585.0079999999999, + "y": 273.23 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 587.7269999999999, + "y": 268.049 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 591.6069999999999, + "y": 263.67 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 596.4219999999999, + "y": 260.346 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 601.8929999999999, + "y": 258.271 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 607.7009999999999, + "y": 257.56600000000003 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 613.5089999999999, + "y": 258.271 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 618.9799999999999, + "y": 260.346 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 623.795, + "y": 263.67 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 627.675, + "y": 268.049 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 630.3939999999999, + "y": 273.23 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 631.7939999999999, + "y": 278.911 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2662.7031859999993, + "axes": { + "#": 2152 + }, + "bounds": { + "#": 2166 + }, + "circleRadius": 29.255208333333336, + "collisionFilter": { + "#": 2169 + }, + "constraintImpulse": { + "#": 2170 + }, + "density": 0.001, + "force": { + "#": 2171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 4513.71283136672, + "inverseInertia": 0.00022154710265367218, + "inverseMass": 0.3755581941155946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6627031859999994, + "motion": 0, + "parent": null, + "position": { + "#": 2172 + }, + "positionImpulse": { + "#": 2173 + }, + "positionPrev": { + "#": 2174 + }, + "render": { + "#": 2175 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2177 + }, + "vertices": { + "#": 2178 + } + }, + [ + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + }, + { + "#": 2165 + } + ], + { + "x": -0.9709378772487557, + "y": -0.23933164964893425 + }, + { + "x": -0.8854927136371952, + "y": -0.4646532622240331 + }, + { + "x": -0.7484956802859418, + "y": -0.6631396659779034 + }, + { + "x": -0.568044391747725, + "y": -0.8229979155526198 + }, + { + "x": -0.3545858497834421, + "y": -0.9350234623437822 + }, + { + "x": -0.12052615754469004, + "y": -0.9927101517298554 + }, + { + "x": 0.12052615754469004, + "y": -0.9927101517298554 + }, + { + "x": 0.3545858497834421, + "y": -0.9350234623437822 + }, + { + "x": 0.568044391747725, + "y": -0.8229979155526198 + }, + { + "x": 0.7484956802859418, + "y": -0.6631396659779034 + }, + { + "x": 0.8854927136371952, + "y": -0.4646532622240331 + }, + { + "x": 0.9709378772487557, + "y": -0.23933164964893425 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2167 + }, + "min": { + "#": 2168 + } + }, + { + "x": 158.084, + "y": 385.322 + }, + { + "x": 100, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.042, + "y": 356.067 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.042, + "y": 356.067 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2176 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.084, + "y": 359.593 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.39600000000002, + "y": 366.44100000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 153.119, + "y": 372.68600000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 148.442, + "y": 377.96500000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 142.638, + "y": 381.971 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 136.043, + "y": 384.472 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 129.042, + "y": 385.322 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 122.041, + "y": 384.472 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 115.446, + "y": 381.971 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 109.642, + "y": 377.96500000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.965, + "y": 372.68600000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.688, + "y": 366.44100000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 359.593 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 352.541 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.688, + "y": 345.693 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.965, + "y": 339.448 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 109.642, + "y": 334.169 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 115.446, + "y": 330.163 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 122.041, + "y": 327.66200000000003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 129.042, + "y": 326.812 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 136.043, + "y": 327.66200000000003 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 142.638, + "y": 330.163 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 148.442, + "y": 334.169 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 153.119, + "y": 339.448 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 156.39600000000002, + "y": 345.693 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 158.084, + "y": 352.541 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1305.135712, + "axes": { + "#": 2206 + }, + "bounds": { + "#": 2218 + }, + "circleRadius": 20.521540637860085, + "collisionFilter": { + "#": 2221 + }, + "constraintImpulse": { + "#": 2222 + }, + "density": 0.001, + "force": { + "#": 2223 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1084.445370223285, + "inverseInertia": 0.0009221303603279731, + "inverseMass": 0.7662038444014319, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.305135712, + "motion": 0, + "parent": null, + "position": { + "#": 2224 + }, + "positionImpulse": { + "#": 2225 + }, + "positionPrev": { + "#": 2226 + }, + "render": { + "#": 2227 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2229 + }, + "vertices": { + "#": 2230 + } + }, + [ + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + } + ], + { + "x": -0.9594690362006828, + "y": -0.2818140673780016 + }, + { + "x": -0.8412563391286896, + "y": -0.5406364507465208 + }, + { + "x": -0.654884909729583, + "y": -0.7557286252408836 + }, + { + "x": -0.41536319054833765, + "y": -0.9096556600920512 + }, + { + "x": -0.14242786467425667, + "y": -0.9898051845511477 + }, + { + "x": 0.14242786467425667, + "y": -0.9898051845511477 + }, + { + "x": 0.41536319054833765, + "y": -0.9096556600920512 + }, + { + "x": 0.654884909729583, + "y": -0.7557286252408836 + }, + { + "x": 0.8412563391286896, + "y": -0.5406364507465208 + }, + { + "x": 0.9594690362006828, + "y": -0.2818140673780016 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2219 + }, + "min": { + "#": 2220 + } + }, + { + "x": 208.70999999999998, + "y": 367.856 + }, + { + "x": 168.084, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 188.397, + "y": 347.334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 188.397, + "y": 347.334 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2228 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 208.70999999999998, + "y": 350.255 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 207.064, + "y": 355.859 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 203.906, + "y": 360.773 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 199.492, + "y": 364.598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 194.179, + "y": 367.024 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 188.397, + "y": 367.856 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 182.61499999999998, + "y": 367.024 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 177.302, + "y": 364.598 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 172.88799999999998, + "y": 360.773 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 169.73, + "y": 355.859 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 168.084, + "y": 350.255 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 168.084, + "y": 344.413 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 169.73, + "y": 338.809 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 172.88799999999998, + "y": 333.895 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 177.302, + "y": 330.07 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.61499999999998, + "y": 327.644 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.397, + "y": 326.812 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 194.179, + "y": 327.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 199.492, + "y": 330.07 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 203.906, + "y": 333.895 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 207.064, + "y": 338.809 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 208.70999999999998, + "y": 344.413 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 846.9227020000002, + "axes": { + "#": 2254 + }, + "bounds": { + "#": 2264 + }, + "circleRadius": 16.587255658436213, + "collisionFilter": { + "#": 2267 + }, + "constraintImpulse": { + "#": 2268 + }, + "density": 0.001, + "force": { + "#": 2269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 456.671614806992, + "inverseInertia": 0.002189757295124727, + "inverseMass": 1.180745300177347, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8469227020000002, + "motion": 0, + "parent": null, + "position": { + "#": 2270 + }, + "positionImpulse": { + "#": 2271 + }, + "positionPrev": { + "#": 2272 + }, + "render": { + "#": 2273 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2275 + }, + "vertices": { + "#": 2276 + } + }, + [ + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + } + ], + { + "x": -0.9397224538209651, + "y": -0.34193816661014065 + }, + { + "x": -0.7660398849238614, + "y": -0.6427930418928298 + }, + { + "x": -0.49994785700763544, + "y": -0.8660555064621855 + }, + { + "x": -0.17359717004583367, + "y": -0.9848167456700144 + }, + { + "x": 0.17359717004583367, + "y": -0.9848167456700144 + }, + { + "x": 0.49994785700763544, + "y": -0.8660555064621855 + }, + { + "x": 0.7660398849238614, + "y": -0.6427930418928298 + }, + { + "x": 0.9397224538209651, + "y": -0.34193816661014065 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2265 + }, + "min": { + "#": 2266 + } + }, + { + "x": 251.38, + "y": 359.986 + }, + { + "x": 218.70999999999998, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.045, + "y": 343.399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.045, + "y": 343.399 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2274 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2277 + }, + { + "#": 2278 + }, + { + "#": 2279 + }, + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.38, + "y": 346.279 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.41, + "y": 351.693 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 245.707, + "y": 356.106 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240.718, + "y": 358.986 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 235.045, + "y": 359.986 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 229.37199999999999, + "y": 358.986 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 224.38299999999998, + "y": 356.106 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 220.67999999999998, + "y": 351.693 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 218.70999999999998, + "y": 346.279 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 218.70999999999998, + "y": 340.519 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 220.67999999999998, + "y": 335.105 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 224.38299999999998, + "y": 330.692 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 229.37199999999999, + "y": 327.812 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 235.045, + "y": 326.812 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 240.718, + "y": 327.812 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 245.707, + "y": 330.692 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 249.41, + "y": 335.105 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 251.38, + "y": 340.519 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 898.1826519999998, + "axes": { + "#": 2296 + }, + "bounds": { + "#": 2306 + }, + "circleRadius": 17.081983024691358, + "collisionFilter": { + "#": 2309 + }, + "constraintImpulse": { + "#": 2310 + }, + "density": 0.001, + "force": { + "#": 2311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 513.6245747933785, + "inverseInertia": 0.0019469473406763707, + "inverseMass": 1.113359290310586, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8981826519999999, + "motion": 0, + "parent": null, + "position": { + "#": 2312 + }, + "positionImpulse": { + "#": 2313 + }, + "positionPrev": { + "#": 2314 + }, + "render": { + "#": 2315 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2317 + }, + "vertices": { + "#": 2318 + } + }, + [ + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + } + ], + { + "x": -0.9396998827734749, + "y": -0.3420001905197095 + }, + { + "x": -0.7661031888474107, + "y": -0.6427175927558143 + }, + { + "x": -0.4999461844763897, + "y": -0.8660564719621346 + }, + { + "x": -0.17363146536903049, + "y": -0.9848106996950241 + }, + { + "x": 0.17363146536903049, + "y": -0.9848106996950241 + }, + { + "x": 0.4999461844763897, + "y": -0.8660564719621346 + }, + { + "x": 0.7661031888474107, + "y": -0.6427175927558143 + }, + { + "x": 0.9396998827734749, + "y": -0.3420001905197095 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2307 + }, + "min": { + "#": 2308 + } + }, + { + "x": 295.024, + "y": 360.976 + }, + { + "x": 261.38, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 278.202, + "y": 343.894 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 278.202, + "y": 343.894 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2316 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 295.024, + "y": 346.86 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 292.995, + "y": 352.435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 289.182, + "y": 356.98 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 284.044, + "y": 359.946 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 278.202, + "y": 360.976 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 272.36, + "y": 359.946 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 267.222, + "y": 356.98 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 263.409, + "y": 352.435 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 261.38, + "y": 346.86 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 261.38, + "y": 340.928 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 263.409, + "y": 335.353 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 267.222, + "y": 330.808 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 272.36, + "y": 327.842 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 278.202, + "y": 326.812 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 284.044, + "y": 327.842 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 289.182, + "y": 330.808 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 292.995, + "y": 335.353 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 295.024, + "y": 340.928 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1854.22627, + "axes": { + "#": 2338 + }, + "bounds": { + "#": 2352 + }, + "circleRadius": 24.41313014403292, + "collisionFilter": { + "#": 2355 + }, + "constraintImpulse": { + "#": 2356 + }, + "density": 0.001, + "force": { + "#": 2357 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 2188.839254784345, + "inverseInertia": 0.00045686315146907617, + "inverseMass": 0.5393085062914139, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.85422627, + "motion": 0, + "parent": null, + "position": { + "#": 2358 + }, + "positionImpulse": { + "#": 2359 + }, + "positionPrev": { + "#": 2360 + }, + "render": { + "#": 2361 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2363 + }, + "vertices": { + "#": 2364 + } + }, + [ + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + } + ], + { + "x": -0.9709566027946952, + "y": -0.2392556697120981 + }, + { + "x": -0.8854520946598297, + "y": -0.46473066184890355 + }, + { + "x": -0.7484676895553821, + "y": -0.6631712581917494 + }, + { + "x": -0.5681140193004913, + "y": -0.8229498533168597 + }, + { + "x": -0.35460301319631593, + "y": -0.9350169533393997 + }, + { + "x": -0.120478534099192, + "y": -0.9927159325916501 + }, + { + "x": 0.120478534099192, + "y": -0.9927159325916501 + }, + { + "x": 0.35460301319631593, + "y": -0.9350169533393997 + }, + { + "x": 0.5681140193004913, + "y": -0.8229498533168597 + }, + { + "x": 0.7484676895553821, + "y": -0.6631712581917494 + }, + { + "x": 0.8854520946598297, + "y": -0.46473066184890355 + }, + { + "x": 0.9709566027946952, + "y": -0.2392556697120981 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2353 + }, + "min": { + "#": 2354 + } + }, + { + "x": 353.494, + "y": 375.63800000000003 + }, + { + "x": 305.024, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 329.259, + "y": 351.225 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 329.259, + "y": 351.225 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2362 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.494, + "y": 354.168 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.086, + "y": 359.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.351, + "y": 365.093 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 345.44800000000004, + "y": 369.49800000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 340.60400000000004, + "y": 372.84200000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 335.101, + "y": 374.92900000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 329.259, + "y": 375.63800000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.41700000000003, + "y": 374.92900000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 317.914, + "y": 372.84200000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 313.07, + "y": 369.49800000000005 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 309.16700000000003, + "y": 365.093 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 306.432, + "y": 359.882 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.024, + "y": 354.168 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 305.024, + "y": 348.28200000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.432, + "y": 342.56800000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 309.16700000000003, + "y": 337.357 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 313.07, + "y": 332.952 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 317.914, + "y": 329.608 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 323.41700000000003, + "y": 327.521 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 329.259, + "y": 326.812 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 335.101, + "y": 327.521 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 340.60400000000004, + "y": 329.608 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 345.44800000000004, + "y": 332.952 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 349.351, + "y": 337.357 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 352.086, + "y": 342.56800000000004 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 353.494, + "y": 348.28200000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 729.1471280000001, + "axes": { + "#": 2392 + }, + "bounds": { + "#": 2401 + }, + "circleRadius": 15.432548868312757, + "collisionFilter": { + "#": 2404 + }, + "constraintImpulse": { + "#": 2405 + }, + "density": 0.001, + "force": { + "#": 2406 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 338.50797726007636, + "inverseInertia": 0.0029541401301503094, + "inverseMass": 1.3714653210565755, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.729147128, + "motion": 0, + "parent": null, + "position": { + "#": 2407 + }, + "positionImpulse": { + "#": 2408 + }, + "positionPrev": { + "#": 2409 + }, + "render": { + "#": 2410 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2412 + }, + "vertices": { + "#": 2413 + } + }, + [ + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + } + ], + { + "x": -0.9238953882746169, + "y": -0.3826451509230121 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3826451509230121, + "y": -0.9238953882746169 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826451509230121, + "y": -0.9238953882746169 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238953882746169, + "y": -0.3826451509230121 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2402 + }, + "min": { + "#": 2403 + } + }, + { + "x": 393.7660000000001, + "y": 357.08400000000006 + }, + { + "x": 363.494, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.63000000000005, + "y": 341.94800000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.63000000000005, + "y": 341.94800000000004 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2411 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 393.7660000000001, + "y": 344.95900000000006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 391.46200000000005, + "y": 350.52200000000005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 387.20400000000006, + "y": 354.78000000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 381.6410000000001, + "y": 357.08400000000006 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 375.619, + "y": 357.08400000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370.05600000000004, + "y": 354.78000000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 365.79800000000006, + "y": 350.52200000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 363.494, + "y": 344.95900000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 363.494, + "y": 338.937 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 365.79800000000006, + "y": 333.374 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 370.05600000000004, + "y": 329.11600000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.619, + "y": 326.812 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 381.6410000000001, + "y": 326.812 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 387.20400000000006, + "y": 329.11600000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 391.46200000000005, + "y": 333.374 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 393.7660000000001, + "y": 338.937 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2457.1139139999996, + "axes": { + "#": 2431 + }, + "bounds": { + "#": 2445 + }, + "circleRadius": 28.10320216049383, + "collisionFilter": { + "#": 2448 + }, + "constraintImpulse": { + "#": 2449 + }, + "density": 0.001, + "force": { + "#": 2450 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 3843.6071437918877, + "inverseInertia": 0.0002601722711477365, + "inverseMass": 0.4069815380973013, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.457113914, + "motion": 0, + "parent": null, + "position": { + "#": 2451 + }, + "positionImpulse": { + "#": 2452 + }, + "positionPrev": { + "#": 2453 + }, + "render": { + "#": 2454 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2456 + }, + "vertices": { + "#": 2457 + } + }, + [ + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + } + ], + { + "x": -0.9709616307279268, + "y": -0.2392352642362013 + }, + { + "x": -0.8853948651753996, + "y": -0.4648396849678782 + }, + { + "x": -0.7486132968273784, + "y": -0.6630068867012192 + }, + { + "x": -0.5679812762543772, + "y": -0.8230414751544717 + }, + { + "x": -0.35471208146034855, + "y": -0.9349755821763834 + }, + { + "x": -0.12043715406212079, + "y": -0.9927209537032132 + }, + { + "x": 0.12043715406212079, + "y": -0.9927209537032132 + }, + { + "x": 0.35471208146034855, + "y": -0.9349755821763834 + }, + { + "x": 0.5679812762543772, + "y": -0.8230414751544717 + }, + { + "x": 0.7486132968273784, + "y": -0.6630068867012192 + }, + { + "x": 0.8853948651753996, + "y": -0.4648396849678782 + }, + { + "x": 0.9709616307279268, + "y": -0.2392352642362013 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2446 + }, + "min": { + "#": 2447 + } + }, + { + "x": 459.5620000000001, + "y": 383.01800000000003 + }, + { + "x": 403.7660000000001, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 431.6640000000001, + "y": 354.915 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 431.6640000000001, + "y": 354.915 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2455 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + }, + { + "#": 2465 + }, + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 459.5620000000001, + "y": 358.302 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 457.9410000000001, + "y": 364.88100000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 454.7920000000001, + "y": 370.879 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450.3000000000001, + "y": 375.951 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 444.7240000000001, + "y": 379.79900000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 438.3900000000001, + "y": 382.202 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 431.6640000000001, + "y": 383.01800000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 424.9380000000001, + "y": 382.202 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 418.6040000000001, + "y": 379.79900000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 413.0280000000001, + "y": 375.951 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 408.5360000000001, + "y": 370.879 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 405.3870000000001, + "y": 364.88100000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.7660000000001, + "y": 358.302 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 403.7660000000001, + "y": 351.528 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 405.3870000000001, + "y": 344.949 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 408.5360000000001, + "y": 338.951 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 413.0280000000001, + "y": 333.879 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 418.6040000000001, + "y": 330.031 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 424.9380000000001, + "y": 327.62800000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 431.6640000000001, + "y": 326.812 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 438.3900000000001, + "y": 327.62800000000004 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 444.7240000000001, + "y": 330.031 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 450.3000000000001, + "y": 333.879 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 454.7920000000001, + "y": 338.951 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 457.9410000000001, + "y": 344.949 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 459.5620000000001, + "y": 351.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1019.7387239999998, + "axes": { + "#": 2485 + }, + "bounds": { + "#": 2496 + }, + "circleRadius": 18.165830761316872, + "collisionFilter": { + "#": 2499 + }, + "constraintImpulse": { + "#": 2500 + }, + "density": 0.001, + "force": { + "#": 2501 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 662.0361846508167, + "inverseInertia": 0.0015104914552781406, + "inverseMass": 0.9806433515414879, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0197387239999998, + "motion": 0, + "parent": null, + "position": { + "#": 2502 + }, + "positionImpulse": { + "#": 2503 + }, + "positionPrev": { + "#": 2504 + }, + "render": { + "#": 2505 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2507 + }, + "vertices": { + "#": 2508 + } + }, + [ + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + } + ], + { + "x": -0.9510663909208378, + "y": -0.3089866017496747 + }, + { + "x": -0.808987086398412, + "y": -0.5878264148884501 + }, + { + "x": -0.5878264148884501, + "y": -0.808987086398412 + }, + { + "x": -0.3089866017496747, + "y": -0.9510663909208378 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089866017496747, + "y": -0.9510663909208378 + }, + { + "x": 0.5878264148884501, + "y": -0.808987086398412 + }, + { + "x": 0.808987086398412, + "y": -0.5878264148884501 + }, + { + "x": 0.9510663909208378, + "y": -0.3089866017496747 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2497 + }, + "min": { + "#": 2498 + } + }, + { + "x": 505.44600000000014, + "y": 362.696 + }, + { + "x": 469.5620000000001, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.50400000000013, + "y": 344.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.50400000000013, + "y": 344.754 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2506 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + }, + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.44600000000014, + "y": 347.596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 503.6900000000001, + "y": 353.00100000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500.34900000000016, + "y": 357.59900000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 495.75100000000015, + "y": 360.94 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 490.3460000000001, + "y": 362.696 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 484.66200000000015, + "y": 362.696 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 479.2570000000001, + "y": 360.94 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 474.6590000000001, + "y": 357.59900000000005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 471.31800000000015, + "y": 353.00100000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 469.5620000000001, + "y": 347.596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 469.5620000000001, + "y": 341.91200000000003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 471.31800000000015, + "y": 336.507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 474.6590000000001, + "y": 331.909 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 479.2570000000001, + "y": 328.56800000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 484.66200000000015, + "y": 326.812 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 490.3460000000001, + "y": 326.812 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 495.75100000000015, + "y": 328.56800000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 500.34900000000016, + "y": 331.909 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 503.6900000000001, + "y": 336.507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 505.44600000000014, + "y": 341.91200000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2071.7926880000005, + "axes": { + "#": 2530 + }, + "bounds": { + "#": 2544 + }, + "circleRadius": 25.80561985596708, + "collisionFilter": { + "#": 2547 + }, + "constraintImpulse": { + "#": 2548 + }, + "density": 0.001, + "force": { + "#": 2549 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 2732.6310663398754, + "inverseInertia": 0.00036594768035752963, + "inverseMass": 0.48267377609356626, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.0717926880000004, + "motion": 0, + "parent": null, + "position": { + "#": 2550 + }, + "positionImpulse": { + "#": 2551 + }, + "positionPrev": { + "#": 2552 + }, + "render": { + "#": 2553 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2555 + }, + "vertices": { + "#": 2556 + } + }, + [ + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + } + ], + { + "x": -0.9709689408513394, + "y": -0.23920559337529684 + }, + { + "x": -0.8854442113024813, + "y": -0.46474568171304914 + }, + { + "x": -0.7484901643729688, + "y": -0.663145891819384 + }, + { + "x": -0.5680559468352687, + "y": -0.8229899399537556 + }, + { + "x": -0.3546445414924918, + "y": -0.935001202774403 + }, + { + "x": -0.12055217685565543, + "y": -0.9927069923473707 + }, + { + "x": 0.12055217685565543, + "y": -0.9927069923473707 + }, + { + "x": 0.3546445414924918, + "y": -0.935001202774403 + }, + { + "x": 0.5680559468352687, + "y": -0.8229899399537556 + }, + { + "x": 0.7484901643729688, + "y": -0.663145891819384 + }, + { + "x": 0.8854442113024813, + "y": -0.46474568171304914 + }, + { + "x": 0.9709689408513394, + "y": -0.23920559337529684 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2545 + }, + "min": { + "#": 2546 + } + }, + { + "x": 566.6800000000001, + "y": 378.424 + }, + { + "x": 515.4460000000001, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.0630000000001, + "y": 352.618 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.0630000000001, + "y": 352.618 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2554 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + }, + { + "#": 2570 + }, + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + }, + { + "#": 2582 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 566.6800000000001, + "y": 355.729 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 565.1920000000001, + "y": 361.769 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 562.3010000000002, + "y": 367.277 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 558.1750000000001, + "y": 371.93399999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.0550000000001, + "y": 375.468 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 547.2390000000001, + "y": 377.674 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 541.0630000000001, + "y": 378.424 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 534.8870000000002, + "y": 377.674 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 529.0710000000001, + "y": 375.468 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 523.951, + "y": 371.93399999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 519.825, + "y": 367.277 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 516.9340000000001, + "y": 361.769 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 515.4460000000001, + "y": 355.729 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 515.4460000000001, + "y": 349.507 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 516.9340000000001, + "y": 343.467 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 519.825, + "y": 337.959 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 523.951, + "y": 333.302 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 529.0710000000001, + "y": 329.768 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 534.8870000000002, + "y": 327.562 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 541.0630000000001, + "y": 326.812 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 547.2390000000001, + "y": 327.562 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 553.0550000000001, + "y": 329.768 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 558.1750000000001, + "y": 333.302 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 562.3010000000002, + "y": 337.959 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 565.1920000000001, + "y": 343.467 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 566.6800000000001, + "y": 349.507 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1547.12858, + "axes": { + "#": 2584 + }, + "bounds": { + "#": 2597 + }, + "circleRadius": 22.31886574074074, + "collisionFilter": { + "#": 2600 + }, + "constraintImpulse": { + "#": 2601 + }, + "density": 0.001, + "force": { + "#": 2602 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1523.8575386219945, + "inverseInertia": 0.0006562293223973467, + "inverseMass": 0.6463586885583873, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.54712858, + "motion": 0, + "parent": null, + "position": { + "#": 2603 + }, + "positionImpulse": { + "#": 2604 + }, + "positionPrev": { + "#": 2605 + }, + "render": { + "#": 2606 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2608 + }, + "vertices": { + "#": 2609 + } + }, + [ + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + } + ], + { + "x": -0.9659266009741097, + "y": -0.2588161539212787 + }, + { + "x": -0.8660484012741211, + "y": -0.4999601650637169 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.4999601650637169, + "y": -0.8660484012741211 + }, + { + "x": -0.2588161539212787, + "y": -0.9659266009741097 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588161539212787, + "y": -0.9659266009741097 + }, + { + "x": 0.4999601650637169, + "y": -0.8660484012741211 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660484012741211, + "y": -0.4999601650637169 + }, + { + "x": 0.9659266009741097, + "y": -0.2588161539212787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2598 + }, + "min": { + "#": 2599 + } + }, + { + "x": 620.9360000000001, + "y": 371.068 + }, + { + "x": 576.6800000000001, + "y": 326.812 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.8080000000001, + "y": 348.94 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.8080000000001, + "y": 348.94 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2607 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 620.9360000000001, + "y": 351.853 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 619.4280000000001, + "y": 357.481 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.5150000000001, + "y": 362.527 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 612.3950000000001, + "y": 366.647 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 607.3490000000002, + "y": 369.56 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 601.7210000000001, + "y": 371.068 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 595.8950000000001, + "y": 371.068 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 590.267, + "y": 369.56 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 585.2210000000001, + "y": 366.647 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 581.1010000000001, + "y": 362.527 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 578.1880000000001, + "y": 357.481 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 576.6800000000001, + "y": 351.853 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 576.6800000000001, + "y": 346.027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 578.1880000000001, + "y": 340.399 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 581.1010000000001, + "y": 335.353 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 585.2210000000001, + "y": 331.233 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 590.267, + "y": 328.32 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 595.8950000000001, + "y": 326.812 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 601.7210000000001, + "y": 326.812 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 607.3490000000002, + "y": 328.32 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 612.3950000000001, + "y": 331.233 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 616.5150000000001, + "y": 335.353 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 619.4280000000001, + "y": 340.399 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 620.9360000000001, + "y": 346.027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1470.04091, + "axes": { + "#": 2635 + }, + "bounds": { + "#": 2647 + }, + "circleRadius": 21.779642489711932, + "collisionFilter": { + "#": 2650 + }, + "constraintImpulse": { + "#": 2651 + }, + "density": 0.001, + "force": { + "#": 2652 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 1375.7995858087013, + "inverseInertia": 0.0007268500516462908, + "inverseMass": 0.6802531774438849, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.47004091, + "motion": 0, + "parent": null, + "position": { + "#": 2653 + }, + "positionImpulse": { + "#": 2654 + }, + "positionPrev": { + "#": 2655 + }, + "render": { + "#": 2656 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2658 + }, + "vertices": { + "#": 2659 + } + }, + [ + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + } + ], + { + "x": -0.959470748479457, + "y": -0.28180823765864343 + }, + { + "x": -0.8412885288941503, + "y": -0.5405863586432017 + }, + { + "x": -0.654807695437231, + "y": -0.7557955292247914 + }, + { + "x": -0.4153823096539656, + "y": -0.909646929762607 + }, + { + "x": -0.14243754050093502, + "y": -0.989803792201285 + }, + { + "x": 0.14243754050093502, + "y": -0.989803792201285 + }, + { + "x": 0.4153823096539656, + "y": -0.909646929762607 + }, + { + "x": 0.654807695437231, + "y": -0.7557955292247914 + }, + { + "x": 0.8412885288941503, + "y": -0.5405863586432017 + }, + { + "x": 0.959470748479457, + "y": -0.28180823765864343 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2648 + }, + "min": { + "#": 2649 + } + }, + { + "x": 143.11599999999999, + "y": 438.88199999999995 + }, + { + "x": 100, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.55799999999999, + "y": 417.102 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.55799999999999, + "y": 417.102 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2657 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + }, + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 143.11599999999999, + "y": 420.202 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 141.369, + "y": 426.15 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 138.018, + "y": 431.36499999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 133.333, + "y": 435.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 127.69399999999999, + "y": 437.99899999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 121.55799999999999, + "y": 438.88199999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 115.422, + "y": 437.99899999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 109.78299999999999, + "y": 435.424 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 105.09799999999998, + "y": 431.36499999999995 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 101.74699999999999, + "y": 426.15 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 420.202 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 414.00199999999995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 101.74699999999999, + "y": 408.054 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 105.09799999999998, + "y": 402.839 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 109.78299999999999, + "y": 398.78 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 115.422, + "y": 396.205 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 121.55799999999999, + "y": 395.322 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 127.69399999999999, + "y": 396.205 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 133.333, + "y": 398.78 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 138.018, + "y": 402.839 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 141.369, + "y": 408.054 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 143.11599999999999, + "y": 414.00199999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1601.2929020000001, + "axes": { + "#": 2683 + }, + "bounds": { + "#": 2696 + }, + "circleRadius": 22.706468621399175, + "collisionFilter": { + "#": 2699 + }, + "constraintImpulse": { + "#": 2700 + }, + "density": 0.001, + "force": { + "#": 2701 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1632.4245112896238, + "inverseInertia": 0.0006125857539409249, + "inverseMass": 0.6244953679311319, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6012929020000002, + "motion": 0, + "parent": null, + "position": { + "#": 2702 + }, + "positionImpulse": { + "#": 2703 + }, + "positionPrev": { + "#": 2704 + }, + "render": { + "#": 2705 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2707 + }, + "vertices": { + "#": 2708 + } + }, + [ + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + } + ], + { + "x": -0.9659262112525419, + "y": -0.25881760839500406 + }, + { + "x": -0.866033897267781, + "y": -0.499985288566752 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.499985288566752, + "y": -0.866033897267781 + }, + { + "x": -0.25881760839500406, + "y": -0.9659262112525419 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25881760839500406, + "y": -0.9659262112525419 + }, + { + "x": 0.499985288566752, + "y": -0.866033897267781 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.866033897267781, + "y": -0.499985288566752 + }, + { + "x": 0.9659262112525419, + "y": -0.25881760839500406 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2697 + }, + "min": { + "#": 2698 + } + }, + { + "x": 198.14, + "y": 440.346 + }, + { + "x": 153.11599999999999, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.628, + "y": 417.834 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.628, + "y": 417.834 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2706 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + }, + { + "#": 2727 + }, + { + "#": 2728 + }, + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 198.14, + "y": 420.798 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 196.606, + "y": 426.523 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.642, + "y": 431.657 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 189.451, + "y": 435.848 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 184.31699999999998, + "y": 438.812 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 178.59199999999998, + "y": 440.346 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 172.664, + "y": 440.346 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 166.939, + "y": 438.812 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.80499999999998, + "y": 435.848 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 157.61399999999998, + "y": 431.657 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 154.64999999999998, + "y": 426.523 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 153.11599999999999, + "y": 420.798 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 153.11599999999999, + "y": 414.87 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 154.64999999999998, + "y": 409.145 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 157.61399999999998, + "y": 404.011 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 161.80499999999998, + "y": 399.82 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 166.939, + "y": 396.856 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 172.664, + "y": 395.322 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 178.59199999999998, + "y": 395.322 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 184.31699999999998, + "y": 396.856 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 189.451, + "y": 399.82 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 193.642, + "y": 404.011 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 196.606, + "y": 409.145 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 198.14, + "y": 414.87 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1202.792016, + "axes": { + "#": 2734 + }, + "bounds": { + "#": 2745 + }, + "circleRadius": 19.728973765432098, + "collisionFilter": { + "#": 2748 + }, + "constraintImpulse": { + "#": 2749 + }, + "density": 0.001, + "force": { + "#": 2750 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 921.0537546528394, + "inverseInertia": 0.0010857129618639, + "inverseMass": 0.8313989340614313, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.202792016, + "motion": 0, + "parent": null, + "position": { + "#": 2751 + }, + "positionImpulse": { + "#": 2752 + }, + "positionPrev": { + "#": 2753 + }, + "render": { + "#": 2754 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2756 + }, + "vertices": { + "#": 2757 + } + }, + [ + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + } + ], + { + "x": -0.951085246419531, + "y": -0.3089285581539849 + }, + { + "x": -0.8089111933674096, + "y": -0.5879308473323315 + }, + { + "x": -0.5879308473323315, + "y": -0.8089111933674096 + }, + { + "x": -0.3089285581539849, + "y": -0.951085246419531 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089285581539849, + "y": -0.951085246419531 + }, + { + "x": 0.5879308473323315, + "y": -0.8089111933674096 + }, + { + "x": 0.8089111933674096, + "y": -0.5879308473323315 + }, + { + "x": 0.951085246419531, + "y": -0.3089285581539849 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2746 + }, + "min": { + "#": 2747 + } + }, + { + "x": 247.11199999999997, + "y": 434.294 + }, + { + "x": 208.14, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.62599999999998, + "y": 414.808 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.62599999999998, + "y": 414.808 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2755 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + }, + { + "#": 2766 + }, + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 247.11199999999997, + "y": 417.894 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 245.20499999999998, + "y": 423.765 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 241.57599999999996, + "y": 428.758 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 236.58299999999997, + "y": 432.387 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 230.712, + "y": 434.294 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 224.53999999999996, + "y": 434.294 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 218.66899999999998, + "y": 432.387 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 213.676, + "y": 428.758 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 210.04699999999997, + "y": 423.765 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 208.14, + "y": 417.894 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 208.14, + "y": 411.722 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 210.04699999999997, + "y": 405.851 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 213.676, + "y": 400.858 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 218.66899999999998, + "y": 397.229 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 224.53999999999996, + "y": 395.322 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 230.712, + "y": 395.322 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 236.58299999999997, + "y": 397.229 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 241.57599999999996, + "y": 400.858 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 245.20499999999998, + "y": 405.851 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 247.11199999999997, + "y": 411.722 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1984.2207600000002, + "axes": { + "#": 2779 + }, + "bounds": { + "#": 2793 + }, + "circleRadius": 25.254565329218106, + "collisionFilter": { + "#": 2796 + }, + "constraintImpulse": { + "#": 2797 + }, + "density": 0.001, + "force": { + "#": 2798 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 2506.50391811075, + "inverseInertia": 0.0003989620733382851, + "inverseMass": 0.5039761805536194, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9842207600000001, + "motion": 0, + "parent": null, + "position": { + "#": 2799 + }, + "positionImpulse": { + "#": 2800 + }, + "positionPrev": { + "#": 2801 + }, + "render": { + "#": 2802 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2804 + }, + "vertices": { + "#": 2805 + } + }, + [ + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + }, + { + "#": 2792 + } + ], + { + "x": -0.9709391703785378, + "y": -0.2393264035258891 + }, + { + "x": -0.8854840778178918, + "y": -0.4646697191887992 + }, + { + "x": -0.7485229543185438, + "y": -0.6631088800930351 + }, + { + "x": -0.5680821480971469, + "y": -0.8229718543263379 + }, + { + "x": -0.354649282244037, + "y": -0.9349994046007674 + }, + { + "x": -0.1205569990969585, + "y": -0.9927064067329957 + }, + { + "x": 0.1205569990969585, + "y": -0.9927064067329957 + }, + { + "x": 0.354649282244037, + "y": -0.9349994046007674 + }, + { + "x": 0.5680821480971469, + "y": -0.8229718543263379 + }, + { + "x": 0.7485229543185438, + "y": -0.6631088800930351 + }, + { + "x": 0.8854840778178918, + "y": -0.4646697191887992 + }, + { + "x": 0.9709391703785378, + "y": -0.2393264035258891 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2794 + }, + "min": { + "#": 2795 + } + }, + { + "x": 307.25199999999995, + "y": 445.832 + }, + { + "x": 257.11199999999997, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.18199999999996, + "y": 420.577 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.18199999999996, + "y": 420.577 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2803 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2806 + }, + { + "#": 2807 + }, + { + "#": 2808 + }, + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 307.25199999999995, + "y": 423.621 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 305.79499999999996, + "y": 429.532 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.96599999999995, + "y": 434.923 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 298.929, + "y": 439.48 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 293.91799999999995, + "y": 442.939 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 288.22599999999994, + "y": 445.098 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 282.18199999999996, + "y": 445.832 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 276.1379999999999, + "y": 445.098 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 270.44599999999997, + "y": 442.939 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 265.43499999999995, + "y": 439.48 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 261.39799999999997, + "y": 434.923 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 258.56899999999996, + "y": 429.532 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 257.11199999999997, + "y": 423.621 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 257.11199999999997, + "y": 417.533 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 258.56899999999996, + "y": 411.622 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 261.39799999999997, + "y": 406.231 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 265.43499999999995, + "y": 401.674 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 270.44599999999997, + "y": 398.215 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 276.1379999999999, + "y": 396.056 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 282.18199999999996, + "y": 395.322 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 288.22599999999994, + "y": 396.056 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 293.91799999999995, + "y": 398.215 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 298.929, + "y": 401.674 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 302.96599999999995, + "y": 406.231 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 305.79499999999996, + "y": 411.622 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 307.25199999999995, + "y": 417.533 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2125.037534, + "axes": { + "#": 2833 + }, + "bounds": { + "#": 2847 + }, + "circleRadius": 26.135095164609055, + "collisionFilter": { + "#": 2850 + }, + "constraintImpulse": { + "#": 2851 + }, + "density": 0.001, + "force": { + "#": 2852 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 2874.892566904298, + "inverseInertia": 0.0003478390850190295, + "inverseMass": 0.4705799234132492, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.125037534, + "motion": 0, + "parent": null, + "position": { + "#": 2853 + }, + "positionImpulse": { + "#": 2854 + }, + "positionPrev": { + "#": 2855 + }, + "render": { + "#": 2856 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2858 + }, + "vertices": { + "#": 2859 + } + }, + [ + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + } + ], + { + "x": -0.9709400313336894, + "y": -0.23932291063275624 + }, + { + "x": -0.8854272994332363, + "y": -0.4647779011725559 + }, + { + "x": -0.7485116480933186, + "y": -0.6631216424372106 + }, + { + "x": -0.5680704347550564, + "y": -0.8229799397052162 + }, + { + "x": -0.35472121559407893, + "y": -0.9349721168074794 + }, + { + "x": -0.12045933827365674, + "y": -0.9927182620576055 + }, + { + "x": 0.12045933827365674, + "y": -0.9927182620576055 + }, + { + "x": 0.35472121559407893, + "y": -0.9349721168074794 + }, + { + "x": 0.5680704347550564, + "y": -0.8229799397052162 + }, + { + "x": 0.7485116480933186, + "y": -0.6631216424372106 + }, + { + "x": 0.8854272994332363, + "y": -0.4647779011725559 + }, + { + "x": 0.9709400313336894, + "y": -0.23932291063275624 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2848 + }, + "min": { + "#": 2849 + } + }, + { + "x": 369.14199999999994, + "y": 447.592 + }, + { + "x": 317.25199999999995, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 343.19699999999995, + "y": 421.457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 343.19699999999995, + "y": 421.457 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2857 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + }, + { + "#": 2885 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 369.14199999999994, + "y": 424.60699999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 367.63399999999996, + "y": 430.725 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 364.70599999999996, + "y": 436.303 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 360.52799999999996, + "y": 441.019 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 355.34299999999996, + "y": 444.598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 349.45199999999994, + "y": 446.83299999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 343.19699999999995, + "y": 447.592 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 336.94199999999995, + "y": 446.83299999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 331.05099999999993, + "y": 444.598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 325.86599999999993, + "y": 441.019 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 321.68799999999993, + "y": 436.303 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 318.75999999999993, + "y": 430.725 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 317.25199999999995, + "y": 424.60699999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 317.25199999999995, + "y": 418.307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 318.75999999999993, + "y": 412.18899999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 321.68799999999993, + "y": 406.611 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 325.86599999999993, + "y": 401.895 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 331.05099999999993, + "y": 398.316 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 336.94199999999995, + "y": 396.081 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 343.19699999999995, + "y": 395.322 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 349.45199999999994, + "y": 396.081 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 355.34299999999996, + "y": 398.316 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 360.52799999999996, + "y": 401.895 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 364.70599999999996, + "y": 406.611 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 367.63399999999996, + "y": 412.18899999999996 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 369.14199999999994, + "y": 418.307 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1996.653286, + "axes": { + "#": 2887 + }, + "bounds": { + "#": 2901 + }, + "circleRadius": 25.3335262345679, + "collisionFilter": { + "#": 2904 + }, + "constraintImpulse": { + "#": 2905 + }, + "density": 0.001, + "force": { + "#": 2906 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 2538.0123080923295, + "inverseInertia": 0.0003940091215521487, + "inverseMass": 0.500838080908555, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.996653286, + "motion": 0, + "parent": null, + "position": { + "#": 2907 + }, + "positionImpulse": { + "#": 2908 + }, + "positionPrev": { + "#": 2909 + }, + "render": { + "#": 2910 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2912 + }, + "vertices": { + "#": 2913 + } + }, + [ + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + } + ], + { + "x": -0.9709177357808948, + "y": -0.23941334621549468 + }, + { + "x": -0.8854787541421058, + "y": -0.46467986395253275 + }, + { + "x": -0.7484743872094407, + "y": -0.6631636990151467 + }, + { + "x": -0.5681537587183745, + "y": -0.822922418247421 + }, + { + "x": -0.35453081856604124, + "y": -0.9350443297977334 + }, + { + "x": -0.12066874735597947, + "y": -0.9926928293341998 + }, + { + "x": 0.12066874735597947, + "y": -0.9926928293341998 + }, + { + "x": 0.35453081856604124, + "y": -0.9350443297977334 + }, + { + "x": 0.5681537587183745, + "y": -0.822922418247421 + }, + { + "x": 0.7484743872094407, + "y": -0.6631636990151467 + }, + { + "x": 0.8854787541421058, + "y": -0.46467986395253275 + }, + { + "x": 0.9709177357808948, + "y": -0.23941334621549468 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2902 + }, + "min": { + "#": 2903 + } + }, + { + "x": 429.43999999999994, + "y": 445.99 + }, + { + "x": 379.14199999999994, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 404.29099999999994, + "y": 420.656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 404.29099999999994, + "y": 420.656 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2911 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + }, + { + "#": 2927 + }, + { + "#": 2928 + }, + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 429.43999999999994, + "y": 423.71 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 427.97799999999995, + "y": 429.639 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425.13999999999993, + "y": 435.047 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 421.0899999999999, + "y": 439.618 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 416.06399999999996, + "y": 443.088 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 410.3539999999999, + "y": 445.253 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 404.29099999999994, + "y": 445.99 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 398.22799999999995, + "y": 445.253 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 392.5179999999999, + "y": 443.088 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 387.49199999999996, + "y": 439.618 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 383.44199999999995, + "y": 435.047 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 380.6039999999999, + "y": 429.639 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.14199999999994, + "y": 423.71 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 379.14199999999994, + "y": 417.60200000000003 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.6039999999999, + "y": 411.673 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 383.44199999999995, + "y": 406.265 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 387.49199999999996, + "y": 401.694 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 392.5179999999999, + "y": 398.224 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 398.22799999999995, + "y": 396.059 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 404.29099999999994, + "y": 395.322 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 410.3539999999999, + "y": 396.059 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 416.06399999999996, + "y": 398.224 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 421.0899999999999, + "y": 401.694 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 425.13999999999993, + "y": 406.265 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 427.97799999999995, + "y": 411.673 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 429.43999999999994, + "y": 417.60200000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1068.0078720000001, + "axes": { + "#": 2941 + }, + "bounds": { + "#": 2952 + }, + "circleRadius": 18.59059927983539, + "collisionFilter": { + "#": 2955 + }, + "constraintImpulse": { + "#": 2956 + }, + "density": 0.001, + "force": { + "#": 2957 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 726.1942595046386, + "inverseInertia": 0.001377042006201114, + "inverseMass": 0.9363226865803475, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0680078720000001, + "motion": 0, + "parent": null, + "position": { + "#": 2958 + }, + "positionImpulse": { + "#": 2959 + }, + "positionPrev": { + "#": 2960 + }, + "render": { + "#": 2961 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2963 + }, + "vertices": { + "#": 2964 + } + }, + [ + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + }, + { + "#": 2946 + }, + { + "#": 2947 + }, + { + "#": 2948 + }, + { + "#": 2949 + }, + { + "#": 2950 + }, + { + "#": 2951 + } + ], + { + "x": -0.9510290151639218, + "y": -0.30910162134214203 + }, + { + "x": -0.8091076656500449, + "y": -0.5876604337424249 + }, + { + "x": -0.5876604337424249, + "y": -0.8091076656500449 + }, + { + "x": -0.30910162134214203, + "y": -0.9510290151639218 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30910162134214203, + "y": -0.9510290151639218 + }, + { + "x": 0.5876604337424249, + "y": -0.8091076656500449 + }, + { + "x": 0.8091076656500449, + "y": -0.5876604337424249 + }, + { + "x": 0.9510290151639218, + "y": -0.30910162134214203 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2953 + }, + "min": { + "#": 2954 + } + }, + { + "x": 476.164, + "y": 432.04600000000005 + }, + { + "x": 439.43999999999994, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.80199999999996, + "y": 413.684 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.80199999999996, + "y": 413.684 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2962 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + }, + { + "#": 2984 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.164, + "y": 416.59200000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.366, + "y": 422.124 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.948, + "y": 426.83000000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.24199999999996, + "y": 430.24800000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 460.71, + "y": 432.04600000000005 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 454.89399999999995, + "y": 432.04600000000005 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.36199999999997, + "y": 430.24800000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 444.65599999999995, + "y": 426.83000000000004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 441.23799999999994, + "y": 422.124 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 439.43999999999994, + "y": 416.59200000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 439.43999999999994, + "y": 410.776 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 441.23799999999994, + "y": 405.244 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.65599999999995, + "y": 400.538 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.36199999999997, + "y": 397.12 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 454.89399999999995, + "y": 395.322 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 460.71, + "y": 395.322 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 466.24199999999996, + "y": 397.12 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 470.948, + "y": 400.538 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 474.366, + "y": 405.244 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 476.164, + "y": 410.776 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2117.925184, + "axes": { + "#": 2986 + }, + "bounds": { + "#": 3000 + }, + "circleRadius": 26.091499485596707, + "collisionFilter": { + "#": 3003 + }, + "constraintImpulse": { + "#": 3004 + }, + "density": 0.001, + "force": { + "#": 3005 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 2855.6806480399814, + "inverseInertia": 0.000350179212331168, + "inverseMass": 0.47216021016916143, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.117925184, + "motion": 0, + "parent": null, + "position": { + "#": 3006 + }, + "positionImpulse": { + "#": 3007 + }, + "positionPrev": { + "#": 3008 + }, + "render": { + "#": 3009 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3011 + }, + "vertices": { + "#": 3012 + } + }, + [ + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + } + ], + { + "x": -0.9709506945423793, + "y": -0.23927964553566064 + }, + { + "x": -0.8854796733875594, + "y": -0.4646781122642439 + }, + { + "x": -0.7485047540208849, + "y": -0.6631294241761065 + }, + { + "x": -0.5680189747008447, + "y": -0.8230154581657634 + }, + { + "x": -0.3545535808015822, + "y": -0.9350356989659677 + }, + { + "x": -0.12051179006506187, + "y": -0.992711895997683 + }, + { + "x": 0.12051179006506187, + "y": -0.992711895997683 + }, + { + "x": 0.3545535808015822, + "y": -0.9350356989659677 + }, + { + "x": 0.5680189747008447, + "y": -0.8230154581657634 + }, + { + "x": 0.7485047540208849, + "y": -0.6631294241761065 + }, + { + "x": 0.8854796733875594, + "y": -0.4646781122642439 + }, + { + "x": 0.9709506945423793, + "y": -0.23927964553566064 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3001 + }, + "min": { + "#": 3002 + } + }, + { + "x": 537.9659999999999, + "y": 447.504 + }, + { + "x": 486.16399999999993, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.0649999999999, + "y": 421.413 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.0649999999999, + "y": 421.413 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3010 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + }, + { + "#": 3038 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 537.9659999999999, + "y": 424.558 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 536.461, + "y": 430.665 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 533.538, + "y": 436.235 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 529.367, + "y": 440.943 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 524.1899999999999, + "y": 444.516 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 518.309, + "y": 446.746 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 512.0649999999999, + "y": 447.504 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 505.8209999999999, + "y": 446.746 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 499.93999999999994, + "y": 444.516 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 494.7629999999999, + "y": 440.943 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 490.5919999999999, + "y": 436.235 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 487.6689999999999, + "y": 430.665 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 486.16399999999993, + "y": 424.558 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 486.16399999999993, + "y": 418.26800000000003 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 487.6689999999999, + "y": 412.161 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 490.5919999999999, + "y": 406.591 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 494.7629999999999, + "y": 401.88300000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 499.93999999999994, + "y": 398.31 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 505.8209999999999, + "y": 396.08000000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.0649999999999, + "y": 395.322 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 518.309, + "y": 396.08000000000004 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 524.1899999999999, + "y": 398.31 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 529.367, + "y": 401.88300000000004 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 533.538, + "y": 406.591 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 536.461, + "y": 412.161 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 537.9659999999999, + "y": 418.26800000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2640.4216659999993, + "axes": { + "#": 3040 + }, + "bounds": { + "#": 3054 + }, + "circleRadius": 29.13252314814815, + "collisionFilter": { + "#": 3057 + }, + "constraintImpulse": { + "#": 3058 + }, + "density": 0.001, + "force": { + "#": 3059 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 4438.487332970961, + "inverseInertia": 0.00022530198353199686, + "inverseMass": 0.37872738770353664, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6404216659999995, + "motion": 0, + "parent": null, + "position": { + "#": 3060 + }, + "positionImpulse": { + "#": 3061 + }, + "positionPrev": { + "#": 3062 + }, + "render": { + "#": 3063 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3065 + }, + "vertices": { + "#": 3066 + } + }, + [ + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + } + ], + { + "x": -0.9709329680777526, + "y": -0.2393515646485853 + }, + { + "x": -0.885482871367978, + "y": -0.4646720182170656 + }, + { + "x": -0.748460967524138, + "y": -0.6631788447265422 + }, + { + "x": -0.5681654624657904, + "y": -0.8229143377418058 + }, + { + "x": -0.3545383401721488, + "y": -0.9350414778757025 + }, + { + "x": -0.12059925123212459, + "y": -0.9927012746049291 + }, + { + "x": 0.12059925123212459, + "y": -0.9927012746049291 + }, + { + "x": 0.3545383401721488, + "y": -0.9350414778757025 + }, + { + "x": 0.5681654624657904, + "y": -0.8229143377418058 + }, + { + "x": 0.748460967524138, + "y": -0.6631788447265422 + }, + { + "x": 0.885482871367978, + "y": -0.4646720182170656 + }, + { + "x": 0.9709329680777526, + "y": -0.2393515646485853 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3055 + }, + "min": { + "#": 3056 + } + }, + { + "x": 605.8059999999998, + "y": 453.58799999999997 + }, + { + "x": 547.9659999999999, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 576.8859999999999, + "y": 424.455 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 576.8859999999999, + "y": 424.455 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3064 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + }, + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + }, + { + "#": 3087 + }, + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 605.8059999999998, + "y": 427.967 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 604.1249999999999, + "y": 434.786 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600.8619999999999, + "y": 441.00399999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 596.2039999999998, + "y": 446.26099999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 590.4249999999998, + "y": 450.251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 583.8579999999998, + "y": 452.741 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 576.8859999999999, + "y": 453.58799999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 569.9139999999999, + "y": 452.741 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 563.3469999999999, + "y": 450.251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 557.5679999999999, + "y": 446.26099999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 552.9099999999999, + "y": 441.00399999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 549.6469999999998, + "y": 434.786 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 547.9659999999999, + "y": 427.967 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 547.9659999999999, + "y": 420.943 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 549.6469999999998, + "y": 414.12399999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 552.9099999999999, + "y": 407.906 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 557.5679999999999, + "y": 402.649 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 563.3469999999999, + "y": 398.659 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 569.9139999999999, + "y": 396.169 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 576.8859999999999, + "y": 395.322 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 583.8579999999998, + "y": 396.169 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 590.4249999999998, + "y": 398.659 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 596.2039999999998, + "y": 402.649 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 600.8619999999999, + "y": 407.906 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 604.1249999999999, + "y": 414.12399999999997 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 605.8059999999998, + "y": 420.943 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1471.137836, + "axes": { + "#": 3094 + }, + "bounds": { + "#": 3106 + }, + "circleRadius": 21.787744341563787, + "collisionFilter": { + "#": 3109 + }, + "constraintImpulse": { + "#": 3110 + }, + "density": 0.001, + "force": { + "#": 3111 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 1377.853560326475, + "inverseInertia": 0.0007257665319404883, + "inverseMass": 0.6797459595757416, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.471137836, + "motion": 0, + "parent": null, + "position": { + "#": 3112 + }, + "positionImpulse": { + "#": 3113 + }, + "positionPrev": { + "#": 3114 + }, + "render": { + "#": 3115 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3117 + }, + "vertices": { + "#": 3118 + } + }, + [ + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + } + ], + { + "x": -0.9594963577098565, + "y": -0.281721031414978 + }, + { + "x": -0.8412361011132161, + "y": -0.5406679407768089 + }, + { + "x": -0.6548323101262885, + "y": -0.7557742027978122 + }, + { + "x": -0.4153938805090625, + "y": -0.9096416459439524 + }, + { + "x": -0.14239206996108283, + "y": -0.9898103345652631 + }, + { + "x": 0.14239206996108283, + "y": -0.9898103345652631 + }, + { + "x": 0.4153938805090625, + "y": -0.9096416459439524 + }, + { + "x": 0.6548323101262885, + "y": -0.7557742027978122 + }, + { + "x": 0.8412361011132161, + "y": -0.5406679407768089 + }, + { + "x": 0.9594963577098565, + "y": -0.281721031414978 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3107 + }, + "min": { + "#": 3108 + } + }, + { + "x": 658.9379999999999, + "y": 438.898 + }, + { + "x": 615.8059999999998, + "y": 395.322 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.3719999999998, + "y": 417.11 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.3719999999998, + "y": 417.11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3116 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 658.9379999999999, + "y": 420.211 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 657.1909999999998, + "y": 426.161 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 653.8379999999999, + "y": 431.37800000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 649.1509999999998, + "y": 435.439 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 643.5099999999999, + "y": 438.015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 637.3719999999998, + "y": 438.898 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 631.2339999999998, + "y": 438.015 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 625.5929999999998, + "y": 435.439 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 620.9059999999998, + "y": 431.37800000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 617.5529999999999, + "y": 426.161 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 615.8059999999998, + "y": 420.211 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 615.8059999999998, + "y": 414.009 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 617.5529999999999, + "y": 408.059 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 620.9059999999998, + "y": 402.842 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 625.5929999999998, + "y": 398.781 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 631.2339999999998, + "y": 396.20500000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 637.3719999999998, + "y": 395.322 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 643.5099999999999, + "y": 396.20500000000004 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 649.1509999999998, + "y": 398.781 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 653.8379999999999, + "y": 402.842 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 657.1909999999998, + "y": 408.059 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 658.9379999999999, + "y": 414.009 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2365.7444480000004, + "axes": { + "#": 3142 + }, + "bounds": { + "#": 3156 + }, + "circleRadius": 27.57568158436214, + "collisionFilter": { + "#": 3159 + }, + "constraintImpulse": { + "#": 3160 + }, + "density": 0.001, + "force": { + "#": 3161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 3563.0676528597355, + "inverseInertia": 0.00028065703417037147, + "inverseMass": 0.4226999246877234, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.3657444480000005, + "motion": 0, + "parent": null, + "position": { + "#": 3162 + }, + "positionImpulse": { + "#": 3163 + }, + "positionPrev": { + "#": 3164 + }, + "render": { + "#": 3165 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3167 + }, + "vertices": { + "#": 3168 + } + }, + [ + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + } + ], + { + "x": -0.9709337114917155, + "y": -0.2393485489592997 + }, + { + "x": -0.8854396827786457, + "y": -0.46475430945915 + }, + { + "x": -0.7485369796265419, + "y": -0.663093047868528 + }, + { + "x": -0.5680282056614427, + "y": -0.8230090871752521 + }, + { + "x": -0.3545499356888958, + "y": -0.9350370811379621 + }, + { + "x": -0.12064583760460713, + "y": -0.992695613906238 + }, + { + "x": 0.12064583760460713, + "y": -0.992695613906238 + }, + { + "x": 0.3545499356888958, + "y": -0.9350370811379621 + }, + { + "x": 0.5680282056614427, + "y": -0.8230090871752521 + }, + { + "x": 0.7485369796265419, + "y": -0.663093047868528 + }, + { + "x": 0.8854396827786457, + "y": -0.46475430945915 + }, + { + "x": 0.9709337114917155, + "y": -0.2393485489592997 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3157 + }, + "min": { + "#": 3158 + } + }, + { + "x": 154.75, + "y": 518.74 + }, + { + "x": 100, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.375, + "y": 491.164 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.375, + "y": 491.164 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3166 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3169 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 154.75, + "y": 494.488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 153.159, + "y": 500.942 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150.06900000000002, + "y": 506.829 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 145.661, + "y": 511.805 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 140.19, + "y": 515.581 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 133.974, + "y": 517.938 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 127.375, + "y": 518.74 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 120.776, + "y": 517.938 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 114.56, + "y": 515.581 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 109.089, + "y": 511.805 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.681, + "y": 506.829 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.59100000000001, + "y": 500.942 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 494.488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 487.84 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.59100000000001, + "y": 481.38599999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.681, + "y": 475.49899999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 109.089, + "y": 470.52299999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 114.56, + "y": 466.74699999999996 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 120.776, + "y": 464.39 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 127.375, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 133.974, + "y": 464.39 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 140.19, + "y": 466.74699999999996 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 145.661, + "y": 470.52299999999997 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 150.06900000000002, + "y": 475.49899999999997 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 153.159, + "y": 481.38599999999997 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 154.75, + "y": 487.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1383.139406, + "axes": { + "#": 3196 + }, + "bounds": { + "#": 3208 + }, + "circleRadius": 21.125964506172842, + "collisionFilter": { + "#": 3211 + }, + "constraintImpulse": { + "#": 3212 + }, + "density": 0.001, + "force": { + "#": 3213 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 1217.9465841027236, + "inverseInertia": 0.0008210540700655706, + "inverseMass": 0.7229929215103282, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.383139406, + "motion": 0, + "parent": null, + "position": { + "#": 3214 + }, + "positionImpulse": { + "#": 3215 + }, + "positionPrev": { + "#": 3216 + }, + "render": { + "#": 3217 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3219 + }, + "vertices": { + "#": 3220 + } + }, + [ + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + } + ], + { + "x": -0.9594898820606332, + "y": -0.28174308549327703 + }, + { + "x": -0.8412703139582507, + "y": -0.5406147046211252 + }, + { + "x": -0.654822884658635, + "y": -0.7557823692885035 + }, + { + "x": -0.41540602817806926, + "y": -0.9096360985324412 + }, + { + "x": -0.14235257216933223, + "y": -0.9898160158316165 + }, + { + "x": 0.14235257216933223, + "y": -0.9898160158316165 + }, + { + "x": 0.41540602817806926, + "y": -0.9096360985324412 + }, + { + "x": 0.654822884658635, + "y": -0.7557823692885035 + }, + { + "x": 0.8412703139582507, + "y": -0.5406147046211252 + }, + { + "x": 0.9594898820606332, + "y": -0.28174308549327703 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3209 + }, + "min": { + "#": 3210 + } + }, + { + "x": 206.572, + "y": 505.8399999999999 + }, + { + "x": 164.75, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 185.661, + "y": 484.71399999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 185.661, + "y": 484.71399999999994 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3218 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 206.572, + "y": 487.72099999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 204.878, + "y": 493.48999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 201.627, + "y": 498.5489999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 197.083, + "y": 502.48599999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 191.613, + "y": 504.9839999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 185.661, + "y": 505.8399999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 179.709, + "y": 504.9839999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 174.239, + "y": 502.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 169.695, + "y": 498.5489999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 166.44400000000002, + "y": 493.48999999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 164.75, + "y": 487.72099999999995 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 164.75, + "y": 481.70699999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 166.44400000000002, + "y": 475.93799999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 169.695, + "y": 470.87899999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 174.239, + "y": 466.94199999999995 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 179.709, + "y": 464.44399999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 185.661, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 191.613, + "y": 464.44399999999996 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.083, + "y": 466.94199999999995 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 201.627, + "y": 470.87899999999996 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 204.878, + "y": 475.93799999999993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 206.572, + "y": 481.70699999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1920.5538560000002, + "axes": { + "#": 3244 + }, + "bounds": { + "#": 3258 + }, + "circleRadius": 24.846000514403293, + "collisionFilter": { + "#": 3261 + }, + "constraintImpulse": { + "#": 3262 + }, + "density": 0.001, + "force": { + "#": 3263 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 2348.234095514853, + "inverseInertia": 0.0004258519207731497, + "inverseMass": 0.5206831336053925, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9205538560000002, + "motion": 0, + "parent": null, + "position": { + "#": 3264 + }, + "positionImpulse": { + "#": 3265 + }, + "positionPrev": { + "#": 3266 + }, + "render": { + "#": 3267 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3269 + }, + "vertices": { + "#": 3270 + } + }, + [ + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + }, + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + } + ], + { + "x": -0.9709230108162477, + "y": -0.23939195280441827 + }, + { + "x": -0.8854717667145438, + "y": -0.4646931787227185 + }, + { + "x": -0.748476889134433, + "y": -0.6631608752268501 + }, + { + "x": -0.5681503393898027, + "y": -0.8229247789751213 + }, + { + "x": -0.3545787459288591, + "y": -0.9350261562841531 + }, + { + "x": -0.1205407749950231, + "y": -0.9927083768980692 + }, + { + "x": 0.1205407749950231, + "y": -0.9927083768980692 + }, + { + "x": 0.3545787459288591, + "y": -0.9350261562841531 + }, + { + "x": 0.5681503393898027, + "y": -0.8229247789751213 + }, + { + "x": 0.748476889134433, + "y": -0.6631608752268501 + }, + { + "x": 0.8854717667145438, + "y": -0.4646931787227185 + }, + { + "x": 0.9709230108162477, + "y": -0.23939195280441827 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3259 + }, + "min": { + "#": 3260 + } + }, + { + "x": 265.902, + "y": 513.28 + }, + { + "x": 216.572, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 241.237, + "y": 488.43399999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 241.237, + "y": 488.43399999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3268 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265.902, + "y": 491.429 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 264.46799999999996, + "y": 497.24499999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 261.685, + "y": 502.54799999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 257.71299999999997, + "y": 507.03099999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 252.784, + "y": 510.43399999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 247.183, + "y": 512.558 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 241.237, + "y": 513.28 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 235.291, + "y": 512.558 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 229.69, + "y": 510.43399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 224.761, + "y": 507.03099999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 220.789, + "y": 502.54799999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 218.006, + "y": 497.24499999999995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 216.572, + "y": 491.429 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 216.572, + "y": 485.43899999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 218.006, + "y": 479.623 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 220.789, + "y": 474.32 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 224.761, + "y": 469.837 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 229.69, + "y": 466.43399999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 235.291, + "y": 464.30999999999995 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 241.237, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 247.183, + "y": 464.30999999999995 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 252.784, + "y": 466.43399999999997 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 257.71299999999997, + "y": 469.837 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 261.685, + "y": 474.32 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 264.46799999999996, + "y": 479.623 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 265.902, + "y": 485.43899999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1313.5341700000001, + "axes": { + "#": 3298 + }, + "bounds": { + "#": 3310 + }, + "circleRadius": 20.58764146090535, + "collisionFilter": { + "#": 3313 + }, + "constraintImpulse": { + "#": 3314 + }, + "density": 0.001, + "force": { + "#": 3315 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1098.4469373075985, + "inverseInertia": 0.000910376246713472, + "inverseMass": 0.7613049000468712, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.31353417, + "motion": 0, + "parent": null, + "position": { + "#": 3316 + }, + "positionImpulse": { + "#": 3317 + }, + "positionPrev": { + "#": 3318 + }, + "render": { + "#": 3319 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3321 + }, + "vertices": { + "#": 3322 + } + }, + [ + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + } + ], + { + "x": -0.959482276351351, + "y": -0.2817689858157382 + }, + { + "x": -0.8412782604654073, + "y": -0.5406023385708745 + }, + { + "x": -0.6548720571511801, + "y": -0.7557397625919795 + }, + { + "x": -0.415473443431926, + "y": -0.9096053088031193 + }, + { + "x": -0.14232920005229774, + "y": -0.9898193768625027 + }, + { + "x": 0.14232920005229774, + "y": -0.9898193768625027 + }, + { + "x": 0.415473443431926, + "y": -0.9096053088031193 + }, + { + "x": 0.6548720571511801, + "y": -0.7557397625919795 + }, + { + "x": 0.8412782604654073, + "y": -0.5406023385708745 + }, + { + "x": 0.959482276351351, + "y": -0.2817689858157382 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3311 + }, + "min": { + "#": 3312 + } + }, + { + "x": 316.65799999999996, + "y": 504.764 + }, + { + "x": 275.902, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 296.28, + "y": 484.176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 296.28, + "y": 484.176 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3320 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + }, + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + }, + { + "#": 3335 + }, + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + }, + { + "#": 3343 + }, + { + "#": 3344 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.65799999999996, + "y": 487.106 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.00699999999995, + "y": 492.728 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.839, + "y": 497.65799999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.411, + "y": 501.495 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 302.08, + "y": 503.93 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 296.28, + "y": 504.764 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.47999999999996, + "y": 503.93 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 285.14899999999994, + "y": 501.495 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.72099999999995, + "y": 497.65799999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 277.553, + "y": 492.728 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275.902, + "y": 487.106 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 275.902, + "y": 481.246 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 277.553, + "y": 475.62399999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 280.72099999999995, + "y": 470.694 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 285.14899999999994, + "y": 466.85699999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 290.47999999999996, + "y": 464.42199999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 296.28, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 302.08, + "y": 464.42199999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 307.411, + "y": 466.85699999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 311.839, + "y": 470.694 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 315.00699999999995, + "y": 475.62399999999997 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 316.65799999999996, + "y": 481.246 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1407.836766, + "axes": { + "#": 3346 + }, + "bounds": { + "#": 3358 + }, + "circleRadius": 21.313850308641975, + "collisionFilter": { + "#": 3361 + }, + "constraintImpulse": { + "#": 3362 + }, + "density": 0.001, + "force": { + "#": 3363 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1261.8302598027851, + "inverseInertia": 0.0007924996188919204, + "inverseMass": 0.7103096212220956, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.407836766, + "motion": 0, + "parent": null, + "position": { + "#": 3364 + }, + "positionImpulse": { + "#": 3365 + }, + "positionPrev": { + "#": 3366 + }, + "render": { + "#": 3367 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3369 + }, + "vertices": { + "#": 3370 + } + }, + [ + { + "#": 3347 + }, + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + }, + { + "#": 3357 + } + ], + { + "x": -0.959501876537905, + "y": -0.28170223449635445 + }, + { + "x": -0.841264149745226, + "y": -0.5406242968582174 + }, + { + "x": -0.6547736264547386, + "y": -0.7558250446361977 + }, + { + "x": -0.41541690036651785, + "y": -0.9096311334216055 + }, + { + "x": -0.14241356489316964, + "y": -0.9898072421105126 + }, + { + "x": 0.14241356489316964, + "y": -0.9898072421105126 + }, + { + "x": 0.41541690036651785, + "y": -0.9096311334216055 + }, + { + "x": 0.6547736264547386, + "y": -0.7558250446361977 + }, + { + "x": 0.841264149745226, + "y": -0.5406242968582174 + }, + { + "x": 0.959501876537905, + "y": -0.28170223449635445 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3359 + }, + "min": { + "#": 3360 + } + }, + { + "x": 368.8519999999999, + "y": 506.216 + }, + { + "x": 326.65799999999996, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 347.75499999999994, + "y": 484.902 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 347.75499999999994, + "y": 484.902 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3368 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + }, + { + "#": 3379 + }, + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + }, + { + "#": 3389 + }, + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 368.8519999999999, + "y": 487.935 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 367.1429999999999, + "y": 493.756 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 363.86299999999994, + "y": 498.86 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 359.27799999999996, + "y": 502.832 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 353.75999999999993, + "y": 505.352 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 347.75499999999994, + "y": 506.216 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 341.74999999999994, + "y": 505.352 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 336.2319999999999, + "y": 502.832 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 331.64699999999993, + "y": 498.86 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 328.36699999999996, + "y": 493.756 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 326.65799999999996, + "y": 487.935 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.65799999999996, + "y": 481.86899999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 328.36699999999996, + "y": 476.048 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.64699999999993, + "y": 470.94399999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.2319999999999, + "y": 466.972 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 341.74999999999994, + "y": 464.452 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 347.75499999999994, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 353.75999999999993, + "y": 464.452 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 359.27799999999996, + "y": 466.972 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 363.86299999999994, + "y": 470.94399999999996 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 367.1429999999999, + "y": 476.048 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 368.8519999999999, + "y": 481.86899999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 971.4751299999998, + "axes": { + "#": 3394 + }, + "bounds": { + "#": 3404 + }, + "circleRadius": 17.76536779835391, + "collisionFilter": { + "#": 3407 + }, + "constraintImpulse": { + "#": 3408 + }, + "density": 0.001, + "force": { + "#": 3409 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 600.8690619118768, + "inverseInertia": 0.0016642560973569639, + "inverseMass": 1.029362429483913, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9714751299999999, + "motion": 0, + "parent": null, + "position": { + "#": 3410 + }, + "positionImpulse": { + "#": 3411 + }, + "positionPrev": { + "#": 3412 + }, + "render": { + "#": 3413 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3415 + }, + "vertices": { + "#": 3416 + } + }, + [ + { + "#": 3395 + }, + { + "#": 3396 + }, + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + } + ], + { + "x": -0.9397082164334566, + "y": -0.3419772915961702 + }, + { + "x": -0.7660113091054872, + "y": -0.6428270951993993 + }, + { + "x": -0.500026441001429, + "y": -0.8660101375269487 + }, + { + "x": -0.1735911569772105, + "y": -0.9848178055961994 + }, + { + "x": 0.1735911569772105, + "y": -0.9848178055961994 + }, + { + "x": 0.500026441001429, + "y": -0.8660101375269487 + }, + { + "x": 0.7660113091054872, + "y": -0.6428270951993993 + }, + { + "x": 0.9397082164334566, + "y": -0.3419772915961702 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3405 + }, + "min": { + "#": 3406 + } + }, + { + "x": 413.8419999999999, + "y": 499.11799999999994 + }, + { + "x": 378.8519999999999, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 396.3469999999999, + "y": 481.35299999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 396.3469999999999, + "y": 481.35299999999995 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3414 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3417 + }, + { + "#": 3418 + }, + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + }, + { + "#": 3422 + }, + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.8419999999999, + "y": 484.43799999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.7319999999999, + "y": 490.23599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.7659999999999, + "y": 494.96199999999993 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.42299999999994, + "y": 498.04699999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.3469999999999, + "y": 499.11799999999994 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.2709999999999, + "y": 498.04699999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.92799999999994, + "y": 494.96199999999993 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 380.96199999999993, + "y": 490.23599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 378.8519999999999, + "y": 484.43799999999993 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 378.8519999999999, + "y": 478.268 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 380.96199999999993, + "y": 472.46999999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 384.92799999999994, + "y": 467.74399999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 390.2709999999999, + "y": 464.65899999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 396.3469999999999, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 402.42299999999994, + "y": 464.65899999999993 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 407.7659999999999, + "y": 467.74399999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 411.7319999999999, + "y": 472.46999999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 413.8419999999999, + "y": 478.268 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1964.2880500000006, + "axes": { + "#": 3436 + }, + "bounds": { + "#": 3450 + }, + "circleRadius": 25.12737911522634, + "collisionFilter": { + "#": 3453 + }, + "constraintImpulse": { + "#": 3454 + }, + "density": 0.001, + "force": { + "#": 3455 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 2456.3981324941856, + "inverseInertia": 0.00040710013037854604, + "inverseMass": 0.5090903037362569, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9642880500000006, + "motion": 0, + "parent": null, + "position": { + "#": 3456 + }, + "positionImpulse": { + "#": 3457 + }, + "positionPrev": { + "#": 3458 + }, + "render": { + "#": 3459 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3461 + }, + "vertices": { + "#": 3462 + } + }, + [ + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + }, + { + "#": 3440 + }, + { + "#": 3441 + }, + { + "#": 3442 + }, + { + "#": 3443 + }, + { + "#": 3444 + }, + { + "#": 3445 + }, + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + } + ], + { + "x": -0.9709623885358947, + "y": -0.23923218857141804 + }, + { + "x": -0.8854046961769618, + "y": -0.4648209590668022 + }, + { + "x": -0.7485741319537845, + "y": -0.6630511058505507 + }, + { + "x": -0.5679990833611438, + "y": -0.8230291861780483 + }, + { + "x": -0.3545945158571323, + "y": -0.9350201758914327 + }, + { + "x": -0.12051872107728642, + "y": -0.9927110545722231 + }, + { + "x": 0.12051872107728642, + "y": -0.9927110545722231 + }, + { + "x": 0.3545945158571323, + "y": -0.9350201758914327 + }, + { + "x": 0.5679990833611438, + "y": -0.8230291861780483 + }, + { + "x": 0.7485741319537845, + "y": -0.6630511058505507 + }, + { + "x": 0.8854046961769618, + "y": -0.4648209590668022 + }, + { + "x": 0.9709623885358947, + "y": -0.23923218857141804 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3451 + }, + "min": { + "#": 3452 + } + }, + { + "x": 473.72999999999996, + "y": 513.842 + }, + { + "x": 423.8419999999999, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 448.78599999999994, + "y": 488.715 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 448.78599999999994, + "y": 488.715 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3460 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + }, + { + "#": 3466 + }, + { + "#": 3467 + }, + { + "#": 3468 + }, + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + }, + { + "#": 3474 + }, + { + "#": 3475 + }, + { + "#": 3476 + }, + { + "#": 3477 + }, + { + "#": 3478 + }, + { + "#": 3479 + }, + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + }, + { + "#": 3488 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 473.72999999999996, + "y": 491.74399999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 472.28099999999995, + "y": 497.625 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 469.4649999999999, + "y": 502.989 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.44899999999996, + "y": 507.52299999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 460.46299999999997, + "y": 510.964 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 454.7989999999999, + "y": 513.112 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 448.78599999999994, + "y": 513.842 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 442.77299999999997, + "y": 513.112 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 437.1089999999999, + "y": 510.964 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 432.12299999999993, + "y": 507.52299999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 428.10699999999997, + "y": 502.989 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.29099999999994, + "y": 497.625 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 423.8419999999999, + "y": 491.74399999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 423.8419999999999, + "y": 485.686 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 425.29099999999994, + "y": 479.80499999999995 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 428.10699999999997, + "y": 474.441 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 432.12299999999993, + "y": 469.907 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 437.1089999999999, + "y": 466.46599999999995 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 442.77299999999997, + "y": 464.318 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 448.78599999999994, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 454.7989999999999, + "y": 464.318 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 460.46299999999997, + "y": 466.46599999999995 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 465.44899999999996, + "y": 469.907 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 469.4649999999999, + "y": 474.441 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 472.28099999999995, + "y": 479.80499999999995 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 473.72999999999996, + "y": 485.686 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1198.7866480000002, + "axes": { + "#": 3490 + }, + "bounds": { + "#": 3501 + }, + "circleRadius": 19.696180555555557, + "collisionFilter": { + "#": 3504 + }, + "constraintImpulse": { + "#": 3505 + }, + "density": 0.001, + "force": { + "#": 3506 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 914.9296424326485, + "inverseInertia": 0.0010929802179555177, + "inverseMass": 0.834176791732168, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1987866480000002, + "motion": 0, + "parent": null, + "position": { + "#": 3507 + }, + "positionImpulse": { + "#": 3508 + }, + "positionPrev": { + "#": 3509 + }, + "render": { + "#": 3510 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3512 + }, + "vertices": { + "#": 3513 + } + }, + [ + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + } + ], + { + "x": -0.9510257213132782, + "y": -0.3091117555198423 + }, + { + "x": -0.8090026788463934, + "y": -0.5878049554225953 + }, + { + "x": -0.5878049554225953, + "y": -0.8090026788463934 + }, + { + "x": -0.3091117555198423, + "y": -0.9510257213132782 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091117555198423, + "y": -0.9510257213132782 + }, + { + "x": 0.5878049554225953, + "y": -0.8090026788463934 + }, + { + "x": 0.8090026788463934, + "y": -0.5878049554225953 + }, + { + "x": 0.9510257213132782, + "y": -0.3091117555198423 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3502 + }, + "min": { + "#": 3503 + } + }, + { + "x": 522.6379999999999, + "y": 502.496 + }, + { + "x": 483.72999999999996, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 503.18399999999997, + "y": 483.042 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 503.18399999999997, + "y": 483.042 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3511 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + }, + { + "#": 3521 + }, + { + "#": 3522 + }, + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + }, + { + "#": 3533 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.6379999999999, + "y": 486.123 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520.733, + "y": 491.984 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 517.111, + "y": 496.969 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 512.126, + "y": 500.59099999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 506.265, + "y": 502.496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 500.10299999999995, + "y": 502.496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 494.24199999999996, + "y": 500.59099999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 489.25699999999995, + "y": 496.969 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 485.635, + "y": 491.984 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 483.72999999999996, + "y": 486.123 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 483.72999999999996, + "y": 479.96099999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 485.635, + "y": 474.09999999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 489.25699999999995, + "y": 469.11499999999995 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 494.24199999999996, + "y": 465.493 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 500.10299999999995, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 506.265, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 512.126, + "y": 465.493 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 517.111, + "y": 469.11499999999995 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 520.733, + "y": 474.09999999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 522.6379999999999, + "y": 479.96099999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1308.2308839999998, + "axes": { + "#": 3535 + }, + "bounds": { + "#": 3547 + }, + "circleRadius": 20.54584619341564, + "collisionFilter": { + "#": 3550 + }, + "constraintImpulse": { + "#": 3551 + }, + "density": 0.001, + "force": { + "#": 3552 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 1089.5950647298523, + "inverseInertia": 0.0009177721452399695, + "inverseMass": 0.7643910660039119, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3082308839999999, + "motion": 0, + "parent": null, + "position": { + "#": 3553 + }, + "positionImpulse": { + "#": 3554 + }, + "positionPrev": { + "#": 3555 + }, + "render": { + "#": 3556 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3558 + }, + "vertices": { + "#": 3559 + } + }, + [ + { + "#": 3536 + }, + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + } + ], + { + "x": -0.95947162685952, + "y": -0.2818052470262856 + }, + { + "x": -0.8413229007345037, + "y": -0.5405328636629605 + }, + { + "x": -0.6547677672416276, + "y": -0.7558301204512914 + }, + { + "x": -0.41547689312826774, + "y": -0.909603733103862 + }, + { + "x": -0.14228321054537532, + "y": -0.9898259887459515 + }, + { + "x": 0.14228321054537532, + "y": -0.9898259887459515 + }, + { + "x": 0.41547689312826774, + "y": -0.909603733103862 + }, + { + "x": 0.6547677672416276, + "y": -0.7558301204512914 + }, + { + "x": 0.8413229007345037, + "y": -0.5405328636629605 + }, + { + "x": 0.95947162685952, + "y": -0.2818052470262856 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3548 + }, + "min": { + "#": 3549 + } + }, + { + "x": 573.3119999999999, + "y": 504.67999999999995 + }, + { + "x": 532.6379999999999, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 552.9749999999999, + "y": 484.13399999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 552.9749999999999, + "y": 484.13399999999996 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3557 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3560 + }, + { + "#": 3561 + }, + { + "#": 3562 + }, + { + "#": 3563 + }, + { + "#": 3564 + }, + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + }, + { + "#": 3569 + }, + { + "#": 3570 + }, + { + "#": 3571 + }, + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 573.3119999999999, + "y": 487.05799999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 571.6639999999999, + "y": 492.669 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 568.5029999999999, + "y": 497.58899999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 564.0829999999999, + "y": 501.41799999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 558.7629999999999, + "y": 503.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 552.9749999999999, + "y": 504.67999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 547.1869999999999, + "y": 503.84799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 541.867, + "y": 501.41799999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 537.4469999999999, + "y": 497.58899999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 534.286, + "y": 492.669 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.6379999999999, + "y": 487.05799999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 532.6379999999999, + "y": 481.21 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 534.286, + "y": 475.59899999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 537.4469999999999, + "y": 470.679 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 541.867, + "y": 466.84999999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 547.1869999999999, + "y": 464.41999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 552.9749999999999, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 558.7629999999999, + "y": 464.41999999999996 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 564.0829999999999, + "y": 466.84999999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 568.5029999999999, + "y": 470.679 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 571.6639999999999, + "y": 475.59899999999993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 573.3119999999999, + "y": 481.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 807.3207440000001, + "axes": { + "#": 3583 + }, + "bounds": { + "#": 3593 + }, + "circleRadius": 16.194894547325102, + "collisionFilter": { + "#": 3596 + }, + "constraintImpulse": { + "#": 3597 + }, + "density": 0.001, + "force": { + "#": 3598 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 414.96234834778403, + "inverseInertia": 0.002409857193023908, + "inverseMass": 1.2386650627176252, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8073207440000001, + "motion": 0, + "parent": null, + "position": { + "#": 3599 + }, + "positionImpulse": { + "#": 3600 + }, + "positionPrev": { + "#": 3601 + }, + "render": { + "#": 3602 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3604 + }, + "vertices": { + "#": 3605 + } + }, + [ + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + } + ], + { + "x": -0.9396687718134943, + "y": -0.34208566073210267 + }, + { + "x": -0.7661039978199309, + "y": -0.6427166284797051 + }, + { + "x": -0.4999635742391255, + "y": -0.8660464331859108 + }, + { + "x": -0.17370419268796775, + "y": -0.9847978744100849 + }, + { + "x": 0.17370419268796775, + "y": -0.9847978744100849 + }, + { + "x": 0.4999635742391255, + "y": -0.8660464331859108 + }, + { + "x": 0.7661039978199309, + "y": -0.6427166284797051 + }, + { + "x": 0.9396687718134943, + "y": -0.34208566073210267 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3594 + }, + "min": { + "#": 3595 + } + }, + { + "x": 615.2099999999998, + "y": 495.97799999999995 + }, + { + "x": 583.3119999999999, + "y": 463.58799999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.2609999999999, + "y": 479.78299999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.2609999999999, + "y": 479.78299999999996 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3603 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3606 + }, + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + }, + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.2099999999998, + "y": 482.59499999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.2859999999998, + "y": 487.87999999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.6709999999998, + "y": 492.18899999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.7999999999998, + "y": 495.001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 599.2609999999999, + "y": 495.97799999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 593.7219999999999, + "y": 495.001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 588.8509999999999, + "y": 492.18899999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 585.2359999999999, + "y": 487.87999999999994 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 583.3119999999999, + "y": 482.59499999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 583.3119999999999, + "y": 476.97099999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 585.2359999999999, + "y": 471.686 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 588.8509999999999, + "y": 467.37699999999995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 593.7219999999999, + "y": 464.56499999999994 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 599.2609999999999, + "y": 463.58799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 604.7999999999998, + "y": 464.56499999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 609.6709999999998, + "y": 467.37699999999995 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 613.2859999999998, + "y": 471.686 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 615.2099999999998, + "y": 476.97099999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1402.4361439999998, + "axes": { + "#": 3625 + }, + "bounds": { + "#": 3637 + }, + "circleRadius": 21.27295524691358, + "collisionFilter": { + "#": 3640 + }, + "constraintImpulse": { + "#": 3641 + }, + "density": 0.001, + "force": { + "#": 3642 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 1252.1677796786169, + "inverseInertia": 0.0007986150228659145, + "inverseMass": 0.7130449427435751, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4024361439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3643 + }, + "positionImpulse": { + "#": 3644 + }, + "positionPrev": { + "#": 3645 + }, + "render": { + "#": 3646 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3648 + }, + "vertices": { + "#": 3649 + } + }, + [ + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + }, + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + } + ], + { + "x": -0.9595362636667195, + "y": -0.28158508253902903 + }, + { + "x": -0.8412321274033122, + "y": -0.5406741235018536 + }, + { + "x": -0.6548487942859689, + "y": -0.7557599199628232 + }, + { + "x": -0.4153577118331273, + "y": -0.9096581617403039 + }, + { + "x": -0.14236931910518327, + "y": -0.9898136071895186 + }, + { + "x": 0.14236931910518327, + "y": -0.9898136071895186 + }, + { + "x": 0.4153577118331273, + "y": -0.9096581617403039 + }, + { + "x": 0.6548487942859689, + "y": -0.7557599199628232 + }, + { + "x": 0.8412321274033122, + "y": -0.5406741235018536 + }, + { + "x": 0.9595362636667195, + "y": -0.28158508253902903 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3638 + }, + "min": { + "#": 3639 + } + }, + { + "x": 142.112, + "y": 571.2860000000001 + }, + { + "x": 100, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.056, + "y": 550.013 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.056, + "y": 550.013 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3647 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + }, + { + "#": 3657 + }, + { + "#": 3658 + }, + { + "#": 3659 + }, + { + "#": 3660 + }, + { + "#": 3661 + }, + { + "#": 3662 + }, + { + "#": 3663 + }, + { + "#": 3664 + }, + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 142.112, + "y": 553.0400000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.40699999999998, + "y": 558.85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 137.13299999999998, + "y": 563.9440000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 132.55700000000002, + "y": 567.909 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 127.04899999999999, + "y": 570.4240000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 121.056, + "y": 571.2860000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 115.063, + "y": 570.4240000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 109.55499999999999, + "y": 567.909 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 104.979, + "y": 563.9440000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 101.705, + "y": 558.85 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 553.0400000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 546.986 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 101.705, + "y": 541.176 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 104.979, + "y": 536.082 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 109.55499999999999, + "y": 532.117 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 115.063, + "y": 529.6020000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 121.056, + "y": 528.74 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 127.04899999999999, + "y": 529.6020000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 132.55700000000002, + "y": 532.117 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 137.13299999999998, + "y": 536.082 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.40699999999998, + "y": 541.176 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 142.112, + "y": 546.986 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1669.8625200000004, + "axes": { + "#": 3673 + }, + "bounds": { + "#": 3686 + }, + "circleRadius": 23.187435699588477, + "collisionFilter": { + "#": 3689 + }, + "constraintImpulse": { + "#": 3690 + }, + "density": 0.001, + "force": { + "#": 3691 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 1775.22327984156, + "inverseInertia": 0.0005633094221754746, + "inverseMass": 0.598851694689213, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6698625200000003, + "motion": 0, + "parent": null, + "position": { + "#": 3692 + }, + "positionImpulse": { + "#": 3693 + }, + "positionPrev": { + "#": 3694 + }, + "render": { + "#": 3695 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3697 + }, + "vertices": { + "#": 3698 + } + }, + [ + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + }, + { + "#": 3683 + }, + { + "#": 3684 + }, + { + "#": 3685 + } + ], + { + "x": -0.9659023182542247, + "y": -0.2589067623510726 + }, + { + "x": -0.866100319102001, + "y": -0.49987022040866963 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.49987022040866963, + "y": -0.866100319102001 + }, + { + "x": -0.2589067623510726, + "y": -0.9659023182542247 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2589067623510726, + "y": -0.9659023182542247 + }, + { + "x": 0.49987022040866963, + "y": -0.866100319102001 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.866100319102001, + "y": -0.49987022040866963 + }, + { + "x": 0.9659023182542247, + "y": -0.2589067623510726 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3687 + }, + "min": { + "#": 3688 + } + }, + { + "x": 198.09, + "y": 574.7180000000001 + }, + { + "x": 152.112, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.101, + "y": 551.729 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.101, + "y": 551.729 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3696 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + }, + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + }, + { + "#": 3714 + }, + { + "#": 3715 + }, + { + "#": 3716 + }, + { + "#": 3717 + }, + { + "#": 3718 + }, + { + "#": 3719 + }, + { + "#": 3720 + }, + { + "#": 3721 + }, + { + "#": 3722 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 198.09, + "y": 554.7560000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 196.523, + "y": 560.6020000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.49699999999999, + "y": 565.845 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 189.217, + "y": 570.125 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 183.974, + "y": 573.1510000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 178.128, + "y": 574.7180000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 172.074, + "y": 574.7180000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 166.228, + "y": 573.1510000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 160.98499999999999, + "y": 570.125 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 156.705, + "y": 565.845 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 153.679, + "y": 560.6020000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 152.112, + "y": 554.7560000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 152.112, + "y": 548.702 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 153.679, + "y": 542.856 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.705, + "y": 537.613 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 160.98499999999999, + "y": 533.3330000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 166.228, + "y": 530.307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 172.074, + "y": 528.74 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 178.128, + "y": 528.74 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 183.974, + "y": 530.307 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 189.217, + "y": 533.3330000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 193.49699999999999, + "y": 537.613 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 196.523, + "y": 542.856 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 198.09, + "y": 548.702 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2578.6951839999997, + "axes": { + "#": 3724 + }, + "bounds": { + "#": 3738 + }, + "circleRadius": 28.790187757201647, + "collisionFilter": { + "#": 3741 + }, + "constraintImpulse": { + "#": 3742 + }, + "density": 0.001, + "force": { + "#": 3743 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 4233.391444164257, + "inverseInertia": 0.00023621722989460446, + "inverseMass": 0.3877930226901917, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.578695184, + "motion": 0, + "parent": null, + "position": { + "#": 3744 + }, + "positionImpulse": { + "#": 3745 + }, + "positionPrev": { + "#": 3746 + }, + "render": { + "#": 3747 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3749 + }, + "vertices": { + "#": 3750 + } + }, + [ + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + }, + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + } + ], + { + "x": -0.9709422967977464, + "y": -0.23931371939175763 + }, + { + "x": -0.8854957227054148, + "y": -0.46464752777822377 + }, + { + "x": -0.7484655790656051, + "y": -0.6631736401229987 + }, + { + "x": -0.5679955598174117, + "y": -0.8230316178785023 + }, + { + "x": -0.3547367594758017, + "y": -0.9349662194307382 + }, + { + "x": -0.12045184716607447, + "y": -0.9927191710218356 + }, + { + "x": 0.12045184716607447, + "y": -0.9927191710218356 + }, + { + "x": 0.3547367594758017, + "y": -0.9349662194307382 + }, + { + "x": 0.5679955598174117, + "y": -0.8230316178785023 + }, + { + "x": 0.7484655790656051, + "y": -0.6631736401229987 + }, + { + "x": 0.8854957227054148, + "y": -0.46464752777822377 + }, + { + "x": 0.9709422967977464, + "y": -0.23931371939175763 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3739 + }, + "min": { + "#": 3740 + } + }, + { + "x": 265.25, + "y": 586.3199999999999 + }, + { + "x": 208.09, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 236.67000000000002, + "y": 557.53 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 236.67000000000002, + "y": 557.53 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3748 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3751 + }, + { + "#": 3752 + }, + { + "#": 3753 + }, + { + "#": 3754 + }, + { + "#": 3755 + }, + { + "#": 3756 + }, + { + "#": 3757 + }, + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + }, + { + "#": 3776 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265.25, + "y": 561 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 263.58900000000006, + "y": 567.7389999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260.36400000000003, + "y": 573.885 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 255.76100000000002, + "y": 579.0799999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250.049, + "y": 583.0219999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 243.56, + "y": 585.4839999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 236.67000000000002, + "y": 586.3199999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 229.78000000000003, + "y": 585.4839999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 223.29100000000003, + "y": 583.0219999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 217.579, + "y": 579.0799999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 212.97600000000003, + "y": 573.885 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 209.751, + "y": 567.7389999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 208.09, + "y": 561 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 208.09, + "y": 554.06 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 209.751, + "y": 547.321 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 212.97600000000003, + "y": 541.175 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 217.579, + "y": 535.98 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 223.29100000000003, + "y": 532.038 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 229.78000000000003, + "y": 529.576 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 236.67000000000002, + "y": 528.74 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 243.56, + "y": 529.576 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 250.049, + "y": 532.038 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 255.76100000000002, + "y": 535.98 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 260.36400000000003, + "y": 541.175 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 263.58900000000006, + "y": 547.321 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 265.25, + "y": 554.06 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 792.3786020000001, + "axes": { + "#": 3778 + }, + "bounds": { + "#": 3788 + }, + "circleRadius": 16.04417438271605, + "collisionFilter": { + "#": 3791 + }, + "constraintImpulse": { + "#": 3792 + }, + "density": 0.001, + "force": { + "#": 3793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 399.7439941436189, + "inverseInertia": 0.0025016010613050583, + "inverseMass": 1.2620229742145408, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7923786020000001, + "motion": 0, + "parent": null, + "position": { + "#": 3794 + }, + "positionImpulse": { + "#": 3795 + }, + "positionPrev": { + "#": 3796 + }, + "render": { + "#": 3797 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3799 + }, + "vertices": { + "#": 3800 + } + }, + [ + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + } + ], + { + "x": -0.9397357682278553, + "y": -0.3419015734289659 + }, + { + "x": -0.7660547215275308, + "y": -0.6427753601573236 + }, + { + "x": -0.4999606451996678, + "y": -0.8660481240967687 + }, + { + "x": -0.17356007216033498, + "y": -0.9848232843265331 + }, + { + "x": 0.17356007216033498, + "y": -0.9848232843265331 + }, + { + "x": 0.4999606451996678, + "y": -0.8660481240967687 + }, + { + "x": 0.7660547215275308, + "y": -0.6427753601573236 + }, + { + "x": 0.9397357682278553, + "y": -0.3419015734289659 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3789 + }, + "min": { + "#": 3790 + } + }, + { + "x": 306.85, + "y": 560.828 + }, + { + "x": 275.25, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 291.05, + "y": 544.784 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 291.05, + "y": 544.784 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3798 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3801 + }, + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + }, + { + "#": 3809 + }, + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 306.85, + "y": 547.5699999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 304.945, + "y": 552.806 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 301.363, + "y": 557.075 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 296.53700000000003, + "y": 559.861 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.05, + "y": 560.828 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.563, + "y": 559.861 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280.737, + "y": 557.075 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 277.15500000000003, + "y": 552.806 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 275.25, + "y": 547.5699999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.25, + "y": 541.998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 277.15500000000003, + "y": 536.762 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.737, + "y": 532.4929999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 285.563, + "y": 529.707 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 291.05, + "y": 528.74 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 296.53700000000003, + "y": 529.707 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.363, + "y": 532.4929999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 304.945, + "y": 536.762 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 306.85, + "y": 541.998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 753.695398, + "axes": { + "#": 3820 + }, + "bounds": { + "#": 3829 + }, + "circleRadius": 15.690136316872428, + "collisionFilter": { + "#": 3832 + }, + "constraintImpulse": { + "#": 3833 + }, + "density": 0.001, + "force": { + "#": 3834 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 361.68483161032174, + "inverseInertia": 0.002764838092733171, + "inverseMass": 1.326795947877076, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.753695398, + "motion": 0, + "parent": null, + "position": { + "#": 3835 + }, + "positionImpulse": { + "#": 3836 + }, + "positionPrev": { + "#": 3837 + }, + "render": { + "#": 3838 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3840 + }, + "vertices": { + "#": 3841 + } + }, + [ + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + } + ], + { + "x": -0.9238675146962287, + "y": -0.38271244464873827 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.38271244464873827, + "y": -0.9238675146962287 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38271244464873827, + "y": -0.9238675146962287 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238675146962287, + "y": -0.38271244464873827 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3830 + }, + "min": { + "#": 3831 + } + }, + { + "x": 347.62800000000004, + "y": 559.518 + }, + { + "x": 316.85, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 332.23900000000003, + "y": 544.129 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 332.23900000000003, + "y": 544.129 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3839 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3842 + }, + { + "#": 3843 + }, + { + "#": 3844 + }, + { + "#": 3845 + }, + { + "#": 3846 + }, + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 347.62800000000004, + "y": 547.19 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 345.285, + "y": 552.846 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340.956, + "y": 557.1750000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335.3, + "y": 559.518 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 329.17800000000005, + "y": 559.518 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 323.52200000000005, + "y": 557.1750000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 319.19300000000004, + "y": 552.846 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 316.85, + "y": 547.19 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 316.85, + "y": 541.068 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 319.19300000000004, + "y": 535.412 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.52200000000005, + "y": 531.083 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 329.17800000000005, + "y": 528.74 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 335.3, + "y": 528.74 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 340.956, + "y": 531.083 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 345.285, + "y": 535.412 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.62800000000004, + "y": 541.068 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1630.6059260000002, + "axes": { + "#": 3859 + }, + "bounds": { + "#": 3872 + }, + "circleRadius": 22.913258744855966, + "collisionFilter": { + "#": 3875 + }, + "constraintImpulse": { + "#": 3876 + }, + "density": 0.001, + "force": { + "#": 3877 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 1692.7373724676456, + "inverseInertia": 0.0005907590960446605, + "inverseMass": 0.6132689597498738, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6306059260000003, + "motion": 0, + "parent": null, + "position": { + "#": 3878 + }, + "positionImpulse": { + "#": 3879 + }, + "positionPrev": { + "#": 3880 + }, + "render": { + "#": 3881 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3883 + }, + "vertices": { + "#": 3884 + } + }, + [ + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + } + ], + { + "x": -0.9659346205288032, + "y": -0.25878622232235815 + }, + { + "x": -0.8660018316298927, + "y": -0.500040825946913 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.500040825946913, + "y": -0.8660018316298927 + }, + { + "x": -0.25878622232235815, + "y": -0.9659346205288032 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25878622232235815, + "y": -0.9659346205288032 + }, + { + "x": 0.500040825946913, + "y": -0.8660018316298927 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660018316298927, + "y": -0.500040825946913 + }, + { + "x": 0.9659346205288032, + "y": -0.25878622232235815 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3873 + }, + "min": { + "#": 3874 + } + }, + { + "x": 403.062, + "y": 574.174 + }, + { + "x": 357.62800000000004, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.345, + "y": 551.457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.345, + "y": 551.457 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3882 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3885 + }, + { + "#": 3886 + }, + { + "#": 3887 + }, + { + "#": 3888 + }, + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + }, + { + "#": 3893 + }, + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + }, + { + "#": 3907 + }, + { + "#": 3908 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 403.062, + "y": 554.448 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 401.514, + "y": 560.226 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 398.523, + "y": 565.406 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 394.29400000000004, + "y": 569.635 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 389.11400000000003, + "y": 572.626 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 383.336, + "y": 574.174 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 377.35400000000004, + "y": 574.174 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 371.576, + "y": 572.626 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 366.396, + "y": 569.635 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 362.16700000000003, + "y": 565.406 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 359.17600000000004, + "y": 560.226 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 357.62800000000004, + "y": 554.448 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 357.62800000000004, + "y": 548.466 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 359.17600000000004, + "y": 542.688 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 362.16700000000003, + "y": 537.508 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 366.396, + "y": 533.279 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 371.576, + "y": 530.288 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 377.35400000000004, + "y": 528.74 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 383.336, + "y": 528.74 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 389.11400000000003, + "y": 530.288 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 394.29400000000004, + "y": 533.279 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 398.523, + "y": 537.508 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 401.514, + "y": 542.688 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 403.062, + "y": 548.466 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1793.4883420000006, + "axes": { + "#": 3910 + }, + "bounds": { + "#": 3924 + }, + "circleRadius": 24.009837962962962, + "collisionFilter": { + "#": 3927 + }, + "constraintImpulse": { + "#": 3928 + }, + "density": 0.001, + "force": { + "#": 3929 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 2047.790506990953, + "inverseInertia": 0.000488331202135228, + "inverseMass": 0.5575726234634202, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7934883420000005, + "motion": 0, + "parent": null, + "position": { + "#": 3930 + }, + "positionImpulse": { + "#": 3931 + }, + "positionPrev": { + "#": 3932 + }, + "render": { + "#": 3933 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3935 + }, + "vertices": { + "#": 3936 + } + }, + [ + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + }, + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + } + ], + { + "x": -0.9709500701443841, + "y": -0.23928217920818035 + }, + { + "x": -0.885442339677996, + "y": -0.46474924755781605 + }, + { + "x": -0.7484852853686965, + "y": -0.6631513986915363 + }, + { + "x": -0.5681043565520763, + "y": -0.8229565238009547 + }, + { + "x": -0.354529231282999, + "y": -0.9350449316294303 + }, + { + "x": -0.12058933698905597, + "y": -0.9927024789958672 + }, + { + "x": 0.12058933698905597, + "y": -0.9927024789958672 + }, + { + "x": 0.354529231282999, + "y": -0.9350449316294303 + }, + { + "x": 0.5681043565520763, + "y": -0.8229565238009547 + }, + { + "x": 0.7484852853686965, + "y": -0.6631513986915363 + }, + { + "x": 0.885442339677996, + "y": -0.46474924755781605 + }, + { + "x": 0.9709500701443841, + "y": -0.23928217920818035 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3925 + }, + "min": { + "#": 3926 + } + }, + { + "x": 460.73199999999997, + "y": 576.76 + }, + { + "x": 413.062, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 436.897, + "y": 552.75 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 436.897, + "y": 552.75 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3934 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3937 + }, + { + "#": 3938 + }, + { + "#": 3939 + }, + { + "#": 3940 + }, + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + }, + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + }, + { + "#": 3962 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460.73199999999997, + "y": 555.644 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 459.347, + "y": 561.264 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 456.657, + "y": 566.389 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.818, + "y": 570.722 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 448.055, + "y": 574.01 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.643, + "y": 576.062 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 436.897, + "y": 576.76 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 431.151, + "y": 576.062 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.739, + "y": 574.01 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 420.976, + "y": 570.722 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 417.137, + "y": 566.389 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 414.447, + "y": 561.264 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 413.062, + "y": 555.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 413.062, + "y": 549.856 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.447, + "y": 544.236 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 417.137, + "y": 539.111 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 420.976, + "y": 534.778 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 425.739, + "y": 531.49 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 431.151, + "y": 529.438 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 436.897, + "y": 528.74 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 442.643, + "y": 529.438 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 448.055, + "y": 531.49 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 452.818, + "y": 534.778 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 456.657, + "y": 539.111 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 459.347, + "y": 544.236 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 460.73199999999997, + "y": 549.856 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1007.2220640000002, + "axes": { + "#": 3964 + }, + "bounds": { + "#": 3975 + }, + "circleRadius": 18.05394804526749, + "collisionFilter": { + "#": 3978 + }, + "constraintImpulse": { + "#": 3979 + }, + "density": 0.001, + "force": { + "#": 3980 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 645.8837609881251, + "inverseInertia": 0.0015482662057799987, + "inverseMass": 0.9928297202194726, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0072220640000003, + "motion": 0, + "parent": null, + "position": { + "#": 3981 + }, + "positionImpulse": { + "#": 3982 + }, + "positionPrev": { + "#": 3983 + }, + "render": { + "#": 3984 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3986 + }, + "vertices": { + "#": 3987 + } + }, + [ + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + } + ], + { + "x": -0.9510288646450753, + "y": -0.3091020844509128 + }, + { + "x": -0.8090421944642641, + "y": -0.5877505657814782 + }, + { + "x": -0.5877505657814782, + "y": -0.8090421944642641 + }, + { + "x": -0.3091020844509128, + "y": -0.9510288646450753 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091020844509128, + "y": -0.9510288646450753 + }, + { + "x": 0.5877505657814782, + "y": -0.8090421944642641 + }, + { + "x": 0.8090421944642641, + "y": -0.5877505657814782 + }, + { + "x": 0.9510288646450753, + "y": -0.3091020844509128 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3976 + }, + "min": { + "#": 3977 + } + }, + { + "x": 506.39599999999996, + "y": 564.404 + }, + { + "x": 470.73199999999997, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 488.56399999999996, + "y": 546.572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 488.56399999999996, + "y": 546.572 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3985 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + }, + { + "#": 3998 + }, + { + "#": 3999 + }, + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + }, + { + "#": 4006 + }, + { + "#": 4007 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 506.39599999999996, + "y": 549.396 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 504.65, + "y": 554.768 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 501.33, + "y": 559.338 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 496.76, + "y": 562.658 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 491.388, + "y": 564.404 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 485.73999999999995, + "y": 564.404 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480.36799999999994, + "y": 562.658 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 475.79799999999994, + "y": 559.338 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 472.47799999999995, + "y": 554.768 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 470.73199999999997, + "y": 549.396 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 470.73199999999997, + "y": 543.748 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 472.47799999999995, + "y": 538.376 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 475.79799999999994, + "y": 533.806 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 480.36799999999994, + "y": 530.486 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 485.73999999999995, + "y": 528.74 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 491.388, + "y": 528.74 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 496.76, + "y": 530.486 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 501.33, + "y": 533.806 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 504.65, + "y": 538.376 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 506.39599999999996, + "y": 543.748 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1064.9913560000002, + "axes": { + "#": 4009 + }, + "bounds": { + "#": 4020 + }, + "circleRadius": 18.564107510288068, + "collisionFilter": { + "#": 4023 + }, + "constraintImpulse": { + "#": 4024 + }, + "density": 0.001, + "force": { + "#": 4025 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 722.0978790866207, + "inverseInertia": 0.0013848538113211146, + "inverseMass": 0.9389747572749312, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0649913560000002, + "motion": 0, + "parent": null, + "position": { + "#": 4026 + }, + "positionImpulse": { + "#": 4027 + }, + "positionPrev": { + "#": 4028 + }, + "render": { + "#": 4029 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4031 + }, + "vertices": { + "#": 4032 + } + }, + [ + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + }, + { + "#": 4019 + } + ], + { + "x": -0.9510492501819376, + "y": -0.30903935627743956 + }, + { + "x": -0.8090189051635235, + "y": -0.5877826223086335 + }, + { + "x": -0.5877826223086335, + "y": -0.8090189051635235 + }, + { + "x": -0.30903935627743956, + "y": -0.9510492501819376 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30903935627743956, + "y": -0.9510492501819376 + }, + { + "x": 0.5877826223086335, + "y": -0.8090189051635235 + }, + { + "x": 0.8090189051635235, + "y": -0.5877826223086335 + }, + { + "x": 0.9510492501819376, + "y": -0.30903935627743956 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4021 + }, + "min": { + "#": 4022 + } + }, + { + "x": 553.068, + "y": 565.412 + }, + { + "x": 516.396, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 534.732, + "y": 547.076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 534.732, + "y": 547.076 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4030 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + }, + { + "#": 4048 + }, + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 553.068, + "y": 549.98 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 551.273, + "y": 555.504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 547.8589999999999, + "y": 560.203 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 543.16, + "y": 563.6170000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 537.636, + "y": 565.412 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 531.828, + "y": 565.412 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.304, + "y": 563.6170000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 521.605, + "y": 560.203 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.191, + "y": 555.504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.396, + "y": 549.98 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.396, + "y": 544.172 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.191, + "y": 538.648 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 521.605, + "y": 533.9490000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 526.304, + "y": 530.535 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 531.828, + "y": 528.74 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 537.636, + "y": 528.74 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 543.16, + "y": 530.535 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 547.8589999999999, + "y": 533.9490000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 551.273, + "y": 538.648 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 553.068, + "y": 544.172 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1260.7906620000003, + "axes": { + "#": 4054 + }, + "bounds": { + "#": 4066 + }, + "circleRadius": 20.169945987654323, + "collisionFilter": { + "#": 4069 + }, + "constraintImpulse": { + "#": 4070 + }, + "density": 0.001, + "force": { + "#": 4071 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 1012.0041641764243, + "inverseInertia": 0.000988138226500092, + "inverseMass": 0.7931530825376621, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2607906620000005, + "motion": 0, + "parent": null, + "position": { + "#": 4072 + }, + "positionImpulse": { + "#": 4073 + }, + "positionPrev": { + "#": 4074 + }, + "render": { + "#": 4075 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4077 + }, + "vertices": { + "#": 4078 + } + }, + [ + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + } + ], + { + "x": -0.9594735907257443, + "y": -0.28179856049995516 + }, + { + "x": -0.8412576932540721, + "y": -0.5406343436564474 + }, + { + "x": -0.6548708437223062, + "y": -0.7557408140642099 + }, + { + "x": -0.4154427589137636, + "y": -0.9096193237097158 + }, + { + "x": -0.1422991312627322, + "y": -0.9898237000809141 + }, + { + "x": 0.1422991312627322, + "y": -0.9898237000809141 + }, + { + "x": 0.4154427589137636, + "y": -0.9096193237097158 + }, + { + "x": 0.6548708437223062, + "y": -0.7557408140642099 + }, + { + "x": 0.8412576932540721, + "y": -0.5406343436564474 + }, + { + "x": 0.9594735907257443, + "y": -0.28179856049995516 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4067 + }, + "min": { + "#": 4068 + } + }, + { + "x": 602.998, + "y": 569.0799999999999 + }, + { + "x": 563.068, + "y": 528.74 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 583.033, + "y": 548.91 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 583.033, + "y": 548.91 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4076 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + }, + { + "#": 4100 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 602.998, + "y": 551.78 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 601.38, + "y": 557.289 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 598.2760000000001, + "y": 562.1189999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 593.938, + "y": 565.8779999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 588.716, + "y": 568.2629999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 583.033, + "y": 569.0799999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 577.35, + "y": 568.2629999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 572.128, + "y": 565.8779999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 567.79, + "y": 562.1189999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 564.686, + "y": 557.289 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 563.068, + "y": 551.78 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 563.068, + "y": 546.04 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 564.686, + "y": 540.531 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 567.79, + "y": 535.701 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 572.128, + "y": 531.942 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 577.35, + "y": 529.557 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 583.033, + "y": 528.74 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 588.716, + "y": 529.557 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 593.938, + "y": 531.942 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 598.2760000000001, + "y": 535.701 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 601.38, + "y": 540.531 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 602.998, + "y": 546.04 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1274.4243100000003, + "axes": { + "#": 4102 + }, + "bounds": { + "#": 4114 + }, + "circleRadius": 20.278870884773664, + "collisionFilter": { + "#": 4117 + }, + "constraintImpulse": { + "#": 4118 + }, + "density": 0.001, + "force": { + "#": 4119 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 1034.0092576280601, + "inverseInertia": 0.0009671093296533197, + "inverseMass": 0.7846680200254496, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2744243100000003, + "motion": 0, + "parent": null, + "position": { + "#": 4120 + }, + "positionImpulse": { + "#": 4121 + }, + "positionPrev": { + "#": 4122 + }, + "render": { + "#": 4123 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4125 + }, + "vertices": { + "#": 4126 + } + }, + [ + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + }, + { + "#": 4110 + }, + { + "#": 4111 + }, + { + "#": 4112 + }, + { + "#": 4113 + } + ], + { + "x": -0.9594978217257015, + "y": -0.2817160451654006 + }, + { + "x": -0.8413135484521326, + "y": -0.540547419928059 + }, + { + "x": -0.6548909622863403, + "y": -0.7557233802891579 + }, + { + "x": -0.41526429982431406, + "y": -0.9097008086681149 + }, + { + "x": -0.14241576969235267, + "y": -0.9898069248812793 + }, + { + "x": 0.14241576969235267, + "y": -0.9898069248812793 + }, + { + "x": 0.41526429982431406, + "y": -0.9097008086681149 + }, + { + "x": 0.6548909622863403, + "y": -0.7557233802891579 + }, + { + "x": 0.8413135484521326, + "y": -0.540547419928059 + }, + { + "x": 0.9594978217257015, + "y": -0.2817160451654006 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4115 + }, + "min": { + "#": 4116 + } + }, + { + "x": 140.144, + "y": 636.8779999999999 + }, + { + "x": 100, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120.072, + "y": 616.5989999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120.072, + "y": 616.5989999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4124 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4127 + }, + { + "#": 4128 + }, + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + }, + { + "#": 4139 + }, + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + }, + { + "#": 4144 + }, + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140.144, + "y": 619.4849999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 138.518, + "y": 625.0229999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 135.398, + "y": 629.8789999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 131.036, + "y": 633.6589999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 125.785, + "y": 636.0559999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120.072, + "y": 636.8779999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 114.35900000000001, + "y": 636.0559999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 109.108, + "y": 633.6589999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 104.74600000000001, + "y": 629.8789999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 101.626, + "y": 625.0229999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 619.4849999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 613.713 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 101.626, + "y": 608.175 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 104.74600000000001, + "y": 603.319 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 109.108, + "y": 599.539 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 114.35900000000001, + "y": 597.1419999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 120.072, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 125.785, + "y": 597.1419999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 131.036, + "y": 599.539 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 135.398, + "y": 603.319 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 138.518, + "y": 608.175 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 140.144, + "y": 613.713 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1333.4219, + "axes": { + "#": 4150 + }, + "bounds": { + "#": 4162 + }, + "circleRadius": 20.74273405349794, + "collisionFilter": { + "#": 4165 + }, + "constraintImpulse": { + "#": 4166 + }, + "density": 0.001, + "force": { + "#": 4167 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 1131.961092953285, + "inverseInertia": 0.0008834225895441347, + "inverseMass": 0.7499501845589907, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3334219, + "motion": 0, + "parent": null, + "position": { + "#": 4168 + }, + "positionImpulse": { + "#": 4169 + }, + "positionPrev": { + "#": 4170 + }, + "render": { + "#": 4171 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4173 + }, + "vertices": { + "#": 4174 + } + }, + [ + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + }, + { + "#": 4157 + }, + { + "#": 4158 + }, + { + "#": 4159 + }, + { + "#": 4160 + }, + { + "#": 4161 + } + ], + { + "x": -0.9594652279920087, + "y": -0.28182703254699093 + }, + { + "x": -0.8412610105438605, + "y": -0.5406291817306226 + }, + { + "x": -0.6548273560052427, + "y": -0.7557784952135005 + }, + { + "x": -0.41549954801129746, + "y": -0.9095933847617887 + }, + { + "x": -0.14227495337783921, + "y": -0.9898271756429674 + }, + { + "x": 0.14227495337783921, + "y": -0.9898271756429674 + }, + { + "x": 0.41549954801129746, + "y": -0.9095933847617887 + }, + { + "x": 0.6548273560052427, + "y": -0.7557784952135005 + }, + { + "x": 0.8412610105438605, + "y": -0.5406291817306226 + }, + { + "x": 0.9594652279920087, + "y": -0.28182703254699093 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4163 + }, + "min": { + "#": 4164 + } + }, + { + "x": 191.20800000000003, + "y": 637.806 + }, + { + "x": 150.144, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170.67600000000002, + "y": 617.063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170.67600000000002, + "y": 617.063 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4172 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + }, + { + "#": 4187 + }, + { + "#": 4188 + }, + { + "#": 4189 + }, + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 191.20800000000003, + "y": 620.015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 189.544, + "y": 625.68 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.352, + "y": 630.6469999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 181.89000000000001, + "y": 634.513 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 176.52, + "y": 636.966 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170.67600000000002, + "y": 637.806 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 164.83200000000002, + "y": 636.966 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 159.46200000000002, + "y": 634.513 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 155.00000000000003, + "y": 630.6469999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 151.80800000000002, + "y": 625.68 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 150.144, + "y": 620.015 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 150.144, + "y": 614.111 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 151.80800000000002, + "y": 608.446 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 155.00000000000003, + "y": 603.479 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 159.46200000000002, + "y": 599.6129999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 164.83200000000002, + "y": 597.16 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 170.67600000000002, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 176.52, + "y": 597.16 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 181.89000000000001, + "y": 599.6129999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 186.352, + "y": 603.479 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 189.544, + "y": 608.446 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 191.20800000000003, + "y": 614.111 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1871.187918, + "axes": { + "#": 4198 + }, + "bounds": { + "#": 4212 + }, + "circleRadius": 24.524498456790123, + "collisionFilter": { + "#": 4215 + }, + "constraintImpulse": { + "#": 4216 + }, + "density": 0.001, + "force": { + "#": 4217 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 2229.0674939927567, + "inverseInertia": 0.00044861808926600834, + "inverseMass": 0.5344198679247778, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8711879180000002, + "motion": 0, + "parent": null, + "position": { + "#": 4218 + }, + "positionImpulse": { + "#": 4219 + }, + "positionPrev": { + "#": 4220 + }, + "render": { + "#": 4221 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4223 + }, + "vertices": { + "#": 4224 + } + }, + [ + { + "#": 4199 + }, + { + "#": 4200 + }, + { + "#": 4201 + }, + { + "#": 4202 + }, + { + "#": 4203 + }, + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + }, + { + "#": 4210 + }, + { + "#": 4211 + } + ], + { + "x": -0.9709429732345612, + "y": -0.23931097493936654 + }, + { + "x": -0.8854240051469862, + "y": -0.4647841769138335 + }, + { + "x": -0.7485282053999598, + "y": -0.6631029525803032 + }, + { + "x": -0.5679779885552098, + "y": -0.8230437439873886 + }, + { + "x": -0.35467972757101507, + "y": -0.9349878559907345 + }, + { + "x": -0.12043239564837492, + "y": -0.9927215309835852 + }, + { + "x": 0.12043239564837492, + "y": -0.9927215309835852 + }, + { + "x": 0.35467972757101507, + "y": -0.9349878559907345 + }, + { + "x": 0.5679779885552098, + "y": -0.8230437439873886 + }, + { + "x": 0.7485282053999598, + "y": -0.6631029525803032 + }, + { + "x": 0.8854240051469862, + "y": -0.4647841769138335 + }, + { + "x": 0.9709429732345612, + "y": -0.23931097493936654 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4213 + }, + "min": { + "#": 4214 + } + }, + { + "x": 249.90000000000003, + "y": 645.3679999999999 + }, + { + "x": 201.20800000000003, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225.55400000000003, + "y": 620.8439999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225.55400000000003, + "y": 620.8439999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4222 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + }, + { + "#": 4232 + }, + { + "#": 4233 + }, + { + "#": 4234 + }, + { + "#": 4235 + }, + { + "#": 4236 + }, + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + }, + { + "#": 4250 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 249.90000000000003, + "y": 623.8 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 248.48500000000004, + "y": 629.5409999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 245.73700000000002, + "y": 634.776 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.81700000000004, + "y": 639.2009999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 236.95100000000002, + "y": 642.559 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 231.42300000000003, + "y": 644.656 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 225.55400000000003, + "y": 645.3679999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 219.68500000000003, + "y": 644.656 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 214.15700000000004, + "y": 642.559 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 209.29100000000003, + "y": 639.2009999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 205.37100000000004, + "y": 634.776 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 202.62300000000002, + "y": 629.5409999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 201.20800000000003, + "y": 623.8 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 201.20800000000003, + "y": 617.8879999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 202.62300000000002, + "y": 612.1469999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 205.37100000000004, + "y": 606.9119999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 209.29100000000003, + "y": 602.487 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 214.15700000000004, + "y": 599.1289999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 219.68500000000003, + "y": 597.0319999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 225.55400000000003, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 231.42300000000003, + "y": 597.0319999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 236.95100000000002, + "y": 599.1289999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 241.81700000000004, + "y": 602.487 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 245.73700000000002, + "y": 606.9119999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 248.48500000000004, + "y": 612.1469999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 249.90000000000003, + "y": 617.8879999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2329.709364, + "axes": { + "#": 4252 + }, + "bounds": { + "#": 4266 + }, + "circleRadius": 27.364904835390945, + "collisionFilter": { + "#": 4269 + }, + "constraintImpulse": { + "#": 4270 + }, + "density": 0.001, + "force": { + "#": 4271 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 3455.3488495656693, + "inverseInertia": 0.0002894063793662102, + "inverseMass": 0.4292380910050719, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.3297093639999997, + "motion": 0, + "parent": null, + "position": { + "#": 4272 + }, + "positionImpulse": { + "#": 4273 + }, + "positionPrev": { + "#": 4274 + }, + "render": { + "#": 4275 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4277 + }, + "vertices": { + "#": 4278 + } + }, + [ + { + "#": 4253 + }, + { + "#": 4254 + }, + { + "#": 4255 + }, + { + "#": 4256 + }, + { + "#": 4257 + }, + { + "#": 4258 + }, + { + "#": 4259 + }, + { + "#": 4260 + }, + { + "#": 4261 + }, + { + "#": 4262 + }, + { + "#": 4263 + }, + { + "#": 4264 + }, + { + "#": 4265 + } + ], + { + "x": -0.9709748157400481, + "y": -0.23918174511985563 + }, + { + "x": -0.885430654533355, + "y": -0.46477150946743123 + }, + { + "x": -0.748487143274187, + "y": -0.6631493017060688 + }, + { + "x": -0.5680269481764096, + "y": -0.8230099550706507 + }, + { + "x": -0.3547090688589646, + "y": -0.9349767250949119 + }, + { + "x": -0.12050791439215353, + "y": -0.9927123664832898 + }, + { + "x": 0.12050791439215353, + "y": -0.9927123664832898 + }, + { + "x": 0.3547090688589646, + "y": -0.9349767250949119 + }, + { + "x": 0.5680269481764096, + "y": -0.8230099550706507 + }, + { + "x": 0.748487143274187, + "y": -0.6631493017060688 + }, + { + "x": 0.885430654533355, + "y": -0.46477150946743123 + }, + { + "x": 0.9709748157400481, + "y": -0.23918174511985563 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4267 + }, + "min": { + "#": 4268 + } + }, + { + "x": 314.2300000000001, + "y": 651.05 + }, + { + "x": 259.9000000000001, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.06500000000005, + "y": 623.685 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.06500000000005, + "y": 623.685 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4276 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + }, + { + "#": 4282 + }, + { + "#": 4283 + }, + { + "#": 4284 + }, + { + "#": 4285 + }, + { + "#": 4286 + }, + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + }, + { + "#": 4294 + }, + { + "#": 4295 + }, + { + "#": 4296 + }, + { + "#": 4297 + }, + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + }, + { + "#": 4303 + }, + { + "#": 4304 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.2300000000001, + "y": 626.983 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.65200000000004, + "y": 633.3889999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 309.58600000000007, + "y": 639.2299999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.21100000000007, + "y": 644.1679999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 299.78200000000004, + "y": 647.915 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 293.61400000000003, + "y": 650.255 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 287.06500000000005, + "y": 651.05 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.5160000000001, + "y": 650.255 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 274.34800000000007, + "y": 647.915 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 268.91900000000004, + "y": 644.1679999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 264.54400000000004, + "y": 639.2299999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.47800000000007, + "y": 633.3889999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 259.9000000000001, + "y": 626.983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 259.9000000000001, + "y": 620.387 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 261.47800000000007, + "y": 613.981 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 264.54400000000004, + "y": 608.14 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 268.91900000000004, + "y": 603.202 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 274.34800000000007, + "y": 599.4549999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 280.5160000000001, + "y": 597.1149999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 287.06500000000005, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 293.61400000000003, + "y": 597.1149999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 299.78200000000004, + "y": 599.4549999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 305.21100000000007, + "y": 603.202 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 309.58600000000007, + "y": 608.14 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 312.65200000000004, + "y": 613.981 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 314.2300000000001, + "y": 620.387 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1168.93972, + "axes": { + "#": 4306 + }, + "bounds": { + "#": 4317 + }, + "circleRadius": 19.449138374485596, + "collisionFilter": { + "#": 4320 + }, + "constraintImpulse": { + "#": 4321 + }, + "density": 0.001, + "force": { + "#": 4322 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 869.9376675929504, + "inverseInertia": 0.001149507645492489, + "inverseMass": 0.855476106158836, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.16893972, + "motion": 0, + "parent": null, + "position": { + "#": 4323 + }, + "positionImpulse": { + "#": 4324 + }, + "positionPrev": { + "#": 4325 + }, + "render": { + "#": 4326 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4328 + }, + "vertices": { + "#": 4329 + } + }, + [ + { + "#": 4307 + }, + { + "#": 4308 + }, + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + }, + { + "#": 4314 + }, + { + "#": 4315 + }, + { + "#": 4316 + } + ], + { + "x": -0.9510231989910347, + "y": -0.3091195156907096 + }, + { + "x": -0.8090770780014305, + "y": -0.5877025453855608 + }, + { + "x": -0.5877025453855608, + "y": -0.8090770780014305 + }, + { + "x": -0.3091195156907096, + "y": -0.9510231989910347 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091195156907096, + "y": -0.9510231989910347 + }, + { + "x": 0.5877025453855608, + "y": -0.8090770780014305 + }, + { + "x": 0.8090770780014305, + "y": -0.5877025453855608 + }, + { + "x": 0.9510231989910347, + "y": -0.3091195156907096 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4318 + }, + "min": { + "#": 4319 + } + }, + { + "x": 362.65000000000003, + "y": 634.74 + }, + { + "x": 324.2300000000001, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 343.44000000000005, + "y": 615.53 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 343.44000000000005, + "y": 615.53 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4327 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + }, + { + "#": 4337 + }, + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + }, + { + "#": 4341 + }, + { + "#": 4342 + }, + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + }, + { + "#": 4347 + }, + { + "#": 4348 + }, + { + "#": 4349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 362.65000000000003, + "y": 618.573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 360.76900000000006, + "y": 624.36 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 357.19300000000004, + "y": 629.283 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 352.27000000000004, + "y": 632.8589999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 346.48300000000006, + "y": 634.74 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 340.39700000000005, + "y": 634.74 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 334.61000000000007, + "y": 632.8589999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 329.68700000000007, + "y": 629.283 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.11100000000005, + "y": 624.36 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.2300000000001, + "y": 618.573 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.2300000000001, + "y": 612.487 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.11100000000005, + "y": 606.6999999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 329.68700000000007, + "y": 601.7769999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 334.61000000000007, + "y": 598.201 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 340.39700000000005, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 346.48300000000006, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 352.27000000000004, + "y": 598.201 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 357.19300000000004, + "y": 601.7769999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 360.76900000000006, + "y": 606.6999999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 362.65000000000003, + "y": 612.487 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2280.335178, + "axes": { + "#": 4351 + }, + "bounds": { + "#": 4365 + }, + "circleRadius": 27.07349537037037, + "collisionFilter": { + "#": 4368 + }, + "constraintImpulse": { + "#": 4369 + }, + "density": 0.001, + "force": { + "#": 4370 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 3310.4404760562484, + "inverseInertia": 0.0003020746052474888, + "inverseMass": 0.4385320235585121, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.280335178, + "motion": 0, + "parent": null, + "position": { + "#": 4371 + }, + "positionImpulse": { + "#": 4372 + }, + "positionPrev": { + "#": 4373 + }, + "render": { + "#": 4374 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4376 + }, + "vertices": { + "#": 4377 + } + }, + [ + { + "#": 4352 + }, + { + "#": 4353 + }, + { + "#": 4354 + }, + { + "#": 4355 + }, + { + "#": 4356 + }, + { + "#": 4357 + }, + { + "#": 4358 + }, + { + "#": 4359 + }, + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + } + ], + { + "x": -0.970939333005755, + "y": -0.2393257437517738 + }, + { + "x": -0.8854593783468863, + "y": -0.46471678396368005 + }, + { + "x": -0.7485577627321482, + "y": -0.6630695859813214 + }, + { + "x": -0.5680301217357667, + "y": -0.8230077647269495 + }, + { + "x": -0.35466347083614963, + "y": -0.9349940226838114 + }, + { + "x": -0.12043203545286181, + "y": -0.9927215746807765 + }, + { + "x": 0.12043203545286181, + "y": -0.9927215746807765 + }, + { + "x": 0.35466347083614963, + "y": -0.9349940226838114 + }, + { + "x": 0.5680301217357667, + "y": -0.8230077647269495 + }, + { + "x": 0.7485577627321482, + "y": -0.6630695859813214 + }, + { + "x": 0.8854593783468863, + "y": -0.46471678396368005 + }, + { + "x": 0.970939333005755, + "y": -0.2393257437517738 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4366 + }, + "min": { + "#": 4367 + } + }, + { + "x": 426.402, + "y": 650.4659999999999 + }, + { + "x": 372.65000000000003, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.526, + "y": 623.3929999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.526, + "y": 623.3929999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4375 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4378 + }, + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + }, + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + }, + { + "#": 4397 + }, + { + "#": 4398 + }, + { + "#": 4399 + }, + { + "#": 4400 + }, + { + "#": 4401 + }, + { + "#": 4402 + }, + { + "#": 4403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 426.402, + "y": 626.656 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 424.84000000000003, + "y": 632.9929999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.807, + "y": 638.7719999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 417.479, + "y": 643.6579999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 412.108, + "y": 647.3649999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 406.005, + "y": 649.68 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 399.526, + "y": 650.4659999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.047, + "y": 649.68 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 386.944, + "y": 647.3649999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 381.57300000000004, + "y": 643.6579999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 377.245, + "y": 638.7719999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 374.212, + "y": 632.9929999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 372.65000000000003, + "y": 626.656 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 372.65000000000003, + "y": 620.1299999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 374.212, + "y": 613.7929999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 377.245, + "y": 608.0139999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 381.57300000000004, + "y": 603.1279999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 386.944, + "y": 599.4209999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 393.047, + "y": 597.1059999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 399.526, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 406.005, + "y": 597.1059999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 412.108, + "y": 599.4209999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 417.479, + "y": 603.1279999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 421.807, + "y": 608.0139999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 424.84000000000003, + "y": 613.7929999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 426.402, + "y": 620.1299999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2673.0073460000003, + "axes": { + "#": 4405 + }, + "bounds": { + "#": 4419 + }, + "circleRadius": 29.312049897119344, + "collisionFilter": { + "#": 4422 + }, + "constraintImpulse": { + "#": 4423 + }, + "density": 0.001, + "force": { + "#": 4424 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 4548.714864282256, + "inverseInertia": 0.0002198423136724334, + "inverseMass": 0.37411045708364465, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6730073460000003, + "motion": 0, + "parent": null, + "position": { + "#": 4425 + }, + "positionImpulse": { + "#": 4426 + }, + "positionPrev": { + "#": 4427 + }, + "render": { + "#": 4428 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4430 + }, + "vertices": { + "#": 4431 + } + }, + [ + { + "#": 4406 + }, + { + "#": 4407 + }, + { + "#": 4408 + }, + { + "#": 4409 + }, + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + }, + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + }, + { + "#": 4418 + } + ], + { + "x": -0.9709445998623041, + "y": -0.2393043752174836 + }, + { + "x": -0.8854517705871909, + "y": -0.4647312793045124 + }, + { + "x": -0.7484858203406575, + "y": -0.6631507948792438 + }, + { + "x": -0.5681793089776269, + "y": -0.8229047775105613 + }, + { + "x": -0.3545177081937125, + "y": -0.9350493006131162 + }, + { + "x": -0.12056802812804521, + "y": -0.9927050672749258 + }, + { + "x": 0.12056802812804521, + "y": -0.9927050672749258 + }, + { + "x": 0.3545177081937125, + "y": -0.9350493006131162 + }, + { + "x": 0.5681793089776269, + "y": -0.8229047775105613 + }, + { + "x": 0.7484858203406575, + "y": -0.6631507948792438 + }, + { + "x": 0.8854517705871909, + "y": -0.4647312793045124 + }, + { + "x": 0.9709445998623041, + "y": -0.2393043752174836 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4420 + }, + "min": { + "#": 4421 + } + }, + { + "x": 494.598, + "y": 654.944 + }, + { + "x": 436.402, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465.5, + "y": 625.632 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465.5, + "y": 625.632 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4429 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 494.598, + "y": 629.165 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 492.907, + "y": 636.026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 489.623, + "y": 642.2829999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 484.937, + "y": 647.572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.122, + "y": 651.587 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 472.515, + "y": 654.092 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.5, + "y": 654.944 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 458.485, + "y": 654.092 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 451.878, + "y": 651.587 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 446.063, + "y": 647.572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 441.377, + "y": 642.2829999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 438.093, + "y": 636.026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 436.402, + "y": 629.165 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 436.402, + "y": 622.0989999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 438.093, + "y": 615.2379999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 441.377, + "y": 608.981 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 446.063, + "y": 603.6919999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 451.878, + "y": 599.6769999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 458.485, + "y": 597.1719999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 465.5, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 472.515, + "y": 597.1719999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 479.122, + "y": 599.6769999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 484.937, + "y": 603.6919999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 489.623, + "y": 608.981 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 492.907, + "y": 615.2379999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 494.598, + "y": 622.0989999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1197.2269959999996, + "axes": { + "#": 4459 + }, + "bounds": { + "#": 4470 + }, + "circleRadius": 19.68332047325103, + "collisionFilter": { + "#": 4473 + }, + "constraintImpulse": { + "#": 4474 + }, + "density": 0.001, + "force": { + "#": 4475 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 912.5504968907098, + "inverseInertia": 0.00109582976877143, + "inverseMass": 0.8352634908342814, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1972269959999997, + "motion": 0, + "parent": null, + "position": { + "#": 4476 + }, + "positionImpulse": { + "#": 4477 + }, + "positionPrev": { + "#": 4478 + }, + "render": { + "#": 4479 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4481 + }, + "vertices": { + "#": 4482 + } + }, + [ + { + "#": 4460 + }, + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + }, + { + "#": 4464 + }, + { + "#": 4465 + }, + { + "#": 4466 + }, + { + "#": 4467 + }, + { + "#": 4468 + }, + { + "#": 4469 + } + ], + { + "x": -0.9510591247997812, + "y": -0.30900896610790207 + }, + { + "x": -0.8089887994080501, + "y": -0.5878240573779894 + }, + { + "x": -0.5878240573779894, + "y": -0.8089887994080501 + }, + { + "x": -0.30900896610790207, + "y": -0.9510591247997812 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30900896610790207, + "y": -0.9510591247997812 + }, + { + "x": 0.5878240573779894, + "y": -0.8089887994080501 + }, + { + "x": 0.8089887994080501, + "y": -0.5878240573779894 + }, + { + "x": 0.9510591247997812, + "y": -0.30900896610790207 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4471 + }, + "min": { + "#": 4472 + } + }, + { + "x": 543.48, + "y": 635.202 + }, + { + "x": 504.598, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 524.039, + "y": 615.761 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 524.039, + "y": 615.761 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4480 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + }, + { + "#": 4487 + }, + { + "#": 4488 + }, + { + "#": 4489 + }, + { + "#": 4490 + }, + { + "#": 4491 + }, + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + }, + { + "#": 4495 + }, + { + "#": 4496 + }, + { + "#": 4497 + }, + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + }, + { + "#": 4501 + }, + { + "#": 4502 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 543.48, + "y": 618.8399999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 541.577, + "y": 624.697 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 537.9569999999999, + "y": 629.679 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 532.9749999999999, + "y": 633.299 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 527.1179999999999, + "y": 635.202 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520.96, + "y": 635.202 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 515.1030000000001, + "y": 633.299 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.121, + "y": 629.679 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 506.501, + "y": 624.697 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 504.598, + "y": 618.8399999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 504.598, + "y": 612.682 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 506.501, + "y": 606.8249999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 510.121, + "y": 601.843 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 515.1030000000001, + "y": 598.223 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 520.96, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 527.1179999999999, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 532.9749999999999, + "y": 598.223 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 537.9569999999999, + "y": 601.843 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 541.577, + "y": 606.8249999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 543.48, + "y": 612.682 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 977.1466719999999, + "axes": { + "#": 4504 + }, + "bounds": { + "#": 4514 + }, + "circleRadius": 17.816936728395063, + "collisionFilter": { + "#": 4517 + }, + "constraintImpulse": { + "#": 4518 + }, + "density": 0.001, + "force": { + "#": 4519 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 607.9053757880243, + "inverseInertia": 0.0016449928555142411, + "inverseMass": 1.0233878174637023, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9771466719999998, + "motion": 0, + "parent": null, + "position": { + "#": 4520 + }, + "positionImpulse": { + "#": 4521 + }, + "positionPrev": { + "#": 4522 + }, + "render": { + "#": 4523 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4525 + }, + "vertices": { + "#": 4526 + } + }, + [ + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + }, + { + "#": 4511 + }, + { + "#": 4512 + }, + { + "#": 4513 + } + ], + { + "x": -0.939699006955668, + "y": -0.3420025969587535 + }, + { + "x": -0.7661376414182273, + "y": -0.6426765239232842 + }, + { + "x": -0.49987634792101643, + "y": -0.8660967825763741 + }, + { + "x": -0.173720801694498, + "y": -0.9847949446756015 + }, + { + "x": 0.173720801694498, + "y": -0.9847949446756015 + }, + { + "x": 0.49987634792101643, + "y": -0.8660967825763741 + }, + { + "x": 0.7661376414182273, + "y": -0.6426765239232842 + }, + { + "x": 0.939699006955668, + "y": -0.3420025969587535 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4515 + }, + "min": { + "#": 4516 + } + }, + { + "x": 588.5720000000001, + "y": 631.954 + }, + { + "x": 553.48, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.0260000000001, + "y": 614.137 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.0260000000001, + "y": 614.137 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4524 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4527 + }, + { + "#": 4528 + }, + { + "#": 4529 + }, + { + "#": 4530 + }, + { + "#": 4531 + }, + { + "#": 4532 + }, + { + "#": 4533 + }, + { + "#": 4534 + }, + { + "#": 4535 + }, + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 588.5720000000001, + "y": 617.231 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.456, + "y": 623.045 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 582.479, + "y": 627.786 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 577.1200000000001, + "y": 630.8789999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 571.0260000000001, + "y": 631.954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 564.932, + "y": 630.8789999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 559.5730000000001, + "y": 627.786 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 555.5960000000001, + "y": 623.045 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 553.48, + "y": 617.231 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 553.48, + "y": 611.0429999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 555.5960000000001, + "y": 605.2289999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 559.5730000000001, + "y": 600.4879999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 564.932, + "y": 597.395 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 571.0260000000001, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 577.1200000000001, + "y": 597.395 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 582.479, + "y": 600.4879999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 586.456, + "y": 605.2289999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 588.5720000000001, + "y": 611.0429999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 799.8991080000001, + "axes": { + "#": 4546 + }, + "bounds": { + "#": 4556 + }, + "circleRadius": 16.120306069958847, + "collisionFilter": { + "#": 4559 + }, + "constraintImpulse": { + "#": 4560 + }, + "density": 0.001, + "force": { + "#": 4561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 407.3679845696958, + "inverseInertia": 0.0024547829919827975, + "inverseMass": 1.250157663633749, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7998991080000001, + "motion": 0, + "parent": null, + "position": { + "#": 4562 + }, + "positionImpulse": { + "#": 4563 + }, + "positionPrev": { + "#": 4564 + }, + "render": { + "#": 4565 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4567 + }, + "vertices": { + "#": 4568 + } + }, + [ + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + }, + { + "#": 4550 + }, + { + "#": 4551 + }, + { + "#": 4552 + }, + { + "#": 4553 + }, + { + "#": 4554 + }, + { + "#": 4555 + } + ], + { + "x": -0.9397412595301448, + "y": -0.34188647989749027 + }, + { + "x": -0.7660355005667748, + "y": -0.6427982668547034 + }, + { + "x": -0.4999234482331141, + "y": -0.8660695964567241 + }, + { + "x": -0.17363247366383563, + "y": -0.984810521922556 + }, + { + "x": 0.17363247366383563, + "y": -0.984810521922556 + }, + { + "x": 0.4999234482331141, + "y": -0.8660695964567241 + }, + { + "x": 0.7660355005667748, + "y": -0.6427982668547034 + }, + { + "x": 0.9397412595301448, + "y": -0.34188647989749027 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4557 + }, + "min": { + "#": 4558 + } + }, + { + "x": 630.3220000000001, + "y": 628.56 + }, + { + "x": 598.5720000000001, + "y": 596.3199999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 614.4470000000001, + "y": 612.4399999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 614.4470000000001, + "y": 612.4399999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4566 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4569 + }, + { + "#": 4570 + }, + { + "#": 4571 + }, + { + "#": 4572 + }, + { + "#": 4573 + }, + { + "#": 4574 + }, + { + "#": 4575 + }, + { + "#": 4576 + }, + { + "#": 4577 + }, + { + "#": 4578 + }, + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + }, + { + "#": 4584 + }, + { + "#": 4585 + }, + { + "#": 4586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 630.3220000000001, + "y": 615.2389999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 628.4080000000001, + "y": 620.4999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 624.8090000000001, + "y": 624.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 619.9600000000002, + "y": 627.588 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 614.4470000000001, + "y": 628.56 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 608.9340000000001, + "y": 627.588 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 604.0850000000002, + "y": 624.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600.4860000000001, + "y": 620.4999999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 598.5720000000001, + "y": 615.2389999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 598.5720000000001, + "y": 609.641 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 600.4860000000001, + "y": 604.38 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 604.0850000000002, + "y": 600.0909999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 608.9340000000001, + "y": 597.2919999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 614.4470000000001, + "y": 596.3199999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 619.9600000000002, + "y": 597.2919999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 624.8090000000001, + "y": 600.0909999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 628.4080000000001, + "y": 604.38 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 630.3220000000001, + "y": 609.641 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2175.764468, + "axes": { + "#": 4588 + }, + "bounds": { + "#": 4602 + }, + "circleRadius": 26.44528034979424, + "collisionFilter": { + "#": 4605 + }, + "constraintImpulse": { + "#": 4606 + }, + "density": 0.001, + "force": { + "#": 4607 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 3013.784323849708, + "inverseInertia": 0.0003318087469254048, + "inverseMass": 0.45960857193298, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.175764468, + "motion": 0, + "parent": null, + "position": { + "#": 4608 + }, + "positionImpulse": { + "#": 4609 + }, + "positionPrev": { + "#": 4610 + }, + "render": { + "#": 4611 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4613 + }, + "vertices": { + "#": 4614 + } + }, + [ + { + "#": 4589 + }, + { + "#": 4590 + }, + { + "#": 4591 + }, + { + "#": 4592 + }, + { + "#": 4593 + }, + { + "#": 4594 + }, + { + "#": 4595 + }, + { + "#": 4596 + }, + { + "#": 4597 + }, + { + "#": 4598 + }, + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + } + ], + { + "x": -0.9709672518969629, + "y": -0.2392124489729995 + }, + { + "x": -0.8854382464451883, + "y": -0.46475704591976863 + }, + { + "x": -0.7484814043741432, + "y": -0.6631557790640977 + }, + { + "x": -0.5680591843232271, + "y": -0.8229877053188766 + }, + { + "x": -0.35464477726487137, + "y": -0.9350011133462621 + }, + { + "x": -0.12046252617652502, + "y": -0.9927178752229507 + }, + { + "x": 0.12046252617652502, + "y": -0.9927178752229507 + }, + { + "x": 0.35464477726487137, + "y": -0.9350011133462621 + }, + { + "x": 0.5680591843232271, + "y": -0.8229877053188766 + }, + { + "x": 0.7484814043741432, + "y": -0.6631557790640977 + }, + { + "x": 0.8854382464451883, + "y": -0.46475704591976863 + }, + { + "x": 0.9709672518969629, + "y": -0.2392124489729995 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4603 + }, + "min": { + "#": 4604 + } + }, + { + "x": 152.504, + "y": 717.8340000000001 + }, + { + "x": 100, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.252, + "y": 691.389 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.252, + "y": 691.389 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4612 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4615 + }, + { + "#": 4616 + }, + { + "#": 4617 + }, + { + "#": 4618 + }, + { + "#": 4619 + }, + { + "#": 4620 + }, + { + "#": 4621 + }, + { + "#": 4622 + }, + { + "#": 4623 + }, + { + "#": 4624 + }, + { + "#": 4625 + }, + { + "#": 4626 + }, + { + "#": 4627 + }, + { + "#": 4628 + }, + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + }, + { + "#": 4636 + }, + { + "#": 4637 + }, + { + "#": 4638 + }, + { + "#": 4639 + }, + { + "#": 4640 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 152.504, + "y": 694.577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150.97899999999998, + "y": 700.767 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 148.016, + "y": 706.412 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 143.788, + "y": 711.184 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 138.54199999999997, + "y": 714.8050000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 132.581, + "y": 717.066 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 126.252, + "y": 717.8340000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 119.923, + "y": 717.066 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 113.962, + "y": 714.8050000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.716, + "y": 711.184 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.488, + "y": 706.412 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.52499999999999, + "y": 700.767 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 694.577 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 688.201 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.52499999999999, + "y": 682.011 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.488, + "y": 676.366 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 108.716, + "y": 671.594 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 113.962, + "y": 667.973 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 119.923, + "y": 665.712 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 126.252, + "y": 664.944 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 132.581, + "y": 665.712 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 138.54199999999997, + "y": 667.973 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 143.788, + "y": 671.594 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 148.016, + "y": 676.366 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 150.97899999999998, + "y": 682.011 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 152.504, + "y": 688.201 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 864.0989000000001, + "axes": { + "#": 4642 + }, + "bounds": { + "#": 4652 + }, + "circleRadius": 16.754822530864196, + "collisionFilter": { + "#": 4655 + }, + "constraintImpulse": { + "#": 4656 + }, + "density": 0.001, + "force": { + "#": 4657 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 475.38270097285647, + "inverseInertia": 0.0021035683417876374, + "inverseMass": 1.157274936931409, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8640989000000001, + "motion": 0, + "parent": null, + "position": { + "#": 4658 + }, + "positionImpulse": { + "#": 4659 + }, + "positionPrev": { + "#": 4660 + }, + "render": { + "#": 4661 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4663 + }, + "vertices": { + "#": 4664 + } + }, + [ + { + "#": 4643 + }, + { + "#": 4644 + }, + { + "#": 4645 + }, + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + }, + { + "#": 4649 + }, + { + "#": 4650 + }, + { + "#": 4651 + } + ], + { + "x": -0.9397030727177501, + "y": -0.3419914255135923 + }, + { + "x": -0.7661041941914353, + "y": -0.642716394409145 + }, + { + "x": -0.49989104462044864, + "y": -0.8660883000643045 + }, + { + "x": -0.17375592062528475, + "y": -0.984788748944493 + }, + { + "x": 0.17375592062528475, + "y": -0.984788748944493 + }, + { + "x": 0.49989104462044864, + "y": -0.8660883000643045 + }, + { + "x": 0.7661041941914353, + "y": -0.642716394409145 + }, + { + "x": 0.9397030727177501, + "y": -0.3419914255135923 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4653 + }, + "min": { + "#": 4654 + } + }, + { + "x": 195.504, + "y": 698.454 + }, + { + "x": 162.504, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.004, + "y": 681.699 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.004, + "y": 681.699 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4662 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4665 + }, + { + "#": 4666 + }, + { + "#": 4667 + }, + { + "#": 4668 + }, + { + "#": 4669 + }, + { + "#": 4670 + }, + { + "#": 4671 + }, + { + "#": 4672 + }, + { + "#": 4673 + }, + { + "#": 4674 + }, + { + "#": 4675 + }, + { + "#": 4676 + }, + { + "#": 4677 + }, + { + "#": 4678 + }, + { + "#": 4679 + }, + { + "#": 4680 + }, + { + "#": 4681 + }, + { + "#": 4682 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195.504, + "y": 684.608 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 193.51399999999998, + "y": 690.0759999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 189.774, + "y": 694.534 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 184.73399999999998, + "y": 697.443 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 179.004, + "y": 698.454 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 173.274, + "y": 697.443 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 168.23399999999998, + "y": 694.534 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 164.494, + "y": 690.0759999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 162.504, + "y": 684.608 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 162.504, + "y": 678.79 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 164.494, + "y": 673.322 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 168.23399999999998, + "y": 668.8639999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 173.274, + "y": 665.9549999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 179.004, + "y": 664.944 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 184.73399999999998, + "y": 665.9549999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 189.774, + "y": 668.8639999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 193.51399999999998, + "y": 673.322 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 195.504, + "y": 678.79 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1613.0638619999995, + "axes": { + "#": 4684 + }, + "bounds": { + "#": 4697 + }, + "circleRadius": 22.789673353909464, + "collisionFilter": { + "#": 4700 + }, + "constraintImpulse": { + "#": 4701 + }, + "density": 0.001, + "force": { + "#": 4702 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 1656.5123333603722, + "inverseInertia": 0.0006036779683803605, + "inverseMass": 0.6199382575964003, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6130638619999995, + "motion": 0, + "parent": null, + "position": { + "#": 4703 + }, + "positionImpulse": { + "#": 4704 + }, + "positionPrev": { + "#": 4705 + }, + "render": { + "#": 4706 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4708 + }, + "vertices": { + "#": 4709 + } + }, + [ + { + "#": 4685 + }, + { + "#": 4686 + }, + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + }, + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + } + ], + { + "x": -0.9659105298862138, + "y": -0.2588761253088702 + }, + { + "x": -0.8659896344268858, + "y": -0.5000619492274819 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.5000619492274819, + "y": -0.8659896344268858 + }, + { + "x": -0.2588761253088702, + "y": -0.9659105298862138 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588761253088702, + "y": -0.9659105298862138 + }, + { + "x": 0.5000619492274819, + "y": -0.8659896344268858 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8659896344268858, + "y": -0.5000619492274819 + }, + { + "x": 0.9659105298862138, + "y": -0.2588761253088702 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4698 + }, + "min": { + "#": 4699 + } + }, + { + "x": 250.694, + "y": 710.134 + }, + { + "x": 205.504, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.099, + "y": 687.539 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.099, + "y": 687.539 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4707 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4710 + }, + { + "#": 4711 + }, + { + "#": 4712 + }, + { + "#": 4713 + }, + { + "#": 4714 + }, + { + "#": 4715 + }, + { + "#": 4716 + }, + { + "#": 4717 + }, + { + "#": 4718 + }, + { + "#": 4719 + }, + { + "#": 4720 + }, + { + "#": 4721 + }, + { + "#": 4722 + }, + { + "#": 4723 + }, + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + }, + { + "#": 4728 + }, + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + }, + { + "#": 4733 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250.694, + "y": 690.514 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.154, + "y": 696.26 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 246.179, + "y": 701.412 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.97199999999998, + "y": 705.619 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 236.82, + "y": 708.5939999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 231.07399999999998, + "y": 710.134 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 225.124, + "y": 710.134 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 219.378, + "y": 708.5939999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 214.226, + "y": 705.619 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 210.01899999999998, + "y": 701.412 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 207.04399999999998, + "y": 696.26 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 205.504, + "y": 690.514 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 205.504, + "y": 684.564 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 207.04399999999998, + "y": 678.818 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 210.01899999999998, + "y": 673.6659999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 214.226, + "y": 669.459 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 219.378, + "y": 666.484 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 225.124, + "y": 664.944 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 231.07399999999998, + "y": 664.944 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 236.82, + "y": 666.484 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 241.97199999999998, + "y": 669.459 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 246.179, + "y": 673.6659999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 249.154, + "y": 678.818 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 250.694, + "y": 684.564 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2750.736188, + "axes": { + "#": 4735 + }, + "bounds": { + "#": 4749 + }, + "circleRadius": 29.735018004115226, + "collisionFilter": { + "#": 4752 + }, + "constraintImpulse": { + "#": 4753 + }, + "density": 0.001, + "force": { + "#": 4754 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 4817.10697868961, + "inverseInertia": 0.0002075934797429034, + "inverseMass": 0.3635390425161339, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.750736188, + "motion": 0, + "parent": null, + "position": { + "#": 4755 + }, + "positionImpulse": { + "#": 4756 + }, + "positionPrev": { + "#": 4757 + }, + "render": { + "#": 4758 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4760 + }, + "vertices": { + "#": 4761 + } + }, + [ + { + "#": 4736 + }, + { + "#": 4737 + }, + { + "#": 4738 + }, + { + "#": 4739 + }, + { + "#": 4740 + }, + { + "#": 4741 + }, + { + "#": 4742 + }, + { + "#": 4743 + }, + { + "#": 4744 + }, + { + "#": 4745 + }, + { + "#": 4746 + }, + { + "#": 4747 + }, + { + "#": 4748 + } + ], + { + "x": -0.9709575669748816, + "y": -0.23925175680487376 + }, + { + "x": -0.8854079499283124, + "y": -0.46481476117238674 + }, + { + "x": -0.7485703751478012, + "y": -0.6630553472004281 + }, + { + "x": -0.5680849953598571, + "y": -0.82296988890663 + }, + { + "x": -0.35459115696568627, + "y": -0.9350214497014152 + }, + { + "x": -0.12053134166278366, + "y": -0.9927095223059812 + }, + { + "x": 0.12053134166278366, + "y": -0.9927095223059812 + }, + { + "x": 0.35459115696568627, + "y": -0.9350214497014152 + }, + { + "x": 0.5680849953598571, + "y": -0.82296988890663 + }, + { + "x": 0.7485703751478012, + "y": -0.6630553472004281 + }, + { + "x": 0.8854079499283124, + "y": -0.46481476117238674 + }, + { + "x": 0.9709575669748816, + "y": -0.23925175680487376 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4750 + }, + "min": { + "#": 4751 + } + }, + { + "x": 319.73, + "y": 724.414 + }, + { + "x": 260.69399999999996, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.212, + "y": 694.679 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.212, + "y": 694.679 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4759 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4762 + }, + { + "#": 4763 + }, + { + "#": 4764 + }, + { + "#": 4765 + }, + { + "#": 4766 + }, + { + "#": 4767 + }, + { + "#": 4768 + }, + { + "#": 4769 + }, + { + "#": 4770 + }, + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + }, + { + "#": 4774 + }, + { + "#": 4775 + }, + { + "#": 4776 + }, + { + "#": 4777 + }, + { + "#": 4778 + }, + { + "#": 4779 + }, + { + "#": 4780 + }, + { + "#": 4781 + }, + { + "#": 4782 + }, + { + "#": 4783 + }, + { + "#": 4784 + }, + { + "#": 4785 + }, + { + "#": 4786 + }, + { + "#": 4787 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.73, + "y": 698.2629999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.015, + "y": 705.223 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.683, + "y": 711.5699999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.93, + "y": 716.9359999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 304.031, + "y": 721.0079999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.328, + "y": 723.55 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.212, + "y": 724.414 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 283.096, + "y": 723.55 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.39300000000003, + "y": 721.0079999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 270.494, + "y": 716.9359999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 265.741, + "y": 711.5699999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 262.409, + "y": 705.223 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 260.69399999999996, + "y": 698.2629999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 260.69399999999996, + "y": 691.095 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 262.409, + "y": 684.135 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 265.741, + "y": 677.788 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 270.494, + "y": 672.422 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 276.39300000000003, + "y": 668.35 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 283.096, + "y": 665.808 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 290.212, + "y": 664.944 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 297.328, + "y": 665.808 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 304.031, + "y": 668.35 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 309.93, + "y": 672.422 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 314.683, + "y": 677.788 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 318.015, + "y": 684.135 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 319.73, + "y": 691.095 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2596.145458000001, + "axes": { + "#": 4789 + }, + "bounds": { + "#": 4803 + }, + "circleRadius": 28.88715277777778, + "collisionFilter": { + "#": 4806 + }, + "constraintImpulse": { + "#": 4807 + }, + "density": 0.001, + "force": { + "#": 4808 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 4290.880825641059, + "inverseInertia": 0.00023305238263069205, + "inverseMass": 0.38518642971968625, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.596145458000001, + "motion": 0, + "parent": null, + "position": { + "#": 4809 + }, + "positionImpulse": { + "#": 4810 + }, + "positionPrev": { + "#": 4811 + }, + "render": { + "#": 4812 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4814 + }, + "vertices": { + "#": 4815 + } + }, + [ + { + "#": 4790 + }, + { + "#": 4791 + }, + { + "#": 4792 + }, + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + }, + { + "#": 4797 + }, + { + "#": 4798 + }, + { + "#": 4799 + }, + { + "#": 4800 + }, + { + "#": 4801 + }, + { + "#": 4802 + } + ], + { + "x": -0.9709312504399928, + "y": -0.23935853216259484 + }, + { + "x": -0.8854658610494066, + "y": -0.4647044317800649 + }, + { + "x": -0.7484700520718455, + "y": -0.6631685918011866 + }, + { + "x": -0.5680818957818234, + "y": -0.8229720284948507 + }, + { + "x": -0.354645577442224, + "y": -0.9350008098395806 + }, + { + "x": -0.12048146520842735, + "y": -0.9927155768603768 + }, + { + "x": 0.12048146520842735, + "y": -0.9927155768603768 + }, + { + "x": 0.354645577442224, + "y": -0.9350008098395806 + }, + { + "x": 0.5680818957818234, + "y": -0.8229720284948507 + }, + { + "x": 0.7484700520718455, + "y": -0.6631685918011866 + }, + { + "x": 0.8854658610494066, + "y": -0.4647044317800649 + }, + { + "x": 0.9709312504399928, + "y": -0.23935853216259484 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4804 + }, + "min": { + "#": 4805 + } + }, + { + "x": 387.08400000000006, + "y": 722.7179999999998 + }, + { + "x": 329.73, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 358.40700000000004, + "y": 693.8309999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 358.40700000000004, + "y": 693.8309999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4813 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4816 + }, + { + "#": 4817 + }, + { + "#": 4818 + }, + { + "#": 4819 + }, + { + "#": 4820 + }, + { + "#": 4821 + }, + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + }, + { + "#": 4825 + }, + { + "#": 4826 + }, + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + }, + { + "#": 4830 + }, + { + "#": 4831 + }, + { + "#": 4832 + }, + { + "#": 4833 + }, + { + "#": 4834 + }, + { + "#": 4835 + }, + { + "#": 4836 + }, + { + "#": 4837 + }, + { + "#": 4838 + }, + { + "#": 4839 + }, + { + "#": 4840 + }, + { + "#": 4841 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 387.08400000000006, + "y": 697.3129999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 385.41700000000003, + "y": 704.0749999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 382.18100000000004, + "y": 710.2409999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 377.56300000000005, + "y": 715.4529999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 371.83200000000005, + "y": 719.4089999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 365.32000000000005, + "y": 721.8789999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 358.40700000000004, + "y": 722.7179999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 351.494, + "y": 721.8789999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 344.982, + "y": 719.4089999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 339.25100000000003, + "y": 715.4529999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 334.63300000000004, + "y": 710.2409999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 331.39700000000005, + "y": 704.0749999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 329.73, + "y": 697.3129999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 329.73, + "y": 690.3489999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 331.39700000000005, + "y": 683.5869999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 334.63300000000004, + "y": 677.4209999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 339.25100000000003, + "y": 672.209 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 344.982, + "y": 668.2529999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 351.494, + "y": 665.7829999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 358.40700000000004, + "y": 664.944 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 365.32000000000005, + "y": 665.7829999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 371.83200000000005, + "y": 668.2529999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 377.56300000000005, + "y": 672.209 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 382.18100000000004, + "y": 677.4209999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 385.41700000000003, + "y": 683.5869999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 387.08400000000006, + "y": 690.3489999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1840.099152, + "axes": { + "#": 4843 + }, + "bounds": { + "#": 4857 + }, + "circleRadius": 24.320151748971192, + "collisionFilter": { + "#": 4860 + }, + "constraintImpulse": { + "#": 4861 + }, + "density": 0.001, + "force": { + "#": 4862 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 2155.6133263472666, + "inverseInertia": 0.0004639050927071979, + "inverseMass": 0.5434489760582205, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.840099152, + "motion": 0, + "parent": null, + "position": { + "#": 4863 + }, + "positionImpulse": { + "#": 4864 + }, + "positionPrev": { + "#": 4865 + }, + "render": { + "#": 4866 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4868 + }, + "vertices": { + "#": 4869 + } + }, + [ + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + }, + { + "#": 4847 + }, + { + "#": 4848 + }, + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + }, + { + "#": 4852 + }, + { + "#": 4853 + }, + { + "#": 4854 + }, + { + "#": 4855 + }, + { + "#": 4856 + } + ], + { + "x": -0.9709496823597511, + "y": -0.239283752740336 + }, + { + "x": -0.8854172069009322, + "y": -0.464797127490857 + }, + { + "x": -0.7485373879143113, + "y": -0.663092586969889 + }, + { + "x": -0.5680119445784095, + "y": -0.8230203100873354 + }, + { + "x": -0.35459767508594825, + "y": -0.9350189777879593 + }, + { + "x": -0.12059115066736013, + "y": -0.992702258676146 + }, + { + "x": 0.12059115066736013, + "y": -0.992702258676146 + }, + { + "x": 0.35459767508594825, + "y": -0.9350189777879593 + }, + { + "x": 0.5680119445784095, + "y": -0.8230203100873354 + }, + { + "x": 0.7485373879143113, + "y": -0.663092586969889 + }, + { + "x": 0.8854172069009322, + "y": -0.464797127490857 + }, + { + "x": 0.9709496823597511, + "y": -0.239283752740336 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4858 + }, + "min": { + "#": 4859 + } + }, + { + "x": 445.3700000000001, + "y": 713.5840000000001 + }, + { + "x": 397.08400000000006, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 421.2270000000001, + "y": 689.264 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 421.2270000000001, + "y": 689.264 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4867 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4870 + }, + { + "#": 4871 + }, + { + "#": 4872 + }, + { + "#": 4873 + }, + { + "#": 4874 + }, + { + "#": 4875 + }, + { + "#": 4876 + }, + { + "#": 4877 + }, + { + "#": 4878 + }, + { + "#": 4879 + }, + { + "#": 4880 + }, + { + "#": 4881 + }, + { + "#": 4882 + }, + { + "#": 4883 + }, + { + "#": 4884 + }, + { + "#": 4885 + }, + { + "#": 4886 + }, + { + "#": 4887 + }, + { + "#": 4888 + }, + { + "#": 4889 + }, + { + "#": 4890 + }, + { + "#": 4891 + }, + { + "#": 4892 + }, + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 445.3700000000001, + "y": 692.195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 443.9670000000001, + "y": 697.888 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 441.2420000000001, + "y": 703.0790000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 437.3540000000001, + "y": 707.468 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 432.5290000000001, + "y": 710.798 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 427.0470000000001, + "y": 712.8770000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 421.2270000000001, + "y": 713.5840000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 415.4070000000001, + "y": 712.8770000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 409.92500000000007, + "y": 710.798 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 405.1000000000001, + "y": 707.468 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 401.2120000000001, + "y": 703.0790000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 398.4870000000001, + "y": 697.888 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 397.08400000000006, + "y": 692.195 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 397.08400000000006, + "y": 686.333 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 398.4870000000001, + "y": 680.64 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 401.2120000000001, + "y": 675.449 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 405.1000000000001, + "y": 671.0600000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 409.92500000000007, + "y": 667.73 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 415.4070000000001, + "y": 665.651 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 421.2270000000001, + "y": 664.944 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 427.0470000000001, + "y": 665.651 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 432.5290000000001, + "y": 667.73 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 437.3540000000001, + "y": 671.0600000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 441.2420000000001, + "y": 675.449 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 443.9670000000001, + "y": 680.64 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 445.3700000000001, + "y": 686.333 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1181.3861480000003, + "axes": { + "#": 4897 + }, + "bounds": { + "#": 4908 + }, + "circleRadius": 19.55253343621399, + "collisionFilter": { + "#": 4911 + }, + "constraintImpulse": { + "#": 4912 + }, + "density": 0.001, + "force": { + "#": 4913 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 888.5618284630193, + "inverseInertia": 0.0011254140882123417, + "inverseMass": 0.8464632852627622, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1813861480000003, + "motion": 0, + "parent": null, + "position": { + "#": 4914 + }, + "positionImpulse": { + "#": 4915 + }, + "positionPrev": { + "#": 4916 + }, + "render": { + "#": 4917 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4919 + }, + "vertices": { + "#": 4920 + } + }, + [ + { + "#": 4898 + }, + { + "#": 4899 + }, + { + "#": 4900 + }, + { + "#": 4901 + }, + { + "#": 4902 + }, + { + "#": 4903 + }, + { + "#": 4904 + }, + { + "#": 4905 + }, + { + "#": 4906 + }, + { + "#": 4907 + } + ], + { + "x": -0.951026860952708, + "y": -0.30910824923712144 + }, + { + "x": -0.8090682196544235, + "y": -0.5877147402824109 + }, + { + "x": -0.5877147402824109, + "y": -0.8090682196544235 + }, + { + "x": -0.30910824923712144, + "y": -0.951026860952708 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30910824923712144, + "y": -0.951026860952708 + }, + { + "x": 0.5877147402824109, + "y": -0.8090682196544235 + }, + { + "x": 0.8090682196544235, + "y": -0.5877147402824109 + }, + { + "x": 0.951026860952708, + "y": -0.30910824923712144 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4909 + }, + "min": { + "#": 4910 + } + }, + { + "x": 493.99400000000014, + "y": 703.568 + }, + { + "x": 455.3700000000001, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 474.68200000000013, + "y": 684.256 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 474.68200000000013, + "y": 684.256 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4918 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4921 + }, + { + "#": 4922 + }, + { + "#": 4923 + }, + { + "#": 4924 + }, + { + "#": 4925 + }, + { + "#": 4926 + }, + { + "#": 4927 + }, + { + "#": 4928 + }, + { + "#": 4929 + }, + { + "#": 4930 + }, + { + "#": 4931 + }, + { + "#": 4932 + }, + { + "#": 4933 + }, + { + "#": 4934 + }, + { + "#": 4935 + }, + { + "#": 4936 + }, + { + "#": 4937 + }, + { + "#": 4938 + }, + { + "#": 4939 + }, + { + "#": 4940 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 493.99400000000014, + "y": 687.3149999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 492.1030000000001, + "y": 693.1329999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 488.50800000000015, + "y": 698.082 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 483.55900000000014, + "y": 701.677 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 477.74100000000016, + "y": 703.568 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 471.6230000000001, + "y": 703.568 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.8050000000001, + "y": 701.677 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 460.8560000000001, + "y": 698.082 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 457.26100000000014, + "y": 693.1329999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 455.3700000000001, + "y": 687.3149999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 455.3700000000001, + "y": 681.197 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 457.26100000000014, + "y": 675.379 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 460.8560000000001, + "y": 670.43 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 465.8050000000001, + "y": 666.8349999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 471.6230000000001, + "y": 664.944 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 477.74100000000016, + "y": 664.944 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 483.55900000000014, + "y": 666.8349999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 488.50800000000015, + "y": 670.43 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 492.1030000000001, + "y": 675.379 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 493.99400000000014, + "y": 681.197 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2655.1646479999995, + "axes": { + "#": 4942 + }, + "bounds": { + "#": 4956 + }, + "circleRadius": 29.213927469135804, + "collisionFilter": { + "#": 4959 + }, + "constraintImpulse": { + "#": 4960 + }, + "density": 0.001, + "force": { + "#": 4961 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 4488.190926884284, + "inverseInertia": 0.00022280692071498018, + "inverseMass": 0.3766244781668245, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6551646479999995, + "motion": 0, + "parent": null, + "position": { + "#": 4962 + }, + "positionImpulse": { + "#": 4963 + }, + "positionPrev": { + "#": 4964 + }, + "render": { + "#": 4965 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4967 + }, + "vertices": { + "#": 4968 + } + }, + [ + { + "#": 4943 + }, + { + "#": 4944 + }, + { + "#": 4945 + }, + { + "#": 4946 + }, + { + "#": 4947 + }, + { + "#": 4948 + }, + { + "#": 4949 + }, + { + "#": 4950 + }, + { + "#": 4951 + }, + { + "#": 4952 + }, + { + "#": 4953 + }, + { + "#": 4954 + }, + { + "#": 4955 + } + ], + { + "x": -0.9709225341587072, + "y": -0.2393938860180726 + }, + { + "x": -0.8855089168758408, + "y": -0.46462238229919073 + }, + { + "x": -0.7484814634434337, + "y": -0.6631557123945897 + }, + { + "x": -0.5680945646106238, + "y": -0.8229632832999694 + }, + { + "x": -0.3545600613876296, + "y": -0.9350332415849184 + }, + { + "x": -0.12055611930014841, + "y": -0.9927065135775469 + }, + { + "x": 0.12055611930014841, + "y": -0.9927065135775469 + }, + { + "x": 0.3545600613876296, + "y": -0.9350332415849184 + }, + { + "x": 0.5680945646106238, + "y": -0.8229632832999694 + }, + { + "x": 0.7484814634434337, + "y": -0.6631557123945897 + }, + { + "x": 0.8855089168758408, + "y": -0.46462238229919073 + }, + { + "x": 0.9709225341587072, + "y": -0.2393938860180726 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4957 + }, + "min": { + "#": 4958 + } + }, + { + "x": 561.9960000000001, + "y": 723.3719999999998 + }, + { + "x": 503.99400000000014, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 532.9950000000001, + "y": 694.1579999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 532.9950000000001, + "y": 694.1579999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4966 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4969 + }, + { + "#": 4970 + }, + { + "#": 4971 + }, + { + "#": 4972 + }, + { + "#": 4973 + }, + { + "#": 4974 + }, + { + "#": 4975 + }, + { + "#": 4976 + }, + { + "#": 4977 + }, + { + "#": 4978 + }, + { + "#": 4979 + }, + { + "#": 4980 + }, + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + }, + { + "#": 4985 + }, + { + "#": 4986 + }, + { + "#": 4987 + }, + { + "#": 4988 + }, + { + "#": 4989 + }, + { + "#": 4990 + }, + { + "#": 4991 + }, + { + "#": 4992 + }, + { + "#": 4993 + }, + { + "#": 4994 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 561.9960000000001, + "y": 697.6789999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560.3100000000002, + "y": 704.5169999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 557.0380000000001, + "y": 710.7529999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 552.3670000000001, + "y": 716.0249999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 546.5710000000001, + "y": 720.026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 539.9860000000001, + "y": 722.5229999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 532.9950000000001, + "y": 723.3719999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.0040000000001, + "y": 722.5229999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 519.4190000000001, + "y": 720.026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 513.623, + "y": 716.0249999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 508.9520000000001, + "y": 710.7529999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 505.6800000000001, + "y": 704.5169999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 503.99400000000014, + "y": 697.6789999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 503.99400000000014, + "y": 690.637 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 505.6800000000001, + "y": 683.7989999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 508.9520000000001, + "y": 677.5629999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 513.623, + "y": 672.2909999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 519.4190000000001, + "y": 668.2899999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 526.0040000000001, + "y": 665.7929999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 532.9950000000001, + "y": 664.944 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 539.9860000000001, + "y": 665.7929999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 546.5710000000001, + "y": 668.2899999999998 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 552.3670000000001, + "y": 672.2909999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 557.0380000000001, + "y": 677.5629999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 560.3100000000002, + "y": 683.7989999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 561.9960000000001, + "y": 690.637 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2056.753882, + "axes": { + "#": 4996 + }, + "bounds": { + "#": 5010 + }, + "circleRadius": 25.711741255144034, + "collisionFilter": { + "#": 5013 + }, + "constraintImpulse": { + "#": 5014 + }, + "density": 0.001, + "force": { + "#": 5015 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 2693.1036021662526, + "inverseInertia": 0.0003713188008050005, + "inverseMass": 0.48620304488138066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.056753882, + "motion": 0, + "parent": null, + "position": { + "#": 5016 + }, + "positionImpulse": { + "#": 5017 + }, + "positionPrev": { + "#": 5018 + }, + "render": { + "#": 5019 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5021 + }, + "vertices": { + "#": 5022 + } + }, + [ + { + "#": 4997 + }, + { + "#": 4998 + }, + { + "#": 4999 + }, + { + "#": 5000 + }, + { + "#": 5001 + }, + { + "#": 5002 + }, + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + }, + { + "#": 5007 + }, + { + "#": 5008 + }, + { + "#": 5009 + } + ], + { + "x": -0.9709624395087223, + "y": -0.23923198168988796 + }, + { + "x": -0.88541118244915, + "y": -0.46480860361443177 + }, + { + "x": -0.7485653014540001, + "y": -0.6630610752103321 + }, + { + "x": -0.5680684537179983, + "y": -0.8229813071330615 + }, + { + "x": -0.35458614918379344, + "y": -0.935023348803124 + }, + { + "x": -0.12051927635431298, + "y": -0.9927109871594214 + }, + { + "x": 0.12051927635431298, + "y": -0.9927109871594214 + }, + { + "x": 0.35458614918379344, + "y": -0.935023348803124 + }, + { + "x": 0.5680684537179983, + "y": -0.8229813071330615 + }, + { + "x": 0.7485653014540001, + "y": -0.6630610752103321 + }, + { + "x": 0.88541118244915, + "y": -0.46480860361443177 + }, + { + "x": 0.9709624395087223, + "y": -0.23923198168988796 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5011 + }, + "min": { + "#": 5012 + } + }, + { + "x": 623.0440000000001, + "y": 716.3679999999999 + }, + { + "x": 571.9960000000001, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5200000000001, + "y": 690.656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5200000000001, + "y": 690.656 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5020 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5023 + }, + { + "#": 5024 + }, + { + "#": 5025 + }, + { + "#": 5026 + }, + { + "#": 5027 + }, + { + "#": 5028 + }, + { + "#": 5029 + }, + { + "#": 5030 + }, + { + "#": 5031 + }, + { + "#": 5032 + }, + { + "#": 5033 + }, + { + "#": 5034 + }, + { + "#": 5035 + }, + { + "#": 5036 + }, + { + "#": 5037 + }, + { + "#": 5038 + }, + { + "#": 5039 + }, + { + "#": 5040 + }, + { + "#": 5041 + }, + { + "#": 5042 + }, + { + "#": 5043 + }, + { + "#": 5044 + }, + { + "#": 5045 + }, + { + "#": 5046 + }, + { + "#": 5047 + }, + { + "#": 5048 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 623.0440000000001, + "y": 693.755 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 621.5610000000001, + "y": 699.774 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 618.6800000000001, + "y": 705.262 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 614.57, + "y": 709.9019999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 609.469, + "y": 713.423 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 603.6730000000001, + "y": 715.621 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 597.5200000000001, + "y": 716.3679999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.3670000000001, + "y": 715.621 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 585.5710000000001, + "y": 713.423 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 580.4700000000001, + "y": 709.9019999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.3600000000001, + "y": 705.262 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 573.479, + "y": 699.774 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 571.9960000000001, + "y": 693.755 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 571.9960000000001, + "y": 687.5569999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 573.479, + "y": 681.5379999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 576.3600000000001, + "y": 676.05 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 580.4700000000001, + "y": 671.41 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 585.5710000000001, + "y": 667.8889999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 591.3670000000001, + "y": 665.6909999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 597.5200000000001, + "y": 664.944 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 603.6730000000001, + "y": 665.6909999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 609.469, + "y": 667.8889999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 614.57, + "y": 671.41 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 618.6800000000001, + "y": 676.05 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 621.5610000000001, + "y": 681.5379999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 623.0440000000001, + "y": 687.5569999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 773.7538339999998, + "axes": { + "#": 5050 + }, + "bounds": { + "#": 5059 + }, + "circleRadius": 15.897826646090534, + "collisionFilter": { + "#": 5062 + }, + "constraintImpulse": { + "#": 5063 + }, + "density": 0.001, + "force": { + "#": 5064 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 381.1923679213431, + "inverseInertia": 0.0026233473808855074, + "inverseMass": 1.2924007042787724, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7737538339999998, + "motion": 0, + "parent": null, + "position": { + "#": 5065 + }, + "positionImpulse": { + "#": 5066 + }, + "positionPrev": { + "#": 5067 + }, + "render": { + "#": 5068 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5070 + }, + "vertices": { + "#": 5071 + } + }, + [ + { + "#": 5051 + }, + { + "#": 5052 + }, + { + "#": 5053 + }, + { + "#": 5054 + }, + { + "#": 5055 + }, + { + "#": 5056 + }, + { + "#": 5057 + }, + { + "#": 5058 + } + ], + { + "x": -0.9239048251727244, + "y": -0.38262236477048445 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.38262236477048445, + "y": -0.9239048251727244 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38262236477048445, + "y": -0.9239048251727244 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9239048251727244, + "y": -0.38262236477048445 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5060 + }, + "min": { + "#": 5061 + } + }, + { + "x": 664.2280000000001, + "y": 696.1279999999999 + }, + { + "x": 633.0440000000001, + "y": 664.944 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 648.6360000000001, + "y": 680.536 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 648.6360000000001, + "y": 680.536 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5069 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5072 + }, + { + "#": 5073 + }, + { + "#": 5074 + }, + { + "#": 5075 + }, + { + "#": 5076 + }, + { + "#": 5077 + }, + { + "#": 5078 + }, + { + "#": 5079 + }, + { + "#": 5080 + }, + { + "#": 5081 + }, + { + "#": 5082 + }, + { + "#": 5083 + }, + { + "#": 5084 + }, + { + "#": 5085 + }, + { + "#": 5086 + }, + { + "#": 5087 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 664.2280000000001, + "y": 683.6379999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 661.8550000000001, + "y": 689.3679999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 657.4680000000001, + "y": 693.755 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 651.738, + "y": 696.1279999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 645.5340000000001, + "y": 696.1279999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 639.8040000000001, + "y": 693.755 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 635.417, + "y": 689.3679999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 633.0440000000001, + "y": 683.6379999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 633.0440000000001, + "y": 677.434 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.417, + "y": 671.704 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 639.8040000000001, + "y": 667.3169999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 645.5340000000001, + "y": 664.944 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 651.738, + "y": 664.944 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 657.4680000000001, + "y": 667.3169999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 661.8550000000001, + "y": 671.704 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 664.2280000000001, + "y": 677.434 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1605.3869300000001, + "axes": { + "#": 5089 + }, + "bounds": { + "#": 5102 + }, + "circleRadius": 22.735146604938272, + "collisionFilter": { + "#": 5105 + }, + "constraintImpulse": { + "#": 5106 + }, + "density": 0.001, + "force": { + "#": 5107 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": 1640.7824271648174, + "inverseInertia": 0.0006094653279094082, + "inverseMass": 0.6229027914161478, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.60538693, + "motion": 0, + "parent": null, + "position": { + "#": 5108 + }, + "positionImpulse": { + "#": 5109 + }, + "positionPrev": { + "#": 5110 + }, + "render": { + "#": 5111 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5113 + }, + "vertices": { + "#": 5114 + } + }, + [ + { + "#": 5090 + }, + { + "#": 5091 + }, + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + }, + { + "#": 5095 + }, + { + "#": 5096 + }, + { + "#": 5097 + }, + { + "#": 5098 + }, + { + "#": 5099 + }, + { + "#": 5100 + }, + { + "#": 5101 + } + ], + { + "x": -0.9659209717012952, + "y": -0.2588371619911359 + }, + { + "x": -0.8659947892090337, + "y": -0.500053022251442 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.500053022251442, + "y": -0.8659947892090337 + }, + { + "x": -0.2588371619911359, + "y": -0.9659209717012952 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588371619911359, + "y": -0.9659209717012952 + }, + { + "x": 0.500053022251442, + "y": -0.8659947892090337 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8659947892090337, + "y": -0.500053022251442 + }, + { + "x": 0.9659209717012952, + "y": -0.2588371619911359 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5103 + }, + "min": { + "#": 5104 + } + }, + { + "x": 145.082, + "y": 779.4960000000001 + }, + { + "x": 100, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 122.541, + "y": 756.955 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 122.541, + "y": 756.955 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5112 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5115 + }, + { + "#": 5116 + }, + { + "#": 5117 + }, + { + "#": 5118 + }, + { + "#": 5119 + }, + { + "#": 5120 + }, + { + "#": 5121 + }, + { + "#": 5122 + }, + { + "#": 5123 + }, + { + "#": 5124 + }, + { + "#": 5125 + }, + { + "#": 5126 + }, + { + "#": 5127 + }, + { + "#": 5128 + }, + { + "#": 5129 + }, + { + "#": 5130 + }, + { + "#": 5131 + }, + { + "#": 5132 + }, + { + "#": 5133 + }, + { + "#": 5134 + }, + { + "#": 5135 + }, + { + "#": 5136 + }, + { + "#": 5137 + }, + { + "#": 5138 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 145.082, + "y": 759.923 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 143.546, + "y": 765.6550000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140.578, + "y": 770.7950000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 136.381, + "y": 774.9920000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 131.24099999999999, + "y": 777.96 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 125.509, + "y": 779.4960000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 119.573, + "y": 779.4960000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 113.841, + "y": 777.96 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.701, + "y": 774.9920000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 104.50399999999999, + "y": 770.7950000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 101.536, + "y": 765.6550000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 759.923 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 753.9870000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 101.536, + "y": 748.255 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 104.50399999999999, + "y": 743.115 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 108.701, + "y": 738.918 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 113.841, + "y": 735.95 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 119.573, + "y": 734.414 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 125.509, + "y": 734.414 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 131.24099999999999, + "y": 735.95 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 136.381, + "y": 738.918 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 140.578, + "y": 743.115 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 143.546, + "y": 748.255 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 145.082, + "y": 753.9870000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 885.8898539999999, + "axes": { + "#": 5140 + }, + "bounds": { + "#": 5150 + }, + "circleRadius": 16.964441872427983, + "collisionFilter": { + "#": 5153 + }, + "constraintImpulse": { + "#": 5154 + }, + "density": 0.001, + "force": { + "#": 5155 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": 499.66154369180117, + "inverseInertia": 0.0020013547422749333, + "inverseMass": 1.1288085030941106, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8858898539999999, + "motion": 0, + "parent": null, + "position": { + "#": 5156 + }, + "positionImpulse": { + "#": 5157 + }, + "positionPrev": { + "#": 5158 + }, + "render": { + "#": 5159 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5161 + }, + "vertices": { + "#": 5162 + } + }, + [ + { + "#": 5141 + }, + { + "#": 5142 + }, + { + "#": 5143 + }, + { + "#": 5144 + }, + { + "#": 5145 + }, + { + "#": 5146 + }, + { + "#": 5147 + }, + { + "#": 5148 + }, + { + "#": 5149 + } + ], + { + "x": -0.939689304787221, + "y": -0.3420292538197708 + }, + { + "x": -0.7661025820927431, + "y": -0.6427183159914085 + }, + { + "x": -0.4998448927833589, + "y": -0.8661149364595858 + }, + { + "x": -0.17364008799244365, + "y": -0.984809179405826 + }, + { + "x": 0.17364008799244365, + "y": -0.984809179405826 + }, + { + "x": 0.4998448927833589, + "y": -0.8661149364595858 + }, + { + "x": 0.7661025820927431, + "y": -0.6427183159914085 + }, + { + "x": 0.939689304787221, + "y": -0.3420292538197708 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5151 + }, + "min": { + "#": 5152 + } + }, + { + "x": 188.49599999999998, + "y": 768.3419999999999 + }, + { + "x": 155.082, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 171.789, + "y": 751.3779999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 171.789, + "y": 751.3779999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5160 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5163 + }, + { + "#": 5164 + }, + { + "#": 5165 + }, + { + "#": 5166 + }, + { + "#": 5167 + }, + { + "#": 5168 + }, + { + "#": 5169 + }, + { + "#": 5170 + }, + { + "#": 5171 + }, + { + "#": 5172 + }, + { + "#": 5173 + }, + { + "#": 5174 + }, + { + "#": 5175 + }, + { + "#": 5176 + }, + { + "#": 5177 + }, + { + "#": 5178 + }, + { + "#": 5179 + }, + { + "#": 5180 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 188.49599999999998, + "y": 754.324 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 186.481, + "y": 759.8599999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 182.694, + "y": 764.3739999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 177.59099999999998, + "y": 767.319 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 171.789, + "y": 768.3419999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 165.987, + "y": 767.319 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 160.884, + "y": 764.3739999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 157.09699999999998, + "y": 759.8599999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 155.082, + "y": 754.324 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 155.082, + "y": 748.4319999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 157.09699999999998, + "y": 742.896 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 160.884, + "y": 738.382 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.987, + "y": 735.4369999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 171.789, + "y": 734.414 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 177.59099999999998, + "y": 735.4369999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.694, + "y": 738.382 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 186.481, + "y": 742.896 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 188.49599999999998, + "y": 748.4319999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1754.99178, + "axes": { + "#": 5182 + }, + "bounds": { + "#": 5195 + }, + "circleRadius": 23.770897633744855, + "collisionFilter": { + "#": 5198 + }, + "constraintImpulse": { + "#": 5199 + }, + "density": 0.001, + "force": { + "#": 5200 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": 1960.838039917572, + "inverseInertia": 0.0005099860262003267, + "inverseMass": 0.5698032386225763, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7549917800000001, + "motion": 0, + "parent": null, + "position": { + "#": 5201 + }, + "positionImpulse": { + "#": 5202 + }, + "positionPrev": { + "#": 5203 + }, + "render": { + "#": 5204 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5206 + }, + "vertices": { + "#": 5207 + } + }, + [ + { + "#": 5183 + }, + { + "#": 5184 + }, + { + "#": 5185 + }, + { + "#": 5186 + }, + { + "#": 5187 + }, + { + "#": 5188 + }, + { + "#": 5189 + }, + { + "#": 5190 + }, + { + "#": 5191 + }, + { + "#": 5192 + }, + { + "#": 5193 + }, + { + "#": 5194 + } + ], + { + "x": -0.9658890542435851, + "y": -0.25895624126951017 + }, + { + "x": -0.8660728773588139, + "y": -0.4999177643407215 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.4999177643407215, + "y": -0.8660728773588139 + }, + { + "x": -0.25895624126951017, + "y": -0.9658890542435851 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25895624126951017, + "y": -0.9658890542435851 + }, + { + "x": 0.4999177643407215, + "y": -0.8660728773588139 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660728773588139, + "y": -0.4999177643407215 + }, + { + "x": 0.9658890542435851, + "y": -0.25895624126951017 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5196 + }, + "min": { + "#": 5197 + } + }, + { + "x": 245.632, + "y": 781.55 + }, + { + "x": 198.49599999999998, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 222.064, + "y": 757.982 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 222.064, + "y": 757.982 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5205 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5208 + }, + { + "#": 5209 + }, + { + "#": 5210 + }, + { + "#": 5211 + }, + { + "#": 5212 + }, + { + "#": 5213 + }, + { + "#": 5214 + }, + { + "#": 5215 + }, + { + "#": 5216 + }, + { + "#": 5217 + }, + { + "#": 5218 + }, + { + "#": 5219 + }, + { + "#": 5220 + }, + { + "#": 5221 + }, + { + "#": 5222 + }, + { + "#": 5223 + }, + { + "#": 5224 + }, + { + "#": 5225 + }, + { + "#": 5226 + }, + { + "#": 5227 + }, + { + "#": 5228 + }, + { + "#": 5229 + }, + { + "#": 5230 + }, + { + "#": 5231 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.632, + "y": 761.0849999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 244.025, + "y": 767.079 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 240.923, + "y": 772.453 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 236.535, + "y": 776.841 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 231.161, + "y": 779.943 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 225.167, + "y": 781.55 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 218.96099999999998, + "y": 781.55 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 212.96699999999998, + "y": 779.943 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 207.593, + "y": 776.841 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 203.20499999999998, + "y": 772.453 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 200.10299999999998, + "y": 767.079 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 198.49599999999998, + "y": 761.0849999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 198.49599999999998, + "y": 754.879 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 200.10299999999998, + "y": 748.885 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 203.20499999999998, + "y": 743.511 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 207.593, + "y": 739.1229999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 212.96699999999998, + "y": 736.021 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 218.96099999999998, + "y": 734.414 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 225.167, + "y": 734.414 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 231.161, + "y": 736.021 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 236.535, + "y": 739.1229999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 240.923, + "y": 743.511 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 244.025, + "y": 748.885 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 245.632, + "y": 754.879 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2698.393094000001, + "axes": { + "#": 5233 + }, + "bounds": { + "#": 5247 + }, + "circleRadius": 29.450810185185183, + "collisionFilter": { + "#": 5250 + }, + "constraintImpulse": { + "#": 5251 + }, + "density": 0.001, + "force": { + "#": 5252 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 108, + "inertia": 4635.524094588275, + "inverseInertia": 0.000215725337544345, + "inverseMass": 0.37059092769824575, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.698393094000001, + "motion": 0, + "parent": null, + "position": { + "#": 5253 + }, + "positionImpulse": { + "#": 5254 + }, + "positionPrev": { + "#": 5255 + }, + "render": { + "#": 5256 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5258 + }, + "vertices": { + "#": 5259 + } + }, + [ + { + "#": 5234 + }, + { + "#": 5235 + }, + { + "#": 5236 + }, + { + "#": 5237 + }, + { + "#": 5238 + }, + { + "#": 5239 + }, + { + "#": 5240 + }, + { + "#": 5241 + }, + { + "#": 5242 + }, + { + "#": 5243 + }, + { + "#": 5244 + }, + { + "#": 5245 + }, + { + "#": 5246 + } + ], + { + "x": -0.9709408980232213, + "y": -0.23931939442063754 + }, + { + "x": -0.8854949778226265, + "y": -0.46464894732572676 + }, + { + "x": -0.748426378165209, + "y": -0.6632178800865579 + }, + { + "x": -0.5680521829952273, + "y": -0.8229925378728272 + }, + { + "x": -0.3546712185765775, + "y": -0.9349910837614472 + }, + { + "x": -0.12056692008849908, + "y": -0.9927052018501633 + }, + { + "x": 0.12056692008849908, + "y": -0.9927052018501633 + }, + { + "x": 0.3546712185765775, + "y": -0.9349910837614472 + }, + { + "x": 0.5680521829952273, + "y": -0.8229925378728272 + }, + { + "x": 0.748426378165209, + "y": -0.6632178800865579 + }, + { + "x": 0.8854949778226265, + "y": -0.46464894732572676 + }, + { + "x": 0.9709408980232213, + "y": -0.23931939442063754 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5248 + }, + "min": { + "#": 5249 + } + }, + { + "x": 314.104, + "y": 793.316 + }, + { + "x": 255.632, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 284.868, + "y": 763.865 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 284.868, + "y": 763.865 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5257 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5260 + }, + { + "#": 5261 + }, + { + "#": 5262 + }, + { + "#": 5263 + }, + { + "#": 5264 + }, + { + "#": 5265 + }, + { + "#": 5266 + }, + { + "#": 5267 + }, + { + "#": 5268 + }, + { + "#": 5269 + }, + { + "#": 5270 + }, + { + "#": 5271 + }, + { + "#": 5272 + }, + { + "#": 5273 + }, + { + "#": 5274 + }, + { + "#": 5275 + }, + { + "#": 5276 + }, + { + "#": 5277 + }, + { + "#": 5278 + }, + { + "#": 5279 + }, + { + "#": 5280 + }, + { + "#": 5281 + }, + { + "#": 5282 + }, + { + "#": 5283 + }, + { + "#": 5284 + }, + { + "#": 5285 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.104, + "y": 767.415 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.405, + "y": 774.308 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 309.106, + "y": 780.595 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.397, + "y": 785.909 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 298.554, + "y": 789.942 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.916, + "y": 792.46 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 284.868, + "y": 793.316 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 277.82, + "y": 792.46 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 271.182, + "y": 789.942 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 265.339, + "y": 785.909 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 260.63, + "y": 780.595 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 257.331, + "y": 774.308 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 255.632, + "y": 767.415 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 255.632, + "y": 760.315 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 257.331, + "y": 753.422 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 260.63, + "y": 747.135 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 265.339, + "y": 741.821 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 271.182, + "y": 737.788 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 277.82, + "y": 735.27 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 284.868, + "y": 734.414 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 291.916, + "y": 735.27 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 298.554, + "y": 737.788 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 304.397, + "y": 741.821 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 309.106, + "y": 747.135 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 312.405, + "y": 753.422 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 314.104, + "y": 760.315 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1009.944076, + "axes": { + "#": 5287 + }, + "bounds": { + "#": 5298 + }, + "circleRadius": 18.078253600823047, + "collisionFilter": { + "#": 5301 + }, + "constraintImpulse": { + "#": 5302 + }, + "density": 0.001, + "force": { + "#": 5303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 649.379472717892, + "inverseInertia": 0.0015399316455363644, + "inverseMass": 0.9901538350129399, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.009944076, + "motion": 0, + "parent": null, + "position": { + "#": 5304 + }, + "positionImpulse": { + "#": 5305 + }, + "positionPrev": { + "#": 5306 + }, + "render": { + "#": 5307 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5309 + }, + "vertices": { + "#": 5310 + } + }, + [ + { + "#": 5288 + }, + { + "#": 5289 + }, + { + "#": 5290 + }, + { + "#": 5291 + }, + { + "#": 5292 + }, + { + "#": 5293 + }, + { + "#": 5294 + }, + { + "#": 5295 + }, + { + "#": 5296 + }, + { + "#": 5297 + } + ], + { + "x": -0.9510431635189839, + "y": -0.30905808697363535 + }, + { + "x": -0.8089882931594037, + "y": -0.5878247540985618 + }, + { + "x": -0.5878247540985618, + "y": -0.8089882931594037 + }, + { + "x": -0.30905808697363535, + "y": -0.9510431635189839 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905808697363535, + "y": -0.9510431635189839 + }, + { + "x": 0.5878247540985618, + "y": -0.8089882931594037 + }, + { + "x": 0.8089882931594037, + "y": -0.5878247540985618 + }, + { + "x": 0.9510431635189839, + "y": -0.30905808697363535 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5299 + }, + "min": { + "#": 5300 + } + }, + { + "x": 359.816, + "y": 770.126 + }, + { + "x": 324.104, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 341.96, + "y": 752.27 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 341.96, + "y": 752.27 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5308 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5311 + }, + { + "#": 5312 + }, + { + "#": 5313 + }, + { + "#": 5314 + }, + { + "#": 5315 + }, + { + "#": 5316 + }, + { + "#": 5317 + }, + { + "#": 5318 + }, + { + "#": 5319 + }, + { + "#": 5320 + }, + { + "#": 5321 + }, + { + "#": 5322 + }, + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + }, + { + "#": 5326 + }, + { + "#": 5327 + }, + { + "#": 5328 + }, + { + "#": 5329 + }, + { + "#": 5330 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 359.816, + "y": 755.098 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 358.068, + "y": 760.477 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 354.743, + "y": 765.053 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350.167, + "y": 768.3779999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 344.78799999999995, + "y": 770.126 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 339.132, + "y": 770.126 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 333.753, + "y": 768.3779999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 329.17699999999996, + "y": 765.053 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 325.852, + "y": 760.477 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.104, + "y": 755.098 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.104, + "y": 749.442 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 325.852, + "y": 744.063 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 329.17699999999996, + "y": 739.487 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 333.753, + "y": 736.162 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 339.132, + "y": 734.414 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 344.78799999999995, + "y": 734.414 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 350.167, + "y": 736.162 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 354.743, + "y": 739.487 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 358.068, + "y": 744.063 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 359.816, + "y": 749.442 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1020.4002399999998, + "axes": { + "#": 5332 + }, + "bounds": { + "#": 5343 + }, + "circleRadius": 18.171746399176953, + "collisionFilter": { + "#": 5346 + }, + "constraintImpulse": { + "#": 5347 + }, + "density": 0.001, + "force": { + "#": 5348 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 110, + "inertia": 662.8954040469373, + "inverseInertia": 0.001508533614647287, + "inverseMass": 0.9800076095630869, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0204002399999998, + "motion": 0, + "parent": null, + "position": { + "#": 5349 + }, + "positionImpulse": { + "#": 5350 + }, + "positionPrev": { + "#": 5351 + }, + "render": { + "#": 5352 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5354 + }, + "vertices": { + "#": 5355 + } + }, + [ + { + "#": 5333 + }, + { + "#": 5334 + }, + { + "#": 5335 + }, + { + "#": 5336 + }, + { + "#": 5337 + }, + { + "#": 5338 + }, + { + "#": 5339 + }, + { + "#": 5340 + }, + { + "#": 5341 + }, + { + "#": 5342 + } + ], + { + "x": -0.9510482862449724, + "y": -0.3090423227172957 + }, + { + "x": -0.8089642180644331, + "y": -0.5878578857950281 + }, + { + "x": -0.5878578857950281, + "y": -0.8089642180644331 + }, + { + "x": -0.3090423227172957, + "y": -0.9510482862449724 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090423227172957, + "y": -0.9510482862449724 + }, + { + "x": 0.5878578857950281, + "y": -0.8089642180644331 + }, + { + "x": 0.8089642180644331, + "y": -0.5878578857950281 + }, + { + "x": 0.9510482862449724, + "y": -0.3090423227172957 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5344 + }, + "min": { + "#": 5345 + } + }, + { + "x": 405.71199999999993, + "y": 770.31 + }, + { + "x": 369.816, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.76399999999995, + "y": 752.362 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.76399999999995, + "y": 752.362 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5353 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5356 + }, + { + "#": 5357 + }, + { + "#": 5358 + }, + { + "#": 5359 + }, + { + "#": 5360 + }, + { + "#": 5361 + }, + { + "#": 5362 + }, + { + "#": 5363 + }, + { + "#": 5364 + }, + { + "#": 5365 + }, + { + "#": 5366 + }, + { + "#": 5367 + }, + { + "#": 5368 + }, + { + "#": 5369 + }, + { + "#": 5370 + }, + { + "#": 5371 + }, + { + "#": 5372 + }, + { + "#": 5373 + }, + { + "#": 5374 + }, + { + "#": 5375 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405.71199999999993, + "y": 755.2049999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 403.9549999999999, + "y": 760.612 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400.61299999999994, + "y": 765.211 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.01399999999995, + "y": 768.553 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 390.60699999999997, + "y": 770.31 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 384.92099999999994, + "y": 770.31 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 379.51399999999995, + "y": 768.553 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 374.91499999999996, + "y": 765.211 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 371.573, + "y": 760.612 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.816, + "y": 755.2049999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 369.816, + "y": 749.519 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 371.573, + "y": 744.112 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 374.91499999999996, + "y": 739.5129999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 379.51399999999995, + "y": 736.1709999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 384.92099999999994, + "y": 734.414 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 390.60699999999997, + "y": 734.414 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 396.01399999999995, + "y": 736.1709999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 400.61299999999994, + "y": 739.5129999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 403.9549999999999, + "y": 744.112 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 405.71199999999993, + "y": 749.519 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1846.3076820000003, + "axes": { + "#": 5377 + }, + "bounds": { + "#": 5391 + }, + "circleRadius": 24.360918209876544, + "collisionFilter": { + "#": 5394 + }, + "constraintImpulse": { + "#": 5395 + }, + "density": 0.001, + "force": { + "#": 5396 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 111, + "inertia": 2170.1840279388884, + "inverseInertia": 0.0004607904155251481, + "inverseMass": 0.5416215345628399, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8463076820000004, + "motion": 0, + "parent": null, + "position": { + "#": 5397 + }, + "positionImpulse": { + "#": 5398 + }, + "positionPrev": { + "#": 5399 + }, + "render": { + "#": 5400 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5402 + }, + "vertices": { + "#": 5403 + } + }, + [ + { + "#": 5378 + }, + { + "#": 5379 + }, + { + "#": 5380 + }, + { + "#": 5381 + }, + { + "#": 5382 + }, + { + "#": 5383 + }, + { + "#": 5384 + }, + { + "#": 5385 + }, + { + "#": 5386 + }, + { + "#": 5387 + }, + { + "#": 5388 + }, + { + "#": 5389 + }, + { + "#": 5390 + } + ], + { + "x": -0.9709680504547509, + "y": -0.23920920759055342 + }, + { + "x": -0.8854679746634831, + "y": -0.4647004043955085 + }, + { + "x": -0.7483949633546547, + "y": -0.6632533292983798 + }, + { + "x": -0.5681824814692611, + "y": -0.8229025870365416 + }, + { + "x": -0.35453616373576663, + "y": -0.9350423031090763 + }, + { + "x": -0.12055511119895662, + "y": -0.992706636002705 + }, + { + "x": 0.12055511119895662, + "y": -0.992706636002705 + }, + { + "x": 0.35453616373576663, + "y": -0.9350423031090763 + }, + { + "x": 0.5681824814692611, + "y": -0.8229025870365416 + }, + { + "x": 0.7483949633546547, + "y": -0.6632533292983798 + }, + { + "x": 0.8854679746634831, + "y": -0.4647004043955085 + }, + { + "x": 0.9709680504547509, + "y": -0.23920920759055342 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5392 + }, + "min": { + "#": 5393 + } + }, + { + "x": 464.0779999999999, + "y": 783.136 + }, + { + "x": 415.71199999999993, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 439.8949999999999, + "y": 758.775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 439.8949999999999, + "y": 758.775 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5401 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5404 + }, + { + "#": 5405 + }, + { + "#": 5406 + }, + { + "#": 5407 + }, + { + "#": 5408 + }, + { + "#": 5409 + }, + { + "#": 5410 + }, + { + "#": 5411 + }, + { + "#": 5412 + }, + { + "#": 5413 + }, + { + "#": 5414 + }, + { + "#": 5415 + }, + { + "#": 5416 + }, + { + "#": 5417 + }, + { + "#": 5418 + }, + { + "#": 5419 + }, + { + "#": 5420 + }, + { + "#": 5421 + }, + { + "#": 5422 + }, + { + "#": 5423 + }, + { + "#": 5424 + }, + { + "#": 5425 + }, + { + "#": 5426 + }, + { + "#": 5427 + }, + { + "#": 5428 + }, + { + "#": 5429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 464.0779999999999, + "y": 761.711 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 462.67299999999994, + "y": 767.414 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 459.9439999999999, + "y": 772.614 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 456.0489999999999, + "y": 777.009 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 451.21599999999995, + "y": 780.346 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 445.7249999999999, + "y": 782.428 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 439.8949999999999, + "y": 783.136 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 434.06499999999994, + "y": 782.428 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 428.5739999999999, + "y": 780.346 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.74099999999993, + "y": 777.009 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 419.84599999999995, + "y": 772.614 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 417.1169999999999, + "y": 767.414 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 415.71199999999993, + "y": 761.711 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 415.71199999999993, + "y": 755.8389999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 417.1169999999999, + "y": 750.136 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 419.84599999999995, + "y": 744.9359999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 423.74099999999993, + "y": 740.5409999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 428.5739999999999, + "y": 737.204 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 434.06499999999994, + "y": 735.122 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 439.8949999999999, + "y": 734.414 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 445.7249999999999, + "y": 735.122 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 451.21599999999995, + "y": 737.204 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 456.0489999999999, + "y": 740.5409999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 459.9439999999999, + "y": 744.9359999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 462.67299999999994, + "y": 750.136 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 464.0779999999999, + "y": 755.8389999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1121.860092, + "axes": { + "#": 5431 + }, + "bounds": { + "#": 5442 + }, + "circleRadius": 19.053176440329217, + "collisionFilter": { + "#": 5445 + }, + "constraintImpulse": { + "#": 5446 + }, + "density": 0.001, + "force": { + "#": 5447 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": 801.2744632606872, + "inverseInertia": 0.0012480118184855459, + "inverseMass": 0.8913767475383196, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.121860092, + "motion": 0, + "parent": null, + "position": { + "#": 5448 + }, + "positionImpulse": { + "#": 5449 + }, + "positionPrev": { + "#": 5450 + }, + "render": { + "#": 5451 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5453 + }, + "vertices": { + "#": 5454 + } + }, + [ + { + "#": 5432 + }, + { + "#": 5433 + }, + { + "#": 5434 + }, + { + "#": 5435 + }, + { + "#": 5436 + }, + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + }, + { + "#": 5441 + } + ], + { + "x": -0.9510550252101229, + "y": -0.309021583425127 + }, + { + "x": -0.8090261365434558, + "y": -0.5877726689712355 + }, + { + "x": -0.5877726689712355, + "y": -0.8090261365434558 + }, + { + "x": -0.309021583425127, + "y": -0.9510550252101229 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.309021583425127, + "y": -0.9510550252101229 + }, + { + "x": 0.5877726689712355, + "y": -0.8090261365434558 + }, + { + "x": 0.8090261365434558, + "y": -0.5877726689712355 + }, + { + "x": 0.9510550252101229, + "y": -0.309021583425127 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5443 + }, + "min": { + "#": 5444 + } + }, + { + "x": 511.71599999999995, + "y": 772.0519999999999 + }, + { + "x": 474.0779999999999, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.89699999999993, + "y": 753.233 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.89699999999993, + "y": 753.233 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5452 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5455 + }, + { + "#": 5456 + }, + { + "#": 5457 + }, + { + "#": 5458 + }, + { + "#": 5459 + }, + { + "#": 5460 + }, + { + "#": 5461 + }, + { + "#": 5462 + }, + { + "#": 5463 + }, + { + "#": 5464 + }, + { + "#": 5465 + }, + { + "#": 5466 + }, + { + "#": 5467 + }, + { + "#": 5468 + }, + { + "#": 5469 + }, + { + "#": 5470 + }, + { + "#": 5471 + }, + { + "#": 5472 + }, + { + "#": 5473 + }, + { + "#": 5474 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 511.71599999999995, + "y": 756.2139999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 509.8739999999999, + "y": 761.8829999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.36999999999995, + "y": 766.7059999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.5469999999999, + "y": 770.2099999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.87799999999993, + "y": 772.0519999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.91599999999994, + "y": 772.0519999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 484.24699999999996, + "y": 770.2099999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 479.4239999999999, + "y": 766.7059999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.91999999999996, + "y": 761.8829999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 474.0779999999999, + "y": 756.2139999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 474.0779999999999, + "y": 750.252 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 475.91999999999996, + "y": 744.583 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 479.4239999999999, + "y": 739.76 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 484.24699999999996, + "y": 736.256 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.91599999999994, + "y": 734.414 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.87799999999993, + "y": 734.414 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.5469999999999, + "y": 736.256 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.36999999999995, + "y": 739.76 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 509.8739999999999, + "y": 744.583 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 511.71599999999995, + "y": 750.252 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1127.3694039999998, + "axes": { + "#": 5476 + }, + "bounds": { + "#": 5487 + }, + "circleRadius": 19.100372942386834, + "collisionFilter": { + "#": 5490 + }, + "constraintImpulse": { + "#": 5491 + }, + "density": 0.001, + "force": { + "#": 5492 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 113, + "inertia": 809.1637011361704, + "inverseInertia": 0.0012358438701536793, + "inverseMass": 0.8870207018674778, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1273694039999997, + "motion": 0, + "parent": null, + "position": { + "#": 5493 + }, + "positionImpulse": { + "#": 5494 + }, + "positionPrev": { + "#": 5495 + }, + "render": { + "#": 5496 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5498 + }, + "vertices": { + "#": 5499 + } + }, + [ + { + "#": 5477 + }, + { + "#": 5478 + }, + { + "#": 5479 + }, + { + "#": 5480 + }, + { + "#": 5481 + }, + { + "#": 5482 + }, + { + "#": 5483 + }, + { + "#": 5484 + }, + { + "#": 5485 + }, + { + "#": 5486 + } + ], + { + "x": -0.9510820218373812, + "y": -0.3089384853619226 + }, + { + "x": -0.809003716338754, + "y": -0.5878035275073508 + }, + { + "x": -0.5878035275073508, + "y": -0.809003716338754 + }, + { + "x": -0.3089384853619226, + "y": -0.9510820218373812 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089384853619226, + "y": -0.9510820218373812 + }, + { + "x": 0.5878035275073508, + "y": -0.809003716338754 + }, + { + "x": 0.809003716338754, + "y": -0.5878035275073508 + }, + { + "x": 0.9510820218373812, + "y": -0.3089384853619226 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5488 + }, + "min": { + "#": 5489 + } + }, + { + "x": 559.4459999999999, + "y": 772.144 + }, + { + "x": 521.7159999999999, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540.5809999999999, + "y": 753.279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540.5809999999999, + "y": 753.279 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5497 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5500 + }, + { + "#": 5501 + }, + { + "#": 5502 + }, + { + "#": 5503 + }, + { + "#": 5504 + }, + { + "#": 5505 + }, + { + "#": 5506 + }, + { + "#": 5507 + }, + { + "#": 5508 + }, + { + "#": 5509 + }, + { + "#": 5510 + }, + { + "#": 5511 + }, + { + "#": 5512 + }, + { + "#": 5513 + }, + { + "#": 5514 + }, + { + "#": 5515 + }, + { + "#": 5516 + }, + { + "#": 5517 + }, + { + "#": 5518 + }, + { + "#": 5519 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 559.4459999999999, + "y": 756.267 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 557.5999999999999, + "y": 761.95 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 554.0869999999999, + "y": 766.785 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 549.252, + "y": 770.298 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.569, + "y": 772.144 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 537.5929999999998, + "y": 772.144 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 531.9099999999999, + "y": 770.298 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 527.0749999999999, + "y": 766.785 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 523.5619999999999, + "y": 761.95 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 521.7159999999999, + "y": 756.267 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 521.7159999999999, + "y": 750.2909999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 523.5619999999999, + "y": 744.608 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 527.0749999999999, + "y": 739.773 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 531.9099999999999, + "y": 736.26 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 537.5929999999998, + "y": 734.414 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 543.569, + "y": 734.414 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 549.252, + "y": 736.26 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 554.0869999999999, + "y": 739.773 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 557.5999999999999, + "y": 744.608 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 559.4459999999999, + "y": 750.2909999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2346.845503999999, + "axes": { + "#": 5521 + }, + "bounds": { + "#": 5535 + }, + "circleRadius": 27.46547067901235, + "collisionFilter": { + "#": 5538 + }, + "constraintImpulse": { + "#": 5539 + }, + "density": 0.001, + "force": { + "#": 5540 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 114, + "inertia": 3506.367321067902, + "inverseInertia": 0.0002851954482896102, + "inverseMass": 0.42610389064622484, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.346845503999999, + "motion": 0, + "parent": null, + "position": { + "#": 5541 + }, + "positionImpulse": { + "#": 5542 + }, + "positionPrev": { + "#": 5543 + }, + "render": { + "#": 5544 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5546 + }, + "vertices": { + "#": 5547 + } + }, + [ + { + "#": 5522 + }, + { + "#": 5523 + }, + { + "#": 5524 + }, + { + "#": 5525 + }, + { + "#": 5526 + }, + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + }, + { + "#": 5534 + } + ], + { + "x": -0.9709544410946516, + "y": -0.23926444223614307 + }, + { + "x": -0.8854647120961671, + "y": -0.46470662103358484 + }, + { + "x": -0.7484832266084929, + "y": -0.6631537223643849 + }, + { + "x": -0.5680470356281455, + "y": -0.822996090704006 + }, + { + "x": -0.3546132584639368, + "y": -0.9350130677811883 + }, + { + "x": -0.12052080026097065, + "y": -0.9927108021495763 + }, + { + "x": 0.12052080026097065, + "y": -0.9927108021495763 + }, + { + "x": 0.3546132584639368, + "y": -0.9350130677811883 + }, + { + "x": 0.5680470356281455, + "y": -0.822996090704006 + }, + { + "x": 0.7484832266084929, + "y": -0.6631537223643849 + }, + { + "x": 0.8854647120961671, + "y": -0.46470662103358484 + }, + { + "x": 0.9709544410946516, + "y": -0.23926444223614307 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5536 + }, + "min": { + "#": 5537 + } + }, + { + "x": 623.9759999999999, + "y": 789.344 + }, + { + "x": 569.4459999999999, + "y": 734.414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 596.7109999999999, + "y": 761.879 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 596.7109999999999, + "y": 761.879 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5545 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + }, + { + "#": 5552 + }, + { + "#": 5553 + }, + { + "#": 5554 + }, + { + "#": 5555 + }, + { + "#": 5556 + }, + { + "#": 5557 + }, + { + "#": 5558 + }, + { + "#": 5559 + }, + { + "#": 5560 + }, + { + "#": 5561 + }, + { + "#": 5562 + }, + { + "#": 5563 + }, + { + "#": 5564 + }, + { + "#": 5565 + }, + { + "#": 5566 + }, + { + "#": 5567 + }, + { + "#": 5568 + }, + { + "#": 5569 + }, + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + }, + { + "#": 5573 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 623.9759999999999, + "y": 765.19 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 622.3919999999999, + "y": 771.618 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 619.3149999999999, + "y": 777.481 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 614.9239999999999, + "y": 782.437 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 609.4749999999999, + "y": 786.198 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 603.2839999999999, + "y": 788.546 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 596.7109999999999, + "y": 789.344 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 590.1379999999999, + "y": 788.546 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 583.9469999999999, + "y": 786.198 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 578.4979999999999, + "y": 782.437 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 574.1069999999999, + "y": 777.481 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 571.0299999999999, + "y": 771.618 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 569.4459999999999, + "y": 765.19 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 569.4459999999999, + "y": 758.568 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 571.0299999999999, + "y": 752.14 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 574.1069999999999, + "y": 746.277 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 578.4979999999999, + "y": 741.321 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 583.9469999999999, + "y": 737.5600000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 590.1379999999999, + "y": 735.212 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 596.7109999999999, + "y": 734.414 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 603.2839999999999, + "y": 735.212 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 609.4749999999999, + "y": 737.5600000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 614.9239999999999, + "y": 741.321 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 619.3149999999999, + "y": 746.277 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 622.3919999999999, + "y": 752.14 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 623.9759999999999, + "y": 758.568 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1927.254822, + "axes": { + "#": 5575 + }, + "bounds": { + "#": 5589 + }, + "circleRadius": 24.889210390946502, + "collisionFilter": { + "#": 5592 + }, + "constraintImpulse": { + "#": 5593 + }, + "density": 0.001, + "force": { + "#": 5594 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 2364.649035490592, + "inverseInertia": 0.0004228957384335603, + "inverseMass": 0.5188727451008551, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.927254822, + "motion": 0, + "parent": null, + "position": { + "#": 5595 + }, + "positionImpulse": { + "#": 5596 + }, + "positionPrev": { + "#": 5597 + }, + "render": { + "#": 5598 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5600 + }, + "vertices": { + "#": 5601 + } + }, + [ + { + "#": 5576 + }, + { + "#": 5577 + }, + { + "#": 5578 + }, + { + "#": 5579 + }, + { + "#": 5580 + }, + { + "#": 5581 + }, + { + "#": 5582 + }, + { + "#": 5583 + }, + { + "#": 5584 + }, + { + "#": 5585 + }, + { + "#": 5586 + }, + { + "#": 5587 + }, + { + "#": 5588 + } + ], + { + "x": -0.9709410440920686, + "y": -0.2393188018050481 + }, + { + "x": -0.8854201928043248, + "y": -0.4647914394374667 + }, + { + "x": -0.7485669061572402, + "y": -0.6630592635701409 + }, + { + "x": -0.5680133484705358, + "y": -0.8230193411817792 + }, + { + "x": -0.3546090227600297, + "y": -0.9350146742041948 + }, + { + "x": -0.12050558188088281, + "y": -0.9927126496300679 + }, + { + "x": 0.12050558188088281, + "y": -0.9927126496300679 + }, + { + "x": 0.3546090227600297, + "y": -0.9350146742041948 + }, + { + "x": 0.5680133484705358, + "y": -0.8230193411817792 + }, + { + "x": 0.7485669061572402, + "y": -0.6630592635701409 + }, + { + "x": 0.8854201928043248, + "y": -0.4647914394374667 + }, + { + "x": 0.9709410440920686, + "y": -0.2393188018050481 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5590 + }, + "min": { + "#": 5591 + } + }, + { + "x": 149.416, + "y": 853.094 + }, + { + "x": 100, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 124.708, + "y": 828.205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 124.708, + "y": 828.205 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5599 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5602 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 149.416, + "y": 831.205 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 147.98, + "y": 837.0310000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 145.191, + "y": 842.344 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 141.213, + "y": 846.835 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 136.275, + "y": 850.243 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 130.664, + "y": 852.3710000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 124.708, + "y": 853.094 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.752, + "y": 852.3710000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 113.14099999999999, + "y": 850.243 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.203, + "y": 846.835 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.225, + "y": 842.344 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.436, + "y": 837.0310000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 831.205 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 825.205 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.436, + "y": 819.379 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.225, + "y": 814.066 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 108.203, + "y": 809.575 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 113.14099999999999, + "y": 806.167 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.752, + "y": 804.039 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 124.708, + "y": 803.316 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 130.664, + "y": 804.039 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 136.275, + "y": 806.167 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 141.213, + "y": 809.575 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 145.191, + "y": 814.066 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 147.98, + "y": 819.379 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 149.416, + "y": 825.205 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 843.7975979999999, + "axes": { + "#": 5629 + }, + "bounds": { + "#": 5639 + }, + "circleRadius": 16.556777263374485, + "collisionFilter": { + "#": 5642 + }, + "constraintImpulse": { + "#": 5643 + }, + "density": 0.001, + "force": { + "#": 5644 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 116, + "inertia": 453.30764014503984, + "inverseInertia": 0.0022060073809478283, + "inverseMass": 1.1851183297632475, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8437975979999999, + "motion": 0, + "parent": null, + "position": { + "#": 5645 + }, + "positionImpulse": { + "#": 5646 + }, + "positionPrev": { + "#": 5647 + }, + "render": { + "#": 5648 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5650 + }, + "vertices": { + "#": 5651 + } + }, + [ + { + "#": 5630 + }, + { + "#": 5631 + }, + { + "#": 5632 + }, + { + "#": 5633 + }, + { + "#": 5634 + }, + { + "#": 5635 + }, + { + "#": 5636 + }, + { + "#": 5637 + }, + { + "#": 5638 + } + ], + { + "x": -0.9397223093030161, + "y": -0.34193856377748083 + }, + { + "x": -0.7659788409533199, + "y": -0.6428657832019126 + }, + { + "x": -0.5000486573852558, + "y": -0.86599730960737 + }, + { + "x": -0.17372581087187394, + "y": -0.9847940610284518 + }, + { + "x": 0.17372581087187394, + "y": -0.9847940610284518 + }, + { + "x": 0.5000486573852558, + "y": -0.86599730960737 + }, + { + "x": 0.7659788409533199, + "y": -0.6428657832019126 + }, + { + "x": 0.9397223093030161, + "y": -0.34193856377748083 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5640 + }, + "min": { + "#": 5641 + } + }, + { + "x": 192.026, + "y": 836.4300000000001 + }, + { + "x": 159.416, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.721, + "y": 819.873 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.721, + "y": 819.873 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5649 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5652 + }, + { + "#": 5653 + }, + { + "#": 5654 + }, + { + "#": 5655 + }, + { + "#": 5656 + }, + { + "#": 5657 + }, + { + "#": 5658 + }, + { + "#": 5659 + }, + { + "#": 5660 + }, + { + "#": 5661 + }, + { + "#": 5662 + }, + { + "#": 5663 + }, + { + "#": 5664 + }, + { + "#": 5665 + }, + { + "#": 5666 + }, + { + "#": 5667 + }, + { + "#": 5668 + }, + { + "#": 5669 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 192.026, + "y": 822.748 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.06, + "y": 828.1510000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.363, + "y": 832.556 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 181.38400000000001, + "y": 835.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 175.721, + "y": 836.4300000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170.058, + "y": 835.431 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 165.079, + "y": 832.556 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 161.382, + "y": 828.1510000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 159.416, + "y": 822.748 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.416, + "y": 816.998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 161.382, + "y": 811.595 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 165.079, + "y": 807.19 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 170.058, + "y": 804.315 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 175.721, + "y": 803.316 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 181.38400000000001, + "y": 804.315 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 186.363, + "y": 807.19 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 190.06, + "y": 811.595 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 192.026, + "y": 816.998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2574.1385259999997, + "axes": { + "#": 5671 + }, + "bounds": { + "#": 5685 + }, + "circleRadius": 28.76446759259259, + "collisionFilter": { + "#": 5688 + }, + "constraintImpulse": { + "#": 5689 + }, + "density": 0.001, + "force": { + "#": 5690 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 117, + "inertia": 4218.443516923933, + "inverseInertia": 0.00023705425851694103, + "inverseMass": 0.3884794815428671, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.5741385259999996, + "motion": 0, + "parent": null, + "position": { + "#": 5691 + }, + "positionImpulse": { + "#": 5692 + }, + "positionPrev": { + "#": 5693 + }, + "render": { + "#": 5694 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5696 + }, + "vertices": { + "#": 5697 + } + }, + [ + { + "#": 5672 + }, + { + "#": 5673 + }, + { + "#": 5674 + }, + { + "#": 5675 + }, + { + "#": 5676 + }, + { + "#": 5677 + }, + { + "#": 5678 + }, + { + "#": 5679 + }, + { + "#": 5680 + }, + { + "#": 5681 + }, + { + "#": 5682 + }, + { + "#": 5683 + }, + { + "#": 5684 + } + ], + { + "x": -0.9709262495255735, + "y": -0.2393788169036763 + }, + { + "x": -0.8854869176113325, + "y": -0.46466430758040944 + }, + { + "x": -0.7484982019915674, + "y": -0.6631368196800649 + }, + { + "x": -0.568107002044931, + "y": -0.8229546975548051 + }, + { + "x": -0.35459772108079973, + "y": -0.9350189603448174 + }, + { + "x": -0.12041319340062481, + "y": -0.992723860323234 + }, + { + "x": 0.12041319340062481, + "y": -0.992723860323234 + }, + { + "x": 0.35459772108079973, + "y": -0.9350189603448174 + }, + { + "x": 0.568107002044931, + "y": -0.8229546975548051 + }, + { + "x": 0.7484982019915674, + "y": -0.6631368196800649 + }, + { + "x": 0.8854869176113325, + "y": -0.46466430758040944 + }, + { + "x": 0.9709262495255735, + "y": -0.2393788169036763 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5686 + }, + "min": { + "#": 5687 + } + }, + { + "x": 259.136, + "y": 860.844 + }, + { + "x": 202.026, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 230.58100000000002, + "y": 832.08 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 230.58100000000002, + "y": 832.08 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5695 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5698 + }, + { + "#": 5699 + }, + { + "#": 5700 + }, + { + "#": 5701 + }, + { + "#": 5702 + }, + { + "#": 5703 + }, + { + "#": 5704 + }, + { + "#": 5705 + }, + { + "#": 5706 + }, + { + "#": 5707 + }, + { + "#": 5708 + }, + { + "#": 5709 + }, + { + "#": 5710 + }, + { + "#": 5711 + }, + { + "#": 5712 + }, + { + "#": 5713 + }, + { + "#": 5714 + }, + { + "#": 5715 + }, + { + "#": 5716 + }, + { + "#": 5717 + }, + { + "#": 5718 + }, + { + "#": 5719 + }, + { + "#": 5720 + }, + { + "#": 5721 + }, + { + "#": 5722 + }, + { + "#": 5723 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 259.136, + "y": 835.547 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 257.476, + "y": 842.2800000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 254.25400000000002, + "y": 848.4200000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 249.65500000000003, + "y": 853.611 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 243.949, + "y": 857.5500000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 237.46500000000003, + "y": 860.009 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230.58100000000002, + "y": 860.844 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 223.697, + "y": 860.009 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 217.21300000000002, + "y": 857.5500000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.507, + "y": 853.611 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 206.90800000000002, + "y": 848.4200000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 203.686, + "y": 842.2800000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 202.026, + "y": 835.547 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 202.026, + "y": 828.613 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 203.686, + "y": 821.88 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 206.90800000000002, + "y": 815.74 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 211.507, + "y": 810.5490000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 217.21300000000002, + "y": 806.61 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 223.697, + "y": 804.1510000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 230.58100000000002, + "y": 803.316 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 237.46500000000003, + "y": 804.1510000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 243.949, + "y": 806.61 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 249.65500000000003, + "y": 810.5490000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 254.25400000000002, + "y": 815.74 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 257.476, + "y": 821.88 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 259.136, + "y": 828.613 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2036.7522099999999, + "axes": { + "#": 5725 + }, + "bounds": { + "#": 5739 + }, + "circleRadius": 25.586355452674898, + "collisionFilter": { + "#": 5742 + }, + "constraintImpulse": { + "#": 5743 + }, + "density": 0.001, + "force": { + "#": 5744 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 2640.978111739055, + "inverseInertia": 0.00037864759104024194, + "inverseMass": 0.49097774147008294, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.03675221, + "motion": 0, + "parent": null, + "position": { + "#": 5745 + }, + "positionImpulse": { + "#": 5746 + }, + "positionPrev": { + "#": 5747 + }, + "render": { + "#": 5748 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5750 + }, + "vertices": { + "#": 5751 + } + }, + [ + { + "#": 5726 + }, + { + "#": 5727 + }, + { + "#": 5728 + }, + { + "#": 5729 + }, + { + "#": 5730 + }, + { + "#": 5731 + }, + { + "#": 5732 + }, + { + "#": 5733 + }, + { + "#": 5734 + }, + { + "#": 5735 + }, + { + "#": 5736 + }, + { + "#": 5737 + }, + { + "#": 5738 + } + ], + { + "x": -0.9709476908423734, + "y": -0.23929183364223444 + }, + { + "x": -0.8854345948146193, + "y": -0.4647640028073076 + }, + { + "x": -0.7485352977514667, + "y": -0.6630949464594971 + }, + { + "x": -0.5680966106501801, + "y": -0.8229618709076244 + }, + { + "x": -0.35453205966073653, + "y": -0.9350438592241093 + }, + { + "x": -0.12046209700872805, + "y": -0.9927179273007313 + }, + { + "x": 0.12046209700872805, + "y": -0.9927179273007313 + }, + { + "x": 0.35453205966073653, + "y": -0.9350438592241093 + }, + { + "x": 0.5680966106501801, + "y": -0.8229618709076244 + }, + { + "x": 0.7485352977514667, + "y": -0.6630949464594971 + }, + { + "x": 0.8854345948146193, + "y": -0.4647640028073076 + }, + { + "x": 0.9709476908423734, + "y": -0.23929183364223444 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5740 + }, + "min": { + "#": 5741 + } + }, + { + "x": 319.936, + "y": 854.488 + }, + { + "x": 269.13599999999997, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.536, + "y": 828.902 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.536, + "y": 828.902 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5749 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5752 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.936, + "y": 831.986 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.46, + "y": 837.975 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 315.593, + "y": 843.437 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 311.503, + "y": 848.0540000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 306.427, + "y": 851.558 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 300.659, + "y": 853.745 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 294.536, + "y": 854.488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.413, + "y": 853.745 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 282.645, + "y": 851.558 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 277.569, + "y": 848.0540000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 273.47900000000004, + "y": 843.437 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 270.61199999999997, + "y": 837.975 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 269.13599999999997, + "y": 831.986 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 269.13599999999997, + "y": 825.8180000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 270.61199999999997, + "y": 819.8290000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 273.47900000000004, + "y": 814.3670000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 277.569, + "y": 809.75 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 282.645, + "y": 806.2460000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 288.413, + "y": 804.0590000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 294.536, + "y": 803.316 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 300.659, + "y": 804.0590000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 306.427, + "y": 806.2460000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 311.503, + "y": 809.75 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 315.593, + "y": 814.3670000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 318.46, + "y": 819.8290000000001 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 319.936, + "y": 825.8180000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 739.3989280000001, + "axes": { + "#": 5779 + }, + "bounds": { + "#": 5788 + }, + "circleRadius": 15.540959362139917, + "collisionFilter": { + "#": 5791 + }, + "constraintImpulse": { + "#": 5792 + }, + "density": 0.001, + "force": { + "#": 5793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 119, + "inertia": 348.0937309995225, + "inverseInertia": 0.00287278945566926, + "inverseMass": 1.3524498915692234, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7393989280000001, + "motion": 0, + "parent": null, + "position": { + "#": 5794 + }, + "positionImpulse": { + "#": 5795 + }, + "positionPrev": { + "#": 5796 + }, + "render": { + "#": 5797 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5799 + }, + "vertices": { + "#": 5800 + } + }, + [ + { + "#": 5780 + }, + { + "#": 5781 + }, + { + "#": 5782 + }, + { + "#": 5783 + }, + { + "#": 5784 + }, + { + "#": 5785 + }, + { + "#": 5786 + }, + { + "#": 5787 + } + ], + { + "x": -0.9239042757313624, + "y": -0.3826236914846057 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826236914846057, + "y": -0.9239042757313624 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826236914846057, + "y": -0.9239042757313624 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9239042757313624, + "y": -0.3826236914846057 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5789 + }, + "min": { + "#": 5790 + } + }, + { + "x": 360.42, + "y": 833.8 + }, + { + "x": 329.936, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 345.178, + "y": 818.558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 345.178, + "y": 818.558 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5798 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5801 + }, + { + "#": 5802 + }, + { + "#": 5803 + }, + { + "#": 5804 + }, + { + "#": 5805 + }, + { + "#": 5806 + }, + { + "#": 5807 + }, + { + "#": 5808 + }, + { + "#": 5809 + }, + { + "#": 5810 + }, + { + "#": 5811 + }, + { + "#": 5812 + }, + { + "#": 5813 + }, + { + "#": 5814 + }, + { + "#": 5815 + }, + { + "#": 5816 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 360.42, + "y": 821.59 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 358.1, + "y": 827.192 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 353.812, + "y": 831.48 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 348.21, + "y": 833.8 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 342.146, + "y": 833.8 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 336.544, + "y": 831.48 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 332.256, + "y": 827.192 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 329.936, + "y": 821.59 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 329.936, + "y": 815.526 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 332.256, + "y": 809.924 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 336.544, + "y": 805.636 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 342.146, + "y": 803.316 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 348.21, + "y": 803.316 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 353.812, + "y": 805.636 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 358.1, + "y": 809.924 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.42, + "y": 815.526 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.101068, + "axes": { + "#": 5818 + }, + "bounds": { + "#": 5829 + }, + "circleRadius": 18.257908950617285, + "collisionFilter": { + "#": 5832 + }, + "constraintImpulse": { + "#": 5833 + }, + "density": 0.001, + "force": { + "#": 5834 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 120, + "inertia": 675.5594581193772, + "inverseInertia": 0.0014802546067281784, + "inverseMass": 0.9707785294714402, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.030101068, + "motion": 0, + "parent": null, + "position": { + "#": 5835 + }, + "positionImpulse": { + "#": 5836 + }, + "positionPrev": { + "#": 5837 + }, + "render": { + "#": 5838 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5840 + }, + "vertices": { + "#": 5841 + } + }, + [ + { + "#": 5819 + }, + { + "#": 5820 + }, + { + "#": 5821 + }, + { + "#": 5822 + }, + { + "#": 5823 + }, + { + "#": 5824 + }, + { + "#": 5825 + }, + { + "#": 5826 + }, + { + "#": 5827 + }, + { + "#": 5828 + } + ], + { + "x": -0.9510713685106887, + "y": -0.3089712802174427 + }, + { + "x": -0.8089631319319196, + "y": -0.5878593804430613 + }, + { + "x": -0.5878593804430613, + "y": -0.8089631319319196 + }, + { + "x": -0.3089712802174427, + "y": -0.9510713685106887 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089712802174427, + "y": -0.9510713685106887 + }, + { + "x": 0.5878593804430613, + "y": -0.8089631319319196 + }, + { + "x": 0.8089631319319196, + "y": -0.5878593804430613 + }, + { + "x": 0.9510713685106887, + "y": -0.3089712802174427 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5830 + }, + "min": { + "#": 5831 + } + }, + { + "x": 406.48600000000005, + "y": 839.3820000000001 + }, + { + "x": 370.42, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 388.45300000000003, + "y": 821.349 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 388.45300000000003, + "y": 821.349 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5839 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5842 + }, + { + "#": 5843 + }, + { + "#": 5844 + }, + { + "#": 5845 + }, + { + "#": 5846 + }, + { + "#": 5847 + }, + { + "#": 5848 + }, + { + "#": 5849 + }, + { + "#": 5850 + }, + { + "#": 5851 + }, + { + "#": 5852 + }, + { + "#": 5853 + }, + { + "#": 5854 + }, + { + "#": 5855 + }, + { + "#": 5856 + }, + { + "#": 5857 + }, + { + "#": 5858 + }, + { + "#": 5859 + }, + { + "#": 5860 + }, + { + "#": 5861 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 406.48600000000005, + "y": 824.205 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 404.721, + "y": 829.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 401.36300000000006, + "y": 834.259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.742, + "y": 837.6170000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 391.309, + "y": 839.3820000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 385.59700000000004, + "y": 839.3820000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380.16400000000004, + "y": 837.6170000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 375.543, + "y": 834.259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 372.18500000000006, + "y": 829.638 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 370.42, + "y": 824.205 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 370.42, + "y": 818.493 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 372.18500000000006, + "y": 813.0600000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 375.543, + "y": 808.4390000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 380.16400000000004, + "y": 805.081 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 385.59700000000004, + "y": 803.316 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 391.309, + "y": 803.316 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 396.742, + "y": 805.081 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 401.36300000000006, + "y": 808.4390000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 404.721, + "y": 813.0600000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 406.48600000000005, + "y": 818.493 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2126.6024159999997, + "axes": { + "#": 5863 + }, + "bounds": { + "#": 5877 + }, + "circleRadius": 26.144611625514404, + "collisionFilter": { + "#": 5880 + }, + "constraintImpulse": { + "#": 5881 + }, + "density": 0.001, + "force": { + "#": 5882 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": 2879.1282788678996, + "inverseInertia": 0.00034732735159449357, + "inverseMass": 0.47023364239420673, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.126602416, + "motion": 0, + "parent": null, + "position": { + "#": 5883 + }, + "positionImpulse": { + "#": 5884 + }, + "positionPrev": { + "#": 5885 + }, + "render": { + "#": 5886 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5888 + }, + "vertices": { + "#": 5889 + } + }, + [ + { + "#": 5864 + }, + { + "#": 5865 + }, + { + "#": 5866 + }, + { + "#": 5867 + }, + { + "#": 5868 + }, + { + "#": 5869 + }, + { + "#": 5870 + }, + { + "#": 5871 + }, + { + "#": 5872 + }, + { + "#": 5873 + }, + { + "#": 5874 + }, + { + "#": 5875 + }, + { + "#": 5876 + } + ], + { + "x": -0.9709582024143185, + "y": -0.23924917798052142 + }, + { + "x": -0.8854648234459604, + "y": -0.46470640886457987 + }, + { + "x": -0.7484936814443321, + "y": -0.6631419220935371 + }, + { + "x": -0.5680295414542833, + "y": -0.8230081652299912 + }, + { + "x": -0.3546159695321858, + "y": -0.9350120395763618 + }, + { + "x": -0.12057774558444306, + "y": -0.9927038870024502 + }, + { + "x": 0.12057774558444306, + "y": -0.9927038870024502 + }, + { + "x": 0.3546159695321858, + "y": -0.9350120395763618 + }, + { + "x": 0.5680295414542833, + "y": -0.8230081652299912 + }, + { + "x": 0.7484936814443321, + "y": -0.6631419220935371 + }, + { + "x": 0.8854648234459604, + "y": -0.46470640886457987 + }, + { + "x": 0.9709582024143185, + "y": -0.23924917798052142 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5878 + }, + "min": { + "#": 5879 + } + }, + { + "x": 468.39400000000006, + "y": 855.606 + }, + { + "x": 416.48600000000005, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 442.44000000000005, + "y": 829.461 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 442.44000000000005, + "y": 829.461 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5887 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5890 + }, + { + "#": 5891 + }, + { + "#": 5892 + }, + { + "#": 5893 + }, + { + "#": 5894 + }, + { + "#": 5895 + }, + { + "#": 5896 + }, + { + "#": 5897 + }, + { + "#": 5898 + }, + { + "#": 5899 + }, + { + "#": 5900 + }, + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + }, + { + "#": 5904 + }, + { + "#": 5905 + }, + { + "#": 5906 + }, + { + "#": 5907 + }, + { + "#": 5908 + }, + { + "#": 5909 + }, + { + "#": 5910 + }, + { + "#": 5911 + }, + { + "#": 5912 + }, + { + "#": 5913 + }, + { + "#": 5914 + }, + { + "#": 5915 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 468.39400000000006, + "y": 832.612 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 466.8860000000001, + "y": 838.732 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 463.95700000000005, + "y": 844.313 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 459.77700000000004, + "y": 849.0310000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 454.59000000000003, + "y": 852.611 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 448.69700000000006, + "y": 854.846 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 442.44000000000005, + "y": 855.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 436.18300000000005, + "y": 854.846 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 430.2900000000001, + "y": 852.611 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 425.10300000000007, + "y": 849.0310000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 420.92300000000006, + "y": 844.313 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 417.994, + "y": 838.732 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 416.48600000000005, + "y": 832.612 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 416.48600000000005, + "y": 826.3100000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 417.994, + "y": 820.19 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.92300000000006, + "y": 814.609 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.10300000000007, + "y": 809.891 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 430.2900000000001, + "y": 806.311 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 436.18300000000005, + "y": 804.076 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 442.44000000000005, + "y": 803.316 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 448.69700000000006, + "y": 804.076 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 454.59000000000003, + "y": 806.311 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 459.77700000000004, + "y": 809.891 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 463.95700000000005, + "y": 814.609 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 466.8860000000001, + "y": 820.19 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 468.39400000000006, + "y": 826.3100000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1373.590942, + "axes": { + "#": 5917 + }, + "bounds": { + "#": 5929 + }, + "circleRadius": 21.052919238683128, + "collisionFilter": { + "#": 5932 + }, + "constraintImpulse": { + "#": 5933 + }, + "density": 0.001, + "force": { + "#": 5934 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 122, + "inertia": 1201.1885090560147, + "inverseInertia": 0.0008325087964634927, + "inverseMass": 0.7280187786794534, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.373590942, + "motion": 0, + "parent": null, + "position": { + "#": 5935 + }, + "positionImpulse": { + "#": 5936 + }, + "positionPrev": { + "#": 5937 + }, + "render": { + "#": 5938 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5940 + }, + "vertices": { + "#": 5941 + } + }, + [ + { + "#": 5918 + }, + { + "#": 5919 + }, + { + "#": 5920 + }, + { + "#": 5921 + }, + { + "#": 5922 + }, + { + "#": 5923 + }, + { + "#": 5924 + }, + { + "#": 5925 + }, + { + "#": 5926 + }, + { + "#": 5927 + }, + { + "#": 5928 + } + ], + { + "x": -0.959463754498267, + "y": -0.2818320489300127 + }, + { + "x": -0.8413031702195424, + "y": -0.5405635723747464 + }, + { + "x": -0.6548225280442858, + "y": -0.7557826782651814 + }, + { + "x": -0.41536139719957405, + "y": -0.909656478961381 + }, + { + "x": -0.14235586867265246, + "y": -0.9898155417321223 + }, + { + "x": 0.14235586867265246, + "y": -0.9898155417321223 + }, + { + "x": 0.41536139719957405, + "y": -0.909656478961381 + }, + { + "x": 0.6548225280442858, + "y": -0.7557826782651814 + }, + { + "x": 0.8413031702195424, + "y": -0.5405635723747464 + }, + { + "x": 0.959463754498267, + "y": -0.2818320489300127 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5930 + }, + "min": { + "#": 5931 + } + }, + { + "x": 520.0720000000001, + "y": 845.422 + }, + { + "x": 478.39400000000006, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 499.23300000000006, + "y": 824.369 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 499.23300000000006, + "y": 824.369 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5939 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5942 + }, + { + "#": 5943 + }, + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + }, + { + "#": 5947 + }, + { + "#": 5948 + }, + { + "#": 5949 + }, + { + "#": 5950 + }, + { + "#": 5951 + }, + { + "#": 5952 + }, + { + "#": 5953 + }, + { + "#": 5954 + }, + { + "#": 5955 + }, + { + "#": 5956 + }, + { + "#": 5957 + }, + { + "#": 5958 + }, + { + "#": 5959 + }, + { + "#": 5960 + }, + { + "#": 5961 + }, + { + "#": 5962 + }, + { + "#": 5963 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520.0720000000001, + "y": 827.365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 518.383, + "y": 833.115 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 515.144, + "y": 838.1560000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510.61500000000007, + "y": 842.08 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 505.16400000000004, + "y": 844.5690000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 499.23300000000006, + "y": 845.422 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 493.3020000000001, + "y": 844.5690000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 487.85100000000006, + "y": 842.08 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 483.32200000000006, + "y": 838.1560000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 480.0830000000001, + "y": 833.115 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 478.39400000000006, + "y": 827.365 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 478.39400000000006, + "y": 821.373 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 480.0830000000001, + "y": 815.623 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.32200000000006, + "y": 810.582 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 487.85100000000006, + "y": 806.658 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 493.3020000000001, + "y": 804.169 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 499.23300000000006, + "y": 803.316 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 505.16400000000004, + "y": 804.169 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.61500000000007, + "y": 806.658 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 515.144, + "y": 810.582 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 518.383, + "y": 815.623 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 520.0720000000001, + "y": 821.373 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 778.398134, + "axes": { + "#": 5965 + }, + "bounds": { + "#": 5974 + }, + "circleRadius": 15.94579475308642, + "collisionFilter": { + "#": 5977 + }, + "constraintImpulse": { + "#": 5978 + }, + "density": 0.001, + "force": { + "#": 5979 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 123, + "inertia": 385.78216043090396, + "inverseInertia": 0.002592136450485523, + "inverseMass": 1.2846896161752617, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.778398134, + "motion": 0, + "parent": null, + "position": { + "#": 5980 + }, + "positionImpulse": { + "#": 5981 + }, + "positionPrev": { + "#": 5982 + }, + "render": { + "#": 5983 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5985 + }, + "vertices": { + "#": 5986 + } + }, + [ + { + "#": 5966 + }, + { + "#": 5967 + }, + { + "#": 5968 + }, + { + "#": 5969 + }, + { + "#": 5970 + }, + { + "#": 5971 + }, + { + "#": 5972 + }, + { + "#": 5973 + } + ], + { + "x": -0.9238738245571152, + "y": -0.38269721229479675 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.38269721229479675, + "y": -0.9238738245571152 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38269721229479675, + "y": -0.9238738245571152 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238738245571152, + "y": -0.38269721229479675 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5975 + }, + "min": { + "#": 5976 + } + }, + { + "x": 561.3500000000001, + "y": 834.594 + }, + { + "x": 530.0720000000001, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 545.7110000000001, + "y": 818.955 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 545.7110000000001, + "y": 818.955 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5984 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5987 + }, + { + "#": 5988 + }, + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + }, + { + "#": 5992 + }, + { + "#": 5993 + }, + { + "#": 5994 + }, + { + "#": 5995 + }, + { + "#": 5996 + }, + { + "#": 5997 + }, + { + "#": 5998 + }, + { + "#": 5999 + }, + { + "#": 6000 + }, + { + "#": 6001 + }, + { + "#": 6002 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 561.3500000000001, + "y": 822.066 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 558.9690000000002, + "y": 827.8140000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 554.5700000000002, + "y": 832.2130000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 548.8220000000001, + "y": 834.594 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 542.6000000000001, + "y": 834.594 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 536.8520000000001, + "y": 832.2130000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 532.4530000000001, + "y": 827.8140000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 530.0720000000001, + "y": 822.066 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 530.0720000000001, + "y": 815.844 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 532.4530000000001, + "y": 810.096 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 536.8520000000001, + "y": 805.697 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 542.6000000000001, + "y": 803.316 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 548.8220000000001, + "y": 803.316 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 554.5700000000002, + "y": 805.697 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 558.9690000000002, + "y": 810.096 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 561.3500000000001, + "y": 815.844 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 844.5415139999999, + "axes": { + "#": 6004 + }, + "bounds": { + "#": 6014 + }, + "circleRadius": 16.56397890946502, + "collisionFilter": { + "#": 6017 + }, + "constraintImpulse": { + "#": 6018 + }, + "density": 0.001, + "force": { + "#": 6019 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": 454.10729029624963, + "inverseInertia": 0.002202122761225925, + "inverseMass": 1.1840744160268717, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8445415139999999, + "motion": 0, + "parent": null, + "position": { + "#": 6020 + }, + "positionImpulse": { + "#": 6021 + }, + "positionPrev": { + "#": 6022 + }, + "render": { + "#": 6023 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6025 + }, + "vertices": { + "#": 6026 + } + }, + [ + { + "#": 6005 + }, + { + "#": 6006 + }, + { + "#": 6007 + }, + { + "#": 6008 + }, + { + "#": 6009 + }, + { + "#": 6010 + }, + { + "#": 6011 + }, + { + "#": 6012 + }, + { + "#": 6013 + } + ], + { + "x": -0.9397274265311816, + "y": -0.3419245001825443 + }, + { + "x": -0.7660369174432036, + "y": -0.6427965783310567 + }, + { + "x": -0.499953188487916, + "y": -0.866052428736717 + }, + { + "x": -0.17366632796128756, + "y": -0.9848045524531466 + }, + { + "x": 0.17366632796128756, + "y": -0.9848045524531466 + }, + { + "x": 0.499953188487916, + "y": -0.866052428736717 + }, + { + "x": 0.7660369174432036, + "y": -0.6427965783310567 + }, + { + "x": 0.9397274265311816, + "y": -0.3419245001825443 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6015 + }, + "min": { + "#": 6016 + } + }, + { + "x": 603.9740000000002, + "y": 836.444 + }, + { + "x": 571.3500000000001, + "y": 803.316 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.6620000000001, + "y": 819.88 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.6620000000001, + "y": 819.88 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6024 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6027 + }, + { + "#": 6028 + }, + { + "#": 6029 + }, + { + "#": 6030 + }, + { + "#": 6031 + }, + { + "#": 6032 + }, + { + "#": 6033 + }, + { + "#": 6034 + }, + { + "#": 6035 + }, + { + "#": 6036 + }, + { + "#": 6037 + }, + { + "#": 6038 + }, + { + "#": 6039 + }, + { + "#": 6040 + }, + { + "#": 6041 + }, + { + "#": 6042 + }, + { + "#": 6043 + }, + { + "#": 6044 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 603.9740000000002, + "y": 822.756 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 602.0070000000002, + "y": 828.162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 598.3090000000002, + "y": 832.569 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 593.3270000000001, + "y": 835.445 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 587.6620000000001, + "y": 836.444 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 581.9970000000002, + "y": 835.445 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 577.0150000000001, + "y": 832.569 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 573.3170000000001, + "y": 828.162 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 571.3500000000001, + "y": 822.756 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 571.3500000000001, + "y": 817.004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 573.3170000000001, + "y": 811.598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.0150000000001, + "y": 807.191 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.9970000000002, + "y": 804.3149999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 587.6620000000001, + "y": 803.316 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 593.3270000000001, + "y": 804.3149999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.3090000000002, + "y": 807.191 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 602.0070000000002, + "y": 811.598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 603.9740000000002, + "y": 817.004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1656.262186, + "axes": { + "#": 6046 + }, + "bounds": { + "#": 6059 + }, + "circleRadius": 23.092656893004115, + "collisionFilter": { + "#": 6062 + }, + "constraintImpulse": { + "#": 6063 + }, + "density": 0.001, + "force": { + "#": 6064 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 125, + "inertia": 1746.424130354942, + "inverseInertia": 0.0005725985931016429, + "inverseMass": 0.6037691426229301, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.656262186, + "motion": 0, + "parent": null, + "position": { + "#": 6065 + }, + "positionImpulse": { + "#": 6066 + }, + "positionPrev": { + "#": 6067 + }, + "render": { + "#": 6068 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6070 + }, + "vertices": { + "#": 6071 + } + }, + [ + { + "#": 6047 + }, + { + "#": 6048 + }, + { + "#": 6049 + }, + { + "#": 6050 + }, + { + "#": 6051 + }, + { + "#": 6052 + }, + { + "#": 6053 + }, + { + "#": 6054 + }, + { + "#": 6055 + }, + { + "#": 6056 + }, + { + "#": 6057 + }, + { + "#": 6058 + } + ], + { + "x": -0.9659369456792598, + "y": -0.2587775434071173 + }, + { + "x": -0.8660502374236335, + "y": -0.4999569844081269 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.4999569844081269, + "y": -0.8660502374236335 + }, + { + "x": -0.2587775434071173, + "y": -0.9659369456792598 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2587775434071173, + "y": -0.9659369456792598 + }, + { + "x": 0.4999569844081269, + "y": -0.8660502374236335 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660502374236335, + "y": -0.4999569844081269 + }, + { + "x": 0.9659369456792598, + "y": -0.2587775434071173 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6060 + }, + "min": { + "#": 6061 + } + }, + { + "x": 145.79, + "y": 916.634 + }, + { + "x": 100, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 122.895, + "y": 893.739 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 122.895, + "y": 893.739 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6069 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6072 + }, + { + "#": 6073 + }, + { + "#": 6074 + }, + { + "#": 6075 + }, + { + "#": 6076 + }, + { + "#": 6077 + }, + { + "#": 6078 + }, + { + "#": 6079 + }, + { + "#": 6080 + }, + { + "#": 6081 + }, + { + "#": 6082 + }, + { + "#": 6083 + }, + { + "#": 6084 + }, + { + "#": 6085 + }, + { + "#": 6086 + }, + { + "#": 6087 + }, + { + "#": 6088 + }, + { + "#": 6089 + }, + { + "#": 6090 + }, + { + "#": 6091 + }, + { + "#": 6092 + }, + { + "#": 6093 + }, + { + "#": 6094 + }, + { + "#": 6095 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 145.79, + "y": 896.753 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 144.23000000000002, + "y": 902.576 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 141.216, + "y": 907.797 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 136.95299999999997, + "y": 912.0600000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 131.732, + "y": 915.0740000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 125.90899999999999, + "y": 916.634 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 119.881, + "y": 916.634 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 114.05799999999999, + "y": 915.0740000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.837, + "y": 912.0600000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 104.574, + "y": 907.797 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 101.55999999999999, + "y": 902.576 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 896.753 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 890.725 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 101.55999999999999, + "y": 884.902 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 104.574, + "y": 879.681 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 108.837, + "y": 875.418 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 114.05799999999999, + "y": 872.404 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 119.881, + "y": 870.844 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 125.90899999999999, + "y": 870.844 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 131.732, + "y": 872.404 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 136.95299999999997, + "y": 875.418 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 141.216, + "y": 879.681 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 144.23000000000002, + "y": 884.902 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 145.79, + "y": 890.725 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2239.2235339999997, + "axes": { + "#": 6097 + }, + "bounds": { + "#": 6111 + }, + "circleRadius": 26.828125, + "collisionFilter": { + "#": 6114 + }, + "constraintImpulse": { + "#": 6115 + }, + "density": 0.001, + "force": { + "#": 6116 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 126, + "inertia": 3192.150135161649, + "inverseInertia": 0.00031326847349219696, + "inverseMass": 0.4465833735739936, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.2392235339999997, + "motion": 0, + "parent": null, + "position": { + "#": 6117 + }, + "positionImpulse": { + "#": 6118 + }, + "positionPrev": { + "#": 6119 + }, + "render": { + "#": 6120 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6122 + }, + "vertices": { + "#": 6123 + } + }, + [ + { + "#": 6098 + }, + { + "#": 6099 + }, + { + "#": 6100 + }, + { + "#": 6101 + }, + { + "#": 6102 + }, + { + "#": 6103 + }, + { + "#": 6104 + }, + { + "#": 6105 + }, + { + "#": 6106 + }, + { + "#": 6107 + }, + { + "#": 6108 + }, + { + "#": 6109 + }, + { + "#": 6110 + } + ], + { + "x": -0.9709286835003857, + "y": -0.23936894442723292 + }, + { + "x": -0.8854408499737555, + "y": -0.4647520857379272 + }, + { + "x": -0.7484916969532377, + "y": -0.6631441619980248 + }, + { + "x": -0.5681159217920753, + "y": -0.822948539950306 + }, + { + "x": -0.3546449133017613, + "y": -0.935001061747625 + }, + { + "x": -0.12045604938082696, + "y": -0.9927186611359553 + }, + { + "x": 0.12045604938082696, + "y": -0.9927186611359553 + }, + { + "x": 0.3546449133017613, + "y": -0.935001061747625 + }, + { + "x": 0.5681159217920753, + "y": -0.822948539950306 + }, + { + "x": 0.7484916969532377, + "y": -0.6631441619980248 + }, + { + "x": 0.8854408499737555, + "y": -0.4647520857379272 + }, + { + "x": 0.9709286835003857, + "y": -0.23936894442723292 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6112 + }, + "min": { + "#": 6113 + } + }, + { + "x": 209.056, + "y": 924.5 + }, + { + "x": 155.79, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 182.423, + "y": 897.672 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 182.423, + "y": 897.672 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6121 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6124 + }, + { + "#": 6125 + }, + { + "#": 6126 + }, + { + "#": 6127 + }, + { + "#": 6128 + }, + { + "#": 6129 + }, + { + "#": 6130 + }, + { + "#": 6131 + }, + { + "#": 6132 + }, + { + "#": 6133 + }, + { + "#": 6134 + }, + { + "#": 6135 + }, + { + "#": 6136 + }, + { + "#": 6137 + }, + { + "#": 6138 + }, + { + "#": 6139 + }, + { + "#": 6140 + }, + { + "#": 6141 + }, + { + "#": 6142 + }, + { + "#": 6143 + }, + { + "#": 6144 + }, + { + "#": 6145 + }, + { + "#": 6146 + }, + { + "#": 6147 + }, + { + "#": 6148 + }, + { + "#": 6149 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 209.056, + "y": 900.9060000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 207.508, + "y": 907.1850000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 204.502, + "y": 912.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200.213, + "y": 917.753 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 194.891, + "y": 921.427 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 188.843, + "y": 923.721 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 182.423, + "y": 924.5 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 176.00300000000001, + "y": 923.721 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 169.955, + "y": 921.427 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 164.633, + "y": 917.753 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 160.344, + "y": 912.912 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 157.338, + "y": 907.1850000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 155.79, + "y": 900.9060000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 155.79, + "y": 894.438 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 157.338, + "y": 888.159 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 160.344, + "y": 882.432 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 164.633, + "y": 877.591 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 169.955, + "y": 873.917 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 176.00300000000001, + "y": 871.623 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 182.423, + "y": 870.844 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 188.843, + "y": 871.623 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 194.891, + "y": 873.917 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 200.213, + "y": 877.591 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 204.502, + "y": 882.432 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 207.508, + "y": 888.159 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 209.056, + "y": 894.438 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 873.4059279999999, + "axes": { + "#": 6151 + }, + "bounds": { + "#": 6161 + }, + "circleRadius": 16.84445730452675, + "collisionFilter": { + "#": 6164 + }, + "constraintImpulse": { + "#": 6165 + }, + "density": 0.001, + "force": { + "#": 6166 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": 485.6783448642292, + "inverseInertia": 0.002058975885119088, + "inverseMass": 1.144942996081886, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8734059279999999, + "motion": 0, + "parent": null, + "position": { + "#": 6167 + }, + "positionImpulse": { + "#": 6168 + }, + "positionPrev": { + "#": 6169 + }, + "render": { + "#": 6170 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6172 + }, + "vertices": { + "#": 6173 + } + }, + [ + { + "#": 6152 + }, + { + "#": 6153 + }, + { + "#": 6154 + }, + { + "#": 6155 + }, + { + "#": 6156 + }, + { + "#": 6157 + }, + { + "#": 6158 + }, + { + "#": 6159 + }, + { + "#": 6160 + } + ], + { + "x": -0.9396785760291978, + "y": -0.3420587285127204 + }, + { + "x": -0.7660313603186713, + "y": -0.6428032008385816 + }, + { + "x": -0.5000184026522734, + "y": -0.8660147787474928 + }, + { + "x": -0.17351226927177887, + "y": -0.9848317076598203 + }, + { + "x": 0.17351226927177887, + "y": -0.9848317076598203 + }, + { + "x": 0.5000184026522734, + "y": -0.8660147787474928 + }, + { + "x": 0.7660313603186713, + "y": -0.6428032008385816 + }, + { + "x": 0.9396785760291978, + "y": -0.3420587285127204 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6162 + }, + "min": { + "#": 6163 + } + }, + { + "x": 252.234, + "y": 904.5320000000002 + }, + { + "x": 219.056, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.645, + "y": 887.6880000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.645, + "y": 887.6880000000001 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6171 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6174 + }, + { + "#": 6175 + }, + { + "#": 6176 + }, + { + "#": 6177 + }, + { + "#": 6178 + }, + { + "#": 6179 + }, + { + "#": 6180 + }, + { + "#": 6181 + }, + { + "#": 6182 + }, + { + "#": 6183 + }, + { + "#": 6184 + }, + { + "#": 6185 + }, + { + "#": 6186 + }, + { + "#": 6187 + }, + { + "#": 6188 + }, + { + "#": 6189 + }, + { + "#": 6190 + }, + { + "#": 6191 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.234, + "y": 890.613 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250.233, + "y": 896.1100000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 246.472, + "y": 900.5920000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.406, + "y": 903.517 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 235.645, + "y": 904.5320000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 229.88400000000001, + "y": 903.517 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 224.818, + "y": 900.5920000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 221.05700000000002, + "y": 896.1100000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 219.056, + "y": 890.613 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.056, + "y": 884.7630000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 221.05700000000002, + "y": 879.2660000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 224.818, + "y": 874.7840000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 229.88400000000001, + "y": 871.8590000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 235.645, + "y": 870.844 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 241.406, + "y": 871.8590000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 246.472, + "y": 874.7840000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 250.233, + "y": 879.2660000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.234, + "y": 884.7630000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2211.257872, + "axes": { + "#": 6193 + }, + "bounds": { + "#": 6207 + }, + "circleRadius": 26.66017232510288, + "collisionFilter": { + "#": 6210 + }, + "constraintImpulse": { + "#": 6211 + }, + "density": 0.001, + "force": { + "#": 6212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 128, + "inertia": 3112.9145076000996, + "inverseInertia": 0.0003212423590684955, + "inverseMass": 0.45223129001030415, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.211257872, + "motion": 0, + "parent": null, + "position": { + "#": 6213 + }, + "positionImpulse": { + "#": 6214 + }, + "positionPrev": { + "#": 6215 + }, + "render": { + "#": 6216 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6218 + }, + "vertices": { + "#": 6219 + } + }, + [ + { + "#": 6194 + }, + { + "#": 6195 + }, + { + "#": 6196 + }, + { + "#": 6197 + }, + { + "#": 6198 + }, + { + "#": 6199 + }, + { + "#": 6200 + }, + { + "#": 6201 + }, + { + "#": 6202 + }, + { + "#": 6203 + }, + { + "#": 6204 + }, + { + "#": 6205 + }, + { + "#": 6206 + } + ], + { + "x": -0.9709426079703678, + "y": -0.23931245690038877 + }, + { + "x": -0.8854475241297156, + "y": -0.4647393699833883 + }, + { + "x": -0.748455766509334, + "y": -0.663184714524487 + }, + { + "x": -0.5680928736896659, + "y": -0.8229644505463267 + }, + { + "x": -0.3545651221465421, + "y": -0.935031322554067 + }, + { + "x": -0.12058693531691808, + "y": -0.9927027707379855 + }, + { + "x": 0.12058693531691808, + "y": -0.9927027707379855 + }, + { + "x": 0.3545651221465421, + "y": -0.935031322554067 + }, + { + "x": 0.5680928736896659, + "y": -0.8229644505463267 + }, + { + "x": 0.748455766509334, + "y": -0.663184714524487 + }, + { + "x": 0.8854475241297156, + "y": -0.4647393699833883 + }, + { + "x": 0.9709426079703678, + "y": -0.23931245690038877 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6208 + }, + "min": { + "#": 6209 + } + }, + { + "x": 315.16600000000005, + "y": 924.164 + }, + { + "x": 262.23400000000004, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.70000000000005, + "y": 897.504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.70000000000005, + "y": 897.504 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6217 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + }, + { + "#": 6223 + }, + { + "#": 6224 + }, + { + "#": 6225 + }, + { + "#": 6226 + }, + { + "#": 6227 + }, + { + "#": 6228 + }, + { + "#": 6229 + }, + { + "#": 6230 + }, + { + "#": 6231 + }, + { + "#": 6232 + }, + { + "#": 6233 + }, + { + "#": 6234 + }, + { + "#": 6235 + }, + { + "#": 6236 + }, + { + "#": 6237 + }, + { + "#": 6238 + }, + { + "#": 6239 + }, + { + "#": 6240 + }, + { + "#": 6241 + }, + { + "#": 6242 + }, + { + "#": 6243 + }, + { + "#": 6244 + }, + { + "#": 6245 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.16600000000005, + "y": 900.7180000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.62800000000004, + "y": 906.958 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 310.641, + "y": 912.649 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 306.379, + "y": 917.4590000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.09000000000003, + "y": 921.11 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.08000000000004, + "y": 923.389 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 288.70000000000005, + "y": 924.164 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 282.32000000000005, + "y": 923.389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.31000000000006, + "y": 921.11 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 271.0210000000001, + "y": 917.4590000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 266.759, + "y": 912.649 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 263.77200000000005, + "y": 906.958 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 262.23400000000004, + "y": 900.7180000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 262.23400000000004, + "y": 894.29 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 263.77200000000005, + "y": 888.0500000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 266.759, + "y": 882.359 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 271.0210000000001, + "y": 877.549 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 276.31000000000006, + "y": 873.898 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 282.32000000000005, + "y": 871.619 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 288.70000000000005, + "y": 870.844 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 295.08000000000004, + "y": 871.619 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 301.09000000000003, + "y": 873.898 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 306.379, + "y": 877.549 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 310.641, + "y": 882.359 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 313.62800000000004, + "y": 888.0500000000001 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 315.16600000000005, + "y": 894.29 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2087.7602780000007, + "axes": { + "#": 6247 + }, + "bounds": { + "#": 6261 + }, + "circleRadius": 25.904899691358025, + "collisionFilter": { + "#": 6264 + }, + "constraintImpulse": { + "#": 6265 + }, + "density": 0.001, + "force": { + "#": 6266 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 129, + "inertia": 2774.914907983639, + "inverseInertia": 0.00036037141071350504, + "inverseMass": 0.47898219471728054, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.0877602780000006, + "motion": 0, + "parent": null, + "position": { + "#": 6267 + }, + "positionImpulse": { + "#": 6268 + }, + "positionPrev": { + "#": 6269 + }, + "render": { + "#": 6270 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6272 + }, + "vertices": { + "#": 6273 + } + }, + [ + { + "#": 6248 + }, + { + "#": 6249 + }, + { + "#": 6250 + }, + { + "#": 6251 + }, + { + "#": 6252 + }, + { + "#": 6253 + }, + { + "#": 6254 + }, + { + "#": 6255 + }, + { + "#": 6256 + }, + { + "#": 6257 + }, + { + "#": 6258 + }, + { + "#": 6259 + }, + { + "#": 6260 + } + ], + { + "x": -0.9709656897513776, + "y": -0.23921878965840337 + }, + { + "x": -0.885414376231309, + "y": -0.46480251974674364 + }, + { + "x": -0.748495062942329, + "y": -0.6631403627822384 + }, + { + "x": -0.5681519894635099, + "y": -0.8229236397556311 + }, + { + "x": -0.35449012118282963, + "y": -0.9350597595789174 + }, + { + "x": -0.12058483282429677, + "y": -0.9927030261325572 + }, + { + "x": 0.12058483282429677, + "y": -0.9927030261325572 + }, + { + "x": 0.35449012118282963, + "y": -0.9350597595789174 + }, + { + "x": 0.5681519894635099, + "y": -0.8229236397556311 + }, + { + "x": 0.748495062942329, + "y": -0.6631403627822384 + }, + { + "x": 0.885414376231309, + "y": -0.46480251974674364 + }, + { + "x": 0.9709656897513776, + "y": -0.23921878965840337 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6262 + }, + "min": { + "#": 6263 + } + }, + { + "x": 376.59800000000007, + "y": 922.654 + }, + { + "x": 325.16600000000005, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350.88200000000006, + "y": 896.749 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350.88200000000006, + "y": 896.749 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6271 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6274 + }, + { + "#": 6275 + }, + { + "#": 6276 + }, + { + "#": 6277 + }, + { + "#": 6278 + }, + { + "#": 6279 + }, + { + "#": 6280 + }, + { + "#": 6281 + }, + { + "#": 6282 + }, + { + "#": 6283 + }, + { + "#": 6284 + }, + { + "#": 6285 + }, + { + "#": 6286 + }, + { + "#": 6287 + }, + { + "#": 6288 + }, + { + "#": 6289 + }, + { + "#": 6290 + }, + { + "#": 6291 + }, + { + "#": 6292 + }, + { + "#": 6293 + }, + { + "#": 6294 + }, + { + "#": 6295 + }, + { + "#": 6296 + }, + { + "#": 6297 + }, + { + "#": 6298 + }, + { + "#": 6299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.59800000000007, + "y": 899.871 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.10400000000004, + "y": 905.9350000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 372.2010000000001, + "y": 911.465 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 368.06000000000006, + "y": 916.139 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 362.92100000000005, + "y": 919.687 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 357.0810000000001, + "y": 921.9010000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 350.88200000000006, + "y": 922.654 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 344.68300000000005, + "y": 921.9010000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.8430000000001, + "y": 919.687 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 333.70400000000006, + "y": 916.139 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 329.56300000000005, + "y": 911.465 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.6600000000001, + "y": 905.9350000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 325.16600000000005, + "y": 899.871 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 325.16600000000005, + "y": 893.6270000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 326.6600000000001, + "y": 887.563 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 329.56300000000005, + "y": 882.033 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 333.70400000000006, + "y": 877.359 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 338.8430000000001, + "y": 873.811 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 344.68300000000005, + "y": 871.597 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 350.88200000000006, + "y": 870.844 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 357.0810000000001, + "y": 871.597 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 362.92100000000005, + "y": 873.811 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 368.06000000000006, + "y": 877.359 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 372.2010000000001, + "y": 882.033 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 375.10400000000004, + "y": 887.563 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 376.59800000000007, + "y": 893.6270000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 888.132012, + "axes": { + "#": 6301 + }, + "bounds": { + "#": 6311 + }, + "circleRadius": 16.986046810699587, + "collisionFilter": { + "#": 6314 + }, + "constraintImpulse": { + "#": 6315 + }, + "density": 0.001, + "force": { + "#": 6316 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": 502.19399774347886, + "inverseInertia": 0.0019912623497957476, + "inverseMass": 1.1259587386655308, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.888132012, + "motion": 0, + "parent": null, + "position": { + "#": 6317 + }, + "positionImpulse": { + "#": 6318 + }, + "positionPrev": { + "#": 6319 + }, + "render": { + "#": 6320 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6322 + }, + "vertices": { + "#": 6323 + } + }, + [ + { + "#": 6302 + }, + { + "#": 6303 + }, + { + "#": 6304 + }, + { + "#": 6305 + }, + { + "#": 6306 + }, + { + "#": 6307 + }, + { + "#": 6308 + }, + { + "#": 6309 + }, + { + "#": 6310 + } + ], + { + "x": -0.9396646680443769, + "y": -0.3420969330892212 + }, + { + "x": -0.7660353643369744, + "y": -0.6427984292024359 + }, + { + "x": -0.5001137705057033, + "y": -0.8659597083875026 + }, + { + "x": -0.17357259603329547, + "y": -0.9848210771029743 + }, + { + "x": 0.17357259603329547, + "y": -0.9848210771029743 + }, + { + "x": 0.5001137705057033, + "y": -0.8659597083875026 + }, + { + "x": 0.7660353643369744, + "y": -0.6427984292024359 + }, + { + "x": 0.9396646680443769, + "y": -0.3420969330892212 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6312 + }, + "min": { + "#": 6313 + } + }, + { + "x": 420.0540000000001, + "y": 904.816 + }, + { + "x": 386.59800000000007, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.3260000000001, + "y": 887.83 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.3260000000001, + "y": 887.83 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6321 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6324 + }, + { + "#": 6325 + }, + { + "#": 6326 + }, + { + "#": 6327 + }, + { + "#": 6328 + }, + { + "#": 6329 + }, + { + "#": 6330 + }, + { + "#": 6331 + }, + { + "#": 6332 + }, + { + "#": 6333 + }, + { + "#": 6334 + }, + { + "#": 6335 + }, + { + "#": 6336 + }, + { + "#": 6337 + }, + { + "#": 6338 + }, + { + "#": 6339 + }, + { + "#": 6340 + }, + { + "#": 6341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420.0540000000001, + "y": 890.7800000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 418.03600000000006, + "y": 896.3230000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 414.2440000000001, + "y": 900.842 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 409.1360000000001, + "y": 903.792 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 403.3260000000001, + "y": 904.816 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 397.5160000000001, + "y": 903.792 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 392.4080000000001, + "y": 900.842 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 388.6160000000001, + "y": 896.3230000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 386.59800000000007, + "y": 890.7800000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 386.59800000000007, + "y": 884.88 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 388.6160000000001, + "y": 879.337 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 392.4080000000001, + "y": 874.8180000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 397.5160000000001, + "y": 871.868 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 403.3260000000001, + "y": 870.844 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 409.1360000000001, + "y": 871.868 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 414.2440000000001, + "y": 874.8180000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 418.03600000000006, + "y": 879.337 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 420.0540000000001, + "y": 884.88 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1466.7791880000002, + "axes": { + "#": 6343 + }, + "bounds": { + "#": 6355 + }, + "circleRadius": 21.75546553497942, + "collisionFilter": { + "#": 6358 + }, + "constraintImpulse": { + "#": 6359 + }, + "density": 0.001, + "force": { + "#": 6360 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 131, + "inertia": 1369.701119864889, + "inverseInertia": 0.0007300862834211909, + "inverseMass": 0.6817658773598578, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4667791880000003, + "motion": 0, + "parent": null, + "position": { + "#": 6361 + }, + "positionImpulse": { + "#": 6362 + }, + "positionPrev": { + "#": 6363 + }, + "render": { + "#": 6364 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6366 + }, + "vertices": { + "#": 6367 + } + }, + [ + { + "#": 6344 + }, + { + "#": 6345 + }, + { + "#": 6346 + }, + { + "#": 6347 + }, + { + "#": 6348 + }, + { + "#": 6349 + }, + { + "#": 6350 + }, + { + "#": 6351 + }, + { + "#": 6352 + }, + { + "#": 6353 + }, + { + "#": 6354 + } + ], + { + "x": -0.9594811271190482, + "y": -0.2817728991623589 + }, + { + "x": -0.8412991486989921, + "y": -0.5405698311951483 + }, + { + "x": -0.6548383126065617, + "y": -0.7557690019725546 + }, + { + "x": -0.4153475465770035, + "y": -0.9096628032147208 + }, + { + "x": -0.14228047679615582, + "y": -0.9898263817067409 + }, + { + "x": 0.14228047679615582, + "y": -0.9898263817067409 + }, + { + "x": 0.4153475465770035, + "y": -0.9096628032147208 + }, + { + "x": 0.6548383126065617, + "y": -0.7557690019725546 + }, + { + "x": 0.8412991486989921, + "y": -0.5405698311951483 + }, + { + "x": 0.9594811271190482, + "y": -0.2817728991623589 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6356 + }, + "min": { + "#": 6357 + } + }, + { + "x": 473.12200000000007, + "y": 914.354 + }, + { + "x": 430.0540000000001, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451.5880000000001, + "y": 892.599 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451.5880000000001, + "y": 892.599 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6365 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + }, + { + "#": 6371 + }, + { + "#": 6372 + }, + { + "#": 6373 + }, + { + "#": 6374 + }, + { + "#": 6375 + }, + { + "#": 6376 + }, + { + "#": 6377 + }, + { + "#": 6378 + }, + { + "#": 6379 + }, + { + "#": 6380 + }, + { + "#": 6381 + }, + { + "#": 6382 + }, + { + "#": 6383 + }, + { + "#": 6384 + }, + { + "#": 6385 + }, + { + "#": 6386 + }, + { + "#": 6387 + }, + { + "#": 6388 + }, + { + "#": 6389 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 473.12200000000007, + "y": 895.695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 471.37700000000007, + "y": 901.6370000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 468.0300000000001, + "y": 906.846 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 463.3500000000001, + "y": 910.9010000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 457.7170000000001, + "y": 913.4730000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 451.5880000000001, + "y": 914.354 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.45900000000006, + "y": 913.4730000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 439.8260000000001, + "y": 910.9010000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 435.1460000000001, + "y": 906.846 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 431.7990000000001, + "y": 901.6370000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 430.0540000000001, + "y": 895.695 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 430.0540000000001, + "y": 889.503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 431.7990000000001, + "y": 883.561 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 435.1460000000001, + "y": 878.3520000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 439.8260000000001, + "y": 874.297 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 445.45900000000006, + "y": 871.725 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 451.5880000000001, + "y": 870.844 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.7170000000001, + "y": 871.725 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 463.3500000000001, + "y": 874.297 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 468.0300000000001, + "y": 878.3520000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 471.37700000000007, + "y": 883.561 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 473.12200000000007, + "y": 889.503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1020.8739640000001, + "axes": { + "#": 6391 + }, + "bounds": { + "#": 6402 + }, + "circleRadius": 18.176118827160494, + "collisionFilter": { + "#": 6405 + }, + "constraintImpulse": { + "#": 6406 + }, + "density": 0.001, + "force": { + "#": 6407 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 132, + "inertia": 663.511049477857, + "inverseInertia": 0.0015071339064917449, + "inverseMass": 0.9795528490919568, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0208739640000002, + "motion": 0, + "parent": null, + "position": { + "#": 6408 + }, + "positionImpulse": { + "#": 6409 + }, + "positionPrev": { + "#": 6410 + }, + "render": { + "#": 6411 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6413 + }, + "vertices": { + "#": 6414 + } + }, + [ + { + "#": 6392 + }, + { + "#": 6393 + }, + { + "#": 6394 + }, + { + "#": 6395 + }, + { + "#": 6396 + }, + { + "#": 6397 + }, + { + "#": 6398 + }, + { + "#": 6399 + }, + { + "#": 6400 + }, + { + "#": 6401 + } + ], + { + "x": -0.9510818672896958, + "y": -0.3089389611440186 + }, + { + "x": -0.8089413597418736, + "y": -0.58788934035154 + }, + { + "x": -0.58788934035154, + "y": -0.8089413597418736 + }, + { + "x": -0.3089389611440186, + "y": -0.9510818672896958 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089389611440186, + "y": -0.9510818672896958 + }, + { + "x": 0.58788934035154, + "y": -0.8089413597418736 + }, + { + "x": 0.8089413597418736, + "y": -0.58788934035154 + }, + { + "x": 0.9510818672896958, + "y": -0.3089389611440186 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6403 + }, + "min": { + "#": 6404 + } + }, + { + "x": 519.0260000000001, + "y": 906.748 + }, + { + "x": 483.12200000000007, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 501.07400000000007, + "y": 888.796 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 501.07400000000007, + "y": 888.796 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6412 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6415 + }, + { + "#": 6416 + }, + { + "#": 6417 + }, + { + "#": 6418 + }, + { + "#": 6419 + }, + { + "#": 6420 + }, + { + "#": 6421 + }, + { + "#": 6422 + }, + { + "#": 6423 + }, + { + "#": 6424 + }, + { + "#": 6425 + }, + { + "#": 6426 + }, + { + "#": 6427 + }, + { + "#": 6428 + }, + { + "#": 6429 + }, + { + "#": 6430 + }, + { + "#": 6431 + }, + { + "#": 6432 + }, + { + "#": 6433 + }, + { + "#": 6434 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 519.0260000000001, + "y": 891.639 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 517.269, + "y": 897.048 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 513.926, + "y": 901.648 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 509.3260000000001, + "y": 904.9910000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.9170000000001, + "y": 906.748 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 498.23100000000005, + "y": 906.748 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 492.82200000000006, + "y": 904.9910000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 488.2220000000001, + "y": 901.648 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 484.8790000000001, + "y": 897.048 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 483.12200000000007, + "y": 891.639 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 483.12200000000007, + "y": 885.9530000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 484.8790000000001, + "y": 880.5440000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 488.2220000000001, + "y": 875.9440000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 492.82200000000006, + "y": 872.601 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 498.23100000000005, + "y": 870.844 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 503.9170000000001, + "y": 870.844 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 509.3260000000001, + "y": 872.601 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 513.926, + "y": 875.9440000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 517.269, + "y": 880.5440000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 519.0260000000001, + "y": 885.9530000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1498.420516, + "axes": { + "#": 6436 + }, + "bounds": { + "#": 6448 + }, + "circleRadius": 21.98874742798354, + "collisionFilter": { + "#": 6451 + }, + "constraintImpulse": { + "#": 6452 + }, + "density": 0.001, + "force": { + "#": 6453 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": 1429.4328342080482, + "inverseInertia": 0.0006995781655974289, + "inverseMass": 0.6673693995257604, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.498420516, + "motion": 0, + "parent": null, + "position": { + "#": 6454 + }, + "positionImpulse": { + "#": 6455 + }, + "positionPrev": { + "#": 6456 + }, + "render": { + "#": 6457 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6459 + }, + "vertices": { + "#": 6460 + } + }, + [ + { + "#": 6437 + }, + { + "#": 6438 + }, + { + "#": 6439 + }, + { + "#": 6440 + }, + { + "#": 6441 + }, + { + "#": 6442 + }, + { + "#": 6443 + }, + { + "#": 6444 + }, + { + "#": 6445 + }, + { + "#": 6446 + }, + { + "#": 6447 + } + ], + { + "x": -0.9595027817059244, + "y": -0.28169915139842566 + }, + { + "x": -0.8412718937722633, + "y": -0.5406122462068628 + }, + { + "x": -0.6548088643782468, + "y": -0.7557945164736715 + }, + { + "x": -0.41542744234917584, + "y": -0.9096263189591769 + }, + { + "x": -0.14236077781981005, + "y": -0.9898148356831892 + }, + { + "x": 0.14236077781981005, + "y": -0.9898148356831892 + }, + { + "x": 0.41542744234917584, + "y": -0.9096263189591769 + }, + { + "x": 0.6548088643782468, + "y": -0.7557945164736715 + }, + { + "x": 0.8412718937722633, + "y": -0.5406122462068628 + }, + { + "x": 0.9595027817059244, + "y": -0.28169915139842566 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6449 + }, + "min": { + "#": 6450 + } + }, + { + "x": 572.556, + "y": 914.8220000000001 + }, + { + "x": 529.0260000000001, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.791, + "y": 892.8330000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.791, + "y": 892.8330000000001 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6458 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6461 + }, + { + "#": 6462 + }, + { + "#": 6463 + }, + { + "#": 6464 + }, + { + "#": 6465 + }, + { + "#": 6466 + }, + { + "#": 6467 + }, + { + "#": 6468 + }, + { + "#": 6469 + }, + { + "#": 6470 + }, + { + "#": 6471 + }, + { + "#": 6472 + }, + { + "#": 6473 + }, + { + "#": 6474 + }, + { + "#": 6475 + }, + { + "#": 6476 + }, + { + "#": 6477 + }, + { + "#": 6478 + }, + { + "#": 6479 + }, + { + "#": 6480 + }, + { + "#": 6481 + }, + { + "#": 6482 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 572.556, + "y": 895.9620000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 570.793, + "y": 901.9670000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.4090000000001, + "y": 907.2330000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 562.6790000000001, + "y": 911.3310000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 556.9860000000001, + "y": 913.931 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 550.791, + "y": 914.8220000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 544.596, + "y": 913.931 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 538.903, + "y": 911.3310000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 534.173, + "y": 907.2330000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 530.789, + "y": 901.9670000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 529.0260000000001, + "y": 895.9620000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 529.0260000000001, + "y": 889.7040000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 530.789, + "y": 883.6990000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 534.173, + "y": 878.4330000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 538.903, + "y": 874.335 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 544.596, + "y": 871.7350000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 550.791, + "y": 870.844 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 556.9860000000001, + "y": 871.7350000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 562.6790000000001, + "y": 874.335 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 567.4090000000001, + "y": 878.4330000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 570.793, + "y": 883.6990000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 572.556, + "y": 889.7040000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2505.505032, + "axes": { + "#": 6484 + }, + "bounds": { + "#": 6498 + }, + "circleRadius": 28.378536522633745, + "collisionFilter": { + "#": 6501 + }, + "constraintImpulse": { + "#": 6502 + }, + "density": 0.001, + "force": { + "#": 6503 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 134, + "inertia": 3996.4921843040015, + "inverseInertia": 0.00025021943091179907, + "inverseMass": 0.3991211301626314, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.5055050320000003, + "motion": 0, + "parent": null, + "position": { + "#": 6504 + }, + "positionImpulse": { + "#": 6505 + }, + "positionPrev": { + "#": 6506 + }, + "render": { + "#": 6507 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6509 + }, + "vertices": { + "#": 6510 + } + }, + [ + { + "#": 6485 + }, + { + "#": 6486 + }, + { + "#": 6487 + }, + { + "#": 6488 + }, + { + "#": 6489 + }, + { + "#": 6490 + }, + { + "#": 6491 + }, + { + "#": 6492 + }, + { + "#": 6493 + }, + { + "#": 6494 + }, + { + "#": 6495 + }, + { + "#": 6496 + }, + { + "#": 6497 + } + ], + { + "x": -0.9709114428121552, + "y": -0.2394388653005588 + }, + { + "x": -0.8854851153219822, + "y": -0.4646677420945165 + }, + { + "x": -0.7484969721157183, + "y": -0.663138207867411 + }, + { + "x": -0.5680540130587589, + "y": -0.822991274709422 + }, + { + "x": -0.3545969524696042, + "y": -0.9350192518334953 + }, + { + "x": -0.12059766028596937, + "y": -0.9927014678812306 + }, + { + "x": 0.12059766028596937, + "y": -0.9927014678812306 + }, + { + "x": 0.3545969524696042, + "y": -0.9350192518334953 + }, + { + "x": 0.5680540130587589, + "y": -0.822991274709422 + }, + { + "x": 0.7484969721157183, + "y": -0.663138207867411 + }, + { + "x": 0.8854851153219822, + "y": -0.4646677420945165 + }, + { + "x": 0.9709114428121552, + "y": -0.2394388653005588 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6499 + }, + "min": { + "#": 6500 + } + }, + { + "x": 638.9000000000001, + "y": 927.6020000000001 + }, + { + "x": 582.556, + "y": 870.844 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 610.7280000000001, + "y": 899.2230000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 610.7280000000001, + "y": 899.2230000000001 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6508 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6511 + }, + { + "#": 6512 + }, + { + "#": 6513 + }, + { + "#": 6514 + }, + { + "#": 6515 + }, + { + "#": 6516 + }, + { + "#": 6517 + }, + { + "#": 6518 + }, + { + "#": 6519 + }, + { + "#": 6520 + }, + { + "#": 6521 + }, + { + "#": 6522 + }, + { + "#": 6523 + }, + { + "#": 6524 + }, + { + "#": 6525 + }, + { + "#": 6526 + }, + { + "#": 6527 + }, + { + "#": 6528 + }, + { + "#": 6529 + }, + { + "#": 6530 + }, + { + "#": 6531 + }, + { + "#": 6532 + }, + { + "#": 6533 + }, + { + "#": 6534 + }, + { + "#": 6535 + }, + { + "#": 6536 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.9000000000001, + "y": 902.6440000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 637.2620000000001, + "y": 909.2860000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 634.0830000000001, + "y": 915.344 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 629.546, + "y": 920.465 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 623.916, + "y": 924.3510000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 617.5190000000001, + "y": 926.777 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 610.7280000000001, + "y": 927.6020000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 603.937, + "y": 926.777 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 597.5400000000001, + "y": 924.3510000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 591.9100000000001, + "y": 920.465 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 587.373, + "y": 915.344 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 584.1940000000001, + "y": 909.2860000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 582.556, + "y": 902.6440000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 582.556, + "y": 895.802 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 584.1940000000001, + "y": 889.1600000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 587.373, + "y": 883.1020000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 591.9100000000001, + "y": 877.9810000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 597.5400000000001, + "y": 874.095 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 603.937, + "y": 871.6690000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 610.7280000000001, + "y": 870.844 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 617.5190000000001, + "y": 871.6690000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 623.916, + "y": 874.095 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 629.546, + "y": 877.9810000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 634.0830000000001, + "y": 883.1020000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 637.2620000000001, + "y": 889.1600000000001 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 638.9000000000001, + "y": 895.802 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1735.9463039999998, + "axes": { + "#": 6538 + }, + "bounds": { + "#": 6551 + }, + "circleRadius": 23.641782407407405, + "collisionFilter": { + "#": 6554 + }, + "constraintImpulse": { + "#": 6555 + }, + "density": 0.001, + "force": { + "#": 6556 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 135, + "inertia": 1918.5102571158823, + "inverseInertia": 0.0005212377657564944, + "inverseMass": 0.5760546842352101, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7359463039999998, + "motion": 0, + "parent": null, + "position": { + "#": 6557 + }, + "positionImpulse": { + "#": 6558 + }, + "positionPrev": { + "#": 6559 + }, + "render": { + "#": 6560 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6562 + }, + "vertices": { + "#": 6563 + } + }, + [ + { + "#": 6539 + }, + { + "#": 6540 + }, + { + "#": 6541 + }, + { + "#": 6542 + }, + { + "#": 6543 + }, + { + "#": 6544 + }, + { + "#": 6545 + }, + { + "#": 6546 + }, + { + "#": 6547 + }, + { + "#": 6548 + }, + { + "#": 6549 + }, + { + "#": 6550 + } + ], + { + "x": -0.9658952408079529, + "y": -0.2589331647057727 + }, + { + "x": -0.8660209970018438, + "y": -0.5000076326936743 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.5000076326936743, + "y": -0.8660209970018438 + }, + { + "x": -0.2589331647057727, + "y": -0.9658952408079529 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2589331647057727, + "y": -0.9658952408079529 + }, + { + "x": 0.5000076326936743, + "y": -0.8660209970018438 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660209970018438, + "y": -0.5000076326936743 + }, + { + "x": 0.9658952408079529, + "y": -0.2589331647057727 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6552 + }, + "min": { + "#": 6553 + } + }, + { + "x": 146.88, + "y": 984.4820000000002 + }, + { + "x": 100, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.44, + "y": 961.0420000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.44, + "y": 961.0420000000001 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6561 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6564 + }, + { + "#": 6565 + }, + { + "#": 6566 + }, + { + "#": 6567 + }, + { + "#": 6568 + }, + { + "#": 6569 + }, + { + "#": 6570 + }, + { + "#": 6571 + }, + { + "#": 6572 + }, + { + "#": 6573 + }, + { + "#": 6574 + }, + { + "#": 6575 + }, + { + "#": 6576 + }, + { + "#": 6577 + }, + { + "#": 6578 + }, + { + "#": 6579 + }, + { + "#": 6580 + }, + { + "#": 6581 + }, + { + "#": 6582 + }, + { + "#": 6583 + }, + { + "#": 6584 + }, + { + "#": 6585 + }, + { + "#": 6586 + }, + { + "#": 6587 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 146.88, + "y": 964.1280000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 145.28199999999998, + "y": 970.0890000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 142.196, + "y": 975.4340000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 137.832, + "y": 979.7980000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 132.487, + "y": 982.8840000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 126.526, + "y": 984.4820000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 120.354, + "y": 984.4820000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 114.393, + "y": 982.8840000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 109.048, + "y": 979.7980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 104.684, + "y": 975.4340000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 101.598, + "y": 970.0890000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 964.1280000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 957.9560000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 101.598, + "y": 951.9950000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 104.684, + "y": 946.6500000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 109.048, + "y": 942.2860000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 114.393, + "y": 939.2000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 120.354, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 126.526, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 132.487, + "y": 939.2000000000002 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 137.832, + "y": 942.2860000000002 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 142.196, + "y": 946.6500000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 145.28199999999998, + "y": 951.9950000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 146.88, + "y": 957.9560000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1479.9061220000003, + "axes": { + "#": 6589 + }, + "bounds": { + "#": 6601 + }, + "circleRadius": 21.8525591563786, + "collisionFilter": { + "#": 6604 + }, + "constraintImpulse": { + "#": 6605 + }, + "density": 0.001, + "force": { + "#": 6606 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": 1394.3270921480123, + "inverseInertia": 0.0007171918308346596, + "inverseMass": 0.6757185372329988, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4799061220000003, + "motion": 0, + "parent": null, + "position": { + "#": 6607 + }, + "positionImpulse": { + "#": 6608 + }, + "positionPrev": { + "#": 6609 + }, + "render": { + "#": 6610 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6612 + }, + "vertices": { + "#": 6613 + } + }, + [ + { + "#": 6590 + }, + { + "#": 6591 + }, + { + "#": 6592 + }, + { + "#": 6593 + }, + { + "#": 6594 + }, + { + "#": 6595 + }, + { + "#": 6596 + }, + { + "#": 6597 + }, + { + "#": 6598 + }, + { + "#": 6599 + }, + { + "#": 6600 + } + ], + { + "x": -0.9595087445086674, + "y": -0.28167884054611 + }, + { + "x": -0.8412098176870567, + "y": -0.5407088335018292 + }, + { + "x": -0.6549121779854049, + "y": -0.7557049947740277 + }, + { + "x": -0.4153530977073672, + "y": -0.9096602685755238 + }, + { + "x": -0.14243407531189364, + "y": -0.9898042908525129 + }, + { + "x": 0.14243407531189364, + "y": -0.9898042908525129 + }, + { + "x": 0.4153530977073672, + "y": -0.9096602685755238 + }, + { + "x": 0.6549121779854049, + "y": -0.7557049947740277 + }, + { + "x": 0.8412098176870567, + "y": -0.5407088335018292 + }, + { + "x": 0.9595087445086674, + "y": -0.28167884054611 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6602 + }, + "min": { + "#": 6603 + } + }, + { + "x": 200.14, + "y": 981.308 + }, + { + "x": 156.88, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.51, + "y": 959.455 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.51, + "y": 959.455 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6611 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6614 + }, + { + "#": 6615 + }, + { + "#": 6616 + }, + { + "#": 6617 + }, + { + "#": 6618 + }, + { + "#": 6619 + }, + { + "#": 6620 + }, + { + "#": 6621 + }, + { + "#": 6622 + }, + { + "#": 6623 + }, + { + "#": 6624 + }, + { + "#": 6625 + }, + { + "#": 6626 + }, + { + "#": 6627 + }, + { + "#": 6628 + }, + { + "#": 6629 + }, + { + "#": 6630 + }, + { + "#": 6631 + }, + { + "#": 6632 + }, + { + "#": 6633 + }, + { + "#": 6634 + }, + { + "#": 6635 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200.14, + "y": 962.565 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.38799999999998, + "y": 968.533 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.02499999999998, + "y": 973.765 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 190.32399999999998, + "y": 977.839 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 184.667, + "y": 980.422 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 178.51, + "y": 981.308 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 172.35299999999998, + "y": 980.422 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 166.696, + "y": 977.839 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.995, + "y": 973.765 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 158.632, + "y": 968.533 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 156.88, + "y": 962.565 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 156.88, + "y": 956.345 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 158.632, + "y": 950.3770000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 161.995, + "y": 945.1450000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 166.696, + "y": 941.071 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 172.35299999999998, + "y": 938.488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 178.51, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 184.667, + "y": 938.488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 190.32399999999998, + "y": 941.071 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 195.02499999999998, + "y": 945.1450000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 198.38799999999998, + "y": 950.3770000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 200.14, + "y": 956.345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1436.4701799999998, + "axes": { + "#": 6637 + }, + "bounds": { + "#": 6649 + }, + "circleRadius": 21.529385288065843, + "collisionFilter": { + "#": 6652 + }, + "constraintImpulse": { + "#": 6653 + }, + "density": 0.001, + "force": { + "#": 6654 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 137, + "inertia": 1313.679921724599, + "inverseInertia": 0.0007612204338840774, + "inverseMass": 0.6961508939921051, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.43647018, + "motion": 0, + "parent": null, + "position": { + "#": 6655 + }, + "positionImpulse": { + "#": 6656 + }, + "positionPrev": { + "#": 6657 + }, + "render": { + "#": 6658 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6660 + }, + "vertices": { + "#": 6661 + } + }, + [ + { + "#": 6638 + }, + { + "#": 6639 + }, + { + "#": 6640 + }, + { + "#": 6641 + }, + { + "#": 6642 + }, + { + "#": 6643 + }, + { + "#": 6644 + }, + { + "#": 6645 + }, + { + "#": 6646 + }, + { + "#": 6647 + }, + { + "#": 6648 + } + ], + { + "x": -0.9595160751453637, + "y": -0.28165386831647904 + }, + { + "x": -0.841247397412524, + "y": -0.5406503642342757 + }, + { + "x": -0.6548808345114404, + "y": -0.7557321566465194 + }, + { + "x": -0.41533932355594355, + "y": -0.9096665577606396 + }, + { + "x": -0.1422893977298045, + "y": -0.9898250993451769 + }, + { + "x": 0.1422893977298045, + "y": -0.9898250993451769 + }, + { + "x": 0.41533932355594355, + "y": -0.9096665577606396 + }, + { + "x": 0.6548808345114404, + "y": -0.7557321566465194 + }, + { + "x": 0.841247397412524, + "y": -0.5406503642342757 + }, + { + "x": 0.9595160751453637, + "y": -0.28165386831647904 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6650 + }, + "min": { + "#": 6651 + } + }, + { + "x": 252.76, + "y": 980.6600000000001 + }, + { + "x": 210.14, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.45, + "y": 959.1310000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.45, + "y": 959.1310000000001 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6659 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6662 + }, + { + "#": 6663 + }, + { + "#": 6664 + }, + { + "#": 6665 + }, + { + "#": 6666 + }, + { + "#": 6667 + }, + { + "#": 6668 + }, + { + "#": 6669 + }, + { + "#": 6670 + }, + { + "#": 6671 + }, + { + "#": 6672 + }, + { + "#": 6673 + }, + { + "#": 6674 + }, + { + "#": 6675 + }, + { + "#": 6676 + }, + { + "#": 6677 + }, + { + "#": 6678 + }, + { + "#": 6679 + }, + { + "#": 6680 + }, + { + "#": 6681 + }, + { + "#": 6682 + }, + { + "#": 6683 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.76, + "y": 962.195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 251.034, + "y": 968.075 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 247.721, + "y": 973.2300000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.08999999999997, + "y": 977.243 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 237.516, + "y": 979.7880000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 231.45, + "y": 980.6600000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 225.384, + "y": 979.7880000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 219.81, + "y": 977.243 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 215.17899999999997, + "y": 973.2300000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.86599999999999, + "y": 968.075 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 210.14, + "y": 962.195 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 210.14, + "y": 956.0670000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 211.86599999999999, + "y": 950.1870000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 215.17899999999997, + "y": 945.032 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 219.81, + "y": 941.0190000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 225.384, + "y": 938.474 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 231.45, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 237.516, + "y": 938.474 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 243.08999999999997, + "y": 941.0190000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 247.721, + "y": 945.032 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 251.034, + "y": 950.1870000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 252.76, + "y": 956.0670000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 921.4581120000001, + "axes": { + "#": 6685 + }, + "bounds": { + "#": 6695 + }, + "circleRadius": 17.301890432098766, + "collisionFilter": { + "#": 6698 + }, + "constraintImpulse": { + "#": 6699 + }, + "density": 0.001, + "force": { + "#": 6700 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 138, + "inertia": 540.5895727979165, + "inverseInertia": 0.0018498322023200039, + "inverseMass": 1.085236525651206, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9214581120000002, + "motion": 0, + "parent": null, + "position": { + "#": 6701 + }, + "positionImpulse": { + "#": 6702 + }, + "positionPrev": { + "#": 6703 + }, + "render": { + "#": 6704 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6706 + }, + "vertices": { + "#": 6707 + } + }, + [ + { + "#": 6686 + }, + { + "#": 6687 + }, + { + "#": 6688 + }, + { + "#": 6689 + }, + { + "#": 6690 + }, + { + "#": 6691 + }, + { + "#": 6692 + }, + { + "#": 6693 + }, + { + "#": 6694 + } + ], + { + "x": -0.9397107989436047, + "y": -0.34197019511760385 + }, + { + "x": -0.765993276427864, + "y": -0.6428485828461521 + }, + { + "x": -0.5000058109841717, + "y": -0.8660220487851684 + }, + { + "x": -0.17372837569222055, + "y": -0.9847936085695026 + }, + { + "x": 0.17372837569222055, + "y": -0.9847936085695026 + }, + { + "x": 0.5000058109841717, + "y": -0.8660220487851684 + }, + { + "x": 0.765993276427864, + "y": -0.6428485828461521 + }, + { + "x": 0.9397107989436047, + "y": -0.34197019511760385 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6696 + }, + "min": { + "#": 6697 + } + }, + { + "x": 296.83799999999997, + "y": 972.2060000000001 + }, + { + "x": 262.76, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 279.799, + "y": 954.9040000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 279.799, + "y": 954.9040000000001 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6705 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6708 + }, + { + "#": 6709 + }, + { + "#": 6710 + }, + { + "#": 6711 + }, + { + "#": 6712 + }, + { + "#": 6713 + }, + { + "#": 6714 + }, + { + "#": 6715 + }, + { + "#": 6716 + }, + { + "#": 6717 + }, + { + "#": 6718 + }, + { + "#": 6719 + }, + { + "#": 6720 + }, + { + "#": 6721 + }, + { + "#": 6722 + }, + { + "#": 6723 + }, + { + "#": 6724 + }, + { + "#": 6725 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.83799999999997, + "y": 957.9080000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 294.78299999999996, + "y": 963.5550000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 290.91999999999996, + "y": 968.1580000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 285.717, + "y": 971.1620000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 279.799, + "y": 972.2060000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 273.881, + "y": 971.1620000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 268.678, + "y": 968.1580000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 264.81499999999994, + "y": 963.5550000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 262.76, + "y": 957.9080000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 262.76, + "y": 951.9000000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 264.81499999999994, + "y": 946.2530000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 268.678, + "y": 941.6500000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 273.881, + "y": 938.6460000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 279.799, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 285.717, + "y": 938.6460000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 290.91999999999996, + "y": 941.6500000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 294.78299999999996, + "y": 946.2530000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 296.83799999999997, + "y": 951.9000000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1442.878982, + "axes": { + "#": 6727 + }, + "bounds": { + "#": 6739 + }, + "circleRadius": 21.577481995884774, + "collisionFilter": { + "#": 6742 + }, + "constraintImpulse": { + "#": 6743 + }, + "density": 0.001, + "force": { + "#": 6744 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": 1325.4280188451355, + "inverseInertia": 0.0007544732613026503, + "inverseMass": 0.6930588167649946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.442878982, + "motion": 0, + "parent": null, + "position": { + "#": 6745 + }, + "positionImpulse": { + "#": 6746 + }, + "positionPrev": { + "#": 6747 + }, + "render": { + "#": 6748 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6750 + }, + "vertices": { + "#": 6751 + } + }, + [ + { + "#": 6728 + }, + { + "#": 6729 + }, + { + "#": 6730 + }, + { + "#": 6731 + }, + { + "#": 6732 + }, + { + "#": 6733 + }, + { + "#": 6734 + }, + { + "#": 6735 + }, + { + "#": 6736 + }, + { + "#": 6737 + }, + { + "#": 6738 + } + ], + { + "x": -0.95950797763849, + "y": -0.281681452793923 + }, + { + "x": -0.8411784753765534, + "y": -0.5407575913134989 + }, + { + "x": -0.6549119406095831, + "y": -0.7557052004895758 + }, + { + "x": -0.41534800101678154, + "y": -0.9096625957196237 + }, + { + "x": -0.14231033171555763, + "y": -0.9898220898156436 + }, + { + "x": 0.14231033171555763, + "y": -0.9898220898156436 + }, + { + "x": 0.41534800101678154, + "y": -0.9096625957196237 + }, + { + "x": 0.6549119406095831, + "y": -0.7557052004895758 + }, + { + "x": 0.8411784753765534, + "y": -0.5407575913134989 + }, + { + "x": 0.95950797763849, + "y": -0.281681452793923 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6740 + }, + "min": { + "#": 6741 + } + }, + { + "x": 349.554, + "y": 980.7560000000001 + }, + { + "x": 306.83799999999997, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.19599999999997, + "y": 959.1790000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.19599999999997, + "y": 959.1790000000001 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6749 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6752 + }, + { + "#": 6753 + }, + { + "#": 6754 + }, + { + "#": 6755 + }, + { + "#": 6756 + }, + { + "#": 6757 + }, + { + "#": 6758 + }, + { + "#": 6759 + }, + { + "#": 6760 + }, + { + "#": 6761 + }, + { + "#": 6762 + }, + { + "#": 6763 + }, + { + "#": 6764 + }, + { + "#": 6765 + }, + { + "#": 6766 + }, + { + "#": 6767 + }, + { + "#": 6768 + }, + { + "#": 6769 + }, + { + "#": 6770 + }, + { + "#": 6771 + }, + { + "#": 6772 + }, + { + "#": 6773 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 349.554, + "y": 962.2500000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 347.82399999999996, + "y": 968.1430000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 344.503, + "y": 973.3090000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 339.86199999999997, + "y": 977.3310000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 334.275, + "y": 979.8820000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 328.19599999999997, + "y": 980.7560000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.11699999999996, + "y": 979.8820000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 316.53, + "y": 977.3310000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 311.88899999999995, + "y": 973.3090000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 308.568, + "y": 968.1430000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 306.83799999999997, + "y": 962.2500000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 306.83799999999997, + "y": 956.1080000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 308.568, + "y": 950.215 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.88899999999995, + "y": 945.0490000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 316.53, + "y": 941.027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 322.11699999999996, + "y": 938.4760000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 328.19599999999997, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 334.275, + "y": 938.4760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 339.86199999999997, + "y": 941.027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 344.503, + "y": 945.0490000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 347.82399999999996, + "y": 950.215 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 349.554, + "y": 956.1080000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1393.8701299999998, + "axes": { + "#": 6775 + }, + "bounds": { + "#": 6787 + }, + "circleRadius": 21.20801183127572, + "collisionFilter": { + "#": 6790 + }, + "constraintImpulse": { + "#": 6791 + }, + "density": 0.001, + "force": { + "#": 6792 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 140, + "inertia": 1236.9181303326188, + "inverseInertia": 0.0008084609445663883, + "inverseMass": 0.717426952825225, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3938701299999998, + "motion": 0, + "parent": null, + "position": { + "#": 6793 + }, + "positionImpulse": { + "#": 6794 + }, + "positionPrev": { + "#": 6795 + }, + "render": { + "#": 6796 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6798 + }, + "vertices": { + "#": 6799 + } + }, + [ + { + "#": 6776 + }, + { + "#": 6777 + }, + { + "#": 6778 + }, + { + "#": 6779 + }, + { + "#": 6780 + }, + { + "#": 6781 + }, + { + "#": 6782 + }, + { + "#": 6783 + }, + { + "#": 6784 + }, + { + "#": 6785 + }, + { + "#": 6786 + } + ], + { + "x": -0.9594788508542671, + "y": -0.2817806500868627 + }, + { + "x": -0.8412861160751645, + "y": -0.540590113578823 + }, + { + "x": -0.6548611595165944, + "y": -0.75574920559441 + }, + { + "x": -0.41546220815076035, + "y": -0.9096104405724983 + }, + { + "x": -0.14230261557828927, + "y": -0.9898231991621421 + }, + { + "x": 0.14230261557828927, + "y": -0.9898231991621421 + }, + { + "x": 0.41546220815076035, + "y": -0.9096104405724983 + }, + { + "x": 0.6548611595165944, + "y": -0.75574920559441 + }, + { + "x": 0.8412861160751645, + "y": -0.540590113578823 + }, + { + "x": 0.9594788508542671, + "y": -0.2817806500868627 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6788 + }, + "min": { + "#": 6789 + } + }, + { + "x": 401.538, + "y": 980.018 + }, + { + "x": 359.554, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.546, + "y": 958.8100000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.546, + "y": 958.8100000000001 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6797 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6800 + }, + { + "#": 6801 + }, + { + "#": 6802 + }, + { + "#": 6803 + }, + { + "#": 6804 + }, + { + "#": 6805 + }, + { + "#": 6806 + }, + { + "#": 6807 + }, + { + "#": 6808 + }, + { + "#": 6809 + }, + { + "#": 6810 + }, + { + "#": 6811 + }, + { + "#": 6812 + }, + { + "#": 6813 + }, + { + "#": 6814 + }, + { + "#": 6815 + }, + { + "#": 6816 + }, + { + "#": 6817 + }, + { + "#": 6818 + }, + { + "#": 6819 + }, + { + "#": 6820 + }, + { + "#": 6821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 401.538, + "y": 961.8280000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 399.837, + "y": 967.62 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 396.574, + "y": 972.6980000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 392.012, + "y": 976.6510000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 386.521, + "y": 979.1590000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 380.546, + "y": 980.018 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 374.57099999999997, + "y": 979.1590000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.08, + "y": 976.6510000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 364.518, + "y": 972.6980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 361.255, + "y": 967.62 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 359.554, + "y": 961.8280000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 359.554, + "y": 955.792 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 361.255, + "y": 950.0000000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 364.518, + "y": 944.922 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 369.08, + "y": 940.969 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 374.57099999999997, + "y": 938.461 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 380.546, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 386.521, + "y": 938.461 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 392.012, + "y": 940.969 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 396.574, + "y": 944.922 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 399.837, + "y": 950.0000000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 401.538, + "y": 955.792 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1134.053972, + "axes": { + "#": 6823 + }, + "bounds": { + "#": 6834 + }, + "circleRadius": 19.15644290123457, + "collisionFilter": { + "#": 6837 + }, + "constraintImpulse": { + "#": 6838 + }, + "density": 0.001, + "force": { + "#": 6839 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 141, + "inertia": 818.7877787916739, + "inverseInertia": 0.0012213176917170773, + "inverseMass": 0.8817922468332045, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.134053972, + "motion": 0, + "parent": null, + "position": { + "#": 6840 + }, + "positionImpulse": { + "#": 6841 + }, + "positionPrev": { + "#": 6842 + }, + "render": { + "#": 6843 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6845 + }, + "vertices": { + "#": 6846 + } + }, + [ + { + "#": 6824 + }, + { + "#": 6825 + }, + { + "#": 6826 + }, + { + "#": 6827 + }, + { + "#": 6828 + }, + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + }, + { + "#": 6832 + }, + { + "#": 6833 + } + ], + { + "x": -0.9510585889822449, + "y": -0.30901061522721374 + }, + { + "x": -0.8090173687157503, + "y": -0.5877847370562153 + }, + { + "x": -0.5877847370562153, + "y": -0.8090173687157503 + }, + { + "x": -0.30901061522721374, + "y": -0.9510585889822449 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30901061522721374, + "y": -0.9510585889822449 + }, + { + "x": 0.5877847370562153, + "y": -0.8090173687157503 + }, + { + "x": 0.8090173687157503, + "y": -0.5877847370562153 + }, + { + "x": 0.9510585889822449, + "y": -0.30901061522721374 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6835 + }, + "min": { + "#": 6836 + } + }, + { + "x": 449.38, + "y": 975.4440000000002 + }, + { + "x": 411.538, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.459, + "y": 956.5230000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.459, + "y": 956.5230000000001 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6844 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6847 + }, + { + "#": 6848 + }, + { + "#": 6849 + }, + { + "#": 6850 + }, + { + "#": 6851 + }, + { + "#": 6852 + }, + { + "#": 6853 + }, + { + "#": 6854 + }, + { + "#": 6855 + }, + { + "#": 6856 + }, + { + "#": 6857 + }, + { + "#": 6858 + }, + { + "#": 6859 + }, + { + "#": 6860 + }, + { + "#": 6861 + }, + { + "#": 6862 + }, + { + "#": 6863 + }, + { + "#": 6864 + }, + { + "#": 6865 + }, + { + "#": 6866 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 449.38, + "y": 959.5200000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 447.528, + "y": 965.2200000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 444.005, + "y": 970.0690000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 439.156, + "y": 973.5920000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 433.456, + "y": 975.4440000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 427.462, + "y": 975.4440000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 421.762, + "y": 973.5920000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 416.913, + "y": 970.0690000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 413.39, + "y": 965.2200000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 411.538, + "y": 959.5200000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 411.538, + "y": 953.5260000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 413.39, + "y": 947.8260000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 416.913, + "y": 942.9770000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 421.762, + "y": 939.4540000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 427.462, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 433.456, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 439.156, + "y": 939.4540000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 444.005, + "y": 942.9770000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 447.528, + "y": 947.8260000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 449.38, + "y": 953.5260000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2129.6684660000005, + "axes": { + "#": 6868 + }, + "bounds": { + "#": 6882 + }, + "circleRadius": 26.16351594650206, + "collisionFilter": { + "#": 6885 + }, + "constraintImpulse": { + "#": 6886 + }, + "density": 0.001, + "force": { + "#": 6887 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": 2887.4362873780287, + "inverseInertia": 0.0003463279880395429, + "inverseMass": 0.4695566544581591, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.1296684660000005, + "motion": 0, + "parent": null, + "position": { + "#": 6888 + }, + "positionImpulse": { + "#": 6889 + }, + "positionPrev": { + "#": 6890 + }, + "render": { + "#": 6891 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6893 + }, + "vertices": { + "#": 6894 + } + }, + [ + { + "#": 6869 + }, + { + "#": 6870 + }, + { + "#": 6871 + }, + { + "#": 6872 + }, + { + "#": 6873 + }, + { + "#": 6874 + }, + { + "#": 6875 + }, + { + "#": 6876 + }, + { + "#": 6877 + }, + { + "#": 6878 + }, + { + "#": 6879 + }, + { + "#": 6880 + }, + { + "#": 6881 + } + ], + { + "x": -0.9709208311748809, + "y": -0.23940079279458984 + }, + { + "x": -0.8854712992435021, + "y": -0.464694069486608 + }, + { + "x": -0.7485454568415367, + "y": -0.6630834781849833 + }, + { + "x": -0.5680552337492909, + "y": -0.8229904321497539 + }, + { + "x": -0.35449173520305777, + "y": -0.9350591476867789 + }, + { + "x": -0.12065807858052943, + "y": -0.9926941261401997 + }, + { + "x": 0.12065807858052943, + "y": -0.9926941261401997 + }, + { + "x": 0.35449173520305777, + "y": -0.9350591476867789 + }, + { + "x": 0.5680552337492909, + "y": -0.8229904321497539 + }, + { + "x": 0.7485454568415367, + "y": -0.6630834781849833 + }, + { + "x": 0.8854712992435021, + "y": -0.464694069486608 + }, + { + "x": 0.9709208311748809, + "y": -0.23940079279458984 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6883 + }, + "min": { + "#": 6884 + } + }, + { + "x": 511.326, + "y": 989.9300000000001 + }, + { + "x": 459.38, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 485.353, + "y": 963.7660000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 485.353, + "y": 963.7660000000001 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6892 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6895 + }, + { + "#": 6896 + }, + { + "#": 6897 + }, + { + "#": 6898 + }, + { + "#": 6899 + }, + { + "#": 6900 + }, + { + "#": 6901 + }, + { + "#": 6902 + }, + { + "#": 6903 + }, + { + "#": 6904 + }, + { + "#": 6905 + }, + { + "#": 6906 + }, + { + "#": 6907 + }, + { + "#": 6908 + }, + { + "#": 6909 + }, + { + "#": 6910 + }, + { + "#": 6911 + }, + { + "#": 6912 + }, + { + "#": 6913 + }, + { + "#": 6914 + }, + { + "#": 6915 + }, + { + "#": 6916 + }, + { + "#": 6917 + }, + { + "#": 6918 + }, + { + "#": 6919 + }, + { + "#": 6920 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 511.326, + "y": 966.9200000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 509.81600000000003, + "y": 973.0440000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.885, + "y": 978.6290000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 502.70300000000003, + "y": 983.35 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 497.512, + "y": 986.9330000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 491.61400000000003, + "y": 989.1690000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.353, + "y": 989.9300000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 479.092, + "y": 989.1690000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 473.194, + "y": 986.9330000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 468.003, + "y": 983.35 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 463.821, + "y": 978.6290000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 460.89, + "y": 973.0440000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 459.38, + "y": 966.9200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 459.38, + "y": 960.6120000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 460.89, + "y": 954.488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 463.821, + "y": 948.903 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 468.003, + "y": 944.1820000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 473.194, + "y": 940.599 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 479.092, + "y": 938.363 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 485.353, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 491.61400000000003, + "y": 938.363 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 497.512, + "y": 940.599 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 502.70300000000003, + "y": 944.1820000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 506.885, + "y": 948.903 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 509.81600000000003, + "y": 954.488 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 511.326, + "y": 960.6120000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 933.4788960000001, + "axes": { + "#": 6922 + }, + "bounds": { + "#": 6932 + }, + "circleRadius": 17.414416152263374, + "collisionFilter": { + "#": 6935 + }, + "constraintImpulse": { + "#": 6936 + }, + "density": 0.001, + "force": { + "#": 6937 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 143, + "inertia": 554.7859794487026, + "inverseInertia": 0.0018024968853641756, + "inverseMass": 1.0712614974854235, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9334788960000001, + "motion": 0, + "parent": null, + "position": { + "#": 6938 + }, + "positionImpulse": { + "#": 6939 + }, + "positionPrev": { + "#": 6940 + }, + "render": { + "#": 6941 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6943 + }, + "vertices": { + "#": 6944 + } + }, + [ + { + "#": 6923 + }, + { + "#": 6924 + }, + { + "#": 6925 + }, + { + "#": 6926 + }, + { + "#": 6927 + }, + { + "#": 6928 + }, + { + "#": 6929 + }, + { + "#": 6930 + }, + { + "#": 6931 + } + ], + { + "x": -0.93966300914261, + "y": -0.3421014896913706 + }, + { + "x": -0.7660891083247972, + "y": -0.642734376010897 + }, + { + "x": -0.4999800713445785, + "y": -0.8660369092932876 + }, + { + "x": -0.17361554431251713, + "y": -0.9848135065955729 + }, + { + "x": 0.17361554431251713, + "y": -0.9848135065955729 + }, + { + "x": 0.4999800713445785, + "y": -0.8660369092932876 + }, + { + "x": 0.7660891083247972, + "y": -0.642734376010897 + }, + { + "x": 0.93966300914261, + "y": -0.3421014896913706 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6933 + }, + "min": { + "#": 6934 + } + }, + { + "x": 555.626, + "y": 972.4300000000001 + }, + { + "x": 521.326, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 538.476, + "y": 955.0160000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 538.476, + "y": 955.0160000000001 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6942 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6945 + }, + { + "#": 6946 + }, + { + "#": 6947 + }, + { + "#": 6948 + }, + { + "#": 6949 + }, + { + "#": 6950 + }, + { + "#": 6951 + }, + { + "#": 6952 + }, + { + "#": 6953 + }, + { + "#": 6954 + }, + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + }, + { + "#": 6959 + }, + { + "#": 6960 + }, + { + "#": 6961 + }, + { + "#": 6962 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.626, + "y": 958.0400000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.557, + "y": 963.7230000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.67, + "y": 968.3560000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.432, + "y": 971.3800000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.476, + "y": 972.4300000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.52, + "y": 971.3800000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2819999999999, + "y": 968.3560000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 523.395, + "y": 963.7230000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 521.326, + "y": 958.0400000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 521.326, + "y": 951.9920000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 523.395, + "y": 946.3090000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 527.2819999999999, + "y": 941.676 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 532.52, + "y": 938.652 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 538.476, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 544.432, + "y": 938.652 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 549.67, + "y": 941.676 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 553.557, + "y": 946.3090000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 555.626, + "y": 951.9920000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1139.7843160000002, + "axes": { + "#": 6964 + }, + "bounds": { + "#": 6975 + }, + "circleRadius": 19.205439814814817, + "collisionFilter": { + "#": 6978 + }, + "constraintImpulse": { + "#": 6979 + }, + "density": 0.001, + "force": { + "#": 6980 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 144, + "inertia": 827.0833095807079, + "inverseInertia": 0.0012090680447982352, + "inverseMass": 0.8773589756958893, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1397843160000003, + "motion": 0, + "parent": null, + "position": { + "#": 6981 + }, + "positionImpulse": { + "#": 6982 + }, + "positionPrev": { + "#": 6983 + }, + "render": { + "#": 6984 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6986 + }, + "vertices": { + "#": 6987 + } + }, + [ + { + "#": 6965 + }, + { + "#": 6966 + }, + { + "#": 6967 + }, + { + "#": 6968 + }, + { + "#": 6969 + }, + { + "#": 6970 + }, + { + "#": 6971 + }, + { + "#": 6972 + }, + { + "#": 6973 + }, + { + "#": 6974 + } + ], + { + "x": -0.9510524110962663, + "y": -0.30902962859243555 + }, + { + "x": -0.8089950900996454, + "y": -0.5878153997597091 + }, + { + "x": -0.5878153997597091, + "y": -0.8089950900996454 + }, + { + "x": -0.30902962859243555, + "y": -0.9510524110962663 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30902962859243555, + "y": -0.9510524110962663 + }, + { + "x": 0.5878153997597091, + "y": -0.8089950900996454 + }, + { + "x": 0.8089950900996454, + "y": -0.5878153997597091 + }, + { + "x": 0.9510524110962663, + "y": -0.30902962859243555 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6976 + }, + "min": { + "#": 6977 + } + }, + { + "x": 603.5640000000001, + "y": 975.5400000000002 + }, + { + "x": 565.626, + "y": 937.6020000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 584.595, + "y": 956.5710000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 584.595, + "y": 956.5710000000001 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6985 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6988 + }, + { + "#": 6989 + }, + { + "#": 6990 + }, + { + "#": 6991 + }, + { + "#": 6992 + }, + { + "#": 6993 + }, + { + "#": 6994 + }, + { + "#": 6995 + }, + { + "#": 6996 + }, + { + "#": 6997 + }, + { + "#": 6998 + }, + { + "#": 6999 + }, + { + "#": 7000 + }, + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + }, + { + "#": 7004 + }, + { + "#": 7005 + }, + { + "#": 7006 + }, + { + "#": 7007 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 603.5640000000001, + "y": 959.5750000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 601.707, + "y": 965.2900000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 598.1750000000001, + "y": 970.1510000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 593.3140000000001, + "y": 973.6830000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 587.599, + "y": 975.5400000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 581.591, + "y": 975.5400000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 575.876, + "y": 973.6830000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.015, + "y": 970.1510000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 567.4830000000001, + "y": 965.2900000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 565.626, + "y": 959.5750000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 565.626, + "y": 953.5670000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 567.4830000000001, + "y": 947.8520000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 571.015, + "y": 942.9910000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 575.876, + "y": 939.4590000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 581.591, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 587.599, + "y": 937.6020000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 593.3140000000001, + "y": 939.4590000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 598.1750000000001, + "y": 942.9910000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 601.707, + "y": 947.8520000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 603.5640000000001, + "y": 953.5670000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2040.5851720000007, + "axes": { + "#": 7009 + }, + "bounds": { + "#": 7023 + }, + "circleRadius": 25.61066100823045, + "collisionFilter": { + "#": 7026 + }, + "constraintImpulse": { + "#": 7027 + }, + "density": 0.001, + "force": { + "#": 7028 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": 2650.9275730068207, + "inverseInertia": 0.0003772264509157252, + "inverseMass": 0.4900555064897823, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.040585172000001, + "motion": 0, + "parent": null, + "position": { + "#": 7029 + }, + "positionImpulse": { + "#": 7030 + }, + "positionPrev": { + "#": 7031 + }, + "render": { + "#": 7032 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7034 + }, + "vertices": { + "#": 7035 + } + }, + [ + { + "#": 7010 + }, + { + "#": 7011 + }, + { + "#": 7012 + }, + { + "#": 7013 + }, + { + "#": 7014 + }, + { + "#": 7015 + }, + { + "#": 7016 + }, + { + "#": 7017 + }, + { + "#": 7018 + }, + { + "#": 7019 + }, + { + "#": 7020 + }, + { + "#": 7021 + }, + { + "#": 7022 + } + ], + { + "x": -0.9709280720447603, + "y": -0.2393714246008596 + }, + { + "x": -0.885476215551765, + "y": -0.46468470137516266 + }, + { + "x": -0.7484985891937153, + "y": -0.6631363826355918 + }, + { + "x": -0.5680470758958883, + "y": -0.8229960629104679 + }, + { + "x": -0.3545468146776685, + "y": -0.9350382645656374 + }, + { + "x": -0.12066511451121047, + "y": -0.9926932709251113 + }, + { + "x": 0.12066511451121047, + "y": -0.9926932709251113 + }, + { + "x": 0.3545468146776685, + "y": -0.9350382645656374 + }, + { + "x": 0.5680470758958883, + "y": -0.8229960629104679 + }, + { + "x": 0.7484985891937153, + "y": -0.6631363826355918 + }, + { + "x": 0.885476215551765, + "y": -0.46468470137516266 + }, + { + "x": 0.9709280720447603, + "y": -0.2393714246008596 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7024 + }, + "min": { + "#": 7025 + } + }, + { + "x": 150.848, + "y": 1051.1520000000003 + }, + { + "x": 100, + "y": 999.9300000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.424, + "y": 1025.5410000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.424, + "y": 1025.5410000000002 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7033 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7036 + }, + { + "#": 7037 + }, + { + "#": 7038 + }, + { + "#": 7039 + }, + { + "#": 7040 + }, + { + "#": 7041 + }, + { + "#": 7042 + }, + { + "#": 7043 + }, + { + "#": 7044 + }, + { + "#": 7045 + }, + { + "#": 7046 + }, + { + "#": 7047 + }, + { + "#": 7048 + }, + { + "#": 7049 + }, + { + "#": 7050 + }, + { + "#": 7051 + }, + { + "#": 7052 + }, + { + "#": 7053 + }, + { + "#": 7054 + }, + { + "#": 7055 + }, + { + "#": 7056 + }, + { + "#": 7057 + }, + { + "#": 7058 + }, + { + "#": 7059 + }, + { + "#": 7060 + }, + { + "#": 7061 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150.848, + "y": 1028.6280000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 149.37, + "y": 1034.623 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 146.501, + "y": 1040.0900000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 142.407, + "y": 1044.7110000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 137.32600000000002, + "y": 1048.2180000000003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 131.553, + "y": 1050.4070000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 125.424, + "y": 1051.1520000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 119.295, + "y": 1050.4070000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 113.522, + "y": 1048.2180000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.441, + "y": 1044.7110000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.34700000000001, + "y": 1040.0900000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.47800000000001, + "y": 1034.623 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 1028.6280000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 1022.4540000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.47800000000001, + "y": 1016.4590000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.34700000000001, + "y": 1010.9920000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 108.441, + "y": 1006.3710000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 113.522, + "y": 1002.8640000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 119.295, + "y": 1000.6750000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 125.424, + "y": 999.9300000000002 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 131.553, + "y": 1000.6750000000002 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 137.32600000000002, + "y": 1002.8640000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 142.407, + "y": 1006.3710000000002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 146.501, + "y": 1010.9920000000002 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 149.37, + "y": 1016.4590000000002 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 150.848, + "y": 1022.4540000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 702.576872, + "axes": { + "#": 7063 + }, + "bounds": { + "#": 7072 + }, + "circleRadius": 15.148598251028806, + "collisionFilter": { + "#": 7075 + }, + "constraintImpulse": { + "#": 7076 + }, + "density": 0.001, + "force": { + "#": 7077 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 146, + "inertia": 314.28689116356384, + "inverseInertia": 0.0031818062671903537, + "inverseMass": 1.4233317945029083, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.702576872, + "motion": 0, + "parent": null, + "position": { + "#": 7078 + }, + "positionImpulse": { + "#": 7079 + }, + "positionPrev": { + "#": 7080 + }, + "render": { + "#": 7081 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7083 + }, + "vertices": { + "#": 7084 + } + }, + [ + { + "#": 7064 + }, + { + "#": 7065 + }, + { + "#": 7066 + }, + { + "#": 7067 + }, + { + "#": 7068 + }, + { + "#": 7069 + }, + { + "#": 7070 + }, + { + "#": 7071 + } + ], + { + "x": -0.9238807445732501, + "y": -0.3826805061755525 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826805061755525, + "y": -0.9238807445732501 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826805061755525, + "y": -0.9238807445732501 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238807445732501, + "y": -0.3826805061755525 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7073 + }, + "min": { + "#": 7074 + } + }, + { + "x": 190.56400000000002, + "y": 1029.646 + }, + { + "x": 160.848, + "y": 999.9300000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.70600000000002, + "y": 1014.788 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.70600000000002, + "y": 1014.788 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7082 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7085 + }, + { + "#": 7086 + }, + { + "#": 7087 + }, + { + "#": 7088 + }, + { + "#": 7089 + }, + { + "#": 7090 + }, + { + "#": 7091 + }, + { + "#": 7092 + }, + { + "#": 7093 + }, + { + "#": 7094 + }, + { + "#": 7095 + }, + { + "#": 7096 + }, + { + "#": 7097 + }, + { + "#": 7098 + }, + { + "#": 7099 + }, + { + "#": 7100 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 190.56400000000002, + "y": 1017.743 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 188.30200000000002, + "y": 1023.2040000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 184.122, + "y": 1027.384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 178.66100000000003, + "y": 1029.646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 172.751, + "y": 1029.646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 167.29000000000002, + "y": 1027.384 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 163.11, + "y": 1023.2040000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 160.848, + "y": 1017.743 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 160.848, + "y": 1011.833 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 163.11, + "y": 1006.372 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 167.29000000000002, + "y": 1002.192 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 172.751, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 178.66100000000003, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 184.122, + "y": 1002.192 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 188.30200000000002, + "y": 1006.372 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 190.56400000000002, + "y": 1011.833 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1565.200396, + "axes": { + "#": 7102 + }, + "bounds": { + "#": 7115 + }, + "circleRadius": 22.448881172839506, + "collisionFilter": { + "#": 7118 + }, + "constraintImpulse": { + "#": 7119 + }, + "density": 0.001, + "force": { + "#": 7120 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 147, + "inertia": 1559.6654377284024, + "inverseInertia": 0.0006411631467941385, + "inverseMass": 0.638895826090757, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.565200396, + "motion": 0, + "parent": null, + "position": { + "#": 7121 + }, + "positionImpulse": { + "#": 7122 + }, + "positionPrev": { + "#": 7123 + }, + "render": { + "#": 7124 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7126 + }, + "vertices": { + "#": 7127 + } + }, + [ + { + "#": 7103 + }, + { + "#": 7104 + }, + { + "#": 7105 + }, + { + "#": 7106 + }, + { + "#": 7107 + }, + { + "#": 7108 + }, + { + "#": 7109 + }, + { + "#": 7110 + }, + { + "#": 7111 + }, + { + "#": 7112 + }, + { + "#": 7113 + }, + { + "#": 7114 + } + ], + { + "x": -0.9659198702250078, + "y": -0.2588412724132379 + }, + { + "x": -0.8660292916676339, + "y": -0.49999326592830867 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.49999326592830867, + "y": -0.8660292916676339 + }, + { + "x": -0.2588412724132379, + "y": -0.9659198702250078 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588412724132379, + "y": -0.9659198702250078 + }, + { + "x": 0.49999326592830867, + "y": -0.8660292916676339 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660292916676339, + "y": -0.49999326592830867 + }, + { + "x": 0.9659198702250078, + "y": -0.2588412724132379 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7116 + }, + "min": { + "#": 7117 + } + }, + { + "x": 245.07800000000003, + "y": 1044.444 + }, + { + "x": 200.56400000000002, + "y": 999.9300000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 222.82100000000003, + "y": 1022.187 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 222.82100000000003, + "y": 1022.187 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7125 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7128 + }, + { + "#": 7129 + }, + { + "#": 7130 + }, + { + "#": 7131 + }, + { + "#": 7132 + }, + { + "#": 7133 + }, + { + "#": 7134 + }, + { + "#": 7135 + }, + { + "#": 7136 + }, + { + "#": 7137 + }, + { + "#": 7138 + }, + { + "#": 7139 + }, + { + "#": 7140 + }, + { + "#": 7141 + }, + { + "#": 7142 + }, + { + "#": 7143 + }, + { + "#": 7144 + }, + { + "#": 7145 + }, + { + "#": 7146 + }, + { + "#": 7147 + }, + { + "#": 7148 + }, + { + "#": 7149 + }, + { + "#": 7150 + }, + { + "#": 7151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.07800000000003, + "y": 1025.117 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.56100000000004, + "y": 1030.778 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 240.63100000000003, + "y": 1035.853 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 236.48700000000002, + "y": 1039.9969999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 231.41200000000003, + "y": 1042.9270000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 225.75100000000003, + "y": 1044.444 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 219.89100000000002, + "y": 1044.444 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 214.23000000000002, + "y": 1042.9270000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 209.15500000000003, + "y": 1039.9969999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 205.01100000000002, + "y": 1035.853 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 202.08100000000002, + "y": 1030.778 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 200.56400000000002, + "y": 1025.117 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 200.56400000000002, + "y": 1019.2570000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 202.08100000000002, + "y": 1013.596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 205.01100000000002, + "y": 1008.521 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 209.15500000000003, + "y": 1004.3770000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 214.23000000000002, + "y": 1001.447 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 219.89100000000002, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 225.75100000000003, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 231.41200000000003, + "y": 1001.447 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 236.48700000000002, + "y": 1004.3770000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 240.63100000000003, + "y": 1008.521 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 243.56100000000004, + "y": 1013.596 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 245.07800000000003, + "y": 1019.2570000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1931.8577320000002, + "axes": { + "#": 7153 + }, + "bounds": { + "#": 7167 + }, + "circleRadius": 24.918917181069958, + "collisionFilter": { + "#": 7170 + }, + "constraintImpulse": { + "#": 7171 + }, + "density": 0.001, + "force": { + "#": 7172 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": 2375.9576222951223, + "inverseInertia": 0.00042088292763152154, + "inverseMass": 0.517636461233989, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.931857732, + "motion": 0, + "parent": null, + "position": { + "#": 7173 + }, + "positionImpulse": { + "#": 7174 + }, + "positionPrev": { + "#": 7175 + }, + "render": { + "#": 7176 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7178 + }, + "vertices": { + "#": 7179 + } + }, + [ + { + "#": 7154 + }, + { + "#": 7155 + }, + { + "#": 7156 + }, + { + "#": 7157 + }, + { + "#": 7158 + }, + { + "#": 7159 + }, + { + "#": 7160 + }, + { + "#": 7161 + }, + { + "#": 7162 + }, + { + "#": 7163 + }, + { + "#": 7164 + }, + { + "#": 7165 + }, + { + "#": 7166 + } + ], + { + "x": -0.970959567412021, + "y": -0.23924363826664466 + }, + { + "x": -0.8854663941956201, + "y": -0.46470341590116027 + }, + { + "x": -0.7484370760332898, + "y": -0.6632058075882173 + }, + { + "x": -0.5681102026406644, + "y": -0.8229524880912525 + }, + { + "x": -0.35456892402501616, + "y": -0.9350298808678482 + }, + { + "x": -0.1205302350208059, + "y": -0.9927096566699799 + }, + { + "x": 0.1205302350208059, + "y": -0.9927096566699799 + }, + { + "x": 0.35456892402501616, + "y": -0.9350298808678482 + }, + { + "x": 0.5681102026406644, + "y": -0.8229524880912525 + }, + { + "x": 0.7484370760332898, + "y": -0.6632058075882173 + }, + { + "x": 0.8854663941956201, + "y": -0.46470341590116027 + }, + { + "x": 0.970959567412021, + "y": -0.23924363826664466 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7168 + }, + "min": { + "#": 7169 + } + }, + { + "x": 304.5520000000001, + "y": 1049.7680000000003 + }, + { + "x": 255.07800000000006, + "y": 999.9300000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 279.81500000000005, + "y": 1024.8490000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 279.81500000000005, + "y": 1024.8490000000002 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7180 + }, + { + "#": 7181 + }, + { + "#": 7182 + }, + { + "#": 7183 + }, + { + "#": 7184 + }, + { + "#": 7185 + }, + { + "#": 7186 + }, + { + "#": 7187 + }, + { + "#": 7188 + }, + { + "#": 7189 + }, + { + "#": 7190 + }, + { + "#": 7191 + }, + { + "#": 7192 + }, + { + "#": 7193 + }, + { + "#": 7194 + }, + { + "#": 7195 + }, + { + "#": 7196 + }, + { + "#": 7197 + }, + { + "#": 7198 + }, + { + "#": 7199 + }, + { + "#": 7200 + }, + { + "#": 7201 + }, + { + "#": 7202 + }, + { + "#": 7203 + }, + { + "#": 7204 + }, + { + "#": 7205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.5520000000001, + "y": 1027.853 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 303.11500000000007, + "y": 1033.6850000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300.32300000000004, + "y": 1039.005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 296.33900000000006, + "y": 1043.5010000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.39500000000004, + "y": 1046.9140000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.7780000000001, + "y": 1049.044 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 279.81500000000005, + "y": 1049.7680000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 273.8520000000001, + "y": 1049.044 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 268.235, + "y": 1046.9140000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 263.29100000000005, + "y": 1043.5010000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 259.307, + "y": 1039.005 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.51500000000004, + "y": 1033.6850000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 255.07800000000006, + "y": 1027.853 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 255.07800000000006, + "y": 1021.8450000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 256.51500000000004, + "y": 1016.0130000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 259.307, + "y": 1010.6930000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 263.29100000000005, + "y": 1006.1970000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 268.235, + "y": 1002.7840000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 273.8520000000001, + "y": 1000.6540000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 279.81500000000005, + "y": 999.9300000000002 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 285.7780000000001, + "y": 1000.6540000000001 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 291.39500000000004, + "y": 1002.7840000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 296.33900000000006, + "y": 1006.1970000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 300.32300000000004, + "y": 1010.6930000000002 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 303.11500000000007, + "y": 1016.0130000000001 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 304.5520000000001, + "y": 1021.8450000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1164.285644, + "axes": { + "#": 7207 + }, + "bounds": { + "#": 7218 + }, + "circleRadius": 19.410558127572017, + "collisionFilter": { + "#": 7221 + }, + "constraintImpulse": { + "#": 7222 + }, + "density": 0.001, + "force": { + "#": 7223 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 149, + "inertia": 863.0242301481517, + "inverseInertia": 0.001158716018701276, + "inverseMass": 0.8588957573713758, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.164285644, + "motion": 0, + "parent": null, + "position": { + "#": 7224 + }, + "positionImpulse": { + "#": 7225 + }, + "positionPrev": { + "#": 7226 + }, + "render": { + "#": 7227 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7229 + }, + "vertices": { + "#": 7230 + } + }, + [ + { + "#": 7208 + }, + { + "#": 7209 + }, + { + "#": 7210 + }, + { + "#": 7211 + }, + { + "#": 7212 + }, + { + "#": 7213 + }, + { + "#": 7214 + }, + { + "#": 7215 + }, + { + "#": 7216 + }, + { + "#": 7217 + } + ], + { + "x": -0.9510437483416532, + "y": -0.3090562873333244 + }, + { + "x": -0.8089781115544842, + "y": -0.5878387661814595 + }, + { + "x": -0.5878387661814595, + "y": -0.8089781115544842 + }, + { + "x": -0.3090562873333244, + "y": -0.9510437483416532 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090562873333244, + "y": -0.9510437483416532 + }, + { + "x": 0.5878387661814595, + "y": -0.8089781115544842 + }, + { + "x": 0.8089781115544842, + "y": -0.5878387661814595 + }, + { + "x": 0.9510437483416532, + "y": -0.3090562873333244 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7219 + }, + "min": { + "#": 7220 + } + }, + { + "x": 352.89600000000013, + "y": 1038.2740000000001 + }, + { + "x": 314.5520000000001, + "y": 999.9300000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.7240000000001, + "y": 1019.1020000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.7240000000001, + "y": 1019.1020000000001 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7228 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7231 + }, + { + "#": 7232 + }, + { + "#": 7233 + }, + { + "#": 7234 + }, + { + "#": 7235 + }, + { + "#": 7236 + }, + { + "#": 7237 + }, + { + "#": 7238 + }, + { + "#": 7239 + }, + { + "#": 7240 + }, + { + "#": 7241 + }, + { + "#": 7242 + }, + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + }, + { + "#": 7246 + }, + { + "#": 7247 + }, + { + "#": 7248 + }, + { + "#": 7249 + }, + { + "#": 7250 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 352.89600000000013, + "y": 1022.138 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 351.0190000000001, + "y": 1027.9140000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 347.4490000000001, + "y": 1032.8270000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 342.5360000000001, + "y": 1036.397 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 336.7600000000001, + "y": 1038.2740000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 330.6880000000001, + "y": 1038.2740000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.9120000000001, + "y": 1036.397 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 319.9990000000001, + "y": 1032.8270000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 316.4290000000001, + "y": 1027.9140000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 314.5520000000001, + "y": 1022.138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 314.5520000000001, + "y": 1016.0660000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 316.4290000000001, + "y": 1010.2900000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 319.9990000000001, + "y": 1005.3770000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 324.9120000000001, + "y": 1001.8070000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 330.6880000000001, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 336.7600000000001, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 342.5360000000001, + "y": 1001.8070000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 347.4490000000001, + "y": 1005.3770000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 351.0190000000001, + "y": 1010.2900000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 352.89600000000013, + "y": 1016.0660000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1102.2695840000001, + "axes": { + "#": 7252 + }, + "bounds": { + "#": 7263 + }, + "circleRadius": 18.886766975308642, + "collisionFilter": { + "#": 7266 + }, + "constraintImpulse": { + "#": 7267 + }, + "density": 0.001, + "force": { + "#": 7268 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 150, + "inertia": 773.5342557734692, + "inverseInertia": 0.0012927675698086365, + "inverseMass": 0.9072190818974825, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.102269584, + "motion": 0, + "parent": null, + "position": { + "#": 7269 + }, + "positionImpulse": { + "#": 7270 + }, + "positionPrev": { + "#": 7271 + }, + "render": { + "#": 7272 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7274 + }, + "vertices": { + "#": 7275 + } + }, + [ + { + "#": 7253 + }, + { + "#": 7254 + }, + { + "#": 7255 + }, + { + "#": 7256 + }, + { + "#": 7257 + }, + { + "#": 7258 + }, + { + "#": 7259 + }, + { + "#": 7260 + }, + { + "#": 7261 + }, + { + "#": 7262 + } + ], + { + "x": -0.9510427750736182, + "y": -0.30905928230724816 + }, + { + "x": -0.8090652604703894, + "y": -0.5877188139748298 + }, + { + "x": -0.5877188139748298, + "y": -0.8090652604703894 + }, + { + "x": -0.30905928230724816, + "y": -0.9510427750736182 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905928230724816, + "y": -0.9510427750736182 + }, + { + "x": 0.5877188139748298, + "y": -0.8090652604703894 + }, + { + "x": 0.8090652604703894, + "y": -0.5877188139748298 + }, + { + "x": 0.9510427750736182, + "y": -0.30905928230724816 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7264 + }, + "min": { + "#": 7265 + } + }, + { + "x": 400.2040000000001, + "y": 1037.238 + }, + { + "x": 362.89600000000013, + "y": 999.9300000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 381.5500000000001, + "y": 1018.5840000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 381.5500000000001, + "y": 1018.5840000000001 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7273 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7276 + }, + { + "#": 7277 + }, + { + "#": 7278 + }, + { + "#": 7279 + }, + { + "#": 7280 + }, + { + "#": 7281 + }, + { + "#": 7282 + }, + { + "#": 7283 + }, + { + "#": 7284 + }, + { + "#": 7285 + }, + { + "#": 7286 + }, + { + "#": 7287 + }, + { + "#": 7288 + }, + { + "#": 7289 + }, + { + "#": 7290 + }, + { + "#": 7291 + }, + { + "#": 7292 + }, + { + "#": 7293 + }, + { + "#": 7294 + }, + { + "#": 7295 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400.2040000000001, + "y": 1021.5390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 398.3780000000001, + "y": 1027.158 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 394.90500000000014, + "y": 1031.939 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 390.12400000000014, + "y": 1035.412 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 384.5050000000001, + "y": 1037.238 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 378.59500000000014, + "y": 1037.238 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 372.9760000000001, + "y": 1035.412 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 368.1950000000001, + "y": 1031.939 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 364.72200000000015, + "y": 1027.158 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 362.89600000000013, + "y": 1021.5390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 362.89600000000013, + "y": 1015.629 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 364.72200000000015, + "y": 1010.0100000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 368.1950000000001, + "y": 1005.229 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 372.9760000000001, + "y": 1001.7560000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 378.59500000000014, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 384.5050000000001, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 390.12400000000014, + "y": 1001.7560000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 394.90500000000014, + "y": 1005.229 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 398.3780000000001, + "y": 1010.0100000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 400.2040000000001, + "y": 1015.629 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2632.366764, + "axes": { + "#": 7297 + }, + "bounds": { + "#": 7311 + }, + "circleRadius": 29.08828446502058, + "collisionFilter": { + "#": 7314 + }, + "constraintImpulse": { + "#": 7315 + }, + "density": 0.001, + "force": { + "#": 7316 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": 4411.448432356564, + "inverseInertia": 0.0002266829172625752, + "inverseMass": 0.37988627332479113, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.632366764, + "motion": 0, + "parent": null, + "position": { + "#": 7317 + }, + "positionImpulse": { + "#": 7318 + }, + "positionPrev": { + "#": 7319 + }, + "render": { + "#": 7320 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7322 + }, + "vertices": { + "#": 7323 + } + }, + [ + { + "#": 7298 + }, + { + "#": 7299 + }, + { + "#": 7300 + }, + { + "#": 7301 + }, + { + "#": 7302 + }, + { + "#": 7303 + }, + { + "#": 7304 + }, + { + "#": 7305 + }, + { + "#": 7306 + }, + { + "#": 7307 + }, + { + "#": 7308 + }, + { + "#": 7309 + }, + { + "#": 7310 + } + ], + { + "x": -0.9709506891175149, + "y": -0.2392796675487136 + }, + { + "x": -0.8854404503453225, + "y": -0.4647528471050742 + }, + { + "x": -0.7485254861082281, + "y": -0.6631060221762737 + }, + { + "x": -0.5680228558108505, + "y": -0.8230127795341247 + }, + { + "x": -0.3546370394943198, + "y": -0.9350040482365326 + }, + { + "x": -0.12050598301835631, + "y": -0.9927126009358296 + }, + { + "x": 0.12050598301835631, + "y": -0.9927126009358296 + }, + { + "x": 0.3546370394943198, + "y": -0.9350040482365326 + }, + { + "x": 0.5680228558108505, + "y": -0.8230127795341247 + }, + { + "x": 0.7485254861082281, + "y": -0.6631060221762737 + }, + { + "x": 0.8854404503453225, + "y": -0.4647528471050742 + }, + { + "x": 0.9709506891175149, + "y": -0.2392796675487136 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7312 + }, + "min": { + "#": 7313 + } + }, + { + "x": 467.9560000000001, + "y": 1058.106 + }, + { + "x": 410.2040000000001, + "y": 999.9300000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 439.0800000000001, + "y": 1029.018 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 439.0800000000001, + "y": 1029.018 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7321 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7324 + }, + { + "#": 7325 + }, + { + "#": 7326 + }, + { + "#": 7327 + }, + { + "#": 7328 + }, + { + "#": 7329 + }, + { + "#": 7330 + }, + { + "#": 7331 + }, + { + "#": 7332 + }, + { + "#": 7333 + }, + { + "#": 7334 + }, + { + "#": 7335 + }, + { + "#": 7336 + }, + { + "#": 7337 + }, + { + "#": 7338 + }, + { + "#": 7339 + }, + { + "#": 7340 + }, + { + "#": 7341 + }, + { + "#": 7342 + }, + { + "#": 7343 + }, + { + "#": 7344 + }, + { + "#": 7345 + }, + { + "#": 7346 + }, + { + "#": 7347 + }, + { + "#": 7348 + }, + { + "#": 7349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 467.9560000000001, + "y": 1032.524 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 466.2780000000001, + "y": 1039.333 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 463.0190000000001, + "y": 1045.542 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 458.3690000000001, + "y": 1050.7910000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 452.59800000000007, + "y": 1054.7740000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 446.0410000000001, + "y": 1057.261 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 439.0800000000001, + "y": 1058.106 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 432.1190000000001, + "y": 1057.261 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.5620000000001, + "y": 1054.7740000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 419.7910000000001, + "y": 1050.7910000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 415.1410000000001, + "y": 1045.542 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 411.8820000000001, + "y": 1039.333 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 410.2040000000001, + "y": 1032.524 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 410.2040000000001, + "y": 1025.5120000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 411.8820000000001, + "y": 1018.703 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 415.1410000000001, + "y": 1012.494 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 419.7910000000001, + "y": 1007.245 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 425.5620000000001, + "y": 1003.2620000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 432.1190000000001, + "y": 1000.775 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 439.0800000000001, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 446.0410000000001, + "y": 1000.775 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 452.59800000000007, + "y": 1003.2620000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 458.3690000000001, + "y": 1007.245 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 463.0190000000001, + "y": 1012.494 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 466.2780000000001, + "y": 1018.703 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 467.9560000000001, + "y": 1025.5120000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1264.582704, + "axes": { + "#": 7351 + }, + "bounds": { + "#": 7363 + }, + "circleRadius": 20.200295781893004, + "collisionFilter": { + "#": 7366 + }, + "constraintImpulse": { + "#": 7367 + }, + "density": 0.001, + "force": { + "#": 7368 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 152, + "inertia": 1018.1008680363917, + "inverseInertia": 0.0009822209482334469, + "inverseMass": 0.7907746933726844, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.264582704, + "motion": 0, + "parent": null, + "position": { + "#": 7369 + }, + "positionImpulse": { + "#": 7370 + }, + "positionPrev": { + "#": 7371 + }, + "render": { + "#": 7372 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7374 + }, + "vertices": { + "#": 7375 + } + }, + [ + { + "#": 7352 + }, + { + "#": 7353 + }, + { + "#": 7354 + }, + { + "#": 7355 + }, + { + "#": 7356 + }, + { + "#": 7357 + }, + { + "#": 7358 + }, + { + "#": 7359 + }, + { + "#": 7360 + }, + { + "#": 7361 + }, + { + "#": 7362 + } + ], + { + "x": -0.9594900287513833, + "y": -0.2817425859302596 + }, + { + "x": -0.8411671723221078, + "y": -0.5407751734386752 + }, + { + "x": -0.6549636434241192, + "y": -0.7556603905145507 + }, + { + "x": -0.4153486707992586, + "y": -0.909662289899548 + }, + { + "x": -0.14227355372381703, + "y": -0.9898273768242603 + }, + { + "x": 0.14227355372381703, + "y": -0.9898273768242603 + }, + { + "x": 0.4153486707992586, + "y": -0.909662289899548 + }, + { + "x": 0.6549636434241192, + "y": -0.7556603905145507 + }, + { + "x": 0.8411671723221078, + "y": -0.5407751734386752 + }, + { + "x": 0.9594900287513833, + "y": -0.2817425859302596 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7364 + }, + "min": { + "#": 7365 + } + }, + { + "x": 517.9460000000001, + "y": 1040.3300000000002 + }, + { + "x": 477.9560000000001, + "y": 999.9300000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 497.9510000000001, + "y": 1020.1300000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 497.9510000000001, + "y": 1020.1300000000001 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7373 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7376 + }, + { + "#": 7377 + }, + { + "#": 7378 + }, + { + "#": 7379 + }, + { + "#": 7380 + }, + { + "#": 7381 + }, + { + "#": 7382 + }, + { + "#": 7383 + }, + { + "#": 7384 + }, + { + "#": 7385 + }, + { + "#": 7386 + }, + { + "#": 7387 + }, + { + "#": 7388 + }, + { + "#": 7389 + }, + { + "#": 7390 + }, + { + "#": 7391 + }, + { + "#": 7392 + }, + { + "#": 7393 + }, + { + "#": 7394 + }, + { + "#": 7395 + }, + { + "#": 7396 + }, + { + "#": 7397 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 517.9460000000001, + "y": 1023.0050000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 516.326, + "y": 1028.5220000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 513.2170000000001, + "y": 1033.3580000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 508.87200000000007, + "y": 1037.1240000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.64200000000005, + "y": 1039.5120000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 497.9510000000001, + "y": 1040.3300000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 492.2600000000001, + "y": 1039.5120000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 487.0300000000001, + "y": 1037.1240000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 482.68500000000006, + "y": 1033.3580000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 479.5760000000001, + "y": 1028.5220000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 477.9560000000001, + "y": 1023.0050000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 477.9560000000001, + "y": 1017.2550000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 479.5760000000001, + "y": 1011.738 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 482.68500000000006, + "y": 1006.9020000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 487.0300000000001, + "y": 1003.1360000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 492.2600000000001, + "y": 1000.7480000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 497.9510000000001, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 503.64200000000005, + "y": 1000.7480000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 508.87200000000007, + "y": 1003.1360000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 513.2170000000001, + "y": 1006.9020000000002 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 516.326, + "y": 1011.738 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 517.9460000000001, + "y": 1017.2550000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2530.374598000001, + "axes": { + "#": 7399 + }, + "bounds": { + "#": 7413 + }, + "circleRadius": 28.51909722222222, + "collisionFilter": { + "#": 7416 + }, + "constraintImpulse": { + "#": 7417 + }, + "density": 0.001, + "force": { + "#": 7418 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 153, + "inertia": 4076.2240565460306, + "inverseInertia": 0.00024532508177368083, + "inverseMass": 0.39519840295203584, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.5303745980000008, + "motion": 0, + "parent": null, + "position": { + "#": 7419 + }, + "positionImpulse": { + "#": 7420 + }, + "positionPrev": { + "#": 7421 + }, + "render": { + "#": 7422 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7424 + }, + "vertices": { + "#": 7425 + } + }, + [ + { + "#": 7400 + }, + { + "#": 7401 + }, + { + "#": 7402 + }, + { + "#": 7403 + }, + { + "#": 7404 + }, + { + "#": 7405 + }, + { + "#": 7406 + }, + { + "#": 7407 + }, + { + "#": 7408 + }, + { + "#": 7409 + }, + { + "#": 7410 + }, + { + "#": 7411 + }, + { + "#": 7412 + } + ], + { + "x": -0.9709499198104373, + "y": -0.23928278922669202 + }, + { + "x": -0.8854697240415134, + "y": -0.4646970710106168 + }, + { + "x": -0.7485077289974239, + "y": -0.6631260661677528 + }, + { + "x": -0.567953853605749, + "y": -0.8230603988616991 + }, + { + "x": -0.35462792443102925, + "y": -0.9350075054317694 + }, + { + "x": -0.12057895971706822, + "y": -0.9927037395283396 + }, + { + "x": 0.12057895971706822, + "y": -0.9927037395283396 + }, + { + "x": 0.35462792443102925, + "y": -0.9350075054317694 + }, + { + "x": 0.567953853605749, + "y": -0.8230603988616991 + }, + { + "x": 0.7485077289974239, + "y": -0.6631260661677528 + }, + { + "x": 0.8854697240415134, + "y": -0.4646970710106168 + }, + { + "x": 0.9709499198104373, + "y": -0.23928278922669202 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7414 + }, + "min": { + "#": 7415 + } + }, + { + "x": 584.5680000000002, + "y": 1056.968 + }, + { + "x": 527.9460000000001, + "y": 999.9300000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.2570000000002, + "y": 1028.449 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.2570000000002, + "y": 1028.449 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7423 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7426 + }, + { + "#": 7427 + }, + { + "#": 7428 + }, + { + "#": 7429 + }, + { + "#": 7430 + }, + { + "#": 7431 + }, + { + "#": 7432 + }, + { + "#": 7433 + }, + { + "#": 7434 + }, + { + "#": 7435 + }, + { + "#": 7436 + }, + { + "#": 7437 + }, + { + "#": 7438 + }, + { + "#": 7439 + }, + { + "#": 7440 + }, + { + "#": 7441 + }, + { + "#": 7442 + }, + { + "#": 7443 + }, + { + "#": 7444 + }, + { + "#": 7445 + }, + { + "#": 7446 + }, + { + "#": 7447 + }, + { + "#": 7448 + }, + { + "#": 7449 + }, + { + "#": 7450 + }, + { + "#": 7451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 584.5680000000002, + "y": 1031.8870000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 582.9230000000002, + "y": 1038.5620000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 579.7280000000002, + "y": 1044.65 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575.1690000000002, + "y": 1049.796 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 569.5100000000002, + "y": 1053.701 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.0820000000002, + "y": 1056.1390000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 556.2570000000002, + "y": 1056.968 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 549.4320000000001, + "y": 1056.1390000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 543.0040000000001, + "y": 1053.701 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 537.3450000000003, + "y": 1049.796 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.7860000000002, + "y": 1044.65 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 529.5910000000001, + "y": 1038.5620000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 527.9460000000001, + "y": 1031.8870000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.9460000000001, + "y": 1025.011 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 529.5910000000001, + "y": 1018.336 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 532.7860000000002, + "y": 1012.248 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 537.3450000000003, + "y": 1007.1020000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 543.0040000000001, + "y": 1003.1970000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 549.4320000000001, + "y": 1000.759 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.2570000000002, + "y": 999.9300000000001 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 563.0820000000002, + "y": 1000.759 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 569.5100000000002, + "y": 1003.1970000000001 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 575.1690000000002, + "y": 1007.1020000000001 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 579.7280000000002, + "y": 1012.248 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 582.9230000000002, + "y": 1018.336 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 584.5680000000002, + "y": 1025.011 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2459.8208880000007, + "axes": { + "#": 7453 + }, + "bounds": { + "#": 7467 + }, + "circleRadius": 28.118762860082306, + "collisionFilter": { + "#": 7470 + }, + "constraintImpulse": { + "#": 7471 + }, + "density": 0.001, + "force": { + "#": 7472 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": 3852.0807238730777, + "inverseInertia": 0.00025959995952383604, + "inverseMass": 0.4065336646576195, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.4598208880000008, + "motion": 0, + "parent": null, + "position": { + "#": 7473 + }, + "positionImpulse": { + "#": 7474 + }, + "positionPrev": { + "#": 7475 + }, + "render": { + "#": 7476 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7478 + }, + "vertices": { + "#": 7479 + } + }, + [ + { + "#": 7454 + }, + { + "#": 7455 + }, + { + "#": 7456 + }, + { + "#": 7457 + }, + { + "#": 7458 + }, + { + "#": 7459 + }, + { + "#": 7460 + }, + { + "#": 7461 + }, + { + "#": 7462 + }, + { + "#": 7463 + }, + { + "#": 7464 + }, + { + "#": 7465 + }, + { + "#": 7466 + } + ], + { + "x": -0.970918412420747, + "y": -0.2394106021511506 + }, + { + "x": -0.8854616473223555, + "y": -0.46471246069067335 + }, + { + "x": -0.7485233238858229, + "y": -0.6631084629221072 + }, + { + "x": -0.5680741729531639, + "y": -0.8229773593626856 + }, + { + "x": -0.3546453397852063, + "y": -0.9350008999827945 + }, + { + "x": -0.12052962549589565, + "y": -0.9927097306754977 + }, + { + "x": 0.12052962549589565, + "y": -0.9927097306754977 + }, + { + "x": 0.3546453397852063, + "y": -0.9350008999827945 + }, + { + "x": 0.5680741729531639, + "y": -0.8229773593626856 + }, + { + "x": 0.7485233238858229, + "y": -0.6631084629221072 + }, + { + "x": 0.8854616473223555, + "y": -0.46471246069067335 + }, + { + "x": 0.970918412420747, + "y": -0.2394106021511506 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7468 + }, + "min": { + "#": 7469 + } + }, + { + "x": 650.3960000000002, + "y": 1056.168 + }, + { + "x": 594.5680000000002, + "y": 999.93 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 622.4820000000002, + "y": 1028.049 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 622.4820000000002, + "y": 1028.049 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7477 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7480 + }, + { + "#": 7481 + }, + { + "#": 7482 + }, + { + "#": 7483 + }, + { + "#": 7484 + }, + { + "#": 7485 + }, + { + "#": 7486 + }, + { + "#": 7487 + }, + { + "#": 7488 + }, + { + "#": 7489 + }, + { + "#": 7490 + }, + { + "#": 7491 + }, + { + "#": 7492 + }, + { + "#": 7493 + }, + { + "#": 7494 + }, + { + "#": 7495 + }, + { + "#": 7496 + }, + { + "#": 7497 + }, + { + "#": 7498 + }, + { + "#": 7499 + }, + { + "#": 7500 + }, + { + "#": 7501 + }, + { + "#": 7502 + }, + { + "#": 7503 + }, + { + "#": 7504 + }, + { + "#": 7505 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650.3960000000002, + "y": 1031.438 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 648.7730000000003, + "y": 1038.02 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 645.6230000000002, + "y": 1044.022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 641.1280000000002, + "y": 1049.096 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 635.5490000000002, + "y": 1052.947 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 629.2110000000002, + "y": 1055.3509999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 622.4820000000002, + "y": 1056.168 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 615.7530000000002, + "y": 1055.3509999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 609.4150000000002, + "y": 1052.947 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 603.8360000000002, + "y": 1049.096 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 599.3410000000002, + "y": 1044.022 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 596.1910000000001, + "y": 1038.02 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 594.5680000000002, + "y": 1031.438 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 594.5680000000002, + "y": 1024.6599999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 596.1910000000001, + "y": 1018.078 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 599.3410000000002, + "y": 1012.076 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 603.8360000000002, + "y": 1007.002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.4150000000002, + "y": 1003.151 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 615.7530000000002, + "y": 1000.747 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 622.4820000000002, + "y": 999.93 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 629.2110000000002, + "y": 1000.747 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 635.5490000000002, + "y": 1003.151 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 641.1280000000002, + "y": 1007.002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 645.6230000000002, + "y": 1012.076 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 648.7730000000003, + "y": 1018.078 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 650.3960000000002, + "y": 1024.6599999999999 + }, + [], + [], + [ + { + "#": 7509 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 7510 + }, + "pointB": "", + "render": { + "#": 7511 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 7513 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/ballPool/ballPool-10.json b/tests/browser/refs/ballPool/ballPool-10.json new file mode 100644 index 00000000..680572e1 --- /dev/null +++ b/tests/browser/refs/ballPool/ballPool-10.json @@ -0,0 +1,68422 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 160 + }, + "composites": { + "#": 163 + }, + "constraints": { + "#": 7665 + }, + "events": { + "#": 7669 + }, + "gravity": { + "#": 7671 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 138 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": -0.07328585498342383, + "anglePrev": -0.0594578049385605, + "angularSpeed": 0.012369990512984293, + "angularVelocity": -0.013984200710894047, + "area": 4676.58, + "axes": { + "#": 91 + }, + "bounds": { + "#": 95 + }, + "collisionFilter": { + "#": 98 + }, + "constraintImpulse": { + "#": 99 + }, + "density": 0.001, + "force": { + "#": 100 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 155, + "inertia": 16835.842152547684, + "inverseInertia": 0.00005939708812538819, + "inverseMass": 0.21383147513781436, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.67658, + "motion": 0, + "parent": null, + "position": { + "#": 101 + }, + "positionImpulse": { + "#": 102 + }, + "positionPrev": { + "#": 103 + }, + "region": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9304403174776642, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + } + ], + { + "x": -0.4352508507900517, + "y": 0.9003092229265098 + }, + { + "x": -0.5620717913617084, + "y": -0.8270884483266829 + }, + { + "x": 0.9973157934174516, + "y": -0.07322027178397791 + }, + { + "max": { + "#": 96 + }, + "min": { + "#": 97 + } + }, + { + "x": 226.91983175500792, + "y": 580.7333949464995 + }, + { + "x": 132.74705742092746, + "y": 476.3854913601637 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 193.19568619004536, + "y": 530.4046227712405 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 193.9135821654509, + "y": 529.9390119404924 + }, + { + "endCol": 4, + "endRow": 12, + "id": "2,4,9,12", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.7361493779566786, + "y": 0.4582694080992269 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 226.91983175500792, + "y": 580.0305378752787 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 133.35673858499828, + "y": 534.7978390782794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 219.3104882301299, + "y": 476.3854913601637 + }, + { + "angle": 0.019534519811095833, + "anglePrev": 0.017613588340702403, + "angularSpeed": 0.003405216253869354, + "angularVelocity": 0.0019766763607237496, + "area": 8559.455977, + "axes": { + "#": 113 + }, + "bounds": { + "#": 119 + }, + "collisionFilter": { + "#": 122 + }, + "constraintImpulse": { + "#": 123 + }, + "density": 0.001, + "force": { + "#": 124 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 156, + "inertia": 47433.138478766494, + "inverseInertia": 0.000021082307265998248, + "inverseMass": 0.1168298549215145, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 8.559455976999999, + "motion": 0, + "parent": null, + "position": { + "#": 125 + }, + "positionImpulse": { + "#": 126 + }, + "positionPrev": { + "#": 127 + }, + "region": { + "#": 128 + }, + "render": { + "#": 129 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4640663512189906, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 131 + }, + "vertices": { + "#": 132 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 0.2903773911913494, + "y": 0.9569122063621646 + }, + { + "x": -0.8203420200561661, + "y": 0.5718732115864225 + }, + { + "x": -0.7973791651272966, + "y": -0.6034786384130727 + }, + { + "x": 0.3275319356141033, + "y": -0.944840108776548 + }, + { + "x": 0.9998092073351572, + "y": 0.019533277447595997 + }, + { + "max": { + "#": 120 + }, + "min": { + "#": 121 + } + }, + { + "x": 445.75369088700097, + "y": 580.9286746486783 + }, + { + "x": 336.5232873535997, + "y": 466.3608686717362 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 396.5118610022895, + "y": 523.77514838141 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 396.26992844420676, + "y": 523.6966499110498 + }, + { + "endCol": 9, + "endRow": 12, + "id": "7,9,9,12", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 130 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2457874418076358, + "y": 0.07340499435190395 + }, + [ + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 444.3546984312207, + "y": 559.9835841027307 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 376.8597498695159, + "y": 580.4650942680681 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 336.5232873535997, + "y": 522.6031513202021 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 379.08900469150024, + "y": 466.3608686717362 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 445.7324586227093, + "y": 489.4630414725531 + }, + { + "angle": -0.00042462434054575736, + "anglePrev": -0.00039623089146740886, + "angularSpeed": 0.00008959057187586456, + "angularVelocity": 0.000032525374177576935, + "area": 6400, + "axes": { + "#": 139 + }, + "bounds": { + "#": 142 + }, + "collisionFilter": { + "#": 145 + }, + "constraintImpulse": { + "#": 146 + }, + "density": 0.001, + "force": { + "#": 147 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": 27306.666666666668, + "inverseInertia": 0.00003662109375, + "inverseMass": 0.15625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 6.4, + "motion": 0, + "parent": null, + "position": { + "#": 148 + }, + "positionImpulse": { + "#": 149 + }, + "positionPrev": { + "#": 150 + }, + "region": { + "#": 151 + }, + "render": { + "#": 152 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.27756284287886035, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 154 + }, + "vertices": { + "#": 155 + } + }, + [ + { + "#": 140 + }, + { + "#": 141 + } + ], + { + "x": 0.00042462432778538333, + "y": 0.999999909847086 + }, + { + "x": -0.999999909847086, + "y": 0.00042462432778538333 + }, + { + "max": { + "#": 143 + }, + "min": { + "#": 144 + } + }, + { + "x": 648.8255262526461, + "y": 580.0908141062209 + }, + { + "x": 568.7892324247995, + "y": 499.7792983182962 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 608.8062137917943, + "y": 539.7962796852913 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 608.8071023214394, + "y": 539.7961651364593 + }, + { + "endCol": 13, + "endRow": 12, + "id": "11,13,10,12", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 153 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005626604685403436, + "y": 0.00014342948850298853 + }, + [ + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 568.7892324247995, + "y": 499.81326826451897 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 648.7892252125664, + "y": 499.7792983182962 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 648.8231951587892, + "y": 579.7792911060634 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 568.8232023710223, + "y": 579.8132610522863 + }, + { + "max": { + "#": 161 + }, + "min": { + "#": 162 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 164 + } + ], + { + "bodies": { + "#": 165 + }, + "composites": { + "#": 7663 + }, + "constraints": { + "#": 7664 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 166 + }, + { + "#": 212 + }, + { + "#": 264 + }, + { + "#": 319 + }, + { + "#": 368 + }, + { + "#": 423 + }, + { + "#": 466 + }, + { + "#": 521 + }, + { + "#": 573 + }, + { + "#": 625 + }, + { + "#": 674 + }, + { + "#": 729 + }, + { + "#": 775 + }, + { + "#": 830 + }, + { + "#": 885 + }, + { + "#": 940 + }, + { + "#": 989 + }, + { + "#": 1032 + }, + { + "#": 1087 + }, + { + "#": 1136 + }, + { + "#": 1191 + }, + { + "#": 1246 + }, + { + "#": 1289 + }, + { + "#": 1344 + }, + { + "#": 1399 + }, + { + "#": 1439 + }, + { + "#": 1491 + }, + { + "#": 1537 + }, + { + "#": 1586 + }, + { + "#": 1641 + }, + { + "#": 1696 + }, + { + "#": 1745 + }, + { + "#": 1791 + }, + { + "#": 1837 + }, + { + "#": 1892 + }, + { + "#": 1947 + }, + { + "#": 1999 + }, + { + "#": 2045 + }, + { + "#": 2100 + }, + { + "#": 2143 + }, + { + "#": 2198 + }, + { + "#": 2253 + }, + { + "#": 2302 + }, + { + "#": 2345 + }, + { + "#": 2388 + }, + { + "#": 2443 + }, + { + "#": 2483 + }, + { + "#": 2538 + }, + { + "#": 2584 + }, + { + "#": 2639 + }, + { + "#": 2691 + }, + { + "#": 2740 + }, + { + "#": 2792 + }, + { + "#": 2838 + }, + { + "#": 2893 + }, + { + "#": 2948 + }, + { + "#": 3003 + }, + { + "#": 3049 + }, + { + "#": 3104 + }, + { + "#": 3159 + }, + { + "#": 3208 + }, + { + "#": 3263 + }, + { + "#": 3312 + }, + { + "#": 3367 + }, + { + "#": 3416 + }, + { + "#": 3465 + }, + { + "#": 3508 + }, + { + "#": 3563 + }, + { + "#": 3609 + }, + { + "#": 3658 + }, + { + "#": 3701 + }, + { + "#": 3750 + }, + { + "#": 3802 + }, + { + "#": 3857 + }, + { + "#": 3900 + }, + { + "#": 3940 + }, + { + "#": 3992 + }, + { + "#": 4047 + }, + { + "#": 4093 + }, + { + "#": 4139 + }, + { + "#": 4188 + }, + { + "#": 4237 + }, + { + "#": 4286 + }, + { + "#": 4341 + }, + { + "#": 4396 + }, + { + "#": 4442 + }, + { + "#": 4497 + }, + { + "#": 4552 + }, + { + "#": 4598 + }, + { + "#": 4641 + }, + { + "#": 4684 + }, + { + "#": 4739 + }, + { + "#": 4782 + }, + { + "#": 4834 + }, + { + "#": 4889 + }, + { + "#": 4944 + }, + { + "#": 4999 + }, + { + "#": 5045 + }, + { + "#": 5100 + }, + { + "#": 5155 + }, + { + "#": 5195 + }, + { + "#": 5247 + }, + { + "#": 5290 + }, + { + "#": 5342 + }, + { + "#": 5397 + }, + { + "#": 5443 + }, + { + "#": 5489 + }, + { + "#": 5544 + }, + { + "#": 5590 + }, + { + "#": 5636 + }, + { + "#": 5691 + }, + { + "#": 5746 + }, + { + "#": 5789 + }, + { + "#": 5844 + }, + { + "#": 5899 + }, + { + "#": 5939 + }, + { + "#": 5985 + }, + { + "#": 6040 + }, + { + "#": 6089 + }, + { + "#": 6129 + }, + { + "#": 6172 + }, + { + "#": 6224 + }, + { + "#": 6279 + }, + { + "#": 6322 + }, + { + "#": 6377 + }, + { + "#": 6432 + }, + { + "#": 6475 + }, + { + "#": 6524 + }, + { + "#": 6570 + }, + { + "#": 6619 + }, + { + "#": 6674 + }, + { + "#": 6726 + }, + { + "#": 6775 + }, + { + "#": 6824 + }, + { + "#": 6867 + }, + { + "#": 6916 + }, + { + "#": 6965 + }, + { + "#": 7011 + }, + { + "#": 7066 + }, + { + "#": 7109 + }, + { + "#": 7155 + }, + { + "#": 7210 + }, + { + "#": 7250 + }, + { + "#": 7302 + }, + { + "#": 7357 + }, + { + "#": 7403 + }, + { + "#": 7449 + }, + { + "#": 7504 + }, + { + "#": 7553 + }, + { + "#": 7608 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1020.1722720000001, + "axes": { + "#": 167 + }, + "bounds": { + "#": 178 + }, + "circleRadius": 18.169817386831276, + "collisionFilter": { + "#": 181 + }, + "constraintImpulse": { + "#": 182 + }, + "density": 0.001, + "force": { + "#": 183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 662.5992415979618, + "inverseInertia": 0.001509207884977869, + "inverseMass": 0.980226602355646, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0201722720000002, + "motion": 0, + "parent": null, + "position": { + "#": 184 + }, + "positionImpulse": { + "#": 185 + }, + "positionPrev": { + "#": 186 + }, + "region": { + "#": 187 + }, + "render": { + "#": 188 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 190 + }, + "vertices": { + "#": 191 + } + }, + [ + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": -0.9510482862449724, + "y": -0.3090423227172957 + }, + { + "x": -0.8090478688341852, + "y": -0.5877427548978066 + }, + { + "x": -0.5877427548978066, + "y": -0.8090478688341852 + }, + { + "x": -0.3090423227172957, + "y": -0.9510482862449724 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090423227172957, + "y": -0.9510482862449724 + }, + { + "x": 0.5877427548978066, + "y": -0.8090478688341852 + }, + { + "x": 0.8090478688341852, + "y": -0.5877427548978066 + }, + { + "x": 0.9510482862449724, + "y": -0.3090423227172957 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 179 + }, + "min": { + "#": 180 + } + }, + { + "x": 135.892, + "y": 103.62775476702572 + }, + { + "x": 100, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.946, + "y": 85.68175476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.946, + "y": 82.77448405199007 + }, + { + "endCol": 2, + "endRow": 2, + "id": "2,2,1,2", + "startCol": 2, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 189 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 135.892, + "y": 88.52375476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 134.135, + "y": 93.93075476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 130.79399999999998, + "y": 98.52975476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 126.195, + "y": 101.87075476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 120.788, + "y": 103.62775476702572 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 115.104, + "y": 103.62775476702572 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 109.697, + "y": 101.87075476702572 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.098, + "y": 98.52975476702572 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.757, + "y": 93.93075476702572 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 88.52375476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 82.83975476702572 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.757, + "y": 77.43275476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.098, + "y": 72.83375476702572 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 109.697, + "y": 69.49275476702573 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 115.104, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 120.788, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 126.195, + "y": 69.49275476702573 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 130.79399999999998, + "y": 72.83375476702572 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 134.135, + "y": 77.43275476702573 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 135.892, + "y": 82.83975476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1671.8754580000002, + "axes": { + "#": 213 + }, + "bounds": { + "#": 226 + }, + "circleRadius": 23.201581790123456, + "collisionFilter": { + "#": 229 + }, + "constraintImpulse": { + "#": 230 + }, + "density": 0.001, + "force": { + "#": 231 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1779.5057490627585, + "inverseInertia": 0.0005619537899929159, + "inverseMass": 0.5981306772672298, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6718754580000001, + "motion": 0, + "parent": null, + "position": { + "#": 232 + }, + "positionImpulse": { + "#": 233 + }, + "positionPrev": { + "#": 234 + }, + "region": { + "#": 235 + }, + "render": { + "#": 236 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 238 + }, + "vertices": { + "#": 239 + } + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": -0.9659163631346784, + "y": -0.25885435949327934 + }, + { + "x": -0.8660398575651125, + "y": -0.4999749644818225 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.4999749644818225, + "y": -0.8660398575651125 + }, + { + "x": -0.25885435949327934, + "y": -0.9659163631346784 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25885435949327934, + "y": -0.9659163631346784 + }, + { + "x": 0.4999749644818225, + "y": -0.8660398575651125 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660398575651125, + "y": -0.4999749644818225 + }, + { + "x": 0.9659163631346784, + "y": -0.25885435949327934 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 227 + }, + "min": { + "#": 228 + } + }, + { + "x": 191.89799999999997, + "y": 113.74175476702572 + }, + { + "x": 145.892, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.89499999999998, + "y": 90.73875476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.89499999999998, + "y": 87.83148405199007 + }, + { + "endCol": 3, + "endRow": 2, + "id": "3,3,1,2", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 237 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 191.89799999999997, + "y": 93.76675476702573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.32999999999998, + "y": 99.61775476702573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.302, + "y": 104.86275476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 183.01899999999998, + "y": 109.14575476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 177.77399999999997, + "y": 112.17375476702573 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 171.92299999999997, + "y": 113.74175476702572 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 165.867, + "y": 113.74175476702572 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 160.016, + "y": 112.17375476702573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 154.771, + "y": 109.14575476702572 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 150.488, + "y": 104.86275476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 147.45999999999998, + "y": 99.61775476702573 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 145.892, + "y": 93.76675476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 145.892, + "y": 87.71075476702572 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 147.45999999999998, + "y": 81.85975476702572 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 150.488, + "y": 76.61475476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 154.771, + "y": 72.33175476702573 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 160.016, + "y": 69.30375476702574 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 165.867, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 171.92299999999997, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 177.77399999999997, + "y": 69.30375476702574 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 183.01899999999998, + "y": 72.33175476702573 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 187.302, + "y": 76.61475476702573 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 190.32999999999998, + "y": 81.85975476702572 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 191.89799999999997, + "y": 87.71075476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2317.307802, + "axes": { + "#": 265 + }, + "bounds": { + "#": 279 + }, + "circleRadius": 27.29198816872428, + "collisionFilter": { + "#": 282 + }, + "constraintImpulse": { + "#": 283 + }, + "density": 0.001, + "force": { + "#": 284 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 3418.659578448263, + "inverseInertia": 0.0002925123069591802, + "inverseMass": 0.4315352492823481, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.3173078019999998, + "motion": 0, + "parent": null, + "position": { + "#": 285 + }, + "positionImpulse": { + "#": 286 + }, + "positionPrev": { + "#": 287 + }, + "region": { + "#": 288 + }, + "render": { + "#": 289 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 291 + }, + "vertices": { + "#": 292 + } + }, + [ + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + } + ], + { + "x": -0.9709241770545208, + "y": -0.2393872227396477 + }, + { + "x": -0.8855010950678353, + "y": -0.46463728932756176 + }, + { + "x": -0.7484566762798334, + "y": -0.6631836877759771 + }, + { + "x": -0.5680951506518395, + "y": -0.8229628787532666 + }, + { + "x": -0.35458550726385507, + "y": -0.9350235922362785 + }, + { + "x": -0.12053563584793033, + "y": -0.9927090009115134 + }, + { + "x": 0.12053563584793033, + "y": -0.9927090009115134 + }, + { + "x": 0.35458550726385507, + "y": -0.9350235922362785 + }, + { + "x": 0.5680951506518395, + "y": -0.8229628787532666 + }, + { + "x": 0.7484566762798334, + "y": -0.6631836877759771 + }, + { + "x": 0.8855010950678353, + "y": -0.46463728932756176 + }, + { + "x": 0.9709241770545208, + "y": -0.2393872227396477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 280 + }, + "min": { + "#": 281 + } + }, + { + "x": 256.08399999999995, + "y": 122.31975476702573 + }, + { + "x": 201.89799999999997, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.99099999999996, + "y": 95.02775476702573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.99099999999996, + "y": 92.12048405199008 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 290 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 256.08399999999995, + "y": 98.31775476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 254.50899999999996, + "y": 104.70575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 251.45199999999997, + "y": 110.53175476702573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.08899999999997, + "y": 115.45575476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.67399999999995, + "y": 119.19375476702572 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.52199999999996, + "y": 121.52675476702572 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 228.99099999999996, + "y": 122.31975476702573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 222.45999999999995, + "y": 121.52675476702572 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 216.30799999999996, + "y": 119.19375476702572 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 210.89299999999994, + "y": 115.45575476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 206.52999999999994, + "y": 110.53175476702573 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 203.47299999999996, + "y": 104.70575476702572 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 201.89799999999997, + "y": 98.31775476702572 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 201.89799999999997, + "y": 91.73775476702573 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 203.47299999999996, + "y": 85.34975476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 206.52999999999994, + "y": 79.52375476702574 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 210.89299999999994, + "y": 74.59975476702574 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 216.30799999999996, + "y": 70.86175476702573 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 222.45999999999995, + "y": 68.52875476702575 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 228.99099999999996, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 235.52199999999996, + "y": 68.52875476702575 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 241.67399999999995, + "y": 70.86175476702573 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 247.08899999999997, + "y": 74.59975476702574 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 251.45199999999997, + "y": 79.52375476702574 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 254.50899999999996, + "y": 85.34975476702573 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 256.08399999999995, + "y": 91.73775476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1318.440404, + "axes": { + "#": 320 + }, + "bounds": { + "#": 332 + }, + "circleRadius": 20.626221707818928, + "collisionFilter": { + "#": 335 + }, + "constraintImpulse": { + "#": 336 + }, + "density": 0.001, + "force": { + "#": 337 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1106.6679682910583, + "inverseInertia": 0.0009036133950314137, + "inverseMass": 0.7584719013207669, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.318440404, + "motion": 0, + "parent": null, + "position": { + "#": 338 + }, + "positionImpulse": { + "#": 339 + }, + "positionPrev": { + "#": 340 + }, + "region": { + "#": 341 + }, + "render": { + "#": 342 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 344 + }, + "vertices": { + "#": 345 + } + }, + [ + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + } + ], + { + "x": -0.9594928831235549, + "y": -0.281732865025095 + }, + { + "x": -0.8412614784395286, + "y": -0.5406284536479176 + }, + { + "x": -0.654891631298853, + "y": -0.7557228005391443 + }, + { + "x": -0.4154578190944267, + "y": -0.9096124452497903 + }, + { + "x": -0.1422321170387564, + "y": -0.9898333318709133 + }, + { + "x": 0.1422321170387564, + "y": -0.9898333318709133 + }, + { + "x": 0.4154578190944267, + "y": -0.9096124452497903 + }, + { + "x": 0.654891631298853, + "y": -0.7557228005391443 + }, + { + "x": 0.8412614784395286, + "y": -0.5406284536479176 + }, + { + "x": 0.9594928831235549, + "y": -0.281732865025095 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 333 + }, + "min": { + "#": 334 + } + }, + { + "x": 306.91599999999994, + "y": 108.98775476702573 + }, + { + "x": 266.08399999999995, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 286.49999999999994, + "y": 88.36175476702573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 286.49999999999994, + "y": 85.45448405199008 + }, + { + "endCol": 6, + "endRow": 2, + "id": "5,6,1,2", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 343 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 306.91599999999994, + "y": 91.29675476702573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 305.26199999999994, + "y": 96.92975476702573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.08799999999997, + "y": 101.86875476702573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.65099999999995, + "y": 105.71375476702573 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 292.3109999999999, + "y": 108.15275476702573 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 286.49999999999994, + "y": 108.98775476702573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280.68899999999996, + "y": 108.15275476702573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 275.34899999999993, + "y": 105.71375476702573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 270.9119999999999, + "y": 101.86875476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 267.73799999999994, + "y": 96.92975476702573 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 266.08399999999995, + "y": 91.29675476702573 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 266.08399999999995, + "y": 85.42675476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.73799999999994, + "y": 79.79375476702573 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 270.9119999999999, + "y": 74.85475476702574 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 275.34899999999993, + "y": 71.00975476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 280.68899999999996, + "y": 68.57075476702575 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 286.49999999999994, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 292.3109999999999, + "y": 68.57075476702575 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 297.65099999999995, + "y": 71.00975476702573 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 302.08799999999997, + "y": 74.85475476702574 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 305.26199999999994, + "y": 79.79375476702573 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 306.91599999999994, + "y": 85.42675476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2707.561101999999, + "axes": { + "#": 369 + }, + "bounds": { + "#": 383 + }, + "circleRadius": 29.500578703703702, + "collisionFilter": { + "#": 386 + }, + "constraintImpulse": { + "#": 387 + }, + "density": 0.001, + "force": { + "#": 388 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 4667.076739501968, + "inverseInertia": 0.00021426688606511143, + "inverseMass": 0.3693360786064359, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.707561101999999, + "motion": 0, + "parent": null, + "position": { + "#": 389 + }, + "positionImpulse": { + "#": 390 + }, + "positionPrev": { + "#": 391 + }, + "region": { + "#": 392 + }, + "render": { + "#": 393 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 395 + }, + "vertices": { + "#": 396 + } + }, + [ + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + } + ], + { + "x": -0.9709721851597422, + "y": -0.23919242388946008 + }, + { + "x": -0.8854514284236448, + "y": -0.4647319312275919 + }, + { + "x": -0.7485562773053245, + "y": -0.6630712629173385 + }, + { + "x": -0.5679662429393902, + "y": -0.8230518494489357 + }, + { + "x": -0.3546033705984873, + "y": -0.9350168177953764 + }, + { + "x": -0.12064210006520336, + "y": -0.9926960681355887 + }, + { + "x": 0.12064210006520336, + "y": -0.9926960681355887 + }, + { + "x": 0.3546033705984873, + "y": -0.9350168177953764 + }, + { + "x": 0.5679662429393902, + "y": -0.8230518494489357 + }, + { + "x": 0.7485562773053245, + "y": -0.6630712629173385 + }, + { + "x": 0.8854514284236448, + "y": -0.4647319312275919 + }, + { + "x": 0.9709721851597422, + "y": -0.23919242388946008 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 384 + }, + "min": { + "#": 385 + } + }, + { + "x": 375.486, + "y": 126.73775476702573 + }, + { + "x": 316.91599999999994, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 346.20099999999996, + "y": 97.23675476702573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 346.20099999999996, + "y": 94.32948405199008 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,1,2", + "startCol": 6, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 394 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375.486, + "y": 100.79275476702573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.78499999999997, + "y": 107.69775476702573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370.47999999999996, + "y": 113.99475476702573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 365.76399999999995, + "y": 119.31875476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 359.91099999999994, + "y": 123.35775476702572 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 353.26099999999997, + "y": 125.87975476702573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 346.20099999999996, + "y": 126.73775476702573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 339.14099999999996, + "y": 125.87975476702573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 332.491, + "y": 123.35775476702572 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 326.638, + "y": 119.31875476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 321.92199999999997, + "y": 113.99475476702573 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 318.61699999999996, + "y": 107.69775476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 316.91599999999994, + "y": 100.79275476702573 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 316.91599999999994, + "y": 93.68075476702573 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 318.61699999999996, + "y": 86.77575476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 321.92199999999997, + "y": 80.47875476702573 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 326.638, + "y": 75.15475476702574 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 332.491, + "y": 71.11575476702573 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 339.14099999999996, + "y": 68.59375476702574 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 346.20099999999996, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 353.26099999999997, + "y": 68.59375476702574 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 359.91099999999994, + "y": 71.11575476702573 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 365.76399999999995, + "y": 75.15475476702574 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 370.47999999999996, + "y": 80.47875476702573 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 373.78499999999997, + "y": 86.77575476702573 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 375.486, + "y": 93.68075476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 996.1195440000001, + "axes": { + "#": 424 + }, + "bounds": { + "#": 434 + }, + "circleRadius": 17.989133230452676, + "collisionFilter": { + "#": 437 + }, + "constraintImpulse": { + "#": 438 + }, + "density": 0.001, + "force": { + "#": 439 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 631.7414771039847, + "inverseInertia": 0.0015829259851421786, + "inverseMass": 1.0038955725980614, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9961195440000001, + "motion": 0, + "parent": null, + "position": { + "#": 440 + }, + "positionImpulse": { + "#": 441 + }, + "positionPrev": { + "#": 442 + }, + "region": { + "#": 443 + }, + "render": { + "#": 444 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 446 + }, + "vertices": { + "#": 447 + } + }, + [ + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "x": -0.9396858944753611, + "y": -0.3420386231466271 + }, + { + "x": -0.7659728462206221, + "y": -0.6428729258980185 + }, + { + "x": -0.5000642326698002, + "y": -0.8659883158590329 + }, + { + "x": -0.17365750488134477, + "y": -0.9848061083271091 + }, + { + "x": 0.17365750488134477, + "y": -0.9848061083271091 + }, + { + "x": 0.5000642326698002, + "y": -0.8659883158590329 + }, + { + "x": 0.7659728462206221, + "y": -0.6428729258980185 + }, + { + "x": 0.9396858944753611, + "y": -0.3420386231466271 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 435 + }, + "min": { + "#": 436 + } + }, + { + "x": 420.918, + "y": 103.71375476702573 + }, + { + "x": 385.486, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.202, + "y": 85.72475476702573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.202, + "y": 82.81748405199008 + }, + { + "endCol": 8, + "endRow": 2, + "id": "8,8,1,2", + "startCol": 8, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 445 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420.918, + "y": 88.84875476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 418.781, + "y": 94.71975476702573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 414.765, + "y": 99.50475476702573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 409.355, + "y": 102.62875476702573 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 403.202, + "y": 103.71375476702573 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 397.049, + "y": 102.62875476702573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 391.639, + "y": 99.50475476702573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 387.623, + "y": 94.71975476702573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 385.486, + "y": 88.84875476702572 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 385.486, + "y": 82.60075476702573 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 387.623, + "y": 76.72975476702574 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 391.639, + "y": 71.94475476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 397.049, + "y": 68.82075476702575 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 403.202, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 409.355, + "y": 68.82075476702575 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 414.765, + "y": 71.94475476702573 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 418.781, + "y": 76.72975476702574 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 420.918, + "y": 82.60075476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1884.285362, + "axes": { + "#": 467 + }, + "bounds": { + "#": 481 + }, + "circleRadius": 24.610403806584365, + "collisionFilter": { + "#": 484 + }, + "constraintImpulse": { + "#": 485 + }, + "density": 0.001, + "force": { + "#": 486 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 2260.38157195383, + "inverseInertia": 0.0004424031820148044, + "inverseMass": 0.5307051788263055, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8842853620000002, + "motion": 0, + "parent": null, + "position": { + "#": 487 + }, + "positionImpulse": { + "#": 488 + }, + "positionPrev": { + "#": 489 + }, + "region": { + "#": 490 + }, + "render": { + "#": 491 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 493 + }, + "vertices": { + "#": 494 + } + }, + [ + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + } + ], + { + "x": -0.9709402105671929, + "y": -0.23932218347603118 + }, + { + "x": -0.8854551295056068, + "y": -0.4647248795063689 + }, + { + "x": -0.7485427632433443, + "y": -0.6630865189370228 + }, + { + "x": -0.5680086319138514, + "y": -0.8230225963309603 + }, + { + "x": -0.35464915280031695, + "y": -0.934999453699315 + }, + { + "x": -0.12050753396518203, + "y": -0.9927124126642269 + }, + { + "x": 0.12050753396518203, + "y": -0.9927124126642269 + }, + { + "x": 0.35464915280031695, + "y": -0.934999453699315 + }, + { + "x": 0.5680086319138514, + "y": -0.8230225963309603 + }, + { + "x": 0.7485427632433443, + "y": -0.6630865189370228 + }, + { + "x": 0.8854551295056068, + "y": -0.4647248795063689 + }, + { + "x": 0.9709402105671929, + "y": -0.23932218347603118 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 482 + }, + "min": { + "#": 483 + } + }, + { + "x": 479.78, + "y": 116.95575476702572 + }, + { + "x": 430.918, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.349, + "y": 92.34575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.349, + "y": 89.43848405199007 + }, + { + "endCol": 9, + "endRow": 2, + "id": "8,9,1,2", + "startCol": 8, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 492 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 479.78, + "y": 95.31175476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 478.36, + "y": 101.07275476702573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475.603, + "y": 106.32575476702573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 471.669, + "y": 110.76675476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 466.786, + "y": 114.13675476702572 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 461.239, + "y": 116.24075476702572 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 455.349, + "y": 116.95575476702572 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 449.459, + "y": 116.24075476702572 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 443.912, + "y": 114.13675476702572 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 439.029, + "y": 110.76675476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 435.09499999999997, + "y": 106.32575476702573 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 432.33799999999997, + "y": 101.07275476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 430.918, + "y": 95.31175476702572 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 430.918, + "y": 89.37975476702573 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 432.33799999999997, + "y": 83.61875476702572 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 435.09499999999997, + "y": 78.36575476702572 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 439.029, + "y": 73.92475476702573 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 443.912, + "y": 70.55475476702573 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 449.459, + "y": 68.45075476702574 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 455.349, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 461.239, + "y": 68.45075476702574 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 466.786, + "y": 70.55475476702573 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 471.669, + "y": 73.92475476702573 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 475.603, + "y": 78.36575476702572 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 478.36, + "y": 83.61875476702572 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 479.78, + "y": 89.37975476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1788.1176700000005, + "axes": { + "#": 522 + }, + "bounds": { + "#": 535 + }, + "circleRadius": 23.994020061728396, + "collisionFilter": { + "#": 538 + }, + "constraintImpulse": { + "#": 539 + }, + "density": 0.001, + "force": { + "#": 540 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 2035.5592109008512, + "inverseInertia": 0.0004912654933567091, + "inverseMass": 0.5592473117275328, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7881176700000005, + "motion": 0, + "parent": null, + "position": { + "#": 541 + }, + "positionImpulse": { + "#": 542 + }, + "positionPrev": { + "#": 543 + }, + "region": { + "#": 544 + }, + "render": { + "#": 545 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 547 + }, + "vertices": { + "#": 548 + } + }, + [ + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + } + ], + { + "x": -0.9659295228350919, + "y": -0.25880524901085716 + }, + { + "x": -0.8660340588347611, + "y": -0.4999850087134508 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.4999850087134508, + "y": -0.8660340588347611 + }, + { + "x": -0.25880524901085716, + "y": -0.9659295228350919 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25880524901085716, + "y": -0.9659295228350919 + }, + { + "x": 0.4999850087134508, + "y": -0.8660340588347611 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660340588347611, + "y": -0.4999850087134508 + }, + { + "x": 0.9659295228350919, + "y": -0.25880524901085716 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 536 + }, + "min": { + "#": 537 + } + }, + { + "x": 537.358, + "y": 115.31375476702573 + }, + { + "x": 489.78, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 513.569, + "y": 91.52475476702573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 513.569, + "y": 88.61748405199008 + }, + { + "endCol": 11, + "endRow": 2, + "id": "10,11,1,2", + "startCol": 10, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 546 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 537.358, + "y": 94.65675476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.737, + "y": 100.70675476702573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 532.605, + "y": 106.13175476702573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 528.1759999999999, + "y": 110.56075476702573 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 522.751, + "y": 113.69275476702573 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 516.701, + "y": 115.31375476702573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 510.43699999999995, + "y": 115.31375476702573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 504.38699999999994, + "y": 113.69275476702573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 498.962, + "y": 110.56075476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 494.53299999999996, + "y": 106.13175476702573 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 491.40099999999995, + "y": 100.70675476702573 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 489.78, + "y": 94.65675476702572 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 489.78, + "y": 88.39275476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 491.40099999999995, + "y": 82.34275476702572 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 494.53299999999996, + "y": 76.91775476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 498.962, + "y": 72.48875476702572 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 504.38699999999994, + "y": 69.35675476702573 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 510.43699999999995, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 516.701, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 522.751, + "y": 69.35675476702573 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 528.1759999999999, + "y": 72.48875476702572 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 532.605, + "y": 76.91775476702574 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 535.737, + "y": 82.34275476702572 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 537.358, + "y": 88.39275476702574 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1722.1149680000003, + "axes": { + "#": 574 + }, + "bounds": { + "#": 587 + }, + "circleRadius": 23.54738940329218, + "collisionFilter": { + "#": 590 + }, + "constraintImpulse": { + "#": 591 + }, + "density": 0.001, + "force": { + "#": 592 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1888.0601807772807, + "inverseInertia": 0.0005296441343243189, + "inverseMass": 0.5806813241750999, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7221149680000003, + "motion": 0, + "parent": null, + "position": { + "#": 593 + }, + "positionImpulse": { + "#": 594 + }, + "positionPrev": { + "#": 595 + }, + "region": { + "#": 596 + }, + "render": { + "#": 597 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 599 + }, + "vertices": { + "#": 600 + } + }, + [ + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + } + ], + { + "x": -0.9659182750337034, + "y": -0.25884722512693675 + }, + { + "x": -0.8660122204453936, + "y": -0.5000228335178696 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.5000228335178696, + "y": -0.8660122204453936 + }, + { + "x": -0.25884722512693675, + "y": -0.9659182750337034 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25884722512693675, + "y": -0.9659182750337034 + }, + { + "x": 0.5000228335178696, + "y": -0.8660122204453936 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660122204453936, + "y": -0.5000228335178696 + }, + { + "x": 0.9659182750337034, + "y": -0.25884722512693675 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 588 + }, + "min": { + "#": 589 + } + }, + { + "x": 594.05, + "y": 114.42775476702573 + }, + { + "x": 547.358, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 570.704, + "y": 91.08175476702573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 570.704, + "y": 88.17448405199008 + }, + { + "endCol": 12, + "endRow": 2, + "id": "11,12,1,2", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 598 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 594.05, + "y": 94.15575476702573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 592.459, + "y": 100.09275476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 589.385, + "y": 105.41675476702574 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 585.039, + "y": 109.76275476702573 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 579.7149999999999, + "y": 112.83675476702572 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 573.7779999999999, + "y": 114.42775476702573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 567.63, + "y": 114.42775476702573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 561.693, + "y": 112.83675476702572 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 556.3689999999999, + "y": 109.76275476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 552.0229999999999, + "y": 105.41675476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 548.949, + "y": 100.09275476702572 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 547.358, + "y": 94.15575476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 547.358, + "y": 88.00775476702573 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 548.949, + "y": 82.07075476702573 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 552.0229999999999, + "y": 76.74675476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 556.3689999999999, + "y": 72.40075476702573 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 561.693, + "y": 69.32675476702575 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 567.63, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 573.7779999999999, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 579.7149999999999, + "y": 69.32675476702575 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 585.039, + "y": 72.40075476702573 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 589.385, + "y": 76.74675476702573 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 592.459, + "y": 82.07075476702573 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 594.05, + "y": 88.00775476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1254.82541, + "axes": { + "#": 626 + }, + "bounds": { + "#": 638 + }, + "circleRadius": 20.122363683127574, + "collisionFilter": { + "#": 641 + }, + "constraintImpulse": { + "#": 642 + }, + "density": 0.001, + "force": { + "#": 643 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1002.4505113431685, + "inverseInertia": 0.0009975554789833116, + "inverseMass": 0.796923613461095, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.25482541, + "motion": 0, + "parent": null, + "position": { + "#": 644 + }, + "positionImpulse": { + "#": 645 + }, + "positionPrev": { + "#": 646 + }, + "region": { + "#": 647 + }, + "render": { + "#": 648 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 650 + }, + "vertices": { + "#": 651 + } + }, + [ + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": -0.9594683116666392, + "y": -0.28181653412738056 + }, + { + "x": -0.8412011657491608, + "y": -0.5407222935502594 + }, + { + "x": -0.6549371857283655, + "y": -0.7556833217361679 + }, + { + "x": -0.4153677317263388, + "y": -0.9096535865045091 + }, + { + "x": -0.1423012985761668, + "y": -0.9898233885009671 + }, + { + "x": 0.1423012985761668, + "y": -0.9898233885009671 + }, + { + "x": 0.4153677317263388, + "y": -0.9096535865045091 + }, + { + "x": 0.6549371857283655, + "y": -0.7556833217361679 + }, + { + "x": 0.8412011657491608, + "y": -0.5407222935502594 + }, + { + "x": 0.9594683116666392, + "y": -0.28181653412738056 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 639 + }, + "min": { + "#": 640 + } + }, + { + "x": 643.886, + "y": 107.97975476702572 + }, + { + "x": 604.05, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 623.968, + "y": 87.85775476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 623.968, + "y": 84.95048405199007 + }, + { + "endCol": 13, + "endRow": 2, + "id": "12,13,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 649 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 643.886, + "y": 90.72175476702571 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 642.2719999999999, + "y": 96.21675476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 639.175, + "y": 101.03475476702573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 634.847, + "y": 104.78575476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 629.637, + "y": 107.16475476702573 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 623.968, + "y": 107.97975476702572 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 618.299, + "y": 107.16475476702573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 613.0889999999999, + "y": 104.78575476702572 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 608.761, + "y": 101.03475476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 605.664, + "y": 96.21675476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 604.05, + "y": 90.72175476702571 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 604.05, + "y": 84.99375476702573 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 605.664, + "y": 79.49875476702573 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 608.761, + "y": 74.68075476702573 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 613.0889999999999, + "y": 70.92975476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 618.299, + "y": 68.55075476702574 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 623.968, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 629.637, + "y": 68.55075476702574 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 634.847, + "y": 70.92975476702573 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 639.175, + "y": 74.68075476702573 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 642.2719999999999, + "y": 79.49875476702573 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 643.886, + "y": 84.99375476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2214.8878419999996, + "axes": { + "#": 675 + }, + "bounds": { + "#": 689 + }, + "circleRadius": 26.68190586419753, + "collisionFilter": { + "#": 692 + }, + "constraintImpulse": { + "#": 693 + }, + "density": 0.001, + "force": { + "#": 694 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 3123.1431295098378, + "inverseInertia": 0.00032019025658838285, + "inverseMass": 0.4514901301264176, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.2148878419999996, + "motion": 0, + "parent": null, + "position": { + "#": 695 + }, + "positionImpulse": { + "#": 696 + }, + "positionPrev": { + "#": 697 + }, + "region": { + "#": 698 + }, + "render": { + "#": 699 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 701 + }, + "vertices": { + "#": 702 + } + }, + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + } + ], + { + "x": -0.9709599017732182, + "y": -0.23924228127265143 + }, + { + "x": -0.8854538871996172, + "y": -0.46472724650389047 + }, + { + "x": -0.7484889714538617, + "y": -0.6631472382600565 + }, + { + "x": -0.5681180190217404, + "y": -0.8229470921406876 + }, + { + "x": -0.35457925548170977, + "y": -0.9350259630523831 + }, + { + "x": -0.12049387698901172, + "y": -0.9927140704191499 + }, + { + "x": 0.12049387698901172, + "y": -0.9927140704191499 + }, + { + "x": 0.35457925548170977, + "y": -0.9350259630523831 + }, + { + "x": 0.5681180190217404, + "y": -0.8229470921406876 + }, + { + "x": 0.7484889714538617, + "y": -0.6631472382600565 + }, + { + "x": 0.8854538871996172, + "y": -0.46472724650389047 + }, + { + "x": 0.9709599017732182, + "y": -0.23924228127265143 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 690 + }, + "min": { + "#": 691 + } + }, + { + "x": 152.974, + "y": 190.10175476702597 + }, + { + "x": 100, + "y": 136.73775476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.487, + "y": 163.41975476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.487, + "y": 160.5124840519903 + }, + { + "endCol": 3, + "endRow": 3, + "id": "2,3,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 700 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 152.974, + "y": 166.63575476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.435, + "y": 172.88175476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 148.446, + "y": 178.576754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 144.18, + "y": 183.391754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 138.887, + "y": 187.04575476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 132.872, + "y": 189.326754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 126.487, + "y": 190.10175476702597 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 120.10199999999999, + "y": 189.326754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 114.08699999999999, + "y": 187.04575476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.794, + "y": 183.391754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.52799999999999, + "y": 178.576754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.53899999999999, + "y": 172.88175476702597 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 166.63575476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 160.203754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.53899999999999, + "y": 153.95775476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.52799999999999, + "y": 148.26275476702597 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 108.794, + "y": 143.44775476702594 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 114.08699999999999, + "y": 139.79375476702594 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 120.10199999999999, + "y": 137.51275476702594 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 126.487, + "y": 136.73775476702593 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 132.872, + "y": 137.51275476702594 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 138.887, + "y": 139.79375476702594 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 144.18, + "y": 143.44775476702594 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 148.446, + "y": 148.26275476702597 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 151.435, + "y": 153.95775476702596 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 152.974, + "y": 160.203754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1111.681768, + "axes": { + "#": 730 + }, + "bounds": { + "#": 741 + }, + "circleRadius": 18.9667566872428, + "collisionFilter": { + "#": 744 + }, + "constraintImpulse": { + "#": 745 + }, + "density": 0.001, + "force": { + "#": 746 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 786.8009408760354, + "inverseInertia": 0.001270969502002102, + "inverseMass": 0.8995380051964655, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.111681768, + "motion": 0, + "parent": null, + "position": { + "#": 747 + }, + "positionImpulse": { + "#": 748 + }, + "positionPrev": { + "#": 749 + }, + "region": { + "#": 750 + }, + "render": { + "#": 751 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 753 + }, + "vertices": { + "#": 754 + } + }, + [ + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + } + ], + { + "x": -0.9510984438586632, + "y": -0.30888792480385036 + }, + { + "x": -0.8090274656982102, + "y": -0.5877708394824734 + }, + { + "x": -0.5877708394824734, + "y": -0.8090274656982102 + }, + { + "x": -0.30888792480385036, + "y": -0.9510984438586632 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30888792480385036, + "y": -0.9510984438586632 + }, + { + "x": 0.5877708394824734, + "y": -0.8090274656982102 + }, + { + "x": 0.8090274656982102, + "y": -0.5877708394824734 + }, + { + "x": 0.9510984438586632, + "y": -0.30888792480385036 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 742 + }, + "min": { + "#": 743 + } + }, + { + "x": 200.44, + "y": 174.203754767026 + }, + { + "x": 162.974, + "y": 136.73775476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.707, + "y": 155.470754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.707, + "y": 152.56348405199032 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 752 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200.44, + "y": 158.43775476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.607, + "y": 164.08175476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.119, + "y": 168.882754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 190.31799999999998, + "y": 172.370754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 184.674, + "y": 174.203754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 178.73999999999998, + "y": 174.203754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 173.096, + "y": 172.370754767026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 168.295, + "y": 168.882754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 164.807, + "y": 164.08175476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 162.974, + "y": 158.43775476702598 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 162.974, + "y": 152.503754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 164.807, + "y": 146.859754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 168.295, + "y": 142.05875476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 173.096, + "y": 138.57075476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 178.73999999999998, + "y": 136.73775476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 184.674, + "y": 136.73775476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 190.31799999999998, + "y": 138.57075476702596 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 195.119, + "y": 142.05875476702596 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 198.607, + "y": 146.859754767026 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 200.44, + "y": 152.503754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2295.319759999999, + "axes": { + "#": 776 + }, + "bounds": { + "#": 790 + }, + "circleRadius": 27.16210133744856, + "collisionFilter": { + "#": 793 + }, + "constraintImpulse": { + "#": 794 + }, + "density": 0.001, + "force": { + "#": 795 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 3354.090682779493, + "inverseInertia": 0.00029814339997847423, + "inverseMass": 0.4356691461585293, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.295319759999999, + "motion": 0, + "parent": null, + "position": { + "#": 796 + }, + "positionImpulse": { + "#": 797 + }, + "positionPrev": { + "#": 798 + }, + "region": { + "#": 799 + }, + "render": { + "#": 800 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 802 + }, + "vertices": { + "#": 803 + } + }, + [ + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + } + ], + { + "x": -0.9709455876458091, + "y": -0.23930036738612506 + }, + { + "x": -0.8854576058599221, + "y": -0.4647201611989897 + }, + { + "x": -0.7485037074240805, + "y": -0.6631306055162939 + }, + { + "x": -0.5680897644063303, + "y": -0.8229665968778805 + }, + { + "x": -0.3545851817432643, + "y": -0.9350237156821726 + }, + { + "x": -0.12050012358834578, + "y": -0.9927133121980349 + }, + { + "x": 0.12050012358834578, + "y": -0.9927133121980349 + }, + { + "x": 0.3545851817432643, + "y": -0.9350237156821726 + }, + { + "x": 0.5680897644063303, + "y": -0.8229665968778805 + }, + { + "x": 0.7485037074240805, + "y": -0.6631306055162939 + }, + { + "x": 0.8854576058599221, + "y": -0.4647201611989897 + }, + { + "x": 0.9709455876458091, + "y": -0.23930036738612506 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 791 + }, + "min": { + "#": 792 + } + }, + { + "x": 264.368, + "y": 191.061754767026 + }, + { + "x": 210.44, + "y": 136.73775476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.404, + "y": 163.899754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.404, + "y": 160.99248405199032 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 801 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 264.368, + "y": 167.173754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 262.801, + "y": 173.531754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 259.758, + "y": 179.329754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 255.416, + "y": 184.23075476702599 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250.027, + "y": 187.95075476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 243.904, + "y": 190.272754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 237.404, + "y": 191.061754767026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 230.904, + "y": 190.272754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 224.781, + "y": 187.95075476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.392, + "y": 184.23075476702599 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.05, + "y": 179.329754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 212.007, + "y": 173.531754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 210.44, + "y": 167.173754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 210.44, + "y": 160.625754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 212.007, + "y": 154.267754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 215.05, + "y": 148.469754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 219.392, + "y": 143.56875476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 224.781, + "y": 139.84875476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 230.904, + "y": 137.52675476702595 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 237.404, + "y": 136.73775476702596 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 243.904, + "y": 137.52675476702595 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 250.027, + "y": 139.84875476702598 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 255.416, + "y": 143.56875476702598 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 259.758, + "y": 148.469754767026 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 262.801, + "y": 154.267754767026 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 264.368, + "y": 160.625754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2363.7519140000004, + "axes": { + "#": 831 + }, + "bounds": { + "#": 845 + }, + "circleRadius": 27.56423611111111, + "collisionFilter": { + "#": 848 + }, + "constraintImpulse": { + "#": 849 + }, + "density": 0.001, + "force": { + "#": 850 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 3557.0682353306725, + "inverseInertia": 0.0002811303955508849, + "inverseMass": 0.4230562412566279, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.3637519140000003, + "motion": 0, + "parent": null, + "position": { + "#": 851 + }, + "positionImpulse": { + "#": 852 + }, + "positionPrev": { + "#": 853 + }, + "region": { + "#": 854 + }, + "render": { + "#": 855 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 857 + }, + "vertices": { + "#": 858 + } + }, + [ + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + } + ], + { + "x": -0.9709428209429523, + "y": -0.23931159282270878 + }, + { + "x": -0.8854660217302829, + "y": -0.46470412561235797 + }, + { + "x": -0.7484793383049184, + "y": -0.6631581109589413 + }, + { + "x": -0.5681373331772201, + "y": -0.8229337583610702 + }, + { + "x": -0.35456803389279123, + "y": -0.9350302184108279 + }, + { + "x": -0.12053359231150376, + "y": -0.9927092490374432 + }, + { + "x": 0.12053359231150376, + "y": -0.9927092490374432 + }, + { + "x": 0.35456803389279123, + "y": -0.9350302184108279 + }, + { + "x": 0.5681373331772201, + "y": -0.8229337583610702 + }, + { + "x": 0.7484793383049184, + "y": -0.6631581109589413 + }, + { + "x": 0.8854660217302829, + "y": -0.46470412561235797 + }, + { + "x": 0.9709428209429523, + "y": -0.23931159282270878 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 846 + }, + "min": { + "#": 847 + } + }, + { + "x": 329.094, + "y": 191.86575476702598 + }, + { + "x": 274.368, + "y": 136.73775476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.731, + "y": 164.30175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.731, + "y": 161.3944840519903 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 856 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 329.094, + "y": 167.624754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 327.504, + "y": 174.07575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 324.416, + "y": 179.95975476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 320.009, + "y": 184.933754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 314.541, + "y": 188.708754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 308.328, + "y": 191.064754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 301.731, + "y": 191.86575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 295.134, + "y": 191.064754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.921, + "y": 188.708754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 283.453, + "y": 184.933754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 279.046, + "y": 179.95975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 275.95799999999997, + "y": 174.07575476702598 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 274.368, + "y": 167.624754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 274.368, + "y": 160.97875476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 275.95799999999997, + "y": 154.52775476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.046, + "y": 148.643754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.453, + "y": 143.66975476702595 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 288.921, + "y": 139.89475476702597 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 295.134, + "y": 137.53875476702595 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 301.731, + "y": 136.73775476702596 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 308.328, + "y": 137.53875476702595 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 314.541, + "y": 139.89475476702597 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 320.009, + "y": 143.66975476702595 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 324.416, + "y": 148.643754767026 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 327.504, + "y": 154.52775476702598 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 329.094, + "y": 160.97875476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1829.106108, + "axes": { + "#": 886 + }, + "bounds": { + "#": 900 + }, + "circleRadius": 24.247235082304528, + "collisionFilter": { + "#": 903 + }, + "constraintImpulse": { + "#": 904 + }, + "density": 0.001, + "force": { + "#": 905 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 2129.934309931321, + "inverseInertia": 0.0004694980475863806, + "inverseMass": 0.546715138955733, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.829106108, + "motion": 0, + "parent": null, + "position": { + "#": 906 + }, + "positionImpulse": { + "#": 907 + }, + "positionPrev": { + "#": 908 + }, + "region": { + "#": 909 + }, + "render": { + "#": 910 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 912 + }, + "vertices": { + "#": 913 + } + }, + [ + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + } + ], + { + "x": -0.9709720988374455, + "y": -0.2391927743039204 + }, + { + "x": -0.8854260626172822, + "y": -0.46478025736691625 + }, + { + "x": -0.7485032569212987, + "y": -0.6631311140175887 + }, + { + "x": -0.568088667994131, + "y": -0.8229673537247112 + }, + { + "x": -0.3546645491504353, + "y": -0.9349936136551515 + }, + { + "x": -0.12043354466296623, + "y": -0.9927213915897619 + }, + { + "x": 0.12043354466296623, + "y": -0.9927213915897619 + }, + { + "x": 0.3546645491504353, + "y": -0.9349936136551515 + }, + { + "x": 0.568088667994131, + "y": -0.8229673537247112 + }, + { + "x": 0.7485032569212987, + "y": -0.6631311140175887 + }, + { + "x": 0.8854260626172822, + "y": -0.46478025736691625 + }, + { + "x": 0.9709720988374455, + "y": -0.2391927743039204 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 901 + }, + "min": { + "#": 902 + } + }, + { + "x": 387.234, + "y": 185.23175476702602 + }, + { + "x": 339.094, + "y": 136.73775476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 363.164, + "y": 160.984754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 363.164, + "y": 158.07748405199033 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 911 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 387.234, + "y": 163.907754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 385.836, + "y": 169.58275476702602 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.11899999999997, + "y": 174.758754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 379.243, + "y": 179.133754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.43199999999996, + "y": 182.454754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 368.967, + "y": 184.527754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 363.164, + "y": 185.23175476702602 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 357.361, + "y": 184.527754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 351.896, + "y": 182.454754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 347.085, + "y": 179.133754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 343.209, + "y": 174.758754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 340.49199999999996, + "y": 169.58275476702602 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 339.094, + "y": 163.907754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 339.094, + "y": 158.061754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 340.49199999999996, + "y": 152.386754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 343.209, + "y": 147.210754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 347.085, + "y": 142.83575476702597 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 351.896, + "y": 139.51475476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 357.361, + "y": 137.44175476702597 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 363.164, + "y": 136.73775476702596 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 368.967, + "y": 137.44175476702597 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 374.43199999999996, + "y": 139.51475476702598 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 379.243, + "y": 142.83575476702597 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 383.11899999999997, + "y": 147.210754767026 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 385.836, + "y": 152.386754767026 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 387.234, + "y": 158.061754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1331.712504, + "axes": { + "#": 941 + }, + "bounds": { + "#": 953 + }, + "circleRadius": 20.729616769547324, + "collisionFilter": { + "#": 956 + }, + "constraintImpulse": { + "#": 957 + }, + "density": 0.001, + "force": { + "#": 958 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1129.0606916324366, + "inverseInertia": 0.0008856919804321272, + "inverseMass": 0.7509128261515519, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3317125040000002, + "motion": 0, + "parent": null, + "position": { + "#": 959 + }, + "positionImpulse": { + "#": 960 + }, + "positionPrev": { + "#": 961 + }, + "region": { + "#": 962 + }, + "render": { + "#": 963 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 965 + }, + "vertices": { + "#": 966 + } + }, + [ + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + } + ], + { + "x": -0.9594572104893309, + "y": -0.28185432627517293 + }, + { + "x": -0.8412665659715145, + "y": -0.5406205369559092 + }, + { + "x": -0.6548853702477502, + "y": -0.755728226173581 + }, + { + "x": -0.41541125830941705, + "y": -0.9096337100557491 + }, + { + "x": -0.14237042741969902, + "y": -0.9898134477750504 + }, + { + "x": 0.14237042741969902, + "y": -0.9898134477750504 + }, + { + "x": 0.41541125830941705, + "y": -0.9096337100557491 + }, + { + "x": 0.6548853702477502, + "y": -0.755728226173581 + }, + { + "x": 0.8412665659715145, + "y": -0.5406205369559092 + }, + { + "x": 0.9594572104893309, + "y": -0.28185432627517293 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 954 + }, + "min": { + "#": 955 + } + }, + { + "x": 438.272, + "y": 178.19775476702597 + }, + { + "x": 397.234, + "y": 136.73775476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.753, + "y": 157.46775476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.753, + "y": 154.5604840519903 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 964 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 438.272, + "y": 160.417754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 436.609, + "y": 166.078754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 433.419, + "y": 171.04275476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 428.96, + "y": 174.90675476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 423.59299999999996, + "y": 177.35775476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 417.753, + "y": 178.19775476702597 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 411.913, + "y": 177.35775476702597 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 406.546, + "y": 174.90675476702597 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 402.087, + "y": 171.04275476702597 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 398.897, + "y": 166.078754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.234, + "y": 160.417754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.234, + "y": 154.51775476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 398.897, + "y": 148.85675476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 402.087, + "y": 143.89275476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 406.546, + "y": 140.02875476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 411.913, + "y": 137.57775476702594 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 417.753, + "y": 136.73775476702593 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 423.59299999999996, + "y": 137.57775476702594 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 428.96, + "y": 140.02875476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 433.419, + "y": 143.89275476702596 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 436.609, + "y": 148.85675476702596 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 438.272, + "y": 154.51775476702596 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 852.4351440000002, + "axes": { + "#": 990 + }, + "bounds": { + "#": 1000 + }, + "circleRadius": 16.641010802469136, + "collisionFilter": { + "#": 1003 + }, + "constraintImpulse": { + "#": 1004 + }, + "density": 0.001, + "force": { + "#": 1005 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 462.6357210539542, + "inverseInertia": 0.0021615278598069525, + "inverseMass": 1.173109775023541, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8524351440000002, + "motion": 0, + "parent": null, + "position": { + "#": 1006 + }, + "positionImpulse": { + "#": 1007 + }, + "positionPrev": { + "#": 1008 + }, + "region": { + "#": 1009 + }, + "render": { + "#": 1010 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1012 + }, + "vertices": { + "#": 1013 + } + }, + [ + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + } + ], + { + "x": -0.9397327846091404, + "y": -0.3419097739620075 + }, + { + "x": -0.7660183763241144, + "y": -0.6428186736038145 + }, + { + "x": -0.4999171846810808, + "y": -0.86607321195182 + }, + { + "x": -0.1737063737965816, + "y": -0.9847974896913791 + }, + { + "x": 0.1737063737965816, + "y": -0.9847974896913791 + }, + { + "x": 0.4999171846810808, + "y": -0.86607321195182 + }, + { + "x": 0.7660183763241144, + "y": -0.6428186736038145 + }, + { + "x": 0.9397327846091404, + "y": -0.3419097739620075 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1001 + }, + "min": { + "#": 1002 + } + }, + { + "x": 481.04799999999994, + "y": 170.01975476702597 + }, + { + "x": 448.272, + "y": 136.73775476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 464.65999999999997, + "y": 153.37875476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 464.65999999999997, + "y": 150.4714840519903 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1011 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 481.04799999999994, + "y": 156.268754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 479.07199999999995, + "y": 161.69975476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475.35699999999997, + "y": 166.12675476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 470.352, + "y": 169.01575476702598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 464.65999999999997, + "y": 170.01975476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 458.96799999999996, + "y": 169.01575476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 453.96299999999997, + "y": 166.12675476702597 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.248, + "y": 161.69975476702598 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 448.272, + "y": 156.268754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 448.272, + "y": 150.48875476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 450.248, + "y": 145.05775476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 453.96299999999997, + "y": 140.63075476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 458.96799999999996, + "y": 137.74175476702595 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 464.65999999999997, + "y": 136.73775476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 470.352, + "y": 137.74175476702595 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 475.35699999999997, + "y": 140.63075476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 479.07199999999995, + "y": 145.05775476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 481.04799999999994, + "y": 150.48875476702597 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2687.108398, + "axes": { + "#": 1033 + }, + "bounds": { + "#": 1047 + }, + "circleRadius": 29.388824588477366, + "collisionFilter": { + "#": 1050 + }, + "constraintImpulse": { + "#": 1051 + }, + "density": 0.001, + "force": { + "#": 1052 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 4596.833586630778, + "inverseInertia": 0.00021754104888816394, + "inverseMass": 0.3721472497143377, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.687108398, + "motion": 0, + "parent": null, + "position": { + "#": 1053 + }, + "positionImpulse": { + "#": 1054 + }, + "positionPrev": { + "#": 1055 + }, + "region": { + "#": 1056 + }, + "render": { + "#": 1057 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1059 + }, + "vertices": { + "#": 1060 + } + }, + [ + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + } + ], + { + "x": -0.9709261131040956, + "y": -0.23937937023179934 + }, + { + "x": -0.8855053411184941, + "y": -0.4646291971568505 + }, + { + "x": -0.7484440565964828, + "y": -0.6631979298410096 + }, + { + "x": -0.5681452001163276, + "y": -0.8229283271250164 + }, + { + "x": -0.3545393548617785, + "y": -0.9350410931366568 + }, + { + "x": -0.12054213183122658, + "y": -0.9927082121417065 + }, + { + "x": 0.12054213183122658, + "y": -0.9927082121417065 + }, + { + "x": 0.3545393548617785, + "y": -0.9350410931366568 + }, + { + "x": 0.5681452001163276, + "y": -0.8229283271250164 + }, + { + "x": 0.7484440565964828, + "y": -0.6631979298410096 + }, + { + "x": 0.8855053411184941, + "y": -0.4646291971568505 + }, + { + "x": 0.9709261131040956, + "y": -0.23937937023179934 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1048 + }, + "min": { + "#": 1049 + } + }, + { + "x": 549.3979999999999, + "y": 195.515754767026 + }, + { + "x": 491.04799999999994, + "y": 136.73775476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.223, + "y": 166.126754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.223, + "y": 163.21948405199032 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,2,4", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1058 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.3979999999999, + "y": 169.668754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.702, + "y": 176.547754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 544.4099999999999, + "y": 182.821754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 539.711, + "y": 188.124754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 533.881, + "y": 192.149754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 527.256, + "y": 194.661754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 520.223, + "y": 195.515754767026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 513.1899999999999, + "y": 194.661754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 506.56499999999994, + "y": 192.149754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 500.73499999999996, + "y": 188.124754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 496.03599999999994, + "y": 182.821754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 492.74399999999997, + "y": 176.547754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 491.04799999999994, + "y": 169.668754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 491.04799999999994, + "y": 162.584754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 492.74399999999997, + "y": 155.705754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 496.03599999999994, + "y": 149.431754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 500.73499999999996, + "y": 144.12875476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.56499999999994, + "y": 140.10375476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 513.1899999999999, + "y": 137.59175476702598 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 520.223, + "y": 136.73775476702596 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 527.256, + "y": 137.59175476702598 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 533.881, + "y": 140.10375476702598 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 539.711, + "y": 144.12875476702598 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 544.4099999999999, + "y": 149.431754767026 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 547.702, + "y": 155.705754767026 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 549.3979999999999, + "y": 162.584754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1343.973232, + "axes": { + "#": 1088 + }, + "bounds": { + "#": 1100 + }, + "circleRadius": 20.824909979423868, + "collisionFilter": { + "#": 1103 + }, + "constraintImpulse": { + "#": 1104 + }, + "density": 0.001, + "force": { + "#": 1105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1149.9463267575188, + "inverseInertia": 0.0008696058039679821, + "inverseMass": 0.7440624382911816, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3439732320000002, + "motion": 0, + "parent": null, + "position": { + "#": 1106 + }, + "positionImpulse": { + "#": 1107 + }, + "positionPrev": { + "#": 1108 + }, + "region": { + "#": 1109 + }, + "render": { + "#": 1110 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1112 + }, + "vertices": { + "#": 1113 + } + }, + [ + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + } + ], + { + "x": -0.9594863085383493, + "y": -0.28175525501301946 + }, + { + "x": -0.841200401216122, + "y": -0.5407234829317434 + }, + { + "x": -0.6549498076310009, + "y": -0.7556723823748722 + }, + { + "x": -0.41535304835231424, + "y": -0.9096602911111599 + }, + { + "x": -0.1423896733188219, + "y": -0.9898106793383061 + }, + { + "x": 0.1423896733188219, + "y": -0.9898106793383061 + }, + { + "x": 0.41535304835231424, + "y": -0.9096602911111599 + }, + { + "x": 0.6549498076310009, + "y": -0.7556723823748722 + }, + { + "x": 0.841200401216122, + "y": -0.5407234829317434 + }, + { + "x": 0.9594863085383493, + "y": -0.28175525501301946 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1101 + }, + "min": { + "#": 1102 + } + }, + { + "x": 600.624, + "y": 178.38775476702597 + }, + { + "x": 559.3979999999999, + "y": 136.73775476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580.011, + "y": 157.56275476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580.011, + "y": 154.6554840519903 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1111 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600.624, + "y": 160.52675476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 598.954, + "y": 166.213754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 595.749, + "y": 171.19975476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 591.27, + "y": 175.08175476702598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 585.8779999999999, + "y": 177.54375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 580.011, + "y": 178.38775476702597 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 574.144, + "y": 177.54375476702597 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 568.752, + "y": 175.08175476702598 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 564.2729999999999, + "y": 171.19975476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 561.068, + "y": 166.213754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 559.3979999999999, + "y": 160.52675476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 559.3979999999999, + "y": 154.59875476702598 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 561.068, + "y": 148.91175476702597 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 564.2729999999999, + "y": 143.92575476702595 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 568.752, + "y": 140.04375476702594 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 574.144, + "y": 137.58175476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 580.011, + "y": 136.73775476702593 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 585.8779999999999, + "y": 137.58175476702596 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 591.27, + "y": 140.04375476702594 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 595.749, + "y": 143.92575476702595 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 598.954, + "y": 148.91175476702597 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 600.624, + "y": 154.59875476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2600.5853180000004, + "axes": { + "#": 1137 + }, + "bounds": { + "#": 1151 + }, + "circleRadius": 28.912229938271604, + "collisionFilter": { + "#": 1154 + }, + "constraintImpulse": { + "#": 1155 + }, + "density": 0.001, + "force": { + "#": 1156 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 4305.569679703002, + "inverseInertia": 0.00023225730260832288, + "inverseMass": 0.3845288186003671, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6005853180000003, + "motion": 0, + "parent": null, + "position": { + "#": 1157 + }, + "positionImpulse": { + "#": 1158 + }, + "positionPrev": { + "#": 1159 + }, + "region": { + "#": 1160 + }, + "render": { + "#": 1161 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1163 + }, + "vertices": { + "#": 1164 + } + }, + [ + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + } + ], + { + "x": -0.970939006803869, + "y": -0.23932706714184315 + }, + { + "x": -0.8854746498616403, + "y": -0.4646876848512401 + }, + { + "x": -0.7485006850783444, + "y": -0.6631340169507588 + }, + { + "x": -0.5681352009209623, + "y": -0.8229352304249088 + }, + { + "x": -0.35453312532100223, + "y": -0.9350434551667225 + }, + { + "x": -0.12051989679740689, + "y": -0.9927109118348314 + }, + { + "x": 0.12051989679740689, + "y": -0.9927109118348314 + }, + { + "x": 0.35453312532100223, + "y": -0.9350434551667225 + }, + { + "x": 0.5681352009209623, + "y": -0.8229352304249088 + }, + { + "x": 0.7485006850783444, + "y": -0.6631340169507588 + }, + { + "x": 0.8854746498616403, + "y": -0.4646876848512401 + }, + { + "x": 0.970939006803869, + "y": -0.23932706714184315 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1152 + }, + "min": { + "#": 1153 + } + }, + { + "x": 668.0260000000001, + "y": 194.561754767026 + }, + { + "x": 610.624, + "y": 136.73775476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 639.325, + "y": 165.649754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 639.325, + "y": 162.74248405199032 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,2,4", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1162 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 668.0260000000001, + "y": 169.13475476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 666.3580000000001, + "y": 175.901754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 663.119, + "y": 182.073754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 658.4970000000001, + "y": 187.290754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 652.7610000000001, + "y": 191.250754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 646.244, + "y": 193.721754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 639.325, + "y": 194.561754767026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 632.4060000000001, + "y": 193.721754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 625.889, + "y": 191.250754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 620.153, + "y": 187.290754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 615.5310000000001, + "y": 182.073754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 612.292, + "y": 175.901754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 610.624, + "y": 169.13475476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 610.624, + "y": 162.164754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 612.292, + "y": 155.39775476702602 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 615.5310000000001, + "y": 149.225754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 620.153, + "y": 144.00875476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 625.889, + "y": 140.04875476702597 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 632.4060000000001, + "y": 137.57775476702597 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 639.325, + "y": 136.73775476702596 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 646.244, + "y": 137.57775476702597 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 652.7610000000001, + "y": 140.04875476702597 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 658.4970000000001, + "y": 144.00875476702598 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 663.119, + "y": 149.225754767026 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 666.3580000000001, + "y": 155.39775476702602 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 668.0260000000001, + "y": 162.164754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1850.952944, + "axes": { + "#": 1192 + }, + "bounds": { + "#": 1206 + }, + "circleRadius": 24.39152520576132, + "collisionFilter": { + "#": 1209 + }, + "constraintImpulse": { + "#": 1210 + }, + "density": 0.001, + "force": { + "#": 1211 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2181.118018104605, + "inverseInertia": 0.0004584804635509827, + "inverseMass": 0.5402622488278666, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8509529439999999, + "motion": 0, + "parent": null, + "position": { + "#": 1212 + }, + "positionImpulse": { + "#": 1213 + }, + "positionPrev": { + "#": 1214 + }, + "region": { + "#": 1215 + }, + "render": { + "#": 1216 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1218 + }, + "vertices": { + "#": 1219 + } + }, + [ + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + } + ], + { + "x": -0.9709079069702696, + "y": -0.2394532024897771 + }, + { + "x": -0.8855151102728375, + "y": -0.4646105783110027 + }, + { + "x": -0.7485061705548478, + "y": -0.663127825265474 + }, + { + "x": -0.568086537608252, + "y": -0.8229688243112665 + }, + { + "x": -0.3545875857376188, + "y": -0.935022804021788 + }, + { + "x": -0.12058023665523107, + "y": -0.9927035844239549 + }, + { + "x": 0.12058023665523107, + "y": -0.9927035844239549 + }, + { + "x": 0.3545875857376188, + "y": -0.935022804021788 + }, + { + "x": 0.568086537608252, + "y": -0.8229688243112665 + }, + { + "x": 0.7485061705548478, + "y": -0.663127825265474 + }, + { + "x": 0.8855151102728375, + "y": -0.4646105783110027 + }, + { + "x": 0.9709079069702696, + "y": -0.2394532024897771 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1207 + }, + "min": { + "#": 1208 + } + }, + { + "x": 148.428, + "y": 254.299754767026 + }, + { + "x": 100, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 124.214, + "y": 229.907754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 124.214, + "y": 227.00048405199033 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1217 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 148.428, + "y": 232.847754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 147.01999999999998, + "y": 238.556754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 144.288, + "y": 243.763754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.389, + "y": 248.164754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 135.549, + "y": 251.50575476702602 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 130.051, + "y": 253.590754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 124.214, + "y": 254.299754767026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.377, + "y": 253.590754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 112.87899999999999, + "y": 251.50575476702602 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.039, + "y": 248.164754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.14, + "y": 243.763754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.408, + "y": 238.556754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 232.847754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 226.967754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.408, + "y": 221.258754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.14, + "y": 216.051754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 108.039, + "y": 211.650754767026 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 112.87899999999999, + "y": 208.309754767026 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.377, + "y": 206.224754767026 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 124.214, + "y": 205.515754767026 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 130.051, + "y": 206.224754767026 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 135.549, + "y": 208.309754767026 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 140.389, + "y": 211.650754767026 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 144.288, + "y": 216.051754767026 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 147.01999999999998, + "y": 221.258754767026 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 148.428, + "y": 226.967754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 937.097596, + "axes": { + "#": 1247 + }, + "bounds": { + "#": 1257 + }, + "circleRadius": 17.447980967078188, + "collisionFilter": { + "#": 1260 + }, + "constraintImpulse": { + "#": 1261 + }, + "density": 0.001, + "force": { + "#": 1262 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 559.0956546000535, + "inverseInertia": 0.0017886027046934308, + "inverseMass": 1.0671247096017522, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.937097596, + "motion": 0, + "parent": null, + "position": { + "#": 1263 + }, + "positionImpulse": { + "#": 1264 + }, + "positionPrev": { + "#": 1265 + }, + "region": { + "#": 1266 + }, + "render": { + "#": 1267 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1269 + }, + "vertices": { + "#": 1270 + } + }, + [ + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + } + ], + { + "x": -0.9396632611814948, + "y": -0.34210079740590776 + }, + { + "x": -0.7660526086703177, + "y": -0.6427778782358655 + }, + { + "x": -0.5000796067932008, + "y": -0.865979437902285 + }, + { + "x": -0.1735970572002205, + "y": -0.9848167655617075 + }, + { + "x": 0.1735970572002205, + "y": -0.9848167655617075 + }, + { + "x": 0.5000796067932008, + "y": -0.865979437902285 + }, + { + "x": 0.7660526086703177, + "y": -0.6427778782358655 + }, + { + "x": 0.9396632611814948, + "y": -0.34210079740590776 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1258 + }, + "min": { + "#": 1259 + } + }, + { + "x": 192.79399999999998, + "y": 240.41175476702603 + }, + { + "x": 158.428, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.611, + "y": 222.96375476702602 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.611, + "y": 220.05648405199034 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1268 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 192.79399999999998, + "y": 225.99375476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.721, + "y": 231.687754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.826, + "y": 236.329754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 181.57899999999998, + "y": 239.35975476702603 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 175.611, + "y": 240.41175476702603 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 169.643, + "y": 239.35975476702603 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 164.396, + "y": 236.329754767026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 160.50099999999998, + "y": 231.687754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 158.428, + "y": 225.99375476702602 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 158.428, + "y": 219.93375476702602 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 160.50099999999998, + "y": 214.23975476702603 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 164.396, + "y": 209.59775476702603 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 169.643, + "y": 206.567754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 175.611, + "y": 205.515754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 181.57899999999998, + "y": 206.567754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 186.826, + "y": 209.59775476702603 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 190.721, + "y": 214.23975476702603 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 192.79399999999998, + "y": 219.93375476702602 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1848.9085379999997, + "axes": { + "#": 1290 + }, + "bounds": { + "#": 1304 + }, + "circleRadius": 24.37789351851852, + "collisionFilter": { + "#": 1307 + }, + "constraintImpulse": { + "#": 1308 + }, + "density": 0.001, + "force": { + "#": 1309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 2176.3025218581856, + "inverseInertia": 0.00045949494151492, + "inverseMass": 0.5408596366165951, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8489085379999997, + "motion": 0, + "parent": null, + "position": { + "#": 1310 + }, + "positionImpulse": { + "#": 1311 + }, + "positionPrev": { + "#": 1312 + }, + "region": { + "#": 1313 + }, + "render": { + "#": 1314 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1316 + }, + "vertices": { + "#": 1317 + } + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + } + ], + { + "x": -0.9709674753373843, + "y": -0.23921154202284237 + }, + { + "x": -0.8854381720103849, + "y": -0.4647571877302253 + }, + { + "x": -0.7485254378371649, + "y": -0.6631060766654764 + }, + { + "x": -0.5680947037771794, + "y": -0.8229631872327696 + }, + { + "x": -0.3546080683168747, + "y": -0.9350150361810096 + }, + { + "x": -0.12047365436339115, + "y": -0.9927165247966463 + }, + { + "x": 0.12047365436339115, + "y": -0.9927165247966463 + }, + { + "x": 0.3546080683168747, + "y": -0.9350150361810096 + }, + { + "x": 0.5680947037771794, + "y": -0.8229631872327696 + }, + { + "x": 0.7485254378371649, + "y": -0.6631060766654764 + }, + { + "x": 0.8854381720103849, + "y": -0.4647571877302253 + }, + { + "x": 0.9709674753373843, + "y": -0.23921154202284237 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1305 + }, + "min": { + "#": 1306 + } + }, + { + "x": 251.19399999999996, + "y": 254.27175476702598 + }, + { + "x": 202.79399999999998, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 226.99399999999997, + "y": 229.893754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 226.99399999999997, + "y": 226.98648405199032 + }, + { + "endCol": 5, + "endRow": 5, + "id": "4,5,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1315 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.19399999999996, + "y": 232.83175476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.78799999999998, + "y": 238.538754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 247.05699999999996, + "y": 243.741754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.15999999999997, + "y": 248.140754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 238.32299999999998, + "y": 251.479754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 232.82799999999997, + "y": 253.563754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 226.99399999999997, + "y": 254.27175476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 221.15999999999997, + "y": 253.563754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 215.66499999999996, + "y": 251.479754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 210.82799999999997, + "y": 248.140754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 206.93099999999998, + "y": 243.741754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 204.19999999999996, + "y": 238.538754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 202.79399999999998, + "y": 232.83175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 202.79399999999998, + "y": 226.955754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 204.19999999999996, + "y": 221.24875476702599 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 206.93099999999998, + "y": 216.04575476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 210.82799999999997, + "y": 211.64675476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 215.66499999999996, + "y": 208.30775476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 221.15999999999997, + "y": 206.22375476702598 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 226.99399999999997, + "y": 205.515754767026 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 232.82799999999997, + "y": 206.22375476702598 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 238.32299999999998, + "y": 208.30775476702598 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 243.15999999999997, + "y": 211.64675476702598 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 247.05699999999996, + "y": 216.04575476702598 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 249.78799999999998, + "y": 221.24875476702599 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 251.19399999999996, + "y": 226.955754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2662.7031859999993, + "axes": { + "#": 1345 + }, + "bounds": { + "#": 1359 + }, + "circleRadius": 29.25533693415638, + "collisionFilter": { + "#": 1362 + }, + "constraintImpulse": { + "#": 1363 + }, + "density": 0.001, + "force": { + "#": 1364 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 4513.71283136672, + "inverseInertia": 0.00022154710265367218, + "inverseMass": 0.3755581941155946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6627031859999994, + "motion": 0, + "parent": null, + "position": { + "#": 1365 + }, + "positionImpulse": { + "#": 1366 + }, + "positionPrev": { + "#": 1367 + }, + "region": { + "#": 1368 + }, + "render": { + "#": 1369 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1371 + }, + "vertices": { + "#": 1372 + } + }, + [ + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + } + ], + { + "x": -0.9709378772487557, + "y": -0.23933164964893425 + }, + { + "x": -0.8854927136371952, + "y": -0.4646532622240331 + }, + { + "x": -0.7484956802859418, + "y": -0.6631396659779034 + }, + { + "x": -0.568044391747725, + "y": -0.8229979155526198 + }, + { + "x": -0.3545858497834421, + "y": -0.9350234623437822 + }, + { + "x": -0.12052615754469004, + "y": -0.9927101517298554 + }, + { + "x": 0.12052615754469004, + "y": -0.9927101517298554 + }, + { + "x": 0.3545858497834421, + "y": -0.9350234623437822 + }, + { + "x": 0.568044391747725, + "y": -0.8229979155526198 + }, + { + "x": 0.7484956802859418, + "y": -0.6631396659779034 + }, + { + "x": 0.8854927136371952, + "y": -0.4646532622240331 + }, + { + "x": 0.9709378772487557, + "y": -0.23933164964893425 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1360 + }, + "min": { + "#": 1361 + } + }, + { + "x": 319.278, + "y": 264.02575476702594 + }, + { + "x": 261.19399999999996, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.236, + "y": 234.770754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.236, + "y": 231.86348405199033 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1370 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.278, + "y": 238.29675476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 317.59, + "y": 245.144754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.313, + "y": 251.389754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.63599999999997, + "y": 256.66875476702603 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.832, + "y": 260.674754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.23699999999997, + "y": 263.175754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.236, + "y": 264.02575476702594 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 283.235, + "y": 263.175754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.64, + "y": 260.674754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 270.836, + "y": 256.66875476702603 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 266.159, + "y": 251.389754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 262.882, + "y": 245.144754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.19399999999996, + "y": 238.29675476702602 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 261.19399999999996, + "y": 231.244754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 262.882, + "y": 224.396754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 266.159, + "y": 218.151754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 270.836, + "y": 212.872754767026 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 276.64, + "y": 208.866754767026 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 283.235, + "y": 206.365754767026 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 290.236, + "y": 205.515754767026 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 297.23699999999997, + "y": 206.365754767026 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 303.832, + "y": 208.866754767026 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 309.63599999999997, + "y": 212.872754767026 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 314.313, + "y": 218.151754767026 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 317.59, + "y": 224.396754767026 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 319.278, + "y": 231.244754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 744.9158119999998, + "axes": { + "#": 1400 + }, + "bounds": { + "#": 1409 + }, + "circleRadius": 15.598829732510287, + "collisionFilter": { + "#": 1412 + }, + "constraintImpulse": { + "#": 1413 + }, + "density": 0.001, + "force": { + "#": 1414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 353.30757950427443, + "inverseInertia": 0.002830394981627904, + "inverseMass": 1.342433579594898, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7449158119999999, + "motion": 0, + "parent": null, + "position": { + "#": 1415 + }, + "positionImpulse": { + "#": 1416 + }, + "positionPrev": { + "#": 1417 + }, + "region": { + "#": 1418 + }, + "render": { + "#": 1419 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1421 + }, + "vertices": { + "#": 1422 + } + }, + [ + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + } + ], + { + "x": -0.9238866694289085, + "y": -0.3826662018673176 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826662018673176, + "y": -0.9238866694289085 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826662018673176, + "y": -0.9238866694289085 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238866694289085, + "y": -0.3826662018673176 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1410 + }, + "min": { + "#": 1411 + } + }, + { + "x": 359.876, + "y": 236.11375476702602 + }, + { + "x": 329.278, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.577, + "y": 220.81475476702602 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.577, + "y": 217.90748405199034 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1420 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 359.876, + "y": 223.85775476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 357.547, + "y": 229.480754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 353.243, + "y": 233.78475476702602 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 347.62, + "y": 236.11375476702602 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.534, + "y": 236.11375476702602 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 335.911, + "y": 233.78475476702602 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 331.60699999999997, + "y": 229.480754767026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 329.278, + "y": 223.85775476702602 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 329.278, + "y": 217.771754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 331.60699999999997, + "y": 212.14875476702602 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 335.911, + "y": 207.84475476702602 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 341.534, + "y": 205.515754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 347.62, + "y": 205.515754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 353.243, + "y": 207.84475476702602 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 357.547, + "y": 212.14875476702602 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 359.876, + "y": 217.771754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1648.4011000000003, + "axes": { + "#": 1440 + }, + "bounds": { + "#": 1453 + }, + "circleRadius": 23.038001543209877, + "collisionFilter": { + "#": 1456 + }, + "constraintImpulse": { + "#": 1457 + }, + "density": 0.001, + "force": { + "#": 1458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1729.8854325157483, + "inverseInertia": 0.0005780729643729723, + "inverseMass": 0.60664846680823, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6484011000000003, + "motion": 0, + "parent": null, + "position": { + "#": 1459 + }, + "positionImpulse": { + "#": 1460 + }, + "positionPrev": { + "#": 1461 + }, + "region": { + "#": 1462 + }, + "render": { + "#": 1463 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1465 + }, + "vertices": { + "#": 1466 + } + }, + [ + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + } + ], + { + "x": -0.9659057395099124, + "y": -0.25889399835030735 + }, + { + "x": -0.8660554631739814, + "y": -0.4999479319954234 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.4999479319954234, + "y": -0.8660554631739814 + }, + { + "x": -0.25889399835030735, + "y": -0.9659057395099124 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25889399835030735, + "y": -0.9659057395099124 + }, + { + "x": 0.4999479319954234, + "y": -0.8660554631739814 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660554631739814, + "y": -0.4999479319954234 + }, + { + "x": 0.9659057395099124, + "y": -0.25889399835030735 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1454 + }, + "min": { + "#": 1455 + } + }, + { + "x": 415.558, + "y": 251.19775476702603 + }, + { + "x": 369.876, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 392.717, + "y": 228.35675476702602 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 392.717, + "y": 225.44948405199034 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1464 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 415.558, + "y": 231.36375476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.001, + "y": 237.17275476702602 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 410.99399999999997, + "y": 242.38175476702602 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 406.74199999999996, + "y": 246.633754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 401.53299999999996, + "y": 249.640754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 395.724, + "y": 251.19775476702603 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 389.71, + "y": 251.19775476702603 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 383.901, + "y": 249.640754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 378.692, + "y": 246.633754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.44, + "y": 242.38175476702602 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 371.433, + "y": 237.17275476702602 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 369.876, + "y": 231.36375476702602 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 369.876, + "y": 225.349754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 371.433, + "y": 219.54075476702602 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 374.44, + "y": 214.331754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 378.692, + "y": 210.07975476702603 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 383.901, + "y": 207.07275476702603 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 389.71, + "y": 205.515754767026 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 395.724, + "y": 205.515754767026 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 401.53299999999996, + "y": 207.07275476702603 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 406.74199999999996, + "y": 210.07975476702603 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 410.99399999999997, + "y": 214.331754767026 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 414.001, + "y": 219.54075476702602 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 415.558, + "y": 225.349754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1113.272836, + "axes": { + "#": 1492 + }, + "bounds": { + "#": 1503 + }, + "circleRadius": 18.980259773662553, + "collisionFilter": { + "#": 1506 + }, + "constraintImpulse": { + "#": 1507 + }, + "density": 0.001, + "force": { + "#": 1508 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 789.0547317724531, + "inverseInertia": 0.0012673392094787908, + "inverseMass": 0.8982524028817674, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1132728360000002, + "motion": 0, + "parent": null, + "position": { + "#": 1509 + }, + "positionImpulse": { + "#": 1510 + }, + "positionPrev": { + "#": 1511 + }, + "region": { + "#": 1512 + }, + "render": { + "#": 1513 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1515 + }, + "vertices": { + "#": 1516 + } + }, + [ + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + } + ], + { + "x": -0.9510637633325844, + "y": -0.30899468939718355 + }, + { + "x": -0.8089617628829073, + "y": -0.5878612644097065 + }, + { + "x": -0.5878612644097065, + "y": -0.8089617628829073 + }, + { + "x": -0.30899468939718355, + "y": -0.9510637633325844 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30899468939718355, + "y": -0.9510637633325844 + }, + { + "x": 0.5878612644097065, + "y": -0.8089617628829073 + }, + { + "x": 0.8089617628829073, + "y": -0.5878612644097065 + }, + { + "x": 0.9510637633325844, + "y": -0.30899468939718355 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1504 + }, + "min": { + "#": 1505 + } + }, + { + "x": 463.052, + "y": 243.00975476702604 + }, + { + "x": 425.558, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 444.305, + "y": 224.26275476702602 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 444.305, + "y": 221.35548405199035 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1514 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.052, + "y": 227.23175476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.217, + "y": 232.87975476702601 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.726, + "y": 237.68375476702602 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.922, + "y": 241.17475476702603 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 447.274, + "y": 243.00975476702604 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 441.336, + "y": 243.00975476702604 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 435.688, + "y": 241.17475476702603 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.884, + "y": 237.68375476702602 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 427.39300000000003, + "y": 232.87975476702601 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 425.558, + "y": 227.23175476702602 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 425.558, + "y": 221.29375476702603 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 427.39300000000003, + "y": 215.64575476702603 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 430.884, + "y": 210.84175476702603 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 435.688, + "y": 207.35075476702602 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 441.336, + "y": 205.515754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 447.274, + "y": 205.515754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.922, + "y": 207.35075476702602 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.726, + "y": 210.84175476702603 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.217, + "y": 215.64575476702603 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.052, + "y": 221.29375476702603 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1274.2530860000002, + "axes": { + "#": 1538 + }, + "bounds": { + "#": 1550 + }, + "circleRadius": 20.277456275720166, + "collisionFilter": { + "#": 1553 + }, + "constraintImpulse": { + "#": 1554 + }, + "density": 0.001, + "force": { + "#": 1555 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1033.7314290896877, + "inverseInertia": 0.0009673692526506697, + "inverseMass": 0.7847734574762489, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.274253086, + "motion": 0, + "parent": null, + "position": { + "#": 1556 + }, + "positionImpulse": { + "#": 1557 + }, + "positionPrev": { + "#": 1558 + }, + "region": { + "#": 1559 + }, + "render": { + "#": 1560 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1562 + }, + "vertices": { + "#": 1563 + } + }, + [ + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + } + ], + { + "x": -0.9594978217257012, + "y": -0.28171604516540116 + }, + { + "x": -0.8412629145075053, + "y": -0.5406262190037935 + }, + { + "x": -0.6547919983802524, + "y": -0.7558091285881612 + }, + { + "x": -0.4154731207517202, + "y": -0.9096054561912139 + }, + { + "x": -0.14224602222342572, + "y": -0.9898313336935807 + }, + { + "x": 0.14224602222342572, + "y": -0.9898313336935807 + }, + { + "x": 0.4154731207517202, + "y": -0.9096054561912139 + }, + { + "x": 0.6547919983802524, + "y": -0.7558091285881612 + }, + { + "x": 0.8412629145075053, + "y": -0.5406262190037935 + }, + { + "x": 0.9594978217257012, + "y": -0.28171604516540116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1551 + }, + "min": { + "#": 1552 + } + }, + { + "x": 513.1940000000001, + "y": 246.06975476702598 + }, + { + "x": 473.052, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 493.12300000000005, + "y": 225.792754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 493.12300000000005, + "y": 222.88548405199032 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1561 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 513.1940000000001, + "y": 228.678754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.56800000000004, + "y": 234.216754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 508.44800000000004, + "y": 239.071754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 504.08600000000007, + "y": 242.850754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 498.83600000000007, + "y": 245.24875476702599 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 493.12300000000005, + "y": 246.06975476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 487.41, + "y": 245.24875476702599 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 482.16, + "y": 242.850754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 477.79800000000006, + "y": 239.071754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 474.67800000000005, + "y": 234.216754767026 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.052, + "y": 228.678754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 473.052, + "y": 222.906754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 474.67800000000005, + "y": 217.368754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 477.79800000000006, + "y": 212.513754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 482.16, + "y": 208.734754767026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 487.41, + "y": 206.336754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 493.12300000000005, + "y": 205.515754767026 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 498.83600000000007, + "y": 206.336754767026 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 504.08600000000007, + "y": 208.734754767026 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 508.44800000000004, + "y": 212.513754767026 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 511.56800000000004, + "y": 217.368754767026 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 513.1940000000001, + "y": 222.906754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2780.0004800000006, + "axes": { + "#": 1587 + }, + "bounds": { + "#": 1601 + }, + "circleRadius": 29.892554012345677, + "collisionFilter": { + "#": 1604 + }, + "constraintImpulse": { + "#": 1605 + }, + "density": 0.001, + "force": { + "#": 1606 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 4920.147823896497, + "inverseInertia": 0.00020324592589335107, + "inverseMass": 0.35971216810725143, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.780000480000001, + "motion": 0, + "parent": null, + "position": { + "#": 1607 + }, + "positionImpulse": { + "#": 1608 + }, + "positionPrev": { + "#": 1609 + }, + "region": { + "#": 1610 + }, + "render": { + "#": 1611 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1613 + }, + "vertices": { + "#": 1614 + } + }, + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + } + ], + { + "x": -0.9709290995295576, + "y": -0.23936725692275093 + }, + { + "x": -0.885456433914103, + "y": -0.4647223941667968 + }, + { + "x": -0.7484878127877156, + "y": -0.6631485460349451 + }, + { + "x": -0.5681414925182338, + "y": -0.822930886818057 + }, + { + "x": -0.3545580162719157, + "y": -0.9350340170803005 + }, + { + "x": -0.12058414899262154, + "y": -0.9927031091981757 + }, + { + "x": 0.12058414899262154, + "y": -0.9927031091981757 + }, + { + "x": 0.3545580162719157, + "y": -0.9350340170803005 + }, + { + "x": 0.5681414925182338, + "y": -0.822930886818057 + }, + { + "x": 0.7484878127877156, + "y": -0.6631485460349451 + }, + { + "x": 0.885456433914103, + "y": -0.4647223941667968 + }, + { + "x": 0.9709290995295576, + "y": -0.23936725692275093 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1602 + }, + "min": { + "#": 1603 + } + }, + { + "x": 582.544, + "y": 265.30175476702595 + }, + { + "x": 523.194, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 552.869, + "y": 235.408754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 552.869, + "y": 232.50148405199033 + }, + { + "endCol": 12, + "endRow": 5, + "id": "10,12,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1612 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 582.544, + "y": 239.01175476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.8190000000001, + "y": 246.008754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 577.47, + "y": 252.389754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 572.691, + "y": 257.78375476702604 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 566.7610000000001, + "y": 261.877754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 560.023, + "y": 264.432754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 552.869, + "y": 265.30175476702595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 545.715, + "y": 264.432754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 538.9770000000001, + "y": 261.877754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 533.047, + "y": 257.78375476702604 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 528.268, + "y": 252.389754767026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 524.9190000000001, + "y": 246.008754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 523.194, + "y": 239.01175476702602 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 523.194, + "y": 231.805754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 524.9190000000001, + "y": 224.80875476702602 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 528.268, + "y": 218.42775476702602 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 533.047, + "y": 213.033754767026 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 538.9770000000001, + "y": 208.93975476702602 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 545.715, + "y": 206.384754767026 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 552.869, + "y": 205.515754767026 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 560.023, + "y": 206.384754767026 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 566.7610000000001, + "y": 208.93975476702602 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 572.691, + "y": 213.033754767026 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 577.47, + "y": 218.42775476702602 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 580.8190000000001, + "y": 224.80875476702602 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 582.544, + "y": 231.805754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2538.757968, + "axes": { + "#": 1642 + }, + "bounds": { + "#": 1656 + }, + "circleRadius": 28.566293724279834, + "collisionFilter": { + "#": 1659 + }, + "constraintImpulse": { + "#": 1660 + }, + "density": 0.001, + "force": { + "#": 1661 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 4103.278629848139, + "inverseInertia": 0.0002437075544238656, + "inverseMass": 0.3938933969305419, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.538757968, + "motion": 0, + "parent": null, + "position": { + "#": 1662 + }, + "positionImpulse": { + "#": 1663 + }, + "positionPrev": { + "#": 1664 + }, + "region": { + "#": 1665 + }, + "render": { + "#": 1666 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1668 + }, + "vertices": { + "#": 1669 + } + }, + [ + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + } + ], + { + "x": -0.9709484794471303, + "y": -0.23928863378628235 + }, + { + "x": -0.8854845432949032, + "y": -0.4646688321652492 + }, + { + "x": -0.7484419497782766, + "y": -0.6632003074577784 + }, + { + "x": -0.5680315134165672, + "y": -0.8230068042037588 + }, + { + "x": -0.3546060814505948, + "y": -0.9350157897053153 + }, + { + "x": -0.12053085900440433, + "y": -0.9927095809085659 + }, + { + "x": 0.12053085900440433, + "y": -0.9927095809085659 + }, + { + "x": 0.3546060814505948, + "y": -0.9350157897053153 + }, + { + "x": 0.5680315134165672, + "y": -0.8230068042037588 + }, + { + "x": 0.7484419497782766, + "y": -0.6632003074577784 + }, + { + "x": 0.8854845432949032, + "y": -0.4646688321652492 + }, + { + "x": 0.9709484794471303, + "y": -0.23928863378628235 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1657 + }, + "min": { + "#": 1658 + } + }, + { + "x": 649.2599999999999, + "y": 262.647754767026 + }, + { + "x": 592.544, + "y": 205.515754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.9019999999999, + "y": 234.081754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.9019999999999, + "y": 231.17448405199033 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1667 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 649.2599999999999, + "y": 237.52475476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 647.612, + "y": 244.211754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 644.4119999999999, + "y": 250.30975476702602 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 639.8449999999999, + "y": 255.46375476702602 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 634.1769999999999, + "y": 259.375754767026 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 627.7379999999999, + "y": 261.817754767026 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 620.9019999999999, + "y": 262.647754767026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 614.0659999999999, + "y": 261.817754767026 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 607.627, + "y": 259.375754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 601.959, + "y": 255.46375476702602 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 597.3919999999999, + "y": 250.30975476702602 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 594.1919999999999, + "y": 244.211754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 592.544, + "y": 237.52475476702602 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 592.544, + "y": 230.638754767026 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 594.1919999999999, + "y": 223.95175476702602 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 597.3919999999999, + "y": 217.853754767026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 601.959, + "y": 212.699754767026 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 607.627, + "y": 208.787754767026 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 614.0659999999999, + "y": 206.34575476702602 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 620.9019999999999, + "y": 205.515754767026 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 627.7379999999999, + "y": 206.34575476702602 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 634.1769999999999, + "y": 208.787754767026 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 639.8449999999999, + "y": 212.699754767026 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 644.4119999999999, + "y": 217.853754767026 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 647.612, + "y": 223.95175476702602 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 649.2599999999999, + "y": 230.638754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1430.3752400000003, + "axes": { + "#": 1697 + }, + "bounds": { + "#": 1709 + }, + "circleRadius": 21.48386059670782, + "collisionFilter": { + "#": 1712 + }, + "constraintImpulse": { + "#": 1713 + }, + "density": 0.001, + "force": { + "#": 1714 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1302.5556894183874, + "inverseInertia": 0.0007677214940779358, + "inverseMass": 0.6991172470239346, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4303752400000003, + "motion": 0, + "parent": null, + "position": { + "#": 1715 + }, + "positionImpulse": { + "#": 1716 + }, + "positionPrev": { + "#": 1717 + }, + "region": { + "#": 1718 + }, + "render": { + "#": 1719 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1721 + }, + "vertices": { + "#": 1722 + } + }, + [ + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + } + ], + { + "x": -0.9594929851315711, + "y": -0.28173251761787593 + }, + { + "x": -0.8412422318463942, + "y": -0.5406584017270957 + }, + { + "x": -0.6548495904335815, + "y": -0.755759230118277 + }, + { + "x": -0.41553945773574935, + "y": -0.9095751530603061 + }, + { + "x": -0.14226837363223738, + "y": -0.9898281213746344 + }, + { + "x": 0.14226837363223738, + "y": -0.9898281213746344 + }, + { + "x": 0.41553945773574935, + "y": -0.9095751530603061 + }, + { + "x": 0.6548495904335815, + "y": -0.755759230118277 + }, + { + "x": 0.8412422318463942, + "y": -0.5406584017270957 + }, + { + "x": 0.9594929851315711, + "y": -0.28173251761787593 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1710 + }, + "min": { + "#": 1711 + } + }, + { + "x": 142.53, + "y": 318.26975476702495 + }, + { + "x": 100, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.265, + "y": 296.78575476702497 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.265, + "y": 293.8784840519894 + }, + { + "endCol": 2, + "endRow": 6, + "id": "2,2,5,6", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1720 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 142.53, + "y": 299.842754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.80700000000002, + "y": 305.710754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 137.501, + "y": 310.854754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 132.88, + "y": 314.85875476702495 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 127.318, + "y": 317.39975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 121.265, + "y": 318.26975476702495 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 115.212, + "y": 317.39975476702494 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 109.65, + "y": 314.85875476702495 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 105.029, + "y": 310.854754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 101.723, + "y": 305.710754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 299.842754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 293.728754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 101.723, + "y": 287.86075476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 105.029, + "y": 282.71675476702495 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 109.65, + "y": 278.71275476702493 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 115.212, + "y": 276.171754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 121.265, + "y": 275.301754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 127.318, + "y": 276.171754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 132.88, + "y": 278.71275476702493 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 137.501, + "y": 282.71675476702495 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.80700000000002, + "y": 287.86075476702496 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 142.53, + "y": 293.728754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1228.8538520000002, + "axes": { + "#": 1746 + }, + "bounds": { + "#": 1757 + }, + "circleRadius": 19.941550925925924, + "collisionFilter": { + "#": 1760 + }, + "constraintImpulse": { + "#": 1761 + }, + "density": 0.001, + "force": { + "#": 1762 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 961.4005673522398, + "inverseInertia": 0.0010401491677439567, + "inverseMass": 0.8137664201259303, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2288538520000003, + "motion": 0, + "parent": null, + "position": { + "#": 1763 + }, + "positionImpulse": { + "#": 1764 + }, + "positionPrev": { + "#": 1765 + }, + "region": { + "#": 1766 + }, + "render": { + "#": 1767 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1769 + }, + "vertices": { + "#": 1770 + } + }, + [ + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + } + ], + { + "x": -0.9510446700932779, + "y": -0.3090534508578865 + }, + { + "x": -0.8090617057669508, + "y": -0.5877237074182664 + }, + { + "x": -0.5877237074182664, + "y": -0.8090617057669508 + }, + { + "x": -0.3090534508578865, + "y": -0.9510446700932779 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090534508578865, + "y": -0.9510446700932779 + }, + { + "x": 0.5877237074182664, + "y": -0.8090617057669508 + }, + { + "x": 0.8090617057669508, + "y": -0.5877237074182664 + }, + { + "x": 0.9510446700932779, + "y": -0.3090534508578865 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1758 + }, + "min": { + "#": 1759 + } + }, + { + "x": 191.922, + "y": 314.69375476702504 + }, + { + "x": 152.53, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 172.226, + "y": 294.997754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 172.226, + "y": 292.09048405198945 + }, + { + "endCol": 3, + "endRow": 6, + "id": "3,3,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1768 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 191.922, + "y": 298.117754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 189.994, + "y": 304.050754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.327, + "y": 309.098754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 181.279, + "y": 312.76575476702504 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 175.346, + "y": 314.69375476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 169.106, + "y": 314.69375476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 163.173, + "y": 312.76575476702504 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 158.125, + "y": 309.098754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 154.458, + "y": 304.050754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 152.53, + "y": 298.117754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 152.53, + "y": 291.877754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 154.458, + "y": 285.944754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 158.125, + "y": 280.896754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 163.173, + "y": 277.229754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 169.106, + "y": 275.301754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 175.346, + "y": 275.301754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 181.279, + "y": 277.229754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 186.327, + "y": 280.896754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 189.994, + "y": 285.944754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 191.922, + "y": 291.877754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1002.7103840000001, + "axes": { + "#": 1792 + }, + "bounds": { + "#": 1803 + }, + "circleRadius": 18.01343878600823, + "collisionFilter": { + "#": 1806 + }, + "constraintImpulse": { + "#": 1807 + }, + "density": 0.001, + "force": { + "#": 1808 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 640.1104675474656, + "inverseInertia": 0.0015622303503822139, + "inverseMass": 0.9972969423242753, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.002710384, + "motion": 0, + "parent": null, + "position": { + "#": 1809 + }, + "positionImpulse": { + "#": 1810 + }, + "positionPrev": { + "#": 1811 + }, + "region": { + "#": 1812 + }, + "render": { + "#": 1813 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1815 + }, + "vertices": { + "#": 1816 + } + }, + [ + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + } + ], + { + "x": -0.9510340687309481, + "y": -0.30908607233755825 + }, + { + "x": -0.8089585484139196, + "y": -0.5878656878471851 + }, + { + "x": -0.5878656878471851, + "y": -0.8089585484139196 + }, + { + "x": -0.30908607233755825, + "y": -0.9510340687309481 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908607233755825, + "y": -0.9510340687309481 + }, + { + "x": 0.5878656878471851, + "y": -0.8089585484139196 + }, + { + "x": 0.8089585484139196, + "y": -0.5878656878471851 + }, + { + "x": 0.9510340687309481, + "y": -0.30908607233755825 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1804 + }, + "min": { + "#": 1805 + } + }, + { + "x": 237.506, + "y": 310.88575476702505 + }, + { + "x": 201.922, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.714, + "y": 293.093754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.714, + "y": 290.18648405198945 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1814 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 237.506, + "y": 295.911754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 235.764, + "y": 301.271754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 232.451, + "y": 305.83075476702504 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 227.892, + "y": 309.14375476702503 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 222.532, + "y": 310.88575476702505 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 216.896, + "y": 310.88575476702505 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.536, + "y": 309.14375476702503 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 206.977, + "y": 305.83075476702504 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 203.664, + "y": 301.271754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 201.922, + "y": 295.911754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 201.922, + "y": 290.27575476702503 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 203.664, + "y": 284.915754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 206.977, + "y": 280.35675476702505 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 211.536, + "y": 277.043754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 216.896, + "y": 275.301754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 222.532, + "y": 275.301754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 227.892, + "y": 277.043754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 232.451, + "y": 280.35675476702505 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 235.764, + "y": 284.915754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 237.506, + "y": 290.27575476702503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.6785539999998, + "axes": { + "#": 1838 + }, + "bounds": { + "#": 1852 + }, + "circleRadius": 24.21804269547325, + "collisionFilter": { + "#": 1855 + }, + "constraintImpulse": { + "#": 1856 + }, + "density": 0.001, + "force": { + "#": 1857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 2119.6353057013616, + "inverseInertia": 0.00047177927132569257, + "inverseMass": 0.5480417346977817, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.824678554, + "motion": 0, + "parent": null, + "position": { + "#": 1858 + }, + "positionImpulse": { + "#": 1859 + }, + "positionPrev": { + "#": 1860 + }, + "region": { + "#": 1861 + }, + "render": { + "#": 1862 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1864 + }, + "vertices": { + "#": 1865 + } + }, + [ + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + } + ], + { + "x": -0.9709530792717644, + "y": -0.23926996855576949 + }, + { + "x": -0.8854490104782353, + "y": -0.46473653809778487 + }, + { + "x": -0.7485517419948672, + "y": -0.6630763828975134 + }, + { + "x": -0.5681051115017207, + "y": -0.8229560026426791 + }, + { + "x": -0.3545561271605673, + "y": -0.9350347334152351 + }, + { + "x": -0.12057688237798207, + "y": -0.9927039918505447 + }, + { + "x": 0.12057688237798207, + "y": -0.9927039918505447 + }, + { + "x": 0.3545561271605673, + "y": -0.9350347334152351 + }, + { + "x": 0.5681051115017207, + "y": -0.8229560026426791 + }, + { + "x": 0.7485517419948672, + "y": -0.6630763828975134 + }, + { + "x": 0.8854490104782353, + "y": -0.46473653809778487 + }, + { + "x": 0.9709530792717644, + "y": -0.23926996855576949 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1853 + }, + "min": { + "#": 1854 + } + }, + { + "x": 295.5880000000001, + "y": 323.737754767025 + }, + { + "x": 247.50600000000003, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.547, + "y": 299.519754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.547, + "y": 296.61248405198944 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1863 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 295.5880000000001, + "y": 302.438754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 294.19100000000003, + "y": 308.107754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 291.47800000000007, + "y": 313.276754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 287.60699999999997, + "y": 317.646754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 282.802, + "y": 320.963754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 277.343, + "y": 323.033754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 271.547, + "y": 323.737754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 265.75100000000003, + "y": 323.033754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 260.29200000000003, + "y": 320.963754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.48700000000002, + "y": 317.646754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 251.616, + "y": 313.276754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 248.90300000000002, + "y": 308.107754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 247.50600000000003, + "y": 302.438754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 247.50600000000003, + "y": 296.60075476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 248.90300000000002, + "y": 290.931754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 251.616, + "y": 285.762754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 255.48700000000002, + "y": 281.392754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 260.29200000000003, + "y": 278.075754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 265.75100000000003, + "y": 276.005754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 271.547, + "y": 275.301754767025 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 277.343, + "y": 276.005754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 282.802, + "y": 278.075754767025 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 287.60699999999997, + "y": 281.392754767025 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 291.47800000000007, + "y": 285.762754767025 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 294.19100000000003, + "y": 290.931754767025 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 295.5880000000001, + "y": 296.60075476702497 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2471.436928, + "axes": { + "#": 1893 + }, + "bounds": { + "#": 1907 + }, + "circleRadius": 28.184992283950617, + "collisionFilter": { + "#": 1910 + }, + "constraintImpulse": { + "#": 1911 + }, + "density": 0.001, + "force": { + "#": 1912 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 3888.548074751447, + "inverseInertia": 0.0002571653945834061, + "inverseMass": 0.4046229093166645, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.471436928, + "motion": 0, + "parent": null, + "position": { + "#": 1913 + }, + "positionImpulse": { + "#": 1914 + }, + "positionPrev": { + "#": 1915 + }, + "region": { + "#": 1916 + }, + "render": { + "#": 1917 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1919 + }, + "vertices": { + "#": 1920 + } + }, + [ + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + } + ], + { + "x": -0.970950739329147, + "y": -0.23927946379951362 + }, + { + "x": -0.8854826960522498, + "y": -0.4646723523000254 + }, + { + "x": -0.7484963444830224, + "y": -0.6631389162879469 + }, + { + "x": -0.5680768171903559, + "y": -0.8229755341265468 + }, + { + "x": -0.3545566221665471, + "y": -0.9350345457136052 + }, + { + "x": -0.12053794545125669, + "y": -0.9927087204746365 + }, + { + "x": 0.12053794545125669, + "y": -0.9927087204746365 + }, + { + "x": 0.3545566221665471, + "y": -0.9350345457136052 + }, + { + "x": 0.5680768171903559, + "y": -0.8229755341265468 + }, + { + "x": 0.7484963444830224, + "y": -0.6631389162879469 + }, + { + "x": 0.8854826960522498, + "y": -0.4646723523000254 + }, + { + "x": 0.970950739329147, + "y": -0.23927946379951362 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1908 + }, + "min": { + "#": 1909 + } + }, + { + "x": 361.54600000000005, + "y": 331.671754767025 + }, + { + "x": 305.5880000000001, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.56700000000006, + "y": 303.486754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.56700000000006, + "y": 300.5794840519894 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1918 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 361.54600000000005, + "y": 306.883754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 359.9200000000001, + "y": 313.481754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 356.7630000000001, + "y": 319.497754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 352.25700000000006, + "y": 324.58375476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 346.6650000000001, + "y": 328.443754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 340.31200000000007, + "y": 330.852754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 333.56700000000006, + "y": 331.671754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 326.82200000000006, + "y": 330.852754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.46900000000005, + "y": 328.443754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 314.87700000000007, + "y": 324.58375476702497 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 310.37100000000004, + "y": 319.497754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 307.21400000000006, + "y": 313.481754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.5880000000001, + "y": 306.883754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 305.5880000000001, + "y": 300.089754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 307.21400000000006, + "y": 293.491754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 310.37100000000004, + "y": 287.47575476702497 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 314.87700000000007, + "y": 282.38975476702495 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.46900000000005, + "y": 278.529754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 326.82200000000006, + "y": 276.120754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 333.56700000000006, + "y": 275.301754767025 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 340.31200000000007, + "y": 276.120754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 346.6650000000001, + "y": 278.529754767025 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 352.25700000000006, + "y": 282.38975476702495 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 356.7630000000001, + "y": 287.47575476702497 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 359.9200000000001, + "y": 293.491754767025 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 361.54600000000005, + "y": 300.089754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1547.5474520000005, + "axes": { + "#": 1948 + }, + "bounds": { + "#": 1961 + }, + "circleRadius": 22.321694958847736, + "collisionFilter": { + "#": 1964 + }, + "constraintImpulse": { + "#": 1965 + }, + "density": 0.001, + "force": { + "#": 1966 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1524.6827933599404, + "inverseInertia": 0.0006558741295927541, + "inverseMass": 0.646183739766837, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.5475474520000005, + "motion": 0, + "parent": null, + "position": { + "#": 1967 + }, + "positionImpulse": { + "#": 1968 + }, + "positionPrev": { + "#": 1969 + }, + "region": { + "#": 1970 + }, + "render": { + "#": 1971 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1973 + }, + "vertices": { + "#": 1974 + } + }, + [ + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + } + ], + { + "x": -0.9659266009741097, + "y": -0.2588161539212787 + }, + { + "x": -0.8660169934454096, + "y": -0.5000145668515801 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.5000145668515801, + "y": -0.8660169934454096 + }, + { + "x": -0.2588161539212787, + "y": -0.9659266009741097 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588161539212787, + "y": -0.9659266009741097 + }, + { + "x": 0.5000145668515801, + "y": -0.8660169934454096 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660169934454096, + "y": -0.5000145668515801 + }, + { + "x": 0.9659266009741097, + "y": -0.2588161539212787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1962 + }, + "min": { + "#": 1963 + } + }, + { + "x": 415.808, + "y": 319.56375476702493 + }, + { + "x": 371.54600000000005, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.677, + "y": 297.43275476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.677, + "y": 294.5254840519894 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1972 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 415.808, + "y": 300.34675476702495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.3, + "y": 305.97475476702493 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 411.386, + "y": 311.02175476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 407.266, + "y": 315.14175476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.219, + "y": 318.05575476702495 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 396.591, + "y": 319.56375476702493 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 390.76300000000003, + "y": 319.56375476702493 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 385.13500000000005, + "y": 318.05575476702495 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 380.088, + "y": 315.14175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 375.968, + "y": 311.02175476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 373.05400000000003, + "y": 305.97475476702493 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 371.54600000000005, + "y": 300.34675476702495 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 371.54600000000005, + "y": 294.518754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 373.05400000000003, + "y": 288.89075476702493 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 375.968, + "y": 283.84375476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 380.088, + "y": 279.72375476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 385.13500000000005, + "y": 276.80975476702497 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 390.76300000000003, + "y": 275.301754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 396.591, + "y": 275.301754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 402.219, + "y": 276.80975476702497 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 407.266, + "y": 279.72375476702496 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 411.386, + "y": 283.84375476702496 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 414.3, + "y": 288.89075476702493 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 415.808, + "y": 294.518754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1055.306792, + "axes": { + "#": 2000 + }, + "bounds": { + "#": 2011 + }, + "circleRadius": 18.48000257201646, + "collisionFilter": { + "#": 2014 + }, + "constraintImpulse": { + "#": 2015 + }, + "density": 0.001, + "force": { + "#": 2016 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 709.0247094978657, + "inverseInertia": 0.0014103880818317378, + "inverseMass": 0.9475917406963869, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.055306792, + "motion": 0, + "parent": null, + "position": { + "#": 2017 + }, + "positionImpulse": { + "#": 2018 + }, + "positionPrev": { + "#": 2019 + }, + "region": { + "#": 2020 + }, + "render": { + "#": 2021 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2023 + }, + "vertices": { + "#": 2024 + } + }, + [ + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + } + ], + { + "x": -0.9510937892878595, + "y": -0.30890225634990265 + }, + { + "x": -0.8089379801350923, + "y": -0.5878939906947145 + }, + { + "x": -0.5878939906947145, + "y": -0.8089379801350923 + }, + { + "x": -0.30890225634990265, + "y": -0.9510937892878595 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30890225634990265, + "y": -0.9510937892878595 + }, + { + "x": 0.5878939906947145, + "y": -0.8089379801350923 + }, + { + "x": 0.8089379801350923, + "y": -0.5878939906947145 + }, + { + "x": 0.9510937892878595, + "y": -0.30890225634990265 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2012 + }, + "min": { + "#": 2013 + } + }, + { + "x": 462.312, + "y": 311.805754767025 + }, + { + "x": 425.808, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 444.06, + "y": 293.553754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 444.06, + "y": 290.64648405198943 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2022 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 462.312, + "y": 296.444754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460.526, + "y": 301.943754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.127, + "y": 306.620754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.45, + "y": 310.019754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.951, + "y": 311.805754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 441.169, + "y": 311.805754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 435.67, + "y": 310.019754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.993, + "y": 306.620754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 427.594, + "y": 301.943754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 425.808, + "y": 296.444754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 425.808, + "y": 290.662754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 427.594, + "y": 285.163754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 430.993, + "y": 280.486754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 435.67, + "y": 277.087754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 441.169, + "y": 275.301754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.951, + "y": 275.301754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.45, + "y": 277.087754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.127, + "y": 280.486754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 460.526, + "y": 285.163754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 462.312, + "y": 290.662754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2730.0490020000007, + "axes": { + "#": 2046 + }, + "bounds": { + "#": 2060 + }, + "circleRadius": 29.622878086419753, + "collisionFilter": { + "#": 2063 + }, + "constraintImpulse": { + "#": 2064 + }, + "density": 0.001, + "force": { + "#": 2065 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 4744.924363381941, + "inverseInertia": 0.000210751515391333, + "inverseMass": 0.36629379152806857, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.730049002000001, + "motion": 0, + "parent": null, + "position": { + "#": 2066 + }, + "positionImpulse": { + "#": 2067 + }, + "positionPrev": { + "#": 2068 + }, + "region": { + "#": 2069 + }, + "render": { + "#": 2070 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2072 + }, + "vertices": { + "#": 2073 + } + }, + [ + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + } + ], + { + "x": -0.9709363184970072, + "y": -0.23933797321670056 + }, + { + "x": -0.8854612825518478, + "y": -0.46471315572257776 + }, + { + "x": -0.7485285981139811, + "y": -0.6631025092740324 + }, + { + "x": -0.5680372022951283, + "y": -0.8230028777645456 + }, + { + "x": -0.354574024436084, + "y": -0.9350279467455501 + }, + { + "x": -0.12056973958972958, + "y": -0.992704859409515 + }, + { + "x": 0.12056973958972958, + "y": -0.992704859409515 + }, + { + "x": 0.354574024436084, + "y": -0.9350279467455501 + }, + { + "x": 0.5680372022951283, + "y": -0.8230028777645456 + }, + { + "x": 0.7485285981139811, + "y": -0.6631025092740324 + }, + { + "x": 0.8854612825518478, + "y": -0.46471315572257776 + }, + { + "x": 0.9709363184970072, + "y": -0.23933797321670056 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2061 + }, + "min": { + "#": 2062 + } + }, + { + "x": 531.126, + "y": 334.54775476702497 + }, + { + "x": 472.312, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 501.719, + "y": 304.924754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 501.719, + "y": 302.0174840519894 + }, + { + "endCol": 11, + "endRow": 6, + "id": "9,11,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2071 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2074 + }, + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 531.126, + "y": 308.495754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 529.4169999999999, + "y": 315.428754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 526.098, + "y": 321.75275476702495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 521.363, + "y": 327.097754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 515.485, + "y": 331.154754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 508.808, + "y": 333.686754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 501.719, + "y": 334.54775476702497 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 494.63, + "y": 333.686754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 487.953, + "y": 331.154754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 482.075, + "y": 327.097754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 477.34, + "y": 321.75275476702495 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.021, + "y": 315.428754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 472.312, + "y": 308.495754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 472.312, + "y": 301.353754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.021, + "y": 294.420754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 477.34, + "y": 288.09675476702495 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 482.075, + "y": 282.751754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 487.953, + "y": 278.694754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.63, + "y": 276.162754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 501.719, + "y": 275.301754767025 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 508.808, + "y": 276.162754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 515.485, + "y": 278.694754767025 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 521.363, + "y": 282.751754767025 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 526.098, + "y": 288.09675476702495 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 529.4169999999999, + "y": 294.420754767025 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 531.126, + "y": 301.353754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 837.1561759999998, + "axes": { + "#": 2101 + }, + "bounds": { + "#": 2111 + }, + "circleRadius": 16.491062242798353, + "collisionFilter": { + "#": 2114 + }, + "constraintImpulse": { + "#": 2115 + }, + "density": 0.001, + "force": { + "#": 2116 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 446.1998710095896, + "inverseInertia": 0.0022411481153890972, + "inverseMass": 1.1945202444519745, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8371561759999999, + "motion": 0, + "parent": null, + "position": { + "#": 2117 + }, + "positionImpulse": { + "#": 2118 + }, + "positionPrev": { + "#": 2119 + }, + "region": { + "#": 2120 + }, + "render": { + "#": 2121 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2123 + }, + "vertices": { + "#": 2124 + } + }, + [ + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + } + ], + { + "x": -0.9396863246024094, + "y": -0.34203744145227044 + }, + { + "x": -0.7659696479015781, + "y": -0.64287673662494 + }, + { + "x": -0.5000448704318415, + "y": -0.8659994962786081 + }, + { + "x": -0.17356618334402651, + "y": -0.9848222073041345 + }, + { + "x": 0.17356618334402651, + "y": -0.9848222073041345 + }, + { + "x": 0.5000448704318415, + "y": -0.8659994962786081 + }, + { + "x": 0.7659696479015781, + "y": -0.64287673662494 + }, + { + "x": 0.9396863246024094, + "y": -0.34203744145227044 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2112 + }, + "min": { + "#": 2113 + } + }, + { + "x": 573.608, + "y": 308.28375476702496 + }, + { + "x": 541.126, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.367, + "y": 291.792754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.367, + "y": 288.8854840519894 + }, + { + "endCol": 11, + "endRow": 6, + "id": "11,11,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2122 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 573.608, + "y": 294.65675476702495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 571.649, + "y": 300.03875476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.967, + "y": 304.42575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 563.007, + "y": 307.289754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 557.367, + "y": 308.28375476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 551.727, + "y": 307.289754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.7669999999999, + "y": 304.42575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 543.0849999999999, + "y": 300.03875476702495 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 541.126, + "y": 294.65675476702495 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 541.126, + "y": 288.92875476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 543.0849999999999, + "y": 283.546754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 546.7669999999999, + "y": 279.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 551.727, + "y": 276.29575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 557.367, + "y": 275.301754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 563.007, + "y": 276.29575476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 567.967, + "y": 279.15975476702494 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 571.649, + "y": 283.546754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 573.608, + "y": 288.92875476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1832.5456639999998, + "axes": { + "#": 2144 + }, + "bounds": { + "#": 2158 + }, + "circleRadius": 24.269740226337447, + "collisionFilter": { + "#": 2161 + }, + "constraintImpulse": { + "#": 2162 + }, + "density": 0.001, + "force": { + "#": 2163 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 2137.952342345815, + "inverseInertia": 0.0004677372737423955, + "inverseMass": 0.5456889940833693, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8325456639999997, + "motion": 0, + "parent": null, + "position": { + "#": 2164 + }, + "positionImpulse": { + "#": 2165 + }, + "positionPrev": { + "#": 2166 + }, + "region": { + "#": 2167 + }, + "render": { + "#": 2168 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2170 + }, + "vertices": { + "#": 2171 + } + }, + [ + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + } + ], + { + "x": -0.970951377249592, + "y": -0.23927687522433155 + }, + { + "x": -0.8854699897202892, + "y": -0.4646965647653864 + }, + { + "x": -0.7484645502186983, + "y": -0.6631748012899176 + }, + { + "x": -0.568116313280717, + "y": -0.8229482696891259 + }, + { + "x": -0.354623322192599, + "y": -0.9350092509473285 + }, + { + "x": -0.12049981262239128, + "y": -0.9927133499444684 + }, + { + "x": 0.12049981262239128, + "y": -0.9927133499444684 + }, + { + "x": 0.354623322192599, + "y": -0.9350092509473285 + }, + { + "x": 0.568116313280717, + "y": -0.8229482696891259 + }, + { + "x": 0.7484645502186983, + "y": -0.6631748012899176 + }, + { + "x": 0.8854699897202892, + "y": -0.4646965647653864 + }, + { + "x": 0.970951377249592, + "y": -0.23927687522433155 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2159 + }, + "min": { + "#": 2160 + } + }, + { + "x": 631.7939999999999, + "y": 323.84175476702495 + }, + { + "x": 583.608, + "y": 275.301754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 607.7009999999999, + "y": 299.57175476702497 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 607.7009999999999, + "y": 296.6644840519894 + }, + { + "endCol": 13, + "endRow": 6, + "id": "12,13,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2169 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.7939999999999, + "y": 302.496754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630.3939999999999, + "y": 308.17775476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 627.675, + "y": 313.35875476702495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.795, + "y": 317.73775476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 618.9799999999999, + "y": 321.061754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 613.5089999999999, + "y": 323.13675476702497 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 607.7009999999999, + "y": 323.84175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 601.8929999999999, + "y": 323.13675476702497 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4219999999999, + "y": 321.061754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 591.6069999999999, + "y": 317.73775476702497 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 587.7269999999999, + "y": 313.35875476702495 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 585.0079999999999, + "y": 308.17775476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 583.608, + "y": 302.496754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 583.608, + "y": 296.64675476702496 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 585.0079999999999, + "y": 290.965754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 587.7269999999999, + "y": 285.78475476702494 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 591.6069999999999, + "y": 281.405754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 596.4219999999999, + "y": 278.08175476702496 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 601.8929999999999, + "y": 276.006754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 607.7009999999999, + "y": 275.301754767025 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 613.5089999999999, + "y": 276.006754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 618.9799999999999, + "y": 278.08175476702496 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 623.795, + "y": 281.405754767025 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 627.675, + "y": 285.78475476702494 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 630.3939999999999, + "y": 290.965754767025 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 631.7939999999999, + "y": 296.64675476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2662.7031859999993, + "axes": { + "#": 2199 + }, + "bounds": { + "#": 2213 + }, + "circleRadius": 29.255208333333336, + "collisionFilter": { + "#": 2216 + }, + "constraintImpulse": { + "#": 2217 + }, + "density": 0.001, + "force": { + "#": 2218 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 4513.71283136672, + "inverseInertia": 0.00022154710265367218, + "inverseMass": 0.3755581941155946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6627031859999994, + "motion": 0, + "parent": null, + "position": { + "#": 2219 + }, + "positionImpulse": { + "#": 2220 + }, + "positionPrev": { + "#": 2221 + }, + "region": { + "#": 2222 + }, + "render": { + "#": 2223 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2225 + }, + "vertices": { + "#": 2226 + } + }, + [ + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "x": -0.9709378772487557, + "y": -0.23933164964893425 + }, + { + "x": -0.8854927136371952, + "y": -0.4646532622240331 + }, + { + "x": -0.7484956802859418, + "y": -0.6631396659779034 + }, + { + "x": -0.568044391747725, + "y": -0.8229979155526198 + }, + { + "x": -0.3545858497834421, + "y": -0.9350234623437822 + }, + { + "x": -0.12052615754469004, + "y": -0.9927101517298554 + }, + { + "x": 0.12052615754469004, + "y": -0.9927101517298554 + }, + { + "x": 0.3545858497834421, + "y": -0.9350234623437822 + }, + { + "x": 0.568044391747725, + "y": -0.8229979155526198 + }, + { + "x": 0.7484956802859418, + "y": -0.6631396659779034 + }, + { + "x": 0.8854927136371952, + "y": -0.4646532622240331 + }, + { + "x": 0.9709378772487557, + "y": -0.23933164964893425 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2214 + }, + "min": { + "#": 2215 + } + }, + { + "x": 158.084, + "y": 403.05775476702496 + }, + { + "x": 100, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.042, + "y": 373.80275476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.042, + "y": 370.8954840519894 + }, + { + "endCol": 3, + "endRow": 8, + "id": "2,3,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2224 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.084, + "y": 377.328754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.39600000000002, + "y": 384.176754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 153.119, + "y": 390.421754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 148.442, + "y": 395.700754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 142.638, + "y": 399.70675476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 136.043, + "y": 402.20775476702494 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 129.042, + "y": 403.05775476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 122.041, + "y": 402.20775476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 115.446, + "y": 399.70675476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 109.642, + "y": 395.700754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.965, + "y": 390.421754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.688, + "y": 384.176754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 377.328754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 370.27675476702495 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.688, + "y": 363.42875476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.965, + "y": 357.18375476702494 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 109.642, + "y": 351.90475476702494 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 115.446, + "y": 347.89875476702497 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 122.041, + "y": 345.397754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 129.042, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 136.043, + "y": 345.397754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 142.638, + "y": 347.89875476702497 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 148.442, + "y": 351.90475476702494 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 153.119, + "y": 357.18375476702494 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 156.39600000000002, + "y": 363.42875476702494 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 158.084, + "y": 370.27675476702495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1305.135712, + "axes": { + "#": 2254 + }, + "bounds": { + "#": 2266 + }, + "circleRadius": 20.521540637860085, + "collisionFilter": { + "#": 2269 + }, + "constraintImpulse": { + "#": 2270 + }, + "density": 0.001, + "force": { + "#": 2271 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1084.445370223285, + "inverseInertia": 0.0009221303603279731, + "inverseMass": 0.7662038444014319, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.305135712, + "motion": 0, + "parent": null, + "position": { + "#": 2272 + }, + "positionImpulse": { + "#": 2273 + }, + "positionPrev": { + "#": 2274 + }, + "region": { + "#": 2275 + }, + "render": { + "#": 2276 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2278 + }, + "vertices": { + "#": 2279 + } + }, + [ + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + } + ], + { + "x": -0.9594690362006828, + "y": -0.2818140673780016 + }, + { + "x": -0.8412563391286896, + "y": -0.5406364507465208 + }, + { + "x": -0.654884909729583, + "y": -0.7557286252408836 + }, + { + "x": -0.41536319054833765, + "y": -0.9096556600920512 + }, + { + "x": -0.14242786467425667, + "y": -0.9898051845511477 + }, + { + "x": 0.14242786467425667, + "y": -0.9898051845511477 + }, + { + "x": 0.41536319054833765, + "y": -0.9096556600920512 + }, + { + "x": 0.654884909729583, + "y": -0.7557286252408836 + }, + { + "x": 0.8412563391286896, + "y": -0.5406364507465208 + }, + { + "x": 0.9594690362006828, + "y": -0.2818140673780016 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2267 + }, + "min": { + "#": 2268 + } + }, + { + "x": 208.70999999999998, + "y": 385.59175476702495 + }, + { + "x": 168.084, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 188.397, + "y": 365.06975476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 188.397, + "y": 362.1624840519894 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2277 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 208.70999999999998, + "y": 367.99075476702495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 207.064, + "y": 373.59475476702494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 203.906, + "y": 378.508754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 199.492, + "y": 382.33375476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 194.179, + "y": 384.75975476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 188.397, + "y": 385.59175476702495 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 182.61499999999998, + "y": 384.75975476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 177.302, + "y": 382.33375476702497 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 172.88799999999998, + "y": 378.508754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 169.73, + "y": 373.59475476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 168.084, + "y": 367.99075476702495 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 168.084, + "y": 362.14875476702497 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 169.73, + "y": 356.544754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 172.88799999999998, + "y": 351.63075476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 177.302, + "y": 347.80575476702495 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.61499999999998, + "y": 345.37975476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.397, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 194.179, + "y": 345.37975476702496 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 199.492, + "y": 347.80575476702495 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 203.906, + "y": 351.63075476702494 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 207.064, + "y": 356.544754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 208.70999999999998, + "y": 362.14875476702497 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 846.9227020000002, + "axes": { + "#": 2303 + }, + "bounds": { + "#": 2313 + }, + "circleRadius": 16.587255658436213, + "collisionFilter": { + "#": 2316 + }, + "constraintImpulse": { + "#": 2317 + }, + "density": 0.001, + "force": { + "#": 2318 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 456.671614806992, + "inverseInertia": 0.002189757295124727, + "inverseMass": 1.180745300177347, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8469227020000002, + "motion": 0, + "parent": null, + "position": { + "#": 2319 + }, + "positionImpulse": { + "#": 2320 + }, + "positionPrev": { + "#": 2321 + }, + "region": { + "#": 2322 + }, + "render": { + "#": 2323 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2325 + }, + "vertices": { + "#": 2326 + } + }, + [ + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + } + ], + { + "x": -0.9397224538209651, + "y": -0.34193816661014065 + }, + { + "x": -0.7660398849238614, + "y": -0.6427930418928298 + }, + { + "x": -0.49994785700763544, + "y": -0.8660555064621855 + }, + { + "x": -0.17359717004583367, + "y": -0.9848167456700144 + }, + { + "x": 0.17359717004583367, + "y": -0.9848167456700144 + }, + { + "x": 0.49994785700763544, + "y": -0.8660555064621855 + }, + { + "x": 0.7660398849238614, + "y": -0.6427930418928298 + }, + { + "x": 0.9397224538209651, + "y": -0.34193816661014065 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2314 + }, + "min": { + "#": 2315 + } + }, + { + "x": 251.38, + "y": 377.72175476702495 + }, + { + "x": 218.70999999999998, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.045, + "y": 361.13475476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.045, + "y": 358.2274840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2324 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.38, + "y": 364.01475476702495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.41, + "y": 369.42875476702494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 245.707, + "y": 373.84175476702495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240.718, + "y": 376.72175476702495 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 235.045, + "y": 377.72175476702495 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 229.37199999999999, + "y": 376.72175476702495 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 224.38299999999998, + "y": 373.84175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 220.67999999999998, + "y": 369.42875476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 218.70999999999998, + "y": 364.01475476702495 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 218.70999999999998, + "y": 358.25475476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 220.67999999999998, + "y": 352.840754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 224.38299999999998, + "y": 348.42775476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 229.37199999999999, + "y": 345.54775476702497 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 235.045, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 240.718, + "y": 345.54775476702497 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 245.707, + "y": 348.42775476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 249.41, + "y": 352.840754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 251.38, + "y": 358.25475476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 898.1826519999998, + "axes": { + "#": 2346 + }, + "bounds": { + "#": 2356 + }, + "circleRadius": 17.081983024691358, + "collisionFilter": { + "#": 2359 + }, + "constraintImpulse": { + "#": 2360 + }, + "density": 0.001, + "force": { + "#": 2361 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 513.6245747933785, + "inverseInertia": 0.0019469473406763707, + "inverseMass": 1.113359290310586, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8981826519999999, + "motion": 0, + "parent": null, + "position": { + "#": 2362 + }, + "positionImpulse": { + "#": 2363 + }, + "positionPrev": { + "#": 2364 + }, + "region": { + "#": 2365 + }, + "render": { + "#": 2366 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2368 + }, + "vertices": { + "#": 2369 + } + }, + [ + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + } + ], + { + "x": -0.9396998827734749, + "y": -0.3420001905197095 + }, + { + "x": -0.7661031888474107, + "y": -0.6427175927558143 + }, + { + "x": -0.4999461844763897, + "y": -0.8660564719621346 + }, + { + "x": -0.17363146536903049, + "y": -0.9848106996950241 + }, + { + "x": 0.17363146536903049, + "y": -0.9848106996950241 + }, + { + "x": 0.4999461844763897, + "y": -0.8660564719621346 + }, + { + "x": 0.7661031888474107, + "y": -0.6427175927558143 + }, + { + "x": 0.9396998827734749, + "y": -0.3420001905197095 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2357 + }, + "min": { + "#": 2358 + } + }, + { + "x": 295.024, + "y": 378.71175476702496 + }, + { + "x": 261.38, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 278.202, + "y": 361.62975476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 278.202, + "y": 358.7224840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2367 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 295.024, + "y": 364.59575476702497 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 292.995, + "y": 370.17075476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 289.182, + "y": 374.715754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 284.044, + "y": 377.681754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 278.202, + "y": 378.71175476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 272.36, + "y": 377.681754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 267.222, + "y": 374.715754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 263.409, + "y": 370.17075476702496 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 261.38, + "y": 364.59575476702497 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 261.38, + "y": 358.66375476702495 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 263.409, + "y": 353.08875476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 267.222, + "y": 348.54375476702495 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 272.36, + "y": 345.57775476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 278.202, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 284.044, + "y": 345.57775476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 289.182, + "y": 348.54375476702495 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 292.995, + "y": 353.08875476702497 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 295.024, + "y": 358.66375476702495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1854.22627, + "axes": { + "#": 2389 + }, + "bounds": { + "#": 2403 + }, + "circleRadius": 24.41313014403292, + "collisionFilter": { + "#": 2406 + }, + "constraintImpulse": { + "#": 2407 + }, + "density": 0.001, + "force": { + "#": 2408 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 2188.839254784345, + "inverseInertia": 0.00045686315146907617, + "inverseMass": 0.5393085062914139, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.85422627, + "motion": 0, + "parent": null, + "position": { + "#": 2409 + }, + "positionImpulse": { + "#": 2410 + }, + "positionPrev": { + "#": 2411 + }, + "region": { + "#": 2412 + }, + "render": { + "#": 2413 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2415 + }, + "vertices": { + "#": 2416 + } + }, + [ + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + } + ], + { + "x": -0.9709566027946952, + "y": -0.2392556697120981 + }, + { + "x": -0.8854520946598297, + "y": -0.46473066184890355 + }, + { + "x": -0.7484676895553821, + "y": -0.6631712581917494 + }, + { + "x": -0.5681140193004913, + "y": -0.8229498533168597 + }, + { + "x": -0.35460301319631593, + "y": -0.9350169533393997 + }, + { + "x": -0.120478534099192, + "y": -0.9927159325916501 + }, + { + "x": 0.120478534099192, + "y": -0.9927159325916501 + }, + { + "x": 0.35460301319631593, + "y": -0.9350169533393997 + }, + { + "x": 0.5681140193004913, + "y": -0.8229498533168597 + }, + { + "x": 0.7484676895553821, + "y": -0.6631712581917494 + }, + { + "x": 0.8854520946598297, + "y": -0.46473066184890355 + }, + { + "x": 0.9709566027946952, + "y": -0.2392556697120981 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2404 + }, + "min": { + "#": 2405 + } + }, + { + "x": 353.494, + "y": 393.373754767025 + }, + { + "x": 305.024, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 329.259, + "y": 368.960754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 329.259, + "y": 366.0534840519894 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2414 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.494, + "y": 371.90375476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.086, + "y": 377.61775476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.351, + "y": 382.828754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 345.44800000000004, + "y": 387.233754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 340.60400000000004, + "y": 390.577754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 335.101, + "y": 392.664754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 329.259, + "y": 393.373754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.41700000000003, + "y": 392.664754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 317.914, + "y": 390.577754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 313.07, + "y": 387.233754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 309.16700000000003, + "y": 382.828754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 306.432, + "y": 377.61775476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.024, + "y": 371.90375476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 305.024, + "y": 366.017754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.432, + "y": 360.303754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 309.16700000000003, + "y": 355.092754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 313.07, + "y": 350.68775476702496 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 317.914, + "y": 347.34375476702496 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 323.41700000000003, + "y": 345.256754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 329.259, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 335.101, + "y": 345.256754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 340.60400000000004, + "y": 347.34375476702496 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 345.44800000000004, + "y": 350.68775476702496 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 349.351, + "y": 355.092754767025 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 352.086, + "y": 360.303754767025 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 353.494, + "y": 366.017754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 729.1471280000001, + "axes": { + "#": 2444 + }, + "bounds": { + "#": 2453 + }, + "circleRadius": 15.432548868312757, + "collisionFilter": { + "#": 2456 + }, + "constraintImpulse": { + "#": 2457 + }, + "density": 0.001, + "force": { + "#": 2458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 338.50797726007636, + "inverseInertia": 0.0029541401301503094, + "inverseMass": 1.3714653210565755, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.729147128, + "motion": 0, + "parent": null, + "position": { + "#": 2459 + }, + "positionImpulse": { + "#": 2460 + }, + "positionPrev": { + "#": 2461 + }, + "region": { + "#": 2462 + }, + "render": { + "#": 2463 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2465 + }, + "vertices": { + "#": 2466 + } + }, + [ + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + } + ], + { + "x": -0.9238953882746169, + "y": -0.3826451509230121 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3826451509230121, + "y": -0.9238953882746169 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826451509230121, + "y": -0.9238953882746169 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238953882746169, + "y": -0.3826451509230121 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2454 + }, + "min": { + "#": 2455 + } + }, + { + "x": 393.7660000000001, + "y": 374.819754767025 + }, + { + "x": 363.494, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.63000000000005, + "y": 359.683754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.63000000000005, + "y": 356.7764840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2464 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 393.7660000000001, + "y": 362.694754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 391.46200000000005, + "y": 368.257754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 387.20400000000006, + "y": 372.515754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 381.6410000000001, + "y": 374.819754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 375.619, + "y": 374.819754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370.05600000000004, + "y": 372.515754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 365.79800000000006, + "y": 368.257754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 363.494, + "y": 362.694754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 363.494, + "y": 356.67275476702497 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 365.79800000000006, + "y": 351.109754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 370.05600000000004, + "y": 346.851754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.619, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 381.6410000000001, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 387.20400000000006, + "y": 346.851754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 391.46200000000005, + "y": 351.109754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 393.7660000000001, + "y": 356.67275476702497 + }, + { + "angle": -0.0001856931632692789, + "anglePrev": 0, + "angularSpeed": 0.0001856931632692789, + "angularVelocity": -0.0001856931632692789, + "area": 2457.1139139999996, + "axes": { + "#": 2484 + }, + "bounds": { + "#": 2498 + }, + "circleRadius": 28.10320216049383, + "collisionFilter": { + "#": 2501 + }, + "constraintImpulse": { + "#": 2502 + }, + "density": 0.001, + "force": { + "#": 2503 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 3843.6071437918877, + "inverseInertia": 0.0002601722711477365, + "inverseMass": 0.4069815380973013, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.457113914, + "motion": 0, + "parent": null, + "position": { + "#": 2504 + }, + "positionImpulse": { + "#": 2505 + }, + "positionPrev": { + "#": 2506 + }, + "region": { + "#": 2507 + }, + "render": { + "#": 2508 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.706740283153162, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2510 + }, + "vertices": { + "#": 2511 + } + }, + [ + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + } + ], + { + "x": -0.9710060383403275, + "y": -0.23905495917596523 + }, + { + "x": -0.8854811674613472, + "y": -0.4646752651812767 + }, + { + "x": -0.7487363997659082, + "y": -0.6628678628999793 + }, + { + "x": -0.568134099635971, + "y": -0.8229359907251746 + }, + { + "x": -0.35488569391720237, + "y": -0.9349096984484146 + }, + { + "x": -0.12062149347874421, + "y": -0.9926985722317512 + }, + { + "x": 0.12025281049258935, + "y": -0.9927433009437201 + }, + { + "x": 0.3545384567723302, + "y": -0.93504143366457 + }, + { + "x": 0.5678284332876811, + "y": -0.8231469312036931 + }, + { + "x": 0.7484901680752016, + "y": -0.6631458876406882 + }, + { + "x": 0.8853085323593097, + "y": -0.46500408872590054 + }, + { + "x": 0.970917189634875, + "y": -0.23941556104713876 + }, + { + "x": 0.9999999827590246, + "y": -0.0001856931622021018 + }, + { + "max": { + "#": 2499 + }, + "min": { + "#": 2500 + } + }, + { + "x": 460.58141457712463, + "y": 399.01707878517664 + }, + { + "x": 404.78415765362126, + "y": 342.8110797542229 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.68278611537295, + "y": 370.91407926969976 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 431.88035747782425, + "y": 369.40773579101386 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2509 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.8024286375487191, + "y": 1.5063434786858678 + }, + [ + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + }, + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460.58141457712463, + "y": 374.29589874346544 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 458.9616362803863, + "y": 380.87519963865304 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 455.81375012226505, + "y": 386.8737842830094 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 451.32269203543024, + "y": 391.9466183292478 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 445.7474066788541, + "y": 395.795653687977 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 439.41385300872713, + "y": 398.1998298270363 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 432.6880046503103, + "y": 399.01707878517664 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 425.9618532406528, + "y": 398.2023277714542 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 419.6274071291883, + "y": 395.8005039933737 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 414.05069267803583, + "y": 391.9535394847894 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 409.55775091976363, + "y": 386.88237370592026 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 406.4076371864686, + "y": 380.88495855709937 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 404.785415539102, + "y": 374.3062596791437 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 404.78415765362126, + "y": 367.53225979593407 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 406.4039359503596, + "y": 360.95295890074647 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 409.55182210848085, + "y": 354.9543742563901 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 414.04288019531566, + "y": 349.8815402101517 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 419.6181655518918, + "y": 346.0325048514225 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 425.95171922201877, + "y": 343.6283287123632 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 432.6775675804356, + "y": 342.8110797542229 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 439.4037189900931, + "y": 343.62583076794533 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 445.73816510155757, + "y": 346.0276545460258 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 451.31487955271007, + "y": 349.8746190546101 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 455.80782131098226, + "y": 354.94578483347925 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 458.9579350442773, + "y": 360.94319998230014 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 460.5801566916439, + "y": 367.5218988602558 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1019.7387239999998, + "axes": { + "#": 2539 + }, + "bounds": { + "#": 2550 + }, + "circleRadius": 18.165830761316872, + "collisionFilter": { + "#": 2553 + }, + "constraintImpulse": { + "#": 2554 + }, + "density": 0.001, + "force": { + "#": 2555 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 662.0361846508167, + "inverseInertia": 0.0015104914552781406, + "inverseMass": 0.9806433515414879, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0197387239999998, + "motion": 0, + "parent": null, + "position": { + "#": 2556 + }, + "positionImpulse": { + "#": 2557 + }, + "positionPrev": { + "#": 2558 + }, + "region": { + "#": 2559 + }, + "render": { + "#": 2560 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2562 + }, + "vertices": { + "#": 2563 + } + }, + [ + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + } + ], + { + "x": -0.9510663909208378, + "y": -0.3089866017496747 + }, + { + "x": -0.808987086398412, + "y": -0.5878264148884501 + }, + { + "x": -0.5878264148884501, + "y": -0.808987086398412 + }, + { + "x": -0.3089866017496747, + "y": -0.9510663909208378 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089866017496747, + "y": -0.9510663909208378 + }, + { + "x": 0.5878264148884501, + "y": -0.808987086398412 + }, + { + "x": 0.808987086398412, + "y": -0.5878264148884501 + }, + { + "x": 0.9510663909208378, + "y": -0.3089866017496747 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2551 + }, + "min": { + "#": 2552 + } + }, + { + "x": 505.44600000000014, + "y": 380.431754767025 + }, + { + "x": 469.5620000000001, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.50400000000013, + "y": 362.489754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.50400000000013, + "y": 359.5824840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2561 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + }, + { + "#": 2570 + }, + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + }, + { + "#": 2582 + }, + { + "#": 2583 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.44600000000014, + "y": 365.33175476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 503.6900000000001, + "y": 370.736754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500.34900000000016, + "y": 375.334754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 495.75100000000015, + "y": 378.67575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 490.3460000000001, + "y": 380.431754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 484.66200000000015, + "y": 380.431754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 479.2570000000001, + "y": 378.67575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 474.6590000000001, + "y": 375.334754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 471.31800000000015, + "y": 370.736754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 469.5620000000001, + "y": 365.33175476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 469.5620000000001, + "y": 359.647754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 471.31800000000015, + "y": 354.24275476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 474.6590000000001, + "y": 349.64475476702495 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 479.2570000000001, + "y": 346.303754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 484.66200000000015, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 490.3460000000001, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 495.75100000000015, + "y": 346.303754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 500.34900000000016, + "y": 349.64475476702495 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 503.6900000000001, + "y": 354.24275476702496 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 505.44600000000014, + "y": 359.647754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2071.7926880000005, + "axes": { + "#": 2585 + }, + "bounds": { + "#": 2599 + }, + "circleRadius": 25.80561985596708, + "collisionFilter": { + "#": 2602 + }, + "constraintImpulse": { + "#": 2603 + }, + "density": 0.001, + "force": { + "#": 2604 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 2732.6310663398754, + "inverseInertia": 0.00036594768035752963, + "inverseMass": 0.48267377609356626, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.0717926880000004, + "motion": 0, + "parent": null, + "position": { + "#": 2605 + }, + "positionImpulse": { + "#": 2606 + }, + "positionPrev": { + "#": 2607 + }, + "region": { + "#": 2608 + }, + "render": { + "#": 2609 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2611 + }, + "vertices": { + "#": 2612 + } + }, + [ + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + } + ], + { + "x": -0.9709689408513394, + "y": -0.23920559337529684 + }, + { + "x": -0.8854442113024813, + "y": -0.46474568171304914 + }, + { + "x": -0.7484901643729688, + "y": -0.663145891819384 + }, + { + "x": -0.5680559468352687, + "y": -0.8229899399537556 + }, + { + "x": -0.3546445414924918, + "y": -0.935001202774403 + }, + { + "x": -0.12055217685565543, + "y": -0.9927069923473707 + }, + { + "x": 0.12055217685565543, + "y": -0.9927069923473707 + }, + { + "x": 0.3546445414924918, + "y": -0.935001202774403 + }, + { + "x": 0.5680559468352687, + "y": -0.8229899399537556 + }, + { + "x": 0.7484901643729688, + "y": -0.663145891819384 + }, + { + "x": 0.8854442113024813, + "y": -0.46474568171304914 + }, + { + "x": 0.9709689408513394, + "y": -0.23920559337529684 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2600 + }, + "min": { + "#": 2601 + } + }, + { + "x": 566.6800000000001, + "y": 396.15975476702494 + }, + { + "x": 515.4460000000001, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.0630000000001, + "y": 370.35375476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.0630000000001, + "y": 367.4464840519894 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2610 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 566.6800000000001, + "y": 373.46475476702494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 565.1920000000001, + "y": 379.50475476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 562.3010000000002, + "y": 385.01275476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 558.1750000000001, + "y": 389.6697547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.0550000000001, + "y": 393.203754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 547.2390000000001, + "y": 395.40975476702494 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 541.0630000000001, + "y": 396.15975476702494 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 534.8870000000002, + "y": 395.40975476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 529.0710000000001, + "y": 393.203754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 523.951, + "y": 389.6697547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 519.825, + "y": 385.01275476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 516.9340000000001, + "y": 379.50475476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 515.4460000000001, + "y": 373.46475476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 515.4460000000001, + "y": 367.24275476702496 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 516.9340000000001, + "y": 361.20275476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 519.825, + "y": 355.69475476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 523.951, + "y": 351.037754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 529.0710000000001, + "y": 347.50375476702493 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 534.8870000000002, + "y": 345.29775476702497 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 541.0630000000001, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 547.2390000000001, + "y": 345.29775476702497 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 553.0550000000001, + "y": 347.50375476702493 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 558.1750000000001, + "y": 351.037754767025 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 562.3010000000002, + "y": 355.69475476702496 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 565.1920000000001, + "y": 361.20275476702494 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 566.6800000000001, + "y": 367.24275476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1547.12858, + "axes": { + "#": 2640 + }, + "bounds": { + "#": 2653 + }, + "circleRadius": 22.31886574074074, + "collisionFilter": { + "#": 2656 + }, + "constraintImpulse": { + "#": 2657 + }, + "density": 0.001, + "force": { + "#": 2658 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1523.8575386219945, + "inverseInertia": 0.0006562293223973467, + "inverseMass": 0.6463586885583873, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.54712858, + "motion": 0, + "parent": null, + "position": { + "#": 2659 + }, + "positionImpulse": { + "#": 2660 + }, + "positionPrev": { + "#": 2661 + }, + "region": { + "#": 2662 + }, + "render": { + "#": 2663 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2665 + }, + "vertices": { + "#": 2666 + } + }, + [ + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + } + ], + { + "x": -0.9659266009741097, + "y": -0.2588161539212787 + }, + { + "x": -0.8660484012741211, + "y": -0.4999601650637169 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.4999601650637169, + "y": -0.8660484012741211 + }, + { + "x": -0.2588161539212787, + "y": -0.9659266009741097 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588161539212787, + "y": -0.9659266009741097 + }, + { + "x": 0.4999601650637169, + "y": -0.8660484012741211 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660484012741211, + "y": -0.4999601650637169 + }, + { + "x": 0.9659266009741097, + "y": -0.2588161539212787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2654 + }, + "min": { + "#": 2655 + } + }, + { + "x": 620.9360000000001, + "y": 388.80375476702494 + }, + { + "x": 576.6800000000001, + "y": 344.54775476702497 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.8080000000001, + "y": 366.67575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.8080000000001, + "y": 363.7684840519894 + }, + { + "endCol": 12, + "endRow": 8, + "id": "12,12,7,8", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2664 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + }, + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 620.9360000000001, + "y": 369.58875476702497 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 619.4280000000001, + "y": 375.21675476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.5150000000001, + "y": 380.26275476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 612.3950000000001, + "y": 384.38275476702495 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 607.3490000000002, + "y": 387.29575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 601.7210000000001, + "y": 388.80375476702494 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 595.8950000000001, + "y": 388.80375476702494 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 590.267, + "y": 387.29575476702496 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 585.2210000000001, + "y": 384.38275476702495 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 581.1010000000001, + "y": 380.26275476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 578.1880000000001, + "y": 375.21675476702495 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 576.6800000000001, + "y": 369.58875476702497 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 576.6800000000001, + "y": 363.76275476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 578.1880000000001, + "y": 358.13475476702496 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 581.1010000000001, + "y": 353.08875476702497 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 585.2210000000001, + "y": 348.96875476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 590.267, + "y": 346.05575476702495 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 595.8950000000001, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 601.7210000000001, + "y": 344.54775476702497 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 607.3490000000002, + "y": 346.05575476702495 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 612.3950000000001, + "y": 348.96875476702496 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 616.5150000000001, + "y": 353.08875476702497 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 619.4280000000001, + "y": 358.13475476702496 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 620.9360000000001, + "y": 363.76275476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1470.04091, + "axes": { + "#": 2692 + }, + "bounds": { + "#": 2704 + }, + "circleRadius": 21.779642489711932, + "collisionFilter": { + "#": 2707 + }, + "constraintImpulse": { + "#": 2708 + }, + "density": 0.001, + "force": { + "#": 2709 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 1375.7995858087013, + "inverseInertia": 0.0007268500516462908, + "inverseMass": 0.6802531774438849, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.47004091, + "motion": 0, + "parent": null, + "position": { + "#": 2710 + }, + "positionImpulse": { + "#": 2711 + }, + "positionPrev": { + "#": 2712 + }, + "region": { + "#": 2713 + }, + "render": { + "#": 2714 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2716 + }, + "vertices": { + "#": 2717 + } + }, + [ + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + } + ], + { + "x": -0.959470748479457, + "y": -0.28180823765864343 + }, + { + "x": -0.8412885288941503, + "y": -0.5405863586432017 + }, + { + "x": -0.654807695437231, + "y": -0.7557955292247914 + }, + { + "x": -0.4153823096539656, + "y": -0.909646929762607 + }, + { + "x": -0.14243754050093502, + "y": -0.989803792201285 + }, + { + "x": 0.14243754050093502, + "y": -0.989803792201285 + }, + { + "x": 0.4153823096539656, + "y": -0.909646929762607 + }, + { + "x": 0.654807695437231, + "y": -0.7557955292247914 + }, + { + "x": 0.8412885288941503, + "y": -0.5405863586432017 + }, + { + "x": 0.959470748479457, + "y": -0.28180823765864343 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2705 + }, + "min": { + "#": 2706 + } + }, + { + "x": 143.11599999999999, + "y": 456.6177547670249 + }, + { + "x": 100, + "y": 413.05775476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.55799999999999, + "y": 434.83775476702493 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.55799999999999, + "y": 431.93048405198937 + }, + { + "endCol": 2, + "endRow": 9, + "id": "2,2,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2715 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + }, + { + "#": 2727 + }, + { + "#": 2728 + }, + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 143.11599999999999, + "y": 437.93775476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 141.369, + "y": 443.88575476702493 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 138.018, + "y": 449.1007547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 133.333, + "y": 453.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 127.69399999999999, + "y": 455.7347547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 121.55799999999999, + "y": 456.6177547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 115.422, + "y": 455.7347547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 109.78299999999999, + "y": 453.15975476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 105.09799999999998, + "y": 449.1007547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 101.74699999999999, + "y": 443.88575476702493 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 437.93775476702496 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 431.7377547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 101.74699999999999, + "y": 425.78975476702493 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 105.09799999999998, + "y": 420.57475476702496 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 109.78299999999999, + "y": 416.51575476702493 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 115.422, + "y": 413.94075476702494 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 121.55799999999999, + "y": 413.05775476702496 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 127.69399999999999, + "y": 413.94075476702494 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 133.333, + "y": 416.51575476702493 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 138.018, + "y": 420.57475476702496 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 141.369, + "y": 425.78975476702493 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 143.11599999999999, + "y": 431.7377547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1601.2929020000001, + "axes": { + "#": 2741 + }, + "bounds": { + "#": 2754 + }, + "circleRadius": 22.706468621399175, + "collisionFilter": { + "#": 2757 + }, + "constraintImpulse": { + "#": 2758 + }, + "density": 0.001, + "force": { + "#": 2759 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1632.4245112896238, + "inverseInertia": 0.0006125857539409249, + "inverseMass": 0.6244953679311319, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6012929020000002, + "motion": 0, + "parent": null, + "position": { + "#": 2760 + }, + "positionImpulse": { + "#": 2761 + }, + "positionPrev": { + "#": 2762 + }, + "region": { + "#": 2763 + }, + "render": { + "#": 2764 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2766 + }, + "vertices": { + "#": 2767 + } + }, + [ + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + } + ], + { + "x": -0.9659262112525419, + "y": -0.25881760839500406 + }, + { + "x": -0.866033897267781, + "y": -0.499985288566752 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.499985288566752, + "y": -0.866033897267781 + }, + { + "x": -0.25881760839500406, + "y": -0.9659262112525419 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25881760839500406, + "y": -0.9659262112525419 + }, + { + "x": 0.499985288566752, + "y": -0.866033897267781 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.866033897267781, + "y": -0.499985288566752 + }, + { + "x": 0.9659262112525419, + "y": -0.25881760839500406 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2755 + }, + "min": { + "#": 2756 + } + }, + { + "x": 198.14, + "y": 458.08175476702496 + }, + { + "x": 153.11599999999999, + "y": 413.05775476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.628, + "y": 435.56975476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.628, + "y": 432.6624840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2765 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 198.14, + "y": 438.53375476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 196.606, + "y": 444.258754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.642, + "y": 449.39275476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 189.451, + "y": 453.58375476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 184.31699999999998, + "y": 456.54775476702497 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 178.59199999999998, + "y": 458.08175476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 172.664, + "y": 458.08175476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 166.939, + "y": 456.54775476702497 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.80499999999998, + "y": 453.58375476702497 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 157.61399999999998, + "y": 449.39275476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 154.64999999999998, + "y": 444.258754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 153.11599999999999, + "y": 438.53375476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 153.11599999999999, + "y": 432.60575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 154.64999999999998, + "y": 426.88075476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 157.61399999999998, + "y": 421.746754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 161.80499999999998, + "y": 417.55575476702495 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 166.939, + "y": 414.59175476702495 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 172.664, + "y": 413.05775476702496 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 178.59199999999998, + "y": 413.05775476702496 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 184.31699999999998, + "y": 414.59175476702495 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 189.451, + "y": 417.55575476702495 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 193.642, + "y": 421.746754767025 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 196.606, + "y": 426.88075476702494 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 198.14, + "y": 432.60575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1202.792016, + "axes": { + "#": 2793 + }, + "bounds": { + "#": 2804 + }, + "circleRadius": 19.728973765432098, + "collisionFilter": { + "#": 2807 + }, + "constraintImpulse": { + "#": 2808 + }, + "density": 0.001, + "force": { + "#": 2809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 921.0537546528394, + "inverseInertia": 0.0010857129618639, + "inverseMass": 0.8313989340614313, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.202792016, + "motion": 0, + "parent": null, + "position": { + "#": 2810 + }, + "positionImpulse": { + "#": 2811 + }, + "positionPrev": { + "#": 2812 + }, + "region": { + "#": 2813 + }, + "render": { + "#": 2814 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2816 + }, + "vertices": { + "#": 2817 + } + }, + [ + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + } + ], + { + "x": -0.951085246419531, + "y": -0.3089285581539849 + }, + { + "x": -0.8089111933674096, + "y": -0.5879308473323315 + }, + { + "x": -0.5879308473323315, + "y": -0.8089111933674096 + }, + { + "x": -0.3089285581539849, + "y": -0.951085246419531 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089285581539849, + "y": -0.951085246419531 + }, + { + "x": 0.5879308473323315, + "y": -0.8089111933674096 + }, + { + "x": 0.8089111933674096, + "y": -0.5879308473323315 + }, + { + "x": 0.951085246419531, + "y": -0.3089285581539849 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2805 + }, + "min": { + "#": 2806 + } + }, + { + "x": 247.11199999999997, + "y": 452.02975476702494 + }, + { + "x": 208.14, + "y": 413.05775476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.62599999999998, + "y": 432.54375476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.62599999999998, + "y": 429.6364840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2815 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 247.11199999999997, + "y": 435.62975476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 245.20499999999998, + "y": 441.50075476702494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 241.57599999999996, + "y": 446.49375476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 236.58299999999997, + "y": 450.12275476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 230.712, + "y": 452.02975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 224.53999999999996, + "y": 452.02975476702494 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 218.66899999999998, + "y": 450.12275476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 213.676, + "y": 446.49375476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 210.04699999999997, + "y": 441.50075476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 208.14, + "y": 435.62975476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 208.14, + "y": 429.45775476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 210.04699999999997, + "y": 423.58675476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 213.676, + "y": 418.59375476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 218.66899999999998, + "y": 414.96475476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 224.53999999999996, + "y": 413.05775476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 230.712, + "y": 413.05775476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 236.58299999999997, + "y": 414.96475476702494 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 241.57599999999996, + "y": 418.59375476702496 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 245.20499999999998, + "y": 423.58675476702496 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 247.11199999999997, + "y": 429.45775476702494 + }, + { + "angle": 0, + "anglePrev": -0.0017487774058539635, + "angularSpeed": 0, + "angularVelocity": 0.0013833988196512818, + "area": 1984.2207600000002, + "axes": { + "#": 2839 + }, + "bounds": { + "#": 2853 + }, + "circleRadius": 25.254565329218106, + "collisionFilter": { + "#": 2856 + }, + "constraintImpulse": { + "#": 2857 + }, + "density": 0.001, + "force": { + "#": 2858 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 2506.50391811075, + "inverseInertia": 0.0003989620733382851, + "inverseMass": 0.5039761805536194, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9842207600000001, + "motion": 0, + "parent": null, + "position": { + "#": 2859 + }, + "positionImpulse": { + "#": 2860 + }, + "positionPrev": { + "#": 2861 + }, + "region": { + "#": 2862 + }, + "render": { + "#": 2863 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2865 + }, + "vertices": { + "#": 2866 + } + }, + [ + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + }, + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + }, + { + "#": 2851 + }, + { + "#": 2852 + } + ], + { + "x": -0.9709391703785378, + "y": -0.2393264035258891 + }, + { + "x": -0.8854840778178918, + "y": -0.4646697191887992 + }, + { + "x": -0.7485229543185438, + "y": -0.6631088800930351 + }, + { + "x": -0.5680821480971469, + "y": -0.8229718543263379 + }, + { + "x": -0.354649282244037, + "y": -0.9349994046007674 + }, + { + "x": -0.1205569990969585, + "y": -0.9927064067329957 + }, + { + "x": 0.1205569990969585, + "y": -0.9927064067329957 + }, + { + "x": 0.354649282244037, + "y": -0.9349994046007674 + }, + { + "x": 0.5680821480971469, + "y": -0.8229718543263379 + }, + { + "x": 0.7485229543185438, + "y": -0.6631088800930351 + }, + { + "x": 0.8854840778178918, + "y": -0.4646697191887992 + }, + { + "x": 0.9709391703785378, + "y": -0.2393264035258891 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2854 + }, + "min": { + "#": 2855 + } + }, + { + "x": 307.0055470162062, + "y": 464.44564968635274 + }, + { + "x": 256.8655470162062, + "y": 411.0283789713172 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 281.9355470162062, + "y": 436.2833789713172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.19887866360426, + "y": 434.8107720249877 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2864 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.25136388159199896, + "y": 1.3877293698590734 + }, + [ + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 307.0055470162062, + "y": 439.32737897131716 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 305.5485470162062, + "y": 445.23837897131716 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.7195470162062, + "y": 450.6293789713172 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 298.68254701620623, + "y": 455.1863789713172 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 293.6715470162062, + "y": 458.6453789713172 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 287.9795470162062, + "y": 460.8043789713172 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.9355470162062, + "y": 461.5383789713172 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 275.8915470162062, + "y": 460.8043789713172 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 270.1995470162062, + "y": 458.6453789713172 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 265.1885470162062, + "y": 455.1863789713172 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 261.1515470162062, + "y": 450.6293789713172 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 258.3225470162062, + "y": 445.23837897131716 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 256.8655470162062, + "y": 439.32737897131716 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 256.8655470162062, + "y": 433.2393789713172 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 258.3225470162062, + "y": 427.3283789713172 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 261.1515470162062, + "y": 421.9373789713172 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 265.1885470162062, + "y": 417.38037897131716 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 270.1995470162062, + "y": 413.92137897131715 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 275.8915470162062, + "y": 411.76237897131716 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 281.9355470162062, + "y": 411.0283789713172 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 287.9795470162062, + "y": 411.76237897131716 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 293.6715470162062, + "y": 413.92137897131715 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 298.68254701620623, + "y": 417.38037897131716 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 302.7195470162062, + "y": 421.9373789713172 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 305.5485470162062, + "y": 427.3283789713172 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 307.0055470162062, + "y": 433.2393789713172 + }, + { + "angle": 0.01108837256759295, + "anglePrev": 0.009041869471351221, + "angularSpeed": 0.0029158058805618483, + "angularVelocity": 0.002058186515953483, + "area": 2125.037534, + "axes": { + "#": 2894 + }, + "bounds": { + "#": 2908 + }, + "circleRadius": 26.135095164609055, + "collisionFilter": { + "#": 2911 + }, + "constraintImpulse": { + "#": 2912 + }, + "density": 0.001, + "force": { + "#": 2913 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 2874.892566904298, + "inverseInertia": 0.0003478390850190295, + "inverseMass": 0.4705799234132492, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.125037534, + "motion": 0, + "parent": null, + "position": { + "#": 2914 + }, + "positionImpulse": { + "#": 2915 + }, + "positionPrev": { + "#": 2916 + }, + "region": { + "#": 2917 + }, + "render": { + "#": 2918 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7163338379427144, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2920 + }, + "vertices": { + "#": 2921 + } + }, + [ + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + } + ], + { + "x": -0.9682266952151556, + "y": -0.2500741223572295 + }, + { + "x": -0.8802193425377135, + "y": -0.47456707536709203 + }, + { + "x": -0.7411128439069403, + "y": -0.6713804827340213 + }, + { + "x": -0.5589101912247325, + "y": -0.8292281942536285 + }, + { + "x": -0.3443323022492986, + "y": -0.9388478394434839 + }, + { + "x": -0.10944452861350813, + "y": -0.9939929049830122 + }, + { + "x": 0.13145933736824936, + "y": -0.9913215636808779 + }, + { + "x": 0.3650665157006251, + "y": -0.9309814386518162 + }, + { + "x": 0.5771608336013987, + "y": -0.8166304991589154 + }, + { + "x": 0.7558184222138474, + "y": -0.6547812708394842 + }, + { + "x": 0.8905263923813783, + "y": -0.4549315821881435 + }, + { + "x": 0.973533989650626, + "y": -0.22854227397778135 + }, + { + "x": 0.9999385246267818, + "y": 0.011088145346047715 + }, + { + "max": { + "#": 2909 + }, + "min": { + "#": 2910 + } + }, + { + "x": 368.0511291123346, + "y": 457.38518031915186 + }, + { + "x": 315.8450783167059, + "y": 404.4468721769686 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 342.07279643305264, + "y": 430.58026551808956 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 342.2974740194708, + "y": 430.1801370190402 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2919 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.2247508009726289, + "y": 0.407804583329721 + }, + [ + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + }, + { + "#": 2927 + }, + { + "#": 2928 + }, + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + }, + { + "#": 2946 + }, + { + "#": 2947 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.9812737966544, + "y": 434.01775380166714 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 366.4055292282901, + "y": 440.11865677215195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 363.41585955344266, + "y": 445.6638477729469 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 359.1858247041, + "y": 450.333231583831 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 353.96145898171665, + "y": 453.854519529851 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 348.04603912829185, + "y": 456.02406186815824 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 341.7830077544337, + "y": 456.7136588592105 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 335.5368081852109, + "y": 455.8853491698792 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 329.6709523414828, + "y": 453.58516630310487 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.52595556348643, + "y": 449.94889428984635 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 320.4005041010477, + "y": 445.1868579364506 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 317.5345337756808, + "y": 439.5767347565092 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 316.0944637537707, + "y": 433.4423899396607 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 316.16431906945087, + "y": 427.142777234512 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 317.7400636378152, + "y": 421.0418742640272 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 320.72973331266263, + "y": 415.4966832632322 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 324.9597681620053, + "y": 410.82729945234814 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 330.18413388438864, + "y": 407.3060115063281 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 336.09955373781344, + "y": 405.1364691680209 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 342.3625851116716, + "y": 404.4468721769686 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 348.6087846808944, + "y": 405.27518186629993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 354.4746405246225, + "y": 407.57536473307425 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 359.61963730261886, + "y": 411.2116367463328 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 363.7450887650576, + "y": 415.9736730997285 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 366.6110590904245, + "y": 421.5837962796699 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 368.0511291123346, + "y": 427.7181410965184 + }, + { + "angle": -0.04047466930945126, + "anglePrev": -0.02893355293007469, + "angularSpeed": 0.008645217396081716, + "angularVelocity": -0.011329997904895677, + "area": 1996.653286, + "axes": { + "#": 2949 + }, + "bounds": { + "#": 2963 + }, + "circleRadius": 25.3335262345679, + "collisionFilter": { + "#": 2966 + }, + "constraintImpulse": { + "#": 2967 + }, + "density": 0.001, + "force": { + "#": 2968 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 2538.0123080923295, + "inverseInertia": 0.0003940091215521487, + "inverseMass": 0.500838080908555, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.996653286, + "motion": 0, + "parent": null, + "position": { + "#": 2969 + }, + "positionImpulse": { + "#": 2970 + }, + "positionPrev": { + "#": 2971 + }, + "region": { + "#": 2972 + }, + "render": { + "#": 2973 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2214065458550487, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2975 + }, + "vertices": { + "#": 2976 + } + }, + [ + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + } + ], + { + "x": -0.9798100966755771, + "y": -0.19993042402945077 + }, + { + "x": -0.9035561871165879, + "y": -0.4284696217041913 + }, + { + "x": -0.7746953994002939, + "y": -0.6323345935088626 + }, + { + "x": -0.6009868672634104, + "y": -0.799258897590081 + }, + { + "x": -0.3920757399958459, + "y": -0.9199329400052536 + }, + { + "x": -0.1607378658631228, + "y": -0.9869971319501233 + }, + { + "x": 0.08040197643003856, + "y": -0.9967625204561732 + }, + { + "x": 0.31640518443834825, + "y": -0.9486241401422032 + }, + { + "x": 0.5343900283916407, + "y": -0.8452380123702325 + }, + { + "x": 0.7210273925145708, + "y": -0.6929065588112431 + }, + { + "x": 0.865950928904631, + "y": -0.5001289720954057 + }, + { + "x": 0.960435035687907, + "y": -0.27850411527151286 + }, + { + "x": 0.9991810123866848, + "y": -0.04046361928843868 + }, + { + "max": { + "#": 2964 + }, + "min": { + "#": 2965 + } + }, + { + "x": 430.83765367980294, + "y": 442.80148428349605 + }, + { + "x": 379.60190513570495, + "y": 391.19706609996337 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.5856745059833, + "y": 416.5103178677677 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 406.21516323253377, + "y": 415.870565598585 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2974 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.6409205765551746, + "y": 0.7081725057582844 + }, + [ + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + }, + { + "#": 2984 + }, + { + "#": 2985 + }, + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 430.83765367980294, + "y": 418.54419711811164 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 429.6167598384548, + "y": 424.5274991519521 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 426.9999113784133, + "y": 430.0459058184798 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 423.1381874820146, + "y": 434.77703988421746 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 418.25671247269, + "y": 438.447568147743 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 412.63899262772145, + "y": 440.8418423056972 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 406.6107798370366, + "y": 441.823569635572 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400.5229236715206, + "y": 441.3325041531887 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.7299963550331, + "y": 439.4003245275086 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 389.56770382784674, + "y": 436.13653656507046 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 385.3360615239134, + "y": 431.7331578155691 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 382.2815585576479, + "y": 426.44442265212257 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 380.5808471187775, + "y": 420.57943624108157 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 380.3336953321637, + "y": 414.47643861742375 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 381.55458917351183, + "y": 408.4931365835833 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 384.17143763355335, + "y": 402.9747299170556 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 388.03316152995205, + "y": 398.24359585131793 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 392.9146365392766, + "y": 394.57306758779237 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 398.5323563842452, + "y": 392.1787934298382 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 404.56056917493004, + "y": 391.19706609996337 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 410.64842534044607, + "y": 391.68813158234667 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 416.44135265693353, + "y": 393.6203112080268 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 421.6036451841199, + "y": 396.88409917046494 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 425.83528748805327, + "y": 401.2874779199663 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 428.88979045431876, + "y": 406.5762130834128 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 430.5905018931891, + "y": 412.4411994944538 + }, + { + "angle": -0.01999177216553569, + "anglePrev": -0.004054000061013576, + "angularSpeed": 0.009945655499437354, + "angularVelocity": -0.015237521012290452, + "area": 1068.0078720000001, + "axes": { + "#": 3004 + }, + "bounds": { + "#": 3015 + }, + "circleRadius": 18.59059927983539, + "collisionFilter": { + "#": 3018 + }, + "constraintImpulse": { + "#": 3019 + }, + "density": 0.001, + "force": { + "#": 3020 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 726.1942595046386, + "inverseInertia": 0.001377042006201114, + "inverseMass": 0.9363226865803475, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0680078720000001, + "motion": 0, + "parent": null, + "position": { + "#": 3021 + }, + "positionImpulse": { + "#": 3022 + }, + "positionPrev": { + "#": 3023 + }, + "region": { + "#": 3024 + }, + "render": { + "#": 3025 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1694447642403463, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3027 + }, + "vertices": { + "#": 3028 + } + }, + [ + { + "#": 3005 + }, + { + "#": 3006 + }, + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + } + ], + { + "x": -0.957018049727605, + "y": -0.290028364984481 + }, + { + "x": -0.820693573555824, + "y": -0.5713685835992135 + }, + { + "x": -0.6037174209017496, + "y": -0.7971983916816061 + }, + { + "x": -0.3280513428743422, + "y": -0.9446598945855279 + }, + { + "x": -0.019990440503703976, + "y": -0.999800171178455 + }, + { + "x": 0.290028364984481, + "y": -0.957018049727605 + }, + { + "x": 0.5713685835992135, + "y": -0.820693573555824 + }, + { + "x": 0.7971983916816061, + "y": -0.6037174209017496 + }, + { + "x": 0.9446598945855279, + "y": -0.3280513428743422 + }, + { + "x": 0.999800171178455, + "y": -0.019990440503703976 + }, + { + "max": { + "#": 3016 + }, + "min": { + "#": 3017 + } + }, + { + "x": 476.6412950490822, + "y": 446.893926590904 + }, + { + "x": 439.6587745628381, + "y": 408.901163423954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 458.0752375070017, + "y": 427.3176263681176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.71128781142585, + "y": 426.33210886010386 + }, + { + "endCol": 9, + "endRow": 9, + "id": "9,9,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3026 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3248675131880532, + "y": 0.9748796440364913 + }, + [ + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + }, + { + "#": 3038 + }, + { + "#": 3039 + }, + { + "#": 3040 + }, + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.4917004511653, + "y": 429.85798079737555 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.8046468602529, + "y": 435.4248181563604 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 471.4814048881754, + "y": 440.1982050875679 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.8446726082512, + "y": 443.7095970856663 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 461.34972087331766, + "y": 445.61782491031164 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 455.53488307774376, + "y": 445.7340893122812 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.9680457187589, + "y": 444.0470357213688 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 445.1946587875514, + "y": 440.7237937492913 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 441.683266789453, + "y": 436.0870614693671 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 439.77503896480766, + "y": 430.59210973443356 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 439.6587745628381, + "y": 424.77727193885966 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 441.3458281537505, + "y": 419.2104345798748 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.669070125828, + "y": 414.4370476486673 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.3058024057522, + "y": 410.9256556505689 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 454.80075414068574, + "y": 409.01742782592356 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 460.61559193625965, + "y": 408.901163423954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 466.1824292952445, + "y": 410.5882170148664 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 470.955816226452, + "y": 413.9114589869439 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 474.4672082245504, + "y": 418.5481912668681 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 476.37543604919574, + "y": 424.04314300180164 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2117.925184, + "axes": { + "#": 3050 + }, + "bounds": { + "#": 3064 + }, + "circleRadius": 26.091499485596707, + "collisionFilter": { + "#": 3067 + }, + "constraintImpulse": { + "#": 3068 + }, + "density": 0.001, + "force": { + "#": 3069 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 2855.6806480399814, + "inverseInertia": 0.000350179212331168, + "inverseMass": 0.47216021016916143, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.117925184, + "motion": 0, + "parent": null, + "position": { + "#": 3070 + }, + "positionImpulse": { + "#": 3071 + }, + "positionPrev": { + "#": 3072 + }, + "region": { + "#": 3073 + }, + "render": { + "#": 3074 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3076 + }, + "vertices": { + "#": 3077 + } + }, + [ + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + }, + { + "#": 3063 + } + ], + { + "x": -0.9709506945423793, + "y": -0.23927964553566064 + }, + { + "x": -0.8854796733875594, + "y": -0.4646781122642439 + }, + { + "x": -0.7485047540208849, + "y": -0.6631294241761065 + }, + { + "x": -0.5680189747008447, + "y": -0.8230154581657634 + }, + { + "x": -0.3545535808015822, + "y": -0.9350356989659677 + }, + { + "x": -0.12051179006506187, + "y": -0.992711895997683 + }, + { + "x": 0.12051179006506187, + "y": -0.992711895997683 + }, + { + "x": 0.3545535808015822, + "y": -0.9350356989659677 + }, + { + "x": 0.5680189747008447, + "y": -0.8230154581657634 + }, + { + "x": 0.7485047540208849, + "y": -0.6631294241761065 + }, + { + "x": 0.8854796733875594, + "y": -0.4646781122642439 + }, + { + "x": 0.9709506945423793, + "y": -0.23927964553566064 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3065 + }, + "min": { + "#": 3066 + } + }, + { + "x": 537.9659999999999, + "y": 465.239754767025 + }, + { + "x": 486.16399999999993, + "y": 413.05775476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.0649999999999, + "y": 439.14875476702497 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.0649999999999, + "y": 436.2414840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3075 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + }, + { + "#": 3087 + }, + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 537.9659999999999, + "y": 442.29375476702495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 536.461, + "y": 448.400754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 533.538, + "y": 453.97075476702497 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 529.367, + "y": 458.67875476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 524.1899999999999, + "y": 462.251754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 518.309, + "y": 464.48175476702494 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 512.0649999999999, + "y": 465.239754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 505.8209999999999, + "y": 464.48175476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 499.93999999999994, + "y": 462.251754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 494.7629999999999, + "y": 458.67875476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 490.5919999999999, + "y": 453.97075476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 487.6689999999999, + "y": 448.400754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 486.16399999999993, + "y": 442.29375476702495 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 486.16399999999993, + "y": 436.003754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 487.6689999999999, + "y": 429.89675476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 490.5919999999999, + "y": 424.32675476702497 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 494.7629999999999, + "y": 419.618754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 499.93999999999994, + "y": 416.04575476702496 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 505.8209999999999, + "y": 413.815754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.0649999999999, + "y": 413.05775476702496 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 518.309, + "y": 413.815754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 524.1899999999999, + "y": 416.04575476702496 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 529.367, + "y": 419.618754767025 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 533.538, + "y": 424.32675476702497 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 536.461, + "y": 429.89675476702496 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 537.9659999999999, + "y": 436.003754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2640.4216659999993, + "axes": { + "#": 3105 + }, + "bounds": { + "#": 3119 + }, + "circleRadius": 29.13252314814815, + "collisionFilter": { + "#": 3122 + }, + "constraintImpulse": { + "#": 3123 + }, + "density": 0.001, + "force": { + "#": 3124 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 4438.487332970961, + "inverseInertia": 0.00022530198353199686, + "inverseMass": 0.37872738770353664, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6404216659999995, + "motion": 0, + "parent": null, + "position": { + "#": 3125 + }, + "positionImpulse": { + "#": 3126 + }, + "positionPrev": { + "#": 3127 + }, + "region": { + "#": 3128 + }, + "render": { + "#": 3129 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3131 + }, + "vertices": { + "#": 3132 + } + }, + [ + { + "#": 3106 + }, + { + "#": 3107 + }, + { + "#": 3108 + }, + { + "#": 3109 + }, + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + } + ], + { + "x": -0.9709329680777526, + "y": -0.2393515646485853 + }, + { + "x": -0.885482871367978, + "y": -0.4646720182170656 + }, + { + "x": -0.748460967524138, + "y": -0.6631788447265422 + }, + { + "x": -0.5681654624657904, + "y": -0.8229143377418058 + }, + { + "x": -0.3545383401721488, + "y": -0.9350414778757025 + }, + { + "x": -0.12059925123212459, + "y": -0.9927012746049291 + }, + { + "x": 0.12059925123212459, + "y": -0.9927012746049291 + }, + { + "x": 0.3545383401721488, + "y": -0.9350414778757025 + }, + { + "x": 0.5681654624657904, + "y": -0.8229143377418058 + }, + { + "x": 0.748460967524138, + "y": -0.6631788447265422 + }, + { + "x": 0.885482871367978, + "y": -0.4646720182170656 + }, + { + "x": 0.9709329680777526, + "y": -0.2393515646485853 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3120 + }, + "min": { + "#": 3121 + } + }, + { + "x": 605.8059999999998, + "y": 471.3237547670249 + }, + { + "x": 547.9659999999999, + "y": 413.05775476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 576.8859999999999, + "y": 442.19075476702494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 576.8859999999999, + "y": 439.2834840519894 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3130 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 605.8059999999998, + "y": 445.70275476702494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 604.1249999999999, + "y": 452.52175476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600.8619999999999, + "y": 458.7397547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 596.2039999999998, + "y": 463.9967547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 590.4249999999998, + "y": 467.98675476702493 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 583.8579999999998, + "y": 470.47675476702494 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 576.8859999999999, + "y": 471.3237547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 569.9139999999999, + "y": 470.47675476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 563.3469999999999, + "y": 467.98675476702493 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 557.5679999999999, + "y": 463.9967547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 552.9099999999999, + "y": 458.7397547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 549.6469999999998, + "y": 452.52175476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 547.9659999999999, + "y": 445.70275476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 547.9659999999999, + "y": 438.67875476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 549.6469999999998, + "y": 431.8597547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 552.9099999999999, + "y": 425.64175476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 557.5679999999999, + "y": 420.38475476702496 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 563.3469999999999, + "y": 416.39475476702495 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 569.9139999999999, + "y": 413.90475476702494 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 576.8859999999999, + "y": 413.05775476702496 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 583.8579999999998, + "y": 413.90475476702494 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 590.4249999999998, + "y": 416.39475476702495 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 596.2039999999998, + "y": 420.38475476702496 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 600.8619999999999, + "y": 425.64175476702496 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 604.1249999999999, + "y": 431.8597547670249 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 605.8059999999998, + "y": 438.67875476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1471.137836, + "axes": { + "#": 3160 + }, + "bounds": { + "#": 3172 + }, + "circleRadius": 21.787744341563787, + "collisionFilter": { + "#": 3175 + }, + "constraintImpulse": { + "#": 3176 + }, + "density": 0.001, + "force": { + "#": 3177 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 1377.853560326475, + "inverseInertia": 0.0007257665319404883, + "inverseMass": 0.6797459595757416, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.471137836, + "motion": 0, + "parent": null, + "position": { + "#": 3178 + }, + "positionImpulse": { + "#": 3179 + }, + "positionPrev": { + "#": 3180 + }, + "region": { + "#": 3181 + }, + "render": { + "#": 3182 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3184 + }, + "vertices": { + "#": 3185 + } + }, + [ + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + } + ], + { + "x": -0.9594963577098565, + "y": -0.281721031414978 + }, + { + "x": -0.8412361011132161, + "y": -0.5406679407768089 + }, + { + "x": -0.6548323101262885, + "y": -0.7557742027978122 + }, + { + "x": -0.4153938805090625, + "y": -0.9096416459439524 + }, + { + "x": -0.14239206996108283, + "y": -0.9898103345652631 + }, + { + "x": 0.14239206996108283, + "y": -0.9898103345652631 + }, + { + "x": 0.4153938805090625, + "y": -0.9096416459439524 + }, + { + "x": 0.6548323101262885, + "y": -0.7557742027978122 + }, + { + "x": 0.8412361011132161, + "y": -0.5406679407768089 + }, + { + "x": 0.9594963577098565, + "y": -0.281721031414978 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3173 + }, + "min": { + "#": 3174 + } + }, + { + "x": 658.9379999999999, + "y": 456.633754767025 + }, + { + "x": 615.8059999999998, + "y": 413.05775476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.3719999999998, + "y": 434.84575476702497 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.3719999999998, + "y": 431.9384840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "12,13,8,9", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3183 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + }, + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 658.9379999999999, + "y": 437.94675476702497 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 657.1909999999998, + "y": 443.89675476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 653.8379999999999, + "y": 449.113754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 649.1509999999998, + "y": 453.174754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 643.5099999999999, + "y": 455.75075476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 637.3719999999998, + "y": 456.633754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 631.2339999999998, + "y": 455.75075476702494 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 625.5929999999998, + "y": 453.174754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 620.9059999999998, + "y": 449.113754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 617.5529999999999, + "y": 443.89675476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 615.8059999999998, + "y": 437.94675476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 615.8059999999998, + "y": 431.744754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 617.5529999999999, + "y": 425.794754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 620.9059999999998, + "y": 420.57775476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 625.5929999999998, + "y": 416.51675476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 631.2339999999998, + "y": 413.940754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 637.3719999999998, + "y": 413.05775476702496 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 643.5099999999999, + "y": 413.940754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 649.1509999999998, + "y": 416.51675476702496 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 653.8379999999999, + "y": 420.57775476702494 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 657.1909999999998, + "y": 425.794754767025 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 658.9379999999999, + "y": 431.744754767025 + }, + { + "angle": -0.045521055083534614, + "anglePrev": -0.0385573076670497, + "angularSpeed": 0.006963747416484915, + "angularVelocity": -0.006963747416484915, + "area": 2365.7444480000004, + "axes": { + "#": 3209 + }, + "bounds": { + "#": 3223 + }, + "circleRadius": 27.57568158436214, + "collisionFilter": { + "#": 3226 + }, + "constraintImpulse": { + "#": 3227 + }, + "density": 0.001, + "force": { + "#": 3228 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 3563.0676528597355, + "inverseInertia": 0.00028065703417037147, + "inverseMass": 0.4226999246877234, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.3657444480000005, + "motion": 0, + "parent": null, + "position": { + "#": 3229 + }, + "positionImpulse": { + "#": 3230 + }, + "positionPrev": { + "#": 3231 + }, + "region": { + "#": 3232 + }, + "render": { + "#": 3233 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1180864547259532, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3235 + }, + "vertices": { + "#": 3236 + } + }, + [ + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + } + ], + { + "x": -0.9808195530815397, + "y": -0.19491794246022778 + }, + { + "x": -0.9056712527607337, + "y": -0.423980638617854 + }, + { + "x": -0.7779358385477578, + "y": -0.6283437205089238 + }, + { + "x": -0.6048910874253753, + "y": -0.7963082144203629 + }, + { + "x": -0.3967318319688009, + "y": -0.9179345583987342 + }, + { + "x": -0.16569380703100176, + "y": -0.986177246904213 + }, + { + "x": 0.07534791308733403, + "y": -0.9971573055407977 + }, + { + "x": 0.311633479782603, + "y": -0.950202385957111 + }, + { + "x": 0.5299884781431377, + "y": -0.8480048425778717 + }, + { + "x": 0.7175872953102413, + "y": -0.6964685733106213 + }, + { + "x": 0.8633736511958047, + "y": -0.5045650982983519 + }, + { + "x": 0.9590362810322587, + "y": -0.2832832710624025 + }, + { + "x": 0.9989640956710928, + "y": -0.0455053355117378 + }, + { + "max": { + "#": 3224 + }, + "min": { + "#": 3225 + } + }, + { + "x": 121.25230993699977, + "y": 509.6343086754629 + }, + { + "x": 65.10046841051863, + "y": 452.76465446328945 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 93.75440808276261, + "y": 480.31208836551554 + }, + { + "x": -0.43133552065710745, + "y": -0.2444344725333618 + }, + { + "x": 94.9104459007694, + "y": 478.5373019577944 + }, + { + "endCol": 2, + "endRow": 10, + "id": "1,2,9,10", + "startCol": 1, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3234 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.1560378180068, + "y": 1.7747864077211188 + }, + [ + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + }, + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + }, + { + "#": 3258 + }, + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 121.25230993699977, + "y": 482.3869364598924 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 119.95664949617978, + "y": 488.90664972215285 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 117.13774035071378, + "y": 494.9281628400998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 112.960741166502, + "y": 500.099595699095 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 107.66723674597777, + "y": 504.1206438149338 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 101.5649320030874, + "y": 506.7580633539716 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 95.0092632148343, + "y": 507.85952226774174 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 88.38060386842035, + "y": 507.3586427720555 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 82.06378697392766, + "y": 505.2869455640996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 76.42662625961876, + "y": 501.7638168294303 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 71.7967579763942, + "y": 496.99355900830665 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 68.44206901061293, + "y": 491.25326886382214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 66.55902569900744, + "y": 484.8783535791601 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 66.25650622852542, + "y": 478.23724027113866 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 67.55216666934541, + "y": 471.7175270088782 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 70.37107581481143, + "y": 465.6960138909313 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 74.54807499902321, + "y": 460.5245810319361 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 79.84157941954746, + "y": 456.50353291609736 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 85.94388416243778, + "y": 453.8661133770596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 92.49955295069088, + "y": 452.76465446328945 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 99.12821229710484, + "y": 453.2655339589757 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 105.44502919159756, + "y": 455.3372311669316 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 111.08218990590646, + "y": 458.8603599016009 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 115.71205818913099, + "y": 463.6306177227244 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 119.06674715491229, + "y": 469.3709078672089 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 120.9497904665177, + "y": 475.745823151871 + }, + { + "angle": -0.026761234486610896, + "anglePrev": -0.016061216177095324, + "angularSpeed": 0.009808162469204806, + "angularVelocity": -0.011588490937321878, + "area": 1383.139406, + "axes": { + "#": 3264 + }, + "bounds": { + "#": 3276 + }, + "circleRadius": 21.125964506172842, + "collisionFilter": { + "#": 3279 + }, + "constraintImpulse": { + "#": 3280 + }, + "density": 0.001, + "force": { + "#": 3281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 1217.9465841027236, + "inverseInertia": 0.0008210540700655706, + "inverseMass": 0.7229929215103282, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.383139406, + "motion": 0, + "parent": null, + "position": { + "#": 3282 + }, + "positionImpulse": { + "#": 3283 + }, + "positionPrev": { + "#": 3284 + }, + "region": { + "#": 3285 + }, + "render": { + "#": 3286 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4722168108482485, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3288 + }, + "vertices": { + "#": 3289 + } + }, + [ + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + }, + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + } + ], + { + "x": -0.9666852195204407, + "y": -0.25596813544017 + }, + { + "x": -0.8554348784052984, + "y": -0.5179103868505754 + }, + { + "x": -0.6748116736151721, + "y": -0.7379899763226399 + }, + { + "x": -0.4395973671429438, + "y": -0.8981949425380839 + }, + { + "x": -0.16878713824527303, + "y": -0.9856525259760515 + }, + { + "x": 0.11581606443682223, + "y": -0.9932706777200089 + }, + { + "x": 0.39091720826138643, + "y": -0.9204258450766817 + }, + { + "x": 0.6343651633280342, + "y": -0.7730335306801359 + }, + { + "x": 0.8265032982304115, + "y": -0.5629318768858727 + }, + { + "x": 0.9516074338128148, + "y": -0.307316273425585 + }, + { + "x": 0.9996419395342997, + "y": -0.02675804036366594 + }, + { + "max": { + "#": 3277 + }, + "min": { + "#": 3278 + } + }, + { + "x": 197.40552469654716, + "y": 502.1697846945647 + }, + { + "x": 154.24742503803188, + "y": 459.0663331247266 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 176.42155067157188, + "y": 480.1847687393282 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.8063918783166, + "y": 479.5404006624681 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,9,10", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3287 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.3231240024395277, + "y": 0.6691904123255767 + }, + [ + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + }, + { + "#": 3297 + }, + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 197.40552469654716, + "y": 482.63115466946317 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.86649838583406, + "y": 488.44341713901264 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 192.7520313666078, + "y": 493.58759610033894 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.3150047982757, + "y": 497.64477495169797 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.9138049738515, + "y": 500.2882469974439 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.98684103229468, + "y": 501.3032043539298 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 171.01406732563524, + "y": 500.606774709933 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.4791843315542, + "y": 498.25603562576566 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 160.83146495339858, + "y": 494.44203384523155 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 157.4462600817728, + "y": 489.47183566234986 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 155.5984995013437, + "y": 483.7502294335524 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 155.4375766465966, + "y": 477.73838280919324 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 156.9766029573097, + "y": 471.9261203396438 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 160.09106997653595, + "y": 466.78194137831747 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 164.52809654486805, + "y": 462.72476252695844 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 169.92929636929225, + "y": 460.08129048121253 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 175.85626031084908, + "y": 459.0663331247266 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 181.82903401750852, + "y": 459.7627627687234 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 187.36391701158956, + "y": 462.11350185289075 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 192.01163638974518, + "y": 465.92750363342486 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 195.39684126137095, + "y": 470.89770181630655 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 197.24460184180006, + "y": 476.619308045104 + }, + { + "angle": 0.12320538727523647, + "anglePrev": 0.09667162508386491, + "angularSpeed": 0.02287040601984309, + "angularVelocity": 0.026119163060810732, + "area": 1920.5538560000002, + "axes": { + "#": 3313 + }, + "bounds": { + "#": 3327 + }, + "circleRadius": 24.846000514403293, + "collisionFilter": { + "#": 3330 + }, + "constraintImpulse": { + "#": 3331 + }, + "density": 0.001, + "force": { + "#": 3332 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 2348.234095514853, + "inverseInertia": 0.0004258519207731497, + "inverseMass": 0.5206831336053925, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9205538560000002, + "motion": 0, + "parent": null, + "position": { + "#": 3333 + }, + "positionImpulse": { + "#": 3334 + }, + "positionPrev": { + "#": 3335 + }, + "region": { + "#": 3336 + }, + "render": { + "#": 3337 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3086531723425416, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3339 + }, + "vertices": { + "#": 3340 + } + }, + [ + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + } + ], + { + "x": -0.9341434158552027, + "y": -0.3568978545948035 + }, + { + "x": -0.8216517567164382, + "y": -0.5699898162991951 + }, + { + "x": -0.661304852217999, + "y": -0.7501172524565279 + }, + { + "x": -0.4627111986942606, + "y": -0.8865090786917642 + }, + { + "x": -0.23698193998332653, + "y": -0.9715140555451263 + }, + { + "x": 0.00237077356257865, + "y": -0.9999971897124086 + }, + { + "x": 0.24162488013327785, + "y": -0.9703697322673346 + }, + { + "x": 0.46680000492013685, + "y": -0.8843629093344882 + }, + { + "x": 0.6649761075650458, + "y": -0.7468646305507048 + }, + { + "x": 0.8243017353128074, + "y": -0.566150730071325 + }, + { + "x": 0.9358676921805321, + "y": -0.3523516180361378 + }, + { + "x": 0.9929830482924329, + "y": -0.11825677910321998 + }, + { + "x": 0.9924198122194648, + "y": 0.12289392301607921 + }, + { + "max": { + "#": 3328 + }, + "min": { + "#": 3329 + } + }, + { + "x": 268.9962245001381, + "y": 508.0084266395404 + }, + { + "x": 218.3773476750646, + "y": 457.7406607041083 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 244.15012253231183, + "y": 482.41252352034434 + }, + { + "x": -0.19188246266587328, + "y": -0.01191514284039886 + }, + { + "x": 245.4329048063965, + "y": 481.6262534159907 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3338 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.2213514251237996, + "y": 0.7596551685246027 + }, + [ + { + "#": 3341 + }, + { + "#": 3342 + }, + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + }, + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + }, + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 268.26008990127167, + "y": 488.4159994691332 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 266.1222088342875, + "y": 494.01168321139653 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 262.70859802312646, + "y": 498.9324716878427 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 258.2157730721097, + "y": 502.8933550438026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 252.90592779765626, + "y": 505.6648155182392 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 247.0863577369288, + "y": 507.0843863365804 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 241.09670012105434, + "y": 507.0701861747492 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 235.28450133001502, + "y": 505.6229318040732 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 229.9869846542599, + "y": 502.82670326010583 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 225.51355541985393, + "y": 498.8437544925768 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 222.12259738259928, + "y": 493.90660181217703 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.01239951894678, + "y": 488.30178576022354 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 219.30402056448554, + "y": 482.35364224675 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 220.0401551633519, + "y": 476.40904757155545 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 222.17803623033606, + "y": 470.81336382929214 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 225.59164704149717, + "y": 465.892575352846 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 230.08447199251393, + "y": 461.931691996886 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 235.39431726696745, + "y": 459.16023152244946 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 241.2138873276948, + "y": 457.7406607041083 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 247.20354494356928, + "y": 457.7548608659395 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 253.0157437346086, + "y": 459.20211523661555 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 258.3132604103636, + "y": 461.99834378058284 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 262.78668964476964, + "y": 465.98129254811187 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 266.17764768202437, + "y": 470.91844522851164 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 268.28784554567676, + "y": 476.52326128046514 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 268.9962245001381, + "y": 482.4714047939387 + }, + { + "angle": -0.06182817553520137, + "anglePrev": -0.051840405523907965, + "angularSpeed": 0.014238487839508481, + "angularVelocity": -0.011172565582075515, + "area": 1313.5341700000001, + "axes": { + "#": 3368 + }, + "bounds": { + "#": 3380 + }, + "circleRadius": 20.58764146090535, + "collisionFilter": { + "#": 3383 + }, + "constraintImpulse": { + "#": 3384 + }, + "density": 0.001, + "force": { + "#": 3385 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1098.4469373075985, + "inverseInertia": 0.000910376246713472, + "inverseMass": 0.7613049000468712, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.31353417, + "motion": 0, + "parent": null, + "position": { + "#": 3386 + }, + "positionImpulse": { + "#": 3387 + }, + "positionPrev": { + "#": 3388 + }, + "region": { + "#": 3389 + }, + "render": { + "#": 3390 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4358897356664855, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3392 + }, + "vertices": { + "#": 3393 + } + }, + [ + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + }, + { + "#": 3379 + } + ], + { + "x": -0.9750591078606371, + "y": -0.22194534502444216 + }, + { + "x": -0.8730739505870259, + "y": -0.4875878144563951 + }, + { + "x": -0.7003170047975296, + "y": -0.7138319779832067 + }, + { + "x": -0.47088298874560064, + "y": -0.8821956760889335 + }, + { + "x": -0.20321698679599046, + "y": -0.9791337274742192 + }, + { + "x": 0.08089750146254619, + "y": -0.9967224258825111 + }, + { + "x": 0.3584761639953697, + "y": -0.9335388796655254 + }, + { + "x": 0.6069245122204606, + "y": -0.7947594834073743 + }, + { + "x": 0.8062676206951516, + "y": -0.5915509477792926 + }, + { + "x": 0.9402387778756287, + "y": -0.3405158448280258 + }, + { + "x": 0.9980892471613028, + "y": -0.06178879106265255 + }, + { + "max": { + "#": 3381 + }, + "min": { + "#": 3382 + } + }, + { + "x": 309.2950856221561, + "y": 502.89025327362464 + }, + { + "x": 267.4565245900857, + "y": 460.5994434208736 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.77498178568953, + "y": 481.14810484143055 + }, + { + "x": -0.22553777595636101, + "y": -0.0997215144340898 + }, + { + "x": 290.0102127105214, + "y": 479.65394313054253 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3391 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.2533093958039103, + "y": 1.6223775221988035 + }, + [ + { + "#": 3394 + }, + { + "#": 3395 + }, + { + "#": 3396 + }, + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + }, + { + "#": 3408 + }, + { + "#": 3409 + }, + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 309.2950856221561, + "y": 482.8133743513385 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 307.99461685844693, + "y": 488.5266453929237 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 305.1372888633789, + "y": 493.64297227151536 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300.9548332682561, + "y": 497.7462414796987 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 295.78447519787676, + "y": 500.5059848416916 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 290.04708941608743, + "y": 501.6967662619875 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 284.2066399308055, + "y": 501.22273481801835 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 278.73537044795114, + "y": 499.1217835463355 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 274.07874767021343, + "y": 495.5657158718031 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 270.6121821952677, + "y": 490.8408827733843 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 268.61696026485, + "y": 485.3316383198879 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 268.254877949223, + "y": 479.4828353315226 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 269.55534671293213, + "y": 473.7695642899374 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 272.41267470800017, + "y": 468.65323741134574 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 276.59513030312297, + "y": 464.5499682031624 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 281.7654883735023, + "y": 461.7902248411695 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 287.50287415529164, + "y": 460.5994434208736 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 293.34332364057354, + "y": 461.07347486484275 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 298.8145931234279, + "y": 463.1744261365256 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 303.47121590116564, + "y": 466.730493811058 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 306.9377813761114, + "y": 471.4553269094768 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 308.9330033065291, + "y": 476.96457136297323 + }, + { + "angle": -0.0009043305130170126, + "anglePrev": 0.005927210850577193, + "angularSpeed": 0.006034567571687996, + "angularVelocity": -0.00682651659024416, + "area": 1407.836766, + "axes": { + "#": 3417 + }, + "bounds": { + "#": 3429 + }, + "circleRadius": 21.313850308641975, + "collisionFilter": { + "#": 3432 + }, + "constraintImpulse": { + "#": 3433 + }, + "density": 0.001, + "force": { + "#": 3434 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1261.8302598027851, + "inverseInertia": 0.0007924996188919204, + "inverseMass": 0.7103096212220956, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.407836766, + "motion": 0, + "parent": null, + "position": { + "#": 3435 + }, + "positionImpulse": { + "#": 3436 + }, + "positionPrev": { + "#": 3437 + }, + "region": { + "#": 3438 + }, + "render": { + "#": 3439 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6890136627698129, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3441 + }, + "vertices": { + "#": 3442 + } + }, + [ + { + "#": 3418 + }, + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + }, + { + "#": 3422 + }, + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + } + ], + { + "x": -0.9597562360825697, + "y": -0.2808344126004124 + }, + { + "x": -0.8417527087276742, + "y": -0.5398632950568348 + }, + { + "x": -0.6554568742705458, + "y": -0.7552326038853763 + }, + { + "x": -0.41623933757713827, + "y": -0.9092550873398207 + }, + { + "x": -0.14330861942833295, + "y": -0.9896780484569438 + }, + { + "x": 0.14151839389025322, + "y": -0.9899356262862363 + }, + { + "x": 0.41459412342229773, + "y": -0.9100064355946592 + }, + { + "x": 0.6540898431561409, + "y": -0.7564168672630022 + }, + { + "x": 0.8407749027654972, + "y": -0.5413848565296866 + }, + { + "x": 0.9592467322995359, + "y": -0.28256982601237207 + }, + { + "x": 0.9999995910931895, + "y": -0.0009043303897547043 + }, + { + "max": { + "#": 3430 + }, + "min": { + "#": 3431 + } + }, + { + "x": 365.1710788901671, + "y": 499.67210516148987 + }, + { + "x": 322.8242612777305, + "y": 456.37104901435663 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.071344682802, + "y": 477.68504029891693 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.20241027455717, + "y": 477.28417775944337 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3440 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1309550791730203, + "y": 0.38927599222324716 + }, + [ + { + "#": 3443 + }, + { + "#": 3444 + }, + { + "#": 3445 + }, + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 365.1710788901671, + "y": 480.69896040046996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 363.46734369618764, + "y": 486.5215035208594 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 360.19196073971136, + "y": 491.62846763747757 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.6105546148571, + "y": 495.60461236813666 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.0948357837872, + "y": 498.1296014327822 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.0906195807293, + "y": 498.99903158347723 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 338.0848406947579, + "y": 498.1404624407631 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 332.5645640385235, + "y": 495.6254535662991 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 327.9759739130532, + "y": 491.6576015453139 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.6913595519582, + "y": 486.55656983605263 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 322.9770961435812, + "y": 480.7371177169353 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 322.97161047543693, + "y": 474.6711201973639 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 324.6753456694164, + "y": 468.84857707697444 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 327.9507286258927, + "y": 463.7416129603563 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 332.53213475074693, + "y": 459.7654682296972 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.04785358181687, + "y": 457.2404791650517 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 344.05206978487473, + "y": 456.37104901435663 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 350.05784867084617, + "y": 457.2296181570708 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 355.57812532708056, + "y": 459.7446270315348 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 360.1667154525508, + "y": 463.71247905251994 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 363.4513298136458, + "y": 468.81351076178123 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 365.16559322202284, + "y": 474.63296288089856 + }, + { + "angle": 0.05295319757221982, + "anglePrev": 0.027017906866309883, + "angularSpeed": 0.021618357986010403, + "angularVelocity": 0.027715245492435207, + "area": 971.4751299999998, + "axes": { + "#": 3466 + }, + "bounds": { + "#": 3476 + }, + "circleRadius": 17.76536779835391, + "collisionFilter": { + "#": 3479 + }, + "constraintImpulse": { + "#": 3480 + }, + "density": 0.001, + "force": { + "#": 3481 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 600.8690619118768, + "inverseInertia": 0.0016642560973569639, + "inverseMass": 1.029362429483913, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9714751299999999, + "motion": 0, + "parent": null, + "position": { + "#": 3482 + }, + "positionImpulse": { + "#": 3483 + }, + "positionPrev": { + "#": 3484 + }, + "region": { + "#": 3485 + }, + "render": { + "#": 3486 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5235616740999804, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3488 + }, + "vertices": { + "#": 3489 + } + }, + [ + { + "#": 3467 + }, + { + "#": 3468 + }, + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + }, + { + "#": 3474 + }, + { + "#": 3475 + } + ], + { + "x": -0.9202907047090432, + "y": -0.39123524742299637 + }, + { + "x": -0.7309137521618267, + "y": -0.6824698432170608 + }, + { + "x": -0.4534889798184349, + "y": -0.8912618836140338 + }, + { + "x": -0.12122295166201356, + "y": -0.992625304931498 + }, + { + "x": 0.22547271927776086, + "y": -0.9742494818379389 + }, + { + "x": 0.545162135073188, + "y": -0.8383306307671476 + }, + { + "x": 0.7989614406894251, + "y": -0.6013822547194737 + }, + { + "x": 0.9564913633244512, + "y": -0.29176064142672337 + }, + { + "x": 0.9985983070130973, + "y": 0.05292845388423674 + }, + { + "max": { + "#": 3477 + }, + "min": { + "#": 3478 + } + }, + { + "x": 429.3275360195283, + "y": 477.0945921854307 + }, + { + "x": 392.6342709244476, + "y": 441.0772718431121 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410.26803258587466, + "y": 458.8173707671998 + }, + { + "x": 0.19812611525105772, + "y": -0.1968973016711735 + }, + { + "x": 409.18999101499554, + "y": 458.30556862634336 + }, + { + "endCol": 8, + "endRow": 9, + "id": "8,8,9,9", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3487 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.1015372221543203, + "y": 0.37117940542151473 + }, + [ + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.575225686836, + "y": 462.8240298450399 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.16130408341746, + "y": 468.50222379140615 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.9507233247465, + "y": 473.01168514224514 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.4519282901427, + "y": 475.80956419027706 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.32775860262115, + "y": 476.5574696912875 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.31696166331955, + "y": 475.1663776186758 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 398.1447351891815, + "y": 471.802905112437 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 394.43443417662456, + "y": 466.87361526538814 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 392.6342709244476, + "y": 460.9720632436304 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 392.9608394849133, + "y": 454.8107116893597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 395.37476108833187, + "y": 449.13251774299346 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.5853418470027, + "y": 444.62305639215447 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 405.0841368816065, + "y": 441.82517734412255 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 411.2083065691282, + "y": 441.0772718431121 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 417.21910350842967, + "y": 442.4683639157238 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 422.3913299825678, + "y": 445.83183642196263 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.10163099512476, + "y": 450.76112626901147 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.9017942473017, + "y": 456.66267829076924 + }, + { + "angle": 0.03477447465451514, + "anglePrev": 0.025424137592529726, + "angularSpeed": 0.011843287491575908, + "angularVelocity": 0.009865332547065935, + "area": 1964.2880500000006, + "axes": { + "#": 3509 + }, + "bounds": { + "#": 3523 + }, + "circleRadius": 25.12737911522634, + "collisionFilter": { + "#": 3526 + }, + "constraintImpulse": { + "#": 3527 + }, + "density": 0.001, + "force": { + "#": 3528 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 2456.3981324941856, + "inverseInertia": 0.00040710013037854604, + "inverseMass": 0.5090903037362569, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9642880500000006, + "motion": 0, + "parent": null, + "position": { + "#": 3529 + }, + "positionImpulse": { + "#": 3530 + }, + "positionPrev": { + "#": 3531 + }, + "region": { + "#": 3532 + }, + "render": { + "#": 3533 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1405595491372567, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3535 + }, + "vertices": { + "#": 3536 + } + }, + [ + { + "#": 3510 + }, + { + "#": 3511 + }, + { + "#": 3512 + }, + { + "#": 3513 + }, + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + }, + { + "#": 3521 + }, + { + "#": 3522 + } + ], + { + "x": -0.9620578756211154, + "y": -0.2728454580076173 + }, + { + "x": -0.8687087589528005, + "y": -0.4953232198460766 + }, + { + "x": -0.725068958550751, + "y": -0.6886762703521366 + }, + { + "x": -0.5390410478697129, + "y": -0.8422794956019778 + }, + { + "x": -0.3218718556211256, + "y": -0.9467832426479739 + }, + { + "x": -0.08593181061443686, + "y": -0.9963010207384736 + }, + { + "x": 0.15495990726468178, + "y": -0.9879207595452791 + }, + { + "x": 0.3868884208886247, + "y": -0.9221265367520373 + }, + { + "x": 0.5962703271728953, + "y": -0.8027837174065802 + }, + { + "x": 0.7711741727597603, + "y": -0.6366242182546147 + }, + { + "x": 0.9010300531901746, + "y": -0.43375666363539683 + }, + { + "x": 0.9786928698205845, + "y": -0.20532965339265796 + }, + { + "x": 0.9993954288837797, + "y": 0.034767466491037693 + }, + { + "max": { + "#": 3524 + }, + "min": { + "#": 3525 + } + }, + { + "x": 486.8540657342872, + "y": 496.6103547679655 + }, + { + "x": 436.0498755557533, + "y": 445.51519923310224 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.08410578983154, + "y": 470.627008174665 + }, + { + "x": 0.021970196301369496, + "y": 0.25472440117771294 + }, + { + "x": 460.46492361519023, + "y": 469.66069069302625 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3534 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6404316438549245, + "y": 0.9721014207453322 + }, + [ + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + }, + { + "#": 3557 + }, + { + "#": 3558 + }, + { + "#": 3559 + }, + { + "#": 3560 + }, + { + "#": 3561 + }, + { + "#": 3562 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 485.9077147119073, + "y": 474.5214166129064 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 484.25512326502076, + "y": 480.3484830712265 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 481.25433304702614, + "y": 485.61133496612024 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 477.08312531155843, + "y": 490.0029676952513 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 471.9805048509483, + "y": 493.26853677811613 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 466.2452486237279, + "y": 495.2183152291533 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 460.2105036593112, + "y": 495.73881711622784 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 454.2265191959715, + "y": 494.800201677132 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 448.6406240047965, + "y": 492.4565773656844 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 443.7772732485776, + "y": 488.8443071069709 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 439.9213368992508, + "y": 484.17342208698386 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 437.29353206177194, + "y": 478.7147598208125 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 436.0498755557533, + "y": 472.78693724460146 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 436.2604968677559, + "y": 466.73259973642354 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 437.9130883146423, + "y": 460.90553327810346 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 440.91387853263694, + "y": 455.6426813832097 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 445.08508626810465, + "y": 451.25104865407866 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 450.1877067287148, + "y": 447.98547957121383 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 455.9229629559353, + "y": 446.03570112017684 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 461.9577079203519, + "y": 445.51519923310224 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 467.9416923836917, + "y": 446.45381467219806 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 473.5275875748666, + "y": 448.7974389836456 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 478.39093833108547, + "y": 452.40970924235904 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 482.2468746804123, + "y": 457.0805942623461 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 484.87467951789114, + "y": 462.53925652851746 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 486.1183360239099, + "y": 468.4670791047285 + }, + { + "angle": -0.011700579207132834, + "anglePrev": -0.008929731922411572, + "angularSpeed": 0.002068237787369895, + "angularVelocity": -0.002011036932616334, + "area": 1198.7866480000002, + "axes": { + "#": 3564 + }, + "bounds": { + "#": 3575 + }, + "circleRadius": 19.696180555555557, + "collisionFilter": { + "#": 3578 + }, + "constraintImpulse": { + "#": 3579 + }, + "density": 0.001, + "force": { + "#": 3580 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 914.9296424326485, + "inverseInertia": 0.0010929802179555177, + "inverseMass": 0.834176791732168, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1987866480000002, + "motion": 0, + "parent": null, + "position": { + "#": 3581 + }, + "positionImpulse": { + "#": 3582 + }, + "positionPrev": { + "#": 3583 + }, + "region": { + "#": 3584 + }, + "render": { + "#": 3585 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7296920963237923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3587 + }, + "vertices": { + "#": 3588 + } + }, + [ + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + }, + { + "#": 3569 + }, + { + "#": 3570 + }, + { + "#": 3571 + }, + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + } + ], + { + "x": -0.9545773267102013, + "y": -0.2979632986305619 + }, + { + "x": -0.815824803318325, + "y": -0.5782991356474748 + }, + { + "x": -0.5972303035284652, + "y": -0.8020698002962694 + }, + { + "x": -0.32021789439407, + "y": -0.947343918600752 + }, + { + "x": -0.011700312233814526, + "y": -0.9999315490040461 + }, + { + "x": 0.2979632986305619, + "y": -0.9545773267102013 + }, + { + "x": 0.5782991356474748, + "y": -0.815824803318325 + }, + { + "x": 0.8020698002962694, + "y": -0.5972303035284652 + }, + { + "x": 0.947343918600752, + "y": -0.32021789439407 + }, + { + "x": 0.9999315490040461, + "y": -0.011700312233814526 + }, + { + "max": { + "#": 3576 + }, + "min": { + "#": 3577 + } + }, + { + "x": 525.1189538204629, + "y": 511.7733730385653 + }, + { + "x": 485.72339665406366, + "y": 472.19792261782146 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.21211367038075, + "y": 491.68663963413854 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 504.7194073777297, + "y": 491.5000018324005 + }, + { + "endCol": 10, + "endRow": 10, + "id": "10,10,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3586 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.46202830285102436, + "y": 0.19194590534499412 + }, + [ + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + }, + { + "#": 3594 + }, + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + }, + { + "#": 3602 + }, + { + "#": 3603 + }, + { + "#": 3604 + }, + { + "#": 3605 + }, + { + "#": 3606 + }, + { + "#": 3607 + }, + { + "#": 3608 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 524.7008306866977, + "y": 494.5398108624234 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 522.8645366158474, + "y": 500.4226987659415 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 519.3011106018405, + "y": 505.4497360686376 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 514.3588303609662, + "y": 509.1298141956158 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 508.52052064705885, + "y": 511.1032593264709 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 502.3589424420959, + "y": 511.1753566504556 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 496.4760545385778, + "y": 509.3390625796053 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 491.4490172358817, + "y": 505.7756365655983 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 487.7689391089035, + "y": 500.8333563247239 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 485.7954939780484, + "y": 494.99504661081664 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 485.72339665406366, + "y": 488.8334684058537 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 487.559690724914, + "y": 482.9505805023356 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 491.123116738921, + "y": 477.9235431996395 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 496.06539697979537, + "y": 474.2434650726613 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 501.90370669370265, + "y": 472.2700199418062 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 508.0652848986656, + "y": 472.19792261782146 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 513.9481728021838, + "y": 474.0342166886718 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 518.9752101048798, + "y": 477.5976427026788 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 522.655288231858, + "y": 482.53992294355317 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 524.628733362713, + "y": 488.37823265746044 + }, + { + "angle": -0.11020230385616278, + "anglePrev": -0.09743702848807426, + "angularSpeed": 0.01642753679253891, + "angularVelocity": -0.010621752208428412, + "area": 1308.2308839999998, + "axes": { + "#": 3610 + }, + "bounds": { + "#": 3622 + }, + "circleRadius": 20.54584619341564, + "collisionFilter": { + "#": 3625 + }, + "constraintImpulse": { + "#": 3626 + }, + "density": 0.001, + "force": { + "#": 3627 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 1089.5950647298523, + "inverseInertia": 0.0009177721452399695, + "inverseMass": 0.7643910660039119, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3082308839999999, + "motion": 0, + "parent": null, + "position": { + "#": 3628 + }, + "positionImpulse": { + "#": 3629 + }, + "positionPrev": { + "#": 3630 + }, + "region": { + "#": 3631 + }, + "render": { + "#": 3632 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.16731836847740555, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3634 + }, + "vertices": { + "#": 3635 + } + }, + [ + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + }, + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + } + ], + { + "x": -0.9846441125976273, + "y": -0.1745736850926597 + }, + { + "x": -0.8956667949171531, + "y": -0.44472574974115775 + }, + { + "x": -0.7339215880561325, + "y": -0.6792342030442552 + }, + { + "x": -0.5129942102618723, + "y": -0.8583920667374542 + }, + { + "x": -0.2502805502509384, + "y": -0.968173355430776 + }, + { + "x": 0.032559653663658816, + "y": -0.9994697939174065 + }, + { + "x": 0.31291890150844814, + "y": -0.9497798487432477 + }, + { + "x": 0.567670132382783, + "y": -0.8232561088753084 + }, + { + "x": 0.7767718567667722, + "y": -0.6297820913102419 + }, + { + "x": 0.9226585800462991, + "y": -0.3856178738945421 + }, + { + "x": 0.9939338690435202, + "y": -0.10997937974083632 + }, + { + "max": { + "#": 3623 + }, + "min": { + "#": 3624 + } + }, + { + "x": 571.7979414786618, + "y": 509.92053762668365 + }, + { + "x": 530.6464486639044, + "y": 468.9314392437325 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.2627286775615, + "y": 489.3528045171007 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.3823888721599, + "y": 489.4803954752673 + }, + { + "endCol": 11, + "endRow": 10, + "id": "11,11,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3633 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.23342794215727736, + "y": -0.08945224326748757 + }, + [ + { + "#": 3636 + }, + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + }, + { + "#": 3647 + }, + { + "#": 3648 + }, + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + }, + { + "#": 3657 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 571.7979414786618, + "y": 490.0224165043946 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 570.7770327622038, + "y": 495.78062546141064 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 568.1763063504822, + "y": 501.01842491646556 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 564.2042296943376, + "y": 505.3103065594877 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 559.1837514037961, + "y": 508.3106561614847 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 553.5223650137168, + "y": 509.77416979046893 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 547.6779729357485, + "y": 509.58377746136466 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 542.1229948596666, + "y": 507.75360845981004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 537.3086961134666, + "y": 504.433944533697 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 533.6257726050953, + "y": 499.8914347173636 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 531.3706752891857, + "y": 494.49571779597335 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 530.7275158764613, + "y": 488.68319252980683 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 531.7484245929193, + "y": 482.9249835727908 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 534.3491510046409, + "y": 477.68718411773585 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 538.3212276607854, + "y": 473.39530247471373 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 543.341705951327, + "y": 470.3949528727167 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 549.0030923414063, + "y": 468.9314392437325 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 554.8474844193746, + "y": 469.12183157283675 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 560.4024624954565, + "y": 470.9520005743914 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 565.2167612416565, + "y": 474.2716645005044 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 568.8996847500277, + "y": 478.8141743168378 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 571.1547820659374, + "y": 484.20989123822807 + }, + { + "angle": 0.0007305574762849312, + "anglePrev": 0.0015496376253757247, + "angularSpeed": 0.00013038671040296532, + "angularVelocity": 0.0008082546017418213, + "area": 807.3207440000001, + "axes": { + "#": 3659 + }, + "bounds": { + "#": 3669 + }, + "circleRadius": 16.194894547325102, + "collisionFilter": { + "#": 3672 + }, + "constraintImpulse": { + "#": 3673 + }, + "density": 0.001, + "force": { + "#": 3674 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 414.96234834778403, + "inverseInertia": 0.002409857193023908, + "inverseMass": 1.2386650627176252, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8073207440000001, + "motion": 0, + "parent": null, + "position": { + "#": 3675 + }, + "positionImpulse": { + "#": 3676 + }, + "positionPrev": { + "#": 3677 + }, + "region": { + "#": 3678 + }, + "render": { + "#": 3679 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.27632361430027247, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3681 + }, + "vertices": { + "#": 3682 + } + }, + [ + { + "#": 3660 + }, + { + "#": 3661 + }, + { + "#": 3662 + }, + { + "#": 3663 + }, + { + "#": 3664 + }, + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + } + ], + { + "x": -0.9394186078414625, + "y": -0.34277205142953054 + }, + { + "x": -0.7656342519833372, + "y": -0.6432761399196428 + }, + { + "x": -0.49933074418000145, + "y": -0.8664114541698108 + }, + { + "x": -0.17298469494798754, + "y": -0.984924512495121 + }, + { + "x": 0.17442359771955332, + "y": -0.9846707107244368 + }, + { + "x": 0.5005961374605893, + "y": -0.8656809499807296 + }, + { + "x": 0.7665733347759405, + "y": -0.6421567740127748 + }, + { + "x": 0.9399184342709573, + "y": -0.34139908745869935 + }, + { + "x": 0.9999997331428988, + "y": 0.0007305574113001135 + }, + { + "max": { + "#": 3670 + }, + "min": { + "#": 3671 + } + }, + { + "x": 615.1903224351363, + "y": 500.13524552425235 + }, + { + "x": 583.2842814638764, + "y": 467.4689586562266 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.235331535213, + "y": 483.66395433447593 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 599.2093309305076, + "y": 483.6640416883557 + }, + { + "endCol": 12, + "endRow": 10, + "id": "12,12,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3680 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.025647838648978905, + "y": -0.00031630402480686826 + }, + [ + { + "#": 3683 + }, + { + "#": 3684 + }, + { + "#": 3685 + }, + { + "#": 3686 + }, + { + "#": 3687 + }, + { + "#": 3688 + }, + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + }, + { + "#": 3694 + }, + { + "#": 3695 + }, + { + "#": 3696 + }, + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + }, + { + "#": 3700 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.1822729516686, + "y": 486.4876052442266 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.2544124691829, + "y": 491.77119824142744 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.636265461986, + "y": 496.07755612649834 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.7632124344063, + "y": 498.8859968309457 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 599.223500157937, + "y": 499.85895001272524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 593.6852153906492, + "y": 498.8779037159434 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 588.8162710179508, + "y": 496.0623459211951 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 585.2044199545246, + "y": 491.75070610604047 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 583.2842814638764, + "y": 486.46430192392097 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 583.2883901187575, + "y": 480.8403034247253 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 585.2162506012432, + "y": 475.5567104275244 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 588.8343976084401, + "y": 471.2503525424535 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 593.7074506360198, + "y": 468.44191183800615 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 599.2471629124891, + "y": 467.4689586562266 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 604.7854476797769, + "y": 468.4500049530085 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 609.6543920524753, + "y": 471.26556274775675 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 613.2662431159015, + "y": 475.5772025629114 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 615.1863816065497, + "y": 480.8636067450309 + }, + { + "angle": 0.0035190368269367787, + "anglePrev": 0.0013299708347567225, + "angularSpeed": 0.002148897557137382, + "angularVelocity": 0.0022015808832429673, + "area": 1402.4361439999998, + "axes": { + "#": 3702 + }, + "bounds": { + "#": 3714 + }, + "circleRadius": 21.27295524691358, + "collisionFilter": { + "#": 3717 + }, + "constraintImpulse": { + "#": 3718 + }, + "density": 0.001, + "force": { + "#": 3719 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 1252.1677796786169, + "inverseInertia": 0.0007986150228659145, + "inverseMass": 0.7130449427435751, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4024361439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3720 + }, + "positionImpulse": { + "#": 3721 + }, + "positionPrev": { + "#": 3722 + }, + "region": { + "#": 3723 + }, + "render": { + "#": 3724 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.27675873259710454, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3726 + }, + "vertices": { + "#": 3727 + } + }, + [ + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + }, + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + } + ], + { + "x": -0.9585394161763271, + "y": -0.2849599754989222 + }, + { + "x": -0.8393242704340854, + "y": -0.5436310964802237 + }, + { + "x": -0.6521851980892397, + "y": -0.758059672712709 + }, + { + "x": -0.41215402605552665, + "y": -0.9111141853830509 + }, + { + "x": -0.13888525423588308, + "y": -0.9903084803008779 + }, + { + "x": 0.1458516209287285, + "y": -0.9893064766150389 + }, + { + "x": 0.41855625398388996, + "y": -0.9081908732480047 + }, + { + "x": 0.6575042810923172, + "y": -0.7534508081787925 + }, + { + "x": 0.8431295668841325, + "y": -0.5377104550274014 + }, + { + "x": 0.9605212286367273, + "y": -0.2782067025400212 + }, + { + "x": 0.9999938081962951, + "y": 0.003519029563872027 + }, + { + "max": { + "#": 3715 + }, + "min": { + "#": 3716 + } + }, + { + "x": 138.7314427190636, + "y": 580.0731983339779 + }, + { + "x": 96.54926193783147, + "y": 537.2551000269763 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.61578366570251, + "y": 558.5279683087361 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.56726455883937, + "y": 558.5590140510996 + }, + { + "endCol": 2, + "endRow": 12, + "id": "2,2,11,12", + "startCol": 2, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3725 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04770095228806781, + "y": 0.05218327070429041 + }, + [ + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + }, + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + }, + { + "#": 3748 + }, + { + "#": 3749 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 138.66100118859393, + "y": 561.6290462526434 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 136.93556618385313, + "y": 567.4330103328574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.64366051922008, + "y": 572.515457489017 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 129.05373590069308, + "y": 576.4643298592312 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 123.53691964579468, + "y": 578.9599314720073 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 117.54092334979026, + "y": 579.800836590496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 111.55099386075393, + "y": 578.9177523836547 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 106.05187832456188, + "y": 576.383385141203 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.48985961047636, + "y": 572.4023066124206 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 98.23380581904004, + "y": 567.2968168506761 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 96.54926193783147, + "y": 561.4808528796497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 96.57056614281117, + "y": 555.4268903648289 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 98.29600114755195, + "y": 549.6229262846149 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 101.58790681218497, + "y": 544.5404791284553 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 106.17783143071196, + "y": 540.591606758241 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 111.69464768561032, + "y": 538.0960051454651 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 117.69064398161476, + "y": 537.2551000269763 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 123.68057347065108, + "y": 538.1381842338177 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 129.1796890068432, + "y": 540.6725514762692 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 133.74170772092873, + "y": 544.6536300050517 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 136.99776151236495, + "y": 549.7591197667962 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 138.68230539357359, + "y": 555.5750837378226 + }, + { + "angle": -0.04421632207071538, + "anglePrev": -0.03285578213954713, + "angularSpeed": 0.010189644476547535, + "angularVelocity": -0.011017940426596484, + "area": 1669.8625200000004, + "axes": { + "#": 3751 + }, + "bounds": { + "#": 3764 + }, + "circleRadius": 23.187435699588477, + "collisionFilter": { + "#": 3767 + }, + "constraintImpulse": { + "#": 3768 + }, + "density": 0.001, + "force": { + "#": 3769 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 1775.22327984156, + "inverseInertia": 0.0005633094221754746, + "inverseMass": 0.598851694689213, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6698625200000003, + "motion": 0, + "parent": null, + "position": { + "#": 3770 + }, + "positionImpulse": { + "#": 3771 + }, + "positionPrev": { + "#": 3772 + }, + "region": { + "#": 3773 + }, + "render": { + "#": 3774 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6026088139626835, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3776 + }, + "vertices": { + "#": 3777 + } + }, + [ + { + "#": 3752 + }, + { + "#": 3753 + }, + { + "#": 3754 + }, + { + "#": 3755 + }, + { + "#": 3756 + }, + { + "#": 3757 + }, + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + } + ], + { + "x": -0.9764024372982373, + "y": -0.21595897860024826 + }, + { + "x": -0.8873490293183447, + "y": -0.46109836279018723 + }, + { + "x": -0.7376711418674997, + "y": -0.6751601931807734 + }, + { + "x": -0.5376649494011836, + "y": -0.8431585866166714 + }, + { + "x": -0.3013484443206322, + "y": -0.9535140875233754 + }, + { + "x": -0.0442019157147885, + "y": -0.999022617685477 + }, + { + "x": 0.21595897860024826, + "y": -0.9764024372982373 + }, + { + "x": 0.46109836279018723, + "y": -0.8873490293183447 + }, + { + "x": 0.6751601931807734, + "y": -0.7376711418674997 + }, + { + "x": 0.8431585866166714, + "y": -0.5376649494011836 + }, + { + "x": 0.9535140875233754, + "y": -0.3013484443206322 + }, + { + "x": 0.999022617685477, + "y": -0.0442019157147885 + }, + { + "max": { + "#": 3765 + }, + "min": { + "#": 3766 + } + }, + { + "x": 162.17166492538533, + "y": 527.7279451913939 + }, + { + "x": 115.04263444490266, + "y": 480.22096032233605 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 139.07133476854526, + "y": 503.32129047917624 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 140.12665936579018, + "y": 502.17061928301365 + }, + { + "endCol": 3, + "endRow": 10, + "id": "2,3,10,10", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3775 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.046787902382249, + "y": 1.1640583205842177 + }, + [ + { + "#": 3778 + }, + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + }, + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + }, + { + "#": 3792 + }, + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + }, + { + "#": 3797 + }, + { + "#": 3798 + }, + { + "#": 3799 + }, + { + "#": 3800 + }, + { + "#": 3801 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 162.17166492538533, + "y": 505.32917410254294 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160.86460088274083, + "y": 511.2387247274576 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 158.07330908571726, + "y": 516.6103553089355 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 153.9866764812827, + "y": 521.0753563118884 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 148.8825558937107, + "y": 524.3301493970973 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 143.11153407264646, + "y": 526.154022238279 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 137.0634511451786, + "y": 526.4216206360165 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 131.15390052026427, + "y": 525.114556593372 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 125.78226993878633, + "y": 522.3232647963482 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 121.3172689358332, + "y": 518.2366321919138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 118.06247585062431, + "y": 513.1325116043419 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 116.2386030094425, + "y": 507.3614897832775 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 115.97100461170515, + "y": 501.31340685580943 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 117.2780686543497, + "y": 495.403856230895 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 120.06936045137327, + "y": 490.0322256494173 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 124.15599305580783, + "y": 485.5672246464641 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 129.2601136433798, + "y": 482.31243156125515 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 135.03113546444405, + "y": 480.4885587200734 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 141.07921839191192, + "y": 480.22096032233605 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 146.98876901682624, + "y": 481.5280243649806 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 152.3603995983042, + "y": 484.31931616200427 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 156.82540060125731, + "y": 488.40594876643877 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 160.0801936864662, + "y": 493.5100693540106 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 161.904066527648, + "y": 499.2810911750749 + }, + { + "angle": -0.012219614206802962, + "anglePrev": -0.009556639879515823, + "angularSpeed": 0.002778890755303193, + "angularVelocity": -0.00293227520459482, + "area": 2578.6951839999997, + "axes": { + "#": 3803 + }, + "bounds": { + "#": 3817 + }, + "circleRadius": 28.790187757201647, + "collisionFilter": { + "#": 3820 + }, + "constraintImpulse": { + "#": 3821 + }, + "density": 0.001, + "force": { + "#": 3822 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 4233.391444164257, + "inverseInertia": 0.00023621722989460446, + "inverseMass": 0.3877930226901917, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.578695184, + "motion": 0, + "parent": null, + "position": { + "#": 3823 + }, + "positionImpulse": { + "#": 3824 + }, + "positionPrev": { + "#": 3825 + }, + "region": { + "#": 3826 + }, + "render": { + "#": 3827 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4112915451488255, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3829 + }, + "vertices": { + "#": 3830 + } + }, + [ + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + }, + { + "#": 3809 + }, + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + } + ], + { + "x": -0.9737940561970453, + "y": -0.22743160755555922 + }, + { + "x": -0.8911072851045818, + "y": -0.4537926910314244 + }, + { + "x": -0.7565132240683383, + "y": -0.6539783955221522 + }, + { + "x": -0.578010032654371, + "y": -0.8160296576417387 + }, + { + "x": -0.36613491751491867, + "y": -0.9305617777323243 + }, + { + "x": -0.1325731978036076, + "y": -0.9911732175680117 + }, + { + "x": 0.10831251100642367, + "y": -0.9941168945146656 + }, + { + "x": 0.34328563316775734, + "y": -0.9392310546721782 + }, + { + "x": 0.5578962755230598, + "y": -0.829910685409881 + }, + { + "x": 0.740306175343157, + "y": -0.6722698615502463 + }, + { + "x": 0.8797519406410412, + "y": -0.475432984697446 + }, + { + "x": 0.9679455590974511, + "y": -0.2511600975941891 + }, + { + "x": 0.9999253414433202, + "y": -0.012219310105702739 + }, + { + "max": { + "#": 3818 + }, + "min": { + "#": 3819 + } + }, + { + "x": 282.2451355383032, + "y": 580.0331513291591 + }, + { + "x": 224.66088135879716, + "y": 522.2315795488284 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.62486827378643, + "y": 551.0194301289818 + }, + { + "x": -0.3715296223354799, + "y": -0.18784959627180187 + }, + { + "x": 253.98498577161644, + "y": 551.0262547313698 + }, + { + "endCol": 5, + "endRow": 12, + "id": "4,5,10,12", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3828 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.34294122898819523, + "y": -0.02494184427791879 + }, + [ + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + }, + { + "#": 3841 + }, + { + "#": 3842 + }, + { + "#": 3843 + }, + { + "#": 3844 + }, + { + "#": 3845 + }, + { + "#": 3846 + }, + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 282.2451355383032, + "y": 554.1399431809692 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280.66660547696824, + "y": 560.8987363310413 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 277.5169461307231, + "y": 567.0836847546427 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 272.9777691000586, + "y": 572.3345423878571 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.31436407017105, + "y": 576.3460447831505 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.85593247102565, + "y": 578.8871520770601 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 253.9766622117296, + "y": 579.8072807091351 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 247.07696126593677, + "y": 579.0555341703166 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 240.5583617838308, + "y": 576.6730090829591 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 234.79861971306985, + "y": 572.8011000863132 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 230.1324840504072, + "y": 567.6627334219316 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 226.83262494434283, + "y": 561.556599548512 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 225.08940302140311, + "y": 554.8383989466112 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 225.00460100926958, + "y": 547.8989170769943 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 226.58313107060457, + "y": 541.1401239269222 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 229.73279041684967, + "y": 534.9551755033208 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 234.27196744751407, + "y": 529.7043178701064 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 239.93537247740167, + "y": 525.692815474813 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 246.3938040765472, + "y": 523.1517081809034 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 253.2730743358432, + "y": 522.2315795488284 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 260.17277528163595, + "y": 522.9833260876469 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 266.691374763742, + "y": 525.3658511750044 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 272.4511168345029, + "y": 529.2377601716503 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 277.1172524971656, + "y": 534.3761268360319 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 280.41711160323, + "y": 540.4822607094515 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 282.16033352616955, + "y": 547.2004613113523 + }, + { + "angle": 0.15952516077951354, + "anglePrev": 0.13919729001357495, + "angularSpeed": 0.017946489534699146, + "angularVelocity": 0.019514148821397292, + "area": 792.3786020000001, + "axes": { + "#": 3858 + }, + "bounds": { + "#": 3868 + }, + "circleRadius": 16.04417438271605, + "collisionFilter": { + "#": 3871 + }, + "constraintImpulse": { + "#": 3872 + }, + "density": 0.001, + "force": { + "#": 3873 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 399.7439941436189, + "inverseInertia": 0.0025016010613050583, + "inverseMass": 1.2620229742145408, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7923786020000001, + "motion": 0, + "parent": null, + "position": { + "#": 3874 + }, + "positionImpulse": { + "#": 3875 + }, + "positionPrev": { + "#": 3876 + }, + "region": { + "#": 3877 + }, + "render": { + "#": 3878 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.671020397653281, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3880 + }, + "vertices": { + "#": 3881 + } + }, + [ + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + } + ], + { + "x": -0.8734929117442195, + "y": -0.48683686500983564 + }, + { + "x": -0.6542234992618733, + "y": -0.7563012713287933 + }, + { + "x": -0.35604131881210294, + "y": -0.9344702131681558 + }, + { + "x": -0.014917747096779437, + "y": -0.9998887242196286 + }, + { + "x": 0.32779495117567964, + "y": -0.9447488925549127 + }, + { + "x": 0.6311837935866232, + "y": -0.7756333017048708 + }, + { + "x": 0.8584324784132547, + "y": -0.5129265834456987 + }, + { + "x": 0.9821146412129583, + "y": -0.18828391199234662 + }, + { + "x": 0.9873028226096283, + "y": 0.1588494144372611 + }, + { + "max": { + "#": 3869 + }, + "min": { + "#": 3870 + } + }, + { + "x": 313.92625266837166, + "y": 562.4008330019782 + }, + { + "x": 281.5850756371991, + "y": 530.1005297255111 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.8843136025173, + "y": 545.9408162114601 + }, + { + "x": -0.30288310998367574, + "y": 0.07234889839116226 + }, + { + "x": 298.28125838721576, + "y": 545.5816543776648 + }, + { + "endCol": 6, + "endRow": 11, + "id": "5,6,11,11", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3879 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3436319287053493, + "y": 0.21512747881183714 + }, + [ + { + "#": 3882 + }, + { + "#": 3883 + }, + { + "#": 3884 + }, + { + "#": 3885 + }, + { + "#": 3886 + }, + { + "#": 3887 + }, + { + "#": 3888 + }, + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + }, + { + "#": 3893 + }, + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 313.04114373112725, + "y": 551.2012626233591 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 310.32859632006233, + "y": 556.0681720680402 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 306.1139494592421, + "y": 559.7139692152465 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300.90667156870575, + "y": 561.6979876049626 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 295.3357335972859, + "y": 561.781102697409 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 290.07201039338764, + "y": 559.9547741309283 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.74984144009574, + "y": 556.4375411930637 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 282.8914508797408, + "y": 551.6537468408288 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 281.84237453666293, + "y": 546.1816211271419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 282.72748347390734, + "y": 540.680369799561 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.44003088497226, + "y": 535.8134603548799 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 289.65467774579247, + "y": 532.1676632076736 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 294.86195563632884, + "y": 530.1836448179575 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 300.43289360774867, + "y": 530.1005297255111 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 305.69661681164695, + "y": 531.9268582919918 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 310.01878576493885, + "y": 535.4440912298564 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 312.8771763252938, + "y": 540.2278855820913 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 313.92625266837166, + "y": 545.7000112957783 + }, + { + "angle": -0.01497846726476404, + "anglePrev": 0.002241994369899648, + "angularSpeed": 0.008144711450322065, + "angularVelocity": -0.01962595569169997, + "area": 753.695398, + "axes": { + "#": 3901 + }, + "bounds": { + "#": 3910 + }, + "circleRadius": 15.690136316872428, + "collisionFilter": { + "#": 3913 + }, + "constraintImpulse": { + "#": 3914 + }, + "density": 0.001, + "force": { + "#": 3915 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 361.68483161032174, + "inverseInertia": 0.002764838092733171, + "inverseMass": 1.326795947877076, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.753695398, + "motion": 0, + "parent": null, + "position": { + "#": 3916 + }, + "positionImpulse": { + "#": 3917 + }, + "positionPrev": { + "#": 3918 + }, + "region": { + "#": 3919 + }, + "render": { + "#": 3920 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.15803798926424173, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3922 + }, + "vertices": { + "#": 3923 + } + }, + [ + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + }, + { + "#": 3907 + }, + { + "#": 3908 + }, + { + "#": 3909 + } + ], + { + "x": -0.9294961112015754, + "y": -0.36883191193435055 + }, + { + "x": -0.717618441123913, + "y": -0.6964364816398441 + }, + { + "x": -0.39650711571630953, + "y": -0.9180316482487588 + }, + { + "x": -0.014977907190003775, + "y": -0.9998878248564722 + }, + { + "x": 0.36883191193435055, + "y": -0.9294961112015754 + }, + { + "x": 0.6964364816398441, + "y": -0.717618441123913 + }, + { + "x": 0.9180316482487588, + "y": -0.39650711571630953 + }, + { + "x": 0.9998878248564722, + "y": -0.014977907190003775 + }, + { + "max": { + "#": 3911 + }, + "min": { + "#": 3912 + } + }, + { + "x": 338.9287566805042, + "y": 580.0053279042183 + }, + { + "x": 308.02194762559736, + "y": 548.9863429644588 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.4550687362222, + "y": 564.4194640750837 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.60656950714326, + "y": 564.4181475884182 + }, + { + "endCol": 7, + "endRow": 12, + "id": "6,7,11,12", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3921 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.09510943011565587, + "y": 0.009680670297711913 + }, + [ + { + "#": 3924 + }, + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + }, + { + "#": 3929 + }, + { + "#": 3930 + }, + { + "#": 3931 + }, + { + "#": 3932 + }, + { + "#": 3933 + }, + { + "#": 3934 + }, + { + "#": 3935 + }, + { + "#": 3936 + }, + { + "#": 3937 + }, + { + "#": 3938 + }, + { + "#": 3939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.888189846847, + "y": 567.2496256932222 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.630167716275, + "y": 572.9400844671569 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 332.3664926826969, + "y": 577.333438221186 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.7462203818547, + "y": 579.7608904378914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.6249071180835, + "y": 579.8525851857087 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 314.9344483441492, + "y": 577.5945630551366 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 310.5410945901198, + "y": 573.3308880215583 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.1136423734146, + "y": 567.7106157207166 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.02194762559736, + "y": 561.5893024569452 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 310.27996975616935, + "y": 555.8988436830106 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 314.5436447897475, + "y": 551.5054899289814 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.1639170905897, + "y": 549.0780377122761 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.28523035436086, + "y": 548.9863429644588 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.9756891282952, + "y": 551.2443650950308 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.36904288232455, + "y": 555.5080401286092 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.79649509902976, + "y": 561.1283124294508 + }, + { + "angle": -0.14245149625422837, + "anglePrev": -0.11523339874192366, + "angularSpeed": 0.020778821001354388, + "angularVelocity": -0.027495273154778607, + "area": 1630.6059260000002, + "axes": { + "#": 3941 + }, + "bounds": { + "#": 3954 + }, + "circleRadius": 22.913258744855966, + "collisionFilter": { + "#": 3957 + }, + "constraintImpulse": { + "#": 3958 + }, + "density": 0.001, + "force": { + "#": 3959 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 1692.7373724676456, + "inverseInertia": 0.0005907590960446605, + "inverseMass": 0.6132689597498738, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6306059260000003, + "motion": 0, + "parent": null, + "position": { + "#": 3960 + }, + "positionImpulse": { + "#": 3961 + }, + "positionPrev": { + "#": 3962 + }, + "region": { + "#": 3963 + }, + "render": { + "#": 3964 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7618004561500358, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3966 + }, + "vertices": { + "#": 3967 + } + }, + [ + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + } + ], + { + "x": -0.9928905354027124, + "y": -0.11903102413957048 + }, + { + "x": -0.928220937777137, + "y": -0.3720294217829183 + }, + { + "x": -0.8003325420107806, + "y": -0.5995563544810132 + }, + { + "x": -0.6179223346703918, + "y": -0.7862391419380572 + }, + { + "x": -0.39329889382023486, + "y": -0.9194106700054009 + }, + { + "x": -0.14197020370308075, + "y": -0.9898709316171003 + }, + { + "x": 0.11903102413957048, + "y": -0.9928905354027124 + }, + { + "x": 0.3720294217829183, + "y": -0.928220937777137 + }, + { + "x": 0.5995563544810132, + "y": -0.8003325420107806 + }, + { + "x": 0.7862391419380572, + "y": -0.6179223346703918 + }, + { + "x": 0.9194106700054009, + "y": -0.39329889382023486 + }, + { + "x": 0.9898709316171003, + "y": -0.14197020370308075 + }, + { + "max": { + "#": 3955 + }, + "min": { + "#": 3956 + } + }, + { + "x": 340.15632749505477, + "y": 536.0568044180812 + }, + { + "x": 294.04146802516743, + "y": 489.5300425489215 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.2447966622333, + "y": 512.4415733817433 + }, + { + "x": -0.3454833011025513, + "y": -0.10946645133772986 + }, + { + "x": 317.2907350412966, + "y": 511.87316796764816 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3965 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.07184529233211379, + "y": 0.6383976415376651 + }, + [ + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + }, + { + "#": 3975 + }, + { + "#": 3976 + }, + { + "#": 3977 + }, + { + "#": 3978 + }, + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + }, + { + "#": 3984 + }, + { + "#": 3985 + }, + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340.15632749505477, + "y": 512.1771402206873 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 339.44431112990804, + "y": 518.116384338903 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 337.21901282862314, + "y": 523.6685486439557 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 333.63324065027484, + "y": 528.4551048052248 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 328.93034210377414, + "y": 532.1512144168735 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 323.4306377362228, + "y": 534.5038384560131 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 317.5092298232895, + "y": 535.3531042145652 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 311.5699857050734, + "y": 534.6410878494181 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 306.0178214000209, + "y": 532.4157895481334 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.2312652387519, + "y": 528.830017369785 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 297.5351556271033, + "y": 524.1271188232843 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 295.1825315879635, + "y": 518.6274144557331 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 294.33326582941174, + "y": 512.7060065427994 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 295.0452821945585, + "y": 506.7667624245832 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 297.27058049584343, + "y": 501.21459811953065 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 300.8563526741917, + "y": 496.4280419582616 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 305.55925122069243, + "y": 492.731932346613 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 311.05895558824363, + "y": 490.3793083074732 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.98036350117707, + "y": 489.5300425489215 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 322.9196076193931, + "y": 490.2420589140683 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 328.47177192444565, + "y": 492.46735721535316 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 333.25832808571465, + "y": 496.0531293937015 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 336.9544376973633, + "y": 500.75602794020216 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 339.3070617365031, + "y": 506.2557323077535 + }, + { + "angle": -0.004128661818922115, + "anglePrev": -0.005430399088443044, + "angularSpeed": 0.0019519076026039452, + "angularVelocity": 0.000820105470894482, + "area": 1793.4883420000006, + "axes": { + "#": 3993 + }, + "bounds": { + "#": 4007 + }, + "circleRadius": 24.009837962962962, + "collisionFilter": { + "#": 4010 + }, + "constraintImpulse": { + "#": 4011 + }, + "density": 0.001, + "force": { + "#": 4012 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 2047.790506990953, + "inverseInertia": 0.000488331202135228, + "inverseMass": 0.5575726234634202, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7934883420000005, + "motion": 0, + "parent": null, + "position": { + "#": 4013 + }, + "positionImpulse": { + "#": 4014 + }, + "positionPrev": { + "#": 4015 + }, + "region": { + "#": 4016 + }, + "render": { + "#": 4017 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.23162062833761968, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4019 + }, + "vertices": { + "#": 4020 + } + }, + [ + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + }, + { + "#": 3998 + }, + { + "#": 3999 + }, + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + }, + { + "#": 4006 + } + ], + { + "x": -0.9719297072128874, + "y": -0.23527142673319007 + }, + { + "x": -0.887353580153293, + "y": -0.46108960494586443 + }, + { + "x": -0.7512168261759659, + "y": -0.6600555128700226 + }, + { + "x": -0.5714972141742335, + "y": -0.8206040057123112 + }, + { + "x": -0.3583866830021897, + "y": -0.9335732351811981 + }, + { + "x": -0.12468683039549784, + "y": -0.9921961471029429 + }, + { + "x": 0.11648978803797527, + "y": -0.9931918894568501 + }, + { + "x": 0.35066573632085757, + "y": -0.936500689466138 + }, + { + "x": 0.5647018151229293, + "y": -0.8252950139173684 + }, + { + "x": 0.7457409860128354, + "y": -0.6662359805508891 + }, + { + "x": 0.8835160061082363, + "y": -0.4684009681357963 + }, + { + "x": 0.9699538824316761, + "y": -0.24328885292120933 + }, + { + "x": 0.9999914770878994, + "y": -0.00412865008950819 + }, + { + "max": { + "#": 4008 + }, + "min": { + "#": 4009 + } + }, + { + "x": 491.36262021700105, + "y": 580.3624107019144 + }, + { + "x": 443.65869594595665, + "y": 532.1114344744575 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 467.51587504725194, + "y": 556.121229839338 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 467.364131031683, + "y": 556.1433100877896 + }, + { + "endCol": 10, + "endRow": 12, + "id": "9,10,11,12", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4018 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.18868343682169098, + "y": -0.08008471923153593 + }, + [ + { + "#": 4021 + }, + { + "#": 4022 + }, + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + }, + { + "#": 4027 + }, + { + "#": 4028 + }, + { + "#": 4029 + }, + { + "#": 4030 + }, + { + "#": 4031 + }, + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 491.36262021700105, + "y": 558.9167987991469 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 490.00083503473724, + "y": 564.5424690807549 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 487.3320172930795, + "y": 569.6785314695712 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 483.51093945337703, + "y": 574.0273444274867 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 478.7615550495016, + "y": 577.3349811645279 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.35807316548545, + "y": 579.4093079297967 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.61500393590086, + "y": 580.1310252042184 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 461.86617111079147, + "y": 579.4567543766256 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 456.4457452468079, + "y": 577.4271161199255 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 451.66921083994396, + "y": 574.1588089036367 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 447.8123541185657, + "y": 569.8416957211087 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 445.1012177134907, + "y": 564.7278454697738 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 443.6930265042209, + "y": 559.1136115489139 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 443.6691298775027, + "y": 553.325660879529 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 445.0309150597665, + "y": 547.699990597921 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 447.69973280142415, + "y": 542.5639282091047 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 451.52081064112684, + "y": 538.2151152511892 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 456.27019504500214, + "y": 534.907478514148 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.6736769290182, + "y": 532.8331517488792 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 467.4167461586028, + "y": 532.1114344744575 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 473.1655789837123, + "y": 532.7857053020504 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 478.58600484769573, + "y": 534.8153435587504 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 483.3625392545597, + "y": 538.0836507750392 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 487.21939597593797, + "y": 542.4007639575672 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 489.93053238101317, + "y": 547.5146142089021 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 491.338723590283, + "y": 553.128848129762 + }, + { + "angle": 0.025146653338851403, + "anglePrev": 0.045592684672792476, + "angularSpeed": 0.01580853216798863, + "angularVelocity": -0.017377068133794457, + "area": 1007.2220640000002, + "axes": { + "#": 4048 + }, + "bounds": { + "#": 4059 + }, + "circleRadius": 18.05394804526749, + "collisionFilter": { + "#": 4062 + }, + "constraintImpulse": { + "#": 4063 + }, + "density": 0.001, + "force": { + "#": 4064 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 645.8837609881251, + "inverseInertia": 0.0015482662057799987, + "inverseMass": 0.9928297202194726, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0072220640000003, + "motion": 0, + "parent": null, + "position": { + "#": 4065 + }, + "positionImpulse": { + "#": 4066 + }, + "positionPrev": { + "#": 4067 + }, + "region": { + "#": 4068 + }, + "render": { + "#": 4069 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5413781262475503, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4071 + }, + "vertices": { + "#": 4072 + } + }, + [ + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + } + ], + { + "x": -0.9429561231665908, + "y": -0.3329170313796418 + }, + { + "x": -0.7940080052575316, + "y": -0.6079073018042768 + }, + { + "x": -0.5672221828200458, + "y": -0.8235648094211306 + }, + { + "x": -0.2850916858287283, + "y": -0.958500250741404 + }, + { + "x": 0.025144003157444694, + "y": -0.999683839573902 + }, + { + "x": 0.3329170313796418, + "y": -0.9429561231665908 + }, + { + "x": 0.6079073018042768, + "y": -0.7940080052575316 + }, + { + "x": 0.8235648094211306, + "y": -0.5672221828200458 + }, + { + "x": 0.958500250741404, + "y": -0.2850916858287283 + }, + { + "x": 0.999683839573902, + "y": 0.025144003157444694 + }, + { + "max": { + "#": 4060 + }, + "min": { + "#": 4061 + } + }, + { + "x": 552.9230857689757, + "y": 542.2639993068652 + }, + { + "x": 516.8598788613293, + "y": 505.99913961759574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 534.7572477535277, + "y": 523.8965085097942 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 534.5491267097796, + "y": 523.7801060320945 + }, + { + "endCol": 11, + "endRow": 11, + "id": "10,11,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4070 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3558883398384296, + "y": 0.06686598868657256 + }, + [ + { + "#": 4073 + }, + { + "#": 4074 + }, + { + "#": 4075 + }, + { + "#": 4076 + }, + { + "#": 4077 + }, + { + "#": 4078 + }, + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 552.5126033158929, + "y": 527.1679835370543 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550.6320817470353, + "y": 532.4943836937327 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 547.19822330522, + "y": 536.9794607501026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 542.5461900678847, + "y": 540.1835030030584 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 537.1319870521809, + "y": 541.7938774019927 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 531.4857727262676, + "y": 541.6518640721594 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.1593725695892, + "y": 539.7713425033018 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 521.6742955132194, + "y": 536.3374840614865 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4702532602636, + "y": 531.6854508241512 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.8598788613293, + "y": 526.2712478084474 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 517.0018921911626, + "y": 520.6250334825341 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.8824137600204, + "y": 515.2986333258557 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.3162722018353, + "y": 510.8135562694857 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 526.9683054391708, + "y": 507.60951401653017 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 532.3825084548745, + "y": 505.99913961759574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 538.0287227807878, + "y": 506.141152947429 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 543.3551229374663, + "y": 508.02167451628685 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 547.8401999938361, + "y": 511.45553295810174 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 551.044242246792, + "y": 516.1075661954372 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 552.6546166457262, + "y": 521.5217692111411 + }, + { + "angle": 0.09996174240893974, + "anglePrev": 0.0871425039386053, + "angularSpeed": 0.00992150942125203, + "angularVelocity": 0.013708229725522603, + "area": 1064.9913560000002, + "axes": { + "#": 4094 + }, + "bounds": { + "#": 4105 + }, + "circleRadius": 18.564107510288068, + "collisionFilter": { + "#": 4108 + }, + "constraintImpulse": { + "#": 4109 + }, + "density": 0.001, + "force": { + "#": 4110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 722.0978790866207, + "inverseInertia": 0.0013848538113211146, + "inverseMass": 0.9389747572749312, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0649913560000002, + "motion": 0, + "parent": null, + "position": { + "#": 4111 + }, + "positionImpulse": { + "#": 4112 + }, + "positionPrev": { + "#": 4113 + }, + "region": { + "#": 4114 + }, + "render": { + "#": 4115 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6296469302119831, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4117 + }, + "vertices": { + "#": 4118 + } + }, + [ + { + "#": 4095 + }, + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + } + ], + { + "x": -0.915460906289384, + "y": -0.4024069197414734 + }, + { + "x": -0.7463222972101374, + "y": -0.6655847269033323 + }, + { + "x": -0.5041120771283931, + "y": -0.8636382423754156 + }, + { + "x": -0.21258633395144608, + "y": -0.9771422878051512 + }, + { + "x": 0.09979535011131875, + "y": -0.9950079839358877 + }, + { + "x": 0.4024069197414734, + "y": -0.915460906289384 + }, + { + "x": 0.6655847269033323, + "y": -0.7463222972101374 + }, + { + "x": 0.8636382423754156, + "y": -0.5041120771283931 + }, + { + "x": 0.9771422878051512, + "y": -0.21258633395144608 + }, + { + "x": 0.9950079839358877, + "y": 0.09979535011131875 + }, + { + "max": { + "#": 4106 + }, + "min": { + "#": 4107 + } + }, + { + "x": 517.883176558176, + "y": 548.2169801328188 + }, + { + "x": 480.5747582885924, + "y": 510.56627130391166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 499.1090303787641, + "y": 529.1005433940838 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 498.7453161291598, + "y": 528.9498066044514 + }, + { + "endCol": 10, + "endRow": 11, + "id": "10,10,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4116 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.39824632759024325, + "y": 0.14476182683631578 + }, + [ + { + "#": 4119 + }, + { + "#": 4120 + }, + { + "#": 4121 + }, + { + "#": 4122 + }, + { + "#": 4123 + }, + { + "#": 4124 + }, + { + "#": 4125 + }, + { + "#": 4126 + }, + { + "#": 4127 + }, + { + "#": 4128 + }, + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 517.0636910754893, + "y": 533.8198941190748 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 514.7263822303096, + "y": 539.1371855688868 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.86048662297924, + "y": 543.4720267601214 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 505.84424278118433, + "y": 546.4000456671058 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500.1686860244728, + "y": 547.6348154842557 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 494.3896796537731, + "y": 547.0552040908091 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 489.07238820396105, + "y": 544.7178952456292 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 484.7375470127264, + "y": 540.8519996382989 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 481.80952810574246, + "y": 535.835755796504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 480.5747582885924, + "y": 530.1601990397925 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 481.15436968203886, + "y": 524.3811926690929 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 483.4916785272188, + "y": 519.0639012192809 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 487.357574134549, + "y": 514.7290600280463 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 492.37381797634384, + "y": 511.8010411210616 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 498.04937473305546, + "y": 510.56627130391166 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 503.8283811037551, + "y": 511.1458826973583 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 509.1456725535671, + "y": 513.4831915425385 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 513.4805137448018, + "y": 517.3490871498688 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 516.408532651786, + "y": 522.3653309916637 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 517.6433024689359, + "y": 528.0408877483752 + }, + { + "angle": 0.011750076416389647, + "anglePrev": -0.00227846363565489, + "angularSpeed": 0.011392852329237826, + "angularVelocity": 0.012951194125884082, + "area": 1260.7906620000003, + "axes": { + "#": 4140 + }, + "bounds": { + "#": 4152 + }, + "circleRadius": 20.169945987654323, + "collisionFilter": { + "#": 4155 + }, + "constraintImpulse": { + "#": 4156 + }, + "density": 0.001, + "force": { + "#": 4157 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 1012.0041641764243, + "inverseInertia": 0.000988138226500092, + "inverseMass": 0.7931530825376621, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2607906620000005, + "motion": 0, + "parent": null, + "position": { + "#": 4158 + }, + "positionImpulse": { + "#": 4159 + }, + "positionPrev": { + "#": 4160 + }, + "region": { + "#": 4161 + }, + "render": { + "#": 4162 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4672381720049674, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4164 + }, + "vertices": { + "#": 4165 + } + }, + [ + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + }, + { + "#": 4144 + }, + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + } + ], + { + "x": -0.9560962785365854, + "y": -0.29305273615595584 + }, + { + "x": -0.834847271419888, + "y": -0.5504816376617555 + }, + { + "x": -0.6459458291192838, + "y": -0.7633832496481704 + }, + { + "x": -0.4047262297133903, + "y": -0.9144379032946874 + }, + { + "x": -0.13065907167075144, + "y": -0.991427358403094 + }, + { + "x": 0.1539195446514016, + "y": -0.9880833840189324 + }, + { + "x": 0.42610193096210514, + "y": -0.9046751596182829 + }, + { + "x": 0.6637054450837, + "y": -0.7479940388574278 + }, + { + "x": 0.8475519687735725, + "y": -0.5307124082099847 + }, + { + "x": 0.9627184353933667, + "y": -0.27050547897177324 + }, + { + "x": 0.9999309686463403, + "y": 0.011749806040585127 + }, + { + "max": { + "#": 4153 + }, + "min": { + "#": 4154 + } + }, + { + "x": 566.5781355542506, + "y": 580.2167913408475 + }, + { + "x": 526.1945070859954, + "y": 539.6206621704144 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 546.1918508183561, + "y": 559.7892698080109 + }, + { + "x": 0.14881395430874086, + "y": -0.18310928179531716 + }, + { + "x": 545.7848843228496, + "y": 559.7429784594573 + }, + { + "endCol": 11, + "endRow": 12, + "id": "10,11,11,12", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4163 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.45119743943462254, + "y": -0.06898075768526724 + }, + [ + { + "#": 4166 + }, + { + "#": 4167 + }, + { + "#": 4168 + }, + { + "#": 4169 + }, + { + "#": 4170 + }, + { + "#": 4171 + }, + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + }, + { + "#": 4187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 566.1217506640436, + "y": 562.8936565656262 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 564.4391326752965, + "y": 568.3832650857252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 561.2785953854421, + "y": 573.1764602663368 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 556.8967273225477, + "y": 576.8842301188745 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 551.6470645168699, + "y": 579.207707991952 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 545.9548572305175, + "y": 579.9578774456073 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 540.2818491272355, + "y": 579.0741596964949 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 535.0882328963711, + "y": 576.6279668491293 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 530.7946998752897, + "y": 572.8182556793838 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 527.7476657117877, + "y": 567.952117702872 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 526.1945070859954, + "y": 562.4244868104255 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 526.2619509726684, + "y": 556.6848830503956 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 527.9445689614157, + "y": 551.1952745302966 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 531.1051062512698, + "y": 546.402079349685 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 535.4869743141645, + "y": 542.6943094971473 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 540.7366371198423, + "y": 540.3708316240698 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 546.4288444061947, + "y": 539.6206621704144 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 552.1018525094767, + "y": 540.5043799195269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 557.2954687403411, + "y": 542.9505727668925 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 561.5890017614223, + "y": 546.760283936638 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 564.6360359249245, + "y": 551.6264219131498 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 566.1891945507166, + "y": 557.1540528055963 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1274.4243100000003, + "axes": { + "#": 4189 + }, + "bounds": { + "#": 4201 + }, + "circleRadius": 20.278870884773664, + "collisionFilter": { + "#": 4204 + }, + "constraintImpulse": { + "#": 4205 + }, + "density": 0.001, + "force": { + "#": 4206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 1034.0092576280601, + "inverseInertia": 0.0009671093296533197, + "inverseMass": 0.7846680200254496, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2744243100000003, + "motion": 0, + "parent": null, + "position": { + "#": 4207 + }, + "positionImpulse": { + "#": 4208 + }, + "positionPrev": { + "#": 4209 + }, + "region": { + "#": 4210 + }, + "render": { + "#": 4211 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4213 + }, + "vertices": { + "#": 4214 + } + }, + [ + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + }, + { + "#": 4199 + }, + { + "#": 4200 + } + ], + { + "x": -0.9594978217257015, + "y": -0.2817160451654006 + }, + { + "x": -0.8413135484521326, + "y": -0.540547419928059 + }, + { + "x": -0.6548909622863403, + "y": -0.7557233802891579 + }, + { + "x": -0.41526429982431406, + "y": -0.9097008086681149 + }, + { + "x": -0.14241576969235267, + "y": -0.9898069248812793 + }, + { + "x": 0.14241576969235267, + "y": -0.9898069248812793 + }, + { + "x": 0.41526429982431406, + "y": -0.9097008086681149 + }, + { + "x": 0.6548909622863403, + "y": -0.7557233802891579 + }, + { + "x": 0.8413135484521326, + "y": -0.540547419928059 + }, + { + "x": 0.9594978217257015, + "y": -0.2817160451654006 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4202 + }, + "min": { + "#": 4203 + } + }, + { + "x": 126.62934708373015, + "y": 734.1516700867514 + }, + { + "x": 86.48534708373015, + "y": 690.6863993717155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 106.55734708373015, + "y": 710.9653993717155 + }, + { + "x": -0.4286531548182416, + "y": 0.8084107969142998 + }, + { + "x": 106.55734708373015, + "y": 708.0581286566796 + }, + { + "endCol": 2, + "endRow": 15, + "id": "1,2,14,15", + "startCol": 1, + "startRow": 14 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4212 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 4215 + }, + { + "#": 4216 + }, + { + "#": 4217 + }, + { + "#": 4218 + }, + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + }, + { + "#": 4222 + }, + { + "#": 4223 + }, + { + "#": 4224 + }, + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + }, + { + "#": 4232 + }, + { + "#": 4233 + }, + { + "#": 4234 + }, + { + "#": 4235 + }, + { + "#": 4236 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 126.62934708373015, + "y": 713.8513993717155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125.00334708373013, + "y": 719.3893993717155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 121.88334708373013, + "y": 724.2453993717155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 117.52134708373015, + "y": 728.0253993717155 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 112.27034708373014, + "y": 730.4223993717155 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 106.55734708373015, + "y": 731.2443993717155 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 100.84434708373016, + "y": 730.4223993717155 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 95.59334708373015, + "y": 728.0253993717155 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 91.23134708373016, + "y": 724.2453993717155 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 88.11134708373015, + "y": 719.3893993717155 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 86.48534708373015, + "y": 713.8513993717155 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.48534708373015, + "y": 708.0793993717156 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 88.11134708373015, + "y": 702.5413993717156 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 91.23134708373016, + "y": 697.6853993717156 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 95.59334708373015, + "y": 693.9053993717156 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 100.84434708373016, + "y": 691.5083993717155 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 106.55734708373015, + "y": 690.6863993717155 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 112.27034708373014, + "y": 691.5083993717155 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 117.52134708373015, + "y": 693.9053993717156 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 121.88334708373013, + "y": 697.6853993717156 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 125.00334708373013, + "y": 702.5413993717156 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 126.62934708373015, + "y": 708.0793993717156 + }, + { + "angle": -0.0007847588042648546, + "anglePrev": -0.0003598994022468246, + "angularSpeed": 0.00042485940201802996, + "angularVelocity": -0.00042485940201802996, + "area": 1333.4219, + "axes": { + "#": 4238 + }, + "bounds": { + "#": 4250 + }, + "circleRadius": 20.74273405349794, + "collisionFilter": { + "#": 4253 + }, + "constraintImpulse": { + "#": 4254 + }, + "density": 0.001, + "force": { + "#": 4255 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 1131.961092953285, + "inverseInertia": 0.0008834225895441347, + "inverseMass": 0.7499501845589907, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3334219, + "motion": 0, + "parent": null, + "position": { + "#": 4256 + }, + "positionImpulse": { + "#": 4257 + }, + "positionPrev": { + "#": 4258 + }, + "region": { + "#": 4259 + }, + "render": { + "#": 4260 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8914353259750567, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4262 + }, + "vertices": { + "#": 4263 + } + }, + [ + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + } + ], + { + "x": -0.9596860987728001, + "y": -0.28107399705814706 + }, + { + "x": -0.8416850149667581, + "y": -0.5399688283414219 + }, + { + "x": -0.6554202581360402, + "y": -0.7552643810116336 + }, + { + "x": -0.4162132314130841, + "y": -0.9092670377819039 + }, + { + "x": -0.14305168507914126, + "y": -0.9897152193414115 + }, + { + "x": 0.14149813405702652, + "y": -0.9899385223630707 + }, + { + "x": 0.4147856087256311, + "y": -0.9099191715719082 + }, + { + "x": 0.6542340506014084, + "y": -0.7562921439719401 + }, + { + "x": 0.8408364880334406, + "y": -0.5412892021753154 + }, + { + "x": 0.9592437663280594, + "y": -0.2825798944736856 + }, + { + "x": 0.9999996920768254, + "y": -0.0007847587237163788 + }, + { + "max": { + "#": 4251 + }, + "min": { + "#": 4252 + } + }, + { + "x": 184.68843338372892, + "y": 731.7479119778477 + }, + { + "x": 143.60806567617223, + "y": 687.3705132892256 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 164.15412309825513, + "y": 708.1135069019753 + }, + { + "x": -0.19485159789969822, + "y": 0.5201094610296372 + }, + { + "x": 164.16587023486423, + "y": 705.2220954388524 + }, + { + "endCol": 3, + "endRow": 15, + "id": "2,3,14,15", + "startCol": 2, + "startRow": 14 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4261 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.011747136609091057, + "y": 2.891411463122807 + }, + [ + { + "#": 4264 + }, + { + "#": 4265 + }, + { + "#": 4266 + }, + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + }, + { + "#": 4271 + }, + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + }, + { + "#": 4276 + }, + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + }, + { + "#": 4282 + }, + { + "#": 4283 + }, + { + "#": 4284 + }, + { + "#": 4285 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 184.68843338372892, + "y": 711.0493933268707 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 183.02887955428292, + "y": 716.7156974210021 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 179.8407784337544, + "y": 721.6852008413938 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175.3818136849335, + "y": 725.5547012443882 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 170.01374035163022, + "y": 728.0119146433989 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 164.17040134846118, + "y": 728.8565005147249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 158.3257439506363, + "y": 728.0210869033617 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 152.95382059103449, + "y": 725.5723018130436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 148.48878808776178, + "y": 721.7098045968997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 145.29289117407185, + "y": 716.7453110762003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 143.62444602828617, + "y": 711.0816186591013 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 143.61981281278133, + "y": 705.1776204770798 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 145.27936664222733, + "y": 699.5113163829484 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 148.46746776275586, + "y": 694.5418129625567 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 152.92643251157676, + "y": 690.6723125595623 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.29450584488004, + "y": 688.2150991605516 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 164.13784484804907, + "y": 687.3705132892256 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 169.98250224587395, + "y": 688.2059269005888 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 175.35442560547577, + "y": 690.6547119909069 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 179.81945810874848, + "y": 694.5172092070508 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 183.0153550224384, + "y": 699.4817027277502 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 184.68380016822408, + "y": 705.1453951448492 + }, + { + "angle": -0.01005226766914592, + "anglePrev": -0.008886778111950419, + "angularSpeed": 0.001165489557195501, + "angularVelocity": -0.001165489557195501, + "area": 1871.187918, + "axes": { + "#": 4287 + }, + "bounds": { + "#": 4301 + }, + "circleRadius": 24.524498456790123, + "collisionFilter": { + "#": 4304 + }, + "constraintImpulse": { + "#": 4305 + }, + "density": 0.001, + "force": { + "#": 4306 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 2229.0674939927567, + "inverseInertia": 0.00044861808926600834, + "inverseMass": 0.5344198679247778, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8711879180000002, + "motion": 0, + "parent": null, + "position": { + "#": 4307 + }, + "positionImpulse": { + "#": 4308 + }, + "positionPrev": { + "#": 4309 + }, + "region": { + "#": 4310 + }, + "render": { + "#": 4311 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.91237626490917, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4313 + }, + "vertices": { + "#": 4314 + } + }, + [ + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + }, + { + "#": 4294 + }, + { + "#": 4295 + }, + { + "#": 4296 + }, + { + "#": 4297 + }, + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + } + ], + { + "x": -0.9732994951460688, + "y": -0.22953886979857696 + }, + { + "x": -0.8900513265935603, + "y": -0.45586032513155145 + }, + { + "x": -0.755155963160377, + "y": -0.6555451710624707 + }, + { + "x": -0.5762226089352704, + "y": -0.817292790223816 + }, + { + "x": -0.364060397777265, + "y": -0.9313753415085992 + }, + { + "x": -0.1304052454578048, + "y": -0.9914607768122197 + }, + { + "x": 0.11044737647843242, + "y": -0.9938819733897137 + }, + { + "x": 0.34526321795919585, + "y": -0.9385058925358228 + }, + { + "x": 0.5596759755702044, + "y": -0.8287115314568395 + }, + { + "x": 0.7418248109345152, + "y": -0.6705937293786538 + }, + { + "x": 0.8807072140534191, + "y": -0.4736610635404446 + }, + { + "x": 0.9684883402208468, + "y": -0.24905889836797646 + }, + { + "x": 0.9999494763827991, + "y": -0.010052098376267792 + }, + { + "max": { + "#": 4302 + }, + "min": { + "#": 4303 + } + }, + { + "x": 234.06916289493344, + "y": 729.7356928183829 + }, + { + "x": 185.30776543359045, + "y": 677.7778211596307 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 209.69467894011757, + "y": 702.3005821184425 + }, + { + "x": 0.0720149579603536, + "y": 0.6230774205828666 + }, + { + "x": 209.70710849182882, + "y": 699.3882323773141 + }, + { + "endCol": 4, + "endRow": 15, + "id": "3,4,14,15", + "startCol": 3, + "startRow": 14 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4312 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.012429551711258568, + "y": 2.9123497411283807 + }, + [ + { + "#": 4315 + }, + { + "#": 4316 + }, + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + }, + { + "#": 4320 + }, + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + }, + { + "#": 4325 + }, + { + "#": 4326 + }, + { + "#": 4327 + }, + { + "#": 4328 + }, + { + "#": 4329 + }, + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + }, + { + "#": 4337 + }, + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 234.06916289493344, + "y": 705.0117043835614 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.71194348262995, + "y": 710.7666380466773 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230.0167050565298, + "y": 716.0289967218795 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.14138364442417, + "y": 720.4931773805084 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 221.309384438693, + "y": 723.8999212329006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.8027429835439, + "y": 726.0523832846993 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 209.94119660069714, + "y": 726.8233430772544 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 204.0653360297626, + "y": 726.1703748154399 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 198.5165360740235, + "y": 724.1290487632892 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 193.61702697559727, + "y": 720.8201319322948 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 189.65274449286164, + "y": 716.4347597249359 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 186.85226059676197, + "y": 711.2276473824098 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 185.3796229909022, + "y": 705.5011611576987 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 185.3201949853017, + "y": 699.5894598533234 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 186.67741439760513, + "y": 693.8345261902076 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 189.37265282370535, + "y": 688.5721675150054 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 193.24797423581091, + "y": 684.1079868563764 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 198.07997344154214, + "y": 680.7012430039842 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 203.58661489669117, + "y": 678.5487809521858 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 209.44816127953794, + "y": 677.7778211596307 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 215.3240218504725, + "y": 678.430789421445 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 220.87282180621165, + "y": 680.4721154735956 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 225.77233090463787, + "y": 683.7810323045903 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 229.73661338737344, + "y": 688.1664045119489 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 232.53709728347317, + "y": 693.373516854475 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 234.0097348893329, + "y": 699.1000030791862 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2329.709364, + "axes": { + "#": 4342 + }, + "bounds": { + "#": 4356 + }, + "circleRadius": 27.364904835390945, + "collisionFilter": { + "#": 4359 + }, + "constraintImpulse": { + "#": 4360 + }, + "density": 0.001, + "force": { + "#": 4361 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 3455.3488495656693, + "inverseInertia": 0.0002894063793662102, + "inverseMass": 0.4292380910050719, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.3297093639999997, + "motion": 0, + "parent": null, + "position": { + "#": 4362 + }, + "positionImpulse": { + "#": 4363 + }, + "positionPrev": { + "#": 4364 + }, + "region": { + "#": 4365 + }, + "render": { + "#": 4366 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4368 + }, + "vertices": { + "#": 4369 + } + }, + [ + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + }, + { + "#": 4347 + }, + { + "#": 4348 + }, + { + "#": 4349 + }, + { + "#": 4350 + }, + { + "#": 4351 + }, + { + "#": 4352 + }, + { + "#": 4353 + }, + { + "#": 4354 + }, + { + "#": 4355 + } + ], + { + "x": -0.9709748157400481, + "y": -0.23918174511985563 + }, + { + "x": -0.885430654533355, + "y": -0.46477150946743123 + }, + { + "x": -0.748487143274187, + "y": -0.6631493017060688 + }, + { + "x": -0.5680269481764096, + "y": -0.8230099550706507 + }, + { + "x": -0.3547090688589646, + "y": -0.9349767250949119 + }, + { + "x": -0.12050791439215353, + "y": -0.9927123664832898 + }, + { + "x": 0.12050791439215353, + "y": -0.9927123664832898 + }, + { + "x": 0.3547090688589646, + "y": -0.9349767250949119 + }, + { + "x": 0.5680269481764096, + "y": -0.8230099550706507 + }, + { + "x": 0.748487143274187, + "y": -0.6631493017060688 + }, + { + "x": 0.885430654533355, + "y": -0.46477150946743123 + }, + { + "x": 0.9709748157400481, + "y": -0.23918174511985563 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4357 + }, + "min": { + "#": 4358 + } + }, + { + "x": 301.90772861369237, + "y": 723.7643217215791 + }, + { + "x": 247.5777286136924, + "y": 666.1270510065432 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 274.74272861369235, + "y": 693.4920510065432 + }, + { + "x": -0.2964498201436977, + "y": 0.4443307130943467 + }, + { + "x": 274.74272861369235, + "y": 690.5847802915073 + }, + { + "endCol": 6, + "endRow": 15, + "id": "5,6,13,15", + "startCol": 5, + "startRow": 13 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4367 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 4370 + }, + { + "#": 4371 + }, + { + "#": 4372 + }, + { + "#": 4373 + }, + { + "#": 4374 + }, + { + "#": 4375 + }, + { + "#": 4376 + }, + { + "#": 4377 + }, + { + "#": 4378 + }, + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + }, + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 301.90772861369237, + "y": 696.7900510065432 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300.32972861369234, + "y": 703.1960510065431 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 297.26372861369236, + "y": 709.0370510065432 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 292.88872861369236, + "y": 713.9750510065431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 287.45972861369233, + "y": 717.7220510065432 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 281.2917286136923, + "y": 720.0620510065432 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 274.74272861369235, + "y": 720.8570510065432 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.1937286136924, + "y": 720.0620510065432 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 262.02572861369237, + "y": 717.7220510065432 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 256.59672861369233, + "y": 713.9750510065431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.2217286136923, + "y": 709.0370510065432 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 249.15572861369233, + "y": 703.1960510065431 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 247.5777286136924, + "y": 696.7900510065432 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 247.5777286136924, + "y": 690.1940510065432 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 249.15572861369233, + "y": 683.7880510065432 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 252.2217286136923, + "y": 677.9470510065432 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 256.59672861369233, + "y": 673.0090510065432 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 262.02572861369237, + "y": 669.2620510065432 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 268.1937286136924, + "y": 666.9220510065431 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 274.74272861369235, + "y": 666.1270510065432 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 281.2917286136923, + "y": 666.9220510065431 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 287.45972861369233, + "y": 669.2620510065432 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 292.88872861369236, + "y": 673.0090510065432 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 297.26372861369236, + "y": 677.9470510065432 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 300.32972861369234, + "y": 683.7880510065432 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 301.90772861369237, + "y": 690.1940510065432 + }, + { + "angle": -0.00004989405763695609, + "anglePrev": -0.00005412186899608491, + "angularSpeed": 0.000004227811359128822, + "angularVelocity": 0.000004227811359128822, + "area": 1168.93972, + "axes": { + "#": 4397 + }, + "bounds": { + "#": 4408 + }, + "circleRadius": 19.449138374485596, + "collisionFilter": { + "#": 4411 + }, + "constraintImpulse": { + "#": 4412 + }, + "density": 0.001, + "force": { + "#": 4413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 869.9376675929504, + "inverseInertia": 0.001149507645492489, + "inverseMass": 0.855476106158836, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.16893972, + "motion": 0, + "parent": null, + "position": { + "#": 4414 + }, + "positionImpulse": { + "#": 4415 + }, + "positionPrev": { + "#": 4416 + }, + "region": { + "#": 4417 + }, + "render": { + "#": 4418 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905169522609058, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4420 + }, + "vertices": { + "#": 4421 + } + }, + [ + { + "#": 4398 + }, + { + "#": 4399 + }, + { + "#": 4400 + }, + { + "#": 4401 + }, + { + "#": 4402 + }, + { + "#": 4403 + }, + { + "#": 4404 + }, + { + "#": 4405 + }, + { + "#": 4406 + }, + { + "#": 4407 + } + ], + { + "x": -0.9510386210342142, + "y": -0.30907206489966105 + }, + { + "x": -0.809106399859026, + "y": -0.5876621765156965 + }, + { + "x": -0.5877429127923882, + "y": -0.8090477541297046 + }, + { + "x": -0.3091669657122308, + "y": -0.9510077745803618 + }, + { + "x": -0.00004989405761625489, + "y": -0.9999999987552914 + }, + { + "x": 0.30907206489966105, + "y": -0.9510386210342142 + }, + { + "x": 0.5876621765156965, + "y": -0.809106399859026 + }, + { + "x": 0.8090477541297046, + "y": -0.5877429127923882 + }, + { + "x": 0.9510077745803618, + "y": -0.3091669657122308 + }, + { + "x": 0.9999999987552914, + "y": -0.00004989405761625489 + }, + { + "max": { + "#": 4409 + }, + "min": { + "#": 4410 + } + }, + { + "x": 344.4685388959445, + "y": 747.0998673343462 + }, + { + "x": 306.0476797888496, + "y": 705.774394257433 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325.258387092238, + "y": 724.9845460611394 + }, + { + "x": -0.2016241681652141, + "y": 0.6331481423821572 + }, + { + "x": 325.25894259191995, + "y": 722.0793765916392 + }, + { + "endCol": 7, + "endRow": 15, + "id": "6,7,14,15", + "startCol": 6, + "startRow": 14 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4419 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0005554996819194003, + "y": 2.9051694695002985 + }, + [ + { + "#": 4422 + }, + { + "#": 4423 + }, + { + "#": 4424 + }, + { + "#": 4425 + }, + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + }, + { + "#": 4429 + }, + { + "#": 4430 + }, + { + "#": 4431 + }, + { + "#": 4432 + }, + { + "#": 4433 + }, + { + "#": 4434 + }, + { + "#": 4435 + }, + { + "#": 4436 + }, + { + "#": 4437 + }, + { + "#": 4438 + }, + { + "#": 4439 + }, + { + "#": 4440 + }, + { + "#": 4441 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 344.4685388959445, + "y": 728.026587592505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 342.58782763519724, + "y": 733.8136814360242 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 339.01207326809396, + "y": 738.7368598510467 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 334.08925169537173, + "y": 742.3131054750411 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 328.3023455532972, + "y": 744.1943942096112 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 322.21634556087247, + "y": 744.1946978648459 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 316.4292517173533, + "y": 742.3139866040987 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 311.50607330233095, + "y": 738.7382322369954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 307.92982767833627, + "y": 733.8154106642731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 306.04853894376623, + "y": 728.0285045221987 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 306.04823528853154, + "y": 721.9425045297738 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 307.9289465492788, + "y": 716.1554106862546 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 311.5047009163821, + "y": 711.2322322712322 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 316.4275224891043, + "y": 707.6559866472378 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 322.21442863117886, + "y": 705.7746979126676 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 328.3004286236036, + "y": 705.774394257433 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 334.08752246712277, + "y": 707.6551055181802 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 339.0107008821451, + "y": 711.2308598852835 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 342.5869465061398, + "y": 716.1536814580057 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 344.4682352407098, + "y": 721.9405876000802 + }, + { + "angle": 0.006926795713580147, + "anglePrev": 0.006370496403051084, + "angularSpeed": 0.000556299310529063, + "angularVelocity": 0.000556299310529063, + "area": 2280.335178, + "axes": { + "#": 4443 + }, + "bounds": { + "#": 4457 + }, + "circleRadius": 27.07349537037037, + "collisionFilter": { + "#": 4460 + }, + "constraintImpulse": { + "#": 4461 + }, + "density": 0.001, + "force": { + "#": 4462 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 3310.4404760562484, + "inverseInertia": 0.0003020746052474888, + "inverseMass": 0.4385320235585121, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.280335178, + "motion": 0, + "parent": null, + "position": { + "#": 4463 + }, + "positionImpulse": { + "#": 4464 + }, + "positionPrev": { + "#": 4465 + }, + "region": { + "#": 4466 + }, + "render": { + "#": 4467 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8931198408281285, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4469 + }, + "vertices": { + "#": 4470 + } + }, + [ + { + "#": 4444 + }, + { + "#": 4445 + }, + { + "#": 4446 + }, + { + "#": 4447 + }, + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + }, + { + "#": 4452 + }, + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + } + ], + { + "x": -0.9692582927428056, + "y": -0.24604544691845454 + }, + { + "x": -0.882219163554749, + "y": -0.47083898251606054 + }, + { + "x": -0.7439468938790952, + "y": -0.6682387440785267 + }, + { + "x": -0.5623157335368112, + "y": -0.826922617792595 + }, + { + "x": -0.34817850160741826, + "y": -0.937428253797811 + }, + { + "x": -0.11355282171012172, + "y": -0.9935319605738253 + }, + { + "x": 0.12730547082956659, + "y": -0.9918635577017951 + }, + { + "x": 0.36113142320266367, + "y": -0.932514930269547 + }, + { + "x": 0.5737172556750882, + "y": -0.8190534234960776 + }, + { + "x": 0.7531327155539277, + "y": -0.657868613601809 + }, + { + "x": 0.8886571085262022, + "y": -0.4585722881573302 + }, + { + "x": 0.972573787301415, + "y": -0.23259455766243148 + }, + { + "x": 0.999976009846493, + "y": 0.006926740321860729 + }, + { + "max": { + "#": 4458 + }, + "min": { + "#": 4459 + } + }, + { + "x": 394.155062692734, + "y": 727.0912912088485 + }, + { + "x": 340.3400338573008, + "y": 670.0535334828284 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 367.23799105160543, + "y": 697.1258839974024 + }, + { + "x": -0.6539260506672687, + "y": 0.23651310978070647 + }, + { + "x": 367.2188766047815, + "y": 694.2328273005304 + }, + { + "endCol": 8, + "endRow": 15, + "id": "7,8,13,15", + "startCol": 7, + "startRow": 13 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4468 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.019114446823970184, + "y": 2.8930566968720104 + }, + [ + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + }, + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + }, + { + "#": 4480 + }, + { + "#": 4481 + }, + { + "#": 4482 + }, + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + }, + { + "#": 4487 + }, + { + "#": 4488 + }, + { + "#": 4489 + }, + { + "#": 4490 + }, + { + "#": 4491 + }, + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + }, + { + "#": 4495 + }, + { + "#": 4496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.0907443385694, + "y": 700.574968790422 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 392.4848870577697, + "y": 706.9009971964364 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.4119301875853, + "y": 712.6588497539428 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.05018996375696, + "y": 717.5147536059397 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.65364138849833, + "y": 721.1844611521723 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 373.5347523965601, + "y": 723.4571317187825 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 367.0504634108716, + "y": 724.1982345119765 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 360.5770632609693, + "y": 723.3673750176918 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 354.4902450767211, + "y": 721.010156658713 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 349.1450513542088, + "y": 717.2660420679432 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.8509992368057, + "y": 712.3501803517203 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 341.8581016312614, + "y": 706.5503101874211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 340.3400338573008, + "y": 700.2026426446414 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 340.3852377646415, + "y": 693.6767992043829 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.99109504544117, + "y": 687.3507707983684 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 345.06405191562556, + "y": 681.592918240862 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 349.4257921394539, + "y": 676.7370143888651 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 354.82234071471254, + "y": 673.0673068426325 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 360.94122970665063, + "y": 670.7946362760223 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 367.42551869233927, + "y": 670.0535334828284 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 373.8989188422416, + "y": 670.8843929771131 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 379.98573702648963, + "y": 673.2416113360919 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 385.33093074900194, + "y": 676.9857259268616 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 389.62498286640505, + "y": 681.9015876430846 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 392.6178804719494, + "y": 687.7014578073837 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 394.1359482459101, + "y": 694.0491253501634 + }, + { + "angle": -0.00010792433350934371, + "anglePrev": -0.00014783262528174013, + "angularSpeed": 0.000039908291772396416, + "angularVelocity": 0.000039908291772396416, + "area": 2673.0073460000003, + "axes": { + "#": 4498 + }, + "bounds": { + "#": 4512 + }, + "circleRadius": 29.312049897119344, + "collisionFilter": { + "#": 4515 + }, + "constraintImpulse": { + "#": 4516 + }, + "density": 0.001, + "force": { + "#": 4517 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 4548.714864282256, + "inverseInertia": 0.0002198423136724334, + "inverseMass": 0.37411045708364465, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6730073460000003, + "motion": 0, + "parent": null, + "position": { + "#": 4518 + }, + "positionImpulse": { + "#": 4519 + }, + "positionPrev": { + "#": 4520 + }, + "region": { + "#": 4521 + }, + "render": { + "#": 4522 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.925234950168427, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4524 + }, + "vertices": { + "#": 4525 + } + }, + [ + { + "#": 4499 + }, + { + "#": 4500 + }, + { + "#": 4501 + }, + { + "#": 4502 + }, + { + "#": 4503 + }, + { + "#": 4504 + }, + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + }, + { + "#": 4511 + } + ], + { + "x": -0.970970420972838, + "y": -0.23919958527520419 + }, + { + "x": -0.8855019212439521, + "y": -0.4646357148059863 + }, + { + "x": -0.7485573860890173, + "y": -0.663070011184021 + }, + { + "x": -0.568268117118129, + "y": -0.8228434523449869 + }, + { + "x": -0.3546186207014325, + "y": -0.9350110340802475 + }, + { + "x": -0.12067516445842642, + "y": -0.9926920492695263 + }, + { + "x": 0.12046089039332841, + "y": -0.9927180737176322 + }, + { + "x": 0.3544167915566902, + "y": -0.9350875562548472 + }, + { + "x": 0.5680904942191649, + "y": -0.822966093091219 + }, + { + "x": 0.7484142458741884, + "y": -0.6632315708503105 + }, + { + "x": 0.8854016096169872, + "y": -0.46482683839000594 + }, + { + "x": 0.9709187674425357, + "y": -0.23940916237242663 + }, + { + "x": 0.9999999941761695, + "y": -0.00010792433329983269 + }, + { + "max": { + "#": 4513 + }, + "min": { + "#": 4514 + } + }, + { + "x": 494.64608290458403, + "y": 750.321808231442 + }, + { + "x": 436.44900299404134, + "y": 688.7725736399375 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465.5473841212491, + "y": 718.0845734692292 + }, + { + "x": -0.1301860942373012, + "y": 0.9272053970898112 + }, + { + "x": 465.5470664651219, + "y": 715.1593385363082 + }, + { + "endCol": 10, + "endRow": 15, + "id": "9,10,14,15", + "startCol": 9, + "startRow": 14 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4523 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00031765612719937054, + "y": 2.9252349329210237 + }, + [ + { + "#": 4526 + }, + { + "#": 4527 + }, + { + "#": 4528 + }, + { + "#": 4529 + }, + { + "#": 4530 + }, + { + "#": 4531 + }, + { + "#": 4532 + }, + { + "#": 4533 + }, + { + "#": 4534 + }, + { + "#": 4535 + }, + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + }, + { + "#": 4545 + }, + { + "#": 4546 + }, + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + }, + { + "#": 4550 + }, + { + "#": 4551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 494.6457652484568, + "y": 721.6144330664033 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 492.95550572715575, + "y": 728.4756155264936 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 489.6721810288346, + "y": 734.7329699135644 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 484.9867518679239, + "y": 740.0224756161881 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.1721852179877, + "y": 744.0381031728034 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 472.5654556069205, + "y": 746.543816214285 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.55054759930675, + "y": 747.3965732985209 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 458.535455688629, + "y": 746.5453303926811 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 451.9281853766521, + "y": 744.04104346334 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 446.1127520943194, + "y": 740.0266710667207 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 441.4261813098111, + "y": 734.7381768309486 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 438.1415060463832, + "y": 728.4815312908993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 436.4497655873805, + "y": 721.6207138309039 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 436.44900299404134, + "y": 714.5547138720551 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 438.1392625153424, + "y": 707.6935314119648 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 441.4225872136636, + "y": 701.436177024894 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 446.1080163745743, + "y": 696.1466713222703 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 451.92258302451046, + "y": 692.131043765655 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 458.52931263557764, + "y": 689.6253307241734 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 465.5442206431914, + "y": 688.7725736399375 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 472.5593125538692, + "y": 689.6238165457773 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 479.16658286584607, + "y": 692.1281034751185 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 484.9820161481788, + "y": 696.1424758717377 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 489.66858693268705, + "y": 701.4309701075098 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 492.95326219611496, + "y": 707.6876156475591 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 494.64500265511765, + "y": 714.5484331075545 + }, + { + "angle": 0.005815970727656315, + "anglePrev": 0.004592049514071911, + "angularSpeed": 0.0012239212135844038, + "angularVelocity": 0.0012239212135844038, + "area": 1197.2269959999996, + "axes": { + "#": 4553 + }, + "bounds": { + "#": 4564 + }, + "circleRadius": 19.68332047325103, + "collisionFilter": { + "#": 4567 + }, + "constraintImpulse": { + "#": 4568 + }, + "density": 0.001, + "force": { + "#": 4569 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 912.5504968907098, + "inverseInertia": 0.00109582976877143, + "inverseMass": 0.8352634908342814, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1972269959999997, + "motion": 0, + "parent": null, + "position": { + "#": 4570 + }, + "positionImpulse": { + "#": 4571 + }, + "positionPrev": { + "#": 4572 + }, + "region": { + "#": 4573 + }, + "render": { + "#": 4574 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.886123196607046, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4576 + }, + "vertices": { + "#": 4577 + } + }, + [ + { + "#": 4554 + }, + { + "#": 4555 + }, + { + "#": 4556 + }, + { + "#": 4557 + }, + { + "#": 4558 + }, + { + "#": 4559 + }, + { + "#": 4560 + }, + { + "#": 4561 + }, + { + "#": 4562 + }, + { + "#": 4563 + } + ], + { + "x": -0.9492458628428478, + "y": -0.31453504077564565 + }, + { + "x": -0.8055563689778692, + "y": -0.5925191443313805 + }, + { + "x": -0.5831090870288783, + "y": -0.8123938654521882 + }, + { + "x": -0.30347243908204746, + "y": -0.9528402167822227 + }, + { + "x": 0.0058159379396770985, + "y": -0.999983087289921 + }, + { + "x": 0.31453504077564565, + "y": -0.9492458628428478 + }, + { + "x": 0.5925191443313805, + "y": -0.8055563689778692 + }, + { + "x": 0.8123938654521882, + "y": -0.5831090870288783 + }, + { + "x": 0.9528402167822227, + "y": -0.30347243908204746 + }, + { + "x": 0.999983087289921, + "y": 0.0058159379396770985 + }, + { + "max": { + "#": 4565 + }, + "min": { + "#": 4566 + } + }, + { + "x": 532.0691403152059, + "y": 725.2769104947511 + }, + { + "x": 493.14207373239213, + "y": 683.4736473649523 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.6105618422862, + "y": 702.932225837872 + }, + { + "x": -0.08865496504364605, + "y": 0.5084494927560311 + }, + { + "x": 512.6204714792607, + "y": 700.0461196539127 + }, + { + "endCol": 11, + "endRow": 15, + "id": "10,11,14,15", + "startCol": 10, + "startRow": 14 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4575 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.009909636974514342, + "y": 2.886106183959334 + }, + [ + { + "#": 4578 + }, + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + }, + { + "#": 4584 + }, + { + "#": 4585 + }, + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + }, + { + "#": 4589 + }, + { + "#": 4590 + }, + { + "#": 4591 + }, + { + "#": 4592 + }, + { + "#": 4593 + }, + { + "#": 4594 + }, + { + "#": 4595 + }, + { + "#": 4596 + }, + { + "#": 4597 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 532.0333257693733, + "y": 706.124241413123 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530.096294005748, + "y": 711.9700746254807 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 526.4473802269429, + "y": 716.9309366710175 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 521.4444107907228, + "y": 720.5219004441915 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 515.5764421185664, + "y": 722.3908043107917 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 509.4185462670354, + "y": 722.3549897649591 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 503.5727130546775, + "y": 720.4179580013339 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 498.61185100914065, + "y": 716.7690442225288 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.0208872359666, + "y": 711.7660747863088 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 493.15198336936663, + "y": 705.8981061141523 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 493.1877979151991, + "y": 699.7402102626211 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 495.1248296788245, + "y": 693.8943770502633 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 498.77374345762956, + "y": 688.9335150047265 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 503.77671289384966, + "y": 685.3425512315525 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 509.64468156600606, + "y": 683.4736473649523 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 515.8025774175371, + "y": 683.5094619107849 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 521.6484106298948, + "y": 685.4464936744101 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 526.6092726754316, + "y": 689.0954074532152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 530.2002364486057, + "y": 694.0983768894353 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 532.0691403152059, + "y": 699.9663455615918 + }, + { + "angle": -0.014545348283061353, + "anglePrev": -0.012652242954895452, + "angularSpeed": 0.0018931053281659013, + "angularVelocity": -0.0018931053281659013, + "area": 977.1466719999999, + "axes": { + "#": 4599 + }, + "bounds": { + "#": 4609 + }, + "circleRadius": 17.816936728395063, + "collisionFilter": { + "#": 4612 + }, + "constraintImpulse": { + "#": 4613 + }, + "density": 0.001, + "force": { + "#": 4614 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 607.9053757880243, + "inverseInertia": 0.0016449928555142411, + "inverseMass": 1.0233878174637023, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9771466719999998, + "motion": 0, + "parent": null, + "position": { + "#": 4615 + }, + "positionImpulse": { + "#": 4616 + }, + "positionPrev": { + "#": 4617 + }, + "region": { + "#": 4618 + }, + "render": { + "#": 4619 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9130530910518377, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4621 + }, + "vertices": { + "#": 4622 + } + }, + [ + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + }, + { + "#": 4606 + }, + { + "#": 4607 + }, + { + "#": 4608 + } + ], + { + "x": -0.9445739754645792, + "y": -0.32829865195434554 + }, + { + "x": -0.7754042223231709, + "y": -0.6314651946096462 + }, + { + "x": -0.5124207052893947, + "y": -0.858734546172867 + }, + { + "x": -0.18802610558563776, + "y": -0.9821640309125041 + }, + { + "x": 0.1593787448352719, + "y": -0.9872175118456586 + }, + { + "x": 0.4872262349995724, + "y": -0.8732757845767519 + }, + { + "x": 0.7567089738085817, + "y": -0.6537518863892959 + }, + { + "x": 0.9346252325048288, + "y": -0.3556341867218267 + }, + { + "x": 0.9998942182866766, + "y": -0.014544835402156973 + }, + { + "max": { + "#": 4610 + }, + "min": { + "#": 4611 + } + }, + { + "x": 573.3687641356521, + "y": 712.9903462618036 + }, + { + "x": 538.1904727860674, + "y": 677.3601156873758 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 555.7796184608598, + "y": 695.1752309745897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 555.7636893202512, + "y": 692.2622214356821 + }, + { + "endCol": 11, + "endRow": 14, + "id": "11,11,14,14", + "startCol": 11, + "startRow": 14 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4620 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.015929140608554916, + "y": 2.913009538907509 + }, + [ + { + "#": 4623 + }, + { + "#": 4624 + }, + { + "#": 4625 + }, + { + "#": 4626 + }, + { + "#": 4627 + }, + { + "#": 4628 + }, + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + }, + { + "#": 4636 + }, + { + "#": 4637 + }, + { + "#": 4638 + }, + { + "#": 4639 + }, + { + "#": 4640 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 573.3687641356521, + "y": 698.0137000040024 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 571.3375516427855, + "y": 703.8578618608321 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.4299294013011, + "y": 708.6562051601236 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 562.1164834614017, + "y": 711.8268237502042 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 556.0387637932199, + "y": 712.9903462618036 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 549.9297727289235, + "y": 712.0040962040861 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 544.5263524372266, + "y": 708.9893691598453 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 540.4808160664588, + "y": 704.3067154813427 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 538.280476227536, + "y": 698.524107367935 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.1904727860674, + "y": 692.3367619451769 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 540.221685278934, + "y": 686.4926000883472 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 544.1293075204184, + "y": 681.6942567890558 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 549.4427534603178, + "y": 678.5236381989752 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 555.5204731284996, + "y": 677.3601156873758 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 561.629464192796, + "y": 678.3463657450933 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 567.0328844844929, + "y": 681.3610927893341 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 571.0784208552607, + "y": 686.0437464678366 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 573.2787606941835, + "y": 691.8263545812443 + }, + { + "angle": 0.013427229320804002, + "anglePrev": 0.012874476561824373, + "angularSpeed": 0.0011607760045724452, + "angularVelocity": 0.001997844612734969, + "area": 799.8991080000001, + "axes": { + "#": 4642 + }, + "bounds": { + "#": 4652 + }, + "circleRadius": 16.120306069958847, + "collisionFilter": { + "#": 4655 + }, + "constraintImpulse": { + "#": 4656 + }, + "density": 0.001, + "force": { + "#": 4657 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 407.3679845696958, + "inverseInertia": 0.0024547829919827975, + "inverseMass": 1.250157663633749, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7998991080000001, + "motion": 0, + "parent": null, + "position": { + "#": 4658 + }, + "positionImpulse": { + "#": 4659 + }, + "positionPrev": { + "#": 4660 + }, + "region": { + "#": 4661 + }, + "render": { + "#": 4662 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907481118562754, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4664 + }, + "vertices": { + "#": 4665 + } + }, + [ + { + "#": 4643 + }, + { + "#": 4644 + }, + { + "#": 4645 + }, + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + }, + { + "#": 4649 + }, + { + "#": 4650 + }, + { + "#": 4651 + } + ], + { + "x": -0.9350660973694959, + "y": -0.3544734031633136 + }, + { + "x": -0.7573357067568859, + "y": -0.653025747785681 + }, + { + "x": -0.4882498175370665, + "y": -0.8727039106564274 + }, + { + "x": -0.16039394237688076, + "y": -0.9870530802590112 + }, + { + "x": 0.1868397011378334, + "y": -0.9823904142848325 + }, + { + "x": 0.5115069488412458, + "y": -0.8592791404934251 + }, + { + "x": 0.774597187537993, + "y": -0.6324548972521529 + }, + { + "x": 0.9442469978267223, + "y": -0.32923791867769764 + }, + { + "x": 0.9999098561107362, + "y": 0.013426825857488311 + }, + { + "max": { + "#": 4653 + }, + "min": { + "#": 4654 + } + }, + { + "x": 646.0996381211943, + "y": 738.6616275738381 + }, + { + "x": 614.2508613185822, + "y": 703.5171732396102 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 630.1620119699153, + "y": 719.6357201201153 + }, + { + "x": 0.2947526155312819, + "y": 0.7858123276555884 + }, + { + "x": 630.1266121340524, + "y": 716.7113421721004 + }, + { + "endCol": 13, + "endRow": 15, + "id": "12,13,14,15", + "startCol": 12, + "startRow": 14 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4663 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.014189322568881835, + "y": 2.8839326692038867 + }, + [ + { + "#": 4666 + }, + { + "#": 4667 + }, + { + "#": 4668 + }, + { + "#": 4669 + }, + { + "#": 4670 + }, + { + "#": 4671 + }, + { + "#": 4672 + }, + { + "#": 4673 + }, + { + "#": 4674 + }, + { + "#": 4675 + }, + { + "#": 4676 + }, + { + "#": 4677 + }, + { + "#": 4678 + }, + { + "#": 4679 + }, + { + "#": 4680 + }, + { + "#": 4681 + }, + { + "#": 4682 + }, + { + "#": 4683 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 645.9979992500982, + "y": 722.6476186678568 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 644.0135332546662, + "y": 727.8824454761642 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 640.3572700264203, + "y": 732.122735702762 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 635.4711254485645, + "y": 734.856376711433 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 629.9455715370925, + "y": 735.7542670006203 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 624.4461193750875, + "y": 734.7083325295283 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 619.6351381683816, + "y": 731.8444781636915 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 616.094050252342, + "y": 727.5075416445716 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 614.2508613185822, + "y": 722.2213169468815 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 614.3260246897323, + "y": 716.6238215723737 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 616.3104906851644, + "y": 711.3889947640663 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 619.9667539134102, + "y": 707.1487045374685 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 624.852898491266, + "y": 704.4150635287975 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 630.378452402738, + "y": 703.5171732396102 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 635.8779045647431, + "y": 704.5631077107022 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 640.688885771449, + "y": 707.426962076539 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 644.2299736874886, + "y": 711.7638985956589 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 646.0731626212483, + "y": 717.050123293349 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2175.764468, + "axes": { + "#": 4685 + }, + "bounds": { + "#": 4699 + }, + "circleRadius": 26.44528034979424, + "collisionFilter": { + "#": 4702 + }, + "constraintImpulse": { + "#": 4703 + }, + "density": 0.001, + "force": { + "#": 4704 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 3013.784323849708, + "inverseInertia": 0.0003318087469254048, + "inverseMass": 0.45960857193298, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.175764468, + "motion": 0, + "parent": null, + "position": { + "#": 4705 + }, + "positionImpulse": { + "#": 4706 + }, + "positionPrev": { + "#": 4707 + }, + "region": { + "#": 4708 + }, + "render": { + "#": 4709 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4711 + }, + "vertices": { + "#": 4712 + } + }, + [ + { + "#": 4686 + }, + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + }, + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + }, + { + "#": 4697 + }, + { + "#": 4698 + } + ], + { + "x": -0.9709672518969629, + "y": -0.2392124489729995 + }, + { + "x": -0.8854382464451883, + "y": -0.46475704591976863 + }, + { + "x": -0.7484814043741432, + "y": -0.6631557790640977 + }, + { + "x": -0.5680591843232271, + "y": -0.8229877053188766 + }, + { + "x": -0.35464477726487137, + "y": -0.9350011133462621 + }, + { + "x": -0.12046252617652502, + "y": -0.9927178752229507 + }, + { + "x": 0.12046252617652502, + "y": -0.9927178752229507 + }, + { + "x": 0.35464477726487137, + "y": -0.9350011133462621 + }, + { + "x": 0.5680591843232271, + "y": -0.8229877053188766 + }, + { + "x": 0.7484814043741432, + "y": -0.6631557790640977 + }, + { + "x": 0.8854382464451883, + "y": -0.46475704591976863 + }, + { + "x": 0.9709672518969629, + "y": -0.2392124489729995 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4700 + }, + "min": { + "#": 4701 + } + }, + { + "x": 164.0460383879898, + "y": 781.5880510053233 + }, + { + "x": 111.54203838798978, + "y": 725.7907802902873 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.7940383879898, + "y": 752.2357802902874 + }, + { + "x": -0.10850839132425782, + "y": 0.8585650694535529 + }, + { + "x": 137.7940383879898, + "y": 749.3285095752515 + }, + { + "endCol": 3, + "endRow": 16, + "id": "2,3,15,16", + "startCol": 2, + "startRow": 15 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4710 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 4713 + }, + { + "#": 4714 + }, + { + "#": 4715 + }, + { + "#": 4716 + }, + { + "#": 4717 + }, + { + "#": 4718 + }, + { + "#": 4719 + }, + { + "#": 4720 + }, + { + "#": 4721 + }, + { + "#": 4722 + }, + { + "#": 4723 + }, + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + }, + { + "#": 4728 + }, + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + }, + { + "#": 4733 + }, + { + "#": 4734 + }, + { + "#": 4735 + }, + { + "#": 4736 + }, + { + "#": 4737 + }, + { + "#": 4738 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 164.0460383879898, + "y": 755.4237802902874 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 162.5210383879898, + "y": 761.6137802902874 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 159.5580383879898, + "y": 767.2587802902874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 155.33003838798982, + "y": 772.0307802902873 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150.08403838798978, + "y": 775.6517802902874 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 144.1230383879898, + "y": 777.9127802902874 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 137.7940383879898, + "y": 778.6807802902874 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 131.46503838798978, + "y": 777.9127802902874 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 125.50403838798978, + "y": 775.6517802902874 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 120.25803838798977, + "y": 772.0307802902873 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 116.03003838798978, + "y": 767.2587802902874 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 113.06703838798977, + "y": 761.6137802902874 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 111.54203838798978, + "y": 755.4237802902874 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 111.54203838798978, + "y": 749.0477802902874 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 113.06703838798977, + "y": 742.8577802902873 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 116.03003838798978, + "y": 737.2127802902874 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 120.25803838798977, + "y": 732.4407802902874 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 125.50403838798978, + "y": 728.8197802902873 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 131.46503838798978, + "y": 726.5587802902874 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 137.7940383879898, + "y": 725.7907802902873 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 144.1230383879898, + "y": 726.5587802902874 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 150.08403838798978, + "y": 728.8197802902873 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 155.33003838798982, + "y": 732.4407802902874 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 159.5580383879898, + "y": 737.2127802902874 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 162.5210383879898, + "y": 742.8577802902873 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 164.0460383879898, + "y": 749.0477802902874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 864.0989000000001, + "axes": { + "#": 4740 + }, + "bounds": { + "#": 4750 + }, + "circleRadius": 16.754822530864196, + "collisionFilter": { + "#": 4753 + }, + "constraintImpulse": { + "#": 4754 + }, + "density": 0.001, + "force": { + "#": 4755 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 475.38270097285647, + "inverseInertia": 0.0021035683417876374, + "inverseMass": 1.157274936931409, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8640989000000001, + "motion": 0, + "parent": null, + "position": { + "#": 4756 + }, + "positionImpulse": { + "#": 4757 + }, + "positionPrev": { + "#": 4758 + }, + "region": { + "#": 4759 + }, + "render": { + "#": 4760 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4762 + }, + "vertices": { + "#": 4763 + } + }, + [ + { + "#": 4741 + }, + { + "#": 4742 + }, + { + "#": 4743 + }, + { + "#": 4744 + }, + { + "#": 4745 + }, + { + "#": 4746 + }, + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + } + ], + { + "x": -0.9397030727177501, + "y": -0.3419914255135923 + }, + { + "x": -0.7661041941914353, + "y": -0.642716394409145 + }, + { + "x": -0.49989104462044864, + "y": -0.8660883000643045 + }, + { + "x": -0.17375592062528475, + "y": -0.984788748944493 + }, + { + "x": 0.17375592062528475, + "y": -0.984788748944493 + }, + { + "x": 0.49989104462044864, + "y": -0.8660883000643045 + }, + { + "x": 0.7661041941914353, + "y": -0.642716394409145 + }, + { + "x": 0.9397030727177501, + "y": -0.3419914255135923 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4751 + }, + "min": { + "#": 4752 + } + }, + { + "x": 216.76595559727002, + "y": 772.7316844495211 + }, + { + "x": 183.76595559727002, + "y": 736.3144137344852 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200.26595559727002, + "y": 753.0694137344852 + }, + { + "x": 0.9362068542036452, + "y": 0.554554394750512 + }, + { + "x": 200.26595559727002, + "y": 750.1621430194493 + }, + { + "endCol": 4, + "endRow": 16, + "id": "3,4,15,16", + "startCol": 3, + "startRow": 15 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4761 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 4764 + }, + { + "#": 4765 + }, + { + "#": 4766 + }, + { + "#": 4767 + }, + { + "#": 4768 + }, + { + "#": 4769 + }, + { + "#": 4770 + }, + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + }, + { + "#": 4774 + }, + { + "#": 4775 + }, + { + "#": 4776 + }, + { + "#": 4777 + }, + { + "#": 4778 + }, + { + "#": 4779 + }, + { + "#": 4780 + }, + { + "#": 4781 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 216.76595559727002, + "y": 755.9784137344852 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 214.77595559727, + "y": 761.4464137344852 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 211.03595559727003, + "y": 765.9044137344853 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 205.99595559727, + "y": 768.8134137344853 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.26595559727002, + "y": 769.8244137344852 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 194.53595559727003, + "y": 768.8134137344853 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 189.49595559727, + "y": 765.9044137344853 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 185.75595559727003, + "y": 761.4464137344852 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 183.76595559727002, + "y": 755.9784137344852 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 183.76595559727002, + "y": 750.1604137344852 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 185.75595559727003, + "y": 744.6924137344853 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 189.49595559727, + "y": 740.2344137344852 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 194.53595559727003, + "y": 737.3254137344852 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 200.26595559727002, + "y": 736.3144137344852 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 205.99595559727, + "y": 737.3254137344852 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 211.03595559727003, + "y": 740.2344137344852 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 214.77595559727, + "y": 744.6924137344853 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 216.76595559727002, + "y": 750.1604137344852 + }, + { + "angle": 0.0026505628015361573, + "anglePrev": 0.002519181957485807, + "angularSpeed": 0.0003401501094390939, + "angularVelocity": 0.00047646678937351104, + "area": 1613.0638619999995, + "axes": { + "#": 4783 + }, + "bounds": { + "#": 4796 + }, + "circleRadius": 22.789673353909464, + "collisionFilter": { + "#": 4799 + }, + "constraintImpulse": { + "#": 4800 + }, + "density": 0.001, + "force": { + "#": 4801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 1656.5123333603722, + "inverseInertia": 0.0006036779683803605, + "inverseMass": 0.6199382575964003, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.6130638619999995, + "motion": 0, + "parent": null, + "position": { + "#": 4802 + }, + "positionImpulse": { + "#": 4803 + }, + "positionPrev": { + "#": 4804 + }, + "region": { + "#": 4805 + }, + "render": { + "#": 4806 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8978309892675718, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4808 + }, + "vertices": { + "#": 4809 + } + }, + [ + { + "#": 4784 + }, + { + "#": 4785 + }, + { + "#": 4786 + }, + { + "#": 4787 + }, + { + "#": 4788 + }, + { + "#": 4789 + }, + { + "#": 4790 + }, + { + "#": 4791 + }, + { + "#": 4792 + }, + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + } + ], + { + "x": -0.9652209702696102, + "y": -0.26143541946682075 + }, + { + "x": -0.864661148381764, + "y": -0.5023555498639676 + }, + { + "x": -0.705230068568243, + "y": -0.7089785260409729 + }, + { + "x": -0.4977648354162474, + "y": -0.8673120364799719 + }, + { + "x": -0.2563150124221244, + "y": -0.9665933035186238 + }, + { + "x": 0.002650559697956524, + "y": -0.9999964872604741 + }, + { + "x": 0.26143541946682075, + "y": -0.9652209702696102 + }, + { + "x": 0.5023555498639676, + "y": -0.864661148381764 + }, + { + "x": 0.7089785260409729, + "y": -0.705230068568243 + }, + { + "x": 0.8673120364799719, + "y": -0.4977648354162474 + }, + { + "x": 0.9665933035186238, + "y": -0.2563150124221244 + }, + { + "x": 0.9999964872604741, + "y": 0.002650559697956524 + }, + { + "max": { + "#": 4797 + }, + "min": { + "#": 4798 + } + }, + { + "x": 270.63354989776434, + "y": 774.8886871509029 + }, + { + "x": 225.41572203885568, + "y": 726.7852698199556 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.0307438530125, + "y": 749.3880758647075 + }, + { + "x": -0.20468234167566962, + "y": 0.11035874867295264 + }, + { + "x": 248.0405689781971, + "y": 746.499096894542 + }, + { + "endCol": 5, + "endRow": 16, + "id": "4,5,15,16", + "startCol": 4, + "startRow": 15 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4807 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.013776749573196412, + "y": 2.9035683885934986 + }, + [ + { + "#": 4810 + }, + { + "#": 4811 + }, + { + "#": 4812 + }, + { + "#": 4813 + }, + { + "#": 4814 + }, + { + "#": 4815 + }, + { + "#": 4816 + }, + { + "#": 4817 + }, + { + "#": 4818 + }, + { + "#": 4819 + }, + { + "#": 4820 + }, + { + "#": 4821 + }, + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + }, + { + "#": 4825 + }, + { + "#": 4826 + }, + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + }, + { + "#": 4830 + }, + { + "#": 4831 + }, + { + "#": 4832 + }, + { + "#": 4833 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 270.61777906756157, + "y": 752.4229548106827 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 269.06255436115595, + "y": 758.1648527645465 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 266.0739091279922, + "y": 763.308949251811 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 261.855773001438, + "y": 767.5047835690666 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 256.69590568397075, + "y": 770.4661174351027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 250.9458440062371, + "y": 771.9908819094594 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 244.99586490703726, + "y": 771.9751110792565 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 239.2539669531734, + "y": 770.4198863728509 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 234.1098704659089, + "y": 767.4312411396869 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 229.9140361486534, + "y": 763.2131050131331 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 226.95270228261734, + "y": 758.0532376956655 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 225.42793780826062, + "y": 752.3031760179322 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 225.4437086384635, + "y": 746.3531969187324 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 226.9989333448691, + "y": 740.6112989648685 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 229.98757857803284, + "y": 735.467202477604 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 234.20571470458702, + "y": 731.2713681603484 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 239.36558202205438, + "y": 728.3100342943123 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 245.11564369978788, + "y": 726.7852698199556 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 251.06562279898773, + "y": 726.8010406501585 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 256.8075207528517, + "y": 728.3562653565641 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 261.9516172401161, + "y": 731.3449105897281 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 266.1474515573717, + "y": 735.5630467162819 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 269.1087854234078, + "y": 740.7229140337495 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 270.63354989776434, + "y": 746.4729757114828 + }, + { + "angle": 0.0018422637879341632, + "anglePrev": 0.001656964488334867, + "angularSpeed": 0.0002758975341861816, + "angularVelocity": 0.0003350539934657932, + "area": 2750.736188, + "axes": { + "#": 4835 + }, + "bounds": { + "#": 4849 + }, + "circleRadius": 29.735018004115226, + "collisionFilter": { + "#": 4852 + }, + "constraintImpulse": { + "#": 4853 + }, + "density": 0.001, + "force": { + "#": 4854 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 4817.10697868961, + "inverseInertia": 0.0002075934797429034, + "inverseMass": 0.3635390425161339, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.750736188, + "motion": 0, + "parent": null, + "position": { + "#": 4855 + }, + "positionImpulse": { + "#": 4856 + }, + "positionPrev": { + "#": 4857 + }, + "region": { + "#": 4858 + }, + "render": { + "#": 4859 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9128974038050197, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4861 + }, + "vertices": { + "#": 4862 + } + }, + [ + { + "#": 4836 + }, + { + "#": 4837 + }, + { + "#": 4838 + }, + { + "#": 4839 + }, + { + "#": 4840 + }, + { + "#": 4841 + }, + { + "#": 4842 + }, + { + "#": 4843 + }, + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + }, + { + "#": 4847 + }, + { + "#": 4848 + } + ], + { + "x": -0.9705151546930528, + "y": -0.2410401097558655 + }, + { + "x": -0.8845501365016119, + "y": -0.46644512647789527 + }, + { + "x": -0.7473475826836569, + "y": -0.6644332853318643 + }, + { + "x": -0.5665679045708234, + "y": -0.8240150541769402 + }, + { + "x": -0.3528680000526815, + "y": -0.9356731130789323 + }, + { + "x": -0.11870230535462818, + "y": -0.9929298881106845 + }, + { + "x": 0.12235996889541159, + "y": -0.9924857873097801 + }, + { + "x": 0.3563131104193866, + "y": -0.9343666129219633 + }, + { + "x": 0.5696001581053965, + "y": -0.8219219305300882 + }, + { + "x": 0.749790627012821, + "y": -0.6616751587023056 + }, + { + "x": 0.8862627583380669, + "y": -0.46318281831583613 + }, + { + "x": 0.9713966838899327, + "y": -0.23746259184899365 + }, + { + "x": 0.9999983030325478, + "y": 0.0018422627458468163 + }, + { + "max": { + "#": 4850 + }, + "min": { + "#": 4851 + } + }, + { + "x": 327.65370399864116, + "y": 799.9242396552257 + }, + { + "x": 268.5874582427035, + "y": 737.5414936014198 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.12915142004533, + "y": 767.2764431420928 + }, + { + "x": 0.1633975397547034, + "y": 1.5094884355486253 + }, + { + "x": 298.1476939205133, + "y": 764.3584203409596 + }, + { + "endCol": 6, + "endRow": 16, + "id": "5,6,15,16", + "startCol": 5, + "startRow": 15 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4860 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.016225221724482708, + "y": 2.9094673955888766 + }, + [ + { + "#": 4863 + }, + { + "#": 4864 + }, + { + "#": 4865 + }, + { + "#": 4866 + }, + { + "#": 4867 + }, + { + "#": 4868 + }, + { + "#": 4869 + }, + { + "#": 4870 + }, + { + "#": 4871 + }, + { + "#": 4872 + }, + { + "#": 4873 + }, + { + "#": 4874 + }, + { + "#": 4875 + }, + { + "#": 4876 + }, + { + "#": 4877 + }, + { + "#": 4878 + }, + { + "#": 4879 + }, + { + "#": 4880 + }, + { + "#": 4881 + }, + { + "#": 4882 + }, + { + "#": 4883 + }, + { + "#": 4884 + }, + { + "#": 4885 + }, + { + "#": 4886 + }, + { + "#": 4887 + }, + { + "#": 4888 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 327.64049865927905, + "y": 770.9148169718933 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325.91267942086705, + "y": 777.8716456803908 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 322.56899223351473, + "y": 784.2124964902692 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 317.80611471730685, + "y": 789.5697311095109 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 311.8996230338167, + "y": 793.6308566915217 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 305.19195137668964, + "y": 796.1605036906451 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 298.0743717372975, + "y": 797.0113926827659 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 290.9599755279304, + "y": 796.1342846072462 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 284.26166993460316, + "y": 793.5799402337518 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.37018163891526, + "y": 789.4970796358656 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 273.62707528649577, + "y": 784.122332466962 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 270.3067737824392, + "y": 777.7692048181453 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 268.6045988414495, + "y": 770.8060571484295 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 268.6178041808116, + "y": 763.6380693122924 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 270.3456234192236, + "y": 756.6812406037949 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 273.68931060657593, + "y": 750.3403897939164 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 278.45218812278387, + "y": 744.9831551746747 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 284.3586798062741, + "y": 740.922029592664 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 291.066351463401, + "y": 738.3923825935406 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 298.18393110279317, + "y": 737.5414936014198 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 305.29832731216027, + "y": 738.4186016769395 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 311.99663290548756, + "y": 740.9729460504338 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 317.8881212011755, + "y": 745.0558066483201 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 322.6312275535949, + "y": 750.4305538172237 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 325.95152905765144, + "y": 756.7836814660403 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 327.65370399864116, + "y": 763.7468291357561 + }, + { + "angle": -0.003012941131509366, + "anglePrev": -0.0025575047412174537, + "angularSpeed": 0.00045543639029191254, + "angularVelocity": -0.00045543639029191254, + "area": 2596.145458000001, + "axes": { + "#": 4890 + }, + "bounds": { + "#": 4904 + }, + "circleRadius": 28.88715277777778, + "collisionFilter": { + "#": 4907 + }, + "constraintImpulse": { + "#": 4908 + }, + "density": 0.001, + "force": { + "#": 4909 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 4290.880825641059, + "inverseInertia": 0.00023305238263069205, + "inverseMass": 0.38518642971968625, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.596145458000001, + "motion": 0, + "parent": null, + "position": { + "#": 4910 + }, + "positionImpulse": { + "#": 4911 + }, + "positionPrev": { + "#": 4912 + }, + "region": { + "#": 4913 + }, + "render": { + "#": 4914 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.914072697712416, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4916 + }, + "vertices": { + "#": 4917 + } + }, + [ + { + "#": 4891 + }, + { + "#": 4892 + }, + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + }, + { + "#": 4896 + }, + { + "#": 4897 + }, + { + "#": 4898 + }, + { + "#": 4899 + }, + { + "#": 4900 + }, + { + "#": 4901 + }, + { + "#": 4902 + }, + { + "#": 4903 + } + ], + { + "x": -0.9716480155521687, + "y": -0.2364320914629249 + }, + { + "x": -0.8868619669832927, + "y": -0.4620344700544806 + }, + { + "x": -0.7504647397426781, + "y": -0.6609104889491123 + }, + { + "x": -0.5705588798360346, + "y": -0.8212566983837937 + }, + { + "x": -0.35746106587587473, + "y": -0.9339280413302105 + }, + { + "x": -0.12347190742279347, + "y": -0.9923480680070765 + }, + { + "x": 0.11748992928652546, + "y": -0.9930740740328727 + }, + { + "x": 0.35182686960432796, + "y": -0.936065090591685 + }, + { + "x": 0.5655997547895778, + "y": -0.8246798878243421 + }, + { + "x": 0.7464685699340396, + "y": -0.6654206745365143 + }, + { + "x": 0.884061717026979, + "y": -0.4673701750083219 + }, + { + "x": 0.9702056714009321, + "y": -0.24228280001161157 + }, + { + "x": 0.9999954610963026, + "y": -0.0030129365730247725 + }, + { + "max": { + "#": 4905 + }, + "min": { + "#": 4906 + } + }, + { + "x": 391.1001937583774, + "y": 793.0383796814848 + }, + { + "x": 333.72012082492085, + "y": 732.3505741276247 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.41283287537135, + "y": 761.2374430123134 + }, + { + "x": 0.14161553438267988, + "y": 1.0462070395631842 + }, + { + "x": 362.4181840428158, + "y": 758.3233752278308 + }, + { + "endCol": 8, + "endRow": 16, + "id": "6,8,15,16", + "startCol": 6, + "startRow": 15 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4915 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.005351167444454745, + "y": 2.9140677844826977 + }, + [ + { + "#": 4918 + }, + { + "#": 4919 + }, + { + "#": 4920 + }, + { + "#": 4921 + }, + { + "#": 4922 + }, + { + "#": 4923 + }, + { + "#": 4924 + }, + { + "#": 4925 + }, + { + "#": 4926 + }, + { + "#": 4927 + }, + { + "#": 4928 + }, + { + "#": 4929 + }, + { + "#": 4930 + }, + { + "#": 4931 + }, + { + "#": 4932 + }, + { + "#": 4933 + }, + { + "#": 4934 + }, + { + "#": 4935 + }, + { + "#": 4936 + }, + { + "#": 4937 + }, + { + "#": 4938 + }, + { + "#": 4939 + }, + { + "#": 4940 + }, + { + "#": 4941 + }, + { + "#": 4942 + }, + { + "#": 4943 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.1001937583774, + "y": 764.6330252257461 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.4535748018365, + "y": 771.4000170989465 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 386.23616725663817, + "y": 777.5757389748167 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 381.633891642714, + "y": 782.8016290591448 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 375.914836832254, + "y": 786.7748782427417 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 369.41030834293036, + "y": 789.2644872746132 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.49986757415627, + "y": 790.1243118970021 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 355.5843710978128, + "y": 789.3061441356717 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 349.0649587018183, + "y": 786.8557755897275 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 343.3220655371925, + "y": 782.9170606851305 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.6883830724312, + "y": 777.7189980829908 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 335.4338199934144, + "y": 771.5627759326215 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 333.74645408265997, + "y": 764.8058291899553 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 333.7254719923653, + "y": 757.8418607988807 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 335.3720909489062, + "y": 751.0748689256803 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.58949849410453, + "y": 744.8991470498102 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 343.1917741080287, + "y": 739.673256965482 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 348.9108289184887, + "y": 735.7000077818851 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 355.41535740781234, + "y": 733.2103987500136 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 362.32579817658643, + "y": 732.3505741276247 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 369.2412946529299, + "y": 733.1687418889551 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 375.7607070489244, + "y": 735.6191104348993 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 381.5036002135502, + "y": 739.5578253394963 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 386.1372826783115, + "y": 744.755887941636 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 389.3918457573283, + "y": 750.9121100920053 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 391.07921166808273, + "y": 757.6690568346716 + }, + { + "angle": 0.002151847588661878, + "anglePrev": 0.0019339527664082694, + "angularSpeed": 0.0002178948222536089, + "angularVelocity": 0.0002178948222536089, + "area": 1840.099152, + "axes": { + "#": 4945 + }, + "bounds": { + "#": 4959 + }, + "circleRadius": 24.320151748971192, + "collisionFilter": { + "#": 4962 + }, + "constraintImpulse": { + "#": 4963 + }, + "density": 0.001, + "force": { + "#": 4964 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 2155.6133263472666, + "inverseInertia": 0.0004639050927071979, + "inverseMass": 0.5434489760582205, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.840099152, + "motion": 0, + "parent": null, + "position": { + "#": 4965 + }, + "positionImpulse": { + "#": 4966 + }, + "positionPrev": { + "#": 4967 + }, + "region": { + "#": 4968 + }, + "render": { + "#": 4969 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.898971110810957, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4971 + }, + "vertices": { + "#": 4972 + } + }, + [ + { + "#": 4946 + }, + { + "#": 4947 + }, + { + "#": 4948 + }, + { + "#": 4949 + }, + { + "#": 4950 + }, + { + "#": 4951 + }, + { + "#": 4952 + }, + { + "#": 4953 + }, + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + }, + { + "#": 4958 + } + ], + { + "x": -0.9704325326256203, + "y": -0.2413725328653287 + }, + { + "x": -0.884414985156402, + "y": -0.4667013327930414 + }, + { + "x": -0.7471087818000848, + "y": -0.6647017888927284 + }, + { + "x": -0.5662396166011012, + "y": -0.8242406788016701 + }, + { + "x": -0.3525848373332607, + "y": -0.935779852573605 + }, + { + "x": -0.1184547291588977, + "y": -0.9929594539254321 + }, + { + "x": 0.12272701378498017, + "y": -0.992440466772401 + }, + { + "x": 0.35660887089315807, + "y": -0.9342537734471865 + }, + { + "x": 0.5697816424069343, + "y": -0.8217961304216856 + }, + { + "x": 0.749962527966391, + "y": -0.6614803146324615 + }, + { + "x": 0.8864153287686698, + "y": -0.46289076997055295 + }, + { + "x": 0.9714623361635584, + "y": -0.2371938646247858 + }, + { + "x": 0.999997684776871, + "y": 0.0021518459279925195 + }, + { + "max": { + "#": 4960 + }, + "min": { + "#": 4961 + } + }, + { + "x": 445.9489738832581, + "y": 777.5573707712225 + }, + { + "x": 397.63663882942177, + "y": 726.0185452751585 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 421.79972271927505, + "y": 750.3384889689321 + }, + { + "x": -0.29065408483993527, + "y": 0.7486789556288255 + }, + { + "x": 421.8135554451453, + "y": 747.4395508604152 + }, + { + "endCol": 9, + "endRow": 16, + "id": "8,9,15,16", + "startCol": 8, + "startRow": 15 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4970 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.013832725870272497, + "y": 2.898938108516895 + }, + [ + { + "#": 4973 + }, + { + "#": 4974 + }, + { + "#": 4975 + }, + { + "#": 4976 + }, + { + "#": 4977 + }, + { + "#": 4978 + }, + { + "#": 4979 + }, + { + "#": 4980 + }, + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + }, + { + "#": 4985 + }, + { + "#": 4986 + }, + { + "#": 4987 + }, + { + "#": 4988 + }, + { + "#": 4989 + }, + { + "#": 4990 + }, + { + "#": 4991 + }, + { + "#": 4992 + }, + { + "#": 4993 + }, + { + "#": 4994 + }, + { + "#": 4995 + }, + { + "#": 4996 + }, + { + "#": 4997 + }, + { + "#": 4998 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 445.93635976242814, + "y": 753.3214341992526 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 444.5211125518181, + "y": 759.0114019788505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 441.7849486285889, + "y": 764.1965261803733 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 437.88751317839836, + "y": 768.5771496418909 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 433.05535870240993, + "y": 771.8967592755954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 427.5688977067787, + "y": 773.9639580428694 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 421.7473898263063, + "y": 774.6584326627056 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 415.92892465597595, + "y": 773.9389105562674 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 410.4514110357135, + "y": 771.848118950239 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 405.63358785360515, + "y": 768.5077440033295 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 401.7550413069708, + "y": 764.1103877878758 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.04121784816596, + "y": 758.9135360260452 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 397.65047155529203, + "y": 753.2175301667736 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 397.66308567612197, + "y": 747.3555437386116 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 399.078332886732, + "y": 741.6655759590137 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 401.8144968099612, + "y": 736.4804517574909 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 405.7119322601516, + "y": 732.0998282959733 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 410.5440867361402, + "y": 728.7802186622688 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 416.03054773177126, + "y": 726.7130198949948 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 421.8520556122438, + "y": 726.0185452751585 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 427.67052078257404, + "y": 726.7380673815968 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 433.14803440283663, + "y": 728.8288589876252 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 437.96585758494484, + "y": 732.1692339345346 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 441.8444041315793, + "y": 736.5665901499884 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 444.55822759038415, + "y": 741.763441911819 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 445.9489738832581, + "y": 747.4594477710906 + }, + { + "angle": -0.0040962406278117315, + "anglePrev": -0.0033916429431446286, + "angularSpeed": 0.0007045976846671029, + "angularVelocity": -0.0007045976846671029, + "area": 1181.3861480000003, + "axes": { + "#": 5000 + }, + "bounds": { + "#": 5011 + }, + "circleRadius": 19.55253343621399, + "collisionFilter": { + "#": 5014 + }, + "constraintImpulse": { + "#": 5015 + }, + "density": 0.001, + "force": { + "#": 5016 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 888.5618284630193, + "inverseInertia": 0.0011254140882123417, + "inverseMass": 0.8464632852627622, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1813861480000003, + "motion": 0, + "parent": null, + "position": { + "#": 5017 + }, + "positionImpulse": { + "#": 5018 + }, + "positionPrev": { + "#": 5019 + }, + "region": { + "#": 5020 + }, + "render": { + "#": 5021 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9009405418465968, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5023 + }, + "vertices": { + "#": 5024 + } + }, + [ + { + "#": 5001 + }, + { + "#": 5002 + }, + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + }, + { + "#": 5007 + }, + { + "#": 5008 + }, + { + "#": 5009 + }, + { + "#": 5010 + } + ], + { + "x": -0.9522850604629628, + "y": -0.30521003197642604 + }, + { + "x": -0.8114688461746105, + "y": -0.5843956807575208 + }, + { + "x": -0.5910239384453947, + "y": -0.8066540176460378 + }, + { + "x": -0.3130012799198648, + "y": -0.9497527040069568 + }, + { + "x": -0.004096229172556569, + "y": -0.9999916104180904 + }, + { + "x": 0.30521003197642604, + "y": -0.9522850604629628 + }, + { + "x": 0.5843956807575208, + "y": -0.8114688461746105 + }, + { + "x": 0.8066540176460378, + "y": -0.5910239384453947 + }, + { + "x": 0.9497527040069568, + "y": -0.3130012799198648 + }, + { + "x": 0.9999916104180904, + "y": -0.004096229172556569 + }, + { + "max": { + "#": 5012 + }, + "min": { + "#": 5013 + } + }, + { + "x": 517.2268888983906, + "y": 808.5931953181241 + }, + { + "x": 478.57176949120304, + "y": 767.0435251071198 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 497.90252055295736, + "y": 786.3678934525528 + }, + { + "x": 0.08800862995473996, + "y": 1.3413827777401006 + }, + { + "x": 497.9089032692786, + "y": 783.4669599324146 + }, + { + "endCol": 10, + "endRow": 16, + "id": "9,10,15,16", + "startCol": 9, + "startRow": 15 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5022 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.006382716321220982, + "y": 2.900933520138231 + }, + [ + { + "#": 5025 + }, + { + "#": 5026 + }, + { + "#": 5027 + }, + { + "#": 5028 + }, + { + "#": 5029 + }, + { + "#": 5030 + }, + { + "#": 5031 + }, + { + "#": 5032 + }, + { + "#": 5033 + }, + { + "#": 5034 + }, + { + "#": 5035 + }, + { + "#": 5036 + }, + { + "#": 5037 + }, + { + "#": 5038 + }, + { + "#": 5039 + }, + { + "#": 5040 + }, + { + "#": 5041 + }, + { + "#": 5042 + }, + { + "#": 5043 + }, + { + "#": 5044 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 517.2268888983906, + "y": 789.3477614110412 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.3597366244156, + "y": 795.1734585698191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 511.78503902313764, + "y": 800.1371429936538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.8508064870538, + "y": 803.7523850712818 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 501.0406012670068, + "y": 805.6672010679081 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 494.92265259446873, + "y": 805.6922617979859 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 489.0969554356911, + "y": 803.8251095240112 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 484.1332710118566, + "y": 800.2504119227332 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 480.51802893422854, + "y": 795.3161793866494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.60321293760205, + "y": 789.5059741666022 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 478.5781522075243, + "y": 783.3880254940644 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 480.4453044814991, + "y": 777.5623283352866 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 484.02000208277707, + "y": 772.5986439114519 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 488.95423461886094, + "y": 768.9834018338239 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 494.7644398389079, + "y": 767.0685858371976 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 500.882388511446, + "y": 767.0435251071198 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 506.7080856702236, + "y": 768.9106773810945 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 511.6717700940581, + "y": 772.4853749823725 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 515.2870121716863, + "y": 777.4196075184562 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 517.2018281683127, + "y": 783.2298127385035 + }, + { + "angle": 0.00022230801436562468, + "anglePrev": 0.00006388955464854421, + "angularSpeed": 0.00008651561939891141, + "angularVelocity": -0.00012402498943841746, + "area": 2655.1646479999995, + "axes": { + "#": 5046 + }, + "bounds": { + "#": 5060 + }, + "circleRadius": 29.213927469135804, + "collisionFilter": { + "#": 5063 + }, + "constraintImpulse": { + "#": 5064 + }, + "density": 0.001, + "force": { + "#": 5065 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 4488.190926884284, + "inverseInertia": 0.00022280692071498018, + "inverseMass": 0.3766244781668245, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.6551646479999995, + "motion": 0, + "parent": null, + "position": { + "#": 5066 + }, + "positionImpulse": { + "#": 5067 + }, + "positionPrev": { + "#": 5068 + }, + "region": { + "#": 5069 + }, + "render": { + "#": 5070 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9134523218916892, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5072 + }, + "vertices": { + "#": 5073 + } + }, + [ + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + }, + { + "#": 5050 + }, + { + "#": 5051 + }, + { + "#": 5052 + }, + { + "#": 5053 + }, + { + "#": 5054 + }, + { + "#": 5055 + }, + { + "#": 5056 + }, + { + "#": 5057 + }, + { + "#": 5058 + }, + { + "#": 5059 + } + ], + { + "x": -0.9708692909877839, + "y": -0.23960972396144134 + }, + { + "x": -0.8854056057161498, + "y": -0.4648192265455657 + }, + { + "x": -0.7483340201197142, + "y": -0.6633220894342864 + }, + { + "x": -0.5679115992408654, + "y": -0.8230895549377857 + }, + { + "x": -0.35435218724470874, + "y": -0.9351120400224193 + }, + { + "x": -0.12033542970909178, + "y": -0.992733289638626 + }, + { + "x": 0.12077680293321877, + "y": -0.9926796884560649 + }, + { + "x": 0.3547679180078896, + "y": -0.9349543969372771 + }, + { + "x": 0.5682775019046641, + "y": -0.8228369709906053 + }, + { + "x": 0.748628869776561, + "y": -0.6629893025811723 + }, + { + "x": 0.8856121842729259, + "y": -0.4644255150907812 + }, + { + "x": 0.9709757293458108, + "y": -0.23917803624365377 + }, + { + "x": 0.9999999752895734, + "y": 0.00022230801253451607 + }, + { + "max": { + "#": 5061 + }, + "min": { + "#": 5062 + } + }, + { + "x": 569.0997141629092, + "y": 788.8363551902453 + }, + { + "x": 511.09291161972703, + "y": 727.4949061120232 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540.0979321330242, + "y": 756.7089053901326 + }, + { + "x": -0.18540045960030926, + "y": 0.24256349057251755 + }, + { + "x": 540.1054034995924, + "y": 753.7961026256254 + }, + { + "endCol": 11, + "endRow": 16, + "id": "10,11,15,16", + "startCol": 10, + "startRow": 15 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5071 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.008859715687322023, + "y": 2.909658465172811 + }, + [ + { + "#": 5074 + }, + { + "#": 5075 + }, + { + "#": 5076 + }, + { + "#": 5077 + }, + { + "#": 5078 + }, + { + "#": 5079 + }, + { + "#": 5080 + }, + { + "#": 5081 + }, + { + "#": 5082 + }, + { + "#": 5083 + }, + { + "#": 5084 + }, + { + "#": 5085 + }, + { + "#": 5086 + }, + { + "#": 5087 + }, + { + "#": 5088 + }, + { + "#": 5089 + }, + { + "#": 5090 + }, + { + "#": 5091 + }, + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + }, + { + "#": 5095 + }, + { + "#": 5096 + }, + { + "#": 5097 + }, + { + "#": 5098 + }, + { + "#": 5099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 569.0981486698848, + "y": 760.2363524577985 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 567.410628569357, + "y": 767.0739774775197 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 564.1372423374434, + "y": 773.3092499316083 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.4650704450236, + "y": 778.5802114006085 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.6681811338873, + "y": 782.5799228045015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 547.082626193498, + "y": 785.075458844537 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 540.091437626746, + "y": 785.922904668242 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 533.1006265389994, + "y": 785.0723505339058 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5161818048247, + "y": 782.5738866973451 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 520.7210714024044, + "y": 778.5715982989709 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.051243525669, + "y": 773.2985600285176 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 512.7806299192874, + "y": 767.061832790795 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 511.096150103139, + "y": 760.2234581484555 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 511.09771559616325, + "y": 753.1814583224667 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 512.7852356966913, + "y": 746.3438333027455 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 516.0586219286051, + "y": 740.1085608486569 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 520.7307938210247, + "y": 734.8375993796567 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 526.5276831321611, + "y": 730.8378879757637 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 533.1132380725504, + "y": 728.3423519357282 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 540.1044266393023, + "y": 727.4949061120232 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 547.0952377270489, + "y": 728.3454602463594 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 553.6796824612237, + "y": 730.8439240829201 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 559.4747928636439, + "y": 734.8462124812943 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 564.1446207403795, + "y": 740.1192507517476 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 567.4152343467608, + "y": 746.3559779894701 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 569.0997141629092, + "y": 753.1943526318097 + }, + { + "angle": 0.00042233649362665685, + "anglePrev": 0.00039099920552478084, + "angularSpeed": 0.00017876015670558447, + "angularVelocity": 0.00038171794874380813, + "area": 2056.753882, + "axes": { + "#": 5101 + }, + "bounds": { + "#": 5115 + }, + "circleRadius": 25.711741255144034, + "collisionFilter": { + "#": 5118 + }, + "constraintImpulse": { + "#": 5119 + }, + "density": 0.001, + "force": { + "#": 5120 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 2693.1036021662526, + "inverseInertia": 0.0003713188008050005, + "inverseMass": 0.48620304488138066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.056753882, + "motion": 0, + "parent": null, + "position": { + "#": 5121 + }, + "positionImpulse": { + "#": 5122 + }, + "positionPrev": { + "#": 5123 + }, + "region": { + "#": 5124 + }, + "render": { + "#": 5125 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8958004558217767, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5127 + }, + "vertices": { + "#": 5128 + } + }, + [ + { + "#": 5102 + }, + { + "#": 5103 + }, + { + "#": 5104 + }, + { + "#": 5105 + }, + { + "#": 5106 + }, + { + "#": 5107 + }, + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + }, + { + "#": 5112 + }, + { + "#": 5113 + }, + { + "#": 5114 + } + ], + { + "x": -0.9708613165210472, + "y": -0.23964203321416427 + }, + { + "x": -0.8852147978545678, + "y": -0.46518250360401237 + }, + { + "x": -0.7482851998126709, + "y": -0.6633771625111247 + }, + { + "x": -0.5677208280261077, + "y": -0.8232211497680021 + }, + { + "x": -0.35419122308950945, + "y": -0.9351730200804326 + }, + { + "x": -0.12010000754087731, + "y": -0.9927617983125063 + }, + { + "x": 0.12093852367095297, + "y": -0.9926599989383529 + }, + { + "x": 0.3549810120312156, + "y": -0.9348735107474667 + }, + { + "x": 0.5684159780845919, + "y": -0.8227413177044999 + }, + { + "x": 0.7488452695751505, + "y": -0.6627448696405882 + }, + { + "x": 0.8856074091146121, + "y": -0.46443462071781855 + }, + { + "x": 0.9710633893076611, + "y": -0.23882188749425504 + }, + { + "x": 0.9999999108159444, + "y": 0.0004223364810714297 + }, + { + "max": { + "#": 5116 + }, + "min": { + "#": 5117 + } + }, + { + "x": 618.1690399672592, + "y": 767.01599239962 + }, + { + "x": 567.1169269873783, + "y": 712.6961969184364 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 592.6437334228382, + "y": 738.4081946253359 + }, + { + "x": -0.1691674188568122, + "y": 0.4818859428357442 + }, + { + "x": 592.6487041075397, + "y": 735.5190128427348 + }, + { + "endCol": 12, + "endRow": 15, + "id": "11,12,14,15", + "startCol": 11, + "startRow": 14 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5126 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0032783677556835755, + "y": 2.9049114927656774 + }, + [ + { + "#": 5129 + }, + { + "#": 5130 + }, + { + "#": 5131 + }, + { + "#": 5132 + }, + { + "#": 5133 + }, + { + "#": 5134 + }, + { + "#": 5135 + }, + { + "#": 5136 + }, + { + "#": 5137 + }, + { + "#": 5138 + }, + { + "#": 5139 + }, + { + "#": 5140 + }, + { + "#": 5141 + }, + { + "#": 5142 + }, + { + "#": 5143 + }, + { + "#": 5144 + }, + { + "#": 5145 + }, + { + "#": 5146 + }, + { + "#": 5147 + }, + { + "#": 5148 + }, + { + "#": 5149 + }, + { + "#": 5150 + }, + { + "#": 5151 + }, + { + "#": 5152 + }, + { + "#": 5153 + }, + { + "#": 5154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 618.1664223257494, + "y": 741.5179740652974 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.6808804147299, + "y": 747.5363472034973 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 613.7975628890609, + "y": 753.023129962653 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 609.6856036143353, + "y": 757.6613937459017 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 604.5831170225134, + "y": 761.1802390934948 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 598.7861892438387, + "y": 763.3757910352241 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 592.6328743072368, + "y": 764.1201923322354 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 586.4801903413376, + "y": 763.370593762488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 580.6851191538339, + "y": 761.1701460962703 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 575.5856066555115, + "y": 757.6469920718972 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 571.4775666633303, + "y": 753.0052566827741 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 568.5988847028776, + "y": 747.5160404208143 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 567.1184268784172, + "y": 741.4964146326118 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 567.121044519927, + "y": 735.2984151853744 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 568.6065864309464, + "y": 729.2800420471746 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 571.4899039566154, + "y": 723.7932592880188 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 575.6018632313411, + "y": 719.1549955047701 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 580.7043498231629, + "y": 715.636150157177 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 586.5012776018376, + "y": 713.4405982154477 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 592.6545925384396, + "y": 712.6961969184364 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 598.8072765043388, + "y": 713.4457954881838 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 604.6023476918425, + "y": 715.6462431544015 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 609.7018601901649, + "y": 719.1693971787746 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 613.809900182346, + "y": 723.8111325678977 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 616.6885821427987, + "y": 729.3003488298575 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 618.1690399672592, + "y": 735.31997461806 + }, + { + "angle": 0.0005412727273293918, + "anglePrev": 0.0004662598270653163, + "angularSpeed": 0.00007501290026407548, + "angularVelocity": 0.00007501290026407548, + "area": 773.7538339999998, + "axes": { + "#": 5156 + }, + "bounds": { + "#": 5165 + }, + "circleRadius": 15.897826646090534, + "collisionFilter": { + "#": 5168 + }, + "constraintImpulse": { + "#": 5169 + }, + "density": 0.001, + "force": { + "#": 5170 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 381.1923679213431, + "inverseInertia": 0.0026233473808855074, + "inverseMass": 1.2924007042787724, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7737538339999998, + "motion": 0, + "parent": null, + "position": { + "#": 5171 + }, + "positionImpulse": { + "#": 5172 + }, + "positionPrev": { + "#": 5173 + }, + "region": { + "#": 5174 + }, + "render": { + "#": 5175 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9073918862764923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5177 + }, + "vertices": { + "#": 5178 + } + }, + [ + { + "#": 5157 + }, + { + "#": 5158 + }, + { + "#": 5159 + }, + { + "#": 5160 + }, + { + "#": 5161 + }, + { + "#": 5162 + }, + { + "#": 5163 + }, + { + "#": 5164 + } + ], + { + "x": -0.9236975867908777, + "y": -0.38312239318096447 + }, + { + "x": -0.7067239400065565, + "y": -0.7074894152011109 + }, + { + "x": -0.382122224260774, + "y": -0.9241117928724852 + }, + { + "x": 0.0005412727008993908, + "y": -0.9999998535119209 + }, + { + "x": 0.38312239318096447, + "y": -0.9236975867908777 + }, + { + "x": 0.7074894152011109, + "y": -0.7067239400065565 + }, + { + "x": 0.9241117928724852, + "y": -0.382122224260774 + }, + { + "x": 0.9999998535119209, + "y": 0.0005412727008993908 + }, + { + "max": { + "#": 5166 + }, + "min": { + "#": 5167 + } + }, + { + "x": 716.870061955068, + "y": 717.0032445251962 + }, + { + "x": 685.6660015752835, + "y": 682.9085471533904 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 701.2596783191594, + "y": 698.5022238972664 + }, + { + "x": 2.11686329612025, + "y": 0.00927095289191408 + }, + { + "x": 701.2429714271268, + "y": 695.5948800132126 + }, + { + "endCol": 14, + "endRow": 14, + "id": "14,14,14,14", + "startCol": 14, + "startRow": 14 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5176 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.016706892032660788, + "y": 2.907343884053792 + }, + [ + { + "#": 5179 + }, + { + "#": 5180 + }, + { + "#": 5181 + }, + { + "#": 5182 + }, + { + "#": 5183 + }, + { + "#": 5184 + }, + { + "#": 5185 + }, + { + "#": 5186 + }, + { + "#": 5187 + }, + { + "#": 5188 + }, + { + "#": 5189 + }, + { + "#": 5190 + }, + { + "#": 5191 + }, + { + "#": 5192 + }, + { + "#": 5193 + }, + { + "#": 5194 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 716.8499970071991, + "y": 701.6126629668126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 714.4738958622393, + "y": 707.3413776873169 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 710.0845219415435, + "y": 711.726002481335 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 704.3532383408009, + "y": 714.0959006411424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 698.1492392496132, + "y": 714.0925425853061 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 692.420524529109, + "y": 711.7164414403462 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 688.0358997350909, + "y": 707.3270675196504 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 685.6660015752835, + "y": 701.5957839189078 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 685.6693596311197, + "y": 695.3917848277201 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 688.0454607760796, + "y": 689.6630701072158 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 692.4348346967754, + "y": 685.2784453131978 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 698.166118297518, + "y": 682.9085471533904 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 704.3701173887057, + "y": 682.9119052092267 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 710.0988321092099, + "y": 685.2880063541866 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 714.483456903228, + "y": 689.6773802748824 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 716.8533550630353, + "y": 695.4086638756249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1605.3869300000001, + "axes": { + "#": 5196 + }, + "bounds": { + "#": 5209 + }, + "circleRadius": 22.735146604938272, + "collisionFilter": { + "#": 5212 + }, + "constraintImpulse": { + "#": 5213 + }, + "density": 0.001, + "force": { + "#": 5214 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": 1640.7824271648174, + "inverseInertia": 0.0006094653279094082, + "inverseMass": 0.6229027914161478, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.60538693, + "motion": 0, + "parent": null, + "position": { + "#": 5215 + }, + "positionImpulse": { + "#": 5216 + }, + "positionPrev": { + "#": 5217 + }, + "region": { + "#": 5218 + }, + "render": { + "#": 5219 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5221 + }, + "vertices": { + "#": 5222 + } + }, + [ + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + }, + { + "#": 5200 + }, + { + "#": 5201 + }, + { + "#": 5202 + }, + { + "#": 5203 + }, + { + "#": 5204 + }, + { + "#": 5205 + }, + { + "#": 5206 + }, + { + "#": 5207 + }, + { + "#": 5208 + } + ], + { + "x": -0.9659209717012952, + "y": -0.2588371619911359 + }, + { + "x": -0.8659947892090337, + "y": -0.500053022251442 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.500053022251442, + "y": -0.8659947892090337 + }, + { + "x": -0.2588371619911359, + "y": -0.9659209717012952 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588371619911359, + "y": -0.9659209717012952 + }, + { + "x": 0.500053022251442, + "y": -0.8659947892090337 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8659947892090337, + "y": -0.500053022251442 + }, + { + "x": 0.9659209717012952, + "y": -0.2588371619911359 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5210 + }, + "min": { + "#": 5211 + } + }, + { + "x": 131.88367836119872, + "y": 830.2212680783623 + }, + { + "x": 86.80167836119873, + "y": 782.2319973633263 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 109.34267836119872, + "y": 804.7729973633263 + }, + { + "x": -0.7849798364974497, + "y": 0.2693418228513162 + }, + { + "x": 109.34267836119872, + "y": 801.8657266482904 + }, + { + "endCol": 2, + "endRow": 17, + "id": "1,2,16,17", + "startCol": 1, + "startRow": 16 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5220 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 5223 + }, + { + "#": 5224 + }, + { + "#": 5225 + }, + { + "#": 5226 + }, + { + "#": 5227 + }, + { + "#": 5228 + }, + { + "#": 5229 + }, + { + "#": 5230 + }, + { + "#": 5231 + }, + { + "#": 5232 + }, + { + "#": 5233 + }, + { + "#": 5234 + }, + { + "#": 5235 + }, + { + "#": 5236 + }, + { + "#": 5237 + }, + { + "#": 5238 + }, + { + "#": 5239 + }, + { + "#": 5240 + }, + { + "#": 5241 + }, + { + "#": 5242 + }, + { + "#": 5243 + }, + { + "#": 5244 + }, + { + "#": 5245 + }, + { + "#": 5246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 131.88367836119872, + "y": 807.7409973633263 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130.34767836119872, + "y": 813.4729973633264 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 127.37967836119873, + "y": 818.6129973633264 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 123.18267836119871, + "y": 822.8099973633264 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 118.0426783611987, + "y": 825.7779973633263 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 112.31067836119873, + "y": 827.3139973633264 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 106.37467836119872, + "y": 827.3139973633264 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 100.64267836119872, + "y": 825.7779973633263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 95.50267836119872, + "y": 822.8099973633264 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 91.30567836119872, + "y": 818.6129973633264 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 88.33767836119873, + "y": 813.4729973633264 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.80167836119873, + "y": 807.7409973633263 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 86.80167836119873, + "y": 801.8049973633264 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 88.33767836119873, + "y": 796.0729973633263 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 91.30567836119872, + "y": 790.9329973633263 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 95.50267836119872, + "y": 786.7359973633263 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 100.64267836119872, + "y": 783.7679973633263 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 106.37467836119872, + "y": 782.2319973633263 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 112.31067836119873, + "y": 782.2319973633263 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 118.0426783611987, + "y": 783.7679973633263 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 123.18267836119871, + "y": 786.7359973633263 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 127.37967836119873, + "y": 790.9329973633263 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 130.34767836119872, + "y": 796.0729973633263 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 131.88367836119872, + "y": 801.8049973633264 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 885.8898539999999, + "axes": { + "#": 5248 + }, + "bounds": { + "#": 5258 + }, + "circleRadius": 16.964441872427983, + "collisionFilter": { + "#": 5261 + }, + "constraintImpulse": { + "#": 5262 + }, + "density": 0.001, + "force": { + "#": 5263 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": 499.66154369180117, + "inverseInertia": 0.0020013547422749333, + "inverseMass": 1.1288085030941106, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8858898539999999, + "motion": 0, + "parent": null, + "position": { + "#": 5264 + }, + "positionImpulse": { + "#": 5265 + }, + "positionPrev": { + "#": 5266 + }, + "region": { + "#": 5267 + }, + "render": { + "#": 5268 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5270 + }, + "vertices": { + "#": 5271 + } + }, + [ + { + "#": 5249 + }, + { + "#": 5250 + }, + { + "#": 5251 + }, + { + "#": 5252 + }, + { + "#": 5253 + }, + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + }, + { + "#": 5257 + } + ], + { + "x": -0.939689304787221, + "y": -0.3420292538197708 + }, + { + "x": -0.7661025820927431, + "y": -0.6427183159914085 + }, + { + "x": -0.4998448927833589, + "y": -0.8661149364595858 + }, + { + "x": -0.17364008799244365, + "y": -0.984809179405826 + }, + { + "x": 0.17364008799244365, + "y": -0.984809179405826 + }, + { + "x": 0.4998448927833589, + "y": -0.8661149364595858 + }, + { + "x": 0.7661025820927431, + "y": -0.6427183159914085 + }, + { + "x": 0.939689304787221, + "y": -0.3420292538197708 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5259 + }, + "min": { + "#": 5260 + } + }, + { + "x": 182.0614275858146, + "y": 806.9461349225381 + }, + { + "x": 148.64742758581463, + "y": 770.1108642075023 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 165.35442758581462, + "y": 787.0748642075023 + }, + { + "x": -0.388469126508428, + "y": 1.3371440412859594 + }, + { + "x": 165.35442758581462, + "y": 784.1675934924664 + }, + { + "endCol": 3, + "endRow": 16, + "id": "3,3,16,16", + "startCol": 3, + "startRow": 16 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5269 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 5272 + }, + { + "#": 5273 + }, + { + "#": 5274 + }, + { + "#": 5275 + }, + { + "#": 5276 + }, + { + "#": 5277 + }, + { + "#": 5278 + }, + { + "#": 5279 + }, + { + "#": 5280 + }, + { + "#": 5281 + }, + { + "#": 5282 + }, + { + "#": 5283 + }, + { + "#": 5284 + }, + { + "#": 5285 + }, + { + "#": 5286 + }, + { + "#": 5287 + }, + { + "#": 5288 + }, + { + "#": 5289 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 182.0614275858146, + "y": 790.0208642075023 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180.04642758581463, + "y": 795.5568642075023 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 176.25942758581462, + "y": 800.0708642075023 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 171.1564275858146, + "y": 803.0158642075023 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 165.35442758581462, + "y": 804.0388642075022 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 159.55242758581463, + "y": 803.0158642075023 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 154.44942758581462, + "y": 800.0708642075023 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150.6624275858146, + "y": 795.5568642075023 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 148.64742758581463, + "y": 790.0208642075023 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 148.64742758581463, + "y": 784.1288642075023 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 150.6624275858146, + "y": 778.5928642075023 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 154.44942758581462, + "y": 774.0788642075023 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 159.55242758581463, + "y": 771.1338642075023 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 165.35442758581462, + "y": 770.1108642075023 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 171.1564275858146, + "y": 771.1338642075023 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 176.25942758581462, + "y": 774.0788642075023 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 180.04642758581463, + "y": 778.5928642075023 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 182.0614275858146, + "y": 784.1288642075023 + }, + { + "angle": 0.0023731186013470056, + "anglePrev": 0.0019090463706773143, + "angularSpeed": 0.0004640722306696914, + "angularVelocity": 0.0004640722306696914, + "area": 1754.99178, + "axes": { + "#": 5291 + }, + "bounds": { + "#": 5304 + }, + "circleRadius": 23.770897633744855, + "collisionFilter": { + "#": 5307 + }, + "constraintImpulse": { + "#": 5308 + }, + "density": 0.001, + "force": { + "#": 5309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": 1960.838039917572, + "inverseInertia": 0.0005099860262003267, + "inverseMass": 0.5698032386225763, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7549917800000001, + "motion": 0, + "parent": null, + "position": { + "#": 5310 + }, + "positionImpulse": { + "#": 5311 + }, + "positionPrev": { + "#": 5312 + }, + "region": { + "#": 5313 + }, + "render": { + "#": 5314 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9090352766356746, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5316 + }, + "vertices": { + "#": 5317 + } + }, + [ + { + "#": 5292 + }, + { + "#": 5293 + }, + { + "#": 5294 + }, + { + "#": 5295 + }, + { + "#": 5296 + }, + { + "#": 5297 + }, + { + "#": 5298 + }, + { + "#": 5299 + }, + { + "#": 5300 + }, + { + "#": 5301 + }, + { + "#": 5302 + }, + { + "#": 5303 + } + ], + { + "x": -0.9652718011538012, + "y": -0.2612476792189681 + }, + { + "x": -0.8648840755999945, + "y": -0.5019716483762238 + }, + { + "x": -0.7054267434031866, + "y": -0.7087828367642486 + }, + { + "x": -0.49786106492371834, + "y": -0.8672568016643174 + }, + { + "x": -0.2566633449589714, + "y": -0.9665008677463629 + }, + { + "x": 0.0023731163739021677, + "y": -0.9999971841553736 + }, + { + "x": 0.2612476792189681, + "y": -0.9652718011538012 + }, + { + "x": 0.5019716483762238, + "y": -0.8648840755999945 + }, + { + "x": 0.7087828367642486, + "y": -0.7054267434031866 + }, + { + "x": 0.8672568016643174, + "y": -0.49786106492371834 + }, + { + "x": 0.9665008677463629, + "y": -0.2566633449589714 + }, + { + "x": 0.9999971841553736, + "y": 0.0023731163739021677 + }, + { + "max": { + "#": 5305 + }, + "min": { + "#": 5306 + } + }, + { + "x": 231.84558327445674, + "y": 838.359635968881 + }, + { + "x": 184.68848499133293, + "y": 788.3000131292602 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 208.26378240761503, + "y": 811.8753105455421 + }, + { + "x": -0.7640505246035024, + "y": 0.6888461521525415 + }, + { + "x": 208.2572789570554, + "y": 808.9662825384852 + }, + { + "endCol": 4, + "endRow": 17, + "id": "3,4,16,17", + "startCol": 3, + "startRow": 16 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5315 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.006503450559617931, + "y": 2.90902800705693 + }, + [ + { + "#": 5318 + }, + { + "#": 5319 + }, + { + "#": 5320 + }, + { + "#": 5321 + }, + { + "#": 5322 + }, + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + }, + { + "#": 5326 + }, + { + "#": 5327 + }, + { + "#": 5328 + }, + { + "#": 5329 + }, + { + "#": 5330 + }, + { + "#": 5331 + }, + { + "#": 5332 + }, + { + "#": 5333 + }, + { + "#": 5334 + }, + { + "#": 5335 + }, + { + "#": 5336 + }, + { + "#": 5337 + }, + { + "#": 5338 + }, + { + "#": 5339 + }, + { + "#": 5340 + }, + { + "#": 5341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 231.82435226368068, + "y": 815.0342314146762 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230.20313232919779, + "y": 821.0244009384908 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.0883879365545, + "y": 826.39102439915 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 222.68998705783196, + "y": 830.768598808575 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 217.30864078318922, + "y": 833.8578369464318 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 211.31084406334904, + "y": 835.4506079618241 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 205.10486153848078, + "y": 835.4358804016076 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 199.11469201466636, + "y": 833.8146604671248 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 193.7480685540072, + "y": 830.6999160744816 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 189.3704941445821, + "y": 826.3015151957593 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 186.2812560067255, + "y": 820.9201689211161 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 184.68848499133293, + "y": 814.9223722012762 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 184.70321255154937, + "y": 808.716389676408 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 186.32443248603226, + "y": 802.7262201525934 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 189.43917687867554, + "y": 797.3595966919343 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 193.8375777573981, + "y": 792.9820222825092 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 199.21892403204083, + "y": 789.8927841446524 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 205.216720751881, + "y": 788.3000131292602 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 211.42270327674927, + "y": 788.3147406894766 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 217.4128728005637, + "y": 789.9359606239594 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 222.77949626122285, + "y": 793.0507050166026 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 227.15707067064795, + "y": 797.4491058953249 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 230.24630880850455, + "y": 802.8304521699681 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 231.83907982389712, + "y": 808.828248889808 + }, + { + "angle": -0.00023877519690436655, + "anglePrev": -0.00005582002716617752, + "angularSpeed": 0.00018295516973818903, + "angularVelocity": -0.00018295516973818903, + "area": 2698.393094000001, + "axes": { + "#": 5343 + }, + "bounds": { + "#": 5357 + }, + "circleRadius": 29.450810185185183, + "collisionFilter": { + "#": 5360 + }, + "constraintImpulse": { + "#": 5361 + }, + "density": 0.001, + "force": { + "#": 5362 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 108, + "inertia": 4635.524094588275, + "inverseInertia": 0.000215725337544345, + "inverseMass": 0.37059092769824575, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.698393094000001, + "motion": 0, + "parent": null, + "position": { + "#": 5363 + }, + "positionImpulse": { + "#": 5364 + }, + "positionPrev": { + "#": 5365 + }, + "region": { + "#": 5366 + }, + "render": { + "#": 5367 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8972953935075294, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5369 + }, + "vertices": { + "#": 5370 + } + }, + [ + { + "#": 5344 + }, + { + "#": 5345 + }, + { + "#": 5346 + }, + { + "#": 5347 + }, + { + "#": 5348 + }, + { + "#": 5349 + }, + { + "#": 5350 + }, + { + "#": 5351 + }, + { + "#": 5352 + }, + { + "#": 5353 + }, + { + "#": 5354 + }, + { + "#": 5355 + }, + { + "#": 5356 + } + ], + { + "x": -0.9709980138797889, + "y": -0.23908755099650308 + }, + { + "x": -0.8856058992228356, + "y": -0.4644374998443951 + }, + { + "x": -0.7485847168083735, + "y": -0.6630391555262236 + }, + { + "x": -0.5682486770052931, + "y": -0.8228568776413882 + }, + { + "x": -0.3548944611440446, + "y": -0.9349063704185988 + }, + { + "x": -0.12080395002930974, + "y": -0.9926763851615068 + }, + { + "x": 0.12032988327373495, + "y": -0.9927339619411282 + }, + { + "x": 0.35444795578802946, + "y": -0.9350757437970934 + }, + { + "x": 0.5678556565984648, + "y": -0.8231281511825038 + }, + { + "x": 0.7482679968515666, + "y": -0.663396566834457 + }, + { + "x": 0.8853840059371658, + "y": -0.46486036831575184 + }, + { + "x": 0.9708837268098232, + "y": -0.23955122420031313 + }, + { + "x": 0.9999999714932029, + "y": -0.0002387751946354612 + }, + { + "max": { + "#": 5358 + }, + "min": { + "#": 5359 + } + }, + { + "x": 299.2623093279934, + "y": 860.8071735066183 + }, + { + "x": 240.78615629206362, + "y": 799.0078808360614 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.0254625094772, + "y": 828.4588799965077 + }, + { + "x": -1.2032549740307927, + "y": 1.0355633854772686 + }, + { + "x": 270.02792190837465, + "y": 825.5615856468434 + }, + { + "endCol": 6, + "endRow": 17, + "id": "5,6,16,17", + "startCol": 5, + "startRow": 16 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5368 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.002459398897420897, + "y": 2.897294349664358 + }, + [ + { + "#": 5371 + }, + { + "#": 5372 + }, + { + "#": 5373 + }, + { + "#": 5374 + }, + { + "#": 5375 + }, + { + "#": 5376 + }, + { + "#": 5377 + }, + { + "#": 5378 + }, + { + "#": 5379 + }, + { + "#": 5380 + }, + { + "#": 5381 + }, + { + "#": 5382 + }, + { + "#": 5383 + }, + { + "#": 5384 + }, + { + "#": 5385 + }, + { + "#": 5386 + }, + { + "#": 5387 + }, + { + "#": 5388 + }, + { + "#": 5389 + }, + { + "#": 5390 + }, + { + "#": 5391 + }, + { + "#": 5392 + }, + { + "#": 5393 + }, + { + "#": 5394 + }, + { + "#": 5395 + }, + { + "#": 5396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 299.2623093279934, + "y": 832.0018990637182 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 297.5649552538431, + "y": 838.8953045462765 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 294.2674565275357, + "y": 845.1830920864214 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 289.5597255131585, + "y": 850.4982163273278 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 283.7176886600837, + "y": 854.5326113758222 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 277.08029008525193, + "y": 857.052196293784 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 270.0324946777344, + "y": 857.9098791569539 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 262.9842904870837, + "y": 857.0555620689275 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 256.34568944037176, + "y": 854.5391471304497 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 250.50172662657704, + "y": 850.5075424088799 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 245.79145790943127, + "y": 845.1946669527566 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 242.49095682382654, + "y": 838.9084548513458 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 240.79031099484297, + "y": 832.0158607268988 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 240.78861569096105, + "y": 824.9158609292972 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 242.48596976511138, + "y": 818.0224554467388 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 245.78346849141877, + "y": 811.7346679065939 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 250.49119950579595, + "y": 806.4195436656876 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 256.33323635887075, + "y": 802.3851486171932 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 262.9706349337025, + "y": 799.8655636992313 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 270.01843034122004, + "y": 799.0078808360614 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 277.06663453187076, + "y": 799.8621979240878 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 283.7052355785827, + "y": 802.3786128625657 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 289.54919839237743, + "y": 806.4102175841355 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 294.2594671095232, + "y": 811.7230930402587 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 297.55996819512796, + "y": 818.0093051416695 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 299.26061402411153, + "y": 824.9018992661165 + }, + { + "angle": -0.0011267413468951707, + "anglePrev": -0.00033783702325601724, + "angularSpeed": 0.0007751053223663456, + "angularVelocity": 0.000006479703198282796, + "area": 1009.944076, + "axes": { + "#": 5398 + }, + "bounds": { + "#": 5409 + }, + "circleRadius": 18.078253600823047, + "collisionFilter": { + "#": 5412 + }, + "constraintImpulse": { + "#": 5413 + }, + "density": 0.001, + "force": { + "#": 5414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 649.379472717892, + "inverseInertia": 0.0015399316455363644, + "inverseMass": 0.9901538350129399, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.009944076, + "motion": 0, + "parent": null, + "position": { + "#": 5415 + }, + "positionImpulse": { + "#": 5416 + }, + "positionPrev": { + "#": 5417 + }, + "region": { + "#": 5418 + }, + "render": { + "#": 5419 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.909614293658297, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5421 + }, + "vertices": { + "#": 5422 + } + }, + [ + { + "#": 5399 + }, + { + "#": 5400 + }, + { + "#": 5401 + }, + { + "#": 5402 + }, + { + "#": 5403 + }, + { + "#": 5404 + }, + { + "#": 5405 + }, + { + "#": 5406 + }, + { + "#": 5407 + }, + { + "#": 5408 + } + ], + { + "x": -0.9513907882739996, + "y": -0.3079863113636352 + }, + { + "x": -0.8096501059505359, + "y": -0.586912860597113 + }, + { + "x": -0.5887359013294875, + "y": -0.8083254533204777 + }, + { + "x": -0.3101294702201995, + "y": -0.9506943313709925 + }, + { + "x": -0.0011267411084868455, + "y": -0.9999993652270356 + }, + { + "x": 0.3079863113636352, + "y": -0.9513907882739996 + }, + { + "x": 0.586912860597113, + "y": -0.8096501059505359 + }, + { + "x": 0.8083254533204777, + "y": -0.5887359013294875 + }, + { + "x": 0.9506943313709925, + "y": -0.3101294702201995 + }, + { + "x": 0.9999993652270356, + "y": -0.0011267411084868455 + }, + { + "max": { + "#": 5410 + }, + "min": { + "#": 5411 + } + }, + { + "x": 336.64007718031587, + "y": 839.711671135434 + }, + { + "x": 300.89066169606104, + "y": 801.0838725064882 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 318.7498367854098, + "y": 818.943047595837 + }, + { + "x": -0.8833755847269225, + "y": 0.980856498881522 + }, + { + "x": 318.7260388444955, + "y": 816.038867235768 + }, + { + "endCol": 7, + "endRow": 17, + "id": "6,7,16,17", + "startCol": 6, + "startRow": 16 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5420 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0046453059032955935, + "y": 2.926055368155744 + }, + [ + { + "#": 5423 + }, + { + "#": 5424 + }, + { + "#": 5425 + }, + { + "#": 5426 + }, + { + "#": 5427 + }, + { + "#": 5428 + }, + { + "#": 5429 + }, + { + "#": 5430 + }, + { + "#": 5431 + }, + { + "#": 5432 + }, + { + "#": 5433 + }, + { + "#": 5434 + }, + { + "#": 5435 + }, + { + "#": 5436 + }, + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + }, + { + "#": 5441 + }, + { + "#": 5442 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.60901187475855, + "y": 821.750926711466 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 334.8670737247642, + "y": 827.1318928404797 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.54723180269684, + "y": 831.7116363499446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.97498112160355, + "y": 835.0417902066366 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.59795407950503, + "y": 836.7958498374761 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.94195766978083, + "y": 836.8022226851858 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 310.560991540767, + "y": 835.0602845351915 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 305.98124803130247, + "y": 831.7404426131241 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 302.65109417461, + "y": 827.1681919320307 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 300.89703454377064, + "y": 821.7911648899322 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 300.89066169606104, + "y": 816.135168480208 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 302.63259984605537, + "y": 810.7542023511943 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.95244176812275, + "y": 806.1744588417295 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 310.52469244921605, + "y": 802.8443049850374 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.90171949131457, + "y": 801.0902453541979 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 321.55771590103876, + "y": 801.0838725064882 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 326.9386820300526, + "y": 802.8258106564825 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 331.5184255395171, + "y": 806.14565257855 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 334.8485793962096, + "y": 810.7179032596433 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 336.60263902704895, + "y": 816.0949303017418 + }, + { + "angle": -0.0004817847197267542, + "anglePrev": -0.0011671397540455844, + "angularSpeed": 0.00021019260181551563, + "angularVelocity": -0.00038431185124576954, + "area": 1020.4002399999998, + "axes": { + "#": 5444 + }, + "bounds": { + "#": 5455 + }, + "circleRadius": 18.171746399176953, + "collisionFilter": { + "#": 5458 + }, + "constraintImpulse": { + "#": 5459 + }, + "density": 0.001, + "force": { + "#": 5460 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 110, + "inertia": 662.8954040469373, + "inverseInertia": 0.001508533614647287, + "inverseMass": 0.9800076095630869, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0204002399999998, + "motion": 0, + "parent": null, + "position": { + "#": 5461 + }, + "positionImpulse": { + "#": 5462 + }, + "positionPrev": { + "#": 5463 + }, + "region": { + "#": 5464 + }, + "render": { + "#": 5465 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.898335352264375, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5467 + }, + "vertices": { + "#": 5468 + } + }, + [ + { + "#": 5445 + }, + { + "#": 5446 + }, + { + "#": 5447 + }, + { + "#": 5448 + }, + { + "#": 5449 + }, + { + "#": 5450 + }, + { + "#": 5451 + }, + { + "#": 5452 + }, + { + "#": 5453 + }, + { + "#": 5454 + } + ], + { + "x": -0.9511970677310413, + "y": -0.30858408633607354 + }, + { + "x": -0.8092473451132469, + "y": -0.587468070985276 + }, + { + "x": -0.5882475641532586, + "y": -0.8086809032416667 + }, + { + "x": -0.30950048736469193, + "y": -0.9508992840048931 + }, + { + "x": -0.0004817847010883892, + "y": -0.999999883941744 + }, + { + "x": 0.30858408633607354, + "y": -0.9511970677310413 + }, + { + "x": 0.587468070985276, + "y": -0.8092473451132469 + }, + { + "x": 0.8086809032416667, + "y": -0.5882475641532586 + }, + { + "x": 0.9508992840048931, + "y": -0.30950048736469193 + }, + { + "x": 0.999999883941744, + "y": -0.0004817847010883892 + }, + { + "max": { + "#": 5456 + }, + "min": { + "#": 5457 + } + }, + { + "x": 424.92946976312896, + "y": 824.4965537825512 + }, + { + "x": 389.01671867142494, + "y": 785.6995170577216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 406.9801021322374, + "y": 803.6488846886132 + }, + { + "x": 0.024884784026613368, + "y": 1.3533206396038429 + }, + { + "x": 406.99410237655513, + "y": 800.718233503027 + }, + { + "endCol": 8, + "endRow": 17, + "id": "8,8,16,17", + "startCol": 8, + "startRow": 16 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5466 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01401886026280863, + "y": 2.892011637849464 + }, + [ + { + "#": 5469 + }, + { + "#": 5470 + }, + { + "#": 5471 + }, + { + "#": 5472 + }, + { + "#": 5473 + }, + { + "#": 5474 + }, + { + "#": 5475 + }, + { + "#": 5476 + }, + { + "#": 5477 + }, + { + "#": 5478 + }, + { + "#": 5479 + }, + { + "#": 5480 + }, + { + "#": 5481 + }, + { + "#": 5482 + }, + { + "#": 5483 + }, + { + "#": 5484 + }, + { + "#": 5485 + }, + { + "#": 5486 + }, + { + "#": 5487 + }, + { + "#": 5488 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 424.92946976312896, + "y": 806.4832372868445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 423.17507497692213, + "y": 811.8910831550372 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 419.8352910926291, + "y": 816.4916927457565 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.23790175085213, + "y": 819.8359080857301 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.8317488740989, + "y": 821.5955128916944 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 404.1457495340062, + "y": 821.5982523195048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 398.73790366581335, + "y": 819.843857533298 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 394.1372940750943, + "y": 816.504073649005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 390.7930787351207, + "y": 811.9066843072278 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 389.0334739291562, + "y": 806.5005314304747 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 389.0307345013458, + "y": 800.8145320903818 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 390.78512928755265, + "y": 795.4066862221891 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 394.12491317184566, + "y": 790.8060766314699 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 398.72230251362265, + "y": 787.4618612914962 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 404.1284553903759, + "y": 785.702256485532 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 409.8144547304686, + "y": 785.6995170577216 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 415.22230059866143, + "y": 787.4539118439284 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 419.8229101893805, + "y": 790.7936957282213 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 423.1671255293541, + "y": 795.3910850699986 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 424.9267303353186, + "y": 800.7972379467517 + }, + { + "angle": 0.001965048375844521, + "anglePrev": 0.00093731520627935, + "angularSpeed": 0.0006592393713886146, + "angularVelocity": 0.0005875911252714956, + "area": 1846.3076820000003, + "axes": { + "#": 5490 + }, + "bounds": { + "#": 5504 + }, + "circleRadius": 24.360918209876544, + "collisionFilter": { + "#": 5507 + }, + "constraintImpulse": { + "#": 5508 + }, + "density": 0.001, + "force": { + "#": 5509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 111, + "inertia": 2170.1840279388884, + "inverseInertia": 0.0004607904155251481, + "inverseMass": 0.5416215345628399, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8463076820000004, + "motion": 0, + "parent": null, + "position": { + "#": 5510 + }, + "positionImpulse": { + "#": 5511 + }, + "positionPrev": { + "#": 5512 + }, + "region": { + "#": 5513 + }, + "render": { + "#": 5514 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9145950821541358, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5516 + }, + "vertices": { + "#": 5517 + } + }, + [ + { + "#": 5491 + }, + { + "#": 5492 + }, + { + "#": 5493 + }, + { + "#": 5494 + }, + { + "#": 5495 + }, + { + "#": 5496 + }, + { + "#": 5497 + }, + { + "#": 5498 + }, + { + "#": 5499 + }, + { + "#": 5500 + }, + { + "#": 5501 + }, + { + "#": 5502 + }, + { + "#": 5503 + } + ], + { + "x": -0.9704961184376506, + "y": -0.24111674371029035 + }, + { + "x": -0.8845531068970901, + "y": -0.4664394934808862 + }, + { + "x": -0.7470901943845744, + "y": -0.664722680111352 + }, + { + "x": -0.5665643421239467, + "y": -0.8240175035966527 + }, + { + "x": -0.3526980770537608, + "y": -0.9357371780807792 + }, + { + "x": -0.11860416313502059, + "y": -0.992941615850117 + }, + { + "x": 0.12250559374971336, + "y": -0.9924678229041132 + }, + { + "x": 0.35637288140691, + "y": -0.9343438175520491 + }, + { + "x": 0.569798426826857, + "y": -0.8217844929089615 + }, + { + "x": 0.7496968424620379, + "y": -0.6617814173897979 + }, + { + "x": 0.8863794232715516, + "y": -0.4629595209095408 + }, + { + "x": 0.9714362331623474, + "y": -0.23730074778506283 + }, + { + "x": 0.9999980692930616, + "y": 0.0019650471112001803 + }, + { + "max": { + "#": 5505 + }, + "min": { + "#": 5506 + } + }, + { + "x": 473.37666025031007, + "y": 825.4367018948009 + }, + { + "x": 424.9982335829259, + "y": 773.8002010457418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 449.1879375622775, + "y": 798.16115401179 + }, + { + "x": 0.11336995748716205, + "y": 0.12687270271831522 + }, + { + "x": 449.18892746730353, + "y": 795.2644378400471 + }, + { + "endCol": 9, + "endRow": 17, + "id": "8,9,16,17", + "startCol": 8, + "startRow": 16 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5515 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0009796165377906618, + "y": 2.9180711193329216 + }, + [ + { + "#": 5518 + }, + { + "#": 5519 + }, + { + "#": 5520 + }, + { + "#": 5521 + }, + { + "#": 5522 + }, + { + "#": 5523 + }, + { + "#": 5524 + }, + { + "#": 5525 + }, + { + "#": 5526 + }, + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + }, + { + "#": 5534 + }, + { + "#": 5535 + }, + { + "#": 5536 + }, + { + "#": 5537 + }, + { + "#": 5538 + }, + { + "#": 5539 + }, + { + "#": 5540 + }, + { + "#": 5541 + }, + { + "#": 5542 + }, + { + "#": 5543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 473.3651214936732, + "y": 801.1446690775246 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 471.94891754264125, + "y": 806.8448971755117 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 469.20970456656227, + "y": 812.0395245222692 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.30607570461206, + "y": 816.4268621783141 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 460.4665276735086, + "y": 819.7543586628566 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 454.97144704693477, + "y": 821.8255645694371 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.14006704960156, + "y": 822.5221069778382 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 443.31146955897776, + "y": 821.8026521201205 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 437.82457138857507, + "y": 819.7098660661648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 432.9981380818918, + "y": 816.3633754362454 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 429.1117819840491, + "y": 811.9607300632043 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 426.3930054979264, + "y": 806.7553774893139 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 424.99921487424496, + "y": 801.0496276089444 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 425.0107536308818, + "y": 795.1776389460555 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 426.42695758191377, + "y": 789.4774108480683 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 429.16617055799276, + "y": 784.2827835013109 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 433.06979941994297, + "y": 779.895445845266 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 437.9093474510464, + "y": 776.5679493607234 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 443.40442807762025, + "y": 774.4967434541429 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 449.23580807495347, + "y": 773.8002010457418 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 455.06440556557726, + "y": 774.5196559034596 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 460.55130373597996, + "y": 776.6124419574153 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 465.3777370426632, + "y": 779.9589325873346 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 469.2640931405059, + "y": 784.3615779603757 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 471.9828696266286, + "y": 789.5669305342661 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 473.37666025031007, + "y": 795.2726804146356 + }, + { + "angle": -0.0015405007352836011, + "anglePrev": -0.0020655937141794262, + "angularSpeed": 0.000525092978895825, + "angularVelocity": 0.000525092978895825, + "area": 1121.860092, + "axes": { + "#": 5545 + }, + "bounds": { + "#": 5556 + }, + "circleRadius": 19.053176440329217, + "collisionFilter": { + "#": 5559 + }, + "constraintImpulse": { + "#": 5560 + }, + "density": 0.001, + "force": { + "#": 5561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": 801.2744632606872, + "inverseInertia": 0.0012480118184855459, + "inverseMass": 0.8913767475383196, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.121860092, + "motion": 0, + "parent": null, + "position": { + "#": 5562 + }, + "positionImpulse": { + "#": 5563 + }, + "positionPrev": { + "#": 5564 + }, + "region": { + "#": 5565 + }, + "render": { + "#": 5566 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8881149938620343, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5568 + }, + "vertices": { + "#": 5569 + } + }, + [ + { + "#": 5546 + }, + { + "#": 5547 + }, + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + }, + { + "#": 5552 + }, + { + "#": 5553 + }, + { + "#": 5554 + }, + { + "#": 5555 + } + ], + { + "x": -0.9515299445039851, + "y": -0.3075561163629214 + }, + { + "x": -0.8099306404470826, + "y": -0.5865256666719529 + }, + { + "x": -0.5890182764024838, + "y": -0.8081197127058879 + }, + { + "x": -0.3104863171352198, + "y": -0.9505778489275921 + }, + { + "x": -0.001540500125979042, + "y": -0.9999988134289771 + }, + { + "x": 0.3075561163629214, + "y": -0.9515299445039851 + }, + { + "x": 0.5865256666719529, + "y": -0.8099306404470826 + }, + { + "x": 0.8081197127058879, + "y": -0.5890182764024838 + }, + { + "x": 0.9505778489275921, + "y": -0.3104863171352198 + }, + { + "x": 0.9999988134289771, + "y": -0.001540500125979042 + }, + { + "max": { + "#": 5557 + }, + "min": { + "#": 5558 + } + }, + { + "x": 500.9182818885602, + "y": 851.044991834735 + }, + { + "x": 463.2451864815772, + "y": 810.509853673671 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 482.0687563823727, + "y": 829.3334235744665 + }, + { + "x": 0.45934037975631914, + "y": 1.1073488404145173 + }, + { + "x": 482.04280077698076, + "y": 826.4454252149933 + }, + { + "endCol": 10, + "endRow": 17, + "id": "9,10,16,17", + "startCol": 9, + "startRow": 16 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5567 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.025955605391997663, + "y": 2.8879983594731202 + }, + [ + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + }, + { + "#": 5573 + }, + { + "#": 5574 + }, + { + "#": 5575 + }, + { + "#": 5576 + }, + { + "#": 5577 + }, + { + "#": 5578 + }, + { + "#": 5579 + }, + { + "#": 5580 + }, + { + "#": 5581 + }, + { + "#": 5582 + }, + { + "#": 5583 + }, + { + "#": 5584 + }, + { + "#": 5585 + }, + { + "#": 5586 + }, + { + "#": 5587 + }, + { + "#": 5588 + }, + { + "#": 5589 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500.89232628316825, + "y": 832.2854293654275 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 499.05906156404615, + "y": 837.9572602399883 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 495.56249555389866, + "y": 842.7856524295978 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 490.7448991891721, + "y": 846.2970781039604 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 485.0787435170753, + "y": 848.1478090135108 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 479.1167505914118, + "y": 848.1569934752619 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 473.44491971685085, + "y": 846.3237287561399 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 468.61652752724143, + "y": 842.8271627459923 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 465.10510185287876, + "y": 838.0095663812656 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 463.25437094332835, + "y": 832.343410709169 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 463.2451864815772, + "y": 826.3814177835054 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 465.0784512006993, + "y": 820.7095869089444 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 468.5750172108468, + "y": 815.8811947193351 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 473.39261357557336, + "y": 812.3697690449725 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 479.05876924767017, + "y": 810.5190381354221 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 485.02076217333365, + "y": 810.509853673671 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 490.6925930478946, + "y": 812.3431183927928 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 495.520985237504, + "y": 815.8396844029404 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 499.0324109118667, + "y": 820.6572807676671 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 500.8831418214171, + "y": 826.3234364397639 + }, + { + "angle": 0.003290489433563218, + "anglePrev": 0.0024560828242784875, + "angularSpeed": 0.0005463867148183464, + "angularVelocity": 0.00010005057991701628, + "area": 1127.3694039999998, + "axes": { + "#": 5591 + }, + "bounds": { + "#": 5602 + }, + "circleRadius": 19.100372942386834, + "collisionFilter": { + "#": 5605 + }, + "constraintImpulse": { + "#": 5606 + }, + "density": 0.001, + "force": { + "#": 5607 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 113, + "inertia": 809.1637011361704, + "inverseInertia": 0.0012358438701536793, + "inverseMass": 0.8870207018674778, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1273694039999997, + "motion": 0, + "parent": null, + "position": { + "#": 5608 + }, + "positionImpulse": { + "#": 5609 + }, + "positionPrev": { + "#": 5610 + }, + "region": { + "#": 5611 + }, + "render": { + "#": 5612 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9059554138005286, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5614 + }, + "vertices": { + "#": 5615 + } + }, + [ + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + }, + { + "#": 5596 + }, + { + "#": 5597 + }, + { + "#": 5598 + }, + { + "#": 5599 + }, + { + "#": 5600 + }, + { + "#": 5601 + } + ], + { + "x": -0.9500603160197189, + "y": -0.3120663325713161 + }, + { + "x": -0.8070651788653798, + "y": -0.5904623587181427 + }, + { + "x": -0.5851383319649933, + "y": -0.8109334944773372 + }, + { + "x": -0.30580729317948574, + "y": -0.9520934299942605 + }, + { + "x": 0.0032904834957023666, + "y": -0.9999945863445284 + }, + { + "x": 0.3120663325713161, + "y": -0.9500603160197189 + }, + { + "x": 0.5904623587181427, + "y": -0.8070651788653798 + }, + { + "x": 0.8109334944773372, + "y": -0.5851383319649933 + }, + { + "x": 0.9520934299942605, + "y": -0.30580729317948574 + }, + { + "x": 0.9999945863445284, + "y": 0.0032904834957023666 + }, + { + "max": { + "#": 5603 + }, + "min": { + "#": 5604 + } + }, + { + "x": 563.9796612061273, + "y": 826.2747511512757 + }, + { + "x": 526.2144863047674, + "y": 785.6193785591361 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 545.089216140842, + "y": 804.4941083952107 + }, + { + "x": 0.19146596037952288, + "y": 0.6332684355896245 + }, + { + "x": 545.0647918225277, + "y": 801.5866700328382 + }, + { + "endCol": 11, + "endRow": 17, + "id": "10,11,16,17", + "startCol": 10, + "startRow": 16 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5613 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.052142520759161926, + "y": 2.9028364173886985 + }, + [ + { + "#": 5616 + }, + { + "#": 5617 + }, + { + "#": 5618 + }, + { + "#": 5619 + }, + { + "#": 5620 + }, + { + "#": 5621 + }, + { + "#": 5622 + }, + { + "#": 5623 + }, + { + "#": 5624 + }, + { + "#": 5625 + }, + { + "#": 5626 + }, + { + "#": 5627 + }, + { + "#": 5628 + }, + { + "#": 5629 + }, + { + "#": 5630 + }, + { + "#": 5631 + }, + { + "#": 5632 + }, + { + "#": 5633 + }, + { + "#": 5634 + }, + { + "#": 5635 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 563.9442820475464, + "y": 807.5441671903546 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 562.0795922234485, + "y": 813.2210621920174 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 558.5507017539182, + "y": 818.0444765484729 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 553.7041684604221, + "y": 821.5415480425995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 548.015124993693, + "y": 823.3688382312853 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 542.0391573456981, + "y": 823.349174301915 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 536.3622623440353, + "y": 821.4844844778171 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.5388479875799, + "y": 817.9555940082869 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 528.0417764934532, + "y": 813.1090607147908 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 526.2144863047674, + "y": 807.4200172480616 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 526.2341502341377, + "y": 801.4440496000667 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 528.0988400582356, + "y": 795.767154598404 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 531.6277305277658, + "y": 790.9437402419485 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 536.474263821262, + "y": 787.4466687478218 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 542.1633072879911, + "y": 785.6193785591361 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 548.139274935986, + "y": 785.6390424885063 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 553.8161699376487, + "y": 787.5037323126043 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 558.6395842941042, + "y": 791.0326227821345 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 562.1366557882309, + "y": 795.8791560756306 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 563.9639459769166, + "y": 801.5681995423597 + }, + { + "angle": -0.00033467858561443844, + "anglePrev": -0.00010246546398224943, + "angularSpeed": 0.000232213121632189, + "angularVelocity": -0.000232213121632189, + "area": 2346.845503999999, + "axes": { + "#": 5637 + }, + "bounds": { + "#": 5651 + }, + "circleRadius": 27.46547067901235, + "collisionFilter": { + "#": 5654 + }, + "constraintImpulse": { + "#": 5655 + }, + "density": 0.001, + "force": { + "#": 5656 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 114, + "inertia": 3506.367321067902, + "inverseInertia": 0.0002851954482896102, + "inverseMass": 0.42610389064622484, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.346845503999999, + "motion": 0, + "parent": null, + "position": { + "#": 5657 + }, + "positionImpulse": { + "#": 5658 + }, + "positionPrev": { + "#": 5659 + }, + "region": { + "#": 5660 + }, + "render": { + "#": 5661 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9117316987910424, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5663 + }, + "vertices": { + "#": 5664 + } + }, + [ + { + "#": 5638 + }, + { + "#": 5639 + }, + { + "#": 5640 + }, + { + "#": 5641 + }, + { + "#": 5642 + }, + { + "#": 5643 + }, + { + "#": 5644 + }, + { + "#": 5645 + }, + { + "#": 5646 + }, + { + "#": 5647 + }, + { + "#": 5648 + }, + { + "#": 5649 + }, + { + "#": 5650 + } + ], + { + "x": -0.9710344634000879, + "y": -0.23893947118319217 + }, + { + "x": -0.8856201898575744, + "y": -0.4644102489358241 + }, + { + "x": -0.7487051280354844, + "y": -0.662903183921581 + }, + { + "x": -0.568322442977202, + "y": -0.8228059314373135 + }, + { + "x": -0.35492616744907896, + "y": -0.9348943339543289 + }, + { + "x": -0.12085303255220328, + "y": -0.992670410822714 + }, + { + "x": 0.12018855447023279, + "y": -0.9927510822831452 + }, + { + "x": 0.3543003097586506, + "y": -0.9351316968774634 + }, + { + "x": 0.56777156465228, + "y": -0.8231861577871085 + }, + { + "x": 0.748261241344079, + "y": -0.6634041865275031 + }, + { + "x": 0.8853091351540747, + "y": -0.4650029410796711 + }, + { + "x": 0.9708743100328469, + "y": -0.23958938648914258 + }, + { + "x": 0.9999999439951227, + "y": -0.00033467857936656073 + }, + { + "max": { + "#": 5652 + }, + "min": { + "#": 5653 + } + }, + { + "x": 627.8053417951261, + "y": 828.4022620527895 + }, + { + "x": 573.2638650276339, + "y": 770.560548166273 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600.5299716214371, + "y": 798.025546628099 + }, + { + "x": 0.34924167133710377, + "y": 0.14422281277728644 + }, + { + "x": 600.5207080415513, + "y": 795.1138296652347 + }, + { + "endCol": 13, + "endRow": 17, + "id": "11,13,16,17", + "startCol": 11, + "startRow": 16 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5662 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.009263579885742956, + "y": 2.9117169628643973 + }, + [ + { + "#": 5665 + }, + { + "#": 5666 + }, + { + "#": 5667 + }, + { + "#": 5668 + }, + { + "#": 5669 + }, + { + "#": 5670 + }, + { + "#": 5671 + }, + { + "#": 5672 + }, + { + "#": 5673 + }, + { + "#": 5674 + }, + { + "#": 5675 + }, + { + "#": 5676 + }, + { + "#": 5677 + }, + { + "#": 5678 + }, + { + "#": 5679 + }, + { + "#": 5680 + }, + { + "#": 5681 + }, + { + "#": 5682 + }, + { + "#": 5683 + }, + { + "#": 5684 + }, + { + "#": 5685 + }, + { + "#": 5686 + }, + { + "#": 5687 + }, + { + "#": 5688 + }, + { + "#": 5689 + }, + { + "#": 5690 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 627.7960782152403, + "y": 801.3274214312005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 626.2142296178605, + "y": 807.7559512020708 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 623.1391920106983, + "y": 813.619980679703 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 618.749850923655, + "y": 818.5774499757848 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 613.3021099549624, + "y": 822.3402734287292 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 607.111896126993, + "y": 824.6903452923148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 600.5391635686195, + "y": 825.4905450899251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 593.9658968632332, + "y": 824.6947449769192 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 587.774111384655, + "y": 822.3488171035035 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 582.3238529636886, + "y": 818.5896409777166 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 577.9311945425666, + "y": 813.635110828919 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 574.8522324943825, + "y": 807.7731409632643 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 573.2660812691863, + "y": 801.3456714541333 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 573.2638650276339, + "y": 794.7236718249976 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 574.8457136250137, + "y": 788.2951420541273 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 577.9207512321759, + "y": 782.4311125764951 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 582.3100923192192, + "y": 777.4736432804133 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 587.7578332879118, + "y": 773.7108198274689 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 593.9480471158812, + "y": 771.3607479638833 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 600.5207796742546, + "y": 770.560548166273 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 607.094046379641, + "y": 771.3563482792789 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 613.2858318582191, + "y": 773.7022761526946 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 618.7360902791855, + "y": 777.4614522784815 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 623.1287487003076, + "y": 782.4159824272791 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 626.2077107484916, + "y": 788.2779522929338 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 627.7938619736879, + "y": 794.7054218020648 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1927.254822, + "axes": { + "#": 5692 + }, + "bounds": { + "#": 5706 + }, + "circleRadius": 24.889210390946502, + "collisionFilter": { + "#": 5709 + }, + "constraintImpulse": { + "#": 5710 + }, + "density": 0.001, + "force": { + "#": 5711 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 2364.649035490592, + "inverseInertia": 0.0004228957384335603, + "inverseMass": 0.5188727451008551, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.927254822, + "motion": 0, + "parent": null, + "position": { + "#": 5712 + }, + "positionImpulse": { + "#": 5713 + }, + "positionPrev": { + "#": 5714 + }, + "region": { + "#": 5715 + }, + "render": { + "#": 5716 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5718 + }, + "vertices": { + "#": 5719 + } + }, + [ + { + "#": 5693 + }, + { + "#": 5694 + }, + { + "#": 5695 + }, + { + "#": 5696 + }, + { + "#": 5697 + }, + { + "#": 5698 + }, + { + "#": 5699 + }, + { + "#": 5700 + }, + { + "#": 5701 + }, + { + "#": 5702 + }, + { + "#": 5703 + }, + { + "#": 5704 + }, + { + "#": 5705 + } + ], + { + "x": -0.9709410440920686, + "y": -0.2393188018050481 + }, + { + "x": -0.8854201928043248, + "y": -0.4647914394374667 + }, + { + "x": -0.7485669061572402, + "y": -0.6630592635701409 + }, + { + "x": -0.5680133484705358, + "y": -0.8230193411817792 + }, + { + "x": -0.3546090227600297, + "y": -0.9350146742041948 + }, + { + "x": -0.12050558188088281, + "y": -0.9927126496300679 + }, + { + "x": 0.12050558188088281, + "y": -0.9927126496300679 + }, + { + "x": 0.3546090227600297, + "y": -0.9350146742041948 + }, + { + "x": 0.5680133484705358, + "y": -0.8230193411817792 + }, + { + "x": 0.7485669061572402, + "y": -0.6630592635701409 + }, + { + "x": 0.8854201928043248, + "y": -0.4647914394374667 + }, + { + "x": 0.9709410440920686, + "y": -0.2393188018050481 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5707 + }, + "min": { + "#": 5708 + } + }, + { + "x": 151.98460214634449, + "y": 883.3224600542287 + }, + { + "x": 102.56860214634447, + "y": 830.6371893391928 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.27660214634447, + "y": 855.5261893391928 + }, + { + "x": 0.3564022490320795, + "y": 1.3300115178723164 + }, + { + "x": 127.27660214634447, + "y": 852.6189186241569 + }, + { + "endCol": 3, + "endRow": 18, + "id": "2,3,17,18", + "startCol": 2, + "startRow": 17 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5717 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 5720 + }, + { + "#": 5721 + }, + { + "#": 5722 + }, + { + "#": 5723 + }, + { + "#": 5724 + }, + { + "#": 5725 + }, + { + "#": 5726 + }, + { + "#": 5727 + }, + { + "#": 5728 + }, + { + "#": 5729 + }, + { + "#": 5730 + }, + { + "#": 5731 + }, + { + "#": 5732 + }, + { + "#": 5733 + }, + { + "#": 5734 + }, + { + "#": 5735 + }, + { + "#": 5736 + }, + { + "#": 5737 + }, + { + "#": 5738 + }, + { + "#": 5739 + }, + { + "#": 5740 + }, + { + "#": 5741 + }, + { + "#": 5742 + }, + { + "#": 5743 + }, + { + "#": 5744 + }, + { + "#": 5745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 151.98460214634449, + "y": 858.5261893391928 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150.54860214634448, + "y": 864.3521893391928 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 147.7596021463445, + "y": 869.6651893391928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 143.78160214634448, + "y": 874.1561893391928 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 138.8436021463445, + "y": 877.5641893391928 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 133.23260214634448, + "y": 879.6921893391929 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 127.27660214634447, + "y": 880.4151893391928 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 121.32060214634447, + "y": 879.6921893391929 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 115.70960214634447, + "y": 877.5641893391928 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 110.77160214634448, + "y": 874.1561893391928 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 106.79360214634447, + "y": 869.6651893391928 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 104.00460214634448, + "y": 864.3521893391928 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 102.56860214634447, + "y": 858.5261893391928 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 102.56860214634447, + "y": 852.5261893391928 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 104.00460214634448, + "y": 846.7001893391928 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 106.79360214634447, + "y": 841.3871893391928 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 110.77160214634448, + "y": 836.8961893391928 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 115.70960214634447, + "y": 833.4881893391928 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 121.32060214634447, + "y": 831.3601893391927 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 127.27660214634447, + "y": 830.6371893391928 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 133.23260214634448, + "y": 831.3601893391927 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 138.8436021463445, + "y": 833.4881893391928 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 143.78160214634448, + "y": 836.8961893391928 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 147.7596021463445, + "y": 841.3871893391928 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 150.54860214634448, + "y": 846.7001893391928 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 151.98460214634449, + "y": 852.5261893391928 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 843.7975979999999, + "axes": { + "#": 5747 + }, + "bounds": { + "#": 5757 + }, + "circleRadius": 16.556777263374485, + "collisionFilter": { + "#": 5760 + }, + "constraintImpulse": { + "#": 5761 + }, + "density": 0.001, + "force": { + "#": 5762 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 116, + "inertia": 453.30764014503984, + "inverseInertia": 0.0022060073809478283, + "inverseMass": 1.1851183297632475, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8437975979999999, + "motion": 0, + "parent": null, + "position": { + "#": 5763 + }, + "positionImpulse": { + "#": 5764 + }, + "positionPrev": { + "#": 5765 + }, + "region": { + "#": 5766 + }, + "render": { + "#": 5767 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5769 + }, + "vertices": { + "#": 5770 + } + }, + [ + { + "#": 5748 + }, + { + "#": 5749 + }, + { + "#": 5750 + }, + { + "#": 5751 + }, + { + "#": 5752 + }, + { + "#": 5753 + }, + { + "#": 5754 + }, + { + "#": 5755 + }, + { + "#": 5756 + } + ], + { + "x": -0.9397223093030161, + "y": -0.34193856377748083 + }, + { + "x": -0.7659788409533199, + "y": -0.6428657832019126 + }, + { + "x": -0.5000486573852558, + "y": -0.86599730960737 + }, + { + "x": -0.17372581087187394, + "y": -0.9847940610284518 + }, + { + "x": 0.17372581087187394, + "y": -0.9847940610284518 + }, + { + "x": 0.5000486573852558, + "y": -0.86599730960737 + }, + { + "x": 0.7659788409533199, + "y": -0.6428657832019126 + }, + { + "x": 0.9397223093030161, + "y": -0.34193856377748083 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5758 + }, + "min": { + "#": 5759 + } + }, + { + "x": 192.026, + "y": 854.165754767027 + }, + { + "x": 159.416, + "y": 821.051754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.721, + "y": 837.608754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.721, + "y": 834.7014840519911 + }, + { + "endCol": 4, + "endRow": 17, + "id": "3,4,17,17", + "startCol": 3, + "startRow": 17 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5768 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 5771 + }, + { + "#": 5772 + }, + { + "#": 5773 + }, + { + "#": 5774 + }, + { + "#": 5775 + }, + { + "#": 5776 + }, + { + "#": 5777 + }, + { + "#": 5778 + }, + { + "#": 5779 + }, + { + "#": 5780 + }, + { + "#": 5781 + }, + { + "#": 5782 + }, + { + "#": 5783 + }, + { + "#": 5784 + }, + { + "#": 5785 + }, + { + "#": 5786 + }, + { + "#": 5787 + }, + { + "#": 5788 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 192.026, + "y": 840.483754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.06, + "y": 845.886754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.363, + "y": 850.291754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 181.38400000000001, + "y": 853.166754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 175.721, + "y": 854.165754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170.058, + "y": 853.166754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 165.079, + "y": 850.291754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 161.382, + "y": 845.886754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 159.416, + "y": 840.483754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.416, + "y": 834.733754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 161.382, + "y": 829.330754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 165.079, + "y": 824.925754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 170.058, + "y": 822.050754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 175.721, + "y": 821.051754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 181.38400000000001, + "y": 822.050754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 186.363, + "y": 824.925754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 190.06, + "y": 829.330754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 192.026, + "y": 834.733754767027 + }, + { + "angle": 0.00014242805422155688, + "anglePrev": 0.00002078307863199082, + "angularSpeed": 0.00006537358850346917, + "angularVelocity": 0.000040946948667353614, + "area": 2574.1385259999997, + "axes": { + "#": 5790 + }, + "bounds": { + "#": 5804 + }, + "circleRadius": 28.76446759259259, + "collisionFilter": { + "#": 5807 + }, + "constraintImpulse": { + "#": 5808 + }, + "density": 0.001, + "force": { + "#": 5809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 117, + "inertia": 4218.443516923933, + "inverseInertia": 0.00023705425851694103, + "inverseMass": 0.3884794815428671, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.5741385259999996, + "motion": 0, + "parent": null, + "position": { + "#": 5810 + }, + "positionImpulse": { + "#": 5811 + }, + "positionPrev": { + "#": 5812 + }, + "region": { + "#": 5813 + }, + "render": { + "#": 5814 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.908743890717591, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5816 + }, + "vertices": { + "#": 5817 + } + }, + [ + { + "#": 5791 + }, + { + "#": 5792 + }, + { + "#": 5793 + }, + { + "#": 5794 + }, + { + "#": 5795 + }, + { + "#": 5796 + }, + { + "#": 5797 + }, + { + "#": 5798 + }, + { + "#": 5799 + }, + { + "#": 5800 + }, + { + "#": 5801 + }, + { + "#": 5802 + }, + { + "#": 5803 + } + ], + { + "x": -0.9708921454185914, + "y": -0.23951710161173181 + }, + { + "x": -0.8854207273969777, + "y": -0.46479042104566487 + }, + { + "x": -0.7484037451130532, + "y": -0.6632434200960883 + }, + { + "x": -0.5679897844468035, + "y": -0.8230356035822954 + }, + { + "x": -0.35446454455342735, + "y": -0.9350694555243109 + }, + { + "x": -0.1202718004519617, + "y": -0.9927410004709404 + }, + { + "x": 0.12055458390661593, + "y": -0.9927067000373789 + }, + { + "x": 0.3547308904148912, + "y": -0.9349684461977625 + }, + { + "x": 0.5682242081185814, + "y": -0.8228737748330609 + }, + { + "x": 0.7485926436862338, + "y": -0.6630302058118132 + }, + { + "x": 0.8855530898629201, + "y": -0.46453818468908964 + }, + { + "x": 0.9709603339365876, + "y": -0.23924052733964174 + }, + { + "x": 0.9999999898571247, + "y": 0.00014242805374001352 + }, + { + "max": { + "#": 5805 + }, + "min": { + "#": 5806 + } + }, + { + "x": 247.75484974685446, + "y": 897.2623346741991 + }, + { + "x": 190.64012213936098, + "y": 836.8255937721468 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.1956156477935, + "y": 865.5895934803972 + }, + { + "x": -0.9897603205726739, + "y": 0.8017185691317471 + }, + { + "x": 219.19486414148156, + "y": 862.6798739986344 + }, + { + "endCol": 5, + "endRow": 18, + "id": "3,5,17,18", + "startCol": 3, + "startRow": 17 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5815 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004980338084976665, + "y": 2.9081850483037215 + }, + [ + { + "#": 5818 + }, + { + "#": 5819 + }, + { + "#": 5820 + }, + { + "#": 5821 + }, + { + "#": 5822 + }, + { + "#": 5823 + }, + { + "#": 5824 + }, + { + "#": 5825 + }, + { + "#": 5826 + }, + { + "#": 5827 + }, + { + "#": 5828 + }, + { + "#": 5829 + }, + { + "#": 5830 + }, + { + "#": 5831 + }, + { + "#": 5832 + }, + { + "#": 5833 + }, + { + "#": 5834 + }, + { + "#": 5835 + }, + { + "#": 5836 + }, + { + "#": 5837 + }, + { + "#": 5838 + }, + { + "#": 5839 + }, + { + "#": 5840 + }, + { + "#": 5841 + }, + { + "#": 5842 + }, + { + "#": 5843 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 247.75012156010138, + "y": 869.0606604783063 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 246.0891626088527, + "y": 875.7934239794452 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 242.8662881332831, + "y": 881.9329650139788 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 238.2665488359032, + "y": 887.123309934708 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 232.55998786967479, + "y": 891.0614972002805 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 226.07563770485706, + "y": 893.5195736718387 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 219.19151884725574, + "y": 894.3535931886476 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 212.30763784450411, + "y": 893.5176127223948 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 205.82398814085468, + "y": 891.0576892438359 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 200.1185492228336, + "y": 887.1178765893138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 195.52028861350766, + "y": 881.9262216153464 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 192.29916315443796, + "y": 875.7857627744346 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 190.64012213936098, + "y": 869.0525264121572 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 190.6411097354856, + "y": 862.118526482488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 192.3020686867343, + "y": 855.3857629813492 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 195.52494316230388, + "y": 849.2462219468156 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 200.12468245968378, + "y": 844.0558770260864 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 205.8312434259122, + "y": 840.1176897605138 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 212.31559359072992, + "y": 837.6596132889557 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 219.19971244833124, + "y": 836.8255937721468 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 226.08359345108286, + "y": 837.6615742383996 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 232.5672431547323, + "y": 840.1214977169585 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 238.27268207275338, + "y": 844.0613103714805 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 242.87094268207932, + "y": 849.2529653454479 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 246.09206814114896, + "y": 855.3934241863598 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 247.751109156226, + "y": 862.1266605486371 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2036.7522099999999, + "axes": { + "#": 5845 + }, + "bounds": { + "#": 5859 + }, + "circleRadius": 25.586355452674898, + "collisionFilter": { + "#": 5862 + }, + "constraintImpulse": { + "#": 5863 + }, + "density": 0.001, + "force": { + "#": 5864 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 2640.978111739055, + "inverseInertia": 0.00037864759104024194, + "inverseMass": 0.49097774147008294, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.03675221, + "motion": 0, + "parent": null, + "position": { + "#": 5865 + }, + "positionImpulse": { + "#": 5866 + }, + "positionPrev": { + "#": 5867 + }, + "region": { + "#": 5868 + }, + "render": { + "#": 5869 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5871 + }, + "vertices": { + "#": 5872 + } + }, + [ + { + "#": 5846 + }, + { + "#": 5847 + }, + { + "#": 5848 + }, + { + "#": 5849 + }, + { + "#": 5850 + }, + { + "#": 5851 + }, + { + "#": 5852 + }, + { + "#": 5853 + }, + { + "#": 5854 + }, + { + "#": 5855 + }, + { + "#": 5856 + }, + { + "#": 5857 + }, + { + "#": 5858 + } + ], + { + "x": -0.9709476908423734, + "y": -0.23929183364223444 + }, + { + "x": -0.8854345948146193, + "y": -0.4647640028073076 + }, + { + "x": -0.7485352977514667, + "y": -0.6630949464594971 + }, + { + "x": -0.5680966106501801, + "y": -0.8229618709076244 + }, + { + "x": -0.35453205966073653, + "y": -0.9350438592241093 + }, + { + "x": -0.12046209700872805, + "y": -0.9927179273007313 + }, + { + "x": 0.12046209700872805, + "y": -0.9927179273007313 + }, + { + "x": 0.35453205966073653, + "y": -0.9350438592241093 + }, + { + "x": 0.5680966106501801, + "y": -0.8229618709076244 + }, + { + "x": 0.7485352977514667, + "y": -0.6630949464594971 + }, + { + "x": 0.8854345948146193, + "y": -0.4647640028073076 + }, + { + "x": 0.9709476908423734, + "y": -0.23929183364223444 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5860 + }, + "min": { + "#": 5861 + } + }, + { + "x": 344.64645522608663, + "y": 906.8612608003743 + }, + { + "x": 293.8464552260866, + "y": 852.7819900853384 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 319.24645522608665, + "y": 878.3679900853384 + }, + { + "x": 0.518935924802607, + "y": 0.018089487983449126 + }, + { + "x": 319.24645522608665, + "y": 875.4607193703025 + }, + { + "endCol": 7, + "endRow": 18, + "id": "6,7,17,18", + "startCol": 6, + "startRow": 17 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5870 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 5873 + }, + { + "#": 5874 + }, + { + "#": 5875 + }, + { + "#": 5876 + }, + { + "#": 5877 + }, + { + "#": 5878 + }, + { + "#": 5879 + }, + { + "#": 5880 + }, + { + "#": 5881 + }, + { + "#": 5882 + }, + { + "#": 5883 + }, + { + "#": 5884 + }, + { + "#": 5885 + }, + { + "#": 5886 + }, + { + "#": 5887 + }, + { + "#": 5888 + }, + { + "#": 5889 + }, + { + "#": 5890 + }, + { + "#": 5891 + }, + { + "#": 5892 + }, + { + "#": 5893 + }, + { + "#": 5894 + }, + { + "#": 5895 + }, + { + "#": 5896 + }, + { + "#": 5897 + }, + { + "#": 5898 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 344.64645522608663, + "y": 881.4519900853384 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 343.17045522608663, + "y": 887.4409900853384 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340.30345522608667, + "y": 892.9029900853384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 336.21345522608664, + "y": 897.5199900853385 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 331.1374552260867, + "y": 901.0239900853384 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 325.36945522608664, + "y": 903.2109900853384 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 319.24645522608665, + "y": 903.9539900853384 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 313.12345522608666, + "y": 903.2109900853384 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 307.35545522608663, + "y": 901.0239900853384 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 302.27945522608667, + "y": 897.5199900853385 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 298.1894552260867, + "y": 892.9029900853384 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 295.3224552260866, + "y": 887.4409900853384 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 293.8464552260866, + "y": 881.4519900853384 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 293.8464552260866, + "y": 875.2839900853385 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.3224552260866, + "y": 869.2949900853384 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 298.1894552260867, + "y": 863.8329900853385 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 302.27945522608667, + "y": 859.2159900853384 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 307.35545522608663, + "y": 855.7119900853385 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 313.12345522608666, + "y": 853.5249900853385 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 319.24645522608665, + "y": 852.7819900853384 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 325.36945522608664, + "y": 853.5249900853385 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 331.1374552260867, + "y": 855.7119900853385 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 336.21345522608664, + "y": 859.2159900853384 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 340.30345522608667, + "y": 863.8329900853385 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 343.17045522608663, + "y": 869.2949900853384 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 344.64645522608663, + "y": 875.2839900853385 + }, + { + "angle": 0, + "anglePrev": 0.000012358248992815264, + "angularSpeed": 0, + "angularVelocity": 0.0012926618518121376, + "area": 739.3989280000001, + "axes": { + "#": 5900 + }, + "bounds": { + "#": 5909 + }, + "circleRadius": 15.540959362139917, + "collisionFilter": { + "#": 5912 + }, + "constraintImpulse": { + "#": 5913 + }, + "density": 0.001, + "force": { + "#": 5914 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 119, + "inertia": 348.0937309995225, + "inverseInertia": 0.00287278945566926, + "inverseMass": 1.3524498915692234, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7393989280000001, + "motion": 0, + "parent": null, + "position": { + "#": 5915 + }, + "positionImpulse": { + "#": 5916 + }, + "positionPrev": { + "#": 5917 + }, + "region": { + "#": 5918 + }, + "render": { + "#": 5919 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5921 + }, + "vertices": { + "#": 5922 + } + }, + [ + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + }, + { + "#": 5904 + }, + { + "#": 5905 + }, + { + "#": 5906 + }, + { + "#": 5907 + }, + { + "#": 5908 + } + ], + { + "x": -0.9239042757313624, + "y": -0.3826236914846057 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826236914846057, + "y": -0.9239042757313624 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826236914846057, + "y": -0.9239042757313624 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9239042757313624, + "y": -0.3826236914846057 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5910 + }, + "min": { + "#": 5911 + } + }, + { + "x": 361.84032356202385, + "y": 855.4726136444484 + }, + { + "x": 331.3563235620238, + "y": 822.0813429294126 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 346.59832356202384, + "y": 837.3233429294125 + }, + { + "x": 1.1362588496190924, + "y": 0.8236705299084695 + }, + { + "x": 346.58839707769795, + "y": 834.4088765365542 + }, + { + "endCol": 7, + "endRow": 17, + "id": "6,7,17,17", + "startCol": 6, + "startRow": 17 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5920 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03608704466296331, + "y": 2.8845873465235172 + }, + [ + { + "#": 5923 + }, + { + "#": 5924 + }, + { + "#": 5925 + }, + { + "#": 5926 + }, + { + "#": 5927 + }, + { + "#": 5928 + }, + { + "#": 5929 + }, + { + "#": 5930 + }, + { + "#": 5931 + }, + { + "#": 5932 + }, + { + "#": 5933 + }, + { + "#": 5934 + }, + { + "#": 5935 + }, + { + "#": 5936 + }, + { + "#": 5937 + }, + { + "#": 5938 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 361.84032356202385, + "y": 840.3553429294126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 359.52032356202386, + "y": 845.9573429294126 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 355.23232356202385, + "y": 850.2453429294126 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 349.6303235620238, + "y": 852.5653429294125 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 343.56632356202385, + "y": 852.5653429294125 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 337.9643235620238, + "y": 850.2453429294126 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 333.6763235620238, + "y": 845.9573429294126 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 331.3563235620238, + "y": 840.3553429294126 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 331.3563235620238, + "y": 834.2913429294125 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 333.6763235620238, + "y": 828.6893429294125 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 337.9643235620238, + "y": 824.4013429294125 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 343.56632356202385, + "y": 822.0813429294126 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 349.6303235620238, + "y": 822.0813429294126 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 355.23232356202385, + "y": 824.4013429294125 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 359.52032356202386, + "y": 828.6893429294125 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 361.84032356202385, + "y": 834.2913429294125 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.101068, + "axes": { + "#": 5940 + }, + "bounds": { + "#": 5951 + }, + "circleRadius": 18.257908950617285, + "collisionFilter": { + "#": 5954 + }, + "constraintImpulse": { + "#": 5955 + }, + "density": 0.001, + "force": { + "#": 5956 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 120, + "inertia": 675.5594581193772, + "inverseInertia": 0.0014802546067281784, + "inverseMass": 0.9707785294714402, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.030101068, + "motion": 0, + "parent": null, + "position": { + "#": 5957 + }, + "positionImpulse": { + "#": 5958 + }, + "positionPrev": { + "#": 5959 + }, + "region": { + "#": 5960 + }, + "render": { + "#": 5961 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5963 + }, + "vertices": { + "#": 5964 + } + }, + [ + { + "#": 5941 + }, + { + "#": 5942 + }, + { + "#": 5943 + }, + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + }, + { + "#": 5947 + }, + { + "#": 5948 + }, + { + "#": 5949 + }, + { + "#": 5950 + } + ], + { + "x": -0.9510713685106887, + "y": -0.3089712802174427 + }, + { + "x": -0.8089631319319196, + "y": -0.5878593804430613 + }, + { + "x": -0.5878593804430613, + "y": -0.8089631319319196 + }, + { + "x": -0.3089712802174427, + "y": -0.9510713685106887 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089712802174427, + "y": -0.9510713685106887 + }, + { + "x": 0.5878593804430613, + "y": -0.8089631319319196 + }, + { + "x": 0.8089631319319196, + "y": -0.5878593804430613 + }, + { + "x": 0.9510713685106887, + "y": -0.3089712802174427 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5952 + }, + "min": { + "#": 5953 + } + }, + { + "x": 406.48600000000005, + "y": 857.117754767027 + }, + { + "x": 370.42, + "y": 821.051754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 388.45300000000003, + "y": 839.084754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 388.45300000000003, + "y": 836.1774840519911 + }, + { + "endCol": 8, + "endRow": 17, + "id": "7,8,17,17", + "startCol": 7, + "startRow": 17 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5962 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 5965 + }, + { + "#": 5966 + }, + { + "#": 5967 + }, + { + "#": 5968 + }, + { + "#": 5969 + }, + { + "#": 5970 + }, + { + "#": 5971 + }, + { + "#": 5972 + }, + { + "#": 5973 + }, + { + "#": 5974 + }, + { + "#": 5975 + }, + { + "#": 5976 + }, + { + "#": 5977 + }, + { + "#": 5978 + }, + { + "#": 5979 + }, + { + "#": 5980 + }, + { + "#": 5981 + }, + { + "#": 5982 + }, + { + "#": 5983 + }, + { + "#": 5984 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 406.48600000000005, + "y": 841.940754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 404.721, + "y": 847.373754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 401.36300000000006, + "y": 851.994754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.742, + "y": 855.352754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 391.309, + "y": 857.117754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 385.59700000000004, + "y": 857.117754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380.16400000000004, + "y": 855.352754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 375.543, + "y": 851.994754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 372.18500000000006, + "y": 847.373754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 370.42, + "y": 841.940754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 370.42, + "y": 836.228754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 372.18500000000006, + "y": 830.795754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 375.543, + "y": 826.174754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 380.16400000000004, + "y": 822.816754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 385.59700000000004, + "y": 821.051754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 391.309, + "y": 821.051754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 396.742, + "y": 822.816754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 401.36300000000006, + "y": 826.174754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 404.721, + "y": 830.795754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 406.48600000000005, + "y": 836.228754767027 + }, + { + "angle": -0.00002482476836224522, + "anglePrev": -0.000012474757970977497, + "angularSpeed": 0.000012350010391267721, + "angularVelocity": -0.000012350010391267721, + "area": 2126.6024159999997, + "axes": { + "#": 5986 + }, + "bounds": { + "#": 6000 + }, + "circleRadius": 26.144611625514404, + "collisionFilter": { + "#": 6003 + }, + "constraintImpulse": { + "#": 6004 + }, + "density": 0.001, + "force": { + "#": 6005 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": 2879.1282788678996, + "inverseInertia": 0.00034732735159449357, + "inverseMass": 0.47023364239420673, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.126602416, + "motion": 0, + "parent": null, + "position": { + "#": 6006 + }, + "positionImpulse": { + "#": 6007 + }, + "positionPrev": { + "#": 6008 + }, + "region": { + "#": 6009 + }, + "render": { + "#": 6010 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9112357075630646, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6012 + }, + "vertices": { + "#": 6013 + } + }, + [ + { + "#": 5987 + }, + { + "#": 5988 + }, + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + }, + { + "#": 5992 + }, + { + "#": 5993 + }, + { + "#": 5994 + }, + { + "#": 5995 + }, + { + "#": 5996 + }, + { + "#": 5997 + }, + { + "#": 5998 + }, + { + "#": 5999 + } + ], + { + "x": -0.9709641414205565, + "y": -0.2392250740943386 + }, + { + "x": -0.8854763594020735, + "y": -0.4646844272622551 + }, + { + "x": -0.7485101435583009, + "y": -0.6631233407069396 + }, + { + "x": -0.5680499722663138, + "y": -0.8229940637746059 + }, + { + "x": -0.3546391808802124, + "y": -0.9350032360289521 + }, + { + "x": -0.12060238919133351, + "y": -0.9927008933819604 + }, + { + "x": 0.1205531019032443, + "y": -0.9927068800111672 + }, + { + "x": 0.3545927579656204, + "y": -0.9350208425475527 + }, + { + "x": 0.5680091102921939, + "y": -0.8230222661781821 + }, + { + "x": 0.74847721886909, + "y": -0.6631605030714608 + }, + { + "x": 0.8854532869441629, + "y": -0.4647283901805205 + }, + { + "x": 0.9709522628097093, + "y": -0.2392732817192624 + }, + { + "x": 0.9999999996918655, + "y": -0.000024824768359695427 + }, + { + "max": { + "#": 6001 + }, + "min": { + "#": 6002 + } + }, + { + "x": 465.62610966680813, + "y": 879.269776313854 + }, + { + "x": 413.7168261876699, + "y": 824.0685408405651 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 439.6720314519603, + "y": 850.2135408325089 + }, + { + "x": -0.5803442496664483, + "y": 0.6313582097888953 + }, + { + "x": 439.67315850140295, + "y": 847.3023053431076 + }, + { + "endCol": 9, + "endRow": 18, + "id": "8,9,17,18", + "startCol": 8, + "startRow": 17 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6011 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0011270494426497634, + "y": 2.911235489401325 + }, + [ + { + "#": 6014 + }, + { + "#": 6015 + }, + { + "#": 6016 + }, + { + "#": 6017 + }, + { + "#": 6018 + }, + { + "#": 6019 + }, + { + "#": 6020 + }, + { + "#": 6021 + }, + { + "#": 6022 + }, + { + "#": 6023 + }, + { + "#": 6024 + }, + { + "#": 6025 + }, + { + "#": 6026 + }, + { + "#": 6027 + }, + { + "#": 6028 + }, + { + "#": 6029 + }, + { + "#": 6030 + }, + { + "#": 6031 + }, + { + "#": 6032 + }, + { + "#": 6033 + }, + { + "#": 6034 + }, + { + "#": 6035 + }, + { + "#": 6036 + }, + { + "#": 6037 + }, + { + "#": 6038 + }, + { + "#": 6039 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 465.62610966680813, + "y": 853.3638965294998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 464.11826159485514, + "y": 859.4839339633648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 461.18940014278985, + "y": 865.0650066733917 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 457.009517267335, + "y": 869.7831104394696 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 451.822606141604, + "y": 873.36323920444 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 445.9296616267771, + "y": 875.5983854961113 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 439.67268049552905, + "y": 876.3585408244527 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 433.4156616306331, + "y": 875.5986961532625 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 427.5226061490917, + "y": 873.3638424463112 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 422.33551727801927, + "y": 869.7839712134878 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 418.1554001560502, + "y": 865.0660749824732 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 415.2262616099204, + "y": 859.4851476959394 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 413.7181096828027, + "y": 853.3651851335759 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 413.7179532371125, + "y": 847.063185135518 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.2258013090655, + "y": 840.943147701653 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 418.1546627611308, + "y": 835.3620749916261 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 422.33454563658563, + "y": 830.6439712255482 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.52145676231663, + "y": 827.0638424605778 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 433.41440127714355, + "y": 824.8286961689065 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 439.6713824083916, + "y": 824.0685408405651 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 445.92840127328753, + "y": 824.8283855117553 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 451.82145675482894, + "y": 827.0632392187066 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 457.0085456259014, + "y": 830.64311045153 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 461.18866274787047, + "y": 835.3610066825446 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 464.11780129400023, + "y": 840.9419339690784 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 465.6259532211179, + "y": 847.0618965314419 + }, + { + "angle": -0.00008929065053100762, + "anglePrev": -0.00007186108389559969, + "angularSpeed": 0.000017429566635407932, + "angularVelocity": -0.000017429566635407932, + "area": 1373.590942, + "axes": { + "#": 6041 + }, + "bounds": { + "#": 6053 + }, + "circleRadius": 21.052919238683128, + "collisionFilter": { + "#": 6056 + }, + "constraintImpulse": { + "#": 6057 + }, + "density": 0.001, + "force": { + "#": 6058 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 122, + "inertia": 1201.1885090560147, + "inverseInertia": 0.0008325087964634927, + "inverseMass": 0.7280187786794534, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.373590942, + "motion": 0, + "parent": null, + "position": { + "#": 6059 + }, + "positionImpulse": { + "#": 6060 + }, + "positionPrev": { + "#": 6061 + }, + "region": { + "#": 6062 + }, + "render": { + "#": 6063 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9073310585389733, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6065 + }, + "vertices": { + "#": 6066 + } + }, + [ + { + "#": 6042 + }, + { + "#": 6043 + }, + { + "#": 6044 + }, + { + "#": 6045 + }, + { + "#": 6046 + }, + { + "#": 6047 + }, + { + "#": 6048 + }, + { + "#": 6049 + }, + { + "#": 6050 + }, + { + "#": 6051 + }, + { + "#": 6052 + } + ], + { + "x": -0.9594889156404067, + "y": -0.28174637666382824 + }, + { + "x": -0.8413514341387293, + "y": -0.5404884497125754 + }, + { + "x": -0.6548900097608071, + "y": -0.7557242057228878 + }, + { + "x": -0.41544261936243126, + "y": -0.909619387445805 + }, + { + "x": -0.14244424937867312, + "y": -0.9898028267382077 + }, + { + "x": 0.14226748683165402, + "y": -0.989828248834415 + }, + { + "x": 0.4152801717251148, + "y": -0.9096935632244292 + }, + { + "x": 0.6547550411069818, + "y": -0.7558411447817553 + }, + { + "x": 0.8412548995927962, + "y": -0.5406386907271011 + }, + { + "x": 0.9594385857064947, + "y": -0.28191771894920076 + }, + { + "x": 0.9999999960135898, + "y": -0.0000892906504123579 + }, + { + "max": { + "#": 6054 + }, + "min": { + "#": 6055 + } + }, + { + "x": 542.4892269176298, + "y": 907.2629865566523 + }, + { + "x": 500.81010529376397, + "y": 862.2496557251754 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 521.6499594859138, + "y": 883.3026556412495 + }, + { + "x": 1.7800982527709477, + "y": 1.6266042288057112 + }, + { + "x": 521.6505462463477, + "y": 880.3953246419209 + }, + { + "endCol": 11, + "endRow": 18, + "id": "10,11,17,18", + "startCol": 10, + "startRow": 17 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6064 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0005867604339914579, + "y": 2.907330999328687 + }, + [ + { + "#": 6067 + }, + { + "#": 6068 + }, + { + "#": 6069 + }, + { + "#": 6070 + }, + { + "#": 6071 + }, + { + "#": 6072 + }, + { + "#": 6073 + }, + { + "#": 6074 + }, + { + "#": 6075 + }, + { + "#": 6076 + }, + { + "#": 6077 + }, + { + "#": 6078 + }, + { + "#": 6079 + }, + { + "#": 6080 + }, + { + "#": 6081 + }, + { + "#": 6082 + }, + { + "#": 6083 + }, + { + "#": 6084 + }, + { + "#": 6085 + }, + { + "#": 6086 + }, + { + "#": 6087 + }, + { + "#": 6088 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 542.4892269176298, + "y": 886.2967949014422 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540.8007403456025, + "y": 892.0469456904291 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 537.5621904726834, + "y": 897.0882348827503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 533.0335408672499, + "y": 901.0126392644632 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 527.5827631334088, + "y": 903.5021259778765 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 521.6518393219768, + "y": 904.3556555573236 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 515.7207631806955, + "y": 903.5031851435717 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.2695409579966, + "y": 901.0146718768293 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 505.7401905995387, + "y": 897.0910762898276 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 502.500740498282, + "y": 892.0503655223399 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 500.8112270837752, + "y": 886.3005163571703 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 500.81069205419794, + "y": 880.3085163810568 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 502.4991786262251, + "y": 874.55836559207 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 505.7377284991443, + "y": 869.5170763997488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 510.2663781045776, + "y": 865.5926720180358 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 515.7171558384188, + "y": 863.1031853046226 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 521.6480796498507, + "y": 862.2496557251754 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 527.5791557911322, + "y": 863.1021261389274 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 533.0303780138311, + "y": 865.5906394056698 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 537.5597283722889, + "y": 869.5142349926715 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 540.7991784735456, + "y": 874.5549457601592 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 542.4886918880525, + "y": 880.3047949253288 + }, + { + "angle": 0.00011666182351236721, + "anglePrev": -0.000057590549685283235, + "angularSpeed": 0.00011666182351236721, + "angularVelocity": -0.0011169576264267193, + "area": 778.398134, + "axes": { + "#": 6090 + }, + "bounds": { + "#": 6099 + }, + "circleRadius": 15.94579475308642, + "collisionFilter": { + "#": 6102 + }, + "constraintImpulse": { + "#": 6103 + }, + "density": 0.001, + "force": { + "#": 6104 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 123, + "inertia": 385.78216043090396, + "inverseInertia": 0.002592136450485523, + "inverseMass": 1.2846896161752617, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.778398134, + "motion": 0, + "parent": null, + "position": { + "#": 6105 + }, + "positionImpulse": { + "#": 6106 + }, + "positionPrev": { + "#": 6107 + }, + "region": { + "#": 6108 + }, + "render": { + "#": 6109 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90773041704847, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6111 + }, + "vertices": { + "#": 6112 + } + }, + [ + { + "#": 6091 + }, + { + "#": 6092 + }, + { + "#": 6093 + }, + { + "#": 6094 + }, + { + "#": 6095 + }, + { + "#": 6096 + }, + { + "#": 6097 + }, + { + "#": 6098 + } + ], + { + "x": -0.9238291721156244, + "y": -0.38280499049536953 + }, + { + "x": -0.7070242840083685, + "y": -0.7071892687410166 + }, + { + "x": -0.3825894288857221, + "y": -0.9239184644247007 + }, + { + "x": 0.00011666182324773967, + "y": -0.9999999931950094 + }, + { + "x": 0.38280499049536953, + "y": -0.9238291721156244 + }, + { + "x": 0.7071892687410166, + "y": -0.7070242840083685 + }, + { + "x": 0.9239184644247007, + "y": -0.3825894288857221 + }, + { + "x": 0.9999999931950094, + "y": 0.00011666182324773967 + }, + { + "max": { + "#": 6100 + }, + "min": { + "#": 6101 + } + }, + { + "x": 561.3575750069107, + "y": 857.8937555270679 + }, + { + "x": 530.0752432606921, + "y": 823.7073016890901 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 545.714606089201, + "y": 839.3466645175989 + }, + { + "x": 0, + "y": 0.9441608123191925 + }, + { + "x": 545.7091749171008, + "y": 836.4389361237213 + }, + { + "endCol": 11, + "endRow": 17, + "id": "11,11,17,17", + "startCol": 11, + "startRow": 17 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6110 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03471364840368096, + "y": 2.914393481763909 + }, + [ + { + "#": 6113 + }, + { + "#": 6114 + }, + { + "#": 6115 + }, + { + "#": 6116 + }, + { + "#": 6117 + }, + { + "#": 6118 + }, + { + "#": 6119 + }, + { + "#": 6120 + }, + { + "#": 6121 + }, + { + "#": 6122 + }, + { + "#": 6123 + }, + { + "#": 6124 + }, + { + "#": 6125 + }, + { + "#": 6126 + }, + { + "#": 6127 + }, + { + "#": 6128 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 561.3532430478456, + "y": 842.4594889706824 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 558.9715724918883, + "y": 848.2072111597662 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 554.572059326463, + "y": 852.6056979344705 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 548.8237815937769, + "y": 854.9860273461078 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 542.6017816361175, + "y": 854.9853014762435 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 536.8540594470337, + "y": 852.6036309202863 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 532.4555726723294, + "y": 848.2041177548609 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 530.0752432606921, + "y": 842.4558400221748 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 530.0759691305564, + "y": 836.2338400645154 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 532.4576396865136, + "y": 830.4861178754317 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 536.857152851939, + "y": 826.0876311007273 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 542.6054305846251, + "y": 823.7073016890901 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 548.8274305422844, + "y": 823.7080275589543 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 554.5751527313682, + "y": 826.0896981149116 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 558.9736395060726, + "y": 830.4892112803369 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 561.3539689177098, + "y": 836.237489013023 + }, + { + "angle": -0.0010030644134434987, + "anglePrev": -0.000006771698192760376, + "angularSpeed": 0.0009962927152507384, + "angularVelocity": -0.0009962927152507384, + "area": 844.5415139999999, + "axes": { + "#": 6130 + }, + "bounds": { + "#": 6140 + }, + "circleRadius": 16.56397890946502, + "collisionFilter": { + "#": 6143 + }, + "constraintImpulse": { + "#": 6144 + }, + "density": 0.001, + "force": { + "#": 6145 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": 454.10729029624963, + "inverseInertia": 0.002202122761225925, + "inverseMass": 1.1840744160268717, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8445415139999999, + "motion": 0, + "parent": null, + "position": { + "#": 6146 + }, + "positionImpulse": { + "#": 6147 + }, + "positionPrev": { + "#": 6148 + }, + "region": { + "#": 6149 + }, + "render": { + "#": 6150 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8978481400152662, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6152 + }, + "vertices": { + "#": 6153 + } + }, + [ + { + "#": 6131 + }, + { + "#": 6132 + }, + { + "#": 6133 + }, + { + "#": 6134 + }, + { + "#": 6135 + }, + { + "#": 6136 + }, + { + "#": 6137 + }, + { + "#": 6138 + }, + { + "#": 6139 + } + ], + { + "x": -0.9400699260240868, + "y": -0.34098172118908043 + }, + { + "x": -0.766681298338413, + "y": -0.6420278707175612 + }, + { + "x": -0.5008216432027012, + "y": -0.8655505078848641 + }, + { + "x": -0.17465406283024534, + "y": -0.9846298585442596 + }, + { + "x": 0.1726784183600148, + "y": -0.9849782555126197 + }, + { + "x": 0.49908423075116304, + "y": -0.8665534782201958 + }, + { + "x": 0.7653917658090401, + "y": -0.6435646392024033 + }, + { + "x": 0.9393839815426775, + "y": -0.3428669351527299 + }, + { + "x": 0.9999994969309334, + "y": -0.0010030642452399337 + }, + { + "max": { + "#": 6141 + }, + "min": { + "#": 6142 + } + }, + { + "x": 603.0110553303433, + "y": 862.3787640375328 + }, + { + "x": 570.3522124772122, + "y": 826.3530785729903 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.6961787236366, + "y": 842.9170702401542 + }, + { + "x": -0.19649217593703236, + "y": 1.1142424191023903 + }, + { + "x": 586.7252683633544, + "y": 840.0193681099395 + }, + { + "endCol": 12, + "endRow": 17, + "id": "11,12,17,17", + "startCol": 11, + "startRow": 17 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6151 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.029089639717782348, + "y": 2.897702130214738 + }, + [ + { + "#": 6154 + }, + { + "#": 6155 + }, + { + "#": 6156 + }, + { + "#": 6157 + }, + { + "#": 6158 + }, + { + "#": 6159 + }, + { + "#": 6160 + }, + { + "#": 6161 + }, + { + "#": 6162 + }, + { + "#": 6163 + }, + { + "#": 6164 + }, + { + "#": 6165 + }, + { + "#": 6166 + }, + { + "#": 6167 + }, + { + "#": 6168 + }, + { + "#": 6169 + }, + { + "#": 6170 + }, + { + "#": 6171 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 603.0110553303433, + "y": 845.7767068093591 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 601.04947888519, + "y": 851.1846771171383 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 597.3559012496681, + "y": 855.5953842316917 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 592.3767885687275, + "y": 858.476380050935 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 586.7127934797948, + "y": 859.4810619073181 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 581.0467942685001, + "y": 858.4877447688335 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 576.0619119620209, + "y": 855.6167434817298 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 572.3594933182414, + "y": 851.2134550303342 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 570.3870717424686, + "y": 845.8094307772959 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 570.38130211693, + "y": 840.0574336709493 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 572.3428785620833, + "y": 834.6494633631701 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 576.0364561976052, + "y": 830.2387562486167 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.0155688785458, + "y": 827.3577604293735 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.6795639674785, + "y": 826.3530785729903 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.3455631787732, + "y": 827.3463957114749 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 597.3304454852524, + "y": 830.2173969985786 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 601.0328641290319, + "y": 834.6206854499742 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 603.0052857048047, + "y": 840.0247097030125 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1656.262186, + "axes": { + "#": 6173 + }, + "bounds": { + "#": 6186 + }, + "circleRadius": 23.092656893004115, + "collisionFilter": { + "#": 6189 + }, + "constraintImpulse": { + "#": 6190 + }, + "density": 0.001, + "force": { + "#": 6191 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 125, + "inertia": 1746.424130354942, + "inverseInertia": 0.0005725985931016429, + "inverseMass": 0.6037691426229301, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.656262186, + "motion": 0, + "parent": null, + "position": { + "#": 6192 + }, + "positionImpulse": { + "#": 6193 + }, + "positionPrev": { + "#": 6194 + }, + "region": { + "#": 6195 + }, + "render": { + "#": 6196 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6198 + }, + "vertices": { + "#": 6199 + } + }, + [ + { + "#": 6174 + }, + { + "#": 6175 + }, + { + "#": 6176 + }, + { + "#": 6177 + }, + { + "#": 6178 + }, + { + "#": 6179 + }, + { + "#": 6180 + }, + { + "#": 6181 + }, + { + "#": 6182 + }, + { + "#": 6183 + }, + { + "#": 6184 + }, + { + "#": 6185 + } + ], + { + "x": -0.9659369456792598, + "y": -0.2587775434071173 + }, + { + "x": -0.8660502374236335, + "y": -0.4999569844081269 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.4999569844081269, + "y": -0.8660502374236335 + }, + { + "x": -0.2587775434071173, + "y": -0.9659369456792598 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2587775434071173, + "y": -0.9659369456792598 + }, + { + "x": 0.4999569844081269, + "y": -0.8660502374236335 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660502374236335, + "y": -0.4999569844081269 + }, + { + "x": 0.9659369456792598, + "y": -0.2587775434071173 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6187 + }, + "min": { + "#": 6188 + } + }, + { + "x": 145.79, + "y": 934.369754767027 + }, + { + "x": 100, + "y": 888.579754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 122.895, + "y": 911.474754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 122.895, + "y": 908.5674840519911 + }, + { + "endCol": 3, + "endRow": 19, + "id": "2,3,18,19", + "startCol": 2, + "startRow": 18 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6197 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6200 + }, + { + "#": 6201 + }, + { + "#": 6202 + }, + { + "#": 6203 + }, + { + "#": 6204 + }, + { + "#": 6205 + }, + { + "#": 6206 + }, + { + "#": 6207 + }, + { + "#": 6208 + }, + { + "#": 6209 + }, + { + "#": 6210 + }, + { + "#": 6211 + }, + { + "#": 6212 + }, + { + "#": 6213 + }, + { + "#": 6214 + }, + { + "#": 6215 + }, + { + "#": 6216 + }, + { + "#": 6217 + }, + { + "#": 6218 + }, + { + "#": 6219 + }, + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + }, + { + "#": 6223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 145.79, + "y": 914.488754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 144.23000000000002, + "y": 920.311754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 141.216, + "y": 925.532754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 136.95299999999997, + "y": 929.795754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 131.732, + "y": 932.809754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 125.90899999999999, + "y": 934.369754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 119.881, + "y": 934.369754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 114.05799999999999, + "y": 932.809754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.837, + "y": 929.795754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 104.574, + "y": 925.532754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 101.55999999999999, + "y": 920.311754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 914.488754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 908.460754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 101.55999999999999, + "y": 902.637754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 104.574, + "y": 897.416754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 108.837, + "y": 893.153754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 114.05799999999999, + "y": 890.139754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 119.881, + "y": 888.579754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 125.90899999999999, + "y": 888.579754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 131.732, + "y": 890.139754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 136.95299999999997, + "y": 893.153754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 141.216, + "y": 897.416754767027 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 144.23000000000002, + "y": 902.637754767027 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 145.79, + "y": 908.460754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2239.2235339999997, + "axes": { + "#": 6225 + }, + "bounds": { + "#": 6239 + }, + "circleRadius": 26.828125, + "collisionFilter": { + "#": 6242 + }, + "constraintImpulse": { + "#": 6243 + }, + "density": 0.001, + "force": { + "#": 6244 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 126, + "inertia": 3192.150135161649, + "inverseInertia": 0.00031326847349219696, + "inverseMass": 0.4465833735739936, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.2392235339999997, + "motion": 0, + "parent": null, + "position": { + "#": 6245 + }, + "positionImpulse": { + "#": 6246 + }, + "positionPrev": { + "#": 6247 + }, + "region": { + "#": 6248 + }, + "render": { + "#": 6249 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6251 + }, + "vertices": { + "#": 6252 + } + }, + [ + { + "#": 6226 + }, + { + "#": 6227 + }, + { + "#": 6228 + }, + { + "#": 6229 + }, + { + "#": 6230 + }, + { + "#": 6231 + }, + { + "#": 6232 + }, + { + "#": 6233 + }, + { + "#": 6234 + }, + { + "#": 6235 + }, + { + "#": 6236 + }, + { + "#": 6237 + }, + { + "#": 6238 + } + ], + { + "x": -0.9709286835003857, + "y": -0.23936894442723292 + }, + { + "x": -0.8854408499737555, + "y": -0.4647520857379272 + }, + { + "x": -0.7484916969532377, + "y": -0.6631441619980248 + }, + { + "x": -0.5681159217920753, + "y": -0.822948539950306 + }, + { + "x": -0.3546449133017613, + "y": -0.935001061747625 + }, + { + "x": -0.12045604938082696, + "y": -0.9927186611359553 + }, + { + "x": 0.12045604938082696, + "y": -0.9927186611359553 + }, + { + "x": 0.3546449133017613, + "y": -0.935001061747625 + }, + { + "x": 0.5681159217920753, + "y": -0.822948539950306 + }, + { + "x": 0.7484916969532377, + "y": -0.6631441619980248 + }, + { + "x": 0.8854408499737555, + "y": -0.4647520857379272 + }, + { + "x": 0.9709286835003857, + "y": -0.23936894442723292 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6240 + }, + "min": { + "#": 6241 + } + }, + { + "x": 209.056, + "y": 942.235754767027 + }, + { + "x": 155.79, + "y": 888.579754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 182.423, + "y": 915.407754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 182.423, + "y": 912.5004840519911 + }, + { + "endCol": 4, + "endRow": 19, + "id": "3,4,18,19", + "startCol": 3, + "startRow": 18 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6250 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6253 + }, + { + "#": 6254 + }, + { + "#": 6255 + }, + { + "#": 6256 + }, + { + "#": 6257 + }, + { + "#": 6258 + }, + { + "#": 6259 + }, + { + "#": 6260 + }, + { + "#": 6261 + }, + { + "#": 6262 + }, + { + "#": 6263 + }, + { + "#": 6264 + }, + { + "#": 6265 + }, + { + "#": 6266 + }, + { + "#": 6267 + }, + { + "#": 6268 + }, + { + "#": 6269 + }, + { + "#": 6270 + }, + { + "#": 6271 + }, + { + "#": 6272 + }, + { + "#": 6273 + }, + { + "#": 6274 + }, + { + "#": 6275 + }, + { + "#": 6276 + }, + { + "#": 6277 + }, + { + "#": 6278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 209.056, + "y": 918.641754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 207.508, + "y": 924.920754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 204.502, + "y": 930.647754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200.213, + "y": 935.488754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 194.891, + "y": 939.162754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 188.843, + "y": 941.456754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 182.423, + "y": 942.235754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 176.00300000000001, + "y": 941.456754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 169.955, + "y": 939.162754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 164.633, + "y": 935.488754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 160.344, + "y": 930.647754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 157.338, + "y": 924.920754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 155.79, + "y": 918.641754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 155.79, + "y": 912.1737547670269 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 157.338, + "y": 905.8947547670269 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 160.344, + "y": 900.167754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 164.633, + "y": 895.326754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 169.955, + "y": 891.652754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 176.00300000000001, + "y": 889.358754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 182.423, + "y": 888.579754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 188.843, + "y": 889.358754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 194.891, + "y": 891.652754767027 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 200.213, + "y": 895.326754767027 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 204.502, + "y": 900.167754767027 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 207.508, + "y": 905.8947547670269 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 209.056, + "y": 912.1737547670269 + }, + { + "angle": 0.000027666682017474823, + "anglePrev": -0.0002806317699452336, + "angularSpeed": 0.000027666682017474823, + "angularVelocity": -0.00009333197556289947, + "area": 873.4059279999999, + "axes": { + "#": 6280 + }, + "bounds": { + "#": 6290 + }, + "circleRadius": 16.84445730452675, + "collisionFilter": { + "#": 6293 + }, + "constraintImpulse": { + "#": 6294 + }, + "density": 0.001, + "force": { + "#": 6295 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": 485.6783448642292, + "inverseInertia": 0.002058975885119088, + "inverseMass": 1.144942996081886, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8734059279999999, + "motion": 0, + "parent": null, + "position": { + "#": 6296 + }, + "positionImpulse": { + "#": 6297 + }, + "positionPrev": { + "#": 6298 + }, + "region": { + "#": 6299 + }, + "render": { + "#": 6300 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9092102270003215, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6302 + }, + "vertices": { + "#": 6303 + } + }, + [ + { + "#": 6281 + }, + { + "#": 6282 + }, + { + "#": 6283 + }, + { + "#": 6284 + }, + { + "#": 6285 + }, + { + "#": 6286 + }, + { + "#": 6287 + }, + { + "#": 6288 + }, + { + "#": 6289 + } + ], + { + "x": -0.9396691120394898, + "y": -0.3420847261701651 + }, + { + "x": -0.7660135757937385, + "y": -0.6428243941386249 + }, + { + "x": -0.499994442705402, + "y": -0.8660286122661967 + }, + { + "x": -0.17348502217967873, + "y": -0.9848365077916824 + }, + { + "x": 0.17353951623106487, + "y": -0.9848269067741234 + }, + { + "x": 0.500042362216408, + "y": -0.866000944565902 + }, + { + "x": 0.7660491442572488, + "y": -0.6427820070465076 + }, + { + "x": 0.9396880392996334, + "y": -0.34203273059344846 + }, + { + "x": 0.9999999996172774, + "y": 0.000027666682013945267 + }, + { + "max": { + "#": 6291 + }, + "min": { + "#": 6292 + } + }, + { + "x": 253.3656181286678, + "y": 928.1559605301995 + }, + { + "x": 220.18606778610817, + "y": 891.5587506474446 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 236.77514870480408, + "y": 908.4027506409981 + }, + { + "x": 0.4013369598706749, + "y": 1.0585090465275924 + }, + { + "x": 236.7649506451669, + "y": 905.4964231367384 + }, + { + "endCol": 5, + "endRow": 19, + "id": "4,5,18,19", + "startCol": 4, + "startRow": 18 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6301 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00226533045213273, + "y": 2.9108498508063576 + }, + [ + { + "#": 6304 + }, + { + "#": 6305 + }, + { + "#": 6306 + }, + { + "#": 6307 + }, + { + "#": 6308 + }, + { + "#": 6309 + }, + { + "#": 6310 + }, + { + "#": 6311 + }, + { + "#": 6312 + }, + { + "#": 6313 + }, + { + "#": 6314 + }, + { + "#": 6315 + }, + { + "#": 6316 + }, + { + "#": 6317 + }, + { + "#": 6318 + }, + { + "#": 6319 + }, + { + "#": 6320 + }, + { + "#": 6321 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 253.3640677734102, + "y": 911.3282096024665 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 251.36291569042498, + "y": 916.825154239332 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 247.60179168979565, + "y": 921.3070501832256 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 242.53571076668962, + "y": 924.231910022695 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 236.77468268721225, + "y": 925.2467506345515 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 231.01371077109934, + "y": 924.2315912471848 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 225.9477916980831, + "y": 921.3064510888933 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 222.18691570159132, + "y": 916.8243470362175 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.18606778610817, + "y": 911.3272916772906 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 220.18622963619796, + "y": 905.4772916795297 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 222.18738171918318, + "y": 899.9803470426641 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 225.94850571981252, + "y": 895.4984510987706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 231.01458664291854, + "y": 892.5735912593011 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 236.77561472239591, + "y": 891.5587506474446 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 242.53658663850882, + "y": 892.5739100348113 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 247.60250571152505, + "y": 895.4990501931029 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 251.36338170801685, + "y": 899.9811542457786 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 253.3642296235, + "y": 905.4782096047055 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2211.257872, + "axes": { + "#": 6323 + }, + "bounds": { + "#": 6337 + }, + "circleRadius": 26.66017232510288, + "collisionFilter": { + "#": 6340 + }, + "constraintImpulse": { + "#": 6341 + }, + "density": 0.001, + "force": { + "#": 6342 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 128, + "inertia": 3112.9145076000996, + "inverseInertia": 0.0003212423590684955, + "inverseMass": 0.45223129001030415, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.211257872, + "motion": 0, + "parent": null, + "position": { + "#": 6343 + }, + "positionImpulse": { + "#": 6344 + }, + "positionPrev": { + "#": 6345 + }, + "region": { + "#": 6346 + }, + "render": { + "#": 6347 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6349 + }, + "vertices": { + "#": 6350 + } + }, + [ + { + "#": 6324 + }, + { + "#": 6325 + }, + { + "#": 6326 + }, + { + "#": 6327 + }, + { + "#": 6328 + }, + { + "#": 6329 + }, + { + "#": 6330 + }, + { + "#": 6331 + }, + { + "#": 6332 + }, + { + "#": 6333 + }, + { + "#": 6334 + }, + { + "#": 6335 + }, + { + "#": 6336 + } + ], + { + "x": -0.9709426079703678, + "y": -0.23931245690038877 + }, + { + "x": -0.8854475241297156, + "y": -0.4647393699833883 + }, + { + "x": -0.748455766509334, + "y": -0.663184714524487 + }, + { + "x": -0.5680928736896659, + "y": -0.8229644505463267 + }, + { + "x": -0.3545651221465421, + "y": -0.935031322554067 + }, + { + "x": -0.12058693531691808, + "y": -0.9927027707379855 + }, + { + "x": 0.12058693531691808, + "y": -0.9927027707379855 + }, + { + "x": 0.3545651221465421, + "y": -0.935031322554067 + }, + { + "x": 0.5680928736896659, + "y": -0.8229644505463267 + }, + { + "x": 0.748455766509334, + "y": -0.663184714524487 + }, + { + "x": 0.8854475241297156, + "y": -0.4647393699833883 + }, + { + "x": 0.9709426079703678, + "y": -0.23931245690038877 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6338 + }, + "min": { + "#": 6339 + } + }, + { + "x": 308.4053461267818, + "y": 958.092929372633 + }, + { + "x": 255.4733461267818, + "y": 904.772929372633 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 281.9393461267818, + "y": 931.432929372633 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 281.9393461267818, + "y": 928.5256586575971 + }, + { + "endCol": 6, + "endRow": 19, + "id": "5,6,18,19", + "startCol": 5, + "startRow": 18 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6348 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150359065 + }, + [ + { + "#": 6351 + }, + { + "#": 6352 + }, + { + "#": 6353 + }, + { + "#": 6354 + }, + { + "#": 6355 + }, + { + "#": 6356 + }, + { + "#": 6357 + }, + { + "#": 6358 + }, + { + "#": 6359 + }, + { + "#": 6360 + }, + { + "#": 6361 + }, + { + "#": 6362 + }, + { + "#": 6363 + }, + { + "#": 6364 + }, + { + "#": 6365 + }, + { + "#": 6366 + }, + { + "#": 6367 + }, + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + }, + { + "#": 6371 + }, + { + "#": 6372 + }, + { + "#": 6373 + }, + { + "#": 6374 + }, + { + "#": 6375 + }, + { + "#": 6376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.4053461267818, + "y": 934.646929372633 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.8673461267818, + "y": 940.886929372633 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.8803461267818, + "y": 946.577929372633 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 299.6183461267818, + "y": 951.387929372633 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 294.3293461267818, + "y": 955.038929372633 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 288.3193461267818, + "y": 957.317929372633 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.9393461267818, + "y": 958.092929372633 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 275.5593461267818, + "y": 957.317929372633 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 269.5493461267818, + "y": 955.038929372633 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 264.2603461267818, + "y": 951.387929372633 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 259.99834612678177, + "y": 946.577929372633 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 257.0113461267818, + "y": 940.886929372633 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 255.4733461267818, + "y": 934.646929372633 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 255.4733461267818, + "y": 928.2189293726329 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 257.0113461267818, + "y": 921.978929372633 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 259.99834612678177, + "y": 916.287929372633 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 264.2603461267818, + "y": 911.477929372633 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 269.5493461267818, + "y": 907.826929372633 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 275.5593461267818, + "y": 905.547929372633 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 281.9393461267818, + "y": 904.772929372633 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 288.3193461267818, + "y": 905.547929372633 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 294.3293461267818, + "y": 907.826929372633 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 299.6183461267818, + "y": 911.477929372633 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 303.8803461267818, + "y": 916.287929372633 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 306.8673461267818, + "y": 921.978929372633 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 308.4053461267818, + "y": 928.2189293726329 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2087.7602780000007, + "axes": { + "#": 6378 + }, + "bounds": { + "#": 6392 + }, + "circleRadius": 25.904899691358025, + "collisionFilter": { + "#": 6395 + }, + "constraintImpulse": { + "#": 6396 + }, + "density": 0.001, + "force": { + "#": 6397 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 129, + "inertia": 2774.914907983639, + "inverseInertia": 0.00036037141071350504, + "inverseMass": 0.47898219471728054, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.0877602780000006, + "motion": 0, + "parent": null, + "position": { + "#": 6398 + }, + "positionImpulse": { + "#": 6399 + }, + "positionPrev": { + "#": 6400 + }, + "region": { + "#": 6401 + }, + "render": { + "#": 6402 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6404 + }, + "vertices": { + "#": 6405 + } + }, + [ + { + "#": 6379 + }, + { + "#": 6380 + }, + { + "#": 6381 + }, + { + "#": 6382 + }, + { + "#": 6383 + }, + { + "#": 6384 + }, + { + "#": 6385 + }, + { + "#": 6386 + }, + { + "#": 6387 + }, + { + "#": 6388 + }, + { + "#": 6389 + }, + { + "#": 6390 + }, + { + "#": 6391 + } + ], + { + "x": -0.9709656897513776, + "y": -0.23921878965840337 + }, + { + "x": -0.885414376231309, + "y": -0.46480251974674364 + }, + { + "x": -0.748495062942329, + "y": -0.6631403627822384 + }, + { + "x": -0.5681519894635099, + "y": -0.8229236397556311 + }, + { + "x": -0.35449012118282963, + "y": -0.9350597595789174 + }, + { + "x": -0.12058483282429677, + "y": -0.9927030261325572 + }, + { + "x": 0.12058483282429677, + "y": -0.9927030261325572 + }, + { + "x": 0.35449012118282963, + "y": -0.9350597595789174 + }, + { + "x": 0.5681519894635099, + "y": -0.8229236397556311 + }, + { + "x": 0.748495062942329, + "y": -0.6631403627822384 + }, + { + "x": 0.885414376231309, + "y": -0.46480251974674364 + }, + { + "x": 0.9709656897513776, + "y": -0.23921878965840337 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6393 + }, + "min": { + "#": 6394 + } + }, + { + "x": 380.8175650382134, + "y": 947.0354120510063 + }, + { + "x": 329.3855650382134, + "y": 892.3181413359705 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355.1015650382134, + "y": 918.2231413359705 + }, + { + "x": 0.88541692605133, + "y": 0.7844483292209148 + }, + { + "x": 355.1015650382134, + "y": 915.3158706209346 + }, + { + "endCol": 7, + "endRow": 19, + "id": "6,7,18,19", + "startCol": 6, + "startRow": 18 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6403 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6406 + }, + { + "#": 6407 + }, + { + "#": 6408 + }, + { + "#": 6409 + }, + { + "#": 6410 + }, + { + "#": 6411 + }, + { + "#": 6412 + }, + { + "#": 6413 + }, + { + "#": 6414 + }, + { + "#": 6415 + }, + { + "#": 6416 + }, + { + "#": 6417 + }, + { + "#": 6418 + }, + { + "#": 6419 + }, + { + "#": 6420 + }, + { + "#": 6421 + }, + { + "#": 6422 + }, + { + "#": 6423 + }, + { + "#": 6424 + }, + { + "#": 6425 + }, + { + "#": 6426 + }, + { + "#": 6427 + }, + { + "#": 6428 + }, + { + "#": 6429 + }, + { + "#": 6430 + }, + { + "#": 6431 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380.8175650382134, + "y": 921.3451413359704 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 379.32356503821336, + "y": 927.4091413359705 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 376.42056503821345, + "y": 932.9391413359705 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 372.2795650382134, + "y": 937.6131413359705 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 367.14056503821337, + "y": 941.1611413359705 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.30056503821345, + "y": 943.3751413359705 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 355.1015650382134, + "y": 944.1281413359704 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 348.9025650382134, + "y": 943.3751413359705 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 343.0625650382134, + "y": 941.1611413359705 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 337.9235650382134, + "y": 937.6131413359705 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 333.7825650382134, + "y": 932.9391413359705 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 330.8795650382134, + "y": 927.4091413359705 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 329.3855650382134, + "y": 921.3451413359704 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 329.3855650382134, + "y": 915.1011413359705 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 330.8795650382134, + "y": 909.0371413359704 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 333.7825650382134, + "y": 903.5071413359705 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 337.9235650382134, + "y": 898.8331413359705 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 343.0625650382134, + "y": 895.2851413359705 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 348.9025650382134, + "y": 893.0711413359704 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 355.1015650382134, + "y": 892.3181413359705 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 361.30056503821345, + "y": 893.0711413359704 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 367.14056503821337, + "y": 895.2851413359705 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 372.2795650382134, + "y": 898.8331413359705 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 376.42056503821345, + "y": 903.5071413359705 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 379.32356503821336, + "y": 909.0371413359704 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 380.8175650382134, + "y": 915.1011413359705 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 888.132012, + "axes": { + "#": 6433 + }, + "bounds": { + "#": 6443 + }, + "circleRadius": 16.986046810699587, + "collisionFilter": { + "#": 6446 + }, + "constraintImpulse": { + "#": 6447 + }, + "density": 0.001, + "force": { + "#": 6448 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": 502.19399774347886, + "inverseInertia": 0.0019912623497957476, + "inverseMass": 1.1259587386655308, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.888132012, + "motion": 0, + "parent": null, + "position": { + "#": 6449 + }, + "positionImpulse": { + "#": 6450 + }, + "positionPrev": { + "#": 6451 + }, + "region": { + "#": 6452 + }, + "render": { + "#": 6453 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6455 + }, + "vertices": { + "#": 6456 + } + }, + [ + { + "#": 6434 + }, + { + "#": 6435 + }, + { + "#": 6436 + }, + { + "#": 6437 + }, + { + "#": 6438 + }, + { + "#": 6439 + }, + { + "#": 6440 + }, + { + "#": 6441 + }, + { + "#": 6442 + } + ], + { + "x": -0.9396646680443769, + "y": -0.3420969330892212 + }, + { + "x": -0.7660353643369744, + "y": -0.6427984292024359 + }, + { + "x": -0.5001137705057033, + "y": -0.8659597083875026 + }, + { + "x": -0.17357259603329547, + "y": -0.9848210771029743 + }, + { + "x": 0.17357259603329547, + "y": -0.9848210771029743 + }, + { + "x": 0.5001137705057033, + "y": -0.8659597083875026 + }, + { + "x": 0.7660353643369744, + "y": -0.6427984292024359 + }, + { + "x": 0.9396646680443769, + "y": -0.3420969330892212 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6444 + }, + "min": { + "#": 6445 + } + }, + { + "x": 420.0540000000001, + "y": 922.551754767027 + }, + { + "x": 386.59800000000007, + "y": 888.579754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.3260000000001, + "y": 905.565754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.3260000000001, + "y": 902.6584840519911 + }, + { + "endCol": 8, + "endRow": 19, + "id": "8,8,18,19", + "startCol": 8, + "startRow": 18 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6454 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6457 + }, + { + "#": 6458 + }, + { + "#": 6459 + }, + { + "#": 6460 + }, + { + "#": 6461 + }, + { + "#": 6462 + }, + { + "#": 6463 + }, + { + "#": 6464 + }, + { + "#": 6465 + }, + { + "#": 6466 + }, + { + "#": 6467 + }, + { + "#": 6468 + }, + { + "#": 6469 + }, + { + "#": 6470 + }, + { + "#": 6471 + }, + { + "#": 6472 + }, + { + "#": 6473 + }, + { + "#": 6474 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420.0540000000001, + "y": 908.515754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 418.03600000000006, + "y": 914.058754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 414.2440000000001, + "y": 918.5777547670269 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 409.1360000000001, + "y": 921.527754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 403.3260000000001, + "y": 922.551754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 397.5160000000001, + "y": 921.527754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 392.4080000000001, + "y": 918.5777547670269 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 388.6160000000001, + "y": 914.058754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 386.59800000000007, + "y": 908.515754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 386.59800000000007, + "y": 902.6157547670269 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 388.6160000000001, + "y": 897.0727547670269 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 392.4080000000001, + "y": 892.553754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 397.5160000000001, + "y": 889.603754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 403.3260000000001, + "y": 888.579754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 409.1360000000001, + "y": 889.603754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 414.2440000000001, + "y": 892.553754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 418.03600000000006, + "y": 897.0727547670269 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 420.0540000000001, + "y": 902.6157547670269 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1466.7791880000002, + "axes": { + "#": 6476 + }, + "bounds": { + "#": 6488 + }, + "circleRadius": 21.75546553497942, + "collisionFilter": { + "#": 6491 + }, + "constraintImpulse": { + "#": 6492 + }, + "density": 0.001, + "force": { + "#": 6493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 131, + "inertia": 1369.701119864889, + "inverseInertia": 0.0007300862834211909, + "inverseMass": 0.6817658773598578, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4667791880000003, + "motion": 0, + "parent": null, + "position": { + "#": 6494 + }, + "positionImpulse": { + "#": 6495 + }, + "positionPrev": { + "#": 6496 + }, + "region": { + "#": 6497 + }, + "render": { + "#": 6498 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6500 + }, + "vertices": { + "#": 6501 + } + }, + [ + { + "#": 6477 + }, + { + "#": 6478 + }, + { + "#": 6479 + }, + { + "#": 6480 + }, + { + "#": 6481 + }, + { + "#": 6482 + }, + { + "#": 6483 + }, + { + "#": 6484 + }, + { + "#": 6485 + }, + { + "#": 6486 + }, + { + "#": 6487 + } + ], + { + "x": -0.9594811271190482, + "y": -0.2817728991623589 + }, + { + "x": -0.8412991486989921, + "y": -0.5405698311951483 + }, + { + "x": -0.6548383126065617, + "y": -0.7557690019725546 + }, + { + "x": -0.4153475465770035, + "y": -0.9096628032147208 + }, + { + "x": -0.14228047679615582, + "y": -0.9898263817067409 + }, + { + "x": 0.14228047679615582, + "y": -0.9898263817067409 + }, + { + "x": 0.4153475465770035, + "y": -0.9096628032147208 + }, + { + "x": 0.6548383126065617, + "y": -0.7557690019725546 + }, + { + "x": 0.8412991486989921, + "y": -0.5405698311951483 + }, + { + "x": 0.9594811271190482, + "y": -0.2817728991623589 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6489 + }, + "min": { + "#": 6490 + } + }, + { + "x": 473.12200000000007, + "y": 932.089754767027 + }, + { + "x": 430.0540000000001, + "y": 888.579754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451.5880000000001, + "y": 910.334754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451.5880000000001, + "y": 907.4274840519911 + }, + { + "endCol": 9, + "endRow": 19, + "id": "8,9,18,19", + "startCol": 8, + "startRow": 18 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6499 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6502 + }, + { + "#": 6503 + }, + { + "#": 6504 + }, + { + "#": 6505 + }, + { + "#": 6506 + }, + { + "#": 6507 + }, + { + "#": 6508 + }, + { + "#": 6509 + }, + { + "#": 6510 + }, + { + "#": 6511 + }, + { + "#": 6512 + }, + { + "#": 6513 + }, + { + "#": 6514 + }, + { + "#": 6515 + }, + { + "#": 6516 + }, + { + "#": 6517 + }, + { + "#": 6518 + }, + { + "#": 6519 + }, + { + "#": 6520 + }, + { + "#": 6521 + }, + { + "#": 6522 + }, + { + "#": 6523 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 473.12200000000007, + "y": 913.430754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 471.37700000000007, + "y": 919.372754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 468.0300000000001, + "y": 924.581754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 463.3500000000001, + "y": 928.636754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 457.7170000000001, + "y": 931.208754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 451.5880000000001, + "y": 932.089754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.45900000000006, + "y": 931.208754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 439.8260000000001, + "y": 928.636754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 435.1460000000001, + "y": 924.581754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 431.7990000000001, + "y": 919.372754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 430.0540000000001, + "y": 913.430754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 430.0540000000001, + "y": 907.238754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 431.7990000000001, + "y": 901.296754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 435.1460000000001, + "y": 896.087754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 439.8260000000001, + "y": 892.032754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 445.45900000000006, + "y": 889.460754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 451.5880000000001, + "y": 888.579754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.7170000000001, + "y": 889.460754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 463.3500000000001, + "y": 892.032754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 468.0300000000001, + "y": 896.087754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 471.37700000000007, + "y": 901.296754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 473.12200000000007, + "y": 907.238754767027 + }, + { + "angle": -0.00001490285098272801, + "anglePrev": -0.00000998507574008577, + "angularSpeed": 0.000004917775242642242, + "angularVelocity": -0.000004917775242642242, + "area": 1020.8739640000001, + "axes": { + "#": 6525 + }, + "bounds": { + "#": 6536 + }, + "circleRadius": 18.176118827160494, + "collisionFilter": { + "#": 6539 + }, + "constraintImpulse": { + "#": 6540 + }, + "density": 0.001, + "force": { + "#": 6541 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 132, + "inertia": 663.511049477857, + "inverseInertia": 0.0015071339064917449, + "inverseMass": 0.9795528490919568, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0208739640000002, + "motion": 0, + "parent": null, + "position": { + "#": 6542 + }, + "positionImpulse": { + "#": 6543 + }, + "positionPrev": { + "#": 6544 + }, + "region": { + "#": 6545 + }, + "render": { + "#": 6546 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907498180149676, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6548 + }, + "vertices": { + "#": 6549 + } + }, + [ + { + "#": 6526 + }, + { + "#": 6527 + }, + { + "#": 6528 + }, + { + "#": 6529 + }, + { + "#": 6530 + }, + { + "#": 6531 + }, + { + "#": 6532 + }, + { + "#": 6533 + }, + { + "#": 6534 + }, + { + "#": 6535 + } + ], + { + "x": -0.9510864712553813, + "y": -0.3089247872783717 + }, + { + "x": -0.8089501208792761, + "y": -0.5878772847537187 + }, + { + "x": -0.5879013958187939, + "y": -0.8089325984248095 + }, + { + "x": -0.3089531349410518, + "y": -0.95107726311278 + }, + { + "x": -0.000014902850982176372, + "y": -0.9999999998889525 + }, + { + "x": 0.3089247872783717, + "y": -0.9510864712553813 + }, + { + "x": 0.5878772847537187, + "y": -0.8089501208792761 + }, + { + "x": 0.8089325984248095, + "y": -0.5879013958187939 + }, + { + "x": 0.95107726311278, + "y": -0.3089531349410518 + }, + { + "x": 0.9999999998889525, + "y": -0.000014902850982176372 + }, + { + "max": { + "#": 6537 + }, + "min": { + "#": 6538 + } + }, + { + "x": 516.263023636897, + "y": 946.6051757554998 + }, + { + "x": 480.3587801073084, + "y": 907.793592846063 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 498.3109812700853, + "y": 925.7456352128747 + }, + { + "x": -0.3833114382317668, + "y": 2.665895357059373 + }, + { + "x": 498.3111400660503, + "y": 922.8381370370614 + }, + { + "endCol": 10, + "endRow": 19, + "id": "10,10,18,19", + "startCol": 10, + "startRow": 18 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6547 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00015879596502372807, + "y": 2.9074981758132745 + }, + [ + { + "#": 6550 + }, + { + "#": 6551 + }, + { + "#": 6552 + }, + { + "#": 6553 + }, + { + "#": 6554 + }, + { + "#": 6555 + }, + { + "#": 6556 + }, + { + "#": 6557 + }, + { + "#": 6558 + }, + { + "#": 6559 + }, + { + "#": 6560 + }, + { + "#": 6561 + }, + { + "#": 6562 + }, + { + "#": 6563 + }, + { + "#": 6564 + }, + { + "#": 6565 + }, + { + "#": 6566 + }, + { + "#": 6567 + }, + { + "#": 6568 + }, + { + "#": 6569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 516.263023636897, + "y": 928.5883676765782 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 514.5061042466131, + "y": 933.9973938602866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 511.1631728000989, + "y": 938.5974436800067 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.5632226208406, + "y": 941.94051223275 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 501.15424880575046, + "y": 943.6975928420759 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 495.4682488063818, + "y": 943.6976775796865 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 490.0592226226733, + "y": 941.9407581894027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 485.4591728029533, + "y": 938.5978267428883 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 482.11610425021, + "y": 933.99787656363 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 480.3590236408841, + "y": 928.5889027485399 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 480.35893890327344, + "y": 922.9029027491713 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 482.1158582935574, + "y": 917.4938765654629 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 485.4587897400716, + "y": 912.8938267457428 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 490.05873991933, + "y": 909.5507581929994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 495.4677137344201, + "y": 907.7936775836736 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 501.1537137337888, + "y": 907.793592846063 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 506.56273991749725, + "y": 909.5505122363468 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 511.1627897372173, + "y": 912.8934436828612 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 514.5058582899604, + "y": 917.4933938621194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 516.2629388992864, + "y": 922.9023676772096 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1498.420516, + "axes": { + "#": 6571 + }, + "bounds": { + "#": 6583 + }, + "circleRadius": 21.98874742798354, + "collisionFilter": { + "#": 6586 + }, + "constraintImpulse": { + "#": 6587 + }, + "density": 0.001, + "force": { + "#": 6588 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": 1429.4328342080482, + "inverseInertia": 0.0006995781655974289, + "inverseMass": 0.6673693995257604, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.498420516, + "motion": 0, + "parent": null, + "position": { + "#": 6589 + }, + "positionImpulse": { + "#": 6590 + }, + "positionPrev": { + "#": 6591 + }, + "region": { + "#": 6592 + }, + "render": { + "#": 6593 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6595 + }, + "vertices": { + "#": 6596 + } + }, + [ + { + "#": 6572 + }, + { + "#": 6573 + }, + { + "#": 6574 + }, + { + "#": 6575 + }, + { + "#": 6576 + }, + { + "#": 6577 + }, + { + "#": 6578 + }, + { + "#": 6579 + }, + { + "#": 6580 + }, + { + "#": 6581 + }, + { + "#": 6582 + } + ], + { + "x": -0.9595027817059244, + "y": -0.28169915139842566 + }, + { + "x": -0.8412718937722633, + "y": -0.5406122462068628 + }, + { + "x": -0.6548088643782468, + "y": -0.7557945164736715 + }, + { + "x": -0.41542744234917584, + "y": -0.9096263189591769 + }, + { + "x": -0.14236077781981005, + "y": -0.9898148356831892 + }, + { + "x": 0.14236077781981005, + "y": -0.9898148356831892 + }, + { + "x": 0.41542744234917584, + "y": -0.9096263189591769 + }, + { + "x": 0.6548088643782468, + "y": -0.7557945164736715 + }, + { + "x": 0.8412718937722633, + "y": -0.5406122462068628 + }, + { + "x": 0.9595027817059244, + "y": -0.28169915139842566 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6584 + }, + "min": { + "#": 6585 + } + }, + { + "x": 572.556, + "y": 932.5577547670271 + }, + { + "x": 529.0260000000001, + "y": 888.579754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.791, + "y": 910.568754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.791, + "y": 907.6614840519911 + }, + { + "endCol": 11, + "endRow": 19, + "id": "11,11,18,19", + "startCol": 11, + "startRow": 18 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6594 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6597 + }, + { + "#": 6598 + }, + { + "#": 6599 + }, + { + "#": 6600 + }, + { + "#": 6601 + }, + { + "#": 6602 + }, + { + "#": 6603 + }, + { + "#": 6604 + }, + { + "#": 6605 + }, + { + "#": 6606 + }, + { + "#": 6607 + }, + { + "#": 6608 + }, + { + "#": 6609 + }, + { + "#": 6610 + }, + { + "#": 6611 + }, + { + "#": 6612 + }, + { + "#": 6613 + }, + { + "#": 6614 + }, + { + "#": 6615 + }, + { + "#": 6616 + }, + { + "#": 6617 + }, + { + "#": 6618 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 572.556, + "y": 913.697754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 570.793, + "y": 919.702754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.4090000000001, + "y": 924.968754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 562.6790000000001, + "y": 929.0667547670271 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 556.9860000000001, + "y": 931.666754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 550.791, + "y": 932.5577547670271 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 544.596, + "y": 931.666754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 538.903, + "y": 929.0667547670271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 534.173, + "y": 924.968754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 530.789, + "y": 919.702754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 529.0260000000001, + "y": 913.697754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 529.0260000000001, + "y": 907.439754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 530.789, + "y": 901.434754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 534.173, + "y": 896.168754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 538.903, + "y": 892.070754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 544.596, + "y": 889.4707547670271 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 550.791, + "y": 888.579754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 556.9860000000001, + "y": 889.4707547670271 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 562.6790000000001, + "y": 892.070754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 567.4090000000001, + "y": 896.168754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 570.793, + "y": 901.434754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 572.556, + "y": 907.439754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2505.505032, + "axes": { + "#": 6620 + }, + "bounds": { + "#": 6634 + }, + "circleRadius": 28.378536522633745, + "collisionFilter": { + "#": 6637 + }, + "constraintImpulse": { + "#": 6638 + }, + "density": 0.001, + "force": { + "#": 6639 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 134, + "inertia": 3996.4921843040015, + "inverseInertia": 0.00025021943091179907, + "inverseMass": 0.3991211301626314, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.5055050320000003, + "motion": 0, + "parent": null, + "position": { + "#": 6640 + }, + "positionImpulse": { + "#": 6641 + }, + "positionPrev": { + "#": 6642 + }, + "region": { + "#": 6643 + }, + "render": { + "#": 6644 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6646 + }, + "vertices": { + "#": 6647 + } + }, + [ + { + "#": 6621 + }, + { + "#": 6622 + }, + { + "#": 6623 + }, + { + "#": 6624 + }, + { + "#": 6625 + }, + { + "#": 6626 + }, + { + "#": 6627 + }, + { + "#": 6628 + }, + { + "#": 6629 + }, + { + "#": 6630 + }, + { + "#": 6631 + }, + { + "#": 6632 + }, + { + "#": 6633 + } + ], + { + "x": -0.9709114428121552, + "y": -0.2394388653005588 + }, + { + "x": -0.8854851153219822, + "y": -0.4646677420945165 + }, + { + "x": -0.7484969721157183, + "y": -0.663138207867411 + }, + { + "x": -0.5680540130587589, + "y": -0.822991274709422 + }, + { + "x": -0.3545969524696042, + "y": -0.9350192518334953 + }, + { + "x": -0.12059766028596937, + "y": -0.9927014678812306 + }, + { + "x": 0.12059766028596937, + "y": -0.9927014678812306 + }, + { + "x": 0.3545969524696042, + "y": -0.9350192518334953 + }, + { + "x": 0.5680540130587589, + "y": -0.822991274709422 + }, + { + "x": 0.7484969721157183, + "y": -0.663138207867411 + }, + { + "x": 0.8854851153219822, + "y": -0.4646677420945165 + }, + { + "x": 0.9709114428121552, + "y": -0.2394388653005588 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6635 + }, + "min": { + "#": 6636 + } + }, + { + "x": 638.9000000000001, + "y": 945.337754767027 + }, + { + "x": 582.556, + "y": 888.579754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 610.7280000000001, + "y": 916.958754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 610.7280000000001, + "y": 914.0514840519911 + }, + { + "endCol": 13, + "endRow": 19, + "id": "12,13,18,19", + "startCol": 12, + "startRow": 18 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6645 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6648 + }, + { + "#": 6649 + }, + { + "#": 6650 + }, + { + "#": 6651 + }, + { + "#": 6652 + }, + { + "#": 6653 + }, + { + "#": 6654 + }, + { + "#": 6655 + }, + { + "#": 6656 + }, + { + "#": 6657 + }, + { + "#": 6658 + }, + { + "#": 6659 + }, + { + "#": 6660 + }, + { + "#": 6661 + }, + { + "#": 6662 + }, + { + "#": 6663 + }, + { + "#": 6664 + }, + { + "#": 6665 + }, + { + "#": 6666 + }, + { + "#": 6667 + }, + { + "#": 6668 + }, + { + "#": 6669 + }, + { + "#": 6670 + }, + { + "#": 6671 + }, + { + "#": 6672 + }, + { + "#": 6673 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.9000000000001, + "y": 920.3797547670271 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 637.2620000000001, + "y": 927.021754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 634.0830000000001, + "y": 933.079754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 629.546, + "y": 938.200754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 623.916, + "y": 942.0867547670271 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 617.5190000000001, + "y": 944.512754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 610.7280000000001, + "y": 945.337754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 603.937, + "y": 944.512754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 597.5400000000001, + "y": 942.0867547670271 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 591.9100000000001, + "y": 938.200754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 587.373, + "y": 933.079754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 584.1940000000001, + "y": 927.021754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 582.556, + "y": 920.3797547670271 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 582.556, + "y": 913.537754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 584.1940000000001, + "y": 906.895754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 587.373, + "y": 900.837754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 591.9100000000001, + "y": 895.716754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 597.5400000000001, + "y": 891.830754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 603.937, + "y": 889.404754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 610.7280000000001, + "y": 888.579754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 617.5190000000001, + "y": 889.404754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 623.916, + "y": 891.830754767027 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 629.546, + "y": 895.716754767027 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 634.0830000000001, + "y": 900.837754767027 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 637.2620000000001, + "y": 906.895754767027 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 638.9000000000001, + "y": 913.537754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1735.9463039999998, + "axes": { + "#": 6675 + }, + "bounds": { + "#": 6688 + }, + "circleRadius": 23.641782407407405, + "collisionFilter": { + "#": 6691 + }, + "constraintImpulse": { + "#": 6692 + }, + "density": 0.001, + "force": { + "#": 6693 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 135, + "inertia": 1918.5102571158823, + "inverseInertia": 0.0005212377657564944, + "inverseMass": 0.5760546842352101, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7359463039999998, + "motion": 0, + "parent": null, + "position": { + "#": 6694 + }, + "positionImpulse": { + "#": 6695 + }, + "positionPrev": { + "#": 6696 + }, + "region": { + "#": 6697 + }, + "render": { + "#": 6698 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6700 + }, + "vertices": { + "#": 6701 + } + }, + [ + { + "#": 6676 + }, + { + "#": 6677 + }, + { + "#": 6678 + }, + { + "#": 6679 + }, + { + "#": 6680 + }, + { + "#": 6681 + }, + { + "#": 6682 + }, + { + "#": 6683 + }, + { + "#": 6684 + }, + { + "#": 6685 + }, + { + "#": 6686 + }, + { + "#": 6687 + } + ], + { + "x": -0.9658952408079529, + "y": -0.2589331647057727 + }, + { + "x": -0.8660209970018438, + "y": -0.5000076326936743 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.5000076326936743, + "y": -0.8660209970018438 + }, + { + "x": -0.2589331647057727, + "y": -0.9658952408079529 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2589331647057727, + "y": -0.9658952408079529 + }, + { + "x": 0.5000076326936743, + "y": -0.8660209970018438 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8660209970018438, + "y": -0.5000076326936743 + }, + { + "x": 0.9658952408079529, + "y": -0.2589331647057727 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6689 + }, + "min": { + "#": 6690 + } + }, + { + "x": 146.88, + "y": 1002.2177547670271 + }, + { + "x": 100, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.44, + "y": 978.7777547670271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.44, + "y": 975.8704840519912 + }, + { + "endCol": 3, + "endRow": 20, + "id": "2,3,19,20", + "startCol": 2, + "startRow": 19 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6699 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6702 + }, + { + "#": 6703 + }, + { + "#": 6704 + }, + { + "#": 6705 + }, + { + "#": 6706 + }, + { + "#": 6707 + }, + { + "#": 6708 + }, + { + "#": 6709 + }, + { + "#": 6710 + }, + { + "#": 6711 + }, + { + "#": 6712 + }, + { + "#": 6713 + }, + { + "#": 6714 + }, + { + "#": 6715 + }, + { + "#": 6716 + }, + { + "#": 6717 + }, + { + "#": 6718 + }, + { + "#": 6719 + }, + { + "#": 6720 + }, + { + "#": 6721 + }, + { + "#": 6722 + }, + { + "#": 6723 + }, + { + "#": 6724 + }, + { + "#": 6725 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 146.88, + "y": 981.8637547670271 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 145.28199999999998, + "y": 987.8247547670271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 142.196, + "y": 993.1697547670271 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 137.832, + "y": 997.5337547670271 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 132.487, + "y": 1000.6197547670271 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 126.526, + "y": 1002.2177547670271 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 120.354, + "y": 1002.2177547670271 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 114.393, + "y": 1000.6197547670271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 109.048, + "y": 997.5337547670271 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 104.684, + "y": 993.1697547670271 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 101.598, + "y": 987.8247547670271 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 100, + "y": 981.8637547670271 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 975.6917547670271 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 101.598, + "y": 969.7307547670271 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 104.684, + "y": 964.385754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 109.048, + "y": 960.0217547670271 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 114.393, + "y": 956.9357547670271 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 120.354, + "y": 955.337754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 126.526, + "y": 955.337754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 132.487, + "y": 956.9357547670271 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 137.832, + "y": 960.0217547670271 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 142.196, + "y": 964.385754767027 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 145.28199999999998, + "y": 969.7307547670271 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 146.88, + "y": 975.6917547670271 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1479.9061220000003, + "axes": { + "#": 6727 + }, + "bounds": { + "#": 6739 + }, + "circleRadius": 21.8525591563786, + "collisionFilter": { + "#": 6742 + }, + "constraintImpulse": { + "#": 6743 + }, + "density": 0.001, + "force": { + "#": 6744 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": 1394.3270921480123, + "inverseInertia": 0.0007171918308346596, + "inverseMass": 0.6757185372329988, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4799061220000003, + "motion": 0, + "parent": null, + "position": { + "#": 6745 + }, + "positionImpulse": { + "#": 6746 + }, + "positionPrev": { + "#": 6747 + }, + "region": { + "#": 6748 + }, + "render": { + "#": 6749 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6751 + }, + "vertices": { + "#": 6752 + } + }, + [ + { + "#": 6728 + }, + { + "#": 6729 + }, + { + "#": 6730 + }, + { + "#": 6731 + }, + { + "#": 6732 + }, + { + "#": 6733 + }, + { + "#": 6734 + }, + { + "#": 6735 + }, + { + "#": 6736 + }, + { + "#": 6737 + }, + { + "#": 6738 + } + ], + { + "x": -0.9595087445086674, + "y": -0.28167884054611 + }, + { + "x": -0.8412098176870567, + "y": -0.5407088335018292 + }, + { + "x": -0.6549121779854049, + "y": -0.7557049947740277 + }, + { + "x": -0.4153530977073672, + "y": -0.9096602685755238 + }, + { + "x": -0.14243407531189364, + "y": -0.9898042908525129 + }, + { + "x": 0.14243407531189364, + "y": -0.9898042908525129 + }, + { + "x": 0.4153530977073672, + "y": -0.9096602685755238 + }, + { + "x": 0.6549121779854049, + "y": -0.7557049947740277 + }, + { + "x": 0.8412098176870567, + "y": -0.5407088335018292 + }, + { + "x": 0.9595087445086674, + "y": -0.28167884054611 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6740 + }, + "min": { + "#": 6741 + } + }, + { + "x": 200.14, + "y": 999.0437547670269 + }, + { + "x": 156.88, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.51, + "y": 977.190754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.51, + "y": 974.2834840519911 + }, + { + "endCol": 4, + "endRow": 20, + "id": "3,4,19,20", + "startCol": 3, + "startRow": 19 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6750 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6753 + }, + { + "#": 6754 + }, + { + "#": 6755 + }, + { + "#": 6756 + }, + { + "#": 6757 + }, + { + "#": 6758 + }, + { + "#": 6759 + }, + { + "#": 6760 + }, + { + "#": 6761 + }, + { + "#": 6762 + }, + { + "#": 6763 + }, + { + "#": 6764 + }, + { + "#": 6765 + }, + { + "#": 6766 + }, + { + "#": 6767 + }, + { + "#": 6768 + }, + { + "#": 6769 + }, + { + "#": 6770 + }, + { + "#": 6771 + }, + { + "#": 6772 + }, + { + "#": 6773 + }, + { + "#": 6774 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200.14, + "y": 980.300754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.38799999999998, + "y": 986.268754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.02499999999998, + "y": 991.5007547670269 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 190.32399999999998, + "y": 995.574754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 184.667, + "y": 998.157754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 178.51, + "y": 999.0437547670269 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 172.35299999999998, + "y": 998.157754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 166.696, + "y": 995.574754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.995, + "y": 991.5007547670269 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 158.632, + "y": 986.268754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 156.88, + "y": 980.300754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 156.88, + "y": 974.080754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 158.632, + "y": 968.112754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 161.995, + "y": 962.880754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 166.696, + "y": 958.806754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 172.35299999999998, + "y": 956.223754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 178.51, + "y": 955.337754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 184.667, + "y": 956.223754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 190.32399999999998, + "y": 958.806754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 195.02499999999998, + "y": 962.880754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 198.38799999999998, + "y": 968.112754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 200.14, + "y": 974.080754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1436.4701799999998, + "axes": { + "#": 6776 + }, + "bounds": { + "#": 6788 + }, + "circleRadius": 21.529385288065843, + "collisionFilter": { + "#": 6791 + }, + "constraintImpulse": { + "#": 6792 + }, + "density": 0.001, + "force": { + "#": 6793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 137, + "inertia": 1313.679921724599, + "inverseInertia": 0.0007612204338840774, + "inverseMass": 0.6961508939921051, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.43647018, + "motion": 0, + "parent": null, + "position": { + "#": 6794 + }, + "positionImpulse": { + "#": 6795 + }, + "positionPrev": { + "#": 6796 + }, + "region": { + "#": 6797 + }, + "render": { + "#": 6798 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6800 + }, + "vertices": { + "#": 6801 + } + }, + [ + { + "#": 6777 + }, + { + "#": 6778 + }, + { + "#": 6779 + }, + { + "#": 6780 + }, + { + "#": 6781 + }, + { + "#": 6782 + }, + { + "#": 6783 + }, + { + "#": 6784 + }, + { + "#": 6785 + }, + { + "#": 6786 + }, + { + "#": 6787 + } + ], + { + "x": -0.9595160751453637, + "y": -0.28165386831647904 + }, + { + "x": -0.841247397412524, + "y": -0.5406503642342757 + }, + { + "x": -0.6548808345114404, + "y": -0.7557321566465194 + }, + { + "x": -0.41533932355594355, + "y": -0.9096665577606396 + }, + { + "x": -0.1422893977298045, + "y": -0.9898250993451769 + }, + { + "x": 0.1422893977298045, + "y": -0.9898250993451769 + }, + { + "x": 0.41533932355594355, + "y": -0.9096665577606396 + }, + { + "x": 0.6548808345114404, + "y": -0.7557321566465194 + }, + { + "x": 0.841247397412524, + "y": -0.5406503642342757 + }, + { + "x": 0.9595160751453637, + "y": -0.28165386831647904 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6789 + }, + "min": { + "#": 6790 + } + }, + { + "x": 252.76, + "y": 998.395754767027 + }, + { + "x": 210.14, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.45, + "y": 976.866754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.45, + "y": 973.9594840519911 + }, + { + "endCol": 5, + "endRow": 20, + "id": "4,5,19,20", + "startCol": 4, + "startRow": 19 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6799 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6802 + }, + { + "#": 6803 + }, + { + "#": 6804 + }, + { + "#": 6805 + }, + { + "#": 6806 + }, + { + "#": 6807 + }, + { + "#": 6808 + }, + { + "#": 6809 + }, + { + "#": 6810 + }, + { + "#": 6811 + }, + { + "#": 6812 + }, + { + "#": 6813 + }, + { + "#": 6814 + }, + { + "#": 6815 + }, + { + "#": 6816 + }, + { + "#": 6817 + }, + { + "#": 6818 + }, + { + "#": 6819 + }, + { + "#": 6820 + }, + { + "#": 6821 + }, + { + "#": 6822 + }, + { + "#": 6823 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.76, + "y": 979.930754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 251.034, + "y": 985.810754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 247.721, + "y": 990.9657547670271 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.08999999999997, + "y": 994.978754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 237.516, + "y": 997.5237547670271 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 231.45, + "y": 998.395754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 225.384, + "y": 997.5237547670271 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 219.81, + "y": 994.978754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 215.17899999999997, + "y": 990.9657547670271 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.86599999999999, + "y": 985.810754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 210.14, + "y": 979.930754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 210.14, + "y": 973.8027547670271 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 211.86599999999999, + "y": 967.9227547670271 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 215.17899999999997, + "y": 962.767754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 219.81, + "y": 958.7547547670271 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 225.384, + "y": 956.209754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 231.45, + "y": 955.337754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 237.516, + "y": 956.209754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 243.08999999999997, + "y": 958.7547547670271 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 247.721, + "y": 962.767754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 251.034, + "y": 967.9227547670271 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 252.76, + "y": 973.8027547670271 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 921.4581120000001, + "axes": { + "#": 6825 + }, + "bounds": { + "#": 6835 + }, + "circleRadius": 17.301890432098766, + "collisionFilter": { + "#": 6838 + }, + "constraintImpulse": { + "#": 6839 + }, + "density": 0.001, + "force": { + "#": 6840 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 138, + "inertia": 540.5895727979165, + "inverseInertia": 0.0018498322023200039, + "inverseMass": 1.085236525651206, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9214581120000002, + "motion": 0, + "parent": null, + "position": { + "#": 6841 + }, + "positionImpulse": { + "#": 6842 + }, + "positionPrev": { + "#": 6843 + }, + "region": { + "#": 6844 + }, + "render": { + "#": 6845 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6847 + }, + "vertices": { + "#": 6848 + } + }, + [ + { + "#": 6826 + }, + { + "#": 6827 + }, + { + "#": 6828 + }, + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + }, + { + "#": 6832 + }, + { + "#": 6833 + }, + { + "#": 6834 + } + ], + { + "x": -0.9397107989436047, + "y": -0.34197019511760385 + }, + { + "x": -0.765993276427864, + "y": -0.6428485828461521 + }, + { + "x": -0.5000058109841717, + "y": -0.8660220487851684 + }, + { + "x": -0.17372837569222055, + "y": -0.9847936085695026 + }, + { + "x": 0.17372837569222055, + "y": -0.9847936085695026 + }, + { + "x": 0.5000058109841717, + "y": -0.8660220487851684 + }, + { + "x": 0.765993276427864, + "y": -0.6428485828461521 + }, + { + "x": 0.9397107989436047, + "y": -0.34197019511760385 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6836 + }, + "min": { + "#": 6837 + } + }, + { + "x": 296.3112111139281, + "y": 997.1856875377259 + }, + { + "x": 262.2332111139281, + "y": 959.67441682269 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 279.2722111139281, + "y": 976.97641682269 + }, + { + "x": -0.1873027150477874, + "y": 1.541924286457917 + }, + { + "x": 279.2722111139281, + "y": 974.0691461076541 + }, + { + "endCol": 6, + "endRow": 20, + "id": "5,6,19,20", + "startCol": 5, + "startRow": 19 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6846 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150359065 + }, + [ + { + "#": 6849 + }, + { + "#": 6850 + }, + { + "#": 6851 + }, + { + "#": 6852 + }, + { + "#": 6853 + }, + { + "#": 6854 + }, + { + "#": 6855 + }, + { + "#": 6856 + }, + { + "#": 6857 + }, + { + "#": 6858 + }, + { + "#": 6859 + }, + { + "#": 6860 + }, + { + "#": 6861 + }, + { + "#": 6862 + }, + { + "#": 6863 + }, + { + "#": 6864 + }, + { + "#": 6865 + }, + { + "#": 6866 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.3112111139281, + "y": 979.98041682269 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 294.2562111139281, + "y": 985.62741682269 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 290.3932111139281, + "y": 990.23041682269 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 285.1902111139281, + "y": 993.23441682269 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 279.2722111139281, + "y": 994.27841682269 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 273.3542111139281, + "y": 993.23441682269 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 268.1512111139281, + "y": 990.23041682269 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 264.28821111392807, + "y": 985.62741682269 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 262.2332111139281, + "y": 979.98041682269 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 262.2332111139281, + "y": 973.97241682269 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 264.28821111392807, + "y": 968.32541682269 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 268.1512111139281, + "y": 963.72241682269 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 273.3542111139281, + "y": 960.71841682269 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 279.2722111139281, + "y": 959.67441682269 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 285.1902111139281, + "y": 960.71841682269 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 290.3932111139281, + "y": 963.72241682269 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 294.2562111139281, + "y": 968.32541682269 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 296.3112111139281, + "y": 973.97241682269 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1442.878982, + "axes": { + "#": 6868 + }, + "bounds": { + "#": 6880 + }, + "circleRadius": 21.577481995884774, + "collisionFilter": { + "#": 6883 + }, + "constraintImpulse": { + "#": 6884 + }, + "density": 0.001, + "force": { + "#": 6885 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": 1325.4280188451355, + "inverseInertia": 0.0007544732613026503, + "inverseMass": 0.6930588167649946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.442878982, + "motion": 0, + "parent": null, + "position": { + "#": 6886 + }, + "positionImpulse": { + "#": 6887 + }, + "positionPrev": { + "#": 6888 + }, + "region": { + "#": 6889 + }, + "render": { + "#": 6890 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6892 + }, + "vertices": { + "#": 6893 + } + }, + [ + { + "#": 6869 + }, + { + "#": 6870 + }, + { + "#": 6871 + }, + { + "#": 6872 + }, + { + "#": 6873 + }, + { + "#": 6874 + }, + { + "#": 6875 + }, + { + "#": 6876 + }, + { + "#": 6877 + }, + { + "#": 6878 + }, + { + "#": 6879 + } + ], + { + "x": -0.95950797763849, + "y": -0.281681452793923 + }, + { + "x": -0.8411784753765534, + "y": -0.5407575913134989 + }, + { + "x": -0.6549119406095831, + "y": -0.7557052004895758 + }, + { + "x": -0.41534800101678154, + "y": -0.9096625957196237 + }, + { + "x": -0.14231033171555763, + "y": -0.9898220898156436 + }, + { + "x": 0.14231033171555763, + "y": -0.9898220898156436 + }, + { + "x": 0.41534800101678154, + "y": -0.9096625957196237 + }, + { + "x": 0.6549119406095831, + "y": -0.7557052004895758 + }, + { + "x": 0.8411784753765534, + "y": -0.5407575913134989 + }, + { + "x": 0.95950797763849, + "y": -0.281681452793923 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6881 + }, + "min": { + "#": 6882 + } + }, + { + "x": 349.554, + "y": 998.491754767027 + }, + { + "x": 306.83799999999997, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.19599999999997, + "y": 976.914754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.19599999999997, + "y": 974.0074840519911 + }, + { + "endCol": 7, + "endRow": 20, + "id": "6,7,19,20", + "startCol": 6, + "startRow": 19 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6891 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6894 + }, + { + "#": 6895 + }, + { + "#": 6896 + }, + { + "#": 6897 + }, + { + "#": 6898 + }, + { + "#": 6899 + }, + { + "#": 6900 + }, + { + "#": 6901 + }, + { + "#": 6902 + }, + { + "#": 6903 + }, + { + "#": 6904 + }, + { + "#": 6905 + }, + { + "#": 6906 + }, + { + "#": 6907 + }, + { + "#": 6908 + }, + { + "#": 6909 + }, + { + "#": 6910 + }, + { + "#": 6911 + }, + { + "#": 6912 + }, + { + "#": 6913 + }, + { + "#": 6914 + }, + { + "#": 6915 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 349.554, + "y": 979.9857547670271 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 347.82399999999996, + "y": 985.8787547670271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 344.503, + "y": 991.044754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 339.86199999999997, + "y": 995.0667547670271 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 334.275, + "y": 997.617754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 328.19599999999997, + "y": 998.491754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.11699999999996, + "y": 997.617754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 316.53, + "y": 995.0667547670271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 311.88899999999995, + "y": 991.044754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 308.568, + "y": 985.8787547670271 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 306.83799999999997, + "y": 979.9857547670271 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 306.83799999999997, + "y": 973.843754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 308.568, + "y": 967.950754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.88899999999995, + "y": 962.784754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 316.53, + "y": 958.762754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 322.11699999999996, + "y": 956.2117547670271 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 328.19599999999997, + "y": 955.337754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 334.275, + "y": 956.2117547670271 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 339.86199999999997, + "y": 958.762754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 344.503, + "y": 962.784754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 347.82399999999996, + "y": 967.950754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 349.554, + "y": 973.843754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1393.8701299999998, + "axes": { + "#": 6917 + }, + "bounds": { + "#": 6929 + }, + "circleRadius": 21.20801183127572, + "collisionFilter": { + "#": 6932 + }, + "constraintImpulse": { + "#": 6933 + }, + "density": 0.001, + "force": { + "#": 6934 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 140, + "inertia": 1236.9181303326188, + "inverseInertia": 0.0008084609445663883, + "inverseMass": 0.717426952825225, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.3938701299999998, + "motion": 0, + "parent": null, + "position": { + "#": 6935 + }, + "positionImpulse": { + "#": 6936 + }, + "positionPrev": { + "#": 6937 + }, + "region": { + "#": 6938 + }, + "render": { + "#": 6939 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6941 + }, + "vertices": { + "#": 6942 + } + }, + [ + { + "#": 6918 + }, + { + "#": 6919 + }, + { + "#": 6920 + }, + { + "#": 6921 + }, + { + "#": 6922 + }, + { + "#": 6923 + }, + { + "#": 6924 + }, + { + "#": 6925 + }, + { + "#": 6926 + }, + { + "#": 6927 + }, + { + "#": 6928 + } + ], + { + "x": -0.9594788508542671, + "y": -0.2817806500868627 + }, + { + "x": -0.8412861160751645, + "y": -0.540590113578823 + }, + { + "x": -0.6548611595165944, + "y": -0.75574920559441 + }, + { + "x": -0.41546220815076035, + "y": -0.9096104405724983 + }, + { + "x": -0.14230261557828927, + "y": -0.9898231991621421 + }, + { + "x": 0.14230261557828927, + "y": -0.9898231991621421 + }, + { + "x": 0.41546220815076035, + "y": -0.9096104405724983 + }, + { + "x": 0.6548611595165944, + "y": -0.75574920559441 + }, + { + "x": 0.8412861160751645, + "y": -0.540590113578823 + }, + { + "x": 0.9594788508542671, + "y": -0.2817806500868627 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6930 + }, + "min": { + "#": 6931 + } + }, + { + "x": 401.538, + "y": 997.753754767027 + }, + { + "x": 359.554, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.546, + "y": 976.545754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.546, + "y": 973.6384840519911 + }, + { + "endCol": 8, + "endRow": 20, + "id": "7,8,19,20", + "startCol": 7, + "startRow": 19 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6940 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6943 + }, + { + "#": 6944 + }, + { + "#": 6945 + }, + { + "#": 6946 + }, + { + "#": 6947 + }, + { + "#": 6948 + }, + { + "#": 6949 + }, + { + "#": 6950 + }, + { + "#": 6951 + }, + { + "#": 6952 + }, + { + "#": 6953 + }, + { + "#": 6954 + }, + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + }, + { + "#": 6959 + }, + { + "#": 6960 + }, + { + "#": 6961 + }, + { + "#": 6962 + }, + { + "#": 6963 + }, + { + "#": 6964 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 401.538, + "y": 979.563754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 399.837, + "y": 985.355754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 396.574, + "y": 990.433754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 392.012, + "y": 994.386754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 386.521, + "y": 996.894754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 380.546, + "y": 997.753754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 374.57099999999997, + "y": 996.894754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.08, + "y": 994.386754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 364.518, + "y": 990.433754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 361.255, + "y": 985.355754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 359.554, + "y": 979.563754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 359.554, + "y": 973.527754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 361.255, + "y": 967.7357547670271 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 364.518, + "y": 962.657754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 369.08, + "y": 958.704754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 374.57099999999997, + "y": 956.196754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 380.546, + "y": 955.337754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 386.521, + "y": 956.196754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 392.012, + "y": 958.704754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 396.574, + "y": 962.657754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 399.837, + "y": 967.7357547670271 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 401.538, + "y": 973.527754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1134.053972, + "axes": { + "#": 6966 + }, + "bounds": { + "#": 6977 + }, + "circleRadius": 19.15644290123457, + "collisionFilter": { + "#": 6980 + }, + "constraintImpulse": { + "#": 6981 + }, + "density": 0.001, + "force": { + "#": 6982 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 141, + "inertia": 818.7877787916739, + "inverseInertia": 0.0012213176917170773, + "inverseMass": 0.8817922468332045, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.134053972, + "motion": 0, + "parent": null, + "position": { + "#": 6983 + }, + "positionImpulse": { + "#": 6984 + }, + "positionPrev": { + "#": 6985 + }, + "region": { + "#": 6986 + }, + "render": { + "#": 6987 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6989 + }, + "vertices": { + "#": 6990 + } + }, + [ + { + "#": 6967 + }, + { + "#": 6968 + }, + { + "#": 6969 + }, + { + "#": 6970 + }, + { + "#": 6971 + }, + { + "#": 6972 + }, + { + "#": 6973 + }, + { + "#": 6974 + }, + { + "#": 6975 + }, + { + "#": 6976 + } + ], + { + "x": -0.9510585889822449, + "y": -0.30901061522721374 + }, + { + "x": -0.8090173687157503, + "y": -0.5877847370562153 + }, + { + "x": -0.5877847370562153, + "y": -0.8090173687157503 + }, + { + "x": -0.30901061522721374, + "y": -0.9510585889822449 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30901061522721374, + "y": -0.9510585889822449 + }, + { + "x": 0.5877847370562153, + "y": -0.8090173687157503 + }, + { + "x": 0.8090173687157503, + "y": -0.5877847370562153 + }, + { + "x": 0.9510585889822449, + "y": -0.30901061522721374 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6978 + }, + "min": { + "#": 6979 + } + }, + { + "x": 449.38, + "y": 993.1797547670271 + }, + { + "x": 411.538, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.459, + "y": 974.2587547670271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.459, + "y": 971.3514840519912 + }, + { + "endCol": 9, + "endRow": 20, + "id": "8,9,19,20", + "startCol": 8, + "startRow": 19 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6988 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 6991 + }, + { + "#": 6992 + }, + { + "#": 6993 + }, + { + "#": 6994 + }, + { + "#": 6995 + }, + { + "#": 6996 + }, + { + "#": 6997 + }, + { + "#": 6998 + }, + { + "#": 6999 + }, + { + "#": 7000 + }, + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + }, + { + "#": 7004 + }, + { + "#": 7005 + }, + { + "#": 7006 + }, + { + "#": 7007 + }, + { + "#": 7008 + }, + { + "#": 7009 + }, + { + "#": 7010 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 449.38, + "y": 977.255754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 447.528, + "y": 982.9557547670271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 444.005, + "y": 987.8047547670271 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 439.156, + "y": 991.327754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 433.456, + "y": 993.1797547670271 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 427.462, + "y": 993.1797547670271 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 421.762, + "y": 991.327754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 416.913, + "y": 987.8047547670271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 413.39, + "y": 982.9557547670271 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 411.538, + "y": 977.255754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 411.538, + "y": 971.2617547670271 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 413.39, + "y": 965.5617547670271 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 416.913, + "y": 960.712754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 421.762, + "y": 957.1897547670271 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 427.462, + "y": 955.337754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 433.456, + "y": 955.337754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 439.156, + "y": 957.1897547670271 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 444.005, + "y": 960.712754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 447.528, + "y": 965.5617547670271 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 449.38, + "y": 971.2617547670271 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2129.6684660000005, + "axes": { + "#": 7012 + }, + "bounds": { + "#": 7026 + }, + "circleRadius": 26.16351594650206, + "collisionFilter": { + "#": 7029 + }, + "constraintImpulse": { + "#": 7030 + }, + "density": 0.001, + "force": { + "#": 7031 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": 2887.4362873780287, + "inverseInertia": 0.0003463279880395429, + "inverseMass": 0.4695566544581591, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.1296684660000005, + "motion": 0, + "parent": null, + "position": { + "#": 7032 + }, + "positionImpulse": { + "#": 7033 + }, + "positionPrev": { + "#": 7034 + }, + "region": { + "#": 7035 + }, + "render": { + "#": 7036 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7038 + }, + "vertices": { + "#": 7039 + } + }, + [ + { + "#": 7013 + }, + { + "#": 7014 + }, + { + "#": 7015 + }, + { + "#": 7016 + }, + { + "#": 7017 + }, + { + "#": 7018 + }, + { + "#": 7019 + }, + { + "#": 7020 + }, + { + "#": 7021 + }, + { + "#": 7022 + }, + { + "#": 7023 + }, + { + "#": 7024 + }, + { + "#": 7025 + } + ], + { + "x": -0.9709208311748809, + "y": -0.23940079279458984 + }, + { + "x": -0.8854712992435021, + "y": -0.464694069486608 + }, + { + "x": -0.7485454568415367, + "y": -0.6630834781849833 + }, + { + "x": -0.5680552337492909, + "y": -0.8229904321497539 + }, + { + "x": -0.35449173520305777, + "y": -0.9350591476867789 + }, + { + "x": -0.12065807858052943, + "y": -0.9926941261401997 + }, + { + "x": 0.12065807858052943, + "y": -0.9926941261401997 + }, + { + "x": 0.35449173520305777, + "y": -0.9350591476867789 + }, + { + "x": 0.5680552337492909, + "y": -0.8229904321497539 + }, + { + "x": 0.7485454568415367, + "y": -0.6630834781849833 + }, + { + "x": 0.8854712992435021, + "y": -0.464694069486608 + }, + { + "x": 0.9709208311748809, + "y": -0.23940079279458984 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7027 + }, + "min": { + "#": 7028 + } + }, + { + "x": 511.326, + "y": 1007.665754767027 + }, + { + "x": 459.38, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 485.353, + "y": 981.501754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 485.353, + "y": 978.5944840519911 + }, + { + "endCol": 10, + "endRow": 20, + "id": "9,10,19,20", + "startCol": 9, + "startRow": 19 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7037 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 7040 + }, + { + "#": 7041 + }, + { + "#": 7042 + }, + { + "#": 7043 + }, + { + "#": 7044 + }, + { + "#": 7045 + }, + { + "#": 7046 + }, + { + "#": 7047 + }, + { + "#": 7048 + }, + { + "#": 7049 + }, + { + "#": 7050 + }, + { + "#": 7051 + }, + { + "#": 7052 + }, + { + "#": 7053 + }, + { + "#": 7054 + }, + { + "#": 7055 + }, + { + "#": 7056 + }, + { + "#": 7057 + }, + { + "#": 7058 + }, + { + "#": 7059 + }, + { + "#": 7060 + }, + { + "#": 7061 + }, + { + "#": 7062 + }, + { + "#": 7063 + }, + { + "#": 7064 + }, + { + "#": 7065 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 511.326, + "y": 984.655754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 509.81600000000003, + "y": 990.779754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.885, + "y": 996.3647547670271 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 502.70300000000003, + "y": 1001.085754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 497.512, + "y": 1004.668754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 491.61400000000003, + "y": 1006.904754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.353, + "y": 1007.665754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 479.092, + "y": 1006.904754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 473.194, + "y": 1004.668754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 468.003, + "y": 1001.085754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 463.821, + "y": 996.3647547670271 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 460.89, + "y": 990.779754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 459.38, + "y": 984.655754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 459.38, + "y": 978.347754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 460.89, + "y": 972.223754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 463.821, + "y": 966.638754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 468.003, + "y": 961.9177547670271 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 473.194, + "y": 958.334754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 479.092, + "y": 956.098754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 485.353, + "y": 955.337754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 491.61400000000003, + "y": 956.098754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 497.512, + "y": 958.334754767027 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 502.70300000000003, + "y": 961.9177547670271 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 506.885, + "y": 966.638754767027 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 509.81600000000003, + "y": 972.223754767027 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 511.326, + "y": 978.347754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 933.4788960000001, + "axes": { + "#": 7067 + }, + "bounds": { + "#": 7077 + }, + "circleRadius": 17.414416152263374, + "collisionFilter": { + "#": 7080 + }, + "constraintImpulse": { + "#": 7081 + }, + "density": 0.001, + "force": { + "#": 7082 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 143, + "inertia": 554.7859794487026, + "inverseInertia": 0.0018024968853641756, + "inverseMass": 1.0712614974854235, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9334788960000001, + "motion": 0, + "parent": null, + "position": { + "#": 7083 + }, + "positionImpulse": { + "#": 7084 + }, + "positionPrev": { + "#": 7085 + }, + "region": { + "#": 7086 + }, + "render": { + "#": 7087 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7089 + }, + "vertices": { + "#": 7090 + } + }, + [ + { + "#": 7068 + }, + { + "#": 7069 + }, + { + "#": 7070 + }, + { + "#": 7071 + }, + { + "#": 7072 + }, + { + "#": 7073 + }, + { + "#": 7074 + }, + { + "#": 7075 + }, + { + "#": 7076 + } + ], + { + "x": -0.93966300914261, + "y": -0.3421014896913706 + }, + { + "x": -0.7660891083247972, + "y": -0.642734376010897 + }, + { + "x": -0.4999800713445785, + "y": -0.8660369092932876 + }, + { + "x": -0.17361554431251713, + "y": -0.9848135065955729 + }, + { + "x": 0.17361554431251713, + "y": -0.9848135065955729 + }, + { + "x": 0.4999800713445785, + "y": -0.8660369092932876 + }, + { + "x": 0.7660891083247972, + "y": -0.642734376010897 + }, + { + "x": 0.93966300914261, + "y": -0.3421014896913706 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7078 + }, + "min": { + "#": 7079 + } + }, + { + "x": 555.626, + "y": 990.165754767027 + }, + { + "x": 521.326, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 538.476, + "y": 972.751754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 538.476, + "y": 969.8444840519911 + }, + { + "endCol": 11, + "endRow": 20, + "id": "10,11,19,20", + "startCol": 10, + "startRow": 19 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7088 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 7091 + }, + { + "#": 7092 + }, + { + "#": 7093 + }, + { + "#": 7094 + }, + { + "#": 7095 + }, + { + "#": 7096 + }, + { + "#": 7097 + }, + { + "#": 7098 + }, + { + "#": 7099 + }, + { + "#": 7100 + }, + { + "#": 7101 + }, + { + "#": 7102 + }, + { + "#": 7103 + }, + { + "#": 7104 + }, + { + "#": 7105 + }, + { + "#": 7106 + }, + { + "#": 7107 + }, + { + "#": 7108 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.626, + "y": 975.775754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.557, + "y": 981.458754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.67, + "y": 986.091754767027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.432, + "y": 989.115754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.476, + "y": 990.165754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.52, + "y": 989.115754767027 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2819999999999, + "y": 986.091754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 523.395, + "y": 981.458754767027 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 521.326, + "y": 975.775754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 521.326, + "y": 969.727754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 523.395, + "y": 964.044754767027 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 527.2819999999999, + "y": 959.411754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 532.52, + "y": 956.387754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 538.476, + "y": 955.337754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 544.432, + "y": 956.387754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 549.67, + "y": 959.411754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 553.557, + "y": 964.044754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 555.626, + "y": 969.727754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1139.7843160000002, + "axes": { + "#": 7110 + }, + "bounds": { + "#": 7121 + }, + "circleRadius": 19.205439814814817, + "collisionFilter": { + "#": 7124 + }, + "constraintImpulse": { + "#": 7125 + }, + "density": 0.001, + "force": { + "#": 7126 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 144, + "inertia": 827.0833095807079, + "inverseInertia": 0.0012090680447982352, + "inverseMass": 0.8773589756958893, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1397843160000003, + "motion": 0, + "parent": null, + "position": { + "#": 7127 + }, + "positionImpulse": { + "#": 7128 + }, + "positionPrev": { + "#": 7129 + }, + "region": { + "#": 7130 + }, + "render": { + "#": 7131 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7133 + }, + "vertices": { + "#": 7134 + } + }, + [ + { + "#": 7111 + }, + { + "#": 7112 + }, + { + "#": 7113 + }, + { + "#": 7114 + }, + { + "#": 7115 + }, + { + "#": 7116 + }, + { + "#": 7117 + }, + { + "#": 7118 + }, + { + "#": 7119 + }, + { + "#": 7120 + } + ], + { + "x": -0.9510524110962663, + "y": -0.30902962859243555 + }, + { + "x": -0.8089950900996454, + "y": -0.5878153997597091 + }, + { + "x": -0.5878153997597091, + "y": -0.8089950900996454 + }, + { + "x": -0.30902962859243555, + "y": -0.9510524110962663 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30902962859243555, + "y": -0.9510524110962663 + }, + { + "x": 0.5878153997597091, + "y": -0.8089950900996454 + }, + { + "x": 0.8089950900996454, + "y": -0.5878153997597091 + }, + { + "x": 0.9510524110962663, + "y": -0.30902962859243555 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7122 + }, + "min": { + "#": 7123 + } + }, + { + "x": 603.5640000000001, + "y": 993.2757547670271 + }, + { + "x": 565.626, + "y": 955.337754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 584.595, + "y": 974.3067547670271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 584.595, + "y": 971.3994840519912 + }, + { + "endCol": 12, + "endRow": 20, + "id": "11,12,19,20", + "startCol": 11, + "startRow": 19 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7132 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 7135 + }, + { + "#": 7136 + }, + { + "#": 7137 + }, + { + "#": 7138 + }, + { + "#": 7139 + }, + { + "#": 7140 + }, + { + "#": 7141 + }, + { + "#": 7142 + }, + { + "#": 7143 + }, + { + "#": 7144 + }, + { + "#": 7145 + }, + { + "#": 7146 + }, + { + "#": 7147 + }, + { + "#": 7148 + }, + { + "#": 7149 + }, + { + "#": 7150 + }, + { + "#": 7151 + }, + { + "#": 7152 + }, + { + "#": 7153 + }, + { + "#": 7154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 603.5640000000001, + "y": 977.3107547670271 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 601.707, + "y": 983.0257547670271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 598.1750000000001, + "y": 987.8867547670271 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 593.3140000000001, + "y": 991.418754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 587.599, + "y": 993.2757547670271 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 581.591, + "y": 993.2757547670271 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 575.876, + "y": 991.418754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.015, + "y": 987.8867547670271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 567.4830000000001, + "y": 983.0257547670271 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 565.626, + "y": 977.3107547670271 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 565.626, + "y": 971.3027547670271 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 567.4830000000001, + "y": 965.587754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 571.015, + "y": 960.726754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 575.876, + "y": 957.1947547670271 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 581.591, + "y": 955.337754767027 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 587.599, + "y": 955.337754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 593.3140000000001, + "y": 957.1947547670271 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 598.1750000000001, + "y": 960.726754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 601.707, + "y": 965.587754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 603.5640000000001, + "y": 971.3027547670271 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2040.5851720000007, + "axes": { + "#": 7156 + }, + "bounds": { + "#": 7170 + }, + "circleRadius": 25.61066100823045, + "collisionFilter": { + "#": 7173 + }, + "constraintImpulse": { + "#": 7174 + }, + "density": 0.001, + "force": { + "#": 7175 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": 2650.9275730068207, + "inverseInertia": 0.0003772264509157252, + "inverseMass": 0.4900555064897823, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.040585172000001, + "motion": 0, + "parent": null, + "position": { + "#": 7176 + }, + "positionImpulse": { + "#": 7177 + }, + "positionPrev": { + "#": 7178 + }, + "region": { + "#": 7179 + }, + "render": { + "#": 7180 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7182 + }, + "vertices": { + "#": 7183 + } + }, + [ + { + "#": 7157 + }, + { + "#": 7158 + }, + { + "#": 7159 + }, + { + "#": 7160 + }, + { + "#": 7161 + }, + { + "#": 7162 + }, + { + "#": 7163 + }, + { + "#": 7164 + }, + { + "#": 7165 + }, + { + "#": 7166 + }, + { + "#": 7167 + }, + { + "#": 7168 + }, + { + "#": 7169 + } + ], + { + "x": -0.9709280720447603, + "y": -0.2393714246008596 + }, + { + "x": -0.885476215551765, + "y": -0.46468470137516266 + }, + { + "x": -0.7484985891937153, + "y": -0.6631363826355918 + }, + { + "x": -0.5680470758958883, + "y": -0.8229960629104679 + }, + { + "x": -0.3545468146776685, + "y": -0.9350382645656374 + }, + { + "x": -0.12066511451121047, + "y": -0.9926932709251113 + }, + { + "x": 0.12066511451121047, + "y": -0.9926932709251113 + }, + { + "x": 0.3545468146776685, + "y": -0.9350382645656374 + }, + { + "x": 0.5680470758958883, + "y": -0.8229960629104679 + }, + { + "x": 0.7484985891937153, + "y": -0.6631363826355918 + }, + { + "x": 0.885476215551765, + "y": -0.46468470137516266 + }, + { + "x": 0.9709280720447603, + "y": -0.2393714246008596 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7171 + }, + "min": { + "#": 7172 + } + }, + { + "x": 150.848, + "y": 1068.887754767027 + }, + { + "x": 100, + "y": 1017.6657547670271 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.424, + "y": 1043.276754767027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.424, + "y": 1040.3694840519913 + }, + { + "endCol": 3, + "endRow": 22, + "id": "2,3,21,22", + "startCol": 2, + "startRow": 21 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7181 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 7184 + }, + { + "#": 7185 + }, + { + "#": 7186 + }, + { + "#": 7187 + }, + { + "#": 7188 + }, + { + "#": 7189 + }, + { + "#": 7190 + }, + { + "#": 7191 + }, + { + "#": 7192 + }, + { + "#": 7193 + }, + { + "#": 7194 + }, + { + "#": 7195 + }, + { + "#": 7196 + }, + { + "#": 7197 + }, + { + "#": 7198 + }, + { + "#": 7199 + }, + { + "#": 7200 + }, + { + "#": 7201 + }, + { + "#": 7202 + }, + { + "#": 7203 + }, + { + "#": 7204 + }, + { + "#": 7205 + }, + { + "#": 7206 + }, + { + "#": 7207 + }, + { + "#": 7208 + }, + { + "#": 7209 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150.848, + "y": 1046.3637547670269 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 149.37, + "y": 1052.3587547670268 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 146.501, + "y": 1057.8257547670269 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 142.407, + "y": 1062.446754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 137.32600000000002, + "y": 1065.953754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 131.553, + "y": 1068.1427547670269 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 125.424, + "y": 1068.887754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 119.295, + "y": 1068.1427547670269 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 113.522, + "y": 1065.953754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.441, + "y": 1062.446754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 104.34700000000001, + "y": 1057.8257547670269 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.47800000000001, + "y": 1052.3587547670268 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 100, + "y": 1046.3637547670269 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 100, + "y": 1040.189754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 101.47800000000001, + "y": 1034.1947547670268 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 104.34700000000001, + "y": 1028.727754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 108.441, + "y": 1024.106754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 113.522, + "y": 1020.5997547670271 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 119.295, + "y": 1018.4107547670271 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 125.424, + "y": 1017.6657547670271 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 131.553, + "y": 1018.4107547670271 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 137.32600000000002, + "y": 1020.5997547670271 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 142.407, + "y": 1024.106754767027 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 146.501, + "y": 1028.727754767027 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 149.37, + "y": 1034.1947547670268 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 150.848, + "y": 1040.189754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 702.576872, + "axes": { + "#": 7211 + }, + "bounds": { + "#": 7220 + }, + "circleRadius": 15.148598251028806, + "collisionFilter": { + "#": 7223 + }, + "constraintImpulse": { + "#": 7224 + }, + "density": 0.001, + "force": { + "#": 7225 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 146, + "inertia": 314.28689116356384, + "inverseInertia": 0.0031818062671903537, + "inverseMass": 1.4233317945029083, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.702576872, + "motion": 0, + "parent": null, + "position": { + "#": 7226 + }, + "positionImpulse": { + "#": 7227 + }, + "positionPrev": { + "#": 7228 + }, + "region": { + "#": 7229 + }, + "render": { + "#": 7230 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7232 + }, + "vertices": { + "#": 7233 + } + }, + [ + { + "#": 7212 + }, + { + "#": 7213 + }, + { + "#": 7214 + }, + { + "#": 7215 + }, + { + "#": 7216 + }, + { + "#": 7217 + }, + { + "#": 7218 + }, + { + "#": 7219 + } + ], + { + "x": -0.9238807445732501, + "y": -0.3826805061755525 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826805061755525, + "y": -0.9238807445732501 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826805061755525, + "y": -0.9238807445732501 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238807445732501, + "y": -0.3826805061755525 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7221 + }, + "min": { + "#": 7222 + } + }, + { + "x": 190.56400000000002, + "y": 1047.3817547670262 + }, + { + "x": 160.848, + "y": 1017.6657547670267 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.70600000000002, + "y": 1032.5237547670263 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175.70600000000002, + "y": 1029.6164840519907 + }, + { + "endCol": 3, + "endRow": 21, + "id": "3,3,21,21", + "startCol": 3, + "startRow": 21 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7231 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 7234 + }, + { + "#": 7235 + }, + { + "#": 7236 + }, + { + "#": 7237 + }, + { + "#": 7238 + }, + { + "#": 7239 + }, + { + "#": 7240 + }, + { + "#": 7241 + }, + { + "#": 7242 + }, + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + }, + { + "#": 7246 + }, + { + "#": 7247 + }, + { + "#": 7248 + }, + { + "#": 7249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 190.56400000000002, + "y": 1035.4787547670262 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 188.30200000000002, + "y": 1040.9397547670262 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 184.122, + "y": 1045.1197547670263 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 178.66100000000003, + "y": 1047.3817547670262 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 172.751, + "y": 1047.3817547670262 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 167.29000000000002, + "y": 1045.1197547670263 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 163.11, + "y": 1040.9397547670262 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 160.848, + "y": 1035.4787547670262 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 160.848, + "y": 1029.5687547670263 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 163.11, + "y": 1024.1077547670266 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 167.29000000000002, + "y": 1019.9277547670266 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 172.751, + "y": 1017.6657547670267 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 178.66100000000003, + "y": 1017.6657547670267 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 184.122, + "y": 1019.9277547670266 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 188.30200000000002, + "y": 1024.1077547670266 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 190.56400000000002, + "y": 1029.5687547670263 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1565.200396, + "axes": { + "#": 7251 + }, + "bounds": { + "#": 7264 + }, + "circleRadius": 22.448881172839506, + "collisionFilter": { + "#": 7267 + }, + "constraintImpulse": { + "#": 7268 + }, + "density": 0.001, + "force": { + "#": 7269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 147, + "inertia": 1559.6654377284024, + "inverseInertia": 0.0006411631467941385, + "inverseMass": 0.638895826090757, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.565200396, + "motion": 0, + "parent": null, + "position": { + "#": 7270 + }, + "positionImpulse": { + "#": 7271 + }, + "positionPrev": { + "#": 7272 + }, + "region": { + "#": 7273 + }, + "render": { + "#": 7274 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7276 + }, + "vertices": { + "#": 7277 + } + }, + [ + { + "#": 7252 + }, + { + "#": 7253 + }, + { + "#": 7254 + }, + { + "#": 7255 + }, + { + "#": 7256 + }, + { + "#": 7257 + }, + { + "#": 7258 + }, + { + "#": 7259 + }, + { + "#": 7260 + }, + { + "#": 7261 + }, + { + "#": 7262 + }, + { + "#": 7263 + } + ], + { + "x": -0.9659198702250078, + "y": -0.2588412724132379 + }, + { + "x": -0.8660292916676339, + "y": -0.49999326592830867 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.49999326592830867, + "y": -0.8660292916676339 + }, + { + "x": -0.2588412724132379, + "y": -0.9659198702250078 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588412724132379, + "y": -0.9659198702250078 + }, + { + "x": 0.49999326592830867, + "y": -0.8660292916676339 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660292916676339, + "y": -0.49999326592830867 + }, + { + "x": 0.9659198702250078, + "y": -0.2588412724132379 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7265 + }, + "min": { + "#": 7266 + } + }, + { + "x": 245.07800000000003, + "y": 1062.1797547670265 + }, + { + "x": 200.56400000000002, + "y": 1017.6657547670267 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 222.82100000000003, + "y": 1039.9227547670264 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 222.82100000000003, + "y": 1037.0154840519908 + }, + { + "endCol": 5, + "endRow": 22, + "id": "4,5,21,22", + "startCol": 4, + "startRow": 21 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7275 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 7278 + }, + { + "#": 7279 + }, + { + "#": 7280 + }, + { + "#": 7281 + }, + { + "#": 7282 + }, + { + "#": 7283 + }, + { + "#": 7284 + }, + { + "#": 7285 + }, + { + "#": 7286 + }, + { + "#": 7287 + }, + { + "#": 7288 + }, + { + "#": 7289 + }, + { + "#": 7290 + }, + { + "#": 7291 + }, + { + "#": 7292 + }, + { + "#": 7293 + }, + { + "#": 7294 + }, + { + "#": 7295 + }, + { + "#": 7296 + }, + { + "#": 7297 + }, + { + "#": 7298 + }, + { + "#": 7299 + }, + { + "#": 7300 + }, + { + "#": 7301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.07800000000003, + "y": 1042.8527547670265 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.56100000000004, + "y": 1048.5137547670265 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 240.63100000000003, + "y": 1053.5887547670266 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 236.48700000000002, + "y": 1057.7327547670263 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 231.41200000000003, + "y": 1060.6627547670266 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 225.75100000000003, + "y": 1062.1797547670265 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 219.89100000000002, + "y": 1062.1797547670265 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 214.23000000000002, + "y": 1060.6627547670266 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 209.15500000000003, + "y": 1057.7327547670263 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 205.01100000000002, + "y": 1053.5887547670266 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 202.08100000000002, + "y": 1048.5137547670265 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 200.56400000000002, + "y": 1042.8527547670265 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 200.56400000000002, + "y": 1036.9927547670263 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 202.08100000000002, + "y": 1031.3317547670263 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 205.01100000000002, + "y": 1026.2567547670265 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 209.15500000000003, + "y": 1022.1127547670267 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 214.23000000000002, + "y": 1019.1827547670266 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 219.89100000000002, + "y": 1017.6657547670267 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 225.75100000000003, + "y": 1017.6657547670267 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 231.41200000000003, + "y": 1019.1827547670266 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 236.48700000000002, + "y": 1022.1127547670267 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 240.63100000000003, + "y": 1026.2567547670265 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 243.56100000000004, + "y": 1031.3317547670263 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 245.07800000000003, + "y": 1036.9927547670263 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1931.8577320000002, + "axes": { + "#": 7303 + }, + "bounds": { + "#": 7317 + }, + "circleRadius": 24.918917181069958, + "collisionFilter": { + "#": 7320 + }, + "constraintImpulse": { + "#": 7321 + }, + "density": 0.001, + "force": { + "#": 7322 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": 2375.9576222951223, + "inverseInertia": 0.00042088292763152154, + "inverseMass": 0.517636461233989, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.931857732, + "motion": 0, + "parent": null, + "position": { + "#": 7323 + }, + "positionImpulse": { + "#": 7324 + }, + "positionPrev": { + "#": 7325 + }, + "region": { + "#": 7326 + }, + "render": { + "#": 7327 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7329 + }, + "vertices": { + "#": 7330 + } + }, + [ + { + "#": 7304 + }, + { + "#": 7305 + }, + { + "#": 7306 + }, + { + "#": 7307 + }, + { + "#": 7308 + }, + { + "#": 7309 + }, + { + "#": 7310 + }, + { + "#": 7311 + }, + { + "#": 7312 + }, + { + "#": 7313 + }, + { + "#": 7314 + }, + { + "#": 7315 + }, + { + "#": 7316 + } + ], + { + "x": -0.970959567412021, + "y": -0.23924363826664466 + }, + { + "x": -0.8854663941956201, + "y": -0.46470341590116027 + }, + { + "x": -0.7484370760332898, + "y": -0.6632058075882173 + }, + { + "x": -0.5681102026406644, + "y": -0.8229524880912525 + }, + { + "x": -0.35456892402501616, + "y": -0.9350298808678482 + }, + { + "x": -0.1205302350208059, + "y": -0.9927096566699799 + }, + { + "x": 0.1205302350208059, + "y": -0.9927096566699799 + }, + { + "x": 0.35456892402501616, + "y": -0.9350298808678482 + }, + { + "x": 0.5681102026406644, + "y": -0.8229524880912525 + }, + { + "x": 0.7484370760332898, + "y": -0.6632058075882173 + }, + { + "x": 0.8854663941956201, + "y": -0.46470341590116027 + }, + { + "x": 0.970959567412021, + "y": -0.23924363826664466 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7318 + }, + "min": { + "#": 7319 + } + }, + { + "x": 304.5520000000001, + "y": 1067.503754767027 + }, + { + "x": 255.07800000000006, + "y": 1017.6657547670271 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 279.81500000000005, + "y": 1042.5847547670269 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 279.81500000000005, + "y": 1039.6774840519913 + }, + { + "endCol": 6, + "endRow": 22, + "id": "5,6,21,22", + "startCol": 5, + "startRow": 21 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7328 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 7331 + }, + { + "#": 7332 + }, + { + "#": 7333 + }, + { + "#": 7334 + }, + { + "#": 7335 + }, + { + "#": 7336 + }, + { + "#": 7337 + }, + { + "#": 7338 + }, + { + "#": 7339 + }, + { + "#": 7340 + }, + { + "#": 7341 + }, + { + "#": 7342 + }, + { + "#": 7343 + }, + { + "#": 7344 + }, + { + "#": 7345 + }, + { + "#": 7346 + }, + { + "#": 7347 + }, + { + "#": 7348 + }, + { + "#": 7349 + }, + { + "#": 7350 + }, + { + "#": 7351 + }, + { + "#": 7352 + }, + { + "#": 7353 + }, + { + "#": 7354 + }, + { + "#": 7355 + }, + { + "#": 7356 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.5520000000001, + "y": 1045.5887547670268 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 303.11500000000007, + "y": 1051.420754767027 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300.32300000000004, + "y": 1056.7407547670268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 296.33900000000006, + "y": 1061.236754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.39500000000004, + "y": 1064.649754767027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.7780000000001, + "y": 1066.7797547670268 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 279.81500000000005, + "y": 1067.503754767027 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 273.8520000000001, + "y": 1066.7797547670268 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 268.235, + "y": 1064.649754767027 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 263.29100000000005, + "y": 1061.236754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 259.307, + "y": 1056.7407547670268 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.51500000000004, + "y": 1051.420754767027 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 255.07800000000006, + "y": 1045.5887547670268 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 255.07800000000006, + "y": 1039.5807547670267 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 256.51500000000004, + "y": 1033.7487547670269 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 259.307, + "y": 1028.428754767027 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 263.29100000000005, + "y": 1023.9327547670271 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 268.235, + "y": 1020.519754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 273.8520000000001, + "y": 1018.3897547670271 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 279.81500000000005, + "y": 1017.6657547670271 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 285.7780000000001, + "y": 1018.3897547670271 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 291.39500000000004, + "y": 1020.519754767027 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 296.33900000000006, + "y": 1023.9327547670271 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 300.32300000000004, + "y": 1028.428754767027 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 303.11500000000007, + "y": 1033.7487547670269 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 304.5520000000001, + "y": 1039.5807547670267 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1164.285644, + "axes": { + "#": 7358 + }, + "bounds": { + "#": 7369 + }, + "circleRadius": 19.410558127572017, + "collisionFilter": { + "#": 7372 + }, + "constraintImpulse": { + "#": 7373 + }, + "density": 0.001, + "force": { + "#": 7374 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 149, + "inertia": 863.0242301481517, + "inverseInertia": 0.001158716018701276, + "inverseMass": 0.8588957573713758, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.164285644, + "motion": 0, + "parent": null, + "position": { + "#": 7375 + }, + "positionImpulse": { + "#": 7376 + }, + "positionPrev": { + "#": 7377 + }, + "region": { + "#": 7378 + }, + "render": { + "#": 7379 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035433, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7381 + }, + "vertices": { + "#": 7382 + } + }, + [ + { + "#": 7359 + }, + { + "#": 7360 + }, + { + "#": 7361 + }, + { + "#": 7362 + }, + { + "#": 7363 + }, + { + "#": 7364 + }, + { + "#": 7365 + }, + { + "#": 7366 + }, + { + "#": 7367 + }, + { + "#": 7368 + } + ], + { + "x": -0.9510437483416532, + "y": -0.3090562873333244 + }, + { + "x": -0.8089781115544842, + "y": -0.5878387661814595 + }, + { + "x": -0.5878387661814595, + "y": -0.8089781115544842 + }, + { + "x": -0.3090562873333244, + "y": -0.9510437483416532 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090562873333244, + "y": -0.9510437483416532 + }, + { + "x": 0.5878387661814595, + "y": -0.8089781115544842 + }, + { + "x": 0.8089781115544842, + "y": -0.5878387661814595 + }, + { + "x": 0.9510437483416532, + "y": -0.3090562873333244 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7370 + }, + "min": { + "#": 7371 + } + }, + { + "x": 352.89600000000013, + "y": 1056.0097547670252 + }, + { + "x": 314.5520000000001, + "y": 1017.6657547670255 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.7240000000001, + "y": 1036.837754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.7240000000001, + "y": 1033.9304840519897 + }, + { + "endCol": 7, + "endRow": 22, + "id": "6,7,21,22", + "startCol": 6, + "startRow": 21 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7380 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035433 + }, + [ + { + "#": 7383 + }, + { + "#": 7384 + }, + { + "#": 7385 + }, + { + "#": 7386 + }, + { + "#": 7387 + }, + { + "#": 7388 + }, + { + "#": 7389 + }, + { + "#": 7390 + }, + { + "#": 7391 + }, + { + "#": 7392 + }, + { + "#": 7393 + }, + { + "#": 7394 + }, + { + "#": 7395 + }, + { + "#": 7396 + }, + { + "#": 7397 + }, + { + "#": 7398 + }, + { + "#": 7399 + }, + { + "#": 7400 + }, + { + "#": 7401 + }, + { + "#": 7402 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 352.89600000000013, + "y": 1039.873754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 351.0190000000001, + "y": 1045.6497547670253 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 347.4490000000001, + "y": 1050.5627547670254 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 342.5360000000001, + "y": 1054.132754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 336.7600000000001, + "y": 1056.0097547670252 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 330.6880000000001, + "y": 1056.0097547670252 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.9120000000001, + "y": 1054.132754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 319.9990000000001, + "y": 1050.5627547670254 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 316.4290000000001, + "y": 1045.6497547670253 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 314.5520000000001, + "y": 1039.873754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 314.5520000000001, + "y": 1033.8017547670254 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 316.4290000000001, + "y": 1028.0257547670253 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 319.9990000000001, + "y": 1023.1127547670255 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 324.9120000000001, + "y": 1019.5427547670256 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 330.6880000000001, + "y": 1017.6657547670255 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 336.7600000000001, + "y": 1017.6657547670255 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 342.5360000000001, + "y": 1019.5427547670256 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 347.4490000000001, + "y": 1023.1127547670255 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 351.0190000000001, + "y": 1028.0257547670253 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 352.89600000000013, + "y": 1033.8017547670254 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1102.2695840000001, + "axes": { + "#": 7404 + }, + "bounds": { + "#": 7415 + }, + "circleRadius": 18.886766975308642, + "collisionFilter": { + "#": 7418 + }, + "constraintImpulse": { + "#": 7419 + }, + "density": 0.001, + "force": { + "#": 7420 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 150, + "inertia": 773.5342557734692, + "inverseInertia": 0.0012927675698086365, + "inverseMass": 0.9072190818974825, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.102269584, + "motion": 0, + "parent": null, + "position": { + "#": 7421 + }, + "positionImpulse": { + "#": 7422 + }, + "positionPrev": { + "#": 7423 + }, + "region": { + "#": 7424 + }, + "render": { + "#": 7425 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035433, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7427 + }, + "vertices": { + "#": 7428 + } + }, + [ + { + "#": 7405 + }, + { + "#": 7406 + }, + { + "#": 7407 + }, + { + "#": 7408 + }, + { + "#": 7409 + }, + { + "#": 7410 + }, + { + "#": 7411 + }, + { + "#": 7412 + }, + { + "#": 7413 + }, + { + "#": 7414 + } + ], + { + "x": -0.9510427750736182, + "y": -0.30905928230724816 + }, + { + "x": -0.8090652604703894, + "y": -0.5877188139748298 + }, + { + "x": -0.5877188139748298, + "y": -0.8090652604703894 + }, + { + "x": -0.30905928230724816, + "y": -0.9510427750736182 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905928230724816, + "y": -0.9510427750736182 + }, + { + "x": 0.5877188139748298, + "y": -0.8090652604703894 + }, + { + "x": 0.8090652604703894, + "y": -0.5877188139748298 + }, + { + "x": 0.9510427750736182, + "y": -0.30905928230724816 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7416 + }, + "min": { + "#": 7417 + } + }, + { + "x": 400.2040000000001, + "y": 1054.9737547670252 + }, + { + "x": 362.89600000000013, + "y": 1017.6657547670255 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 381.5500000000001, + "y": 1036.319754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 381.5500000000001, + "y": 1033.4124840519896 + }, + { + "endCol": 8, + "endRow": 21, + "id": "7,8,21,21", + "startCol": 7, + "startRow": 21 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7426 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035433 + }, + [ + { + "#": 7429 + }, + { + "#": 7430 + }, + { + "#": 7431 + }, + { + "#": 7432 + }, + { + "#": 7433 + }, + { + "#": 7434 + }, + { + "#": 7435 + }, + { + "#": 7436 + }, + { + "#": 7437 + }, + { + "#": 7438 + }, + { + "#": 7439 + }, + { + "#": 7440 + }, + { + "#": 7441 + }, + { + "#": 7442 + }, + { + "#": 7443 + }, + { + "#": 7444 + }, + { + "#": 7445 + }, + { + "#": 7446 + }, + { + "#": 7447 + }, + { + "#": 7448 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400.2040000000001, + "y": 1039.2747547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 398.3780000000001, + "y": 1044.893754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 394.90500000000014, + "y": 1049.6747547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 390.12400000000014, + "y": 1053.1477547670252 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 384.5050000000001, + "y": 1054.9737547670252 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 378.59500000000014, + "y": 1054.9737547670252 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 372.9760000000001, + "y": 1053.1477547670252 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 368.1950000000001, + "y": 1049.6747547670252 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 364.72200000000015, + "y": 1044.893754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 362.89600000000013, + "y": 1039.2747547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 362.89600000000013, + "y": 1033.3647547670253 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 364.72200000000015, + "y": 1027.7457547670253 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 368.1950000000001, + "y": 1022.9647547670255 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 372.9760000000001, + "y": 1019.4917547670256 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 378.59500000000014, + "y": 1017.6657547670255 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 384.5050000000001, + "y": 1017.6657547670255 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 390.12400000000014, + "y": 1019.4917547670256 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 394.90500000000014, + "y": 1022.9647547670255 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 398.3780000000001, + "y": 1027.7457547670253 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 400.2040000000001, + "y": 1033.3647547670253 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2632.366764, + "axes": { + "#": 7450 + }, + "bounds": { + "#": 7464 + }, + "circleRadius": 29.08828446502058, + "collisionFilter": { + "#": 7467 + }, + "constraintImpulse": { + "#": 7468 + }, + "density": 0.001, + "force": { + "#": 7469 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": 4411.448432356564, + "inverseInertia": 0.0002266829172625752, + "inverseMass": 0.37988627332479113, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.632366764, + "motion": 0, + "parent": null, + "position": { + "#": 7470 + }, + "positionImpulse": { + "#": 7471 + }, + "positionPrev": { + "#": 7472 + }, + "region": { + "#": 7473 + }, + "render": { + "#": 7474 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7476 + }, + "vertices": { + "#": 7477 + } + }, + [ + { + "#": 7451 + }, + { + "#": 7452 + }, + { + "#": 7453 + }, + { + "#": 7454 + }, + { + "#": 7455 + }, + { + "#": 7456 + }, + { + "#": 7457 + }, + { + "#": 7458 + }, + { + "#": 7459 + }, + { + "#": 7460 + }, + { + "#": 7461 + }, + { + "#": 7462 + }, + { + "#": 7463 + } + ], + { + "x": -0.9709506891175149, + "y": -0.2392796675487136 + }, + { + "x": -0.8854404503453225, + "y": -0.4647528471050742 + }, + { + "x": -0.7485254861082281, + "y": -0.6631060221762737 + }, + { + "x": -0.5680228558108505, + "y": -0.8230127795341247 + }, + { + "x": -0.3546370394943198, + "y": -0.9350040482365326 + }, + { + "x": -0.12050598301835631, + "y": -0.9927126009358296 + }, + { + "x": 0.12050598301835631, + "y": -0.9927126009358296 + }, + { + "x": 0.3546370394943198, + "y": -0.9350040482365326 + }, + { + "x": 0.5680228558108505, + "y": -0.8230127795341247 + }, + { + "x": 0.7485254861082281, + "y": -0.6631060221762737 + }, + { + "x": 0.8854404503453225, + "y": -0.4647528471050742 + }, + { + "x": 0.9709506891175149, + "y": -0.2392796675487136 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7465 + }, + "min": { + "#": 7466 + } + }, + { + "x": 467.9560000000001, + "y": 1075.8417547670267 + }, + { + "x": 410.2040000000001, + "y": 1017.665754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 439.0800000000001, + "y": 1046.7537547670267 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 439.0800000000001, + "y": 1043.8464840519912 + }, + { + "endCol": 9, + "endRow": 22, + "id": "8,9,21,22", + "startCol": 8, + "startRow": 21 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7475 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 7478 + }, + { + "#": 7479 + }, + { + "#": 7480 + }, + { + "#": 7481 + }, + { + "#": 7482 + }, + { + "#": 7483 + }, + { + "#": 7484 + }, + { + "#": 7485 + }, + { + "#": 7486 + }, + { + "#": 7487 + }, + { + "#": 7488 + }, + { + "#": 7489 + }, + { + "#": 7490 + }, + { + "#": 7491 + }, + { + "#": 7492 + }, + { + "#": 7493 + }, + { + "#": 7494 + }, + { + "#": 7495 + }, + { + "#": 7496 + }, + { + "#": 7497 + }, + { + "#": 7498 + }, + { + "#": 7499 + }, + { + "#": 7500 + }, + { + "#": 7501 + }, + { + "#": 7502 + }, + { + "#": 7503 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 467.9560000000001, + "y": 1050.2597547670266 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 466.2780000000001, + "y": 1057.0687547670268 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 463.0190000000001, + "y": 1063.2777547670266 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 458.3690000000001, + "y": 1068.526754767027 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 452.59800000000007, + "y": 1072.5097547670268 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 446.0410000000001, + "y": 1074.9967547670267 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 439.0800000000001, + "y": 1075.8417547670267 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 432.1190000000001, + "y": 1074.9967547670267 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.5620000000001, + "y": 1072.5097547670268 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 419.7910000000001, + "y": 1068.526754767027 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 415.1410000000001, + "y": 1063.2777547670266 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 411.8820000000001, + "y": 1057.0687547670268 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 410.2040000000001, + "y": 1050.2597547670266 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 410.2040000000001, + "y": 1043.247754767027 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 411.8820000000001, + "y": 1036.4387547670267 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 415.1410000000001, + "y": 1030.2297547670266 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 419.7910000000001, + "y": 1024.9807547670268 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 425.5620000000001, + "y": 1020.997754767027 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 432.1190000000001, + "y": 1018.5107547670269 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 439.0800000000001, + "y": 1017.665754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 446.0410000000001, + "y": 1018.5107547670269 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 452.59800000000007, + "y": 1020.997754767027 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 458.3690000000001, + "y": 1024.9807547670268 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 463.0190000000001, + "y": 1030.2297547670266 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 466.2780000000001, + "y": 1036.4387547670267 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 467.9560000000001, + "y": 1043.247754767027 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1264.582704, + "axes": { + "#": 7505 + }, + "bounds": { + "#": 7517 + }, + "circleRadius": 20.200295781893004, + "collisionFilter": { + "#": 7520 + }, + "constraintImpulse": { + "#": 7521 + }, + "density": 0.001, + "force": { + "#": 7522 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 152, + "inertia": 1018.1008680363917, + "inverseInertia": 0.0009822209482334469, + "inverseMass": 0.7907746933726844, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.264582704, + "motion": 0, + "parent": null, + "position": { + "#": 7523 + }, + "positionImpulse": { + "#": 7524 + }, + "positionPrev": { + "#": 7525 + }, + "region": { + "#": 7526 + }, + "render": { + "#": 7527 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035433, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7529 + }, + "vertices": { + "#": 7530 + } + }, + [ + { + "#": 7506 + }, + { + "#": 7507 + }, + { + "#": 7508 + }, + { + "#": 7509 + }, + { + "#": 7510 + }, + { + "#": 7511 + }, + { + "#": 7512 + }, + { + "#": 7513 + }, + { + "#": 7514 + }, + { + "#": 7515 + }, + { + "#": 7516 + } + ], + { + "x": -0.9594900287513833, + "y": -0.2817425859302596 + }, + { + "x": -0.8411671723221078, + "y": -0.5407751734386752 + }, + { + "x": -0.6549636434241192, + "y": -0.7556603905145507 + }, + { + "x": -0.4153486707992586, + "y": -0.909662289899548 + }, + { + "x": -0.14227355372381703, + "y": -0.9898273768242603 + }, + { + "x": 0.14227355372381703, + "y": -0.9898273768242603 + }, + { + "x": 0.4153486707992586, + "y": -0.909662289899548 + }, + { + "x": 0.6549636434241192, + "y": -0.7556603905145507 + }, + { + "x": 0.8411671723221078, + "y": -0.5407751734386752 + }, + { + "x": 0.9594900287513833, + "y": -0.2817425859302596 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7518 + }, + "min": { + "#": 7519 + } + }, + { + "x": 517.9460000000001, + "y": 1058.065754767025 + }, + { + "x": 477.9560000000001, + "y": 1017.6657547670253 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 497.9510000000001, + "y": 1037.8657547670248 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 497.9510000000001, + "y": 1034.9584840519894 + }, + { + "endCol": 10, + "endRow": 22, + "id": "9,10,21,22", + "startCol": 9, + "startRow": 21 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7528 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035433 + }, + [ + { + "#": 7531 + }, + { + "#": 7532 + }, + { + "#": 7533 + }, + { + "#": 7534 + }, + { + "#": 7535 + }, + { + "#": 7536 + }, + { + "#": 7537 + }, + { + "#": 7538 + }, + { + "#": 7539 + }, + { + "#": 7540 + }, + { + "#": 7541 + }, + { + "#": 7542 + }, + { + "#": 7543 + }, + { + "#": 7544 + }, + { + "#": 7545 + }, + { + "#": 7546 + }, + { + "#": 7547 + }, + { + "#": 7548 + }, + { + "#": 7549 + }, + { + "#": 7550 + }, + { + "#": 7551 + }, + { + "#": 7552 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 517.9460000000001, + "y": 1040.7407547670248 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 516.326, + "y": 1046.257754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 513.2170000000001, + "y": 1051.093754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 508.87200000000007, + "y": 1054.8597547670252 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.64200000000005, + "y": 1057.247754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 497.9510000000001, + "y": 1058.065754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 492.2600000000001, + "y": 1057.247754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 487.0300000000001, + "y": 1054.8597547670252 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 482.68500000000006, + "y": 1051.093754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 479.5760000000001, + "y": 1046.257754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 477.9560000000001, + "y": 1040.7407547670248 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 477.9560000000001, + "y": 1034.990754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 479.5760000000001, + "y": 1029.4737547670252 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 482.68500000000006, + "y": 1024.6377547670254 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 487.0300000000001, + "y": 1020.8717547670253 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 492.2600000000001, + "y": 1018.4837547670254 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 497.9510000000001, + "y": 1017.6657547670253 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 503.64200000000005, + "y": 1018.4837547670254 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 508.87200000000007, + "y": 1020.8717547670253 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 513.2170000000001, + "y": 1024.6377547670254 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 516.326, + "y": 1029.4737547670252 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 517.9460000000001, + "y": 1034.990754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2530.374598000001, + "axes": { + "#": 7554 + }, + "bounds": { + "#": 7568 + }, + "circleRadius": 28.51909722222222, + "collisionFilter": { + "#": 7571 + }, + "constraintImpulse": { + "#": 7572 + }, + "density": 0.001, + "force": { + "#": 7573 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 153, + "inertia": 4076.2240565460306, + "inverseInertia": 0.00024532508177368083, + "inverseMass": 0.39519840295203584, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.5303745980000008, + "motion": 0, + "parent": null, + "position": { + "#": 7574 + }, + "positionImpulse": { + "#": 7575 + }, + "positionPrev": { + "#": 7576 + }, + "region": { + "#": 7577 + }, + "render": { + "#": 7578 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7580 + }, + "vertices": { + "#": 7581 + } + }, + [ + { + "#": 7555 + }, + { + "#": 7556 + }, + { + "#": 7557 + }, + { + "#": 7558 + }, + { + "#": 7559 + }, + { + "#": 7560 + }, + { + "#": 7561 + }, + { + "#": 7562 + }, + { + "#": 7563 + }, + { + "#": 7564 + }, + { + "#": 7565 + }, + { + "#": 7566 + }, + { + "#": 7567 + } + ], + { + "x": -0.9709499198104373, + "y": -0.23928278922669202 + }, + { + "x": -0.8854697240415134, + "y": -0.4646970710106168 + }, + { + "x": -0.7485077289974239, + "y": -0.6631260661677528 + }, + { + "x": -0.567953853605749, + "y": -0.8230603988616991 + }, + { + "x": -0.35462792443102925, + "y": -0.9350075054317694 + }, + { + "x": -0.12057895971706822, + "y": -0.9927037395283396 + }, + { + "x": 0.12057895971706822, + "y": -0.9927037395283396 + }, + { + "x": 0.35462792443102925, + "y": -0.9350075054317694 + }, + { + "x": 0.567953853605749, + "y": -0.8230603988616991 + }, + { + "x": 0.7485077289974239, + "y": -0.6631260661677528 + }, + { + "x": 0.8854697240415134, + "y": -0.4646970710106168 + }, + { + "x": 0.9709499198104373, + "y": -0.23928278922669202 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7569 + }, + "min": { + "#": 7570 + } + }, + { + "x": 584.5680000000002, + "y": 1074.7037547670268 + }, + { + "x": 527.9460000000001, + "y": 1017.665754767027 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.2570000000002, + "y": 1046.1847547670268 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.2570000000002, + "y": 1043.2774840519912 + }, + { + "endCol": 12, + "endRow": 22, + "id": "10,12,21,22", + "startCol": 10, + "startRow": 21 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7579 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 7582 + }, + { + "#": 7583 + }, + { + "#": 7584 + }, + { + "#": 7585 + }, + { + "#": 7586 + }, + { + "#": 7587 + }, + { + "#": 7588 + }, + { + "#": 7589 + }, + { + "#": 7590 + }, + { + "#": 7591 + }, + { + "#": 7592 + }, + { + "#": 7593 + }, + { + "#": 7594 + }, + { + "#": 7595 + }, + { + "#": 7596 + }, + { + "#": 7597 + }, + { + "#": 7598 + }, + { + "#": 7599 + }, + { + "#": 7600 + }, + { + "#": 7601 + }, + { + "#": 7602 + }, + { + "#": 7603 + }, + { + "#": 7604 + }, + { + "#": 7605 + }, + { + "#": 7606 + }, + { + "#": 7607 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 584.5680000000002, + "y": 1049.622754767027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 582.9230000000002, + "y": 1056.2977547670268 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 579.7280000000002, + "y": 1062.3857547670268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575.1690000000002, + "y": 1067.5317547670268 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 569.5100000000002, + "y": 1071.4367547670267 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.0820000000002, + "y": 1073.8747547670268 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 556.2570000000002, + "y": 1074.7037547670268 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 549.4320000000001, + "y": 1073.8747547670268 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 543.0040000000001, + "y": 1071.4367547670267 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 537.3450000000003, + "y": 1067.5317547670268 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.7860000000002, + "y": 1062.3857547670268 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 529.5910000000001, + "y": 1056.2977547670268 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 527.9460000000001, + "y": 1049.622754767027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.9460000000001, + "y": 1042.7467547670267 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 529.5910000000001, + "y": 1036.0717547670267 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 532.7860000000002, + "y": 1029.9837547670268 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 537.3450000000003, + "y": 1024.837754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 543.0040000000001, + "y": 1020.9327547670271 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 549.4320000000001, + "y": 1018.494754767027 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.2570000000002, + "y": 1017.665754767027 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 563.0820000000002, + "y": 1018.494754767027 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 569.5100000000002, + "y": 1020.9327547670271 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 575.1690000000002, + "y": 1024.837754767027 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 579.7280000000002, + "y": 1029.9837547670268 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 582.9230000000002, + "y": 1036.0717547670267 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 584.5680000000002, + "y": 1042.7467547670267 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2459.8208880000007, + "axes": { + "#": 7609 + }, + "bounds": { + "#": 7623 + }, + "circleRadius": 28.118762860082306, + "collisionFilter": { + "#": 7626 + }, + "constraintImpulse": { + "#": 7627 + }, + "density": 0.001, + "force": { + "#": 7628 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": 3852.0807238730777, + "inverseInertia": 0.00025959995952383604, + "inverseMass": 0.4065336646576195, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.4598208880000008, + "motion": 0, + "parent": null, + "position": { + "#": 7629 + }, + "positionImpulse": { + "#": 7630 + }, + "positionPrev": { + "#": 7631 + }, + "region": { + "#": 7632 + }, + "render": { + "#": 7633 + }, + "restitution": 0.6, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7635 + }, + "vertices": { + "#": 7636 + } + }, + [ + { + "#": 7610 + }, + { + "#": 7611 + }, + { + "#": 7612 + }, + { + "#": 7613 + }, + { + "#": 7614 + }, + { + "#": 7615 + }, + { + "#": 7616 + }, + { + "#": 7617 + }, + { + "#": 7618 + }, + { + "#": 7619 + }, + { + "#": 7620 + }, + { + "#": 7621 + }, + { + "#": 7622 + } + ], + { + "x": -0.970918412420747, + "y": -0.2394106021511506 + }, + { + "x": -0.8854616473223555, + "y": -0.46471246069067335 + }, + { + "x": -0.7485233238858229, + "y": -0.6631084629221072 + }, + { + "x": -0.5680741729531639, + "y": -0.8229773593626856 + }, + { + "x": -0.3546453397852063, + "y": -0.9350008999827945 + }, + { + "x": -0.12052962549589565, + "y": -0.9927097306754977 + }, + { + "x": 0.12052962549589565, + "y": -0.9927097306754977 + }, + { + "x": 0.3546453397852063, + "y": -0.9350008999827945 + }, + { + "x": 0.5680741729531639, + "y": -0.8229773593626856 + }, + { + "x": 0.7485233238858229, + "y": -0.6631084629221072 + }, + { + "x": 0.8854616473223555, + "y": -0.46471246069067335 + }, + { + "x": 0.970918412420747, + "y": -0.2394106021511506 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7624 + }, + "min": { + "#": 7625 + } + }, + { + "x": 650.3960000000002, + "y": 1073.9037547670266 + }, + { + "x": 594.5680000000002, + "y": 1017.6657547670269 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 622.4820000000002, + "y": 1045.7847547670267 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 622.4820000000002, + "y": 1042.8774840519911 + }, + { + "endCol": 13, + "endRow": 22, + "id": "12,13,21,22", + "startCol": 12, + "startRow": 21 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7634 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 7637 + }, + { + "#": 7638 + }, + { + "#": 7639 + }, + { + "#": 7640 + }, + { + "#": 7641 + }, + { + "#": 7642 + }, + { + "#": 7643 + }, + { + "#": 7644 + }, + { + "#": 7645 + }, + { + "#": 7646 + }, + { + "#": 7647 + }, + { + "#": 7648 + }, + { + "#": 7649 + }, + { + "#": 7650 + }, + { + "#": 7651 + }, + { + "#": 7652 + }, + { + "#": 7653 + }, + { + "#": 7654 + }, + { + "#": 7655 + }, + { + "#": 7656 + }, + { + "#": 7657 + }, + { + "#": 7658 + }, + { + "#": 7659 + }, + { + "#": 7660 + }, + { + "#": 7661 + }, + { + "#": 7662 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650.3960000000002, + "y": 1049.1737547670268 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 648.7730000000003, + "y": 1055.7557547670267 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 645.6230000000002, + "y": 1061.7577547670267 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 641.1280000000002, + "y": 1066.8317547670267 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 635.5490000000002, + "y": 1070.6827547670266 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 629.2110000000002, + "y": 1073.0867547670266 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 622.4820000000002, + "y": 1073.9037547670266 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 615.7530000000002, + "y": 1073.0867547670266 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 609.4150000000002, + "y": 1070.6827547670266 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 603.8360000000002, + "y": 1066.8317547670267 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 599.3410000000002, + "y": 1061.7577547670267 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 596.1910000000001, + "y": 1055.7557547670267 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 594.5680000000002, + "y": 1049.1737547670268 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 594.5680000000002, + "y": 1042.3957547670266 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 596.1910000000001, + "y": 1035.8137547670265 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 599.3410000000002, + "y": 1029.8117547670267 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 603.8360000000002, + "y": 1024.737754767027 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.4150000000002, + "y": 1020.8867547670269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 615.7530000000002, + "y": 1018.4827547670269 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 622.4820000000002, + "y": 1017.6657547670269 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 629.2110000000002, + "y": 1018.4827547670269 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 635.5490000000002, + "y": 1020.8867547670269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 641.1280000000002, + "y": 1024.737754767027 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 645.6230000000002, + "y": 1029.8117547670267 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 648.7730000000003, + "y": 1035.8137547670265 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 650.3960000000002, + "y": 1042.3957547670266 + }, + [], + [], + [ + { + "#": 7666 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 7667 + }, + "pointB": "", + "render": { + "#": 7668 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 7670 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/beachBalls/beachBalls-0.json b/tests/browser/refs/beachBalls/beachBalls-0.json new file mode 100644 index 00000000..c48c7131 --- /dev/null +++ b/tests/browser/refs/beachBalls/beachBalls-0.json @@ -0,0 +1,3307 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 364 + }, + "events": { + "#": 368 + }, + "gravity": { + "#": 370 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 362 + }, + "constraints": { + "#": 363 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 146 + }, + { + "#": 200 + }, + { + "#": 254 + }, + { + "#": 308 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 17499.922508000003, + "axes": { + "#": 93 + }, + "bounds": { + "#": 107 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 110 + }, + "constraintImpulse": { + "#": 111 + }, + "density": 0.001, + "force": { + "#": 112 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 113 + }, + "positionImpulse": { + "#": 114 + }, + "positionPrev": { + "#": 115 + }, + "render": { + "#": 116 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 118 + }, + "vertices": { + "#": 119 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "x": -0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": -0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": -0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": -0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": -0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": -0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": 0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": 0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": 0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": 0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 108 + }, + "min": { + "#": 109 + } + }, + { + "x": 148.906, + "y": 250 + }, + { + "x": 0, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 74.453, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 74.453, + "y": 175 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 117 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 148.906, + "y": 184.04 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 144.579, + "y": 201.595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 136.177, + "y": 217.605 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 124.18700000000001, + "y": 231.138 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 109.307, + "y": 241.409 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 92.402, + "y": 247.821 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 74.453, + "y": 250 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 56.504000000000005, + "y": 247.821 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 39.599000000000004, + "y": 241.409 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 24.719, + "y": 231.138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 12.729000000000006, + "y": 217.605 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 4.326999999999998, + "y": 201.595 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 0, + "y": 184.04 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 0, + "y": 165.96 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 4.326999999999998, + "y": 148.405 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 12.729000000000006, + "y": 132.395 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 24.719, + "y": 118.862 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 39.599000000000004, + "y": 108.591 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 56.504000000000005, + "y": 102.179 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 74.453, + "y": 100 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 92.402, + "y": 102.179 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 109.307, + "y": 108.591 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 124.18700000000001, + "y": 118.862 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 136.177, + "y": 132.395 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 144.579, + "y": 148.405 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 148.906, + "y": 165.96 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 17499.922508000003, + "axes": { + "#": 147 + }, + "bounds": { + "#": 161 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 164 + }, + "constraintImpulse": { + "#": 165 + }, + "density": 0.001, + "force": { + "#": 166 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 167 + }, + "positionImpulse": { + "#": 168 + }, + "positionPrev": { + "#": 169 + }, + "render": { + "#": 170 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 172 + }, + "vertices": { + "#": 173 + } + }, + [ + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + } + ], + { + "x": -0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": -0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": -0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": -0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": -0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": -0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": 0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": 0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": 0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": 0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 162 + }, + "min": { + "#": 163 + } + }, + { + "x": 317.812, + "y": 250 + }, + { + "x": 168.906, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 243.359, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 243.359, + "y": 175 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 171 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.812, + "y": 184.04 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.485, + "y": 201.595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 305.08299999999997, + "y": 217.605 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 293.093, + "y": 231.138 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 278.21299999999997, + "y": 241.409 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.308, + "y": 247.821 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.359, + "y": 250 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 225.41, + "y": 247.821 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.50500000000002, + "y": 241.409 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 193.625, + "y": 231.138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 181.63500000000002, + "y": 217.605 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 173.233, + "y": 201.595 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 168.906, + "y": 184.04 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 168.906, + "y": 165.96 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 173.233, + "y": 148.405 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 181.63500000000002, + "y": 132.395 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 193.625, + "y": 118.862 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 208.50500000000002, + "y": 108.591 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 225.41, + "y": 102.179 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 243.359, + "y": 100 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 261.308, + "y": 102.179 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 278.21299999999997, + "y": 108.591 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 293.093, + "y": 118.862 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 305.08299999999997, + "y": 132.395 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 313.485, + "y": 148.405 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 317.812, + "y": 165.96 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 17499.922508000003, + "axes": { + "#": 201 + }, + "bounds": { + "#": 215 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 218 + }, + "constraintImpulse": { + "#": 219 + }, + "density": 0.001, + "force": { + "#": 220 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 221 + }, + "positionImpulse": { + "#": 222 + }, + "positionPrev": { + "#": 223 + }, + "render": { + "#": 224 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 226 + }, + "vertices": { + "#": 227 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": -0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": -0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": -0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": -0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": -0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": -0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": 0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": 0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": 0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": 0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 216 + }, + "min": { + "#": 217 + } + }, + { + "x": 486.71799999999996, + "y": 250 + }, + { + "x": 337.812, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.265, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.265, + "y": 175 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 225 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 486.71799999999996, + "y": 184.04 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 482.39099999999996, + "y": 201.595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 473.989, + "y": 217.605 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 461.99899999999997, + "y": 231.138 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 447.11899999999997, + "y": 241.409 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 430.214, + "y": 247.821 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 412.265, + "y": 250 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 394.316, + "y": 247.821 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 377.411, + "y": 241.409 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 362.531, + "y": 231.138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 350.541, + "y": 217.605 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 342.139, + "y": 201.595 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 337.812, + "y": 184.04 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 337.812, + "y": 165.96 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 342.139, + "y": 148.405 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.541, + "y": 132.395 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 362.531, + "y": 118.862 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 377.411, + "y": 108.591 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 394.316, + "y": 102.179 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 412.265, + "y": 100 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 430.214, + "y": 102.179 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 447.11899999999997, + "y": 108.591 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 461.99899999999997, + "y": 118.862 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 473.989, + "y": 132.395 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 482.39099999999996, + "y": 148.405 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 486.71799999999996, + "y": 165.96 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 17499.922508000003, + "axes": { + "#": 255 + }, + "bounds": { + "#": 269 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 272 + }, + "constraintImpulse": { + "#": 273 + }, + "density": 0.001, + "force": { + "#": 274 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 275 + }, + "positionImpulse": { + "#": 276 + }, + "positionPrev": { + "#": 277 + }, + "render": { + "#": 278 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 280 + }, + "vertices": { + "#": 281 + } + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + } + ], + { + "x": -0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": -0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": -0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": -0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": -0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": -0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": 0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": 0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": 0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": 0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 270 + }, + "min": { + "#": 271 + } + }, + { + "x": 655.6239999999999, + "y": 250 + }, + { + "x": 506.71799999999996, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.1709999999999, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.1709999999999, + "y": 175 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 279 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 655.6239999999999, + "y": 184.04 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 651.2969999999999, + "y": 201.595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 642.895, + "y": 217.605 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 630.905, + "y": 231.138 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 616.025, + "y": 241.409 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 599.1199999999999, + "y": 247.821 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 581.1709999999999, + "y": 250 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 563.222, + "y": 247.821 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 546.317, + "y": 241.409 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 531.4369999999999, + "y": 231.138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 519.4469999999999, + "y": 217.605 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 511.04499999999996, + "y": 201.595 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 506.71799999999996, + "y": 184.04 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 506.71799999999996, + "y": 165.96 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 511.04499999999996, + "y": 148.405 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 519.4469999999999, + "y": 132.395 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 531.4369999999999, + "y": 118.862 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 546.317, + "y": 108.591 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 563.222, + "y": 102.179 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 581.1709999999999, + "y": 100 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 599.1199999999999, + "y": 102.179 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 616.025, + "y": 108.591 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 630.905, + "y": 118.862 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 642.895, + "y": 132.395 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 651.2969999999999, + "y": 148.405 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 655.6239999999999, + "y": 165.96 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 17499.922508000003, + "axes": { + "#": 309 + }, + "bounds": { + "#": 323 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 326 + }, + "constraintImpulse": { + "#": 327 + }, + "density": 0.001, + "force": { + "#": 328 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 329 + }, + "positionImpulse": { + "#": 330 + }, + "positionPrev": { + "#": 331 + }, + "render": { + "#": 332 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 334 + }, + "vertices": { + "#": 335 + } + }, + [ + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "x": -0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": -0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": -0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": -0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": -0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": -0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.12051470556315139, + "y": -0.9927115420619561 + }, + { + "x": 0.3546425628177238, + "y": -0.9350019532803537 + }, + { + "x": 0.5680676532599176, + "y": -0.82298185965413 + }, + { + "x": 0.7484885609447386, + "y": -0.6631477015981239 + }, + { + "x": 0.8854718697090299, + "y": -0.464692982466913 + }, + { + "x": 0.9709407749683796, + "y": -0.23931989366494885 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 324 + }, + "min": { + "#": 325 + } + }, + { + "x": 824.5299999999999, + "y": 250 + }, + { + "x": 675.6239999999999, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 750.0769999999999, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 750.0769999999999, + "y": 175 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 333 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 824.5299999999999, + "y": 184.04 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 820.2029999999999, + "y": 201.595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 811.8009999999999, + "y": 217.605 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 799.8109999999999, + "y": 231.138 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 784.9309999999999, + "y": 241.409 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 768.0259999999998, + "y": 247.821 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 750.0769999999999, + "y": 250 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 732.1279999999999, + "y": 247.821 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 715.2229999999998, + "y": 241.409 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 700.3429999999998, + "y": 231.138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 688.3529999999998, + "y": 217.605 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 679.9509999999999, + "y": 201.595 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 675.6239999999999, + "y": 184.04 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 675.6239999999999, + "y": 165.96 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 679.9509999999999, + "y": 148.405 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 688.3529999999998, + "y": 132.395 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 700.3429999999998, + "y": 118.862 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 715.2229999999998, + "y": 108.591 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 732.1279999999999, + "y": 102.179 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 750.0769999999999, + "y": 100 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 768.0259999999998, + "y": 102.179 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 784.9309999999999, + "y": 108.591 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 799.8109999999999, + "y": 118.862 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 811.8009999999999, + "y": 132.395 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 820.2029999999999, + "y": 148.405 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 824.5299999999999, + "y": 165.96 + }, + [], + [], + [ + { + "#": 365 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 366 + }, + "pointB": "", + "render": { + "#": 367 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 369 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/beachBalls/beachBalls-10.json b/tests/browser/refs/beachBalls/beachBalls-10.json new file mode 100644 index 00000000..75c93134 --- /dev/null +++ b/tests/browser/refs/beachBalls/beachBalls-10.json @@ -0,0 +1,3397 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 373 + }, + "events": { + "#": 377 + }, + "gravity": { + "#": 379 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 371 + }, + "constraints": { + "#": 372 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 151 + }, + { + "#": 206 + }, + { + "#": 261 + }, + { + "#": 316 + } + ], + { + "angle": 0.013730929869026819, + "anglePrev": 0.009031810878195797, + "angularSpeed": 0.004054681946262705, + "angularVelocity": 0.0046684528934371975, + "area": 17499.922508000003, + "axes": { + "#": 97 + }, + "bounds": { + "#": 111 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": 0.001, + "force": { + "#": 116 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "region": { + "#": 120 + }, + "render": { + "#": 121 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.405614866354501, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 123 + }, + "vertices": { + "#": 124 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": -0.967563265161044, + "y": -0.2526288342824301 + }, + { + "x": -0.8790079320255827, + "y": -0.47680714700611265 + }, + { + "x": -0.7393126541632236, + "y": -0.6733623091576552 + }, + { + "x": -0.5567141516967079, + "y": -0.8307041310241663 + }, + { + "x": -0.34177108863781447, + "y": -0.9397832319058067 + }, + { + "x": -0.10687292066965613, + "y": -0.9942726883644837 + }, + { + "x": 0.13413376915964698, + "y": -0.9909632344194343 + }, + { + "x": 0.3674471742943568, + "y": -0.9300443936195156 + }, + { + "x": 0.5793140539195043, + "y": -0.8151044270100302 + }, + { + "x": 0.7575233510814869, + "y": -0.6528080671730969 + }, + { + "x": 0.891768864534819, + "y": -0.45249120681653 + }, + { + "x": 0.9741352279975894, + "y": -0.2259658327581512 + }, + { + "x": 0.999905732263571, + "y": 0.013730498405089294 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 169.9000981197992, + "y": 268.34637009356186 + }, + { + "x": 20.72799450171951, + "y": 115.95510681456636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 95.29809969152117, + "y": 190.94803673433424 + }, + { + "x": 0.4389981318450429, + "y": 0 + }, + { + "x": 95.25707417951746, + "y": 188.6398960158555 + }, + { + "endCol": 3, + "endRow": 5, + "id": "0,3,2,5", + "startCol": 0, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 122 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03337833773933596, + "y": 2.313544461486856 + }, + [ + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 169.61995747015882, + "y": 201.0094613517511 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 165.05232646715302, + "y": 218.5033946150392 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 156.4312932252091, + "y": 234.39652174097938 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 144.25660866045277, + "y": 247.76361733982532 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 129.23698541525215, + "y": 257.8293392996367 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 112.24553905556301, + "y": 264.0086207793727 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 94.26831231113947, + "y": 265.940966654102 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 76.35092307876532, + "y": 263.51572334762676 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 59.53555663062312, + "y": 256.87221371681477 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 44.79798528365981, + "y": 246.39787212446788 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 32.994930388735725, + "y": 232.70151917386792 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 24.81354770572266, + "y": 216.57766475272862 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20.72799450171951, + "y": 198.9649077562428 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 20.97624191288354, + "y": 180.88661211691738 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 25.5438729158893, + "y": 163.39267885362926 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 34.16490615783335, + "y": 147.4995517276891 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 46.33959072258964, + "y": 134.13245612884307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 61.359213967790254, + "y": 124.0667341690317 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 78.35066032747933, + "y": 117.88745268929576 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 96.32788707190288, + "y": 115.95510681456636 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 114.24527630427706, + "y": 118.3803501210416 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 131.06064275241928, + "y": 125.02385975185368 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 145.7982140993826, + "y": 135.49820134420054 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 157.60126899430668, + "y": 149.19455429480055 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 165.78265167731976, + "y": 165.31840871593985 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 169.86820488132292, + "y": 182.93116571242567 + }, + { + "angle": 0.0024306772042629304, + "anglePrev": 0.001729938915738474, + "angularSpeed": 0.0007007382885244562, + "angularVelocity": 0.0007007382885244562, + "area": 17499.922508000003, + "axes": { + "#": 152 + }, + "bounds": { + "#": 166 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8335650878943817, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.9703561978804423, + "y": -0.2416792279758698 + }, + { + "x": -0.8843397364143271, + "y": -0.4668439038893398 + }, + { + "x": -0.7468744534247859, + "y": -0.6649650748884697 + }, + { + "x": -0.5660655738584655, + "y": -0.8243602162236401 + }, + { + "x": -0.35236882947425385, + "y": -0.9358612119406086 + }, + { + "x": -0.11810139061167713, + "y": -0.9930015415575086 + }, + { + "x": 0.1229273084909966, + "y": -0.9924156774392269 + }, + { + "x": 0.35691420086598963, + "y": -0.9341371704520662 + }, + { + "x": 0.5700663764104447, + "y": -0.8215986407524453 + }, + { + "x": 0.7500982462529872, + "y": -0.6613264103059802 + }, + { + "x": 0.8865987714687833, + "y": -0.4625393155506294 + }, + { + "x": 0.9715196155549419, + "y": -0.23695914540692167 + }, + { + "x": 0.999997045905619, + "y": 0.0024306748107791694 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 320.1149012595595, + "y": 270.62318838299353 + }, + { + "x": 171.11026160226174, + "y": 117.79060282338823 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 245.5850149613622, + "y": 192.79038126630965 + }, + { + "x": 1.3720809077501679, + "y": 0.029380987169840885 + }, + { + "x": 245.5298820222655, + "y": 189.95735259254715 + }, + { + "endCol": 6, + "endRow": 5, + "id": "3,6,2,5", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.055132939096705226, + "y": 2.83302867376249 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.01582171988383, + "y": 202.01132559298335 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.64616400594707, + "y": 219.5557562039503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 307.20527372252735, + "y": 235.54528637913904 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 295.18241481990475, + "y": 249.04910261039856 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.27749331584755, + "y": 259.2839038277108 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 263.3569577679265, + "y": 265.65479432838134 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 245.40271435055374, + "y": 267.79015970923103 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.45906381400656, + "y": 265.56753796402404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 210.56969923985872, + "y": 259.1144663480011 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 195.7147086577647, + "y": 248.80732824832 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 183.7576383995706, + "y": 235.24522443509804 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 175.39457832359216, + "y": 219.21484920038887 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 171.11026160226174, + "y": 201.6493835296095 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 171.1542082028406, + "y": 183.56943693963595 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 175.52386591677754, + "y": 166.025006328669 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 183.96475620019706, + "y": 150.03547615348026 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 195.98761510281966, + "y": 136.53165992222074 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 210.8925366068768, + "y": 126.29685870490852 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 227.81307215479794, + "y": 119.92596820423789 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 245.76731557217065, + "y": 117.79060282338823 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 263.7109661087179, + "y": 120.01322456859526 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 280.6003306828656, + "y": 126.46629618461827 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 295.45532126495993, + "y": 136.7734342842993 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 307.4123915231538, + "y": 150.33553809752127 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 315.7754515991324, + "y": 166.36591333223043 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 320.05976832046275, + "y": 183.9313790030098 + }, + { + "angle": 0.0002456218761554387, + "anglePrev": 0.00013966862062549887, + "angularSpeed": 0.00010595325552993983, + "angularVelocity": 0.00010595325552993983, + "area": 17499.922508000003, + "axes": { + "#": 207 + }, + "bounds": { + "#": 221 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 224 + }, + "constraintImpulse": { + "#": 225 + }, + "density": 0.001, + "force": { + "#": 226 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 227 + }, + "positionImpulse": { + "#": 228 + }, + "positionPrev": { + "#": 229 + }, + "region": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.896986585482177, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + } + ], + { + "x": -0.9708819634792075, + "y": -0.2395583707382372 + }, + { + "x": -0.885357704237682, + "y": -0.46491045970915856 + }, + { + "x": -0.7483256547855446, + "y": -0.66333152675701 + }, + { + "x": -0.5678654937777492, + "y": -0.8231213646702127 + }, + { + "x": -0.35441289518824765, + "y": -0.9350890330467384 + }, + { + "x": -0.12027087025882825, + "y": -0.9927411131645469 + }, + { + "x": 0.12075853359680958, + "y": -0.9926819110689727 + }, + { + "x": 0.35487220905157657, + "y": -0.9349148171052024 + }, + { + "x": 0.5682697784705043, + "y": -0.8228423049874646 + }, + { + "x": 0.7486514219475384, + "y": -0.6629638364314667 + }, + { + "x": 0.8855859817597661, + "y": -0.4644754771896908 + }, + { + "x": 0.9709995278805922, + "y": -0.23908140215346602 + }, + { + "x": 0.9999999698349471, + "y": 0.0002456218736857065 + }, + { + "max": { + "#": 222 + }, + "min": { + "#": 223 + } + }, + { + "x": 470.2165817336961, + "y": 270.60599963955644 + }, + { + "x": 321.2456671888991, + "y": 117.70964892632547 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 395.70088536475856, + "y": 192.70964666394653 + }, + { + "x": 2.1530810947923276, + "y": 0.0007278765296602908 + }, + { + "x": 395.6404071716806, + "y": 189.81329142595763 + }, + { + "endCol": 9, + "endRow": 5, + "id": "6,9,2,5", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.06047819307800978, + "y": 2.8963552379888937 + }, + [ + { + "#": 235 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 470.1516626971417, + "y": 201.76793367661597 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 465.82035093567345, + "y": 219.32187034122106 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.4144187829225, + "y": 235.3298061432958 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4210951437848, + "y": 248.85986072880667 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 430.5385728103762, + "y": 259.12720556550096 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 413.63199839286244, + "y": 265.53505313430804 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 395.68246372423226, + "y": 267.7096444015676 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 377.7339994757274, + "y": 265.5262358002865 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 360.8305749131216, + "y": 259.11008375593013 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 345.95309814424235, + "y": 248.8354292122749 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 333.96642250673796, + "y": 235.29948461423308 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 325.56835516638245, + "y": 219.28742138219286 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 321.2456671888991, + "y": 201.73135910589295 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 321.2501080323754, + "y": 183.6513596512771 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 325.5814197938437, + "y": 166.097422986672 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 333.98735194659463, + "y": 150.08948718459726 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 345.98067558573234, + "y": 136.5594325990864 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 360.86319791914104, + "y": 126.29208776239211 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 377.7697723366547, + "y": 119.88424019358507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 395.719307005285, + "y": 117.70964892632547 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 413.66777125378974, + "y": 119.89305752760664 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 430.5711958163955, + "y": 126.30920957196298 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 445.4486725852749, + "y": 136.58386411561816 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 457.43534822277917, + "y": 150.11980871365998 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 465.8334155631347, + "y": 166.1318719457002 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 470.1561035406181, + "y": 183.6879342220001 + }, + { + "angle": -0.0006755390859609383, + "anglePrev": -0.0005941601862293682, + "angularSpeed": 0.00008137889973157007, + "angularVelocity": -0.00008137889973157007, + "area": 17499.922508000003, + "axes": { + "#": 262 + }, + "bounds": { + "#": 276 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8977828023245857, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": -0.9711022233524151, + "y": -0.23866393066401168 + }, + { + "x": -0.8857855859138923, + "y": -0.4640947056228744 + }, + { + "x": -0.7489363723153454, + "y": -0.6626419170435343 + }, + { + "x": -0.5686234800111654, + "y": -0.8225979199949338 + }, + { + "x": -0.3552741122134677, + "y": -0.9347621650403551 + }, + { + "x": -0.12118529346126648, + "y": -0.9926299031606428 + }, + { + "x": 0.11984406266778411, + "y": -0.9927927279363401 + }, + { + "x": 0.3540108515797685, + "y": -0.935241314829369 + }, + { + "x": 0.5675115672692698, + "y": -0.8233654237430529 + }, + { + "x": 0.7480404079991021, + "y": -0.6636531835232442 + }, + { + "x": 0.8851577494163885, + "y": -0.4652910472468967 + }, + { + "x": 0.9707788834925704, + "y": -0.23997574745152506 + }, + { + "x": 0.9999997718234802, + "y": -0.0006755390345802182 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 620.0400758084162, + "y": 270.64540033660774 + }, + { + "x": 471.0618745360834, + "y": 117.74827343733301 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 545.5209644205296, + "y": 192.74825632409397 + }, + { + "x": 2.6965875102178454, + "y": 0.006274538623426806 + }, + { + "x": 545.4609429170891, + "y": 189.85109519834123 + }, + { + "endCol": 12, + "endRow": 5, + "id": "9,12,2,5", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.06002150344041752, + "y": 2.8971611257527394 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 619.9800543049757, + "y": 201.73795835363666 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615.6649143800477, + "y": 219.2958774054005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 607.2737316771305, + "y": 235.31154963126286 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 595.2928764827218, + "y": 248.8526462563747 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 580.4198183394127, + "y": 259.13369593360824 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.5191537530266, + "y": 265.55711445791997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 545.5716298481232, + "y": 267.748239210855 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 527.6211619441071, + "y": 265.58136495818337 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 510.7118342451414, + "y": 259.1807864086308 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 495.8248991789838, + "y": 248.91984077306634 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 483.8257598450652, + "y": 235.39494357400375 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 475.4129463822608, + "y": 219.3906231060784 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 471.07408828182855, + "y": 201.83855016911986 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 471.0618745360834, + "y": 183.7585542945513 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 475.3770144610116, + "y": 166.20063524278746 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 483.7681971639287, + "y": 150.18496301692508 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 495.7490523583373, + "y": 136.64386639181325 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 510.6221105016466, + "y": 126.36281671457971 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 527.5227750880329, + "y": 119.93939819026801 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 545.470298992936, + "y": 117.74827343733301 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 563.420766896952, + "y": 119.91514769000463 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 580.3300945959179, + "y": 126.31572623955724 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 595.2170296620752, + "y": 136.5766718751216 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 607.2161689959938, + "y": 150.1015690741842 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 615.6289824587982, + "y": 166.10588954210954 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 619.9678405592307, + "y": 183.6579624790681 + }, + { + "angle": -0.004165537424309747, + "anglePrev": -0.0037555070339081427, + "angularSpeed": 0.0004100303904016042, + "angularVelocity": -0.0004100303904016042, + "area": 17499.922508000003, + "axes": { + "#": 317 + }, + "bounds": { + "#": 331 + }, + "circleRadius": 75, + "collisionFilter": { + "#": 334 + }, + "constraintImpulse": { + "#": 335 + }, + "density": 0.001, + "force": { + "#": 336 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 194966.798563796, + "inverseInertia": 0.000005129078424462026, + "inverseMass": 0.057143110179079644, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.499922508000004, + "motion": 0, + "parent": null, + "position": { + "#": 337 + }, + "positionImpulse": { + "#": 338 + }, + "positionPrev": { + "#": 339 + }, + "region": { + "#": 340 + }, + "render": { + "#": 341 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8605703989793856, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 343 + }, + "vertices": { + "#": 344 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + } + ], + { + "x": -0.9719292443335223, + "y": -0.2352733389257437 + }, + { + "x": -0.8873998779094653, + "y": -0.4610004953210637 + }, + { + "x": -0.7512444257591179, + "y": -0.6600241001401789 + }, + { + "x": -0.5714908766185695, + "y": -0.8206084193704932 + }, + { + "x": -0.3585342603608087, + "y": -0.9335165687589736 + }, + { + "x": -0.12464882511831944, + "y": -0.992200922392548 + }, + { + "x": 0.1163784948757455, + "y": -0.9932049365213887 + }, + { + "x": 0.3507447116314585, + "y": -0.9364711139498991 + }, + { + "x": 0.5646345729748645, + "y": -0.8253410198224079 + }, + { + "x": 0.745719708598654, + "y": -0.6662597963313851 + }, + { + "x": 0.8835284970867688, + "y": -0.4683774064102528 + }, + { + "x": 0.9699354581525785, + "y": -0.24336229580267305 + }, + { + "x": 0.9999913241615282, + "y": -0.004165525377792833 + }, + { + "max": { + "#": 332 + }, + "min": { + "#": 333 + } + }, + { + "x": 769.3240887580322, + "y": 270.01585811297855 + }, + { + "x": 620.2819213957594, + "y": 117.15726424344608 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 694.7719318029727, + "y": 192.15661355556068 + }, + { + "x": 2.8931655612647336, + "y": -0.0075481755201081205 + }, + { + "x": 694.7097852551267, + "y": 189.29671831025746 + }, + { + "endCol": 15, + "endRow": 5, + "id": "12,15,2,5", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 342 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.06214654784608683, + "y": 2.859895245303208 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 769.2619422101861, + "y": 200.8863992650281 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 765.0081055485463, + "y": 218.45927118899343 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 756.6728685042395, + "y": 234.5041310330437 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 744.7393445824806, + "y": 248.0869582722014 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 729.9022577901126, + "y": 258.419852180286 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 713.0241138038842, + "y": 264.9022147573214 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 695.0843462063073, + "y": 267.1559628676753 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 677.1264252491335, + "y": 265.05174878733334 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 660.1948625654607, + "y": 258.71022262332116 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 645.2722075507816, + "y": 248.5012947504797 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 633.2259395191473, + "y": 235.0183568098815 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 624.7573223522438, + "y": 219.0434944542796 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 620.3572340945897, + "y": 201.50667098693373 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 620.2819213957594, + "y": 183.42682784609326 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 624.5357580573992, + "y": 165.85395592212794 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 632.8709951017055, + "y": 149.80909607807766 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 644.8045190234644, + "y": 136.22626883891996 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 659.6416058158327, + "y": 125.89337493083535 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 676.519749802061, + "y": 119.41101235380003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 694.4595173996382, + "y": 117.15726424344608 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 712.4174383568115, + "y": 119.26147832378805 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 729.3490010404846, + "y": 125.60300448780016 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 744.2716560551635, + "y": 135.81193236064166 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 756.3179240867979, + "y": 149.29487030123985 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 764.7865412537014, + "y": 165.26973265684177 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 769.1866295113556, + "y": 182.80655612418764 + }, + [], + [], + [ + { + "#": 374 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 375 + }, + "pointB": "", + "render": { + "#": 376 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 378 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/bridge/bridge-0.json b/tests/browser/refs/bridge/bridge-0.json new file mode 100644 index 00000000..c7928354 --- /dev/null +++ b/tests/browser/refs/bridge/bridge-0.json @@ -0,0 +1,8066 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 128 + }, + "composites": { + "#": 131 + }, + "constraints": { + "#": 862 + }, + "gravity": { + "#": 916 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 33600, + "axes": { + "#": 87 + }, + "bounds": { + "#": 90 + }, + "collisionFilter": { + "#": 93 + }, + "constraintImpulse": { + "#": 94 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 95 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 96 + }, + "positionImpulse": { + "#": 97 + }, + "positionPrev": { + "#": 98 + }, + "render": { + "#": 99 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 101 + }, + "vertices": { + "#": 102 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 140, + "y": 580 + }, + { + "x": 20, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80, + "y": 440 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 100 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 580 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 580 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 33600, + "axes": { + "#": 108 + }, + "bounds": { + "#": 111 + }, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 116 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "render": { + "#": 120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 122 + }, + "vertices": { + "#": 123 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 780, + "y": 580 + }, + { + "x": 660, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 720, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 720, + "y": 440 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 121 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 660, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 780, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 780, + "y": 580 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 660, + "y": 580 + }, + { + "max": { + "#": 129 + }, + "min": { + "#": 130 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 132 + }, + { + "#": 314 + } + ], + { + "composites": { + "#": 133 + }, + "constraints": { + "#": 134 + }, + "id": 4, + "isModified": true, + "label": "Stack Chain", + "parent": null, + "type": "composite" + }, + [], + [ + { + "#": 135 + }, + { + "#": 160 + }, + { + "#": 185 + }, + { + "#": 210 + }, + { + "#": 235 + }, + { + "#": 260 + }, + { + "#": 285 + }, + { + "#": 310 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 136 + }, + "id": 14, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 157 + }, + "pointB": { + "#": 158 + }, + "render": { + "#": 159 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 137 + }, + "bounds": { + "#": 140 + }, + "collisionFilter": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "density": 0.001, + "force": { + "#": 145 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 146 + }, + "positionImpulse": { + "#": 147 + }, + "positionPrev": { + "#": 148 + }, + "render": { + "#": 149 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 151 + }, + "vertices": { + "#": 152 + } + }, + [ + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 141 + }, + "min": { + "#": 142 + } + }, + { + "x": 260, + "y": 320 + }, + { + "x": 210, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235, + "y": 310 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 150 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 210, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 210, + "y": 320 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 161 + }, + "id": 15, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 182 + }, + "pointB": { + "#": 183 + }, + "render": { + "#": 184 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 162 + }, + "bounds": { + "#": 165 + }, + "collisionFilter": { + "#": 168 + }, + "constraintImpulse": { + "#": 169 + }, + "density": 0.001, + "force": { + "#": 170 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 171 + }, + "positionImpulse": { + "#": 172 + }, + "positionPrev": { + "#": 173 + }, + "render": { + "#": 174 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 176 + }, + "vertices": { + "#": 177 + } + }, + [ + { + "#": 163 + }, + { + "#": 164 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 166 + }, + "min": { + "#": 167 + } + }, + { + "x": 320, + "y": 320 + }, + { + "x": 270, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 295, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 295, + "y": 310 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 175 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 270, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 270, + "y": 320 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 186 + }, + "id": 16, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 207 + }, + "pointB": { + "#": 208 + }, + "render": { + "#": 209 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 187 + }, + "bounds": { + "#": 190 + }, + "collisionFilter": { + "#": 193 + }, + "constraintImpulse": { + "#": 194 + }, + "density": 0.001, + "force": { + "#": 195 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 196 + }, + "positionImpulse": { + "#": 197 + }, + "positionPrev": { + "#": 198 + }, + "render": { + "#": 199 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 201 + }, + "vertices": { + "#": 202 + } + }, + [ + { + "#": 188 + }, + { + "#": 189 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 191 + }, + "min": { + "#": 192 + } + }, + { + "x": 380, + "y": 320 + }, + { + "x": 330, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355, + "y": 310 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 200 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 330, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 330, + "y": 320 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 211 + }, + "id": 17, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 232 + }, + "pointB": { + "#": 233 + }, + "render": { + "#": 234 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 212 + }, + "bounds": { + "#": 215 + }, + "collisionFilter": { + "#": 218 + }, + "constraintImpulse": { + "#": 219 + }, + "density": 0.001, + "force": { + "#": 220 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 221 + }, + "positionImpulse": { + "#": 222 + }, + "positionPrev": { + "#": 223 + }, + "render": { + "#": 224 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 226 + }, + "vertices": { + "#": 227 + } + }, + [ + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 216 + }, + "min": { + "#": 217 + } + }, + { + "x": 440, + "y": 320 + }, + { + "x": 390, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 415, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 415, + "y": 310 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 225 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 390, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 390, + "y": 320 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 236 + }, + "id": 18, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 257 + }, + "pointB": { + "#": 258 + }, + "render": { + "#": 259 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 237 + }, + "bounds": { + "#": 240 + }, + "collisionFilter": { + "#": 243 + }, + "constraintImpulse": { + "#": 244 + }, + "density": 0.001, + "force": { + "#": 245 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 246 + }, + "positionImpulse": { + "#": 247 + }, + "positionPrev": { + "#": 248 + }, + "render": { + "#": 249 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 251 + }, + "vertices": { + "#": 252 + } + }, + [ + { + "#": 238 + }, + { + "#": 239 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 241 + }, + "min": { + "#": 242 + } + }, + { + "x": 500, + "y": 320 + }, + { + "x": 450, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 310 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 250 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 320 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 261 + }, + "id": 19, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 282 + }, + "pointB": { + "#": 283 + }, + "render": { + "#": 284 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 262 + }, + "bounds": { + "#": 265 + }, + "collisionFilter": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "density": 0.001, + "force": { + "#": 270 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 271 + }, + "positionImpulse": { + "#": 272 + }, + "positionPrev": { + "#": 273 + }, + "render": { + "#": 274 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 276 + }, + "vertices": { + "#": 277 + } + }, + [ + { + "#": 263 + }, + { + "#": 264 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 266 + }, + "min": { + "#": 267 + } + }, + { + "x": 560, + "y": 320 + }, + { + "x": 510, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 535, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 535, + "y": 310 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 275 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 320 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 286 + }, + "id": 20, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 307 + }, + "pointB": { + "#": 308 + }, + "render": { + "#": 309 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 287 + }, + "bounds": { + "#": 290 + }, + "collisionFilter": { + "#": 293 + }, + "constraintImpulse": { + "#": 294 + }, + "density": 0.001, + "force": { + "#": 295 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 296 + }, + "positionImpulse": { + "#": 297 + }, + "positionPrev": { + "#": 298 + }, + "render": { + "#": 299 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 301 + }, + "vertices": { + "#": 302 + } + }, + [ + { + "#": 288 + }, + { + "#": 289 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 291 + }, + "min": { + "#": 292 + } + }, + { + "x": 620, + "y": 320 + }, + { + "x": 570, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595, + "y": 310 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 300 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 570, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 570, + "y": 320 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 21, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 311 + }, + "pointB": { + "#": 312 + }, + "render": { + "#": 313 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 315 + }, + "composites": { + "#": 860 + }, + "constraints": { + "#": 861 + }, + "id": 22, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 316 + }, + { + "#": 341 + }, + { + "#": 366 + }, + { + "#": 420 + }, + { + "#": 441 + }, + { + "#": 465 + }, + { + "#": 494 + }, + { + "#": 523 + }, + { + "#": 544 + }, + { + "#": 568 + }, + { + "#": 589 + }, + { + "#": 613 + }, + { + "#": 664 + }, + { + "#": 718 + }, + { + "#": 772 + }, + { + "#": 793 + }, + { + "#": 814 + }, + { + "#": 839 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1367.9015580000003, + "axes": { + "#": 317 + }, + "bounds": { + "#": 323 + }, + "collisionFilter": { + "#": 326 + }, + "constraintImpulse": { + "#": 327 + }, + "density": 0.001, + "force": { + "#": 328 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1211.432510854089, + "inverseInertia": 0.0008254690137835049, + "inverseMass": 0.7310467585562906, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.3679015580000002, + "motion": 0, + "parent": null, + "position": { + "#": 329 + }, + "positionImpulse": { + "#": 330 + }, + "positionPrev": { + "#": 331 + }, + "render": { + "#": 332 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 334 + }, + "vertices": { + "#": 335 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "x": 0.3090371554557353, + "y": 0.9510499653266529 + }, + { + "x": -0.8090151080740143, + "y": 0.5877878485542133 + }, + { + "x": -0.8090151080740143, + "y": -0.5877878485542133 + }, + { + "x": 0.3090371554557353, + "y": -0.9510499653266529 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 324 + }, + "min": { + "#": 325 + } + }, + { + "x": 241.1006410226451, + "y": 85.624 + }, + { + "x": 197.70964102264512, + "y": 40 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.69549999999998, + "y": 62.812 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.69549999999998, + "y": 62.812 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 333 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 241.1006410226451, + "y": 76.91 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 214.28364102264513, + "y": 85.624 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 197.70964102264512, + "y": 62.812 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 214.28364102264513, + "y": 40 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.1006410226451, + "y": 48.714 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1613.16158, + "axes": { + "#": 342 + }, + "bounds": { + "#": 348 + }, + "collisionFilter": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "density": 0.001, + "force": { + "#": 353 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1684.7880608878233, + "inverseInertia": 0.0005935464662973903, + "inverseMass": 0.619900704553105, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.61316158, + "motion": 0, + "parent": null, + "position": { + "#": 354 + }, + "positionImpulse": { + "#": 355 + }, + "positionPrev": { + "#": 356 + }, + "render": { + "#": 357 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 359 + }, + "vertices": { + "#": 360 + } + }, + [ + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "x": 0.30903733499778424, + "y": 0.9510499069856783 + }, + { + "x": -0.8090269028730657, + "y": 0.587771614173069 + }, + { + "x": -0.8090269028730657, + "y": -0.587771614173069 + }, + { + "x": 0.30903733499778424, + "y": -0.9510499069856783 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 349 + }, + "min": { + "#": 350 + } + }, + { + "x": 285.73351348384847, + "y": 89.54599999999999 + }, + { + "x": 238.6135134838485, + "y": 40 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.6606410226451, + "y": 64.773 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.6606410226451, + "y": 64.773 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 358 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.73351348384847, + "y": 80.083 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.6115134838485, + "y": 89.54599999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 238.6135134838485, + "y": 64.773 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 256.6115134838485, + "y": 40 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 285.73351348384847, + "y": 49.462999999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3066.75815, + "axes": { + "#": 367 + }, + "bounds": { + "#": 381 + }, + "circleRadius": 31.396519204389577, + "collisionFilter": { + "#": 384 + }, + "constraintImpulse": { + "#": 385 + }, + "density": 0.001, + "force": { + "#": 386 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 5987.526734438354, + "inverseInertia": 0.0001670138680547875, + "inverseMass": 0.3260772291417893, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.06675815, + "motion": 0, + "parent": null, + "position": { + "#": 387 + }, + "positionImpulse": { + "#": 388 + }, + "positionPrev": { + "#": 389 + }, + "render": { + "#": 390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 392 + }, + "vertices": { + "#": 393 + } + }, + [ + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": -0.9709223455443396, + "y": -0.23939465099011312 + }, + { + "x": -0.8854821719416506, + "y": -0.46467335104726754 + }, + { + "x": -0.7485525823007566, + "y": -0.6630754342688838 + }, + { + "x": -0.5680138921984943, + "y": -0.823018965923336 + }, + { + "x": -0.354610422587007, + "y": -0.9350141433115675 + }, + { + "x": -0.1206193812576357, + "y": -0.9926988288826704 + }, + { + "x": 0.1206193812576357, + "y": -0.9926988288826704 + }, + { + "x": 0.354610422587007, + "y": -0.9350141433115675 + }, + { + "x": 0.5680138921984943, + "y": -0.823018965923336 + }, + { + "x": 0.7485525823007566, + "y": -0.6630754342688838 + }, + { + "x": 0.8854821719416506, + "y": -0.46467335104726754 + }, + { + "x": 0.9709223455443396, + "y": -0.23939465099011312 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 382 + }, + "min": { + "#": 383 + } + }, + { + "x": 348.0695134838485, + "y": 102.79399999999998 + }, + { + "x": 285.73351348384847, + "y": 39.99999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 316.9015134838485, + "y": 71.39699999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 316.9015134838485, + "y": 71.39699999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 391 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 348.0695134838485, + "y": 75.18099999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 346.25751348384847, + "y": 82.52999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 342.7405134838485, + "y": 89.232 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 337.72151348384847, + "y": 94.898 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 331.4925134838485, + "y": 99.19699999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 324.4155134838485, + "y": 101.881 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 316.9015134838485, + "y": 102.79399999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 309.38751348384847, + "y": 101.881 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 302.31051348384847, + "y": 99.19699999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.0815134838485, + "y": 94.898 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 291.0625134838485, + "y": 89.232 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 287.5455134838485, + "y": 82.52999999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 285.73351348384847, + "y": 75.18099999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.73351348384847, + "y": 67.613 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 287.5455134838485, + "y": 60.263999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 291.0625134838485, + "y": 53.56199999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 296.0815134838485, + "y": 47.89599999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 302.31051348384847, + "y": 43.596999999999994 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 309.38751348384847, + "y": 40.91299999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 316.9015134838485, + "y": 39.99999999999999 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 324.4155134838485, + "y": 40.91299999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 331.4925134838485, + "y": 43.596999999999994 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 337.72151348384847, + "y": 47.89599999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 342.7405134838485, + "y": 53.56199999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 346.25751348384847, + "y": 60.263999999999996 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 348.0695134838485, + "y": 67.613 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1045.258734, + "axes": { + "#": 421 + }, + "bounds": { + "#": 425 + }, + "collisionFilter": { + "#": 428 + }, + "constraintImpulse": { + "#": 429 + }, + "density": 0.001, + "force": { + "#": 430 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 841.0575612243855, + "inverseInertia": 0.001188979263849945, + "inverseMass": 0.9567009272175092, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.0452587340000001, + "motion": 0, + "parent": null, + "position": { + "#": 431 + }, + "positionImpulse": { + "#": 432 + }, + "positionPrev": { + "#": 433 + }, + "render": { + "#": 434 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 436 + }, + "vertices": { + "#": 437 + } + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + } + ], + { + "x": -0.500004936684515, + "y": 0.8660225535695443 + }, + { + "x": -0.500004936684515, + "y": -0.8660225535695443 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 426 + }, + "min": { + "#": 427 + } + }, + { + "x": 383.52701348384846, + "y": 89.132 + }, + { + "x": 340.9780134838485, + "y": 40 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.34401348384847, + "y": 64.566 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.34401348384847, + "y": 64.566 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 435 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 383.52701348384846, + "y": 89.132 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340.9780134838485, + "y": 64.566 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.52701348384846, + "y": 40 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1661.5850679999999, + "axes": { + "#": 442 + }, + "bounds": { + "#": 446 + }, + "collisionFilter": { + "#": 449 + }, + "constraintImpulse": { + "#": 450 + }, + "density": 0.001, + "force": { + "#": 451 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1771.0956837781462, + "inverseInertia": 0.0005646222330951508, + "inverseMass": 0.6018349702694848, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.661585068, + "motion": 0, + "parent": null, + "position": { + "#": 452 + }, + "positionImpulse": { + "#": 453 + }, + "positionPrev": { + "#": 454 + }, + "render": { + "#": 455 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 457 + }, + "vertices": { + "#": 458 + } + }, + [ + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": -0.49998374039075505, + "y": -0.8660347910706995 + }, + { + "x": 0.49998374039075505, + "y": -0.8660347910706995 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 447 + }, + "min": { + "#": 448 + } + }, + { + "x": 427.3290134838485, + "y": 90.578 + }, + { + "x": 383.52701348384846, + "y": 40 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.4280134838485, + "y": 65.289 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.4280134838485, + "y": 65.289 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 456 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.3290134838485, + "y": 77.934 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405.4280134838485, + "y": 90.578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.52701348384846, + "y": 77.934 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 383.52701348384846, + "y": 52.644000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 405.4280134838485, + "y": 40 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 427.3290134838485, + "y": 52.644000000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2545.3842360000003, + "axes": { + "#": 466 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 4141.080021292649, + "inverseInertia": 0.00024148289693949151, + "inverseMass": 0.39286799448851456, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.5453842360000003, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "render": { + "#": 483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 485 + }, + "vertices": { + "#": 486 + } + }, + [ + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0.6234824257695271, + "y": 0.7818373646459641 + }, + { + "x": -0.2225077765934148, + "y": 0.9749309151706366 + }, + { + "x": -0.9009710359932015, + "y": 0.4338792370018844 + }, + { + "x": -0.9009710359932015, + "y": -0.4338792370018844 + }, + { + "x": -0.2225077765934148, + "y": -0.9749309151706366 + }, + { + "x": 0.6234824257695271, + "y": -0.7818373646459641 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 483.79689680342125, + "y": 99.46800000000002 + }, + { + "x": 425.8188968034213, + "y": 40.00000000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 456.31801348384846, + "y": 69.73400000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 456.31801348384846, + "y": 69.73400000000001 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 484 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 483.79689680342125, + "y": 82.96700000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 463.1048968034213, + "y": 99.46800000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 437.3018968034213, + "y": 93.57900000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.8188968034213, + "y": 69.73400000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 437.3018968034213, + "y": 45.88900000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 463.1048968034213, + "y": 40.00000000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.79689680342125, + "y": 56.501000000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2860.0907570000004, + "axes": { + "#": 495 + }, + "bounds": { + "#": 503 + }, + "collisionFilter": { + "#": 506 + }, + "constraintImpulse": { + "#": 507 + }, + "density": 0.001, + "force": { + "#": 508 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 5228.372858362924, + "inverseInertia": 0.00019126409441141387, + "inverseMass": 0.3496392544720915, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.8600907570000005, + "motion": 0, + "parent": null, + "position": { + "#": 509 + }, + "positionImpulse": { + "#": 510 + }, + "positionPrev": { + "#": 511 + }, + "render": { + "#": 512 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 514 + }, + "vertices": { + "#": 515 + } + }, + [ + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + } + ], + { + "x": 0.6234945666503724, + "y": 0.781827682649741 + }, + { + "x": -0.2225315292975342, + "y": 0.9749254938037577 + }, + { + "x": -0.900958835995675, + "y": 0.4339045699705392 + }, + { + "x": -0.900958835995675, + "y": -0.4339045699705392 + }, + { + "x": -0.2225315292975342, + "y": -0.9749254938037577 + }, + { + "x": 0.6234945666503724, + "y": -0.781827682649741 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 504 + }, + "min": { + "#": 505 + } + }, + { + "x": 259.8570322603699, + "y": 165.832 + }, + { + "x": 198.39903226036986, + "y": 102.79399999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 230.729, + "y": 134.313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 230.729, + "y": 134.313 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 513 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 259.8570322603699, + "y": 148.33999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 237.92303226036987, + "y": 165.832 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 210.57203226036987, + "y": 159.589 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 198.39903226036986, + "y": 134.313 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 210.57203226036987, + "y": 109.03699999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 237.92303226036987, + "y": 102.79399999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 259.8570322603699, + "y": 120.28599999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3059.8598560000005, + "axes": { + "#": 524 + }, + "bounds": { + "#": 527 + }, + "collisionFilter": { + "#": 530 + }, + "constraintImpulse": { + "#": 531 + }, + "density": 0.001, + "force": { + "#": 532 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 6241.828225573563, + "inverseInertia": 0.00016020947130567818, + "inverseMass": 0.3268123531994858, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.0598598560000005, + "motion": 0, + "parent": null, + "position": { + "#": 533 + }, + "positionImpulse": { + "#": 534 + }, + "positionPrev": { + "#": 535 + }, + "render": { + "#": 536 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 538 + }, + "vertices": { + "#": 539 + } + }, + [ + { + "#": 525 + }, + { + "#": 526 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 528 + }, + "min": { + "#": 529 + } + }, + { + "x": 315.17303226036995, + "y": 158.11 + }, + { + "x": 259.8570322603699, + "y": 102.794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.51503226036994, + "y": 130.452 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.51503226036994, + "y": 130.452 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 537 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.17303226036995, + "y": 158.11 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 259.8570322603699, + "y": 158.11 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 259.8570322603699, + "y": 102.794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 315.17303226036995, + "y": 102.794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3989.2628600000007, + "axes": { + "#": 545 + }, + "bounds": { + "#": 549 + }, + "collisionFilter": { + "#": 552 + }, + "constraintImpulse": { + "#": 553 + }, + "density": 0.001, + "force": { + "#": 554 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 10208.975714199174, + "inverseInertia": 0.00009795301977348697, + "inverseMass": 0.25067287744483197, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.9892628600000006, + "motion": 0, + "parent": null, + "position": { + "#": 555 + }, + "positionImpulse": { + "#": 556 + }, + "positionPrev": { + "#": 557 + }, + "render": { + "#": 558 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 560 + }, + "vertices": { + "#": 561 + } + }, + [ + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + } + ], + { + "x": -0.49999270020333786, + "y": -0.8660296182829864 + }, + { + "x": 0.49999270020333786, + "y": -0.8660296182829864 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 550 + }, + "min": { + "#": 551 + } + }, + { + "x": 383.04303226036996, + "y": 181.164 + }, + { + "x": 315.17303226036995, + "y": 102.79399999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.10803226036995, + "y": 141.97899999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.10803226036995, + "y": 141.97899999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 559 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 383.04303226036996, + "y": 161.572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 349.10803226036995, + "y": 181.164 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 315.17303226036995, + "y": 161.572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 315.17303226036995, + "y": 122.38599999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 349.10803226036995, + "y": 102.79399999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 383.04303226036996, + "y": 122.38599999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 871.6665760000001, + "axes": { + "#": 569 + }, + "bounds": { + "#": 572 + }, + "collisionFilter": { + "#": 575 + }, + "constraintImpulse": { + "#": 576 + }, + "density": 0.001, + "force": { + "#": 577 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 506.5350798103759, + "inverseInertia": 0.001974196930989173, + "inverseMass": 1.1472276527900274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.8716665760000001, + "motion": 0, + "parent": null, + "position": { + "#": 578 + }, + "positionImpulse": { + "#": 579 + }, + "positionPrev": { + "#": 580 + }, + "render": { + "#": 581 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 583 + }, + "vertices": { + "#": 584 + } + }, + [ + { + "#": 570 + }, + { + "#": 571 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 573 + }, + "min": { + "#": 574 + } + }, + { + "x": 412.56703226036996, + "y": 132.31799999999998 + }, + { + "x": 383.04303226036996, + "y": 102.79399999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 397.80503226036996, + "y": 117.55599999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 397.80503226036996, + "y": 117.55599999999998 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 582 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 412.56703226036996, + "y": 132.31799999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 383.04303226036996, + "y": 132.31799999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.04303226036996, + "y": 102.79399999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 412.56703226036996, + "y": 102.79399999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2747.94639, + "axes": { + "#": 590 + }, + "bounds": { + "#": 594 + }, + "collisionFilter": { + "#": 597 + }, + "constraintImpulse": { + "#": 598 + }, + "density": 0.001, + "force": { + "#": 599 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 4844.10306453334, + "inverseInertia": 0.00020643656558870835, + "inverseMass": 0.36390811830939684, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.74794639, + "motion": 0, + "parent": null, + "position": { + "#": 600 + }, + "positionImpulse": { + "#": 601 + }, + "positionPrev": { + "#": 602 + }, + "render": { + "#": 603 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 605 + }, + "vertices": { + "#": 606 + } + }, + [ + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + } + ], + { + "x": -0.4999983780624879, + "y": -0.8660263402084726 + }, + { + "x": 0.4999983780624879, + "y": -0.8660263402084726 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 595 + }, + "min": { + "#": 596 + } + }, + { + "x": 468.89703226037, + "y": 167.83799999999997 + }, + { + "x": 412.56703226036996, + "y": 102.79399999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440.73203226037, + "y": 135.31599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440.73203226037, + "y": 135.31599999999997 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 604 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 468.89703226037, + "y": 151.57699999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440.73203226037, + "y": 167.83799999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 412.56703226036996, + "y": 151.57699999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 412.56703226036996, + "y": 119.05499999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 440.73203226037, + "y": 102.79399999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 468.89703226037, + "y": 119.05499999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1565.919654, + "axes": { + "#": 614 + }, + "bounds": { + "#": 627 + }, + "circleRadius": 22.454389574759944, + "collisionFilter": { + "#": 630 + }, + "constraintImpulse": { + "#": 631 + }, + "density": 0.001, + "force": { + "#": 632 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1561.0991962205608, + "inverseInertia": 0.0006405742840820183, + "inverseMass": 0.638602368547831, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.565919654, + "motion": 0, + "parent": null, + "position": { + "#": 633 + }, + "positionImpulse": { + "#": 634 + }, + "positionPrev": { + "#": 635 + }, + "render": { + "#": 636 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 638 + }, + "vertices": { + "#": 639 + } + }, + [ + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + } + ], + { + "x": -0.9659312992094581, + "y": -0.25879861902167917 + }, + { + "x": -0.8659980663559208, + "y": -0.5000473468260844 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.5000473468260844, + "y": -0.8659980663559208 + }, + { + "x": -0.25879861902167917, + "y": -0.9659312992094581 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25879861902167917, + "y": -0.9659312992094581 + }, + { + "x": 0.5000473468260844, + "y": -0.8659980663559208 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8659980663559208, + "y": -0.5000473468260844 + }, + { + "x": 0.9659312992094581, + "y": -0.25879861902167917 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 628 + }, + "min": { + "#": 629 + } + }, + { + "x": 513.42103226037, + "y": 147.31799999999998 + }, + { + "x": 468.89703226037, + "y": 102.79399999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 491.15903226037, + "y": 125.05599999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 491.15903226037, + "y": 125.05599999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 637 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 513.42103226037, + "y": 127.98699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.90403226037, + "y": 133.649 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 508.97303226037, + "y": 138.72499999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 504.82803226037, + "y": 142.86999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 499.75203226037, + "y": 145.801 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 494.09003226037, + "y": 147.31799999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 488.22803226037, + "y": 147.31799999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 482.56603226037, + "y": 145.801 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 477.49003226037, + "y": 142.86999999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.34503226037, + "y": 138.72499999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 470.41403226037, + "y": 133.649 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 468.89703226037, + "y": 127.98699999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 468.89703226037, + "y": 122.12499999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.41403226037, + "y": 116.46299999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.34503226037, + "y": 111.38699999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 477.49003226037, + "y": 107.24199999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 482.56603226037, + "y": 104.31099999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 488.22803226037, + "y": 102.79399999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.09003226037, + "y": 102.79399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 499.75203226037, + "y": 104.31099999999998 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 504.82803226037, + "y": 107.24199999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 508.97303226037, + "y": 111.38699999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 511.90403226037, + "y": 116.46299999999998 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 513.42103226037, + "y": 122.12499999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4733.739824, + "axes": { + "#": 665 + }, + "bounds": { + "#": 679 + }, + "circleRadius": 39.007115912208505, + "collisionFilter": { + "#": 682 + }, + "constraintImpulse": { + "#": 683 + }, + "density": 0.001, + "force": { + "#": 684 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 14265.834400986316, + "inverseInertia": 0.00007009754718103707, + "inverseMass": 0.21124946388688554, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.733739824000001, + "motion": 0, + "parent": null, + "position": { + "#": 685 + }, + "positionImpulse": { + "#": 686 + }, + "positionPrev": { + "#": 687 + }, + "render": { + "#": 688 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 690 + }, + "vertices": { + "#": 691 + } + }, + [ + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + } + ], + { + "x": -0.9709255777378387, + "y": -0.2393815416744658 + }, + { + "x": -0.885471197396615, + "y": -0.46469426355508736 + }, + { + "x": -0.7485172896504948, + "y": -0.6631152743635736 + }, + { + "x": -0.5680758383251513, + "y": -0.8229762098087504 + }, + { + "x": -0.3546285896888757, + "y": -0.935007253113728 + }, + { + "x": -0.12048698337205765, + "y": -0.9927149071298876 + }, + { + "x": 0.12048698337205765, + "y": -0.9927149071298876 + }, + { + "x": 0.3546285896888757, + "y": -0.935007253113728 + }, + { + "x": 0.5680758383251513, + "y": -0.8229762098087504 + }, + { + "x": 0.7485172896504948, + "y": -0.6631152743635736 + }, + { + "x": 0.885471197396615, + "y": -0.46469426355508736 + }, + { + "x": 0.9709255777378387, + "y": -0.2393815416744658 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 680 + }, + "min": { + "#": 681 + } + }, + { + "x": 277.446, + "y": 259.178 + }, + { + "x": 200, + "y": 181.164 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.723, + "y": 220.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.723, + "y": 220.171 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 689 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 277.446, + "y": 224.873 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275.19500000000005, + "y": 234.003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270.82500000000005, + "y": 242.32999999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 264.59000000000003, + "y": 249.368 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 256.851, + "y": 254.70999999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 248.05800000000002, + "y": 258.04499999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 238.723, + "y": 259.178 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 229.388, + "y": 258.04499999999996 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.59500000000003, + "y": 254.70999999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 212.85600000000002, + "y": 249.368 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 206.621, + "y": 242.32999999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 202.251, + "y": 234.003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 200, + "y": 224.873 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 200, + "y": 215.469 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 202.251, + "y": 206.339 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 206.621, + "y": 198.012 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 212.85600000000002, + "y": 190.974 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 220.59500000000003, + "y": 185.632 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 229.388, + "y": 182.297 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 238.723, + "y": 181.164 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 248.05800000000002, + "y": 182.297 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 256.851, + "y": 185.632 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 264.59000000000003, + "y": 190.974 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 270.82500000000005, + "y": 198.012 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 275.19500000000005, + "y": 206.339 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 277.446, + "y": 215.469 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2896.676004, + "axes": { + "#": 719 + }, + "bounds": { + "#": 733 + }, + "circleRadius": 30.51354595336077, + "collisionFilter": { + "#": 736 + }, + "constraintImpulse": { + "#": 737 + }, + "density": 0.001, + "force": { + "#": 738 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 5341.807735827058, + "inverseInertia": 0.0001872025444294978, + "inverseMass": 0.34522328303859556, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.896676004, + "motion": 0, + "parent": null, + "position": { + "#": 739 + }, + "positionImpulse": { + "#": 740 + }, + "positionPrev": { + "#": 741 + }, + "render": { + "#": 742 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 744 + }, + "vertices": { + "#": 745 + } + }, + [ + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + } + ], + { + "x": -0.9709527115634061, + "y": -0.23927146070450803 + }, + { + "x": -0.8854454502571566, + "y": -0.46474332122032835 + }, + { + "x": -0.748503349460085, + "y": -0.6631310095652546 + }, + { + "x": -0.567993431707586, + "y": -0.8230330865384695 + }, + { + "x": -0.354666528007679, + "y": -0.9349928630267603 + }, + { + "x": -0.12058714530525724, + "y": -0.992702745229975 + }, + { + "x": 0.12058714530525724, + "y": -0.992702745229975 + }, + { + "x": 0.354666528007679, + "y": -0.9349928630267603 + }, + { + "x": 0.567993431707586, + "y": -0.8230330865384695 + }, + { + "x": 0.748503349460085, + "y": -0.6631310095652546 + }, + { + "x": 0.8854454502571566, + "y": -0.46474332122032835 + }, + { + "x": 0.9709527115634061, + "y": -0.23927146070450803 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 734 + }, + "min": { + "#": 735 + } + }, + { + "x": 338.028, + "y": 242.192 + }, + { + "x": 277.446, + "y": 181.164 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.737, + "y": 211.678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.737, + "y": 211.678 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 743 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.028, + "y": 215.356 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.26800000000003, + "y": 222.498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 332.84900000000005, + "y": 229.012 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 327.971, + "y": 234.518 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.91700000000003, + "y": 238.696 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.03900000000004, + "y": 241.305 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 307.737, + "y": 242.192 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300.435, + "y": 241.305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.557, + "y": 238.696 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 287.50300000000004, + "y": 234.518 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 282.625, + "y": 229.012 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 279.206, + "y": 222.498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 277.446, + "y": 215.356 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 277.446, + "y": 208 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 279.206, + "y": 200.858 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 282.625, + "y": 194.344 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 287.50300000000004, + "y": 188.838 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 293.557, + "y": 184.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 300.435, + "y": 182.051 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 307.737, + "y": 181.164 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 315.03900000000004, + "y": 182.051 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 321.91700000000003, + "y": 184.66 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 327.971, + "y": 188.838 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 332.84900000000005, + "y": 194.344 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 336.26800000000003, + "y": 200.858 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 338.028, + "y": 208 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 831.9912370000001, + "axes": { + "#": 773 + }, + "bounds": { + "#": 777 + }, + "collisionFilter": { + "#": 780 + }, + "constraintImpulse": { + "#": 781 + }, + "density": 0.001, + "force": { + "#": 782 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 532.8630587898949, + "inverseInertia": 0.0018766547680579499, + "inverseMass": 1.2019357362534335, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.8319912370000001, + "motion": 0, + "parent": null, + "position": { + "#": 783 + }, + "positionImpulse": { + "#": 784 + }, + "positionPrev": { + "#": 785 + }, + "render": { + "#": 786 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 788 + }, + "vertices": { + "#": 789 + } + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + } + ], + { + "x": -0.5000035320614334, + "y": 0.8660233645382157 + }, + { + "x": -0.5000035320614334, + "y": -0.8660233645382157 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 778 + }, + "min": { + "#": 779 + } + }, + { + "x": 369.6621666666667, + "y": 224.998 + }, + { + "x": 331.7011666666667, + "y": 181.164 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.0085, + "y": 203.081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.0085, + "y": 203.081 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 787 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 369.6621666666667, + "y": 224.998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 331.7011666666667, + "y": 203.081 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.6621666666667, + "y": 181.164 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1307.097651, + "axes": { + "#": 794 + }, + "bounds": { + "#": 798 + }, + "collisionFilter": { + "#": 801 + }, + "constraintImpulse": { + "#": 802 + }, + "density": 0.001, + "force": { + "#": 803 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1315.2071996921047, + "inverseInertia": 0.0007603364703554725, + "inverseMass": 0.7650537809741653, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.307097651, + "motion": 0, + "parent": null, + "position": { + "#": 804 + }, + "positionImpulse": { + "#": 805 + }, + "positionPrev": { + "#": 806 + }, + "render": { + "#": 807 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 809 + }, + "vertices": { + "#": 810 + } + }, + [ + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": -0.5000013219654605, + "y": 0.8660246405459787 + }, + { + "x": -0.5000013219654605, + "y": -0.8660246405459787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 799 + }, + "min": { + "#": 800 + } + }, + { + "x": 409.31300000000005, + "y": 236.106 + }, + { + "x": 361.732, + "y": 181.164 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.4526666666667, + "y": 208.635 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.4526666666667, + "y": 208.635 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 808 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 409.31300000000005, + "y": 236.106 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 361.732, + "y": 208.635 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.31300000000005, + "y": 181.164 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3449.27664, + "axes": { + "#": 815 + }, + "bounds": { + "#": 821 + }, + "collisionFilter": { + "#": 824 + }, + "constraintImpulse": { + "#": 825 + }, + "density": 0.001, + "force": { + "#": 826 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 7702.7462363866725, + "inverseInertia": 0.0001298238276728036, + "inverseMass": 0.2899158589958734, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.44927664, + "motion": 0, + "parent": null, + "position": { + "#": 827 + }, + "positionImpulse": { + "#": 828 + }, + "positionPrev": { + "#": 829 + }, + "render": { + "#": 830 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 832 + }, + "vertices": { + "#": 833 + } + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + } + ], + { + "x": 0.3090093110139392, + "y": 0.9510590127361659 + }, + { + "x": -0.8090199312598066, + "y": 0.5877812099960136 + }, + { + "x": -0.8090199312598066, + "y": -0.5877812099960136 + }, + { + "x": 0.3090093110139392, + "y": -0.9510590127361659 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 822 + }, + "min": { + "#": 823 + } + }, + { + "x": 474.577892132183, + "y": 253.61199999999997 + }, + { + "x": 405.67589213218304, + "y": 181.164 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.764, + "y": 217.38799999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.764, + "y": 217.38799999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 831 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 474.577892132183, + "y": 239.77599999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 431.993892132183, + "y": 253.61199999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405.67589213218304, + "y": 217.38799999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 431.993892132183, + "y": 181.164 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 474.577892132183, + "y": 194.99999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2144.2456359999996, + "axes": { + "#": 840 + }, + "bounds": { + "#": 843 + }, + "collisionFilter": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "density": 0.001, + "force": { + "#": 848 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 3065.192898336695, + "inverseInertia": 0.000326243741639439, + "inverseMass": 0.46636447952178567, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.1442456359999995, + "motion": 0, + "parent": null, + "position": { + "#": 849 + }, + "positionImpulse": { + "#": 850 + }, + "positionPrev": { + "#": 851 + }, + "render": { + "#": 852 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 854 + }, + "vertices": { + "#": 855 + } + }, + [ + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 844 + }, + "min": { + "#": 845 + } + }, + { + "x": 520.8838921321831, + "y": 227.46999999999997 + }, + { + "x": 474.577892132183, + "y": 181.164 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 497.73089213218304, + "y": 204.31699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 497.73089213218304, + "y": 204.31699999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 853 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520.8838921321831, + "y": 227.46999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.577892132183, + "y": 227.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 474.577892132183, + "y": 181.164 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520.8838921321831, + "y": 181.164 + }, + [], + [], + [ + { + "#": 863 + }, + { + "#": 866 + }, + { + "#": 891 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 864 + }, + "pointB": "", + "render": { + "#": 865 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": { + "#": 867 + }, + "id": 43, + "label": "Constraint", + "length": 14.142135623730951, + "pointA": { + "#": 888 + }, + "pointB": { + "#": 889 + }, + "render": { + "#": 890 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 868 + }, + "bounds": { + "#": 871 + }, + "collisionFilter": { + "#": 874 + }, + "constraintImpulse": { + "#": 875 + }, + "density": 0.001, + "force": { + "#": 876 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 877 + }, + "positionImpulse": { + "#": 878 + }, + "positionPrev": { + "#": 879 + }, + "render": { + "#": 880 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 882 + }, + "vertices": { + "#": 883 + } + }, + [ + { + "#": 869 + }, + { + "#": 870 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 872 + }, + "min": { + "#": 873 + } + }, + { + "x": 200, + "y": 320 + }, + { + "x": 150, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 310 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 881 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 320 + }, + { + "x": 140, + "y": 300 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": { + "#": 892 + }, + "id": 44, + "label": "Constraint", + "length": 22.360679774997898, + "pointA": { + "#": 913 + }, + "pointB": { + "#": 914 + }, + "render": { + "#": 915 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 893 + }, + "bounds": { + "#": 896 + }, + "collisionFilter": { + "#": 899 + }, + "constraintImpulse": { + "#": 900 + }, + "density": 0.001, + "force": { + "#": 901 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 902 + }, + "positionImpulse": { + "#": 903 + }, + "positionPrev": { + "#": 904 + }, + "render": { + "#": 905 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 907 + }, + "vertices": { + "#": 908 + } + }, + [ + { + "#": 894 + }, + { + "#": 895 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 897 + }, + "min": { + "#": 898 + } + }, + { + "x": 680, + "y": 320 + }, + { + "x": 630, + "y": 300 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655, + "y": 310 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 906 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 630, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 680, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 630, + "y": 320 + }, + { + "x": 660, + "y": 300 + }, + { + "x": 25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/bridge/bridge-10.json b/tests/browser/refs/bridge/bridge-10.json new file mode 100644 index 00000000..f5023be1 --- /dev/null +++ b/tests/browser/refs/bridge/bridge-10.json @@ -0,0 +1,8396 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 134 + }, + "composites": { + "#": 137 + }, + "constraints": { + "#": 893 + }, + "gravity": { + "#": 949 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 33600, + "axes": { + "#": 91 + }, + "bounds": { + "#": 94 + }, + "collisionFilter": { + "#": 97 + }, + "constraintImpulse": { + "#": 98 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 99 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 100 + }, + "positionImpulse": { + "#": 101 + }, + "positionPrev": { + "#": 102 + }, + "region": { + "#": 103 + }, + "render": { + "#": 104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 106 + }, + "vertices": { + "#": 107 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 95 + }, + "min": { + "#": 96 + } + }, + { + "x": 140, + "y": 580 + }, + { + "x": 20, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80, + "y": 440 + }, + { + "endCol": 2, + "endRow": 12, + "id": "0,2,6,12", + "startCol": 0, + "startRow": 6 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 105 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 580 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 580 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 33600, + "axes": { + "#": 113 + }, + "bounds": { + "#": 116 + }, + "collisionFilter": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 121 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 122 + }, + "positionImpulse": { + "#": 123 + }, + "positionPrev": { + "#": 124 + }, + "region": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 780, + "y": 580 + }, + { + "x": 660, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 720, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 720, + "y": 440 + }, + { + "endCol": 16, + "endRow": 12, + "id": "13,16,6,12", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 660, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 780, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 780, + "y": 580 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 660, + "y": 580 + }, + { + "max": { + "#": 135 + }, + "min": { + "#": 136 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 138 + }, + { + "#": 327 + } + ], + { + "composites": { + "#": 139 + }, + "constraints": { + "#": 140 + }, + "id": 4, + "isModified": false, + "label": "Stack Chain", + "parent": null, + "type": "composite" + }, + [], + [ + { + "#": 141 + }, + { + "#": 167 + }, + { + "#": 193 + }, + { + "#": 219 + }, + { + "#": 245 + }, + { + "#": 271 + }, + { + "#": 297 + }, + { + "#": 323 + } + ], + { + "angleA": 0.25141089678075423, + "angleB": 0.01412077709531318, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 142 + }, + "id": 14, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 164 + }, + "pointB": { + "#": 165 + }, + "render": { + "#": 166 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0.014105838414492259, + "anglePrev": 0.008966805577534117, + "angularSpeed": 0.0037827931845884084, + "angularVelocity": 0.005153971517779063, + "area": 1000, + "axes": { + "#": 143 + }, + "bounds": { + "#": 146 + }, + "collisionFilter": { + "#": 149 + }, + "constraintImpulse": { + "#": 150 + }, + "density": 0.001, + "force": { + "#": 151 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 152 + }, + "positionImpulse": { + "#": 153 + }, + "positionPrev": { + "#": 154 + }, + "region": { + "#": 155 + }, + "render": { + "#": 156 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.85987462800617, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 158 + }, + "vertices": { + "#": 159 + } + }, + [ + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "x": -0.01410537063503816, + "y": 0.9999005143109231 + }, + { + "x": -0.9999005143109231, + "y": -0.01410537063503816 + }, + { + "max": { + "#": 147 + }, + "min": { + "#": 148 + } + }, + { + "x": 255.02124392830888, + "y": 337.83281546827203 + }, + { + "x": 204.744110800062, + "y": 317.1295366503018 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 229.8826773641854, + "y": 327.4811760592867 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 230.5714680823796, + "y": 324.84158763977916 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 157 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.8056454700382858, + "y": 2.64003909573222 + }, + [ + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 205.02621821276279, + "y": 317.1295366503018 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 255.02124392830888, + "y": 317.8348051820536 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 254.73913651560827, + "y": 337.83281546827203 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 204.744110800062, + "y": 337.12754693652016 + }, + { + "x": 24.214059900100523, + "y": 6.219268699320169 + }, + { + "x": -24.99750758709306, + "y": -0.3530076957024916 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.01412077709531318, + "angleB": 0.00018773052790258267, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 168 + }, + "id": 15, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 190 + }, + "pointB": { + "#": 191 + }, + "render": { + "#": 192 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0.00020289177634096498, + "anglePrev": 0.00011547167738944298, + "angularSpeed": 0.000021413633870208468, + "angularVelocity": 0.00006894102501083863, + "area": 1000, + "axes": { + "#": 169 + }, + "bounds": { + "#": 172 + }, + "collisionFilter": { + "#": 175 + }, + "constraintImpulse": { + "#": 176 + }, + "density": 0.001, + "force": { + "#": 177 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 178 + }, + "positionImpulse": { + "#": 179 + }, + "positionPrev": { + "#": 180 + }, + "region": { + "#": 181 + }, + "render": { + "#": 182 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.009311928553805, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 184 + }, + "vertices": { + "#": 185 + } + }, + [ + { + "#": 170 + }, + { + "#": 171 + } + ], + { + "x": -0.0002028917749489559, + "y": 0.9999999794174639 + }, + { + "x": -0.9999999794174639, + "y": -0.0002028917749489559 + }, + { + "max": { + "#": 173 + }, + "min": { + "#": 174 + } + }, + { + "x": 315.01165612421687, + "y": 337.80719409810985 + }, + { + "x": 265.0075993178448, + "y": 317.79704992101296 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.0096277210309, + "y": 327.8021220095614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.72434667802406, + "y": 324.8576980690257 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 183 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.8182702954541128, + "y": 2.941360143318434 + }, + [ + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265.01165715334366, + "y": 317.79704992101296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.01165612421687, + "y": 317.80719450976045 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 315.007598288718, + "y": 337.80719409810985 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265.0075993178448, + "y": 337.79704950936235 + }, + { + "x": 24.997507587093068, + "y": 0.35300769570249174 + }, + { + "x": -24.99999955946561, + "y": -0.004693263169997316 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.0001844127024002816, + "angleB": -0.012963246103896604, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 194 + }, + "id": 16, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 216 + }, + "pointB": { + "#": 217 + }, + "render": { + "#": 218 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": -0.013456322582772368, + "anglePrev": -0.008458397271014073, + "angularSpeed": 0.003985082609730979, + "angularVelocity": -0.004478461579873803, + "area": 1000, + "axes": { + "#": 195 + }, + "bounds": { + "#": 198 + }, + "collisionFilter": { + "#": 201 + }, + "constraintImpulse": { + "#": 202 + }, + "density": 0.001, + "force": { + "#": 203 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 204 + }, + "positionImpulse": { + "#": 205 + }, + "positionPrev": { + "#": 206 + }, + "region": { + "#": 207 + }, + "render": { + "#": 208 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90931927630267, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 210 + }, + "vertices": { + "#": 211 + } + }, + [ + { + "#": 196 + }, + { + "#": 197 + } + ], + { + "x": 0.013455916491190429, + "y": 0.999909465057403 + }, + { + "x": -0.999909465057403, + "y": 0.013455916491190429 + }, + { + "max": { + "#": 199 + }, + "min": { + "#": 200 + } + }, + { + "x": 375.2612271972497, + "y": 338.0947917652949 + }, + { + "x": 324.9966356145559, + "y": 317.42380663958727 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350.12893140590273, + "y": 327.7592992024411 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350.86918052182034, + "y": 324.98613570352734 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 209 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.8428513183922632, + "y": 2.8052016546284335 + }, + [ + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 324.9966356145559, + "y": 318.0966024641468 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.99210886742594, + "y": 317.42380663958727 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375.2612271972497, + "y": 337.4219959407353 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325.26575394437964, + "y": 338.0947917652949 + }, + { + "x": 24.999999574899444, + "y": 0.004610317533875727 + }, + { + "x": -24.997899457546474, + "y": 0.324072075930313 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": -0.012936858850887877, + "angleB": 0.0709212752475088, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 220 + }, + "id": 17, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 242 + }, + "pointB": { + "#": 243 + }, + "render": { + "#": 244 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0.07025977203095717, + "anglePrev": 0.055040048612227936, + "angularSpeed": 0.015354618148498532, + "angularVelocity": 0.01521972341872923, + "area": 1000, + "axes": { + "#": 221 + }, + "bounds": { + "#": 224 + }, + "collisionFilter": { + "#": 227 + }, + "constraintImpulse": { + "#": 228 + }, + "density": 0.001, + "force": { + "#": 229 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 230 + }, + "positionImpulse": { + "#": 231 + }, + "positionPrev": { + "#": 232 + }, + "region": { + "#": 233 + }, + "render": { + "#": 234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.008193872047031, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 236 + }, + "vertices": { + "#": 237 + } + }, + [ + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "x": -0.07020198082401308, + "y": 0.9975327973998576 + }, + { + "x": -0.9975327973998576, + "y": -0.07020198082401308 + }, + { + "max": { + "#": 225 + }, + "min": { + "#": 226 + } + }, + { + "x": 435.2236875962116, + "y": 337.86824246687337 + }, + { + "x": 383.9430081097384, + "y": 314.4074874776757 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5833478529748, + "y": 326.13786497227454 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410.37864422892943, + "y": 323.10399103682096 + }, + { + "endCol": 9, + "endRow": 7, + "id": "7,9,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 235 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.7452882303904289, + "y": 3.116026160245667 + }, + [ + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 385.3470477262187, + "y": 314.4074874776757 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.2236875962116, + "y": 317.9175865188763 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 433.81964797973137, + "y": 337.86824246687337 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 383.9430081097384, + "y": 334.3581434256728 + }, + { + "x": 24.997908000215485, + "y": -0.32341244991989304 + }, + { + "x": -24.937153507842076, + "y": -1.7715459142566121 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.07025977203095717, + "angleB": 0.028200276777839307, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 246 + }, + "id": 18, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 268 + }, + "pointB": { + "#": 269 + }, + "render": { + "#": 270 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0.026144813284132172, + "anglePrev": 0.023084353898451256, + "angularSpeed": 0.004647341466075146, + "angularVelocity": 0.00511592287938805, + "area": 1000, + "axes": { + "#": 247 + }, + "bounds": { + "#": 250 + }, + "collisionFilter": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "density": 0.001, + "force": { + "#": 255 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 256 + }, + "positionImpulse": { + "#": 257 + }, + "positionPrev": { + "#": 258 + }, + "region": { + "#": 259 + }, + "render": { + "#": 260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 4.360992644581265, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 262 + }, + "vertices": { + "#": 263 + } + }, + [ + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "x": -0.026141834832579154, + "y": 0.9996582438371554 + }, + { + "x": -0.9996582438371554, + "y": -0.026141834832579154 + }, + { + "max": { + "#": 251 + }, + "min": { + "#": 252 + } + }, + { + "x": 489.96829803701985, + "y": 347.73107971895604 + }, + { + "x": 439.46254914851056, + "y": 326.430823100584 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 464.7154235927652, + "y": 337.0809514097701 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 466.36085064452095, + "y": 332.96996677991456 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 261 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.659293277902293, + "y": 4.126071385455475 + }, + [ + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 439.98538584516206, + "y": 326.430823100584 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 489.96829803701985, + "y": 327.7379148422129 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 489.44546134036835, + "y": 347.73107971895604 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 439.46254914851056, + "y": 346.42398797732716 + }, + { + "x": 24.93831993499643, + "y": 1.7550495206003258 + }, + { + "x": -24.990059963636003, + "y": -0.7049134797101466 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.028200276777839307, + "angleB": 0.2273099344908819, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 272 + }, + "id": 19, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 294 + }, + "pointB": { + "#": 295 + }, + "render": { + "#": 296 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0.22110889363134484, + "anglePrev": 0.21843423407713997, + "angularSpeed": 0.011816384121211262, + "angularVelocity": 0.006505426914800494, + "area": 1000, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 4.432548646743485, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": -0.21931165515301973, + "y": 0.9756548559373049 + }, + { + "x": -0.9756548559373049, + "y": -0.21931165515301973 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 547.3657106484089, + "y": 351.3149070008692 + }, + { + "x": 494.19673474848327, + "y": 320.83622712447203 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.7812226984456, + "y": 336.07556706267053 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 522.7326493708397, + "y": 332.1815038550429 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.9174263842268147, + "y": 3.9630134124312235 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.5829678515437, + "y": 320.83622712447203 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.3657106484089, + "y": 331.80180988212305 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 542.9794775453481, + "y": 351.3149070008692 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 494.19673474848327, + "y": 340.3493242432182 + }, + { + "x": 24.990059963636003, + "y": 0.7049134797101467 + }, + { + "x": -24.35690364488697, + "y": -5.633936885845607 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.22493966099194046, + "angleB": 0.2266517015972927, + "angularStiffness": 0, + "bodyA": null, + "bodyB": { + "#": 298 + }, + "id": 20, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 320 + }, + "pointB": { + "#": 321 + }, + "render": { + "#": 322 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "angle": 0.2188387128894254, + "anglePrev": 0.235861912836776, + "angularSpeed": 0.0016925386684762628, + "angularVelocity": -0.013015105039813846, + "area": 1000, + "axes": { + "#": 299 + }, + "bounds": { + "#": 302 + }, + "collisionFilter": { + "#": 305 + }, + "constraintImpulse": { + "#": 306 + }, + "density": 0.001, + "force": { + "#": 307 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 308 + }, + "positionImpulse": { + "#": 309 + }, + "positionPrev": { + "#": 310 + }, + "region": { + "#": 311 + }, + "render": { + "#": 312 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.1699462601631083, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 314 + }, + "vertices": { + "#": 315 + } + }, + [ + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "x": -0.21709617905556217, + "y": 0.9761502184804727 + }, + { + "x": -0.9761502184804727, + "y": -0.21709617905556217 + }, + { + "max": { + "#": 303 + }, + "min": { + "#": 304 + } + }, + { + "x": 591.7993309212551, + "y": 353.7310543514949 + }, + { + "x": 538.6498964161202, + "y": 323.35324102910744 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 565.2246136686883, + "y": 338.542147690301 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 565.3427865717481, + "y": 335.98133243514025 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,6,7", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 313 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3486204335381444, + "y": 2.677328583893768 + }, + [ + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 542.9918199972313, + "y": 323.35324102910744 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 591.7993309212551, + "y": 334.2080499818853 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 587.457407340144, + "y": 353.7310543514949 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 538.6498964161202, + "y": 342.87624539871683 + }, + { + "x": 24.370189182775118, + "y": 5.5761885904038975 + }, + { + "x": -24.360606810633623, + "y": -5.617903151328896 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.22284680779696214, + "angleB": -0.582852484095372, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 21, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 324 + }, + "pointB": { + "#": 325 + }, + "render": { + "#": 326 + }, + "stiffness": 0.9, + "type": "constraint" + }, + { + "x": 24.381805947247926, + "y": 5.525173187398409 + }, + { + "x": -20.87240048663564, + "y": 13.760192510480824 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 328 + }, + "composites": { + "#": 891 + }, + "constraints": { + "#": 892 + }, + "id": 22, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 329 + }, + { + "#": 355 + }, + { + "#": 381 + }, + { + "#": 436 + }, + { + "#": 458 + }, + { + "#": 483 + }, + { + "#": 513 + }, + { + "#": 543 + }, + { + "#": 565 + }, + { + "#": 590 + }, + { + "#": 612 + }, + { + "#": 637 + }, + { + "#": 689 + }, + { + "#": 744 + }, + { + "#": 799 + }, + { + "#": 821 + }, + { + "#": 843 + }, + { + "#": 869 + } + ], + { + "angle": 1.747060246700578e-16, + "anglePrev": -7.570096222827088e-18, + "angularSpeed": 1.2509175817417444e-16, + "angularVelocity": 1.9433199313660869e-16, + "area": 1367.9015580000003, + "axes": { + "#": 330 + }, + "bounds": { + "#": 336 + }, + "collisionFilter": { + "#": 339 + }, + "constraintImpulse": { + "#": 340 + }, + "density": 0.001, + "force": { + "#": 341 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1211.432510854089, + "inverseInertia": 0.0008254690137835049, + "inverseMass": 0.7310467585562906, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.3679015580000002, + "motion": 0, + "parent": null, + "position": { + "#": 342 + }, + "positionImpulse": { + "#": 343 + }, + "positionPrev": { + "#": 344 + }, + "region": { + "#": 345 + }, + "render": { + "#": 346 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 348 + }, + "vertices": { + "#": 349 + } + }, + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 0.3090371554557351, + "y": 0.951049965326653 + }, + { + "x": -0.8090151080740143, + "y": 0.5877878485542132 + }, + { + "x": -0.8090151080740143, + "y": -0.5877878485542134 + }, + { + "x": 0.30903715545573546, + "y": -0.9510499653266528 + }, + { + "x": 1, + "y": 1.747060246700578e-16 + }, + { + "max": { + "#": 337 + }, + "min": { + "#": 338 + } + }, + { + "x": 235.1942091912632, + "y": 106.26702548206136 + }, + { + "x": 191.80320919126316, + "y": 57.735754767025725 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 215.7890681686181, + "y": 80.54775476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 215.78906816861814, + "y": 77.64048405199009 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,1,2", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 347 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -5.684341886080802e-14, + "y": 2.9072707150356365 + }, + [ + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.1942091912632, + "y": 94.64575476702575 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 208.37720919126323, + "y": 103.35975476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 191.80320919126322, + "y": 80.54775476702571 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 208.37720919126323, + "y": 57.735754767025725 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 235.1942091912632, + "y": 66.44975476702572 + }, + { + "angle": 3.390746738857227e-16, + "anglePrev": 4.0341947112984263e-16, + "angularSpeed": 7.846736962437323e-17, + "angularVelocity": -8.367236294398468e-17, + "area": 1613.16158, + "axes": { + "#": 356 + }, + "bounds": { + "#": 362 + }, + "collisionFilter": { + "#": 365 + }, + "constraintImpulse": { + "#": 366 + }, + "density": 0.001, + "force": { + "#": 367 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1684.7880608878233, + "inverseInertia": 0.0005935464662973903, + "inverseMass": 0.619900704553105, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.61316158, + "motion": 0, + "parent": null, + "position": { + "#": 368 + }, + "positionImpulse": { + "#": 369 + }, + "positionPrev": { + "#": 370 + }, + "region": { + "#": 371 + }, + "render": { + "#": 372 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 374 + }, + "vertices": { + "#": 375 + } + }, + [ + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + } + ], + { + "x": 0.3090373349977839, + "y": 0.9510499069856783 + }, + { + "x": -0.8090269028730659, + "y": 0.5877716141730688 + }, + { + "x": -0.8090269028730654, + "y": -0.5877716141730692 + }, + { + "x": 0.3090373349977846, + "y": -0.9510499069856783 + }, + { + "x": 1, + "y": 3.390746738857227e-16 + }, + { + "max": { + "#": 363 + }, + "min": { + "#": 364 + } + }, + { + "x": 282.26421998698254, + "y": 110.18902548206115 + }, + { + "x": 235.14421998698256, + "y": 57.73575476702553 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 261.1913475257792, + "y": 82.50875476702554 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 261.19134752577924, + "y": 79.6014840519899 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 373 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -5.684341886080802e-14, + "y": 2.9072707150356365 + }, + [ + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 282.26421998698254, + "y": 97.81875476702555 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 253.14221998698258, + "y": 107.28175476702552 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 235.14421998698262, + "y": 82.50875476702552 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 253.14221998698264, + "y": 57.73575476702553 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 282.26421998698254, + "y": 67.19875476702555 + }, + { + "angle": -5.644753577271975e-15, + "anglePrev": -4.70094860140794e-15, + "angularSpeed": 9.033006964684068e-16, + "angularVelocity": -9.518678738205873e-16, + "area": 3066.75815, + "axes": { + "#": 382 + }, + "bounds": { + "#": 396 + }, + "circleRadius": 31.396519204389577, + "collisionFilter": { + "#": 399 + }, + "constraintImpulse": { + "#": 400 + }, + "density": 0.001, + "force": { + "#": 401 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 5987.526734438354, + "inverseInertia": 0.0001670138680547875, + "inverseMass": 0.3260772291417893, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.06675815, + "motion": 0, + "parent": null, + "position": { + "#": 402 + }, + "positionImpulse": { + "#": 403 + }, + "positionPrev": { + "#": 404 + }, + "region": { + "#": 405 + }, + "render": { + "#": 406 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 408 + }, + "vertices": { + "#": 409 + } + }, + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "x": -0.9709223455443412, + "y": -0.23939465099010762 + }, + { + "x": -0.8854821719416532, + "y": -0.4646733510472626 + }, + { + "x": -0.7485525823007603, + "y": -0.6630754342688795 + }, + { + "x": -0.568013892198499, + "y": -0.8230189659233329 + }, + { + "x": -0.3546104225870122, + "y": -0.9350141433115654 + }, + { + "x": -0.1206193812576413, + "y": -0.9926988288826696 + }, + { + "x": 0.12061938125763011, + "y": -0.9926988288826711 + }, + { + "x": 0.35461042258700176, + "y": -0.9350141433115696 + }, + { + "x": 0.5680138921984896, + "y": -0.8230189659233391 + }, + { + "x": 0.7485525823007529, + "y": -0.6630754342688882 + }, + { + "x": 0.8854821719416479, + "y": -0.4646733510472725 + }, + { + "x": 0.9709223455443381, + "y": -0.2393946509901186 + }, + { + "x": 1, + "y": -5.644753577271975e-15 + }, + { + "max": { + "#": 397 + }, + "min": { + "#": 398 + } + }, + { + "x": 344.5502531507628, + "y": 126.0783646306712 + }, + { + "x": 282.2142531507628, + "y": 60.377093915635584 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 313.3822531507628, + "y": 91.7740939156356 + }, + { + "x": 0.00031375521434938284, + "y": 0.04680805974163685 + }, + { + "x": 313.3822531507628, + "y": 88.8668232006 + }, + { + "endCol": 7, + "endRow": 2, + "id": "5,7,1,2", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 407 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035608 + }, + [ + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 344.5502531507628, + "y": 95.5580939156354 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 342.7382531507628, + "y": 102.9070939156354 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 339.2212531507628, + "y": 109.60909391563546 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 334.2022531507628, + "y": 115.27509391563551 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 327.9732531507628, + "y": 119.5740939156355 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320.8962531507628, + "y": 122.25809391563557 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 313.3822531507628, + "y": 123.1710939156356 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 305.86825315076277, + "y": 122.25809391563565 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 298.79125315076277, + "y": 119.5740939156357 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 292.5622531507628, + "y": 115.27509391563571 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5432531507628, + "y": 109.60909391563577 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 284.0262531507628, + "y": 102.9070939156358 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 282.2142531507628, + "y": 95.5580939156358 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 282.2142531507628, + "y": 87.99009391563581 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 284.0262531507628, + "y": 80.6410939156358 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 287.5432531507628, + "y": 73.93909391563572 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 292.5622531507628, + "y": 68.2730939156357 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 298.79125315076277, + "y": 63.97409391563566 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 305.86825315076277, + "y": 61.29009391563563 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 313.3822531507628, + "y": 60.377093915635584 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 320.8962531507628, + "y": 61.29009391563553 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 327.9732531507628, + "y": 63.97409391563551 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 334.2022531507628, + "y": 68.27309391563549 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 339.2212531507628, + "y": 73.93909391563544 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 342.7382531507628, + "y": 80.64109391563542 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 344.5502531507628, + "y": 87.99009391563541 + }, + { + "angle": -1.19248313689974e-13, + "anglePrev": -1.043036383130393e-13, + "angularSpeed": 1.4797790568372507e-14, + "angularVelocity": -1.4927323726447784e-14, + "area": 1045.258734, + "axes": { + "#": 437 + }, + "bounds": { + "#": 441 + }, + "collisionFilter": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "density": 0.001, + "force": { + "#": 446 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 841.0575612243855, + "inverseInertia": 0.001188979263849945, + "inverseMass": 0.9567009272175092, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.0452587340000001, + "motion": 0, + "parent": null, + "position": { + "#": 447 + }, + "positionImpulse": { + "#": 448 + }, + "positionPrev": { + "#": 449 + }, + "region": { + "#": 450 + }, + "render": { + "#": 451 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150351373, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 453 + }, + "vertices": { + "#": 454 + } + }, + [ + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": -0.5000049366844117, + "y": 0.8660225535696039 + }, + { + "x": -0.5000049366846182, + "y": -0.8660225535694847 + }, + { + "x": 1, + "y": -1.19248313689974e-13 + }, + { + "max": { + "#": 442 + }, + "min": { + "#": 443 + } + }, + { + "x": 385.37694973237177, + "y": 108.68696695491478 + }, + { + "x": 342.8279497323688, + "y": 56.64769623987967 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 371.19394973236876, + "y": 81.21369623988137 + }, + { + "x": -0.010575912336090752, + "y": 0.002607640924342965 + }, + { + "x": 371.1939497323687, + "y": 78.30642552484623 + }, + { + "endCol": 8, + "endRow": 2, + "id": "7,8,1,2", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 452 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 5.684341886080802e-14, + "y": 2.907270715035139 + }, + [ + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 385.3769497323717, + "y": 105.77969623987964 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 342.8279497323688, + "y": 81.21369623988478 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.3769497323658, + "y": 56.64769623987967 + }, + { + "angle": -5.873696817715545e-14, + "anglePrev": -5.164982958859109e-14, + "angularSpeed": 7.0871385885643675e-15, + "angularVelocity": -7.0871385885643675e-15, + "area": 1661.5850679999999, + "axes": { + "#": 459 + }, + "bounds": { + "#": 463 + }, + "collisionFilter": { + "#": 466 + }, + "constraintImpulse": { + "#": 467 + }, + "density": 0.001, + "force": { + "#": 468 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1771.0956837781462, + "inverseInertia": 0.0005646222330951508, + "inverseMass": 0.6018349702694848, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.661585068, + "motion": 0, + "parent": null, + "position": { + "#": 469 + }, + "positionImpulse": { + "#": 470 + }, + "positionPrev": { + "#": 471 + }, + "region": { + "#": 472 + }, + "render": { + "#": 473 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715036108, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 475 + }, + "vertices": { + "#": 476 + } + }, + [ + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + } + ], + { + "x": -0.49998374039080595, + "y": -0.86603479107067 + }, + { + "x": 0.49998374039070415, + "y": -0.8660347910707289 + }, + { + "x": 1, + "y": -5.873696817715545e-14 + }, + { + "max": { + "#": 464 + }, + "min": { + "#": 465 + } + }, + { + "x": 430.452379386954, + "y": 108.31375476702952 + }, + { + "x": 386.6503793869522, + "y": 57.73575476702951 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 408.5513793869531, + "y": 83.02475476702952 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 408.5513793869531, + "y": 80.11748405199342 + }, + { + "endCol": 8, + "endRow": 2, + "id": "8,8,1,2", + "startCol": 8, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 474 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715036108 + }, + [ + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 430.452379386954, + "y": 95.66975476702824 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 408.55137938695447, + "y": 108.31375476702952 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 386.650379386954, + "y": 95.6697547670308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 386.6503793869522, + "y": 70.3797547670308 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 408.55137938695174, + "y": 57.73575476702951 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 430.4523793869522, + "y": 70.37975476702823 + }, + { + "angle": 3.914909354698407e-15, + "anglePrev": 3.4425856323740163e-15, + "angularSpeed": 4.723237223243907e-16, + "angularVelocity": 4.723237223243907e-16, + "area": 2545.3842360000003, + "axes": { + "#": 484 + }, + "bounds": { + "#": 492 + }, + "collisionFilter": { + "#": 495 + }, + "constraintImpulse": { + "#": 496 + }, + "density": 0.001, + "force": { + "#": 497 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 4141.080021292649, + "inverseInertia": 0.00024148289693949151, + "inverseMass": 0.39286799448851456, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.5453842360000003, + "motion": 0, + "parent": null, + "position": { + "#": 498 + }, + "positionImpulse": { + "#": 499 + }, + "positionPrev": { + "#": 500 + }, + "region": { + "#": 501 + }, + "render": { + "#": 502 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356156, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 504 + }, + "vertices": { + "#": 505 + } + }, + [ + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + } + ], + { + "x": 0.6234824257695242, + "y": 0.7818373646459668 + }, + { + "x": -0.22250777659341864, + "y": 0.9749309151706357 + }, + { + "x": -0.9009710359932033, + "y": 0.43387923700188086 + }, + { + "x": -0.9009710359931997, + "y": -0.43387923700188796 + }, + { + "x": -0.22250777659341098, + "y": -0.9749309151706375 + }, + { + "x": 0.62348242576953, + "y": -0.7818373646459614 + }, + { + "x": 1, + "y": 3.914909354698407e-15 + }, + { + "max": { + "#": 493 + }, + "min": { + "#": 494 + } + }, + { + "x": 497.4674157206022, + "y": 120.11102548206114 + }, + { + "x": 439.48941572060227, + "y": 57.735754767025526 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 469.98853240102943, + "y": 87.4697547670255 + }, + { + "x": 0.3505151117801758, + "y": 1.329091113501885e-18 + }, + { + "x": 469.98853240102943, + "y": 84.56248405198988 + }, + { + "endCol": 10, + "endRow": 2, + "id": "9,10,1,2", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 503 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356156 + }, + [ + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 497.4674157206022, + "y": 100.70275476702562 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 476.77541572060227, + "y": 117.20375476702552 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.97241572060227, + "y": 111.31475476702539 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 439.48941572060227, + "y": 87.46975476702539 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450.97241572060227, + "y": 63.62475476702542 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 476.77541572060227, + "y": 57.735754767025526 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 497.4674157206022, + "y": 74.23675476702563 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2860.0907570000004, + "axes": { + "#": 514 + }, + "bounds": { + "#": 522 + }, + "collisionFilter": { + "#": 525 + }, + "constraintImpulse": { + "#": 526 + }, + "density": 0.001, + "force": { + "#": 527 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 5228.372858362924, + "inverseInertia": 0.00019126409441141387, + "inverseMass": 0.3496392544720915, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.8600907570000005, + "motion": 0, + "parent": null, + "position": { + "#": 528 + }, + "positionImpulse": { + "#": 529 + }, + "positionPrev": { + "#": 530 + }, + "region": { + "#": 531 + }, + "render": { + "#": 532 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 534 + }, + "vertices": { + "#": 535 + } + }, + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "x": 0.6234945666503724, + "y": 0.781827682649741 + }, + { + "x": -0.2225315292975342, + "y": 0.9749254938037577 + }, + { + "x": -0.900958835995675, + "y": 0.4339045699705392 + }, + { + "x": -0.900958835995675, + "y": -0.4339045699705392 + }, + { + "x": -0.2225315292975342, + "y": -0.9749254938037577 + }, + { + "x": 0.6234945666503724, + "y": -0.781827682649741 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 523 + }, + "min": { + "#": 524 + } + }, + { + "x": 259.8570322603699, + "y": 183.56775476702597 + }, + { + "x": 198.39903226036986, + "y": 120.52975476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 230.729, + "y": 152.04875476702597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 230.729, + "y": 149.1414840519903 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 533 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 259.8570322603699, + "y": 166.07575476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 237.92303226036987, + "y": 183.56775476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 210.57203226036987, + "y": 177.32475476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 198.39903226036986, + "y": 152.04875476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 210.57203226036987, + "y": 126.77275476702593 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 237.92303226036987, + "y": 120.52975476702593 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 259.8570322603699, + "y": 138.02175476702593 + }, + { + "angle": -4.769567858763762e-16, + "anglePrev": -4.2336788329525354e-16, + "angularSpeed": 5.358890258112269e-17, + "angularVelocity": -5.358890258112269e-17, + "area": 3059.8598560000005, + "axes": { + "#": 544 + }, + "bounds": { + "#": 547 + }, + "collisionFilter": { + "#": 550 + }, + "constraintImpulse": { + "#": 551 + }, + "density": 0.001, + "force": { + "#": 552 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 6241.828225573563, + "inverseInertia": 0.00016020947130567818, + "inverseMass": 0.3268123531994858, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.0598598560000005, + "motion": 0, + "parent": null, + "position": { + "#": 553 + }, + "positionImpulse": { + "#": 554 + }, + "positionPrev": { + "#": 555 + }, + "region": { + "#": 556 + }, + "render": { + "#": 557 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 559 + }, + "vertices": { + "#": 560 + } + }, + [ + { + "#": 545 + }, + { + "#": 546 + } + ], + { + "x": -4.769567858763762e-16, + "y": -1 + }, + { + "x": 1, + "y": -4.769567858763762e-16 + }, + { + "max": { + "#": 548 + }, + "min": { + "#": 549 + } + }, + { + "x": 315.17303226036995, + "y": 183.27500732431724 + }, + { + "x": 259.8570322603699, + "y": 125.05173660928146 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.51503226036994, + "y": 152.70973660928155 + }, + { + "x": 0, + "y": 0.10879006489982863 + }, + { + "x": 287.51503226036994, + "y": 149.80246589424587 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 558 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.17303226036995, + "y": 180.36773660928156 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 259.8570322603699, + "y": 180.36773660928156 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 259.8570322603699, + "y": 125.05173660928146 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 315.17303226036995, + "y": 125.05173660928146 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3989.2628600000007, + "axes": { + "#": 566 + }, + "bounds": { + "#": 570 + }, + "collisionFilter": { + "#": 573 + }, + "constraintImpulse": { + "#": 574 + }, + "density": 0.001, + "force": { + "#": 575 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 10208.975714199174, + "inverseInertia": 0.00009795301977348697, + "inverseMass": 0.25067287744483197, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.9892628600000006, + "motion": 0, + "parent": null, + "position": { + "#": 576 + }, + "positionImpulse": { + "#": 577 + }, + "positionPrev": { + "#": 578 + }, + "region": { + "#": 579 + }, + "render": { + "#": 580 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 582 + }, + "vertices": { + "#": 583 + } + }, + [ + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + } + ], + { + "x": -0.49999270020333786, + "y": -0.8660296182829864 + }, + { + "x": 0.49999270020333786, + "y": -0.8660296182829864 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 571 + }, + "min": { + "#": 572 + } + }, + { + "x": 383.04303226036996, + "y": 198.89975476702597 + }, + { + "x": 315.17303226036995, + "y": 120.52975476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.10803226036995, + "y": 159.71475476702597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.10803226036995, + "y": 156.8074840519903 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,2,4", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 581 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 383.04303226036996, + "y": 179.30775476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 349.10803226036995, + "y": 198.89975476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 315.17303226036995, + "y": 179.30775476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 315.17303226036995, + "y": 140.12175476702595 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 349.10803226036995, + "y": 120.52975476702593 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 383.04303226036996, + "y": 140.12175476702595 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 871.6665760000001, + "axes": { + "#": 591 + }, + "bounds": { + "#": 594 + }, + "collisionFilter": { + "#": 597 + }, + "constraintImpulse": { + "#": 598 + }, + "density": 0.001, + "force": { + "#": 599 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 506.5350798103759, + "inverseInertia": 0.001974196930989173, + "inverseMass": 1.1472276527900274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.8716665760000001, + "motion": 0, + "parent": null, + "position": { + "#": 600 + }, + "positionImpulse": { + "#": 601 + }, + "positionPrev": { + "#": 602 + }, + "region": { + "#": 603 + }, + "render": { + "#": 604 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 606 + }, + "vertices": { + "#": 607 + } + }, + [ + { + "#": 592 + }, + { + "#": 593 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 595 + }, + "min": { + "#": 596 + } + }, + { + "x": 412.56703226036996, + "y": 150.05375476702574 + }, + { + "x": 383.04303226036996, + "y": 120.52975476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 397.80503226036996, + "y": 135.29175476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 397.80503226036996, + "y": 132.38448405199009 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 605 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 412.56703226036996, + "y": 150.05375476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 383.04303226036996, + "y": 150.05375476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.04303226036996, + "y": 120.52975476702574 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 412.56703226036996, + "y": 120.52975476702574 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2747.94639, + "axes": { + "#": 613 + }, + "bounds": { + "#": 617 + }, + "collisionFilter": { + "#": 620 + }, + "constraintImpulse": { + "#": 621 + }, + "density": 0.001, + "force": { + "#": 622 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 4844.10306453334, + "inverseInertia": 0.00020643656558870835, + "inverseMass": 0.36390811830939684, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.74794639, + "motion": 0, + "parent": null, + "position": { + "#": 623 + }, + "positionImpulse": { + "#": 624 + }, + "positionPrev": { + "#": 625 + }, + "region": { + "#": 626 + }, + "render": { + "#": 627 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 629 + }, + "vertices": { + "#": 630 + } + }, + [ + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "x": -0.4999983780624879, + "y": -0.8660263402084726 + }, + { + "x": 0.4999983780624879, + "y": -0.8660263402084726 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 618 + }, + "min": { + "#": 619 + } + }, + { + "x": 468.89703226037, + "y": 185.57375476702595 + }, + { + "x": 412.56703226036996, + "y": 120.52975476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440.73203226037, + "y": 153.05175476702595 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440.73203226037, + "y": 150.14448405199028 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 628 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 468.89703226037, + "y": 169.31275476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440.73203226037, + "y": 185.57375476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 412.56703226036996, + "y": 169.31275476702595 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 412.56703226036996, + "y": 136.79075476702593 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 440.73203226037, + "y": 120.52975476702593 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 468.89703226037, + "y": 136.79075476702593 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1565.919654, + "axes": { + "#": 638 + }, + "bounds": { + "#": 651 + }, + "circleRadius": 22.454389574759944, + "collisionFilter": { + "#": 654 + }, + "constraintImpulse": { + "#": 655 + }, + "density": 0.001, + "force": { + "#": 656 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1561.0991962205608, + "inverseInertia": 0.0006405742840820183, + "inverseMass": 0.638602368547831, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.565919654, + "motion": 0, + "parent": null, + "position": { + "#": 657 + }, + "positionImpulse": { + "#": 658 + }, + "positionPrev": { + "#": 659 + }, + "region": { + "#": 660 + }, + "render": { + "#": 661 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 663 + }, + "vertices": { + "#": 664 + } + }, + [ + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "x": -0.9659312992094581, + "y": -0.25879861902167917 + }, + { + "x": -0.8659980663559208, + "y": -0.5000473468260844 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.5000473468260844, + "y": -0.8659980663559208 + }, + { + "x": -0.25879861902167917, + "y": -0.9659312992094581 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25879861902167917, + "y": -0.9659312992094581 + }, + { + "x": 0.5000473468260844, + "y": -0.8659980663559208 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.8659980663559208, + "y": -0.5000473468260844 + }, + { + "x": 0.9659312992094581, + "y": -0.25879861902167917 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 652 + }, + "min": { + "#": 653 + } + }, + { + "x": 513.42103226037, + "y": 165.05375476702574 + }, + { + "x": 468.89703226037, + "y": 120.52975476702571 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 491.15903226037, + "y": 142.7917547670257 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 491.15903226037, + "y": 139.88448405199006 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 662 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 513.42103226037, + "y": 145.72275476702575 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.90403226037, + "y": 151.38475476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 508.97303226037, + "y": 156.46075476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 504.82803226037, + "y": 160.60575476702573 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 499.75203226037, + "y": 163.53675476702574 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 494.09003226037, + "y": 165.05375476702574 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 488.22803226037, + "y": 165.05375476702574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 482.56603226037, + "y": 163.53675476702574 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 477.49003226037, + "y": 160.60575476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.34503226037, + "y": 156.46075476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 470.41403226037, + "y": 151.38475476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 468.89703226037, + "y": 145.72275476702575 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 468.89703226037, + "y": 139.86075476702572 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.41403226037, + "y": 134.19875476702572 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.34503226037, + "y": 129.1227547670257 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 477.49003226037, + "y": 124.97775476702571 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 482.56603226037, + "y": 122.0467547670257 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 488.22803226037, + "y": 120.52975476702571 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.09003226037, + "y": 120.52975476702571 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 499.75203226037, + "y": 122.0467547670257 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 504.82803226037, + "y": 124.97775476702571 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 508.97303226037, + "y": 129.1227547670257 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 511.90403226037, + "y": 134.19875476702572 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 513.42103226037, + "y": 139.86075476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4733.739824, + "axes": { + "#": 690 + }, + "bounds": { + "#": 704 + }, + "circleRadius": 39.007115912208505, + "collisionFilter": { + "#": 707 + }, + "constraintImpulse": { + "#": 708 + }, + "density": 0.001, + "force": { + "#": 709 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 14265.834400986316, + "inverseInertia": 0.00007009754718103707, + "inverseMass": 0.21124946388688554, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.733739824000001, + "motion": 0, + "parent": null, + "position": { + "#": 710 + }, + "positionImpulse": { + "#": 711 + }, + "positionPrev": { + "#": 712 + }, + "region": { + "#": 713 + }, + "render": { + "#": 714 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 716 + }, + "vertices": { + "#": 717 + } + }, + [ + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + } + ], + { + "x": -0.9709255777378387, + "y": -0.2393815416744658 + }, + { + "x": -0.885471197396615, + "y": -0.46469426355508736 + }, + { + "x": -0.7485172896504948, + "y": -0.6631152743635736 + }, + { + "x": -0.5680758383251513, + "y": -0.8229762098087504 + }, + { + "x": -0.3546285896888757, + "y": -0.935007253113728 + }, + { + "x": -0.12048698337205765, + "y": -0.9927149071298876 + }, + { + "x": 0.12048698337205765, + "y": -0.9927149071298876 + }, + { + "x": 0.3546285896888757, + "y": -0.935007253113728 + }, + { + "x": 0.5680758383251513, + "y": -0.8229762098087504 + }, + { + "x": 0.7485172896504948, + "y": -0.6631152743635736 + }, + { + "x": 0.885471197396615, + "y": -0.46469426355508736 + }, + { + "x": 0.9709255777378387, + "y": -0.2393815416744658 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 705 + }, + "min": { + "#": 706 + } + }, + { + "x": 244.81740822651705, + "y": 279.82102548206154 + }, + { + "x": 167.37140822651702, + "y": 198.89975476702597 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 206.09440822651703, + "y": 237.90675476702597 + }, + { + "x": -0.7849802897166616, + "y": 0 + }, + { + "x": 206.09440822651703, + "y": 234.9994840519903 + }, + { + "endCol": 5, + "endRow": 5, + "id": "3,5,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 715 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 244.81740822651705, + "y": 242.60875476702597 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 242.56640822651707, + "y": 251.73875476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 238.19640822651706, + "y": 260.06575476702596 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 231.96140822651705, + "y": 267.1037547670259 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 224.22240822651702, + "y": 272.44575476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.42940822651707, + "y": 275.7807547670258 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 206.09440822651703, + "y": 276.91375476702586 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 196.75940822651705, + "y": 275.7807547670258 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 187.96640822651705, + "y": 272.44575476702585 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 180.22740822651707, + "y": 267.1037547670259 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 173.99240822651706, + "y": 260.06575476702596 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 169.62240822651705, + "y": 251.73875476702597 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 167.37140822651702, + "y": 242.60875476702597 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 167.37140822651702, + "y": 233.20475476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 169.62240822651705, + "y": 224.07475476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 173.99240822651706, + "y": 215.74775476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 180.22740822651707, + "y": 208.70975476702597 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 187.96640822651705, + "y": 203.36775476702599 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 196.75940822651705, + "y": 200.03275476702598 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 206.09440822651703, + "y": 198.89975476702597 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 215.42940822651707, + "y": 200.03275476702598 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 224.22240822651702, + "y": 203.36775476702599 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 231.96140822651705, + "y": 208.70975476702597 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 238.19640822651706, + "y": 215.74775476702598 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 242.56640822651707, + "y": 224.07475476702598 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 244.81740822651705, + "y": 233.20475476702597 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2896.676004, + "axes": { + "#": 745 + }, + "bounds": { + "#": 759 + }, + "circleRadius": 30.51354595336077, + "collisionFilter": { + "#": 762 + }, + "constraintImpulse": { + "#": 763 + }, + "density": 0.001, + "force": { + "#": 764 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 5341.807735827058, + "inverseInertia": 0.0001872025444294978, + "inverseMass": 0.34522328303859556, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.896676004, + "motion": 0, + "parent": null, + "position": { + "#": 765 + }, + "positionImpulse": { + "#": 766 + }, + "positionPrev": { + "#": 767 + }, + "region": { + "#": 768 + }, + "render": { + "#": 769 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 771 + }, + "vertices": { + "#": 772 + } + }, + [ + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + } + ], + { + "x": -0.9709527115634061, + "y": -0.23927146070450803 + }, + { + "x": -0.8854454502571566, + "y": -0.46474332122032835 + }, + { + "x": -0.748503349460085, + "y": -0.6631310095652546 + }, + { + "x": -0.567993431707586, + "y": -0.8230330865384695 + }, + { + "x": -0.354666528007679, + "y": -0.9349928630267603 + }, + { + "x": -0.12058714530525724, + "y": -0.992702745229975 + }, + { + "x": 0.12058714530525724, + "y": -0.992702745229975 + }, + { + "x": 0.354666528007679, + "y": -0.9349928630267603 + }, + { + "x": 0.567993431707586, + "y": -0.8230330865384695 + }, + { + "x": 0.748503349460085, + "y": -0.6631310095652546 + }, + { + "x": 0.8854454502571566, + "y": -0.46474332122032835 + }, + { + "x": 0.9709527115634061, + "y": -0.23927146070450803 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 760 + }, + "min": { + "#": 761 + } + }, + { + "x": 326.33784267452785, + "y": 269.73615088859987 + }, + { + "x": 265.75584267452786, + "y": 205.8008801735642 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 296.04684267452785, + "y": 236.3148801735642 + }, + { + "x": -0.13383355987580234, + "y": 0.12970172505349695 + }, + { + "x": 296.04684267452785, + "y": 233.40760945852853 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 770 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 326.33784267452785, + "y": 239.9928801735642 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 324.57784267452786, + "y": 247.1348801735642 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 321.1588426745279, + "y": 253.6488801735642 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 316.28084267452783, + "y": 259.15488017356427 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 310.22684267452786, + "y": 263.3328801735642 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 303.3488426745279, + "y": 265.9418801735642 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 296.04684267452785, + "y": 266.8288801735642 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.74484267452783, + "y": 265.9418801735642 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 281.86684267452785, + "y": 263.3328801735642 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.8128426745279, + "y": 259.15488017356427 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 270.93484267452783, + "y": 253.6488801735642 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 267.51584267452785, + "y": 247.1348801735642 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 265.75584267452786, + "y": 239.9928801735642 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 265.75584267452786, + "y": 232.6368801735642 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 267.51584267452785, + "y": 225.4948801735642 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 270.93484267452783, + "y": 218.9808801735642 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 275.8128426745279, + "y": 213.4748801735642 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 281.86684267452785, + "y": 209.2968801735642 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 288.74484267452783, + "y": 206.6878801735642 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 296.04684267452785, + "y": 205.8008801735642 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 303.3488426745279, + "y": 206.6878801735642 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 310.22684267452786, + "y": 209.2968801735642 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 316.28084267452783, + "y": 213.4748801735642 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 321.1588426745279, + "y": 218.9808801735642 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 324.57784267452786, + "y": 225.4948801735642 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 326.33784267452785, + "y": 232.6368801735642 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 831.9912370000001, + "axes": { + "#": 800 + }, + "bounds": { + "#": 804 + }, + "collisionFilter": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "density": 0.001, + "force": { + "#": 809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 532.8630587898949, + "inverseInertia": 0.0018766547680579499, + "inverseMass": 1.2019357362534335, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.8319912370000001, + "motion": 0, + "parent": null, + "position": { + "#": 810 + }, + "positionImpulse": { + "#": 811 + }, + "positionPrev": { + "#": 812 + }, + "region": { + "#": 813 + }, + "render": { + "#": 814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 816 + }, + "vertices": { + "#": 817 + } + }, + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": -0.5000035320614334, + "y": 0.8660233645382157 + }, + { + "x": -0.5000035320614334, + "y": -0.8660233645382157 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 805 + }, + "min": { + "#": 806 + } + }, + { + "x": 367.5231191352135, + "y": 241.72713689611854 + }, + { + "x": 329.56211913521355, + "y": 197.89313689611853 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 354.86945246854685, + "y": 219.81013689611854 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 354.86945246854685, + "y": 216.90286618108286 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 815 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.5231191352135, + "y": 241.72713689611854 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 329.56211913521355, + "y": 219.81013689611854 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 367.5231191352135, + "y": 197.89313689611853 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1307.097651, + "axes": { + "#": 822 + }, + "bounds": { + "#": 826 + }, + "collisionFilter": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "density": 0.001, + "force": { + "#": 831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1315.2071996921047, + "inverseInertia": 0.0007603364703554725, + "inverseMass": 0.7650537809741653, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.307097651, + "motion": 0, + "parent": null, + "position": { + "#": 832 + }, + "positionImpulse": { + "#": 833 + }, + "positionPrev": { + "#": 834 + }, + "region": { + "#": 835 + }, + "render": { + "#": 836 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 838 + }, + "vertices": { + "#": 839 + } + }, + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": -0.5000013219654605, + "y": 0.8660246405459787 + }, + { + "x": -0.5000013219654605, + "y": -0.8660246405459787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 827 + }, + "min": { + "#": 828 + } + }, + { + "x": 421.5010964943969, + "y": 256.74902548206165 + }, + { + "x": 373.9200964943969, + "y": 198.89975476702597 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.64076316106355, + "y": 226.37075476702597 + }, + { + "x": 0.16892841178424867, + "y": 0 + }, + { + "x": 405.64076316106355, + "y": 223.4634840519903 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 837 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 421.5010964943969, + "y": 253.84175476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.9200964943969, + "y": 226.37075476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.5010964943969, + "y": 198.89975476702597 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3449.27664, + "axes": { + "#": 844 + }, + "bounds": { + "#": 850 + }, + "collisionFilter": { + "#": 853 + }, + "constraintImpulse": { + "#": 854 + }, + "density": 0.001, + "force": { + "#": 855 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 7702.7462363866725, + "inverseInertia": 0.0001298238276728036, + "inverseMass": 0.2899158589958734, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.44927664, + "motion": 0, + "parent": null, + "position": { + "#": 856 + }, + "positionImpulse": { + "#": 857 + }, + "positionPrev": { + "#": 858 + }, + "region": { + "#": 859 + }, + "render": { + "#": 860 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 862 + }, + "vertices": { + "#": 863 + } + }, + [ + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + } + ], + { + "x": 0.3090093110139392, + "y": 0.9510590127361659 + }, + { + "x": -0.8090199312598066, + "y": 0.5877812099960136 + }, + { + "x": -0.8090199312598066, + "y": -0.5877812099960136 + }, + { + "x": 0.3090093110139392, + "y": -0.9510590127361659 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 851 + }, + "min": { + "#": 852 + } + }, + { + "x": 490.85103559502545, + "y": 274.25502548206157 + }, + { + "x": 421.94903559502546, + "y": 198.89975476702597 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460.03714346284244, + "y": 235.12375476702596 + }, + { + "x": 0.18900485038093884, + "y": 0 + }, + { + "x": 460.03714346284244, + "y": 232.21648405199028 + }, + { + "endCol": 10, + "endRow": 5, + "id": "8,10,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 861 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 490.85103559502545, + "y": 257.511754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 448.26703559502545, + "y": 271.3477547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.94903559502546, + "y": 235.12375476702596 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 448.26703559502545, + "y": 198.89975476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 490.85103559502545, + "y": 212.73575476702595 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2144.2456359999996, + "axes": { + "#": 870 + }, + "bounds": { + "#": 873 + }, + "collisionFilter": { + "#": 876 + }, + "constraintImpulse": { + "#": 877 + }, + "density": 0.001, + "force": { + "#": 878 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 3065.192898336695, + "inverseInertia": 0.000326243741639439, + "inverseMass": 0.46636447952178567, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.1442456359999995, + "motion": 0, + "parent": null, + "position": { + "#": 879 + }, + "positionImpulse": { + "#": 880 + }, + "positionPrev": { + "#": 881 + }, + "region": { + "#": 882 + }, + "render": { + "#": 883 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 885 + }, + "vertices": { + "#": 886 + } + }, + [ + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 874 + }, + "min": { + "#": 875 + } + }, + { + "x": 565.4152291851254, + "y": 248.11302548206163 + }, + { + "x": 519.1092291851254, + "y": 198.89975476702597 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 542.2622291851254, + "y": 222.05275476702596 + }, + { + "x": 1.0713371298389163, + "y": 0 + }, + { + "x": 542.2622291851254, + "y": 219.14548405199028 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 884 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 565.4152291851254, + "y": 245.20575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 519.1092291851254, + "y": 245.20575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 519.1092291851254, + "y": 198.89975476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 565.4152291851254, + "y": 198.89975476702597 + }, + [], + [], + [ + { + "#": 894 + }, + { + "#": 897 + }, + { + "#": 923 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 895 + }, + "pointB": "", + "render": { + "#": 896 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleB": 0.25141089678075423, + "angularStiffness": 0, + "bodyB": { + "#": 898 + }, + "id": 43, + "label": "Constraint", + "length": 14.142135623730951, + "pointA": { + "#": 920 + }, + "pointB": { + "#": 921 + }, + "render": { + "#": 922 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "angle": 0.25141089678075423, + "anglePrev": 0.1987521868597229, + "angularSpeed": 0.04415561180033991, + "angularVelocity": 0.05265870992103133, + "area": 1000, + "axes": { + "#": 899 + }, + "bounds": { + "#": 902 + }, + "collisionFilter": { + "#": 905 + }, + "constraintImpulse": { + "#": 906 + }, + "density": 0.001, + "force": { + "#": 907 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 908 + }, + "positionImpulse": { + "#": 909 + }, + "positionPrev": { + "#": 910 + }, + "region": { + "#": 911 + }, + "render": { + "#": 912 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.7621328601989497, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 914 + }, + "vertices": { + "#": 915 + } + }, + [ + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "x": -0.2487707479728068, + "y": 0.968562396004021 + }, + { + "x": -0.968562396004021, + "y": -0.2487707479728068 + }, + { + "max": { + "#": 903 + }, + "min": { + "#": 904 + } + }, + { + "x": 197.53260581801203, + "y": 334.4591337096729 + }, + { + "x": 144.12907105835484, + "y": 302.64934839095184 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170.83083843818352, + "y": 318.5542410503124 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 171.17323470000449, + "y": 317.24198705547144 + }, + { + "endCol": 4, + "endRow": 6, + "id": "3,4,6,6", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 913 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.39517676173204563, + "y": 1.2991854511377028 + }, + [ + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 149.10448601781096, + "y": 302.64934839095184 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.53260581801203, + "y": 315.0878857895923 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 192.55719085855588, + "y": 334.4591337096729 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 144.12907105835484, + "y": 322.02059631103236 + }, + { + "x": 140, + "y": 300 + }, + { + "x": -24.214059900100526, + "y": -6.219268699320169 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": -0.5830213789682418, + "angularStiffness": 0, + "bodyB": { + "#": 924 + }, + "id": 44, + "label": "Constraint", + "length": 22.360679774997898, + "pointA": { + "#": 946 + }, + "pointB": { + "#": 947 + }, + "render": { + "#": 948 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "angle": -0.5821584234918235, + "anglePrev": -0.4751259446105956, + "angularSpeed": 0.10088077421670043, + "angularVelocity": -0.10772653948477645, + "area": 1000, + "axes": { + "#": 925 + }, + "bounds": { + "#": 928 + }, + "collisionFilter": { + "#": 931 + }, + "constraintImpulse": { + "#": 932 + }, + "density": 0.001, + "force": { + "#": 933 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 934 + }, + "positionImpulse": { + "#": 935 + }, + "positionPrev": { + "#": 936 + }, + "region": { + "#": 937 + }, + "render": { + "#": 938 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1059065597074, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 940 + }, + "vertices": { + "#": 941 + } + }, + [ + { + "#": 926 + }, + { + "#": 927 + } + ], + { + "x": 0.5498280994593593, + "y": 0.8352778346424073 + }, + { + "x": -0.8352778346424073, + "y": 0.5498280994593593 + }, + { + "max": { + "#": 929 + }, + "min": { + "#": 930 + } + }, + { + "x": 645.7962720156563, + "y": 348.2279726669069 + }, + { + "x": 593.0358182943488, + "y": 304.03101100109075 + }, + { + "category": 1, + "group": -3, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 619.4160451550023, + "y": 326.12949183399894 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.8116516601696, + "y": 326.33635961350626 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,6,7", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 939 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.165158974688893, + "y": -0.3233811082403122 + }, + [ + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 593.0358182943488, + "y": 331.5224159740587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 634.799710026469, + "y": 304.03101100109075 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 645.7962720156563, + "y": 320.7365676939389 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.0323802835362, + "y": 348.2279726669069 + }, + { + "x": 660, + "y": 300 + }, + { + "x": 20.87007616298435, + "y": -13.763717555632699 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/broadphase/broadphase-0.json b/tests/browser/refs/broadphase/broadphase-0.json new file mode 100644 index 00000000..6b3eee61 --- /dev/null +++ b/tests/browser/refs/broadphase/broadphase-0.json @@ -0,0 +1,22924 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 2619 + }, + "events": { + "#": 2623 + }, + "gravity": { + "#": 2625 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 2617 + }, + "constraints": { + "#": 2618 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 200 + }, + { + "#": 225 + }, + { + "#": 279 + }, + { + "#": 300 + }, + { + "#": 321 + }, + { + "#": 342 + }, + { + "#": 363 + }, + { + "#": 384 + }, + { + "#": 413 + }, + { + "#": 434 + }, + { + "#": 459 + }, + { + "#": 480 + }, + { + "#": 501 + }, + { + "#": 555 + }, + { + "#": 576 + }, + { + "#": 597 + }, + { + "#": 651 + }, + { + "#": 672 + }, + { + "#": 693 + }, + { + "#": 714 + }, + { + "#": 738 + }, + { + "#": 762 + }, + { + "#": 783 + }, + { + "#": 807 + }, + { + "#": 828 + }, + { + "#": 852 + }, + { + "#": 873 + }, + { + "#": 894 + }, + { + "#": 915 + }, + { + "#": 942 + }, + { + "#": 963 + }, + { + "#": 984 + }, + { + "#": 1005 + }, + { + "#": 1026 + }, + { + "#": 1047 + }, + { + "#": 1101 + }, + { + "#": 1122 + }, + { + "#": 1151 + }, + { + "#": 1172 + }, + { + "#": 1201 + }, + { + "#": 1222 + }, + { + "#": 1243 + }, + { + "#": 1264 + }, + { + "#": 1285 + }, + { + "#": 1314 + }, + { + "#": 1335 + }, + { + "#": 1356 + }, + { + "#": 1377 + }, + { + "#": 1398 + }, + { + "#": 1452 + }, + { + "#": 1473 + }, + { + "#": 1527 + }, + { + "#": 1548 + }, + { + "#": 1577 + }, + { + "#": 1598 + }, + { + "#": 1619 + }, + { + "#": 1640 + }, + { + "#": 1661 + }, + { + "#": 1686 + }, + { + "#": 1707 + }, + { + "#": 1728 + }, + { + "#": 1749 + }, + { + "#": 1774 + }, + { + "#": 1795 + }, + { + "#": 1816 + }, + { + "#": 1837 + }, + { + "#": 1891 + }, + { + "#": 1945 + }, + { + "#": 1970 + }, + { + "#": 1991 + }, + { + "#": 2012 + }, + { + "#": 2041 + }, + { + "#": 2065 + }, + { + "#": 2086 + }, + { + "#": 2115 + }, + { + "#": 2136 + }, + { + "#": 2157 + }, + { + "#": 2178 + }, + { + "#": 2203 + }, + { + "#": 2224 + }, + { + "#": 2251 + }, + { + "#": 2272 + }, + { + "#": 2293 + }, + { + "#": 2314 + }, + { + "#": 2335 + }, + { + "#": 2359 + }, + { + "#": 2380 + }, + { + "#": 2404 + }, + { + "#": 2425 + }, + { + "#": 2446 + }, + { + "#": 2471 + }, + { + "#": 2492 + }, + { + "#": 2546 + }, + { + "#": 2567 + }, + { + "#": 2588 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1534.906434764454, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 56.40316358024691, + "y": 62.164094650205755 + }, + { + "x": 19.999999999999996, + "y": 19.999999999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.201581790123456, + "y": 41.08204732510288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.201581790123456, + "y": 41.08204732510288 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 19.999999999999996, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 56.40316358024691, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.40316358024691, + "y": 62.164094650205755 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 19.999999999999996, + "y": 62.164094650205755 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.52878634164, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 101.7190072016461, + "y": 69.0011574074074 + }, + { + "x": 56.40316358024691, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.0610853909465, + "y": 44.5005787037037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.0610853909465, + "y": 44.5005787037037 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.40316358024691, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 101.7190072016461, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 101.7190072016461, + "y": 69.0011574074074 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 56.40316358024691, + "y": 69.0011574074074 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1140.197701571206, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 140.93981481481484, + "y": 49.07124485596708 + }, + { + "x": 101.7190072016461, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.32941100823047, + "y": 34.53562242798354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.32941100823047, + "y": 34.53562242798354 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 101.7190072016461, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.93981481481484, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140.93981481481484, + "y": 49.07124485596708 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 101.7190072016461, + "y": 49.07124485596708 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 752.4076041785743, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 165.81712962962968, + "y": 50.24472736625515 + }, + { + "x": 140.93981481481484, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.37847222222226, + "y": 35.122363683127574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.37847222222226, + "y": 35.122363683127574 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140.93981481481484, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 165.81712962962968, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.81712962962968, + "y": 50.24472736625515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.93981481481484, + "y": 50.24472736625515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2027.2541820000001, + "axes": { + "#": 177 + }, + "bounds": { + "#": 181 + }, + "collisionFilter": { + "#": 184 + }, + "constraintImpulse": { + "#": 185 + }, + "density": 0.001, + "force": { + "#": 186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 187 + }, + "positionImpulse": { + "#": 188 + }, + "positionPrev": { + "#": 189 + }, + "render": { + "#": 190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 192 + }, + "vertices": { + "#": 193 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + } + ], + { + "x": -0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 182 + }, + "min": { + "#": 183 + } + }, + { + "x": 214.19912962962968, + "y": 75.868 + }, + { + "x": 165.81712962962968, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 190.00812962962968, + "y": 47.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 190.00812962962968, + "y": 47.934 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 191 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.19912962962968, + "y": 61.900999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.00812962962968, + "y": 75.868 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.81712962962968, + "y": 61.900999999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 165.81712962962968, + "y": 33.967 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 190.00812962962968, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 214.19912962962968, + "y": 33.967 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4842.27229, + "axes": { + "#": 201 + }, + "bounds": { + "#": 207 + }, + "collisionFilter": { + "#": 210 + }, + "constraintImpulse": { + "#": 211 + }, + "density": 0.001, + "force": { + "#": 212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 213 + }, + "positionImpulse": { + "#": 214 + }, + "positionPrev": { + "#": 215 + }, + "render": { + "#": 216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 218 + }, + "vertices": { + "#": 219 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 0.30902000749156683, + "y": 0.95105553726894 + }, + { + "x": -0.8090188345853124, + "y": 0.5877827194518592 + }, + { + "x": -0.8090188345853124, + "y": -0.5877827194518592 + }, + { + "x": 0.30902000749156683, + "y": -0.95105553726894 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 208 + }, + "min": { + "#": 209 + } + }, + { + "x": 291.5277437444547, + "y": 105.84 + }, + { + "x": 209.8897437444547, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.0181296296297, + "y": 62.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.0181296296297, + "y": 62.92 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 217 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 291.5277437444547, + "y": 89.446 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 241.0727437444547, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 209.8897437444547, + "y": 62.92 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.0727437444547, + "y": 20 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.5277437444547, + "y": 36.394000000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3079.0178339999993, + "axes": { + "#": 226 + }, + "bounds": { + "#": 240 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 243 + }, + "constraintImpulse": { + "#": 244 + }, + "density": 0.001, + "force": { + "#": 245 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 246 + }, + "positionImpulse": { + "#": 247 + }, + "positionPrev": { + "#": 248 + }, + "render": { + "#": 249 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 251 + }, + "vertices": { + "#": 252 + } + }, + [ + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + } + ], + { + "x": -0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": -0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": -0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": -0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": -0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": -0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": 0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": 0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": 0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": 0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 241 + }, + "min": { + "#": 242 + } + }, + { + "x": 353.98774374445475, + "y": 82.918 + }, + { + "x": 291.5277437444547, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.75774374445473, + "y": 51.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.75774374445473, + "y": 51.459 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 250 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.98774374445475, + "y": 55.251000000000005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.17274374445475, + "y": 62.615 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 348.6477437444547, + "y": 69.33 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 343.6187437444547, + "y": 75.007 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.37774374445473, + "y": 79.315 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 330.2867437444547, + "y": 82.004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.75774374445473, + "y": 82.918 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 315.22874374445473, + "y": 82.004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.1377437444547, + "y": 79.315 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.89674374445474, + "y": 75.007 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 296.86774374445474, + "y": 69.33 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 293.3427437444547, + "y": 62.615 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 291.5277437444547, + "y": 55.251000000000005 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 291.5277437444547, + "y": 47.667 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 293.3427437444547, + "y": 40.303000000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 296.86774374445474, + "y": 33.58800000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 301.89674374445474, + "y": 27.911000000000005 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.1377437444547, + "y": 23.603 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 315.22874374445473, + "y": 20.914 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 322.75774374445473, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 330.2867437444547, + "y": 20.914 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 337.37774374445473, + "y": 23.603 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 343.6187437444547, + "y": 27.911000000000005 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 348.6477437444547, + "y": 33.58800000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 352.17274374445475, + "y": 40.303000000000004 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 353.98774374445475, + "y": 47.667 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1329.4167625219097, + "axes": { + "#": 280 + }, + "bounds": { + "#": 283 + }, + "collisionFilter": { + "#": 286 + }, + "constraintImpulse": { + "#": 287 + }, + "density": 0.001, + "force": { + "#": 288 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 289 + }, + "positionImpulse": { + "#": 290 + }, + "positionPrev": { + "#": 291 + }, + "render": { + "#": 292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 294 + }, + "vertices": { + "#": 295 + } + }, + [ + { + "#": 281 + }, + { + "#": 282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 284 + }, + "min": { + "#": 285 + } + }, + { + "x": 402.76539292140944, + "y": 47.25462962962963 + }, + { + "x": 353.98774374445475, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.3765683329321, + "y": 33.62731481481482 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.3765683329321, + "y": 33.62731481481482 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 293 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.98774374445475, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 402.76539292140944, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 402.76539292140944, + "y": 47.25462962962963 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.98774374445475, + "y": 47.25462962962963 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2858.632357296012, + "axes": { + "#": 301 + }, + "bounds": { + "#": 304 + }, + "collisionFilter": { + "#": 307 + }, + "constraintImpulse": { + "#": 308 + }, + "density": 0.001, + "force": { + "#": 309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 310 + }, + "positionImpulse": { + "#": 311 + }, + "positionPrev": { + "#": 312 + }, + "render": { + "#": 313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 315 + }, + "vertices": { + "#": 316 + } + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 305 + }, + "min": { + "#": 306 + } + }, + { + "x": 511.6199882574863, + "y": 46.261016803840874 + }, + { + "x": 402.76539292140944, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.19269058944786, + "y": 33.13050840192044 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.19269058944786, + "y": 33.13050840192044 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 314 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 402.76539292140944, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.6199882574863, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 511.6199882574863, + "y": 46.261016803840874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.76539292140944, + "y": 46.261016803840874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.8394636035856, + "axes": { + "#": 322 + }, + "bounds": { + "#": 325 + }, + "collisionFilter": { + "#": 328 + }, + "constraintImpulse": { + "#": 329 + }, + "density": 0.001, + "force": { + "#": 330 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 331 + }, + "positionImpulse": { + "#": 332 + }, + "positionPrev": { + "#": 333 + }, + "render": { + "#": 334 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 336 + }, + "vertices": { + "#": 337 + } + }, + [ + { + "#": 323 + }, + { + "#": 324 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 326 + }, + "min": { + "#": 327 + } + }, + { + "x": 550.3757752945232, + "y": 43.914866255144034 + }, + { + "x": 511.6199882574862, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9978817760048, + "y": 31.957433127572017 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9978817760048, + "y": 31.957433127572017 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 335 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 511.6199882574862, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550.3757752945232, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.3757752945232, + "y": 43.914866255144034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 511.6199882574862, + "y": 43.914866255144034 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.4501361223834, + "axes": { + "#": 343 + }, + "bounds": { + "#": 346 + }, + "collisionFilter": { + "#": 349 + }, + "constraintImpulse": { + "#": 350 + }, + "density": 0.001, + "force": { + "#": 351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 352 + }, + "positionImpulse": { + "#": 353 + }, + "positionPrev": { + "#": 354 + }, + "render": { + "#": 355 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 357 + }, + "vertices": { + "#": 358 + } + }, + [ + { + "#": 344 + }, + { + "#": 345 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 347 + }, + "min": { + "#": 348 + } + }, + { + "x": 586.1460942245644, + "y": 56.076003086419746 + }, + { + "x": 550.3757752945232, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.2609347595438, + "y": 38.03800154320987 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.2609347595438, + "y": 38.03800154320987 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 356 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550.3757752945232, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.1460942245644, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.1460942245644, + "y": 56.076003086419746 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550.3757752945232, + "y": 56.076003086419746 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.2925932011974, + "axes": { + "#": 364 + }, + "bounds": { + "#": 367 + }, + "collisionFilter": { + "#": 370 + }, + "constraintImpulse": { + "#": 371 + }, + "density": 0.001, + "force": { + "#": 372 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 373 + }, + "positionImpulse": { + "#": 374 + }, + "positionPrev": { + "#": 375 + }, + "render": { + "#": 376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 378 + }, + "vertices": { + "#": 379 + } + }, + [ + { + "#": 365 + }, + { + "#": 366 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 368 + }, + "min": { + "#": 369 + } + }, + { + "x": 616.7010067760048, + "y": 57.58127572016461 + }, + { + "x": 586.1460942245644, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.4235505002846, + "y": 38.790637860082306 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.4235505002846, + "y": 38.790637860082306 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 377 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 586.1460942245644, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.7010067760048, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.7010067760048, + "y": 57.58127572016461 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.1460942245644, + "y": 57.58127572016461 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1926.7878890000002, + "axes": { + "#": 385 + }, + "bounds": { + "#": 393 + }, + "collisionFilter": { + "#": 396 + }, + "constraintImpulse": { + "#": 397 + }, + "density": 0.001, + "force": { + "#": 398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 399 + }, + "positionImpulse": { + "#": 400 + }, + "positionPrev": { + "#": 401 + }, + "render": { + "#": 402 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 404 + }, + "vertices": { + "#": 405 + } + }, + [ + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + } + ], + { + "x": 0.6234921001781484, + "y": 0.7818296496139309 + }, + { + "x": -0.22251820971292155, + "y": 0.9749285339685962 + }, + { + "x": -0.9009815501548849, + "y": 0.43385740316433524 + }, + { + "x": -0.9009815501548849, + "y": -0.43385740316433524 + }, + { + "x": -0.22251820971292155, + "y": -0.9749285339685962 + }, + { + "x": 0.6234921001781484, + "y": -0.7818296496139309 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 394 + }, + "min": { + "#": 395 + } + }, + { + "x": 665.8303156438957, + "y": 71.74000000000001 + }, + { + "x": 615.3873156438957, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 641.9225067760048, + "y": 45.870000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 641.9225067760048, + "y": 45.870000000000005 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 403 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 665.8303156438957, + "y": 57.383 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 647.8273156438956, + "y": 71.74000000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625.3773156438957, + "y": 66.616 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615.3873156438957, + "y": 45.870000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 625.3773156438957, + "y": 25.124000000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 647.8273156438956, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 665.8303156438957, + "y": 34.357000000000006 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1097.755875, + "axes": { + "#": 414 + }, + "bounds": { + "#": 418 + }, + "collisionFilter": { + "#": 421 + }, + "constraintImpulse": { + "#": 422 + }, + "density": 0.001, + "force": { + "#": 423 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 927.6617490689248, + "inverseInertia": 0.0010779791243992539, + "inverseMass": 0.9109493492804126, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.097755875, + "motion": 0, + "parent": null, + "position": { + "#": 424 + }, + "positionImpulse": { + "#": 425 + }, + "positionPrev": { + "#": 426 + }, + "render": { + "#": 427 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 429 + }, + "vertices": { + "#": 430 + } + }, + [ + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "x": -0.49999466010690446, + "y": 0.8660284867512045 + }, + { + "x": -0.49999466010690446, + "y": -0.8660284867512045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 419 + }, + "min": { + "#": 420 + } + }, + { + "x": 702.1678156438957, + "y": 70.35 + }, + { + "x": 658.5628156438956, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.6328156438957, + "y": 45.175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.6328156438957, + "y": 45.175 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 428 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 702.1678156438957, + "y": 70.35 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 658.5628156438956, + "y": 45.175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 702.1678156438957, + "y": 19.999999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 435 + }, + "bounds": { + "#": 441 + }, + "collisionFilter": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "density": 0.001, + "force": { + "#": 446 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 447 + }, + "positionImpulse": { + "#": 448 + }, + "positionPrev": { + "#": 449 + }, + "render": { + "#": 450 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 452 + }, + "vertices": { + "#": 453 + } + }, + [ + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 442 + }, + "min": { + "#": 443 + } + }, + { + "x": 737.0727729237212, + "y": 58.74600000000001 + }, + { + "x": 700.2227729237212, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 720.5928156438956, + "y": 39.373000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 720.5928156438956, + "y": 39.373000000000005 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 451 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 737.0727729237212, + "y": 51.346000000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 714.2977729237213, + "y": 58.74600000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700.2227729237212, + "y": 39.373000000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 714.2977729237213, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 737.0727729237212, + "y": 27.400000000000006 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.454244, + "axes": { + "#": 460 + }, + "bounds": { + "#": 463 + }, + "collisionFilter": { + "#": 466 + }, + "constraintImpulse": { + "#": 467 + }, + "density": 0.001, + "force": { + "#": 468 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 469 + }, + "positionImpulse": { + "#": 470 + }, + "positionPrev": { + "#": 471 + }, + "render": { + "#": 472 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 474 + }, + "vertices": { + "#": 475 + } + }, + [ + { + "#": 461 + }, + { + "#": 462 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 464 + }, + "min": { + "#": 465 + } + }, + { + "x": 771.7347729237213, + "y": 54.662000000000006 + }, + { + "x": 737.0727729237212, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 754.4037729237212, + "y": 37.331 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 754.4037729237212, + "y": 37.331 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 473 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 771.7347729237213, + "y": 54.662000000000006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 737.0727729237212, + "y": 54.662000000000006 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 737.0727729237212, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 771.7347729237213, + "y": 20.000000000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1990.733346252218, + "axes": { + "#": 481 + }, + "bounds": { + "#": 484 + }, + "collisionFilter": { + "#": 487 + }, + "constraintImpulse": { + "#": 488 + }, + "density": 0.001, + "force": { + "#": 489 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 490 + }, + "positionImpulse": { + "#": 491 + }, + "positionPrev": { + "#": 492 + }, + "render": { + "#": 493 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 495 + }, + "vertices": { + "#": 496 + } + }, + [ + { + "#": 482 + }, + { + "#": 483 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 485 + }, + "min": { + "#": 486 + } + }, + { + "x": 866.5585040622673, + "y": 40.9940414951989 + }, + { + "x": 771.7347729237213, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.1466384929943, + "y": 30.49702074759945 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.1466384929943, + "y": 30.49702074759945 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 494 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 771.7347729237213, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 866.5585040622673, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 866.5585040622673, + "y": 40.9940414951989 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 771.7347729237213, + "y": 40.9940414951989 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7321.24308, + "axes": { + "#": 502 + }, + "bounds": { + "#": 516 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "density": 0.001, + "force": { + "#": 521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 522 + }, + "positionImpulse": { + "#": 523 + }, + "positionPrev": { + "#": 524 + }, + "render": { + "#": 525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 527 + }, + "vertices": { + "#": 528 + } + }, + [ + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 517 + }, + "min": { + "#": 518 + } + }, + { + "x": 962.8725040622674, + "y": 117.01999999999998 + }, + { + "x": 866.5585040622673, + "y": 19.999999999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.7155040622673, + "y": 68.50999999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.7155040622673, + "y": 68.50999999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 526 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 962.8725040622674, + "y": 74.357 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 960.0735040622673, + "y": 85.71199999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 954.6385040622673, + "y": 96.067 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 946.8835040622673, + "y": 104.821 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 937.2595040622673, + "y": 111.464 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 926.3245040622674, + "y": 115.61099999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 914.7155040622673, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 903.1065040622673, + "y": 115.61099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 892.1715040622673, + "y": 111.464 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 882.5475040622673, + "y": 104.821 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 874.7925040622673, + "y": 96.067 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 869.3575040622674, + "y": 85.71199999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 866.5585040622673, + "y": 74.357 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 866.5585040622673, + "y": 62.66299999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 869.3575040622674, + "y": 51.30799999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 874.7925040622673, + "y": 40.95299999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 882.5475040622673, + "y": 32.19899999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 892.1715040622673, + "y": 25.55599999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 903.1065040622673, + "y": 21.408999999999992 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 914.7155040622673, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 926.3245040622674, + "y": 21.408999999999992 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 937.2595040622673, + "y": 25.55599999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 946.8835040622673, + "y": 32.19899999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 954.6385040622673, + "y": 40.95299999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 960.0735040622673, + "y": 51.30799999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 962.8725040622674, + "y": 62.66299999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 556 + }, + "bounds": { + "#": 559 + }, + "collisionFilter": { + "#": 562 + }, + "constraintImpulse": { + "#": 563 + }, + "density": 0.001, + "force": { + "#": 564 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 565 + }, + "positionImpulse": { + "#": 566 + }, + "positionPrev": { + "#": 567 + }, + "render": { + "#": 568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 570 + }, + "vertices": { + "#": 571 + } + }, + [ + { + "#": 557 + }, + { + "#": 558 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 560 + }, + "min": { + "#": 561 + } + }, + { + "x": 1047.1051858180972, + "y": 44.15646433470508 + }, + { + "x": 962.8725040622674, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1004.9888449401823, + "y": 32.07823216735254 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1004.9888449401823, + "y": 32.07823216735254 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 569 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 962.8725040622674, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1047.1051858180972, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1047.1051858180972, + "y": 44.15646433470508 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 962.8725040622674, + "y": 44.15646433470508 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 577 + }, + "bounds": { + "#": 580 + }, + "collisionFilter": { + "#": 583 + }, + "constraintImpulse": { + "#": 584 + }, + "density": 0.001, + "force": { + "#": 585 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 586 + }, + "positionImpulse": { + "#": 587 + }, + "positionPrev": { + "#": 588 + }, + "render": { + "#": 589 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 591 + }, + "vertices": { + "#": 592 + } + }, + [ + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 581 + }, + "min": { + "#": 582 + } + }, + { + "x": 1096.491759892171, + "y": 40.865097736625515 + }, + { + "x": 1047.1051858180972, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1071.7984728551342, + "y": 30.432548868312757 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1071.7984728551342, + "y": 30.432548868312757 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 590 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1047.1051858180972, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1096.491759892171, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1096.491759892171, + "y": 40.865097736625515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1047.1051858180972, + "y": 40.865097736625515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2157.165332, + "axes": { + "#": 598 + }, + "bounds": { + "#": 612 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "density": 0.001, + "force": { + "#": 617 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 618 + }, + "positionImpulse": { + "#": 619 + }, + "positionPrev": { + "#": 620 + }, + "render": { + "#": 621 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 623 + }, + "vertices": { + "#": 624 + } + }, + [ + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + } + ], + { + "x": -0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": -0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": -0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": -0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": -0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": -0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": 0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": 0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": 0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": 0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 613 + }, + "min": { + "#": 614 + } + }, + { + "x": 72.28, + "y": 169.68399999999997 + }, + { + "x": 20, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 46.14, + "y": 143.35199999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 46.14, + "y": 143.35199999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 622 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 72.28, + "y": 146.52599999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 70.761, + "y": 152.68899999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 67.811, + "y": 158.30999999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 63.601, + "y": 163.06199999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 58.377, + "y": 166.66799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 52.442, + "y": 168.91899999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 46.14, + "y": 169.68399999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 39.838, + "y": 168.91899999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 33.903, + "y": 166.66799999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 28.679000000000002, + "y": 163.06199999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 24.469, + "y": 158.30999999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 21.519000000000002, + "y": 152.68899999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20, + "y": 146.52599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 20, + "y": 140.17799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 21.519000000000002, + "y": 134.015 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 24.469, + "y": 128.39399999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 28.679000000000002, + "y": 123.64199999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 33.903, + "y": 120.03599999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 39.838, + "y": 117.78499999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 46.14, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 52.442, + "y": 117.78499999999997 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 58.377, + "y": 120.03599999999997 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 63.601, + "y": 123.64199999999997 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 67.811, + "y": 128.39399999999998 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 70.761, + "y": 134.015 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 72.28, + "y": 140.17799999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2399.6281959999997, + "axes": { + "#": 652 + }, + "bounds": { + "#": 655 + }, + "collisionFilter": { + "#": 658 + }, + "constraintImpulse": { + "#": 659 + }, + "density": 0.001, + "force": { + "#": 660 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 661 + }, + "positionImpulse": { + "#": 662 + }, + "positionPrev": { + "#": 663 + }, + "render": { + "#": 664 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 666 + }, + "vertices": { + "#": 667 + } + }, + [ + { + "#": 653 + }, + { + "#": 654 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 656 + }, + "min": { + "#": 657 + } + }, + { + "x": 121.26599999999999, + "y": 166.00599999999997 + }, + { + "x": 72.28, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 96.773, + "y": 141.51299999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 96.773, + "y": 141.51299999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 665 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 121.26599999999999, + "y": 166.00599999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 72.28, + "y": 166.00599999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 72.28, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 121.26599999999999, + "y": 117.01999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 673 + }, + "bounds": { + "#": 676 + }, + "collisionFilter": { + "#": 679 + }, + "constraintImpulse": { + "#": 680 + }, + "density": 0.001, + "force": { + "#": 681 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 682 + }, + "positionImpulse": { + "#": 683 + }, + "positionPrev": { + "#": 684 + }, + "render": { + "#": 685 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 687 + }, + "vertices": { + "#": 688 + } + }, + [ + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 677 + }, + "min": { + "#": 678 + } + }, + { + "x": 156.67893724279836, + "y": 159.08893004115225 + }, + { + "x": 121.26599999999999, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.97246862139917, + "y": 138.05446502057612 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.97246862139917, + "y": 138.05446502057612 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 686 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 121.26599999999999, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.67893724279836, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 156.67893724279836, + "y": 159.08893004115225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 121.26599999999999, + "y": 159.08893004115225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 694 + }, + "bounds": { + "#": 697 + }, + "collisionFilter": { + "#": 700 + }, + "constraintImpulse": { + "#": 701 + }, + "density": 0.001, + "force": { + "#": 702 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 703 + }, + "positionImpulse": { + "#": 704 + }, + "positionPrev": { + "#": 705 + }, + "render": { + "#": 706 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 708 + }, + "vertices": { + "#": 709 + } + }, + [ + { + "#": 695 + }, + { + "#": 696 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 698 + }, + "min": { + "#": 699 + } + }, + { + "x": 198.4428261316872, + "y": 159.2901903292181 + }, + { + "x": 156.67893724279836, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.56088168724278, + "y": 138.15509516460904 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.56088168724278, + "y": 138.15509516460904 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 707 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 156.67893724279836, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.4428261316872, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 198.4428261316872, + "y": 159.2901903292181 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 156.67893724279836, + "y": 159.2901903292181 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1919.5457599999997, + "axes": { + "#": 715 + }, + "bounds": { + "#": 719 + }, + "collisionFilter": { + "#": 722 + }, + "constraintImpulse": { + "#": 723 + }, + "density": 0.001, + "force": { + "#": 724 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 725 + }, + "positionImpulse": { + "#": 726 + }, + "positionPrev": { + "#": 727 + }, + "render": { + "#": 728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 730 + }, + "vertices": { + "#": 731 + } + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + } + ], + { + "x": -0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 720 + }, + "min": { + "#": 721 + } + }, + { + "x": 245.5228261316872, + "y": 171.382 + }, + { + "x": 198.4428261316872, + "y": 117.02 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.9828261316872, + "y": 144.201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.9828261316872, + "y": 144.201 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 729 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.5228261316872, + "y": 157.792 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 221.9828261316872, + "y": 171.382 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 198.4428261316872, + "y": 157.792 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 198.4428261316872, + "y": 130.61 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 221.9828261316872, + "y": 117.02 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 245.5228261316872, + "y": 130.61 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6052.328004, + "axes": { + "#": 739 + }, + "bounds": { + "#": 743 + }, + "collisionFilter": { + "#": 746 + }, + "constraintImpulse": { + "#": 747 + }, + "density": 0.001, + "force": { + "#": 748 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 749 + }, + "positionImpulse": { + "#": 750 + }, + "positionPrev": { + "#": 751 + }, + "render": { + "#": 752 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 754 + }, + "vertices": { + "#": 755 + } + }, + [ + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "x": -0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 744 + }, + "min": { + "#": 745 + } + }, + { + "x": 329.1208261316872, + "y": 213.54999999999995 + }, + { + "x": 245.5228261316872, + "y": 117.01999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.3218261316872, + "y": 165.28499999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.3218261316872, + "y": 165.28499999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 753 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 329.1208261316872, + "y": 189.41799999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 287.3218261316872, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 245.5228261316872, + "y": 189.41799999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 245.5228261316872, + "y": 141.152 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 287.3218261316872, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 329.1208261316872, + "y": 141.152 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 763 + }, + "bounds": { + "#": 766 + }, + "collisionFilter": { + "#": 769 + }, + "constraintImpulse": { + "#": 770 + }, + "density": 0.001, + "force": { + "#": 771 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 772 + }, + "positionImpulse": { + "#": 773 + }, + "positionPrev": { + "#": 774 + }, + "render": { + "#": 775 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 777 + }, + "vertices": { + "#": 778 + } + }, + [ + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 767 + }, + "min": { + "#": 768 + } + }, + { + "x": 374.27218930041147, + "y": 166.18846707818926 + }, + { + "x": 329.1208261316872, + "y": 117.01999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.6965077160493, + "y": 141.60423353909462 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.6965077160493, + "y": 141.60423353909462 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 776 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 329.1208261316872, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.27218930041147, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 374.27218930041147, + "y": 166.18846707818926 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 329.1208261316872, + "y": 166.18846707818926 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2601.1074479999997, + "axes": { + "#": 784 + }, + "bounds": { + "#": 788 + }, + "collisionFilter": { + "#": 791 + }, + "constraintImpulse": { + "#": 792 + }, + "density": 0.001, + "force": { + "#": 793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 794 + }, + "positionImpulse": { + "#": 795 + }, + "positionPrev": { + "#": 796 + }, + "render": { + "#": 797 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 799 + }, + "vertices": { + "#": 800 + } + }, + [ + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + } + ], + { + "x": -0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 789 + }, + "min": { + "#": 790 + } + }, + { + "x": 429.07618930041144, + "y": 180.30199999999996 + }, + { + "x": 374.27218930041147, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.67418930041146, + "y": 148.66099999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.67418930041146, + "y": 148.66099999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 798 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 429.07618930041144, + "y": 164.48199999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 401.67418930041146, + "y": 180.30199999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 374.27218930041147, + "y": 164.48199999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 374.27218930041147, + "y": 132.83999999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 401.67418930041146, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 429.07618930041144, + "y": 132.83999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1413.3088360000002, + "axes": { + "#": 808 + }, + "bounds": { + "#": 811 + }, + "collisionFilter": { + "#": 814 + }, + "constraintImpulse": { + "#": 815 + }, + "density": 0.001, + "force": { + "#": 816 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 817 + }, + "positionImpulse": { + "#": 818 + }, + "positionPrev": { + "#": 819 + }, + "render": { + "#": 820 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 822 + }, + "vertices": { + "#": 823 + } + }, + [ + { + "#": 809 + }, + { + "#": 810 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 812 + }, + "min": { + "#": 813 + } + }, + { + "x": 466.6701893004115, + "y": 154.61399999999998 + }, + { + "x": 429.07618930041144, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 447.87318930041147, + "y": 135.81699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 447.87318930041147, + "y": 135.81699999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 821 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 466.6701893004115, + "y": 154.61399999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 429.07618930041144, + "y": 154.61399999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.07618930041144, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.6701893004115, + "y": 117.01999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5460.808751999999, + "axes": { + "#": 829 + }, + "bounds": { + "#": 833 + }, + "collisionFilter": { + "#": 836 + }, + "constraintImpulse": { + "#": 837 + }, + "density": 0.001, + "force": { + "#": 838 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 839 + }, + "positionImpulse": { + "#": 840 + }, + "positionPrev": { + "#": 841 + }, + "render": { + "#": 842 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 844 + }, + "vertices": { + "#": 845 + } + }, + [ + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": -0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 834 + }, + "min": { + "#": 835 + } + }, + { + "x": 546.0781893004115, + "y": 208.712 + }, + { + "x": 466.6701893004115, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 506.3741893004115, + "y": 162.86599999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 506.3741893004115, + "y": 162.86599999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 843 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 546.0781893004115, + "y": 185.789 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 506.3741893004115, + "y": 208.712 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 466.6701893004115, + "y": 185.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.6701893004115, + "y": 139.94299999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 506.3741893004115, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 546.0781893004115, + "y": 139.94299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 853 + }, + "bounds": { + "#": 856 + }, + "collisionFilter": { + "#": 859 + }, + "constraintImpulse": { + "#": 860 + }, + "density": 0.001, + "force": { + "#": 861 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 862 + }, + "positionImpulse": { + "#": 863 + }, + "positionPrev": { + "#": 864 + }, + "render": { + "#": 865 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 867 + }, + "vertices": { + "#": 868 + } + }, + [ + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 857 + }, + "min": { + "#": 858 + } + }, + { + "x": 566.2487139917695, + "y": 139.4097890946502 + }, + { + "x": 546.0781893004115, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.1634516460905, + "y": 128.2148945473251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.1634516460905, + "y": 128.2148945473251 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 866 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 546.0781893004115, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 566.2487139917695, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 566.2487139917695, + "y": 139.4097890946502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.0781893004115, + "y": 139.4097890946502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 874 + }, + "bounds": { + "#": 877 + }, + "collisionFilter": { + "#": 880 + }, + "constraintImpulse": { + "#": 881 + }, + "density": 0.001, + "force": { + "#": 882 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 883 + }, + "positionImpulse": { + "#": 884 + }, + "positionPrev": { + "#": 885 + }, + "render": { + "#": 886 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 888 + }, + "vertices": { + "#": 889 + } + }, + [ + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 878 + }, + "min": { + "#": 879 + } + }, + { + "x": 668.0818758573388, + "y": 146.69283950617285 + }, + { + "x": 566.2487139917695, + "y": 117.02 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 617.1652949245541, + "y": 131.8564197530864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 617.1652949245541, + "y": 131.8564197530864 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 887 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 566.2487139917695, + "y": 117.02 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 668.0818758573388, + "y": 117.02 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 668.0818758573388, + "y": 146.69283950617285 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.2487139917695, + "y": 146.69283950617285 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 895 + }, + "bounds": { + "#": 898 + }, + "collisionFilter": { + "#": 901 + }, + "constraintImpulse": { + "#": 902 + }, + "density": 0.001, + "force": { + "#": 903 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 904 + }, + "positionImpulse": { + "#": 905 + }, + "positionPrev": { + "#": 906 + }, + "render": { + "#": 907 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 909 + }, + "vertices": { + "#": 910 + } + }, + [ + { + "#": 896 + }, + { + "#": 897 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 899 + }, + "min": { + "#": 900 + } + }, + { + "x": 708.1533779149519, + "y": 138.40027263374483 + }, + { + "x": 668.0818758573388, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 688.1176268861453, + "y": 127.71013631687241 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 688.1176268861453, + "y": 127.71013631687241 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 908 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 668.0818758573388, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 708.1533779149519, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 708.1533779149519, + "y": 138.40027263374483 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 668.0818758573388, + "y": 138.40027263374483 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 916 + }, + "bounds": { + "#": 921 + }, + "collisionFilter": { + "#": 924 + }, + "constraintImpulse": { + "#": 925 + }, + "density": 0.001, + "force": { + "#": 926 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 927 + }, + "positionImpulse": { + "#": 928 + }, + "positionPrev": { + "#": 929 + }, + "render": { + "#": 930 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 932 + }, + "vertices": { + "#": 933 + } + }, + [ + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 922 + }, + "min": { + "#": 923 + } + }, + { + "x": 778.4053779149518, + "y": 187.272 + }, + { + "x": 708.1533779149519, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.2793779149519, + "y": 152.146 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.2793779149519, + "y": 152.146 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 931 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.4053779149518, + "y": 166.696 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 757.8293779149518, + "y": 187.272 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 728.7293779149519, + "y": 187.272 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 708.1533779149519, + "y": 166.696 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 708.1533779149519, + "y": 137.596 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 728.7293779149519, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 757.8293779149518, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 778.4053779149518, + "y": 137.596 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 943 + }, + "bounds": { + "#": 946 + }, + "collisionFilter": { + "#": 949 + }, + "constraintImpulse": { + "#": 950 + }, + "density": 0.001, + "force": { + "#": 951 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 952 + }, + "positionImpulse": { + "#": 953 + }, + "positionPrev": { + "#": 954 + }, + "render": { + "#": 955 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 957 + }, + "vertices": { + "#": 958 + } + }, + [ + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 947 + }, + "min": { + "#": 948 + } + }, + { + "x": 867.9096646090533, + "y": 138.97584705075445 + }, + { + "x": 778.4053779149518, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 823.1575212620025, + "y": 127.99792352537722 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 823.1575212620025, + "y": 127.99792352537722 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 956 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.4053779149518, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 867.9096646090533, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 867.9096646090533, + "y": 138.97584705075445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 778.4053779149518, + "y": 138.97584705075445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1492.5256200000001, + "axes": { + "#": 964 + }, + "bounds": { + "#": 968 + }, + "collisionFilter": { + "#": 971 + }, + "constraintImpulse": { + "#": 972 + }, + "density": 0.001, + "force": { + "#": 973 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1714.8324723309402, + "inverseInertia": 0.0005831473430408735, + "inverseMass": 0.6700052492231255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.49252562, + "motion": 0, + "parent": null, + "position": { + "#": 974 + }, + "positionImpulse": { + "#": 975 + }, + "positionPrev": { + "#": 976 + }, + "render": { + "#": 977 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 979 + }, + "vertices": { + "#": 980 + } + }, + [ + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + } + ], + { + "x": -0.5000025921589079, + "y": 0.8660239071956228 + }, + { + "x": -0.5000025921589079, + "y": -0.8660239071956228 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 969 + }, + "min": { + "#": 970 + } + }, + { + "x": 910.2796646090532, + "y": 175.72999999999996 + }, + { + "x": 859.4356646090532, + "y": 117.01999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 893.3316646090532, + "y": 146.37499999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 893.3316646090532, + "y": 146.37499999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 978 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 910.2796646090532, + "y": 175.72999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 859.4356646090532, + "y": 146.37499999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 910.2796646090532, + "y": 117.01999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 942.0065703840771, + "axes": { + "#": 985 + }, + "bounds": { + "#": 988 + }, + "collisionFilter": { + "#": 991 + }, + "constraintImpulse": { + "#": 992 + }, + "density": 0.001, + "force": { + "#": 993 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 994 + }, + "positionImpulse": { + "#": 995 + }, + "positionPrev": { + "#": 996 + }, + "render": { + "#": 997 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 999 + }, + "vertices": { + "#": 1000 + } + }, + [ + { + "#": 986 + }, + { + "#": 987 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 989 + }, + "min": { + "#": 990 + } + }, + { + "x": 931.3395925925923, + "y": 161.74980967078187 + }, + { + "x": 910.2796646090532, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 920.8096286008227, + "y": 139.38490483539093 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 920.8096286008227, + "y": 139.38490483539093 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 998 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 910.2796646090532, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 931.3395925925923, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 931.3395925925923, + "y": 161.74980967078187 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 910.2796646090532, + "y": 161.74980967078187 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2898.415585731765, + "axes": { + "#": 1006 + }, + "bounds": { + "#": 1009 + }, + "collisionFilter": { + "#": 1012 + }, + "constraintImpulse": { + "#": 1013 + }, + "density": 0.001, + "force": { + "#": 1014 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 1015 + }, + "positionImpulse": { + "#": 1016 + }, + "positionPrev": { + "#": 1017 + }, + "render": { + "#": 1018 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1020 + }, + "vertices": { + "#": 1021 + } + }, + [ + { + "#": 1007 + }, + { + "#": 1008 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1010 + }, + "min": { + "#": 1011 + } + }, + { + "x": 1043.5355802469135, + "y": 142.85350480109736 + }, + { + "x": 931.3395925925923, + "y": 117.01999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 987.4375864197528, + "y": 129.93675240054867 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 987.4375864197528, + "y": 129.93675240054867 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1019 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 931.3395925925923, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1043.5355802469135, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1043.5355802469135, + "y": 142.85350480109736 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 931.3395925925923, + "y": 142.85350480109736 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 842.523055, + "axes": { + "#": 1027 + }, + "bounds": { + "#": 1031 + }, + "collisionFilter": { + "#": 1034 + }, + "constraintImpulse": { + "#": 1035 + }, + "density": 0.001, + "force": { + "#": 1036 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 546.4390114484775, + "inverseInertia": 0.001830030395065027, + "inverseMass": 1.1869111403722952, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.842523055, + "motion": 0, + "parent": null, + "position": { + "#": 1037 + }, + "positionImpulse": { + "#": 1038 + }, + "positionPrev": { + "#": 1039 + }, + "render": { + "#": 1040 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1042 + }, + "vertices": { + "#": 1043 + } + }, + [ + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + } + ], + { + "x": -0.49999391924129877, + "y": 0.8660289144836479 + }, + { + "x": -0.49999391924129877, + "y": -0.8660289144836479 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1032 + }, + "min": { + "#": 1033 + } + }, + { + "x": 1075.3697469135802, + "y": 161.13 + }, + { + "x": 1037.16874691358, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1062.6360802469135, + "y": 139.075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1062.6360802469135, + "y": 139.075 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1041 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1075.3697469135802, + "y": 161.13 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1037.16874691358, + "y": 139.075 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1075.3697469135802, + "y": 117.01999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6661.542482000001, + "axes": { + "#": 1048 + }, + "bounds": { + "#": 1062 + }, + "circleRadius": 46.273148148148145, + "collisionFilter": { + "#": 1065 + }, + "constraintImpulse": { + "#": 1066 + }, + "density": 0.001, + "force": { + "#": 1067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 28251.272419191544, + "inverseInertia": 0.00003539663577491412, + "inverseMass": 0.15011538284144801, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.661542482000001, + "motion": 0, + "parent": null, + "position": { + "#": 1068 + }, + "positionImpulse": { + "#": 1069 + }, + "positionPrev": { + "#": 1070 + }, + "render": { + "#": 1071 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1073 + }, + "vertices": { + "#": 1074 + } + }, + [ + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": -0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": -0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": -0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": -0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": -0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": -0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": 0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": 0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": 0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": 0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1063 + }, + "min": { + "#": 1064 + } + }, + { + "x": 1167.24174691358, + "y": 209.56599999999997 + }, + { + "x": 1075.3697469135802, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1121.3057469135802, + "y": 163.29299999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1121.3057469135802, + "y": 163.29299999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1072 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1167.24174691358, + "y": 168.87099999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1164.5717469135802, + "y": 179.70199999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1159.3877469135803, + "y": 189.57899999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1151.99074691358, + "y": 197.92899999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1142.80974691358, + "y": 204.266 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1132.3797469135802, + "y": 208.22199999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1121.3057469135802, + "y": 209.56599999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 1110.23174691358, + "y": 208.22199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 1099.8017469135802, + "y": 204.266 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 1090.6207469135802, + "y": 197.92899999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 1083.22374691358, + "y": 189.57899999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 1078.03974691358, + "y": 179.70199999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 1075.3697469135802, + "y": 168.87099999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 1075.3697469135802, + "y": 157.71499999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 1078.03974691358, + "y": 146.884 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 1083.22374691358, + "y": 137.00699999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 1090.6207469135802, + "y": 128.65699999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 1099.8017469135802, + "y": 122.31999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 1110.23174691358, + "y": 118.36399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 1121.3057469135802, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 1132.3797469135802, + "y": 118.36399999999998 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1142.80974691358, + "y": 122.31999999999998 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1151.99074691358, + "y": 128.65699999999998 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1159.3877469135803, + "y": 137.00699999999998 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1164.5717469135802, + "y": 146.884 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1167.24174691358, + "y": 157.71499999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1051.3111283901928, + "axes": { + "#": 1102 + }, + "bounds": { + "#": 1105 + }, + "collisionFilter": { + "#": 1108 + }, + "constraintImpulse": { + "#": 1109 + }, + "density": 0.001, + "force": { + "#": 1110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 1111 + }, + "positionImpulse": { + "#": 1112 + }, + "positionPrev": { + "#": 1113 + }, + "render": { + "#": 1114 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1116 + }, + "vertices": { + "#": 1117 + } + }, + [ + { + "#": 1103 + }, + { + "#": 1104 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1106 + }, + "min": { + "#": 1107 + } + }, + { + "x": 49.54835390946502, + "y": 249.12934670781885 + }, + { + "x": 20, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 34.77417695473251, + "y": 231.3396733539094 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 34.77417695473251, + "y": 231.3396733539094 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1115 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 49.54835390946502, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 49.54835390946502, + "y": 249.12934670781885 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 249.12934670781885 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6245.524001, + "axes": { + "#": 1123 + }, + "bounds": { + "#": 1131 + }, + "collisionFilter": { + "#": 1134 + }, + "constraintImpulse": { + "#": 1135 + }, + "density": 0.001, + "force": { + "#": 1136 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 24931.28629116745, + "inverseInertia": 0.00004011024494770155, + "inverseMass": 0.16011466769479796, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.245524001, + "motion": 0, + "parent": null, + "position": { + "#": 1137 + }, + "positionImpulse": { + "#": 1138 + }, + "positionPrev": { + "#": 1139 + }, + "render": { + "#": 1140 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1142 + }, + "vertices": { + "#": 1143 + } + }, + [ + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + } + ], + { + "x": 0.6235088590146987, + "y": 0.7818162845133048 + }, + { + "x": -0.22254054198130854, + "y": 0.9749234365706189 + }, + { + "x": -0.9009716362849914, + "y": 0.4338779904649981 + }, + { + "x": -0.9009716362849914, + "y": -0.4338779904649981 + }, + { + "x": -0.22254054198130854, + "y": -0.9749234365706189 + }, + { + "x": 0.6235088590146987, + "y": -0.7818162845133048 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1132 + }, + "min": { + "#": 1133 + } + }, + { + "x": 137.99981624467063, + "y": 306.70399999999995 + }, + { + "x": 47.18281624467064, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 94.95685390946502, + "y": 260.12699999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 94.95685390946502, + "y": 260.12699999999995 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1141 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 137.99981624467063, + "y": 280.85499999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 105.58781624467063, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 65.16981624467064, + "y": 297.47799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 47.18281624467064, + "y": 260.12699999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 65.16981624467064, + "y": 222.77599999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 105.58781624467063, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 137.99981624467063, + "y": 239.39899999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1100.443548, + "axes": { + "#": 1152 + }, + "bounds": { + "#": 1156 + }, + "collisionFilter": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "density": 0.001, + "force": { + "#": 1161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 932.2097612415441, + "inverseInertia": 0.001072719940915627, + "inverseMass": 0.9087244882460795, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.1004435479999999, + "motion": 0, + "parent": null, + "position": { + "#": 1162 + }, + "positionImpulse": { + "#": 1163 + }, + "positionPrev": { + "#": 1164 + }, + "render": { + "#": 1165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1167 + }, + "vertices": { + "#": 1168 + } + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": -0.5000006240740739, + "y": 0.8660250434748042 + }, + { + "x": -0.5000006240740739, + "y": -0.8660250434748042 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1157 + }, + "min": { + "#": 1158 + } + }, + { + "x": 174.3814829113373, + "y": 263.96199999999993 + }, + { + "x": 130.7234829113373, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 159.82881624467063, + "y": 238.75599999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 159.82881624467063, + "y": 238.75599999999994 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1166 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 174.3814829113373, + "y": 263.96199999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130.7234829113373, + "y": 238.75599999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 174.3814829113373, + "y": 213.54999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4695.386625, + "axes": { + "#": 1173 + }, + "bounds": { + "#": 1181 + }, + "collisionFilter": { + "#": 1184 + }, + "constraintImpulse": { + "#": 1185 + }, + "density": 0.001, + "force": { + "#": 1186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 1187 + }, + "positionImpulse": { + "#": 1188 + }, + "positionPrev": { + "#": 1189 + }, + "render": { + "#": 1190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1192 + }, + "vertices": { + "#": 1193 + } + }, + [ + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + } + ], + { + "x": 0.6235000959518373, + "y": 0.7818232730918474 + }, + { + "x": -0.2225264190381346, + "y": 0.9749266602314579 + }, + { + "x": -0.9009718651359478, + "y": 0.43387751524301366 + }, + { + "x": -0.9009718651359478, + "y": -0.43387751524301366 + }, + { + "x": -0.2225264190381346, + "y": -0.9749266602314579 + }, + { + "x": 0.6235000959518373, + "y": -0.7818232730918474 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1182 + }, + "min": { + "#": 1183 + } + }, + { + "x": 251.07435787900175, + "y": 294.31999999999994 + }, + { + "x": 172.33035787900175, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 213.7534829113373, + "y": 253.93499999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 213.7534829113373, + "y": 253.93499999999995 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1191 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.07435787900175, + "y": 271.90799999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 222.97135787900177, + "y": 294.31999999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.92635787900176, + "y": 286.3209999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 172.33035787900175, + "y": 253.93499999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 187.92635787900176, + "y": 221.54899999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 222.97135787900177, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 251.07435787900175, + "y": 235.96199999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2533.681298803042, + "axes": { + "#": 1202 + }, + "bounds": { + "#": 1205 + }, + "collisionFilter": { + "#": 1208 + }, + "constraintImpulse": { + "#": 1209 + }, + "density": 0.001, + "force": { + "#": 1210 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 9087.287047208478, + "inverseInertia": 0.00011004384419739331, + "inverseMass": 0.3946826305551604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.533681298803042, + "motion": 0, + "parent": null, + "position": { + "#": 1211 + }, + "positionImpulse": { + "#": 1212 + }, + "positionPrev": { + "#": 1213 + }, + "render": { + "#": 1214 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1216 + }, + "vertices": { + "#": 1217 + } + }, + [ + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1206 + }, + "min": { + "#": 1207 + } + }, + { + "x": 351.7014154921705, + "y": 238.72892661179696 + }, + { + "x": 251.07435787900175, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.3878866855861, + "y": 226.13946330589846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.3878866855861, + "y": 226.13946330589846 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1215 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.07435787900175, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 351.7014154921705, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 351.7014154921705, + "y": 238.72892661179696 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 251.07435787900175, + "y": 238.72892661179696 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2082.1047164947227, + "axes": { + "#": 1223 + }, + "bounds": { + "#": 1226 + }, + "collisionFilter": { + "#": 1229 + }, + "constraintImpulse": { + "#": 1230 + }, + "density": 0.001, + "force": { + "#": 1231 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2917.86500075833, + "inverseInertia": 0.0003427163353136995, + "inverseMass": 0.4802832403566742, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.082104716494723, + "motion": 0, + "parent": null, + "position": { + "#": 1232 + }, + "positionImpulse": { + "#": 1233 + }, + "positionPrev": { + "#": 1234 + }, + "render": { + "#": 1235 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1237 + }, + "vertices": { + "#": 1238 + } + }, + [ + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1227 + }, + "min": { + "#": 1228 + } + }, + { + "x": 394.2788331876438, + "y": 262.45162037037034 + }, + { + "x": 351.7014154921705, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 372.99012433990714, + "y": 238.00081018518514 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 372.99012433990714, + "y": 238.00081018518514 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1236 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 351.7014154921705, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2788331876438, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 394.2788331876438, + "y": 262.45162037037034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 351.7014154921705, + "y": 262.45162037037034 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2570.1808866424026, + "axes": { + "#": 1244 + }, + "bounds": { + "#": 1247 + }, + "collisionFilter": { + "#": 1250 + }, + "constraintImpulse": { + "#": 1251 + }, + "density": 0.001, + "force": { + "#": 1252 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 7426.992944977438, + "inverseInertia": 0.00013464399487227974, + "inverseMass": 0.38907767355875333, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5701808866424027, + "motion": 0, + "parent": null, + "position": { + "#": 1253 + }, + "positionImpulse": { + "#": 1254 + }, + "positionPrev": { + "#": 1255 + }, + "render": { + "#": 1256 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1258 + }, + "vertices": { + "#": 1259 + } + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1248 + }, + "min": { + "#": 1249 + } + }, + { + "x": 482.73682358544903, + "y": 242.60538408779144 + }, + { + "x": 394.2788331876438, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.5078283865464, + "y": 228.0776920438957 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.5078283865464, + "y": 228.0776920438957 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1257 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.2788331876438, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 482.73682358544903, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 482.73682358544903, + "y": 242.60538408779144 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 394.2788331876438, + "y": 242.60538408779144 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1460.278512, + "axes": { + "#": 1265 + }, + "bounds": { + "#": 1269 + }, + "collisionFilter": { + "#": 1272 + }, + "constraintImpulse": { + "#": 1273 + }, + "density": 0.001, + "force": { + "#": 1274 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1641.5325488167716, + "inverseInertia": 0.0006091868240570722, + "inverseMass": 0.6848008731090607, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4602785120000001, + "motion": 0, + "parent": null, + "position": { + "#": 1275 + }, + "positionImpulse": { + "#": 1276 + }, + "positionPrev": { + "#": 1277 + }, + "render": { + "#": 1278 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1280 + }, + "vertices": { + "#": 1281 + } + }, + [ + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + } + ], + { + "x": -0.49999871188519596, + "y": 0.8660261474765902 + }, + { + "x": -0.49999871188519596, + "y": -0.8660261474765902 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1270 + }, + "min": { + "#": 1271 + } + }, + { + "x": 524.646823585449, + "y": 271.62199999999996 + }, + { + "x": 474.354823585449, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 507.88282358544905, + "y": 242.58599999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 507.88282358544905, + "y": 242.58599999999996 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1279 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 524.646823585449, + "y": 271.62199999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.354823585449, + "y": 242.58599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 524.646823585449, + "y": 213.54999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4167.4330549999995, + "axes": { + "#": 1286 + }, + "bounds": { + "#": 1294 + }, + "collisionFilter": { + "#": 1297 + }, + "constraintImpulse": { + "#": 1298 + }, + "density": 0.001, + "force": { + "#": 1299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 11100.542061550868, + "inverseInertia": 0.00009008569081177725, + "inverseMass": 0.23995586415004816, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.167433054999999, + "motion": 0, + "parent": null, + "position": { + "#": 1300 + }, + "positionImpulse": { + "#": 1301 + }, + "positionPrev": { + "#": 1302 + }, + "render": { + "#": 1303 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1305 + }, + "vertices": { + "#": 1306 + } + }, + [ + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + } + ], + { + "x": 0.6235095584460711, + "y": 0.7818157267069941 + }, + { + "x": -0.22252973145772786, + "y": 0.974925904167774 + }, + { + "x": -0.9009725986708983, + "y": 0.43387599201178284 + }, + { + "x": -0.9009725986708983, + "y": -0.43387599201178284 + }, + { + "x": -0.22252973145772786, + "y": -0.974925904167774 + }, + { + "x": 0.6235095584460711, + "y": -0.7818157267069941 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1295 + }, + "min": { + "#": 1296 + } + }, + { + "x": 596.8995334433461, + "y": 289.64399999999995 + }, + { + "x": 522.714533443346, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 561.739323585449, + "y": 251.59699999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 561.739323585449, + "y": 251.59699999999995 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1304 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 596.8995334433461, + "y": 268.52899999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 570.4235334433461, + "y": 289.64399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 537.4075334433461, + "y": 282.10799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 522.714533443346, + "y": 251.59699999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 537.4075334433461, + "y": 221.08599999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570.4235334433461, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 596.8995334433461, + "y": 234.66499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1687.7661798887366, + "axes": { + "#": 1315 + }, + "bounds": { + "#": 1318 + }, + "collisionFilter": { + "#": 1321 + }, + "constraintImpulse": { + "#": 1322 + }, + "density": 0.001, + "force": { + "#": 1323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1980.3012000583947, + "inverseInertia": 0.0005049736878261308, + "inverseMass": 0.5924991340127004, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6877661798887367, + "motion": 0, + "parent": null, + "position": { + "#": 1324 + }, + "positionImpulse": { + "#": 1325 + }, + "positionPrev": { + "#": 1326 + }, + "render": { + "#": 1327 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1329 + }, + "vertices": { + "#": 1330 + } + }, + [ + { + "#": 1316 + }, + { + "#": 1317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1319 + }, + "min": { + "#": 1320 + } + }, + { + "x": 632.4098215091898, + "y": 261.0789351851852 + }, + { + "x": 596.8995334433461, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 614.6546774762679, + "y": 237.31446759259256 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 614.6546774762679, + "y": 237.31446759259256 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1328 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 596.8995334433461, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 632.4098215091898, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 632.4098215091898, + "y": 261.0789351851852 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 596.8995334433461, + "y": 261.0789351851852 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 888.874596, + "axes": { + "#": 1336 + }, + "bounds": { + "#": 1339 + }, + "collisionFilter": { + "#": 1342 + }, + "constraintImpulse": { + "#": 1343 + }, + "density": 0.001, + "force": { + "#": 1344 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 526.7320316094421, + "inverseInertia": 0.0018984985533241191, + "inverseMass": 1.125018089728374, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.888874596, + "motion": 0, + "parent": null, + "position": { + "#": 1345 + }, + "positionImpulse": { + "#": 1346 + }, + "positionPrev": { + "#": 1347 + }, + "render": { + "#": 1348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1350 + }, + "vertices": { + "#": 1351 + } + }, + [ + { + "#": 1337 + }, + { + "#": 1338 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1340 + }, + "min": { + "#": 1341 + } + }, + { + "x": 662.2238215091899, + "y": 243.36399999999998 + }, + { + "x": 632.4098215091898, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 647.3168215091898, + "y": 228.45699999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 647.3168215091898, + "y": 228.45699999999997 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1349 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 662.2238215091899, + "y": 243.36399999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 632.4098215091898, + "y": 243.36399999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 632.4098215091898, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 662.2238215091899, + "y": 213.54999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1624.121534624581, + "axes": { + "#": 1357 + }, + "bounds": { + "#": 1360 + }, + "collisionFilter": { + "#": 1363 + }, + "constraintImpulse": { + "#": 1364 + }, + "density": 0.001, + "force": { + "#": 1365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1766.6812602831346, + "inverseInertia": 0.0005660330601116675, + "inverseMass": 0.6157174686013581, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.624121534624581, + "motion": 0, + "parent": null, + "position": { + "#": 1366 + }, + "positionImpulse": { + "#": 1367 + }, + "positionPrev": { + "#": 1368 + }, + "render": { + "#": 1369 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1371 + }, + "vertices": { + "#": 1372 + } + }, + [ + { + "#": 1358 + }, + { + "#": 1359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1361 + }, + "min": { + "#": 1362 + } + }, + { + "x": 704.5130447602186, + "y": 251.95509259259256 + }, + { + "x": 662.2238215091899, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 683.3684331347042, + "y": 232.75254629629626 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 683.3684331347042, + "y": 232.75254629629626 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1370 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 662.2238215091899, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 704.5130447602186, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 704.5130447602186, + "y": 251.95509259259256 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 662.2238215091899, + "y": 251.95509259259256 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 925.4335858447538, + "axes": { + "#": 1378 + }, + "bounds": { + "#": 1381 + }, + "collisionFilter": { + "#": 1384 + }, + "constraintImpulse": { + "#": 1385 + }, + "density": 0.001, + "force": { + "#": 1386 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 658.9066011822378, + "inverseInertia": 0.001517665778739746, + "inverseMass": 1.080574570985751, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9254335858447538, + "motion": 0, + "parent": null, + "position": { + "#": 1387 + }, + "positionImpulse": { + "#": 1388 + }, + "positionPrev": { + "#": 1389 + }, + "render": { + "#": 1390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1392 + }, + "vertices": { + "#": 1393 + } + }, + [ + { + "#": 1379 + }, + { + "#": 1380 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1382 + }, + "min": { + "#": 1383 + } + }, + { + "x": 744.5266764474615, + "y": 236.67795781893 + }, + { + "x": 704.5130447602186, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 724.51986060384, + "y": 225.11397890946498 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 724.51986060384, + "y": 225.11397890946498 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1391 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 704.5130447602186, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 744.5266764474615, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 744.5266764474615, + "y": 236.67795781893 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 704.5130447602186, + "y": 236.67795781893 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5929.347511999999, + "axes": { + "#": 1399 + }, + "bounds": { + "#": 1413 + }, + "circleRadius": 43.65625, + "collisionFilter": { + "#": 1416 + }, + "constraintImpulse": { + "#": 1417 + }, + "density": 0.001, + "force": { + "#": 1418 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 22382.17146584697, + "inverseInertia": 0.00004467841744157413, + "inverseMass": 0.1686526212161066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.929347512, + "motion": 0, + "parent": null, + "position": { + "#": 1419 + }, + "positionImpulse": { + "#": 1420 + }, + "positionPrev": { + "#": 1421 + }, + "render": { + "#": 1422 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1424 + }, + "vertices": { + "#": 1425 + } + }, + [ + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + } + ], + { + "x": -0.9709364586220396, + "y": -0.23933740476259086 + }, + { + "x": -0.885455576089853, + "y": -0.4647240286141727 + }, + { + "x": -0.7484830648246673, + "y": -0.6631539049652597 + }, + { + "x": -0.5681125845628812, + "y": -0.8229508437697133 + }, + { + "x": -0.3546198602355774, + "y": -0.9350105639651882 + }, + { + "x": -0.12047891877198527, + "y": -0.9927158859067047 + }, + { + "x": 0.12047891877198527, + "y": -0.9927158859067047 + }, + { + "x": 0.3546198602355774, + "y": -0.9350105639651882 + }, + { + "x": 0.5681125845628812, + "y": -0.8229508437697133 + }, + { + "x": 0.7484830648246673, + "y": -0.6631539049652597 + }, + { + "x": 0.885455576089853, + "y": -0.4647240286141727 + }, + { + "x": 0.9709364586220396, + "y": -0.23933740476259086 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1414 + }, + "min": { + "#": 1415 + } + }, + { + "x": 831.2026764474614, + "y": 300.86199999999997 + }, + { + "x": 744.5266764474615, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 787.8646764474614, + "y": 257.20599999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 787.8646764474614, + "y": 257.20599999999996 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1423 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 831.2026764474614, + "y": 262.46799999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 828.6836764474614, + "y": 272.68699999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 823.7926764474614, + "y": 282.006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 816.8136764474614, + "y": 289.8829999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 808.1526764474614, + "y": 295.86199999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 798.3126764474614, + "y": 299.59399999999994 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 787.8646764474614, + "y": 300.86199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 777.4166764474614, + "y": 299.59399999999994 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 767.5766764474614, + "y": 295.86199999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 758.9156764474615, + "y": 289.8829999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 751.9366764474614, + "y": 282.006 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 747.0456764474615, + "y": 272.68699999999995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 744.5266764474615, + "y": 262.46799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 744.5266764474615, + "y": 251.94399999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 747.0456764474615, + "y": 241.72499999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 751.9366764474614, + "y": 232.40599999999995 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 758.9156764474615, + "y": 224.52899999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 767.5766764474614, + "y": 218.54999999999995 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 777.4166764474614, + "y": 214.81799999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 787.8646764474614, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 798.3126764474614, + "y": 214.81799999999996 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 808.1526764474614, + "y": 218.54999999999995 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 816.8136764474614, + "y": 224.52899999999997 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 823.7926764474614, + "y": 232.40599999999995 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 828.6836764474614, + "y": 241.72499999999997 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 831.2026764474614, + "y": 251.94399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2550.166396822507, + "axes": { + "#": 1453 + }, + "bounds": { + "#": 1456 + }, + "collisionFilter": { + "#": 1459 + }, + "constraintImpulse": { + "#": 1460 + }, + "density": 0.001, + "force": { + "#": 1461 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 10939.165130883785, + "inverseInertia": 0.00009141465441240754, + "inverseMass": 0.392131274745834, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5501663968225072, + "motion": 0, + "parent": null, + "position": { + "#": 1462 + }, + "positionImpulse": { + "#": 1463 + }, + "positionPrev": { + "#": 1464 + }, + "render": { + "#": 1465 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1467 + }, + "vertices": { + "#": 1468 + } + }, + [ + { + "#": 1454 + }, + { + "#": 1455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1457 + }, + "min": { + "#": 1458 + } + }, + { + "x": 942.2964693144023, + "y": 236.50507544581615 + }, + { + "x": 831.2026764474614, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7495728809319, + "y": 225.02753772290805 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7495728809319, + "y": 225.02753772290805 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1466 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 831.2026764474614, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 942.2964693144023, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 942.2964693144023, + "y": 236.50507544581615 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 831.2026764474614, + "y": 236.50507544581615 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5174.381305999998, + "axes": { + "#": 1474 + }, + "bounds": { + "#": 1488 + }, + "circleRadius": 40.782407407407405, + "collisionFilter": { + "#": 1491 + }, + "constraintImpulse": { + "#": 1492 + }, + "density": 0.001, + "force": { + "#": 1493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17045.3242729355, + "inverseInertia": 0.000058667115039154525, + "inverseMass": 0.1932598200369272, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.174381305999998, + "motion": 0, + "parent": null, + "position": { + "#": 1494 + }, + "positionImpulse": { + "#": 1495 + }, + "positionPrev": { + "#": 1496 + }, + "render": { + "#": 1497 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1499 + }, + "vertices": { + "#": 1500 + } + }, + [ + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + } + ], + { + "x": -0.9709389264723081, + "y": -0.23932739304309056 + }, + { + "x": -0.8854449940324717, + "y": -0.46474419043473386 + }, + { + "x": -0.748536249103088, + "y": -0.6630938725238529 + }, + { + "x": -0.5680775563568219, + "y": -0.8229750239002773 + }, + { + "x": -0.35456531449559353, + "y": -0.9350312496150279 + }, + { + "x": -0.12052880622175748, + "y": -0.9927098301471373 + }, + { + "x": 0.12052880622175748, + "y": -0.9927098301471373 + }, + { + "x": 0.35456531449559353, + "y": -0.9350312496150279 + }, + { + "x": 0.5680775563568219, + "y": -0.8229750239002773 + }, + { + "x": 0.748536249103088, + "y": -0.6630938725238529 + }, + { + "x": 0.8854449940324717, + "y": -0.46474419043473386 + }, + { + "x": 0.9709389264723081, + "y": -0.23932739304309056 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1489 + }, + "min": { + "#": 1490 + } + }, + { + "x": 1023.2664693144023, + "y": 295.1139999999999 + }, + { + "x": 942.2964693144023, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 982.7814693144023, + "y": 254.33199999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 982.7814693144023, + "y": 254.33199999999994 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1498 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1023.2664693144023, + "y": 259.24799999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1020.9134693144023, + "y": 268.7939999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1016.3444693144023, + "y": 277.4989999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1009.8254693144023, + "y": 284.85799999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1001.7344693144023, + "y": 290.4429999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 992.5414693144023, + "y": 293.929 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 982.7814693144023, + "y": 295.1139999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 973.0214693144023, + "y": 293.929 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 963.8284693144024, + "y": 290.4429999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 955.7374693144023, + "y": 284.85799999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 949.2184693144023, + "y": 277.4989999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 944.6494693144024, + "y": 268.7939999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 942.2964693144023, + "y": 259.24799999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 942.2964693144023, + "y": 249.41599999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 944.6494693144024, + "y": 239.86999999999995 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 949.2184693144023, + "y": 231.16499999999994 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 955.7374693144023, + "y": 223.80599999999993 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 963.8284693144024, + "y": 218.22099999999995 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 973.0214693144023, + "y": 214.73499999999993 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 982.7814693144023, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 992.5414693144023, + "y": 214.73499999999993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1001.7344693144023, + "y": 218.22099999999995 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1009.8254693144023, + "y": 223.80599999999993 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1016.3444693144023, + "y": 231.16499999999994 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1020.9134693144023, + "y": 239.86999999999995 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1023.2664693144023, + "y": 249.41599999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1308.2034644955884, + "axes": { + "#": 1528 + }, + "bounds": { + "#": 1531 + }, + "collisionFilter": { + "#": 1534 + }, + "constraintImpulse": { + "#": 1535 + }, + "density": 0.001, + "force": { + "#": 1536 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1149.8579054087725, + "inverseInertia": 0.0008696726745940854, + "inverseMass": 0.7644070873834413, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3082034644955884, + "motion": 0, + "parent": null, + "position": { + "#": 1537 + }, + "positionImpulse": { + "#": 1538 + }, + "positionPrev": { + "#": 1539 + }, + "render": { + "#": 1540 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1542 + }, + "vertices": { + "#": 1543 + } + }, + [ + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1532 + }, + "min": { + "#": 1533 + } + }, + { + "x": 1061.7685269275707, + "y": 247.527494855967 + }, + { + "x": 1023.2664693144022, + "y": 213.54999999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1042.5174981209866, + "y": 230.53874742798348 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1042.5174981209866, + "y": 230.53874742798348 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1541 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1023.2664693144022, + "y": 213.54999999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1061.7685269275707, + "y": 213.54999999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1061.7685269275707, + "y": 247.527494855967 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1023.2664693144022, + "y": 247.527494855967 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3803.7767479999993, + "axes": { + "#": 1549 + }, + "bounds": { + "#": 1557 + }, + "collisionFilter": { + "#": 1560 + }, + "constraintImpulse": { + "#": 1561 + }, + "density": 0.001, + "force": { + "#": 1562 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 9247.768748441516, + "inverseInertia": 0.00010813419184692798, + "inverseMass": 0.2628966067805618, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.8037767479999993, + "motion": 0, + "parent": null, + "position": { + "#": 1563 + }, + "positionImpulse": { + "#": 1564 + }, + "positionPrev": { + "#": 1565 + }, + "render": { + "#": 1566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1568 + }, + "vertices": { + "#": 1569 + } + }, + [ + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + } + ], + { + "x": 0.623488113338336, + "y": 0.7818328290151305 + }, + { + "x": -0.22254280104331042, + "y": 0.9749229209039029 + }, + { + "x": -0.9009618424321717, + "y": 0.43389832735472317 + }, + { + "x": -0.9009618424321717, + "y": -0.43389832735472317 + }, + { + "x": -0.22254280104331042, + "y": -0.9749229209039029 + }, + { + "x": 0.623488113338336, + "y": -0.7818328290151305 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1558 + }, + "min": { + "#": 1559 + } + }, + { + "x": 1130.797166256119, + "y": 286.24799999999993 + }, + { + "x": 1059.922166256119, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1097.2060269275707, + "y": 249.89899999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1097.2060269275707, + "y": 249.89899999999994 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1567 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1130.797166256119, + "y": 266.0759999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1105.5021662561192, + "y": 286.24799999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1073.960166256119, + "y": 279.04799999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1059.922166256119, + "y": 249.89899999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1073.960166256119, + "y": 220.74999999999994 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1105.5021662561192, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1130.797166256119, + "y": 233.72199999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1519.5385669833, + "axes": { + "#": 1578 + }, + "bounds": { + "#": 1581 + }, + "collisionFilter": { + "#": 1584 + }, + "constraintImpulse": { + "#": 1585 + }, + "density": 0.001, + "force": { + "#": 1586 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1623.6987742797708, + "inverseInertia": 0.0006158777821604092, + "inverseMass": 0.6580945174595165, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5195385669833, + "motion": 0, + "parent": null, + "position": { + "#": 1587 + }, + "positionImpulse": { + "#": 1588 + }, + "positionPrev": { + "#": 1589 + }, + "render": { + "#": 1590 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1592 + }, + "vertices": { + "#": 1593 + } + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1582 + }, + "min": { + "#": 1583 + } + }, + { + "x": 1163.8559368322508, + "y": 259.51476337448554 + }, + { + "x": 1130.797166256119, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1147.326551544185, + "y": 236.53238168724275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1147.326551544185, + "y": 236.53238168724275 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1591 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1130.797166256119, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1163.8559368322508, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1163.8559368322508, + "y": 259.51476337448554 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1130.797166256119, + "y": 259.51476337448554 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3306.4800040000005, + "axes": { + "#": 1599 + }, + "bounds": { + "#": 1602 + }, + "collisionFilter": { + "#": 1605 + }, + "constraintImpulse": { + "#": 1606 + }, + "density": 0.001, + "force": { + "#": 1607 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 7288.540011234562, + "inverseInertia": 0.00013720168901571494, + "inverseMass": 0.302436427496992, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.3064800040000004, + "motion": 0, + "parent": null, + "position": { + "#": 1608 + }, + "positionImpulse": { + "#": 1609 + }, + "positionPrev": { + "#": 1610 + }, + "render": { + "#": 1611 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1613 + }, + "vertices": { + "#": 1614 + } + }, + [ + { + "#": 1600 + }, + { + "#": 1601 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1603 + }, + "min": { + "#": 1604 + } + }, + { + "x": 1221.3579368322507, + "y": 271.05199999999996 + }, + { + "x": 1163.8559368322508, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1192.6069368322508, + "y": 242.30099999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1192.6069368322508, + "y": 242.30099999999996 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1612 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1221.3579368322507, + "y": 271.05199999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1163.8559368322508, + "y": 271.05199999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1163.8559368322508, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1221.3579368322507, + "y": 213.54999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1545.32445, + "axes": { + "#": 1620 + }, + "bounds": { + "#": 1624 + }, + "collisionFilter": { + "#": 1627 + }, + "constraintImpulse": { + "#": 1628 + }, + "density": 0.001, + "force": { + "#": 1629 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 1838.3045471526925, + "inverseInertia": 0.000543979506305893, + "inverseMass": 0.6471132971461107, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.54532445, + "motion": 0, + "parent": null, + "position": { + "#": 1630 + }, + "positionImpulse": { + "#": 1631 + }, + "positionPrev": { + "#": 1632 + }, + "render": { + "#": 1633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1635 + }, + "vertices": { + "#": 1636 + } + }, + [ + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + } + ], + { + "x": -0.5000098405967125, + "y": 0.8660197222387318 + }, + { + "x": -0.5000098405967125, + "y": -0.8660197222387318 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1625 + }, + "min": { + "#": 1626 + } + }, + { + "x": 63.11250000000001, + "y": 366.44399999999996 + }, + { + "x": 11.377500000000005, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 45.86750000000001, + "y": 336.57399999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 45.86750000000001, + "y": 336.57399999999996 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1634 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 63.11250000000001, + "y": 366.44399999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 11.377500000000005, + "y": 336.57399999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 63.11250000000001, + "y": 306.70399999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 832.6916065934118, + "axes": { + "#": 1641 + }, + "bounds": { + "#": 1644 + }, + "collisionFilter": { + "#": 1647 + }, + "constraintImpulse": { + "#": 1648 + }, + "density": 0.001, + "force": { + "#": 1649 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 462.4740461527257, + "inverseInertia": 0.0021622835017854466, + "inverseMass": 1.2009247986671274, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8326916065934119, + "motion": 0, + "parent": null, + "position": { + "#": 1650 + }, + "positionImpulse": { + "#": 1651 + }, + "positionPrev": { + "#": 1652 + }, + "render": { + "#": 1653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1655 + }, + "vertices": { + "#": 1656 + } + }, + [ + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1645 + }, + "min": { + "#": 1646 + } + }, + { + "x": 92.42139917695474, + "y": 335.1148796296296 + }, + { + "x": 63.11250000000001, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 77.76694958847737, + "y": 320.9094398148148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 77.76694958847737, + "y": 320.9094398148148 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1654 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 63.11250000000001, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 92.42139917695474, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 92.42139917695474, + "y": 335.1148796296296 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 63.11250000000001, + "y": 335.1148796296296 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 979.5317619999998, + "axes": { + "#": 1662 + }, + "bounds": { + "#": 1668 + }, + "collisionFilter": { + "#": 1671 + }, + "constraintImpulse": { + "#": 1672 + }, + "density": 0.001, + "force": { + "#": 1673 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 621.1930410018283, + "inverseInertia": 0.0016098055419089229, + "inverseMass": 1.0208959410955785, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9795317619999999, + "motion": 0, + "parent": null, + "position": { + "#": 1674 + }, + "positionImpulse": { + "#": 1675 + }, + "positionPrev": { + "#": 1676 + }, + "render": { + "#": 1677 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1679 + }, + "vertices": { + "#": 1680 + } + }, + [ + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + } + ], + { + "x": 0.30903963762764336, + "y": 0.9510491587583552 + }, + { + "x": -0.8090205210332716, + "y": 0.5877803982330935 + }, + { + "x": -0.8090205210332716, + "y": -0.5877803982330935 + }, + { + "x": 0.30903963762764336, + "y": -0.9510491587583552 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1669 + }, + "min": { + "#": 1670 + } + }, + { + "x": 127.20130264884645, + "y": 345.3119999999999 + }, + { + "x": 90.48330264884645, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 110.78039917695475, + "y": 326.0079999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 110.78039917695475, + "y": 326.0079999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1678 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 127.20130264884645, + "y": 337.93799999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 104.50830264884645, + "y": 345.3119999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 90.48330264884645, + "y": 326.0079999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 104.50830264884645, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 127.20130264884645, + "y": 314.0779999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1515.3131811080627, + "axes": { + "#": 1687 + }, + "bounds": { + "#": 1690 + }, + "collisionFilter": { + "#": 1693 + }, + "constraintImpulse": { + "#": 1694 + }, + "density": 0.001, + "force": { + "#": 1695 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1532.4206796199487, + "inverseInertia": 0.0006525623239749069, + "inverseMass": 0.6599295858224876, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5153131811080627, + "motion": 0, + "parent": null, + "position": { + "#": 1696 + }, + "positionImpulse": { + "#": 1697 + }, + "positionPrev": { + "#": 1698 + }, + "render": { + "#": 1699 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1701 + }, + "vertices": { + "#": 1702 + } + }, + [ + { + "#": 1688 + }, + { + "#": 1689 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1691 + }, + "min": { + "#": 1692 + } + }, + { + "x": 167.03913701098637, + "y": 344.741037037037 + }, + { + "x": 127.20130264884645, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 147.1202198299164, + "y": 325.7225185185185 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 147.1202198299164, + "y": 325.7225185185185 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1700 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 127.20130264884645, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 167.03913701098637, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.03913701098637, + "y": 344.741037037037 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 127.20130264884645, + "y": 344.741037037037 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1347.9278604289448, + "axes": { + "#": 1708 + }, + "bounds": { + "#": 1711 + }, + "collisionFilter": { + "#": 1714 + }, + "constraintImpulse": { + "#": 1715 + }, + "density": 0.001, + "force": { + "#": 1716 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1394.5666895178056, + "inverseInertia": 0.000717068611717498, + "inverseMass": 0.7418794650344082, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3479278604289449, + "motion": 0, + "parent": null, + "position": { + "#": 1717 + }, + "positionImpulse": { + "#": 1718 + }, + "positionPrev": { + "#": 1719 + }, + "render": { + "#": 1720 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1722 + }, + "vertices": { + "#": 1723 + } + }, + [ + { + "#": 1709 + }, + { + "#": 1710 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1712 + }, + "min": { + "#": 1713 + } + }, + { + "x": 195.01804647600696, + "y": 354.88056893004114 + }, + { + "x": 167.03913701098637, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.02859174349666, + "y": 330.79228446502054 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.02859174349666, + "y": 330.79228446502054 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1721 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 167.03913701098637, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.01804647600696, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.01804647600696, + "y": 354.88056893004114 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 167.03913701098637, + "y": 354.88056893004114 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2285.4053614040354, + "axes": { + "#": 1729 + }, + "bounds": { + "#": 1732 + }, + "collisionFilter": { + "#": 1735 + }, + "constraintImpulse": { + "#": 1736 + }, + "density": 0.001, + "force": { + "#": 1737 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 3483.877210739159, + "inverseInertia": 0.00028703652267579035, + "inverseMass": 0.43755913803652385, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.2854053614040355, + "motion": 0, + "parent": null, + "position": { + "#": 1738 + }, + "positionImpulse": { + "#": 1739 + }, + "positionPrev": { + "#": 1740 + }, + "render": { + "#": 1741 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1743 + }, + "vertices": { + "#": 1744 + } + }, + [ + { + "#": 1730 + }, + { + "#": 1731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1733 + }, + "min": { + "#": 1734 + } + }, + { + "x": 242.05624092045142, + "y": 355.2901625514403 + }, + { + "x": 195.01804647600696, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 218.5371436982292, + "y": 330.9970812757201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 218.5371436982292, + "y": 330.9970812757201 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1742 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195.01804647600696, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 242.05624092045142, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 242.05624092045142, + "y": 355.2901625514403 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195.01804647600696, + "y": 355.2901625514403 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4327.82858, + "axes": { + "#": 1750 + }, + "bounds": { + "#": 1756 + }, + "collisionFilter": { + "#": 1759 + }, + "constraintImpulse": { + "#": 1760 + }, + "density": 0.001, + "force": { + "#": 1761 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 12126.33710521863, + "inverseInertia": 0.0000824651328198393, + "inverseMass": 0.23106275618707614, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.32782858, + "motion": 0, + "parent": null, + "position": { + "#": 1762 + }, + "positionImpulse": { + "#": 1763 + }, + "positionPrev": { + "#": 1764 + }, + "render": { + "#": 1765 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1767 + }, + "vertices": { + "#": 1768 + } + }, + [ + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + } + ], + { + "x": 0.30902295452491274, + "y": 0.9510545797043899 + }, + { + "x": -0.8090187921715927, + "y": 0.587782777829716 + }, + { + "x": -0.8090187921715927, + "y": -0.587782777829716 + }, + { + "x": 0.30902295452491274, + "y": -0.9510545797043899 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1757 + }, + "min": { + "#": 1758 + } + }, + { + "x": 315.1622882764983, + "y": 387.856 + }, + { + "x": 237.98228827649834, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280.6462409204514, + "y": 347.28 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280.6462409204514, + "y": 347.28 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1766 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.1622882764983, + "y": 372.35699999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 267.4622882764984, + "y": 387.856 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 237.98228827649834, + "y": 347.28 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.4622882764984, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 315.1622882764983, + "y": 322.203 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2032.7292721140495, + "axes": { + "#": 1775 + }, + "bounds": { + "#": 1778 + }, + "collisionFilter": { + "#": 1781 + }, + "constraintImpulse": { + "#": 1782 + }, + "density": 0.001, + "force": { + "#": 1783 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 6700.374119056197, + "inverseInertia": 0.00014924539767950423, + "inverseMass": 0.49194942667401764, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.0327292721140497, + "motion": 0, + "parent": null, + "position": { + "#": 1784 + }, + "positionImpulse": { + "#": 1785 + }, + "positionPrev": { + "#": 1786 + }, + "render": { + "#": 1787 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1789 + }, + "vertices": { + "#": 1790 + } + }, + [ + { + "#": 1776 + }, + { + "#": 1777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1779 + }, + "min": { + "#": 1780 + } + }, + { + "x": 412.3814240789675, + "y": 327.6127362825788 + }, + { + "x": 315.1622882764983, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 363.7718561777329, + "y": 317.1583681412894 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 363.7718561777329, + "y": 317.1583681412894 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1788 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.1622882764983, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 412.3814240789675, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 412.3814240789675, + "y": 327.6127362825788 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 315.1622882764983, + "y": 327.6127362825788 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1931.953486546484, + "axes": { + "#": 1796 + }, + "bounds": { + "#": 1799 + }, + "collisionFilter": { + "#": 1802 + }, + "constraintImpulse": { + "#": 1803 + }, + "density": 0.001, + "force": { + "#": 1804 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 4690.996610130106, + "inverseInertia": 0.00021317431733813697, + "inverseMass": 0.517610805313733, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.9319534865464842, + "motion": 0, + "parent": null, + "position": { + "#": 1805 + }, + "positionImpulse": { + "#": 1806 + }, + "positionPrev": { + "#": 1807 + }, + "render": { + "#": 1808 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1810 + }, + "vertices": { + "#": 1811 + } + }, + [ + { + "#": 1797 + }, + { + "#": 1798 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1800 + }, + "min": { + "#": 1801 + } + }, + { + "x": 494.41623203507174, + "y": 330.25441152263375 + }, + { + "x": 412.3814240789675, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 453.3988280570196, + "y": 318.47920576131685 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 453.3988280570196, + "y": 318.47920576131685 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1809 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 412.3814240789675, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.41623203507174, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 494.41623203507174, + "y": 330.25441152263375 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 412.3814240789675, + "y": 330.25441152263375 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2376.3179650719107, + "axes": { + "#": 1817 + }, + "bounds": { + "#": 1820 + }, + "collisionFilter": { + "#": 1823 + }, + "constraintImpulse": { + "#": 1824 + }, + "density": 0.001, + "force": { + "#": 1825 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 3764.591504006761, + "inverseInertia": 0.0002656330703970595, + "inverseMass": 0.42081910531267586, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.3763179650719106, + "motion": 0, + "parent": null, + "position": { + "#": 1826 + }, + "positionImpulse": { + "#": 1827 + }, + "positionPrev": { + "#": 1828 + }, + "render": { + "#": 1829 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1831 + }, + "vertices": { + "#": 1832 + } + }, + [ + { + "#": 1818 + }, + { + "#": 1819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1821 + }, + "min": { + "#": 1822 + } + }, + { + "x": 543.1574871791047, + "y": 355.4577294238683 + }, + { + "x": 494.41623203507174, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 518.7868596070882, + "y": 331.0808647119341 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 518.7868596070882, + "y": 331.0808647119341 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1830 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 494.41623203507174, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 543.1574871791047, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 543.1574871791047, + "y": 355.4577294238683 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 494.41623203507174, + "y": 355.4577294238683 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7163.665109999999, + "axes": { + "#": 1838 + }, + "bounds": { + "#": 1852 + }, + "circleRadius": 47.985725308641975, + "collisionFilter": { + "#": 1855 + }, + "constraintImpulse": { + "#": 1856 + }, + "density": 0.001, + "force": { + "#": 1857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 32670.739096352663, + "inverseInertia": 0.000030608429060964806, + "inverseMass": 0.13959334846684368, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.163665109999999, + "motion": 0, + "parent": null, + "position": { + "#": 1858 + }, + "positionImpulse": { + "#": 1859 + }, + "positionPrev": { + "#": 1860 + }, + "render": { + "#": 1861 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1863 + }, + "vertices": { + "#": 1864 + } + }, + [ + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + } + ], + { + "x": -0.9709305552368677, + "y": -0.23936135215908938 + }, + { + "x": -0.8854539309223355, + "y": -0.4647271631981327 + }, + { + "x": -0.7485195270433018, + "y": -0.6631127488103902 + }, + { + "x": -0.5680541170604241, + "y": -0.8229912029242489 + }, + { + "x": -0.3546073256135543, + "y": -0.9350153178537786 + }, + { + "x": -0.12058693531691794, + "y": -0.9927027707379854 + }, + { + "x": 0.12058693531691794, + "y": -0.9927027707379854 + }, + { + "x": 0.3546073256135543, + "y": -0.9350153178537786 + }, + { + "x": 0.5680541170604241, + "y": -0.8229912029242489 + }, + { + "x": 0.7485195270433018, + "y": -0.6631127488103902 + }, + { + "x": 0.8854539309223355, + "y": -0.4647271631981327 + }, + { + "x": 0.9709305552368677, + "y": -0.23936135215908938 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1853 + }, + "min": { + "#": 1854 + } + }, + { + "x": 638.4294871791046, + "y": 402.67599999999993 + }, + { + "x": 543.1574871791047, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 590.7934871791047, + "y": 354.68999999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 590.7934871791047, + "y": 354.68999999999994 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1862 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.4294871791046, + "y": 360.47399999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 635.6604871791046, + "y": 371.70599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 630.2844871791046, + "y": 381.94899999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 622.6134871791047, + "y": 390.60799999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 613.0934871791046, + "y": 397.1789999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 602.2774871791047, + "y": 401.28099999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 590.7934871791047, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 579.3094871791046, + "y": 401.28099999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 568.4934871791047, + "y": 397.1789999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.9734871791047, + "y": 390.60799999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 551.3024871791047, + "y": 381.94899999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 545.9264871791047, + "y": 371.70599999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 543.1574871791047, + "y": 360.47399999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 543.1574871791047, + "y": 348.90599999999995 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 545.9264871791047, + "y": 337.6739999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 551.3024871791047, + "y": 327.4309999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 558.9734871791047, + "y": 318.77199999999993 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 568.4934871791047, + "y": 312.20099999999996 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 579.3094871791046, + "y": 308.09899999999993 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 590.7934871791047, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 602.2774871791047, + "y": 308.09899999999993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 613.0934871791046, + "y": 312.20099999999996 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 622.6134871791047, + "y": 318.77199999999993 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 630.2844871791046, + "y": 327.4309999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 635.6604871791046, + "y": 337.6739999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 638.4294871791046, + "y": 348.90599999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6059.0497460000015, + "axes": { + "#": 1892 + }, + "bounds": { + "#": 1906 + }, + "circleRadius": 44.13130144032922, + "collisionFilter": { + "#": 1909 + }, + "constraintImpulse": { + "#": 1910 + }, + "density": 0.001, + "force": { + "#": 1911 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 23372.08438446153, + "inverseInertia": 0.00004278608546633651, + "inverseMass": 0.16504238154838874, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.059049746000001, + "motion": 0, + "parent": null, + "position": { + "#": 1912 + }, + "positionImpulse": { + "#": 1913 + }, + "positionPrev": { + "#": 1914 + }, + "render": { + "#": 1915 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1917 + }, + "vertices": { + "#": 1918 + } + }, + [ + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + } + ], + { + "x": -0.9709225149895018, + "y": -0.23939396376362687 + }, + { + "x": -0.8854559247382039, + "y": -0.46472336432119704 + }, + { + "x": -0.7485335294885549, + "y": -0.663096942559236 + }, + { + "x": -0.5680558224819049, + "y": -0.8229900257867082 + }, + { + "x": -0.3546230668670807, + "y": -0.9350093477852434 + }, + { + "x": -0.1205054107991527, + "y": -0.9927126703976974 + }, + { + "x": 0.1205054107991527, + "y": -0.9927126703976974 + }, + { + "x": 0.3546230668670807, + "y": -0.9350093477852434 + }, + { + "x": 0.5680558224819049, + "y": -0.8229900257867082 + }, + { + "x": 0.7485335294885549, + "y": -0.663096942559236 + }, + { + "x": 0.8854559247382039, + "y": -0.46472336432119704 + }, + { + "x": 0.9709225149895018, + "y": -0.23939396376362687 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1907 + }, + "min": { + "#": 1908 + } + }, + { + "x": 726.0494871791045, + "y": 394.9659999999999 + }, + { + "x": 638.4294871791046, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 682.2394871791046, + "y": 350.8349999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 682.2394871791046, + "y": 350.8349999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1916 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 726.0494871791045, + "y": 356.15399999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 723.5024871791046, + "y": 366.4839999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 718.5584871791045, + "y": 375.90399999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 711.5034871791046, + "y": 383.86799999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 702.7484871791046, + "y": 389.91099999999994 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 692.8004871791046, + "y": 393.6839999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 682.2394871791046, + "y": 394.9659999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 671.6784871791045, + "y": 393.6839999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 661.7304871791046, + "y": 389.91099999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 652.9754871791046, + "y": 383.86799999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 645.9204871791046, + "y": 375.90399999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 640.9764871791045, + "y": 366.4839999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 638.4294871791046, + "y": 356.15399999999994 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 638.4294871791046, + "y": 345.5159999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 640.9764871791045, + "y": 335.1859999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 645.9204871791046, + "y": 325.7659999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 652.9754871791046, + "y": 317.8019999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 661.7304871791046, + "y": 311.7589999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 671.6784871791045, + "y": 307.98599999999993 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 682.2394871791046, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 692.8004871791046, + "y": 307.98599999999993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 702.7484871791046, + "y": 311.7589999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 711.5034871791046, + "y": 317.8019999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 718.5584871791045, + "y": 325.7659999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 723.5024871791046, + "y": 335.1859999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 726.0494871791045, + "y": 345.5159999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1190.42275, + "axes": { + "#": 1946 + }, + "bounds": { + "#": 1952 + }, + "collisionFilter": { + "#": 1955 + }, + "constraintImpulse": { + "#": 1956 + }, + "density": 0.001, + "force": { + "#": 1957 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 917.4702110738278, + "inverseInertia": 0.001089953644194701, + "inverseMass": 0.8400377092927702, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.19042275, + "motion": 0, + "parent": null, + "position": { + "#": 1958 + }, + "positionImpulse": { + "#": 1959 + }, + "positionPrev": { + "#": 1960 + }, + "render": { + "#": 1961 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1963 + }, + "vertices": { + "#": 1964 + } + }, + [ + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + } + ], + { + "x": 0.30904480933870226, + "y": 0.9510474782158908 + }, + { + "x": -0.8090088872494576, + "y": 0.5877964106316017 + }, + { + "x": -0.8090088872494576, + "y": -0.5877964106316017 + }, + { + "x": 0.30904480933870226, + "y": -0.9510474782158908 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1953 + }, + "min": { + "#": 1954 + } + }, + { + "x": 764.3907015176674, + "y": 349.26599999999996 + }, + { + "x": 723.9127015176673, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 746.2884871791045, + "y": 327.98499999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 746.2884871791045, + "y": 327.98499999999996 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1962 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 764.3907015176674, + "y": 341.13699999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 739.3747015176673, + "y": 349.26599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 723.9127015176673, + "y": 327.98499999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 739.3747015176673, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 764.3907015176674, + "y": 314.83299999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2171.016137319483, + "axes": { + "#": 1971 + }, + "bounds": { + "#": 1974 + }, + "collisionFilter": { + "#": 1977 + }, + "constraintImpulse": { + "#": 1978 + }, + "density": 0.001, + "force": { + "#": 1979 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 3142.3211355327803, + "inverseInertia": 0.0003182360926425332, + "inverseMass": 0.46061380328323276, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.1710161373194827, + "motion": 0, + "parent": null, + "position": { + "#": 1980 + }, + "positionImpulse": { + "#": 1981 + }, + "positionPrev": { + "#": 1982 + }, + "render": { + "#": 1983 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1985 + }, + "vertices": { + "#": 1986 + } + }, + [ + { + "#": 1972 + }, + { + "#": 1973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1975 + }, + "min": { + "#": 1976 + } + }, + { + "x": 811.1835255917415, + "y": 353.1003477366255 + }, + { + "x": 764.3907015176674, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 787.7871135547044, + "y": 329.90217386831273 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 787.7871135547044, + "y": 329.90217386831273 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1984 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 764.3907015176674, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 811.1835255917415, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 811.1835255917415, + "y": 353.1003477366255 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 764.3907015176674, + "y": 353.1003477366255 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1119.9948759999997, + "axes": { + "#": 1992 + }, + "bounds": { + "#": 1996 + }, + "collisionFilter": { + "#": 1999 + }, + "constraintImpulse": { + "#": 2000 + }, + "density": 0.001, + "force": { + "#": 2001 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 965.6287346905493, + "inverseInertia": 0.0010355947001934086, + "inverseMass": 0.8928612276972597, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.1199948759999998, + "motion": 0, + "parent": null, + "position": { + "#": 2002 + }, + "positionImpulse": { + "#": 2003 + }, + "positionPrev": { + "#": 2004 + }, + "render": { + "#": 2005 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2007 + }, + "vertices": { + "#": 2008 + } + }, + [ + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + } + ], + { + "x": -0.5000027244187393, + "y": 0.8660238308348324 + }, + { + "x": -0.5000027244187393, + "y": -0.8660238308348324 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1997 + }, + "min": { + "#": 1998 + } + }, + { + "x": 847.8868589250748, + "y": 357.5619999999999 + }, + { + "x": 803.8428589250748, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 833.2055255917414, + "y": 332.1329999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 833.2055255917414, + "y": 332.1329999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2006 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 847.8868589250748, + "y": 357.5619999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 803.8428589250748, + "y": 332.1329999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 847.8868589250748, + "y": 306.70399999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5582.974756, + "axes": { + "#": 2013 + }, + "bounds": { + "#": 2021 + }, + "collisionFilter": { + "#": 2024 + }, + "constraintImpulse": { + "#": 2025 + }, + "density": 0.001, + "force": { + "#": 2026 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 19922.243813825833, + "inverseInertia": 0.000050195149168188086, + "inverseMass": 0.17911598094283054, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.582974756, + "motion": 0, + "parent": null, + "position": { + "#": 2027 + }, + "positionImpulse": { + "#": 2028 + }, + "positionPrev": { + "#": 2029 + }, + "render": { + "#": 2030 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2032 + }, + "vertices": { + "#": 2033 + } + }, + [ + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + } + ], + { + "x": 0.6234964763295189, + "y": 0.7818261597085848 + }, + { + "x": -0.22252413765652376, + "y": 0.9749271809526189 + }, + { + "x": -0.9009669496877173, + "y": 0.43388772230890577 + }, + { + "x": -0.9009669496877173, + "y": -0.43388772230890577 + }, + { + "x": -0.22252413765652376, + "y": -0.9749271809526189 + }, + { + "x": 0.6234964763295189, + "y": -0.7818261597085848 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2022 + }, + "min": { + "#": 2023 + } + }, + { + "x": 931.5152738853482, + "y": 394.7779999999999 + }, + { + "x": 845.6502738853482, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 890.8193589250748, + "y": 350.74099999999993 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 890.8193589250748, + "y": 350.74099999999993 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2031 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 931.5152738853482, + "y": 370.33899999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 900.8702738853482, + "y": 394.7779999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 862.6572738853482, + "y": 386.0559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 845.6502738853482, + "y": 350.74099999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 862.6572738853482, + "y": 315.42599999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 900.8702738853482, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 931.5152738853482, + "y": 331.1429999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1427.950596, + "axes": { + "#": 2042 + }, + "bounds": { + "#": 2046 + }, + "collisionFilter": { + "#": 2049 + }, + "constraintImpulse": { + "#": 2050 + }, + "density": 0.001, + "force": { + "#": 2051 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 1308.0466332042622, + "inverseInertia": 0.0007644987377478626, + "inverseMass": 0.7003043402210255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4279505959999998, + "motion": 0, + "parent": null, + "position": { + "#": 2052 + }, + "positionImpulse": { + "#": 2053 + }, + "positionPrev": { + "#": 2054 + }, + "render": { + "#": 2055 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2057 + }, + "vertices": { + "#": 2058 + } + }, + [ + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + } + ], + { + "x": -0.5000018390041978, + "y": -0.8660243420322666 + }, + { + "x": 0.5000018390041978, + "y": -0.8660243420322666 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2047 + }, + "min": { + "#": 2048 + } + }, + { + "x": 972.1212738853482, + "y": 353.592 + }, + { + "x": 931.5152738853482, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 951.8182738853482, + "y": 330.14799999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 951.8182738853482, + "y": 330.14799999999997 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2056 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 972.1212738853482, + "y": 341.86999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 951.8182738853482, + "y": 353.592 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 931.5152738853482, + "y": 341.86999999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 931.5152738853482, + "y": 318.426 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 951.8182738853482, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 972.1212738853482, + "y": 318.426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1006.2524335919638, + "axes": { + "#": 2066 + }, + "bounds": { + "#": 2069 + }, + "collisionFilter": { + "#": 2072 + }, + "constraintImpulse": { + "#": 2073 + }, + "density": 0.001, + "force": { + "#": 2074 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 697.1461738741186, + "inverseInertia": 0.0014344194051053728, + "inverseMass": 0.9937864164266964, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0062524335919638, + "motion": 0, + "parent": null, + "position": { + "#": 2075 + }, + "positionImpulse": { + "#": 2076 + }, + "positionPrev": { + "#": 2077 + }, + "render": { + "#": 2078 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2080 + }, + "vertices": { + "#": 2081 + } + }, + [ + { + "#": 2067 + }, + { + "#": 2068 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2070 + }, + "min": { + "#": 2071 + } + }, + { + "x": 1008.1616545437843, + "y": 334.62413888888887 + }, + { + "x": 972.1212738853482, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 990.1414642145662, + "y": 320.6640694444444 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 990.1414642145662, + "y": 320.6640694444444 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2079 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 972.1212738853482, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1008.1616545437843, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1008.1616545437843, + "y": 334.62413888888887 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 972.1212738853482, + "y": 334.62413888888887 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3210.130139, + "axes": { + "#": 2087 + }, + "bounds": { + "#": 2095 + }, + "collisionFilter": { + "#": 2098 + }, + "constraintImpulse": { + "#": 2099 + }, + "density": 0.001, + "force": { + "#": 2100 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 6586.462154550281, + "inverseInertia": 0.00015182657647385802, + "inverseMass": 0.3115138504358312, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.210130139, + "motion": 0, + "parent": null, + "position": { + "#": 2101 + }, + "positionImpulse": { + "#": 2102 + }, + "positionPrev": { + "#": 2103 + }, + "render": { + "#": 2104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2106 + }, + "vertices": { + "#": 2107 + } + }, + [ + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + } + ], + { + "x": 0.6234920819000309, + "y": 0.7818296641903307 + }, + { + "x": -0.2225269729299679, + "y": 0.9749265338058173 + }, + { + "x": -0.9009636744259215, + "y": 0.4338945233175249 + }, + { + "x": -0.9009636744259215, + "y": -0.4338945233175249 + }, + { + "x": -0.2225269729299679, + "y": -0.9749265338058173 + }, + { + "x": 0.6234920819000309, + "y": -0.7818296641903307 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2096 + }, + "min": { + "#": 2097 + } + }, + { + "x": 1071.57552335436, + "y": 373.48799999999994 + }, + { + "x": 1006.4655233543602, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1040.7166545437842, + "y": 340.09599999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1040.7166545437842, + "y": 340.09599999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2105 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1071.57552335436, + "y": 354.95699999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1048.3385233543602, + "y": 373.48799999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1019.3615233543602, + "y": 366.87399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1006.4655233543602, + "y": 340.09599999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1019.3615233543602, + "y": 313.3179999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1048.3385233543602, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1071.57552335436, + "y": 325.23499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1352.927270280826, + "axes": { + "#": 2116 + }, + "bounds": { + "#": 2119 + }, + "collisionFilter": { + "#": 2122 + }, + "constraintImpulse": { + "#": 2123 + }, + "density": 0.001, + "force": { + "#": 2124 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 1256.990937022409, + "inverseInertia": 0.0007955506842148158, + "inverseMass": 0.7391380320040639, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.352927270280826, + "motion": 0, + "parent": null, + "position": { + "#": 2125 + }, + "positionImpulse": { + "#": 2126 + }, + "positionPrev": { + "#": 2127 + }, + "render": { + "#": 2128 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2130 + }, + "vertices": { + "#": 2131 + } + }, + [ + { + "#": 2117 + }, + { + "#": 2118 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2120 + }, + "min": { + "#": 2121 + } + }, + { + "x": 1113.1448391979816, + "y": 339.25029629629626 + }, + { + "x": 1071.57552335436, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1092.3601812761708, + "y": 322.9771481481481 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1092.3601812761708, + "y": 322.9771481481481 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2129 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1071.57552335436, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1113.1448391979816, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1113.1448391979816, + "y": 339.25029629629626 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1071.57552335436, + "y": 339.25029629629626 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1720.1260092915415, + "axes": { + "#": 2137 + }, + "bounds": { + "#": 2140 + }, + "collisionFilter": { + "#": 2143 + }, + "constraintImpulse": { + "#": 2144 + }, + "density": 0.001, + "force": { + "#": 2145 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 2025.862459801684, + "inverseInertia": 0.0004936169260463478, + "inverseMass": 0.5813527582272093, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7201260092915416, + "motion": 0, + "parent": null, + "position": { + "#": 2146 + }, + "positionImpulse": { + "#": 2147 + }, + "positionPrev": { + "#": 2148 + }, + "render": { + "#": 2149 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2151 + }, + "vertices": { + "#": 2152 + } + }, + [ + { + "#": 2138 + }, + { + "#": 2139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2141 + }, + "min": { + "#": 2142 + } + }, + { + "x": 56.932613168724274, + "y": 449.25071707818927 + }, + { + "x": 20, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.46630658436214, + "y": 425.9633585390946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.46630658436214, + "y": 425.9633585390946 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2150 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 56.932613168724274, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.932613168724274, + "y": 449.25071707818927 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 449.25071707818927 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1250.161678324093, + "axes": { + "#": 2158 + }, + "bounds": { + "#": 2161 + }, + "collisionFilter": { + "#": 2164 + }, + "constraintImpulse": { + "#": 2165 + }, + "density": 0.001, + "force": { + "#": 2166 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 1044.2197391722605, + "inverseInertia": 0.0009576528411469095, + "inverseMass": 0.7998965392544685, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.250161678324093, + "motion": 0, + "parent": null, + "position": { + "#": 2167 + }, + "positionImpulse": { + "#": 2168 + }, + "positionPrev": { + "#": 2169 + }, + "render": { + "#": 2170 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2172 + }, + "vertices": { + "#": 2173 + } + }, + [ + { + "#": 2159 + }, + { + "#": 2160 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2162 + }, + "min": { + "#": 2163 + } + }, + { + "x": 93.48006687242797, + "y": 436.8825329218106 + }, + { + "x": 56.932613168724274, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.20634002057612, + "y": 419.77926646090526 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.20634002057612, + "y": 419.77926646090526 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2171 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.932613168724274, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 93.48006687242797, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 93.48006687242797, + "y": 436.8825329218106 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 56.932613168724274, + "y": 436.8825329218106 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3092.075232, + "axes": { + "#": 2179 + }, + "bounds": { + "#": 2185 + }, + "collisionFilter": { + "#": 2188 + }, + "constraintImpulse": { + "#": 2189 + }, + "density": 0.001, + "force": { + "#": 2190 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 6189.985619847792, + "inverseInertia": 0.00016155126383388745, + "inverseMass": 0.32340739631783966, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.092075232, + "motion": 0, + "parent": null, + "position": { + "#": 2191 + }, + "positionImpulse": { + "#": 2192 + }, + "positionPrev": { + "#": 2193 + }, + "render": { + "#": 2194 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2196 + }, + "vertices": { + "#": 2197 + } + }, + [ + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + } + ], + { + "x": 0.3090076656207097, + "y": 0.9510595473405646 + }, + { + "x": -0.8090195640060213, + "y": 0.5877817154824632 + }, + { + "x": -0.8090195640060213, + "y": -0.5877817154824632 + }, + { + "x": 0.3090076656207097, + "y": -0.9510595473405646 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2186 + }, + "min": { + "#": 2187 + } + }, + { + "x": 155.27345245050316, + "y": 471.27 + }, + { + "x": 90.03645245050316, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.09856687242797, + "y": 436.97299999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.09856687242797, + "y": 436.97299999999996 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2195 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 155.27345245050316, + "y": 458.16999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 114.95445245050317, + "y": 471.27 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 90.03645245050316, + "y": 436.97299999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 114.95445245050317, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 155.27345245050316, + "y": 415.77599999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1581.4152047253658, + "axes": { + "#": 2204 + }, + "bounds": { + "#": 2207 + }, + "collisionFilter": { + "#": 2210 + }, + "constraintImpulse": { + "#": 2211 + }, + "density": 0.001, + "force": { + "#": 2212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 1771.7086023235004, + "inverseInertia": 0.0005644269033229019, + "inverseMass": 0.6323450014973541, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5814152047253658, + "motion": 0, + "parent": null, + "position": { + "#": 2213 + }, + "positionImpulse": { + "#": 2214 + }, + "positionPrev": { + "#": 2215 + }, + "render": { + "#": 2216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2218 + }, + "vertices": { + "#": 2219 + } + }, + [ + { + "#": 2205 + }, + { + "#": 2206 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2208 + }, + "min": { + "#": 2209 + } + }, + { + "x": 202.69706356161424, + "y": 436.0225792181069 + }, + { + "x": 155.27345245050316, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.9852580060587, + "y": 419.3492896090534 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.9852580060587, + "y": 419.3492896090534 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2217 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 155.27345245050316, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 202.69706356161424, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 202.69706356161424, + "y": 436.0225792181069 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 155.27345245050316, + "y": 436.0225792181069 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4508.288001999999, + "axes": { + "#": 2225 + }, + "bounds": { + "#": 2230 + }, + "collisionFilter": { + "#": 2233 + }, + "constraintImpulse": { + "#": 2234 + }, + "density": 0.001, + "force": { + "#": 2235 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 12968.580393466536, + "inverseInertia": 0.00007710944217948417, + "inverseMass": 0.22181369059748904, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.508288002, + "motion": 0, + "parent": null, + "position": { + "#": 2236 + }, + "positionImpulse": { + "#": 2237 + }, + "positionPrev": { + "#": 2238 + }, + "render": { + "#": 2239 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2241 + }, + "vertices": { + "#": 2242 + } + }, + [ + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2231 + }, + "min": { + "#": 2232 + } + }, + { + "x": 276.4670635616142, + "y": 476.4459999999999 + }, + { + "x": 202.69706356161424, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 239.58206356161423, + "y": 439.5609999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 239.58206356161423, + "y": 439.5609999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2240 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 276.4670635616142, + "y": 454.83899999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 254.86006356161423, + "y": 476.4459999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 224.30406356161424, + "y": 476.4459999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.69706356161424, + "y": 454.83899999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 202.69706356161424, + "y": 424.2829999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 224.30406356161424, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 254.86006356161423, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 276.4670635616142, + "y": 424.2829999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1039.6267295619953, + "axes": { + "#": 2252 + }, + "bounds": { + "#": 2255 + }, + "collisionFilter": { + "#": 2258 + }, + "constraintImpulse": { + "#": 2259 + }, + "density": 0.001, + "force": { + "#": 2260 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 836.7694481463552, + "inverseInertia": 0.0011950723131864333, + "inverseMass": 0.9618836949501189, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0396267295619952, + "motion": 0, + "parent": null, + "position": { + "#": 2261 + }, + "positionImpulse": { + "#": 2262 + }, + "positionPrev": { + "#": 2263 + }, + "render": { + "#": 2264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2266 + }, + "vertices": { + "#": 2267 + } + }, + [ + { + "#": 2253 + }, + { + "#": 2254 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2256 + }, + "min": { + "#": 2257 + } + }, + { + "x": 319.1418320801327, + "y": 427.0376255144032 + }, + { + "x": 276.46706356161417, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.80444782087346, + "y": 414.85681275720157 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.80444782087346, + "y": 414.85681275720157 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2265 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 276.46706356161417, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 319.1418320801327, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 319.1418320801327, + "y": 427.0376255144032 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 276.46706356161417, + "y": 427.0376255144032 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1574.8717250450893, + "axes": { + "#": 2273 + }, + "bounds": { + "#": 2276 + }, + "collisionFilter": { + "#": 2279 + }, + "constraintImpulse": { + "#": 2280 + }, + "density": 0.001, + "force": { + "#": 2281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 1691.4099419533813, + "inverseInertia": 0.0005912227279716214, + "inverseMass": 0.6349723498727298, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5748717250450894, + "motion": 0, + "parent": null, + "position": { + "#": 2282 + }, + "positionImpulse": { + "#": 2283 + }, + "positionPrev": { + "#": 2284 + }, + "render": { + "#": 2285 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2287 + }, + "vertices": { + "#": 2288 + } + }, + [ + { + "#": 2274 + }, + { + "#": 2275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2277 + }, + "min": { + "#": 2278 + } + }, + { + "x": 354.8033547138776, + "y": 446.83765123456783 + }, + { + "x": 319.1418320801327, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 336.97259339700514, + "y": 424.7568256172839 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 336.97259339700514, + "y": 424.7568256172839 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2286 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.1418320801327, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.8033547138776, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 354.8033547138776, + "y": 446.83765123456783 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 319.1418320801327, + "y": 446.83765123456783 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 968.3879641074045, + "axes": { + "#": 2294 + }, + "bounds": { + "#": 2297 + }, + "collisionFilter": { + "#": 2300 + }, + "constraintImpulse": { + "#": 2301 + }, + "density": 0.001, + "force": { + "#": 2302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 797.6175154248832, + "inverseInertia": 0.001253733751655779, + "inverseMass": 1.0326439785130264, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9683879641074046, + "motion": 0, + "parent": null, + "position": { + "#": 2303 + }, + "positionImpulse": { + "#": 2304 + }, + "positionPrev": { + "#": 2305 + }, + "render": { + "#": 2306 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2308 + }, + "vertices": { + "#": 2309 + } + }, + [ + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2298 + }, + "min": { + "#": 2299 + } + }, + { + "x": 399.55502652457716, + "y": 424.3151460905349 + }, + { + "x": 354.8033547138776, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.17919061922737, + "y": 413.4955730452674 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.17919061922737, + "y": 413.4955730452674 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2307 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 354.8033547138776, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 399.55502652457716, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 399.55502652457716, + "y": 424.3151460905349 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 354.8033547138776, + "y": 424.3151460905349 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1379.2675785219164, + "axes": { + "#": 2315 + }, + "bounds": { + "#": 2318 + }, + "collisionFilter": { + "#": 2321 + }, + "constraintImpulse": { + "#": 2322 + }, + "density": 0.001, + "force": { + "#": 2323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 1297.383606626366, + "inverseInertia": 0.0007707820531202307, + "inverseMass": 0.7250224797364148, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3792675785219164, + "motion": 0, + "parent": null, + "position": { + "#": 2324 + }, + "positionImpulse": { + "#": 2325 + }, + "positionPrev": { + "#": 2326 + }, + "render": { + "#": 2327 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2329 + }, + "vertices": { + "#": 2330 + } + }, + [ + { + "#": 2316 + }, + { + "#": 2317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2319 + }, + "min": { + "#": 2320 + } + }, + { + "x": 432.9261684998858, + "y": 444.00714711934154 + }, + { + "x": 399.55502652457716, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 416.2405975122315, + "y": 423.34157355967073 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 416.2405975122315, + "y": 423.34157355967073 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2328 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 399.55502652457716, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 432.9261684998858, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 432.9261684998858, + "y": 444.00714711934154 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 399.55502652457716, + "y": 444.00714711934154 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1475.914064, + "axes": { + "#": 2336 + }, + "bounds": { + "#": 2340 + }, + "collisionFilter": { + "#": 2343 + }, + "constraintImpulse": { + "#": 2344 + }, + "density": 0.001, + "force": { + "#": 2345 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 1397.3944234227881, + "inverseInertia": 0.0007156175688397215, + "inverseMass": 0.6775462233145303, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4759140640000001, + "motion": 0, + "parent": null, + "position": { + "#": 2346 + }, + "positionImpulse": { + "#": 2347 + }, + "positionPrev": { + "#": 2348 + }, + "render": { + "#": 2349 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2351 + }, + "vertices": { + "#": 2352 + } + }, + [ + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + } + ], + { + "x": -0.5000287318776591, + "y": -0.8660088147916394 + }, + { + "x": 0.5000287318776591, + "y": -0.8660088147916394 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2341 + }, + "min": { + "#": 2342 + } + }, + { + "x": 474.20816849988586, + "y": 450.3459999999999 + }, + { + "x": 432.9261684998858, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 453.56716849988584, + "y": 426.5109999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 453.56716849988584, + "y": 426.5109999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2350 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 474.20816849988586, + "y": 438.4279999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.56716849988584, + "y": 450.3459999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 432.9261684998858, + "y": 438.4279999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 432.9261684998858, + "y": 414.59399999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 453.56716849988584, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 474.20816849988586, + "y": 414.59399999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2731.525696, + "axes": { + "#": 2360 + }, + "bounds": { + "#": 2363 + }, + "collisionFilter": { + "#": 2366 + }, + "constraintImpulse": { + "#": 2367 + }, + "density": 0.001, + "force": { + "#": 2368 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 4974.15508527219, + "inverseInertia": 0.00020103916803094191, + "inverseMass": 0.3660957689193197, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.7315256960000003, + "motion": 0, + "parent": null, + "position": { + "#": 2369 + }, + "positionImpulse": { + "#": 2370 + }, + "positionPrev": { + "#": 2371 + }, + "render": { + "#": 2372 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2374 + }, + "vertices": { + "#": 2375 + } + }, + [ + { + "#": 2361 + }, + { + "#": 2362 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2364 + }, + "min": { + "#": 2365 + } + }, + { + "x": 526.4721684998858, + "y": 454.93999999999994 + }, + { + "x": 474.20816849988586, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500.34016849988586, + "y": 428.80799999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500.34016849988586, + "y": 428.80799999999994 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2373 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 526.4721684998858, + "y": 454.93999999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.20816849988586, + "y": 454.93999999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 474.20816849988586, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.4721684998858, + "y": 402.67599999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1453.96239, + "axes": { + "#": 2381 + }, + "bounds": { + "#": 2385 + }, + "collisionFilter": { + "#": 2388 + }, + "constraintImpulse": { + "#": 2389 + }, + "density": 0.001, + "force": { + "#": 2390 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 1356.1358869695257, + "inverseInertia": 0.0007373892318671982, + "inverseMass": 0.6877756996176496, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.45396239, + "motion": 0, + "parent": null, + "position": { + "#": 2391 + }, + "positionImpulse": { + "#": 2392 + }, + "positionPrev": { + "#": 2393 + }, + "render": { + "#": 2394 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2396 + }, + "vertices": { + "#": 2397 + } + }, + [ + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + } + ], + { + "x": -0.5000261561969946, + "y": -0.8660103019703972 + }, + { + "x": 0.5000261561969946, + "y": -0.8660103019703972 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2386 + }, + "min": { + "#": 2387 + } + }, + { + "x": 567.4461684998857, + "y": 449.9899999999999 + }, + { + "x": 526.4721684998858, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 546.9591684998858, + "y": 426.3329999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 546.9591684998858, + "y": 426.3329999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2395 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 567.4461684998857, + "y": 438.1609999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 546.9591684998858, + "y": 449.9899999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 526.4721684998858, + "y": 438.1609999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.4721684998858, + "y": 414.50499999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 546.9591684998858, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 567.4461684998857, + "y": 414.50499999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4826.0809, + "axes": { + "#": 2405 + }, + "bounds": { + "#": 2408 + }, + "collisionFilter": { + "#": 2411 + }, + "constraintImpulse": { + "#": 2412 + }, + "density": 0.001, + "force": { + "#": 2413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 15527.371235563205, + "inverseInertia": 0.00006440240172204064, + "inverseMass": 0.20720746724324493, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.8260809, + "motion": 0, + "parent": null, + "position": { + "#": 2414 + }, + "positionImpulse": { + "#": 2415 + }, + "positionPrev": { + "#": 2416 + }, + "render": { + "#": 2417 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2419 + }, + "vertices": { + "#": 2420 + } + }, + [ + { + "#": 2406 + }, + { + "#": 2407 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2409 + }, + "min": { + "#": 2410 + } + }, + { + "x": 636.9161684998858, + "y": 472.14599999999996 + }, + { + "x": 567.4461684998857, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 602.1811684998858, + "y": 437.41099999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 602.1811684998858, + "y": 437.41099999999994 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2418 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 636.9161684998858, + "y": 472.14599999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 567.4461684998857, + "y": 472.14599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.4461684998857, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 636.9161684998858, + "y": 402.67599999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1288.7426280768939, + "axes": { + "#": 2426 + }, + "bounds": { + "#": 2429 + }, + "collisionFilter": { + "#": 2432 + }, + "constraintImpulse": { + "#": 2433 + }, + "density": 0.001, + "force": { + "#": 2434 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 1283.525413611018, + "inverseInertia": 0.0007791041684064836, + "inverseMass": 0.7759501224012698, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2887426280768939, + "motion": 0, + "parent": null, + "position": { + "#": 2435 + }, + "positionImpulse": { + "#": 2436 + }, + "positionPrev": { + "#": 2437 + }, + "render": { + "#": 2438 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2440 + }, + "vertices": { + "#": 2441 + } + }, + [ + { + "#": 2427 + }, + { + "#": 2428 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2430 + }, + "min": { + "#": 2431 + } + }, + { + "x": 684.3455666480339, + "y": 429.8478106995884 + }, + { + "x": 636.9161684998858, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 660.6308675739599, + "y": 416.2619053497942 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 660.6308675739599, + "y": 416.2619053497942 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2439 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 636.9161684998858, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 684.3455666480339, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 684.3455666480339, + "y": 429.8478106995884 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 636.9161684998858, + "y": 429.8478106995884 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1779.883796, + "axes": { + "#": 2447 + }, + "bounds": { + "#": 2453 + }, + "collisionFilter": { + "#": 2456 + }, + "constraintImpulse": { + "#": 2457 + }, + "density": 0.001, + "force": { + "#": 2458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 2051.033881833643, + "inverseInertia": 0.0004875589861567722, + "inverseMass": 0.5618344311282218, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.779883796, + "motion": 0, + "parent": null, + "position": { + "#": 2459 + }, + "positionImpulse": { + "#": 2460 + }, + "positionPrev": { + "#": 2461 + }, + "render": { + "#": 2462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2464 + }, + "vertices": { + "#": 2465 + } + }, + [ + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + } + ], + { + "x": 0.30900874044209636, + "y": 0.9510591981209104 + }, + { + "x": -0.8090075783738877, + "y": 0.5877982120878029 + }, + { + "x": -0.8090075783738877, + "y": -0.5877982120878029 + }, + { + "x": 0.30900874044209636, + "y": -0.9510591981209104 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2454 + }, + "min": { + "#": 2455 + } + }, + { + "x": 731.228775125426, + "y": 454.71799999999996 + }, + { + "x": 681.732775125426, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 709.0935666480339, + "y": 428.69699999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 709.0935666480339, + "y": 428.69699999999995 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2463 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 731.228775125426, + "y": 444.77899999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700.6387751254259, + "y": 454.71799999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 681.732775125426, + "y": 428.69699999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700.6387751254259, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 731.228775125426, + "y": 412.61499999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4428.370116000001, + "axes": { + "#": 2472 + }, + "bounds": { + "#": 2475 + }, + "collisionFilter": { + "#": 2478 + }, + "constraintImpulse": { + "#": 2479 + }, + "density": 0.001, + "force": { + "#": 2480 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 13073.641256187908, + "inverseInertia": 0.0000764897843228403, + "inverseMass": 0.22581671671636758, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.428370116000001, + "motion": 0, + "parent": null, + "position": { + "#": 2481 + }, + "positionImpulse": { + "#": 2482 + }, + "positionPrev": { + "#": 2483 + }, + "render": { + "#": 2484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2486 + }, + "vertices": { + "#": 2487 + } + }, + [ + { + "#": 2473 + }, + { + "#": 2474 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2476 + }, + "min": { + "#": 2477 + } + }, + { + "x": 797.774775125426, + "y": 469.222 + }, + { + "x": 731.228775125426, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 764.501775125426, + "y": 435.94899999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 764.501775125426, + "y": 435.94899999999996 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2485 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 797.774775125426, + "y": 469.222 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 731.228775125426, + "y": 469.222 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 731.228775125426, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 797.774775125426, + "y": 402.67599999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4006.5774799999995, + "axes": { + "#": 2493 + }, + "bounds": { + "#": 2507 + }, + "circleRadius": 35.88631687242798, + "collisionFilter": { + "#": 2510 + }, + "constraintImpulse": { + "#": 2511 + }, + "density": 0.001, + "force": { + "#": 2512 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 10219.637720405184, + "inverseInertia": 0.00009785082674734506, + "inverseMass": 0.2495895823784244, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.00657748, + "motion": 0, + "parent": null, + "position": { + "#": 2513 + }, + "positionImpulse": { + "#": 2514 + }, + "positionPrev": { + "#": 2515 + }, + "render": { + "#": 2516 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2518 + }, + "vertices": { + "#": 2519 + } + }, + [ + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + } + ], + { + "x": -0.9709194534434736, + "y": -0.2394063802930625 + }, + { + "x": -0.8854942138286769, + "y": -0.4646504032882501 + }, + { + "x": -0.7484734206820648, + "y": -0.6631647898769117 + }, + { + "x": -0.5680975359623629, + "y": -0.8229612321570753 + }, + { + "x": -0.35462984236614764, + "y": -0.9350067779986203 + }, + { + "x": -0.12044873884362048, + "y": -0.9927195481660375 + }, + { + "x": 0.12044873884362048, + "y": -0.9927195481660375 + }, + { + "x": 0.35462984236614764, + "y": -0.9350067779986203 + }, + { + "x": 0.5680975359623629, + "y": -0.8229612321570753 + }, + { + "x": 0.7484734206820648, + "y": -0.6631647898769117 + }, + { + "x": 0.8854942138286769, + "y": -0.4646504032882501 + }, + { + "x": 0.9709194534434736, + "y": -0.2394063802930625 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2508 + }, + "min": { + "#": 2509 + } + }, + { + "x": 869.024775125426, + "y": 474.448 + }, + { + "x": 797.774775125426, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 833.399775125426, + "y": 438.56199999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 833.399775125426, + "y": 438.56199999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2517 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 869.024775125426, + "y": 442.888 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 866.953775125426, + "y": 451.287 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 862.933775125426, + "y": 458.948 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 857.196775125426, + "y": 465.42299999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 850.076775125426, + "y": 470.33799999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 841.987775125426, + "y": 473.40599999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 833.399775125426, + "y": 474.448 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 824.811775125426, + "y": 473.40599999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 816.722775125426, + "y": 470.33799999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 809.602775125426, + "y": 465.42299999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 803.865775125426, + "y": 458.948 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 799.845775125426, + "y": 451.287 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 797.774775125426, + "y": 442.888 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 797.774775125426, + "y": 434.23599999999993 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 799.845775125426, + "y": 425.83699999999993 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 803.865775125426, + "y": 418.17599999999993 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 809.602775125426, + "y": 411.70099999999996 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 816.722775125426, + "y": 406.78599999999994 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 824.811775125426, + "y": 403.71799999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 833.399775125426, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 841.987775125426, + "y": 403.71799999999996 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 850.076775125426, + "y": 406.78599999999994 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 857.196775125426, + "y": 411.70099999999996 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 862.933775125426, + "y": 418.17599999999993 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 866.953775125426, + "y": 425.83699999999993 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 869.024775125426, + "y": 434.23599999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2513.037024864943, + "axes": { + "#": 2547 + }, + "bounds": { + "#": 2550 + }, + "collisionFilter": { + "#": 2553 + }, + "constraintImpulse": { + "#": 2554 + }, + "density": 0.001, + "force": { + "#": 2555 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 7118.367975988358, + "inverseInertia": 0.000140481638961795, + "inverseMass": 0.3979248972878713, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5130370248649427, + "motion": 0, + "parent": null, + "position": { + "#": 2556 + }, + "positionImpulse": { + "#": 2557 + }, + "positionPrev": { + "#": 2558 + }, + "render": { + "#": 2559 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2561 + }, + "vertices": { + "#": 2562 + } + }, + [ + { + "#": 2548 + }, + { + "#": 2549 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2551 + }, + "min": { + "#": 2552 + } + }, + { + "x": 956.6310851391434, + "y": 431.3615709876542 + }, + { + "x": 869.024775125426, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 912.8279301322847, + "y": 417.01878549382707 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 912.8279301322847, + "y": 417.01878549382707 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2560 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 869.024775125426, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 956.6310851391434, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 956.6310851391434, + "y": 431.3615709876542 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 869.024775125426, + "y": 431.3615709876542 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1629.3666616192165, + "axes": { + "#": 2568 + }, + "bounds": { + "#": 2571 + }, + "collisionFilter": { + "#": 2574 + }, + "constraintImpulse": { + "#": 2575 + }, + "density": 0.001, + "force": { + "#": 2576 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 1918.0622160315609, + "inverseInertia": 0.0005213595219392745, + "inverseMass": 0.6137354001132129, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6293666616192166, + "motion": 0, + "parent": null, + "position": { + "#": 2577 + }, + "positionImpulse": { + "#": 2578 + }, + "positionPrev": { + "#": 2579 + }, + "render": { + "#": 2580 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2582 + }, + "vertices": { + "#": 2583 + } + }, + [ + { + "#": 2569 + }, + { + "#": 2570 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2572 + }, + "min": { + "#": 2573 + } + }, + { + "x": 989.5741149745343, + "y": 452.1361337448559 + }, + { + "x": 956.6310851391434, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 973.1026000568388, + "y": 427.4060668724279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 973.1026000568388, + "y": 427.4060668724279 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2581 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 956.6310851391434, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 989.5741149745343, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 989.5741149745343, + "y": 452.1361337448559 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 956.6310851391434, + "y": 452.1361337448559 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1316.36654, + "axes": { + "#": 2589 + }, + "bounds": { + "#": 2597 + }, + "collisionFilter": { + "#": 2600 + }, + "constraintImpulse": { + "#": 2601 + }, + "density": 0.001, + "force": { + "#": 2602 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 1107.5429879268129, + "inverseInertia": 0.0009028994909460621, + "inverseMass": 0.759666832613354, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.31636654, + "motion": 0, + "parent": null, + "position": { + "#": 2603 + }, + "positionImpulse": { + "#": 2604 + }, + "positionPrev": { + "#": 2605 + }, + "render": { + "#": 2606 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2608 + }, + "vertices": { + "#": 2609 + } + }, + [ + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + } + ], + { + "x": 0.6235089422456015, + "y": 0.7818162181355482 + }, + { + "x": -0.22250665600611816, + "y": 0.9749311709207862 + }, + { + "x": -0.9009697215706803, + "y": 0.43388196645268706 + }, + { + "x": -0.9009697215706803, + "y": -0.43388196645268706 + }, + { + "x": -0.22250665600611816, + "y": -0.9749311709207862 + }, + { + "x": 0.6235089422456015, + "y": -0.7818162181355482 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2598 + }, + "min": { + "#": 2599 + } + }, + { + "x": 1030.182141764567, + "y": 445.4419999999999 + }, + { + "x": 988.488141764567, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1010.4211149745342, + "y": 424.0589999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1010.4211149745342, + "y": 424.0589999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2607 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1030.182141764567, + "y": 433.57499999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1015.302141764567, + "y": 445.4419999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 996.7461417645669, + "y": 441.20699999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 988.488141764567, + "y": 424.0589999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 996.7461417645669, + "y": 406.9109999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1015.302141764567, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1030.182141764567, + "y": 414.5429999999999 + }, + [], + [], + [ + { + "#": 2620 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2621 + }, + "pointB": "", + "render": { + "#": 2622 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 2624 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/broadphase/broadphase-10.json b/tests/browser/refs/broadphase/broadphase-10.json new file mode 100644 index 00000000..f2407f44 --- /dev/null +++ b/tests/browser/refs/broadphase/broadphase-10.json @@ -0,0 +1,23964 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 2723 + }, + "events": { + "#": 2727 + }, + "gravity": { + "#": 2729 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 2721 + }, + "constraints": { + "#": 2722 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 209 + }, + { + "#": 235 + }, + { + "#": 290 + }, + { + "#": 312 + }, + { + "#": 334 + }, + { + "#": 356 + }, + { + "#": 378 + }, + { + "#": 400 + }, + { + "#": 430 + }, + { + "#": 452 + }, + { + "#": 478 + }, + { + "#": 500 + }, + { + "#": 522 + }, + { + "#": 577 + }, + { + "#": 599 + }, + { + "#": 621 + }, + { + "#": 676 + }, + { + "#": 698 + }, + { + "#": 720 + }, + { + "#": 742 + }, + { + "#": 767 + }, + { + "#": 792 + }, + { + "#": 814 + }, + { + "#": 839 + }, + { + "#": 861 + }, + { + "#": 886 + }, + { + "#": 908 + }, + { + "#": 930 + }, + { + "#": 952 + }, + { + "#": 980 + }, + { + "#": 1002 + }, + { + "#": 1024 + }, + { + "#": 1046 + }, + { + "#": 1068 + }, + { + "#": 1090 + }, + { + "#": 1145 + }, + { + "#": 1167 + }, + { + "#": 1197 + }, + { + "#": 1219 + }, + { + "#": 1249 + }, + { + "#": 1271 + }, + { + "#": 1293 + }, + { + "#": 1315 + }, + { + "#": 1337 + }, + { + "#": 1367 + }, + { + "#": 1389 + }, + { + "#": 1411 + }, + { + "#": 1433 + }, + { + "#": 1455 + }, + { + "#": 1510 + }, + { + "#": 1532 + }, + { + "#": 1587 + }, + { + "#": 1609 + }, + { + "#": 1639 + }, + { + "#": 1661 + }, + { + "#": 1683 + }, + { + "#": 1705 + }, + { + "#": 1727 + }, + { + "#": 1753 + }, + { + "#": 1775 + }, + { + "#": 1797 + }, + { + "#": 1819 + }, + { + "#": 1845 + }, + { + "#": 1867 + }, + { + "#": 1889 + }, + { + "#": 1911 + }, + { + "#": 1966 + }, + { + "#": 2021 + }, + { + "#": 2047 + }, + { + "#": 2069 + }, + { + "#": 2091 + }, + { + "#": 2121 + }, + { + "#": 2146 + }, + { + "#": 2168 + }, + { + "#": 2198 + }, + { + "#": 2220 + }, + { + "#": 2242 + }, + { + "#": 2264 + }, + { + "#": 2290 + }, + { + "#": 2312 + }, + { + "#": 2340 + }, + { + "#": 2362 + }, + { + "#": 2384 + }, + { + "#": 2406 + }, + { + "#": 2428 + }, + { + "#": 2453 + }, + { + "#": 2475 + }, + { + "#": 2500 + }, + { + "#": 2522 + }, + { + "#": 2544 + }, + { + "#": 2570 + }, + { + "#": 2592 + }, + { + "#": 2647 + }, + { + "#": 2669 + }, + { + "#": 2691 + } + ], + { + "angle": 0.07364913609584253, + "anglePrev": 0.05829756084176486, + "angularSpeed": 0.01335170471330019, + "angularVelocity": 0.01596382300515066, + "area": 1534.906434764454, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2459668542521969, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": -0.0735825729353187, + "y": 0.9972891280667899 + }, + { + "x": -0.9972891280667899, + "y": -0.0735825729353187 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 59.80429832792328, + "y": 73.86388178930301 + }, + { + "x": 20.13203272812549, + "y": 27.91804343014621 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.83554364595931, + "y": 50.2822592444708 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.507821173246306, + "y": 49.314279616050094 + }, + { + "endCol": 1, + "endRow": 1, + "id": "0,1,0,1", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.32048463612286326, + "y": 1.00096930364451 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 23.234575297975937, + "y": 27.91804343014621 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 59.53905456379311, + "y": 30.59668186936607 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.43651199394265, + "y": 72.64647505879542 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.13203272812549, + "y": 69.96783661957551 + }, + { + "angle": 0.06831844616009528, + "anglePrev": 0.05275759956688849, + "angularSpeed": 0.013395122568092381, + "angularVelocity": 0.01549117367761256, + "area": 2220.52878634164, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9443430576298315, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": -0.06826531352709232, + "y": 0.9976672025124649 + }, + { + "x": -0.9976672025124649, + "y": -0.06826531352709232 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 104.63468621849391, + "y": 86.06172533702151 + }, + { + "x": 55.90783804393341, + "y": 32.1446249023016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80.18544319836381, + "y": 58.134798853841886 + }, + { + "x": 0.17744454648344302, + "y": 0.01608669679595994 + }, + { + "x": 79.98874342077374, + "y": 56.31678880327157 + }, + { + "endCol": 2, + "endRow": 1, + "id": "1,2,0,1", + "startCol": 1, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.19036692557698132, + "y": 1.819703069524337 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 59.25291741754049, + "y": 32.1446249023016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 104.46304835279417, + "y": 35.238125174861096 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 101.1179689791871, + "y": 84.12497280538219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 55.90783804393341, + "y": 81.03147253282268 + }, + { + "angle": 0.04398114725630271, + "anglePrev": 0.033423070164622676, + "angularSpeed": 0.009684664535166193, + "angularVelocity": 0.010339851102857338, + "area": 1140.197701571206, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.469479854246641, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": -0.04396696953590402, + "y": 0.9990329852361377 + }, + { + "x": -0.9990329852361377, + "y": -0.04396696953590402 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 143.8483923517086, + "y": 68.55921641978941 + }, + { + "x": 103.04047847407405, + "y": 35.34666491626606 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.2710059991287, + "y": 50.7304412095107 + }, + { + "x": 0.27564233197141735, + "y": 0.03805072067180015 + }, + { + "x": 122.87275303000077, + "y": 48.338657815573505 + }, + { + "endCol": 2, + "endRow": 1, + "id": "2,2,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.39168817412910073, + "y": 2.387645931038584 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 104.31865301102715, + "y": 35.34666491626606 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 143.50153352418337, + "y": 37.07108496976781 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 142.22335898723026, + "y": 66.11421750275532 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 103.04047847407405, + "y": 64.38979744925358 + }, + { + "angle": 0.0345247083040391, + "anglePrev": 0.01992154072366725, + "angularSpeed": 0.009919829822791694, + "angularVelocity": 0.014757319828498008, + "area": 752.4076041785743, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.780565400368289, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.03451785006022484, + "y": 0.9994040814541533 + }, + { + "x": -0.9994040814541533, + "y": -0.03451785006022484 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 168.60706666940163, + "y": 70.73727454861023 + }, + { + "x": 142.35757787651622, + "y": 36.89253241315075 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.3108143394595, + "y": 52.43524011064191 + }, + { + "x": 0.33248793913960656, + "y": 0.007551956377661866 + }, + { + "x": 154.99034402780657, + "y": 49.70442713819474 + }, + { + "endCol": 3, + "endRow": 1, + "id": "2,3,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3304185951729153, + "y": 2.7370828794246265 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 143.40156084085703, + "y": 36.89253241315075 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 168.2640508024028, + "y": 37.751243835829534 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.220067838062, + "y": 67.97794780813307 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 142.35757787651622, + "y": 67.11923638545429 + }, + { + "angle": 0.01216894923056649, + "anglePrev": 0.00780100949116189, + "angularSpeed": 0.003266369421266494, + "angularVelocity": 0.004763526213764591, + "area": 2027.2541820000001, + "axes": { + "#": 185 + }, + "bounds": { + "#": 189 + }, + "collisionFilter": { + "#": 192 + }, + "constraintImpulse": { + "#": 193 + }, + "density": 0.001, + "force": { + "#": 194 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 195 + }, + "positionImpulse": { + "#": 196 + }, + "positionPrev": { + "#": 197 + }, + "region": { + "#": 198 + }, + "render": { + "#": 199 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.984668107780229, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 201 + }, + "vertices": { + "#": 202 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": -0.48943326229553874, + "y": -0.8720407569367081 + }, + { + "x": 0.5105098598540337, + "y": -0.8598718991755782 + }, + { + "x": 0.9999259592510021, + "y": 0.012168648896378823 + }, + { + "max": { + "#": 190 + }, + "min": { + "#": 191 + } + }, + { + "x": 216.5667720680753, + "y": 93.5794470447369 + }, + { + "x": 167.49365052789716, + "y": 34.752076930928226 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 191.85281892727392, + "y": 62.68400867664573 + }, + { + "x": 0.33855689122836624, + "y": -0.018568082170124883 + }, + { + "x": 191.52044727411388, + "y": 59.78525599479563 + }, + { + "endCol": 4, + "endRow": 1, + "id": "3,4,0,1", + "startCol": 3, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 200 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.34067235793139616, + "y": 2.8822624457574975 + }, + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.87206828837918, + "y": 76.94434633495676 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 191.51289988900243, + "y": 90.61594042236321 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.49365052789716, + "y": 76.35560276405221 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 167.83356956616865, + "y": 48.42367101833469 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 192.1927379655454, + "y": 34.752076930928226 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 216.21198732665067, + "y": 49.01241458923928 + }, + { + "angle": -0.0032685690349491675, + "anglePrev": -0.002543099402879491, + "angularSpeed": 0.0007643456934586719, + "angularVelocity": -0.0006287856850964242, + "area": 4842.27229, + "axes": { + "#": 210 + }, + "bounds": { + "#": 216 + }, + "collisionFilter": { + "#": 219 + }, + "constraintImpulse": { + "#": 220 + }, + "density": 0.001, + "force": { + "#": 221 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 222 + }, + "positionImpulse": { + "#": 223 + }, + "positionPrev": { + "#": 224 + }, + "region": { + "#": 225 + }, + "render": { + "#": 226 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0093566113046606, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 228 + }, + "vertices": { + "#": 229 + } + }, + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "x": 0.31212694192319446, + "y": 0.9500404055226677 + }, + { + "x": -0.8070933080199948, + "y": 0.5904239088564608 + }, + { + "x": -0.8109357179703841, + "y": -0.5851352504505754 + }, + { + "x": 0.30590977163417477, + "y": -0.9520605083810207 + }, + { + "x": 0.9999946582329875, + "y": -0.003268563214969012 + }, + { + "max": { + "#": 217 + }, + "min": { + "#": 218 + } + }, + { + "x": 283.60251928808884, + "y": 142.26173124810254 + }, + { + "x": 201.71286573545044, + "y": 53.4173812871932 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 246.8410105553024, + "y": 96.2915706432302 + }, + { + "x": -0.4027636645687131, + "y": 1.1221108564220892 + }, + { + "x": 246.60407233360814, + "y": 93.24599786910545 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 227 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.24546431241995492, + "y": 3.041111891383977 + }, + [ + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 283.4371315521155, + "y": 122.69809496583 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 233.03598589631613, + "y": 139.2569227499129 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 201.71286573545044, + "y": 96.43907562528543 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 232.75541242994316, + "y": 53.4173812871932 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 283.26372773643504, + "y": 69.64637835725354 + }, + { + "angle": -0.0019634947038453783, + "anglePrev": -0.0015379301578684191, + "angularSpeed": 0.00042556454597695914, + "angularVelocity": -0.00042556454597695914, + "area": 3079.0178339999993, + "axes": { + "#": 236 + }, + "bounds": { + "#": 250 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "density": 0.001, + "force": { + "#": 255 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 256 + }, + "positionImpulse": { + "#": 257 + }, + "positionPrev": { + "#": 258 + }, + "region": { + "#": 259 + }, + "render": { + "#": 260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9408531617628872, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 262 + }, + "vertices": { + "#": 263 + } + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "x": -0.9714117547297956, + "y": -0.23740093254403946 + }, + { + "x": -0.8863291676720889, + "y": -0.46305572724425126 + }, + { + "x": -0.7498363607222658, + "y": -0.6616233310115265 + }, + { + "x": -0.5696928413656469, + "y": -0.8218576923633042 + }, + { + "x": -0.3564099695474851, + "y": -0.934329670730391 + }, + { + "x": -0.12246144842334743, + "y": -0.9924732710003106 + }, + { + "x": 0.11856308216507921, + "y": -0.9929465219977947 + }, + { + "x": 0.3527381281182414, + "y": -0.935722081053792 + }, + { + "x": 0.5664610305272312, + "y": -0.8240885273403747 + }, + { + "x": 0.7472323978893922, + "y": -0.6645628213679041 + }, + { + "x": 0.8845039232685323, + "y": -0.46653275310804776 + }, + { + "x": 0.9704719959983475, + "y": -0.24121381590402977 + }, + { + "x": 0.9999980723448935, + "y": -0.0019634934421983515 + }, + { + "max": { + "#": 251 + }, + "min": { + "#": 252 + } + }, + { + "x": 349.8557461412478, + "y": 112.60808731176402 + }, + { + "x": 287.3338947838024, + "y": 46.74973231926627 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 318.57128015026626, + "y": 78.20867167716426 + }, + { + "x": -0.02134051988462035, + "y": 0.49624879495625224 + }, + { + "x": 318.5241995257486, + "y": 75.26819540046252 + }, + { + "endCol": 7, + "endRow": 2, + "id": "5,7,0,2", + "startCol": 5, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 261 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04708062451766978, + "y": 2.9404762767017516 + }, + [ + { + "#": 264 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 349.8086655167301, + "y": 81.93934446729628 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 348.0081281811325, + "y": 89.30689401264162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 344.49631983458113, + "y": 96.02880238282131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 339.47847628102994, + "y": 101.7156658480441 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 333.24594704127446, + "y": 106.03591170627867 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 326.16024054414294, + "y": 108.73882965481273 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 318.63304969046436, + "y": 109.66761103506227 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 311.1022695707735, + "y": 108.76839593906534 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 304.0060034059098, + "y": 106.09332425452854 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 297.7565567066563, + "y": 101.7975867214395 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 292.7164196485625, + "y": 96.13047207325836 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 289.1782415850824, + "y": 89.42240633184619 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 287.348785918068, + "y": 82.06198426769598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 287.3338947838024, + "y": 74.47799888703227 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 289.1344321194, + "y": 67.1104493416869 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 292.6462404659514, + "y": 60.3885409715072 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 297.6640840195026, + "y": 54.70167750628442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 303.89661325925806, + "y": 50.381431648049855 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 310.9823197563896, + "y": 47.678513699515804 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.50951061006816, + "y": 46.74973231926627 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 326.040290729759, + "y": 47.648947415263194 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 333.13655689462274, + "y": 50.324019099799976 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 339.38600359387624, + "y": 54.61975663288902 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 344.42614065197, + "y": 60.28687128107016 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 347.96431871545013, + "y": 66.99493702248238 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 349.7937743824645, + "y": 74.35535908663257 + }, + { + "angle": 0.0007145804818394179, + "anglePrev": 0.0000587389008532876, + "angularSpeed": 0.0006558415809861303, + "angularVelocity": 0.0006558415809861303, + "area": 1329.4167625219097, + "axes": { + "#": 291 + }, + "bounds": { + "#": 294 + }, + "collisionFilter": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "density": 0.001, + "force": { + "#": 299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 300 + }, + "positionImpulse": { + "#": 301 + }, + "positionPrev": { + "#": 302 + }, + "region": { + "#": 303 + }, + "render": { + "#": 304 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9169289971845607, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 306 + }, + "vertices": { + "#": 307 + } + }, + [ + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "x": -0.0007145804210256114, + "y": 0.9999997446873783 + }, + { + "x": -0.9999997446873783, + "y": -0.0007145804210256114 + }, + { + "max": { + "#": 295 + }, + "min": { + "#": 296 + } + }, + { + "x": 396.37200095425914, + "y": 63.35229345437637 + }, + { + "x": 347.57488860613824, + "y": 36.06281523011218 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 371.9734447801987, + "y": 49.70755434224427 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 371.9444107885465, + "y": 46.79076984524336 + }, + { + "endCol": 8, + "endRow": 1, + "id": "7,8,0,1", + "startCol": 7, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 305 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.029033991652196393, + "y": 2.9167844970009127 + }, + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 347.5943642308539, + "y": 36.06281523011218 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 396.37200095425914, + "y": 36.09767078319769 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 396.3525253295435, + "y": 63.35229345437637 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 347.57488860613824, + "y": 63.31743790129085 + }, + { + "angle": 0.0006767883141119877, + "anglePrev": 0.00047257628937727404, + "angularSpeed": 0.00025327741605148986, + "angularVelocity": 0.00020899833480926593, + "area": 2858.632357296012, + "axes": { + "#": 313 + }, + "bounds": { + "#": 316 + }, + "collisionFilter": { + "#": 319 + }, + "constraintImpulse": { + "#": 320 + }, + "density": 0.001, + "force": { + "#": 321 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 322 + }, + "positionImpulse": { + "#": 323 + }, + "positionPrev": { + "#": 324 + }, + "region": { + "#": 325 + }, + "render": { + "#": 326 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8913438161957012, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 328 + }, + "vertices": { + "#": 329 + } + }, + [ + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "x": -0.0006767882624456958, + "y": 0.9999997709787977 + }, + { + "x": -0.9999997709787977, + "y": -0.0006767882624456958 + }, + { + "max": { + "#": 317 + }, + "min": { + "#": 318 + } + }, + { + "x": 502.55516352961786, + "y": 66.87061601844415 + }, + { + "x": 393.6420607362015, + "y": 37.64487720583174 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 448.0782325132011, + "y": 50.81221835680573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 448.0524175639736, + "y": 47.924732193105136 + }, + { + "endCol": 10, + "endRow": 1, + "id": "8,10,0,1", + "startCol": 8, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 327 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.026182368863999272, + "y": 2.8878051200135815 + }, + [ + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 393.6598338841342, + "y": 37.64487720583174 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 502.51440429020073, + "y": 37.718548718268465 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 502.49663114226803, + "y": 63.97955950777971 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 393.6420607362015, + "y": 63.90588799534298 + }, + { + "angle": 0.0010550025248578356, + "anglePrev": 0.0007582147732453911, + "angularSpeed": 0.0004353270597019426, + "angularVelocity": 0.0001164299462045466, + "area": 926.8394636035856, + "axes": { + "#": 335 + }, + "bounds": { + "#": 338 + }, + "collisionFilter": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "density": 0.001, + "force": { + "#": 343 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 344 + }, + "positionImpulse": { + "#": 345 + }, + "positionPrev": { + "#": 346 + }, + "region": { + "#": 347 + }, + "render": { + "#": 348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.893563063392209, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 350 + }, + "vertices": { + "#": 351 + } + }, + [ + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "x": -0.0010550023291495455, + "y": 0.9999994434848881 + }, + { + "x": -0.9999994434848881, + "y": -0.0010550023291495455 + }, + { + "max": { + "#": 339 + }, + "min": { + "#": 340 + } + }, + { + "x": 541.1245028970267, + "y": 64.53211322212138 + }, + { + "x": 502.33123380792, + "y": 37.68283579657265 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 521.7217316621482, + "y": 49.660705992448484 + }, + { + "x": 0.6303787612601477, + "y": 0.0006151014714064497 + }, + { + "x": 521.6959613217971, + "y": 46.75646257558532 + }, + { + "endCol": 11, + "endRow": 1, + "id": "10,11,0,1", + "startCol": 10, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 349 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.025809015711388383, + "y": 2.900302548649826 + }, + [ + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 502.35646404752043, + "y": 37.68283579657265 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 541.1122295163763, + "y": 37.72372324216475 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 541.0869992767758, + "y": 61.638576188324315 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 502.33123380792, + "y": 61.59768874273222 + }, + { + "angle": 0.0003273774391914403, + "anglePrev": -0.0005078991265219431, + "angularSpeed": 0.00045562698953100937, + "angularVelocity": 0.0008173397162999034, + "area": 1290.4501361223834, + "axes": { + "#": 357 + }, + "bounds": { + "#": 360 + }, + "collisionFilter": { + "#": 363 + }, + "constraintImpulse": { + "#": 364 + }, + "density": 0.001, + "force": { + "#": 365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 366 + }, + "positionImpulse": { + "#": 367 + }, + "positionPrev": { + "#": 368 + }, + "region": { + "#": 369 + }, + "render": { + "#": 370 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9100072725192723, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 372 + }, + "vertices": { + "#": 373 + } + }, + [ + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "x": -0.0003273774333436069, + "y": 0.9999999464120066 + }, + { + "x": -0.9999999464120066, + "y": -0.0003273774333436069 + }, + { + "max": { + "#": 361 + }, + "min": { + "#": 362 + } + }, + { + "x": 576.6527813074362, + "y": 76.71361785920176 + }, + { + "x": 540.8613495052869, + "y": 37.715913912936095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 558.7524132465255, + "y": 55.75976968712626 + }, + { + "x": 0.5393889866690957, + "y": 0.00017658379149230858 + }, + { + "x": 558.7311406255197, + "y": 52.83380114506696 + }, + { + "endCol": 11, + "endRow": 1, + "id": "11,11,0,1", + "startCol": 11, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 371 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.021244843217914422, + "y": 2.928798990194217 + }, + [ + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540.8731599745826, + "y": 37.715913912936095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.6434769877642, + "y": 37.727624308137294 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 576.6316665184685, + "y": 73.80362546131641 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540.8613495052869, + "y": 73.79191506611522 + }, + { + "angle": 0.0013688393972764099, + "anglePrev": 0.0005503133837190353, + "angularSpeed": 0.00046568503971666905, + "angularVelocity": 0.00029397095598038443, + "area": 1148.2925932011974, + "axes": { + "#": 379 + }, + "bounds": { + "#": 382 + }, + "collisionFilter": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "density": 0.001, + "force": { + "#": 387 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 388 + }, + "positionImpulse": { + "#": 389 + }, + "positionPrev": { + "#": 390 + }, + "region": { + "#": 391 + }, + "render": { + "#": 392 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9256811282899973, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 394 + }, + "vertices": { + "#": 395 + } + }, + [ + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "x": -0.0013688389698058617, + "y": 0.9999990631394985 + }, + { + "x": -0.9999990631394985, + "y": -0.0013688389698058617 + }, + { + "max": { + "#": 383 + }, + "min": { + "#": 384 + } + }, + { + "x": 607.3962891707371, + "y": 78.35064628686196 + }, + { + "x": 576.782233490379, + "y": 37.80191010107492 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 592.0853968106242, + "y": 56.61344273446052 + }, + { + "x": 0.7629628182050706, + "y": 0.0024678395690972844 + }, + { + "x": 592.0648084868019, + "y": 53.7054791546062 + }, + { + "endCol": 12, + "endRow": 1, + "id": "11,12,0,1", + "startCol": 11, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 393 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.019968305957490884, + "y": 2.9343610919814296 + }, + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 576.8336762051197, + "y": 37.80191010107492 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 607.3885601308693, + "y": 37.843734856094336 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 607.3371174161286, + "y": 75.42497536784613 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 576.782233490379, + "y": 75.38315061282673 + }, + { + "angle": -0.000004328883011492027, + "anglePrev": -0.0002327820437618434, + "angularSpeed": 0.00022845316075035136, + "angularVelocity": 0.00022845316075035136, + "area": 1926.7878890000002, + "axes": { + "#": 401 + }, + "bounds": { + "#": 409 + }, + "collisionFilter": { + "#": 412 + }, + "constraintImpulse": { + "#": 413 + }, + "density": 0.001, + "force": { + "#": 414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 415 + }, + "positionImpulse": { + "#": 416 + }, + "positionPrev": { + "#": 417 + }, + "region": { + "#": 418 + }, + "render": { + "#": 419 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8936310802296137, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 421 + }, + "vertices": { + "#": 422 + } + }, + [ + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 0.6234954846213946, + "y": 0.781826950582245 + }, + { + "x": -0.22251398935926853, + "y": 0.9749294972147593 + }, + { + "x": -0.9009796720285012, + "y": 0.43386130340399626 + }, + { + "x": -0.9009834282643849, + "y": -0.433853502916544 + }, + { + "x": -0.22252243006240469, + "y": -0.9749275707041636 + }, + { + "x": 0.6234887157232184, + "y": -0.7818323486309657 + }, + { + "x": 0.9999999999906303, + "y": -0.000004328883011478474 + }, + { + "max": { + "#": 410 + }, + "min": { + "#": 411 + } + }, + { + "x": 659.1904039960802, + "y": 92.29528820954174 + }, + { + "x": 608.7297913154755, + "y": 37.66171042896918 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 635.2825452899832, + "y": 63.53173598995358 + }, + { + "x": -0.8576524539329902, + "y": 0.00019964609466998793 + }, + { + "x": 635.3001081326305, + "y": 60.6381582088962 + }, + { + "endCol": 13, + "endRow": 1, + "id": "12,13,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 420 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.017562842647270146, + "y": 2.8935777810573793 + }, + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 659.1904039960802, + "y": 75.04463249573804 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 641.1874661460223, + "y": 89.40171042848436 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 618.7374439650363, + "y": 84.27780761195596 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 608.7473541581228, + "y": 63.53185085769169 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 618.7372643510223, + "y": 42.785807612344776 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 641.1872421696153, + "y": 37.66171042896918 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 659.19030431922, + "y": 52.0186324959538 + }, + { + "angle": -0.0028719175191254578, + "anglePrev": -0.0022164826993399025, + "angularSpeed": 0.0006554348197855554, + "angularVelocity": -0.0006554348197855554, + "area": 1097.755875, + "axes": { + "#": 431 + }, + "bounds": { + "#": 435 + }, + "collisionFilter": { + "#": 438 + }, + "constraintImpulse": { + "#": 439 + }, + "density": 0.001, + "force": { + "#": 440 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 927.6617490689248, + "inverseInertia": 0.0010779791243992539, + "inverseMass": 0.9109493492804126, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.097755875, + "motion": 0, + "parent": null, + "position": { + "#": 441 + }, + "positionImpulse": { + "#": 442 + }, + "positionPrev": { + "#": 443 + }, + "region": { + "#": 444 + }, + "render": { + "#": 445 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.893634298861694, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 447 + }, + "vertices": { + "#": 448 + } + }, + [ + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + } + ], + { + "x": -0.4975054391886022, + "y": 0.8674608567409575 + }, + { + "x": -0.502479757116966, + "y": -0.8645889738411399 + }, + { + "x": 0.9999958760477163, + "y": -0.002871913571240769 + }, + { + "max": { + "#": 436 + }, + "min": { + "#": 437 + } + }, + { + "x": 705.08071437229, + "y": 88.13228647692956 + }, + { + "x": 661.4035937730733, + "y": 37.78249411792707 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 690.4734738897805, + "y": 62.99913356118631 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 690.4909869110814, + "y": 60.10555225947148 + }, + { + "endCol": 14, + "endRow": 1, + "id": "13,14,0,1", + "startCol": 13, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 446 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.017513021300912895, + "y": 2.8935813017148355 + }, + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 705.08071437229, + "y": 88.13228647692956 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 661.4035937730733, + "y": 63.082620088702285 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 704.936113523978, + "y": 37.78249411792707 + }, + { + "angle": -0.023518946351585072, + "anglePrev": -0.01899267664064928, + "angularSpeed": 0.0045262697109357914, + "angularVelocity": -0.0045262697109357914, + "area": 986.5801250000001, + "axes": { + "#": 453 + }, + "bounds": { + "#": 459 + }, + "collisionFilter": { + "#": 462 + }, + "constraintImpulse": { + "#": 463 + }, + "density": 0.001, + "force": { + "#": 464 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 465 + }, + "positionImpulse": { + "#": 466 + }, + "positionPrev": { + "#": 467 + }, + "region": { + "#": 468 + }, + "render": { + "#": 469 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8473232286353034, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 471 + }, + "vertices": { + "#": 472 + } + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "x": 0.33129559172001455, + "y": 0.9435270165219884 + }, + { + "x": -0.7949767597828316, + "y": 0.6066398860981613 + }, + { + "x": -0.8226219941365243, + "y": -0.5685886516303749 + }, + { + "x": 0.2865639948283082, + "y": -0.9580611028885585 + }, + { + "x": 0.999723442329553, + "y": -0.02351677819660373 + }, + { + "max": { + "#": 460 + }, + "min": { + "#": 461 + } + }, + { + "x": 742.4729289666644, + "y": 79.02171648727426 + }, + { + "x": 705.3101937030743, + "y": 37.43940917450073 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.7159629600851, + "y": 56.659012299362686 + }, + { + "x": -0.007981814803218414, + "y": 0.007564651921899471 + }, + { + "x": 725.7573229884832, + "y": 53.81198948309003 + }, + { + "endCol": 15, + "endRow": 1, + "id": "14,15,0,1", + "startCol": 14, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 470 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.041360028398105445, + "y": 2.8470228162726543 + }, + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 742.4729289666644, + "y": 68.24114557433526 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 719.8782517262636, + "y": 76.1746936710016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 705.3515537314724, + "y": 57.13805007586837 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 718.9670706382581, + "y": 37.43940917450073 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 741.9097961959685, + "y": 44.30176802431178 + }, + { + "angle": -0.035987960552169386, + "anglePrev": -0.03084648637391272, + "angularSpeed": 0.0051414741782566655, + "angularVelocity": -0.0051414741782566655, + "area": 1201.454244, + "axes": { + "#": 479 + }, + "bounds": { + "#": 482 + }, + "collisionFilter": { + "#": 485 + }, + "constraintImpulse": { + "#": 486 + }, + "density": 0.001, + "force": { + "#": 487 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 488 + }, + "positionImpulse": { + "#": 489 + }, + "positionPrev": { + "#": 490 + }, + "region": { + "#": 491 + }, + "render": { + "#": 492 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.607046260275773, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 494 + }, + "vertices": { + "#": 495 + } + }, + [ + { + "#": 480 + }, + { + "#": 481 + } + ], + { + "x": -0.035980192854150085, + "y": -0.9993525032350588 + }, + { + "x": 0.9993525032350588, + "y": -0.035980192854150085 + }, + { + "max": { + "#": 483 + }, + "min": { + "#": 484 + } + }, + { + "x": 778.8419605960098, + "y": 71.00608922545148 + }, + { + "x": 742.9552586841655, + "y": 35.119387313607334 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 760.8986096400877, + "y": 53.062738269529405 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 760.9571276508875, + "y": 50.456348842442594 + }, + { + "endCol": 16, + "endRow": 1, + "id": "15,16,0,1", + "startCol": 15, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 493 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.05851801079989968, + "y": 2.6063894270868113 + }, + [ + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.8419605960098, + "y": 69.75894378074095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 744.2024041288761, + "y": 71.00608922545148 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 742.9552586841655, + "y": 36.36653275831787 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 777.5948151512993, + "y": 35.119387313607334 + }, + { + "angle": -0.005303392482370786, + "anglePrev": -0.020706974150149635, + "angularSpeed": 0.015403581667778849, + "angularVelocity": 0.015403581667778849, + "area": 1990.733346252218, + "axes": { + "#": 501 + }, + "bounds": { + "#": 504 + }, + "collisionFilter": { + "#": 507 + }, + "constraintImpulse": { + "#": 508 + }, + "density": 0.001, + "force": { + "#": 509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 510 + }, + "positionImpulse": { + "#": 511 + }, + "positionPrev": { + "#": 512 + }, + "region": { + "#": 513 + }, + "render": { + "#": 514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5381525588902113, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 516 + }, + "vertices": { + "#": 517 + } + }, + [ + { + "#": 502 + }, + { + "#": 503 + } + ], + { + "x": 0.005303367621894491, + "y": 0.9999859370470501 + }, + { + "x": -0.9999859370470501, + "y": 0.005303367621894491 + }, + { + "max": { + "#": 505 + }, + "min": { + "#": 506 + } + }, + { + "x": 866.5803351041776, + "y": 5e-324 + }, + { + "x": 771.6465983473828, + "y": -51.88898134357443 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.1134667257802, + "y": -41.14066566233015 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.0630835775776, + "y": -41.676454534011214 + }, + { + "endCol": 18, + "endRow": 0, + "id": "16,18,-2,0", + "startCol": 16, + "startRow": -2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 515 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05038314820266919, + "y": 0.5357888716810664 + }, + [ + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 771.6465983473828, + "y": -51.386096238067026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 866.4689959842593, + "y": -51.88898134357443 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 866.5803351041776, + "y": -30.895235086593274 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 771.7579374673011, + "y": -30.39234998108589 + }, + { + "angle": -0.0000013887978942646867, + "anglePrev": -0.0000012406173783493314, + "angularSpeed": 1.4818051591535527e-7, + "angularVelocity": -1.4818051591535527e-7, + "area": 7321.24308, + "axes": { + "#": 523 + }, + "bounds": { + "#": 537 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "region": { + "#": 546 + }, + "render": { + "#": 547 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.896171679294186, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 549 + }, + "vertices": { + "#": 550 + } + }, + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": -0.9709373043421886, + "y": -0.23933397384559493 + }, + { + "x": -0.8854469329677991, + "y": -0.4647404962965007 + }, + { + "x": -0.748527256016313, + "y": -0.6631040242682059 + }, + { + "x": -0.5680677686332554, + "y": -0.8229817800170512 + }, + { + "x": -0.3545988236363717, + "y": -0.9350185422095658 + }, + { + "x": -0.12048852454615978, + "y": -0.992714720074549 + }, + { + "x": 0.12048576718546931, + "y": -0.992715054739138 + }, + { + "x": 0.3545962265314388, + "y": -0.9350195271381578 + }, + { + "x": 0.5680654827203377, + "y": -0.8229833578765186 + }, + { + "x": 0.7485254141784802, + "y": -0.6631061033718015 + }, + { + "x": 0.885445642103138, + "y": -0.46474295570838 + }, + { + "x": 0.9709366395654053, + "y": -0.23933667071603917 + }, + { + "x": 0.9999999999990355, + "y": -0.0000013887978942642401 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 962.8862120249573, + "y": 122.03995437811042 + }, + { + "x": 866.5721957844478, + "y": 25.01995437820399 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.7292039047026, + "y": 73.52995437815723 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.7291896672244, + "y": 70.63378269889803 + }, + { + "endCol": 20, + "endRow": 2, + "id": "18,20,0,2", + "startCol": 18, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 548 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000014237478155791906, + "y": 2.8961716792591905 + }, + [ + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 962.8862120249573, + "y": 79.3768874978114 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 960.0872277947601, + "y": 90.73189138504574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 954.6522421757677, + "y": 101.08689893315234 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 946.8972543333119, + "y": 109.84090970327154 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 937.2732635591055, + "y": 116.4839230690561 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 926.338269318461, + "y": 120.63093825555706 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 914.7292712752884, + "y": 122.03995437811042 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 903.1202693184835, + "y": 120.63097050066654 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 892.1852635591489, + "y": 116.48398568717552 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 882.5612543333739, + "y": 109.84099905297283 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 874.8062421758444, + "y": 101.08700982310899 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 869.3712277948476, + "y": 90.7320173712355 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 866.5722120250501, + "y": 79.37702125849177 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 866.5721957844478, + "y": 67.68302125850306 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 869.371180014645, + "y": 56.32801737126869 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 874.8061656336374, + "y": 45.97300982316211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 882.5611534760932, + "y": 37.21899905304292 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 892.1851442502996, + "y": 30.575985687258367 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 903.1201384909441, + "y": 26.428970500757387 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 914.7291365341167, + "y": 25.01995437820399 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 926.3381384909217, + "y": 26.42893825564788 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 937.2731442502562, + "y": 30.575923069138923 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 946.8971534760312, + "y": 37.21890970334158 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 954.6521656335607, + "y": 45.97289893320545 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 960.0871800145575, + "y": 56.32789138507891 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 962.886195784355, + "y": 67.68288749782269 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 578 + }, + "bounds": { + "#": 581 + }, + "collisionFilter": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "density": 0.001, + "force": { + "#": 586 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 587 + }, + "positionImpulse": { + "#": 588 + }, + "positionPrev": { + "#": 589 + }, + "region": { + "#": 590 + }, + "render": { + "#": 591 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 593 + }, + "vertices": { + "#": 594 + } + }, + [ + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 582 + }, + "min": { + "#": 583 + } + }, + { + "x": 1047.1051858180972, + "y": 61.89221910173085 + }, + { + "x": 962.8725040622674, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1004.9888449401823, + "y": 49.81398693437831 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1004.9888449401823, + "y": 46.90671621934266 + }, + { + "endCol": 21, + "endRow": 1, + "id": "20,21,0,1", + "startCol": 20, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 592 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 962.8725040622674, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1047.1051858180972, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1047.1051858180972, + "y": 61.89221910173085 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 962.8725040622674, + "y": 61.89221910173085 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 600 + }, + "bounds": { + "#": 603 + }, + "collisionFilter": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "density": 0.001, + "force": { + "#": 608 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 609 + }, + "positionImpulse": { + "#": 610 + }, + "positionPrev": { + "#": 611 + }, + "region": { + "#": 612 + }, + "render": { + "#": 613 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 615 + }, + "vertices": { + "#": 616 + } + }, + [ + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 604 + }, + "min": { + "#": 605 + } + }, + { + "x": 1096.491759892171, + "y": 58.60085250365129 + }, + { + "x": 1047.1051858180972, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1071.7984728551342, + "y": 48.16830363533853 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1071.7984728551342, + "y": 45.26103292030288 + }, + { + "endCol": 22, + "endRow": 1, + "id": "21,22,0,1", + "startCol": 21, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 614 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1047.1051858180972, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1096.491759892171, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1096.491759892171, + "y": 58.60085250365129 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1047.1051858180972, + "y": 58.60085250365129 + }, + { + "angle": 0.17220825253666955, + "anglePrev": 0.13664628288021075, + "angularSpeed": 0.034854279517773985, + "angularVelocity": 0.03509016971352541, + "area": 2157.165332, + "axes": { + "#": 622 + }, + "bounds": { + "#": 636 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 639 + }, + "constraintImpulse": { + "#": 640 + }, + "density": 0.001, + "force": { + "#": 641 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 642 + }, + "positionImpulse": { + "#": 643 + }, + "positionPrev": { + "#": 644 + }, + "region": { + "#": 645 + }, + "render": { + "#": 646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.631435590963214, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 648 + }, + "vertices": { + "#": 649 + } + }, + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + } + ], + { + "x": -0.9155743015428325, + "y": -0.40214885099221 + }, + { + "x": -0.7927357564263523, + "y": -0.6095654357680883 + }, + { + "x": -0.6237989560817965, + "y": -0.7815848401749235 + }, + { + "x": -0.4186528850836614, + "y": -0.9081463328181898 + }, + { + "x": -0.18915889698778468, + "y": -0.9819464912562011 + }, + { + "x": 0.0513866080934137, + "y": -0.998678835516531 + }, + { + "x": 0.28883261139371585, + "y": -0.9573796125860873 + }, + { + "x": 0.509601876895547, + "y": -0.860410324824462 + }, + { + "x": 0.7006998467719374, + "y": -0.7134561827707311 + }, + { + "x": 0.8510650557667404, + "y": -0.5250602544972863 + }, + { + "x": 0.9519987188212835, + "y": -0.30610200809964444 + }, + { + "x": 0.9975895863060444, + "y": -0.06939032564943354 + }, + { + "x": 0.9852087668201234, + "y": 0.17135835486130382 + }, + { + "max": { + "#": 637 + }, + "min": { + "#": 638 + } + }, + { + "x": 72.85944082725868, + "y": 182.2144658461291 + }, + { + "x": 20.248951478272822, + "y": 128.0456428516581 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 46.546200061280615, + "y": 154.3143757452841 + }, + { + "x": -0.008115511590090357, + "y": 0.000520476961960873 + }, + { + "x": 46.53053223975706, + "y": 152.64607753965868 + }, + { + "endCol": 1, + "endRow": 3, + "id": "0,1,2,3", + "startCol": 0, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 647 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.015884065475056275, + "y": 1.6436705331635153 + }, + [ + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 71.7556658076289, + "y": 161.92073576724567 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 69.20305214981887, + "y": 167.73228405612377 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 65.33348097502414, + "y": 172.7646353875788 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 60.37145716441049, + "y": 176.72492877354196 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 54.60680833891231, + "y": 179.38241554089984 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 48.373866651042086, + "y": 180.5831086389101 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 42.03399186107276, + "y": 180.25689299319157 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 35.956295354041245, + "y": 178.42330793423824 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 30.494808979756606, + "y": 175.1885911640243 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 25.965996609518157, + "y": 170.74075230507552 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 22.632562603506354, + "y": 165.33762157118022 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 20.68940205406237, + "y": 159.29425594604342 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20.248951478272822, + "y": 152.9621209750967 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 21.336734314932382, + "y": 146.70801572332255 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 23.889347972742364, + "y": 140.89646743444445 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 27.75891914753712, + "y": 135.8641161029894 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 32.72094295815075, + "y": 131.90382271702626 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 38.485591783648935, + "y": 129.24633594966835 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 44.71853347151915, + "y": 128.0456428516581 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 51.05840826148847, + "y": 128.37185849737668 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 57.136104768519985, + "y": 130.20544355632995 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 62.597591142804625, + "y": 133.44016032654392 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 67.12640351304312, + "y": 137.8879991854927 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 70.45983751905493, + "y": 143.291129919388 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 72.40299806849889, + "y": 149.3344955445248 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 72.84344864428846, + "y": 155.66663051547152 + }, + { + "angle": 0.008780301703004196, + "anglePrev": 0.00644293980954596, + "angularSpeed": 0.0016821491581978732, + "angularVelocity": 0.0022839531083646723, + "area": 2399.6281959999997, + "axes": { + "#": 677 + }, + "bounds": { + "#": 680 + }, + "collisionFilter": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "density": 0.001, + "force": { + "#": 685 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 686 + }, + "positionImpulse": { + "#": 687 + }, + "positionPrev": { + "#": 688 + }, + "region": { + "#": 689 + }, + "render": { + "#": 690 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6940295261650644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 692 + }, + "vertices": { + "#": 693 + } + }, + [ + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": 0.008780188885784437, + "y": -0.9999614533986448 + }, + { + "x": 0.9999614533986448, + "y": 0.008780188885784437 + }, + { + "max": { + "#": 681 + }, + "min": { + "#": 682 + } + }, + { + "x": 122.0512460633608, + "y": 185.69804881540696 + }, + { + "x": 72.63683044259776, + "y": 133.5898012075386 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 97.34413701888829, + "y": 158.2969102520111 + }, + { + "x": 0.021050339251229247, + "y": 0.0001848330794226647 + }, + { + "x": 97.352849299647, + "y": 155.61799711745164 + }, + { + "endCol": 2, + "endRow": 3, + "id": "1,2,2,3", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 691 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.010370007686290705, + "y": 2.677068908317011 + }, + [ + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 121.62113973060174, + "y": 183.00401929648362 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 72.63702797441579, + "y": 182.57391296372455 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.06713430717484, + "y": 133.5898012075386 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 122.0512460633608, + "y": 134.01990754029762 + }, + { + "angle": 0.007009216207172592, + "anglePrev": 0.005388667003155523, + "angularSpeed": 0.0015465527195815362, + "angularVelocity": 0.0019997410000074057, + "area": 1489.7843794189994, + "axes": { + "#": 699 + }, + "bounds": { + "#": 702 + }, + "collisionFilter": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "density": 0.001, + "force": { + "#": 707 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 708 + }, + "positionImpulse": { + "#": 709 + }, + "positionPrev": { + "#": 710 + }, + "region": { + "#": 711 + }, + "render": { + "#": 712 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7957954983028457, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 714 + }, + "vertices": { + "#": 715 + } + }, + [ + { + "#": 700 + }, + { + "#": 701 + } + ], + { + "x": -0.0070091588145524165, + "y": 0.99997543554465 + }, + { + "x": -0.99997543554465, + "y": -0.0070091588145524165 + }, + { + "max": { + "#": 703 + }, + "min": { + "#": 704 + } + }, + { + "x": 157.4307938572815, + "y": 179.29909682022245 + }, + { + "x": 121.70653351099351, + "y": 134.18724346142133 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 139.56000108854317, + "y": 155.3452992324329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 139.55290760560976, + "y": 152.5916096680388 + }, + { + "endCol": 3, + "endRow": 3, + "id": "2,3,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 713 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00569459832209418, + "y": 2.7767897416647713 + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 122.00140132281022, + "y": 134.18724346142133 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 157.41346866609285, + "y": 134.4354583626459 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 157.11860085427614, + "y": 176.5033550034445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 121.70653351099351, + "y": 176.25514010221994 + }, + { + "angle": 0.005995532717498969, + "anglePrev": 0.004010058700194726, + "angularSpeed": 0.001794776642222333, + "angularVelocity": 0.0015183109176061752, + "area": 1765.3675322216507, + "axes": { + "#": 721 + }, + "bounds": { + "#": 724 + }, + "collisionFilter": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "density": 0.001, + "force": { + "#": 729 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 730 + }, + "positionImpulse": { + "#": 731 + }, + "positionPrev": { + "#": 732 + }, + "region": { + "#": 733 + }, + "render": { + "#": 734 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8570616065660692, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 736 + }, + "vertices": { + "#": 737 + } + }, + [ + { + "#": 722 + }, + { + "#": 723 + } + ], + { + "x": -0.005995496797914758, + "y": 0.9999820268475559 + }, + { + "x": -0.9999820268475559, + "y": -0.005995496797914758 + }, + { + "max": { + "#": 725 + }, + "min": { + "#": 726 + } + }, + { + "x": 199.14320416932975, + "y": 179.94324462816093 + }, + { + "x": 157.11060268856227, + "y": 134.56640214227414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.1188872140189, + "y": 155.82631507364678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.10815519826988, + "y": 152.94844824195437 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 735 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.009371127472121543, + "y": 2.852020526703484 + }, + [ + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 157.36403347932836, + "y": 134.56640214227414 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 199.12717173947556, + "y": 134.81679740437596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 198.87374094870947, + "y": 177.08622800501942 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 157.11060268856227, + "y": 176.83583274291763 + }, + { + "angle": 0.0005609568425663023, + "anglePrev": -0.00015511081197158778, + "angularSpeed": 0.0004096259679820256, + "angularVelocity": 0.0006483527622762205, + "area": 1919.5457599999997, + "axes": { + "#": 743 + }, + "bounds": { + "#": 747 + }, + "collisionFilter": { + "#": 750 + }, + "constraintImpulse": { + "#": 751 + }, + "density": 0.001, + "force": { + "#": 752 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 753 + }, + "positionImpulse": { + "#": 754 + }, + "positionPrev": { + "#": 755 + }, + "region": { + "#": 756 + }, + "render": { + "#": 757 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9048217294243903, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 759 + }, + "vertices": { + "#": 760 + } + }, + [ + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": -0.4994913377817467, + "y": -0.8663188809445402 + }, + { + "x": 0.500462958233651, + "y": -0.8657579496811005 + }, + { + "x": 0.9999998426637147, + "y": 0.00056095681314668 + }, + { + "max": { + "#": 748 + }, + "min": { + "#": 749 + } + }, + { + "x": 246.1022897014898, + "y": 191.9774953490479 + }, + { + "x": 198.98052192585357, + "y": 134.71080330064103 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 222.5281421862049, + "y": 161.89179902408353 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 222.50745074406052, + "y": 158.99948097988585 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 758 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.01978373281599488, + "y": 2.888883588915263 + }, + [ + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 246.06051451846122, + "y": 175.4960018091075 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 222.51289481906673, + "y": 189.072794747526 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 198.98052192585357, + "y": 175.4695919623446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 198.99576985394856, + "y": 148.28759623905955 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 222.54338955334305, + "y": 134.71080330064103 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 246.0757624465562, + "y": 148.31400608582248 + }, + { + "angle": 0.0004196039611134416, + "anglePrev": 0.00033034848265006694, + "angularSpeed": 0.00012757055975634783, + "angularVelocity": 0.00008856138814230526, + "area": 6052.328004, + "axes": { + "#": 768 + }, + "bounds": { + "#": 772 + }, + "collisionFilter": { + "#": 775 + }, + "constraintImpulse": { + "#": 776 + }, + "density": 0.001, + "force": { + "#": 777 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 778 + }, + "positionImpulse": { + "#": 779 + }, + "positionPrev": { + "#": 780 + }, + "region": { + "#": 781 + }, + "render": { + "#": 782 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.920402276861175, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 784 + }, + "vertices": { + "#": 785 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": -0.4996262492584678, + "y": -0.8662410813693352 + }, + { + "x": 0.5003530296153194, + "y": -0.8658214860782627 + }, + { + "x": 0.9999999119662591, + "y": 0.0004196039488003394 + }, + { + "max": { + "#": 773 + }, + "min": { + "#": 774 + } + }, + { + "x": 329.6332204157024, + "y": 234.32953860102322 + }, + { + "x": 245.99227724963217, + "y": 134.87923302966948 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.8013998720062, + "y": 183.14422878072102 + }, + { + "x": -0.018070196221101675, + "y": 0.005004610553714252 + }, + { + "x": 287.77969556792567, + "y": 180.22589647390004 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,2,4", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 783 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02197561409957416, + "y": 2.918111185519507 + }, + [ + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 329.5902698901874, + "y": 207.29476568165865 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 287.78114768741733, + "y": 231.4092245317725 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 245.99227724963217, + "y": 207.25968763074687 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 246.01252985382496, + "y": 158.9936918797834 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 287.82165205659504, + "y": 134.87923302966948 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 329.61052249438023, + "y": 159.0287699306952 + }, + { + "angle": -0.0005296981587690709, + "anglePrev": -0.00046315066805609456, + "angularSpeed": 0.0001352383888022528, + "angularVelocity": -0.00006058282544053477, + "area": 2220.023313496789, + "axes": { + "#": 793 + }, + "bounds": { + "#": 796 + }, + "collisionFilter": { + "#": 799 + }, + "constraintImpulse": { + "#": 800 + }, + "density": 0.001, + "force": { + "#": 801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 802 + }, + "positionImpulse": { + "#": 803 + }, + "positionPrev": { + "#": 804 + }, + "region": { + "#": 805 + }, + "render": { + "#": 806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.922846788795428, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 808 + }, + "vertices": { + "#": 809 + } + }, + [ + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "x": 0.0005296981339986073, + "y": 0.9999998597099335 + }, + { + "x": -0.9999998597099335, + "y": 0.0005296981339986073 + }, + { + "max": { + "#": 797 + }, + "min": { + "#": 798 + } + }, + { + "x": 374.7293378960784, + "y": 186.89778584603144 + }, + { + "x": 329.5289070554119, + "y": 134.78265301221703 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.11760769526165, + "y": 159.3788413987969 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.0955909081432, + "y": 156.45660369066337 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 807 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02277255389236643, + "y": 2.921928677024141 + }, + [ + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 329.5289070554119, + "y": 134.80656960503498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.6802638898485, + "y": 134.78265301221703 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 374.70630833511143, + "y": 183.9511131925588 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 329.5549515006748, + "y": 183.9750297853768 + }, + { + "angle": -0.00041778241243487445, + "anglePrev": -0.00015166620290133295, + "angularSpeed": 0.0002298590730111693, + "angularVelocity": -0.0002226657850352569, + "area": 2601.1074479999997, + "axes": { + "#": 815 + }, + "bounds": { + "#": 819 + }, + "collisionFilter": { + "#": 822 + }, + "constraintImpulse": { + "#": 823 + }, + "density": 0.001, + "force": { + "#": 824 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 825 + }, + "positionImpulse": { + "#": 826 + }, + "positionPrev": { + "#": 827 + }, + "region": { + "#": 828 + }, + "render": { + "#": 829 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9133333060643944, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 831 + }, + "vertices": { + "#": 832 + } + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + } + ], + { + "x": -0.5003486834670146, + "y": -0.8658239976766786 + }, + { + "x": 0.49962505681035585, + "y": -0.8662417691425693 + }, + { + "x": 0.9999999127289292, + "y": -0.00041778240028143496 + }, + { + "max": { + "#": 820 + }, + "min": { + "#": 821 + } + }, + { + "x": 429.45814497586645, + "y": 200.96359300498375 + }, + { + "x": 374.6208233077831, + "y": 134.7683346087017 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 402.02943065173605, + "y": 166.40933184735778 + }, + { + "x": 0.005598323391977687, + "y": -0.000006150957912715143 + }, + { + "x": 402.0049200750277, + "y": 163.49699309818092 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,2,4", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 830 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.022392312208751264, + "y": 2.915143152158521 + }, + [ + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 429.438037995689, + "y": 182.21888239330966 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 402.04264970466335, + "y": 198.0503290860138 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 374.63404277849276, + "y": 182.24177853997466 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 374.6208233077831, + "y": 150.5997813014059 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.01621159880875, + "y": 134.7683346087017 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 429.42481852497934, + "y": 150.5768851547409 + }, + { + "angle": -0.00010876775715693265, + "anglePrev": -0.00036081178356132406, + "angularSpeed": 0.000018679280733743556, + "angularVelocity": -0.0005057021979424977, + "area": 1413.3088360000002, + "axes": { + "#": 840 + }, + "bounds": { + "#": 843 + }, + "collisionFilter": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "density": 0.001, + "force": { + "#": 848 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 849 + }, + "positionImpulse": { + "#": 850 + }, + "positionPrev": { + "#": 851 + }, + "region": { + "#": 852 + }, + "render": { + "#": 853 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.906901069871206, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 855 + }, + "vertices": { + "#": 856 + } + }, + [ + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "x": -0.00010876775694247117, + "y": -0.9999999940847876 + }, + { + "x": 0.9999999940847876, + "y": -0.00010876775694247117 + }, + { + "max": { + "#": 844 + }, + "min": { + "#": 845 + } + }, + { + "x": 466.9764217515834, + "y": 175.25714982966005 + }, + { + "x": 429.3655227206935, + "y": 134.75218819356158 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 448.1645671170325, + "y": 153.5512325899006 + }, + { + "x": 0.02846369191586163, + "y": -0.00001189163056727528 + }, + { + "x": 448.1474827972797, + "y": 150.62717601585297 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 854 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02094881684467964, + "y": 2.889352471007612 + }, + [ + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 466.9636115133715, + "y": 172.3461879711851 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 429.369611735748, + "y": 172.3502769862396 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.3655227206935, + "y": 134.75627720861607 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.959522498317, + "y": 134.75218819356158 + }, + { + "angle": 0.000051905028354249624, + "anglePrev": -0.00008362190735114239, + "angularSpeed": 0.000051905028354249624, + "angularVelocity": 0.00003043888249430642, + "area": 5460.808751999999, + "axes": { + "#": 862 + }, + "bounds": { + "#": 866 + }, + "collisionFilter": { + "#": 869 + }, + "constraintImpulse": { + "#": 870 + }, + "density": 0.001, + "force": { + "#": 871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 872 + }, + "positionImpulse": { + "#": 873 + }, + "positionPrev": { + "#": 874 + }, + "region": { + "#": 875 + }, + "render": { + "#": 876 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072980893483975, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 878 + }, + "vertices": { + "#": 879 + } + }, + [ + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "x": -0.4999531654665324, + "y": -0.8660524420264596 + }, + { + "x": 0.5000430677256106, + "y": -0.866000537193575 + }, + { + "x": 0.999999998652934, + "y": 0.000051905028330943127 + }, + { + "max": { + "#": 867 + }, + "min": { + "#": 868 + } + }, + { + "x": 546.4284553910551, + "y": 229.35503597115934 + }, + { + "x": 467.00674026993283, + "y": 134.75576010421116 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 506.71193003541333, + "y": 180.6017600424536 + }, + { + "x": 0.11605516260997649, + "y": 0 + }, + { + "x": 506.6907295388152, + "y": 177.69804704300546 + }, + { + "endCol": 11, + "endRow": 4, + "id": "9,11,2,4", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 877 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02020032828335161, + "y": 2.9126947488005612 + }, + [ + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 546.414740162965, + "y": 203.52682084881965 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 506.70955039748446, + "y": 226.44775998069602 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 467.00674026993283, + "y": 203.52269917432997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 467.00911990786165, + "y": 157.67669923608756 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 506.7143096733422, + "y": 134.75576010421116 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 546.4171198008938, + "y": 157.68082091057724 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 887 + }, + "bounds": { + "#": 890 + }, + "collisionFilter": { + "#": 893 + }, + "constraintImpulse": { + "#": 894 + }, + "density": 0.001, + "force": { + "#": 895 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 896 + }, + "positionImpulse": { + "#": 897 + }, + "positionPrev": { + "#": 898 + }, + "region": { + "#": 899 + }, + "render": { + "#": 900 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 902 + }, + "vertices": { + "#": 903 + } + }, + [ + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 891 + }, + "min": { + "#": 892 + } + }, + { + "x": 566.2487139917695, + "y": 157.14554386167617 + }, + { + "x": 546.0781893004115, + "y": 134.75575476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.1634516460905, + "y": 145.95064931435107 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.1634516460905, + "y": 143.0433785993154 + }, + { + "endCol": 11, + "endRow": 3, + "id": "11,11,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 901 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 546.0781893004115, + "y": 134.75575476702593 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 566.2487139917695, + "y": 134.75575476702593 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 566.2487139917695, + "y": 157.14554386167617 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.0781893004115, + "y": 157.14554386167617 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 909 + }, + "bounds": { + "#": 912 + }, + "collisionFilter": { + "#": 915 + }, + "constraintImpulse": { + "#": 916 + }, + "density": 0.001, + "force": { + "#": 917 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 918 + }, + "positionImpulse": { + "#": 919 + }, + "positionPrev": { + "#": 920 + }, + "region": { + "#": 921 + }, + "render": { + "#": 922 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 924 + }, + "vertices": { + "#": 925 + } + }, + [ + { + "#": 910 + }, + { + "#": 911 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 913 + }, + "min": { + "#": 914 + } + }, + { + "x": 668.0818758573388, + "y": 164.42859427319883 + }, + { + "x": 566.2487139917695, + "y": 134.75575476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 617.1652949245541, + "y": 149.5921745201124 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 617.1652949245541, + "y": 146.68490380507671 + }, + { + "endCol": 13, + "endRow": 3, + "id": "11,13,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 923 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 566.2487139917695, + "y": 134.75575476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 668.0818758573388, + "y": 134.75575476702596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 668.0818758573388, + "y": 164.42859427319883 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.2487139917695, + "y": 164.42859427319883 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 931 + }, + "bounds": { + "#": 934 + }, + "collisionFilter": { + "#": 937 + }, + "constraintImpulse": { + "#": 938 + }, + "density": 0.001, + "force": { + "#": 939 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 940 + }, + "positionImpulse": { + "#": 941 + }, + "positionPrev": { + "#": 942 + }, + "region": { + "#": 943 + }, + "render": { + "#": 944 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 946 + }, + "vertices": { + "#": 947 + } + }, + [ + { + "#": 932 + }, + { + "#": 933 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 935 + }, + "min": { + "#": 936 + } + }, + { + "x": 708.1533779149519, + "y": 156.13602740077056 + }, + { + "x": 668.0818758573388, + "y": 134.7557547670257 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 688.1176268861453, + "y": 145.44589108389812 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 688.1176268861453, + "y": 142.53862036886247 + }, + { + "endCol": 14, + "endRow": 3, + "id": "13,14,2,3", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 945 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 668.0818758573388, + "y": 134.7557547670257 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 708.1533779149519, + "y": 134.7557547670257 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 708.1533779149519, + "y": 156.13602740077056 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 668.0818758573388, + "y": 156.13602740077056 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 953 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 778.4053779149518, + "y": 205.00775476702597 + }, + { + "x": 708.1533779149519, + "y": 134.75575476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.2793779149519, + "y": 169.88175476702597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.2793779149519, + "y": 166.9744840519903 + }, + { + "endCol": 16, + "endRow": 4, + "id": "14,16,2,4", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.4053779149518, + "y": 184.43175476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 757.8293779149518, + "y": 205.00775476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 728.7293779149519, + "y": 205.00775476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 708.1533779149519, + "y": 184.43175476702598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 708.1533779149519, + "y": 155.33175476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 728.7293779149519, + "y": 134.75575476702593 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 757.8293779149518, + "y": 134.75575476702593 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 778.4053779149518, + "y": 155.33175476702598 + }, + { + "angle": -0.0001944219408260593, + "anglePrev": -0.00005820510707731357, + "angularSpeed": 0.00013621683374874573, + "angularVelocity": -0.00013621683374874573, + "area": 1965.14242904257, + "axes": { + "#": 981 + }, + "bounds": { + "#": 984 + }, + "collisionFilter": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "density": 0.001, + "force": { + "#": 989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 990 + }, + "positionImpulse": { + "#": 991 + }, + "positionPrev": { + "#": 992 + }, + "region": { + "#": 993 + }, + "render": { + "#": 994 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8864574051859595, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 996 + }, + "vertices": { + "#": 997 + } + }, + [ + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "x": 0.00019442193960120483, + "y": 0.9999999811000543 + }, + { + "x": -0.9999999811000543, + "y": 0.00019442193960120483 + }, + { + "max": { + "#": 985 + }, + "min": { + "#": 986 + } + }, + { + "x": 1035.7433017653852, + "y": 143.7316603764659 + }, + { + "x": 946.2347480645401, + "y": 121.75841214365413 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 990.9890249149622, + "y": 132.74503626006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 990.9878317555937, + "y": 129.858579101479 + }, + { + "endCol": 21, + "endRow": 2, + "id": "19,21,2,2", + "startCol": 19, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 995 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0011931593685187635, + "y": 2.886457158581014 + }, + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 946.2347480645401, + "y": 121.77581374067579 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1035.7390330670157, + "y": 121.75841214365413 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1035.7433017653852, + "y": 143.71425877944426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 946.2390167629092, + "y": 143.7316603764659 + }, + { + "angle": -0.001147012229154084, + "anglePrev": -0.0009829708584831495, + "angularSpeed": 0.0001640413706709345, + "angularVelocity": -0.0001640413706709345, + "area": 1492.5256200000001, + "axes": { + "#": 1003 + }, + "bounds": { + "#": 1007 + }, + "collisionFilter": { + "#": 1010 + }, + "constraintImpulse": { + "#": 1011 + }, + "density": 0.001, + "force": { + "#": 1012 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1714.8324723309402, + "inverseInertia": 0.0005831473430408735, + "inverseMass": 0.6700052492231255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.49252562, + "motion": 0, + "parent": null, + "position": { + "#": 1013 + }, + "positionImpulse": { + "#": 1014 + }, + "positionPrev": { + "#": 1015 + }, + "region": { + "#": 1016 + }, + "render": { + "#": 1017 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9024915624703973, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1019 + }, + "vertices": { + "#": 1020 + } + }, + [ + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + } + ], + { + "x": -0.49900892345349457, + "y": 0.8665968464711743 + }, + { + "x": -0.500995603042456, + "y": -0.8654498285470544 + }, + { + "x": 0.9999993421815452, + "y": -0.0011470119776454688 + }, + { + "max": { + "#": 1008 + }, + "min": { + "#": 1009 + } + }, + { + "x": 895.8925146298899, + "y": 233.28023021023685 + }, + { + "x": 845.0148775394076, + "y": 174.5702688307584 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 878.9108552419932, + "y": 203.94468907949474 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 878.9116449227015, + "y": 201.04219762444853 + }, + { + "endCol": 18, + "endRow": 4, + "id": "17,18,3,4", + "startCol": 17, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1018 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0007896807082443046, + "y": 2.9024914550462033 + }, + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 895.8925146298899, + "y": 233.28023021023685 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 845.0148775394076, + "y": 203.983568197489 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 895.8251735566821, + "y": 174.5702688307584 + }, + { + "angle": -0.001564303353961739, + "anglePrev": -0.0013528232460197566, + "angularSpeed": 0.0002114801079419823, + "angularVelocity": -0.0002114801079419823, + "area": 942.0065703840771, + "axes": { + "#": 1025 + }, + "bounds": { + "#": 1028 + }, + "collisionFilter": { + "#": 1031 + }, + "constraintImpulse": { + "#": 1032 + }, + "density": 0.001, + "force": { + "#": 1033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 1034 + }, + "positionImpulse": { + "#": 1035 + }, + "positionPrev": { + "#": 1036 + }, + "region": { + "#": 1037 + }, + "render": { + "#": 1038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9120791567443165, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1040 + }, + "vertices": { + "#": 1041 + } + }, + [ + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "x": 0.0015643027159750376, + "y": 0.9999987764777576 + }, + { + "x": -0.9999987764777576, + "y": 0.0015643027159750376 + }, + { + "max": { + "#": 1029 + }, + "min": { + "#": 1030 + } + }, + { + "x": 922.0184433486517, + "y": 220.95449115230082 + }, + { + "x": 900.8846485223786, + "y": 173.2797155907576 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 911.4495851118796, + "y": 195.6610651134615 + }, + { + "x": -0.13743082731154285, + "y": 0.9264263163035364 + }, + { + "x": 911.4456634646086, + "y": 192.74898859732608 + }, + { + "endCol": 19, + "endRow": 4, + "id": "18,19,3,4", + "startCol": 18, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1039 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.003921647271000666, + "y": 2.9120765161354143 + }, + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 900.8846485223786, + "y": 173.31265969330045 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 921.9445507386274, + "y": 173.2797155907576 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 922.0145217013807, + "y": 218.00947053362253 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 900.9546194851316, + "y": 218.0424146361654 + }, + { + "angle": -0.0001304553879844775, + "anglePrev": -0.00011469243169148924, + "angularSpeed": 0.000015762956292988257, + "angularVelocity": -0.000015762956292988257, + "area": 2898.415585731765, + "axes": { + "#": 1047 + }, + "bounds": { + "#": 1050 + }, + "collisionFilter": { + "#": 1053 + }, + "constraintImpulse": { + "#": 1054 + }, + "density": 0.001, + "force": { + "#": 1055 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 1056 + }, + "positionImpulse": { + "#": 1057 + }, + "positionPrev": { + "#": 1058 + }, + "region": { + "#": 1059 + }, + "render": { + "#": 1060 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9081700912449406, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1062 + }, + "vertices": { + "#": 1063 + } + }, + [ + { + "#": 1048 + }, + { + "#": 1049 + } + ], + { + "x": 0.0001304553876144493, + "y": 0.9999999914906958 + }, + { + "x": -0.9999999914906958, + "y": 0.0001304553876144493 + }, + { + "max": { + "#": 1051 + }, + "min": { + "#": 1052 + } + }, + { + "x": 1039.623972549202, + "y": 202.42728763302375 + }, + { + "x": 927.4237690957227, + "y": 173.67097651268554 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 983.5242941394556, + "y": 186.59504708885078 + }, + { + "x": 0.042790765282956, + "y": 0.9362208174964212 + }, + { + "x": 983.5251407734418, + "y": 183.68687712084298 + }, + { + "endCol": 21, + "endRow": 4, + "id": "19,21,3,4", + "startCol": 19, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1061 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0008466339861115558, + "y": 2.908169968007802 + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 927.4246157297089, + "y": 173.6856130837438 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1039.6206024293206, + "y": 173.67097651268554 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1039.623972549202, + "y": 199.50448109395776 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 927.4279858495913, + "y": 199.51911766501595 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 842.523055, + "axes": { + "#": 1069 + }, + "bounds": { + "#": 1073 + }, + "collisionFilter": { + "#": 1076 + }, + "constraintImpulse": { + "#": 1077 + }, + "density": 0.001, + "force": { + "#": 1078 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 546.4390114484775, + "inverseInertia": 0.001830030395065027, + "inverseMass": 1.1869111403722952, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.842523055, + "motion": 0, + "parent": null, + "position": { + "#": 1079 + }, + "positionImpulse": { + "#": 1080 + }, + "positionPrev": { + "#": 1081 + }, + "region": { + "#": 1082 + }, + "render": { + "#": 1083 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1085 + }, + "vertices": { + "#": 1086 + } + }, + [ + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + } + ], + { + "x": -0.49999391924129877, + "y": 0.8660289144836479 + }, + { + "x": -0.49999391924129877, + "y": -0.8660289144836479 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1074 + }, + "min": { + "#": 1075 + } + }, + { + "x": 1078.6291420319403, + "y": 181.77302548206166 + }, + { + "x": 1040.42814203194, + "y": 134.75575476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1065.8954753652736, + "y": 156.81075476702597 + }, + { + "x": -0.05835893203699935, + "y": 0 + }, + { + "x": 1065.8954753652736, + "y": 153.9034840519903 + }, + { + "endCol": 22, + "endRow": 3, + "id": "21,22,2,3", + "startCol": 21, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1084 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1078.6291420319403, + "y": 178.86575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1040.42814203194, + "y": 156.81075476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1078.6291420319403, + "y": 134.75575476702593 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6661.542482000001, + "axes": { + "#": 1091 + }, + "bounds": { + "#": 1105 + }, + "circleRadius": 46.273148148148145, + "collisionFilter": { + "#": 1108 + }, + "constraintImpulse": { + "#": 1109 + }, + "density": 0.001, + "force": { + "#": 1110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 28251.272419191544, + "inverseInertia": 0.00003539663577491412, + "inverseMass": 0.15011538284144801, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.661542482000001, + "motion": 0, + "parent": null, + "position": { + "#": 1111 + }, + "positionImpulse": { + "#": 1112 + }, + "positionPrev": { + "#": 1113 + }, + "region": { + "#": 1114 + }, + "render": { + "#": 1115 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1117 + }, + "vertices": { + "#": 1118 + } + }, + [ + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + } + ], + { + "x": -0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": -0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": -0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": -0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": -0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": -0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": 0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": 0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": 0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": 0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1106 + }, + "min": { + "#": 1107 + } + }, + { + "x": 1189.9663484629357, + "y": 230.20902548206163 + }, + { + "x": 1098.0943484629358, + "y": 134.75575476702593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1144.0303484629358, + "y": 181.02875476702596 + }, + { + "x": 0.5467095984940997, + "y": 0 + }, + { + "x": 1144.0303484629358, + "y": 178.12148405199028 + }, + { + "endCol": 24, + "endRow": 4, + "id": "22,24,2,4", + "startCol": 22, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1116 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1189.9663484629357, + "y": 186.60675476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1187.2963484629358, + "y": 197.43775476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1182.1123484629359, + "y": 207.31475476702596 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1174.7153484629357, + "y": 215.66475476702595 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1165.5343484629357, + "y": 222.00175476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1155.1043484629358, + "y": 225.95775476702596 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1144.0303484629358, + "y": 227.30175476702595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 1132.9563484629357, + "y": 225.95775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 1122.5263484629359, + "y": 222.00175476702597 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 1113.3453484629358, + "y": 215.66475476702595 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 1105.9483484629357, + "y": 207.31475476702596 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 1100.7643484629357, + "y": 197.43775476702595 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 1098.0943484629358, + "y": 186.60675476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 1098.0943484629358, + "y": 175.45075476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 1100.7643484629357, + "y": 164.61975476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 1105.9483484629357, + "y": 154.74275476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 1113.3453484629358, + "y": 146.39275476702596 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 1122.5263484629359, + "y": 140.05575476702595 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 1132.9563484629357, + "y": 136.09975476702593 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 1144.0303484629358, + "y": 134.75575476702593 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 1155.1043484629358, + "y": 136.09975476702593 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1165.5343484629357, + "y": 140.05575476702595 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1174.7153484629357, + "y": 146.39275476702596 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1182.1123484629359, + "y": 154.74275476702596 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1187.2963484629358, + "y": 164.61975476702597 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1189.9663484629357, + "y": 175.45075476702596 + }, + { + "angle": 0.08336775411278377, + "anglePrev": 0.07301974618106431, + "angularSpeed": 0.010348007931719456, + "angularVelocity": 0.010348007931719456, + "area": 1051.3111283901928, + "axes": { + "#": 1146 + }, + "bounds": { + "#": 1149 + }, + "collisionFilter": { + "#": 1152 + }, + "constraintImpulse": { + "#": 1153 + }, + "density": 0.001, + "force": { + "#": 1154 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 1155 + }, + "positionImpulse": { + "#": 1156 + }, + "positionPrev": { + "#": 1157 + }, + "region": { + "#": 1158 + }, + "render": { + "#": 1159 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.395920982747778, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1161 + }, + "vertices": { + "#": 1162 + } + }, + [ + { + "#": 1147 + }, + { + "#": 1148 + } + ], + { + "x": -0.08327121748299815, + "y": 0.9965269210306861 + }, + { + "x": -0.9965269210306861, + "y": -0.08327121748299815 + }, + { + "max": { + "#": 1150 + }, + "min": { + "#": 1151 + } + }, + { + "x": 54.34861524963813, + "y": 265.9700666412183 + }, + { + "x": 21.773190397598462, + "y": 225.66366576212616 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 37.97742322786545, + "y": 244.62181787796905 + }, + { + "x": 0.10056648327756273, + "y": 0 + }, + { + "x": 37.81046403635976, + "y": 242.23172123056275 + }, + { + "endCol": 1, + "endRow": 5, + "id": "0,1,4,5", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1160 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.16695919150568683, + "y": 2.390096647406302 + }, + [ + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 24.735925915208252, + "y": 225.66366576212616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 54.18165605813244, + "y": 228.12419316678583 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 51.21892054052265, + "y": 263.57996999381197 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 21.773190397598462, + "y": 261.1194425891523 + }, + { + "angle": 0.0011888981924147598, + "anglePrev": 0.0010835776991636498, + "angularSpeed": 0.00013954181395216283, + "angularVelocity": 0.00017532268456903785, + "area": 6245.524001, + "axes": { + "#": 1168 + }, + "bounds": { + "#": 1176 + }, + "collisionFilter": { + "#": 1179 + }, + "constraintImpulse": { + "#": 1180 + }, + "density": 0.001, + "force": { + "#": 1181 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 24931.28629116745, + "inverseInertia": 0.00004011024494770155, + "inverseMass": 0.16011466769479796, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.245524001, + "motion": 0, + "parent": null, + "position": { + "#": 1182 + }, + "positionImpulse": { + "#": 1183 + }, + "positionPrev": { + "#": 1184 + }, + "region": { + "#": 1185 + }, + "render": { + "#": 1186 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8913735185921414, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1188 + }, + "vertices": { + "#": 1189 + } + }, + [ + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + } + ], + { + "x": 0.6225789186079519, + "y": 0.7825570203537586 + }, + { + "x": -0.22369946914157013, + "y": 0.9746581695680695 + }, + { + "x": -0.901486836169934, + "y": 0.4328065205288875 + }, + { + "x": -0.9004551628957908, + "y": -0.4349488471237909 + }, + { + "x": -0.22138130026472083, + "y": -0.9751873255396121 + }, + { + "x": 0.6244379181049254, + "y": -0.7810744435921496 + }, + { + "x": 0.9999992932606272, + "y": 0.001188897912334359 + }, + { + "max": { + "#": 1177 + }, + "min": { + "#": 1178 + } + }, + { + "x": 134.57766488196162, + "y": 330.01430614461594 + }, + { + "x": 43.732330598266074, + "y": 233.96900089990555 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 91.50633449926706, + "y": 280.53332885317917 + }, + { + "x": 0.01710249148493182, + "y": 0.05440267011189506 + }, + { + "x": 91.5050613100748, + "y": 277.6439418751724 + }, + { + "endCol": 2, + "endRow": 6, + "id": "0,2,4,6", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1187 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005172226573762373, + "y": 2.89425750613691 + }, + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 134.52462293838957, + "y": 301.3124878919464 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 102.0819140230902, + "y": 327.1229350643059 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 61.67491136022137, + "y": 317.8488887088626 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 43.732330598266074, + "y": 280.47653039953576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.76372441206858, + "y": 243.14694150370732 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 102.19266461921582, + "y": 233.96900089990555 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 134.5739098902433, + "y": 259.856517190534 + }, + { + "angle": 0.0006351761500323259, + "anglePrev": 0.0006728323904826585, + "angularSpeed": 0.0003489301845895466, + "angularVelocity": 0.0009115987615107555, + "area": 1100.443548, + "axes": { + "#": 1198 + }, + "bounds": { + "#": 1202 + }, + "collisionFilter": { + "#": 1205 + }, + "constraintImpulse": { + "#": 1206 + }, + "density": 0.001, + "force": { + "#": 1207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 932.2097612415441, + "inverseInertia": 0.001072719940915627, + "inverseMass": 0.9087244882460795, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.1004435479999999, + "motion": 0, + "parent": null, + "position": { + "#": 1208 + }, + "positionImpulse": { + "#": 1209 + }, + "positionPrev": { + "#": 1210 + }, + "region": { + "#": 1211 + }, + "render": { + "#": 1212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9117990453198024, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1214 + }, + "vertices": { + "#": 1215 + } + }, + [ + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + } + ], + { + "x": -0.5005506016277237, + "y": 0.865707280326395 + }, + { + "x": -0.49945044479580797, + "y": -0.8663424572265113 + }, + { + "x": 0.9999997982756359, + "y": 0.000635176107322157 + }, + { + "max": { + "#": 1203 + }, + "min": { + "#": 1204 + } + }, + { + "x": 172.15628084070872, + "y": 283.19131384036183 + }, + { + "x": 128.47612957966845, + "y": 229.8675314586919 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 157.58145704174692, + "y": 255.06428286786308 + }, + { + "x": -0.04331545154217922, + "y": 0.0013968579943012555 + }, + { + "x": 157.56122185032768, + "y": 252.14122962241262 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1213 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0018936416237806952, + "y": 2.8954107549386947 + }, + [ + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 172.11811052382498, + "y": 280.27952128936306 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 128.47612957966845, + "y": 255.04579585553412 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 172.15013102174728, + "y": 229.8675314586919 + }, + { + "angle": -0.0002692221306237219, + "anglePrev": -0.00029503521690211386, + "angularSpeed": 0.000056652251504317385, + "angularVelocity": 0.00002736434154517679, + "area": 4695.386625, + "axes": { + "#": 1220 + }, + "bounds": { + "#": 1228 + }, + "collisionFilter": { + "#": 1231 + }, + "constraintImpulse": { + "#": 1232 + }, + "density": 0.001, + "force": { + "#": 1233 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 1234 + }, + "positionImpulse": { + "#": 1235 + }, + "positionPrev": { + "#": 1236 + }, + "region": { + "#": 1237 + }, + "render": { + "#": 1238 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9015595034075696, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1240 + }, + "vertices": { + "#": 1241 + } + }, + [ + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + } + ], + { + "x": 0.623710557480831, + "y": 0.7816553847361062 + }, + { + "x": -0.2222639391442167, + "y": 0.9749865339357753 + }, + { + "x": -0.9008550230568051, + "y": 0.4341200610814058 + }, + { + "x": -0.9010886419121497, + "y": -0.4336349379569382 + }, + { + "x": -0.22278888280321407, + "y": -0.9748667158639155 + }, + { + "x": 0.6232895892312106, + "y": -0.7819911047806033 + }, + { + "x": 0.9999999637597223, + "y": -0.0002692221273714937 + }, + { + "max": { + "#": 1229 + }, + "min": { + "#": 1230 + } + }, + { + "x": 250.8542829428395, + "y": 314.9346929174094 + }, + { + "x": 172.10198246133996, + "y": 231.2631384095856 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 213.52510599248996, + "y": 271.65061860193055 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 213.52163960009528, + "y": 268.742425434899 + }, + { + "endCol": 5, + "endRow": 6, + "id": "3,5,4,6", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1239 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0034664260004149128, + "y": 2.9083179923709395 + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250.8508183369308, + "y": 289.61357034522985 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 222.75385316170997, + "y": 312.0331354824582 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.70670092395366, + "y": 304.0435706617979 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 172.10198246133996, + "y": 271.6617706237741 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 187.68926286831956, + "y": 239.2715730091534 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 222.73210809048214, + "y": 231.2631384095856 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 250.8411408783403, + "y": 253.66757164792295 + }, + { + "angle": -0.00004777520407657661, + "anglePrev": -0.0003239177397589565, + "angularSpeed": 0.00013702656879162437, + "angularVelocity": 0.00027354489303416097, + "area": 2533.681298803042, + "axes": { + "#": 1250 + }, + "bounds": { + "#": 1253 + }, + "collisionFilter": { + "#": 1256 + }, + "constraintImpulse": { + "#": 1257 + }, + "density": 0.001, + "force": { + "#": 1258 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 9087.287047208478, + "inverseInertia": 0.00011004384419739331, + "inverseMass": 0.3946826305551604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.533681298803042, + "motion": 0, + "parent": null, + "position": { + "#": 1259 + }, + "positionImpulse": { + "#": 1260 + }, + "positionPrev": { + "#": 1261 + }, + "region": { + "#": 1262 + }, + "render": { + "#": 1263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.92745871473116, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1265 + }, + "vertices": { + "#": 1266 + } + }, + [ + { + "#": 1251 + }, + { + "#": 1252 + } + ], + { + "x": 0.000047775204058402346, + "y": 0.9999999988587651 + }, + { + "x": -0.9999999988587651, + "y": 0.000047775204058402346 + }, + { + "max": { + "#": 1254 + }, + "min": { + "#": 1255 + } + }, + { + "x": 351.43574156335717, + "y": 259.4673400338148 + }, + { + "x": 250.79068395918185, + "y": 231.35619544764356 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.10481417252515, + "y": 243.94806247828015 + }, + { + "x": -0.09902637223651164, + "y": 0.0008112872013797227 + }, + { + "x": 301.0904550447143, + "y": 241.026272108743 + }, + { + "endCol": 7, + "endRow": 5, + "id": "5,7,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1264 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.01439687663918221, + "y": 2.922525153533286 + }, + [ + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250.79068395918185, + "y": 231.36100292585476 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 351.4177414575115, + "y": 231.35619544764356 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 351.41894438586843, + "y": 256.53512203070557 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250.79188688753874, + "y": 256.53992950891677 + }, + { + "angle": -0.000235959787054116, + "anglePrev": -0.000207304027301037, + "angularSpeed": 0.000028655759753078994, + "angularVelocity": -0.000028655759753078994, + "area": 2082.1047164947227, + "axes": { + "#": 1272 + }, + "bounds": { + "#": 1275 + }, + "collisionFilter": { + "#": 1278 + }, + "constraintImpulse": { + "#": 1279 + }, + "density": 0.001, + "force": { + "#": 1280 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2917.86500075833, + "inverseInertia": 0.0003427163353136995, + "inverseMass": 0.4802832403566742, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.082104716494723, + "motion": 0, + "parent": null, + "position": { + "#": 1281 + }, + "positionImpulse": { + "#": 1282 + }, + "positionPrev": { + "#": 1283 + }, + "region": { + "#": 1284 + }, + "render": { + "#": 1285 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.887975217391966, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1287 + }, + "vertices": { + "#": 1288 + } + }, + [ + { + "#": 1273 + }, + { + "#": 1274 + } + ], + { + "x": 0.00023595978486452634, + "y": 0.9999999721614895 + }, + { + "x": -0.9999999721614895, + "y": 0.00023595978486452634 + }, + { + "max": { + "#": 1276 + }, + "min": { + "#": 1277 + } + }, + { + "x": 394.3810696169417, + "y": 280.1585284975804 + }, + { + "x": 351.7921142909382, + "y": 231.24686293023882 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 373.08659195393994, + "y": 255.70269571390963 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 373.07646214152214, + "y": 252.8147382621506 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1286 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.010129812417826543, + "y": 2.8879574517590374 + }, + [ + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 351.7921142909382, + "y": 231.25690948855834 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.3695308011196, + "y": 231.24686293023882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 394.3810696169417, + "y": 280.1484819392609 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 351.8036531067603, + "y": 280.1585284975804 + }, + { + "angle": -0.0005148640806360578, + "anglePrev": -0.00033072196160875483, + "angularSpeed": 0.00018414211902730297, + "angularVelocity": -0.00018414211902730297, + "area": 2570.1808866424026, + "axes": { + "#": 1294 + }, + "bounds": { + "#": 1297 + }, + "collisionFilter": { + "#": 1300 + }, + "constraintImpulse": { + "#": 1301 + }, + "density": 0.001, + "force": { + "#": 1302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 7426.992944977438, + "inverseInertia": 0.00013464399487227974, + "inverseMass": 0.38907767355875333, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5701808866424027, + "motion": 0, + "parent": null, + "position": { + "#": 1303 + }, + "positionImpulse": { + "#": 1304 + }, + "positionPrev": { + "#": 1305 + }, + "region": { + "#": 1306 + }, + "render": { + "#": 1307 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9114430525916974, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1309 + }, + "vertices": { + "#": 1310 + } + }, + [ + { + "#": 1295 + }, + { + "#": 1296 + } + ], + { + "x": 0.0005148640578889322, + "y": 0.9999998674574923 + }, + { + "x": -0.9999998674574923, + "y": 0.0005148640578889322 + }, + { + "max": { + "#": 1298 + }, + "min": { + "#": 1299 + } + }, + { + "x": 482.9282479627955, + "y": 254.24451464807058 + }, + { + "x": 394.44020159323765, + "y": 222.23218671883575 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.67667071639573, + "y": 236.7826487571392 + }, + { + "x": 0.043748033528177445, + "y": -0.000008670526677850751 + }, + { + "x": 438.66156259315403, + "y": 233.87124490451131 + }, + { + "endCol": 10, + "endRow": 5, + "id": "8,10,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1308 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.01510812324172548, + "y": 2.9114038526278994 + }, + [ + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.44020159323765, + "y": 222.27773055872464 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 482.89818026659896, + "y": 222.23218671883575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 482.9131398395538, + "y": 251.28756695555379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 394.4551611661925, + "y": 251.33311079544268 + }, + { + "angle": -0.0009055602597936766, + "anglePrev": -0.0003214303483358152, + "angularSpeed": 0.0005841299114578614, + "angularVelocity": -0.0005841299114578614, + "area": 1460.278512, + "axes": { + "#": 1316 + }, + "bounds": { + "#": 1320 + }, + "collisionFilter": { + "#": 1323 + }, + "constraintImpulse": { + "#": 1324 + }, + "density": 0.001, + "force": { + "#": 1325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1641.5325488167716, + "inverseInertia": 0.0006091868240570722, + "inverseMass": 0.6848008731090607, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4602785120000001, + "motion": 0, + "parent": null, + "position": { + "#": 1326 + }, + "positionImpulse": { + "#": 1327 + }, + "positionPrev": { + "#": 1328 + }, + "region": { + "#": 1329 + }, + "render": { + "#": 1330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8612849323416127, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1332 + }, + "vertices": { + "#": 1333 + } + }, + [ + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + } + ], + { + "x": -0.4992142681199797, + "y": 0.8664785712903889 + }, + { + "x": -0.5007827456318047, + "y": -0.8655730134872918 + }, + { + "x": 0.999999589980336, + "y": -0.0009055601360278355 + }, + { + "max": { + "#": 1321 + }, + "min": { + "#": 1322 + } + }, + { + "x": 463.2670630707037, + "y": 324.7359273470465 + }, + { + "x": 412.94878984730286, + "y": 266.6639511577084 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 446.4767761001636, + "y": 295.7151200624979 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 446.48004660773046, + "y": 292.8538369992856 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1331 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0032705075668638985, + "y": 2.861283063212272 + }, + [ + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.2670630707037, + "y": 324.7359273470465 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 412.94878984730286, + "y": 295.7454816827386 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 463.2144753824843, + "y": 266.6639511577084 + }, + { + "angle": -0.0011259180904237497, + "anglePrev": -0.0010038423983450256, + "angularSpeed": 0.00012207569207872422, + "angularVelocity": -0.00012207569207872422, + "area": 4167.4330549999995, + "axes": { + "#": 1338 + }, + "bounds": { + "#": 1346 + }, + "collisionFilter": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "density": 0.001, + "force": { + "#": 1351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 11100.542061550868, + "inverseInertia": 0.00009008569081177725, + "inverseMass": 0.23995586415004816, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.167433054999999, + "motion": 0, + "parent": null, + "position": { + "#": 1352 + }, + "positionImpulse": { + "#": 1353 + }, + "positionPrev": { + "#": 1354 + }, + "region": { + "#": 1355 + }, + "render": { + "#": 1356 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.902996774738071, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1358 + }, + "vertices": { + "#": 1359 + } + }, + [ + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + } + ], + { + "x": 0.6243894235213087, + "y": 0.7811132106133704 + }, + { + "x": -0.22143190392780915, + "y": 0.9751758364125444 + }, + { + "x": -0.9004835188680914, + "y": 0.43489013813483907 + }, + { + "x": -0.9014605363184787, + "y": -0.4328612958678575 + }, + { + "x": -0.22362727688861692, + "y": -0.9746747360178071 + }, + { + "x": 0.6226289029531206, + "y": -0.7825172516995349 + }, + { + "x": 0.9999993661542937, + "y": -0.001125917852537624 + }, + { + "max": { + "#": 1347 + }, + "min": { + "#": 1348 + } + }, + { + "x": 547.267024135146, + "y": 316.4857458293311 + }, + { + "x": 473.0582349359398, + "y": 237.4888012088978 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.0830003423473, + "y": 275.5455547998844 + }, + { + "x": -0.03642161325474954, + "y": 0.8690267456901464 + }, + { + "x": 512.0782281623767, + "y": 272.64256194759594 + }, + { + "endCol": 11, + "endRow": 6, + "id": "9,11,4,6", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1357 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004772179970605066, + "y": 2.9029928522884743 + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 547.2622519551754, + "y": 292.4379565596309 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520.8100424923308, + "y": 313.5827529770426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 487.7855785024439, + "y": 306.0839310575232 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 473.0582349359398, + "y": 275.589493507797 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 487.71687274324637, + "y": 245.06196973605591 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520.7243668992598, + "y": 237.4888012088978 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 547.2241238730171, + "y": 258.57397802418194 + }, + { + "angle": -0.0008966727630935781, + "anglePrev": -0.0009130537137732643, + "angularSpeed": 0.00001638095067968625, + "angularVelocity": 0.00001638095067968625, + "area": 1687.7661798887366, + "axes": { + "#": 1368 + }, + "bounds": { + "#": 1371 + }, + "collisionFilter": { + "#": 1374 + }, + "constraintImpulse": { + "#": 1375 + }, + "density": 0.001, + "force": { + "#": 1376 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1980.3012000583947, + "inverseInertia": 0.0005049736878261308, + "inverseMass": 0.5924991340127004, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6877661798887367, + "motion": 0, + "parent": null, + "position": { + "#": 1377 + }, + "positionImpulse": { + "#": 1378 + }, + "positionPrev": { + "#": 1379 + }, + "region": { + "#": 1380 + }, + "render": { + "#": 1381 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.893312727338529, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1383 + }, + "vertices": { + "#": 1384 + } + }, + [ + { + "#": 1369 + }, + { + "#": 1370 + } + ], + { + "x": 0.000896672642936138, + "y": 0.9999995979890051 + }, + { + "x": -0.9999995979890051, + "y": 0.000896672642936138 + }, + { + "max": { + "#": 1372 + }, + "min": { + "#": 1373 + } + }, + { + "x": 635.3135292531836, + "y": 274.1915014537995 + }, + { + "x": 599.7532316131228, + "y": 223.7374410230291 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 617.5296774562456, + "y": 247.51781961397018 + }, + { + "x": 0.00002739894326415095, + "y": 0.039151575354283694 + }, + { + "x": 617.5222715024305, + "y": 244.62451636508194 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1382 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.007405953815111843, + "y": 2.893303248888233 + }, + [ + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.7532316131228, + "y": 223.7692821268805 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 635.2635054034401, + "y": 223.7374410230291 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 635.3061232993684, + "y": 271.26635710105984 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 599.7958495090513, + "y": 271.2981982049113 + }, + { + "angle": 0.0040758980376136185, + "anglePrev": 0.003314071133014141, + "angularSpeed": 0.0007618269045994772, + "angularVelocity": 0.0007618269045994772, + "area": 888.874596, + "axes": { + "#": 1390 + }, + "bounds": { + "#": 1393 + }, + "collisionFilter": { + "#": 1396 + }, + "constraintImpulse": { + "#": 1397 + }, + "density": 0.001, + "force": { + "#": 1398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 526.7320316094421, + "inverseInertia": 0.0018984985533241191, + "inverseMass": 1.125018089728374, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.888874596, + "motion": 0, + "parent": null, + "position": { + "#": 1399 + }, + "positionImpulse": { + "#": 1400 + }, + "positionPrev": { + "#": 1401 + }, + "region": { + "#": 1402 + }, + "render": { + "#": 1403 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.890274209571275, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1405 + }, + "vertices": { + "#": 1406 + } + }, + [ + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "x": 0.004075886752178133, + "y": -0.9999916935390932 + }, + { + "x": 0.9999916935390932, + "y": 0.004075886752178133 + }, + { + "max": { + "#": 1394 + }, + "min": { + "#": 1395 + } + }, + { + "x": 616.0437971567472, + "y": 223.4339115481829 + }, + { + "x": 586.1085263179433, + "y": 193.49864070937895 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.0761617373453, + "y": 208.46627612878092 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.114184233442, + "y": 205.57625202917492 + }, + { + "endCol": 12, + "endRow": 4, + "id": "12,12,4,4", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1404 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03802249609668934, + "y": 2.8900240996059936 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.922278669118, + "y": 223.4339115481829 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.1085263179433, + "y": 223.31239306055343 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.2300448055726, + "y": 193.49864070937895 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 616.0437971567472, + "y": 193.6201591970084 + }, + { + "angle": -0.002783386967030695, + "anglePrev": -0.0024946274805489714, + "angularSpeed": 0.00028875948648172397, + "angularVelocity": 0.00012787233776153078, + "area": 1624.121534624581, + "axes": { + "#": 1412 + }, + "bounds": { + "#": 1415 + }, + "collisionFilter": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "density": 0.001, + "force": { + "#": 1420 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1766.6812602831346, + "inverseInertia": 0.0005660330601116675, + "inverseMass": 0.6157174686013581, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.624121534624581, + "motion": 0, + "parent": null, + "position": { + "#": 1421 + }, + "positionImpulse": { + "#": 1422 + }, + "positionPrev": { + "#": 1423 + }, + "region": { + "#": 1424 + }, + "render": { + "#": 1425 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8748046300421883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1427 + }, + "vertices": { + "#": 1428 + } + }, + [ + { + "#": 1413 + }, + { + "#": 1414 + } + ], + { + "x": 0.002783383373102884, + "y": 0.9999961263809966 + }, + { + "x": -0.9999961263809966, + "y": 0.002783383373102884 + }, + { + "max": { + "#": 1416 + }, + "min": { + "#": 1417 + } + }, + { + "x": 704.6115111816283, + "y": 249.31472921792906 + }, + { + "x": 662.2129663986888, + "y": 207.91727480716074 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 683.410944166116, + "y": 227.17860028053795 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 683.4083549180309, + "y": 224.30379681652406 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,4,5", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1426 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.002273345995490672, + "y": 2.8959226474923696 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 662.2129663986888, + "y": 208.03498192801905 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 704.5020258373787, + "y": 207.91727480716074 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 704.6089219335432, + "y": 246.32221863305685 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 662.3198624948533, + "y": 246.43992575391516 + }, + { + "angle": -0.00025875807812094384, + "anglePrev": -0.0002268091772194607, + "angularSpeed": 0.00003194890090148316, + "angularVelocity": 0.0010054792204830395, + "area": 925.4335858447538, + "axes": { + "#": 1434 + }, + "bounds": { + "#": 1437 + }, + "collisionFilter": { + "#": 1440 + }, + "constraintImpulse": { + "#": 1441 + }, + "density": 0.001, + "force": { + "#": 1442 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 658.9066011822378, + "inverseInertia": 0.001517665778739746, + "inverseMass": 1.080574570985751, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9254335858447538, + "motion": 0, + "parent": null, + "position": { + "#": 1443 + }, + "positionImpulse": { + "#": 1444 + }, + "positionPrev": { + "#": 1445 + }, + "region": { + "#": 1446 + }, + "render": { + "#": 1447 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907276896667345, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1449 + }, + "vertices": { + "#": 1450 + } + }, + [ + { + "#": 1435 + }, + { + "#": 1436 + } + ], + { + "x": 0.0002587580752333873, + "y": 0.9999999665221286 + }, + { + "x": -0.9999999665221286, + "y": 0.0002587580752333873 + }, + { + "max": { + "#": 1438 + }, + "min": { + "#": 1439 + } + }, + { + "x": 744.5806572818476, + "y": 257.3261568201473 + }, + { + "x": 704.5550324635433, + "y": 231.28057524037314 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 724.5648399103038, + "y": 242.84973068786002 + }, + { + "x": 0.0013465072982313721, + "y": -2.7039033746548556e-7 + }, + { + "x": 724.5588299855206, + "y": 239.9424600030596 + }, + { + "endCol": 15, + "endRow": 5, + "id": "14,15,4,5", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1448 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.006564328032027333, + "y": 2.870206846610671 + }, + [ + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 704.5550324635433, + "y": 231.29092909069163 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 744.5686628112151, + "y": 231.28057524037314 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 744.5746473570644, + "y": 254.4085322850284 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 704.5610170093926, + "y": 254.4188861353469 + }, + { + "angle": -0.0019200887443779299, + "anglePrev": -0.0017861405083555019, + "angularSpeed": 0.00013394823602242795, + "angularVelocity": -0.00013394823602242795, + "area": 5929.347511999999, + "axes": { + "#": 1456 + }, + "bounds": { + "#": 1470 + }, + "circleRadius": 43.65625, + "collisionFilter": { + "#": 1473 + }, + "constraintImpulse": { + "#": 1474 + }, + "density": 0.001, + "force": { + "#": 1475 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 22382.17146584697, + "inverseInertia": 0.00004467841744157413, + "inverseMass": 0.1686526212161066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.929347512, + "motion": 0, + "parent": null, + "position": { + "#": 1476 + }, + "positionImpulse": { + "#": 1477 + }, + "positionPrev": { + "#": 1478 + }, + "region": { + "#": 1479 + }, + "render": { + "#": 1480 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8928567980629825, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1482 + }, + "vertices": { + "#": 1483 + } + }, + [ + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + } + ], + { + "x": -0.9713942176016884, + "y": -0.237472680555056 + }, + { + "x": -0.8863462546960585, + "y": -0.46302301971529436 + }, + { + "x": -0.7497549986598874, + "y": -0.6617155295023023 + }, + { + "x": -0.5696916750026564, + "y": -0.8218585008580658 + }, + { + "x": -0.35641450869663505, + "y": -0.9343279392111402 + }, + { + "x": -0.1223847981124588, + "y": -0.9924827258904676 + }, + { + "x": 0.11857259525710447, + "y": -0.9929453860379205 + }, + { + "x": 0.35282390438341915, + "y": -0.9356897415787137 + }, + { + "x": 0.5665313996399128, + "y": -0.824040152675852 + }, + { + "x": 0.7472083715272521, + "y": -0.6645898355524194 + }, + { + "x": 0.8845616330394639, + "y": -0.4664233241965469 + }, + { + "x": 0.9704751200524477, + "y": -0.24120124659542502 + }, + { + "x": 0.9999981566301731, + "y": -0.001920087564566566 + }, + { + "max": { + "#": 1471 + }, + "min": { + "#": 1472 + } + }, + { + "x": 665.2948929391857, + "y": 373.1112626151112 + }, + { + "x": 578.5979013942713, + "y": 282.9065669194823 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 621.9468693263827, + "y": 326.5624864453291 + }, + { + "x": 0.0004585438743989066, + "y": 0.9116644998231591 + }, + { + "x": 621.9478136456912, + "y": 323.66962980139385 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,5,7", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1481 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0009443193084655377, + "y": 2.892856643935239 + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 665.2948929391857, + "y": 331.74126399064386 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 662.7955189574566, + "y": 341.9650818538228 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 657.9224212693929, + "y": 351.2934558237377 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650.9585586640168, + "y": 359.1838415946266 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 642.3090548329916, + "y": 365.17946045151524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 632.4762387385416, + "y": 368.93034723369436 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 622.0306926691015, + "y": 370.2184059711759 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 611.5802772575976, + "y": 368.97046938344346 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 601.7331296295656, + "y": 365.25736992453506 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 593.0606653914433, + "y": 359.29501082443994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 586.0665537265751, + "y": 351.43142563577715 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 581.1576694464827, + "y": 342.1218339624189 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 578.619052715109, + "y": 331.9076895003903 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 578.5988457135797, + "y": 321.38370890001437 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 581.0982196953089, + "y": 311.1598910368354 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 585.9713173833726, + "y": 301.8315170669205 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 592.9351799887487, + "y": 293.94113129603164 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 601.5846838197739, + "y": 287.945512439143 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 611.4174999142239, + "y": 284.1946256569639 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 621.8630459836639, + "y": 282.9065669194823 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 632.3134613951679, + "y": 284.15450350721466 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 642.1606090231999, + "y": 287.8676029661232 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 650.8330732613222, + "y": 293.8299620662183 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 657.8271849261904, + "y": 301.6935472548811 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 662.7360692062828, + "y": 311.0031389282393 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 665.2746859376565, + "y": 321.21728339026794 + }, + { + "angle": -0.000038634806615050086, + "anglePrev": -0.000032356370102542797, + "angularSpeed": 0.000006278436512507291, + "angularVelocity": -0.000006278436512507291, + "area": 2550.166396822507, + "axes": { + "#": 1511 + }, + "bounds": { + "#": 1514 + }, + "collisionFilter": { + "#": 1517 + }, + "constraintImpulse": { + "#": 1518 + }, + "density": 0.001, + "force": { + "#": 1519 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 10939.165130883785, + "inverseInertia": 0.00009141465441240754, + "inverseMass": 0.392131274745834, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5501663968225072, + "motion": 0, + "parent": null, + "position": { + "#": 1520 + }, + "positionImpulse": { + "#": 1521 + }, + "positionPrev": { + "#": 1522 + }, + "region": { + "#": 1523 + }, + "render": { + "#": 1524 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270881731703, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1526 + }, + "vertices": { + "#": 1527 + } + }, + [ + { + "#": 1512 + }, + { + "#": 1513 + } + ], + { + "x": 0.00003863480660543873, + "y": 0.9999999992536759 + }, + { + "x": -0.9999999992536759, + "y": 0.00003863480660543873 + }, + { + "max": { + "#": 1515 + }, + "min": { + "#": 1516 + } + }, + { + "x": 942.2908544493517, + "y": 327.956239736147 + }, + { + "x": 831.1951902898403, + "y": 302.08960150522455 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7435146248871, + "y": 313.5692852631679 + }, + { + "x": 0, + "y": 3.7579092842573476 + }, + { + "x": 886.7444991354693, + "y": 310.6620145481322 + }, + { + "endCol": 19, + "endRow": 6, + "id": "17,19,6,6", + "startCol": 17, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1525 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00098451058220121, + "y": 2.9072707150356583 + }, + [ + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 831.1961748004225, + "y": 302.0938935924269 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 942.2899675844512, + "y": 302.08960150522455 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 942.2908544493517, + "y": 325.0446769339089 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 831.197061665323, + "y": 325.0489690211113 + }, + { + "angle": 0.0005759784311782234, + "anglePrev": 0.0004673857127384818, + "angularSpeed": 0.00010860979007693026, + "angularVelocity": 0.00010859123358139756, + "area": 5174.381305999998, + "axes": { + "#": 1533 + }, + "bounds": { + "#": 1547 + }, + "circleRadius": 40.782407407407405, + "collisionFilter": { + "#": 1550 + }, + "constraintImpulse": { + "#": 1551 + }, + "density": 0.001, + "force": { + "#": 1552 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17045.3242729355, + "inverseInertia": 0.000058667115039154525, + "inverseMass": 0.1932598200369272, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.174381305999998, + "motion": 0, + "parent": null, + "position": { + "#": 1553 + }, + "positionImpulse": { + "#": 1554 + }, + "positionPrev": { + "#": 1555 + }, + "region": { + "#": 1556 + }, + "render": { + "#": 1557 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8864443835109737, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1559 + }, + "vertices": { + "#": 1560 + } + }, + [ + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + } + ], + { + "x": -0.9708009180084972, + "y": -0.23988659319324027 + }, + { + "x": -0.8851771645438719, + "y": -0.46525411053538407 + }, + { + "x": -0.748154197191907, + "y": -0.6635249032433773 + }, + { + "x": -0.5676034462896765, + "y": -0.8233020877904309 + }, + { + "x": -0.3540266978793912, + "y": -0.935235316478486 + }, + { + "x": -0.1199570068100042, + "y": -0.9927790874697073 + }, + { + "x": 0.12110056564794137, + "y": -0.9926402434919456 + }, + { + "x": 0.3551038134843471, + "y": -0.934826872553883 + }, + { + "x": 0.568551477963588, + "y": -0.8226476869872181 + }, + { + "x": 0.7489180526865123, + "y": -0.6626626218221775 + }, + { + "x": 0.8857125297736818, + "y": -0.4642341161546666 + }, + { + "x": 0.9710766128260195, + "y": -0.23876811349580437 + }, + { + "x": 0.9999998341244279, + "y": 0.0005759783993313058 + }, + { + "max": { + "#": 1548 + }, + "min": { + "#": 1549 + } + }, + { + "x": 1024.762589580815, + "y": 309.426223093475 + }, + { + "x": 943.7852691528607, + "y": 224.97579272302798 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 984.2747647864771, + "y": 265.75778595829036 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 984.2764356249367, + "y": 262.8713434786024 + }, + { + "endCol": 21, + "endRow": 6, + "id": "19,21,4,6", + "startCol": 19, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1558 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0016708383906234303, + "y": 2.8864423599114843 + }, + [ + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1024.7569265611935, + "y": 270.69710362834303 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1022.3984286616987, + "y": 280.2417467677211 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1017.824415527618, + "y": 288.94411367846766 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1011.3011779839202, + "y": 296.29935765460414 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1003.2069624866591, + "y": 301.87969648696014 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 994.0119561508534, + "y": 305.3604009392928 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 984.2512752353955, + "y": 306.5397791935528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 974.4919593887444, + "y": 305.34915784093795 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 965.3009687743386, + "y": 301.857863449755 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 957.2131869557982, + "y": 296.26820413494113 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 950.6984266621816, + "y": 288.9054505524343 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 946.1344413120333, + "y": 280.1978203510745 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 943.7869399921384, + "y": 270.6504666573491 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 943.7926030117609, + "y": 260.81846828823774 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 946.1511009112555, + "y": 251.2738251488596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 950.7251140453362, + "y": 242.571458238113 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 957.2483515890341, + "y": 235.21621426197655 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 965.3425670862952, + "y": 229.63587542962063 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 974.5375734221009, + "y": 226.15517097728784 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 984.2982543375588, + "y": 224.97579272302798 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 994.0575701842099, + "y": 226.16641407564288 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1003.2485607986157, + "y": 229.65770846682568 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1011.3363426171561, + "y": 235.24736778163958 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1017.8511029107726, + "y": 242.61012136414652 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1022.4150882609209, + "y": 251.31775156550614 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1024.762589580815, + "y": 260.86510525923165 + }, + { + "angle": 0.005215318776232612, + "anglePrev": 0.004300665099250729, + "angularSpeed": 0.0009147825701800186, + "angularVelocity": 0.0009146434753840851, + "area": 1308.2034644955884, + "axes": { + "#": 1588 + }, + "bounds": { + "#": 1591 + }, + "collisionFilter": { + "#": 1594 + }, + "constraintImpulse": { + "#": 1595 + }, + "density": 0.001, + "force": { + "#": 1596 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1149.8579054087725, + "inverseInertia": 0.0008696726745940854, + "inverseMass": 0.7644070873834413, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3082034644955884, + "motion": 0, + "parent": null, + "position": { + "#": 1597 + }, + "positionImpulse": { + "#": 1598 + }, + "positionPrev": { + "#": 1599 + }, + "region": { + "#": 1600 + }, + "render": { + "#": 1601 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9085329588007243, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1603 + }, + "vertices": { + "#": 1604 + } + }, + [ + { + "#": 1589 + }, + { + "#": 1590 + } + ], + { + "x": -0.005215295133877516, + "y": 0.9999864002558569 + }, + { + "x": -0.9999864002558569, + "y": -0.005215295133877516 + }, + { + "max": { + "#": 1592 + }, + "min": { + "#": 1593 + } + }, + { + "x": 1063.4035557284028, + "y": 267.88495338400406 + }, + { + "x": 1024.7103371794715, + "y": 230.79862411440666 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1044.0497055087815, + "y": 247.88754029662903 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1044.035223621705, + "y": 244.97903777397576 + }, + { + "endCol": 22, + "endRow": 5, + "id": "21,22,4,5", + "startCol": 21, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1602 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.01448188680342355, + "y": 2.9085029964091405 + }, + [ + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1024.8875398430553, + "y": 230.79862411440666 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1063.3890738380912, + "y": 230.999423708121 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1063.2118711745075, + "y": 264.97645647885133 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1024.7103371794715, + "y": 264.77565688513704 + }, + { + "angle": 0.0010068165951771816, + "anglePrev": 0.0008092804646098001, + "angularSpeed": 0.0001975361305673816, + "angularVelocity": 0.0001975361305673816, + "area": 3803.7767479999993, + "axes": { + "#": 1610 + }, + "bounds": { + "#": 1618 + }, + "collisionFilter": { + "#": 1621 + }, + "constraintImpulse": { + "#": 1622 + }, + "density": 0.001, + "force": { + "#": 1623 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 9247.768748441516, + "inverseInertia": 0.00010813419184692798, + "inverseMass": 0.2628966067805618, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.8037767479999993, + "motion": 0, + "parent": null, + "position": { + "#": 1624 + }, + "positionImpulse": { + "#": 1625 + }, + "positionPrev": { + "#": 1626 + }, + "region": { + "#": 1627 + }, + "render": { + "#": 1628 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9038330396339864, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1630 + }, + "vertices": { + "#": 1631 + } + }, + [ + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": 0.622700635195836, + "y": 0.7824601708244979 + }, + { + "x": -0.22352425665971687, + "y": 0.9746983670268057 + }, + { + "x": -0.90139824175166, + "y": 0.43299100425645803 + }, + { + "x": -0.90052452982607, + "y": -0.4348052106191181 + }, + { + "x": -0.22156111983981291, + "y": -0.9751464865215524 + }, + { + "x": 0.6242749594636726, + "y": -0.7812046946777966 + }, + { + "x": 0.9999994931602146, + "y": 0.0010068164250789402 + }, + { + "max": { + "#": 1619 + }, + "min": { + "#": 1620 + } + }, + { + "x": 1132.866508594451, + "y": 309.6016662720312 + }, + { + "x": 1061.9704006640247, + "y": 233.99987413989194 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1099.2542424385326, + "y": 270.3405030274319 + }, + { + "x": 0.05117406639846281, + "y": 0.10920311750433508 + }, + { + "x": 1099.249385855145, + "y": 267.4366740490539 + }, + { + "endCol": 23, + "endRow": 6, + "id": "22,23,4,6", + "startCol": 22, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1629 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004856583387565934, + "y": 2.903828978377989 + }, + [ + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1132.8290774724467, + "y": 286.55131493909767 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1107.5137807920325, + "y": 306.6978372936532 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1075.9790458570333, + "y": 299.46608393921974 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1061.9704006640247, + "y": 270.30296502411755 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1076.0377412409825, + "y": 241.16811348696564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1107.5869743325027, + "y": 233.99987413989194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1132.8616520110634, + "y": 254.19733133739217 + }, + { + "angle": 0.0016018059608835778, + "anglePrev": 0.0011371824932012876, + "angularSpeed": 0.0004646234676822902, + "angularVelocity": 0.0004646234676822902, + "area": 1519.5385669833, + "axes": { + "#": 1640 + }, + "bounds": { + "#": 1643 + }, + "collisionFilter": { + "#": 1646 + }, + "constraintImpulse": { + "#": 1647 + }, + "density": 0.001, + "force": { + "#": 1648 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1623.6987742797708, + "inverseInertia": 0.0006158777821604092, + "inverseMass": 0.6580945174595165, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5195385669833, + "motion": 0, + "parent": null, + "position": { + "#": 1649 + }, + "positionImpulse": { + "#": 1650 + }, + "positionPrev": { + "#": 1651 + }, + "region": { + "#": 1652 + }, + "render": { + "#": 1653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.916338430253875, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1655 + }, + "vertices": { + "#": 1656 + } + }, + [ + { + "#": 1641 + }, + { + "#": 1642 + } + ], + { + "x": -0.001601805275902759, + "y": 0.9999987171091061 + }, + { + "x": -0.9999987171091061, + "y": -0.001601805275902759 + }, + { + "max": { + "#": 1644 + }, + "min": { + "#": 1645 + } + }, + { + "x": 1166.9243594116406, + "y": 280.207987604638 + }, + { + "x": 1133.7894899110763, + "y": 231.2739921387689 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1150.3556672939837, + "y": 254.28282119868538 + }, + { + "x": 0.1523448315660515, + "y": 0 + }, + { + "x": 1150.3531525592343, + "y": 251.3664838526493 + }, + { + "endCol": 24, + "endRow": 5, + "id": "23,24,4,5", + "startCol": 23, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1654 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0025147347495044414, + "y": 2.9163373460360815 + }, + [ + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1133.8631165115553, + "y": 231.2739921387689 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1166.9218446768912, + "y": 231.32694585189262 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1166.8482180764122, + "y": 277.2916502586019 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1133.7894899110763, + "y": 277.2386965454782 + }, + { + "angle": 0.0005415300782745569, + "anglePrev": 0.0003750762621455109, + "angularSpeed": 0.00016645381612904607, + "angularVelocity": 0.00016645381612904607, + "area": 3306.4800040000005, + "axes": { + "#": 1662 + }, + "bounds": { + "#": 1665 + }, + "collisionFilter": { + "#": 1668 + }, + "constraintImpulse": { + "#": 1669 + }, + "density": 0.001, + "force": { + "#": 1670 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 7288.540011234562, + "inverseInertia": 0.00013720168901571494, + "inverseMass": 0.302436427496992, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.3064800040000004, + "motion": 0, + "parent": null, + "position": { + "#": 1671 + }, + "positionImpulse": { + "#": 1672 + }, + "positionPrev": { + "#": 1673 + }, + "region": { + "#": 1674 + }, + "render": { + "#": 1675 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.896749886789834, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1677 + }, + "vertices": { + "#": 1678 + } + }, + [ + { + "#": 1663 + }, + { + "#": 1664 + } + ], + { + "x": 0.0005415300518068393, + "y": -0.9999998533725909 + }, + { + "x": 0.9999998533725909, + "y": 0.0005415300518068393 + }, + { + "max": { + "#": 1666 + }, + "min": { + "#": 1667 + } + }, + { + "x": 1224.5551733993227, + "y": 291.6667206791549 + }, + { + "x": 1167.0172137229936, + "y": 231.2368441878458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1195.7837790378285, + "y": 260.00340950268065 + }, + { + "x": 0.17893044209522044, + "y": 0 + }, + { + "x": 1195.7789499911692, + "y": 257.1066636410412 + }, + { + "endCol": 25, + "endRow": 6, + "id": "24,25,4,6", + "startCol": 24, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1676 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0048290466592789015, + "y": 2.8967458616394497 + }, + [ + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1224.5192052916245, + "y": 288.76997481751545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1167.0172137229936, + "y": 288.7388357564764 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1167.0483527840324, + "y": 231.2368441878458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1224.5503443526634, + "y": 231.2679832488848 + }, + { + "angle": 0.09646758383546279, + "anglePrev": 0.05524179378105192, + "angularSpeed": 0.02637703748507025, + "angularVelocity": 0.041345911697679906, + "area": 1545.32445, + "axes": { + "#": 1684 + }, + "bounds": { + "#": 1688 + }, + "collisionFilter": { + "#": 1691 + }, + "constraintImpulse": { + "#": 1692 + }, + "density": 0.001, + "force": { + "#": 1693 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 1838.3045471526925, + "inverseInertia": 0.000543979506305893, + "inverseMass": 0.6471132971461107, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.54532445, + "motion": 0, + "parent": null, + "position": { + "#": 1694 + }, + "positionImpulse": { + "#": 1695 + }, + "positionPrev": { + "#": 1696 + }, + "region": { + "#": 1697 + }, + "render": { + "#": 1698 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9658761694212394, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1700 + }, + "vertices": { + "#": 1701 + } + }, + [ + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + } + ], + { + "x": -0.5810984153801214, + "y": 0.8138332947494297 + }, + { + "x": -0.41427178422050775, + "y": -0.9101532227041538 + }, + { + "x": 0.9953506099127498, + "y": 0.09631803230090027 + }, + { + "max": { + "#": 1689 + }, + "min": { + "#": 1690 + } + }, + { + "x": 73.60382972574239, + "y": 383.2554819006096 + }, + { + "x": 19.14340272911872, + "y": 321.8293733950566 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 53.56198883296918, + "y": 349.8994916461215 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 53.70692118322666, + "y": 348.4799730486829 + }, + { + "endCol": 1, + "endRow": 7, + "id": "0,1,6,7", + "startCol": 0, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1699 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.13713766848874798, + "y": 1.420028326463978 + }, + [ + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 67.84979047608664, + "y": 381.2916188312443 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 19.23234629707843, + "y": 346.57748271206333 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.60382972574239, + "y": 321.8293733950566 + }, + { + "angle": 0.04542632479840823, + "anglePrev": 0.015100375892011951, + "angularSpeed": 0.01961080953988165, + "angularVelocity": 0.029959642718528655, + "area": 832.6916065934118, + "axes": { + "#": 1706 + }, + "bounds": { + "#": 1709 + }, + "collisionFilter": { + "#": 1712 + }, + "constraintImpulse": { + "#": 1713 + }, + "density": 0.001, + "force": { + "#": 1714 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 462.4740461527257, + "inverseInertia": 0.0021622835017854466, + "inverseMass": 1.2009247986671274, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8326916065934119, + "motion": 0, + "parent": null, + "position": { + "#": 1715 + }, + "positionImpulse": { + "#": 1716 + }, + "positionPrev": { + "#": 1717 + }, + "region": { + "#": 1718 + }, + "render": { + "#": 1719 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6841381572634058, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1721 + }, + "vertices": { + "#": 1722 + } + }, + [ + { + "#": 1707 + }, + { + "#": 1708 + } + ], + { + "x": -0.04541070315408689, + "y": 0.9989684019222287 + }, + { + "x": -0.9989684019222287, + "y": -0.04541070315408689 + }, + { + "max": { + "#": 1710 + }, + "min": { + "#": 1711 + } + }, + { + "x": 99.95093731933271, + "y": 365.1952121659288 + }, + { + "x": 69.2630141600486, + "y": 332.8012089520682 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 84.5474252571035, + "y": 347.65746332262506 + }, + { + "x": -0.18858798610637573, + "y": 0.6169831932927986 + }, + { + "x": 84.46747853797147, + "y": 345.1108088985189 + }, + { + "endCol": 2, + "endRow": 7, + "id": "1,2,6,7", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1720 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.065481204862607, + "y": 2.545708459574371 + }, + [ + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 70.55317218125623, + "y": 332.8012089520682 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 99.8318363541584, + "y": 334.1321466723659 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 98.54167833295077, + "y": 362.51371769318195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 69.2630141600486, + "y": 361.18277997288425 + }, + { + "angle": -0.00043914411997285954, + "anglePrev": 0.00045602332338347306, + "angularSpeed": 0.0005491442897683927, + "angularVelocity": -0.0010373271852911951, + "area": 979.5317619999998, + "axes": { + "#": 1728 + }, + "bounds": { + "#": 1734 + }, + "collisionFilter": { + "#": 1737 + }, + "constraintImpulse": { + "#": 1738 + }, + "density": 0.001, + "force": { + "#": 1739 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 621.1930410018283, + "inverseInertia": 0.0016098055419089229, + "inverseMass": 1.0208959410955785, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9795317619999999, + "motion": 0, + "parent": null, + "position": { + "#": 1740 + }, + "positionImpulse": { + "#": 1741 + }, + "positionPrev": { + "#": 1742 + }, + "region": { + "#": 1743 + }, + "render": { + "#": 1744 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9065087137626606, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1746 + }, + "vertices": { + "#": 1747 + } + }, + [ + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + } + ], + { + "x": 0.30945725546132413, + "y": 0.9509133541192621 + }, + { + "x": -0.8087623227270339, + "y": 0.5881356181504171 + }, + { + "x": -0.80927856332188, + "y": -0.5874250649637571 + }, + { + "x": 0.308621960196424, + "y": -0.9511847799899434 + }, + { + "x": 0.9999999035762226, + "y": -0.00043914410585821454 + }, + { + "max": { + "#": 1735 + }, + "min": { + "#": 1736 + } + }, + { + "x": 134.1758595136418, + "y": 367.1616437172722 + }, + { + "x": 97.37599322389606, + "y": 325.64814909765516 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 117.67308779488164, + "y": 344.9493928820688 + }, + { + "x": -0.1066078459262223, + "y": 0.21792313324288082 + }, + { + "x": 117.55124179240889, + "y": 342.0413719912467 + }, + { + "endCol": 2, + "endRow": 7, + "id": "2,2,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1745 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1464698886719873, + "y": 2.9113324578019046 + }, + [ + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 134.09922867259073, + "y": 356.8721805887606 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 111.40946910937205, + "y": 364.2561453749258 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 97.37599322389606, + "y": 344.95830623237515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 111.39251463373309, + "y": 325.64814909765516 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 134.08875069422498, + "y": 333.01218288943187 + }, + { + "angle": 0.0014260426605716507, + "anglePrev": 0.000505927396948899, + "angularSpeed": 0.001030312020675625, + "angularVelocity": 0.0008504186374617024, + "area": 1515.3131811080627, + "axes": { + "#": 1754 + }, + "bounds": { + "#": 1757 + }, + "collisionFilter": { + "#": 1760 + }, + "constraintImpulse": { + "#": 1761 + }, + "density": 0.001, + "force": { + "#": 1762 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1532.4206796199487, + "inverseInertia": 0.0006525623239749069, + "inverseMass": 0.6599295858224876, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5153131811080627, + "motion": 0, + "parent": null, + "position": { + "#": 1763 + }, + "positionImpulse": { + "#": 1764 + }, + "positionPrev": { + "#": 1765 + }, + "region": { + "#": 1766 + }, + "render": { + "#": 1767 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905423983396114, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1769 + }, + "vertices": { + "#": 1770 + } + }, + [ + { + "#": 1755 + }, + { + "#": 1756 + } + ], + { + "x": -0.0014260421772388614, + "y": 0.9999989832013374 + }, + { + "x": -0.9999989832013374, + "y": -0.0014260421772388614 + }, + { + "max": { + "#": 1758 + }, + "min": { + "#": 1759 + } + }, + { + "x": 172.10026847041897, + "y": 365.38797016161607 + }, + { + "x": 132.1583611978957, + "y": 324.38916542932833 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 152.1043793349933, + "y": 343.43606982586783 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 152.00423866157445, + "y": 340.53477593508904 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1768 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11528362781527335, + "y": 2.9048246329016365 + }, + [ + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 132.21260361700766, + "y": 324.38916542932833 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 172.0503974720909, + "y": 324.4459758613786 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 171.99615505297893, + "y": 362.48297422240734 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 132.1583611978957, + "y": 362.42616379035707 + }, + { + "angle": 0.00046563970415831657, + "anglePrev": -0.0012296498550972302, + "angularSpeed": 0.0002674299541495036, + "angularVelocity": 0.0018110831187336, + "area": 1347.9278604289448, + "axes": { + "#": 1776 + }, + "bounds": { + "#": 1779 + }, + "collisionFilter": { + "#": 1782 + }, + "constraintImpulse": { + "#": 1783 + }, + "density": 0.001, + "force": { + "#": 1784 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1394.5666895178056, + "inverseInertia": 0.000717068611717498, + "inverseMass": 0.7418794650344082, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3479278604289449, + "motion": 0, + "parent": null, + "position": { + "#": 1785 + }, + "positionImpulse": { + "#": 1786 + }, + "positionPrev": { + "#": 1787 + }, + "region": { + "#": 1788 + }, + "render": { + "#": 1789 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.916780992780761, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1791 + }, + "vertices": { + "#": 1792 + } + }, + [ + { + "#": 1777 + }, + { + "#": 1778 + } + ], + { + "x": -0.000465639687331624, + "y": 0.9999998915898347 + }, + { + "x": -0.9999998915898347, + "y": -0.000465639687331624 + }, + { + "max": { + "#": 1780 + }, + "min": { + "#": 1781 + } + }, + { + "x": 198.18688906563244, + "y": 375.53880366081376 + }, + { + "x": 170.15932294611633, + "y": 324.43254878390735 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 184.15999262327418, + "y": 348.52734468284063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 184.0792938838808, + "y": 345.5951827370011 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1790 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.06367533697587646, + "y": 2.928192757105535 + }, + [ + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170.1817558686096, + "y": 324.43254878390735 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.16066230043202, + "y": 324.44557687456245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 198.13822937793876, + "y": 372.6221405817739 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 170.15932294611633, + "y": 372.6091124911188 + }, + { + "angle": 0.001559315418155919, + "anglePrev": 0.0017551967554316286, + "angularSpeed": 0.00048091923618740374, + "angularVelocity": -0.000030721174365045886, + "area": 2285.4053614040354, + "axes": { + "#": 1798 + }, + "bounds": { + "#": 1801 + }, + "collisionFilter": { + "#": 1804 + }, + "constraintImpulse": { + "#": 1805 + }, + "density": 0.001, + "force": { + "#": 1806 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 3483.877210739159, + "inverseInertia": 0.00028703652267579035, + "inverseMass": 0.43755913803652385, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.2854053614040355, + "motion": 0, + "parent": null, + "position": { + "#": 1807 + }, + "positionImpulse": { + "#": 1808 + }, + "positionPrev": { + "#": 1809 + }, + "region": { + "#": 1810 + }, + "render": { + "#": 1811 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.924557624245259, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1813 + }, + "vertices": { + "#": 1814 + } + }, + [ + { + "#": 1799 + }, + { + "#": 1800 + } + ], + { + "x": -0.0015593147862526296, + "y": 0.9999987842679596 + }, + { + "x": -0.9999987842679596, + "y": -0.0015593147862526296 + }, + { + "max": { + "#": 1802 + }, + "min": { + "#": 1803 + } + }, + { + "x": 243.48833981970324, + "y": 376.03211990027535 + }, + { + "x": 196.37156536049537, + "y": 324.44811285443046 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.93139062956413, + "y": 348.7778382723314 + }, + { + "x": 0.112304786898477, + "y": 0.0003814195461872569 + }, + { + "x": 219.91655277444178, + "y": 345.83797065075817 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1812 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.006633280453399948, + "y": 2.937291667842601 + }, + [ + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 196.4502025610988, + "y": 324.44811285443046 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.48833981970324, + "y": 324.5214602065464 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 243.41257869802948, + "y": 373.1075636902323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 196.37444143942503, + "y": 373.0342163381164 + }, + { + "angle": -0.0014866533352386525, + "anglePrev": -0.0009229689275449855, + "angularSpeed": 0.000517976252648514, + "angularVelocity": -0.0005597263961119491, + "area": 4327.82858, + "axes": { + "#": 1820 + }, + "bounds": { + "#": 1826 + }, + "collisionFilter": { + "#": 1829 + }, + "constraintImpulse": { + "#": 1830 + }, + "density": 0.001, + "force": { + "#": 1831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 12126.33710521863, + "inverseInertia": 0.0000824651328198393, + "inverseMass": 0.23106275618707614, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.32782858, + "motion": 0, + "parent": null, + "position": { + "#": 1832 + }, + "positionImpulse": { + "#": 1833 + }, + "positionPrev": { + "#": 1834 + }, + "region": { + "#": 1835 + }, + "render": { + "#": 1836 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9129456797574864, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1838 + }, + "vertices": { + "#": 1839 + } + }, + [ + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + } + ], + { + "x": 0.3104365009753635, + "y": 0.9505941188868009 + }, + { + "x": -0.8081440692449375, + "y": 0.5889848583318874 + }, + { + "x": -0.8098917270552894, + "y": -0.586579398246649 + }, + { + "x": 0.30760872509117004, + "y": -0.9515129385603671 + }, + { + "x": 0.999998894931134, + "y": -0.0014866527876205072 + }, + { + "max": { + "#": 1827 + }, + "min": { + "#": 1828 + } + }, + { + "x": 319.00931727065876, + "y": 408.61233381829385 + }, + { + "x": 241.7739707537436, + "y": 324.54753436851934 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 284.4560272652661, + "y": 365.10388956929506 + }, + { + "x": 0.42232919391354146, + "y": 0.018994661139183716 + }, + { + "x": 284.44945490215514, + "y": 362.1928921703484 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,6,8", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1837 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0071083921857280075, + "y": 2.910994128623088 + }, + [ + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.00931727065876, + "y": 390.12954847946355 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 271.33241161399917, + "y": 405.69944468997085 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 241.79212176791876, + "y": 365.1673160534241 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 271.2117667669782, + "y": 324.54753436851934 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 318.9347556867485, + "y": 339.9756039030876 + }, + { + "angle": -0.0010531361102397263, + "anglePrev": -0.000863756148134867, + "angularSpeed": 0.00022846115297220972, + "angularVelocity": -0.00018794476207046706, + "area": 2032.7292721140495, + "axes": { + "#": 1846 + }, + "bounds": { + "#": 1849 + }, + "collisionFilter": { + "#": 1852 + }, + "constraintImpulse": { + "#": 1853 + }, + "density": 0.001, + "force": { + "#": 1854 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 6700.374119056197, + "inverseInertia": 0.00014924539767950423, + "inverseMass": 0.49194942667401764, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.0327292721140497, + "motion": 0, + "parent": null, + "position": { + "#": 1855 + }, + "positionImpulse": { + "#": 1856 + }, + "positionPrev": { + "#": 1857 + }, + "region": { + "#": 1858 + }, + "render": { + "#": 1859 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.884528459888629, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1861 + }, + "vertices": { + "#": 1862 + } + }, + [ + { + "#": 1847 + }, + { + "#": 1848 + } + ], + { + "x": 0.0010531359155682876, + "y": 0.999999445452218 + }, + { + "x": -0.999999445452218, + "y": 0.0010531359155682876 + }, + { + "max": { + "#": 1850 + }, + "min": { + "#": 1851 + } + }, + { + "x": 414.814636059726, + "y": 348.22177072534953 + }, + { + "x": 317.54903164425764, + "y": 324.3262366861794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.19408524425523, + "y": 334.8317915118192 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.20051766005594, + "y": 331.94841924875334 + }, + { + "endCol": 8, + "endRow": 7, + "id": "6,8,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1860 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.007553834279235616, + "y": 2.883228247588306 + }, + [ + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.57353442878446, + "y": 324.42862164977345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.7926163185976, + "y": 324.3262366861794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 414.814636059726, + "y": 345.2349613738649 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 317.5955541699129, + "y": 345.33734633745894 + }, + { + "angle": -0.001490873200472463, + "anglePrev": -0.0012132323596206907, + "angularSpeed": 0.00030207680584474166, + "angularVelocity": -0.0002728631914368446, + "area": 1931.953486546484, + "axes": { + "#": 1868 + }, + "bounds": { + "#": 1871 + }, + "collisionFilter": { + "#": 1874 + }, + "constraintImpulse": { + "#": 1875 + }, + "density": 0.001, + "force": { + "#": 1876 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 4690.996610130106, + "inverseInertia": 0.00021317431733813697, + "inverseMass": 0.517610805313733, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.9319534865464842, + "motion": 0, + "parent": null, + "position": { + "#": 1877 + }, + "positionImpulse": { + "#": 1878 + }, + "positionPrev": { + "#": 1879 + }, + "region": { + "#": 1880 + }, + "render": { + "#": 1881 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8641385462224083, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1883 + }, + "vertices": { + "#": 1884 + } + }, + [ + { + "#": 1869 + }, + { + "#": 1870 + } + ], + { + "x": 0.0014908726481778264, + "y": 0.9999988886487556 + }, + { + "x": -0.9999988886487556, + "y": 0.0014908726481778264 + }, + { + "max": { + "#": 1872 + }, + "min": { + "#": 1873 + } + }, + { + "x": 496.0010757671508, + "y": 352.8386978379708 + }, + { + "x": 413.9153578995709, + "y": 326.30191457135635 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 454.96616204164536, + "y": 338.13825897197376 + }, + { + "x": 1.2336414516892564, + "y": 0.44423482037769646 + }, + { + "x": 454.9691565948518, + "y": 335.2749439886894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "8,10,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1882 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0040320698784626074, + "y": 2.8633015014171406 + }, + [ + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.93124831613994, + "y": 326.4242180227365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.9659651027583, + "y": 326.30191457135635 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 496.0010757671508, + "y": 349.852299921211 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 413.96635898053245, + "y": 349.97460337259116 + }, + { + "angle": 0.0013513423839911266, + "anglePrev": 0.0015271492001903838, + "angularSpeed": 0.00019007545764847494, + "angularVelocity": -0.0001812390606075161, + "area": 2376.3179650719107, + "axes": { + "#": 1890 + }, + "bounds": { + "#": 1893 + }, + "collisionFilter": { + "#": 1896 + }, + "constraintImpulse": { + "#": 1897 + }, + "density": 0.001, + "force": { + "#": 1898 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 3764.591504006761, + "inverseInertia": 0.0002656330703970595, + "inverseMass": 0.42081910531267586, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.3763179650719106, + "motion": 0, + "parent": null, + "position": { + "#": 1899 + }, + "positionImpulse": { + "#": 1900 + }, + "positionPrev": { + "#": 1901 + }, + "region": { + "#": 1902 + }, + "render": { + "#": 1903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.848946947895017, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1905 + }, + "vertices": { + "#": 1906 + } + }, + [ + { + "#": 1891 + }, + { + "#": 1892 + } + ], + { + "x": -0.0013513419727042, + "y": 0.9999990869370197 + }, + { + "x": -0.9999990869370197, + "y": -0.0013513419727042 + }, + { + "max": { + "#": 1894 + }, + "min": { + "#": 1895 + } + }, + { + "x": 544.4619993827388, + "y": 367.2215224700327 + }, + { + "x": 495.65488571105976, + "y": 315.5530245096871 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.0584525821918, + "y": 339.9628000159477 + }, + { + "x": 1.3859572023549749, + "y": 0.0018729038499931368 + }, + { + "x": 520.0579411607022, + "y": 337.1150112915456 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1904 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0013549255918405834, + "y": 2.847799685199732 + }, + [ + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 495.72078874254134, + "y": 315.5530245096871 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 544.4619993827388, + "y": 315.61889061356555 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 544.3961164218423, + "y": 364.37257552220836 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 495.654905781645, + "y": 364.3067094183299 + }, + { + "angle": -0.0007002988990403515, + "anglePrev": -0.00031332836519421057, + "angularSpeed": 0.00038697053384614095, + "angularVelocity": -0.00038697053384614095, + "area": 7163.665109999999, + "axes": { + "#": 1912 + }, + "bounds": { + "#": 1926 + }, + "circleRadius": 47.985725308641975, + "collisionFilter": { + "#": 1929 + }, + "constraintImpulse": { + "#": 1930 + }, + "density": 0.001, + "force": { + "#": 1931 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 32670.739096352663, + "inverseInertia": 0.000030608429060964806, + "inverseMass": 0.13959334846684368, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.163665109999999, + "motion": 0, + "parent": null, + "position": { + "#": 1932 + }, + "positionImpulse": { + "#": 1933 + }, + "positionPrev": { + "#": 1934 + }, + "region": { + "#": 1935 + }, + "render": { + "#": 1936 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.88342069516564, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1938 + }, + "vertices": { + "#": 1939 + } + }, + [ + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + } + ], + { + "x": -0.97109794163339, + "y": -0.2386813519221674 + }, + { + "x": -0.8857791616949696, + "y": -0.4641069668804345 + }, + { + "x": -0.7489837205893546, + "y": -0.6625883988511474 + }, + { + "x": -0.5686303175545118, + "y": -0.8225931934789243 + }, + { + "x": -0.35526202880471164, + "y": -0.9347667574799395 + }, + { + "x": -0.12128209434848417, + "y": -0.9926180804269312 + }, + { + "x": 0.1198917171472844, + "y": -0.9927869742092083 + }, + { + "x": 0.35395244851639435, + "y": -0.9352634196787819 + }, + { + "x": 0.5674776379820722, + "y": -0.8233888087594392 + }, + { + "x": 0.7480549664094047, + "y": -0.6636367735668545 + }, + { + "x": 0.8851282659066879, + "y": -0.46534713160501967 + }, + { + "x": 0.9707626926780121, + "y": -0.24004123500876942 + }, + { + "x": 0.9999997547907362, + "y": -0.0007002988418004249 + }, + { + "max": { + "#": 1927 + }, + "min": { + "#": 1928 + } + }, + { + "x": 620.3371452107467, + "y": 454.91130776872467 + }, + { + "x": 525.0149529911514, + "y": 356.0562181803098 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 572.6971063630343, + "y": 404.04220641369807 + }, + { + "x": 0.6465051707789972, + "y": 0.8750259807722176 + }, + { + "x": 572.7392208872049, + "y": 401.1590932920597 + }, + { + "endCol": 12, + "endRow": 9, + "id": "10,12,7,9", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1937 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.04211452417050168, + "y": 2.8831131216383783 + }, + [ + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 620.3371452107467, + "y": 409.79284555977966 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 617.5760116463225, + "y": 421.0267819330822 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 612.2071861256039, + "y": 431.2735442279772 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.5422518942754, + "y": 439.9379140971256 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 595.026855892357, + "y": 446.5155793308294 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.2137311703896, + "y": 450.62515275725394 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 572.7307109032569, + "y": 452.0281946470863 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 561.2457368023557, + "y": 450.64123722105245 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 550.4268668286902, + "y": 446.5468126591738 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 540.9022674993928, + "y": 439.9824811154179 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 533.2252054927219, + "y": 431.3288552311003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 527.8420336499307, + "y": 421.08962254935227 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 525.065168572324, + "y": 409.8595644310357 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 525.0570675153219, + "y": 398.2915672676165 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 527.8182010797461, + "y": 387.05763089431395 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 533.1870266004647, + "y": 376.81086859941894 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 540.8519608317935, + "y": 368.14649873027054 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.3673568337116, + "y": 361.56883349656675 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 561.1804815556791, + "y": 357.4592600701422 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 572.6635018228118, + "y": 356.0562181803098 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 584.1484759237129, + "y": 357.4431756063437 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 594.9673458973784, + "y": 361.53760016822235 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 604.4919452266759, + "y": 368.10193171197824 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 612.1690072333467, + "y": 376.75555759629583 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 617.5521790761379, + "y": 386.99479027804387 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 620.3290441537447, + "y": 398.2248483963604 + }, + { + "angle": -0.00029363277966316297, + "anglePrev": -0.000220734435934219, + "angularSpeed": 0.00007289834372894394, + "angularVelocity": -0.00007289834372894394, + "area": 6059.0497460000015, + "axes": { + "#": 1967 + }, + "bounds": { + "#": 1981 + }, + "circleRadius": 44.13130144032922, + "collisionFilter": { + "#": 1984 + }, + "constraintImpulse": { + "#": 1985 + }, + "density": 0.001, + "force": { + "#": 1986 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 23372.08438446153, + "inverseInertia": 0.00004278608546633651, + "inverseMass": 0.16504238154838874, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.059049746000001, + "motion": 0, + "parent": null, + "position": { + "#": 1987 + }, + "positionImpulse": { + "#": 1988 + }, + "positionPrev": { + "#": 1989 + }, + "region": { + "#": 1990 + }, + "render": { + "#": 1991 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8509097506491803, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1993 + }, + "vertices": { + "#": 1994 + } + }, + [ + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + } + ], + { + "x": -0.9709927670469352, + "y": -0.23910885877051105 + }, + { + "x": -0.8855923445773858, + "y": -0.46446334540621054 + }, + { + "x": -0.7487282042148282, + "y": -0.6628771199952815 + }, + { + "x": -0.5682974548383933, + "y": -0.82282319049976 + }, + { + "x": -0.3548976009690992, + "y": -0.9349051785215323 + }, + { + "x": -0.12079689858077884, + "y": -0.9926772432635216 + }, + { + "x": 0.12021391262752491, + "y": -0.9927480119399795 + }, + { + "x": 0.35434850218938735, + "y": -0.9351134364322534 + }, + { + "x": 0.5678141411475248, + "y": -0.8231567901152846 + }, + { + "x": 0.7483387902235648, + "y": -0.663316707950834 + }, + { + "x": 0.8853194285548274, + "y": -0.46498334316763823 + }, + { + "x": 0.9708521792189264, + "y": -0.23967904811614524 + }, + { + "x": 0.9999999568898957, + "y": -0.0002936327754436497 + }, + { + "max": { + "#": 1982 + }, + "min": { + "#": 1983 + } + }, + { + "x": 708.6036149347946, + "y": 459.7288344861698 + }, + { + "x": 620.9385680618153, + "y": 368.61623685737 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 664.7920549907155, + "y": 412.74723495487797 + }, + { + "x": 0.8573603565530444, + "y": 0.8416435585696732 + }, + { + "x": 664.8339819755367, + "y": 409.89663352109415 + }, + { + "endCol": 14, + "endRow": 9, + "id": "12,14,7,9", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1992 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.04192698482120363, + "y": 2.8506014337838206 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 708.6036149347946, + "y": 418.0533706736831 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 706.0596482711661, + "y": 428.3841181110348 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 701.1184145050474, + "y": 437.8055694253795 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 694.0657533006126, + "y": 445.7716406612813 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 685.3125281009036, + "y": 451.817211155716 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 675.3656364062247, + "y": 455.5931320519116 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 664.8050132987287, + "y": 456.87823305238595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 654.2436373167963, + "y": 455.59933416339453 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 644.294529869194, + "y": 451.82925538489917 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5377558237609, + "y": 445.7888264003625 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 628.4804176364789, + "y": 437.826898322922 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 623.5336518288708, + "y": 428.40835044946107 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 620.9836187121018, + "y": 418.07909877746744 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 620.9804950466365, + "y": 407.44109923607283 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 623.524461710265, + "y": 397.1103517987211 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 628.4656954763836, + "y": 387.68890048437646 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 635.5183566808184, + "y": 379.7228292484746 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 644.2715818805275, + "y": 373.67725875403994 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 654.2184735752064, + "y": 369.90133785784434 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 664.7790966827024, + "y": 368.61623685737 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 675.3404726646348, + "y": 369.8951357463614 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 685.2895801122371, + "y": 373.66521452485676 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 694.0463541576702, + "y": 379.70564350939344 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 701.1036923449522, + "y": 387.66757158683396 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 706.0504581525603, + "y": 397.08611946029487 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 708.6004912693293, + "y": 407.4153711322885 + }, + { + "angle": -0.026607942507055272, + "anglePrev": -0.023654793636616104, + "angularSpeed": 0.0029531488704391674, + "angularVelocity": -0.0029531488704391674, + "area": 1190.42275, + "axes": { + "#": 2022 + }, + "bounds": { + "#": 2028 + }, + "collisionFilter": { + "#": 2031 + }, + "constraintImpulse": { + "#": 2032 + }, + "density": 0.001, + "force": { + "#": 2033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 917.4702110738278, + "inverseInertia": 0.001089953644194701, + "inverseMass": 0.8400377092927702, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.19042275, + "motion": 0, + "parent": null, + "position": { + "#": 2034 + }, + "positionImpulse": { + "#": 2035 + }, + "positionPrev": { + "#": 2036 + }, + "region": { + "#": 2037 + }, + "render": { + "#": 2038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8304755690689465, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2040 + }, + "vertices": { + "#": 2041 + } + }, + [ + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + } + ], + { + "x": 0.33423784738019024, + "y": 0.9424887592850413 + }, + { + "x": -0.7930843143513302, + "y": 0.6091118701272206 + }, + { + "x": -0.8243607297200207, + "y": -0.5660648260539379 + }, + { + "x": 0.2836329858566849, + "y": -0.9589329118004142 + }, + { + "x": 0.999646029582251, + "y": -0.026604802958122044 + }, + { + "max": { + "#": 2029 + }, + "min": { + "#": 2030 + } + }, + { + "x": 706.8820307981113, + "y": 359.3928644995795 + }, + { + "x": 666.0111672638396, + "y": 314.01603436794204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 688.4363177394148, + "y": 335.1055616182647 + }, + { + "x": -0.5171317762286084, + "y": 0.008797925073545666 + }, + { + "x": 688.4936029197507, + "y": 332.27566579770695 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,6,7", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2039 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.057285180335916265, + "y": 2.8298958205577214 + }, + [ + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 706.8820307981113, + "y": 347.7713003537473 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 682.0911561653281, + "y": 356.56296867902176 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 666.0684524441756, + "y": 335.7008649868204 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 680.9588025418245, + "y": 314.01603436794204 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 706.1822180611008, + "y": 321.4766111916158 + }, + { + "angle": -0.02762083094709799, + "anglePrev": -0.024793258724850102, + "angularSpeed": 0.0028275722222478885, + "angularVelocity": -0.0028275722222478885, + "area": 2171.016137319483, + "axes": { + "#": 2048 + }, + "bounds": { + "#": 2051 + }, + "collisionFilter": { + "#": 2054 + }, + "constraintImpulse": { + "#": 2055 + }, + "density": 0.001, + "force": { + "#": 2056 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 3142.3211355327803, + "inverseInertia": 0.0003182360926425332, + "inverseMass": 0.46061380328323276, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.1710161373194827, + "motion": 0, + "parent": null, + "position": { + "#": 2057 + }, + "positionImpulse": { + "#": 2058 + }, + "positionPrev": { + "#": 2059 + }, + "region": { + "#": 2060 + }, + "render": { + "#": 2061 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.682357746649091, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2063 + }, + "vertices": { + "#": 2064 + } + }, + [ + { + "#": 2049 + }, + { + "#": 2050 + } + ], + { + "x": 0.02761731904498313, + "y": 0.999618569099618 + }, + { + "x": -0.999618569099618, + "y": 0.02761731904498313 + }, + { + "max": { + "#": 2052 + }, + "min": { + "#": 2053 + } + }, + { + "x": 756.7214468476224, + "y": 369.08471596486373 + }, + { + "x": 708.6651282646018, + "y": 321.4137728774602 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 732.6932875561121, + "y": 345.24924442116196 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 732.7108129100535, + "y": 342.5669439266279 + }, + { + "endCol": 15, + "endRow": 7, + "id": "14,15,6,7", + "startCol": 14, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2062 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.017525353941406367, + "y": 2.6823004945340516 + }, + [ + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 708.6651282646018, + "y": 322.7060652289297 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 755.4401041096577, + "y": 321.4137728774602 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 756.7214468476224, + "y": 367.79242361339425 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 709.9464710025665, + "y": 369.08471596486373 + }, + { + "angle": 0.08516240497354306, + "anglePrev": 0.07681223775359092, + "angularSpeed": 0.008350167219952145, + "angularVelocity": 0.008350167219952145, + "area": 1119.9948759999997, + "axes": { + "#": 2070 + }, + "bounds": { + "#": 2074 + }, + "collisionFilter": { + "#": 2077 + }, + "constraintImpulse": { + "#": 2078 + }, + "density": 0.001, + "force": { + "#": 2079 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 965.6287346905493, + "inverseInertia": 0.0010355947001934086, + "inverseMass": 0.8928612276972597, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.1199948759999998, + "motion": 0, + "parent": null, + "position": { + "#": 2080 + }, + "positionImpulse": { + "#": 2081 + }, + "positionPrev": { + "#": 2082 + }, + "region": { + "#": 2083 + }, + "render": { + "#": 2084 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7745688959816004, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2086 + }, + "vertices": { + "#": 2087 + } + }, + [ + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + } + ], + { + "x": -0.5718542056400131, + "y": 0.8203552690705593 + }, + { + "x": -0.4245270970065353, + "y": -0.905415232866779 + }, + { + "x": 0.9963758735563456, + "y": 0.08505950032082665 + }, + { + "max": { + "#": 2075 + }, + "min": { + "#": 2076 + } + }, + { + "x": 889.8027879044346, + "y": 375.0475685760108 + }, + { + "x": 843.7554308958606, + "y": 324.37388439868226 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 873.0116835458044, + "y": 348.46193960996965 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 873.0118742881024, + "y": 345.6873707205445 + }, + { + "endCol": 18, + "endRow": 7, + "id": "17,18,6,7", + "startCol": 17, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2085 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00019074229790135176, + "y": 2.774568889425154 + }, + [ + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 885.4768318371181, + "y": 375.0475685760108 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 843.7554308958606, + "y": 345.964365855216 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 889.8027879044346, + "y": 324.37388439868226 + }, + { + "angle": -0.0019678870722510647, + "anglePrev": -0.0016666689197835775, + "angularSpeed": 0.00030121815246748727, + "angularVelocity": -0.00030121815246748727, + "area": 5582.974756, + "axes": { + "#": 2092 + }, + "bounds": { + "#": 2100 + }, + "collisionFilter": { + "#": 2103 + }, + "constraintImpulse": { + "#": 2104 + }, + "density": 0.001, + "force": { + "#": 2105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 19922.243813825833, + "inverseInertia": 0.000050195149168188086, + "inverseMass": 0.17911598094283054, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.582974756, + "motion": 0, + "parent": null, + "position": { + "#": 2106 + }, + "positionImpulse": { + "#": 2107 + }, + "positionPrev": { + "#": 2108 + }, + "region": { + "#": 2109 + }, + "render": { + "#": 2110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.888328176583626, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2112 + }, + "vertices": { + "#": 2113 + } + }, + [ + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + } + ], + { + "x": 0.6250338136594781, + "y": 0.7805976760036429 + }, + { + "x": -0.22060516142795705, + "y": 0.9753631953028296 + }, + { + "x": -0.9001113636667524, + "y": 0.43565988224528945 + }, + { + "x": -0.9018190466436425, + "y": -0.4321138821083531 + }, + { + "x": -0.2244422521429484, + "y": -0.9744873911205834 + }, + { + "x": 0.6219567244606481, + "y": -0.7830516157305223 + }, + { + "x": 0.9999980637108606, + "y": -0.0019678858021181128 + }, + { + "max": { + "#": 2101 + }, + "min": { + "#": 2102 + } + }, + { + "x": 972.2540692078519, + "y": 435.5996074592463 + }, + { + "x": 886.3432949437945, + "y": 344.63745923218255 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 931.5122925231123, + "y": 388.6941530166663 + }, + { + "x": -0.24494930983429458, + "y": 0.4239135632179341 + }, + { + "x": 931.5049186255378, + "y": 385.80583425287284 + }, + { + "endCol": 20, + "endRow": 9, + "id": "18,20,7,9", + "startCol": 18, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2111 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.007373897574487955, + "y": 2.888318763793473 + }, + [ + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 972.2466953102775, + "y": 408.21203015601725 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 941.6498478089761, + "y": 432.7112886954528 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 903.419757900427, + "y": 424.06450440392314 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 886.3432949437945, + "y": 388.7830406178108 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 903.2807661262233, + "y": 353.43464116402504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 941.4765282348404, + "y": 344.63745923218255 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 972.1695620583776, + "y": 369.01610605080634 + }, + { + "angle": -0.0013643383279954029, + "anglePrev": -0.0011737701929654342, + "angularSpeed": 0.00019056813502996863, + "angularVelocity": -0.00019056813502996863, + "area": 1427.950596, + "axes": { + "#": 2122 + }, + "bounds": { + "#": 2126 + }, + "collisionFilter": { + "#": 2129 + }, + "constraintImpulse": { + "#": 2130 + }, + "density": 0.001, + "force": { + "#": 2131 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 1308.0466332042622, + "inverseInertia": 0.0007644987377478626, + "inverseMass": 0.7003043402210255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4279505959999998, + "motion": 0, + "parent": null, + "position": { + "#": 2132 + }, + "positionImpulse": { + "#": 2133 + }, + "positionPrev": { + "#": 2134 + }, + "region": { + "#": 2135 + }, + "render": { + "#": 2136 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.897261853983937, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2138 + }, + "vertices": { + "#": 2139 + } + }, + [ + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + } + ], + { + "x": -0.5011829234840418, + "y": -0.8653413645538905 + }, + { + "x": 0.4988198238115385, + "y": -0.8667057074766648 + }, + { + "x": 0.999999069290608, + "y": -0.001364337904727878 + }, + { + "max": { + "#": 2127 + }, + "min": { + "#": 2128 + } + }, + { + "x": 985.3752657423186, + "y": 352.62013083032923 + }, + { + "x": 944.7089370489692, + "y": 302.83505162558293 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 965.0279109216959, + "y": 326.279029806032 + }, + { + "x": -0.03866988454212206, + "y": 0.06695799944776047 + }, + { + "x": 964.9995299738, + "y": 323.3819069621838 + }, + { + "endCol": 20, + "endRow": 7, + "id": "19,20,6,7", + "startCol": 19, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2137 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.028380947895883538, + "y": 2.897122843848181 + }, + [ + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 985.3468847944226, + "y": 337.97331874377676 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 965.0598964595343, + "y": 349.72300798648104 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 944.7409225868081, + "y": 338.02871904873615 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 944.7089370489692, + "y": 314.5847408682872 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 964.9959253838575, + "y": 302.83505162558293 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 985.314899256584, + "y": 314.5293405633278 + }, + { + "angle": -0.004017500700376403, + "anglePrev": -0.0034354936875933616, + "angularSpeed": 0.0005820070127830413, + "angularVelocity": -0.0005820070127830413, + "area": 1006.2524335919638, + "axes": { + "#": 2147 + }, + "bounds": { + "#": 2150 + }, + "collisionFilter": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "density": 0.001, + "force": { + "#": 2155 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 697.1461738741186, + "inverseInertia": 0.0014344194051053728, + "inverseMass": 0.9937864164266964, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0062524335919638, + "motion": 0, + "parent": null, + "position": { + "#": 2156 + }, + "positionImpulse": { + "#": 2157 + }, + "positionPrev": { + "#": 2158 + }, + "region": { + "#": 2159 + }, + "render": { + "#": 2160 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9158032276170203, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2162 + }, + "vertices": { + "#": 2163 + } + }, + [ + { + "#": 2148 + }, + { + "#": 2149 + } + ], + { + "x": 0.004017489893099413, + "y": 0.9999919298549159 + }, + { + "x": -0.9999919298549159, + "y": 0.004017489893099413 + }, + { + "max": { + "#": 2151 + }, + "min": { + "#": 2152 + } + }, + { + "x": 1025.0962349880556, + "y": 349.66018170044276 + }, + { + "x": 988.9439763049202, + "y": 321.59547626608673 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1007.0201056464879, + "y": 335.62782898326475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1007.0237574172753, + "y": 332.71202804239925 + }, + { + "endCol": 21, + "endRow": 7, + "id": "20,21,6,7", + "startCol": 20, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2161 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0036517707874565986, + "y": 2.915800940865468 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 988.9439763049202, + "y": 321.74026813112545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1024.9840661122557, + "y": 321.59547626608673 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1025.0962349880556, + "y": 349.51538983540405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 989.0561451807203, + "y": 349.66018170044276 + }, + { + "angle": -0.0001522813017363003, + "anglePrev": -0.00012755677299798395, + "angularSpeed": 0.000024724528738316353, + "angularVelocity": -0.000024724528738316353, + "area": 3210.130139, + "axes": { + "#": 2169 + }, + "bounds": { + "#": 2177 + }, + "collisionFilter": { + "#": 2180 + }, + "constraintImpulse": { + "#": 2181 + }, + "density": 0.001, + "force": { + "#": 2182 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 6586.462154550281, + "inverseInertia": 0.00015182657647385802, + "inverseMass": 0.3115138504358312, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.210130139, + "motion": 0, + "parent": null, + "position": { + "#": 2183 + }, + "positionImpulse": { + "#": 2184 + }, + "positionPrev": { + "#": 2185 + }, + "region": { + "#": 2186 + }, + "render": { + "#": 2187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.909684982447163, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2189 + }, + "vertices": { + "#": 2190 + } + }, + [ + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + } + ], + { + "x": 0.6236111327093052, + "y": 0.7817347089396873 + }, + { + "x": -0.22237850726872135, + "y": 0.9749604091987202 + }, + { + "x": -0.9008975899568586, + "y": 0.4340317182072344 + }, + { + "x": -0.9010297380020019, + "y": -0.43375731836597736 + }, + { + "x": -0.22267543343090412, + "y": -0.9748926358047634 + }, + { + "x": 0.6233730166322278, + "y": -0.7819246013106612 + }, + { + "x": 0.9999999884052025, + "y": -0.00015228130114774334 + }, + { + "max": { + "#": 2178 + }, + "min": { + "#": 2179 + } + }, + { + "x": 1085.7603986661113, + "y": 417.76145310049645 + }, + { + "x": 1020.6463200195109, + "y": 348.0677694593175 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1054.8974508118006, + "y": 381.46092974024367 + }, + { + "x": 0.10115007733757755, + "y": 0.9520401247486323 + }, + { + "x": 1054.89563446268, + "y": 378.55124532471774 + }, + { + "endCol": 22, + "endRow": 8, + "id": "21,22,7,8", + "startCol": 21, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2188 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0018163491206451, + "y": 2.909684415525921 + }, + [ + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1085.7585823169907, + "y": 396.31723033923896 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1062.5244045112104, + "y": 414.8517686849705 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1033.5463976586673, + "y": 408.2421814169219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1020.6463200195109, + "y": 381.46614554706696 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1033.5382420813028, + "y": 354.6861820378928 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1062.5142345567942, + "y": 348.0677694593175 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1085.7540562121578, + "y": 366.5952306838596 + }, + { + "angle": -0.0002213799412269478, + "anglePrev": -0.00018477928181162705, + "angularSpeed": 0.000036600659415320737, + "angularVelocity": -0.000036600659415320737, + "area": 1352.927270280826, + "axes": { + "#": 2199 + }, + "bounds": { + "#": 2202 + }, + "collisionFilter": { + "#": 2205 + }, + "constraintImpulse": { + "#": 2206 + }, + "density": 0.001, + "force": { + "#": 2207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 1256.990937022409, + "inverseInertia": 0.0007955506842148158, + "inverseMass": 0.7391380320040639, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.352927270280826, + "motion": 0, + "parent": null, + "position": { + "#": 2208 + }, + "positionImpulse": { + "#": 2209 + }, + "positionPrev": { + "#": 2210 + }, + "region": { + "#": 2211 + }, + "render": { + "#": 2212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9081671950870174, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2214 + }, + "vertices": { + "#": 2215 + } + }, + [ + { + "#": 2200 + }, + { + "#": 2201 + } + ], + { + "x": 0.00022137993941867662, + "y": 0.9999999754954606 + }, + { + "x": -0.9999999754954606, + "y": 0.00022137993941867662 + }, + { + "max": { + "#": 2203 + }, + "min": { + "#": 2204 + } + }, + { + "x": 1127.2741524775493, + "y": 359.90409746249986 + }, + { + "x": 1085.6965457883018, + "y": 324.44043235908504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1106.4848057493455, + "y": 340.71818141477877 + }, + { + "x": 0.10100369146032095, + "y": -0.000003474018239499806 + }, + { + "x": 1106.4837189821853, + "y": 337.8100144227514 + }, + { + "endCol": 23, + "endRow": 7, + "id": "22,23,6,7", + "startCol": 22, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2213 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0010867671600522043, + "y": 2.9081669920273545 + }, + [ + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1085.6965457883018, + "y": 324.4496349717082 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1127.2658606132866, + "y": 324.44043235908504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1127.2730657103891, + "y": 356.98672785784936 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1085.7037508854044, + "y": 356.9959304704725 + }, + { + "angle": 0.055627369372266554, + "anglePrev": 0.04827034705145438, + "angularSpeed": 0.006440819777583003, + "angularVelocity": 0.0072516810281842495, + "area": 1720.1260092915415, + "axes": { + "#": 2221 + }, + "bounds": { + "#": 2224 + }, + "collisionFilter": { + "#": 2227 + }, + "constraintImpulse": { + "#": 2228 + }, + "density": 0.001, + "force": { + "#": 2229 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 2025.862459801684, + "inverseInertia": 0.0004936169260463478, + "inverseMass": 0.5813527582272093, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7201260092915416, + "motion": 0, + "parent": null, + "position": { + "#": 2230 + }, + "positionImpulse": { + "#": 2231 + }, + "positionPrev": { + "#": 2232 + }, + "region": { + "#": 2233 + }, + "render": { + "#": 2234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3631059754813797, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2236 + }, + "vertices": { + "#": 2237 + } + }, + [ + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "x": -0.0555986848829106, + "y": 0.9984531968196061 + }, + { + "x": -0.9984531968196061, + "y": -0.0555986848829106 + }, + { + "max": { + "#": 2225 + }, + "min": { + "#": 2226 + } + }, + { + "x": 58.434284525321026, + "y": 465.58062231503925 + }, + { + "x": 18.81862194346576, + "y": 414.6662455461379 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.551111295243544, + "y": 438.94428548571653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.46047633031717, + "y": 436.5199653200906 + }, + { + "endCol": 1, + "endRow": 9, + "id": "0,1,8,9", + "startCol": 0, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2235 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.09234680802202178, + "y": 2.4232165636869354 + }, + [ + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 21.408114961806724, + "y": 414.6662455461379 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 58.28360064702132, + "y": 416.7196502676083 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 55.694107628680364, + "y": 463.2223254252952 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 18.81862194346576, + "y": 461.16892070382477 + }, + { + "angle": 0.04383274717020439, + "anglePrev": 0.03525884505317623, + "angularSpeed": 0.00594038992089251, + "angularVelocity": 0.008733530889234002, + "area": 1250.161678324093, + "axes": { + "#": 2243 + }, + "bounds": { + "#": 2246 + }, + "collisionFilter": { + "#": 2249 + }, + "constraintImpulse": { + "#": 2250 + }, + "density": 0.001, + "force": { + "#": 2251 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 1044.2197391722605, + "inverseInertia": 0.0009576528411469095, + "inverseMass": 0.7998965392544685, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.250161678324093, + "motion": 0, + "parent": null, + "position": { + "#": 2252 + }, + "positionImpulse": { + "#": 2253 + }, + "positionPrev": { + "#": 2254 + }, + "region": { + "#": 2255 + }, + "render": { + "#": 2256 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7883754453520253, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2258 + }, + "vertices": { + "#": 2259 + } + }, + [ + { + "#": 2244 + }, + { + "#": 2245 + } + ], + { + "x": -0.04381871247129089, + "y": 0.9990394989375337 + }, + { + "x": -0.9990394989375337, + "y": -0.04381871247129089 + }, + { + "max": { + "#": 2247 + }, + "min": { + "#": 2248 + } + }, + { + "x": 94.77566461233106, + "y": 451.55193376737043 + }, + { + "x": 56.668782465445716, + "y": 412.9900593414899 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.67440049861143, + "y": 430.8776292794882 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.52404875922224, + "y": 428.15437054818943 + }, + { + "endCol": 1, + "endRow": 9, + "id": "1,1,8,9", + "startCol": 1, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2257 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.14799637537213073, + "y": 2.724777202415055 + }, + [ + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 58.1676686961863, + "y": 412.9900593414899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 94.68001853177715, + "y": 414.5915217068904 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 93.18113230103658, + "y": 448.7651992174865 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 56.668782465445716, + "y": 447.163736852086 + }, + { + "angle": 0.0004538633144959525, + "anglePrev": 0.000166832322654658, + "angularSpeed": 0.00014429141116272396, + "angularVelocity": 0.00029171457022876687, + "area": 3092.075232, + "axes": { + "#": 2265 + }, + "bounds": { + "#": 2271 + }, + "collisionFilter": { + "#": 2274 + }, + "constraintImpulse": { + "#": 2275 + }, + "density": 0.001, + "force": { + "#": 2276 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 6189.985619847792, + "inverseInertia": 0.00016155126383388745, + "inverseMass": 0.32340739631783966, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.092075232, + "motion": 0, + "parent": null, + "position": { + "#": 2277 + }, + "positionImpulse": { + "#": 2278 + }, + "positionPrev": { + "#": 2279 + }, + "region": { + "#": 2280 + }, + "render": { + "#": 2281 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8951347728722867, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2283 + }, + "vertices": { + "#": 2284 + } + }, + [ + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + } + ], + { + "x": 0.30857598277055137, + "y": 0.9511996966237892 + }, + { + "x": -0.8092862532287112, + "y": 0.58741447065512 + }, + { + "x": -0.8087527081318506, + "y": -0.5881488392315315 + }, + { + "x": 0.3094392848177905, + "y": -0.9509192021467725 + }, + { + "x": 0.9999998970040476, + "y": 0.00045386329891392436 + }, + { + "max": { + "#": 2272 + }, + "min": { + "#": 2273 + } + }, + { + "x": 146.14787198565196, + "y": 501.78498008009353 + }, + { + "x": 80.88948136348804, + "y": 430.2958763250026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 116.96336887212478, + "y": 464.5979306970855 + }, + { + "x": -2.4554339528231885, + "y": 1.5420687550214922 + }, + { + "x": 116.97779625925844, + "y": 461.71162594913494 + }, + { + "endCol": 3, + "endRow": 10, + "id": "1,3,8,10", + "startCol": 1, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2282 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.013276836711170859, + "y": 2.885983610996277 + }, + [ + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 146.12863090495776, + "y": 485.8081699236942 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 105.80368944843582, + "y": 498.88986926009835 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 80.90125816445179, + "y": 464.5815634268682 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 105.83482174756152, + "y": 430.2958763250026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 146.14787198565196, + "y": 443.4141742901046 + }, + { + "angle": 0.000550758019120618, + "anglePrev": 0.00024541043305903134, + "angularSpeed": 0.00023745033451797788, + "angularVelocity": 0.0002905703391374073, + "area": 1581.4152047253658, + "axes": { + "#": 2291 + }, + "bounds": { + "#": 2294 + }, + "collisionFilter": { + "#": 2297 + }, + "constraintImpulse": { + "#": 2298 + }, + "density": 0.001, + "force": { + "#": 2299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 1771.7086023235004, + "inverseInertia": 0.0005644269033229019, + "inverseMass": 0.6323450014973541, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5814152047253658, + "motion": 0, + "parent": null, + "position": { + "#": 2300 + }, + "positionImpulse": { + "#": 2301 + }, + "positionPrev": { + "#": 2302 + }, + "region": { + "#": 2303 + }, + "render": { + "#": 2304 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.904756905463633, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2306 + }, + "vertices": { + "#": 2307 + } + }, + [ + { + "#": 2292 + }, + { + "#": 2293 + } + ], + { + "x": -0.0005507579912766433, + "y": 0.9999998483328059 + }, + { + "x": -0.9999998483328059, + "y": -0.0005507579912766433 + }, + { + "max": { + "#": 2295 + }, + "min": { + "#": 2296 + } + }, + { + "x": 192.55997240669006, + "y": 456.66595213282505 + }, + { + "x": 145.1106930997532, + "y": 420.38851133081477 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.83898749994447, + "y": 437.0748578774745 + }, + { + "x": -2.4855256219393986, + "y": -0.0007449923089677892 + }, + { + "x": 168.84740999306825, + "y": 434.17182889038145 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2305 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.006778068204965848, + "y": 2.9027675905546175 + }, + [ + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 145.136368488185, + "y": 420.38851133081477 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 192.55997240669006, + "y": 420.4146302636094 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 192.54160651170392, + "y": 453.7612044241343 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 145.11800259319887, + "y": 453.73508549133965 + }, + { + "angle": -0.000008694550346318992, + "anglePrev": -0.000016813462651284382, + "angularSpeed": 9.64911218510784e-7, + "angularVelocity": 0.000004193826123745044, + "area": 4508.288001999999, + "axes": { + "#": 2313 + }, + "bounds": { + "#": 2318 + }, + "collisionFilter": { + "#": 2321 + }, + "constraintImpulse": { + "#": 2322 + }, + "density": 0.001, + "force": { + "#": 2323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 12968.580393466536, + "inverseInertia": 0.00007710944217948417, + "inverseMass": 0.22181369059748904, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.508288002, + "motion": 0, + "parent": null, + "position": { + "#": 2324 + }, + "positionImpulse": { + "#": 2325 + }, + "positionPrev": { + "#": 2326 + }, + "region": { + "#": 2327 + }, + "render": { + "#": 2328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9102072763507203, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2330 + }, + "vertices": { + "#": 2331 + } + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + } + ], + { + "x": -0.7071129291353297, + "y": -0.7071006331843115 + }, + { + "x": -0.00000869455034620945, + "y": -0.9999999999622025 + }, + { + "x": 0.7071006331843115, + "y": -0.7071129291353297 + }, + { + "x": 0.9999999999622025, + "y": -0.00000869455034620945 + }, + { + "max": { + "#": 2319 + }, + "min": { + "#": 2320 + } + }, + { + "x": 264.86949139611824, + "y": 497.1101703477252 + }, + { + "x": 191.08940634403763, + "y": 420.4297139694123 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.98435856217213, + "y": 457.3148468033584 + }, + { + "x": -2.19396570845877, + "y": 0.004853547277116422 + }, + { + "x": 227.99609018214494, + "y": 454.40454191122046 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,8,10", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2329 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.012308450594218812, + "y": 2.9103965846962296 + }, + [ + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 264.86949139611824, + "y": 472.59252610429144 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.26267926008416, + "y": 494.19971396662413 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 212.70667926123915, + "y": 494.1999796373045 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 191.0994913989065, + "y": 472.5931675012705 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 191.09922572822612, + "y": 442.0371675024254 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 212.7060378642601, + "y": 420.4299796400927 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.26203786310512, + "y": 420.4297139694123 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 264.86922572543784, + "y": 442.03652610544634 + }, + { + "angle": -0.0007855291278109152, + "anglePrev": -0.0004526616120071025, + "angularSpeed": 0.00031685384343435504, + "angularVelocity": -0.00035554313718607543, + "area": 1039.6267295619953, + "axes": { + "#": 2341 + }, + "bounds": { + "#": 2344 + }, + "collisionFilter": { + "#": 2347 + }, + "constraintImpulse": { + "#": 2348 + }, + "density": 0.001, + "force": { + "#": 2349 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 836.7694481463552, + "inverseInertia": 0.0011950723131864333, + "inverseMass": 0.9618836949501189, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0396267295619952, + "motion": 0, + "parent": null, + "position": { + "#": 2350 + }, + "positionImpulse": { + "#": 2351 + }, + "positionPrev": { + "#": 2352 + }, + "region": { + "#": 2353 + }, + "render": { + "#": 2354 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9035683278289968, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2356 + }, + "vertices": { + "#": 2357 + } + }, + [ + { + "#": 2342 + }, + { + "#": 2343 + } + ], + { + "x": 0.000785529047025006, + "y": 0.9999996914720107 + }, + { + "x": -0.9999996914720107, + "y": 0.000785529047025006 + }, + { + "max": { + "#": 2345 + }, + "min": { + "#": 2346 + } + }, + { + "x": 305.862990972772, + "y": 447.68384504733 + }, + { + "x": 263.15396840657564, + "y": 420.38517587363157 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 284.51604491445585, + "y": 432.58274600783466 + }, + { + "x": -1.6963010900380544, + "y": -0.0018978635231489559 + }, + { + "x": 284.53181530426707, + "y": 429.6799847679214 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2355 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.015941976845795125, + "y": 2.903048976452169 + }, + [ + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 263.1690988561396, + "y": 420.41869814387786 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 305.8438542082976, + "y": 420.38517587363157 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 305.862990972772, + "y": 444.74679387179145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.18823562061397, + "y": 444.78031614203775 + }, + { + "angle": -0.00018309696502356233, + "anglePrev": -0.00014840004849552013, + "angularSpeed": 0.000014554984495102604, + "angularVelocity": -0.00004850869702592247, + "area": 1574.8717250450893, + "axes": { + "#": 2363 + }, + "bounds": { + "#": 2366 + }, + "collisionFilter": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "density": 0.001, + "force": { + "#": 2371 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 1691.4099419533813, + "inverseInertia": 0.0005912227279716214, + "inverseMass": 0.6349723498727298, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5748717250450894, + "motion": 0, + "parent": null, + "position": { + "#": 2372 + }, + "positionImpulse": { + "#": 2373 + }, + "positionPrev": { + "#": 2374 + }, + "region": { + "#": 2375 + }, + "render": { + "#": 2376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.896442224125834, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2378 + }, + "vertices": { + "#": 2379 + } + }, + [ + { + "#": 2364 + }, + { + "#": 2365 + } + ], + { + "x": 0.00018309696400052334, + "y": 0.9999999832377506 + }, + { + "x": -0.9999999832377506, + "y": 0.00018309696400052334 + }, + { + "max": { + "#": 2367 + }, + "min": { + "#": 2368 + } + }, + { + "x": 339.7485457627878, + "y": 467.4491413502872 + }, + { + "x": 304.06326858267636, + "y": 420.38456149975025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 321.9137418126659, + "y": 442.4686515051728 + }, + { + "x": -1.1495591881386271, + "y": 0.000026218336863658426 + }, + { + "x": 321.9284674682542, + "y": 439.5739406484086 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2377 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.015130867867526376, + "y": 2.8945787015481415 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.07893786254397, + "y": 420.391091016276 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 339.7404598985215, + "y": 420.38456149975025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 339.7485457627878, + "y": 464.54621199406955 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.08702372681023, + "y": 464.5527415105953 + }, + { + "angle": 0.00030402447153076394, + "anglePrev": 0.00013736685493741138, + "angularSpeed": 0.00014427396268461252, + "angularVelocity": 0.00016083626295362852, + "area": 968.3879641074045, + "axes": { + "#": 2385 + }, + "bounds": { + "#": 2388 + }, + "collisionFilter": { + "#": 2391 + }, + "constraintImpulse": { + "#": 2392 + }, + "density": 0.001, + "force": { + "#": 2393 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 797.6175154248832, + "inverseInertia": 0.001253733751655779, + "inverseMass": 1.0326439785130264, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9683879641074046, + "motion": 0, + "parent": null, + "position": { + "#": 2394 + }, + "positionImpulse": { + "#": 2395 + }, + "positionPrev": { + "#": 2396 + }, + "region": { + "#": 2397 + }, + "render": { + "#": 2398 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.899680019999663, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2400 + }, + "vertices": { + "#": 2401 + } + }, + [ + { + "#": 2386 + }, + { + "#": 2387 + } + ], + { + "x": -0.0003040244668472224, + "y": 0.9999999537845606 + }, + { + "x": -0.9999999537845606, + "y": -0.0003040244668472224 + }, + { + "max": { + "#": 2389 + }, + "min": { + "#": 2390 + } + }, + { + "x": 382.75387406440865, + "y": 444.91226128749884 + }, + { + "x": 337.97930909769775, + "y": 420.35987648010746 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360.3747497782413, + "y": 431.18625182692494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360.38890939954973, + "y": 428.2880250127594 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2399 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.014918471742362271, + "y": 2.8978440039882116 + }, + [ + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.0022043219272, + "y": 420.35987648010746 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 382.75387406440865, + "y": 420.3734820832702 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 382.74729523455545, + "y": 442.01262717374243 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 337.995625492074, + "y": 441.9990215705797 + }, + { + "angle": 0.00081966980345451, + "anglePrev": 0.0007130242760655022, + "angularSpeed": 0.00015704382089328506, + "angularVelocity": 0.00011420095915530765, + "area": 1379.2675785219164, + "axes": { + "#": 2407 + }, + "bounds": { + "#": 2410 + }, + "collisionFilter": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "density": 0.001, + "force": { + "#": 2415 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 1297.383606626366, + "inverseInertia": 0.0007707820531202307, + "inverseMass": 0.7250224797364148, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3792675785219164, + "motion": 0, + "parent": null, + "position": { + "#": 2416 + }, + "positionImpulse": { + "#": 2417 + }, + "positionPrev": { + "#": 2418 + }, + "region": { + "#": 2419 + }, + "render": { + "#": 2420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905550157533798, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2422 + }, + "vertices": { + "#": 2423 + } + }, + [ + { + "#": 2408 + }, + { + "#": 2409 + } + ], + { + "x": -0.0008196697116708139, + "y": 0.9999996640707256 + }, + { + "x": -0.9999996640707256, + "y": -0.0008196697116708139 + }, + { + "max": { + "#": 2411 + }, + "min": { + "#": 2412 + } + }, + { + "x": 414.53498885626266, + "y": 464.6646343008162 + }, + { + "x": 381.11198342519094, + "y": 420.40065332989144 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 397.83248452905895, + "y": 441.0798966045516 + }, + { + "x": -0.23209636282389498, + "y": 0.0008615079208294786 + }, + { + "x": 397.84696921435176, + "y": 438.1757081242824 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2421 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.015097822805614669, + "y": 2.903971098734985 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 381.16385809129747, + "y": 420.40065332989144 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.53498885626266, + "y": 420.42800664421253 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 414.5011109668203, + "y": 461.7591398792118 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 381.12998020185523, + "y": 461.7317865648907 + }, + { + "angle": 0.0000014264160307194278, + "anglePrev": 0.000012144137887173956, + "angularSpeed": 0.000008029207599140443, + "angularVelocity": -0.00002351670244022725, + "area": 1475.914064, + "axes": { + "#": 2429 + }, + "bounds": { + "#": 2433 + }, + "collisionFilter": { + "#": 2436 + }, + "constraintImpulse": { + "#": 2437 + }, + "density": 0.001, + "force": { + "#": 2438 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 1397.3944234227881, + "inverseInertia": 0.0007156175688397215, + "inverseMass": 0.6775462233145303, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4759140640000001, + "motion": 0, + "parent": null, + "position": { + "#": 2439 + }, + "positionImpulse": { + "#": 2440 + }, + "positionPrev": { + "#": 2441 + }, + "region": { + "#": 2442 + }, + "render": { + "#": 2443 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9077703692368786, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2445 + }, + "vertices": { + "#": 2446 + } + }, + [ + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + } + ], + { + "x": -0.5000274965882943, + "y": -0.8660095280397574 + }, + { + "x": 0.5000299671660067, + "y": -0.8660081015417593 + }, + { + "x": 0.9999999999989826, + "y": 0.0000014264160307189433 + }, + { + "max": { + "#": 2434 + }, + "min": { + "#": 2435 + } + }, + { + "x": 454.44724083072134, + "y": 471.0188247984379 + }, + { + "x": 413.1467629095659, + "y": 420.4411129245416 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 433.80622383214256, + "y": 444.27611292451735 + }, + { + "x": 0.1594639017450862, + "y": 0.005316844063757747 + }, + { + "x": 433.8208309610832, + "y": 441.3702944489044 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2444 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.014034141181241466, + "y": 2.906021622469268 + }, + [ + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 454.44720683352165, + "y": 456.19314236715843 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 433.8061898335164, + "y": 468.1111129244931 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 413.1652068335637, + "y": 456.1930834818519 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 413.16524083076337, + "y": 432.35908348187627 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 433.80625783076874, + "y": 420.4411129245416 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 454.44724083072134, + "y": 432.3591423671828 + }, + { + "angle": -0.0004126459271719792, + "anglePrev": -0.00024910234834549504, + "angularSpeed": 0.00014292454053467898, + "angularVelocity": -0.00016741221461418415, + "area": 2731.525696, + "axes": { + "#": 2454 + }, + "bounds": { + "#": 2457 + }, + "collisionFilter": { + "#": 2460 + }, + "constraintImpulse": { + "#": 2461 + }, + "density": 0.001, + "force": { + "#": 2462 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 4974.15508527219, + "inverseInertia": 0.00020103916803094191, + "inverseMass": 0.3660957689193197, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.7315256960000003, + "motion": 0, + "parent": null, + "position": { + "#": 2463 + }, + "positionImpulse": { + "#": 2464 + }, + "positionPrev": { + "#": 2465 + }, + "region": { + "#": 2466 + }, + "render": { + "#": 2467 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9039967185821576, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2469 + }, + "vertices": { + "#": 2470 + } + }, + [ + { + "#": 2455 + }, + { + "#": 2456 + } + ], + { + "x": -0.00041264591546131754, + "y": -0.9999999148616707 + }, + { + "x": 0.9999999148616707, + "y": -0.00041264591546131754 + }, + { + "max": { + "#": 2458 + }, + "min": { + "#": 2459 + } + }, + { + "x": 505.669204832262, + "y": 475.5868764135169 + }, + { + "x": 453.3655926054363, + "y": 420.3973737154901 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 479.526423794034, + "y": 446.54015475371824 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 479.53996951277827, + "y": 443.63845549713307 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2468 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.013192876831567446, + "y": 2.9017351825855826 + }, + [ + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.669204832262, + "y": 472.6613692658206 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.4052092819316, + "y": 472.68293579194636 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 453.38364275580585, + "y": 420.41894024161587 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 505.6476383061363, + "y": 420.3973737154901 + }, + { + "angle": -0.0017324349389808977, + "anglePrev": -0.0015836706027469827, + "angularSpeed": 0.00022889733600446916, + "angularVelocity": -0.00014273316953190276, + "area": 1453.96239, + "axes": { + "#": 2476 + }, + "bounds": { + "#": 2480 + }, + "collisionFilter": { + "#": 2483 + }, + "constraintImpulse": { + "#": 2484 + }, + "density": 0.001, + "force": { + "#": 2485 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 1356.1358869695257, + "inverseInertia": 0.0007373892318671982, + "inverseMass": 0.6877756996176496, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.45396239, + "motion": 0, + "parent": null, + "position": { + "#": 2486 + }, + "positionImpulse": { + "#": 2487 + }, + "positionPrev": { + "#": 2488 + }, + "region": { + "#": 2489 + }, + "render": { + "#": 2490 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8955445182564827, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2492 + }, + "vertices": { + "#": 2493 + } + }, + [ + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + } + ], + { + "x": -0.5015257115793911, + "y": -0.8651427400289415 + }, + { + "x": 0.4985251000710611, + "y": -0.8668752647290948 + }, + { + "x": 0.9999984993349662, + "y": -0.001732434072379299 + }, + { + "max": { + "#": 2481 + }, + "min": { + "#": 2482 + } + }, + { + "x": 545.9314600393807, + "y": 482.8985053948337 + }, + { + "x": 504.9013459488736, + "y": 432.68907173897816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525.4239995532971, + "y": 456.3460362377453 + }, + { + "x": 0.9181427724853347, + "y": 1.2322717159079655 + }, + { + "x": 525.4346264263784, + "y": 453.4513291674181 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2491 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.009962582469370318, + "y": 2.8948148320363885 + }, + [ + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545.9314600393807, + "y": 468.13852611103835 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525.4649837461473, + "y": 480.00300073651243 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 504.95752152762986, + "y": 468.2095108647201 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 504.91653906721365, + "y": 444.55354636445225 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 525.383015360447, + "y": 432.68907173897816 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 545.8904775789645, + "y": 444.4825616107705 + }, + { + "angle": -0.0003471983728836191, + "anglePrev": -0.0004684353900952892, + "angularSpeed": 0.00011099678461947399, + "angularVelocity": 0.00012245838401295824, + "area": 4826.0809, + "axes": { + "#": 2501 + }, + "bounds": { + "#": 2504 + }, + "collisionFilter": { + "#": 2507 + }, + "constraintImpulse": { + "#": 2508 + }, + "density": 0.001, + "force": { + "#": 2509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 15527.371235563205, + "inverseInertia": 0.00006440240172204064, + "inverseMass": 0.20720746724324493, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.8260809, + "motion": 0, + "parent": null, + "position": { + "#": 2510 + }, + "positionImpulse": { + "#": 2511 + }, + "positionPrev": { + "#": 2512 + }, + "region": { + "#": 2513 + }, + "render": { + "#": 2514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8943642756775287, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2516 + }, + "vertices": { + "#": 2517 + } + }, + [ + { + "#": 2502 + }, + { + "#": 2503 + } + ], + { + "x": -0.00034719836590801564, + "y": -0.9999999397266456 + }, + { + "x": 0.9999999397266456, + "y": -0.00034719836590801564 + }, + { + "max": { + "#": 2505 + }, + "min": { + "#": 2506 + } + }, + { + "x": 614.9792496411601, + "y": 535.4144032091835 + }, + { + "x": 545.469032972136, + "y": 463.02596803444567 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580.2321917995151, + "y": 497.77302587609046 + }, + { + "x": 1.1964212088594308, + "y": 2.0252148952517084 + }, + { + "x": 580.2446996653839, + "y": 494.87664228347205 + }, + { + "endCol": 12, + "endRow": 11, + "id": "11,12,9,11", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2515 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01235439975346253, + "y": 2.8964230792007584 + }, + [ + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 614.9792496411601, + "y": 532.4959638472558 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545.5092538283499, + "y": 532.5200837177354 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545.4851339578702, + "y": 463.0500879049252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 614.9551297706804, + "y": 463.02596803444567 + }, + { + "angle": 0.003203903638269277, + "anglePrev": 0.0030816387520649978, + "angularSpeed": 0.00017159337452118018, + "angularVelocity": 0.00012185463747866037, + "area": 1288.7426280768939, + "axes": { + "#": 2523 + }, + "bounds": { + "#": 2526 + }, + "collisionFilter": { + "#": 2529 + }, + "constraintImpulse": { + "#": 2530 + }, + "density": 0.001, + "force": { + "#": 2531 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 1283.525413611018, + "inverseInertia": 0.0007791041684064836, + "inverseMass": 0.7759501224012698, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2887426280768939, + "motion": 0, + "parent": null, + "position": { + "#": 2532 + }, + "positionImpulse": { + "#": 2533 + }, + "positionPrev": { + "#": 2534 + }, + "region": { + "#": 2535 + }, + "render": { + "#": 2536 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.902090419219085, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2538 + }, + "vertices": { + "#": 2539 + } + }, + [ + { + "#": 2524 + }, + { + "#": 2525 + } + ], + { + "x": -0.003203898156927737, + "y": 0.9999948675051288 + }, + { + "x": -0.9999948675051288, + "y": -0.003203898156927737 + }, + { + "max": { + "#": 2527 + }, + "min": { + "#": 2528 + } + }, + { + "x": 662.3097295115342, + "y": 511.6555695413498 + }, + { + "x": 614.7785848662515, + "y": 481.42988734654347 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 638.5516242959213, + "y": 495.0917024474037 + }, + { + "x": 1.3009571107365525, + "y": 2.582584123794196 + }, + { + "x": 638.5636273320295, + "y": 492.1881326788704 + }, + { + "endCol": 13, + "endRow": 10, + "id": "12,13,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2537 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.011887883078884443, + "y": 2.9035841091110797 + }, + [ + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 614.8805747945291, + "y": 481.42988734654347 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 662.3097295115342, + "y": 481.58184630785456 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 662.2226737973135, + "y": 508.7535175482639 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 614.7935190803083, + "y": 508.6015585869528 + }, + { + "angle": -0.0512684055628541, + "anglePrev": -0.04324072686869785, + "angularSpeed": 0.008027678694156253, + "angularVelocity": -0.008027678694156253, + "area": 1779.883796, + "axes": { + "#": 2545 + }, + "bounds": { + "#": 2551 + }, + "collisionFilter": { + "#": 2554 + }, + "constraintImpulse": { + "#": 2555 + }, + "density": 0.001, + "force": { + "#": 2556 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 2051.033881833643, + "inverseInertia": 0.0004875589861567722, + "inverseMass": 0.5618344311282218, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.779883796, + "motion": 0, + "parent": null, + "position": { + "#": 2557 + }, + "positionImpulse": { + "#": 2558 + }, + "positionPrev": { + "#": 2559 + }, + "region": { + "#": 2560 + }, + "render": { + "#": 2561 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7558703632142807, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2563 + }, + "vertices": { + "#": 2564 + } + }, + [ + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + } + ], + { + "x": 0.35734065373633495, + "y": 0.9339741201913944 + }, + { + "x": -0.7778223162272376, + "y": 0.6284842435406757 + }, + { + "x": -0.8380668707575218, + "y": -0.5455675211545268 + }, + { + "x": 0.2598647911963429, + "y": -0.965645012567497 + }, + { + "x": 0.9986860631347303, + "y": -0.0512459491126228 + }, + { + "max": { + "#": 2552 + }, + "min": { + "#": 2553 + } + }, + { + "x": 712.4863252254545, + "y": 510.1703807020224 + }, + { + "x": 662.2271666704147, + "y": 455.44089322563207 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 689.5560636608718, + "y": 480.9944294583355 + }, + { + "x": -0.09862289483353476, + "y": 1.5453347687470749 + }, + { + "x": 689.5601194813656, + "y": 478.23856207960284 + }, + { + "endCol": 14, + "endRow": 10, + "id": "13,14,9,10", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2562 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0040558204938611194, + "y": 2.75586737873268 + }, + [ + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 712.4863252254545, + "y": 495.92095895843846 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 682.4458520423931, + "y": 507.4145133232897 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 662.2312224909085, + "y": 482.39655918838423 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 679.778910358674, + "y": 455.44089322563207 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 710.8380505181958, + "y": 463.7992204237731 + }, + { + "angle": -0.059188791011320734, + "anglePrev": -0.04952443789055948, + "angularSpeed": 0.009664353120761256, + "angularVelocity": -0.009664353120761256, + "area": 4428.370116000001, + "axes": { + "#": 2571 + }, + "bounds": { + "#": 2574 + }, + "collisionFilter": { + "#": 2577 + }, + "constraintImpulse": { + "#": 2578 + }, + "density": 0.001, + "force": { + "#": 2579 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 13073.641256187908, + "inverseInertia": 0.0000764897843228403, + "inverseMass": 0.22581671671636758, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.428370116000001, + "motion": 0, + "parent": null, + "position": { + "#": 2580 + }, + "positionImpulse": { + "#": 2581 + }, + "positionPrev": { + "#": 2582 + }, + "region": { + "#": 2583 + }, + "render": { + "#": 2584 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.2052962364457023, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2586 + }, + "vertices": { + "#": 2587 + } + }, + [ + { + "#": 2572 + }, + { + "#": 2573 + } + ], + { + "x": -0.059154237587798586, + "y": -0.9982488548330053 + }, + { + "x": 0.9982488548330053, + "y": -0.059154237587798586 + }, + { + "max": { + "#": 2575 + }, + "min": { + "#": 2576 + } + }, + { + "x": 778.6536990756616, + "y": 485.75289254505867 + }, + { + "x": 708.0962469601417, + "y": 413.18998095648254 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.4707259815441, + "y": 448.3729540506 + }, + { + "x": -0.13360846108390492, + "y": -0.0037042200081053816 + }, + { + "x": 743.662231908829, + "y": 446.17598865025883 + }, + { + "endCol": 16, + "endRow": 10, + "id": "14,16,8,10", + "startCol": 14, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2585 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.19150592728485322, + "y": 2.196965400341195 + }, + [ + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.6536990756616, + "y": 479.61944925019986 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 712.224230781944, + "y": 483.5559271447175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 708.2877528874266, + "y": 417.12645885100017 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 774.7172211811439, + "y": 413.18998095648254 + }, + { + "angle": 0.020823827118132018, + "anglePrev": 0.018774639659401886, + "angularSpeed": 0.0020491874587301303, + "angularVelocity": 0.0020491874587301303, + "area": 4006.5774799999995, + "axes": { + "#": 2593 + }, + "bounds": { + "#": 2607 + }, + "circleRadius": 35.88631687242798, + "collisionFilter": { + "#": 2610 + }, + "constraintImpulse": { + "#": 2611 + }, + "density": 0.001, + "force": { + "#": 2612 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 10219.637720405184, + "inverseInertia": 0.00009785082674734506, + "inverseMass": 0.2495895823784244, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.00657748, + "motion": 0, + "parent": null, + "position": { + "#": 2613 + }, + "positionImpulse": { + "#": 2614 + }, + "positionPrev": { + "#": 2615 + }, + "region": { + "#": 2616 + }, + "render": { + "#": 2617 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.802969954081839, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2619 + }, + "vertices": { + "#": 2620 + } + }, + [ + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + } + ], + { + "x": -0.9657239535065046, + "y": -0.2595712727244033 + }, + { + "x": -0.8756271311574992, + "y": -0.48298770914060296 + }, + { + "x": -0.7345025147089874, + "y": -0.678605965112431 + }, + { + "x": -0.55083840393061, + "y": -0.8346119174533624 + }, + { + "x": -0.3350839433960208, + "y": -0.9421882778288914 + }, + { + "x": -0.09975189832878095, + "y": -0.9950123410188462 + }, + { + "x": 0.1410933508453063, + "y": -0.9899962961280426 + }, + { + "x": 0.37402196812482774, + "y": -0.9274198441698509 + }, + { + "x": 0.5851103317525377, + "y": -0.8109536976156132 + }, + { + "x": 0.7621197765247505, + "y": -0.6474360557073292 + }, + { + "x": 0.8949773319466477, + "y": -0.4461116175372034 + }, + { + "x": 0.9756939470674487, + "y": -0.21913767739926063 + }, + { + "x": 0.9997831919468185, + "y": 0.02082232217190649 + }, + { + "max": { + "#": 2608 + }, + "min": { + "#": 2609 + } + }, + { + "x": 988.0260328622147, + "y": 577.5663973051871 + }, + { + "x": 916.5936578409832, + "y": 503.007043781868 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 952.3186792833937, + "y": 538.8852634080716 + }, + { + "x": 2.0820977325959324, + "y": 2.358000467396374 + }, + { + "x": 952.3363471469834, + "y": 536.0823491371597 + }, + { + "endCol": 20, + "endRow": 11, + "id": "19,20,10,11", + "startCol": 19, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2618 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01766786358956665, + "y": 2.802914270911925 + }, + [ + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 987.8458781307834, + "y": 543.9521207238078 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 985.60044045634, + "y": 552.306176723751 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 981.4217922145546, + "y": 559.8818100221246 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 975.5512115062927, + "y": 566.23594852768 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 968.3304134661565, + "y": 571.0016279822347 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 960.1792843420754, + "y": 573.900531051079 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 951.5714494299327, + "y": 574.7634830342752 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 943.0070082371967, + "y": 573.5428868454542 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 934.9836448819623, + "y": 570.3071202485128 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 927.9675302687757, + "y": 565.2449309262304 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 922.36659863264, + "y": 558.6518770960745 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 918.5069900111728, + "y": 550.9088323274387 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 916.6113257045728, + "y": 542.4685302690593 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 916.7914804360041, + "y": 533.8184060923356 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 919.0369181104477, + "y": 525.4643500923921 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 923.2155663522329, + "y": 517.8887167940187 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 929.086147060495, + "y": 511.5345782884631 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 936.3069451006312, + "y": 506.7688988339085 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 944.4580742247123, + "y": 503.86999576506423 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 953.0659091368548, + "y": 503.007043781868 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 961.630350329591, + "y": 504.2276399706889 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 969.6537136848254, + "y": 507.4634065676302 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 976.669828298012, + "y": 512.5255958899129 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 982.2707599341475, + "y": 519.1186497200688 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 986.130368555615, + "y": 526.8616944887044 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 988.0260328622147, + "y": 535.301996547084 + }, + { + "angle": 0.009721743477432421, + "anglePrev": 0.008830327923932832, + "angularSpeed": 0.0008914155534995894, + "angularVelocity": 0.0008914155534995894, + "area": 2513.037024864943, + "axes": { + "#": 2648 + }, + "bounds": { + "#": 2651 + }, + "collisionFilter": { + "#": 2654 + }, + "constraintImpulse": { + "#": 2655 + }, + "density": 0.001, + "force": { + "#": 2656 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 7118.367975988358, + "inverseInertia": 0.000140481638961795, + "inverseMass": 0.3979248972878713, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5130370248649427, + "motion": 0, + "parent": null, + "position": { + "#": 2657 + }, + "positionImpulse": { + "#": 2658 + }, + "positionPrev": { + "#": 2659 + }, + "region": { + "#": 2660 + }, + "render": { + "#": 2661 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7910325963809526, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2663 + }, + "vertices": { + "#": 2664 + } + }, + [ + { + "#": 2649 + }, + { + "#": 2650 + } + ], + { + "x": -0.009721590340772832, + "y": 0.9999527442240688 + }, + { + "x": -0.9999527442240688, + "y": -0.009721590340772832 + }, + { + "max": { + "#": 2652 + }, + "min": { + "#": 2653 + } + }, + { + "x": 960.8957420620399, + "y": 497.22546864073377 + }, + { + "x": 872.9933201787574, + "y": 464.89862986605476 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 916.9338399184544, + "y": 479.6665739090344 + }, + { + "x": 0.00006024053510528621, + "y": 1.6608805423879343 + }, + { + "x": 916.912457514566, + "y": 476.8756232203147 + }, + { + "endCol": 20, + "endRow": 10, + "id": "18,20,9,10", + "startCol": 18, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2662 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.021382403888401312, + "y": 2.7909506887196978 + }, + [ + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 873.2721895485905, + "y": 464.89862986605476 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 960.8743596581514, + "y": 465.7503025232748 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 960.5954902883183, + "y": 494.43451795201406 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 872.9933201787574, + "y": 493.582845294794 + }, + { + "angle": 0.008077961944028801, + "anglePrev": 0.007271705640553199, + "angularSpeed": 0.0008062563034756028, + "angularVelocity": 0.0008062563034756028, + "area": 1629.3666616192165, + "axes": { + "#": 2670 + }, + "bounds": { + "#": 2673 + }, + "collisionFilter": { + "#": 2676 + }, + "constraintImpulse": { + "#": 2677 + }, + "density": 0.001, + "force": { + "#": 2678 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 1918.0622160315609, + "inverseInertia": 0.0005213595219392745, + "inverseMass": 0.6137354001132129, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6293666616192166, + "motion": 0, + "parent": null, + "position": { + "#": 2679 + }, + "positionImpulse": { + "#": 2680 + }, + "positionPrev": { + "#": 2681 + }, + "region": { + "#": 2682 + }, + "render": { + "#": 2683 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8894959018098954, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2685 + }, + "vertices": { + "#": 2686 + } + }, + [ + { + "#": 2671 + }, + { + "#": 2672 + } + ], + { + "x": -0.008077874091808658, + "y": 0.9999673734428324 + }, + { + "x": -0.9999673734428324, + "y": -0.008077874091808658 + }, + { + "max": { + "#": 2674 + }, + "min": { + "#": 2675 + } + }, + { + "x": 1001.2393787551428, + "y": 472.702456719862 + }, + { + "x": 967.8786413698475, + "y": 420.08839526048524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 984.5493852451974, + "y": 444.9507100995792 + }, + { + "x": 0.24045645674946003, + "y": -0.0003281609974616555 + }, + { + "x": 984.530135610602, + "y": 442.0612783183904 + }, + { + "endCol": 20, + "endRow": 9, + "id": "20,20,8,9", + "startCol": 20, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2684 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.019249634595439602, + "y": 2.8894317811888417 + }, + [ + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 968.2781741028024, + "y": 420.08839526048524 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1001.2201291205473, + "y": 420.3545049076983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1000.8205963875924, + "y": 469.8130249386732 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 967.8786413698475, + "y": 469.54691529146015 + }, + { + "angle": -0.004010124240075727, + "anglePrev": -0.003526313087262523, + "angularSpeed": 0.00048381115281320453, + "angularVelocity": -0.00048381115281320453, + "area": 1316.36654, + "axes": { + "#": 2692 + }, + "bounds": { + "#": 2700 + }, + "collisionFilter": { + "#": 2703 + }, + "constraintImpulse": { + "#": 2704 + }, + "density": 0.001, + "force": { + "#": 2705 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 1107.5429879268129, + "inverseInertia": 0.0009028994909460621, + "inverseMass": 0.759666832613354, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.31636654, + "motion": 0, + "parent": null, + "position": { + "#": 2706 + }, + "positionImpulse": { + "#": 2707 + }, + "positionPrev": { + "#": 2708 + }, + "region": { + "#": 2709 + }, + "render": { + "#": 2710 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9259607551982874, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2712 + }, + "vertices": { + "#": 2713 + } + }, + [ + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + } + ], + { + "x": 0.6266391006633909, + "y": 0.7793095902911608 + }, + { + "x": -0.21859528229052697, + "y": 0.9758156088935683 + }, + { + "x": -0.8992225613622035, + "y": 0.4374914686450444 + }, + { + "x": -0.9027023932176081, + "y": -0.4302654869719423 + }, + { + "x": -0.2264144515755148, + "y": -0.9740310550068508 + }, + { + "x": 0.6203687571338294, + "y": -0.7843102735347968 + }, + { + "x": 0.9999919594625647, + "y": -0.004010113492218609 + }, + { + "max": { + "#": 2701 + }, + "min": { + "#": 2702 + } + }, + { + "x": 1057.4965633618929, + "y": 466.2694229127698 + }, + { + "x": 1015.7370809799005, + "y": 420.5779367365991 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1037.6698778369755, + "y": 441.9803382771737 + }, + { + "x": 0.7857043092526607, + "y": 0.0009844829923849668 + }, + { + "x": 1037.6422204528074, + "y": 439.05450823937906 + }, + { + "endCol": 22, + "endRow": 9, + "id": "21,22,8,9", + "startCol": 21, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2711 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.027657384168196585, + "y": 2.9258300377946607 + }, + [ + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1057.4689059777247, + "y": 451.41701780326866 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1042.6366136377337, + "y": 463.3435928749752 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1024.0637800073068, + "y": 459.1830385926127 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1015.7370809799005, + "y": 442.0682919889675 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1023.9262491549778, + "y": 424.88731435088465 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1042.465117124125, + "y": 420.5779367365991 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1057.3925854977404, + "y": 432.38517083077704 + }, + [], + [], + [ + { + "#": 2724 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2725 + }, + "pointB": "", + "render": { + "#": 2726 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 2728 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/car/car-0.json b/tests/browser/refs/car/car-0.json new file mode 100644 index 00000000..4033088f --- /dev/null +++ b/tests/browser/refs/car/car-0.json @@ -0,0 +1,4332 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 149 + }, + "composites": { + "#": 152 + }, + "constraints": { + "#": 481 + }, + "gravity": { + "#": 485 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + }, + { + "#": 128 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 13000, + "axes": { + "#": 87 + }, + "bounds": { + "#": 90 + }, + "collisionFilter": { + "#": 93 + }, + "constraintImpulse": { + "#": 94 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 95 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 96 + }, + "positionImpulse": { + "#": 97 + }, + "positionPrev": { + "#": 98 + }, + "render": { + "#": 99 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 101 + }, + "vertices": { + "#": 102 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 521.117169632681, + "y": 220.72179974764737 + }, + { + "x": -121.11716963268105, + "y": 79.27820025235262 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 150 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 100 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -117.36954334096657, + "y": 79.27820025235262 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 521.117169632681, + "y": 201.0760547330736 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 517.3695433409666, + "y": 220.72179974764737 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -121.11716963268105, + "y": 98.9239452669264 + }, + { + "angle": -0.18849555921538758, + "anglePrev": -0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 13000, + "axes": { + "#": 108 + }, + "bounds": { + "#": 111 + }, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 116 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "render": { + "#": 120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 122 + }, + "vertices": { + "#": 123 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": 0.1873813145857246 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 821.117169632681, + "y": 420.72179974764737 + }, + { + "x": 178.88283036731895, + "y": 279.27820025235263 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 350 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 121 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 178.88283036731895, + "y": 401.0760547330736 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 817.3695433409666, + "y": 279.27820025235263 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 821.117169632681, + "y": 298.9239452669264 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 182.63045665903343, + "y": 420.72179974764737 + }, + { + "angle": 0.12566370614359174, + "anglePrev": 0.12566370614359174, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 129 + }, + "bounds": { + "#": 132 + }, + "collisionFilter": { + "#": 135 + }, + "constraintImpulse": { + "#": 136 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 137 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 138 + }, + "positionImpulse": { + "#": 139 + }, + "positionPrev": { + "#": 140 + }, + "render": { + "#": 141 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 143 + }, + "vertices": { + "#": 144 + } + }, + [ + { + "#": 130 + }, + { + "#": 131 + } + ], + { + "x": -0.12533323356430426, + "y": 0.9921147013144779 + }, + { + "x": -0.9921147013144779, + "y": -0.12533323356430426 + }, + { + "max": { + "#": 133 + }, + "min": { + "#": 134 + } + }, + { + "x": 688.4934777957103, + "y": 633.7877787606512 + }, + { + "x": -8.493477795710305, + "y": 526.2122212393488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 580 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 142 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.986813124424202, + "y": 526.2122212393488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 688.4934777957103, + "y": 613.9454847343617 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685.9868131244242, + "y": 633.7877787606512 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -8.493477795710305, + "y": 546.0545152656383 + }, + { + "max": { + "#": 150 + }, + "min": { + "#": 151 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 153 + }, + { + "#": 320 + } + ], + { + "bodies": { + "#": 154 + }, + "composites": { + "#": 310 + }, + "constraints": { + "#": 311 + }, + "id": 4, + "isModified": true, + "label": "Car", + "parent": null, + "type": "composite" + }, + [ + { + "#": 155 + }, + { + "#": 202 + }, + { + "#": 256 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2708.0744020211446, + "axes": { + "#": 156 + }, + "bounds": { + "#": 173 + }, + "collisionFilter": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "density": 0.001, + "force": { + "#": 178 + }, + "friction": 0.01, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 6441.781058446046, + "inverseInertia": 0.00015523657058925727, + "inverseMass": 0.369266073064189, + "isSleeping": false, + "isStatic": false, + "label": "Trapezoid Body", + "mass": 2.7080744020211447, + "motion": 0, + "parent": null, + "position": { + "#": 179 + }, + "positionImpulse": { + "#": 180 + }, + "positionPrev": { + "#": 181 + }, + "render": { + "#": 182 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 184 + }, + "vertices": { + "#": 185 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "x": -0.2608196030353321, + "y": 0.9653875567213884 + }, + { + "x": -0.7114878490641614, + "y": 0.7026983994816361 + }, + { + "x": -0.968554942731206, + "y": 0.2487997646923126 + }, + { + "x": -0.8813001838563251, + "y": -0.4725568600018495 + }, + { + "x": -0.8655659554873377, + "y": -0.5007949447641141 + }, + { + "x": -0.6554564466022562, + "y": -0.7552329750530916 + }, + { + "x": -0.37397774803534256, + "y": -0.9274376765984946 + }, + { + "x": -0.004805541890113558, + "y": -0.9999884533169082 + }, + { + "x": 0.16498842154925858, + "y": -0.9862955037688675 + }, + { + "x": 0.4770005470622009, + "y": -0.878902996981101 + }, + { + "x": 0.7370746030083672, + "y": -0.6758113861130618 + }, + { + "x": 0.8584333801170783, + "y": -0.5129250743537188 + }, + { + "x": 0.9955004136718107, + "y": -0.09475719697866516 + }, + { + "x": 0.9077770766774553, + "y": 0.41945295213996714 + }, + { + "x": 0.573040823912953, + "y": 0.8195268233127969 + }, + { + "x": 0.00846459371180257, + "y": 0.9999641746849204 + }, + { + "max": { + "#": 174 + }, + "min": { + "#": 175 + } + }, + { + "x": 193.11518582859026, + "y": 117.18630648956884 + }, + { + "x": 106.50594301930607, + "y": 80.86537749187505 + }, + { + "category": 1, + "group": -1, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 150, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 150, + "y": 100 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 183 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 116.50517047506645, + "y": 117.18630648956884 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 111.46933048868001, + "y": 115.82576918301868 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 107.80378013655275, + "y": 112.11436961587114 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 106.50594301930607, + "y": 107.06200730224991 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 117.07338258950128, + "y": 87.35414307599113 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 118.72588993863087, + "y": 84.49797586113849 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 121.21798386775008, + "y": 82.33512137075462 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 124.27831343469605, + "y": 81.10108140389667 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 173.32609947276023, + "y": 80.86537749187505 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 176.58064623971939, + "y": 81.40980107678138 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 179.48082260305588, + "y": 82.98379242353988 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 181.7108436802521, + "y": 85.41596792982784 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 192.62089513857595, + "y": 103.67507207368493 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 193.11518582859026, + "y": 108.86799252799274 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 190.9271547792074, + "y": 113.6033136636645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 186.6521815645424, + "y": 116.59251926798481 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2267.978204, + "axes": { + "#": 203 + }, + "bounds": { + "#": 217 + }, + "circleRadius": 27, + "collisionFilter": { + "#": 220 + }, + "constraintImpulse": { + "#": 221 + }, + "density": 0.01, + "force": { + "#": 222 + }, + "friction": 0.9, + "frictionAir": 0.01, + "frictionStatic": 10, + "id": 6, + "inertia": 32746.596044382426, + "inverseInertia": 0.00003053752514138174, + "inverseMass": 0.04409213449389922, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 22.67978204, + "motion": 0, + "parent": null, + "position": { + "#": 223 + }, + "positionImpulse": { + "#": 224 + }, + "positionPrev": { + "#": 225 + }, + "render": { + "#": 226 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 228 + }, + "vertices": { + "#": 229 + } + }, + [ + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "x": -0.9709325387467623, + "y": -0.23935330622902776 + }, + { + "x": -0.8855306474903332, + "y": -0.46458096426279816 + }, + { + "x": -0.7484509154695812, + "y": -0.6631901892615314 + }, + { + "x": -0.5680668419519881, + "y": -0.8229824196631996 + }, + { + "x": -0.35458939358251373, + "y": -0.9350221184329198 + }, + { + "x": -0.12059286743251717, + "y": -0.9927020501260201 + }, + { + "x": 0.12059286743251717, + "y": -0.9927020501260201 + }, + { + "x": 0.35458939358251373, + "y": -0.9350221184329198 + }, + { + "x": 0.5680668419519881, + "y": -0.8229824196631996 + }, + { + "x": 0.7484509154695812, + "y": -0.6631901892615314 + }, + { + "x": 0.8855306474903332, + "y": -0.46458096426279816 + }, + { + "x": 0.9709325387467623, + "y": -0.23935330622902776 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 218 + }, + "min": { + "#": 219 + } + }, + { + "x": 111.803, + "y": 127 + }, + { + "x": 58.197, + "y": 73 + }, + { + "category": 1, + "group": -1, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 85, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 85, + "y": 100 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 227 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 111.803, + "y": 103.254 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 110.245, + "y": 109.574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 107.221, + "y": 115.338 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 102.904, + "y": 120.21000000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 97.548, + "y": 123.907 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 91.462, + "y": 126.215 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 85, + "y": 127 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 78.538, + "y": 126.215 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 72.452, + "y": 123.907 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 67.096, + "y": 120.21000000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 62.778999999999996, + "y": 115.338 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 59.754999999999995, + "y": 109.574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 58.197, + "y": 103.254 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 58.197, + "y": 96.746 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 59.754999999999995, + "y": 90.426 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 62.778999999999996, + "y": 84.662 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 67.096, + "y": 79.78999999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 72.452, + "y": 76.093 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 78.538, + "y": 73.785 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 85, + "y": 73 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 91.462, + "y": 73.785 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 97.548, + "y": 76.093 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 102.904, + "y": 79.78999999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 107.221, + "y": 84.662 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 110.245, + "y": 90.426 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 111.803, + "y": 96.746 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2267.978204, + "axes": { + "#": 257 + }, + "bounds": { + "#": 271 + }, + "circleRadius": 27, + "collisionFilter": { + "#": 274 + }, + "constraintImpulse": { + "#": 275 + }, + "density": 0.01, + "force": { + "#": 276 + }, + "friction": 0.9, + "frictionAir": 0.01, + "frictionStatic": 10, + "id": 7, + "inertia": 32746.596044382426, + "inverseInertia": 0.00003053752514138174, + "inverseMass": 0.04409213449389922, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 22.67978204, + "motion": 0, + "parent": null, + "position": { + "#": 277 + }, + "positionImpulse": { + "#": 278 + }, + "positionPrev": { + "#": 279 + }, + "render": { + "#": 280 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 282 + }, + "vertices": { + "#": 283 + } + }, + [ + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + } + ], + { + "x": -0.9709325387467623, + "y": -0.23935330622902776 + }, + { + "x": -0.8855306474903332, + "y": -0.46458096426279816 + }, + { + "x": -0.7484509154695812, + "y": -0.6631901892615314 + }, + { + "x": -0.5680668419519881, + "y": -0.8229824196631996 + }, + { + "x": -0.35458939358251373, + "y": -0.9350221184329198 + }, + { + "x": -0.12059286743251717, + "y": -0.9927020501260201 + }, + { + "x": 0.12059286743251717, + "y": -0.9927020501260201 + }, + { + "x": 0.35458939358251373, + "y": -0.9350221184329198 + }, + { + "x": 0.5680668419519881, + "y": -0.8229824196631996 + }, + { + "x": 0.7484509154695812, + "y": -0.6631901892615314 + }, + { + "x": 0.8855306474903332, + "y": -0.46458096426279816 + }, + { + "x": 0.9709325387467623, + "y": -0.23935330622902776 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 272 + }, + "min": { + "#": 273 + } + }, + { + "x": 241.803, + "y": 127 + }, + { + "x": 188.197, + "y": 73 + }, + { + "category": 1, + "group": -1, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 215, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 215, + "y": 100 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 281 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 241.803, + "y": 103.254 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 240.245, + "y": 109.574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 237.221, + "y": 115.338 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 232.904, + "y": 120.21000000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 227.548, + "y": 123.907 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 221.462, + "y": 126.215 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 215, + "y": 127 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.538, + "y": 126.215 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 202.452, + "y": 123.907 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 197.096, + "y": 120.21000000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 192.779, + "y": 115.338 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 189.755, + "y": 109.574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 188.197, + "y": 103.254 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 188.197, + "y": 96.746 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 189.755, + "y": 90.426 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 192.779, + "y": 84.662 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 197.096, + "y": 79.78999999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 202.452, + "y": 76.093 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 208.538, + "y": 73.785 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 215, + "y": 73 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 221.462, + "y": 73.785 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 227.548, + "y": 76.093 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 232.904, + "y": 79.78999999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 237.221, + "y": 84.662 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 240.245, + "y": 90.426 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 241.803, + "y": 96.746 + }, + [], + [ + { + "#": 312 + }, + { + "#": 316 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 8, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 313 + }, + "pointB": { + "#": 314 + }, + "render": { + "#": 315 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": -65, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 9, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 317 + }, + "pointB": { + "#": 318 + }, + "render": { + "#": 319 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": 65, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 321 + }, + "composites": { + "#": 471 + }, + "constraints": { + "#": 472 + }, + "id": 10, + "isModified": true, + "label": "Car", + "parent": null, + "type": "composite" + }, + [ + { + "#": 322 + }, + { + "#": 369 + }, + { + "#": 420 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2126.1884457348515, + "axes": { + "#": 323 + }, + "bounds": { + "#": 340 + }, + "collisionFilter": { + "#": 343 + }, + "constraintImpulse": { + "#": 344 + }, + "density": 0.001, + "force": { + "#": 345 + }, + "friction": 0.01, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 3956.4572567658843, + "inverseInertia": 0.00025275137202352267, + "inverseMass": 0.47032519718842736, + "isSleeping": false, + "isStatic": false, + "label": "Trapezoid Body", + "mass": 2.1261884457348517, + "motion": 0, + "parent": null, + "position": { + "#": 346 + }, + "positionImpulse": { + "#": 347 + }, + "positionPrev": { + "#": 348 + }, + "render": { + "#": 349 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 351 + }, + "vertices": { + "#": 352 + } + }, + [ + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + } + ], + { + "x": -0.2608196030353321, + "y": 0.9653875567213884 + }, + { + "x": -0.7114878490641614, + "y": 0.7026983994816361 + }, + { + "x": -0.968554942731206, + "y": 0.2487997646923126 + }, + { + "x": -0.8660612147845096, + "y": -0.4999379683980598 + }, + { + "x": -0.8655659554873377, + "y": -0.5007949447641141 + }, + { + "x": -0.6554564466022562, + "y": -0.7552329750530916 + }, + { + "x": -0.37397774803534234, + "y": -0.9274376765984946 + }, + { + "x": -0.005605531968706713, + "y": -0.9999842888822543 + }, + { + "x": 0.16498842154925927, + "y": -0.9862955037688674 + }, + { + "x": 0.4770005470622027, + "y": -0.8789029969811 + }, + { + "x": 0.7370746030083672, + "y": -0.6758113861130618 + }, + { + "x": 0.8346351660357039, + "y": -0.5508031768395611 + }, + { + "x": 0.9955004136718107, + "y": -0.09475719697866514 + }, + { + "x": 0.9077770766774552, + "y": 0.4194529521399672 + }, + { + "x": 0.5730408239129532, + "y": 0.8195268233127967 + }, + { + "x": 0.009871783771359135, + "y": 0.9999512727554136 + }, + { + "max": { + "#": 341 + }, + "min": { + "#": 342 + } + }, + { + "x": 388.0994228804999, + "y": 315.33041657985115 + }, + { + "x": 311.4901800712157, + "y": 283.00948758215736 + }, + { + "category": 1, + "group": -2, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350, + "y": 300 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 350 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 321.48940752697604, + "y": 315.33041657985115 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.45356754058963, + "y": 313.969879273301 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.7880171884624, + "y": 310.2584797061534 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 311.4901800712157, + "y": 305.20611739253224 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.5576196414109, + "y": 289.49825316627346 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 322.21012699054046, + "y": 286.64208595142077 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.7022209196597, + "y": 284.47923146103693 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 327.7625504866057, + "y": 283.245191494179 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 369.8103365246699, + "y": 283.00948758215736 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 373.06488329162903, + "y": 283.5539111670637 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 375.9650596549655, + "y": 285.1279025138222 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 378.1950807321617, + "y": 287.56007802011015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 387.60513219048556, + "y": 301.81918216396724 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 388.0994228804999, + "y": 307.01210261827504 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 385.911391831117, + "y": 311.7474237539468 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 381.636418616452, + "y": 314.7366293582671 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1788.935704, + "axes": { + "#": 370 + }, + "bounds": { + "#": 383 + }, + "circleRadius": 24, + "collisionFilter": { + "#": 386 + }, + "constraintImpulse": { + "#": 387 + }, + "density": 0.01, + "force": { + "#": 388 + }, + "friction": 0.9, + "frictionAir": 0.01, + "frictionStatic": 10, + "id": 12, + "inertia": 20374.221073499848, + "inverseInertia": 0.00004908163096849237, + "inverseMass": 0.055899158240513266, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.88935704, + "motion": 0, + "parent": null, + "position": { + "#": 389 + }, + "positionImpulse": { + "#": 390 + }, + "positionPrev": { + "#": 391 + }, + "render": { + "#": 392 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 394 + }, + "vertices": { + "#": 395 + } + }, + [ + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + } + ], + { + "x": -0.9659003038284947, + "y": -0.25891427744336837 + }, + { + "x": -0.8660048470041256, + "y": -0.5000356036977377 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.5000356036977377, + "y": -0.8660048470041256 + }, + { + "x": -0.25891427744336837, + "y": -0.9659003038284947 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891427744336837, + "y": -0.9659003038284947 + }, + { + "x": 0.5000356036977377, + "y": -0.8660048470041256 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660048470041256, + "y": -0.5000356036977377 + }, + { + "x": 0.9659003038284947, + "y": -0.25891427744336837 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 384 + }, + "min": { + "#": 385 + } + }, + { + "x": 313.795, + "y": 323.795 + }, + { + "x": 266.205, + "y": 276.205 + }, + { + "category": 1, + "group": -2, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290, + "y": 300 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 393 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 313.795, + "y": 303.133 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.173, + "y": 309.184 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 309.04, + "y": 314.61 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.61, + "y": 319.04 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 299.184, + "y": 322.173 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 293.133, + "y": 323.795 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 286.867, + "y": 323.795 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.816, + "y": 322.173 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 275.39, + "y": 319.04 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 270.96, + "y": 314.61 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 267.827, + "y": 309.184 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 266.205, + "y": 303.133 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 266.205, + "y": 296.867 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.827, + "y": 290.816 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 270.96, + "y": 285.39 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 275.39, + "y": 280.96 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 280.816, + "y": 277.827 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 286.867, + "y": 276.205 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 293.133, + "y": 276.205 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 299.184, + "y": 277.827 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 304.61, + "y": 280.96 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 309.04, + "y": 285.39 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 312.173, + "y": 290.816 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 313.795, + "y": 296.867 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1788.935704, + "axes": { + "#": 421 + }, + "bounds": { + "#": 434 + }, + "circleRadius": 24, + "collisionFilter": { + "#": 437 + }, + "constraintImpulse": { + "#": 438 + }, + "density": 0.01, + "force": { + "#": 439 + }, + "friction": 0.9, + "frictionAir": 0.01, + "frictionStatic": 10, + "id": 13, + "inertia": 20374.221073499848, + "inverseInertia": 0.00004908163096849237, + "inverseMass": 0.055899158240513266, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.88935704, + "motion": 0, + "parent": null, + "position": { + "#": 440 + }, + "positionImpulse": { + "#": 441 + }, + "positionPrev": { + "#": 442 + }, + "render": { + "#": 443 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 445 + }, + "vertices": { + "#": 446 + } + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "x": -0.9659003038284947, + "y": -0.25891427744336837 + }, + { + "x": -0.8660048470041256, + "y": -0.5000356036977377 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.5000356036977377, + "y": -0.8660048470041256 + }, + { + "x": -0.25891427744336837, + "y": -0.9659003038284947 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891427744336837, + "y": -0.9659003038284947 + }, + { + "x": 0.5000356036977377, + "y": -0.8660048470041256 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660048470041256, + "y": -0.5000356036977377 + }, + { + "x": 0.9659003038284947, + "y": -0.25891427744336837 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 435 + }, + "min": { + "#": 436 + } + }, + { + "x": 433.795, + "y": 323.795 + }, + { + "x": 386.205, + "y": 276.205 + }, + { + "category": 1, + "group": -2, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410, + "y": 300 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 444 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 433.795, + "y": 303.133 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 432.173, + "y": 309.184 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.04, + "y": 314.61 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 424.61, + "y": 319.04 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 419.184, + "y": 322.173 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 413.133, + "y": 323.795 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 406.867, + "y": 323.795 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400.816, + "y": 322.173 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 395.39, + "y": 319.04 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 390.96, + "y": 314.61 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 387.827, + "y": 309.184 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 386.205, + "y": 303.133 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 386.205, + "y": 296.867 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 387.827, + "y": 290.816 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.96, + "y": 285.39 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 395.39, + "y": 280.96 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 400.816, + "y": 277.827 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 406.867, + "y": 276.205 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 413.133, + "y": 276.205 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 419.184, + "y": 277.827 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 424.61, + "y": 280.96 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 429.04, + "y": 285.39 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 432.173, + "y": 290.816 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 433.795, + "y": 296.867 + }, + [], + [ + { + "#": 473 + }, + { + "#": 477 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 14, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 474 + }, + "pointB": { + "#": 475 + }, + "render": { + "#": 476 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": -60, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 15, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 478 + }, + "pointB": { + "#": 479 + }, + "render": { + "#": 480 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": 60, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 482 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 483 + }, + "pointB": "", + "render": { + "#": 484 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/car/car-10.json b/tests/browser/refs/car/car-10.json new file mode 100644 index 00000000..e3126d1c --- /dev/null +++ b/tests/browser/refs/car/car-10.json @@ -0,0 +1,4462 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 156 + }, + "composites": { + "#": 159 + }, + "constraints": { + "#": 494 + }, + "gravity": { + "#": 498 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 13000, + "axes": { + "#": 91 + }, + "bounds": { + "#": 94 + }, + "collisionFilter": { + "#": 97 + }, + "constraintImpulse": { + "#": 98 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 99 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 100 + }, + "positionImpulse": { + "#": 101 + }, + "positionPrev": { + "#": 102 + }, + "region": { + "#": 103 + }, + "render": { + "#": 104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 106 + }, + "vertices": { + "#": 107 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 95 + }, + "min": { + "#": 96 + } + }, + { + "x": 521.117169632681, + "y": 220.72179974764737 + }, + { + "x": -121.11716963268105, + "y": 79.27820025235262 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 150 + }, + { + "endCol": 10, + "endRow": 4, + "id": "-3,10,1,4", + "startCol": -3, + "startRow": 1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 105 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -117.36954334096657, + "y": 79.27820025235262 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 521.117169632681, + "y": 201.0760547330736 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 517.3695433409666, + "y": 220.72179974764737 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -121.11716963268105, + "y": 98.9239452669264 + }, + { + "angle": -0.18849555921538758, + "anglePrev": -0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 13000, + "axes": { + "#": 113 + }, + "bounds": { + "#": 116 + }, + "collisionFilter": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 121 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 122 + }, + "positionImpulse": { + "#": 123 + }, + "positionPrev": { + "#": 124 + }, + "region": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": 0.1873813145857246 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 821.117169632681, + "y": 420.72179974764737 + }, + { + "x": 178.88283036731895, + "y": 279.27820025235263 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 350 + }, + { + "endCol": 17, + "endRow": 8, + "id": "3,17,5,8", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 178.88283036731895, + "y": 401.0760547330736 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 817.3695433409666, + "y": 279.27820025235263 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 821.117169632681, + "y": 298.9239452669264 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 182.63045665903343, + "y": 420.72179974764737 + }, + { + "angle": 0.12566370614359174, + "anglePrev": 0.12566370614359174, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 143 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "region": { + "#": 147 + }, + "render": { + "#": 148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 150 + }, + "vertices": { + "#": 151 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": -0.12533323356430426, + "y": 0.9921147013144779 + }, + { + "x": -0.9921147013144779, + "y": -0.12533323356430426 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 688.4934777957103, + "y": 633.7877787606512 + }, + { + "x": -8.493477795710305, + "y": 526.2122212393488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 580 + }, + { + "endCol": 14, + "endRow": 13, + "id": "-1,14,10,13", + "startCol": -1, + "startRow": 10 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 149 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.986813124424202, + "y": 526.2122212393488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 688.4934777957103, + "y": 613.9454847343617 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685.9868131244242, + "y": 633.7877787606512 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -8.493477795710305, + "y": 546.0545152656383 + }, + { + "max": { + "#": 157 + }, + "min": { + "#": 158 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 160 + }, + { + "#": 330 + } + ], + { + "bodies": { + "#": 161 + }, + "composites": { + "#": 320 + }, + "constraints": { + "#": 321 + }, + "id": 4, + "isModified": false, + "label": "Car", + "parent": null, + "type": "composite" + }, + [ + { + "#": 162 + }, + { + "#": 210 + }, + { + "#": 265 + } + ], + { + "angle": 0.08265813338317006, + "anglePrev": 0.07800205036720367, + "angularSpeed": 0.004861699807614283, + "angularVelocity": 0.005138300192385717, + "area": 2708.0744020211446, + "axes": { + "#": 163 + }, + "bounds": { + "#": 180 + }, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.01, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 6441.781058446046, + "inverseInertia": 0.00015523657058925727, + "inverseMass": 0.369266073064189, + "isSleeping": false, + "isStatic": false, + "label": "Trapezoid Body", + "mass": 2.7080744020211447, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "region": { + "#": 189 + }, + "render": { + "#": 190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1374341801257883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 192 + }, + "vertices": { + "#": 193 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": -0.33963539985090013, + "y": 0.9405571727269529 + }, + { + "x": -0.7670762786287727, + "y": 0.6415559077469656 + }, + { + "x": -0.9857899785978232, + "y": 0.16798249342149807 + }, + { + "x": -0.8392750107995526, + "y": -0.5437071419867602 + }, + { + "x": -0.8212630524735327, + "y": -0.5705497337146477 + }, + { + "x": -0.5908634758306169, + "y": -0.8067715618000932 + }, + { + "x": -0.2961278968473183, + "y": -0.955148296710403 + }, + { + "x": 0.07777395245260059, + "y": -0.9969710187963844 + }, + { + "x": 0.24585765349737748, + "y": -0.9693059445896136 + }, + { + "x": 0.547937735803848, + "y": -0.8365191197349604 + }, + { + "x": 0.7903557728239621, + "y": -0.6126481472785485 + }, + { + "x": 0.8978516500479692, + "y": -0.44029809732286995 + }, + { + "x": 0.9999250744769913, + "y": -0.012241136882808038 + }, + { + "x": 0.8700459783782295, + "y": 0.4929705828017219 + }, + { + "x": 0.5034208798799624, + "y": 0.8640413286995503 + }, + { + "x": -0.07412538896602014, + "y": 0.9972489291599346 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 196.21930625533705, + "y": 114.59515508286677 + }, + { + "x": 110.05487752898921, + "y": 74.07505489735557 + }, + { + "category": 1, + "group": -1, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.98350326480372, + "y": 95.03313443958051 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.63900759218237, + "y": 94.2142624743203 + }, + { + "endCol": 4, + "endRow": 2, + "id": "2,4,1,2", + "startCol": 2, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 191 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.35146987857433487, + "y": 0.8283199639113548 + }, + [ + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 119.1840621861351, + "y": 109.39529431440522 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 114.27774721768156, + "y": 107.62362291108809 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 110.93114007401081, + "y": 103.62225230129255 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 110.05487752898921, + "y": 98.47998528341071 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.21339823442587, + "y": 79.7118989215611 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 124.09608023404446, + "y": 77.00192102747442 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 126.75823956468903, + "y": 75.05220838290639 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.9100077610833, + "y": 74.07505489735557 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 178.8097936074897, + "y": 77.88973912353511 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 182.00827876341276, + "y": 78.70101244706188 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 184.76859814662964, + "y": 80.5090800898129 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 186.79019516232097, + "y": 83.11707111822435 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 196.1554516860875, + "y": 102.21461224800176 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 196.21930625533705, + "y": 107.43061346780507 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 193.6477784210482, + "y": 111.96911440186702 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 189.14060009389738, + "y": 114.59515508286677 + }, + { + "angle": -0.04743344093529124, + "anglePrev": -0.04243392874253828, + "angularSpeed": 0.004999512192752967, + "angularVelocity": -0.004999512192752964, + "area": 2267.978204, + "axes": { + "#": 211 + }, + "bounds": { + "#": 225 + }, + "circleRadius": 27, + "collisionFilter": { + "#": 228 + }, + "constraintImpulse": { + "#": 229 + }, + "density": 0.01, + "force": { + "#": 230 + }, + "friction": 0.9, + "frictionAir": 0.01, + "frictionStatic": 10, + "id": 6, + "inertia": 32746.596044382426, + "inverseInertia": 0.00003053752514138174, + "inverseMass": 0.04409213449389922, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 22.67978204, + "motion": 0, + "parent": null, + "position": { + "#": 231 + }, + "positionImpulse": { + "#": 232 + }, + "positionPrev": { + "#": 233 + }, + "region": { + "#": 234 + }, + "render": { + "#": 235 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0.8186668919212642, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 237 + }, + "vertices": { + "#": 238 + } + }, + [ + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + } + ], + { + "x": -0.9811895717771835, + "y": -0.19304668926378118 + }, + { + "x": -0.9065630538448863, + "y": -0.4220704081115297 + }, + { + "x": -0.7790546895827526, + "y": -0.626955971850592 + }, + { + "x": -0.6064501573272095, + "y": -0.7951215043487394 + }, + { + "x": -0.3985252545402995, + "y": -0.9171573591775781 + }, + { + "x": -0.1675268488904641, + "y": -0.9858675138682843 + }, + { + "x": 0.0733876111734853, + "y": -0.9973034936899845 + }, + { + "x": 0.3098558804147849, + "y": -0.950783536548871 + }, + { + "x": 0.5284056548183917, + "y": -0.8489920282051805 + }, + { + "x": 0.7161634939107642, + "y": -0.6979325540405219 + }, + { + "x": 0.8625062315305105, + "y": -0.5060464411208095 + }, + { + "x": 0.958491383745257, + "y": -0.2851214956577317 + }, + { + "x": 0.9988752452493234, + "y": -0.047415655938772436 + }, + { + "max": { + "#": 226 + }, + "min": { + "#": 227 + } + }, + { + "x": 116.13723969620057, + "y": 116.91966748355283 + }, + { + "x": 62.28295221051581, + "y": 62.980404240089385 + }, + { + "category": 1, + "group": -1, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 89.21009595335819, + "y": 89.95003586182116 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 88.90226315779934, + "y": 88.88766963679645 + }, + { + "endCol": 2, + "endRow": 2, + "id": "1,2,1,2", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 236 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.33075116440579677, + "y": 0.8910360397637902 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 116.13723969620057, + "y": 91.92949408373555 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 114.88065900963517, + "y": 98.31625922566384 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 112.1333641088323, + "y": 104.21716108283978 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 108.05222875082465, + "y": 109.28837466438218 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 102.87754861727494, + "y": 113.23517469927698 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 96.90782920859425, + "y": 115.82915044735577 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 90.49031866370503, + "y": 116.91966748355283 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 83.99836553899195, + "y": 116.44195038470848 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 77.8097754624979, + "y": 114.42511800071644 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 72.28450396893692, + "y": 110.98623447223771 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 67.74135045946188, + "y": 106.32440766407069 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 64.44744787699683, + "y": 100.71027569401247 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 62.591533299365345, + "y": 94.47125773598937 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 62.28295221051581, + "y": 87.97057763990675 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 63.53953289708121, + "y": 81.58381249797843 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 66.28682779788407, + "y": 75.68291064080246 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 70.36796315589173, + "y": 70.6116970592601 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 75.54264328944144, + "y": 66.66489702436532 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 81.51236269812213, + "y": 64.07092127628644 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 87.92987324301133, + "y": 62.980404240089385 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 94.42182636772442, + "y": 63.45812133893375 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 100.61041644421849, + "y": 65.47495372292583 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 106.13568793777947, + "y": 68.91383725140453 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 110.6788414472545, + "y": 73.57566405957155 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 113.97274402971952, + "y": 79.1897960296298 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 115.82865860735104, + "y": 85.4288139876529 + }, + { + "angle": 2.7765946254902356e-22, + "anglePrev": 2.988579097518816e-22, + "angularSpeed": 2.2853889757888897e-23, + "angularVelocity": -2.2853889757888888e-23, + "area": 2267.978204, + "axes": { + "#": 266 + }, + "bounds": { + "#": 280 + }, + "circleRadius": 27, + "collisionFilter": { + "#": 283 + }, + "constraintImpulse": { + "#": 284 + }, + "density": 0.01, + "force": { + "#": 285 + }, + "friction": 0.9, + "frictionAir": 0.01, + "frictionStatic": 10, + "id": 7, + "inertia": 32746.596044382426, + "inverseInertia": 0.00003053752514138174, + "inverseMass": 0.04409213449389922, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 22.67978204, + "motion": 0, + "parent": null, + "position": { + "#": 286 + }, + "positionImpulse": { + "#": 287 + }, + "positionPrev": { + "#": 288 + }, + "region": { + "#": 289 + }, + "render": { + "#": 290 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 1.2078552088308852, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 292 + }, + "vertices": { + "#": 293 + } + }, + [ + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + } + ], + { + "x": -0.9709325387467623, + "y": -0.23935330622902776 + }, + { + "x": -0.8855306474903332, + "y": -0.46458096426279816 + }, + { + "x": -0.7484509154695812, + "y": -0.6631901892615314 + }, + { + "x": -0.5680668419519881, + "y": -0.8229824196631996 + }, + { + "x": -0.35458939358251373, + "y": -0.9350221184329198 + }, + { + "x": -0.12059286743251717, + "y": -0.9927020501260201 + }, + { + "x": 0.12059286743251717, + "y": -0.9927020501260201 + }, + { + "x": 0.35458939358251373, + "y": -0.9350221184329198 + }, + { + "x": 0.5680668419519881, + "y": -0.8229824196631996 + }, + { + "x": 0.7484509154695812, + "y": -0.6631901892615314 + }, + { + "x": 0.8855306474903332, + "y": -0.46458096426279816 + }, + { + "x": 0.9709325387467623, + "y": -0.23935330622902776 + }, + { + "x": 1, + "y": 2.7765946254902356e-22 + }, + { + "max": { + "#": 281 + }, + "min": { + "#": 282 + } + }, + { + "x": 245.5480333022744, + "y": 127.41213673972854 + }, + { + "x": 191.9420333022744, + "y": 73.41213673972854 + }, + { + "category": 1, + "group": -1, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 218.74503330227438, + "y": 100.41213673972854 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 218.41440064975734, + "y": 99.29658246380589 + }, + { + "endCol": 5, + "endRow": 2, + "id": "3,5,1,2", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 291 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3236584465640533, + "y": 1.1061062772715076 + }, + [ + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.5480333022744, + "y": 103.66613673972856 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.9900333022744, + "y": 109.98613673972855 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 240.9660333022744, + "y": 115.75013673972853 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 236.6490333022744, + "y": 120.62213673972855 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 231.2930333022744, + "y": 124.31913673972855 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 225.2070333022744, + "y": 126.62713673972854 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 218.7450333022744, + "y": 127.41213673972854 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 212.28303330227442, + "y": 126.62713673972854 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 206.1970333022744, + "y": 124.31913673972855 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 200.8410333022744, + "y": 120.62213673972855 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 196.5240333022744, + "y": 115.75013673972853 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 193.5000333022744, + "y": 109.98613673972855 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 191.9420333022744, + "y": 103.66613673972856 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 191.9420333022744, + "y": 97.15813673972855 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 193.5000333022744, + "y": 90.83813673972855 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 196.5240333022744, + "y": 85.07413673972854 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 200.8410333022744, + "y": 80.20213673972853 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 206.1970333022744, + "y": 76.50513673972856 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 212.28303330227442, + "y": 74.19713673972853 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 218.7450333022744, + "y": 73.41213673972854 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 225.2070333022744, + "y": 74.19713673972853 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 231.2930333022744, + "y": 76.50513673972856 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 236.6490333022744, + "y": 80.20213673972853 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 240.9660333022744, + "y": 85.07413673972854 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 243.9900333022744, + "y": 90.83813673972855 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 245.5480333022744, + "y": 97.15813673972855 + }, + [], + [ + { + "#": 322 + }, + { + "#": 326 + } + ], + { + "angleA": 0.08314035055958939, + "angleB": -0.04743344093529124, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 8, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 323 + }, + "pointB": { + "#": 324 + }, + "render": { + "#": 325 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": -64.77547904326654, + "y": -5.397899101996622 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.08314035055958939, + "angleB": 2.7600401999399274e-22, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 9, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 327 + }, + "pointB": { + "#": 328 + }, + "render": { + "#": 329 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": 64.77547904326657, + "y": 5.397899101996622 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 331 + }, + "composites": { + "#": 484 + }, + "constraints": { + "#": 485 + }, + "id": 10, + "isModified": false, + "label": "Car", + "parent": null, + "type": "composite" + }, + [ + { + "#": 332 + }, + { + "#": 380 + }, + { + "#": 432 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2126.1884457348515, + "axes": { + "#": 333 + }, + "bounds": { + "#": 350 + }, + "collisionFilter": { + "#": 353 + }, + "constraintImpulse": { + "#": 354 + }, + "density": 0.001, + "force": { + "#": 355 + }, + "friction": 0.01, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 3956.4572567658843, + "inverseInertia": 0.00025275137202352267, + "inverseMass": 0.47032519718842736, + "isSleeping": false, + "isStatic": false, + "label": "Trapezoid Body", + "mass": 2.1261884457348517, + "motion": 0, + "parent": null, + "position": { + "#": 356 + }, + "positionImpulse": { + "#": 357 + }, + "positionPrev": { + "#": 358 + }, + "region": { + "#": 359 + }, + "render": { + "#": 360 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 362 + }, + "vertices": { + "#": 363 + } + }, + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": -0.2608196030353321, + "y": 0.9653875567213884 + }, + { + "x": -0.7114878490641614, + "y": 0.7026983994816361 + }, + { + "x": -0.968554942731206, + "y": 0.2487997646923126 + }, + { + "x": -0.8660612147845096, + "y": -0.4999379683980598 + }, + { + "x": -0.8655659554873377, + "y": -0.5007949447641141 + }, + { + "x": -0.6554564466022562, + "y": -0.7552329750530916 + }, + { + "x": -0.37397774803534234, + "y": -0.9274376765984946 + }, + { + "x": -0.005605531968706713, + "y": -0.9999842888822543 + }, + { + "x": 0.16498842154925927, + "y": -0.9862955037688674 + }, + { + "x": 0.4770005470622027, + "y": -0.8789029969811 + }, + { + "x": 0.7370746030083672, + "y": -0.6758113861130618 + }, + { + "x": 0.8346351660357039, + "y": -0.5508031768395611 + }, + { + "x": 0.9955004136718107, + "y": -0.09475719697866514 + }, + { + "x": 0.9077770766774552, + "y": 0.4194529521399672 + }, + { + "x": 0.5730408239129532, + "y": 0.8195268233127967 + }, + { + "x": 0.009871783771359135, + "y": 0.9999512727554136 + }, + { + "max": { + "#": 351 + }, + "min": { + "#": 352 + } + }, + { + "x": 388.0994228804999, + "y": 333.0661713468761 + }, + { + "x": 311.4901800712157, + "y": 300.7452423491823 + }, + { + "category": 1, + "group": -2, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350, + "y": 317.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350, + "y": 314.8284840519894 + }, + { + "endCol": 8, + "endRow": 6, + "id": "6,8,6,6", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 361 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 321.48940752697604, + "y": 333.0661713468761 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.45356754058963, + "y": 331.70563404032595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.7880171884624, + "y": 327.9942344731784 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 311.4901800712157, + "y": 322.9418721595572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.5576196414109, + "y": 307.2340079332984 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 322.21012699054046, + "y": 304.3778407184457 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.7022209196597, + "y": 302.2149862280619 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 327.7625504866057, + "y": 300.98094626120394 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 369.8103365246699, + "y": 300.7452423491823 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 373.06488329162903, + "y": 301.28966593408865 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 375.9650596549655, + "y": 302.8636572808472 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 378.1950807321617, + "y": 305.2958327871351 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 387.60513219048556, + "y": 319.5549369309922 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 388.0994228804999, + "y": 324.7478573853 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 385.911391831117, + "y": 329.48317852097176 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 381.636418616452, + "y": 332.4723841252921 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1788.935704, + "axes": { + "#": 381 + }, + "bounds": { + "#": 394 + }, + "circleRadius": 24, + "collisionFilter": { + "#": 397 + }, + "constraintImpulse": { + "#": 398 + }, + "density": 0.01, + "force": { + "#": 399 + }, + "friction": 0.9, + "frictionAir": 0.01, + "frictionStatic": 10, + "id": 12, + "inertia": 20374.221073499848, + "inverseInertia": 0.00004908163096849237, + "inverseMass": 0.055899158240513266, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.88935704, + "motion": 0, + "parent": null, + "position": { + "#": 400 + }, + "positionImpulse": { + "#": 401 + }, + "positionPrev": { + "#": 402 + }, + "region": { + "#": 403 + }, + "render": { + "#": 404 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 406 + }, + "vertices": { + "#": 407 + } + }, + [ + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + } + ], + { + "x": -0.9659003038284947, + "y": -0.25891427744336837 + }, + { + "x": -0.8660048470041256, + "y": -0.5000356036977377 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.5000356036977377, + "y": -0.8660048470041256 + }, + { + "x": -0.25891427744336837, + "y": -0.9659003038284947 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891427744336837, + "y": -0.9659003038284947 + }, + { + "x": 0.5000356036977377, + "y": -0.8660048470041256 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660048470041256, + "y": -0.5000356036977377 + }, + { + "x": 0.9659003038284947, + "y": -0.25891427744336837 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 395 + }, + "min": { + "#": 396 + } + }, + { + "x": 313.795, + "y": 341.530754767025 + }, + { + "x": 266.205, + "y": 293.94075476702494 + }, + { + "category": 1, + "group": -2, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290, + "y": 317.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290, + "y": 314.8284840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 405 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 313.795, + "y": 320.86875476702494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.173, + "y": 326.919754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 309.04, + "y": 332.34575476702497 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.61, + "y": 336.775754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 299.184, + "y": 339.90875476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 293.133, + "y": 341.530754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 286.867, + "y": 341.530754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.816, + "y": 339.90875476702496 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 275.39, + "y": 336.775754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 270.96, + "y": 332.34575476702497 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 267.827, + "y": 326.919754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 266.205, + "y": 320.86875476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 266.205, + "y": 314.602754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.827, + "y": 308.55175476702493 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 270.96, + "y": 303.12575476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 275.39, + "y": 298.69575476702494 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 280.816, + "y": 295.56275476702496 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 286.867, + "y": 293.94075476702494 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 293.133, + "y": 293.94075476702494 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 299.184, + "y": 295.56275476702496 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 304.61, + "y": 298.69575476702494 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 309.04, + "y": 303.12575476702494 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 312.173, + "y": 308.55175476702493 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 313.795, + "y": 314.602754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1788.935704, + "axes": { + "#": 433 + }, + "bounds": { + "#": 446 + }, + "circleRadius": 24, + "collisionFilter": { + "#": 449 + }, + "constraintImpulse": { + "#": 450 + }, + "density": 0.01, + "force": { + "#": 451 + }, + "friction": 0.9, + "frictionAir": 0.01, + "frictionStatic": 10, + "id": 13, + "inertia": 20374.221073499848, + "inverseInertia": 0.00004908163096849237, + "inverseMass": 0.055899158240513266, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 17.88935704, + "motion": 0, + "parent": null, + "position": { + "#": 452 + }, + "positionImpulse": { + "#": 453 + }, + "positionPrev": { + "#": 454 + }, + "region": { + "#": 455 + }, + "render": { + "#": 456 + }, + "restitution": 0.5, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 458 + }, + "vertices": { + "#": 459 + } + }, + [ + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": -0.9659003038284947, + "y": -0.25891427744336837 + }, + { + "x": -0.8660048470041256, + "y": -0.5000356036977377 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.5000356036977377, + "y": -0.8660048470041256 + }, + { + "x": -0.25891427744336837, + "y": -0.9659003038284947 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891427744336837, + "y": -0.9659003038284947 + }, + { + "x": 0.5000356036977377, + "y": -0.8660048470041256 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.8660048470041256, + "y": -0.5000356036977377 + }, + { + "x": 0.9659003038284947, + "y": -0.25891427744336837 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 447 + }, + "min": { + "#": 448 + } + }, + { + "x": 433.795, + "y": 341.530754767025 + }, + { + "x": 386.205, + "y": 293.94075476702494 + }, + { + "category": 1, + "group": -2, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410, + "y": 317.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410, + "y": 314.8284840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 457 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 433.795, + "y": 320.86875476702494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 432.173, + "y": 326.919754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.04, + "y": 332.34575476702497 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 424.61, + "y": 336.775754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 419.184, + "y": 339.90875476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 413.133, + "y": 341.530754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 406.867, + "y": 341.530754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400.816, + "y": 339.90875476702496 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 395.39, + "y": 336.775754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 390.96, + "y": 332.34575476702497 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 387.827, + "y": 326.919754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 386.205, + "y": 320.86875476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 386.205, + "y": 314.602754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 387.827, + "y": 308.55175476702493 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.96, + "y": 303.12575476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 395.39, + "y": 298.69575476702494 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 400.816, + "y": 295.56275476702496 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 406.867, + "y": 293.94075476702494 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 413.133, + "y": 293.94075476702494 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 419.184, + "y": 295.56275476702496 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 424.61, + "y": 298.69575476702494 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 429.04, + "y": 303.12575476702494 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 432.173, + "y": 308.55175476702493 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 433.795, + "y": 314.602754767025 + }, + [], + [ + { + "#": 486 + }, + { + "#": 490 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 14, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 487 + }, + "pointB": { + "#": 488 + }, + "render": { + "#": 489 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": -60, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 15, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 491 + }, + "pointB": { + "#": 492 + }, + "render": { + "#": 493 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": 60, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 495 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 496 + }, + "pointB": "", + "render": { + "#": 497 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/catapult/catapult-0.json b/tests/browser/refs/catapult/catapult-0.json new file mode 100644 index 00000000..160e84a9 --- /dev/null +++ b/tests/browser/refs/catapult/catapult-0.json @@ -0,0 +1,2923 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 182 + }, + "composites": { + "#": 185 + }, + "constraints": { + "#": 316 + }, + "gravity": { + "#": 328 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + }, + { + "#": 128 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6400, + "axes": { + "#": 87 + }, + "bounds": { + "#": 90 + }, + "collisionFilter": { + "#": 93 + }, + "constraintImpulse": { + "#": 94 + }, + "density": 0.001, + "force": { + "#": 95 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 219306.66666666666, + "inverseInertia": 0.000004559824902723735, + "inverseMass": 0.15625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 6.4, + "motion": 0, + "parent": null, + "position": { + "#": 96 + }, + "positionImpulse": { + "#": 97 + }, + "positionPrev": { + "#": 98 + }, + "render": { + "#": 99 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 101 + }, + "vertices": { + "#": 102 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 560, + "y": 530 + }, + { + "x": 240, + "y": 510 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 520 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 100 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240, + "y": 510 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 510 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 530 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240, + "y": 530 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 108 + }, + "bounds": { + "#": 111 + }, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 116 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "render": { + "#": 120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 122 + }, + "vertices": { + "#": 123 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 260, + "y": 580 + }, + { + "x": 240, + "y": 530 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 250, + "y": 555 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 250, + "y": 555 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 121 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240, + "y": 530 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 530 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 580 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240, + "y": 580 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7777.744665999999, + "axes": { + "#": 129 + }, + "bounds": { + "#": 143 + }, + "circleRadius": 50, + "collisionFilter": { + "#": 146 + }, + "constraintImpulse": { + "#": 147 + }, + "density": 0.005000000000000001, + "force": { + "#": 148 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 192559.86686574563, + "inverseInertia": 0.000005193190129785499, + "inverseMass": 0.0257143951863436, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 38.88872333, + "motion": 0, + "parent": null, + "position": { + "#": 149 + }, + "positionImpulse": { + "#": 150 + }, + "positionPrev": { + "#": 151 + }, + "render": { + "#": 152 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 154 + }, + "vertices": { + "#": 155 + } + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": -0.970952042258738, + "y": -0.239274176696078 + }, + { + "x": -0.8854431390332113, + "y": -0.46474772461951164 + }, + { + "x": -0.748538767034939, + "y": -0.6630910301352396 + }, + { + "x": -0.5680489228149688, + "y": -0.8229947881297631 + }, + { + "x": -0.35459420851145496, + "y": -0.9350202924483163 + }, + { + "x": -0.12054195746334154, + "y": -0.992708233314757 + }, + { + "x": 0.12054195746334154, + "y": -0.992708233314757 + }, + { + "x": 0.35459420851145496, + "y": -0.9350202924483163 + }, + { + "x": 0.5680489228149688, + "y": -0.8229947881297631 + }, + { + "x": 0.748538767034939, + "y": -0.6630910301352396 + }, + { + "x": 0.8854431390332113, + "y": -0.46474772461951164 + }, + { + "x": 0.970952042258738, + "y": -0.239274176696078 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 144 + }, + "min": { + "#": 145 + } + }, + { + "x": 609.635, + "y": 150 + }, + { + "x": 510.365, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 100 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 153 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 156 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 609.635, + "y": 106.027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 606.751, + "y": 117.73 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 601.149, + "y": 128.403 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 593.156, + "y": 137.426 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 583.236, + "y": 144.273 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 571.966, + "y": 148.547 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 560, + "y": 150 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 548.034, + "y": 148.547 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 536.764, + "y": 144.273 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 526.844, + "y": 137.426 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 518.851, + "y": 128.403 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 513.249, + "y": 117.73 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 510.365, + "y": 106.027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 510.365, + "y": 93.973 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 513.249, + "y": 82.27 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 518.851, + "y": 71.59700000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 526.844, + "y": 62.574 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 536.764, + "y": 55.727 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 548.034, + "y": 51.453 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 560, + "y": 50 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 571.966, + "y": 51.453 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 583.236, + "y": 55.727 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 593.156, + "y": 62.574 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 601.149, + "y": 71.59700000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 606.751, + "y": 82.27 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 609.635, + "y": 93.973 + }, + { + "max": { + "#": 183 + }, + "min": { + "#": 184 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 186 + } + ], + { + "bodies": { + "#": 187 + }, + "composites": { + "#": 314 + }, + "constraints": { + "#": 315 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 188 + }, + { + "#": 209 + }, + { + "#": 230 + }, + { + "#": 251 + }, + { + "#": 272 + }, + { + "#": 293 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 189 + }, + "bounds": { + "#": 192 + }, + "collisionFilter": { + "#": 195 + }, + "constraintImpulse": { + "#": 196 + }, + "density": 0.001, + "force": { + "#": 197 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 198 + }, + "positionImpulse": { + "#": 199 + }, + "positionPrev": { + "#": 200 + }, + "render": { + "#": 201 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 203 + }, + "vertices": { + "#": 204 + } + }, + [ + { + "#": 190 + }, + { + "#": 191 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 193 + }, + "min": { + "#": 194 + } + }, + { + "x": 280, + "y": 285 + }, + { + "x": 250, + "y": 255 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 270 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 270 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 202 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 255 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 255 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 285 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 285 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 210 + }, + "bounds": { + "#": 213 + }, + "collisionFilter": { + "#": 216 + }, + "constraintImpulse": { + "#": 217 + }, + "density": 0.001, + "force": { + "#": 218 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 219 + }, + "positionImpulse": { + "#": 220 + }, + "positionPrev": { + "#": 221 + }, + "render": { + "#": 222 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 224 + }, + "vertices": { + "#": 225 + } + }, + [ + { + "#": 211 + }, + { + "#": 212 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 214 + }, + "min": { + "#": 215 + } + }, + { + "x": 280, + "y": 315 + }, + { + "x": 250, + "y": 285 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 300 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 223 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 285 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 285 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 315 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 315 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 231 + }, + "bounds": { + "#": 234 + }, + "collisionFilter": { + "#": 237 + }, + "constraintImpulse": { + "#": 238 + }, + "density": 0.001, + "force": { + "#": 239 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 240 + }, + "positionImpulse": { + "#": 241 + }, + "positionPrev": { + "#": 242 + }, + "render": { + "#": 243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 245 + }, + "vertices": { + "#": 246 + } + }, + [ + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 235 + }, + "min": { + "#": 236 + } + }, + { + "x": 280, + "y": 345 + }, + { + "x": 250, + "y": 315 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 330 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 330 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 244 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 315 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 315 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 252 + }, + "bounds": { + "#": 255 + }, + "collisionFilter": { + "#": 258 + }, + "constraintImpulse": { + "#": 259 + }, + "density": 0.001, + "force": { + "#": 260 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 261 + }, + "positionImpulse": { + "#": 262 + }, + "positionPrev": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 256 + }, + "min": { + "#": 257 + } + }, + { + "x": 280, + "y": 375 + }, + { + "x": 250, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 360 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 375 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 375 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "render": { + "#": 285 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 287 + }, + "vertices": { + "#": 288 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 280, + "y": 405 + }, + { + "x": 250, + "y": 375 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 390 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 390 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 286 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 375 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 375 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 405 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 294 + }, + "bounds": { + "#": 297 + }, + "collisionFilter": { + "#": 300 + }, + "constraintImpulse": { + "#": 301 + }, + "density": 0.001, + "force": { + "#": 302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 303 + }, + "positionImpulse": { + "#": 304 + }, + "positionPrev": { + "#": 305 + }, + "render": { + "#": 306 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 308 + }, + "vertices": { + "#": 309 + } + }, + [ + { + "#": 295 + }, + { + "#": 296 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 298 + }, + "min": { + "#": 299 + } + }, + { + "x": 280, + "y": 435 + }, + { + "x": 250, + "y": 405 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 420 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 420 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 307 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 405 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 405 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 435 + }, + [], + [], + [ + { + "#": 317 + }, + { + "#": 320 + }, + { + "#": 324 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 318 + }, + "pointB": "", + "render": { + "#": 319 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleA": 0, + "angularStiffness": 0, + "bodyA": null, + "id": 14, + "label": "Constraint", + "length": 60.8276253029822, + "pointA": { + "#": 321 + }, + "pointB": { + "#": 322 + }, + "render": { + "#": 323 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 390, + "y": 580 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angularStiffness": 0, + "bodyA": null, + "id": 15, + "label": "Constraint", + "length": 60.8276253029822, + "pointA": { + "#": 325 + }, + "pointB": { + "#": 326 + }, + "render": { + "#": 327 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410, + "y": 580 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/catapult/catapult-10.json b/tests/browser/refs/catapult/catapult-10.json new file mode 100644 index 00000000..f86dff7a --- /dev/null +++ b/tests/browser/refs/catapult/catapult-10.json @@ -0,0 +1,3053 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 189 + }, + "composites": { + "#": 192 + }, + "constraints": { + "#": 329 + }, + "gravity": { + "#": 341 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.0010350529413107516, + "anglePrev": 0.000934578938536751, + "angularSpeed": 0.00010047400277400065, + "angularVelocity": 0.00010047400277400067, + "area": 6400, + "axes": { + "#": 91 + }, + "bounds": { + "#": 94 + }, + "collisionFilter": { + "#": 97 + }, + "constraintImpulse": { + "#": 98 + }, + "density": 0.001, + "force": { + "#": 99 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 219306.66666666666, + "inverseInertia": 0.000004559824902723735, + "inverseMass": 0.15625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 6.4, + "motion": 0, + "parent": null, + "position": { + "#": 100 + }, + "positionImpulse": { + "#": 101 + }, + "positionPrev": { + "#": 102 + }, + "region": { + "#": 103 + }, + "render": { + "#": 104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2765373258126698, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 106 + }, + "vertices": { + "#": 107 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + } + ], + { + "x": -0.0010350527564960915, + "y": 0.9999994643327519 + }, + { + "x": -0.9999994643327519, + "y": -0.0010350527564960915 + }, + { + "max": { + "#": 95 + }, + "min": { + "#": 96 + } + }, + { + "x": 560.2101501932867, + "y": 530.1840386806525 + }, + { + "x": 240.18962055167623, + "y": 509.8528325119186 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.1998853724814, + "y": 520.0184355962855 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.1908418158024, + "y": 520.0194747602809 + }, + { + "endCol": 11, + "endRow": 11, + "id": "5,11,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 105 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.017224548796889394, + "y": 0.04903256723002869 + }, + [ + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240.21032160680613, + "y": 509.8528325119186 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560.2101501932867, + "y": 510.18404939399744 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560.1894491381569, + "y": 530.1840386806525 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240.18962055167623, + "y": 529.8528217985739 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 113 + }, + "bounds": { + "#": 116 + }, + "collisionFilter": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 121 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 122 + }, + "positionImpulse": { + "#": 123 + }, + "positionPrev": { + "#": 124 + }, + "region": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 260, + "y": 580 + }, + { + "x": 240, + "y": 530 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 250, + "y": 555 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 250, + "y": 555 + }, + { + "endCol": 5, + "endRow": 12, + "id": "5,5,11,12", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240, + "y": 530 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 530 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 580 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240, + "y": 580 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7777.744665999999, + "axes": { + "#": 135 + }, + "bounds": { + "#": 149 + }, + "circleRadius": 50, + "collisionFilter": { + "#": 152 + }, + "constraintImpulse": { + "#": 153 + }, + "density": 0.005000000000000001, + "force": { + "#": 154 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 192559.86686574563, + "inverseInertia": 0.000005193190129785499, + "inverseMass": 0.0257143951863436, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 38.88872333, + "motion": 0, + "parent": null, + "position": { + "#": 155 + }, + "positionImpulse": { + "#": 156 + }, + "positionPrev": { + "#": 157 + }, + "region": { + "#": 158 + }, + "render": { + "#": 159 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 161 + }, + "vertices": { + "#": 162 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": -0.970952042258738, + "y": -0.239274176696078 + }, + { + "x": -0.8854431390332113, + "y": -0.46474772461951164 + }, + { + "x": -0.748538767034939, + "y": -0.6630910301352396 + }, + { + "x": -0.5680489228149688, + "y": -0.8229947881297631 + }, + { + "x": -0.35459420851145496, + "y": -0.9350202924483163 + }, + { + "x": -0.12054195746334154, + "y": -0.992708233314757 + }, + { + "x": 0.12054195746334154, + "y": -0.992708233314757 + }, + { + "x": 0.35459420851145496, + "y": -0.9350202924483163 + }, + { + "x": 0.5680489228149688, + "y": -0.8229947881297631 + }, + { + "x": 0.748538767034939, + "y": -0.6630910301352396 + }, + { + "x": 0.8854431390332113, + "y": -0.46474772461951164 + }, + { + "x": 0.970952042258738, + "y": -0.239274176696078 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 150 + }, + "min": { + "#": 151 + } + }, + { + "x": 609.635, + "y": 167.73575476702575 + }, + { + "x": 510.365, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 114.82848405199007 + }, + { + "endCol": 12, + "endRow": 3, + "id": "10,12,1,3", + "startCol": 10, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 160 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 609.635, + "y": 123.76275476702573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 606.751, + "y": 135.46575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 601.149, + "y": 146.13875476702574 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 593.156, + "y": 155.16175476702574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 583.236, + "y": 162.00875476702575 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 571.966, + "y": 166.28275476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 560, + "y": 167.73575476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 548.034, + "y": 166.28275476702575 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 536.764, + "y": 162.00875476702575 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 526.844, + "y": 155.16175476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 518.851, + "y": 146.13875476702574 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 513.249, + "y": 135.46575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 510.365, + "y": 123.76275476702573 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 510.365, + "y": 111.70875476702572 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 513.249, + "y": 100.00575476702572 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 518.851, + "y": 89.33275476702573 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 526.844, + "y": 80.30975476702572 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 536.764, + "y": 73.46275476702573 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 548.034, + "y": 69.18875476702574 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 560, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 571.966, + "y": 69.18875476702574 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 583.236, + "y": 73.46275476702573 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 593.156, + "y": 80.30975476702572 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 601.149, + "y": 89.33275476702573 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 606.751, + "y": 100.00575476702572 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 609.635, + "y": 111.70875476702572 + }, + { + "max": { + "#": 190 + }, + "min": { + "#": 191 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 193 + } + ], + { + "bodies": { + "#": 194 + }, + "composites": { + "#": 327 + }, + "constraints": { + "#": 328 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 195 + }, + { + "#": 217 + }, + { + "#": 239 + }, + { + "#": 261 + }, + { + "#": 283 + }, + { + "#": 305 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 196 + }, + "bounds": { + "#": 199 + }, + "collisionFilter": { + "#": 202 + }, + "constraintImpulse": { + "#": 203 + }, + "density": 0.001, + "force": { + "#": 204 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 205 + }, + "positionImpulse": { + "#": 206 + }, + "positionPrev": { + "#": 207 + }, + "region": { + "#": 208 + }, + "render": { + "#": 209 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 211 + }, + "vertices": { + "#": 212 + } + }, + [ + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 200 + }, + "min": { + "#": 201 + } + }, + { + "x": 280, + "y": 302.73575476702496 + }, + { + "x": 250, + "y": 272.735754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 287.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 284.8284840519894 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 210 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 272.735754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 272.735754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 302.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 302.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 218 + }, + "bounds": { + "#": 221 + }, + "collisionFilter": { + "#": 224 + }, + "constraintImpulse": { + "#": 225 + }, + "density": 0.001, + "force": { + "#": 226 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 227 + }, + "positionImpulse": { + "#": 228 + }, + "positionPrev": { + "#": 229 + }, + "region": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 219 + }, + { + "#": 220 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 222 + }, + "min": { + "#": 223 + } + }, + { + "x": 280, + "y": 332.73575476702496 + }, + { + "x": 250, + "y": 302.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 317.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 314.8284840519894 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,6,6", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 302.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 302.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 332.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 332.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 240 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "region": { + "#": 252 + }, + "render": { + "#": 253 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 255 + }, + "vertices": { + "#": 256 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 280, + "y": 362.73575476702496 + }, + { + "x": 250, + "y": 332.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 347.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 344.8284840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 254 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 332.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 332.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 262 + }, + "bounds": { + "#": 265 + }, + "collisionFilter": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "density": 0.001, + "force": { + "#": 270 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 271 + }, + "positionImpulse": { + "#": 272 + }, + "positionPrev": { + "#": 273 + }, + "region": { + "#": 274 + }, + "render": { + "#": 275 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 277 + }, + "vertices": { + "#": 278 + } + }, + [ + { + "#": 263 + }, + { + "#": 264 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 266 + }, + "min": { + "#": 267 + } + }, + { + "x": 280, + "y": 392.73575476702496 + }, + { + "x": 250, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 374.8284840519894 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 276 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 392.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 392.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 284 + }, + "bounds": { + "#": 287 + }, + "collisionFilter": { + "#": 290 + }, + "constraintImpulse": { + "#": 291 + }, + "density": 0.001, + "force": { + "#": 292 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 293 + }, + "positionImpulse": { + "#": 294 + }, + "positionPrev": { + "#": 295 + }, + "region": { + "#": 296 + }, + "render": { + "#": 297 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 299 + }, + "vertices": { + "#": 300 + } + }, + [ + { + "#": 285 + }, + { + "#": 286 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 288 + }, + "min": { + "#": 289 + } + }, + { + "x": 280, + "y": 422.73575476702496 + }, + { + "x": 250, + "y": 392.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 407.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 404.8284840519894 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 298 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 392.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 392.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 422.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 422.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 900, + "axes": { + "#": 306 + }, + "bounds": { + "#": 309 + }, + "collisionFilter": { + "#": 312 + }, + "constraintImpulse": { + "#": 313 + }, + "density": 0.001, + "force": { + "#": 314 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 540, + "inverseInertia": 0.001851851851851852, + "inverseMass": 1.1111111111111112, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9, + "motion": 0, + "parent": null, + "position": { + "#": 315 + }, + "positionImpulse": { + "#": 316 + }, + "positionPrev": { + "#": 317 + }, + "region": { + "#": 318 + }, + "render": { + "#": 319 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 321 + }, + "vertices": { + "#": 322 + } + }, + [ + { + "#": 307 + }, + { + "#": 308 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 310 + }, + "min": { + "#": 311 + } + }, + { + "x": 280, + "y": 452.73575476702496 + }, + { + "x": 250, + "y": 422.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 437.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265, + "y": 434.8284840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "5,5,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 320 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 422.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 422.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 452.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 452.73575476702496 + }, + [], + [], + [ + { + "#": 330 + }, + { + "#": 333 + }, + { + "#": 337 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 331 + }, + "pointB": "", + "render": { + "#": 332 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleA": 0.0010350529413107516, + "angularStiffness": 0, + "bodyA": null, + "id": 14, + "label": "Constraint", + "length": 60.8276253029822, + "pointA": { + "#": 334 + }, + "pointB": { + "#": 335 + }, + "render": { + "#": 336 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 390, + "y": 580 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.0010350529413107516, + "angularStiffness": 0, + "bodyA": null, + "id": 15, + "label": "Constraint", + "length": 60.8276253029822, + "pointA": { + "#": 338 + }, + "pointB": { + "#": 339 + }, + "render": { + "#": 340 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410, + "y": 580 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/chains/chains-0.json b/tests/browser/refs/chains/chains-0.json new file mode 100644 index 00000000..3e6eaf5c --- /dev/null +++ b/tests/browser/refs/chains/chains-0.json @@ -0,0 +1,7493 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 838 + }, + "events": { + "#": 842 + }, + "gravity": { + "#": 844 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + }, + { + "#": 344 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 302 + }, + "constraints": { + "#": 303 + }, + "id": 4, + "isModified": true, + "label": "Stack Chain", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 197 + }, + { + "#": 218 + }, + { + "#": 239 + }, + { + "#": 260 + }, + { + "#": 281 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 250, + "y": 120 + }, + { + "x": 200, + "y": 100 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 110 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 100 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 100 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 310, + "y": 120 + }, + { + "x": 260, + "y": 100 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285, + "y": 110 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 100 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 310, + "y": 100 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 310, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 370, + "y": 120 + }, + { + "x": 320, + "y": 100 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 345, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 345, + "y": 110 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320, + "y": 100 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 100 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 320, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 430, + "y": 120 + }, + { + "x": 380, + "y": 100 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405, + "y": 110 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 100 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 100 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 177 + }, + "bounds": { + "#": 180 + }, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "render": { + "#": 189 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 191 + }, + "vertices": { + "#": 192 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 490, + "y": 120 + }, + { + "x": 440, + "y": 100 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465, + "y": 110 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 190 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 100 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 490, + "y": 100 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 198 + }, + "bounds": { + "#": 201 + }, + "collisionFilter": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "density": 0.001, + "force": { + "#": 206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 207 + }, + "positionImpulse": { + "#": 208 + }, + "positionPrev": { + "#": 209 + }, + "render": { + "#": 210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 212 + }, + "vertices": { + "#": 213 + } + }, + [ + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 202 + }, + "min": { + "#": 203 + } + }, + { + "x": 250, + "y": 150 + }, + { + "x": 200, + "y": 130 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 140 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 211 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 130 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 130 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 150 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 150 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 219 + }, + "bounds": { + "#": 222 + }, + "collisionFilter": { + "#": 225 + }, + "constraintImpulse": { + "#": 226 + }, + "density": 0.001, + "force": { + "#": 227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 228 + }, + "positionImpulse": { + "#": 229 + }, + "positionPrev": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 223 + }, + "min": { + "#": 224 + } + }, + { + "x": 310, + "y": 150 + }, + { + "x": 260, + "y": 130 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285, + "y": 140 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 130 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 310, + "y": 130 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 310, + "y": 150 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 150 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 240 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 370, + "y": 150 + }, + { + "x": 320, + "y": 130 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 345, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 345, + "y": 140 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320, + "y": 130 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 130 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 150 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 320, + "y": 150 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 261 + }, + "bounds": { + "#": 264 + }, + "collisionFilter": { + "#": 267 + }, + "constraintImpulse": { + "#": 268 + }, + "density": 0.001, + "force": { + "#": 269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 270 + }, + "positionImpulse": { + "#": 271 + }, + "positionPrev": { + "#": 272 + }, + "render": { + "#": 273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 275 + }, + "vertices": { + "#": 276 + } + }, + [ + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 265 + }, + "min": { + "#": 266 + } + }, + { + "x": 430, + "y": 150 + }, + { + "x": 380, + "y": 130 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405, + "y": 140 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 274 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 130 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 130 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430, + "y": 150 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 150 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 282 + }, + "bounds": { + "#": 285 + }, + "collisionFilter": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "density": 0.001, + "force": { + "#": 290 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 291 + }, + "positionImpulse": { + "#": 292 + }, + "positionPrev": { + "#": 293 + }, + "render": { + "#": 294 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 296 + }, + "vertices": { + "#": 297 + } + }, + [ + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 286 + }, + "min": { + "#": 287 + } + }, + { + "x": 490, + "y": 150 + }, + { + "x": 440, + "y": 130 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465, + "y": 140 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 295 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 130 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 490, + "y": 130 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490, + "y": 150 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 150 + }, + [], + [ + { + "#": 304 + }, + { + "#": 308 + }, + { + "#": 312 + }, + { + "#": 316 + }, + { + "#": 320 + }, + { + "#": 324 + }, + { + "#": 328 + }, + { + "#": 332 + }, + { + "#": 336 + }, + { + "#": 340 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 15, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 305 + }, + "pointB": { + "#": 306 + }, + "render": { + "#": 307 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 16, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 309 + }, + "pointB": { + "#": 310 + }, + "render": { + "#": 311 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 17, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 313 + }, + "pointB": { + "#": 314 + }, + "render": { + "#": 315 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 18, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 317 + }, + "pointB": { + "#": 318 + }, + "render": { + "#": 319 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 19, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 321 + }, + "pointB": { + "#": 322 + }, + "render": { + "#": 323 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 20, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 325 + }, + "pointB": { + "#": 326 + }, + "render": { + "#": 327 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 21, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 329 + }, + "pointB": { + "#": 330 + }, + "render": { + "#": 331 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 22, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 333 + }, + "pointB": { + "#": 334 + }, + "render": { + "#": 335 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 23, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 337 + }, + "pointB": { + "#": 338 + }, + "render": { + "#": 339 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 24, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 341 + }, + "pointB": { + "#": 342 + }, + "render": { + "#": 343 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": 200, + "y": 100 + }, + { + "x": -25, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 345 + }, + "composites": { + "#": 796 + }, + "constraints": { + "#": 797 + }, + "id": 25, + "isModified": true, + "label": "Stack Chain", + "parent": null, + "type": "composite" + }, + [ + { + "#": 346 + }, + { + "#": 391 + }, + { + "#": 436 + }, + { + "#": 481 + }, + { + "#": 526 + }, + { + "#": 571 + }, + { + "#": 616 + }, + { + "#": 661 + }, + { + "#": 706 + }, + { + "#": 751 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 347 + }, + "bounds": { + "#": 358 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 361 + }, + "constraintImpulse": { + "#": 362 + }, + "density": 0.001, + "force": { + "#": 363 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 364 + }, + "positionImpulse": { + "#": 365 + }, + "positionPrev": { + "#": 366 + }, + "render": { + "#": 367 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 369 + }, + "vertices": { + "#": 370 + } + }, + [ + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 359 + }, + "min": { + "#": 360 + } + }, + { + "x": 539.508, + "y": 139.508 + }, + { + "x": 500, + "y": 100 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 519.754, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 519.754, + "y": 119.754 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 368 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 539.508, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 537.5740000000001, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 533.8960000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 528.8340000000001, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 522.883, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 516.625, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 510.67400000000004, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 505.612, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 501.934, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 500, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 500, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 501.934, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 505.612, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 510.67400000000004, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 516.625, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 522.883, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 528.8340000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 533.8960000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 537.5740000000001, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 539.508, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 392 + }, + "bounds": { + "#": 403 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 406 + }, + "constraintImpulse": { + "#": 407 + }, + "density": 0.001, + "force": { + "#": 408 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 409 + }, + "positionImpulse": { + "#": 410 + }, + "positionPrev": { + "#": 411 + }, + "render": { + "#": 412 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 414 + }, + "vertices": { + "#": 415 + } + }, + [ + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 404 + }, + "min": { + "#": 405 + } + }, + { + "x": 589.0160000000001, + "y": 139.508 + }, + { + "x": 549.508, + "y": 100 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 569.2620000000001, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 569.2620000000001, + "y": 119.754 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 413 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 589.0160000000001, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 587.0820000000001, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 583.4040000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 578.3420000000001, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 572.3910000000001, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 566.133, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 560.182, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 555.12, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 551.442, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 549.508, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 549.508, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 551.442, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 555.12, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 560.182, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 566.133, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 572.3910000000001, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 578.3420000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 583.4040000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 587.0820000000001, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 589.0160000000001, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 437 + }, + "bounds": { + "#": 448 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 451 + }, + "constraintImpulse": { + "#": 452 + }, + "density": 0.001, + "force": { + "#": 453 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 454 + }, + "positionImpulse": { + "#": 455 + }, + "positionPrev": { + "#": 456 + }, + "render": { + "#": 457 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 459 + }, + "vertices": { + "#": 460 + } + }, + [ + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 449 + }, + "min": { + "#": 450 + } + }, + { + "x": 638.5240000000001, + "y": 139.508 + }, + { + "x": 599.0160000000001, + "y": 100 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.7700000000001, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.7700000000001, + "y": 119.754 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 458 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.5240000000001, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 636.5900000000001, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 632.9120000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 627.8500000000001, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 621.8990000000001, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 615.6410000000001, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 609.69, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 604.628, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 600.95, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.0160000000001, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 599.0160000000001, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 600.95, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 604.628, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 609.69, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 615.6410000000001, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 621.8990000000001, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 627.8500000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 632.9120000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 636.5900000000001, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 638.5240000000001, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 482 + }, + "bounds": { + "#": 493 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 496 + }, + "constraintImpulse": { + "#": 497 + }, + "density": 0.001, + "force": { + "#": 498 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 499 + }, + "positionImpulse": { + "#": 500 + }, + "positionPrev": { + "#": 501 + }, + "render": { + "#": 502 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 504 + }, + "vertices": { + "#": 505 + } + }, + [ + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 494 + }, + "min": { + "#": 495 + } + }, + { + "x": 688.0320000000002, + "y": 139.508 + }, + { + "x": 648.5240000000001, + "y": 100 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 668.2780000000001, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 668.2780000000001, + "y": 119.754 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 503 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 688.0320000000002, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 686.0980000000002, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 682.4200000000002, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 677.3580000000002, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 671.4070000000002, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 665.1490000000001, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 659.1980000000001, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 654.1360000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 650.4580000000001, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 648.5240000000001, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 648.5240000000001, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 650.4580000000001, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 654.1360000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 659.1980000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 665.1490000000001, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 671.4070000000002, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 677.3580000000002, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 682.4200000000002, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 686.0980000000002, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 688.0320000000002, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 527 + }, + "bounds": { + "#": 538 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 541 + }, + "constraintImpulse": { + "#": 542 + }, + "density": 0.001, + "force": { + "#": 543 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 544 + }, + "positionImpulse": { + "#": 545 + }, + "positionPrev": { + "#": 546 + }, + "render": { + "#": 547 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 549 + }, + "vertices": { + "#": 550 + } + }, + [ + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 539 + }, + "min": { + "#": 540 + } + }, + { + "x": 737.5400000000002, + "y": 139.508 + }, + { + "x": 698.0320000000002, + "y": 100 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 717.7860000000002, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 717.7860000000002, + "y": 119.754 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 548 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 737.5400000000002, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 735.6060000000002, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 731.9280000000002, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 726.8660000000002, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 720.9150000000002, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 714.6570000000002, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 708.7060000000001, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 703.6440000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 699.9660000000001, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 698.0320000000002, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 698.0320000000002, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 699.9660000000001, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 703.6440000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 708.7060000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 714.6570000000002, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 720.9150000000002, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 726.8660000000002, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 731.9280000000002, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 735.6060000000002, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 737.5400000000002, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 572 + }, + "bounds": { + "#": 583 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 586 + }, + "constraintImpulse": { + "#": 587 + }, + "density": 0.001, + "force": { + "#": 588 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 589 + }, + "positionImpulse": { + "#": 590 + }, + "positionPrev": { + "#": 591 + }, + "render": { + "#": 592 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 594 + }, + "vertices": { + "#": 595 + } + }, + [ + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 584 + }, + "min": { + "#": 585 + } + }, + { + "x": 539.508, + "y": 189.016 + }, + { + "x": 500, + "y": 149.508 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 519.754, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 519.754, + "y": 169.262 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 593 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 539.508, + "y": 172.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 537.5740000000001, + "y": 178.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 533.8960000000001, + "y": 183.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 528.8340000000001, + "y": 187.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 522.883, + "y": 189.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 516.625, + "y": 189.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 510.67400000000004, + "y": 187.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 505.612, + "y": 183.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 501.934, + "y": 178.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 500, + "y": 172.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 500, + "y": 166.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 501.934, + "y": 160.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 505.612, + "y": 155.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 510.67400000000004, + "y": 151.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 516.625, + "y": 149.508 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 522.883, + "y": 149.508 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 528.8340000000001, + "y": 151.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 533.8960000000001, + "y": 155.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 537.5740000000001, + "y": 160.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 539.508, + "y": 166.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 617 + }, + "bounds": { + "#": 628 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "density": 0.001, + "force": { + "#": 633 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 634 + }, + "positionImpulse": { + "#": 635 + }, + "positionPrev": { + "#": 636 + }, + "render": { + "#": 637 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 639 + }, + "vertices": { + "#": 640 + } + }, + [ + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 629 + }, + "min": { + "#": 630 + } + }, + { + "x": 589.0160000000001, + "y": 189.016 + }, + { + "x": 549.508, + "y": 149.508 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 569.2620000000001, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 569.2620000000001, + "y": 169.262 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 638 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 589.0160000000001, + "y": 172.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 587.0820000000001, + "y": 178.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 583.4040000000001, + "y": 183.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 578.3420000000001, + "y": 187.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 572.3910000000001, + "y": 189.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 566.133, + "y": 189.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 560.182, + "y": 187.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 555.12, + "y": 183.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 551.442, + "y": 178.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 549.508, + "y": 172.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 549.508, + "y": 166.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 551.442, + "y": 160.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 555.12, + "y": 155.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 560.182, + "y": 151.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 566.133, + "y": 149.508 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 572.3910000000001, + "y": 149.508 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 578.3420000000001, + "y": 151.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 583.4040000000001, + "y": 155.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 587.0820000000001, + "y": 160.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 589.0160000000001, + "y": 166.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 662 + }, + "bounds": { + "#": 673 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 676 + }, + "constraintImpulse": { + "#": 677 + }, + "density": 0.001, + "force": { + "#": 678 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 679 + }, + "positionImpulse": { + "#": 680 + }, + "positionPrev": { + "#": 681 + }, + "render": { + "#": 682 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 684 + }, + "vertices": { + "#": 685 + } + }, + [ + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 674 + }, + "min": { + "#": 675 + } + }, + { + "x": 638.5240000000001, + "y": 189.016 + }, + { + "x": 599.0160000000001, + "y": 149.508 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.7700000000001, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.7700000000001, + "y": 169.262 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 683 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.5240000000001, + "y": 172.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 636.5900000000001, + "y": 178.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 632.9120000000001, + "y": 183.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 627.8500000000001, + "y": 187.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 621.8990000000001, + "y": 189.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 615.6410000000001, + "y": 189.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 609.69, + "y": 187.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 604.628, + "y": 183.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 600.95, + "y": 178.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.0160000000001, + "y": 172.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 599.0160000000001, + "y": 166.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 600.95, + "y": 160.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 604.628, + "y": 155.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 609.69, + "y": 151.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 615.6410000000001, + "y": 149.508 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 621.8990000000001, + "y": 149.508 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 627.8500000000001, + "y": 151.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 632.9120000000001, + "y": 155.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 636.5900000000001, + "y": 160.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 638.5240000000001, + "y": 166.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 707 + }, + "bounds": { + "#": 718 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 721 + }, + "constraintImpulse": { + "#": 722 + }, + "density": 0.001, + "force": { + "#": 723 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 724 + }, + "positionImpulse": { + "#": 725 + }, + "positionPrev": { + "#": 726 + }, + "render": { + "#": 727 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 729 + }, + "vertices": { + "#": 730 + } + }, + [ + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 719 + }, + "min": { + "#": 720 + } + }, + { + "x": 688.0320000000002, + "y": 189.016 + }, + { + "x": 648.5240000000001, + "y": 149.508 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 668.2780000000001, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 668.2780000000001, + "y": 169.262 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 728 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 688.0320000000002, + "y": 172.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 686.0980000000002, + "y": 178.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 682.4200000000002, + "y": 183.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 677.3580000000002, + "y": 187.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 671.4070000000002, + "y": 189.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 665.1490000000001, + "y": 189.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 659.1980000000001, + "y": 187.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 654.1360000000001, + "y": 183.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 650.4580000000001, + "y": 178.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 648.5240000000001, + "y": 172.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 648.5240000000001, + "y": 166.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 650.4580000000001, + "y": 160.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 654.1360000000001, + "y": 155.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 659.1980000000001, + "y": 151.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 665.1490000000001, + "y": 149.508 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 671.4070000000002, + "y": 149.508 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 677.3580000000002, + "y": 151.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 682.4200000000002, + "y": 155.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 686.0980000000002, + "y": 160.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 688.0320000000002, + "y": 166.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 752 + }, + "bounds": { + "#": 763 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 766 + }, + "constraintImpulse": { + "#": 767 + }, + "density": 0.001, + "force": { + "#": 768 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 769 + }, + "positionImpulse": { + "#": 770 + }, + "positionPrev": { + "#": 771 + }, + "render": { + "#": 772 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 774 + }, + "vertices": { + "#": 775 + } + }, + [ + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 764 + }, + "min": { + "#": 765 + } + }, + { + "x": 737.5400000000002, + "y": 189.016 + }, + { + "x": 698.0320000000002, + "y": 149.508 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 717.7860000000002, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 717.7860000000002, + "y": 169.262 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 773 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 737.5400000000002, + "y": 172.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 735.6060000000002, + "y": 178.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 731.9280000000002, + "y": 183.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 726.8660000000002, + "y": 187.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 720.9150000000002, + "y": 189.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 714.6570000000002, + "y": 189.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 708.7060000000001, + "y": 187.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 703.6440000000001, + "y": 183.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 699.9660000000001, + "y": 178.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 698.0320000000002, + "y": 172.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 698.0320000000002, + "y": 166.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 699.9660000000001, + "y": 160.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 703.6440000000001, + "y": 155.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 708.7060000000001, + "y": 151.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 714.6570000000002, + "y": 149.508 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 720.9150000000002, + "y": 149.508 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 726.8660000000002, + "y": 151.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 731.9280000000002, + "y": 155.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 735.6060000000002, + "y": 160.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 737.5400000000002, + "y": 166.133 + }, + [], + [ + { + "#": 798 + }, + { + "#": 802 + }, + { + "#": 806 + }, + { + "#": 810 + }, + { + "#": 814 + }, + { + "#": 818 + }, + { + "#": 822 + }, + { + "#": 826 + }, + { + "#": 830 + }, + { + "#": 834 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 36, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 799 + }, + "pointB": { + "#": 800 + }, + "render": { + "#": 801 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 37, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 803 + }, + "pointB": { + "#": 804 + }, + "render": { + "#": 805 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 38, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 807 + }, + "pointB": { + "#": 808 + }, + "render": { + "#": 809 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 39, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 811 + }, + "pointB": { + "#": 812 + }, + "render": { + "#": 813 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 40, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 815 + }, + "pointB": { + "#": 816 + }, + "render": { + "#": 817 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 41, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 819 + }, + "pointB": { + "#": 820 + }, + "render": { + "#": 821 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 42, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 823 + }, + "pointB": { + "#": 824 + }, + "render": { + "#": 825 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 43, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 827 + }, + "pointB": { + "#": 828 + }, + "render": { + "#": 829 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 44, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 831 + }, + "pointB": { + "#": 832 + }, + "render": { + "#": 833 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.75400000000002, + "y": 0 + }, + { + "x": -19.75400000000002, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 45, + "label": "Constraint", + "length": 19.75553168102545, + "pointA": { + "#": 835 + }, + "pointB": { + "#": 836 + }, + "render": { + "#": 837 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": 500, + "y": 100 + }, + { + "x": -20, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 839 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 840 + }, + "pointB": "", + "render": { + "#": 841 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 843 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/chains/chains-10.json b/tests/browser/refs/chains/chains-10.json new file mode 100644 index 00000000..1b4d6cbe --- /dev/null +++ b/tests/browser/refs/chains/chains-10.json @@ -0,0 +1,7733 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 862 + }, + "events": { + "#": 866 + }, + "gravity": { + "#": 868 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + }, + { + "#": 358 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 316 + }, + "constraints": { + "#": 317 + }, + "id": 4, + "isModified": false, + "label": "Stack Chain", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 206 + }, + { + "#": 228 + }, + { + "#": 250 + }, + { + "#": 272 + }, + { + "#": 294 + } + ], + { + "angle": 1.2552646111430181, + "anglePrev": 1.1398595065219184, + "angularSpeed": 0.1554051046210998, + "angularVelocity": 0.12540510462109977, + "area": 1000, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 11.436843253630537, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": -0.9506315102495515, + "y": 0.3103219807243062 + }, + { + "x": -0.3103219807243062, + "y": -0.9506315102495515 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 232.05835812078303, + "y": 138.84362341380347 + }, + { + "x": 197.5296288795767, + "y": 85.10560828683975 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 214.7939935001798, + "y": 111.9746158503215 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 202.78444074771426, + "y": 109.4623895307995 + }, + { + "endCol": 4, + "endRow": 2, + "id": "4,4,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 12.786257543652567, + "y": 1.308622711355639 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 216.54225908456772, + "y": 85.10560828683975 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.05835812078303, + "y": 132.63718379931734 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 213.04572791579196, + "y": 138.84362341380347 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 197.5296288795767, + "y": 91.31204790132593 + }, + { + "angle": 0.554133081579689, + "anglePrev": 0.5083388625916616, + "angularSpeed": 0.07579421898802738, + "angularVelocity": 0.05579421898802739, + "area": 1000, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 17.536284276493863, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": -0.5262063079370303, + "y": 0.8503569376957416 + }, + { + "x": -0.8503569376957416, + "y": -0.5262063079370303 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 272.39356775681307, + "y": 167.33544323276465 + }, + { + "x": 219.35159471328532, + "y": 124.01798908199828 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 245.87258123504915, + "y": 145.67671615738152 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.08401478360528, + "y": 138.10319482071452 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 14.540880912646571, + "y": 8.52322946926239 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 229.8757208720259, + "y": 124.01798908199828 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.39356775681307, + "y": 150.3283044788499 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 261.8694415980725, + "y": 167.33544323276465 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 219.35159471328532, + "y": 141.02512783591317 + }, + { + "angle": 0.3039505236586139, + "anglePrev": 0.29671681856281995, + "angularSpeed": 0.027233705095793977, + "angularVelocity": 0.017233705095793972, + "area": 1000, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 20.644011352363147, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": -0.299291970211471, + "y": 0.9541615778089876 + }, + { + "x": -0.9541615778089876, + "y": -0.299291970211471 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 318.03629088051036, + "y": 181.91941336836354 + }, + { + "x": 264.3423725858318, + "y": 147.87158330161014 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 291.18933173317123, + "y": 164.8954983349868 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 273.2327982052565, + "y": 154.58517795613537 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,3,3", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 17.959565678983722, + "y": 10.216946245012792 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 270.3282119900612, + "y": 147.87158330161014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.03629088051036, + "y": 162.83618181218367 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.0504514762811, + "y": 181.91941336836354 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 264.3423725858318, + "y": 166.95481485778993 + }, + { + "angle": -0.23033983149209472, + "anglePrev": -0.16660114633345022, + "angularSpeed": 0.06638242482512398, + "angularVelocity": -0.07373868515864451, + "area": 1000, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 21.166463265215654, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0.22830839286859442, + "y": 0.9735888648427324 + }, + { + "x": -0.9735888648427324, + "y": 0.22830839286859442 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 365.8441312241424, + "y": 181.38179223252513 + }, + { + "x": 312.59852012463426, + "y": 150.4945952922408 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 339.2213256743883, + "y": 165.93819376238304 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 319.50398111865707, + "y": 157.07859158219398 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,3,3", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 19.772926265333354, + "y": 8.050461632906405 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 312.59852012463426, + "y": 161.91001493567043 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 361.27796336677073, + "y": 150.4945952922408 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 365.8441312241424, + "y": 169.9663725890954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 317.1646879820061, + "y": 181.38179223252513 + }, + { + "angle": -0.5338450021390885, + "anglePrev": -0.4902141903667337, + "angularSpeed": 0.0545924959779801, + "angularVelocity": -0.04363081177235478, + "area": 1000, + "axes": { + "#": 185 + }, + "bounds": { + "#": 188 + }, + "collisionFilter": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "density": 0.001, + "force": { + "#": 193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 194 + }, + "positionImpulse": { + "#": 195 + }, + "positionPrev": { + "#": 196 + }, + "region": { + "#": 197 + }, + "render": { + "#": 198 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 19.3179137654344, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 200 + }, + "vertices": { + "#": 201 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "x": 0.5088470911539408, + "y": 0.8608569206460345 + }, + { + "x": -0.8608569206460345, + "y": 0.5088470911539408 + }, + { + "max": { + "#": 189 + }, + "min": { + "#": 190 + } + }, + { + "x": 411.8276752456083, + "y": 171.57627213155837 + }, + { + "x": 358.60788739022775, + "y": 128.91677916094056 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 385.21778131791797, + "y": 150.2465256462495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.60445306905643, + "y": 143.60039959883588 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 199 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 18.157254362684398, + "y": 6.009305427879269 + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 358.60788739022775, + "y": 154.35913371863765 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 401.65073342252947, + "y": 128.91677916094056 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 411.8276752456083, + "y": 146.13391757386137 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 368.7848292133067, + "y": 171.57627213155837 + }, + { + "angle": 0.09884541463223553, + "anglePrev": 0.05135032274049928, + "angularSpeed": 0.04749509189173626, + "angularVelocity": 0.04749509189173626, + "area": 1000, + "axes": { + "#": 207 + }, + "bounds": { + "#": 210 + }, + "collisionFilter": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "density": 0.001, + "force": { + "#": 215 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 216 + }, + "positionImpulse": { + "#": 217 + }, + "positionPrev": { + "#": 218 + }, + "region": { + "#": 219 + }, + "render": { + "#": 220 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 16.291291005329708, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 222 + }, + "vertices": { + "#": 223 + } + }, + [ + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "x": -0.09868453310964743, + "y": 0.9951187682507704 + }, + { + "x": -0.9951187682507704, + "y": -0.09868453310964743 + }, + { + "max": { + "#": 211 + }, + "min": { + "#": 212 + } + }, + { + "x": 458.8807320974083, + "y": 154.49333830548582 + }, + { + "x": 407.1511030226769, + "y": 129.65673628498794 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 433.0159175600427, + "y": 142.07503729523683 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 418.40604722947506, + "y": 135.16246419822053 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 221 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 14.475385290485235, + "y": 6.5598472689194125 + }, + [ + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 409.1247936848697, + "y": 129.65673628498794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 458.8807320974083, + "y": 134.5909629404703 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 456.9070414352155, + "y": 154.49333830548582 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 407.1511030226769, + "y": 149.55911165000344 + }, + { + "angle": 0.36524891828368833, + "anglePrev": 0.36365840040867276, + "angularSpeed": 0.008409482124984423, + "angularVelocity": 0.0015905178750155735, + "area": 1000, + "axes": { + "#": 229 + }, + "bounds": { + "#": 232 + }, + "collisionFilter": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "density": 0.001, + "force": { + "#": 237 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 238 + }, + "positionImpulse": { + "#": 239 + }, + "positionPrev": { + "#": 240 + }, + "region": { + "#": 241 + }, + "render": { + "#": 242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 13.060042707128105, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 244 + }, + "vertices": { + "#": 245 + } + }, + [ + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": -0.35718180389954707, + "y": 0.934034881020546 + }, + { + "x": -0.934034881020546, + "y": -0.35718180389954707 + }, + { + "max": { + "#": 233 + }, + "min": { + "#": 234 + } + }, + { + "x": 509.1623306302709, + "y": 174.07951726742382 + }, + { + "x": 455.31695050125273, + "y": 137.53972945203546 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 482.2396405657619, + "y": 155.80962335972967 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 471.90634749124837, + "y": 148.14626065853133 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 243 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 10.206295058384114, + "y": 7.1366223820590164 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 462.46058657924357, + "y": 137.53972945203546 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 509.1623306302709, + "y": 155.39881964701274 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 502.01869455227995, + "y": 174.07951726742382 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 455.31695050125273, + "y": 156.22042707244648 + }, + { + "angle": 1.3424283432551745, + "anglePrev": 1.2709832887108294, + "angularSpeed": 0.059232295833507545, + "angularVelocity": 0.07144505454434502, + "area": 1000, + "axes": { + "#": 251 + }, + "bounds": { + "#": 254 + }, + "collisionFilter": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "density": 0.001, + "force": { + "#": 259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 260 + }, + "positionImpulse": { + "#": 261 + }, + "positionPrev": { + "#": 262 + }, + "region": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 9.487129700296338, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": -0.9740371612421037, + "y": 0.22638818105065509 + }, + { + "x": -0.22638818105065509, + "y": -0.9740371612421037 + }, + { + "max": { + "#": 255 + }, + "min": { + "#": 256 + } + }, + { + "x": 527.6285293058986, + "y": 217.86330918114376 + }, + { + "x": 496.8283770285236, + "y": 164.63368749802555 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.2284531672109, + "y": 191.2484983395846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 506.6040622356493, + "y": 184.03987973526185 + }, + { + "endCol": 10, + "endRow": 4, + "id": "10,10,3,4", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 5.563513991623154, + "y": 6.952989194874505 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 516.3091202533656, + "y": 164.63368749802555 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 527.6285293058986, + "y": 213.33554556013075 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 508.1477860810564, + "y": 217.86330918114376 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 496.8283770285236, + "y": 169.16145111903856 + }, + { + "angle": 0.6661976097876869, + "anglePrev": 0.639935305849287, + "angularSpeed": 0.02098996190249289, + "angularVelocity": 0.035184687913908275, + "area": 1000, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 8.1736153308063, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": -0.6180011092323688, + "y": 0.7861772249229573 + }, + { + "x": -0.7861772249229573, + "y": -0.6180011092323688 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 564.6724793967509, + "y": 256.23131355683967 + }, + { + "x": 513.0035959659552, + "y": 209.607713596762 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 538.8380376813528, + "y": 232.91951357680077 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 538.0266758396566, + "y": 225.38805609882485 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.22400373774883064, + "y": 7.59963731143614 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525.3636181506026, + "y": 209.607713596762 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 564.6724793967509, + "y": 240.5077690583805 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 552.3124572121036, + "y": 256.23131355683967 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 513.0035959659552, + "y": 225.3312580952212 + }, + { + "angle": -1.9352895491460287, + "anglePrev": -1.7167261889973666, + "angularSpeed": 0.2242913747817159, + "angularVelocity": -0.22856336014866208, + "area": 1000, + "axes": { + "#": 295 + }, + "bounds": { + "#": 298 + }, + "collisionFilter": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "density": 0.001, + "force": { + "#": 303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 966.6666666666666, + "inverseInertia": 0.0010344827586206897, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 304 + }, + "positionImpulse": { + "#": 305 + }, + "positionPrev": { + "#": 306 + }, + "region": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 10.142271328445526, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": 0.9343045351286455, + "y": -0.3564758556172417 + }, + { + "x": 0.3564758556172417, + "y": 0.9343045351286455 + }, + { + "max": { + "#": 299 + }, + "min": { + "#": 300 + } + }, + { + "x": 569.8978950419189, + "y": 259.8609751495671 + }, + { + "x": 528.6175359177099, + "y": 198.01972896985632 + }, + { + "category": 1, + "group": -5, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.6429533002012, + "y": 224.94210090424485 + }, + { + "x": -0.008840312781678562, + "y": 0.040556223341361664 + }, + { + "x": 557.0007870449223, + "y": 216.87741875985114 + }, + { + "endCol": 11, + "endRow": 5, + "id": "11,11,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -4.770475640773725, + "y": 7.996502310933494 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 551.2118043393457, + "y": 251.8644728386336 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 533.3880115584836, + "y": 205.14924608220124 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 552.0741022610565, + "y": 198.01972896985632 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 569.8978950419189, + "y": 244.73495572628858 + }, + [], + [ + { + "#": 318 + }, + { + "#": 322 + }, + { + "#": 326 + }, + { + "#": 330 + }, + { + "#": 334 + }, + { + "#": 338 + }, + { + "#": 342 + }, + { + "#": 346 + }, + { + "#": 350 + }, + { + "#": 354 + } + ], + { + "angleA": 1.2752646111430181, + "angleB": 0.574133081579689, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 15, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 319 + }, + "pointB": { + "#": 320 + }, + "render": { + "#": 321 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 7.2812138918821505, + "y": 23.916185403627022 + }, + { + "x": -20.991586185320276, + "y": -13.577676878769463 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.564133081579689, + "angleB": 0.32395052365861393, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 16, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 323 + }, + "pointB": { + "#": 324 + }, + "render": { + "#": 325 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 21.126311120610342, + "y": 13.367085637309879 + }, + { + "x": -23.699632787454185, + "y": -7.957851829471714 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.3139505236586139, + "angleB": -0.23033983149209472, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 17, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 327 + }, + "pointB": { + "#": 328 + }, + "render": { + "#": 329 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 23.778025007682338, + "y": 7.720461562240508 + }, + { + "x": -24.339721621068307, + "y": 5.70770982171486 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": -0.24033983149209473, + "angleB": -0.5438450021390885, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 18, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 331 + }, + "pointB": { + "#": 332 + }, + "render": { + "#": 333 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 24.281428498191836, + "y": -5.950817598212676 + }, + { + "x": -21.393137301364405, + "y": 12.935751868560658 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": -0.5338450021390885, + "angleB": 0.09884541463223553, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 19, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 335 + }, + "pointB": { + "#": 336 + }, + "render": { + "#": 337 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 21.52142301615086, + "y": -12.72117727884852 + }, + { + "x": -24.87796920626927, + "y": -2.467113327741187 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.09884541463223553, + "angleB": 0.36524891828368833, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 20, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 339 + }, + "pointB": { + "#": 340 + }, + "render": { + "#": 341 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 24.877969206269256, + "y": 2.467113327741186 + }, + { + "x": -23.350872025513652, + "y": -8.929545097488676 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.36524891828368833, + "angleB": 1.3424283432551745, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 21, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 343 + }, + "pointB": { + "#": 344 + }, + "render": { + "#": 345 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 23.35087202551365, + "y": 8.92954509748867 + }, + { + "x": -5.659704526266369, + "y": -24.35092903105259 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 1.3424283432551745, + "angleB": 0.6751199937631953, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 22, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 347 + }, + "pointB": { + "#": 348 + }, + "render": { + "#": 349 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 5.659704526266368, + "y": 24.35092903105258 + }, + { + "x": -19.515799043286908, + "y": -15.62477480484253 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.6751199937631953, + "angleB": -1.9452895491460287, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 23, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 351 + }, + "pointB": { + "#": 352 + }, + "render": { + "#": 353 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.515799043286904, + "y": 15.624774804842529 + }, + { + "x": 9.145023040190871, + "y": 23.26732802868387 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 1.2652646111430181, + "angularStiffness": 0, + "bodyB": null, + "id": 24, + "label": "Constraint", + "length": 10, + "pointA": { + "#": 355 + }, + "pointB": { + "#": 356 + }, + "render": { + "#": 357 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": 200, + "y": 100 + }, + { + "x": -7.520007702246694, + "y": -23.84217867893264 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 359 + }, + "composites": { + "#": 820 + }, + "constraints": { + "#": 821 + }, + "id": 25, + "isModified": false, + "label": "Stack Chain", + "parent": null, + "type": "composite" + }, + [ + { + "#": 360 + }, + { + "#": 406 + }, + { + "#": 452 + }, + { + "#": 498 + }, + { + "#": 544 + }, + { + "#": 590 + }, + { + "#": 636 + }, + { + "#": 682 + }, + { + "#": 728 + }, + { + "#": 774 + } + ], + { + "angle": 1.3872193565253468, + "anglePrev": 1.25252601739215, + "angularSpeed": 0.15469333913319686, + "angularVelocity": 0.14469333913319682, + "area": 1236.0755439999998, + "axes": { + "#": 361 + }, + "bounds": { + "#": 372 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 375 + }, + "constraintImpulse": { + "#": 376 + }, + "density": 0.001, + "force": { + "#": 377 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 378 + }, + "positionImpulse": { + "#": 379 + }, + "positionPrev": { + "#": 380 + }, + "region": { + "#": 381 + }, + "render": { + "#": 382 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 9.675887613329456, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 384 + }, + "vertices": { + "#": 385 + } + }, + [ + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + } + ], + { + "x": 0.13027221541850115, + "y": -0.9914782649609389 + }, + { + "x": 0.43025280883744643, + "y": -0.9027084360342973 + }, + { + "x": 0.6881016302529498, + "y": -0.7256143234826831 + }, + { + "x": 0.8786363813417254, + "y": -0.47749147571733447 + }, + { + "x": 0.9831970166984331, + "y": -0.18254760024525218 + }, + { + "x": 0.9914782649609389, + "y": 0.13027221541850115 + }, + { + "x": 0.9027084360342973, + "y": 0.43025280883744643 + }, + { + "x": 0.7256143234826831, + "y": 0.6881016302529498 + }, + { + "x": 0.47749147571733447, + "y": 0.8786363813417254 + }, + { + "x": 0.18254760024525218, + "y": 0.9831970166984331 + }, + { + "max": { + "#": 373 + }, + "min": { + "#": 374 + } + }, + { + "x": 534.0670023948296, + "y": 118.12863892330722 + }, + { + "x": 494.08047177677287, + "y": 78.14210830525116 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 514.0737370858012, + "y": 98.1353736142791 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.3073194252771, + "y": 97.0777401703729 + }, + { + "endCol": 11, + "endRow": 2, + "id": "10,11,1,2", + "startCol": 10, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 383 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 9.423113316274339, + "y": -0.2535791092265498 + }, + [ + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 514.6033589157965, + "y": 118.12863892330722 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 508.3993064105498, + "y": 117.313476662072 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 502.75095303832035, + "y": 114.62133398709669 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 498.2106984584621, + "y": 110.31580076227131 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.2228546591078, + "y": 104.81784237477308 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 494.08047177677287, + "y": 98.66499544427433 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 494.89563403800827, + "y": 92.46094293902777 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 497.58777671298367, + "y": 86.81258956679818 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 501.8933099378091, + "y": 82.27233498693995 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 507.39126832530724, + "y": 79.28449118758586 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 513.544115255806, + "y": 78.14210830525116 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 519.7481677610527, + "y": 78.95727056648626 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 525.3965211332822, + "y": 81.64941324146159 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 529.9367757131405, + "y": 85.95494646628688 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 532.9246195124948, + "y": 91.45290485378493 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 534.0670023948296, + "y": 97.60575178428368 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 533.2518401335942, + "y": 103.80980428953038 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 530.5596974586189, + "y": 109.45815766176003 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 526.2541642337936, + "y": 113.99841224161818 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 520.7562058462954, + "y": 116.98625604097249 + }, + { + "angle": 0.26261567810785996, + "anglePrev": 0.25227980760616764, + "angularSpeed": 0.003131941646807709, + "angularVelocity": 0.007407939169829902, + "area": 1236.0755439999998, + "axes": { + "#": 407 + }, + "bounds": { + "#": 418 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 421 + }, + "constraintImpulse": { + "#": 422 + }, + "density": 0.001, + "force": { + "#": 423 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 424 + }, + "positionImpulse": { + "#": 425 + }, + "positionPrev": { + "#": 426 + }, + "region": { + "#": 427 + }, + "render": { + "#": 428 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 8.866292020103874, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 430 + }, + "vertices": { + "#": 431 + } + }, + [ + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "x": -0.8381923106857377, + "y": -0.5453747796766034 + }, + { + "x": -0.628661499681146, + "y": -0.7776790590074116 + }, + { + "x": -0.35763494439736887, + "y": -0.9338614707470758 + }, + { + "x": -0.05158192063416214, + "y": -0.9986687666407168 + }, + { + "x": 0.2596074346764644, + "y": -0.9657142330217078 + }, + { + "x": 0.5453747796766034, + "y": -0.8381923106857377 + }, + { + "x": 0.7776790590074116, + "y": -0.628661499681146 + }, + { + "x": 0.9338614707470758, + "y": -0.35763494439736887 + }, + { + "x": 0.9986687666407168, + "y": -0.05158192063416214 + }, + { + "x": 0.9657142330217078, + "y": 0.2596074346764644 + }, + { + "max": { + "#": 419 + }, + "min": { + "#": 420 + } + }, + { + "x": 555.5519819108417, + "y": 138.97487211571342 + }, + { + "x": 515.7739206664146, + "y": 99.19681087128643 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 535.6629512886285, + "y": 119.08584149349997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.1960581808249, + "y": 117.74392980670203 + }, + { + "endCol": 11, + "endRow": 2, + "id": "10,11,2,2", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 429 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 7.044713830890487, + "y": 1.4382896703347825 + }, + [ + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 553.9273585846365, + "y": 127.23584659322376 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550.514743414213, + "y": 132.48073121527167 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545.6487136308269, + "y": 136.41434051808753 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 539.8054320385309, + "y": 138.65210463280908 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 533.5563858591544, + "y": 138.97487211571342 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 527.5129461889045, + "y": 137.3502487895081 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 522.2680615668564, + "y": 133.93763361908452 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 518.3344522640405, + "y": 129.07160383569834 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 516.0966881493191, + "y": 123.22832224340243 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 515.7739206664146, + "y": 116.9792760640259 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 517.3985439926199, + "y": 110.93583639377606 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 520.8111591630436, + "y": 105.69095177172821 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 525.6771889464296, + "y": 101.75734246891233 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 531.5204705387256, + "y": 99.51957835419077 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 537.769516718102, + "y": 99.19681087128643 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 543.8129563883518, + "y": 100.82143419749175 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 549.0578410104001, + "y": 104.2340493679154 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 552.9914503132158, + "y": 109.10007915130154 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 555.2292144279373, + "y": 114.94336074359742 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 555.5519819108417, + "y": 121.1924069229739 + }, + { + "angle": 0.5766051900144172, + "anglePrev": 0.5160042761578921, + "angularSpeed": 0.026671213866736716, + "angularVelocity": 0.0506009138565251, + "area": 1236.0755439999998, + "axes": { + "#": 453 + }, + "bounds": { + "#": 464 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 467 + }, + "constraintImpulse": { + "#": 468 + }, + "density": 0.001, + "force": { + "#": 469 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 470 + }, + "positionImpulse": { + "#": 471 + }, + "positionPrev": { + "#": 472 + }, + "region": { + "#": 473 + }, + "render": { + "#": 474 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 7.350509617586058, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 476 + }, + "vertices": { + "#": 477 + } + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + } + ], + { + "x": -0.6287701916090581, + "y": -0.7775911818840979 + }, + { + "x": -0.35773509526330854, + "y": -0.9338231104534472 + }, + { + "x": -0.051721506460970235, + "y": -0.9986615471566967 + }, + { + "x": 0.25938435913912333, + "y": -0.9657741735177975 + }, + { + "x": 0.5451811525774595, + "y": -0.8383182634741485 + }, + { + "x": 0.7775911818840979, + "y": -0.6287701916090581 + }, + { + "x": 0.9338231104534472, + "y": -0.35773509526330854 + }, + { + "x": 0.9986615471566967, + "y": -0.051721506460970235 + }, + { + "x": 0.9657741735177975, + "y": 0.25938435913912333 + }, + { + "x": 0.8383182634741485, + "y": 0.5451811525774595 + }, + { + "max": { + "#": 465 + }, + "min": { + "#": 466 + } + }, + { + "x": 585.8951418592238, + "y": 154.2877973041524 + }, + { + "x": 546.1169892181979, + "y": 114.50964466312706 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.0060655387107, + "y": 134.39872098363966 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.6072239701455, + "y": 131.47075704590063 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 475 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 6.299648870899091, + "y": 2.637220112712356 + }, + [ + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580.8603326889641, + "y": 147.79132731806544 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575.9946521284166, + "y": 151.72577895491523 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570.1516105610117, + "y": 153.96416972544145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 563.9028672321258, + "y": 154.2877973041524 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 557.8596548971063, + "y": 152.6647317867229 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 552.613459204285, + "y": 149.25298813389313 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 548.6790075674353, + "y": 144.38730757334565 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 546.4406167969089, + "y": 138.5442660059407 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 546.1169892181979, + "y": 132.29552267705458 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 547.7400547356277, + "y": 126.25231034203514 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 551.1517983884575, + "y": 121.00611464921396 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 556.0174789490051, + "y": 117.07166301236411 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 561.8605205164101, + "y": 114.83327224183786 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 568.1092638452958, + "y": 114.50964466312706 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 574.1524761803155, + "y": 116.13271018055654 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 579.3986718731369, + "y": 119.5444538333863 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 583.3331235099865, + "y": 124.41013439393375 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 585.5715142805129, + "y": 130.25317596133877 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 585.8951418592238, + "y": 136.5019192902248 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 584.272076341794, + "y": 142.54513162524427 + }, + { + "angle": -0.05953548737371627, + "anglePrev": 0.005206137776602558, + "angularSpeed": 0.07790509855666776, + "angularVelocity": -0.07279213238351524, + "area": 1236.0755439999998, + "axes": { + "#": 499 + }, + "bounds": { + "#": 510 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 513 + }, + "constraintImpulse": { + "#": 514 + }, + "density": 0.001, + "force": { + "#": 515 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 516 + }, + "positionImpulse": { + "#": 517 + }, + "positionPrev": { + "#": 518 + }, + "region": { + "#": 519 + }, + "render": { + "#": 520 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.7075110475321864, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 522 + }, + "vertices": { + "#": 523 + } + }, + [ + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + } + ], + { + "x": -0.9677427017693434, + "y": -0.2519405945300843 + }, + { + "x": -0.8425402265072719, + "y": -0.5386334251762284 + }, + { + "x": -0.634904784427351, + "y": -0.772590392582809 + }, + { + "x": -0.36511468285803766, + "y": -0.9309625493871784 + }, + { + "x": -0.05950032327248004, + "y": -0.9982282862804833 + }, + { + "x": 0.2519405945300843, + "y": -0.9677427017693434 + }, + { + "x": 0.5386334251762284, + "y": -0.8425402265072719 + }, + { + "x": 0.772590392582809, + "y": -0.634904784427351 + }, + { + "x": 0.9309625493871784, + "y": -0.36511468285803766 + }, + { + "x": 0.9982282862804833, + "y": -0.05950032327248004 + }, + { + "max": { + "#": 511 + }, + "min": { + "#": 512 + } + }, + { + "x": 616.1928108094369, + "y": 164.6313498803468 + }, + { + "x": 576.3824546520283, + "y": 124.82099372293841 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 596.2876327307326, + "y": 144.72617180164255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 594.0453662551308, + "y": 141.70802383823238 + }, + { + "endCol": 12, + "endRow": 3, + "id": "12,12,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 521 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 5.06715221978402, + "y": 1.918851529978582 + }, + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 616.1928108094369, + "y": 146.67425872348971 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 614.6163237275651, + "y": 152.72978888035377 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 611.2460307270309, + "y": 158.00166265450179 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 606.411841330875, + "y": 161.97433692784665 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600.5864584244287, + "y": 164.2589968573077 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 594.3395458088856, + "y": 164.6313498803468 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 588.2840156520211, + "y": 163.05486279847491 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 583.0121418778733, + "y": 159.6845697979406 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 579.0394676045283, + "y": 154.85038040178497 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.7548076750676, + "y": 149.0249974953388 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.3824546520283, + "y": 142.7780848797955 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9589417339, + "y": 136.7225547229314 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.3292347344342, + "y": 131.45068094878346 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.1634241305901, + "y": 127.47800667543852 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 591.9888070370363, + "y": 125.19334674597755 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.2357196525794, + "y": 124.82099372293841 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.2912498094439, + "y": 126.39748080481024 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.5631235835917, + "y": 129.7677738053446 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.5357978569367, + "y": 134.60196320150024 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.8204577863975, + "y": 140.42734610794636 + }, + { + "angle": -0.7373861202483631, + "anglePrev": -0.5712833896787078, + "angularSpeed": 0.13894920525084825, + "angularVelocity": -0.16796397145215225, + "area": 1236.0755439999998, + "axes": { + "#": 545 + }, + "bounds": { + "#": 556 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 559 + }, + "constraintImpulse": { + "#": 560 + }, + "density": 0.001, + "force": { + "#": 561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 562 + }, + "positionImpulse": { + "#": 563 + }, + "positionPrev": { + "#": 564 + }, + "region": { + "#": 565 + }, + "render": { + "#": 566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9424543527910426, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 568 + }, + "vertices": { + "#": 569 + } + }, + [ + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": -0.9117935526767829, + "y": 0.4106488978398103 + }, + { + "x": -0.9940614258394366, + "y": 0.10882041011716075 + }, + { + "x": -0.9790486827748512, + "y": -0.2036263164643237 + }, + { + "x": -0.8682215135258123, + "y": -0.4961767864894 + }, + { + "x": -0.6723553423232643, + "y": -0.7402285414987498 + }, + { + "x": -0.4106488978398103, + "y": -0.9117935526767829 + }, + { + "x": -0.10882041011716075, + "y": -0.9940614258394366 + }, + { + "x": 0.2036263164643237, + "y": -0.9790486827748512 + }, + { + "x": 0.4961767864894, + "y": -0.8682215135258123 + }, + { + "x": 0.7402285414987498, + "y": -0.6723553423232643 + }, + { + "max": { + "#": 557 + }, + "min": { + "#": 558 + } + }, + { + "x": 646.3729576971006, + "y": 153.2033055877006 + }, + { + "x": 606.4194351270789, + "y": 113.24978301767861 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 626.39619641209, + "y": 133.2265443026896 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625.1523437667053, + "y": 133.4317497169304 + }, + { + "endCol": 13, + "endRow": 3, + "id": "12,13,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 567 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 2.543008236133687, + "y": -1.6820408265876097 + }, + [ + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 643.1224708869854, + "y": 122.26101197678554 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 645.6920555298926, + "y": 127.96644725929782 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 646.3729576971006, + "y": 134.18640708542935 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 645.0988437690991, + "y": 140.31243040390214 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 641.9940789506929, + "y": 145.74521904532668 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 637.3617287379938, + "y": 149.95281877758552 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 631.6562934554819, + "y": 152.5224034204926 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 625.43633362935, + "y": 153.2033055877006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 619.3103103108774, + "y": 151.92919165969886 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 613.8775216694529, + "y": 148.82442684129302 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 609.669921937194, + "y": 144.19207662859384 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 607.1003372942868, + "y": 138.48664134608157 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 606.4194351270789, + "y": 132.2666815199499 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 607.6935490550802, + "y": 126.14065820147734 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 610.7983138734864, + "y": 120.70786956005286 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 615.4306640861855, + "y": 116.5002698277938 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 621.1360993686976, + "y": 113.93068518488678 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 627.3560591948294, + "y": 113.24978301767861 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 633.482082513302, + "y": 114.52389694568053 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 638.9148711547265, + "y": 117.62866176408637 + }, + { + "angle": -0.8290249612263179, + "anglePrev": -0.6468549439149813, + "angularSpeed": 0.16821025017027832, + "angularVelocity": -0.18404695843506702, + "area": 1236.0755439999998, + "axes": { + "#": 591 + }, + "bounds": { + "#": 602 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 605 + }, + "constraintImpulse": { + "#": 606 + }, + "density": 0.001, + "force": { + "#": 607 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 608 + }, + "positionImpulse": { + "#": 609 + }, + "positionPrev": { + "#": 610 + }, + "region": { + "#": 611 + }, + "render": { + "#": 612 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 5.711543851224586, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 614 + }, + "vertices": { + "#": 615 + } + }, + [ + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + } + ], + { + "x": -0.8703890153830881, + "y": 0.4923646635375634 + }, + { + "x": -0.9799322175419224, + "y": 0.19933100366819476 + }, + { + "x": -0.9935746651022607, + "y": -0.11317855303427027 + }, + { + "x": -0.9099839952383254, + "y": -0.4146433749743216 + }, + { + "x": -0.7372729904048652, + "y": -0.6755949508540358 + }, + { + "x": -0.4923646635375634, + "y": -0.8703890153830881 + }, + { + "x": -0.19933100366819476, + "y": -0.9799322175419224 + }, + { + "x": 0.11317855303427027, + "y": -0.9935746651022607 + }, + { + "x": 0.4146433749743216, + "y": -0.9099839952383254 + }, + { + "x": 0.6755949508540358, + "y": -0.7372729904048652 + }, + { + "max": { + "#": 603 + }, + "min": { + "#": 604 + } + }, + { + "x": 672.3696351372804, + "y": 128.6775632849398 + }, + { + "x": 632.4080782867135, + "y": 88.71600643437282 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 652.3888567119967, + "y": 108.69678485965639 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 653.5286380196071, + "y": 113.51051642468599 + }, + { + "endCol": 14, + "endRow": 2, + "id": "13,14,1,2", + "startCol": 13, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 613 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.7071644889504114, + "y": -5.449209153148871 + }, + [ + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 668.0414865581441, + "y": 96.24663080842102 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 671.122397489092, + "y": 101.69298232439614 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 672.3696351372804, + "y": 107.82453402432834 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 671.6614635547664, + "y": 114.04144813099896 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 669.066883965677, + "y": 119.73556033184998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 664.8390107632323, + "y": 124.34941470580367 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 659.392659247257, + "y": 127.43032563675129 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 653.2611075473245, + "y": 128.6775632849398 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 647.0441934406545, + "y": 127.9693917024256 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 641.3500812398032, + "y": 125.37481211333622 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 636.7362268658496, + "y": 121.14693891089158 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 633.6553159349018, + "y": 115.70058739491637 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 632.4080782867135, + "y": 109.56903569498411 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 633.1162498692273, + "y": 103.35212158831362 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 635.7108294583168, + "y": 97.65800938746258 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 639.9387026607615, + "y": 93.04415501350891 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 645.3850541767368, + "y": 89.96324408256123 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 651.5166058766691, + "y": 88.71600643437282 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 657.7335199833394, + "y": 89.42417801688703 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 663.4276321841907, + "y": 92.01875760597635 + }, + { + "angle": 0.5909738832912173, + "anglePrev": 0.5210780691477513, + "angularSpeed": 0.057636067328827076, + "angularVelocity": 0.07129431919601603, + "area": 1236.0755439999998, + "axes": { + "#": 637 + }, + "bounds": { + "#": 648 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 651 + }, + "constraintImpulse": { + "#": 652 + }, + "density": 0.001, + "force": { + "#": 653 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 654 + }, + "positionImpulse": { + "#": 655 + }, + "positionPrev": { + "#": 656 + }, + "region": { + "#": 657 + }, + "render": { + "#": 658 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 6.390617063955373, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 660 + }, + "vertices": { + "#": 661 + } + }, + [ + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": -0.6175327002538078, + "y": -0.7865452079297418 + }, + { + "x": -0.344280810873664, + "y": -0.9388667228441813 + }, + { + "x": -0.03736719965849787, + "y": -0.9993016023151781 + }, + { + "x": 0.2732340188129663, + "y": -0.9619475926282658 + }, + { + "x": 0.5571699981883181, + "y": -0.830398454429456 + }, + { + "x": 0.7865452079297418, + "y": -0.6175327002538078 + }, + { + "x": 0.9388667228441813, + "y": -0.344280810873664 + }, + { + "x": 0.9993016023151781, + "y": -0.03736719965849787 + }, + { + "x": 0.9619475926282658, + "y": 0.2732340188129663 + }, + { + "x": 0.830398454429456, + "y": 0.5571699981883181 + }, + { + "max": { + "#": 649 + }, + "min": { + "#": 650 + } + }, + { + "x": 700.4807697581881, + "y": 127.44504186687514 + }, + { + "x": 660.7671616752218, + "y": 87.73143378390957 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 680.6239657167051, + "y": 107.58823782539233 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 683.2395304327802, + "y": 112.02696464561134 + }, + { + "endCol": 14, + "endRow": 2, + "id": "13,14,1,2", + "startCol": 13, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 659 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.25181924682704, + "y": -5.065905246208629 + }, + [ + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 695.2842718611735, + "y": 121.19289073351419 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 690.3625625910881, + "y": 125.05702515932765 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 684.4879625448673, + "y": 127.21123088231295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 678.2352143152086, + "y": 127.44504186687514 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 672.2159463364026, + "y": 125.73531381852294 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 667.0193128085833, + "y": 122.24854396986058 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 663.1551783827698, + "y": 117.32683469977533 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 661.0009726597843, + "y": 111.45223465355448 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 660.7671616752218, + "y": 105.19948642389593 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 662.4768897235745, + "y": 99.18021844509025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 665.9636595722366, + "y": 93.9835849172706 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 670.8853688423217, + "y": 90.11945049145703 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 676.7599688885424, + "y": 87.96524476847176 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 683.0127171182012, + "y": 87.73143378390957 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 689.0319850970074, + "y": 89.44116183226173 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 694.2286186248267, + "y": 92.92793168092423 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 698.0927530506402, + "y": 97.8496409510095 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 700.2469587736257, + "y": 103.72424099723034 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 700.4807697581881, + "y": 109.97698922688892 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 698.7710417098356, + "y": 115.99625720569453 + }, + { + "angle": 1.1363420041082641, + "anglePrev": 0.9992049250672125, + "angularSpeed": 0.14827556807038803, + "angularVelocity": 0.14713707904105167, + "area": 1236.0755439999998, + "axes": { + "#": 683 + }, + "bounds": { + "#": 694 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "density": 0.001, + "force": { + "#": 699 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 700 + }, + "positionImpulse": { + "#": 701 + }, + "positionPrev": { + "#": 702 + }, + "region": { + "#": 703 + }, + "render": { + "#": 704 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.7610460586629046, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 706 + }, + "vertices": { + "#": 707 + } + }, + [ + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": -0.1199443450692804, + "y": -0.9927806172996639 + }, + { + "x": 0.19268281230785908, + "y": -0.9812610936143016 + }, + { + "x": 0.4864239848414469, + "y": -0.8737229005645714 + }, + { + "x": 0.7325915182852276, + "y": -0.6806685444006838 + }, + { + "x": 0.9070998613670671, + "y": -0.42091548024258635 + }, + { + "x": 0.9927806172996639, + "y": -0.1199443450692804 + }, + { + "x": 0.9812610936143016, + "y": 0.19268281230785908 + }, + { + "x": 0.8737229005645714, + "y": 0.4864239848414469 + }, + { + "x": 0.6806685444006838, + "y": 0.7325915182852276 + }, + { + "x": 0.42091548024258635, + "y": 0.9070998613670671 + }, + { + "max": { + "#": 695 + }, + "min": { + "#": 696 + } + }, + { + "x": 726.3797508117069, + "y": 154.9616547869437 + }, + { + "x": 686.4068866313793, + "y": 114.98879060661588 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 706.3933187215431, + "y": 134.97522269678004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 708.7676427712187, + "y": 136.9776554704492 + }, + { + "endCol": 15, + "endRow": 3, + "id": "14,15,2,3", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 705 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.709732952673903, + "y": -1.930726805859564 + }, + [ + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 711.8697676520377, + "y": 154.211117895904 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 705.657565838253, + "y": 154.9616547869437 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 699.5176992036804, + "y": 153.75601565782353 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 694.0507117525844, + "y": 150.7124032959157 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 689.7915125977769, + "y": 146.1283025597094 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 687.1574235224188, + "y": 140.4516716272742 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 686.4068866313793, + "y": 134.2394698134898 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 687.6125257604991, + "y": 128.09960317891716 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 690.656138122407, + "y": 122.63261572782136 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 695.2402388586133, + "y": 118.37341657301374 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 700.9168697910484, + "y": 115.7393274976557 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 707.1290716048329, + "y": 114.98879060661588 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 713.2689382394053, + "y": 116.1944297357361 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 718.7359256905014, + "y": 119.23804209764388 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 722.9951248453091, + "y": 123.82214283385028 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 725.6292139206671, + "y": 129.49877376628532 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 726.3797508117069, + "y": 135.7109755800698 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 725.1741116825868, + "y": 141.85084221464248 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 722.1304993206791, + "y": 147.3178296657383 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 717.5463985844725, + "y": 151.5770288205458 + }, + { + "angle": 0.9232327426617691, + "anglePrev": 0.8260789631856328, + "angularSpeed": 0.12715377947613637, + "angularVelocity": 0.10715377947613636, + "area": 1236.0755439999998, + "axes": { + "#": 729 + }, + "bounds": { + "#": 740 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 743 + }, + "constraintImpulse": { + "#": 744 + }, + "density": 0.001, + "force": { + "#": 745 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 746 + }, + "positionImpulse": { + "#": 747 + }, + "positionPrev": { + "#": 748 + }, + "region": { + "#": 749 + }, + "render": { + "#": 750 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 5.35047047192057, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 752 + }, + "vertices": { + "#": 753 + } + }, + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "x": -0.3272039107451846, + "y": -0.9449537559018734 + }, + { + "x": -0.019212617525713856, + "y": -0.9998154206291333 + }, + { + "x": 0.29062786231233034, + "y": -0.9568361644752797 + }, + { + "x": 0.5720575673191398, + "y": -0.8202134720137847 + }, + { + "x": 0.7975559200274027, + "y": -0.6032450202274717 + }, + { + "x": 0.9449537559018734, + "y": -0.3272039107451846 + }, + { + "x": 0.9998154206291333, + "y": -0.019212617525713856 + }, + { + "x": 0.9568361644752797, + "y": 0.29062786231233034 + }, + { + "x": 0.8202134720137847, + "y": 0.5720575673191398 + }, + { + "x": 0.6032450202274717, + "y": 0.7975559200274027 + }, + { + "max": { + "#": 741 + }, + "min": { + "#": 742 + } + }, + { + "x": 749.1984268125003, + "y": 187.96843720903865 + }, + { + "x": 709.578173018331, + "y": 148.34818341486948 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 729.388299915416, + "y": 168.1583103119541 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 731.9732227856508, + "y": 165.74394862364335 + }, + { + "endCol": 15, + "endRow": 3, + "id": "14,15,3,3", + "startCol": 14, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 751 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -3.903167829221047, + "y": 2.8929190713055846 + }, + [ + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 738.8092495712237, + "y": 185.80078362446727 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 732.8963184220206, + "y": 187.84822159050788 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 726.6403551704453, + "y": 187.96843720903865 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 720.6533182041928, + "y": 186.14994432625645 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 715.5209339394864, + "y": 182.57036491529348 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 711.7458266029028, + "y": 177.5792599677618 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 709.698388636862, + "y": 171.66632881855878 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 709.578173018331, + "y": 165.41036556698327 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 711.3966659011136, + "y": 159.42332860073134 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 714.9762453120767, + "y": 154.29094433602452 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 719.9673502596079, + "y": 150.5158369994409 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 725.880281408811, + "y": 148.46839903340032 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 732.1362446603862, + "y": 148.34818341486948 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 738.1232816266387, + "y": 150.1666762976517 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 743.2556658913453, + "y": 153.74625570861465 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 747.0307732279288, + "y": 158.7373606561463 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 749.0782111939697, + "y": 164.65029180534938 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 749.1984268125003, + "y": 170.90625505692478 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 747.379933929718, + "y": 176.89329202317688 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 743.8003545187551, + "y": 182.0256762878836 + }, + { + "angle": 0.6906757121973595, + "anglePrev": 0.6345374339876313, + "angularSpeed": 0.07613827820972816, + "angularVelocity": 0.06613827820972817, + "area": 1236.0755439999998, + "axes": { + "#": 775 + }, + "bounds": { + "#": 786 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 789 + }, + "constraintImpulse": { + "#": 790 + }, + "density": 0.001, + "force": { + "#": 791 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 792 + }, + "positionImpulse": { + "#": 793 + }, + "positionPrev": { + "#": 794 + }, + "region": { + "#": 795 + }, + "render": { + "#": 796 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 6.0492656795679105, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 798 + }, + "vertices": { + "#": 799 + } + }, + [ + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + } + ], + { + "x": -0.5361758254296116, + "y": -0.844106322820102 + }, + { + "x": -0.249119349788743, + "y": -0.9684727923699429 + }, + { + "x": 0.06228558453265938, + "y": -0.9980583680123244 + }, + { + "x": 0.3676262267127165, + "y": -0.9299736326546957 + }, + { + "x": 0.6370581772045215, + "y": -0.7708157230213022 + }, + { + "x": 0.844106322820102, + "y": -0.5361758254296116 + }, + { + "x": 0.9684727923699429, + "y": -0.249119349788743 + }, + { + "x": 0.9980583680123244, + "y": 0.06228558453265938 + }, + { + "x": 0.9299736326546957, + "y": 0.3676262267127165 + }, + { + "x": 0.7708157230213022, + "y": 0.6370581772045215 + }, + { + "max": { + "#": 787 + }, + "min": { + "#": 788 + } + }, + { + "x": 778.2480699055171, + "y": 216.13842740491737 + }, + { + "x": 738.4277645115295, + "y": 176.3181220109301 + }, + { + "category": 1, + "group": -6, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 758.3379172085232, + "y": 196.22827470792373 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 760.0273490142213, + "y": 189.85753042470603 + }, + { + "endCol": 16, + "endRow": 4, + "id": "15,16,3,4", + "startCol": 15, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 797 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3711868467117938, + "y": 5.8921869002228675 + }, + [ + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 771.5712559646132, + "y": 211.22460433775558 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 766.2893651437462, + "y": 214.57965819074178 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 760.2295164214644, + "y": 216.13842740491737 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 753.9845472557723, + "y": 215.74869914118057 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 748.1653523733589, + "y": 213.44832353695946 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 743.3415875786916, + "y": 209.4616134640136 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 739.9865337257054, + "y": 204.17972264314622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 738.4277645115295, + "y": 198.1198739208645 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 738.8174927752666, + "y": 191.87490475517257 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 741.1178683794875, + "y": 186.0557098727592 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 745.1045784524335, + "y": 181.23194507809185 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 750.3864692733007, + "y": 177.87689122510568 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 756.4463179955824, + "y": 176.3181220109301 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 762.6912871612743, + "y": 176.70785027466687 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 768.5104820436877, + "y": 179.00822587888797 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 773.334246838355, + "y": 182.99493595183387 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 776.6893006913413, + "y": 188.27682677270118 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 778.2480699055171, + "y": 194.33667549498296 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 777.85834164178, + "y": 200.58164466067484 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 775.5579660375591, + "y": 206.4008395430882 + }, + [], + [ + { + "#": 822 + }, + { + "#": 826 + }, + { + "#": 830 + }, + { + "#": 834 + }, + { + "#": 838 + }, + { + "#": 842 + }, + { + "#": 846 + }, + { + "#": 850 + }, + { + "#": 854 + }, + { + "#": 858 + } + ], + { + "angleA": 1.3972193565253468, + "angleB": 0.25968774677599754, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 36, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 823 + }, + "pointB": { + "#": 824 + }, + "render": { + "#": 825 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 3.411647492799979, + "y": 19.457162624207893 + }, + { + "x": -19.09165243454509, + "y": -5.072408039435443 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.25968774677599754, + "angleB": 0.5595839042714106, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 37, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 827 + }, + "pointB": { + "#": 828 + }, + "render": { + "#": 829 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.091652434545082, + "y": 5.072408039435445 + }, + { + "x": -16.741042128156288, + "y": -10.486087185566259 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.5666051900144172, + "angleB": -0.06835915053123093, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 38, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 831 + }, + "pointB": { + "#": 832 + }, + "render": { + "#": 833 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 16.6670042665906, + "y": 10.603371387320706 + }, + { + "x": -19.70786301173099, + "y": 1.3493152007020832 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": -0.06758599460691268, + "angleB": -0.7302325949295561, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 39, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 835 + }, + "pointB": { + "#": 836 + }, + "render": { + "#": 837 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 19.7089003522831, + "y": -1.3340775478868654 + }, + { + "x": -14.717110693030948, + "y": 13.176766251591278 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": -0.7392473611308601, + "angleB": -0.8313970480282972, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 40, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 839 + }, + "pointB": { + "#": 840 + }, + "render": { + "#": 841 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 14.597728838467082, + "y": -13.308900358729392 + }, + { + "x": -13.311117857595324, + "y": 14.595706813347812 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": -0.8309019023500483, + "angleB": 0.5823723883437674, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 41, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 843 + }, + "pointB": { + "#": 844 + }, + "render": { + "#": 845 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 13.318343226711322, + "y": -14.589114081928118 + }, + { + "x": -16.497754030487684, + "y": -10.864834464893065 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.5923723883437674, + "angleB": 1.1474804931376006, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 42, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 847 + }, + "pointB": { + "#": 848 + }, + "render": { + "#": 849 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 16.388282615807956, + "y": 11.029266018389771 + }, + { + "x": -8.114663818017918, + "y": -18.010351110418462 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 1.1463420041082641, + "angleB": 0.9432327426617692, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 43, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 851 + }, + "pointB": { + "#": 852 + }, + "render": { + "#": 853 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 8.135163141802423, + "y": 18.001100984558146 + }, + { + "x": -11.59904152184484, + "y": -15.99008291956362 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0.9332327426617691, + "angleB": 0.7006757121973595, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 44, + "label": "Constraint", + "length": 2, + "pointA": { + "#": 855 + }, + "pointB": { + "#": 856 + }, + "render": { + "#": 857 + }, + "stiffness": 0.8, + "type": "constraint" + }, + { + "x": 11.758359738796807, + "y": 15.873294940025623 + }, + { + "x": -15.100090089290026, + "y": -12.73608241553602 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 1.3972193565253468, + "angularStiffness": 0, + "bodyB": null, + "id": 45, + "label": "Constraint", + "length": 19.75553168102545, + "pointA": { + "#": 859 + }, + "pointB": { + "#": 860 + }, + "render": { + "#": 861 + }, + "stiffness": 0.5, + "type": "constraint" + }, + { + "x": 500, + "y": 100 + }, + { + "x": -3.4541333327933303, + "y": -19.699466056705344 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 863 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 864 + }, + "pointB": "", + "render": { + "#": 865 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 867 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/circleStack/circleStack-0.json b/tests/browser/refs/circleStack/circleStack-0.json new file mode 100644 index 00000000..69160956 --- /dev/null +++ b/tests/browser/refs/circleStack/circleStack-0.json @@ -0,0 +1,40902 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 4594 + }, + "events": { + "#": 4598 + }, + "gravity": { + "#": 4600 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 4592 + }, + "constraints": { + "#": 4593 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 137 + }, + { + "#": 182 + }, + { + "#": 227 + }, + { + "#": 272 + }, + { + "#": 317 + }, + { + "#": 362 + }, + { + "#": 407 + }, + { + "#": 452 + }, + { + "#": 497 + }, + { + "#": 542 + }, + { + "#": 587 + }, + { + "#": 632 + }, + { + "#": 677 + }, + { + "#": 722 + }, + { + "#": 767 + }, + { + "#": 812 + }, + { + "#": 857 + }, + { + "#": 902 + }, + { + "#": 947 + }, + { + "#": 992 + }, + { + "#": 1037 + }, + { + "#": 1082 + }, + { + "#": 1127 + }, + { + "#": 1172 + }, + { + "#": 1217 + }, + { + "#": 1262 + }, + { + "#": 1307 + }, + { + "#": 1352 + }, + { + "#": 1397 + }, + { + "#": 1442 + }, + { + "#": 1487 + }, + { + "#": 1532 + }, + { + "#": 1577 + }, + { + "#": 1622 + }, + { + "#": 1667 + }, + { + "#": 1712 + }, + { + "#": 1757 + }, + { + "#": 1802 + }, + { + "#": 1847 + }, + { + "#": 1892 + }, + { + "#": 1937 + }, + { + "#": 1982 + }, + { + "#": 2027 + }, + { + "#": 2072 + }, + { + "#": 2117 + }, + { + "#": 2162 + }, + { + "#": 2207 + }, + { + "#": 2252 + }, + { + "#": 2297 + }, + { + "#": 2342 + }, + { + "#": 2387 + }, + { + "#": 2432 + }, + { + "#": 2477 + }, + { + "#": 2522 + }, + { + "#": 2567 + }, + { + "#": 2612 + }, + { + "#": 2657 + }, + { + "#": 2702 + }, + { + "#": 2747 + }, + { + "#": 2792 + }, + { + "#": 2837 + }, + { + "#": 2882 + }, + { + "#": 2927 + }, + { + "#": 2972 + }, + { + "#": 3017 + }, + { + "#": 3062 + }, + { + "#": 3107 + }, + { + "#": 3152 + }, + { + "#": 3197 + }, + { + "#": 3242 + }, + { + "#": 3287 + }, + { + "#": 3332 + }, + { + "#": 3377 + }, + { + "#": 3422 + }, + { + "#": 3467 + }, + { + "#": 3512 + }, + { + "#": 3557 + }, + { + "#": 3602 + }, + { + "#": 3647 + }, + { + "#": 3692 + }, + { + "#": 3737 + }, + { + "#": 3782 + }, + { + "#": 3827 + }, + { + "#": 3872 + }, + { + "#": 3917 + }, + { + "#": 3962 + }, + { + "#": 4007 + }, + { + "#": 4052 + }, + { + "#": 4097 + }, + { + "#": 4142 + }, + { + "#": 4187 + }, + { + "#": 4232 + }, + { + "#": 4277 + }, + { + "#": 4322 + }, + { + "#": 4367 + }, + { + "#": 4412 + }, + { + "#": 4457 + }, + { + "#": 4502 + }, + { + "#": 4547 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 93 + }, + "bounds": { + "#": 104 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "density": 0.001, + "force": { + "#": 109 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 110 + }, + "positionImpulse": { + "#": 111 + }, + "positionPrev": { + "#": 112 + }, + "render": { + "#": 113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 115 + }, + "vertices": { + "#": 116 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 105 + }, + "min": { + "#": 106 + } + }, + { + "x": 139.508, + "y": 139.508 + }, + { + "x": 100, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 119.754 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 114 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 138 + }, + "bounds": { + "#": 149 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 152 + }, + "constraintImpulse": { + "#": 153 + }, + "density": 0.001, + "force": { + "#": 154 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 155 + }, + "positionImpulse": { + "#": 156 + }, + "positionPrev": { + "#": 157 + }, + "render": { + "#": 158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 160 + }, + "vertices": { + "#": 161 + } + }, + [ + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 150 + }, + "min": { + "#": 151 + } + }, + { + "x": 199.016, + "y": 139.508 + }, + { + "x": 159.508, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 119.754 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 159 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 183 + }, + "bounds": { + "#": 194 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 197 + }, + "constraintImpulse": { + "#": 198 + }, + "density": 0.001, + "force": { + "#": 199 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 200 + }, + "positionImpulse": { + "#": 201 + }, + "positionPrev": { + "#": 202 + }, + "render": { + "#": 203 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 205 + }, + "vertices": { + "#": 206 + } + }, + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 195 + }, + "min": { + "#": 196 + } + }, + { + "x": 258.524, + "y": 139.508 + }, + { + "x": 219.016, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 119.754 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 204 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 228 + }, + "bounds": { + "#": 239 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 242 + }, + "constraintImpulse": { + "#": 243 + }, + "density": 0.001, + "force": { + "#": 244 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 245 + }, + "positionImpulse": { + "#": 246 + }, + "positionPrev": { + "#": 247 + }, + "render": { + "#": 248 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 250 + }, + "vertices": { + "#": 251 + } + }, + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 240 + }, + "min": { + "#": 241 + } + }, + { + "x": 318.03200000000004, + "y": 139.508 + }, + { + "x": 278.524, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 119.754 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 249 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 273 + }, + "bounds": { + "#": 284 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 287 + }, + "constraintImpulse": { + "#": 288 + }, + "density": 0.001, + "force": { + "#": 289 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 290 + }, + "positionImpulse": { + "#": 291 + }, + "positionPrev": { + "#": 292 + }, + "render": { + "#": 293 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 295 + }, + "vertices": { + "#": 296 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 285 + }, + "min": { + "#": 286 + } + }, + { + "x": 377.5400000000001, + "y": 139.508 + }, + { + "x": 338.03200000000004, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 119.754 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 294 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 318 + }, + "bounds": { + "#": 329 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 332 + }, + "constraintImpulse": { + "#": 333 + }, + "density": 0.001, + "force": { + "#": 334 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 335 + }, + "positionImpulse": { + "#": 336 + }, + "positionPrev": { + "#": 337 + }, + "render": { + "#": 338 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 340 + }, + "vertices": { + "#": 341 + } + }, + [ + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 330 + }, + "min": { + "#": 331 + } + }, + { + "x": 437.0480000000001, + "y": 139.508 + }, + { + "x": 397.5400000000001, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 119.754 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 339 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 363 + }, + "bounds": { + "#": 374 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 377 + }, + "constraintImpulse": { + "#": 378 + }, + "density": 0.001, + "force": { + "#": 379 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 380 + }, + "positionImpulse": { + "#": 381 + }, + "positionPrev": { + "#": 382 + }, + "render": { + "#": 383 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 385 + }, + "vertices": { + "#": 386 + } + }, + [ + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 375 + }, + "min": { + "#": 376 + } + }, + { + "x": 496.55600000000015, + "y": 139.508 + }, + { + "x": 457.0480000000001, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 119.754 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 384 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 408 + }, + "bounds": { + "#": 419 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 422 + }, + "constraintImpulse": { + "#": 423 + }, + "density": 0.001, + "force": { + "#": 424 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 425 + }, + "positionImpulse": { + "#": 426 + }, + "positionPrev": { + "#": 427 + }, + "render": { + "#": 428 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 430 + }, + "vertices": { + "#": 431 + } + }, + [ + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 420 + }, + "min": { + "#": 421 + } + }, + { + "x": 556.0640000000002, + "y": 139.508 + }, + { + "x": 516.5560000000002, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 119.754 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 429 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 453 + }, + "bounds": { + "#": 464 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 467 + }, + "constraintImpulse": { + "#": 468 + }, + "density": 0.001, + "force": { + "#": 469 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 470 + }, + "positionImpulse": { + "#": 471 + }, + "positionPrev": { + "#": 472 + }, + "render": { + "#": 473 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 475 + }, + "vertices": { + "#": 476 + } + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 465 + }, + "min": { + "#": 466 + } + }, + { + "x": 615.5720000000002, + "y": 139.508 + }, + { + "x": 576.0640000000002, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 119.754 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 474 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 498 + }, + "bounds": { + "#": 509 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 512 + }, + "constraintImpulse": { + "#": 513 + }, + "density": 0.001, + "force": { + "#": 514 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 515 + }, + "positionImpulse": { + "#": 516 + }, + "positionPrev": { + "#": 517 + }, + "render": { + "#": 518 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 520 + }, + "vertices": { + "#": 521 + } + }, + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 510 + }, + "min": { + "#": 511 + } + }, + { + "x": 675.0800000000003, + "y": 139.508 + }, + { + "x": 635.5720000000002, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 119.754 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 519 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 128.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 137.574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 139.508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 139.508 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 137.574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 133.89600000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 128.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 122.88300000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 116.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 110.674 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 101.93400000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 105.61200000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 110.674 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 116.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 543 + }, + "bounds": { + "#": 554 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 557 + }, + "constraintImpulse": { + "#": 558 + }, + "density": 0.001, + "force": { + "#": 559 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 560 + }, + "positionImpulse": { + "#": 561 + }, + "positionPrev": { + "#": 562 + }, + "render": { + "#": 563 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 565 + }, + "vertices": { + "#": 566 + } + }, + [ + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 555 + }, + "min": { + "#": 556 + } + }, + { + "x": 139.508, + "y": 179.016 + }, + { + "x": 100, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 159.262 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 564 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 588 + }, + "bounds": { + "#": 599 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 602 + }, + "constraintImpulse": { + "#": 603 + }, + "density": 0.001, + "force": { + "#": 604 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 605 + }, + "positionImpulse": { + "#": 606 + }, + "positionPrev": { + "#": 607 + }, + "render": { + "#": 608 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 610 + }, + "vertices": { + "#": 611 + } + }, + [ + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 600 + }, + "min": { + "#": 601 + } + }, + { + "x": 199.016, + "y": 179.016 + }, + { + "x": 159.508, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 159.262 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 609 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 633 + }, + "bounds": { + "#": 644 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 647 + }, + "constraintImpulse": { + "#": 648 + }, + "density": 0.001, + "force": { + "#": 649 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 650 + }, + "positionImpulse": { + "#": 651 + }, + "positionPrev": { + "#": 652 + }, + "render": { + "#": 653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 655 + }, + "vertices": { + "#": 656 + } + }, + [ + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 645 + }, + "min": { + "#": 646 + } + }, + { + "x": 258.524, + "y": 179.016 + }, + { + "x": 219.016, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 159.262 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 654 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 678 + }, + "bounds": { + "#": 689 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 692 + }, + "constraintImpulse": { + "#": 693 + }, + "density": 0.001, + "force": { + "#": 694 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 695 + }, + "positionImpulse": { + "#": 696 + }, + "positionPrev": { + "#": 697 + }, + "render": { + "#": 698 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 700 + }, + "vertices": { + "#": 701 + } + }, + [ + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 690 + }, + "min": { + "#": 691 + } + }, + { + "x": 318.03200000000004, + "y": 179.016 + }, + { + "x": 278.524, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 159.262 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 699 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 723 + }, + "bounds": { + "#": 734 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 737 + }, + "constraintImpulse": { + "#": 738 + }, + "density": 0.001, + "force": { + "#": 739 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 740 + }, + "positionImpulse": { + "#": 741 + }, + "positionPrev": { + "#": 742 + }, + "render": { + "#": 743 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 745 + }, + "vertices": { + "#": 746 + } + }, + [ + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 735 + }, + "min": { + "#": 736 + } + }, + { + "x": 377.5400000000001, + "y": 179.016 + }, + { + "x": 338.03200000000004, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 159.262 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 744 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 768 + }, + "bounds": { + "#": 779 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 782 + }, + "constraintImpulse": { + "#": 783 + }, + "density": 0.001, + "force": { + "#": 784 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 785 + }, + "positionImpulse": { + "#": 786 + }, + "positionPrev": { + "#": 787 + }, + "render": { + "#": 788 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 790 + }, + "vertices": { + "#": 791 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 780 + }, + "min": { + "#": 781 + } + }, + { + "x": 437.0480000000001, + "y": 179.016 + }, + { + "x": 397.5400000000001, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 159.262 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 789 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 813 + }, + "bounds": { + "#": 824 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 827 + }, + "constraintImpulse": { + "#": 828 + }, + "density": 0.001, + "force": { + "#": 829 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 830 + }, + "positionImpulse": { + "#": 831 + }, + "positionPrev": { + "#": 832 + }, + "render": { + "#": 833 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 835 + }, + "vertices": { + "#": 836 + } + }, + [ + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 825 + }, + "min": { + "#": 826 + } + }, + { + "x": 496.55600000000015, + "y": 179.016 + }, + { + "x": 457.0480000000001, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 159.262 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 834 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 858 + }, + "bounds": { + "#": 869 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 872 + }, + "constraintImpulse": { + "#": 873 + }, + "density": 0.001, + "force": { + "#": 874 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 875 + }, + "positionImpulse": { + "#": 876 + }, + "positionPrev": { + "#": 877 + }, + "render": { + "#": 878 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 880 + }, + "vertices": { + "#": 881 + } + }, + [ + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 870 + }, + "min": { + "#": 871 + } + }, + { + "x": 556.0640000000002, + "y": 179.016 + }, + { + "x": 516.5560000000002, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 159.262 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 879 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 903 + }, + "bounds": { + "#": 914 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "density": 0.001, + "force": { + "#": 919 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 920 + }, + "positionImpulse": { + "#": 921 + }, + "positionPrev": { + "#": 922 + }, + "render": { + "#": 923 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 925 + }, + "vertices": { + "#": 926 + } + }, + [ + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 915 + }, + "min": { + "#": 916 + } + }, + { + "x": 615.5720000000002, + "y": 179.016 + }, + { + "x": 576.0640000000002, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 159.262 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 924 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 948 + }, + "bounds": { + "#": 959 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 962 + }, + "constraintImpulse": { + "#": 963 + }, + "density": 0.001, + "force": { + "#": 964 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 965 + }, + "positionImpulse": { + "#": 966 + }, + "positionPrev": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 960 + }, + "min": { + "#": 961 + } + }, + { + "x": 675.0800000000003, + "y": 179.016 + }, + { + "x": 635.5720000000002, + "y": 139.50799999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 159.262 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 162.391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 168.342 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 173.404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 177.082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 179.016 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 179.016 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 177.082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 173.404 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 168.342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 162.391 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 156.133 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 150.182 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 145.12 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 141.442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 139.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 141.442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 145.12 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 150.182 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 156.133 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 993 + }, + "bounds": { + "#": 1004 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1007 + }, + "constraintImpulse": { + "#": 1008 + }, + "density": 0.001, + "force": { + "#": 1009 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1010 + }, + "positionImpulse": { + "#": 1011 + }, + "positionPrev": { + "#": 1012 + }, + "render": { + "#": 1013 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1015 + }, + "vertices": { + "#": 1016 + } + }, + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1005 + }, + "min": { + "#": 1006 + } + }, + { + "x": 139.508, + "y": 218.524 + }, + { + "x": 100, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 198.77 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1014 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1038 + }, + "bounds": { + "#": 1049 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1052 + }, + "constraintImpulse": { + "#": 1053 + }, + "density": 0.001, + "force": { + "#": 1054 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1055 + }, + "positionImpulse": { + "#": 1056 + }, + "positionPrev": { + "#": 1057 + }, + "render": { + "#": 1058 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1060 + }, + "vertices": { + "#": 1061 + } + }, + [ + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1050 + }, + "min": { + "#": 1051 + } + }, + { + "x": 199.016, + "y": 218.524 + }, + { + "x": 159.508, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 198.77 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1059 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1083 + }, + "bounds": { + "#": 1094 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1097 + }, + "constraintImpulse": { + "#": 1098 + }, + "density": 0.001, + "force": { + "#": 1099 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1100 + }, + "positionImpulse": { + "#": 1101 + }, + "positionPrev": { + "#": 1102 + }, + "render": { + "#": 1103 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1105 + }, + "vertices": { + "#": 1106 + } + }, + [ + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1095 + }, + "min": { + "#": 1096 + } + }, + { + "x": 258.524, + "y": 218.524 + }, + { + "x": 219.016, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 198.77 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1104 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1128 + }, + "bounds": { + "#": 1139 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1142 + }, + "constraintImpulse": { + "#": 1143 + }, + "density": 0.001, + "force": { + "#": 1144 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1145 + }, + "positionImpulse": { + "#": 1146 + }, + "positionPrev": { + "#": 1147 + }, + "render": { + "#": 1148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1150 + }, + "vertices": { + "#": 1151 + } + }, + [ + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1140 + }, + "min": { + "#": 1141 + } + }, + { + "x": 318.03200000000004, + "y": 218.524 + }, + { + "x": 278.524, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 198.77 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1149 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1173 + }, + "bounds": { + "#": 1184 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1187 + }, + "constraintImpulse": { + "#": 1188 + }, + "density": 0.001, + "force": { + "#": 1189 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1190 + }, + "positionImpulse": { + "#": 1191 + }, + "positionPrev": { + "#": 1192 + }, + "render": { + "#": 1193 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1195 + }, + "vertices": { + "#": 1196 + } + }, + [ + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1185 + }, + "min": { + "#": 1186 + } + }, + { + "x": 377.5400000000001, + "y": 218.524 + }, + { + "x": 338.03200000000004, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 198.77 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1194 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1218 + }, + "bounds": { + "#": 1229 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1232 + }, + "constraintImpulse": { + "#": 1233 + }, + "density": 0.001, + "force": { + "#": 1234 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1235 + }, + "positionImpulse": { + "#": 1236 + }, + "positionPrev": { + "#": 1237 + }, + "render": { + "#": 1238 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1240 + }, + "vertices": { + "#": 1241 + } + }, + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1230 + }, + "min": { + "#": 1231 + } + }, + { + "x": 437.0480000000001, + "y": 218.524 + }, + { + "x": 397.5400000000001, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 198.77 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1239 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1263 + }, + "bounds": { + "#": 1274 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1277 + }, + "constraintImpulse": { + "#": 1278 + }, + "density": 0.001, + "force": { + "#": 1279 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1280 + }, + "positionImpulse": { + "#": 1281 + }, + "positionPrev": { + "#": 1282 + }, + "render": { + "#": 1283 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1285 + }, + "vertices": { + "#": 1286 + } + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1275 + }, + "min": { + "#": 1276 + } + }, + { + "x": 496.55600000000015, + "y": 218.524 + }, + { + "x": 457.0480000000001, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 198.77 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1284 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1308 + }, + "bounds": { + "#": 1319 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1322 + }, + "constraintImpulse": { + "#": 1323 + }, + "density": 0.001, + "force": { + "#": 1324 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1325 + }, + "positionImpulse": { + "#": 1326 + }, + "positionPrev": { + "#": 1327 + }, + "render": { + "#": 1328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1330 + }, + "vertices": { + "#": 1331 + } + }, + [ + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1320 + }, + "min": { + "#": 1321 + } + }, + { + "x": 556.0640000000002, + "y": 218.524 + }, + { + "x": 516.5560000000002, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 198.77 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1329 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1353 + }, + "bounds": { + "#": 1364 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1367 + }, + "constraintImpulse": { + "#": 1368 + }, + "density": 0.001, + "force": { + "#": 1369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1370 + }, + "positionImpulse": { + "#": 1371 + }, + "positionPrev": { + "#": 1372 + }, + "render": { + "#": 1373 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1375 + }, + "vertices": { + "#": 1376 + } + }, + [ + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1365 + }, + "min": { + "#": 1366 + } + }, + { + "x": 615.5720000000002, + "y": 218.524 + }, + { + "x": 576.0640000000002, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 198.77 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1374 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1398 + }, + "bounds": { + "#": 1409 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1412 + }, + "constraintImpulse": { + "#": 1413 + }, + "density": 0.001, + "force": { + "#": 1414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1415 + }, + "positionImpulse": { + "#": 1416 + }, + "positionPrev": { + "#": 1417 + }, + "render": { + "#": 1418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1420 + }, + "vertices": { + "#": 1421 + } + }, + [ + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1410 + }, + "min": { + "#": 1411 + } + }, + { + "x": 675.0800000000003, + "y": 218.524 + }, + { + "x": 635.5720000000002, + "y": 179.01600000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 198.77 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1419 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 201.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 212.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 216.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 218.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 218.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 216.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 212.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 207.85000000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 201.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 195.64100000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 189.69 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 179.01600000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 180.95000000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 184.62800000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 189.69 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 195.64100000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1443 + }, + "bounds": { + "#": 1454 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1457 + }, + "constraintImpulse": { + "#": 1458 + }, + "density": 0.001, + "force": { + "#": 1459 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1460 + }, + "positionImpulse": { + "#": 1461 + }, + "positionPrev": { + "#": 1462 + }, + "render": { + "#": 1463 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1465 + }, + "vertices": { + "#": 1466 + } + }, + [ + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1455 + }, + "min": { + "#": 1456 + } + }, + { + "x": 139.508, + "y": 258.032 + }, + { + "x": 100, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 238.278 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1464 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1488 + }, + "bounds": { + "#": 1499 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1502 + }, + "constraintImpulse": { + "#": 1503 + }, + "density": 0.001, + "force": { + "#": 1504 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1505 + }, + "positionImpulse": { + "#": 1506 + }, + "positionPrev": { + "#": 1507 + }, + "render": { + "#": 1508 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1510 + }, + "vertices": { + "#": 1511 + } + }, + [ + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1500 + }, + "min": { + "#": 1501 + } + }, + { + "x": 199.016, + "y": 258.032 + }, + { + "x": 159.508, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 238.278 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1509 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1533 + }, + "bounds": { + "#": 1544 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1547 + }, + "constraintImpulse": { + "#": 1548 + }, + "density": 0.001, + "force": { + "#": 1549 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1550 + }, + "positionImpulse": { + "#": 1551 + }, + "positionPrev": { + "#": 1552 + }, + "render": { + "#": 1553 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1555 + }, + "vertices": { + "#": 1556 + } + }, + [ + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1545 + }, + "min": { + "#": 1546 + } + }, + { + "x": 258.524, + "y": 258.032 + }, + { + "x": 219.016, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 238.278 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1554 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1578 + }, + "bounds": { + "#": 1589 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1592 + }, + "constraintImpulse": { + "#": 1593 + }, + "density": 0.001, + "force": { + "#": 1594 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1595 + }, + "positionImpulse": { + "#": 1596 + }, + "positionPrev": { + "#": 1597 + }, + "render": { + "#": 1598 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1600 + }, + "vertices": { + "#": 1601 + } + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1590 + }, + "min": { + "#": 1591 + } + }, + { + "x": 318.03200000000004, + "y": 258.032 + }, + { + "x": 278.524, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 238.278 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1599 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1623 + }, + "bounds": { + "#": 1634 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1637 + }, + "constraintImpulse": { + "#": 1638 + }, + "density": 0.001, + "force": { + "#": 1639 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1640 + }, + "positionImpulse": { + "#": 1641 + }, + "positionPrev": { + "#": 1642 + }, + "render": { + "#": 1643 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1645 + }, + "vertices": { + "#": 1646 + } + }, + [ + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1635 + }, + "min": { + "#": 1636 + } + }, + { + "x": 377.5400000000001, + "y": 258.032 + }, + { + "x": 338.03200000000004, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 238.278 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1644 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1668 + }, + "bounds": { + "#": 1679 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1682 + }, + "constraintImpulse": { + "#": 1683 + }, + "density": 0.001, + "force": { + "#": 1684 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1685 + }, + "positionImpulse": { + "#": 1686 + }, + "positionPrev": { + "#": 1687 + }, + "render": { + "#": 1688 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1690 + }, + "vertices": { + "#": 1691 + } + }, + [ + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1680 + }, + "min": { + "#": 1681 + } + }, + { + "x": 437.0480000000001, + "y": 258.032 + }, + { + "x": 397.5400000000001, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 238.278 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1689 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1713 + }, + "bounds": { + "#": 1724 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1727 + }, + "constraintImpulse": { + "#": 1728 + }, + "density": 0.001, + "force": { + "#": 1729 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1730 + }, + "positionImpulse": { + "#": 1731 + }, + "positionPrev": { + "#": 1732 + }, + "render": { + "#": 1733 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1735 + }, + "vertices": { + "#": 1736 + } + }, + [ + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1725 + }, + "min": { + "#": 1726 + } + }, + { + "x": 496.55600000000015, + "y": 258.032 + }, + { + "x": 457.0480000000001, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 238.278 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1734 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1758 + }, + "bounds": { + "#": 1769 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1772 + }, + "constraintImpulse": { + "#": 1773 + }, + "density": 0.001, + "force": { + "#": 1774 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1775 + }, + "positionImpulse": { + "#": 1776 + }, + "positionPrev": { + "#": 1777 + }, + "render": { + "#": 1778 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1780 + }, + "vertices": { + "#": 1781 + } + }, + [ + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + }, + { + "#": 1768 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1770 + }, + "min": { + "#": 1771 + } + }, + { + "x": 556.0640000000002, + "y": 258.032 + }, + { + "x": 516.5560000000002, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 238.278 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1779 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1803 + }, + "bounds": { + "#": 1814 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1817 + }, + "constraintImpulse": { + "#": 1818 + }, + "density": 0.001, + "force": { + "#": 1819 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1820 + }, + "positionImpulse": { + "#": 1821 + }, + "positionPrev": { + "#": 1822 + }, + "render": { + "#": 1823 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1825 + }, + "vertices": { + "#": 1826 + } + }, + [ + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1815 + }, + "min": { + "#": 1816 + } + }, + { + "x": 615.5720000000002, + "y": 258.032 + }, + { + "x": 576.0640000000002, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 238.278 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1824 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1848 + }, + "bounds": { + "#": 1859 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1862 + }, + "constraintImpulse": { + "#": 1863 + }, + "density": 0.001, + "force": { + "#": 1864 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1865 + }, + "positionImpulse": { + "#": 1866 + }, + "positionPrev": { + "#": 1867 + }, + "render": { + "#": 1868 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1870 + }, + "vertices": { + "#": 1871 + } + }, + [ + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1860 + }, + "min": { + "#": 1861 + } + }, + { + "x": 675.0800000000003, + "y": 258.032 + }, + { + "x": 635.5720000000002, + "y": 218.524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 238.278 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1869 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 247.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 252.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 258.032 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 258.032 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 256.09799999999996 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 252.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 247.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 241.40699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 235.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 224.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 220.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 218.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 218.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 220.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 224.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 229.19799999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 235.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1893 + }, + "bounds": { + "#": 1904 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1907 + }, + "constraintImpulse": { + "#": 1908 + }, + "density": 0.001, + "force": { + "#": 1909 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1910 + }, + "positionImpulse": { + "#": 1911 + }, + "positionPrev": { + "#": 1912 + }, + "render": { + "#": 1913 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1915 + }, + "vertices": { + "#": 1916 + } + }, + [ + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1905 + }, + "min": { + "#": 1906 + } + }, + { + "x": 139.508, + "y": 297.54 + }, + { + "x": 100, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 277.786 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1914 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1938 + }, + "bounds": { + "#": 1949 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1952 + }, + "constraintImpulse": { + "#": 1953 + }, + "density": 0.001, + "force": { + "#": 1954 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1955 + }, + "positionImpulse": { + "#": 1956 + }, + "positionPrev": { + "#": 1957 + }, + "render": { + "#": 1958 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1960 + }, + "vertices": { + "#": 1961 + } + }, + [ + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1950 + }, + "min": { + "#": 1951 + } + }, + { + "x": 199.016, + "y": 297.54 + }, + { + "x": 159.508, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 277.786 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1959 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1983 + }, + "bounds": { + "#": 1994 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1997 + }, + "constraintImpulse": { + "#": 1998 + }, + "density": 0.001, + "force": { + "#": 1999 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2000 + }, + "positionImpulse": { + "#": 2001 + }, + "positionPrev": { + "#": 2002 + }, + "render": { + "#": 2003 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2005 + }, + "vertices": { + "#": 2006 + } + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1995 + }, + "min": { + "#": 1996 + } + }, + { + "x": 258.524, + "y": 297.54 + }, + { + "x": 219.016, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 277.786 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2004 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2028 + }, + "bounds": { + "#": 2039 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2042 + }, + "constraintImpulse": { + "#": 2043 + }, + "density": 0.001, + "force": { + "#": 2044 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2045 + }, + "positionImpulse": { + "#": 2046 + }, + "positionPrev": { + "#": 2047 + }, + "render": { + "#": 2048 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2050 + }, + "vertices": { + "#": 2051 + } + }, + [ + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2040 + }, + "min": { + "#": 2041 + } + }, + { + "x": 318.03200000000004, + "y": 297.54 + }, + { + "x": 278.524, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 277.786 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2049 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2073 + }, + "bounds": { + "#": 2084 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2087 + }, + "constraintImpulse": { + "#": 2088 + }, + "density": 0.001, + "force": { + "#": 2089 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2090 + }, + "positionImpulse": { + "#": 2091 + }, + "positionPrev": { + "#": 2092 + }, + "render": { + "#": 2093 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2095 + }, + "vertices": { + "#": 2096 + } + }, + [ + { + "#": 2074 + }, + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2085 + }, + "min": { + "#": 2086 + } + }, + { + "x": 377.5400000000001, + "y": 297.54 + }, + { + "x": 338.03200000000004, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 277.786 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2094 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2118 + }, + "bounds": { + "#": 2129 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2132 + }, + "constraintImpulse": { + "#": 2133 + }, + "density": 0.001, + "force": { + "#": 2134 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2135 + }, + "positionImpulse": { + "#": 2136 + }, + "positionPrev": { + "#": 2137 + }, + "render": { + "#": 2138 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2140 + }, + "vertices": { + "#": 2141 + } + }, + [ + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2130 + }, + "min": { + "#": 2131 + } + }, + { + "x": 437.0480000000001, + "y": 297.54 + }, + { + "x": 397.5400000000001, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 277.786 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2139 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2163 + }, + "bounds": { + "#": 2174 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2177 + }, + "constraintImpulse": { + "#": 2178 + }, + "density": 0.001, + "force": { + "#": 2179 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2180 + }, + "positionImpulse": { + "#": 2181 + }, + "positionPrev": { + "#": 2182 + }, + "render": { + "#": 2183 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2185 + }, + "vertices": { + "#": 2186 + } + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2175 + }, + "min": { + "#": 2176 + } + }, + { + "x": 496.55600000000015, + "y": 297.54 + }, + { + "x": 457.0480000000001, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 277.786 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2184 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2208 + }, + "bounds": { + "#": 2219 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2222 + }, + "constraintImpulse": { + "#": 2223 + }, + "density": 0.001, + "force": { + "#": 2224 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2225 + }, + "positionImpulse": { + "#": 2226 + }, + "positionPrev": { + "#": 2227 + }, + "render": { + "#": 2228 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2230 + }, + "vertices": { + "#": 2231 + } + }, + [ + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2220 + }, + "min": { + "#": 2221 + } + }, + { + "x": 556.0640000000002, + "y": 297.54 + }, + { + "x": 516.5560000000002, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 277.786 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2229 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2253 + }, + "bounds": { + "#": 2264 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2267 + }, + "constraintImpulse": { + "#": 2268 + }, + "density": 0.001, + "force": { + "#": 2269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2270 + }, + "positionImpulse": { + "#": 2271 + }, + "positionPrev": { + "#": 2272 + }, + "render": { + "#": 2273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2275 + }, + "vertices": { + "#": 2276 + } + }, + [ + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2265 + }, + "min": { + "#": 2266 + } + }, + { + "x": 615.5720000000002, + "y": 297.54 + }, + { + "x": 576.0640000000002, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 277.786 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2274 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2277 + }, + { + "#": 2278 + }, + { + "#": 2279 + }, + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2298 + }, + "bounds": { + "#": 2309 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2312 + }, + "constraintImpulse": { + "#": 2313 + }, + "density": 0.001, + "force": { + "#": 2314 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2315 + }, + "positionImpulse": { + "#": 2316 + }, + "positionPrev": { + "#": 2317 + }, + "render": { + "#": 2318 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2320 + }, + "vertices": { + "#": 2321 + } + }, + [ + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2310 + }, + "min": { + "#": 2311 + } + }, + { + "x": 675.0800000000003, + "y": 297.54 + }, + { + "x": 635.5720000000002, + "y": 258.03200000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 277.786 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2319 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 280.915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 286.866 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 291.928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 295.606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 297.54 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 297.54 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 295.606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 291.928 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 286.866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 280.915 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 274.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 268.706 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 263.644 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 259.966 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 258.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 259.966 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 263.644 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 268.706 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 274.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2343 + }, + "bounds": { + "#": 2354 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2357 + }, + "constraintImpulse": { + "#": 2358 + }, + "density": 0.001, + "force": { + "#": 2359 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2360 + }, + "positionImpulse": { + "#": 2361 + }, + "positionPrev": { + "#": 2362 + }, + "render": { + "#": 2363 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2365 + }, + "vertices": { + "#": 2366 + } + }, + [ + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2355 + }, + "min": { + "#": 2356 + } + }, + { + "x": 139.508, + "y": 337.048 + }, + { + "x": 100, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 317.294 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2364 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2388 + }, + "bounds": { + "#": 2399 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2402 + }, + "constraintImpulse": { + "#": 2403 + }, + "density": 0.001, + "force": { + "#": 2404 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2405 + }, + "positionImpulse": { + "#": 2406 + }, + "positionPrev": { + "#": 2407 + }, + "render": { + "#": 2408 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2410 + }, + "vertices": { + "#": 2411 + } + }, + [ + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2400 + }, + "min": { + "#": 2401 + } + }, + { + "x": 199.016, + "y": 337.048 + }, + { + "x": 159.508, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 317.294 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2409 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2433 + }, + "bounds": { + "#": 2444 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2447 + }, + "constraintImpulse": { + "#": 2448 + }, + "density": 0.001, + "force": { + "#": 2449 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2450 + }, + "positionImpulse": { + "#": 2451 + }, + "positionPrev": { + "#": 2452 + }, + "render": { + "#": 2453 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2455 + }, + "vertices": { + "#": 2456 + } + }, + [ + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2445 + }, + "min": { + "#": 2446 + } + }, + { + "x": 258.524, + "y": 337.048 + }, + { + "x": 219.016, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 317.294 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2454 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + }, + { + "#": 2465 + }, + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2478 + }, + "bounds": { + "#": 2489 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2492 + }, + "constraintImpulse": { + "#": 2493 + }, + "density": 0.001, + "force": { + "#": 2494 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2495 + }, + "positionImpulse": { + "#": 2496 + }, + "positionPrev": { + "#": 2497 + }, + "render": { + "#": 2498 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2500 + }, + "vertices": { + "#": 2501 + } + }, + [ + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2490 + }, + "min": { + "#": 2491 + } + }, + { + "x": 318.03200000000004, + "y": 337.048 + }, + { + "x": 278.524, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 317.294 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2499 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + }, + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2523 + }, + "bounds": { + "#": 2534 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2537 + }, + "constraintImpulse": { + "#": 2538 + }, + "density": 0.001, + "force": { + "#": 2539 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2540 + }, + "positionImpulse": { + "#": 2541 + }, + "positionPrev": { + "#": 2542 + }, + "render": { + "#": 2543 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2545 + }, + "vertices": { + "#": 2546 + } + }, + [ + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2535 + }, + "min": { + "#": 2536 + } + }, + { + "x": 377.5400000000001, + "y": 337.048 + }, + { + "x": 338.03200000000004, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 317.294 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2544 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2568 + }, + "bounds": { + "#": 2579 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2582 + }, + "constraintImpulse": { + "#": 2583 + }, + "density": 0.001, + "force": { + "#": 2584 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2585 + }, + "positionImpulse": { + "#": 2586 + }, + "positionPrev": { + "#": 2587 + }, + "render": { + "#": 2588 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2590 + }, + "vertices": { + "#": 2591 + } + }, + [ + { + "#": 2569 + }, + { + "#": 2570 + }, + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2580 + }, + "min": { + "#": 2581 + } + }, + { + "x": 437.0480000000001, + "y": 337.048 + }, + { + "x": 397.5400000000001, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 317.294 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2589 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2613 + }, + "bounds": { + "#": 2624 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2627 + }, + "constraintImpulse": { + "#": 2628 + }, + "density": 0.001, + "force": { + "#": 2629 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2630 + }, + "positionImpulse": { + "#": 2631 + }, + "positionPrev": { + "#": 2632 + }, + "render": { + "#": 2633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2635 + }, + "vertices": { + "#": 2636 + } + }, + [ + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2625 + }, + "min": { + "#": 2626 + } + }, + { + "x": 496.55600000000015, + "y": 337.048 + }, + { + "x": 457.0480000000001, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 317.294 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2634 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + }, + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2658 + }, + "bounds": { + "#": 2669 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2672 + }, + "constraintImpulse": { + "#": 2673 + }, + "density": 0.001, + "force": { + "#": 2674 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2675 + }, + "positionImpulse": { + "#": 2676 + }, + "positionPrev": { + "#": 2677 + }, + "render": { + "#": 2678 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2680 + }, + "vertices": { + "#": 2681 + } + }, + [ + { + "#": 2659 + }, + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2670 + }, + "min": { + "#": 2671 + } + }, + { + "x": 556.0640000000002, + "y": 337.048 + }, + { + "x": 516.5560000000002, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 317.294 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2679 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2703 + }, + "bounds": { + "#": 2714 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2717 + }, + "constraintImpulse": { + "#": 2718 + }, + "density": 0.001, + "force": { + "#": 2719 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2720 + }, + "positionImpulse": { + "#": 2721 + }, + "positionPrev": { + "#": 2722 + }, + "render": { + "#": 2723 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2725 + }, + "vertices": { + "#": 2726 + } + }, + [ + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2715 + }, + "min": { + "#": 2716 + } + }, + { + "x": 615.5720000000002, + "y": 337.048 + }, + { + "x": 576.0640000000002, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 317.294 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2724 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2727 + }, + { + "#": 2728 + }, + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2748 + }, + "bounds": { + "#": 2759 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2762 + }, + "constraintImpulse": { + "#": 2763 + }, + "density": 0.001, + "force": { + "#": 2764 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2765 + }, + "positionImpulse": { + "#": 2766 + }, + "positionPrev": { + "#": 2767 + }, + "render": { + "#": 2768 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2770 + }, + "vertices": { + "#": 2771 + } + }, + [ + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2760 + }, + "min": { + "#": 2761 + } + }, + { + "x": 675.0800000000003, + "y": 337.048 + }, + { + "x": 635.5720000000002, + "y": 297.53999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 317.294 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2769 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 320.423 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 331.436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 335.114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 337.048 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 337.048 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 335.114 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 331.436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 326.37399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 320.423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 314.16499999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 308.214 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 303.152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 299.474 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 297.53999999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 299.474 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 303.152 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 308.214 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 314.16499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2793 + }, + "bounds": { + "#": 2804 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2807 + }, + "constraintImpulse": { + "#": 2808 + }, + "density": 0.001, + "force": { + "#": 2809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2810 + }, + "positionImpulse": { + "#": 2811 + }, + "positionPrev": { + "#": 2812 + }, + "render": { + "#": 2813 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2815 + }, + "vertices": { + "#": 2816 + } + }, + [ + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2805 + }, + "min": { + "#": 2806 + } + }, + { + "x": 139.508, + "y": 376.55600000000004 + }, + { + "x": 100, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 356.802 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2814 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2838 + }, + "bounds": { + "#": 2849 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2852 + }, + "constraintImpulse": { + "#": 2853 + }, + "density": 0.001, + "force": { + "#": 2854 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2855 + }, + "positionImpulse": { + "#": 2856 + }, + "positionPrev": { + "#": 2857 + }, + "render": { + "#": 2858 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2860 + }, + "vertices": { + "#": 2861 + } + }, + [ + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + }, + { + "#": 2847 + }, + { + "#": 2848 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2850 + }, + "min": { + "#": 2851 + } + }, + { + "x": 199.016, + "y": 376.55600000000004 + }, + { + "x": 159.508, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 356.802 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2859 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2883 + }, + "bounds": { + "#": 2894 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2897 + }, + "constraintImpulse": { + "#": 2898 + }, + "density": 0.001, + "force": { + "#": 2899 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2900 + }, + "positionImpulse": { + "#": 2901 + }, + "positionPrev": { + "#": 2902 + }, + "render": { + "#": 2903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2905 + }, + "vertices": { + "#": 2906 + } + }, + [ + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2895 + }, + "min": { + "#": 2896 + } + }, + { + "x": 258.524, + "y": 376.55600000000004 + }, + { + "x": 219.016, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 356.802 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2904 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2928 + }, + "bounds": { + "#": 2939 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2942 + }, + "constraintImpulse": { + "#": 2943 + }, + "density": 0.001, + "force": { + "#": 2944 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2945 + }, + "positionImpulse": { + "#": 2946 + }, + "positionPrev": { + "#": 2947 + }, + "render": { + "#": 2948 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2950 + }, + "vertices": { + "#": 2951 + } + }, + [ + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2940 + }, + "min": { + "#": 2941 + } + }, + { + "x": 318.03200000000004, + "y": 376.55600000000004 + }, + { + "x": 278.524, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 356.802 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2949 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + }, + { + "#": 2964 + }, + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2973 + }, + "bounds": { + "#": 2984 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2987 + }, + "constraintImpulse": { + "#": 2988 + }, + "density": 0.001, + "force": { + "#": 2989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2990 + }, + "positionImpulse": { + "#": 2991 + }, + "positionPrev": { + "#": 2992 + }, + "render": { + "#": 2993 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2995 + }, + "vertices": { + "#": 2996 + } + }, + [ + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2985 + }, + "min": { + "#": 2986 + } + }, + { + "x": 377.5400000000001, + "y": 376.55600000000004 + }, + { + "x": 338.03200000000004, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 356.802 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2994 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + }, + { + "#": 3005 + }, + { + "#": 3006 + }, + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3018 + }, + "bounds": { + "#": 3029 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3032 + }, + "constraintImpulse": { + "#": 3033 + }, + "density": 0.001, + "force": { + "#": 3034 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3035 + }, + "positionImpulse": { + "#": 3036 + }, + "positionPrev": { + "#": 3037 + }, + "render": { + "#": 3038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3040 + }, + "vertices": { + "#": 3041 + } + }, + [ + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3030 + }, + "min": { + "#": 3031 + } + }, + { + "x": 437.0480000000001, + "y": 376.55600000000004 + }, + { + "x": 397.5400000000001, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 356.802 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3039 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3063 + }, + "bounds": { + "#": 3074 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3077 + }, + "constraintImpulse": { + "#": 3078 + }, + "density": 0.001, + "force": { + "#": 3079 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3080 + }, + "positionImpulse": { + "#": 3081 + }, + "positionPrev": { + "#": 3082 + }, + "render": { + "#": 3083 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3085 + }, + "vertices": { + "#": 3086 + } + }, + [ + { + "#": 3064 + }, + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3075 + }, + "min": { + "#": 3076 + } + }, + { + "x": 496.55600000000015, + "y": 376.55600000000004 + }, + { + "x": 457.0480000000001, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 356.802 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3084 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3087 + }, + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + }, + { + "#": 3106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3108 + }, + "bounds": { + "#": 3119 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3122 + }, + "constraintImpulse": { + "#": 3123 + }, + "density": 0.001, + "force": { + "#": 3124 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3125 + }, + "positionImpulse": { + "#": 3126 + }, + "positionPrev": { + "#": 3127 + }, + "render": { + "#": 3128 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3130 + }, + "vertices": { + "#": 3131 + } + }, + [ + { + "#": 3109 + }, + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3120 + }, + "min": { + "#": 3121 + } + }, + { + "x": 556.0640000000002, + "y": 376.55600000000004 + }, + { + "x": 516.5560000000002, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 356.802 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3129 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3153 + }, + "bounds": { + "#": 3164 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3167 + }, + "constraintImpulse": { + "#": 3168 + }, + "density": 0.001, + "force": { + "#": 3169 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3170 + }, + "positionImpulse": { + "#": 3171 + }, + "positionPrev": { + "#": 3172 + }, + "render": { + "#": 3173 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3175 + }, + "vertices": { + "#": 3176 + } + }, + [ + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3165 + }, + "min": { + "#": 3166 + } + }, + { + "x": 615.5720000000002, + "y": 376.55600000000004 + }, + { + "x": 576.0640000000002, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 356.802 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3174 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + }, + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3198 + }, + "bounds": { + "#": 3209 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3212 + }, + "constraintImpulse": { + "#": 3213 + }, + "density": 0.001, + "force": { + "#": 3214 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3215 + }, + "positionImpulse": { + "#": 3216 + }, + "positionPrev": { + "#": 3217 + }, + "render": { + "#": 3218 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3220 + }, + "vertices": { + "#": 3221 + } + }, + [ + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3210 + }, + "min": { + "#": 3211 + } + }, + { + "x": 675.0800000000003, + "y": 376.55600000000004 + }, + { + "x": 635.5720000000002, + "y": 337.048 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 356.802 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3219 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 365.882 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 370.944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 374.622 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 374.622 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 370.944 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 365.882 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 359.93100000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 353.673 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 342.66 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 338.982 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 337.048 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 337.048 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 338.982 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 342.66 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 347.72200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 353.673 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3243 + }, + "bounds": { + "#": 3254 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3257 + }, + "constraintImpulse": { + "#": 3258 + }, + "density": 0.001, + "force": { + "#": 3259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3260 + }, + "positionImpulse": { + "#": 3261 + }, + "positionPrev": { + "#": 3262 + }, + "render": { + "#": 3263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3265 + }, + "vertices": { + "#": 3266 + } + }, + [ + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + }, + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3255 + }, + "min": { + "#": 3256 + } + }, + { + "x": 139.508, + "y": 416.0640000000001 + }, + { + "x": 100, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 396.31000000000006 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3264 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + }, + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3288 + }, + "bounds": { + "#": 3299 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3302 + }, + "constraintImpulse": { + "#": 3303 + }, + "density": 0.001, + "force": { + "#": 3304 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3305 + }, + "positionImpulse": { + "#": 3306 + }, + "positionPrev": { + "#": 3307 + }, + "render": { + "#": 3308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3310 + }, + "vertices": { + "#": 3311 + } + }, + [ + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + }, + { + "#": 3297 + }, + { + "#": 3298 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3300 + }, + "min": { + "#": 3301 + } + }, + { + "x": 199.016, + "y": 416.0640000000001 + }, + { + "x": 159.508, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 396.31000000000006 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3309 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + }, + { + "#": 3331 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3333 + }, + "bounds": { + "#": 3344 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3347 + }, + "constraintImpulse": { + "#": 3348 + }, + "density": 0.001, + "force": { + "#": 3349 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3350 + }, + "positionImpulse": { + "#": 3351 + }, + "positionPrev": { + "#": 3352 + }, + "render": { + "#": 3353 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3355 + }, + "vertices": { + "#": 3356 + } + }, + [ + { + "#": 3334 + }, + { + "#": 3335 + }, + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + }, + { + "#": 3343 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3345 + }, + "min": { + "#": 3346 + } + }, + { + "x": 258.524, + "y": 416.0640000000001 + }, + { + "x": 219.016, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 396.31000000000006 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3354 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + }, + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3378 + }, + "bounds": { + "#": 3389 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3392 + }, + "constraintImpulse": { + "#": 3393 + }, + "density": 0.001, + "force": { + "#": 3394 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3395 + }, + "positionImpulse": { + "#": 3396 + }, + "positionPrev": { + "#": 3397 + }, + "render": { + "#": 3398 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3400 + }, + "vertices": { + "#": 3401 + } + }, + [ + { + "#": 3379 + }, + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3390 + }, + "min": { + "#": 3391 + } + }, + { + "x": 318.03200000000004, + "y": 416.0640000000001 + }, + { + "x": 278.524, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 396.31000000000006 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3399 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + }, + { + "#": 3408 + }, + { + "#": 3409 + }, + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + }, + { + "#": 3417 + }, + { + "#": 3418 + }, + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3423 + }, + "bounds": { + "#": 3434 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3437 + }, + "constraintImpulse": { + "#": 3438 + }, + "density": 0.001, + "force": { + "#": 3439 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3440 + }, + "positionImpulse": { + "#": 3441 + }, + "positionPrev": { + "#": 3442 + }, + "render": { + "#": 3443 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3445 + }, + "vertices": { + "#": 3446 + } + }, + [ + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3435 + }, + "min": { + "#": 3436 + } + }, + { + "x": 377.5400000000001, + "y": 416.0640000000001 + }, + { + "x": 338.03200000000004, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 396.31000000000006 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3444 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + }, + { + "#": 3466 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3468 + }, + "bounds": { + "#": 3479 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3482 + }, + "constraintImpulse": { + "#": 3483 + }, + "density": 0.001, + "force": { + "#": 3484 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3485 + }, + "positionImpulse": { + "#": 3486 + }, + "positionPrev": { + "#": 3487 + }, + "render": { + "#": 3488 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3490 + }, + "vertices": { + "#": 3491 + } + }, + [ + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + }, + { + "#": 3474 + }, + { + "#": 3475 + }, + { + "#": 3476 + }, + { + "#": 3477 + }, + { + "#": 3478 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3480 + }, + "min": { + "#": 3481 + } + }, + { + "x": 437.0480000000001, + "y": 416.0640000000001 + }, + { + "x": 397.5400000000001, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 396.31000000000006 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3489 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + }, + { + "#": 3511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3513 + }, + "bounds": { + "#": 3524 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3527 + }, + "constraintImpulse": { + "#": 3528 + }, + "density": 0.001, + "force": { + "#": 3529 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3530 + }, + "positionImpulse": { + "#": 3531 + }, + "positionPrev": { + "#": 3532 + }, + "render": { + "#": 3533 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3535 + }, + "vertices": { + "#": 3536 + } + }, + [ + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + }, + { + "#": 3521 + }, + { + "#": 3522 + }, + { + "#": 3523 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3525 + }, + "min": { + "#": 3526 + } + }, + { + "x": 496.55600000000015, + "y": 416.0640000000001 + }, + { + "x": 457.0480000000001, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 396.31000000000006 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3534 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3558 + }, + "bounds": { + "#": 3569 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3572 + }, + "constraintImpulse": { + "#": 3573 + }, + "density": 0.001, + "force": { + "#": 3574 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3575 + }, + "positionImpulse": { + "#": 3576 + }, + "positionPrev": { + "#": 3577 + }, + "render": { + "#": 3578 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3580 + }, + "vertices": { + "#": 3581 + } + }, + [ + { + "#": 3559 + }, + { + "#": 3560 + }, + { + "#": 3561 + }, + { + "#": 3562 + }, + { + "#": 3563 + }, + { + "#": 3564 + }, + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3570 + }, + "min": { + "#": 3571 + } + }, + { + "x": 556.0640000000002, + "y": 416.0640000000001 + }, + { + "x": 516.5560000000002, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 396.31000000000006 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3579 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3582 + }, + { + "#": 3583 + }, + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + }, + { + "#": 3594 + }, + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3603 + }, + "bounds": { + "#": 3614 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3617 + }, + "constraintImpulse": { + "#": 3618 + }, + "density": 0.001, + "force": { + "#": 3619 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3620 + }, + "positionImpulse": { + "#": 3621 + }, + "positionPrev": { + "#": 3622 + }, + "render": { + "#": 3623 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3625 + }, + "vertices": { + "#": 3626 + } + }, + [ + { + "#": 3604 + }, + { + "#": 3605 + }, + { + "#": 3606 + }, + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3615 + }, + "min": { + "#": 3616 + } + }, + { + "x": 615.5720000000002, + "y": 416.0640000000001 + }, + { + "x": 576.0640000000002, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 396.31000000000006 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3624 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + }, + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3648 + }, + "bounds": { + "#": 3659 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3662 + }, + "constraintImpulse": { + "#": 3663 + }, + "density": 0.001, + "force": { + "#": 3664 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3665 + }, + "positionImpulse": { + "#": 3666 + }, + "positionPrev": { + "#": 3667 + }, + "render": { + "#": 3668 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3670 + }, + "vertices": { + "#": 3671 + } + }, + [ + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + }, + { + "#": 3657 + }, + { + "#": 3658 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3660 + }, + "min": { + "#": 3661 + } + }, + { + "x": 675.0800000000003, + "y": 416.0640000000001 + }, + { + "x": 635.5720000000002, + "y": 376.55600000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 396.31000000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 396.31000000000006 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3669 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + }, + { + "#": 3683 + }, + { + "#": 3684 + }, + { + "#": 3685 + }, + { + "#": 3686 + }, + { + "#": 3687 + }, + { + "#": 3688 + }, + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 414.13000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 410.45200000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 405.39000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 399.4390000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 393.18100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 376.55600000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 378.49000000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 382.16800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 387.2300000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 393.18100000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3693 + }, + "bounds": { + "#": 3704 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3707 + }, + "constraintImpulse": { + "#": 3708 + }, + "density": 0.001, + "force": { + "#": 3709 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3710 + }, + "positionImpulse": { + "#": 3711 + }, + "positionPrev": { + "#": 3712 + }, + "render": { + "#": 3713 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3715 + }, + "vertices": { + "#": 3716 + } + }, + [ + { + "#": 3694 + }, + { + "#": 3695 + }, + { + "#": 3696 + }, + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3705 + }, + "min": { + "#": 3706 + } + }, + { + "x": 139.508, + "y": 455.5720000000001 + }, + { + "x": 100, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 435.8180000000001 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3714 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3717 + }, + { + "#": 3718 + }, + { + "#": 3719 + }, + { + "#": 3720 + }, + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + }, + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3738 + }, + "bounds": { + "#": 3749 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3752 + }, + "constraintImpulse": { + "#": 3753 + }, + "density": 0.001, + "force": { + "#": 3754 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3755 + }, + "positionImpulse": { + "#": 3756 + }, + "positionPrev": { + "#": 3757 + }, + "render": { + "#": 3758 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3760 + }, + "vertices": { + "#": 3761 + } + }, + [ + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + }, + { + "#": 3748 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3750 + }, + "min": { + "#": 3751 + } + }, + { + "x": 199.016, + "y": 455.5720000000001 + }, + { + "x": 159.508, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 435.8180000000001 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3759 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + }, + { + "#": 3776 + }, + { + "#": 3777 + }, + { + "#": 3778 + }, + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3783 + }, + "bounds": { + "#": 3794 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3797 + }, + "constraintImpulse": { + "#": 3798 + }, + "density": 0.001, + "force": { + "#": 3799 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3800 + }, + "positionImpulse": { + "#": 3801 + }, + "positionPrev": { + "#": 3802 + }, + "render": { + "#": 3803 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3805 + }, + "vertices": { + "#": 3806 + } + }, + [ + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + }, + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + }, + { + "#": 3792 + }, + { + "#": 3793 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3795 + }, + "min": { + "#": 3796 + } + }, + { + "x": 258.524, + "y": 455.5720000000001 + }, + { + "x": 219.016, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 435.8180000000001 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3804 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3807 + }, + { + "#": 3808 + }, + { + "#": 3809 + }, + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3828 + }, + "bounds": { + "#": 3839 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3842 + }, + "constraintImpulse": { + "#": 3843 + }, + "density": 0.001, + "force": { + "#": 3844 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3845 + }, + "positionImpulse": { + "#": 3846 + }, + "positionPrev": { + "#": 3847 + }, + "render": { + "#": 3848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3850 + }, + "vertices": { + "#": 3851 + } + }, + [ + { + "#": 3829 + }, + { + "#": 3830 + }, + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + }, + { + "#": 3838 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3840 + }, + "min": { + "#": 3841 + } + }, + { + "x": 318.03200000000004, + "y": 455.5720000000001 + }, + { + "x": 278.524, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 435.8180000000001 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3849 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + }, + { + "#": 3858 + }, + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3873 + }, + "bounds": { + "#": 3884 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3887 + }, + "constraintImpulse": { + "#": 3888 + }, + "density": 0.001, + "force": { + "#": 3889 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3890 + }, + "positionImpulse": { + "#": 3891 + }, + "positionPrev": { + "#": 3892 + }, + "render": { + "#": 3893 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3895 + }, + "vertices": { + "#": 3896 + } + }, + [ + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + }, + { + "#": 3880 + }, + { + "#": 3881 + }, + { + "#": 3882 + }, + { + "#": 3883 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3885 + }, + "min": { + "#": 3886 + } + }, + { + "x": 377.5400000000001, + "y": 455.5720000000001 + }, + { + "x": 338.03200000000004, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 435.8180000000001 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3894 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + }, + { + "#": 3907 + }, + { + "#": 3908 + }, + { + "#": 3909 + }, + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + }, + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3918 + }, + "bounds": { + "#": 3929 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3932 + }, + "constraintImpulse": { + "#": 3933 + }, + "density": 0.001, + "force": { + "#": 3934 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3935 + }, + "positionImpulse": { + "#": 3936 + }, + "positionPrev": { + "#": 3937 + }, + "render": { + "#": 3938 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3940 + }, + "vertices": { + "#": 3941 + } + }, + [ + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + }, + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3930 + }, + "min": { + "#": 3931 + } + }, + { + "x": 437.0480000000001, + "y": 455.5720000000001 + }, + { + "x": 397.5400000000001, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 435.8180000000001 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3939 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + }, + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3963 + }, + "bounds": { + "#": 3974 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3977 + }, + "constraintImpulse": { + "#": 3978 + }, + "density": 0.001, + "force": { + "#": 3979 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3980 + }, + "positionImpulse": { + "#": 3981 + }, + "positionPrev": { + "#": 3982 + }, + "render": { + "#": 3983 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3985 + }, + "vertices": { + "#": 3986 + } + }, + [ + { + "#": 3964 + }, + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3975 + }, + "min": { + "#": 3976 + } + }, + { + "x": 496.55600000000015, + "y": 455.5720000000001 + }, + { + "x": 457.0480000000001, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 435.8180000000001 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3984 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + }, + { + "#": 3998 + }, + { + "#": 3999 + }, + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + }, + { + "#": 4006 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4008 + }, + "bounds": { + "#": 4019 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4022 + }, + "constraintImpulse": { + "#": 4023 + }, + "density": 0.001, + "force": { + "#": 4024 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4025 + }, + "positionImpulse": { + "#": 4026 + }, + "positionPrev": { + "#": 4027 + }, + "render": { + "#": 4028 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4030 + }, + "vertices": { + "#": 4031 + } + }, + [ + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4020 + }, + "min": { + "#": 4021 + } + }, + { + "x": 556.0640000000002, + "y": 455.5720000000001 + }, + { + "x": 516.5560000000002, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 435.8180000000001 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4029 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + }, + { + "#": 4048 + }, + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4053 + }, + "bounds": { + "#": 4064 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4067 + }, + "constraintImpulse": { + "#": 4068 + }, + "density": 0.001, + "force": { + "#": 4069 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4070 + }, + "positionImpulse": { + "#": 4071 + }, + "positionPrev": { + "#": 4072 + }, + "render": { + "#": 4073 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4075 + }, + "vertices": { + "#": 4076 + } + }, + [ + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4065 + }, + "min": { + "#": 4066 + } + }, + { + "x": 615.5720000000002, + "y": 455.5720000000001 + }, + { + "x": 576.0640000000002, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 435.8180000000001 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4074 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4077 + }, + { + "#": 4078 + }, + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4098 + }, + "bounds": { + "#": 4109 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4112 + }, + "constraintImpulse": { + "#": 4113 + }, + "density": 0.001, + "force": { + "#": 4114 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4115 + }, + "positionImpulse": { + "#": 4116 + }, + "positionPrev": { + "#": 4117 + }, + "render": { + "#": 4118 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4120 + }, + "vertices": { + "#": 4121 + } + }, + [ + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4110 + }, + "min": { + "#": 4111 + } + }, + { + "x": 675.0800000000003, + "y": 455.5720000000001 + }, + { + "x": 635.5720000000002, + "y": 416.0640000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 435.8180000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 435.8180000000001 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4119 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4122 + }, + { + "#": 4123 + }, + { + "#": 4124 + }, + { + "#": 4125 + }, + { + "#": 4126 + }, + { + "#": 4127 + }, + { + "#": 4128 + }, + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + }, + { + "#": 4139 + }, + { + "#": 4140 + }, + { + "#": 4141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 453.6380000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 449.9600000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 444.8980000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 438.9470000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 432.6890000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 416.0640000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 417.9980000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 421.6760000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 426.7380000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 432.6890000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4143 + }, + "bounds": { + "#": 4154 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4157 + }, + "constraintImpulse": { + "#": 4158 + }, + "density": 0.001, + "force": { + "#": 4159 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4160 + }, + "positionImpulse": { + "#": 4161 + }, + "positionPrev": { + "#": 4162 + }, + "render": { + "#": 4163 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4165 + }, + "vertices": { + "#": 4166 + } + }, + [ + { + "#": 4144 + }, + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4155 + }, + "min": { + "#": 4156 + } + }, + { + "x": 139.508, + "y": 495.08000000000015 + }, + { + "x": 100, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 475.32600000000014 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4164 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4167 + }, + { + "#": 4168 + }, + { + "#": 4169 + }, + { + "#": 4170 + }, + { + "#": 4171 + }, + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4188 + }, + "bounds": { + "#": 4199 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4202 + }, + "constraintImpulse": { + "#": 4203 + }, + "density": 0.001, + "force": { + "#": 4204 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4205 + }, + "positionImpulse": { + "#": 4206 + }, + "positionPrev": { + "#": 4207 + }, + "render": { + "#": 4208 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4210 + }, + "vertices": { + "#": 4211 + } + }, + [ + { + "#": 4189 + }, + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4200 + }, + "min": { + "#": 4201 + } + }, + { + "x": 199.016, + "y": 495.08000000000015 + }, + { + "x": 159.508, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 475.32600000000014 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4209 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4212 + }, + { + "#": 4213 + }, + { + "#": 4214 + }, + { + "#": 4215 + }, + { + "#": 4216 + }, + { + "#": 4217 + }, + { + "#": 4218 + }, + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + }, + { + "#": 4222 + }, + { + "#": 4223 + }, + { + "#": 4224 + }, + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4233 + }, + "bounds": { + "#": 4244 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4247 + }, + "constraintImpulse": { + "#": 4248 + }, + "density": 0.001, + "force": { + "#": 4249 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4250 + }, + "positionImpulse": { + "#": 4251 + }, + "positionPrev": { + "#": 4252 + }, + "render": { + "#": 4253 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4255 + }, + "vertices": { + "#": 4256 + } + }, + [ + { + "#": 4234 + }, + { + "#": 4235 + }, + { + "#": 4236 + }, + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4245 + }, + "min": { + "#": 4246 + } + }, + { + "x": 258.524, + "y": 495.08000000000015 + }, + { + "x": 219.016, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 475.32600000000014 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4254 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4257 + }, + { + "#": 4258 + }, + { + "#": 4259 + }, + { + "#": 4260 + }, + { + "#": 4261 + }, + { + "#": 4262 + }, + { + "#": 4263 + }, + { + "#": 4264 + }, + { + "#": 4265 + }, + { + "#": 4266 + }, + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + }, + { + "#": 4271 + }, + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + }, + { + "#": 4276 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4278 + }, + "bounds": { + "#": 4289 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4292 + }, + "constraintImpulse": { + "#": 4293 + }, + "density": 0.001, + "force": { + "#": 4294 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4295 + }, + "positionImpulse": { + "#": 4296 + }, + "positionPrev": { + "#": 4297 + }, + "render": { + "#": 4298 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4300 + }, + "vertices": { + "#": 4301 + } + }, + [ + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + }, + { + "#": 4282 + }, + { + "#": 4283 + }, + { + "#": 4284 + }, + { + "#": 4285 + }, + { + "#": 4286 + }, + { + "#": 4287 + }, + { + "#": 4288 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4290 + }, + "min": { + "#": 4291 + } + }, + { + "x": 318.03200000000004, + "y": 495.08000000000015 + }, + { + "x": 278.524, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 475.32600000000014 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4299 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4302 + }, + { + "#": 4303 + }, + { + "#": 4304 + }, + { + "#": 4305 + }, + { + "#": 4306 + }, + { + "#": 4307 + }, + { + "#": 4308 + }, + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + }, + { + "#": 4314 + }, + { + "#": 4315 + }, + { + "#": 4316 + }, + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + }, + { + "#": 4320 + }, + { + "#": 4321 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4323 + }, + "bounds": { + "#": 4334 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4337 + }, + "constraintImpulse": { + "#": 4338 + }, + "density": 0.001, + "force": { + "#": 4339 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4340 + }, + "positionImpulse": { + "#": 4341 + }, + "positionPrev": { + "#": 4342 + }, + "render": { + "#": 4343 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4345 + }, + "vertices": { + "#": 4346 + } + }, + [ + { + "#": 4324 + }, + { + "#": 4325 + }, + { + "#": 4326 + }, + { + "#": 4327 + }, + { + "#": 4328 + }, + { + "#": 4329 + }, + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4335 + }, + "min": { + "#": 4336 + } + }, + { + "x": 377.5400000000001, + "y": 495.08000000000015 + }, + { + "x": 338.03200000000004, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 475.32600000000014 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4344 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4347 + }, + { + "#": 4348 + }, + { + "#": 4349 + }, + { + "#": 4350 + }, + { + "#": 4351 + }, + { + "#": 4352 + }, + { + "#": 4353 + }, + { + "#": 4354 + }, + { + "#": 4355 + }, + { + "#": 4356 + }, + { + "#": 4357 + }, + { + "#": 4358 + }, + { + "#": 4359 + }, + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4368 + }, + "bounds": { + "#": 4379 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4382 + }, + "constraintImpulse": { + "#": 4383 + }, + "density": 0.001, + "force": { + "#": 4384 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4385 + }, + "positionImpulse": { + "#": 4386 + }, + "positionPrev": { + "#": 4387 + }, + "render": { + "#": 4388 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4390 + }, + "vertices": { + "#": 4391 + } + }, + [ + { + "#": 4369 + }, + { + "#": 4370 + }, + { + "#": 4371 + }, + { + "#": 4372 + }, + { + "#": 4373 + }, + { + "#": 4374 + }, + { + "#": 4375 + }, + { + "#": 4376 + }, + { + "#": 4377 + }, + { + "#": 4378 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4380 + }, + "min": { + "#": 4381 + } + }, + { + "x": 437.0480000000001, + "y": 495.08000000000015 + }, + { + "x": 397.5400000000001, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 475.32600000000014 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4389 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + }, + { + "#": 4397 + }, + { + "#": 4398 + }, + { + "#": 4399 + }, + { + "#": 4400 + }, + { + "#": 4401 + }, + { + "#": 4402 + }, + { + "#": 4403 + }, + { + "#": 4404 + }, + { + "#": 4405 + }, + { + "#": 4406 + }, + { + "#": 4407 + }, + { + "#": 4408 + }, + { + "#": 4409 + }, + { + "#": 4410 + }, + { + "#": 4411 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4413 + }, + "bounds": { + "#": 4424 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4427 + }, + "constraintImpulse": { + "#": 4428 + }, + "density": 0.001, + "force": { + "#": 4429 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4430 + }, + "positionImpulse": { + "#": 4431 + }, + "positionPrev": { + "#": 4432 + }, + "render": { + "#": 4433 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4435 + }, + "vertices": { + "#": 4436 + } + }, + [ + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + }, + { + "#": 4418 + }, + { + "#": 4419 + }, + { + "#": 4420 + }, + { + "#": 4421 + }, + { + "#": 4422 + }, + { + "#": 4423 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4425 + }, + "min": { + "#": 4426 + } + }, + { + "x": 496.55600000000015, + "y": 495.08000000000015 + }, + { + "x": 457.0480000000001, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 475.32600000000014 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4434 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4437 + }, + { + "#": 4438 + }, + { + "#": 4439 + }, + { + "#": 4440 + }, + { + "#": 4441 + }, + { + "#": 4442 + }, + { + "#": 4443 + }, + { + "#": 4444 + }, + { + "#": 4445 + }, + { + "#": 4446 + }, + { + "#": 4447 + }, + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + }, + { + "#": 4452 + }, + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4458 + }, + "bounds": { + "#": 4469 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4472 + }, + "constraintImpulse": { + "#": 4473 + }, + "density": 0.001, + "force": { + "#": 4474 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4475 + }, + "positionImpulse": { + "#": 4476 + }, + "positionPrev": { + "#": 4477 + }, + "render": { + "#": 4478 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4480 + }, + "vertices": { + "#": 4481 + } + }, + [ + { + "#": 4459 + }, + { + "#": 4460 + }, + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + }, + { + "#": 4464 + }, + { + "#": 4465 + }, + { + "#": 4466 + }, + { + "#": 4467 + }, + { + "#": 4468 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4470 + }, + "min": { + "#": 4471 + } + }, + { + "x": 556.0640000000002, + "y": 495.08000000000015 + }, + { + "x": 516.5560000000002, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 475.32600000000014 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4479 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4482 + }, + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + }, + { + "#": 4487 + }, + { + "#": 4488 + }, + { + "#": 4489 + }, + { + "#": 4490 + }, + { + "#": 4491 + }, + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + }, + { + "#": 4495 + }, + { + "#": 4496 + }, + { + "#": 4497 + }, + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + }, + { + "#": 4501 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4503 + }, + "bounds": { + "#": 4514 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4517 + }, + "constraintImpulse": { + "#": 4518 + }, + "density": 0.001, + "force": { + "#": 4519 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4520 + }, + "positionImpulse": { + "#": 4521 + }, + "positionPrev": { + "#": 4522 + }, + "render": { + "#": 4523 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4525 + }, + "vertices": { + "#": 4526 + } + }, + [ + { + "#": 4504 + }, + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + }, + { + "#": 4511 + }, + { + "#": 4512 + }, + { + "#": 4513 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4515 + }, + "min": { + "#": 4516 + } + }, + { + "x": 615.5720000000002, + "y": 495.08000000000015 + }, + { + "x": 576.0640000000002, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 475.32600000000014 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4524 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4527 + }, + { + "#": 4528 + }, + { + "#": 4529 + }, + { + "#": 4530 + }, + { + "#": 4531 + }, + { + "#": 4532 + }, + { + "#": 4533 + }, + { + "#": 4534 + }, + { + "#": 4535 + }, + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + }, + { + "#": 4545 + }, + { + "#": 4546 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 472.1970000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4548 + }, + "bounds": { + "#": 4559 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4562 + }, + "constraintImpulse": { + "#": 4563 + }, + "density": 0.001, + "force": { + "#": 4564 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4565 + }, + "positionImpulse": { + "#": 4566 + }, + "positionPrev": { + "#": 4567 + }, + "render": { + "#": 4568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4570 + }, + "vertices": { + "#": 4571 + } + }, + [ + { + "#": 4549 + }, + { + "#": 4550 + }, + { + "#": 4551 + }, + { + "#": 4552 + }, + { + "#": 4553 + }, + { + "#": 4554 + }, + { + "#": 4555 + }, + { + "#": 4556 + }, + { + "#": 4557 + }, + { + "#": 4558 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4560 + }, + "min": { + "#": 4561 + } + }, + { + "x": 675.0800000000003, + "y": 495.08000000000015 + }, + { + "x": 635.5720000000002, + "y": 455.5720000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 475.32600000000014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 475.32600000000014 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4569 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4572 + }, + { + "#": 4573 + }, + { + "#": 4574 + }, + { + "#": 4575 + }, + { + "#": 4576 + }, + { + "#": 4577 + }, + { + "#": 4578 + }, + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + }, + { + "#": 4584 + }, + { + "#": 4585 + }, + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + }, + { + "#": 4589 + }, + { + "#": 4590 + }, + { + "#": 4591 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 495.08000000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 493.14600000000013 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 489.46800000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 484.4060000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 478.45500000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 472.1970000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 455.5720000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 457.50600000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 461.18400000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 466.24600000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 472.1970000000001 + }, + [], + [], + [ + { + "#": 4595 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 4596 + }, + "pointB": "", + "render": { + "#": 4597 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 4599 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/circleStack/circleStack-10.json b/tests/browser/refs/circleStack/circleStack-10.json new file mode 100644 index 00000000..6cd83e8e --- /dev/null +++ b/tests/browser/refs/circleStack/circleStack-10.json @@ -0,0 +1,41942 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 4698 + }, + "events": { + "#": 4702 + }, + "gravity": { + "#": 4704 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 4696 + }, + "constraints": { + "#": 4697 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 142 + }, + { + "#": 188 + }, + { + "#": 234 + }, + { + "#": 280 + }, + { + "#": 326 + }, + { + "#": 372 + }, + { + "#": 418 + }, + { + "#": 464 + }, + { + "#": 510 + }, + { + "#": 556 + }, + { + "#": 602 + }, + { + "#": 648 + }, + { + "#": 694 + }, + { + "#": 740 + }, + { + "#": 786 + }, + { + "#": 832 + }, + { + "#": 878 + }, + { + "#": 924 + }, + { + "#": 970 + }, + { + "#": 1016 + }, + { + "#": 1062 + }, + { + "#": 1108 + }, + { + "#": 1154 + }, + { + "#": 1200 + }, + { + "#": 1246 + }, + { + "#": 1292 + }, + { + "#": 1338 + }, + { + "#": 1384 + }, + { + "#": 1430 + }, + { + "#": 1476 + }, + { + "#": 1522 + }, + { + "#": 1568 + }, + { + "#": 1614 + }, + { + "#": 1660 + }, + { + "#": 1706 + }, + { + "#": 1752 + }, + { + "#": 1798 + }, + { + "#": 1844 + }, + { + "#": 1890 + }, + { + "#": 1936 + }, + { + "#": 1982 + }, + { + "#": 2028 + }, + { + "#": 2074 + }, + { + "#": 2120 + }, + { + "#": 2166 + }, + { + "#": 2212 + }, + { + "#": 2258 + }, + { + "#": 2304 + }, + { + "#": 2350 + }, + { + "#": 2396 + }, + { + "#": 2442 + }, + { + "#": 2488 + }, + { + "#": 2534 + }, + { + "#": 2580 + }, + { + "#": 2626 + }, + { + "#": 2672 + }, + { + "#": 2718 + }, + { + "#": 2764 + }, + { + "#": 2810 + }, + { + "#": 2856 + }, + { + "#": 2902 + }, + { + "#": 2948 + }, + { + "#": 2994 + }, + { + "#": 3040 + }, + { + "#": 3086 + }, + { + "#": 3132 + }, + { + "#": 3178 + }, + { + "#": 3224 + }, + { + "#": 3270 + }, + { + "#": 3316 + }, + { + "#": 3362 + }, + { + "#": 3408 + }, + { + "#": 3454 + }, + { + "#": 3500 + }, + { + "#": 3546 + }, + { + "#": 3592 + }, + { + "#": 3638 + }, + { + "#": 3684 + }, + { + "#": 3730 + }, + { + "#": 3776 + }, + { + "#": 3822 + }, + { + "#": 3868 + }, + { + "#": 3914 + }, + { + "#": 3960 + }, + { + "#": 4006 + }, + { + "#": 4052 + }, + { + "#": 4098 + }, + { + "#": 4144 + }, + { + "#": 4190 + }, + { + "#": 4236 + }, + { + "#": 4282 + }, + { + "#": 4328 + }, + { + "#": 4374 + }, + { + "#": 4420 + }, + { + "#": 4466 + }, + { + "#": 4512 + }, + { + "#": 4558 + }, + { + "#": 4604 + }, + { + "#": 4650 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 97 + }, + "bounds": { + "#": 108 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 111 + }, + "constraintImpulse": { + "#": 112 + }, + "density": 0.001, + "force": { + "#": 113 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 114 + }, + "positionImpulse": { + "#": 115 + }, + "positionPrev": { + "#": 116 + }, + "region": { + "#": 117 + }, + "render": { + "#": 118 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 120 + }, + "vertices": { + "#": 121 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 109 + }, + "min": { + "#": 110 + } + }, + { + "x": 139.508, + "y": 160.24873133057872 + }, + { + "x": 100, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 119.754, + "y": 134.68018990050743 + }, + { + "endCol": 2, + "endRow": 3, + "id": "2,2,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 119 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 143 + }, + "bounds": { + "#": 154 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 157 + }, + "constraintImpulse": { + "#": 158 + }, + "density": 0.001, + "force": { + "#": 159 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 160 + }, + "positionImpulse": { + "#": 161 + }, + "positionPrev": { + "#": 162 + }, + "region": { + "#": 163 + }, + "render": { + "#": 164 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 166 + }, + "vertices": { + "#": 167 + } + }, + [ + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 155 + }, + "min": { + "#": 156 + } + }, + { + "x": 199.016, + "y": 160.24873133057872 + }, + { + "x": 159.508, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 179.262, + "y": 134.68018990050743 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 165 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 189 + }, + "bounds": { + "#": 200 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 203 + }, + "constraintImpulse": { + "#": 204 + }, + "density": 0.001, + "force": { + "#": 205 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 206 + }, + "positionImpulse": { + "#": 207 + }, + "positionPrev": { + "#": 208 + }, + "region": { + "#": 209 + }, + "render": { + "#": 210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 212 + }, + "vertices": { + "#": 213 + } + }, + [ + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 201 + }, + "min": { + "#": 202 + } + }, + { + "x": 258.524, + "y": 160.24873133057872 + }, + { + "x": 219.016, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 238.76999999999998, + "y": 134.68018990050743 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 211 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 235 + }, + "bounds": { + "#": 246 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 249 + }, + "constraintImpulse": { + "#": 250 + }, + "density": 0.001, + "force": { + "#": 251 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 252 + }, + "positionImpulse": { + "#": 253 + }, + "positionPrev": { + "#": 254 + }, + "region": { + "#": 255 + }, + "render": { + "#": 256 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 258 + }, + "vertices": { + "#": 259 + } + }, + [ + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 247 + }, + "min": { + "#": 248 + } + }, + { + "x": 318.03200000000004, + "y": 160.24873133057872 + }, + { + "x": 278.524, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 298.278, + "y": 134.68018990050743 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 257 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 281 + }, + "bounds": { + "#": 292 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 295 + }, + "constraintImpulse": { + "#": 296 + }, + "density": 0.001, + "force": { + "#": 297 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 298 + }, + "positionImpulse": { + "#": 299 + }, + "positionPrev": { + "#": 300 + }, + "region": { + "#": 301 + }, + "render": { + "#": 302 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 304 + }, + "vertices": { + "#": 305 + } + }, + [ + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 293 + }, + "min": { + "#": 294 + } + }, + { + "x": 377.5400000000001, + "y": 160.24873133057872 + }, + { + "x": 338.03200000000004, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 357.78600000000006, + "y": 134.68018990050743 + }, + { + "endCol": 7, + "endRow": 3, + "id": "7,7,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 303 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 327 + }, + "bounds": { + "#": 338 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "density": 0.001, + "force": { + "#": 343 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 344 + }, + "positionImpulse": { + "#": 345 + }, + "positionPrev": { + "#": 346 + }, + "region": { + "#": 347 + }, + "render": { + "#": 348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 350 + }, + "vertices": { + "#": 351 + } + }, + [ + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 339 + }, + "min": { + "#": 340 + } + }, + { + "x": 437.0480000000001, + "y": 160.24873133057872 + }, + { + "x": 397.5400000000001, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 417.2940000000001, + "y": 134.68018990050743 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 349 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 373 + }, + "bounds": { + "#": 384 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 387 + }, + "constraintImpulse": { + "#": 388 + }, + "density": 0.001, + "force": { + "#": 389 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 390 + }, + "positionImpulse": { + "#": 391 + }, + "positionPrev": { + "#": 392 + }, + "region": { + "#": 393 + }, + "render": { + "#": 394 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 396 + }, + "vertices": { + "#": 397 + } + }, + [ + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 385 + }, + "min": { + "#": 386 + } + }, + { + "x": 496.55600000000015, + "y": 160.24873133057872 + }, + { + "x": 457.0480000000001, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 476.80200000000013, + "y": 134.68018990050743 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 395 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 419 + }, + "bounds": { + "#": 430 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "density": 0.001, + "force": { + "#": 435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 436 + }, + "positionImpulse": { + "#": 437 + }, + "positionPrev": { + "#": 438 + }, + "region": { + "#": 439 + }, + "render": { + "#": 440 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 442 + }, + "vertices": { + "#": 443 + } + }, + [ + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 431 + }, + "min": { + "#": 432 + } + }, + { + "x": 556.0640000000002, + "y": 160.24873133057872 + }, + { + "x": 516.5560000000002, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 536.3100000000002, + "y": 134.68018990050743 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 441 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 465 + }, + "bounds": { + "#": 476 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 479 + }, + "constraintImpulse": { + "#": 480 + }, + "density": 0.001, + "force": { + "#": 481 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 482 + }, + "positionImpulse": { + "#": 483 + }, + "positionPrev": { + "#": 484 + }, + "region": { + "#": 485 + }, + "render": { + "#": 486 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 488 + }, + "vertices": { + "#": 489 + } + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 477 + }, + "min": { + "#": 478 + } + }, + { + "x": 615.5720000000002, + "y": 160.24873133057872 + }, + { + "x": 576.0640000000002, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 595.8180000000002, + "y": 134.68018990050743 + }, + { + "endCol": 12, + "endRow": 3, + "id": "12,12,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 487 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 511 + }, + "bounds": { + "#": 522 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 525 + }, + "constraintImpulse": { + "#": 526 + }, + "density": 0.001, + "force": { + "#": 527 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 528 + }, + "positionImpulse": { + "#": 529 + }, + "positionPrev": { + "#": 530 + }, + "region": { + "#": 531 + }, + "render": { + "#": 532 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 534 + }, + "vertices": { + "#": 535 + } + }, + [ + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 523 + }, + "min": { + "#": 524 + } + }, + { + "x": 675.0800000000003, + "y": 160.24873133057872 + }, + { + "x": 635.5720000000002, + "y": 117.83346061554306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 137.58746061554308 + }, + { + "x": 0, + "y": 0.0028023203492638237 + }, + { + "x": 655.3260000000002, + "y": 134.68018990050743 + }, + { + "endCol": 14, + "endRow": 3, + "id": "13,14,2,3", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 533 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 157.34146061554307 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 155.40746061554307 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 151.72946061554308 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 146.66746061554306 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 140.7164606155431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 134.4584606155431 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 117.83346061554306 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 119.76746061554307 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 123.44546061554307 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 128.50746061554307 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 134.4584606155431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 557 + }, + "bounds": { + "#": 568 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 571 + }, + "constraintImpulse": { + "#": 572 + }, + "density": 0.001, + "force": { + "#": 573 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 574 + }, + "positionImpulse": { + "#": 575 + }, + "positionPrev": { + "#": 576 + }, + "region": { + "#": 577 + }, + "render": { + "#": 578 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 580 + }, + "vertices": { + "#": 581 + } + }, + [ + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 569 + }, + "min": { + "#": 570 + } + }, + { + "x": 139.508, + "y": 199.70673131133213 + }, + { + "x": 100, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 119.754, + "y": 174.1381898812608 + }, + { + "endCol": 2, + "endRow": 4, + "id": "2,2,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 579 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 603 + }, + "bounds": { + "#": 614 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 617 + }, + "constraintImpulse": { + "#": 618 + }, + "density": 0.001, + "force": { + "#": 619 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 620 + }, + "positionImpulse": { + "#": 621 + }, + "positionPrev": { + "#": 622 + }, + "region": { + "#": 623 + }, + "render": { + "#": 624 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 626 + }, + "vertices": { + "#": 627 + } + }, + [ + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 615 + }, + "min": { + "#": 616 + } + }, + { + "x": 199.016, + "y": 199.70673131133213 + }, + { + "x": 159.508, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 179.262, + "y": 174.1381898812608 + }, + { + "endCol": 4, + "endRow": 4, + "id": "3,4,3,4", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 625 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 649 + }, + "bounds": { + "#": 660 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 663 + }, + "constraintImpulse": { + "#": 664 + }, + "density": 0.001, + "force": { + "#": 665 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 666 + }, + "positionImpulse": { + "#": 667 + }, + "positionPrev": { + "#": 668 + }, + "region": { + "#": 669 + }, + "render": { + "#": 670 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 672 + }, + "vertices": { + "#": 673 + } + }, + [ + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 661 + }, + "min": { + "#": 662 + } + }, + { + "x": 258.524, + "y": 199.70673131133213 + }, + { + "x": 219.016, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 238.76999999999998, + "y": 174.1381898812608 + }, + { + "endCol": 5, + "endRow": 4, + "id": "4,5,3,4", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 671 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 695 + }, + "bounds": { + "#": 706 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 709 + }, + "constraintImpulse": { + "#": 710 + }, + "density": 0.001, + "force": { + "#": 711 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 712 + }, + "positionImpulse": { + "#": 713 + }, + "positionPrev": { + "#": 714 + }, + "region": { + "#": 715 + }, + "render": { + "#": 716 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 718 + }, + "vertices": { + "#": 719 + } + }, + [ + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 707 + }, + "min": { + "#": 708 + } + }, + { + "x": 318.03200000000004, + "y": 199.70673131133213 + }, + { + "x": 278.524, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 298.278, + "y": 174.1381898812608 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 717 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 741 + }, + "bounds": { + "#": 752 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 755 + }, + "constraintImpulse": { + "#": 756 + }, + "density": 0.001, + "force": { + "#": 757 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 758 + }, + "positionImpulse": { + "#": 759 + }, + "positionPrev": { + "#": 760 + }, + "region": { + "#": 761 + }, + "render": { + "#": 762 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 764 + }, + "vertices": { + "#": 765 + } + }, + [ + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 753 + }, + "min": { + "#": 754 + } + }, + { + "x": 377.5400000000001, + "y": 199.70673131133213 + }, + { + "x": 338.03200000000004, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 357.78600000000006, + "y": 174.1381898812608 + }, + { + "endCol": 7, + "endRow": 4, + "id": "7,7,3,4", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 763 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 787 + }, + "bounds": { + "#": 798 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 801 + }, + "constraintImpulse": { + "#": 802 + }, + "density": 0.001, + "force": { + "#": 803 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 804 + }, + "positionImpulse": { + "#": 805 + }, + "positionPrev": { + "#": 806 + }, + "region": { + "#": 807 + }, + "render": { + "#": 808 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 810 + }, + "vertices": { + "#": 811 + } + }, + [ + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 799 + }, + "min": { + "#": 800 + } + }, + { + "x": 437.0480000000001, + "y": 199.70673131133213 + }, + { + "x": 397.5400000000001, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 417.2940000000001, + "y": 174.1381898812608 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,3,4", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 809 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 833 + }, + "bounds": { + "#": 844 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 847 + }, + "constraintImpulse": { + "#": 848 + }, + "density": 0.001, + "force": { + "#": 849 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 850 + }, + "positionImpulse": { + "#": 851 + }, + "positionPrev": { + "#": 852 + }, + "region": { + "#": 853 + }, + "render": { + "#": 854 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 856 + }, + "vertices": { + "#": 857 + } + }, + [ + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 845 + }, + "min": { + "#": 846 + } + }, + { + "x": 496.55600000000015, + "y": 199.70673131133213 + }, + { + "x": 457.0480000000001, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 476.80200000000013, + "y": 174.1381898812608 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,3,4", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 855 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 879 + }, + "bounds": { + "#": 890 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 893 + }, + "constraintImpulse": { + "#": 894 + }, + "density": 0.001, + "force": { + "#": 895 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 896 + }, + "positionImpulse": { + "#": 897 + }, + "positionPrev": { + "#": 898 + }, + "region": { + "#": 899 + }, + "render": { + "#": 900 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 902 + }, + "vertices": { + "#": 903 + } + }, + [ + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 891 + }, + "min": { + "#": 892 + } + }, + { + "x": 556.0640000000002, + "y": 199.70673131133213 + }, + { + "x": 516.5560000000002, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 536.3100000000002, + "y": 174.1381898812608 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,3,4", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 901 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 925 + }, + "bounds": { + "#": 936 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "region": { + "#": 945 + }, + "render": { + "#": 946 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 948 + }, + "vertices": { + "#": 949 + } + }, + [ + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 615.5720000000002, + "y": 199.70673131133213 + }, + { + "x": 576.0640000000002, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 595.8180000000002, + "y": 174.1381898812608 + }, + { + "endCol": 12, + "endRow": 4, + "id": "12,12,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 947 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 971 + }, + "bounds": { + "#": 982 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 985 + }, + "constraintImpulse": { + "#": 986 + }, + "density": 0.001, + "force": { + "#": 987 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 988 + }, + "positionImpulse": { + "#": 989 + }, + "positionPrev": { + "#": 990 + }, + "region": { + "#": 991 + }, + "render": { + "#": 992 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 994 + }, + "vertices": { + "#": 995 + } + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 983 + }, + "min": { + "#": 984 + } + }, + { + "x": 675.0800000000003, + "y": 199.70673131133213 + }, + { + "x": 635.5720000000002, + "y": 157.29146059629645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 177.04546059629646 + }, + { + "x": 0, + "y": 0.0028018759628781393 + }, + { + "x": 655.3260000000002, + "y": 174.1381898812608 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,3,4", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 993 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 196.79946059629646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 194.86546059629646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 191.18746059629646 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 186.12546059629648 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 180.17446059629646 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 173.91646059629647 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 157.29146059629645 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 159.22546059629647 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 162.90346059629647 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 167.96546059629645 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 173.91646059629647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1017 + }, + "bounds": { + "#": 1028 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1031 + }, + "constraintImpulse": { + "#": 1032 + }, + "density": 0.001, + "force": { + "#": 1033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1034 + }, + "positionImpulse": { + "#": 1035 + }, + "positionPrev": { + "#": 1036 + }, + "region": { + "#": 1037 + }, + "render": { + "#": 1038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1040 + }, + "vertices": { + "#": 1041 + } + }, + [ + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1029 + }, + "min": { + "#": 1030 + } + }, + { + "x": 139.508, + "y": 239.1647312920855 + }, + { + "x": 100, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 119.754, + "y": 213.59618986201414 + }, + { + "endCol": 2, + "endRow": 4, + "id": "2,2,4,4", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1039 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1063 + }, + "bounds": { + "#": 1074 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1077 + }, + "constraintImpulse": { + "#": 1078 + }, + "density": 0.001, + "force": { + "#": 1079 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1080 + }, + "positionImpulse": { + "#": 1081 + }, + "positionPrev": { + "#": 1082 + }, + "region": { + "#": 1083 + }, + "render": { + "#": 1084 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1086 + }, + "vertices": { + "#": 1087 + } + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1075 + }, + "min": { + "#": 1076 + } + }, + { + "x": 199.016, + "y": 239.1647312920855 + }, + { + "x": 159.508, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 179.262, + "y": 213.59618986201414 + }, + { + "endCol": 4, + "endRow": 4, + "id": "3,4,4,4", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1085 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1109 + }, + "bounds": { + "#": 1120 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1123 + }, + "constraintImpulse": { + "#": 1124 + }, + "density": 0.001, + "force": { + "#": 1125 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1126 + }, + "positionImpulse": { + "#": 1127 + }, + "positionPrev": { + "#": 1128 + }, + "region": { + "#": 1129 + }, + "render": { + "#": 1130 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1132 + }, + "vertices": { + "#": 1133 + } + }, + [ + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1121 + }, + "min": { + "#": 1122 + } + }, + { + "x": 258.524, + "y": 239.1647312920855 + }, + { + "x": 219.016, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 238.76999999999998, + "y": 213.59618986201414 + }, + { + "endCol": 5, + "endRow": 4, + "id": "4,5,4,4", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1131 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1155 + }, + "bounds": { + "#": 1166 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1169 + }, + "constraintImpulse": { + "#": 1170 + }, + "density": 0.001, + "force": { + "#": 1171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1172 + }, + "positionImpulse": { + "#": 1173 + }, + "positionPrev": { + "#": 1174 + }, + "region": { + "#": 1175 + }, + "render": { + "#": 1176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1178 + }, + "vertices": { + "#": 1179 + } + }, + [ + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1167 + }, + "min": { + "#": 1168 + } + }, + { + "x": 318.03200000000004, + "y": 239.1647312920855 + }, + { + "x": 278.524, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 298.278, + "y": 213.59618986201414 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1177 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1201 + }, + "bounds": { + "#": 1212 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1215 + }, + "constraintImpulse": { + "#": 1216 + }, + "density": 0.001, + "force": { + "#": 1217 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1218 + }, + "positionImpulse": { + "#": 1219 + }, + "positionPrev": { + "#": 1220 + }, + "region": { + "#": 1221 + }, + "render": { + "#": 1222 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1224 + }, + "vertices": { + "#": 1225 + } + }, + [ + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1213 + }, + "min": { + "#": 1214 + } + }, + { + "x": 377.5400000000001, + "y": 239.1647312920855 + }, + { + "x": 338.03200000000004, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 357.78600000000006, + "y": 213.59618986201414 + }, + { + "endCol": 7, + "endRow": 4, + "id": "7,7,4,4", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1223 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1247 + }, + "bounds": { + "#": 1258 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1261 + }, + "constraintImpulse": { + "#": 1262 + }, + "density": 0.001, + "force": { + "#": 1263 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1264 + }, + "positionImpulse": { + "#": 1265 + }, + "positionPrev": { + "#": 1266 + }, + "region": { + "#": 1267 + }, + "render": { + "#": 1268 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1270 + }, + "vertices": { + "#": 1271 + } + }, + [ + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1259 + }, + "min": { + "#": 1260 + } + }, + { + "x": 437.0480000000001, + "y": 239.1647312920855 + }, + { + "x": 397.5400000000001, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 417.2940000000001, + "y": 213.59618986201414 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,4,4", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1269 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1293 + }, + "bounds": { + "#": 1304 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1307 + }, + "constraintImpulse": { + "#": 1308 + }, + "density": 0.001, + "force": { + "#": 1309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1310 + }, + "positionImpulse": { + "#": 1311 + }, + "positionPrev": { + "#": 1312 + }, + "region": { + "#": 1313 + }, + "render": { + "#": 1314 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1316 + }, + "vertices": { + "#": 1317 + } + }, + [ + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1305 + }, + "min": { + "#": 1306 + } + }, + { + "x": 496.55600000000015, + "y": 239.1647312920855 + }, + { + "x": 457.0480000000001, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 476.80200000000013, + "y": 213.59618986201414 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,4,4", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1315 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1339 + }, + "bounds": { + "#": 1350 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1353 + }, + "constraintImpulse": { + "#": 1354 + }, + "density": 0.001, + "force": { + "#": 1355 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1356 + }, + "positionImpulse": { + "#": 1357 + }, + "positionPrev": { + "#": 1358 + }, + "region": { + "#": 1359 + }, + "render": { + "#": 1360 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1362 + }, + "vertices": { + "#": 1363 + } + }, + [ + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1351 + }, + "min": { + "#": 1352 + } + }, + { + "x": 556.0640000000002, + "y": 239.1647312920855 + }, + { + "x": 516.5560000000002, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 536.3100000000002, + "y": 213.59618986201414 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1361 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1385 + }, + "bounds": { + "#": 1396 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1399 + }, + "constraintImpulse": { + "#": 1400 + }, + "density": 0.001, + "force": { + "#": 1401 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1402 + }, + "positionImpulse": { + "#": 1403 + }, + "positionPrev": { + "#": 1404 + }, + "region": { + "#": 1405 + }, + "render": { + "#": 1406 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1408 + }, + "vertices": { + "#": 1409 + } + }, + [ + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1397 + }, + "min": { + "#": 1398 + } + }, + { + "x": 615.5720000000002, + "y": 239.1647312920855 + }, + { + "x": 576.0640000000002, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 595.8180000000002, + "y": 213.59618986201414 + }, + { + "endCol": 12, + "endRow": 4, + "id": "12,12,4,4", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1407 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1431 + }, + "bounds": { + "#": 1442 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "density": 0.001, + "force": { + "#": 1447 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1448 + }, + "positionImpulse": { + "#": 1449 + }, + "positionPrev": { + "#": 1450 + }, + "region": { + "#": 1451 + }, + "render": { + "#": 1452 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1454 + }, + "vertices": { + "#": 1455 + } + }, + [ + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1443 + }, + "min": { + "#": 1444 + } + }, + { + "x": 675.0800000000003, + "y": 239.1647312920855 + }, + { + "x": 635.5720000000002, + "y": 196.74946057704983 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 216.50346057704982 + }, + { + "x": 0, + "y": 0.002801431576527799 + }, + { + "x": 655.3260000000002, + "y": 213.59618986201414 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,4,4", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1453 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 236.2574605770498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 234.32346057704981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 230.64546057704982 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 225.58346057704983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 219.6324605770498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 213.37446057704983 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 196.74946057704983 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 198.68346057704983 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 202.36146057704983 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 207.4234605770498 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 213.37446057704983 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1477 + }, + "bounds": { + "#": 1488 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1491 + }, + "constraintImpulse": { + "#": 1492 + }, + "density": 0.001, + "force": { + "#": 1493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1494 + }, + "positionImpulse": { + "#": 1495 + }, + "positionPrev": { + "#": 1496 + }, + "region": { + "#": 1497 + }, + "render": { + "#": 1498 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1500 + }, + "vertices": { + "#": 1501 + } + }, + [ + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1489 + }, + "min": { + "#": 1490 + } + }, + { + "x": 139.508, + "y": 275.76775476702585 + }, + { + "x": 100, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 253.1064840519903 + }, + { + "endCol": 2, + "endRow": 5, + "id": "2,2,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1499 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1523 + }, + "bounds": { + "#": 1534 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1537 + }, + "constraintImpulse": { + "#": 1538 + }, + "density": 0.001, + "force": { + "#": 1539 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1540 + }, + "positionImpulse": { + "#": 1541 + }, + "positionPrev": { + "#": 1542 + }, + "region": { + "#": 1543 + }, + "render": { + "#": 1544 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1546 + }, + "vertices": { + "#": 1547 + } + }, + [ + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1535 + }, + "min": { + "#": 1536 + } + }, + { + "x": 199.016, + "y": 275.76775476702585 + }, + { + "x": 159.508, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 253.1064840519903 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1545 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1569 + }, + "bounds": { + "#": 1580 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1583 + }, + "constraintImpulse": { + "#": 1584 + }, + "density": 0.001, + "force": { + "#": 1585 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1586 + }, + "positionImpulse": { + "#": 1587 + }, + "positionPrev": { + "#": 1588 + }, + "region": { + "#": 1589 + }, + "render": { + "#": 1590 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1592 + }, + "vertices": { + "#": 1593 + } + }, + [ + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1581 + }, + "min": { + "#": 1582 + } + }, + { + "x": 258.524, + "y": 275.76775476702585 + }, + { + "x": 219.016, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 253.1064840519903 + }, + { + "endCol": 5, + "endRow": 5, + "id": "4,5,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1591 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1615 + }, + "bounds": { + "#": 1626 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1629 + }, + "constraintImpulse": { + "#": 1630 + }, + "density": 0.001, + "force": { + "#": 1631 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1632 + }, + "positionImpulse": { + "#": 1633 + }, + "positionPrev": { + "#": 1634 + }, + "region": { + "#": 1635 + }, + "render": { + "#": 1636 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1638 + }, + "vertices": { + "#": 1639 + } + }, + [ + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1627 + }, + "min": { + "#": 1628 + } + }, + { + "x": 318.03200000000004, + "y": 275.76775476702585 + }, + { + "x": 278.524, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 253.1064840519903 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1637 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1661 + }, + "bounds": { + "#": 1672 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1675 + }, + "constraintImpulse": { + "#": 1676 + }, + "density": 0.001, + "force": { + "#": 1677 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1678 + }, + "positionImpulse": { + "#": 1679 + }, + "positionPrev": { + "#": 1680 + }, + "region": { + "#": 1681 + }, + "render": { + "#": 1682 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1684 + }, + "vertices": { + "#": 1685 + } + }, + [ + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1673 + }, + "min": { + "#": 1674 + } + }, + { + "x": 377.5400000000001, + "y": 275.76775476702585 + }, + { + "x": 338.03200000000004, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 253.1064840519903 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1683 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1707 + }, + "bounds": { + "#": 1718 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1721 + }, + "constraintImpulse": { + "#": 1722 + }, + "density": 0.001, + "force": { + "#": 1723 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1724 + }, + "positionImpulse": { + "#": 1725 + }, + "positionPrev": { + "#": 1726 + }, + "region": { + "#": 1727 + }, + "render": { + "#": 1728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1730 + }, + "vertices": { + "#": 1731 + } + }, + [ + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1719 + }, + "min": { + "#": 1720 + } + }, + { + "x": 437.0480000000001, + "y": 275.76775476702585 + }, + { + "x": 397.5400000000001, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 253.1064840519903 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1729 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1753 + }, + "bounds": { + "#": 1764 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1767 + }, + "constraintImpulse": { + "#": 1768 + }, + "density": 0.001, + "force": { + "#": 1769 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1770 + }, + "positionImpulse": { + "#": 1771 + }, + "positionPrev": { + "#": 1772 + }, + "region": { + "#": 1773 + }, + "render": { + "#": 1774 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1776 + }, + "vertices": { + "#": 1777 + } + }, + [ + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1765 + }, + "min": { + "#": 1766 + } + }, + { + "x": 496.55600000000015, + "y": 275.76775476702585 + }, + { + "x": 457.0480000000001, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 253.1064840519903 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1775 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1799 + }, + "bounds": { + "#": 1810 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1813 + }, + "constraintImpulse": { + "#": 1814 + }, + "density": 0.001, + "force": { + "#": 1815 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1816 + }, + "positionImpulse": { + "#": 1817 + }, + "positionPrev": { + "#": 1818 + }, + "region": { + "#": 1819 + }, + "render": { + "#": 1820 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1822 + }, + "vertices": { + "#": 1823 + } + }, + [ + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1811 + }, + "min": { + "#": 1812 + } + }, + { + "x": 556.0640000000002, + "y": 275.76775476702585 + }, + { + "x": 516.5560000000002, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 253.1064840519903 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1821 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1845 + }, + "bounds": { + "#": 1856 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1859 + }, + "constraintImpulse": { + "#": 1860 + }, + "density": 0.001, + "force": { + "#": 1861 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1862 + }, + "positionImpulse": { + "#": 1863 + }, + "positionPrev": { + "#": 1864 + }, + "region": { + "#": 1865 + }, + "render": { + "#": 1866 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1868 + }, + "vertices": { + "#": 1869 + } + }, + [ + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1857 + }, + "min": { + "#": 1858 + } + }, + { + "x": 615.5720000000002, + "y": 275.76775476702585 + }, + { + "x": 576.0640000000002, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 253.1064840519903 + }, + { + "endCol": 12, + "endRow": 5, + "id": "12,12,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1867 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1891 + }, + "bounds": { + "#": 1902 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1905 + }, + "constraintImpulse": { + "#": 1906 + }, + "density": 0.001, + "force": { + "#": 1907 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1908 + }, + "positionImpulse": { + "#": 1909 + }, + "positionPrev": { + "#": 1910 + }, + "region": { + "#": 1911 + }, + "render": { + "#": 1912 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1914 + }, + "vertices": { + "#": 1915 + } + }, + [ + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1903 + }, + "min": { + "#": 1904 + } + }, + { + "x": 675.0800000000003, + "y": 275.76775476702585 + }, + { + "x": 635.5720000000002, + "y": 236.25975476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 256.013754767026 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 253.1064840519903 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,4,5", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1913 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 275.76775476702585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 273.8337547670258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 270.1557547670259 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 265.0937547670259 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 259.14275476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 252.88475476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 236.25975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 238.19375476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 241.87175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 246.93375476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 252.88475476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1937 + }, + "bounds": { + "#": 1948 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1951 + }, + "constraintImpulse": { + "#": 1952 + }, + "density": 0.001, + "force": { + "#": 1953 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1954 + }, + "positionImpulse": { + "#": 1955 + }, + "positionPrev": { + "#": 1956 + }, + "region": { + "#": 1957 + }, + "render": { + "#": 1958 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1960 + }, + "vertices": { + "#": 1961 + } + }, + [ + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1949 + }, + "min": { + "#": 1950 + } + }, + { + "x": 139.508, + "y": 318.2807313305775 + }, + { + "x": 100, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 119.754, + "y": 292.71218990050636 + }, + { + "endCol": 2, + "endRow": 6, + "id": "2,2,5,6", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1959 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1983 + }, + "bounds": { + "#": 1994 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1997 + }, + "constraintImpulse": { + "#": 1998 + }, + "density": 0.001, + "force": { + "#": 1999 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2000 + }, + "positionImpulse": { + "#": 2001 + }, + "positionPrev": { + "#": 2002 + }, + "region": { + "#": 2003 + }, + "render": { + "#": 2004 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2006 + }, + "vertices": { + "#": 2007 + } + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1995 + }, + "min": { + "#": 1996 + } + }, + { + "x": 199.016, + "y": 318.2807313305775 + }, + { + "x": 159.508, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 179.262, + "y": 292.71218990050636 + }, + { + "endCol": 4, + "endRow": 6, + "id": "3,4,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2005 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2029 + }, + "bounds": { + "#": 2040 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2043 + }, + "constraintImpulse": { + "#": 2044 + }, + "density": 0.001, + "force": { + "#": 2045 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2046 + }, + "positionImpulse": { + "#": 2047 + }, + "positionPrev": { + "#": 2048 + }, + "region": { + "#": 2049 + }, + "render": { + "#": 2050 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2052 + }, + "vertices": { + "#": 2053 + } + }, + [ + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2041 + }, + "min": { + "#": 2042 + } + }, + { + "x": 258.524, + "y": 318.2807313305775 + }, + { + "x": 219.016, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 238.76999999999998, + "y": 292.71218990050636 + }, + { + "endCol": 5, + "endRow": 6, + "id": "4,5,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2051 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2075 + }, + "bounds": { + "#": 2086 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2089 + }, + "constraintImpulse": { + "#": 2090 + }, + "density": 0.001, + "force": { + "#": 2091 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2092 + }, + "positionImpulse": { + "#": 2093 + }, + "positionPrev": { + "#": 2094 + }, + "region": { + "#": 2095 + }, + "render": { + "#": 2096 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2098 + }, + "vertices": { + "#": 2099 + } + }, + [ + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2087 + }, + "min": { + "#": 2088 + } + }, + { + "x": 318.03200000000004, + "y": 318.2807313305775 + }, + { + "x": 278.524, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 298.278, + "y": 292.71218990050636 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2097 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2121 + }, + "bounds": { + "#": 2132 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2135 + }, + "constraintImpulse": { + "#": 2136 + }, + "density": 0.001, + "force": { + "#": 2137 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2138 + }, + "positionImpulse": { + "#": 2139 + }, + "positionPrev": { + "#": 2140 + }, + "region": { + "#": 2141 + }, + "render": { + "#": 2142 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2144 + }, + "vertices": { + "#": 2145 + } + }, + [ + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2133 + }, + "min": { + "#": 2134 + } + }, + { + "x": 377.5400000000001, + "y": 318.2807313305775 + }, + { + "x": 338.03200000000004, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 357.78600000000006, + "y": 292.71218990050636 + }, + { + "endCol": 7, + "endRow": 6, + "id": "7,7,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2143 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + }, + { + "#": 2165 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2167 + }, + "bounds": { + "#": 2178 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2181 + }, + "constraintImpulse": { + "#": 2182 + }, + "density": 0.001, + "force": { + "#": 2183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2184 + }, + "positionImpulse": { + "#": 2185 + }, + "positionPrev": { + "#": 2186 + }, + "region": { + "#": 2187 + }, + "render": { + "#": 2188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2190 + }, + "vertices": { + "#": 2191 + } + }, + [ + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2179 + }, + "min": { + "#": 2180 + } + }, + { + "x": 437.0480000000001, + "y": 318.2807313305775 + }, + { + "x": 397.5400000000001, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 417.2940000000001, + "y": 292.71218990050636 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2189 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2213 + }, + "bounds": { + "#": 2224 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2227 + }, + "constraintImpulse": { + "#": 2228 + }, + "density": 0.001, + "force": { + "#": 2229 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2230 + }, + "positionImpulse": { + "#": 2231 + }, + "positionPrev": { + "#": 2232 + }, + "region": { + "#": 2233 + }, + "render": { + "#": 2234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2236 + }, + "vertices": { + "#": 2237 + } + }, + [ + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2225 + }, + "min": { + "#": 2226 + } + }, + { + "x": 496.55600000000015, + "y": 318.2807313305775 + }, + { + "x": 457.0480000000001, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 476.80200000000013, + "y": 292.71218990050636 + }, + { + "endCol": 10, + "endRow": 6, + "id": "9,10,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2235 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2259 + }, + "bounds": { + "#": 2270 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2273 + }, + "constraintImpulse": { + "#": 2274 + }, + "density": 0.001, + "force": { + "#": 2275 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2276 + }, + "positionImpulse": { + "#": 2277 + }, + "positionPrev": { + "#": 2278 + }, + "region": { + "#": 2279 + }, + "render": { + "#": 2280 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2282 + }, + "vertices": { + "#": 2283 + } + }, + [ + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2271 + }, + "min": { + "#": 2272 + } + }, + { + "x": 556.0640000000002, + "y": 318.2807313305775 + }, + { + "x": 516.5560000000002, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 536.3100000000002, + "y": 292.71218990050636 + }, + { + "endCol": 11, + "endRow": 6, + "id": "10,11,5,6", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2281 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2305 + }, + "bounds": { + "#": 2316 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2319 + }, + "constraintImpulse": { + "#": 2320 + }, + "density": 0.001, + "force": { + "#": 2321 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2322 + }, + "positionImpulse": { + "#": 2323 + }, + "positionPrev": { + "#": 2324 + }, + "region": { + "#": 2325 + }, + "render": { + "#": 2326 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2328 + }, + "vertices": { + "#": 2329 + } + }, + [ + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2317 + }, + "min": { + "#": 2318 + } + }, + { + "x": 615.5720000000002, + "y": 318.2807313305775 + }, + { + "x": 576.0640000000002, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 595.8180000000002, + "y": 292.71218990050636 + }, + { + "endCol": 12, + "endRow": 6, + "id": "12,12,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2327 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2351 + }, + "bounds": { + "#": 2362 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2365 + }, + "constraintImpulse": { + "#": 2366 + }, + "density": 0.001, + "force": { + "#": 2367 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2368 + }, + "positionImpulse": { + "#": 2369 + }, + "positionPrev": { + "#": 2370 + }, + "region": { + "#": 2371 + }, + "render": { + "#": 2372 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2374 + }, + "vertices": { + "#": 2375 + } + }, + [ + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2363 + }, + "min": { + "#": 2364 + } + }, + { + "x": 675.0800000000003, + "y": 318.2807313305775 + }, + { + "x": 635.5720000000002, + "y": 275.86546061554196 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 295.6194606155419 + }, + { + "x": 0, + "y": 0.0028023203492214166 + }, + { + "x": 655.3260000000002, + "y": 292.71218990050636 + }, + { + "endCol": 14, + "endRow": 6, + "id": "13,14,5,6", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2373 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 315.37346061554194 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 313.4394606155419 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 309.7614606155419 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 304.6994606155419 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 298.74846061554194 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 292.49046061554196 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 275.86546061554196 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 277.79946061554193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 281.47746061554193 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 286.53946061554194 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 292.49046061554196 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2397 + }, + "bounds": { + "#": 2408 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2411 + }, + "constraintImpulse": { + "#": 2412 + }, + "density": 0.001, + "force": { + "#": 2413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2414 + }, + "positionImpulse": { + "#": 2415 + }, + "positionPrev": { + "#": 2416 + }, + "region": { + "#": 2417 + }, + "render": { + "#": 2418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2420 + }, + "vertices": { + "#": 2421 + } + }, + [ + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2409 + }, + "min": { + "#": 2410 + } + }, + { + "x": 139.508, + "y": 357.738731311331 + }, + { + "x": 100, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 119.754, + "y": 332.17018988125983 + }, + { + "endCol": 2, + "endRow": 7, + "id": "2,2,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2419 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2443 + }, + "bounds": { + "#": 2454 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2457 + }, + "constraintImpulse": { + "#": 2458 + }, + "density": 0.001, + "force": { + "#": 2459 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2460 + }, + "positionImpulse": { + "#": 2461 + }, + "positionPrev": { + "#": 2462 + }, + "region": { + "#": 2463 + }, + "render": { + "#": 2464 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2466 + }, + "vertices": { + "#": 2467 + } + }, + [ + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2455 + }, + "min": { + "#": 2456 + } + }, + { + "x": 199.016, + "y": 357.738731311331 + }, + { + "x": 159.508, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 179.262, + "y": 332.17018988125983 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2465 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2489 + }, + "bounds": { + "#": 2500 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2503 + }, + "constraintImpulse": { + "#": 2504 + }, + "density": 0.001, + "force": { + "#": 2505 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2506 + }, + "positionImpulse": { + "#": 2507 + }, + "positionPrev": { + "#": 2508 + }, + "region": { + "#": 2509 + }, + "render": { + "#": 2510 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2512 + }, + "vertices": { + "#": 2513 + } + }, + [ + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2501 + }, + "min": { + "#": 2502 + } + }, + { + "x": 258.524, + "y": 357.738731311331 + }, + { + "x": 219.016, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 238.76999999999998, + "y": 332.17018988125983 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2511 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2514 + }, + { + "#": 2515 + }, + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2535 + }, + "bounds": { + "#": 2546 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2549 + }, + "constraintImpulse": { + "#": 2550 + }, + "density": 0.001, + "force": { + "#": 2551 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2552 + }, + "positionImpulse": { + "#": 2553 + }, + "positionPrev": { + "#": 2554 + }, + "region": { + "#": 2555 + }, + "render": { + "#": 2556 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2558 + }, + "vertices": { + "#": 2559 + } + }, + [ + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2547 + }, + "min": { + "#": 2548 + } + }, + { + "x": 318.03200000000004, + "y": 357.738731311331 + }, + { + "x": 278.524, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 298.278, + "y": 332.17018988125983 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2557 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + }, + { + "#": 2570 + }, + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2581 + }, + "bounds": { + "#": 2592 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2595 + }, + "constraintImpulse": { + "#": 2596 + }, + "density": 0.001, + "force": { + "#": 2597 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2598 + }, + "positionImpulse": { + "#": 2599 + }, + "positionPrev": { + "#": 2600 + }, + "region": { + "#": 2601 + }, + "render": { + "#": 2602 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2604 + }, + "vertices": { + "#": 2605 + } + }, + [ + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2593 + }, + "min": { + "#": 2594 + } + }, + { + "x": 377.5400000000001, + "y": 357.738731311331 + }, + { + "x": 338.03200000000004, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 357.78600000000006, + "y": 332.17018988125983 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2603 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2627 + }, + "bounds": { + "#": 2638 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2641 + }, + "constraintImpulse": { + "#": 2642 + }, + "density": 0.001, + "force": { + "#": 2643 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2644 + }, + "positionImpulse": { + "#": 2645 + }, + "positionPrev": { + "#": 2646 + }, + "region": { + "#": 2647 + }, + "render": { + "#": 2648 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2650 + }, + "vertices": { + "#": 2651 + } + }, + [ + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2639 + }, + "min": { + "#": 2640 + } + }, + { + "x": 437.0480000000001, + "y": 357.738731311331 + }, + { + "x": 397.5400000000001, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 417.2940000000001, + "y": 332.17018988125983 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2649 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2652 + }, + { + "#": 2653 + }, + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + }, + { + "#": 2658 + }, + { + "#": 2659 + }, + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + }, + { + "#": 2670 + }, + { + "#": 2671 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2673 + }, + "bounds": { + "#": 2684 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2687 + }, + "constraintImpulse": { + "#": 2688 + }, + "density": 0.001, + "force": { + "#": 2689 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2690 + }, + "positionImpulse": { + "#": 2691 + }, + "positionPrev": { + "#": 2692 + }, + "region": { + "#": 2693 + }, + "render": { + "#": 2694 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2696 + }, + "vertices": { + "#": 2697 + } + }, + [ + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2685 + }, + "min": { + "#": 2686 + } + }, + { + "x": 496.55600000000015, + "y": 357.738731311331 + }, + { + "x": 457.0480000000001, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 476.80200000000013, + "y": 332.17018988125983 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2695 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2719 + }, + "bounds": { + "#": 2730 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2733 + }, + "constraintImpulse": { + "#": 2734 + }, + "density": 0.001, + "force": { + "#": 2735 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2736 + }, + "positionImpulse": { + "#": 2737 + }, + "positionPrev": { + "#": 2738 + }, + "region": { + "#": 2739 + }, + "render": { + "#": 2740 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2742 + }, + "vertices": { + "#": 2743 + } + }, + [ + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + }, + { + "#": 2727 + }, + { + "#": 2728 + }, + { + "#": 2729 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2731 + }, + "min": { + "#": 2732 + } + }, + { + "x": 556.0640000000002, + "y": 357.738731311331 + }, + { + "x": 516.5560000000002, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 536.3100000000002, + "y": 332.17018988125983 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2741 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2765 + }, + "bounds": { + "#": 2776 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2779 + }, + "constraintImpulse": { + "#": 2780 + }, + "density": 0.001, + "force": { + "#": 2781 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2782 + }, + "positionImpulse": { + "#": 2783 + }, + "positionPrev": { + "#": 2784 + }, + "region": { + "#": 2785 + }, + "render": { + "#": 2786 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2788 + }, + "vertices": { + "#": 2789 + } + }, + [ + { + "#": 2766 + }, + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2777 + }, + "min": { + "#": 2778 + } + }, + { + "x": 615.5720000000002, + "y": 357.738731311331 + }, + { + "x": 576.0640000000002, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 595.8180000000002, + "y": 332.17018988125983 + }, + { + "endCol": 12, + "endRow": 7, + "id": "12,12,6,7", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2787 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2790 + }, + { + "#": 2791 + }, + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + }, + { + "#": 2808 + }, + { + "#": 2809 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2811 + }, + "bounds": { + "#": 2822 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2825 + }, + "constraintImpulse": { + "#": 2826 + }, + "density": 0.001, + "force": { + "#": 2827 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2828 + }, + "positionImpulse": { + "#": 2829 + }, + "positionPrev": { + "#": 2830 + }, + "region": { + "#": 2831 + }, + "render": { + "#": 2832 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2834 + }, + "vertices": { + "#": 2835 + } + }, + [ + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2823 + }, + "min": { + "#": 2824 + } + }, + { + "x": 675.0800000000003, + "y": 357.738731311331 + }, + { + "x": 635.5720000000002, + "y": 315.3234605962954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 335.0774605962954 + }, + { + "x": 0, + "y": 0.0028018759628919794 + }, + { + "x": 655.3260000000002, + "y": 332.17018988125983 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,6,7", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2833 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + }, + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + }, + { + "#": 2851 + }, + { + "#": 2852 + }, + { + "#": 2853 + }, + { + "#": 2854 + }, + { + "#": 2855 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 354.8314605962954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 352.8974605962954 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 349.2194605962954 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 344.1574605962954 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 338.2064605962954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 331.9484605962954 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 315.3234605962954 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 317.2574605962954 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 320.9354605962954 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 325.9974605962954 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 331.9484605962954 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2857 + }, + "bounds": { + "#": 2868 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2871 + }, + "constraintImpulse": { + "#": 2872 + }, + "density": 0.001, + "force": { + "#": 2873 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2874 + }, + "positionImpulse": { + "#": 2875 + }, + "positionPrev": { + "#": 2876 + }, + "region": { + "#": 2877 + }, + "render": { + "#": 2878 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2880 + }, + "vertices": { + "#": 2881 + } + }, + [ + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2869 + }, + "min": { + "#": 2870 + } + }, + { + "x": 139.508, + "y": 397.1967312920844 + }, + { + "x": 100, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 119.754, + "y": 371.62818986201324 + }, + { + "endCol": 2, + "endRow": 8, + "id": "2,2,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2879 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2903 + }, + "bounds": { + "#": 2914 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2917 + }, + "constraintImpulse": { + "#": 2918 + }, + "density": 0.001, + "force": { + "#": 2919 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2920 + }, + "positionImpulse": { + "#": 2921 + }, + "positionPrev": { + "#": 2922 + }, + "region": { + "#": 2923 + }, + "render": { + "#": 2924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2926 + }, + "vertices": { + "#": 2927 + } + }, + [ + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2915 + }, + "min": { + "#": 2916 + } + }, + { + "x": 199.016, + "y": 397.1967312920844 + }, + { + "x": 159.508, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 179.262, + "y": 371.62818986201324 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2925 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2928 + }, + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + }, + { + "#": 2946 + }, + { + "#": 2947 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2949 + }, + "bounds": { + "#": 2960 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2963 + }, + "constraintImpulse": { + "#": 2964 + }, + "density": 0.001, + "force": { + "#": 2965 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2966 + }, + "positionImpulse": { + "#": 2967 + }, + "positionPrev": { + "#": 2968 + }, + "region": { + "#": 2969 + }, + "render": { + "#": 2970 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2972 + }, + "vertices": { + "#": 2973 + } + }, + [ + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2961 + }, + "min": { + "#": 2962 + } + }, + { + "x": 258.524, + "y": 397.1967312920844 + }, + { + "x": 219.016, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 238.76999999999998, + "y": 371.62818986201324 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2971 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + }, + { + "#": 2984 + }, + { + "#": 2985 + }, + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2995 + }, + "bounds": { + "#": 3006 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3009 + }, + "constraintImpulse": { + "#": 3010 + }, + "density": 0.001, + "force": { + "#": 3011 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3012 + }, + "positionImpulse": { + "#": 3013 + }, + "positionPrev": { + "#": 3014 + }, + "region": { + "#": 3015 + }, + "render": { + "#": 3016 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3018 + }, + "vertices": { + "#": 3019 + } + }, + [ + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + }, + { + "#": 3005 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3007 + }, + "min": { + "#": 3008 + } + }, + { + "x": 318.03200000000004, + "y": 397.1967312920844 + }, + { + "x": 278.524, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 298.278, + "y": 371.62818986201324 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3017 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + }, + { + "#": 3038 + }, + { + "#": 3039 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3041 + }, + "bounds": { + "#": 3052 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3055 + }, + "constraintImpulse": { + "#": 3056 + }, + "density": 0.001, + "force": { + "#": 3057 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3058 + }, + "positionImpulse": { + "#": 3059 + }, + "positionPrev": { + "#": 3060 + }, + "region": { + "#": 3061 + }, + "render": { + "#": 3062 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3064 + }, + "vertices": { + "#": 3065 + } + }, + [ + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3053 + }, + "min": { + "#": 3054 + } + }, + { + "x": 377.5400000000001, + "y": 397.1967312920844 + }, + { + "x": 338.03200000000004, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 357.78600000000006, + "y": 371.62818986201324 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3063 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + }, + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + }, + { + "#": 3085 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3087 + }, + "bounds": { + "#": 3098 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3101 + }, + "constraintImpulse": { + "#": 3102 + }, + "density": 0.001, + "force": { + "#": 3103 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3104 + }, + "positionImpulse": { + "#": 3105 + }, + "positionPrev": { + "#": 3106 + }, + "region": { + "#": 3107 + }, + "render": { + "#": 3108 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3110 + }, + "vertices": { + "#": 3111 + } + }, + [ + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3099 + }, + "min": { + "#": 3100 + } + }, + { + "x": 437.0480000000001, + "y": 397.1967312920844 + }, + { + "x": 397.5400000000001, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 417.2940000000001, + "y": 371.62818986201324 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3109 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3133 + }, + "bounds": { + "#": 3144 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3147 + }, + "constraintImpulse": { + "#": 3148 + }, + "density": 0.001, + "force": { + "#": 3149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3150 + }, + "positionImpulse": { + "#": 3151 + }, + "positionPrev": { + "#": 3152 + }, + "region": { + "#": 3153 + }, + "render": { + "#": 3154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3156 + }, + "vertices": { + "#": 3157 + } + }, + [ + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3145 + }, + "min": { + "#": 3146 + } + }, + { + "x": 496.55600000000015, + "y": 397.1967312920844 + }, + { + "x": 457.0480000000001, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 476.80200000000013, + "y": 371.62818986201324 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3155 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3179 + }, + "bounds": { + "#": 3190 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3193 + }, + "constraintImpulse": { + "#": 3194 + }, + "density": 0.001, + "force": { + "#": 3195 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3196 + }, + "positionImpulse": { + "#": 3197 + }, + "positionPrev": { + "#": 3198 + }, + "region": { + "#": 3199 + }, + "render": { + "#": 3200 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3202 + }, + "vertices": { + "#": 3203 + } + }, + [ + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3191 + }, + "min": { + "#": 3192 + } + }, + { + "x": 556.0640000000002, + "y": 397.1967312920844 + }, + { + "x": 516.5560000000002, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 536.3100000000002, + "y": 371.62818986201324 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3201 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3225 + }, + "bounds": { + "#": 3236 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3239 + }, + "constraintImpulse": { + "#": 3240 + }, + "density": 0.001, + "force": { + "#": 3241 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3242 + }, + "positionImpulse": { + "#": 3243 + }, + "positionPrev": { + "#": 3244 + }, + "region": { + "#": 3245 + }, + "render": { + "#": 3246 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3248 + }, + "vertices": { + "#": 3249 + } + }, + [ + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3237 + }, + "min": { + "#": 3238 + } + }, + { + "x": 615.5720000000002, + "y": 397.1967312920844 + }, + { + "x": 576.0640000000002, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 595.8180000000002, + "y": 371.62818986201324 + }, + { + "endCol": 12, + "endRow": 8, + "id": "12,12,7,8", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3247 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + }, + { + "#": 3258 + }, + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3271 + }, + "bounds": { + "#": 3282 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3285 + }, + "constraintImpulse": { + "#": 3286 + }, + "density": 0.001, + "force": { + "#": 3287 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3288 + }, + "positionImpulse": { + "#": 3289 + }, + "positionPrev": { + "#": 3290 + }, + "region": { + "#": 3291 + }, + "render": { + "#": 3292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3294 + }, + "vertices": { + "#": 3295 + } + }, + [ + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3283 + }, + "min": { + "#": 3284 + } + }, + { + "x": 675.0800000000003, + "y": 397.1967312920844 + }, + { + "x": 635.5720000000002, + "y": 354.7814605770488 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 374.5354605770488 + }, + { + "x": 0, + "y": 0.002801431576518534 + }, + { + "x": 655.3260000000002, + "y": 371.62818986201324 + }, + { + "endCol": 14, + "endRow": 8, + "id": "13,14,7,8", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3293 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355654 + }, + [ + { + "#": 3296 + }, + { + "#": 3297 + }, + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 394.2894605770488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 392.3554605770488 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 388.6774605770488 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 383.6154605770488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 377.6644605770488 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 371.4064605770488 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 354.7814605770488 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 356.7154605770488 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 360.3934605770488 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 365.4554605770488 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 371.4064605770488 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3317 + }, + "bounds": { + "#": 3328 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3331 + }, + "constraintImpulse": { + "#": 3332 + }, + "density": 0.001, + "force": { + "#": 3333 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3334 + }, + "positionImpulse": { + "#": 3335 + }, + "positionPrev": { + "#": 3336 + }, + "region": { + "#": 3337 + }, + "render": { + "#": 3338 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3340 + }, + "vertices": { + "#": 3341 + } + }, + [ + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3329 + }, + "min": { + "#": 3330 + } + }, + { + "x": 139.508, + "y": 433.79975476702504 + }, + { + "x": 100, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 411.13848405198945 + }, + { + "endCol": 2, + "endRow": 9, + "id": "2,2,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3339 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3342 + }, + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + }, + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + }, + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3363 + }, + "bounds": { + "#": 3374 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3377 + }, + "constraintImpulse": { + "#": 3378 + }, + "density": 0.001, + "force": { + "#": 3379 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3380 + }, + "positionImpulse": { + "#": 3381 + }, + "positionPrev": { + "#": 3382 + }, + "region": { + "#": 3383 + }, + "render": { + "#": 3384 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3386 + }, + "vertices": { + "#": 3387 + } + }, + [ + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + }, + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3375 + }, + "min": { + "#": 3376 + } + }, + { + "x": 199.016, + "y": 433.79975476702504 + }, + { + "x": 159.508, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 411.13848405198945 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3385 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3388 + }, + { + "#": 3389 + }, + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + }, + { + "#": 3395 + }, + { + "#": 3396 + }, + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3409 + }, + "bounds": { + "#": 3420 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3423 + }, + "constraintImpulse": { + "#": 3424 + }, + "density": 0.001, + "force": { + "#": 3425 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3426 + }, + "positionImpulse": { + "#": 3427 + }, + "positionPrev": { + "#": 3428 + }, + "region": { + "#": 3429 + }, + "render": { + "#": 3430 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3432 + }, + "vertices": { + "#": 3433 + } + }, + [ + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + }, + { + "#": 3417 + }, + { + "#": 3418 + }, + { + "#": 3419 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3421 + }, + "min": { + "#": 3422 + } + }, + { + "x": 258.524, + "y": 433.79975476702504 + }, + { + "x": 219.016, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 411.13848405198945 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3431 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3434 + }, + { + "#": 3435 + }, + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + }, + { + "#": 3440 + }, + { + "#": 3441 + }, + { + "#": 3442 + }, + { + "#": 3443 + }, + { + "#": 3444 + }, + { + "#": 3445 + }, + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3455 + }, + "bounds": { + "#": 3466 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3469 + }, + "constraintImpulse": { + "#": 3470 + }, + "density": 0.001, + "force": { + "#": 3471 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3472 + }, + "positionImpulse": { + "#": 3473 + }, + "positionPrev": { + "#": 3474 + }, + "region": { + "#": 3475 + }, + "render": { + "#": 3476 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3478 + }, + "vertices": { + "#": 3479 + } + }, + [ + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3467 + }, + "min": { + "#": 3468 + } + }, + { + "x": 318.03200000000004, + "y": 433.79975476702504 + }, + { + "x": 278.524, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 411.13848405198945 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3477 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + }, + { + "#": 3488 + }, + { + "#": 3489 + }, + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3501 + }, + "bounds": { + "#": 3512 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3515 + }, + "constraintImpulse": { + "#": 3516 + }, + "density": 0.001, + "force": { + "#": 3517 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3518 + }, + "positionImpulse": { + "#": 3519 + }, + "positionPrev": { + "#": 3520 + }, + "region": { + "#": 3521 + }, + "render": { + "#": 3522 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3524 + }, + "vertices": { + "#": 3525 + } + }, + [ + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + }, + { + "#": 3511 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3513 + }, + "min": { + "#": 3514 + } + }, + { + "x": 377.5400000000001, + "y": 433.79975476702504 + }, + { + "x": 338.03200000000004, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 411.13848405198945 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3523 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + }, + { + "#": 3533 + }, + { + "#": 3534 + }, + { + "#": 3535 + }, + { + "#": 3536 + }, + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3547 + }, + "bounds": { + "#": 3558 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3561 + }, + "constraintImpulse": { + "#": 3562 + }, + "density": 0.001, + "force": { + "#": 3563 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3564 + }, + "positionImpulse": { + "#": 3565 + }, + "positionPrev": { + "#": 3566 + }, + "region": { + "#": 3567 + }, + "render": { + "#": 3568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3570 + }, + "vertices": { + "#": 3571 + } + }, + [ + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + }, + { + "#": 3557 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3559 + }, + "min": { + "#": 3560 + } + }, + { + "x": 437.0480000000001, + "y": 433.79975476702504 + }, + { + "x": 397.5400000000001, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 411.13848405198945 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3569 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + }, + { + "#": 3583 + }, + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3593 + }, + "bounds": { + "#": 3604 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3607 + }, + "constraintImpulse": { + "#": 3608 + }, + "density": 0.001, + "force": { + "#": 3609 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3610 + }, + "positionImpulse": { + "#": 3611 + }, + "positionPrev": { + "#": 3612 + }, + "region": { + "#": 3613 + }, + "render": { + "#": 3614 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3616 + }, + "vertices": { + "#": 3617 + } + }, + [ + { + "#": 3594 + }, + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + }, + { + "#": 3602 + }, + { + "#": 3603 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3605 + }, + "min": { + "#": 3606 + } + }, + { + "x": 496.55600000000015, + "y": 433.79975476702504 + }, + { + "x": 457.0480000000001, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 411.13848405198945 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3615 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + }, + { + "#": 3624 + }, + { + "#": 3625 + }, + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + }, + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3639 + }, + "bounds": { + "#": 3650 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3653 + }, + "constraintImpulse": { + "#": 3654 + }, + "density": 0.001, + "force": { + "#": 3655 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3656 + }, + "positionImpulse": { + "#": 3657 + }, + "positionPrev": { + "#": 3658 + }, + "region": { + "#": 3659 + }, + "render": { + "#": 3660 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3662 + }, + "vertices": { + "#": 3663 + } + }, + [ + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + }, + { + "#": 3647 + }, + { + "#": 3648 + }, + { + "#": 3649 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3651 + }, + "min": { + "#": 3652 + } + }, + { + "x": 556.0640000000002, + "y": 433.79975476702504 + }, + { + "x": 516.5560000000002, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 411.13848405198945 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3661 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3664 + }, + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + }, + { + "#": 3683 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3685 + }, + "bounds": { + "#": 3696 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3699 + }, + "constraintImpulse": { + "#": 3700 + }, + "density": 0.001, + "force": { + "#": 3701 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3702 + }, + "positionImpulse": { + "#": 3703 + }, + "positionPrev": { + "#": 3704 + }, + "region": { + "#": 3705 + }, + "render": { + "#": 3706 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3708 + }, + "vertices": { + "#": 3709 + } + }, + [ + { + "#": 3686 + }, + { + "#": 3687 + }, + { + "#": 3688 + }, + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + }, + { + "#": 3694 + }, + { + "#": 3695 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3697 + }, + "min": { + "#": 3698 + } + }, + { + "x": 615.5720000000002, + "y": 433.79975476702504 + }, + { + "x": 576.0640000000002, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 411.13848405198945 + }, + { + "endCol": 12, + "endRow": 9, + "id": "12,12,8,9", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3707 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + }, + { + "#": 3714 + }, + { + "#": 3715 + }, + { + "#": 3716 + }, + { + "#": 3717 + }, + { + "#": 3718 + }, + { + "#": 3719 + }, + { + "#": 3720 + }, + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3731 + }, + "bounds": { + "#": 3742 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3745 + }, + "constraintImpulse": { + "#": 3746 + }, + "density": 0.001, + "force": { + "#": 3747 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3748 + }, + "positionImpulse": { + "#": 3749 + }, + "positionPrev": { + "#": 3750 + }, + "region": { + "#": 3751 + }, + "render": { + "#": 3752 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3754 + }, + "vertices": { + "#": 3755 + } + }, + [ + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3743 + }, + "min": { + "#": 3744 + } + }, + { + "x": 675.0800000000003, + "y": 433.79975476702504 + }, + { + "x": 635.5720000000002, + "y": 394.291754767025 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 414.045754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 411.13848405198945 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,8,9", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3753 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3756 + }, + { + "#": 3757 + }, + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 423.125754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 428.187754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 431.865754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 431.865754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 428.187754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 423.125754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 417.17475476702504 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 410.916754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 399.903754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 396.225754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 394.291754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 394.291754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 396.225754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 399.903754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 404.96575476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 410.916754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3777 + }, + "bounds": { + "#": 3788 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3791 + }, + "constraintImpulse": { + "#": 3792 + }, + "density": 0.001, + "force": { + "#": 3793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3794 + }, + "positionImpulse": { + "#": 3795 + }, + "positionPrev": { + "#": 3796 + }, + "region": { + "#": 3797 + }, + "render": { + "#": 3798 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3800 + }, + "vertices": { + "#": 3801 + } + }, + [ + { + "#": 3778 + }, + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3789 + }, + "min": { + "#": 3790 + } + }, + { + "x": 139.508, + "y": 473.3077547670251 + }, + { + "x": 100, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 450.6464840519895 + }, + { + "endCol": 2, + "endRow": 9, + "id": "2,2,9,9", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3799 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + }, + { + "#": 3809 + }, + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3823 + }, + "bounds": { + "#": 3834 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3837 + }, + "constraintImpulse": { + "#": 3838 + }, + "density": 0.001, + "force": { + "#": 3839 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3840 + }, + "positionImpulse": { + "#": 3841 + }, + "positionPrev": { + "#": 3842 + }, + "region": { + "#": 3843 + }, + "render": { + "#": 3844 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3846 + }, + "vertices": { + "#": 3847 + } + }, + [ + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + }, + { + "#": 3830 + }, + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3835 + }, + "min": { + "#": 3836 + } + }, + { + "x": 199.016, + "y": 473.3077547670251 + }, + { + "x": 159.508, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 450.6464840519895 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,9,9", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3845 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + }, + { + "#": 3858 + }, + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3869 + }, + "bounds": { + "#": 3880 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3883 + }, + "constraintImpulse": { + "#": 3884 + }, + "density": 0.001, + "force": { + "#": 3885 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3886 + }, + "positionImpulse": { + "#": 3887 + }, + "positionPrev": { + "#": 3888 + }, + "region": { + "#": 3889 + }, + "render": { + "#": 3890 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3892 + }, + "vertices": { + "#": 3893 + } + }, + [ + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3881 + }, + "min": { + "#": 3882 + } + }, + { + "x": 258.524, + "y": 473.3077547670251 + }, + { + "x": 219.016, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 450.6464840519895 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,9,9", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3891 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + }, + { + "#": 3907 + }, + { + "#": 3908 + }, + { + "#": 3909 + }, + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3915 + }, + "bounds": { + "#": 3926 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3929 + }, + "constraintImpulse": { + "#": 3930 + }, + "density": 0.001, + "force": { + "#": 3931 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3932 + }, + "positionImpulse": { + "#": 3933 + }, + "positionPrev": { + "#": 3934 + }, + "region": { + "#": 3935 + }, + "render": { + "#": 3936 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3938 + }, + "vertices": { + "#": 3939 + } + }, + [ + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + }, + { + "#": 3925 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3927 + }, + "min": { + "#": 3928 + } + }, + { + "x": 318.03200000000004, + "y": 473.3077547670251 + }, + { + "x": 278.524, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 450.6464840519895 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,9,9", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3937 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3940 + }, + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + }, + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 3961 + }, + "bounds": { + "#": 3972 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 3975 + }, + "constraintImpulse": { + "#": 3976 + }, + "density": 0.001, + "force": { + "#": 3977 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 3978 + }, + "positionImpulse": { + "#": 3979 + }, + "positionPrev": { + "#": 3980 + }, + "region": { + "#": 3981 + }, + "render": { + "#": 3982 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3984 + }, + "vertices": { + "#": 3985 + } + }, + [ + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + }, + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3973 + }, + "min": { + "#": 3974 + } + }, + { + "x": 377.5400000000001, + "y": 473.3077547670251 + }, + { + "x": 338.03200000000004, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 450.6464840519895 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,9,9", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3983 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + }, + { + "#": 3998 + }, + { + "#": 3999 + }, + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4007 + }, + "bounds": { + "#": 4018 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4021 + }, + "constraintImpulse": { + "#": 4022 + }, + "density": 0.001, + "force": { + "#": 4023 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4024 + }, + "positionImpulse": { + "#": 4025 + }, + "positionPrev": { + "#": 4026 + }, + "region": { + "#": 4027 + }, + "render": { + "#": 4028 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4030 + }, + "vertices": { + "#": 4031 + } + }, + [ + { + "#": 4008 + }, + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4019 + }, + "min": { + "#": 4020 + } + }, + { + "x": 437.0480000000001, + "y": 473.3077547670251 + }, + { + "x": 397.5400000000001, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 450.6464840519895 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,9,9", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4029 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + }, + { + "#": 4048 + }, + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4053 + }, + "bounds": { + "#": 4064 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4067 + }, + "constraintImpulse": { + "#": 4068 + }, + "density": 0.001, + "force": { + "#": 4069 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4070 + }, + "positionImpulse": { + "#": 4071 + }, + "positionPrev": { + "#": 4072 + }, + "region": { + "#": 4073 + }, + "render": { + "#": 4074 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4076 + }, + "vertices": { + "#": 4077 + } + }, + [ + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4065 + }, + "min": { + "#": 4066 + } + }, + { + "x": 496.55600000000015, + "y": 473.3077547670251 + }, + { + "x": 457.0480000000001, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 450.6464840519895 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,9,9", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4075 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4078 + }, + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + }, + { + "#": 4097 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4099 + }, + "bounds": { + "#": 4110 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4113 + }, + "constraintImpulse": { + "#": 4114 + }, + "density": 0.001, + "force": { + "#": 4115 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4116 + }, + "positionImpulse": { + "#": 4117 + }, + "positionPrev": { + "#": 4118 + }, + "region": { + "#": 4119 + }, + "render": { + "#": 4120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4122 + }, + "vertices": { + "#": 4123 + } + }, + [ + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4111 + }, + "min": { + "#": 4112 + } + }, + { + "x": 556.0640000000002, + "y": 473.3077547670251 + }, + { + "x": 516.5560000000002, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 450.6464840519895 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,9,9", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4121 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4124 + }, + { + "#": 4125 + }, + { + "#": 4126 + }, + { + "#": 4127 + }, + { + "#": 4128 + }, + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + }, + { + "#": 4139 + }, + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4145 + }, + "bounds": { + "#": 4156 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4159 + }, + "constraintImpulse": { + "#": 4160 + }, + "density": 0.001, + "force": { + "#": 4161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4162 + }, + "positionImpulse": { + "#": 4163 + }, + "positionPrev": { + "#": 4164 + }, + "region": { + "#": 4165 + }, + "render": { + "#": 4166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4168 + }, + "vertices": { + "#": 4169 + } + }, + [ + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4157 + }, + "min": { + "#": 4158 + } + }, + { + "x": 615.5720000000002, + "y": 473.3077547670251 + }, + { + "x": 576.0640000000002, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 450.6464840519895 + }, + { + "endCol": 12, + "endRow": 9, + "id": "12,12,9,9", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4167 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4170 + }, + { + "#": 4171 + }, + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + }, + { + "#": 4187 + }, + { + "#": 4188 + }, + { + "#": 4189 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4191 + }, + "bounds": { + "#": 4202 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4205 + }, + "constraintImpulse": { + "#": 4206 + }, + "density": 0.001, + "force": { + "#": 4207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4208 + }, + "positionImpulse": { + "#": 4209 + }, + "positionPrev": { + "#": 4210 + }, + "region": { + "#": 4211 + }, + "render": { + "#": 4212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4214 + }, + "vertices": { + "#": 4215 + } + }, + [ + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + }, + { + "#": 4199 + }, + { + "#": 4200 + }, + { + "#": 4201 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4203 + }, + "min": { + "#": 4204 + } + }, + { + "x": 675.0800000000003, + "y": 473.3077547670251 + }, + { + "x": 635.5720000000002, + "y": 433.79975476702504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 453.55375476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 450.6464840519895 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,9,9", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4213 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4216 + }, + { + "#": 4217 + }, + { + "#": 4218 + }, + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + }, + { + "#": 4222 + }, + { + "#": 4223 + }, + { + "#": 4224 + }, + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + }, + { + "#": 4232 + }, + { + "#": 4233 + }, + { + "#": 4234 + }, + { + "#": 4235 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 471.37375476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 467.69575476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 462.63375476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 456.6827547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 450.42475476702504 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 433.79975476702504 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 435.73375476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 439.41175476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 444.47375476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 450.42475476702504 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4237 + }, + "bounds": { + "#": 4248 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4251 + }, + "constraintImpulse": { + "#": 4252 + }, + "density": 0.001, + "force": { + "#": 4253 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4254 + }, + "positionImpulse": { + "#": 4255 + }, + "positionPrev": { + "#": 4256 + }, + "region": { + "#": 4257 + }, + "render": { + "#": 4258 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4260 + }, + "vertices": { + "#": 4261 + } + }, + [ + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4249 + }, + "min": { + "#": 4250 + } + }, + { + "x": 139.508, + "y": 512.815754767025 + }, + { + "x": 100, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 119.754, + "y": 490.1544840519895 + }, + { + "endCol": 2, + "endRow": 10, + "id": "2,2,9,10", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4259 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4262 + }, + { + "#": 4263 + }, + { + "#": 4264 + }, + { + "#": 4265 + }, + { + "#": 4266 + }, + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + }, + { + "#": 4271 + }, + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + }, + { + "#": 4276 + }, + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 139.508, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 137.574, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.89600000000002, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.834, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 122.88300000000001, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.625, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 110.674, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 105.61200000000001, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 101.93400000000001, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 100, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 100, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 101.93400000000001, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 105.61200000000001, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 110.674, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 116.625, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 122.88300000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 128.834, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.89600000000002, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 137.574, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 139.508, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4283 + }, + "bounds": { + "#": 4294 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4297 + }, + "constraintImpulse": { + "#": 4298 + }, + "density": 0.001, + "force": { + "#": 4299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4300 + }, + "positionImpulse": { + "#": 4301 + }, + "positionPrev": { + "#": 4302 + }, + "region": { + "#": 4303 + }, + "render": { + "#": 4304 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4306 + }, + "vertices": { + "#": 4307 + } + }, + [ + { + "#": 4284 + }, + { + "#": 4285 + }, + { + "#": 4286 + }, + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4295 + }, + "min": { + "#": 4296 + } + }, + { + "x": 199.016, + "y": 512.815754767025 + }, + { + "x": 159.508, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 179.262, + "y": 490.1544840519895 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,9,10", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4305 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4308 + }, + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + }, + { + "#": 4314 + }, + { + "#": 4315 + }, + { + "#": 4316 + }, + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + }, + { + "#": 4320 + }, + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + }, + { + "#": 4325 + }, + { + "#": 4326 + }, + { + "#": 4327 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.016, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.082, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.404, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 188.342, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.391, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 176.133, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 170.182, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.12, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 161.442, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 159.508, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.508, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 161.442, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 165.12, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 170.182, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.133, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 182.391, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 188.342, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 193.404, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 197.082, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 199.016, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4329 + }, + "bounds": { + "#": 4340 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4343 + }, + "constraintImpulse": { + "#": 4344 + }, + "density": 0.001, + "force": { + "#": 4345 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4346 + }, + "positionImpulse": { + "#": 4347 + }, + "positionPrev": { + "#": 4348 + }, + "region": { + "#": 4349 + }, + "render": { + "#": 4350 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4352 + }, + "vertices": { + "#": 4353 + } + }, + [ + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + }, + { + "#": 4337 + }, + { + "#": 4338 + }, + { + "#": 4339 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4341 + }, + "min": { + "#": 4342 + } + }, + { + "x": 258.524, + "y": 512.815754767025 + }, + { + "x": 219.016, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 238.76999999999998, + "y": 490.1544840519895 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4351 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4354 + }, + { + "#": 4355 + }, + { + "#": 4356 + }, + { + "#": 4357 + }, + { + "#": 4358 + }, + { + "#": 4359 + }, + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + }, + { + "#": 4368 + }, + { + "#": 4369 + }, + { + "#": 4370 + }, + { + "#": 4371 + }, + { + "#": 4372 + }, + { + "#": 4373 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 258.524, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.59, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 252.91199999999998, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 247.85, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 241.89899999999997, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.641, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 229.68999999999997, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.628, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 220.95, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 219.016, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.016, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.95, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 224.628, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.68999999999997, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 235.641, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 241.89899999999997, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.85, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 252.91199999999998, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 256.59, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 258.524, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4375 + }, + "bounds": { + "#": 4386 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4389 + }, + "constraintImpulse": { + "#": 4390 + }, + "density": 0.001, + "force": { + "#": 4391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4392 + }, + "positionImpulse": { + "#": 4393 + }, + "positionPrev": { + "#": 4394 + }, + "region": { + "#": 4395 + }, + "render": { + "#": 4396 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4398 + }, + "vertices": { + "#": 4399 + } + }, + [ + { + "#": 4376 + }, + { + "#": 4377 + }, + { + "#": 4378 + }, + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4387 + }, + "min": { + "#": 4388 + } + }, + { + "x": 318.03200000000004, + "y": 512.815754767025 + }, + { + "x": 278.524, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.278, + "y": 490.1544840519895 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4397 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4400 + }, + { + "#": 4401 + }, + { + "#": 4402 + }, + { + "#": 4403 + }, + { + "#": 4404 + }, + { + "#": 4405 + }, + { + "#": 4406 + }, + { + "#": 4407 + }, + { + "#": 4408 + }, + { + "#": 4409 + }, + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + }, + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + }, + { + "#": 4418 + }, + { + "#": 4419 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.03200000000004, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.098, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.42, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.358, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.40700000000004, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 295.149, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.19800000000004, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 284.136, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 280.458, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 278.524, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 278.524, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 280.458, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 284.136, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.19800000000004, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 295.149, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 301.40700000000004, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 307.358, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 312.42, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.098, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 318.03200000000004, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4421 + }, + "bounds": { + "#": 4432 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4435 + }, + "constraintImpulse": { + "#": 4436 + }, + "density": 0.001, + "force": { + "#": 4437 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4438 + }, + "positionImpulse": { + "#": 4439 + }, + "positionPrev": { + "#": 4440 + }, + "region": { + "#": 4441 + }, + "render": { + "#": 4442 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4444 + }, + "vertices": { + "#": 4445 + } + }, + [ + { + "#": 4422 + }, + { + "#": 4423 + }, + { + "#": 4424 + }, + { + "#": 4425 + }, + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + }, + { + "#": 4429 + }, + { + "#": 4430 + }, + { + "#": 4431 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4433 + }, + "min": { + "#": 4434 + } + }, + { + "x": 377.5400000000001, + "y": 512.815754767025 + }, + { + "x": 338.03200000000004, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.78600000000006, + "y": 490.1544840519895 + }, + { + "endCol": 7, + "endRow": 10, + "id": "7,7,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4443 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4446 + }, + { + "#": 4447 + }, + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + }, + { + "#": 4452 + }, + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + }, + { + "#": 4457 + }, + { + "#": 4458 + }, + { + "#": 4459 + }, + { + "#": 4460 + }, + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + }, + { + "#": 4464 + }, + { + "#": 4465 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 377.5400000000001, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375.60600000000005, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.92800000000005, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.86600000000004, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.9150000000001, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 354.65700000000004, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.7060000000001, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.64400000000006, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.96600000000007, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.03200000000004, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 338.03200000000004, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 339.96600000000007, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 343.64400000000006, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 348.7060000000001, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 354.65700000000004, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 360.9150000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 366.86600000000004, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 371.92800000000005, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 375.60600000000005, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 377.5400000000001, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4467 + }, + "bounds": { + "#": 4478 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4481 + }, + "constraintImpulse": { + "#": 4482 + }, + "density": 0.001, + "force": { + "#": 4483 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4484 + }, + "positionImpulse": { + "#": 4485 + }, + "positionPrev": { + "#": 4486 + }, + "region": { + "#": 4487 + }, + "render": { + "#": 4488 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4490 + }, + "vertices": { + "#": 4491 + } + }, + [ + { + "#": 4468 + }, + { + "#": 4469 + }, + { + "#": 4470 + }, + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + }, + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4479 + }, + "min": { + "#": 4480 + } + }, + { + "x": 437.0480000000001, + "y": 512.815754767025 + }, + { + "x": 397.5400000000001, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 417.2940000000001, + "y": 490.1544840519895 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4489 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + }, + { + "#": 4495 + }, + { + "#": 4496 + }, + { + "#": 4497 + }, + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + }, + { + "#": 4501 + }, + { + "#": 4502 + }, + { + "#": 4503 + }, + { + "#": 4504 + }, + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + }, + { + "#": 4511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.0480000000001, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.1140000000001, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.4360000000001, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3740000000001, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 420.4230000000001, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 414.1650000000001, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 408.2140000000001, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 403.1520000000001, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 399.4740000000001, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.5400000000001, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 397.5400000000001, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 399.4740000000001, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.1520000000001, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 408.2140000000001, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 414.1650000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 420.4230000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 426.3740000000001, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 431.4360000000001, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 435.1140000000001, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 437.0480000000001, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4513 + }, + "bounds": { + "#": 4524 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4527 + }, + "constraintImpulse": { + "#": 4528 + }, + "density": 0.001, + "force": { + "#": 4529 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4530 + }, + "positionImpulse": { + "#": 4531 + }, + "positionPrev": { + "#": 4532 + }, + "region": { + "#": 4533 + }, + "render": { + "#": 4534 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4536 + }, + "vertices": { + "#": 4537 + } + }, + [ + { + "#": 4514 + }, + { + "#": 4515 + }, + { + "#": 4516 + }, + { + "#": 4517 + }, + { + "#": 4518 + }, + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + }, + { + "#": 4523 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4525 + }, + "min": { + "#": 4526 + } + }, + { + "x": 496.55600000000015, + "y": 512.815754767025 + }, + { + "x": 457.0480000000001, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.80200000000013, + "y": 490.1544840519895 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4535 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + }, + { + "#": 4545 + }, + { + "#": 4546 + }, + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + }, + { + "#": 4550 + }, + { + "#": 4551 + }, + { + "#": 4552 + }, + { + "#": 4553 + }, + { + "#": 4554 + }, + { + "#": 4555 + }, + { + "#": 4556 + }, + { + "#": 4557 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 496.55600000000015, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.6220000000001, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.94400000000013, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8820000000001, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.93100000000015, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 473.6730000000001, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 467.72200000000015, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.66000000000014, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 458.98200000000014, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.0480000000001, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 457.0480000000001, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.98200000000014, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 462.66000000000014, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 467.72200000000015, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 473.6730000000001, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 479.93100000000015, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.8820000000001, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 490.94400000000013, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 494.6220000000001, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 496.55600000000015, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4559 + }, + "bounds": { + "#": 4570 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4573 + }, + "constraintImpulse": { + "#": 4574 + }, + "density": 0.001, + "force": { + "#": 4575 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4576 + }, + "positionImpulse": { + "#": 4577 + }, + "positionPrev": { + "#": 4578 + }, + "region": { + "#": 4579 + }, + "render": { + "#": 4580 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4582 + }, + "vertices": { + "#": 4583 + } + }, + [ + { + "#": 4560 + }, + { + "#": 4561 + }, + { + "#": 4562 + }, + { + "#": 4563 + }, + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + }, + { + "#": 4567 + }, + { + "#": 4568 + }, + { + "#": 4569 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4571 + }, + "min": { + "#": 4572 + } + }, + { + "x": 556.0640000000002, + "y": 512.815754767025 + }, + { + "x": 516.5560000000002, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.3100000000002, + "y": 490.1544840519895 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4581 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4584 + }, + { + "#": 4585 + }, + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + }, + { + "#": 4589 + }, + { + "#": 4590 + }, + { + "#": 4591 + }, + { + "#": 4592 + }, + { + "#": 4593 + }, + { + "#": 4594 + }, + { + "#": 4595 + }, + { + "#": 4596 + }, + { + "#": 4597 + }, + { + "#": 4598 + }, + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 556.0640000000002, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.1300000000002, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4520000000002, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.3900000000002, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.4390000000002, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 533.1810000000002, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 527.2300000000002, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 522.1680000000001, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.4900000000002, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 516.5560000000002, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 516.5560000000002, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 518.4900000000002, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 522.1680000000001, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 527.2300000000002, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 533.1810000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 539.4390000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 545.3900000000002, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 550.4520000000002, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 554.1300000000002, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 556.0640000000002, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4605 + }, + "bounds": { + "#": 4616 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4619 + }, + "constraintImpulse": { + "#": 4620 + }, + "density": 0.001, + "force": { + "#": 4621 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4622 + }, + "positionImpulse": { + "#": 4623 + }, + "positionPrev": { + "#": 4624 + }, + "region": { + "#": 4625 + }, + "render": { + "#": 4626 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4628 + }, + "vertices": { + "#": 4629 + } + }, + [ + { + "#": 4606 + }, + { + "#": 4607 + }, + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + }, + { + "#": 4613 + }, + { + "#": 4614 + }, + { + "#": 4615 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4617 + }, + "min": { + "#": 4618 + } + }, + { + "x": 615.5720000000002, + "y": 512.815754767025 + }, + { + "x": 576.0640000000002, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 595.8180000000002, + "y": 490.1544840519895 + }, + { + "endCol": 12, + "endRow": 10, + "id": "12,12,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4627 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + }, + { + "#": 4636 + }, + { + "#": 4637 + }, + { + "#": 4638 + }, + { + "#": 4639 + }, + { + "#": 4640 + }, + { + "#": 4641 + }, + { + "#": 4642 + }, + { + "#": 4643 + }, + { + "#": 4644 + }, + { + "#": 4645 + }, + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + }, + { + "#": 4649 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615.5720000000002, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.6380000000003, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 609.9600000000003, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.8980000000003, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 598.9470000000002, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 592.6890000000002, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7380000000002, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 581.6760000000002, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.9980000000002, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 576.0640000000002, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 576.0640000000002, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 577.9980000000002, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 581.6760000000002, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 586.7380000000002, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 592.6890000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 598.9470000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 604.8980000000003, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 609.9600000000003, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 613.6380000000003, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 615.5720000000002, + "y": 489.9327547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 4651 + }, + "bounds": { + "#": 4662 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 4665 + }, + "constraintImpulse": { + "#": 4666 + }, + "density": 0.001, + "force": { + "#": 4667 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 4668 + }, + "positionImpulse": { + "#": 4669 + }, + "positionPrev": { + "#": 4670 + }, + "region": { + "#": 4671 + }, + "render": { + "#": 4672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4674 + }, + "vertices": { + "#": 4675 + } + }, + [ + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + }, + { + "#": 4655 + }, + { + "#": 4656 + }, + { + "#": 4657 + }, + { + "#": 4658 + }, + { + "#": 4659 + }, + { + "#": 4660 + }, + { + "#": 4661 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4663 + }, + "min": { + "#": 4664 + } + }, + { + "x": 675.0800000000003, + "y": 512.815754767025 + }, + { + "x": 635.5720000000002, + "y": 473.3077547670251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 493.0617547670251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 655.3260000000002, + "y": 490.1544840519895 + }, + { + "endCol": 14, + "endRow": 10, + "id": "13,14,9,10", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4673 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4676 + }, + { + "#": 4677 + }, + { + "#": 4678 + }, + { + "#": 4679 + }, + { + "#": 4680 + }, + { + "#": 4681 + }, + { + "#": 4682 + }, + { + "#": 4683 + }, + { + "#": 4684 + }, + { + "#": 4685 + }, + { + "#": 4686 + }, + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + }, + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675.0800000000003, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 673.1460000000003, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.4680000000003, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 664.4060000000003, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 658.4550000000003, + "y": 512.815754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.1970000000002, + "y": 512.815754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 646.2460000000002, + "y": 510.8817547670251 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 641.1840000000002, + "y": 507.2037547670251 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.5060000000002, + "y": 502.1417547670251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.5720000000002, + "y": 496.1907547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.5720000000002, + "y": 489.9327547670251 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5060000000002, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.1840000000002, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 646.2460000000002, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 652.1970000000002, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4550000000003, + "y": 473.3077547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 664.4060000000003, + "y": 475.2417547670251 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 669.4680000000003, + "y": 478.9197547670251 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 673.1460000000003, + "y": 483.9817547670251 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 675.0800000000003, + "y": 489.9327547670251 + }, + [], + [], + [ + { + "#": 4699 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 4700 + }, + "pointB": "", + "render": { + "#": 4701 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 4703 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/cloth/cloth-0.json b/tests/browser/refs/cloth/cloth-0.json new file mode 100644 index 00000000..2a9dc5c6 --- /dev/null +++ b/tests/browser/refs/cloth/cloth-0.json @@ -0,0 +1,82964 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 161 + }, + "composites": { + "#": 164 + }, + "constraints": { + "#": 9161 + }, + "gravity": { + "#": 9165 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 140 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 19911.024116, + "axes": { + "#": 87 + }, + "bounds": { + "#": 101 + }, + "circleRadius": 80, + "collisionFilter": { + "#": 104 + }, + "constraintImpulse": { + "#": 105 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 106 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 693, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 107 + }, + "positionImpulse": { + "#": 108 + }, + "positionPrev": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + }, + { + "#": 90 + }, + { + "#": 91 + }, + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": -0.9709333586157194, + "y": -0.2393499804203023 + }, + { + "x": -0.8854709821702762, + "y": -0.46469467366692147 + }, + { + "x": -0.748515380823054, + "y": -0.6631174290209226 + }, + { + "x": -0.5680418986705345, + "y": -0.8229996363029416 + }, + { + "x": -0.354604215858066, + "y": -0.9350164972318329 + }, + { + "x": -0.120555900025101, + "y": -0.9927065402066907 + }, + { + "x": 0.120555900025101, + "y": -0.9927065402066907 + }, + { + "x": 0.354604215858066, + "y": -0.9350164972318329 + }, + { + "x": 0.5680418986705345, + "y": -0.8229996363029416 + }, + { + "x": 0.748515380823054, + "y": -0.6631174290209226 + }, + { + "x": 0.8854709821702762, + "y": -0.46469467366692147 + }, + { + "x": 0.9709333586157194, + "y": -0.2393499804203023 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 102 + }, + "min": { + "#": 103 + } + }, + { + "x": 379.41700000000003, + "y": 580 + }, + { + "x": 220.583, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 500 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 500 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 379.41700000000003, + "y": 509.64300000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.801, + "y": 528.368 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 365.839, + "y": 545.445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.05, + "y": 559.881 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.178, + "y": 570.836 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 319.145, + "y": 577.675 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 300, + "y": 580 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.855, + "y": 577.675 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 262.822, + "y": 570.836 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 246.95, + "y": 559.881 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 234.161, + "y": 545.445 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 225.199, + "y": 528.368 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 220.583, + "y": 509.64300000000003 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 220.583, + "y": 490.35699999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 225.199, + "y": 471.632 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 234.161, + "y": 454.555 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 246.95, + "y": 440.119 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 262.822, + "y": 429.164 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 280.855, + "y": 422.325 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 319.145, + "y": 422.325 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 337.178, + "y": 429.164 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 353.05, + "y": 440.119 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 365.839, + "y": 454.555 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 374.801, + "y": 471.632 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 379.41700000000003, + "y": 490.35699999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6400, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 149 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 694, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "render": { + "#": 153 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 155 + }, + "vertices": { + "#": 156 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 540, + "y": 520 + }, + { + "x": 460, + "y": 440 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 480 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 154 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 440 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 440 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 520 + }, + { + "max": { + "#": 162 + }, + "min": { + "#": 163 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 165 + } + ], + { + "bodies": { + "#": 166 + }, + "composites": { + "#": 7367 + }, + "constraints": { + "#": 7368 + }, + "id": 4, + "isModified": true, + "label": "Soft Body", + "parent": null, + "type": "composite" + }, + [ + { + "#": 167 + }, + { + "#": 197 + }, + { + "#": 227 + }, + { + "#": 257 + }, + { + "#": 287 + }, + { + "#": 317 + }, + { + "#": 347 + }, + { + "#": 377 + }, + { + "#": 407 + }, + { + "#": 437 + }, + { + "#": 467 + }, + { + "#": 497 + }, + { + "#": 527 + }, + { + "#": 557 + }, + { + "#": 587 + }, + { + "#": 617 + }, + { + "#": 647 + }, + { + "#": 677 + }, + { + "#": 707 + }, + { + "#": 737 + }, + { + "#": 767 + }, + { + "#": 797 + }, + { + "#": 827 + }, + { + "#": 857 + }, + { + "#": 887 + }, + { + "#": 917 + }, + { + "#": 947 + }, + { + "#": 977 + }, + { + "#": 1007 + }, + { + "#": 1037 + }, + { + "#": 1067 + }, + { + "#": 1097 + }, + { + "#": 1127 + }, + { + "#": 1157 + }, + { + "#": 1187 + }, + { + "#": 1217 + }, + { + "#": 1247 + }, + { + "#": 1277 + }, + { + "#": 1307 + }, + { + "#": 1337 + }, + { + "#": 1367 + }, + { + "#": 1397 + }, + { + "#": 1427 + }, + { + "#": 1457 + }, + { + "#": 1487 + }, + { + "#": 1517 + }, + { + "#": 1547 + }, + { + "#": 1577 + }, + { + "#": 1607 + }, + { + "#": 1637 + }, + { + "#": 1667 + }, + { + "#": 1697 + }, + { + "#": 1727 + }, + { + "#": 1757 + }, + { + "#": 1787 + }, + { + "#": 1817 + }, + { + "#": 1847 + }, + { + "#": 1877 + }, + { + "#": 1907 + }, + { + "#": 1937 + }, + { + "#": 1967 + }, + { + "#": 1997 + }, + { + "#": 2027 + }, + { + "#": 2057 + }, + { + "#": 2087 + }, + { + "#": 2117 + }, + { + "#": 2147 + }, + { + "#": 2177 + }, + { + "#": 2207 + }, + { + "#": 2237 + }, + { + "#": 2267 + }, + { + "#": 2297 + }, + { + "#": 2327 + }, + { + "#": 2357 + }, + { + "#": 2387 + }, + { + "#": 2417 + }, + { + "#": 2447 + }, + { + "#": 2477 + }, + { + "#": 2507 + }, + { + "#": 2537 + }, + { + "#": 2567 + }, + { + "#": 2597 + }, + { + "#": 2627 + }, + { + "#": 2657 + }, + { + "#": 2687 + }, + { + "#": 2717 + }, + { + "#": 2747 + }, + { + "#": 2777 + }, + { + "#": 2807 + }, + { + "#": 2837 + }, + { + "#": 2867 + }, + { + "#": 2897 + }, + { + "#": 2927 + }, + { + "#": 2957 + }, + { + "#": 2987 + }, + { + "#": 3017 + }, + { + "#": 3047 + }, + { + "#": 3077 + }, + { + "#": 3107 + }, + { + "#": 3137 + }, + { + "#": 3167 + }, + { + "#": 3197 + }, + { + "#": 3227 + }, + { + "#": 3257 + }, + { + "#": 3287 + }, + { + "#": 3317 + }, + { + "#": 3347 + }, + { + "#": 3377 + }, + { + "#": 3407 + }, + { + "#": 3437 + }, + { + "#": 3467 + }, + { + "#": 3497 + }, + { + "#": 3527 + }, + { + "#": 3557 + }, + { + "#": 3587 + }, + { + "#": 3617 + }, + { + "#": 3647 + }, + { + "#": 3677 + }, + { + "#": 3707 + }, + { + "#": 3737 + }, + { + "#": 3767 + }, + { + "#": 3797 + }, + { + "#": 3827 + }, + { + "#": 3857 + }, + { + "#": 3887 + }, + { + "#": 3917 + }, + { + "#": 3947 + }, + { + "#": 3977 + }, + { + "#": 4007 + }, + { + "#": 4037 + }, + { + "#": 4067 + }, + { + "#": 4097 + }, + { + "#": 4127 + }, + { + "#": 4157 + }, + { + "#": 4187 + }, + { + "#": 4217 + }, + { + "#": 4247 + }, + { + "#": 4277 + }, + { + "#": 4307 + }, + { + "#": 4337 + }, + { + "#": 4367 + }, + { + "#": 4397 + }, + { + "#": 4427 + }, + { + "#": 4457 + }, + { + "#": 4487 + }, + { + "#": 4517 + }, + { + "#": 4547 + }, + { + "#": 4577 + }, + { + "#": 4607 + }, + { + "#": 4637 + }, + { + "#": 4667 + }, + { + "#": 4697 + }, + { + "#": 4727 + }, + { + "#": 4757 + }, + { + "#": 4787 + }, + { + "#": 4817 + }, + { + "#": 4847 + }, + { + "#": 4877 + }, + { + "#": 4907 + }, + { + "#": 4937 + }, + { + "#": 4967 + }, + { + "#": 4997 + }, + { + "#": 5027 + }, + { + "#": 5057 + }, + { + "#": 5087 + }, + { + "#": 5117 + }, + { + "#": 5147 + }, + { + "#": 5177 + }, + { + "#": 5207 + }, + { + "#": 5237 + }, + { + "#": 5267 + }, + { + "#": 5297 + }, + { + "#": 5327 + }, + { + "#": 5357 + }, + { + "#": 5387 + }, + { + "#": 5417 + }, + { + "#": 5447 + }, + { + "#": 5477 + }, + { + "#": 5507 + }, + { + "#": 5537 + }, + { + "#": 5567 + }, + { + "#": 5597 + }, + { + "#": 5627 + }, + { + "#": 5657 + }, + { + "#": 5687 + }, + { + "#": 5717 + }, + { + "#": 5747 + }, + { + "#": 5777 + }, + { + "#": 5807 + }, + { + "#": 5837 + }, + { + "#": 5867 + }, + { + "#": 5897 + }, + { + "#": 5927 + }, + { + "#": 5957 + }, + { + "#": 5987 + }, + { + "#": 6017 + }, + { + "#": 6047 + }, + { + "#": 6077 + }, + { + "#": 6107 + }, + { + "#": 6137 + }, + { + "#": 6167 + }, + { + "#": 6197 + }, + { + "#": 6227 + }, + { + "#": 6257 + }, + { + "#": 6287 + }, + { + "#": 6317 + }, + { + "#": 6347 + }, + { + "#": 6377 + }, + { + "#": 6407 + }, + { + "#": 6437 + }, + { + "#": 6467 + }, + { + "#": 6497 + }, + { + "#": 6527 + }, + { + "#": 6557 + }, + { + "#": 6587 + }, + { + "#": 6617 + }, + { + "#": 6647 + }, + { + "#": 6677 + }, + { + "#": 6707 + }, + { + "#": 6737 + }, + { + "#": 6767 + }, + { + "#": 6797 + }, + { + "#": 6827 + }, + { + "#": 6857 + }, + { + "#": 6887 + }, + { + "#": 6917 + }, + { + "#": 6947 + }, + { + "#": 6977 + }, + { + "#": 7007 + }, + { + "#": 7037 + }, + { + "#": 7067 + }, + { + "#": 7097 + }, + { + "#": 7127 + }, + { + "#": 7157 + }, + { + "#": 7187 + }, + { + "#": 7217 + }, + { + "#": 7247 + }, + { + "#": 7277 + }, + { + "#": 7307 + }, + { + "#": 7337 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 168 + }, + "bounds": { + "#": 174 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 177 + }, + "constraintImpulse": { + "#": 178 + }, + "density": 0.001, + "force": { + "#": 179 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 180 + }, + "positionImpulse": { + "#": 181 + }, + "positionPrev": { + "#": 182 + }, + "render": { + "#": 183 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 185 + }, + "vertices": { + "#": 186 + } + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 175 + }, + "min": { + "#": 176 + } + }, + { + "x": 215.216, + "y": 216 + }, + { + "x": 200, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 208 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 184 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 198 + }, + "bounds": { + "#": 204 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 207 + }, + "constraintImpulse": { + "#": 208 + }, + "density": 0.001, + "force": { + "#": 209 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 210 + }, + "positionImpulse": { + "#": 211 + }, + "positionPrev": { + "#": 212 + }, + "render": { + "#": 213 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 215 + }, + "vertices": { + "#": 216 + } + }, + [ + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 205 + }, + "min": { + "#": 206 + } + }, + { + "x": 235.43200000000002, + "y": 216 + }, + { + "x": 220.216, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 208 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 214 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 228 + }, + "bounds": { + "#": 234 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 237 + }, + "constraintImpulse": { + "#": 238 + }, + "density": 0.001, + "force": { + "#": 239 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 240 + }, + "positionImpulse": { + "#": 241 + }, + "positionPrev": { + "#": 242 + }, + "render": { + "#": 243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 245 + }, + "vertices": { + "#": 246 + } + }, + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 235 + }, + "min": { + "#": 236 + } + }, + { + "x": 255.64800000000002, + "y": 216 + }, + { + "x": 240.43200000000002, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 208 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 244 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 258 + }, + "bounds": { + "#": 264 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 267 + }, + "constraintImpulse": { + "#": 268 + }, + "density": 0.001, + "force": { + "#": 269 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 270 + }, + "positionImpulse": { + "#": 271 + }, + "positionPrev": { + "#": 272 + }, + "render": { + "#": 273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 275 + }, + "vertices": { + "#": 276 + } + }, + [ + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 265 + }, + "min": { + "#": 266 + } + }, + { + "x": 275.86400000000003, + "y": 216 + }, + { + "x": 260.648, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 208 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 274 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 288 + }, + "bounds": { + "#": 294 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "density": 0.001, + "force": { + "#": 299 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 300 + }, + "positionImpulse": { + "#": 301 + }, + "positionPrev": { + "#": 302 + }, + "render": { + "#": 303 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 305 + }, + "vertices": { + "#": 306 + } + }, + [ + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 295 + }, + "min": { + "#": 296 + } + }, + { + "x": 296.08000000000004, + "y": 216 + }, + { + "x": 280.86400000000003, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 208 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 304 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 318 + }, + "bounds": { + "#": 324 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 327 + }, + "constraintImpulse": { + "#": 328 + }, + "density": 0.001, + "force": { + "#": 329 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 330 + }, + "positionImpulse": { + "#": 331 + }, + "positionPrev": { + "#": 332 + }, + "render": { + "#": 333 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 335 + }, + "vertices": { + "#": 336 + } + }, + [ + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 325 + }, + "min": { + "#": 326 + } + }, + { + "x": 316.29600000000005, + "y": 216 + }, + { + "x": 301.08000000000004, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 208 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 334 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 348 + }, + "bounds": { + "#": 354 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 357 + }, + "constraintImpulse": { + "#": 358 + }, + "density": 0.001, + "force": { + "#": 359 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 360 + }, + "positionImpulse": { + "#": 361 + }, + "positionPrev": { + "#": 362 + }, + "render": { + "#": 363 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 365 + }, + "vertices": { + "#": 366 + } + }, + [ + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 355 + }, + "min": { + "#": 356 + } + }, + { + "x": 336.51200000000006, + "y": 216 + }, + { + "x": 321.29600000000005, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 208 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 364 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 378 + }, + "bounds": { + "#": 384 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 387 + }, + "constraintImpulse": { + "#": 388 + }, + "density": 0.001, + "force": { + "#": 389 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 390 + }, + "positionImpulse": { + "#": 391 + }, + "positionPrev": { + "#": 392 + }, + "render": { + "#": 393 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 395 + }, + "vertices": { + "#": 396 + } + }, + [ + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 385 + }, + "min": { + "#": 386 + } + }, + { + "x": 356.72800000000007, + "y": 216 + }, + { + "x": 341.51200000000006, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 208 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 394 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 408 + }, + "bounds": { + "#": 414 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 417 + }, + "constraintImpulse": { + "#": 418 + }, + "density": 0.001, + "force": { + "#": 419 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 420 + }, + "positionImpulse": { + "#": 421 + }, + "positionPrev": { + "#": 422 + }, + "render": { + "#": 423 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 425 + }, + "vertices": { + "#": 426 + } + }, + [ + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 415 + }, + "min": { + "#": 416 + } + }, + { + "x": 376.9440000000001, + "y": 216 + }, + { + "x": 361.72800000000007, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 208 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 424 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 438 + }, + "bounds": { + "#": 444 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 447 + }, + "constraintImpulse": { + "#": 448 + }, + "density": 0.001, + "force": { + "#": 449 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 450 + }, + "positionImpulse": { + "#": 451 + }, + "positionPrev": { + "#": 452 + }, + "render": { + "#": 453 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 455 + }, + "vertices": { + "#": 456 + } + }, + [ + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 445 + }, + "min": { + "#": 446 + } + }, + { + "x": 397.1600000000001, + "y": 216 + }, + { + "x": 381.9440000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 208 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 454 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 468 + }, + "bounds": { + "#": 474 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "render": { + "#": 483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 485 + }, + "vertices": { + "#": 486 + } + }, + [ + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 417.3760000000001, + "y": 216 + }, + { + "x": 402.1600000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 208 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 484 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 498 + }, + "bounds": { + "#": 504 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 507 + }, + "constraintImpulse": { + "#": 508 + }, + "density": 0.001, + "force": { + "#": 509 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 510 + }, + "positionImpulse": { + "#": 511 + }, + "positionPrev": { + "#": 512 + }, + "render": { + "#": 513 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 515 + }, + "vertices": { + "#": 516 + } + }, + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 505 + }, + "min": { + "#": 506 + } + }, + { + "x": 437.5920000000001, + "y": 216 + }, + { + "x": 422.3760000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 208 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 514 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 528 + }, + "bounds": { + "#": 534 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 537 + }, + "constraintImpulse": { + "#": 538 + }, + "density": 0.001, + "force": { + "#": 539 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 540 + }, + "positionImpulse": { + "#": 541 + }, + "positionPrev": { + "#": 542 + }, + "render": { + "#": 543 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 545 + }, + "vertices": { + "#": 546 + } + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 535 + }, + "min": { + "#": 536 + } + }, + { + "x": 457.8080000000001, + "y": 216 + }, + { + "x": 442.5920000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 208 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 544 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 558 + }, + "bounds": { + "#": 564 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 567 + }, + "constraintImpulse": { + "#": 568 + }, + "density": 0.001, + "force": { + "#": 569 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 570 + }, + "positionImpulse": { + "#": 571 + }, + "positionPrev": { + "#": 572 + }, + "render": { + "#": 573 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 575 + }, + "vertices": { + "#": 576 + } + }, + [ + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 565 + }, + "min": { + "#": 566 + } + }, + { + "x": 478.0240000000001, + "y": 216 + }, + { + "x": 462.8080000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 208 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 574 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 588 + }, + "bounds": { + "#": 594 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 597 + }, + "constraintImpulse": { + "#": 598 + }, + "density": 0.001, + "force": { + "#": 599 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 600 + }, + "positionImpulse": { + "#": 601 + }, + "positionPrev": { + "#": 602 + }, + "render": { + "#": 603 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 605 + }, + "vertices": { + "#": 606 + } + }, + [ + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 595 + }, + "min": { + "#": 596 + } + }, + { + "x": 498.2400000000001, + "y": 216 + }, + { + "x": 483.0240000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 208 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 604 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 618 + }, + "bounds": { + "#": 624 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 627 + }, + "constraintImpulse": { + "#": 628 + }, + "density": 0.001, + "force": { + "#": 629 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 630 + }, + "positionImpulse": { + "#": 631 + }, + "positionPrev": { + "#": 632 + }, + "render": { + "#": 633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 635 + }, + "vertices": { + "#": 636 + } + }, + [ + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 625 + }, + "min": { + "#": 626 + } + }, + { + "x": 518.4560000000001, + "y": 216 + }, + { + "x": 503.2400000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 208 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 634 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 648 + }, + "bounds": { + "#": 654 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 657 + }, + "constraintImpulse": { + "#": 658 + }, + "density": 0.001, + "force": { + "#": 659 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 660 + }, + "positionImpulse": { + "#": 661 + }, + "positionPrev": { + "#": 662 + }, + "render": { + "#": 663 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 665 + }, + "vertices": { + "#": 666 + } + }, + [ + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 655 + }, + "min": { + "#": 656 + } + }, + { + "x": 538.672, + "y": 216 + }, + { + "x": 523.4560000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 208 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 664 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 678 + }, + "bounds": { + "#": 684 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 687 + }, + "constraintImpulse": { + "#": 688 + }, + "density": 0.001, + "force": { + "#": 689 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 690 + }, + "positionImpulse": { + "#": 691 + }, + "positionPrev": { + "#": 692 + }, + "render": { + "#": 693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 695 + }, + "vertices": { + "#": 696 + } + }, + [ + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 685 + }, + "min": { + "#": 686 + } + }, + { + "x": 558.8879999999999, + "y": 216 + }, + { + "x": 543.672, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 208 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 694 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 708 + }, + "bounds": { + "#": 714 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 717 + }, + "constraintImpulse": { + "#": 718 + }, + "density": 0.001, + "force": { + "#": 719 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 720 + }, + "positionImpulse": { + "#": 721 + }, + "positionPrev": { + "#": 722 + }, + "render": { + "#": 723 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 725 + }, + "vertices": { + "#": 726 + } + }, + [ + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 715 + }, + "min": { + "#": 716 + } + }, + { + "x": 579.1039999999998, + "y": 216 + }, + { + "x": 563.8879999999999, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 208 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 724 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 738 + }, + "bounds": { + "#": 744 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 747 + }, + "constraintImpulse": { + "#": 748 + }, + "density": 0.001, + "force": { + "#": 749 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 750 + }, + "positionImpulse": { + "#": 751 + }, + "positionPrev": { + "#": 752 + }, + "render": { + "#": 753 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 755 + }, + "vertices": { + "#": 756 + } + }, + [ + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 745 + }, + "min": { + "#": 746 + } + }, + { + "x": 599.3199999999997, + "y": 216 + }, + { + "x": 584.1039999999998, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 208 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 754 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 768 + }, + "bounds": { + "#": 774 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 777 + }, + "constraintImpulse": { + "#": 778 + }, + "density": 0.001, + "force": { + "#": 779 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 780 + }, + "positionImpulse": { + "#": 781 + }, + "positionPrev": { + "#": 782 + }, + "render": { + "#": 783 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 785 + }, + "vertices": { + "#": 786 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 775 + }, + "min": { + "#": 776 + } + }, + { + "x": 215.216, + "y": 237 + }, + { + "x": 200, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 229 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 784 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 798 + }, + "bounds": { + "#": 804 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "density": 0.001, + "force": { + "#": 809 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 810 + }, + "positionImpulse": { + "#": 811 + }, + "positionPrev": { + "#": 812 + }, + "render": { + "#": 813 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 815 + }, + "vertices": { + "#": 816 + } + }, + [ + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 805 + }, + "min": { + "#": 806 + } + }, + { + "x": 235.43200000000002, + "y": 237 + }, + { + "x": 220.216, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 229 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 814 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 828 + }, + "bounds": { + "#": 834 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 837 + }, + "constraintImpulse": { + "#": 838 + }, + "density": 0.001, + "force": { + "#": 839 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 840 + }, + "positionImpulse": { + "#": 841 + }, + "positionPrev": { + "#": 842 + }, + "render": { + "#": 843 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 845 + }, + "vertices": { + "#": 846 + } + }, + [ + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 835 + }, + "min": { + "#": 836 + } + }, + { + "x": 255.64800000000002, + "y": 237 + }, + { + "x": 240.43200000000002, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 229 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 844 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 858 + }, + "bounds": { + "#": 864 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 867 + }, + "constraintImpulse": { + "#": 868 + }, + "density": 0.001, + "force": { + "#": 869 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 870 + }, + "positionImpulse": { + "#": 871 + }, + "positionPrev": { + "#": 872 + }, + "render": { + "#": 873 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 875 + }, + "vertices": { + "#": 876 + } + }, + [ + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 865 + }, + "min": { + "#": 866 + } + }, + { + "x": 275.86400000000003, + "y": 237 + }, + { + "x": 260.648, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 229 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 874 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 888 + }, + "bounds": { + "#": 894 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 897 + }, + "constraintImpulse": { + "#": 898 + }, + "density": 0.001, + "force": { + "#": 899 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 900 + }, + "positionImpulse": { + "#": 901 + }, + "positionPrev": { + "#": 902 + }, + "render": { + "#": 903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 905 + }, + "vertices": { + "#": 906 + } + }, + [ + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 895 + }, + "min": { + "#": 896 + } + }, + { + "x": 296.08000000000004, + "y": 237 + }, + { + "x": 280.86400000000003, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 229 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 904 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 918 + }, + "bounds": { + "#": 924 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 927 + }, + "constraintImpulse": { + "#": 928 + }, + "density": 0.001, + "force": { + "#": 929 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 930 + }, + "positionImpulse": { + "#": 931 + }, + "positionPrev": { + "#": 932 + }, + "render": { + "#": 933 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 935 + }, + "vertices": { + "#": 936 + } + }, + [ + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 925 + }, + "min": { + "#": 926 + } + }, + { + "x": 316.29600000000005, + "y": 237 + }, + { + "x": 301.08000000000004, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 229 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 934 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 948 + }, + "bounds": { + "#": 954 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 957 + }, + "constraintImpulse": { + "#": 958 + }, + "density": 0.001, + "force": { + "#": 959 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 960 + }, + "positionImpulse": { + "#": 961 + }, + "positionPrev": { + "#": 962 + }, + "render": { + "#": 963 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 965 + }, + "vertices": { + "#": 966 + } + }, + [ + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 955 + }, + "min": { + "#": 956 + } + }, + { + "x": 336.51200000000006, + "y": 237 + }, + { + "x": 321.29600000000005, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 229 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 964 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 978 + }, + "bounds": { + "#": 984 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "density": 0.001, + "force": { + "#": 989 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 990 + }, + "positionImpulse": { + "#": 991 + }, + "positionPrev": { + "#": 992 + }, + "render": { + "#": 993 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 995 + }, + "vertices": { + "#": 996 + } + }, + [ + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 985 + }, + "min": { + "#": 986 + } + }, + { + "x": 356.72800000000007, + "y": 237 + }, + { + "x": 341.51200000000006, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 229 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 994 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1008 + }, + "bounds": { + "#": 1014 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1017 + }, + "constraintImpulse": { + "#": 1018 + }, + "density": 0.001, + "force": { + "#": 1019 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1020 + }, + "positionImpulse": { + "#": 1021 + }, + "positionPrev": { + "#": 1022 + }, + "render": { + "#": 1023 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1025 + }, + "vertices": { + "#": 1026 + } + }, + [ + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1015 + }, + "min": { + "#": 1016 + } + }, + { + "x": 376.9440000000001, + "y": 237 + }, + { + "x": 361.72800000000007, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 229 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1024 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1038 + }, + "bounds": { + "#": 1044 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1047 + }, + "constraintImpulse": { + "#": 1048 + }, + "density": 0.001, + "force": { + "#": 1049 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1050 + }, + "positionImpulse": { + "#": 1051 + }, + "positionPrev": { + "#": 1052 + }, + "render": { + "#": 1053 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1055 + }, + "vertices": { + "#": 1056 + } + }, + [ + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1045 + }, + "min": { + "#": 1046 + } + }, + { + "x": 397.1600000000001, + "y": 237 + }, + { + "x": 381.9440000000001, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 229 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1054 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1068 + }, + "bounds": { + "#": 1074 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1077 + }, + "constraintImpulse": { + "#": 1078 + }, + "density": 0.001, + "force": { + "#": 1079 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1080 + }, + "positionImpulse": { + "#": 1081 + }, + "positionPrev": { + "#": 1082 + }, + "render": { + "#": 1083 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1085 + }, + "vertices": { + "#": 1086 + } + }, + [ + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1075 + }, + "min": { + "#": 1076 + } + }, + { + "x": 417.3760000000001, + "y": 237 + }, + { + "x": 402.1600000000001, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 229 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1084 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1098 + }, + "bounds": { + "#": 1104 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1107 + }, + "constraintImpulse": { + "#": 1108 + }, + "density": 0.001, + "force": { + "#": 1109 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1110 + }, + "positionImpulse": { + "#": 1111 + }, + "positionPrev": { + "#": 1112 + }, + "render": { + "#": 1113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1115 + }, + "vertices": { + "#": 1116 + } + }, + [ + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1105 + }, + "min": { + "#": 1106 + } + }, + { + "x": 437.5920000000001, + "y": 237 + }, + { + "x": 422.3760000000001, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 229 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1114 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1128 + }, + "bounds": { + "#": 1134 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "density": 0.001, + "force": { + "#": 1139 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1140 + }, + "positionImpulse": { + "#": 1141 + }, + "positionPrev": { + "#": 1142 + }, + "render": { + "#": 1143 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1145 + }, + "vertices": { + "#": 1146 + } + }, + [ + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1135 + }, + "min": { + "#": 1136 + } + }, + { + "x": 457.8080000000001, + "y": 237 + }, + { + "x": 442.5920000000001, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 229 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1144 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1158 + }, + "bounds": { + "#": 1164 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1167 + }, + "constraintImpulse": { + "#": 1168 + }, + "density": 0.001, + "force": { + "#": 1169 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1170 + }, + "positionImpulse": { + "#": 1171 + }, + "positionPrev": { + "#": 1172 + }, + "render": { + "#": 1173 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1175 + }, + "vertices": { + "#": 1176 + } + }, + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1165 + }, + "min": { + "#": 1166 + } + }, + { + "x": 478.0240000000001, + "y": 237 + }, + { + "x": 462.8080000000001, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 229 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1174 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1188 + }, + "bounds": { + "#": 1194 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1197 + }, + "constraintImpulse": { + "#": 1198 + }, + "density": 0.001, + "force": { + "#": 1199 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1200 + }, + "positionImpulse": { + "#": 1201 + }, + "positionPrev": { + "#": 1202 + }, + "render": { + "#": 1203 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1205 + }, + "vertices": { + "#": 1206 + } + }, + [ + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1195 + }, + "min": { + "#": 1196 + } + }, + { + "x": 498.2400000000001, + "y": 237 + }, + { + "x": 483.0240000000001, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 229 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1204 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1218 + }, + "bounds": { + "#": 1224 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1227 + }, + "constraintImpulse": { + "#": 1228 + }, + "density": 0.001, + "force": { + "#": 1229 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1230 + }, + "positionImpulse": { + "#": 1231 + }, + "positionPrev": { + "#": 1232 + }, + "render": { + "#": 1233 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1235 + }, + "vertices": { + "#": 1236 + } + }, + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1225 + }, + "min": { + "#": 1226 + } + }, + { + "x": 518.4560000000001, + "y": 237 + }, + { + "x": 503.2400000000001, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 229 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1234 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1248 + }, + "bounds": { + "#": 1254 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1257 + }, + "constraintImpulse": { + "#": 1258 + }, + "density": 0.001, + "force": { + "#": 1259 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1260 + }, + "positionImpulse": { + "#": 1261 + }, + "positionPrev": { + "#": 1262 + }, + "render": { + "#": 1263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1265 + }, + "vertices": { + "#": 1266 + } + }, + [ + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1255 + }, + "min": { + "#": 1256 + } + }, + { + "x": 538.672, + "y": 237 + }, + { + "x": 523.4560000000001, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 229 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1264 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1278 + }, + "bounds": { + "#": 1284 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1287 + }, + "constraintImpulse": { + "#": 1288 + }, + "density": 0.001, + "force": { + "#": 1289 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1290 + }, + "positionImpulse": { + "#": 1291 + }, + "positionPrev": { + "#": 1292 + }, + "render": { + "#": 1293 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1295 + }, + "vertices": { + "#": 1296 + } + }, + [ + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1285 + }, + "min": { + "#": 1286 + } + }, + { + "x": 558.8879999999999, + "y": 237 + }, + { + "x": 543.672, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 229 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1294 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1308 + }, + "bounds": { + "#": 1314 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1317 + }, + "constraintImpulse": { + "#": 1318 + }, + "density": 0.001, + "force": { + "#": 1319 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1320 + }, + "positionImpulse": { + "#": 1321 + }, + "positionPrev": { + "#": 1322 + }, + "render": { + "#": 1323 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1325 + }, + "vertices": { + "#": 1326 + } + }, + [ + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1315 + }, + "min": { + "#": 1316 + } + }, + { + "x": 579.1039999999998, + "y": 237 + }, + { + "x": 563.8879999999999, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 229 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1324 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1338 + }, + "bounds": { + "#": 1344 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1347 + }, + "constraintImpulse": { + "#": 1348 + }, + "density": 0.001, + "force": { + "#": 1349 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1350 + }, + "positionImpulse": { + "#": 1351 + }, + "positionPrev": { + "#": 1352 + }, + "render": { + "#": 1353 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1355 + }, + "vertices": { + "#": 1356 + } + }, + [ + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1345 + }, + "min": { + "#": 1346 + } + }, + { + "x": 599.3199999999997, + "y": 237 + }, + { + "x": 584.1039999999998, + "y": 221 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 229 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1354 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 231.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 235.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 235.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 231.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 226.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 222.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 221 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 222.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 226.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1368 + }, + "bounds": { + "#": 1374 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1377 + }, + "constraintImpulse": { + "#": 1378 + }, + "density": 0.001, + "force": { + "#": 1379 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1380 + }, + "positionImpulse": { + "#": 1381 + }, + "positionPrev": { + "#": 1382 + }, + "render": { + "#": 1383 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1385 + }, + "vertices": { + "#": 1386 + } + }, + [ + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1375 + }, + "min": { + "#": 1376 + } + }, + { + "x": 215.216, + "y": 258 + }, + { + "x": 200, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 250 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1384 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1398 + }, + "bounds": { + "#": 1404 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1407 + }, + "constraintImpulse": { + "#": 1408 + }, + "density": 0.001, + "force": { + "#": 1409 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1410 + }, + "positionImpulse": { + "#": 1411 + }, + "positionPrev": { + "#": 1412 + }, + "render": { + "#": 1413 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1415 + }, + "vertices": { + "#": 1416 + } + }, + [ + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1405 + }, + "min": { + "#": 1406 + } + }, + { + "x": 235.43200000000002, + "y": 258 + }, + { + "x": 220.216, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 250 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1414 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1428 + }, + "bounds": { + "#": 1434 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1437 + }, + "constraintImpulse": { + "#": 1438 + }, + "density": 0.001, + "force": { + "#": 1439 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1440 + }, + "positionImpulse": { + "#": 1441 + }, + "positionPrev": { + "#": 1442 + }, + "render": { + "#": 1443 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1445 + }, + "vertices": { + "#": 1446 + } + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1435 + }, + "min": { + "#": 1436 + } + }, + { + "x": 255.64800000000002, + "y": 258 + }, + { + "x": 240.43200000000002, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 250 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1444 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1458 + }, + "bounds": { + "#": 1464 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1467 + }, + "constraintImpulse": { + "#": 1468 + }, + "density": 0.001, + "force": { + "#": 1469 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1470 + }, + "positionImpulse": { + "#": 1471 + }, + "positionPrev": { + "#": 1472 + }, + "render": { + "#": 1473 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1475 + }, + "vertices": { + "#": 1476 + } + }, + [ + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1465 + }, + "min": { + "#": 1466 + } + }, + { + "x": 275.86400000000003, + "y": 258 + }, + { + "x": 260.648, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 250 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1474 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1488 + }, + "bounds": { + "#": 1494 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1497 + }, + "constraintImpulse": { + "#": 1498 + }, + "density": 0.001, + "force": { + "#": 1499 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1500 + }, + "positionImpulse": { + "#": 1501 + }, + "positionPrev": { + "#": 1502 + }, + "render": { + "#": 1503 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1505 + }, + "vertices": { + "#": 1506 + } + }, + [ + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1495 + }, + "min": { + "#": 1496 + } + }, + { + "x": 296.08000000000004, + "y": 258 + }, + { + "x": 280.86400000000003, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 250 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1504 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1518 + }, + "bounds": { + "#": 1524 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1527 + }, + "constraintImpulse": { + "#": 1528 + }, + "density": 0.001, + "force": { + "#": 1529 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1530 + }, + "positionImpulse": { + "#": 1531 + }, + "positionPrev": { + "#": 1532 + }, + "render": { + "#": 1533 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1535 + }, + "vertices": { + "#": 1536 + } + }, + [ + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1525 + }, + "min": { + "#": 1526 + } + }, + { + "x": 316.29600000000005, + "y": 258 + }, + { + "x": 301.08000000000004, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 250 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1534 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1548 + }, + "bounds": { + "#": 1554 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1557 + }, + "constraintImpulse": { + "#": 1558 + }, + "density": 0.001, + "force": { + "#": 1559 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1560 + }, + "positionImpulse": { + "#": 1561 + }, + "positionPrev": { + "#": 1562 + }, + "render": { + "#": 1563 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1565 + }, + "vertices": { + "#": 1566 + } + }, + [ + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1555 + }, + "min": { + "#": 1556 + } + }, + { + "x": 336.51200000000006, + "y": 258 + }, + { + "x": 321.29600000000005, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 250 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1564 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1578 + }, + "bounds": { + "#": 1584 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1587 + }, + "constraintImpulse": { + "#": 1588 + }, + "density": 0.001, + "force": { + "#": 1589 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1590 + }, + "positionImpulse": { + "#": 1591 + }, + "positionPrev": { + "#": 1592 + }, + "render": { + "#": 1593 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1595 + }, + "vertices": { + "#": 1596 + } + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1585 + }, + "min": { + "#": 1586 + } + }, + { + "x": 356.72800000000007, + "y": 258 + }, + { + "x": 341.51200000000006, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 250 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1594 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1608 + }, + "bounds": { + "#": 1614 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1617 + }, + "constraintImpulse": { + "#": 1618 + }, + "density": 0.001, + "force": { + "#": 1619 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1620 + }, + "positionImpulse": { + "#": 1621 + }, + "positionPrev": { + "#": 1622 + }, + "render": { + "#": 1623 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1625 + }, + "vertices": { + "#": 1626 + } + }, + [ + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1615 + }, + "min": { + "#": 1616 + } + }, + { + "x": 376.9440000000001, + "y": 258 + }, + { + "x": 361.72800000000007, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 250 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1624 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1638 + }, + "bounds": { + "#": 1644 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1647 + }, + "constraintImpulse": { + "#": 1648 + }, + "density": 0.001, + "force": { + "#": 1649 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1650 + }, + "positionImpulse": { + "#": 1651 + }, + "positionPrev": { + "#": 1652 + }, + "render": { + "#": 1653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1655 + }, + "vertices": { + "#": 1656 + } + }, + [ + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1645 + }, + "min": { + "#": 1646 + } + }, + { + "x": 397.1600000000001, + "y": 258 + }, + { + "x": 381.9440000000001, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 250 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1654 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1668 + }, + "bounds": { + "#": 1674 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1677 + }, + "constraintImpulse": { + "#": 1678 + }, + "density": 0.001, + "force": { + "#": 1679 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1680 + }, + "positionImpulse": { + "#": 1681 + }, + "positionPrev": { + "#": 1682 + }, + "render": { + "#": 1683 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1685 + }, + "vertices": { + "#": 1686 + } + }, + [ + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1675 + }, + "min": { + "#": 1676 + } + }, + { + "x": 417.3760000000001, + "y": 258 + }, + { + "x": 402.1600000000001, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 250 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1684 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1698 + }, + "bounds": { + "#": 1704 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1707 + }, + "constraintImpulse": { + "#": 1708 + }, + "density": 0.001, + "force": { + "#": 1709 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1710 + }, + "positionImpulse": { + "#": 1711 + }, + "positionPrev": { + "#": 1712 + }, + "render": { + "#": 1713 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1715 + }, + "vertices": { + "#": 1716 + } + }, + [ + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1705 + }, + "min": { + "#": 1706 + } + }, + { + "x": 437.5920000000001, + "y": 258 + }, + { + "x": 422.3760000000001, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 250 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1714 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1728 + }, + "bounds": { + "#": 1734 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1737 + }, + "constraintImpulse": { + "#": 1738 + }, + "density": 0.001, + "force": { + "#": 1739 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1740 + }, + "positionImpulse": { + "#": 1741 + }, + "positionPrev": { + "#": 1742 + }, + "render": { + "#": 1743 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1745 + }, + "vertices": { + "#": 1746 + } + }, + [ + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1735 + }, + "min": { + "#": 1736 + } + }, + { + "x": 457.8080000000001, + "y": 258 + }, + { + "x": 442.5920000000001, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 250 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1744 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1758 + }, + "bounds": { + "#": 1764 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1767 + }, + "constraintImpulse": { + "#": 1768 + }, + "density": 0.001, + "force": { + "#": 1769 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1770 + }, + "positionImpulse": { + "#": 1771 + }, + "positionPrev": { + "#": 1772 + }, + "render": { + "#": 1773 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1775 + }, + "vertices": { + "#": 1776 + } + }, + [ + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1765 + }, + "min": { + "#": 1766 + } + }, + { + "x": 478.0240000000001, + "y": 258 + }, + { + "x": 462.8080000000001, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 250 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1774 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1788 + }, + "bounds": { + "#": 1794 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1797 + }, + "constraintImpulse": { + "#": 1798 + }, + "density": 0.001, + "force": { + "#": 1799 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1800 + }, + "positionImpulse": { + "#": 1801 + }, + "positionPrev": { + "#": 1802 + }, + "render": { + "#": 1803 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1805 + }, + "vertices": { + "#": 1806 + } + }, + [ + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1795 + }, + "min": { + "#": 1796 + } + }, + { + "x": 498.2400000000001, + "y": 258 + }, + { + "x": 483.0240000000001, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 250 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1804 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1818 + }, + "bounds": { + "#": 1824 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1827 + }, + "constraintImpulse": { + "#": 1828 + }, + "density": 0.001, + "force": { + "#": 1829 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1830 + }, + "positionImpulse": { + "#": 1831 + }, + "positionPrev": { + "#": 1832 + }, + "render": { + "#": 1833 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1835 + }, + "vertices": { + "#": 1836 + } + }, + [ + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1825 + }, + "min": { + "#": 1826 + } + }, + { + "x": 518.4560000000001, + "y": 258 + }, + { + "x": 503.2400000000001, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 250 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1834 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1848 + }, + "bounds": { + "#": 1854 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1857 + }, + "constraintImpulse": { + "#": 1858 + }, + "density": 0.001, + "force": { + "#": 1859 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1860 + }, + "positionImpulse": { + "#": 1861 + }, + "positionPrev": { + "#": 1862 + }, + "render": { + "#": 1863 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1865 + }, + "vertices": { + "#": 1866 + } + }, + [ + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1855 + }, + "min": { + "#": 1856 + } + }, + { + "x": 538.672, + "y": 258 + }, + { + "x": 523.4560000000001, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 250 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1864 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1878 + }, + "bounds": { + "#": 1884 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1887 + }, + "constraintImpulse": { + "#": 1888 + }, + "density": 0.001, + "force": { + "#": 1889 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1890 + }, + "positionImpulse": { + "#": 1891 + }, + "positionPrev": { + "#": 1892 + }, + "render": { + "#": 1893 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1895 + }, + "vertices": { + "#": 1896 + } + }, + [ + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1885 + }, + "min": { + "#": 1886 + } + }, + { + "x": 558.8879999999999, + "y": 258 + }, + { + "x": 543.672, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 250 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1894 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1908 + }, + "bounds": { + "#": 1914 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1917 + }, + "constraintImpulse": { + "#": 1918 + }, + "density": 0.001, + "force": { + "#": 1919 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1920 + }, + "positionImpulse": { + "#": 1921 + }, + "positionPrev": { + "#": 1922 + }, + "render": { + "#": 1923 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1925 + }, + "vertices": { + "#": 1926 + } + }, + [ + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1915 + }, + "min": { + "#": 1916 + } + }, + { + "x": 579.1039999999998, + "y": 258 + }, + { + "x": 563.8879999999999, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 250 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1924 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1938 + }, + "bounds": { + "#": 1944 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1947 + }, + "constraintImpulse": { + "#": 1948 + }, + "density": 0.001, + "force": { + "#": 1949 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1950 + }, + "positionImpulse": { + "#": 1951 + }, + "positionPrev": { + "#": 1952 + }, + "render": { + "#": 1953 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1955 + }, + "vertices": { + "#": 1956 + } + }, + [ + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1945 + }, + "min": { + "#": 1946 + } + }, + { + "x": 599.3199999999997, + "y": 258 + }, + { + "x": 584.1039999999998, + "y": 242 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 250 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1954 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 252.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 256.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 256.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 252.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 247.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 243.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 243.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 247.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1968 + }, + "bounds": { + "#": 1974 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1977 + }, + "constraintImpulse": { + "#": 1978 + }, + "density": 0.001, + "force": { + "#": 1979 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1980 + }, + "positionImpulse": { + "#": 1981 + }, + "positionPrev": { + "#": 1982 + }, + "render": { + "#": 1983 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1985 + }, + "vertices": { + "#": 1986 + } + }, + [ + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1975 + }, + "min": { + "#": 1976 + } + }, + { + "x": 215.216, + "y": 279 + }, + { + "x": 200, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 271 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1984 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1998 + }, + "bounds": { + "#": 2004 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2007 + }, + "constraintImpulse": { + "#": 2008 + }, + "density": 0.001, + "force": { + "#": 2009 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2010 + }, + "positionImpulse": { + "#": 2011 + }, + "positionPrev": { + "#": 2012 + }, + "render": { + "#": 2013 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2015 + }, + "vertices": { + "#": 2016 + } + }, + [ + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2005 + }, + "min": { + "#": 2006 + } + }, + { + "x": 235.43200000000002, + "y": 279 + }, + { + "x": 220.216, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 271 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2014 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2028 + }, + "bounds": { + "#": 2034 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2037 + }, + "constraintImpulse": { + "#": 2038 + }, + "density": 0.001, + "force": { + "#": 2039 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2040 + }, + "positionImpulse": { + "#": 2041 + }, + "positionPrev": { + "#": 2042 + }, + "render": { + "#": 2043 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2045 + }, + "vertices": { + "#": 2046 + } + }, + [ + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2035 + }, + "min": { + "#": 2036 + } + }, + { + "x": 255.64800000000002, + "y": 279 + }, + { + "x": 240.43200000000002, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 271 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2044 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2058 + }, + "bounds": { + "#": 2064 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2067 + }, + "constraintImpulse": { + "#": 2068 + }, + "density": 0.001, + "force": { + "#": 2069 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2070 + }, + "positionImpulse": { + "#": 2071 + }, + "positionPrev": { + "#": 2072 + }, + "render": { + "#": 2073 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2075 + }, + "vertices": { + "#": 2076 + } + }, + [ + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2065 + }, + "min": { + "#": 2066 + } + }, + { + "x": 275.86400000000003, + "y": 279 + }, + { + "x": 260.648, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 271 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2074 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2088 + }, + "bounds": { + "#": 2094 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2097 + }, + "constraintImpulse": { + "#": 2098 + }, + "density": 0.001, + "force": { + "#": 2099 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2100 + }, + "positionImpulse": { + "#": 2101 + }, + "positionPrev": { + "#": 2102 + }, + "render": { + "#": 2103 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2105 + }, + "vertices": { + "#": 2106 + } + }, + [ + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2095 + }, + "min": { + "#": 2096 + } + }, + { + "x": 296.08000000000004, + "y": 279 + }, + { + "x": 280.86400000000003, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 271 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2104 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2118 + }, + "bounds": { + "#": 2124 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2127 + }, + "constraintImpulse": { + "#": 2128 + }, + "density": 0.001, + "force": { + "#": 2129 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2130 + }, + "positionImpulse": { + "#": 2131 + }, + "positionPrev": { + "#": 2132 + }, + "render": { + "#": 2133 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2135 + }, + "vertices": { + "#": 2136 + } + }, + [ + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2125 + }, + "min": { + "#": 2126 + } + }, + { + "x": 316.29600000000005, + "y": 279 + }, + { + "x": 301.08000000000004, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 271 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2134 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2148 + }, + "bounds": { + "#": 2154 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2157 + }, + "constraintImpulse": { + "#": 2158 + }, + "density": 0.001, + "force": { + "#": 2159 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2160 + }, + "positionImpulse": { + "#": 2161 + }, + "positionPrev": { + "#": 2162 + }, + "render": { + "#": 2163 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2165 + }, + "vertices": { + "#": 2166 + } + }, + [ + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2155 + }, + "min": { + "#": 2156 + } + }, + { + "x": 336.51200000000006, + "y": 279 + }, + { + "x": 321.29600000000005, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 271 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2164 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2178 + }, + "bounds": { + "#": 2184 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2187 + }, + "constraintImpulse": { + "#": 2188 + }, + "density": 0.001, + "force": { + "#": 2189 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2190 + }, + "positionImpulse": { + "#": 2191 + }, + "positionPrev": { + "#": 2192 + }, + "render": { + "#": 2193 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2195 + }, + "vertices": { + "#": 2196 + } + }, + [ + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2185 + }, + "min": { + "#": 2186 + } + }, + { + "x": 356.72800000000007, + "y": 279 + }, + { + "x": 341.51200000000006, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 271 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2194 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2208 + }, + "bounds": { + "#": 2214 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2217 + }, + "constraintImpulse": { + "#": 2218 + }, + "density": 0.001, + "force": { + "#": 2219 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2220 + }, + "positionImpulse": { + "#": 2221 + }, + "positionPrev": { + "#": 2222 + }, + "render": { + "#": 2223 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2225 + }, + "vertices": { + "#": 2226 + } + }, + [ + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2215 + }, + "min": { + "#": 2216 + } + }, + { + "x": 376.9440000000001, + "y": 279 + }, + { + "x": 361.72800000000007, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 271 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2224 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2238 + }, + "bounds": { + "#": 2244 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2247 + }, + "constraintImpulse": { + "#": 2248 + }, + "density": 0.001, + "force": { + "#": 2249 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2250 + }, + "positionImpulse": { + "#": 2251 + }, + "positionPrev": { + "#": 2252 + }, + "render": { + "#": 2253 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2255 + }, + "vertices": { + "#": 2256 + } + }, + [ + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2245 + }, + "min": { + "#": 2246 + } + }, + { + "x": 397.1600000000001, + "y": 279 + }, + { + "x": 381.9440000000001, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 271 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2254 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2268 + }, + "bounds": { + "#": 2274 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2277 + }, + "constraintImpulse": { + "#": 2278 + }, + "density": 0.001, + "force": { + "#": 2279 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2280 + }, + "positionImpulse": { + "#": 2281 + }, + "positionPrev": { + "#": 2282 + }, + "render": { + "#": 2283 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2285 + }, + "vertices": { + "#": 2286 + } + }, + [ + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2275 + }, + "min": { + "#": 2276 + } + }, + { + "x": 417.3760000000001, + "y": 279 + }, + { + "x": 402.1600000000001, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 271 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2284 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2298 + }, + "bounds": { + "#": 2304 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2307 + }, + "constraintImpulse": { + "#": 2308 + }, + "density": 0.001, + "force": { + "#": 2309 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2310 + }, + "positionImpulse": { + "#": 2311 + }, + "positionPrev": { + "#": 2312 + }, + "render": { + "#": 2313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2315 + }, + "vertices": { + "#": 2316 + } + }, + [ + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2305 + }, + "min": { + "#": 2306 + } + }, + { + "x": 437.5920000000001, + "y": 279 + }, + { + "x": 422.3760000000001, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 271 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2314 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2328 + }, + "bounds": { + "#": 2334 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2337 + }, + "constraintImpulse": { + "#": 2338 + }, + "density": 0.001, + "force": { + "#": 2339 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2340 + }, + "positionImpulse": { + "#": 2341 + }, + "positionPrev": { + "#": 2342 + }, + "render": { + "#": 2343 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2345 + }, + "vertices": { + "#": 2346 + } + }, + [ + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2335 + }, + "min": { + "#": 2336 + } + }, + { + "x": 457.8080000000001, + "y": 279 + }, + { + "x": 442.5920000000001, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 271 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2344 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2358 + }, + "bounds": { + "#": 2364 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2367 + }, + "constraintImpulse": { + "#": 2368 + }, + "density": 0.001, + "force": { + "#": 2369 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2370 + }, + "positionImpulse": { + "#": 2371 + }, + "positionPrev": { + "#": 2372 + }, + "render": { + "#": 2373 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2375 + }, + "vertices": { + "#": 2376 + } + }, + [ + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2365 + }, + "min": { + "#": 2366 + } + }, + { + "x": 478.0240000000001, + "y": 279 + }, + { + "x": 462.8080000000001, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 271 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2374 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2388 + }, + "bounds": { + "#": 2394 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2397 + }, + "constraintImpulse": { + "#": 2398 + }, + "density": 0.001, + "force": { + "#": 2399 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2400 + }, + "positionImpulse": { + "#": 2401 + }, + "positionPrev": { + "#": 2402 + }, + "render": { + "#": 2403 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2405 + }, + "vertices": { + "#": 2406 + } + }, + [ + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2395 + }, + "min": { + "#": 2396 + } + }, + { + "x": 498.2400000000001, + "y": 279 + }, + { + "x": 483.0240000000001, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 271 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2404 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2418 + }, + "bounds": { + "#": 2424 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2427 + }, + "constraintImpulse": { + "#": 2428 + }, + "density": 0.001, + "force": { + "#": 2429 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2430 + }, + "positionImpulse": { + "#": 2431 + }, + "positionPrev": { + "#": 2432 + }, + "render": { + "#": 2433 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2435 + }, + "vertices": { + "#": 2436 + } + }, + [ + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2425 + }, + "min": { + "#": 2426 + } + }, + { + "x": 518.4560000000001, + "y": 279 + }, + { + "x": 503.2400000000001, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 271 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2434 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2448 + }, + "bounds": { + "#": 2454 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2457 + }, + "constraintImpulse": { + "#": 2458 + }, + "density": 0.001, + "force": { + "#": 2459 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2460 + }, + "positionImpulse": { + "#": 2461 + }, + "positionPrev": { + "#": 2462 + }, + "render": { + "#": 2463 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2465 + }, + "vertices": { + "#": 2466 + } + }, + [ + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2455 + }, + "min": { + "#": 2456 + } + }, + { + "x": 538.672, + "y": 279 + }, + { + "x": 523.4560000000001, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 271 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2464 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2478 + }, + "bounds": { + "#": 2484 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2487 + }, + "constraintImpulse": { + "#": 2488 + }, + "density": 0.001, + "force": { + "#": 2489 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2490 + }, + "positionImpulse": { + "#": 2491 + }, + "positionPrev": { + "#": 2492 + }, + "render": { + "#": 2493 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2495 + }, + "vertices": { + "#": 2496 + } + }, + [ + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2485 + }, + "min": { + "#": 2486 + } + }, + { + "x": 558.8879999999999, + "y": 279 + }, + { + "x": 543.672, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 271 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2494 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2508 + }, + "bounds": { + "#": 2514 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2517 + }, + "constraintImpulse": { + "#": 2518 + }, + "density": 0.001, + "force": { + "#": 2519 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2520 + }, + "positionImpulse": { + "#": 2521 + }, + "positionPrev": { + "#": 2522 + }, + "render": { + "#": 2523 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2525 + }, + "vertices": { + "#": 2526 + } + }, + [ + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + }, + { + "#": 2513 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2515 + }, + "min": { + "#": 2516 + } + }, + { + "x": 579.1039999999998, + "y": 279 + }, + { + "x": 563.8879999999999, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 271 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2524 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2538 + }, + "bounds": { + "#": 2544 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2547 + }, + "constraintImpulse": { + "#": 2548 + }, + "density": 0.001, + "force": { + "#": 2549 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2550 + }, + "positionImpulse": { + "#": 2551 + }, + "positionPrev": { + "#": 2552 + }, + "render": { + "#": 2553 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2555 + }, + "vertices": { + "#": 2556 + } + }, + [ + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2545 + }, + "min": { + "#": 2546 + } + }, + { + "x": 599.3199999999997, + "y": 279 + }, + { + "x": 584.1039999999998, + "y": 263 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 271 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2554 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 273.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 277.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 279 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 277.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 273.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 268.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 264.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 263 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 264.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 268.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2568 + }, + "bounds": { + "#": 2574 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2577 + }, + "constraintImpulse": { + "#": 2578 + }, + "density": 0.001, + "force": { + "#": 2579 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2580 + }, + "positionImpulse": { + "#": 2581 + }, + "positionPrev": { + "#": 2582 + }, + "render": { + "#": 2583 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2585 + }, + "vertices": { + "#": 2586 + } + }, + [ + { + "#": 2569 + }, + { + "#": 2570 + }, + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2575 + }, + "min": { + "#": 2576 + } + }, + { + "x": 215.216, + "y": 300 + }, + { + "x": 200, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 292 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2584 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2598 + }, + "bounds": { + "#": 2604 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2607 + }, + "constraintImpulse": { + "#": 2608 + }, + "density": 0.001, + "force": { + "#": 2609 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2610 + }, + "positionImpulse": { + "#": 2611 + }, + "positionPrev": { + "#": 2612 + }, + "render": { + "#": 2613 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2615 + }, + "vertices": { + "#": 2616 + } + }, + [ + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2605 + }, + "min": { + "#": 2606 + } + }, + { + "x": 235.43200000000002, + "y": 300 + }, + { + "x": 220.216, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 292 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2614 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2628 + }, + "bounds": { + "#": 2634 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2637 + }, + "constraintImpulse": { + "#": 2638 + }, + "density": 0.001, + "force": { + "#": 2639 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2640 + }, + "positionImpulse": { + "#": 2641 + }, + "positionPrev": { + "#": 2642 + }, + "render": { + "#": 2643 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2645 + }, + "vertices": { + "#": 2646 + } + }, + [ + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2635 + }, + "min": { + "#": 2636 + } + }, + { + "x": 255.64800000000002, + "y": 300 + }, + { + "x": 240.43200000000002, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 292 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2644 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + }, + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2658 + }, + "bounds": { + "#": 2664 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2667 + }, + "constraintImpulse": { + "#": 2668 + }, + "density": 0.001, + "force": { + "#": 2669 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2670 + }, + "positionImpulse": { + "#": 2671 + }, + "positionPrev": { + "#": 2672 + }, + "render": { + "#": 2673 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2675 + }, + "vertices": { + "#": 2676 + } + }, + [ + { + "#": 2659 + }, + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2665 + }, + "min": { + "#": 2666 + } + }, + { + "x": 275.86400000000003, + "y": 300 + }, + { + "x": 260.648, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 292 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2674 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2688 + }, + "bounds": { + "#": 2694 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2697 + }, + "constraintImpulse": { + "#": 2698 + }, + "density": 0.001, + "force": { + "#": 2699 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2700 + }, + "positionImpulse": { + "#": 2701 + }, + "positionPrev": { + "#": 2702 + }, + "render": { + "#": 2703 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2705 + }, + "vertices": { + "#": 2706 + } + }, + [ + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2695 + }, + "min": { + "#": 2696 + } + }, + { + "x": 296.08000000000004, + "y": 300 + }, + { + "x": 280.86400000000003, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 292 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2704 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2718 + }, + "bounds": { + "#": 2724 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2727 + }, + "constraintImpulse": { + "#": 2728 + }, + "density": 0.001, + "force": { + "#": 2729 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2730 + }, + "positionImpulse": { + "#": 2731 + }, + "positionPrev": { + "#": 2732 + }, + "render": { + "#": 2733 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2735 + }, + "vertices": { + "#": 2736 + } + }, + [ + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2725 + }, + "min": { + "#": 2726 + } + }, + { + "x": 316.29600000000005, + "y": 300 + }, + { + "x": 301.08000000000004, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 292 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2734 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2748 + }, + "bounds": { + "#": 2754 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2757 + }, + "constraintImpulse": { + "#": 2758 + }, + "density": 0.001, + "force": { + "#": 2759 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2760 + }, + "positionImpulse": { + "#": 2761 + }, + "positionPrev": { + "#": 2762 + }, + "render": { + "#": 2763 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2765 + }, + "vertices": { + "#": 2766 + } + }, + [ + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2755 + }, + "min": { + "#": 2756 + } + }, + { + "x": 336.51200000000006, + "y": 300 + }, + { + "x": 321.29600000000005, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 292 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2764 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2778 + }, + "bounds": { + "#": 2784 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "density": 0.001, + "force": { + "#": 2789 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2790 + }, + "positionImpulse": { + "#": 2791 + }, + "positionPrev": { + "#": 2792 + }, + "render": { + "#": 2793 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2795 + }, + "vertices": { + "#": 2796 + } + }, + [ + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2785 + }, + "min": { + "#": 2786 + } + }, + { + "x": 356.72800000000007, + "y": 300 + }, + { + "x": 341.51200000000006, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 292 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2794 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2808 + }, + "bounds": { + "#": 2814 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2817 + }, + "constraintImpulse": { + "#": 2818 + }, + "density": 0.001, + "force": { + "#": 2819 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2820 + }, + "positionImpulse": { + "#": 2821 + }, + "positionPrev": { + "#": 2822 + }, + "render": { + "#": 2823 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2825 + }, + "vertices": { + "#": 2826 + } + }, + [ + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2815 + }, + "min": { + "#": 2816 + } + }, + { + "x": 376.9440000000001, + "y": 300 + }, + { + "x": 361.72800000000007, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 292 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2824 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2838 + }, + "bounds": { + "#": 2844 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2847 + }, + "constraintImpulse": { + "#": 2848 + }, + "density": 0.001, + "force": { + "#": 2849 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2850 + }, + "positionImpulse": { + "#": 2851 + }, + "positionPrev": { + "#": 2852 + }, + "render": { + "#": 2853 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2855 + }, + "vertices": { + "#": 2856 + } + }, + [ + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2845 + }, + "min": { + "#": 2846 + } + }, + { + "x": 397.1600000000001, + "y": 300 + }, + { + "x": 381.9440000000001, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 292 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2854 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2868 + }, + "bounds": { + "#": 2874 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2877 + }, + "constraintImpulse": { + "#": 2878 + }, + "density": 0.001, + "force": { + "#": 2879 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2880 + }, + "positionImpulse": { + "#": 2881 + }, + "positionPrev": { + "#": 2882 + }, + "render": { + "#": 2883 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2885 + }, + "vertices": { + "#": 2886 + } + }, + [ + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2875 + }, + "min": { + "#": 2876 + } + }, + { + "x": 417.3760000000001, + "y": 300 + }, + { + "x": 402.1600000000001, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 292 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2884 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2898 + }, + "bounds": { + "#": 2904 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2907 + }, + "constraintImpulse": { + "#": 2908 + }, + "density": 0.001, + "force": { + "#": 2909 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2910 + }, + "positionImpulse": { + "#": 2911 + }, + "positionPrev": { + "#": 2912 + }, + "render": { + "#": 2913 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2915 + }, + "vertices": { + "#": 2916 + } + }, + [ + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2905 + }, + "min": { + "#": 2906 + } + }, + { + "x": 437.5920000000001, + "y": 300 + }, + { + "x": 422.3760000000001, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 292 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2914 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2928 + }, + "bounds": { + "#": 2934 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2937 + }, + "constraintImpulse": { + "#": 2938 + }, + "density": 0.001, + "force": { + "#": 2939 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2940 + }, + "positionImpulse": { + "#": 2941 + }, + "positionPrev": { + "#": 2942 + }, + "render": { + "#": 2943 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2945 + }, + "vertices": { + "#": 2946 + } + }, + [ + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2935 + }, + "min": { + "#": 2936 + } + }, + { + "x": 457.8080000000001, + "y": 300 + }, + { + "x": 442.5920000000001, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 292 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2944 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2947 + }, + { + "#": 2948 + }, + { + "#": 2949 + }, + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2958 + }, + "bounds": { + "#": 2964 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2967 + }, + "constraintImpulse": { + "#": 2968 + }, + "density": 0.001, + "force": { + "#": 2969 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2970 + }, + "positionImpulse": { + "#": 2971 + }, + "positionPrev": { + "#": 2972 + }, + "render": { + "#": 2973 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2975 + }, + "vertices": { + "#": 2976 + } + }, + [ + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2965 + }, + "min": { + "#": 2966 + } + }, + { + "x": 478.0240000000001, + "y": 300 + }, + { + "x": 462.8080000000001, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 292 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2974 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + }, + { + "#": 2984 + }, + { + "#": 2985 + }, + { + "#": 2986 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2988 + }, + "bounds": { + "#": 2994 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2997 + }, + "constraintImpulse": { + "#": 2998 + }, + "density": 0.001, + "force": { + "#": 2999 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3000 + }, + "positionImpulse": { + "#": 3001 + }, + "positionPrev": { + "#": 3002 + }, + "render": { + "#": 3003 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3005 + }, + "vertices": { + "#": 3006 + } + }, + [ + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2995 + }, + "min": { + "#": 2996 + } + }, + { + "x": 498.2400000000001, + "y": 300 + }, + { + "x": 483.0240000000001, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 292 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3004 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3018 + }, + "bounds": { + "#": 3024 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3027 + }, + "constraintImpulse": { + "#": 3028 + }, + "density": 0.001, + "force": { + "#": 3029 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3030 + }, + "positionImpulse": { + "#": 3031 + }, + "positionPrev": { + "#": 3032 + }, + "render": { + "#": 3033 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3035 + }, + "vertices": { + "#": 3036 + } + }, + [ + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3025 + }, + "min": { + "#": 3026 + } + }, + { + "x": 518.4560000000001, + "y": 300 + }, + { + "x": 503.2400000000001, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 292 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3034 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3037 + }, + { + "#": 3038 + }, + { + "#": 3039 + }, + { + "#": 3040 + }, + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + }, + { + "#": 3046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3048 + }, + "bounds": { + "#": 3054 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3057 + }, + "constraintImpulse": { + "#": 3058 + }, + "density": 0.001, + "force": { + "#": 3059 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3060 + }, + "positionImpulse": { + "#": 3061 + }, + "positionPrev": { + "#": 3062 + }, + "render": { + "#": 3063 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3065 + }, + "vertices": { + "#": 3066 + } + }, + [ + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3055 + }, + "min": { + "#": 3056 + } + }, + { + "x": 538.672, + "y": 300 + }, + { + "x": 523.4560000000001, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 292 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3064 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3078 + }, + "bounds": { + "#": 3084 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3087 + }, + "constraintImpulse": { + "#": 3088 + }, + "density": 0.001, + "force": { + "#": 3089 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3090 + }, + "positionImpulse": { + "#": 3091 + }, + "positionPrev": { + "#": 3092 + }, + "render": { + "#": 3093 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3095 + }, + "vertices": { + "#": 3096 + } + }, + [ + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3085 + }, + "min": { + "#": 3086 + } + }, + { + "x": 558.8879999999999, + "y": 300 + }, + { + "x": 543.672, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 292 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3094 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + }, + { + "#": 3106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3108 + }, + "bounds": { + "#": 3114 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3117 + }, + "constraintImpulse": { + "#": 3118 + }, + "density": 0.001, + "force": { + "#": 3119 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3120 + }, + "positionImpulse": { + "#": 3121 + }, + "positionPrev": { + "#": 3122 + }, + "render": { + "#": 3123 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3125 + }, + "vertices": { + "#": 3126 + } + }, + [ + { + "#": 3109 + }, + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3115 + }, + "min": { + "#": 3116 + } + }, + { + "x": 579.1039999999998, + "y": 300 + }, + { + "x": 563.8879999999999, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 292 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3124 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3138 + }, + "bounds": { + "#": 3144 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3147 + }, + "constraintImpulse": { + "#": 3148 + }, + "density": 0.001, + "force": { + "#": 3149 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3150 + }, + "positionImpulse": { + "#": 3151 + }, + "positionPrev": { + "#": 3152 + }, + "render": { + "#": 3153 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3155 + }, + "vertices": { + "#": 3156 + } + }, + [ + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3145 + }, + "min": { + "#": 3146 + } + }, + { + "x": 599.3199999999997, + "y": 300 + }, + { + "x": 584.1039999999998, + "y": 284 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 292 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3154 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 294.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 298.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 298.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 294.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 289.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 285.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 284 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 285.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 289.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3168 + }, + "bounds": { + "#": 3174 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3177 + }, + "constraintImpulse": { + "#": 3178 + }, + "density": 0.001, + "force": { + "#": 3179 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3180 + }, + "positionImpulse": { + "#": 3181 + }, + "positionPrev": { + "#": 3182 + }, + "render": { + "#": 3183 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3185 + }, + "vertices": { + "#": 3186 + } + }, + [ + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3175 + }, + "min": { + "#": 3176 + } + }, + { + "x": 215.216, + "y": 321 + }, + { + "x": 200, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 313 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3184 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + }, + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3198 + }, + "bounds": { + "#": 3204 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3207 + }, + "constraintImpulse": { + "#": 3208 + }, + "density": 0.001, + "force": { + "#": 3209 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3210 + }, + "positionImpulse": { + "#": 3211 + }, + "positionPrev": { + "#": 3212 + }, + "render": { + "#": 3213 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3215 + }, + "vertices": { + "#": 3216 + } + }, + [ + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3205 + }, + "min": { + "#": 3206 + } + }, + { + "x": 235.43200000000002, + "y": 321 + }, + { + "x": 220.216, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 313 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3214 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3228 + }, + "bounds": { + "#": 3234 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3237 + }, + "constraintImpulse": { + "#": 3238 + }, + "density": 0.001, + "force": { + "#": 3239 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3240 + }, + "positionImpulse": { + "#": 3241 + }, + "positionPrev": { + "#": 3242 + }, + "render": { + "#": 3243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3245 + }, + "vertices": { + "#": 3246 + } + }, + [ + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3235 + }, + "min": { + "#": 3236 + } + }, + { + "x": 255.64800000000002, + "y": 321 + }, + { + "x": 240.43200000000002, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 313 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3244 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3247 + }, + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3258 + }, + "bounds": { + "#": 3264 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3267 + }, + "constraintImpulse": { + "#": 3268 + }, + "density": 0.001, + "force": { + "#": 3269 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 108, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3270 + }, + "positionImpulse": { + "#": 3271 + }, + "positionPrev": { + "#": 3272 + }, + "render": { + "#": 3273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3275 + }, + "vertices": { + "#": 3276 + } + }, + [ + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3265 + }, + "min": { + "#": 3266 + } + }, + { + "x": 275.86400000000003, + "y": 321 + }, + { + "x": 260.648, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3274 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3288 + }, + "bounds": { + "#": 3294 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3297 + }, + "constraintImpulse": { + "#": 3298 + }, + "density": 0.001, + "force": { + "#": 3299 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3300 + }, + "positionImpulse": { + "#": 3301 + }, + "positionPrev": { + "#": 3302 + }, + "render": { + "#": 3303 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3305 + }, + "vertices": { + "#": 3306 + } + }, + [ + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3295 + }, + "min": { + "#": 3296 + } + }, + { + "x": 296.08000000000004, + "y": 321 + }, + { + "x": 280.86400000000003, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 313 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3304 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3318 + }, + "bounds": { + "#": 3324 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3327 + }, + "constraintImpulse": { + "#": 3328 + }, + "density": 0.001, + "force": { + "#": 3329 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 110, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3330 + }, + "positionImpulse": { + "#": 3331 + }, + "positionPrev": { + "#": 3332 + }, + "render": { + "#": 3333 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3335 + }, + "vertices": { + "#": 3336 + } + }, + [ + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3325 + }, + "min": { + "#": 3326 + } + }, + { + "x": 316.29600000000005, + "y": 321 + }, + { + "x": 301.08000000000004, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 313 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3334 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + }, + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3348 + }, + "bounds": { + "#": 3354 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3357 + }, + "constraintImpulse": { + "#": 3358 + }, + "density": 0.001, + "force": { + "#": 3359 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 111, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3360 + }, + "positionImpulse": { + "#": 3361 + }, + "positionPrev": { + "#": 3362 + }, + "render": { + "#": 3363 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3365 + }, + "vertices": { + "#": 3366 + } + }, + [ + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3355 + }, + "min": { + "#": 3356 + } + }, + { + "x": 336.51200000000006, + "y": 321 + }, + { + "x": 321.29600000000005, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3364 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3378 + }, + "bounds": { + "#": 3384 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3387 + }, + "constraintImpulse": { + "#": 3388 + }, + "density": 0.001, + "force": { + "#": 3389 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3390 + }, + "positionImpulse": { + "#": 3391 + }, + "positionPrev": { + "#": 3392 + }, + "render": { + "#": 3393 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3395 + }, + "vertices": { + "#": 3396 + } + }, + [ + { + "#": 3379 + }, + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3385 + }, + "min": { + "#": 3386 + } + }, + { + "x": 356.72800000000007, + "y": 321 + }, + { + "x": 341.51200000000006, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3394 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3408 + }, + "bounds": { + "#": 3414 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3417 + }, + "constraintImpulse": { + "#": 3418 + }, + "density": 0.001, + "force": { + "#": 3419 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 113, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3420 + }, + "positionImpulse": { + "#": 3421 + }, + "positionPrev": { + "#": 3422 + }, + "render": { + "#": 3423 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3425 + }, + "vertices": { + "#": 3426 + } + }, + [ + { + "#": 3409 + }, + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3415 + }, + "min": { + "#": 3416 + } + }, + { + "x": 376.9440000000001, + "y": 321 + }, + { + "x": 361.72800000000007, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3424 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + }, + { + "#": 3435 + }, + { + "#": 3436 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3438 + }, + "bounds": { + "#": 3444 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3447 + }, + "constraintImpulse": { + "#": 3448 + }, + "density": 0.001, + "force": { + "#": 3449 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 114, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3450 + }, + "positionImpulse": { + "#": 3451 + }, + "positionPrev": { + "#": 3452 + }, + "render": { + "#": 3453 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3455 + }, + "vertices": { + "#": 3456 + } + }, + [ + { + "#": 3439 + }, + { + "#": 3440 + }, + { + "#": 3441 + }, + { + "#": 3442 + }, + { + "#": 3443 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3445 + }, + "min": { + "#": 3446 + } + }, + { + "x": 397.1600000000001, + "y": 321 + }, + { + "x": 381.9440000000001, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3454 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + }, + { + "#": 3466 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3468 + }, + "bounds": { + "#": 3474 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3477 + }, + "constraintImpulse": { + "#": 3478 + }, + "density": 0.001, + "force": { + "#": 3479 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3480 + }, + "positionImpulse": { + "#": 3481 + }, + "positionPrev": { + "#": 3482 + }, + "render": { + "#": 3483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3485 + }, + "vertices": { + "#": 3486 + } + }, + [ + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3475 + }, + "min": { + "#": 3476 + } + }, + { + "x": 417.3760000000001, + "y": 321 + }, + { + "x": 402.1600000000001, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3484 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3487 + }, + { + "#": 3488 + }, + { + "#": 3489 + }, + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3498 + }, + "bounds": { + "#": 3504 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3507 + }, + "constraintImpulse": { + "#": 3508 + }, + "density": 0.001, + "force": { + "#": 3509 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 116, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3510 + }, + "positionImpulse": { + "#": 3511 + }, + "positionPrev": { + "#": 3512 + }, + "render": { + "#": 3513 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3515 + }, + "vertices": { + "#": 3516 + } + }, + [ + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3505 + }, + "min": { + "#": 3506 + } + }, + { + "x": 437.5920000000001, + "y": 321 + }, + { + "x": 422.3760000000001, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3514 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + }, + { + "#": 3521 + }, + { + "#": 3522 + }, + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3528 + }, + "bounds": { + "#": 3534 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3537 + }, + "constraintImpulse": { + "#": 3538 + }, + "density": 0.001, + "force": { + "#": 3539 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 117, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3540 + }, + "positionImpulse": { + "#": 3541 + }, + "positionPrev": { + "#": 3542 + }, + "render": { + "#": 3543 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3545 + }, + "vertices": { + "#": 3546 + } + }, + [ + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + }, + { + "#": 3533 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3535 + }, + "min": { + "#": 3536 + } + }, + { + "x": 457.8080000000001, + "y": 321 + }, + { + "x": 442.5920000000001, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 313 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3544 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3558 + }, + "bounds": { + "#": 3564 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3567 + }, + "constraintImpulse": { + "#": 3568 + }, + "density": 0.001, + "force": { + "#": 3569 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3570 + }, + "positionImpulse": { + "#": 3571 + }, + "positionPrev": { + "#": 3572 + }, + "render": { + "#": 3573 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3575 + }, + "vertices": { + "#": 3576 + } + }, + [ + { + "#": 3559 + }, + { + "#": 3560 + }, + { + "#": 3561 + }, + { + "#": 3562 + }, + { + "#": 3563 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3565 + }, + "min": { + "#": 3566 + } + }, + { + "x": 478.0240000000001, + "y": 321 + }, + { + "x": 462.8080000000001, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3574 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + }, + { + "#": 3583 + }, + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3588 + }, + "bounds": { + "#": 3594 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3597 + }, + "constraintImpulse": { + "#": 3598 + }, + "density": 0.001, + "force": { + "#": 3599 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 119, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3600 + }, + "positionImpulse": { + "#": 3601 + }, + "positionPrev": { + "#": 3602 + }, + "render": { + "#": 3603 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3605 + }, + "vertices": { + "#": 3606 + } + }, + [ + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3595 + }, + "min": { + "#": 3596 + } + }, + { + "x": 498.2400000000001, + "y": 321 + }, + { + "x": 483.0240000000001, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3604 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + }, + { + "#": 3616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3618 + }, + "bounds": { + "#": 3624 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3627 + }, + "constraintImpulse": { + "#": 3628 + }, + "density": 0.001, + "force": { + "#": 3629 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 120, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3630 + }, + "positionImpulse": { + "#": 3631 + }, + "positionPrev": { + "#": 3632 + }, + "render": { + "#": 3633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3635 + }, + "vertices": { + "#": 3636 + } + }, + [ + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3625 + }, + "min": { + "#": 3626 + } + }, + { + "x": 518.4560000000001, + "y": 321 + }, + { + "x": 503.2400000000001, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 313 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3634 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3648 + }, + "bounds": { + "#": 3654 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3657 + }, + "constraintImpulse": { + "#": 3658 + }, + "density": 0.001, + "force": { + "#": 3659 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3660 + }, + "positionImpulse": { + "#": 3661 + }, + "positionPrev": { + "#": 3662 + }, + "render": { + "#": 3663 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3665 + }, + "vertices": { + "#": 3666 + } + }, + [ + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3655 + }, + "min": { + "#": 3656 + } + }, + { + "x": 538.672, + "y": 321 + }, + { + "x": 523.4560000000001, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 313 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3664 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3678 + }, + "bounds": { + "#": 3684 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3687 + }, + "constraintImpulse": { + "#": 3688 + }, + "density": 0.001, + "force": { + "#": 3689 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 122, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3690 + }, + "positionImpulse": { + "#": 3691 + }, + "positionPrev": { + "#": 3692 + }, + "render": { + "#": 3693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3695 + }, + "vertices": { + "#": 3696 + } + }, + [ + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + }, + { + "#": 3683 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3685 + }, + "min": { + "#": 3686 + } + }, + { + "x": 558.8879999999999, + "y": 321 + }, + { + "x": 543.672, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 313 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3694 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3708 + }, + "bounds": { + "#": 3714 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3717 + }, + "constraintImpulse": { + "#": 3718 + }, + "density": 0.001, + "force": { + "#": 3719 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 123, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3720 + }, + "positionImpulse": { + "#": 3721 + }, + "positionPrev": { + "#": 3722 + }, + "render": { + "#": 3723 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3725 + }, + "vertices": { + "#": 3726 + } + }, + [ + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3715 + }, + "min": { + "#": 3716 + } + }, + { + "x": 579.1039999999998, + "y": 321 + }, + { + "x": 563.8879999999999, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 313 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3724 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + }, + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3738 + }, + "bounds": { + "#": 3744 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3747 + }, + "constraintImpulse": { + "#": 3748 + }, + "density": 0.001, + "force": { + "#": 3749 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3750 + }, + "positionImpulse": { + "#": 3751 + }, + "positionPrev": { + "#": 3752 + }, + "render": { + "#": 3753 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3755 + }, + "vertices": { + "#": 3756 + } + }, + [ + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3745 + }, + "min": { + "#": 3746 + } + }, + { + "x": 599.3199999999997, + "y": 321 + }, + { + "x": 584.1039999999998, + "y": 305 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 313 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3754 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3757 + }, + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 315.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 319.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 321 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 319.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 315.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 310.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 306.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 305 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 306.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 310.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3768 + }, + "bounds": { + "#": 3774 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3777 + }, + "constraintImpulse": { + "#": 3778 + }, + "density": 0.001, + "force": { + "#": 3779 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 125, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3780 + }, + "positionImpulse": { + "#": 3781 + }, + "positionPrev": { + "#": 3782 + }, + "render": { + "#": 3783 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3785 + }, + "vertices": { + "#": 3786 + } + }, + [ + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3775 + }, + "min": { + "#": 3776 + } + }, + { + "x": 215.216, + "y": 342 + }, + { + "x": 200, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 334 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3784 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3787 + }, + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + }, + { + "#": 3792 + }, + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3798 + }, + "bounds": { + "#": 3804 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3807 + }, + "constraintImpulse": { + "#": 3808 + }, + "density": 0.001, + "force": { + "#": 3809 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 126, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3810 + }, + "positionImpulse": { + "#": 3811 + }, + "positionPrev": { + "#": 3812 + }, + "render": { + "#": 3813 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3815 + }, + "vertices": { + "#": 3816 + } + }, + [ + { + "#": 3799 + }, + { + "#": 3800 + }, + { + "#": 3801 + }, + { + "#": 3802 + }, + { + "#": 3803 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3805 + }, + "min": { + "#": 3806 + } + }, + { + "x": 235.43200000000002, + "y": 342 + }, + { + "x": 220.216, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 334 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3814 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3828 + }, + "bounds": { + "#": 3834 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3837 + }, + "constraintImpulse": { + "#": 3838 + }, + "density": 0.001, + "force": { + "#": 3839 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3840 + }, + "positionImpulse": { + "#": 3841 + }, + "positionPrev": { + "#": 3842 + }, + "render": { + "#": 3843 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3845 + }, + "vertices": { + "#": 3846 + } + }, + [ + { + "#": 3829 + }, + { + "#": 3830 + }, + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3835 + }, + "min": { + "#": 3836 + } + }, + { + "x": 255.64800000000002, + "y": 342 + }, + { + "x": 240.43200000000002, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 334 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3844 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3858 + }, + "bounds": { + "#": 3864 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3867 + }, + "constraintImpulse": { + "#": 3868 + }, + "density": 0.001, + "force": { + "#": 3869 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 128, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3870 + }, + "positionImpulse": { + "#": 3871 + }, + "positionPrev": { + "#": 3872 + }, + "render": { + "#": 3873 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3875 + }, + "vertices": { + "#": 3876 + } + }, + [ + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3865 + }, + "min": { + "#": 3866 + } + }, + { + "x": 275.86400000000003, + "y": 342 + }, + { + "x": 260.648, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 334 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3874 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + }, + { + "#": 3880 + }, + { + "#": 3881 + }, + { + "#": 3882 + }, + { + "#": 3883 + }, + { + "#": 3884 + }, + { + "#": 3885 + }, + { + "#": 3886 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3888 + }, + "bounds": { + "#": 3894 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3897 + }, + "constraintImpulse": { + "#": 3898 + }, + "density": 0.001, + "force": { + "#": 3899 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 129, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3900 + }, + "positionImpulse": { + "#": 3901 + }, + "positionPrev": { + "#": 3902 + }, + "render": { + "#": 3903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3905 + }, + "vertices": { + "#": 3906 + } + }, + [ + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + }, + { + "#": 3893 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3895 + }, + "min": { + "#": 3896 + } + }, + { + "x": 296.08000000000004, + "y": 342 + }, + { + "x": 280.86400000000003, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 334 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3904 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3907 + }, + { + "#": 3908 + }, + { + "#": 3909 + }, + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + }, + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3918 + }, + "bounds": { + "#": 3924 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3927 + }, + "constraintImpulse": { + "#": 3928 + }, + "density": 0.001, + "force": { + "#": 3929 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3930 + }, + "positionImpulse": { + "#": 3931 + }, + "positionPrev": { + "#": 3932 + }, + "render": { + "#": 3933 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3935 + }, + "vertices": { + "#": 3936 + } + }, + [ + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3925 + }, + "min": { + "#": 3926 + } + }, + { + "x": 316.29600000000005, + "y": 342 + }, + { + "x": 301.08000000000004, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 334 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3934 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3937 + }, + { + "#": 3938 + }, + { + "#": 3939 + }, + { + "#": 3940 + }, + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3948 + }, + "bounds": { + "#": 3954 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3957 + }, + "constraintImpulse": { + "#": 3958 + }, + "density": 0.001, + "force": { + "#": 3959 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 131, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3960 + }, + "positionImpulse": { + "#": 3961 + }, + "positionPrev": { + "#": 3962 + }, + "render": { + "#": 3963 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3965 + }, + "vertices": { + "#": 3966 + } + }, + [ + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3955 + }, + "min": { + "#": 3956 + } + }, + { + "x": 336.51200000000006, + "y": 342 + }, + { + "x": 321.29600000000005, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 334 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3964 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3967 + }, + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + }, + { + "#": 3975 + }, + { + "#": 3976 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3978 + }, + "bounds": { + "#": 3984 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3987 + }, + "constraintImpulse": { + "#": 3988 + }, + "density": 0.001, + "force": { + "#": 3989 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 132, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3990 + }, + "positionImpulse": { + "#": 3991 + }, + "positionPrev": { + "#": 3992 + }, + "render": { + "#": 3993 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3995 + }, + "vertices": { + "#": 3996 + } + }, + [ + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3985 + }, + "min": { + "#": 3986 + } + }, + { + "x": 356.72800000000007, + "y": 342 + }, + { + "x": 341.51200000000006, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 334 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3994 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3997 + }, + { + "#": 3998 + }, + { + "#": 3999 + }, + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + }, + { + "#": 4006 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4008 + }, + "bounds": { + "#": 4014 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4017 + }, + "constraintImpulse": { + "#": 4018 + }, + "density": 0.001, + "force": { + "#": 4019 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4020 + }, + "positionImpulse": { + "#": 4021 + }, + "positionPrev": { + "#": 4022 + }, + "render": { + "#": 4023 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4025 + }, + "vertices": { + "#": 4026 + } + }, + [ + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4015 + }, + "min": { + "#": 4016 + } + }, + { + "x": 376.9440000000001, + "y": 342 + }, + { + "x": 361.72800000000007, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 334 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4024 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4027 + }, + { + "#": 4028 + }, + { + "#": 4029 + }, + { + "#": 4030 + }, + { + "#": 4031 + }, + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4038 + }, + "bounds": { + "#": 4044 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4047 + }, + "constraintImpulse": { + "#": 4048 + }, + "density": 0.001, + "force": { + "#": 4049 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 134, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4050 + }, + "positionImpulse": { + "#": 4051 + }, + "positionPrev": { + "#": 4052 + }, + "render": { + "#": 4053 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4055 + }, + "vertices": { + "#": 4056 + } + }, + [ + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4045 + }, + "min": { + "#": 4046 + } + }, + { + "x": 397.1600000000001, + "y": 342 + }, + { + "x": 381.9440000000001, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 334 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4054 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + }, + { + "#": 4066 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4068 + }, + "bounds": { + "#": 4074 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4077 + }, + "constraintImpulse": { + "#": 4078 + }, + "density": 0.001, + "force": { + "#": 4079 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 135, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4080 + }, + "positionImpulse": { + "#": 4081 + }, + "positionPrev": { + "#": 4082 + }, + "render": { + "#": 4083 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4085 + }, + "vertices": { + "#": 4086 + } + }, + [ + { + "#": 4069 + }, + { + "#": 4070 + }, + { + "#": 4071 + }, + { + "#": 4072 + }, + { + "#": 4073 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4075 + }, + "min": { + "#": 4076 + } + }, + { + "x": 417.3760000000001, + "y": 342 + }, + { + "x": 402.1600000000001, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 334 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4084 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4098 + }, + "bounds": { + "#": 4104 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4107 + }, + "constraintImpulse": { + "#": 4108 + }, + "density": 0.001, + "force": { + "#": 4109 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4110 + }, + "positionImpulse": { + "#": 4111 + }, + "positionPrev": { + "#": 4112 + }, + "render": { + "#": 4113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4115 + }, + "vertices": { + "#": 4116 + } + }, + [ + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4105 + }, + "min": { + "#": 4106 + } + }, + { + "x": 437.5920000000001, + "y": 342 + }, + { + "x": 422.3760000000001, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 334 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4114 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4117 + }, + { + "#": 4118 + }, + { + "#": 4119 + }, + { + "#": 4120 + }, + { + "#": 4121 + }, + { + "#": 4122 + }, + { + "#": 4123 + }, + { + "#": 4124 + }, + { + "#": 4125 + }, + { + "#": 4126 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4128 + }, + "bounds": { + "#": 4134 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4137 + }, + "constraintImpulse": { + "#": 4138 + }, + "density": 0.001, + "force": { + "#": 4139 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 137, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4140 + }, + "positionImpulse": { + "#": 4141 + }, + "positionPrev": { + "#": 4142 + }, + "render": { + "#": 4143 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4145 + }, + "vertices": { + "#": 4146 + } + }, + [ + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4135 + }, + "min": { + "#": 4136 + } + }, + { + "x": 457.8080000000001, + "y": 342 + }, + { + "x": 442.5920000000001, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 334 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4144 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4158 + }, + "bounds": { + "#": 4164 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4167 + }, + "constraintImpulse": { + "#": 4168 + }, + "density": 0.001, + "force": { + "#": 4169 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 138, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4170 + }, + "positionImpulse": { + "#": 4171 + }, + "positionPrev": { + "#": 4172 + }, + "render": { + "#": 4173 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4175 + }, + "vertices": { + "#": 4176 + } + }, + [ + { + "#": 4159 + }, + { + "#": 4160 + }, + { + "#": 4161 + }, + { + "#": 4162 + }, + { + "#": 4163 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4165 + }, + "min": { + "#": 4166 + } + }, + { + "x": 478.0240000000001, + "y": 342 + }, + { + "x": 462.8080000000001, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 334 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4174 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4188 + }, + "bounds": { + "#": 4194 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4197 + }, + "constraintImpulse": { + "#": 4198 + }, + "density": 0.001, + "force": { + "#": 4199 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4200 + }, + "positionImpulse": { + "#": 4201 + }, + "positionPrev": { + "#": 4202 + }, + "render": { + "#": 4203 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4205 + }, + "vertices": { + "#": 4206 + } + }, + [ + { + "#": 4189 + }, + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4195 + }, + "min": { + "#": 4196 + } + }, + { + "x": 498.2400000000001, + "y": 342 + }, + { + "x": 483.0240000000001, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 334 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4204 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + }, + { + "#": 4210 + }, + { + "#": 4211 + }, + { + "#": 4212 + }, + { + "#": 4213 + }, + { + "#": 4214 + }, + { + "#": 4215 + }, + { + "#": 4216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4218 + }, + "bounds": { + "#": 4224 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4227 + }, + "constraintImpulse": { + "#": 4228 + }, + "density": 0.001, + "force": { + "#": 4229 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 140, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4230 + }, + "positionImpulse": { + "#": 4231 + }, + "positionPrev": { + "#": 4232 + }, + "render": { + "#": 4233 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4235 + }, + "vertices": { + "#": 4236 + } + }, + [ + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + }, + { + "#": 4222 + }, + { + "#": 4223 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4225 + }, + "min": { + "#": 4226 + } + }, + { + "x": 518.4560000000001, + "y": 342 + }, + { + "x": 503.2400000000001, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 334 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4234 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4248 + }, + "bounds": { + "#": 4254 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4257 + }, + "constraintImpulse": { + "#": 4258 + }, + "density": 0.001, + "force": { + "#": 4259 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 141, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4260 + }, + "positionImpulse": { + "#": 4261 + }, + "positionPrev": { + "#": 4262 + }, + "render": { + "#": 4263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4265 + }, + "vertices": { + "#": 4266 + } + }, + [ + { + "#": 4249 + }, + { + "#": 4250 + }, + { + "#": 4251 + }, + { + "#": 4252 + }, + { + "#": 4253 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4255 + }, + "min": { + "#": 4256 + } + }, + { + "x": 538.672, + "y": 342 + }, + { + "x": 523.4560000000001, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 334 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4264 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + }, + { + "#": 4271 + }, + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + }, + { + "#": 4276 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4278 + }, + "bounds": { + "#": 4284 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4287 + }, + "constraintImpulse": { + "#": 4288 + }, + "density": 0.001, + "force": { + "#": 4289 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4290 + }, + "positionImpulse": { + "#": 4291 + }, + "positionPrev": { + "#": 4292 + }, + "render": { + "#": 4293 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4295 + }, + "vertices": { + "#": 4296 + } + }, + [ + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + }, + { + "#": 4282 + }, + { + "#": 4283 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4285 + }, + "min": { + "#": 4286 + } + }, + { + "x": 558.8879999999999, + "y": 342 + }, + { + "x": 543.672, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 334 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4294 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4297 + }, + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + }, + { + "#": 4303 + }, + { + "#": 4304 + }, + { + "#": 4305 + }, + { + "#": 4306 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4308 + }, + "bounds": { + "#": 4314 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4317 + }, + "constraintImpulse": { + "#": 4318 + }, + "density": 0.001, + "force": { + "#": 4319 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 143, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4320 + }, + "positionImpulse": { + "#": 4321 + }, + "positionPrev": { + "#": 4322 + }, + "render": { + "#": 4323 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4325 + }, + "vertices": { + "#": 4326 + } + }, + [ + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4315 + }, + "min": { + "#": 4316 + } + }, + { + "x": 579.1039999999998, + "y": 342 + }, + { + "x": 563.8879999999999, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 334 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4324 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4327 + }, + { + "#": 4328 + }, + { + "#": 4329 + }, + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4338 + }, + "bounds": { + "#": 4344 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4347 + }, + "constraintImpulse": { + "#": 4348 + }, + "density": 0.001, + "force": { + "#": 4349 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 144, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4350 + }, + "positionImpulse": { + "#": 4351 + }, + "positionPrev": { + "#": 4352 + }, + "render": { + "#": 4353 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4355 + }, + "vertices": { + "#": 4356 + } + }, + [ + { + "#": 4339 + }, + { + "#": 4340 + }, + { + "#": 4341 + }, + { + "#": 4342 + }, + { + "#": 4343 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4345 + }, + "min": { + "#": 4346 + } + }, + { + "x": 599.3199999999997, + "y": 342 + }, + { + "x": 584.1039999999998, + "y": 326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 334 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4354 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4357 + }, + { + "#": 4358 + }, + { + "#": 4359 + }, + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 336.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 340.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 340.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 336.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 331.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 327.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 327.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 331.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4368 + }, + "bounds": { + "#": 4374 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4377 + }, + "constraintImpulse": { + "#": 4378 + }, + "density": 0.001, + "force": { + "#": 4379 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4380 + }, + "positionImpulse": { + "#": 4381 + }, + "positionPrev": { + "#": 4382 + }, + "render": { + "#": 4383 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4385 + }, + "vertices": { + "#": 4386 + } + }, + [ + { + "#": 4369 + }, + { + "#": 4370 + }, + { + "#": 4371 + }, + { + "#": 4372 + }, + { + "#": 4373 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4375 + }, + "min": { + "#": 4376 + } + }, + { + "x": 215.216, + "y": 363 + }, + { + "x": 200, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 355 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4384 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4398 + }, + "bounds": { + "#": 4404 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4407 + }, + "constraintImpulse": { + "#": 4408 + }, + "density": 0.001, + "force": { + "#": 4409 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 146, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4410 + }, + "positionImpulse": { + "#": 4411 + }, + "positionPrev": { + "#": 4412 + }, + "render": { + "#": 4413 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4415 + }, + "vertices": { + "#": 4416 + } + }, + [ + { + "#": 4399 + }, + { + "#": 4400 + }, + { + "#": 4401 + }, + { + "#": 4402 + }, + { + "#": 4403 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4405 + }, + "min": { + "#": 4406 + } + }, + { + "x": 235.43200000000002, + "y": 363 + }, + { + "x": 220.216, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 355 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4414 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4417 + }, + { + "#": 4418 + }, + { + "#": 4419 + }, + { + "#": 4420 + }, + { + "#": 4421 + }, + { + "#": 4422 + }, + { + "#": 4423 + }, + { + "#": 4424 + }, + { + "#": 4425 + }, + { + "#": 4426 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4428 + }, + "bounds": { + "#": 4434 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4437 + }, + "constraintImpulse": { + "#": 4438 + }, + "density": 0.001, + "force": { + "#": 4439 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 147, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4440 + }, + "positionImpulse": { + "#": 4441 + }, + "positionPrev": { + "#": 4442 + }, + "render": { + "#": 4443 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4445 + }, + "vertices": { + "#": 4446 + } + }, + [ + { + "#": 4429 + }, + { + "#": 4430 + }, + { + "#": 4431 + }, + { + "#": 4432 + }, + { + "#": 4433 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4435 + }, + "min": { + "#": 4436 + } + }, + { + "x": 255.64800000000002, + "y": 363 + }, + { + "x": 240.43200000000002, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 355 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4444 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4447 + }, + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + }, + { + "#": 4452 + }, + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4458 + }, + "bounds": { + "#": 4464 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4467 + }, + "constraintImpulse": { + "#": 4468 + }, + "density": 0.001, + "force": { + "#": 4469 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4470 + }, + "positionImpulse": { + "#": 4471 + }, + "positionPrev": { + "#": 4472 + }, + "render": { + "#": 4473 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4475 + }, + "vertices": { + "#": 4476 + } + }, + [ + { + "#": 4459 + }, + { + "#": 4460 + }, + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4465 + }, + "min": { + "#": 4466 + } + }, + { + "x": 275.86400000000003, + "y": 363 + }, + { + "x": 260.648, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 355 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4474 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + }, + { + "#": 4480 + }, + { + "#": 4481 + }, + { + "#": 4482 + }, + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4488 + }, + "bounds": { + "#": 4494 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4497 + }, + "constraintImpulse": { + "#": 4498 + }, + "density": 0.001, + "force": { + "#": 4499 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 149, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4500 + }, + "positionImpulse": { + "#": 4501 + }, + "positionPrev": { + "#": 4502 + }, + "render": { + "#": 4503 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4505 + }, + "vertices": { + "#": 4506 + } + }, + [ + { + "#": 4489 + }, + { + "#": 4490 + }, + { + "#": 4491 + }, + { + "#": 4492 + }, + { + "#": 4493 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4495 + }, + "min": { + "#": 4496 + } + }, + { + "x": 296.08000000000004, + "y": 363 + }, + { + "x": 280.86400000000003, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 355 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4504 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + }, + { + "#": 4511 + }, + { + "#": 4512 + }, + { + "#": 4513 + }, + { + "#": 4514 + }, + { + "#": 4515 + }, + { + "#": 4516 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4518 + }, + "bounds": { + "#": 4524 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4527 + }, + "constraintImpulse": { + "#": 4528 + }, + "density": 0.001, + "force": { + "#": 4529 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 150, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4530 + }, + "positionImpulse": { + "#": 4531 + }, + "positionPrev": { + "#": 4532 + }, + "render": { + "#": 4533 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4535 + }, + "vertices": { + "#": 4536 + } + }, + [ + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + }, + { + "#": 4523 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4525 + }, + "min": { + "#": 4526 + } + }, + { + "x": 316.29600000000005, + "y": 363 + }, + { + "x": 301.08000000000004, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 355 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4534 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + }, + { + "#": 4545 + }, + { + "#": 4546 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4548 + }, + "bounds": { + "#": 4554 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4557 + }, + "constraintImpulse": { + "#": 4558 + }, + "density": 0.001, + "force": { + "#": 4559 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4560 + }, + "positionImpulse": { + "#": 4561 + }, + "positionPrev": { + "#": 4562 + }, + "render": { + "#": 4563 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4565 + }, + "vertices": { + "#": 4566 + } + }, + [ + { + "#": 4549 + }, + { + "#": 4550 + }, + { + "#": 4551 + }, + { + "#": 4552 + }, + { + "#": 4553 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4555 + }, + "min": { + "#": 4556 + } + }, + { + "x": 336.51200000000006, + "y": 363 + }, + { + "x": 321.29600000000005, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 355 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4564 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4567 + }, + { + "#": 4568 + }, + { + "#": 4569 + }, + { + "#": 4570 + }, + { + "#": 4571 + }, + { + "#": 4572 + }, + { + "#": 4573 + }, + { + "#": 4574 + }, + { + "#": 4575 + }, + { + "#": 4576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4578 + }, + "bounds": { + "#": 4584 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4587 + }, + "constraintImpulse": { + "#": 4588 + }, + "density": 0.001, + "force": { + "#": 4589 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 152, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4590 + }, + "positionImpulse": { + "#": 4591 + }, + "positionPrev": { + "#": 4592 + }, + "render": { + "#": 4593 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4595 + }, + "vertices": { + "#": 4596 + } + }, + [ + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4585 + }, + "min": { + "#": 4586 + } + }, + { + "x": 356.72800000000007, + "y": 363 + }, + { + "x": 341.51200000000006, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 355 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4594 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4597 + }, + { + "#": 4598 + }, + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + }, + { + "#": 4606 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4608 + }, + "bounds": { + "#": 4614 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4617 + }, + "constraintImpulse": { + "#": 4618 + }, + "density": 0.001, + "force": { + "#": 4619 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 153, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4620 + }, + "positionImpulse": { + "#": 4621 + }, + "positionPrev": { + "#": 4622 + }, + "render": { + "#": 4623 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4625 + }, + "vertices": { + "#": 4626 + } + }, + [ + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + }, + { + "#": 4613 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4615 + }, + "min": { + "#": 4616 + } + }, + { + "x": 376.9440000000001, + "y": 363 + }, + { + "x": 361.72800000000007, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 355 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4624 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4627 + }, + { + "#": 4628 + }, + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + }, + { + "#": 4636 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4638 + }, + "bounds": { + "#": 4644 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4647 + }, + "constraintImpulse": { + "#": 4648 + }, + "density": 0.001, + "force": { + "#": 4649 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4650 + }, + "positionImpulse": { + "#": 4651 + }, + "positionPrev": { + "#": 4652 + }, + "render": { + "#": 4653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4655 + }, + "vertices": { + "#": 4656 + } + }, + [ + { + "#": 4639 + }, + { + "#": 4640 + }, + { + "#": 4641 + }, + { + "#": 4642 + }, + { + "#": 4643 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4645 + }, + "min": { + "#": 4646 + } + }, + { + "x": 397.1600000000001, + "y": 363 + }, + { + "x": 381.9440000000001, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 355 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4654 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4657 + }, + { + "#": 4658 + }, + { + "#": 4659 + }, + { + "#": 4660 + }, + { + "#": 4661 + }, + { + "#": 4662 + }, + { + "#": 4663 + }, + { + "#": 4664 + }, + { + "#": 4665 + }, + { + "#": 4666 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4668 + }, + "bounds": { + "#": 4674 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4677 + }, + "constraintImpulse": { + "#": 4678 + }, + "density": 0.001, + "force": { + "#": 4679 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 155, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4680 + }, + "positionImpulse": { + "#": 4681 + }, + "positionPrev": { + "#": 4682 + }, + "render": { + "#": 4683 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4685 + }, + "vertices": { + "#": 4686 + } + }, + [ + { + "#": 4669 + }, + { + "#": 4670 + }, + { + "#": 4671 + }, + { + "#": 4672 + }, + { + "#": 4673 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4675 + }, + "min": { + "#": 4676 + } + }, + { + "x": 417.3760000000001, + "y": 363 + }, + { + "x": 402.1600000000001, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 355 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4684 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + }, + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4698 + }, + "bounds": { + "#": 4704 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4707 + }, + "constraintImpulse": { + "#": 4708 + }, + "density": 0.001, + "force": { + "#": 4709 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 156, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4710 + }, + "positionImpulse": { + "#": 4711 + }, + "positionPrev": { + "#": 4712 + }, + "render": { + "#": 4713 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4715 + }, + "vertices": { + "#": 4716 + } + }, + [ + { + "#": 4699 + }, + { + "#": 4700 + }, + { + "#": 4701 + }, + { + "#": 4702 + }, + { + "#": 4703 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4705 + }, + "min": { + "#": 4706 + } + }, + { + "x": 437.5920000000001, + "y": 363 + }, + { + "x": 422.3760000000001, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 355 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4714 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4717 + }, + { + "#": 4718 + }, + { + "#": 4719 + }, + { + "#": 4720 + }, + { + "#": 4721 + }, + { + "#": 4722 + }, + { + "#": 4723 + }, + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4728 + }, + "bounds": { + "#": 4734 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4737 + }, + "constraintImpulse": { + "#": 4738 + }, + "density": 0.001, + "force": { + "#": 4739 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4740 + }, + "positionImpulse": { + "#": 4741 + }, + "positionPrev": { + "#": 4742 + }, + "render": { + "#": 4743 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4745 + }, + "vertices": { + "#": 4746 + } + }, + [ + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + }, + { + "#": 4733 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4735 + }, + "min": { + "#": 4736 + } + }, + { + "x": 457.8080000000001, + "y": 363 + }, + { + "x": 442.5920000000001, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 355 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4744 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + }, + { + "#": 4750 + }, + { + "#": 4751 + }, + { + "#": 4752 + }, + { + "#": 4753 + }, + { + "#": 4754 + }, + { + "#": 4755 + }, + { + "#": 4756 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4758 + }, + "bounds": { + "#": 4764 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4767 + }, + "constraintImpulse": { + "#": 4768 + }, + "density": 0.001, + "force": { + "#": 4769 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 158, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4770 + }, + "positionImpulse": { + "#": 4771 + }, + "positionPrev": { + "#": 4772 + }, + "render": { + "#": 4773 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4775 + }, + "vertices": { + "#": 4776 + } + }, + [ + { + "#": 4759 + }, + { + "#": 4760 + }, + { + "#": 4761 + }, + { + "#": 4762 + }, + { + "#": 4763 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4765 + }, + "min": { + "#": 4766 + } + }, + { + "x": 478.0240000000001, + "y": 363 + }, + { + "x": 462.8080000000001, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 355 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4774 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4777 + }, + { + "#": 4778 + }, + { + "#": 4779 + }, + { + "#": 4780 + }, + { + "#": 4781 + }, + { + "#": 4782 + }, + { + "#": 4783 + }, + { + "#": 4784 + }, + { + "#": 4785 + }, + { + "#": 4786 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4788 + }, + "bounds": { + "#": 4794 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4797 + }, + "constraintImpulse": { + "#": 4798 + }, + "density": 0.001, + "force": { + "#": 4799 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 159, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4800 + }, + "positionImpulse": { + "#": 4801 + }, + "positionPrev": { + "#": 4802 + }, + "render": { + "#": 4803 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4805 + }, + "vertices": { + "#": 4806 + } + }, + [ + { + "#": 4789 + }, + { + "#": 4790 + }, + { + "#": 4791 + }, + { + "#": 4792 + }, + { + "#": 4793 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4795 + }, + "min": { + "#": 4796 + } + }, + { + "x": 498.2400000000001, + "y": 363 + }, + { + "x": 483.0240000000001, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 355 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4804 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4807 + }, + { + "#": 4808 + }, + { + "#": 4809 + }, + { + "#": 4810 + }, + { + "#": 4811 + }, + { + "#": 4812 + }, + { + "#": 4813 + }, + { + "#": 4814 + }, + { + "#": 4815 + }, + { + "#": 4816 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4818 + }, + "bounds": { + "#": 4824 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4827 + }, + "constraintImpulse": { + "#": 4828 + }, + "density": 0.001, + "force": { + "#": 4829 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 160, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4830 + }, + "positionImpulse": { + "#": 4831 + }, + "positionPrev": { + "#": 4832 + }, + "render": { + "#": 4833 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4835 + }, + "vertices": { + "#": 4836 + } + }, + [ + { + "#": 4819 + }, + { + "#": 4820 + }, + { + "#": 4821 + }, + { + "#": 4822 + }, + { + "#": 4823 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4825 + }, + "min": { + "#": 4826 + } + }, + { + "x": 518.4560000000001, + "y": 363 + }, + { + "x": 503.2400000000001, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 355 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4834 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4837 + }, + { + "#": 4838 + }, + { + "#": 4839 + }, + { + "#": 4840 + }, + { + "#": 4841 + }, + { + "#": 4842 + }, + { + "#": 4843 + }, + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4848 + }, + "bounds": { + "#": 4854 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4857 + }, + "constraintImpulse": { + "#": 4858 + }, + "density": 0.001, + "force": { + "#": 4859 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 161, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4860 + }, + "positionImpulse": { + "#": 4861 + }, + "positionPrev": { + "#": 4862 + }, + "render": { + "#": 4863 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4865 + }, + "vertices": { + "#": 4866 + } + }, + [ + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + }, + { + "#": 4852 + }, + { + "#": 4853 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4855 + }, + "min": { + "#": 4856 + } + }, + { + "x": 538.672, + "y": 363 + }, + { + "x": 523.4560000000001, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 355 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4864 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4867 + }, + { + "#": 4868 + }, + { + "#": 4869 + }, + { + "#": 4870 + }, + { + "#": 4871 + }, + { + "#": 4872 + }, + { + "#": 4873 + }, + { + "#": 4874 + }, + { + "#": 4875 + }, + { + "#": 4876 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4878 + }, + "bounds": { + "#": 4884 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4887 + }, + "constraintImpulse": { + "#": 4888 + }, + "density": 0.001, + "force": { + "#": 4889 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 162, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4890 + }, + "positionImpulse": { + "#": 4891 + }, + "positionPrev": { + "#": 4892 + }, + "render": { + "#": 4893 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4895 + }, + "vertices": { + "#": 4896 + } + }, + [ + { + "#": 4879 + }, + { + "#": 4880 + }, + { + "#": 4881 + }, + { + "#": 4882 + }, + { + "#": 4883 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4885 + }, + "min": { + "#": 4886 + } + }, + { + "x": 558.8879999999999, + "y": 363 + }, + { + "x": 543.672, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 355 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4894 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4897 + }, + { + "#": 4898 + }, + { + "#": 4899 + }, + { + "#": 4900 + }, + { + "#": 4901 + }, + { + "#": 4902 + }, + { + "#": 4903 + }, + { + "#": 4904 + }, + { + "#": 4905 + }, + { + "#": 4906 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4908 + }, + "bounds": { + "#": 4914 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4917 + }, + "constraintImpulse": { + "#": 4918 + }, + "density": 0.001, + "force": { + "#": 4919 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 163, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4920 + }, + "positionImpulse": { + "#": 4921 + }, + "positionPrev": { + "#": 4922 + }, + "render": { + "#": 4923 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4925 + }, + "vertices": { + "#": 4926 + } + }, + [ + { + "#": 4909 + }, + { + "#": 4910 + }, + { + "#": 4911 + }, + { + "#": 4912 + }, + { + "#": 4913 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4915 + }, + "min": { + "#": 4916 + } + }, + { + "x": 579.1039999999998, + "y": 363 + }, + { + "x": 563.8879999999999, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 355 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4924 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4927 + }, + { + "#": 4928 + }, + { + "#": 4929 + }, + { + "#": 4930 + }, + { + "#": 4931 + }, + { + "#": 4932 + }, + { + "#": 4933 + }, + { + "#": 4934 + }, + { + "#": 4935 + }, + { + "#": 4936 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4938 + }, + "bounds": { + "#": 4944 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4947 + }, + "constraintImpulse": { + "#": 4948 + }, + "density": 0.001, + "force": { + "#": 4949 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 164, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4950 + }, + "positionImpulse": { + "#": 4951 + }, + "positionPrev": { + "#": 4952 + }, + "render": { + "#": 4953 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4955 + }, + "vertices": { + "#": 4956 + } + }, + [ + { + "#": 4939 + }, + { + "#": 4940 + }, + { + "#": 4941 + }, + { + "#": 4942 + }, + { + "#": 4943 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4945 + }, + "min": { + "#": 4946 + } + }, + { + "x": 599.3199999999997, + "y": 363 + }, + { + "x": 584.1039999999998, + "y": 347 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 355 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4954 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4957 + }, + { + "#": 4958 + }, + { + "#": 4959 + }, + { + "#": 4960 + }, + { + "#": 4961 + }, + { + "#": 4962 + }, + { + "#": 4963 + }, + { + "#": 4964 + }, + { + "#": 4965 + }, + { + "#": 4966 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 357.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 361.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 363 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 361.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 357.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 352.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 348.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 347 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 348.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 352.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4968 + }, + "bounds": { + "#": 4974 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4977 + }, + "constraintImpulse": { + "#": 4978 + }, + "density": 0.001, + "force": { + "#": 4979 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 165, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4980 + }, + "positionImpulse": { + "#": 4981 + }, + "positionPrev": { + "#": 4982 + }, + "render": { + "#": 4983 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4985 + }, + "vertices": { + "#": 4986 + } + }, + [ + { + "#": 4969 + }, + { + "#": 4970 + }, + { + "#": 4971 + }, + { + "#": 4972 + }, + { + "#": 4973 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4975 + }, + "min": { + "#": 4976 + } + }, + { + "x": 215.216, + "y": 384 + }, + { + "x": 200, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 376 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4984 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4987 + }, + { + "#": 4988 + }, + { + "#": 4989 + }, + { + "#": 4990 + }, + { + "#": 4991 + }, + { + "#": 4992 + }, + { + "#": 4993 + }, + { + "#": 4994 + }, + { + "#": 4995 + }, + { + "#": 4996 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4998 + }, + "bounds": { + "#": 5004 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5007 + }, + "constraintImpulse": { + "#": 5008 + }, + "density": 0.001, + "force": { + "#": 5009 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 166, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5010 + }, + "positionImpulse": { + "#": 5011 + }, + "positionPrev": { + "#": 5012 + }, + "render": { + "#": 5013 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5015 + }, + "vertices": { + "#": 5016 + } + }, + [ + { + "#": 4999 + }, + { + "#": 5000 + }, + { + "#": 5001 + }, + { + "#": 5002 + }, + { + "#": 5003 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5005 + }, + "min": { + "#": 5006 + } + }, + { + "x": 235.43200000000002, + "y": 384 + }, + { + "x": 220.216, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 376 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5014 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5017 + }, + { + "#": 5018 + }, + { + "#": 5019 + }, + { + "#": 5020 + }, + { + "#": 5021 + }, + { + "#": 5022 + }, + { + "#": 5023 + }, + { + "#": 5024 + }, + { + "#": 5025 + }, + { + "#": 5026 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5028 + }, + "bounds": { + "#": 5034 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5037 + }, + "constraintImpulse": { + "#": 5038 + }, + "density": 0.001, + "force": { + "#": 5039 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 167, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5040 + }, + "positionImpulse": { + "#": 5041 + }, + "positionPrev": { + "#": 5042 + }, + "render": { + "#": 5043 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5045 + }, + "vertices": { + "#": 5046 + } + }, + [ + { + "#": 5029 + }, + { + "#": 5030 + }, + { + "#": 5031 + }, + { + "#": 5032 + }, + { + "#": 5033 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5035 + }, + "min": { + "#": 5036 + } + }, + { + "x": 255.64800000000002, + "y": 384 + }, + { + "x": 240.43200000000002, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 376 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5044 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + }, + { + "#": 5050 + }, + { + "#": 5051 + }, + { + "#": 5052 + }, + { + "#": 5053 + }, + { + "#": 5054 + }, + { + "#": 5055 + }, + { + "#": 5056 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5058 + }, + "bounds": { + "#": 5064 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5067 + }, + "constraintImpulse": { + "#": 5068 + }, + "density": 0.001, + "force": { + "#": 5069 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 168, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5070 + }, + "positionImpulse": { + "#": 5071 + }, + "positionPrev": { + "#": 5072 + }, + "render": { + "#": 5073 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5075 + }, + "vertices": { + "#": 5076 + } + }, + [ + { + "#": 5059 + }, + { + "#": 5060 + }, + { + "#": 5061 + }, + { + "#": 5062 + }, + { + "#": 5063 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5065 + }, + "min": { + "#": 5066 + } + }, + { + "x": 275.86400000000003, + "y": 384 + }, + { + "x": 260.648, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 376 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5074 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5077 + }, + { + "#": 5078 + }, + { + "#": 5079 + }, + { + "#": 5080 + }, + { + "#": 5081 + }, + { + "#": 5082 + }, + { + "#": 5083 + }, + { + "#": 5084 + }, + { + "#": 5085 + }, + { + "#": 5086 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5088 + }, + "bounds": { + "#": 5094 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5097 + }, + "constraintImpulse": { + "#": 5098 + }, + "density": 0.001, + "force": { + "#": 5099 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 169, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5100 + }, + "positionImpulse": { + "#": 5101 + }, + "positionPrev": { + "#": 5102 + }, + "render": { + "#": 5103 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5105 + }, + "vertices": { + "#": 5106 + } + }, + [ + { + "#": 5089 + }, + { + "#": 5090 + }, + { + "#": 5091 + }, + { + "#": 5092 + }, + { + "#": 5093 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5095 + }, + "min": { + "#": 5096 + } + }, + { + "x": 296.08000000000004, + "y": 384 + }, + { + "x": 280.86400000000003, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 376 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5104 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5107 + }, + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + }, + { + "#": 5112 + }, + { + "#": 5113 + }, + { + "#": 5114 + }, + { + "#": 5115 + }, + { + "#": 5116 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5118 + }, + "bounds": { + "#": 5124 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5127 + }, + "constraintImpulse": { + "#": 5128 + }, + "density": 0.001, + "force": { + "#": 5129 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 170, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5130 + }, + "positionImpulse": { + "#": 5131 + }, + "positionPrev": { + "#": 5132 + }, + "render": { + "#": 5133 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5135 + }, + "vertices": { + "#": 5136 + } + }, + [ + { + "#": 5119 + }, + { + "#": 5120 + }, + { + "#": 5121 + }, + { + "#": 5122 + }, + { + "#": 5123 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5125 + }, + "min": { + "#": 5126 + } + }, + { + "x": 316.29600000000005, + "y": 384 + }, + { + "x": 301.08000000000004, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 376 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5134 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5137 + }, + { + "#": 5138 + }, + { + "#": 5139 + }, + { + "#": 5140 + }, + { + "#": 5141 + }, + { + "#": 5142 + }, + { + "#": 5143 + }, + { + "#": 5144 + }, + { + "#": 5145 + }, + { + "#": 5146 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5148 + }, + "bounds": { + "#": 5154 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5157 + }, + "constraintImpulse": { + "#": 5158 + }, + "density": 0.001, + "force": { + "#": 5159 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 171, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5160 + }, + "positionImpulse": { + "#": 5161 + }, + "positionPrev": { + "#": 5162 + }, + "render": { + "#": 5163 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5165 + }, + "vertices": { + "#": 5166 + } + }, + [ + { + "#": 5149 + }, + { + "#": 5150 + }, + { + "#": 5151 + }, + { + "#": 5152 + }, + { + "#": 5153 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5155 + }, + "min": { + "#": 5156 + } + }, + { + "x": 336.51200000000006, + "y": 384 + }, + { + "x": 321.29600000000005, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 376 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5164 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5167 + }, + { + "#": 5168 + }, + { + "#": 5169 + }, + { + "#": 5170 + }, + { + "#": 5171 + }, + { + "#": 5172 + }, + { + "#": 5173 + }, + { + "#": 5174 + }, + { + "#": 5175 + }, + { + "#": 5176 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5178 + }, + "bounds": { + "#": 5184 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5187 + }, + "constraintImpulse": { + "#": 5188 + }, + "density": 0.001, + "force": { + "#": 5189 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 172, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5190 + }, + "positionImpulse": { + "#": 5191 + }, + "positionPrev": { + "#": 5192 + }, + "render": { + "#": 5193 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5195 + }, + "vertices": { + "#": 5196 + } + }, + [ + { + "#": 5179 + }, + { + "#": 5180 + }, + { + "#": 5181 + }, + { + "#": 5182 + }, + { + "#": 5183 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5185 + }, + "min": { + "#": 5186 + } + }, + { + "x": 356.72800000000007, + "y": 384 + }, + { + "x": 341.51200000000006, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 376 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5194 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + }, + { + "#": 5200 + }, + { + "#": 5201 + }, + { + "#": 5202 + }, + { + "#": 5203 + }, + { + "#": 5204 + }, + { + "#": 5205 + }, + { + "#": 5206 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5208 + }, + "bounds": { + "#": 5214 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5217 + }, + "constraintImpulse": { + "#": 5218 + }, + "density": 0.001, + "force": { + "#": 5219 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 173, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5220 + }, + "positionImpulse": { + "#": 5221 + }, + "positionPrev": { + "#": 5222 + }, + "render": { + "#": 5223 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5225 + }, + "vertices": { + "#": 5226 + } + }, + [ + { + "#": 5209 + }, + { + "#": 5210 + }, + { + "#": 5211 + }, + { + "#": 5212 + }, + { + "#": 5213 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5215 + }, + "min": { + "#": 5216 + } + }, + { + "x": 376.9440000000001, + "y": 384 + }, + { + "x": 361.72800000000007, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 376 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5224 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5227 + }, + { + "#": 5228 + }, + { + "#": 5229 + }, + { + "#": 5230 + }, + { + "#": 5231 + }, + { + "#": 5232 + }, + { + "#": 5233 + }, + { + "#": 5234 + }, + { + "#": 5235 + }, + { + "#": 5236 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5238 + }, + "bounds": { + "#": 5244 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5247 + }, + "constraintImpulse": { + "#": 5248 + }, + "density": 0.001, + "force": { + "#": 5249 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 174, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5250 + }, + "positionImpulse": { + "#": 5251 + }, + "positionPrev": { + "#": 5252 + }, + "render": { + "#": 5253 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5255 + }, + "vertices": { + "#": 5256 + } + }, + [ + { + "#": 5239 + }, + { + "#": 5240 + }, + { + "#": 5241 + }, + { + "#": 5242 + }, + { + "#": 5243 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5245 + }, + "min": { + "#": 5246 + } + }, + { + "x": 397.1600000000001, + "y": 384 + }, + { + "x": 381.9440000000001, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 376 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5254 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5257 + }, + { + "#": 5258 + }, + { + "#": 5259 + }, + { + "#": 5260 + }, + { + "#": 5261 + }, + { + "#": 5262 + }, + { + "#": 5263 + }, + { + "#": 5264 + }, + { + "#": 5265 + }, + { + "#": 5266 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5268 + }, + "bounds": { + "#": 5274 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5277 + }, + "constraintImpulse": { + "#": 5278 + }, + "density": 0.001, + "force": { + "#": 5279 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 175, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5280 + }, + "positionImpulse": { + "#": 5281 + }, + "positionPrev": { + "#": 5282 + }, + "render": { + "#": 5283 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5285 + }, + "vertices": { + "#": 5286 + } + }, + [ + { + "#": 5269 + }, + { + "#": 5270 + }, + { + "#": 5271 + }, + { + "#": 5272 + }, + { + "#": 5273 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5275 + }, + "min": { + "#": 5276 + } + }, + { + "x": 417.3760000000001, + "y": 384 + }, + { + "x": 402.1600000000001, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 376 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5284 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5287 + }, + { + "#": 5288 + }, + { + "#": 5289 + }, + { + "#": 5290 + }, + { + "#": 5291 + }, + { + "#": 5292 + }, + { + "#": 5293 + }, + { + "#": 5294 + }, + { + "#": 5295 + }, + { + "#": 5296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5298 + }, + "bounds": { + "#": 5304 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5307 + }, + "constraintImpulse": { + "#": 5308 + }, + "density": 0.001, + "force": { + "#": 5309 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 176, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5310 + }, + "positionImpulse": { + "#": 5311 + }, + "positionPrev": { + "#": 5312 + }, + "render": { + "#": 5313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5315 + }, + "vertices": { + "#": 5316 + } + }, + [ + { + "#": 5299 + }, + { + "#": 5300 + }, + { + "#": 5301 + }, + { + "#": 5302 + }, + { + "#": 5303 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5305 + }, + "min": { + "#": 5306 + } + }, + { + "x": 437.5920000000001, + "y": 384 + }, + { + "x": 422.3760000000001, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 376 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5314 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5317 + }, + { + "#": 5318 + }, + { + "#": 5319 + }, + { + "#": 5320 + }, + { + "#": 5321 + }, + { + "#": 5322 + }, + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + }, + { + "#": 5326 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5328 + }, + "bounds": { + "#": 5334 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5337 + }, + "constraintImpulse": { + "#": 5338 + }, + "density": 0.001, + "force": { + "#": 5339 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 177, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5340 + }, + "positionImpulse": { + "#": 5341 + }, + "positionPrev": { + "#": 5342 + }, + "render": { + "#": 5343 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5345 + }, + "vertices": { + "#": 5346 + } + }, + [ + { + "#": 5329 + }, + { + "#": 5330 + }, + { + "#": 5331 + }, + { + "#": 5332 + }, + { + "#": 5333 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5335 + }, + "min": { + "#": 5336 + } + }, + { + "x": 457.8080000000001, + "y": 384 + }, + { + "x": 442.5920000000001, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 376 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5344 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5347 + }, + { + "#": 5348 + }, + { + "#": 5349 + }, + { + "#": 5350 + }, + { + "#": 5351 + }, + { + "#": 5352 + }, + { + "#": 5353 + }, + { + "#": 5354 + }, + { + "#": 5355 + }, + { + "#": 5356 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5358 + }, + "bounds": { + "#": 5364 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5367 + }, + "constraintImpulse": { + "#": 5368 + }, + "density": 0.001, + "force": { + "#": 5369 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 178, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5370 + }, + "positionImpulse": { + "#": 5371 + }, + "positionPrev": { + "#": 5372 + }, + "render": { + "#": 5373 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5375 + }, + "vertices": { + "#": 5376 + } + }, + [ + { + "#": 5359 + }, + { + "#": 5360 + }, + { + "#": 5361 + }, + { + "#": 5362 + }, + { + "#": 5363 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5365 + }, + "min": { + "#": 5366 + } + }, + { + "x": 478.0240000000001, + "y": 384 + }, + { + "x": 462.8080000000001, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 376 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5374 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5377 + }, + { + "#": 5378 + }, + { + "#": 5379 + }, + { + "#": 5380 + }, + { + "#": 5381 + }, + { + "#": 5382 + }, + { + "#": 5383 + }, + { + "#": 5384 + }, + { + "#": 5385 + }, + { + "#": 5386 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5388 + }, + "bounds": { + "#": 5394 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5397 + }, + "constraintImpulse": { + "#": 5398 + }, + "density": 0.001, + "force": { + "#": 5399 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 179, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5400 + }, + "positionImpulse": { + "#": 5401 + }, + "positionPrev": { + "#": 5402 + }, + "render": { + "#": 5403 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5405 + }, + "vertices": { + "#": 5406 + } + }, + [ + { + "#": 5389 + }, + { + "#": 5390 + }, + { + "#": 5391 + }, + { + "#": 5392 + }, + { + "#": 5393 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5395 + }, + "min": { + "#": 5396 + } + }, + { + "x": 498.2400000000001, + "y": 384 + }, + { + "x": 483.0240000000001, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 376 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5404 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5407 + }, + { + "#": 5408 + }, + { + "#": 5409 + }, + { + "#": 5410 + }, + { + "#": 5411 + }, + { + "#": 5412 + }, + { + "#": 5413 + }, + { + "#": 5414 + }, + { + "#": 5415 + }, + { + "#": 5416 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5418 + }, + "bounds": { + "#": 5424 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5427 + }, + "constraintImpulse": { + "#": 5428 + }, + "density": 0.001, + "force": { + "#": 5429 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 180, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5430 + }, + "positionImpulse": { + "#": 5431 + }, + "positionPrev": { + "#": 5432 + }, + "render": { + "#": 5433 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5435 + }, + "vertices": { + "#": 5436 + } + }, + [ + { + "#": 5419 + }, + { + "#": 5420 + }, + { + "#": 5421 + }, + { + "#": 5422 + }, + { + "#": 5423 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5425 + }, + "min": { + "#": 5426 + } + }, + { + "x": 518.4560000000001, + "y": 384 + }, + { + "x": 503.2400000000001, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 376 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5434 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + }, + { + "#": 5441 + }, + { + "#": 5442 + }, + { + "#": 5443 + }, + { + "#": 5444 + }, + { + "#": 5445 + }, + { + "#": 5446 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5448 + }, + "bounds": { + "#": 5454 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5457 + }, + "constraintImpulse": { + "#": 5458 + }, + "density": 0.001, + "force": { + "#": 5459 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 181, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5460 + }, + "positionImpulse": { + "#": 5461 + }, + "positionPrev": { + "#": 5462 + }, + "render": { + "#": 5463 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5465 + }, + "vertices": { + "#": 5466 + } + }, + [ + { + "#": 5449 + }, + { + "#": 5450 + }, + { + "#": 5451 + }, + { + "#": 5452 + }, + { + "#": 5453 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5455 + }, + "min": { + "#": 5456 + } + }, + { + "x": 538.672, + "y": 384 + }, + { + "x": 523.4560000000001, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 376 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5464 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5467 + }, + { + "#": 5468 + }, + { + "#": 5469 + }, + { + "#": 5470 + }, + { + "#": 5471 + }, + { + "#": 5472 + }, + { + "#": 5473 + }, + { + "#": 5474 + }, + { + "#": 5475 + }, + { + "#": 5476 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5478 + }, + "bounds": { + "#": 5484 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5487 + }, + "constraintImpulse": { + "#": 5488 + }, + "density": 0.001, + "force": { + "#": 5489 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 182, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5490 + }, + "positionImpulse": { + "#": 5491 + }, + "positionPrev": { + "#": 5492 + }, + "render": { + "#": 5493 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5495 + }, + "vertices": { + "#": 5496 + } + }, + [ + { + "#": 5479 + }, + { + "#": 5480 + }, + { + "#": 5481 + }, + { + "#": 5482 + }, + { + "#": 5483 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5485 + }, + "min": { + "#": 5486 + } + }, + { + "x": 558.8879999999999, + "y": 384 + }, + { + "x": 543.672, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 376 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5494 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5497 + }, + { + "#": 5498 + }, + { + "#": 5499 + }, + { + "#": 5500 + }, + { + "#": 5501 + }, + { + "#": 5502 + }, + { + "#": 5503 + }, + { + "#": 5504 + }, + { + "#": 5505 + }, + { + "#": 5506 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5508 + }, + "bounds": { + "#": 5514 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5517 + }, + "constraintImpulse": { + "#": 5518 + }, + "density": 0.001, + "force": { + "#": 5519 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 183, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5520 + }, + "positionImpulse": { + "#": 5521 + }, + "positionPrev": { + "#": 5522 + }, + "render": { + "#": 5523 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5525 + }, + "vertices": { + "#": 5526 + } + }, + [ + { + "#": 5509 + }, + { + "#": 5510 + }, + { + "#": 5511 + }, + { + "#": 5512 + }, + { + "#": 5513 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5515 + }, + "min": { + "#": 5516 + } + }, + { + "x": 579.1039999999998, + "y": 384 + }, + { + "x": 563.8879999999999, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 376 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5524 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + }, + { + "#": 5534 + }, + { + "#": 5535 + }, + { + "#": 5536 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5538 + }, + "bounds": { + "#": 5544 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5547 + }, + "constraintImpulse": { + "#": 5548 + }, + "density": 0.001, + "force": { + "#": 5549 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 184, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5550 + }, + "positionImpulse": { + "#": 5551 + }, + "positionPrev": { + "#": 5552 + }, + "render": { + "#": 5553 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5555 + }, + "vertices": { + "#": 5556 + } + }, + [ + { + "#": 5539 + }, + { + "#": 5540 + }, + { + "#": 5541 + }, + { + "#": 5542 + }, + { + "#": 5543 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5545 + }, + "min": { + "#": 5546 + } + }, + { + "x": 599.3199999999997, + "y": 384 + }, + { + "x": 584.1039999999998, + "y": 368 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 376 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5554 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5557 + }, + { + "#": 5558 + }, + { + "#": 5559 + }, + { + "#": 5560 + }, + { + "#": 5561 + }, + { + "#": 5562 + }, + { + "#": 5563 + }, + { + "#": 5564 + }, + { + "#": 5565 + }, + { + "#": 5566 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 378.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 382.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 382.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 378.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 373.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 369.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 368 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 369.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 373.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5568 + }, + "bounds": { + "#": 5574 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5577 + }, + "constraintImpulse": { + "#": 5578 + }, + "density": 0.001, + "force": { + "#": 5579 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 185, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5580 + }, + "positionImpulse": { + "#": 5581 + }, + "positionPrev": { + "#": 5582 + }, + "render": { + "#": 5583 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5585 + }, + "vertices": { + "#": 5586 + } + }, + [ + { + "#": 5569 + }, + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + }, + { + "#": 5573 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5575 + }, + "min": { + "#": 5576 + } + }, + { + "x": 215.216, + "y": 405 + }, + { + "x": 200, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 397 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5584 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5587 + }, + { + "#": 5588 + }, + { + "#": 5589 + }, + { + "#": 5590 + }, + { + "#": 5591 + }, + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + }, + { + "#": 5596 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5598 + }, + "bounds": { + "#": 5604 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5607 + }, + "constraintImpulse": { + "#": 5608 + }, + "density": 0.001, + "force": { + "#": 5609 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 186, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5610 + }, + "positionImpulse": { + "#": 5611 + }, + "positionPrev": { + "#": 5612 + }, + "render": { + "#": 5613 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5615 + }, + "vertices": { + "#": 5616 + } + }, + [ + { + "#": 5599 + }, + { + "#": 5600 + }, + { + "#": 5601 + }, + { + "#": 5602 + }, + { + "#": 5603 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5605 + }, + "min": { + "#": 5606 + } + }, + { + "x": 235.43200000000002, + "y": 405 + }, + { + "x": 220.216, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 397 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5614 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5617 + }, + { + "#": 5618 + }, + { + "#": 5619 + }, + { + "#": 5620 + }, + { + "#": 5621 + }, + { + "#": 5622 + }, + { + "#": 5623 + }, + { + "#": 5624 + }, + { + "#": 5625 + }, + { + "#": 5626 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5628 + }, + "bounds": { + "#": 5634 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5637 + }, + "constraintImpulse": { + "#": 5638 + }, + "density": 0.001, + "force": { + "#": 5639 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 187, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5640 + }, + "positionImpulse": { + "#": 5641 + }, + "positionPrev": { + "#": 5642 + }, + "render": { + "#": 5643 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5645 + }, + "vertices": { + "#": 5646 + } + }, + [ + { + "#": 5629 + }, + { + "#": 5630 + }, + { + "#": 5631 + }, + { + "#": 5632 + }, + { + "#": 5633 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5635 + }, + "min": { + "#": 5636 + } + }, + { + "x": 255.64800000000002, + "y": 405 + }, + { + "x": 240.43200000000002, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 397 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5644 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5647 + }, + { + "#": 5648 + }, + { + "#": 5649 + }, + { + "#": 5650 + }, + { + "#": 5651 + }, + { + "#": 5652 + }, + { + "#": 5653 + }, + { + "#": 5654 + }, + { + "#": 5655 + }, + { + "#": 5656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5658 + }, + "bounds": { + "#": 5664 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5667 + }, + "constraintImpulse": { + "#": 5668 + }, + "density": 0.001, + "force": { + "#": 5669 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 188, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5670 + }, + "positionImpulse": { + "#": 5671 + }, + "positionPrev": { + "#": 5672 + }, + "render": { + "#": 5673 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5675 + }, + "vertices": { + "#": 5676 + } + }, + [ + { + "#": 5659 + }, + { + "#": 5660 + }, + { + "#": 5661 + }, + { + "#": 5662 + }, + { + "#": 5663 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5665 + }, + "min": { + "#": 5666 + } + }, + { + "x": 275.86400000000003, + "y": 405 + }, + { + "x": 260.648, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 397 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5674 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5677 + }, + { + "#": 5678 + }, + { + "#": 5679 + }, + { + "#": 5680 + }, + { + "#": 5681 + }, + { + "#": 5682 + }, + { + "#": 5683 + }, + { + "#": 5684 + }, + { + "#": 5685 + }, + { + "#": 5686 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5688 + }, + "bounds": { + "#": 5694 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5697 + }, + "constraintImpulse": { + "#": 5698 + }, + "density": 0.001, + "force": { + "#": 5699 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 189, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5700 + }, + "positionImpulse": { + "#": 5701 + }, + "positionPrev": { + "#": 5702 + }, + "render": { + "#": 5703 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5705 + }, + "vertices": { + "#": 5706 + } + }, + [ + { + "#": 5689 + }, + { + "#": 5690 + }, + { + "#": 5691 + }, + { + "#": 5692 + }, + { + "#": 5693 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5695 + }, + "min": { + "#": 5696 + } + }, + { + "x": 296.08000000000004, + "y": 405 + }, + { + "x": 280.86400000000003, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 397 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5704 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5707 + }, + { + "#": 5708 + }, + { + "#": 5709 + }, + { + "#": 5710 + }, + { + "#": 5711 + }, + { + "#": 5712 + }, + { + "#": 5713 + }, + { + "#": 5714 + }, + { + "#": 5715 + }, + { + "#": 5716 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5718 + }, + "bounds": { + "#": 5724 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5727 + }, + "constraintImpulse": { + "#": 5728 + }, + "density": 0.001, + "force": { + "#": 5729 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 190, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5730 + }, + "positionImpulse": { + "#": 5731 + }, + "positionPrev": { + "#": 5732 + }, + "render": { + "#": 5733 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5735 + }, + "vertices": { + "#": 5736 + } + }, + [ + { + "#": 5719 + }, + { + "#": 5720 + }, + { + "#": 5721 + }, + { + "#": 5722 + }, + { + "#": 5723 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5725 + }, + "min": { + "#": 5726 + } + }, + { + "x": 316.29600000000005, + "y": 405 + }, + { + "x": 301.08000000000004, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 397 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5734 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5737 + }, + { + "#": 5738 + }, + { + "#": 5739 + }, + { + "#": 5740 + }, + { + "#": 5741 + }, + { + "#": 5742 + }, + { + "#": 5743 + }, + { + "#": 5744 + }, + { + "#": 5745 + }, + { + "#": 5746 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5748 + }, + "bounds": { + "#": 5754 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5757 + }, + "constraintImpulse": { + "#": 5758 + }, + "density": 0.001, + "force": { + "#": 5759 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 191, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5760 + }, + "positionImpulse": { + "#": 5761 + }, + "positionPrev": { + "#": 5762 + }, + "render": { + "#": 5763 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5765 + }, + "vertices": { + "#": 5766 + } + }, + [ + { + "#": 5749 + }, + { + "#": 5750 + }, + { + "#": 5751 + }, + { + "#": 5752 + }, + { + "#": 5753 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5755 + }, + "min": { + "#": 5756 + } + }, + { + "x": 336.51200000000006, + "y": 405 + }, + { + "x": 321.29600000000005, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 397 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5764 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5767 + }, + { + "#": 5768 + }, + { + "#": 5769 + }, + { + "#": 5770 + }, + { + "#": 5771 + }, + { + "#": 5772 + }, + { + "#": 5773 + }, + { + "#": 5774 + }, + { + "#": 5775 + }, + { + "#": 5776 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5778 + }, + "bounds": { + "#": 5784 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5787 + }, + "constraintImpulse": { + "#": 5788 + }, + "density": 0.001, + "force": { + "#": 5789 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 192, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5790 + }, + "positionImpulse": { + "#": 5791 + }, + "positionPrev": { + "#": 5792 + }, + "render": { + "#": 5793 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5795 + }, + "vertices": { + "#": 5796 + } + }, + [ + { + "#": 5779 + }, + { + "#": 5780 + }, + { + "#": 5781 + }, + { + "#": 5782 + }, + { + "#": 5783 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5785 + }, + "min": { + "#": 5786 + } + }, + { + "x": 356.72800000000007, + "y": 405 + }, + { + "x": 341.51200000000006, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 397 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5794 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5797 + }, + { + "#": 5798 + }, + { + "#": 5799 + }, + { + "#": 5800 + }, + { + "#": 5801 + }, + { + "#": 5802 + }, + { + "#": 5803 + }, + { + "#": 5804 + }, + { + "#": 5805 + }, + { + "#": 5806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5808 + }, + "bounds": { + "#": 5814 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5817 + }, + "constraintImpulse": { + "#": 5818 + }, + "density": 0.001, + "force": { + "#": 5819 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 193, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5820 + }, + "positionImpulse": { + "#": 5821 + }, + "positionPrev": { + "#": 5822 + }, + "render": { + "#": 5823 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5825 + }, + "vertices": { + "#": 5826 + } + }, + [ + { + "#": 5809 + }, + { + "#": 5810 + }, + { + "#": 5811 + }, + { + "#": 5812 + }, + { + "#": 5813 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5815 + }, + "min": { + "#": 5816 + } + }, + { + "x": 376.9440000000001, + "y": 405 + }, + { + "x": 361.72800000000007, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 397 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5824 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5827 + }, + { + "#": 5828 + }, + { + "#": 5829 + }, + { + "#": 5830 + }, + { + "#": 5831 + }, + { + "#": 5832 + }, + { + "#": 5833 + }, + { + "#": 5834 + }, + { + "#": 5835 + }, + { + "#": 5836 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5838 + }, + "bounds": { + "#": 5844 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5847 + }, + "constraintImpulse": { + "#": 5848 + }, + "density": 0.001, + "force": { + "#": 5849 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 194, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5850 + }, + "positionImpulse": { + "#": 5851 + }, + "positionPrev": { + "#": 5852 + }, + "render": { + "#": 5853 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5855 + }, + "vertices": { + "#": 5856 + } + }, + [ + { + "#": 5839 + }, + { + "#": 5840 + }, + { + "#": 5841 + }, + { + "#": 5842 + }, + { + "#": 5843 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5845 + }, + "min": { + "#": 5846 + } + }, + { + "x": 397.1600000000001, + "y": 405 + }, + { + "x": 381.9440000000001, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 397 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5854 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5857 + }, + { + "#": 5858 + }, + { + "#": 5859 + }, + { + "#": 5860 + }, + { + "#": 5861 + }, + { + "#": 5862 + }, + { + "#": 5863 + }, + { + "#": 5864 + }, + { + "#": 5865 + }, + { + "#": 5866 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5868 + }, + "bounds": { + "#": 5874 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5877 + }, + "constraintImpulse": { + "#": 5878 + }, + "density": 0.001, + "force": { + "#": 5879 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 195, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5880 + }, + "positionImpulse": { + "#": 5881 + }, + "positionPrev": { + "#": 5882 + }, + "render": { + "#": 5883 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5885 + }, + "vertices": { + "#": 5886 + } + }, + [ + { + "#": 5869 + }, + { + "#": 5870 + }, + { + "#": 5871 + }, + { + "#": 5872 + }, + { + "#": 5873 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5875 + }, + "min": { + "#": 5876 + } + }, + { + "x": 417.3760000000001, + "y": 405 + }, + { + "x": 402.1600000000001, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 397 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5884 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5887 + }, + { + "#": 5888 + }, + { + "#": 5889 + }, + { + "#": 5890 + }, + { + "#": 5891 + }, + { + "#": 5892 + }, + { + "#": 5893 + }, + { + "#": 5894 + }, + { + "#": 5895 + }, + { + "#": 5896 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5898 + }, + "bounds": { + "#": 5904 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5907 + }, + "constraintImpulse": { + "#": 5908 + }, + "density": 0.001, + "force": { + "#": 5909 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 196, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5910 + }, + "positionImpulse": { + "#": 5911 + }, + "positionPrev": { + "#": 5912 + }, + "render": { + "#": 5913 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5915 + }, + "vertices": { + "#": 5916 + } + }, + [ + { + "#": 5899 + }, + { + "#": 5900 + }, + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5905 + }, + "min": { + "#": 5906 + } + }, + { + "x": 437.5920000000001, + "y": 405 + }, + { + "x": 422.3760000000001, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 397 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5914 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5917 + }, + { + "#": 5918 + }, + { + "#": 5919 + }, + { + "#": 5920 + }, + { + "#": 5921 + }, + { + "#": 5922 + }, + { + "#": 5923 + }, + { + "#": 5924 + }, + { + "#": 5925 + }, + { + "#": 5926 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5928 + }, + "bounds": { + "#": 5934 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5937 + }, + "constraintImpulse": { + "#": 5938 + }, + "density": 0.001, + "force": { + "#": 5939 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 197, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5940 + }, + "positionImpulse": { + "#": 5941 + }, + "positionPrev": { + "#": 5942 + }, + "render": { + "#": 5943 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5945 + }, + "vertices": { + "#": 5946 + } + }, + [ + { + "#": 5929 + }, + { + "#": 5930 + }, + { + "#": 5931 + }, + { + "#": 5932 + }, + { + "#": 5933 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5935 + }, + "min": { + "#": 5936 + } + }, + { + "x": 457.8080000000001, + "y": 405 + }, + { + "x": 442.5920000000001, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 397 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5944 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5947 + }, + { + "#": 5948 + }, + { + "#": 5949 + }, + { + "#": 5950 + }, + { + "#": 5951 + }, + { + "#": 5952 + }, + { + "#": 5953 + }, + { + "#": 5954 + }, + { + "#": 5955 + }, + { + "#": 5956 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5958 + }, + "bounds": { + "#": 5964 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5967 + }, + "constraintImpulse": { + "#": 5968 + }, + "density": 0.001, + "force": { + "#": 5969 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 198, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5970 + }, + "positionImpulse": { + "#": 5971 + }, + "positionPrev": { + "#": 5972 + }, + "render": { + "#": 5973 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5975 + }, + "vertices": { + "#": 5976 + } + }, + [ + { + "#": 5959 + }, + { + "#": 5960 + }, + { + "#": 5961 + }, + { + "#": 5962 + }, + { + "#": 5963 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5965 + }, + "min": { + "#": 5966 + } + }, + { + "x": 478.0240000000001, + "y": 405 + }, + { + "x": 462.8080000000001, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 397 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5974 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5977 + }, + { + "#": 5978 + }, + { + "#": 5979 + }, + { + "#": 5980 + }, + { + "#": 5981 + }, + { + "#": 5982 + }, + { + "#": 5983 + }, + { + "#": 5984 + }, + { + "#": 5985 + }, + { + "#": 5986 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5988 + }, + "bounds": { + "#": 5994 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5997 + }, + "constraintImpulse": { + "#": 5998 + }, + "density": 0.001, + "force": { + "#": 5999 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 199, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6000 + }, + "positionImpulse": { + "#": 6001 + }, + "positionPrev": { + "#": 6002 + }, + "render": { + "#": 6003 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6005 + }, + "vertices": { + "#": 6006 + } + }, + [ + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + }, + { + "#": 5992 + }, + { + "#": 5993 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5995 + }, + "min": { + "#": 5996 + } + }, + { + "x": 498.2400000000001, + "y": 405 + }, + { + "x": 483.0240000000001, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 397 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6004 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6007 + }, + { + "#": 6008 + }, + { + "#": 6009 + }, + { + "#": 6010 + }, + { + "#": 6011 + }, + { + "#": 6012 + }, + { + "#": 6013 + }, + { + "#": 6014 + }, + { + "#": 6015 + }, + { + "#": 6016 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6018 + }, + "bounds": { + "#": 6024 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6027 + }, + "constraintImpulse": { + "#": 6028 + }, + "density": 0.001, + "force": { + "#": 6029 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 200, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6030 + }, + "positionImpulse": { + "#": 6031 + }, + "positionPrev": { + "#": 6032 + }, + "render": { + "#": 6033 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6035 + }, + "vertices": { + "#": 6036 + } + }, + [ + { + "#": 6019 + }, + { + "#": 6020 + }, + { + "#": 6021 + }, + { + "#": 6022 + }, + { + "#": 6023 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6025 + }, + "min": { + "#": 6026 + } + }, + { + "x": 518.4560000000001, + "y": 405 + }, + { + "x": 503.2400000000001, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 397 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6034 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6037 + }, + { + "#": 6038 + }, + { + "#": 6039 + }, + { + "#": 6040 + }, + { + "#": 6041 + }, + { + "#": 6042 + }, + { + "#": 6043 + }, + { + "#": 6044 + }, + { + "#": 6045 + }, + { + "#": 6046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6048 + }, + "bounds": { + "#": 6054 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6057 + }, + "constraintImpulse": { + "#": 6058 + }, + "density": 0.001, + "force": { + "#": 6059 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 201, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6060 + }, + "positionImpulse": { + "#": 6061 + }, + "positionPrev": { + "#": 6062 + }, + "render": { + "#": 6063 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6065 + }, + "vertices": { + "#": 6066 + } + }, + [ + { + "#": 6049 + }, + { + "#": 6050 + }, + { + "#": 6051 + }, + { + "#": 6052 + }, + { + "#": 6053 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6055 + }, + "min": { + "#": 6056 + } + }, + { + "x": 538.672, + "y": 405 + }, + { + "x": 523.4560000000001, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 397 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6064 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6067 + }, + { + "#": 6068 + }, + { + "#": 6069 + }, + { + "#": 6070 + }, + { + "#": 6071 + }, + { + "#": 6072 + }, + { + "#": 6073 + }, + { + "#": 6074 + }, + { + "#": 6075 + }, + { + "#": 6076 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6078 + }, + "bounds": { + "#": 6084 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6087 + }, + "constraintImpulse": { + "#": 6088 + }, + "density": 0.001, + "force": { + "#": 6089 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 202, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6090 + }, + "positionImpulse": { + "#": 6091 + }, + "positionPrev": { + "#": 6092 + }, + "render": { + "#": 6093 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6095 + }, + "vertices": { + "#": 6096 + } + }, + [ + { + "#": 6079 + }, + { + "#": 6080 + }, + { + "#": 6081 + }, + { + "#": 6082 + }, + { + "#": 6083 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6085 + }, + "min": { + "#": 6086 + } + }, + { + "x": 558.8879999999999, + "y": 405 + }, + { + "x": 543.672, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 397 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6094 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6097 + }, + { + "#": 6098 + }, + { + "#": 6099 + }, + { + "#": 6100 + }, + { + "#": 6101 + }, + { + "#": 6102 + }, + { + "#": 6103 + }, + { + "#": 6104 + }, + { + "#": 6105 + }, + { + "#": 6106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6108 + }, + "bounds": { + "#": 6114 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6117 + }, + "constraintImpulse": { + "#": 6118 + }, + "density": 0.001, + "force": { + "#": 6119 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 203, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6120 + }, + "positionImpulse": { + "#": 6121 + }, + "positionPrev": { + "#": 6122 + }, + "render": { + "#": 6123 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6125 + }, + "vertices": { + "#": 6126 + } + }, + [ + { + "#": 6109 + }, + { + "#": 6110 + }, + { + "#": 6111 + }, + { + "#": 6112 + }, + { + "#": 6113 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6115 + }, + "min": { + "#": 6116 + } + }, + { + "x": 579.1039999999998, + "y": 405 + }, + { + "x": 563.8879999999999, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 397 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6124 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6127 + }, + { + "#": 6128 + }, + { + "#": 6129 + }, + { + "#": 6130 + }, + { + "#": 6131 + }, + { + "#": 6132 + }, + { + "#": 6133 + }, + { + "#": 6134 + }, + { + "#": 6135 + }, + { + "#": 6136 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6138 + }, + "bounds": { + "#": 6144 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6147 + }, + "constraintImpulse": { + "#": 6148 + }, + "density": 0.001, + "force": { + "#": 6149 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 204, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6150 + }, + "positionImpulse": { + "#": 6151 + }, + "positionPrev": { + "#": 6152 + }, + "render": { + "#": 6153 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6155 + }, + "vertices": { + "#": 6156 + } + }, + [ + { + "#": 6139 + }, + { + "#": 6140 + }, + { + "#": 6141 + }, + { + "#": 6142 + }, + { + "#": 6143 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6145 + }, + "min": { + "#": 6146 + } + }, + { + "x": 599.3199999999997, + "y": 405 + }, + { + "x": 584.1039999999998, + "y": 389 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 397 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6154 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6157 + }, + { + "#": 6158 + }, + { + "#": 6159 + }, + { + "#": 6160 + }, + { + "#": 6161 + }, + { + "#": 6162 + }, + { + "#": 6163 + }, + { + "#": 6164 + }, + { + "#": 6165 + }, + { + "#": 6166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 399.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 403.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 405 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 403.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 399.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 394.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 390.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 389 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 390.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 394.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6168 + }, + "bounds": { + "#": 6174 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6177 + }, + "constraintImpulse": { + "#": 6178 + }, + "density": 0.001, + "force": { + "#": 6179 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 205, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6180 + }, + "positionImpulse": { + "#": 6181 + }, + "positionPrev": { + "#": 6182 + }, + "render": { + "#": 6183 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6185 + }, + "vertices": { + "#": 6186 + } + }, + [ + { + "#": 6169 + }, + { + "#": 6170 + }, + { + "#": 6171 + }, + { + "#": 6172 + }, + { + "#": 6173 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6175 + }, + "min": { + "#": 6176 + } + }, + { + "x": 215.216, + "y": 426 + }, + { + "x": 200, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 418 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6184 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6187 + }, + { + "#": 6188 + }, + { + "#": 6189 + }, + { + "#": 6190 + }, + { + "#": 6191 + }, + { + "#": 6192 + }, + { + "#": 6193 + }, + { + "#": 6194 + }, + { + "#": 6195 + }, + { + "#": 6196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6198 + }, + "bounds": { + "#": 6204 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6207 + }, + "constraintImpulse": { + "#": 6208 + }, + "density": 0.001, + "force": { + "#": 6209 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 206, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6210 + }, + "positionImpulse": { + "#": 6211 + }, + "positionPrev": { + "#": 6212 + }, + "render": { + "#": 6213 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6215 + }, + "vertices": { + "#": 6216 + } + }, + [ + { + "#": 6199 + }, + { + "#": 6200 + }, + { + "#": 6201 + }, + { + "#": 6202 + }, + { + "#": 6203 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6205 + }, + "min": { + "#": 6206 + } + }, + { + "x": 235.43200000000002, + "y": 426 + }, + { + "x": 220.216, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 418 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6214 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6217 + }, + { + "#": 6218 + }, + { + "#": 6219 + }, + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + }, + { + "#": 6223 + }, + { + "#": 6224 + }, + { + "#": 6225 + }, + { + "#": 6226 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6228 + }, + "bounds": { + "#": 6234 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6237 + }, + "constraintImpulse": { + "#": 6238 + }, + "density": 0.001, + "force": { + "#": 6239 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 207, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6240 + }, + "positionImpulse": { + "#": 6241 + }, + "positionPrev": { + "#": 6242 + }, + "render": { + "#": 6243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6245 + }, + "vertices": { + "#": 6246 + } + }, + [ + { + "#": 6229 + }, + { + "#": 6230 + }, + { + "#": 6231 + }, + { + "#": 6232 + }, + { + "#": 6233 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6235 + }, + "min": { + "#": 6236 + } + }, + { + "x": 255.64800000000002, + "y": 426 + }, + { + "x": 240.43200000000002, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 418 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6244 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6247 + }, + { + "#": 6248 + }, + { + "#": 6249 + }, + { + "#": 6250 + }, + { + "#": 6251 + }, + { + "#": 6252 + }, + { + "#": 6253 + }, + { + "#": 6254 + }, + { + "#": 6255 + }, + { + "#": 6256 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6258 + }, + "bounds": { + "#": 6264 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6267 + }, + "constraintImpulse": { + "#": 6268 + }, + "density": 0.001, + "force": { + "#": 6269 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 208, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6270 + }, + "positionImpulse": { + "#": 6271 + }, + "positionPrev": { + "#": 6272 + }, + "render": { + "#": 6273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6275 + }, + "vertices": { + "#": 6276 + } + }, + [ + { + "#": 6259 + }, + { + "#": 6260 + }, + { + "#": 6261 + }, + { + "#": 6262 + }, + { + "#": 6263 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6265 + }, + "min": { + "#": 6266 + } + }, + { + "x": 275.86400000000003, + "y": 426 + }, + { + "x": 260.648, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 418 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6274 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6277 + }, + { + "#": 6278 + }, + { + "#": 6279 + }, + { + "#": 6280 + }, + { + "#": 6281 + }, + { + "#": 6282 + }, + { + "#": 6283 + }, + { + "#": 6284 + }, + { + "#": 6285 + }, + { + "#": 6286 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6288 + }, + "bounds": { + "#": 6294 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6297 + }, + "constraintImpulse": { + "#": 6298 + }, + "density": 0.001, + "force": { + "#": 6299 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 209, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6300 + }, + "positionImpulse": { + "#": 6301 + }, + "positionPrev": { + "#": 6302 + }, + "render": { + "#": 6303 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6305 + }, + "vertices": { + "#": 6306 + } + }, + [ + { + "#": 6289 + }, + { + "#": 6290 + }, + { + "#": 6291 + }, + { + "#": 6292 + }, + { + "#": 6293 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6295 + }, + "min": { + "#": 6296 + } + }, + { + "x": 296.08000000000004, + "y": 426 + }, + { + "x": 280.86400000000003, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 418 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6304 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6307 + }, + { + "#": 6308 + }, + { + "#": 6309 + }, + { + "#": 6310 + }, + { + "#": 6311 + }, + { + "#": 6312 + }, + { + "#": 6313 + }, + { + "#": 6314 + }, + { + "#": 6315 + }, + { + "#": 6316 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6318 + }, + "bounds": { + "#": 6324 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6327 + }, + "constraintImpulse": { + "#": 6328 + }, + "density": 0.001, + "force": { + "#": 6329 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 210, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6330 + }, + "positionImpulse": { + "#": 6331 + }, + "positionPrev": { + "#": 6332 + }, + "render": { + "#": 6333 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6335 + }, + "vertices": { + "#": 6336 + } + }, + [ + { + "#": 6319 + }, + { + "#": 6320 + }, + { + "#": 6321 + }, + { + "#": 6322 + }, + { + "#": 6323 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6325 + }, + "min": { + "#": 6326 + } + }, + { + "x": 316.29600000000005, + "y": 426 + }, + { + "x": 301.08000000000004, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 418 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6334 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6337 + }, + { + "#": 6338 + }, + { + "#": 6339 + }, + { + "#": 6340 + }, + { + "#": 6341 + }, + { + "#": 6342 + }, + { + "#": 6343 + }, + { + "#": 6344 + }, + { + "#": 6345 + }, + { + "#": 6346 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6348 + }, + "bounds": { + "#": 6354 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6357 + }, + "constraintImpulse": { + "#": 6358 + }, + "density": 0.001, + "force": { + "#": 6359 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 211, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6360 + }, + "positionImpulse": { + "#": 6361 + }, + "positionPrev": { + "#": 6362 + }, + "render": { + "#": 6363 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6365 + }, + "vertices": { + "#": 6366 + } + }, + [ + { + "#": 6349 + }, + { + "#": 6350 + }, + { + "#": 6351 + }, + { + "#": 6352 + }, + { + "#": 6353 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6355 + }, + "min": { + "#": 6356 + } + }, + { + "x": 336.51200000000006, + "y": 426 + }, + { + "x": 321.29600000000005, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 418 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6364 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6367 + }, + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + }, + { + "#": 6371 + }, + { + "#": 6372 + }, + { + "#": 6373 + }, + { + "#": 6374 + }, + { + "#": 6375 + }, + { + "#": 6376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6378 + }, + "bounds": { + "#": 6384 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6387 + }, + "constraintImpulse": { + "#": 6388 + }, + "density": 0.001, + "force": { + "#": 6389 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 212, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6390 + }, + "positionImpulse": { + "#": 6391 + }, + "positionPrev": { + "#": 6392 + }, + "render": { + "#": 6393 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6395 + }, + "vertices": { + "#": 6396 + } + }, + [ + { + "#": 6379 + }, + { + "#": 6380 + }, + { + "#": 6381 + }, + { + "#": 6382 + }, + { + "#": 6383 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6385 + }, + "min": { + "#": 6386 + } + }, + { + "x": 356.72800000000007, + "y": 426 + }, + { + "x": 341.51200000000006, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 418 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6394 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6397 + }, + { + "#": 6398 + }, + { + "#": 6399 + }, + { + "#": 6400 + }, + { + "#": 6401 + }, + { + "#": 6402 + }, + { + "#": 6403 + }, + { + "#": 6404 + }, + { + "#": 6405 + }, + { + "#": 6406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6408 + }, + "bounds": { + "#": 6414 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6417 + }, + "constraintImpulse": { + "#": 6418 + }, + "density": 0.001, + "force": { + "#": 6419 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 213, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6420 + }, + "positionImpulse": { + "#": 6421 + }, + "positionPrev": { + "#": 6422 + }, + "render": { + "#": 6423 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6425 + }, + "vertices": { + "#": 6426 + } + }, + [ + { + "#": 6409 + }, + { + "#": 6410 + }, + { + "#": 6411 + }, + { + "#": 6412 + }, + { + "#": 6413 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6415 + }, + "min": { + "#": 6416 + } + }, + { + "x": 376.9440000000001, + "y": 426 + }, + { + "x": 361.72800000000007, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 418 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6424 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6427 + }, + { + "#": 6428 + }, + { + "#": 6429 + }, + { + "#": 6430 + }, + { + "#": 6431 + }, + { + "#": 6432 + }, + { + "#": 6433 + }, + { + "#": 6434 + }, + { + "#": 6435 + }, + { + "#": 6436 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6438 + }, + "bounds": { + "#": 6444 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6447 + }, + "constraintImpulse": { + "#": 6448 + }, + "density": 0.001, + "force": { + "#": 6449 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 214, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6450 + }, + "positionImpulse": { + "#": 6451 + }, + "positionPrev": { + "#": 6452 + }, + "render": { + "#": 6453 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6455 + }, + "vertices": { + "#": 6456 + } + }, + [ + { + "#": 6439 + }, + { + "#": 6440 + }, + { + "#": 6441 + }, + { + "#": 6442 + }, + { + "#": 6443 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6445 + }, + "min": { + "#": 6446 + } + }, + { + "x": 397.1600000000001, + "y": 426 + }, + { + "x": 381.9440000000001, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 418 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6454 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6457 + }, + { + "#": 6458 + }, + { + "#": 6459 + }, + { + "#": 6460 + }, + { + "#": 6461 + }, + { + "#": 6462 + }, + { + "#": 6463 + }, + { + "#": 6464 + }, + { + "#": 6465 + }, + { + "#": 6466 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6468 + }, + "bounds": { + "#": 6474 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6477 + }, + "constraintImpulse": { + "#": 6478 + }, + "density": 0.001, + "force": { + "#": 6479 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 215, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6480 + }, + "positionImpulse": { + "#": 6481 + }, + "positionPrev": { + "#": 6482 + }, + "render": { + "#": 6483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6485 + }, + "vertices": { + "#": 6486 + } + }, + [ + { + "#": 6469 + }, + { + "#": 6470 + }, + { + "#": 6471 + }, + { + "#": 6472 + }, + { + "#": 6473 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6475 + }, + "min": { + "#": 6476 + } + }, + { + "x": 417.3760000000001, + "y": 426 + }, + { + "x": 402.1600000000001, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 418 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6484 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6487 + }, + { + "#": 6488 + }, + { + "#": 6489 + }, + { + "#": 6490 + }, + { + "#": 6491 + }, + { + "#": 6492 + }, + { + "#": 6493 + }, + { + "#": 6494 + }, + { + "#": 6495 + }, + { + "#": 6496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6498 + }, + "bounds": { + "#": 6504 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6507 + }, + "constraintImpulse": { + "#": 6508 + }, + "density": 0.001, + "force": { + "#": 6509 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 216, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6510 + }, + "positionImpulse": { + "#": 6511 + }, + "positionPrev": { + "#": 6512 + }, + "render": { + "#": 6513 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6515 + }, + "vertices": { + "#": 6516 + } + }, + [ + { + "#": 6499 + }, + { + "#": 6500 + }, + { + "#": 6501 + }, + { + "#": 6502 + }, + { + "#": 6503 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6505 + }, + "min": { + "#": 6506 + } + }, + { + "x": 437.5920000000001, + "y": 426 + }, + { + "x": 422.3760000000001, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 418 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6514 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6517 + }, + { + "#": 6518 + }, + { + "#": 6519 + }, + { + "#": 6520 + }, + { + "#": 6521 + }, + { + "#": 6522 + }, + { + "#": 6523 + }, + { + "#": 6524 + }, + { + "#": 6525 + }, + { + "#": 6526 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6528 + }, + "bounds": { + "#": 6534 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6537 + }, + "constraintImpulse": { + "#": 6538 + }, + "density": 0.001, + "force": { + "#": 6539 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 217, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6540 + }, + "positionImpulse": { + "#": 6541 + }, + "positionPrev": { + "#": 6542 + }, + "render": { + "#": 6543 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6545 + }, + "vertices": { + "#": 6546 + } + }, + [ + { + "#": 6529 + }, + { + "#": 6530 + }, + { + "#": 6531 + }, + { + "#": 6532 + }, + { + "#": 6533 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6535 + }, + "min": { + "#": 6536 + } + }, + { + "x": 457.8080000000001, + "y": 426 + }, + { + "x": 442.5920000000001, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 418 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6544 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6547 + }, + { + "#": 6548 + }, + { + "#": 6549 + }, + { + "#": 6550 + }, + { + "#": 6551 + }, + { + "#": 6552 + }, + { + "#": 6553 + }, + { + "#": 6554 + }, + { + "#": 6555 + }, + { + "#": 6556 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6558 + }, + "bounds": { + "#": 6564 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6567 + }, + "constraintImpulse": { + "#": 6568 + }, + "density": 0.001, + "force": { + "#": 6569 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 218, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6570 + }, + "positionImpulse": { + "#": 6571 + }, + "positionPrev": { + "#": 6572 + }, + "render": { + "#": 6573 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6575 + }, + "vertices": { + "#": 6576 + } + }, + [ + { + "#": 6559 + }, + { + "#": 6560 + }, + { + "#": 6561 + }, + { + "#": 6562 + }, + { + "#": 6563 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6565 + }, + "min": { + "#": 6566 + } + }, + { + "x": 478.0240000000001, + "y": 426 + }, + { + "x": 462.8080000000001, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 418 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6574 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6577 + }, + { + "#": 6578 + }, + { + "#": 6579 + }, + { + "#": 6580 + }, + { + "#": 6581 + }, + { + "#": 6582 + }, + { + "#": 6583 + }, + { + "#": 6584 + }, + { + "#": 6585 + }, + { + "#": 6586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6588 + }, + "bounds": { + "#": 6594 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6597 + }, + "constraintImpulse": { + "#": 6598 + }, + "density": 0.001, + "force": { + "#": 6599 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 219, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6600 + }, + "positionImpulse": { + "#": 6601 + }, + "positionPrev": { + "#": 6602 + }, + "render": { + "#": 6603 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6605 + }, + "vertices": { + "#": 6606 + } + }, + [ + { + "#": 6589 + }, + { + "#": 6590 + }, + { + "#": 6591 + }, + { + "#": 6592 + }, + { + "#": 6593 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6595 + }, + "min": { + "#": 6596 + } + }, + { + "x": 498.2400000000001, + "y": 426 + }, + { + "x": 483.0240000000001, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 418 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6604 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6607 + }, + { + "#": 6608 + }, + { + "#": 6609 + }, + { + "#": 6610 + }, + { + "#": 6611 + }, + { + "#": 6612 + }, + { + "#": 6613 + }, + { + "#": 6614 + }, + { + "#": 6615 + }, + { + "#": 6616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6618 + }, + "bounds": { + "#": 6624 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6627 + }, + "constraintImpulse": { + "#": 6628 + }, + "density": 0.001, + "force": { + "#": 6629 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 220, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6630 + }, + "positionImpulse": { + "#": 6631 + }, + "positionPrev": { + "#": 6632 + }, + "render": { + "#": 6633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6635 + }, + "vertices": { + "#": 6636 + } + }, + [ + { + "#": 6619 + }, + { + "#": 6620 + }, + { + "#": 6621 + }, + { + "#": 6622 + }, + { + "#": 6623 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6625 + }, + "min": { + "#": 6626 + } + }, + { + "x": 518.4560000000001, + "y": 426 + }, + { + "x": 503.2400000000001, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 418 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6634 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6637 + }, + { + "#": 6638 + }, + { + "#": 6639 + }, + { + "#": 6640 + }, + { + "#": 6641 + }, + { + "#": 6642 + }, + { + "#": 6643 + }, + { + "#": 6644 + }, + { + "#": 6645 + }, + { + "#": 6646 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6648 + }, + "bounds": { + "#": 6654 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6657 + }, + "constraintImpulse": { + "#": 6658 + }, + "density": 0.001, + "force": { + "#": 6659 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 221, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6660 + }, + "positionImpulse": { + "#": 6661 + }, + "positionPrev": { + "#": 6662 + }, + "render": { + "#": 6663 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6665 + }, + "vertices": { + "#": 6666 + } + }, + [ + { + "#": 6649 + }, + { + "#": 6650 + }, + { + "#": 6651 + }, + { + "#": 6652 + }, + { + "#": 6653 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6655 + }, + "min": { + "#": 6656 + } + }, + { + "x": 538.672, + "y": 426 + }, + { + "x": 523.4560000000001, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 418 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6664 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6667 + }, + { + "#": 6668 + }, + { + "#": 6669 + }, + { + "#": 6670 + }, + { + "#": 6671 + }, + { + "#": 6672 + }, + { + "#": 6673 + }, + { + "#": 6674 + }, + { + "#": 6675 + }, + { + "#": 6676 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6678 + }, + "bounds": { + "#": 6684 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6687 + }, + "constraintImpulse": { + "#": 6688 + }, + "density": 0.001, + "force": { + "#": 6689 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 222, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6690 + }, + "positionImpulse": { + "#": 6691 + }, + "positionPrev": { + "#": 6692 + }, + "render": { + "#": 6693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6695 + }, + "vertices": { + "#": 6696 + } + }, + [ + { + "#": 6679 + }, + { + "#": 6680 + }, + { + "#": 6681 + }, + { + "#": 6682 + }, + { + "#": 6683 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6685 + }, + "min": { + "#": 6686 + } + }, + { + "x": 558.8879999999999, + "y": 426 + }, + { + "x": 543.672, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 418 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6694 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6697 + }, + { + "#": 6698 + }, + { + "#": 6699 + }, + { + "#": 6700 + }, + { + "#": 6701 + }, + { + "#": 6702 + }, + { + "#": 6703 + }, + { + "#": 6704 + }, + { + "#": 6705 + }, + { + "#": 6706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6708 + }, + "bounds": { + "#": 6714 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6717 + }, + "constraintImpulse": { + "#": 6718 + }, + "density": 0.001, + "force": { + "#": 6719 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 223, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6720 + }, + "positionImpulse": { + "#": 6721 + }, + "positionPrev": { + "#": 6722 + }, + "render": { + "#": 6723 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6725 + }, + "vertices": { + "#": 6726 + } + }, + [ + { + "#": 6709 + }, + { + "#": 6710 + }, + { + "#": 6711 + }, + { + "#": 6712 + }, + { + "#": 6713 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6715 + }, + "min": { + "#": 6716 + } + }, + { + "x": 579.1039999999998, + "y": 426 + }, + { + "x": 563.8879999999999, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 418 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6724 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6727 + }, + { + "#": 6728 + }, + { + "#": 6729 + }, + { + "#": 6730 + }, + { + "#": 6731 + }, + { + "#": 6732 + }, + { + "#": 6733 + }, + { + "#": 6734 + }, + { + "#": 6735 + }, + { + "#": 6736 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6738 + }, + "bounds": { + "#": 6744 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6747 + }, + "constraintImpulse": { + "#": 6748 + }, + "density": 0.001, + "force": { + "#": 6749 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 224, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6750 + }, + "positionImpulse": { + "#": 6751 + }, + "positionPrev": { + "#": 6752 + }, + "render": { + "#": 6753 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6755 + }, + "vertices": { + "#": 6756 + } + }, + [ + { + "#": 6739 + }, + { + "#": 6740 + }, + { + "#": 6741 + }, + { + "#": 6742 + }, + { + "#": 6743 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6745 + }, + "min": { + "#": 6746 + } + }, + { + "x": 599.3199999999997, + "y": 426 + }, + { + "x": 584.1039999999998, + "y": 410 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 418 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6754 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6757 + }, + { + "#": 6758 + }, + { + "#": 6759 + }, + { + "#": 6760 + }, + { + "#": 6761 + }, + { + "#": 6762 + }, + { + "#": 6763 + }, + { + "#": 6764 + }, + { + "#": 6765 + }, + { + "#": 6766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 420.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 424.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 424.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 420.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 415.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 411.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 410 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 411.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 415.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6768 + }, + "bounds": { + "#": 6774 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6777 + }, + "constraintImpulse": { + "#": 6778 + }, + "density": 0.001, + "force": { + "#": 6779 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 225, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6780 + }, + "positionImpulse": { + "#": 6781 + }, + "positionPrev": { + "#": 6782 + }, + "render": { + "#": 6783 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6785 + }, + "vertices": { + "#": 6786 + } + }, + [ + { + "#": 6769 + }, + { + "#": 6770 + }, + { + "#": 6771 + }, + { + "#": 6772 + }, + { + "#": 6773 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6775 + }, + "min": { + "#": 6776 + } + }, + { + "x": 215.216, + "y": 447 + }, + { + "x": 200, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 439 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6784 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6787 + }, + { + "#": 6788 + }, + { + "#": 6789 + }, + { + "#": 6790 + }, + { + "#": 6791 + }, + { + "#": 6792 + }, + { + "#": 6793 + }, + { + "#": 6794 + }, + { + "#": 6795 + }, + { + "#": 6796 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6798 + }, + "bounds": { + "#": 6804 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6807 + }, + "constraintImpulse": { + "#": 6808 + }, + "density": 0.001, + "force": { + "#": 6809 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 226, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6810 + }, + "positionImpulse": { + "#": 6811 + }, + "positionPrev": { + "#": 6812 + }, + "render": { + "#": 6813 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6815 + }, + "vertices": { + "#": 6816 + } + }, + [ + { + "#": 6799 + }, + { + "#": 6800 + }, + { + "#": 6801 + }, + { + "#": 6802 + }, + { + "#": 6803 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6805 + }, + "min": { + "#": 6806 + } + }, + { + "x": 235.43200000000002, + "y": 447 + }, + { + "x": 220.216, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 439 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6814 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6817 + }, + { + "#": 6818 + }, + { + "#": 6819 + }, + { + "#": 6820 + }, + { + "#": 6821 + }, + { + "#": 6822 + }, + { + "#": 6823 + }, + { + "#": 6824 + }, + { + "#": 6825 + }, + { + "#": 6826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6828 + }, + "bounds": { + "#": 6834 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6837 + }, + "constraintImpulse": { + "#": 6838 + }, + "density": 0.001, + "force": { + "#": 6839 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 227, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6840 + }, + "positionImpulse": { + "#": 6841 + }, + "positionPrev": { + "#": 6842 + }, + "render": { + "#": 6843 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6845 + }, + "vertices": { + "#": 6846 + } + }, + [ + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + }, + { + "#": 6832 + }, + { + "#": 6833 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6835 + }, + "min": { + "#": 6836 + } + }, + { + "x": 255.64800000000002, + "y": 447 + }, + { + "x": 240.43200000000002, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 439 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6844 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6847 + }, + { + "#": 6848 + }, + { + "#": 6849 + }, + { + "#": 6850 + }, + { + "#": 6851 + }, + { + "#": 6852 + }, + { + "#": 6853 + }, + { + "#": 6854 + }, + { + "#": 6855 + }, + { + "#": 6856 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6858 + }, + "bounds": { + "#": 6864 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6867 + }, + "constraintImpulse": { + "#": 6868 + }, + "density": 0.001, + "force": { + "#": 6869 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 228, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6870 + }, + "positionImpulse": { + "#": 6871 + }, + "positionPrev": { + "#": 6872 + }, + "render": { + "#": 6873 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6875 + }, + "vertices": { + "#": 6876 + } + }, + [ + { + "#": 6859 + }, + { + "#": 6860 + }, + { + "#": 6861 + }, + { + "#": 6862 + }, + { + "#": 6863 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6865 + }, + "min": { + "#": 6866 + } + }, + { + "x": 275.86400000000003, + "y": 447 + }, + { + "x": 260.648, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 439 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6874 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6877 + }, + { + "#": 6878 + }, + { + "#": 6879 + }, + { + "#": 6880 + }, + { + "#": 6881 + }, + { + "#": 6882 + }, + { + "#": 6883 + }, + { + "#": 6884 + }, + { + "#": 6885 + }, + { + "#": 6886 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6888 + }, + "bounds": { + "#": 6894 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6897 + }, + "constraintImpulse": { + "#": 6898 + }, + "density": 0.001, + "force": { + "#": 6899 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 229, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6900 + }, + "positionImpulse": { + "#": 6901 + }, + "positionPrev": { + "#": 6902 + }, + "render": { + "#": 6903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6905 + }, + "vertices": { + "#": 6906 + } + }, + [ + { + "#": 6889 + }, + { + "#": 6890 + }, + { + "#": 6891 + }, + { + "#": 6892 + }, + { + "#": 6893 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6895 + }, + "min": { + "#": 6896 + } + }, + { + "x": 296.08000000000004, + "y": 447 + }, + { + "x": 280.86400000000003, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 439 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6904 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6907 + }, + { + "#": 6908 + }, + { + "#": 6909 + }, + { + "#": 6910 + }, + { + "#": 6911 + }, + { + "#": 6912 + }, + { + "#": 6913 + }, + { + "#": 6914 + }, + { + "#": 6915 + }, + { + "#": 6916 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6918 + }, + "bounds": { + "#": 6924 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6927 + }, + "constraintImpulse": { + "#": 6928 + }, + "density": 0.001, + "force": { + "#": 6929 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 230, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6930 + }, + "positionImpulse": { + "#": 6931 + }, + "positionPrev": { + "#": 6932 + }, + "render": { + "#": 6933 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6935 + }, + "vertices": { + "#": 6936 + } + }, + [ + { + "#": 6919 + }, + { + "#": 6920 + }, + { + "#": 6921 + }, + { + "#": 6922 + }, + { + "#": 6923 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6925 + }, + "min": { + "#": 6926 + } + }, + { + "x": 316.29600000000005, + "y": 447 + }, + { + "x": 301.08000000000004, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 439 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6934 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6937 + }, + { + "#": 6938 + }, + { + "#": 6939 + }, + { + "#": 6940 + }, + { + "#": 6941 + }, + { + "#": 6942 + }, + { + "#": 6943 + }, + { + "#": 6944 + }, + { + "#": 6945 + }, + { + "#": 6946 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6948 + }, + "bounds": { + "#": 6954 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6957 + }, + "constraintImpulse": { + "#": 6958 + }, + "density": 0.001, + "force": { + "#": 6959 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 231, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6960 + }, + "positionImpulse": { + "#": 6961 + }, + "positionPrev": { + "#": 6962 + }, + "render": { + "#": 6963 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6965 + }, + "vertices": { + "#": 6966 + } + }, + [ + { + "#": 6949 + }, + { + "#": 6950 + }, + { + "#": 6951 + }, + { + "#": 6952 + }, + { + "#": 6953 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6955 + }, + "min": { + "#": 6956 + } + }, + { + "x": 336.51200000000006, + "y": 447 + }, + { + "x": 321.29600000000005, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 439 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6964 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6967 + }, + { + "#": 6968 + }, + { + "#": 6969 + }, + { + "#": 6970 + }, + { + "#": 6971 + }, + { + "#": 6972 + }, + { + "#": 6973 + }, + { + "#": 6974 + }, + { + "#": 6975 + }, + { + "#": 6976 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6978 + }, + "bounds": { + "#": 6984 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6987 + }, + "constraintImpulse": { + "#": 6988 + }, + "density": 0.001, + "force": { + "#": 6989 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 232, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6990 + }, + "positionImpulse": { + "#": 6991 + }, + "positionPrev": { + "#": 6992 + }, + "render": { + "#": 6993 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6995 + }, + "vertices": { + "#": 6996 + } + }, + [ + { + "#": 6979 + }, + { + "#": 6980 + }, + { + "#": 6981 + }, + { + "#": 6982 + }, + { + "#": 6983 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6985 + }, + "min": { + "#": 6986 + } + }, + { + "x": 356.72800000000007, + "y": 447 + }, + { + "x": 341.51200000000006, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 439 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6994 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6997 + }, + { + "#": 6998 + }, + { + "#": 6999 + }, + { + "#": 7000 + }, + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + }, + { + "#": 7004 + }, + { + "#": 7005 + }, + { + "#": 7006 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7008 + }, + "bounds": { + "#": 7014 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7017 + }, + "constraintImpulse": { + "#": 7018 + }, + "density": 0.001, + "force": { + "#": 7019 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 233, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7020 + }, + "positionImpulse": { + "#": 7021 + }, + "positionPrev": { + "#": 7022 + }, + "render": { + "#": 7023 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7025 + }, + "vertices": { + "#": 7026 + } + }, + [ + { + "#": 7009 + }, + { + "#": 7010 + }, + { + "#": 7011 + }, + { + "#": 7012 + }, + { + "#": 7013 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7015 + }, + "min": { + "#": 7016 + } + }, + { + "x": 376.9440000000001, + "y": 447 + }, + { + "x": 361.72800000000007, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 439 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7024 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7027 + }, + { + "#": 7028 + }, + { + "#": 7029 + }, + { + "#": 7030 + }, + { + "#": 7031 + }, + { + "#": 7032 + }, + { + "#": 7033 + }, + { + "#": 7034 + }, + { + "#": 7035 + }, + { + "#": 7036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7038 + }, + "bounds": { + "#": 7044 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7047 + }, + "constraintImpulse": { + "#": 7048 + }, + "density": 0.001, + "force": { + "#": 7049 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 234, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7050 + }, + "positionImpulse": { + "#": 7051 + }, + "positionPrev": { + "#": 7052 + }, + "render": { + "#": 7053 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7055 + }, + "vertices": { + "#": 7056 + } + }, + [ + { + "#": 7039 + }, + { + "#": 7040 + }, + { + "#": 7041 + }, + { + "#": 7042 + }, + { + "#": 7043 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7045 + }, + "min": { + "#": 7046 + } + }, + { + "x": 397.1600000000001, + "y": 447 + }, + { + "x": 381.9440000000001, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 439 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7054 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7057 + }, + { + "#": 7058 + }, + { + "#": 7059 + }, + { + "#": 7060 + }, + { + "#": 7061 + }, + { + "#": 7062 + }, + { + "#": 7063 + }, + { + "#": 7064 + }, + { + "#": 7065 + }, + { + "#": 7066 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7068 + }, + "bounds": { + "#": 7074 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7077 + }, + "constraintImpulse": { + "#": 7078 + }, + "density": 0.001, + "force": { + "#": 7079 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 235, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7080 + }, + "positionImpulse": { + "#": 7081 + }, + "positionPrev": { + "#": 7082 + }, + "render": { + "#": 7083 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7085 + }, + "vertices": { + "#": 7086 + } + }, + [ + { + "#": 7069 + }, + { + "#": 7070 + }, + { + "#": 7071 + }, + { + "#": 7072 + }, + { + "#": 7073 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7075 + }, + "min": { + "#": 7076 + } + }, + { + "x": 417.3760000000001, + "y": 447 + }, + { + "x": 402.1600000000001, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 439 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7084 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7087 + }, + { + "#": 7088 + }, + { + "#": 7089 + }, + { + "#": 7090 + }, + { + "#": 7091 + }, + { + "#": 7092 + }, + { + "#": 7093 + }, + { + "#": 7094 + }, + { + "#": 7095 + }, + { + "#": 7096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7098 + }, + "bounds": { + "#": 7104 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7107 + }, + "constraintImpulse": { + "#": 7108 + }, + "density": 0.001, + "force": { + "#": 7109 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 236, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7110 + }, + "positionImpulse": { + "#": 7111 + }, + "positionPrev": { + "#": 7112 + }, + "render": { + "#": 7113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7115 + }, + "vertices": { + "#": 7116 + } + }, + [ + { + "#": 7099 + }, + { + "#": 7100 + }, + { + "#": 7101 + }, + { + "#": 7102 + }, + { + "#": 7103 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7105 + }, + "min": { + "#": 7106 + } + }, + { + "x": 437.5920000000001, + "y": 447 + }, + { + "x": 422.3760000000001, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 439 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7114 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7117 + }, + { + "#": 7118 + }, + { + "#": 7119 + }, + { + "#": 7120 + }, + { + "#": 7121 + }, + { + "#": 7122 + }, + { + "#": 7123 + }, + { + "#": 7124 + }, + { + "#": 7125 + }, + { + "#": 7126 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7128 + }, + "bounds": { + "#": 7134 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7137 + }, + "constraintImpulse": { + "#": 7138 + }, + "density": 0.001, + "force": { + "#": 7139 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 237, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7140 + }, + "positionImpulse": { + "#": 7141 + }, + "positionPrev": { + "#": 7142 + }, + "render": { + "#": 7143 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7145 + }, + "vertices": { + "#": 7146 + } + }, + [ + { + "#": 7129 + }, + { + "#": 7130 + }, + { + "#": 7131 + }, + { + "#": 7132 + }, + { + "#": 7133 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7135 + }, + "min": { + "#": 7136 + } + }, + { + "x": 457.8080000000001, + "y": 447 + }, + { + "x": 442.5920000000001, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 439 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7144 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7147 + }, + { + "#": 7148 + }, + { + "#": 7149 + }, + { + "#": 7150 + }, + { + "#": 7151 + }, + { + "#": 7152 + }, + { + "#": 7153 + }, + { + "#": 7154 + }, + { + "#": 7155 + }, + { + "#": 7156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7158 + }, + "bounds": { + "#": 7164 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7167 + }, + "constraintImpulse": { + "#": 7168 + }, + "density": 0.001, + "force": { + "#": 7169 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 238, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7170 + }, + "positionImpulse": { + "#": 7171 + }, + "positionPrev": { + "#": 7172 + }, + "render": { + "#": 7173 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7175 + }, + "vertices": { + "#": 7176 + } + }, + [ + { + "#": 7159 + }, + { + "#": 7160 + }, + { + "#": 7161 + }, + { + "#": 7162 + }, + { + "#": 7163 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7165 + }, + "min": { + "#": 7166 + } + }, + { + "x": 478.0240000000001, + "y": 447 + }, + { + "x": 462.8080000000001, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 439 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7174 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7177 + }, + { + "#": 7178 + }, + { + "#": 7179 + }, + { + "#": 7180 + }, + { + "#": 7181 + }, + { + "#": 7182 + }, + { + "#": 7183 + }, + { + "#": 7184 + }, + { + "#": 7185 + }, + { + "#": 7186 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7188 + }, + "bounds": { + "#": 7194 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7197 + }, + "constraintImpulse": { + "#": 7198 + }, + "density": 0.001, + "force": { + "#": 7199 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 239, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7200 + }, + "positionImpulse": { + "#": 7201 + }, + "positionPrev": { + "#": 7202 + }, + "render": { + "#": 7203 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7205 + }, + "vertices": { + "#": 7206 + } + }, + [ + { + "#": 7189 + }, + { + "#": 7190 + }, + { + "#": 7191 + }, + { + "#": 7192 + }, + { + "#": 7193 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7195 + }, + "min": { + "#": 7196 + } + }, + { + "x": 498.2400000000001, + "y": 447 + }, + { + "x": 483.0240000000001, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 439 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7204 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7207 + }, + { + "#": 7208 + }, + { + "#": 7209 + }, + { + "#": 7210 + }, + { + "#": 7211 + }, + { + "#": 7212 + }, + { + "#": 7213 + }, + { + "#": 7214 + }, + { + "#": 7215 + }, + { + "#": 7216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7218 + }, + "bounds": { + "#": 7224 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7227 + }, + "constraintImpulse": { + "#": 7228 + }, + "density": 0.001, + "force": { + "#": 7229 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 240, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7230 + }, + "positionImpulse": { + "#": 7231 + }, + "positionPrev": { + "#": 7232 + }, + "render": { + "#": 7233 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7235 + }, + "vertices": { + "#": 7236 + } + }, + [ + { + "#": 7219 + }, + { + "#": 7220 + }, + { + "#": 7221 + }, + { + "#": 7222 + }, + { + "#": 7223 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7225 + }, + "min": { + "#": 7226 + } + }, + { + "x": 518.4560000000001, + "y": 447 + }, + { + "x": 503.2400000000001, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 439 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7234 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7237 + }, + { + "#": 7238 + }, + { + "#": 7239 + }, + { + "#": 7240 + }, + { + "#": 7241 + }, + { + "#": 7242 + }, + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + }, + { + "#": 7246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7248 + }, + "bounds": { + "#": 7254 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7257 + }, + "constraintImpulse": { + "#": 7258 + }, + "density": 0.001, + "force": { + "#": 7259 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 241, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7260 + }, + "positionImpulse": { + "#": 7261 + }, + "positionPrev": { + "#": 7262 + }, + "render": { + "#": 7263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7265 + }, + "vertices": { + "#": 7266 + } + }, + [ + { + "#": 7249 + }, + { + "#": 7250 + }, + { + "#": 7251 + }, + { + "#": 7252 + }, + { + "#": 7253 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7255 + }, + "min": { + "#": 7256 + } + }, + { + "x": 538.672, + "y": 447 + }, + { + "x": 523.4560000000001, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 439 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7264 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7267 + }, + { + "#": 7268 + }, + { + "#": 7269 + }, + { + "#": 7270 + }, + { + "#": 7271 + }, + { + "#": 7272 + }, + { + "#": 7273 + }, + { + "#": 7274 + }, + { + "#": 7275 + }, + { + "#": 7276 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7278 + }, + "bounds": { + "#": 7284 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7287 + }, + "constraintImpulse": { + "#": 7288 + }, + "density": 0.001, + "force": { + "#": 7289 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 242, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7290 + }, + "positionImpulse": { + "#": 7291 + }, + "positionPrev": { + "#": 7292 + }, + "render": { + "#": 7293 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7295 + }, + "vertices": { + "#": 7296 + } + }, + [ + { + "#": 7279 + }, + { + "#": 7280 + }, + { + "#": 7281 + }, + { + "#": 7282 + }, + { + "#": 7283 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7285 + }, + "min": { + "#": 7286 + } + }, + { + "x": 558.8879999999999, + "y": 447 + }, + { + "x": 543.672, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 439 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7294 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7297 + }, + { + "#": 7298 + }, + { + "#": 7299 + }, + { + "#": 7300 + }, + { + "#": 7301 + }, + { + "#": 7302 + }, + { + "#": 7303 + }, + { + "#": 7304 + }, + { + "#": 7305 + }, + { + "#": 7306 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7308 + }, + "bounds": { + "#": 7314 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7317 + }, + "constraintImpulse": { + "#": 7318 + }, + "density": 0.001, + "force": { + "#": 7319 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 243, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7320 + }, + "positionImpulse": { + "#": 7321 + }, + "positionPrev": { + "#": 7322 + }, + "render": { + "#": 7323 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7325 + }, + "vertices": { + "#": 7326 + } + }, + [ + { + "#": 7309 + }, + { + "#": 7310 + }, + { + "#": 7311 + }, + { + "#": 7312 + }, + { + "#": 7313 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7315 + }, + "min": { + "#": 7316 + } + }, + { + "x": 579.1039999999998, + "y": 447 + }, + { + "x": 563.8879999999999, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 439 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7324 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7327 + }, + { + "#": 7328 + }, + { + "#": 7329 + }, + { + "#": 7330 + }, + { + "#": 7331 + }, + { + "#": 7332 + }, + { + "#": 7333 + }, + { + "#": 7334 + }, + { + "#": 7335 + }, + { + "#": 7336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 436.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7338 + }, + "bounds": { + "#": 7344 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7347 + }, + "constraintImpulse": { + "#": 7348 + }, + "density": 0.001, + "force": { + "#": 7349 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 244, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7350 + }, + "positionImpulse": { + "#": 7351 + }, + "positionPrev": { + "#": 7352 + }, + "render": { + "#": 7353 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7355 + }, + "vertices": { + "#": 7356 + } + }, + [ + { + "#": 7339 + }, + { + "#": 7340 + }, + { + "#": 7341 + }, + { + "#": 7342 + }, + { + "#": 7343 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7345 + }, + "min": { + "#": 7346 + } + }, + { + "x": 599.3199999999997, + "y": 447 + }, + { + "x": 584.1039999999998, + "y": 431 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 439 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7354 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7357 + }, + { + "#": 7358 + }, + { + "#": 7359 + }, + { + "#": 7360 + }, + { + "#": 7361 + }, + { + "#": 7362 + }, + { + "#": 7363 + }, + { + "#": 7364 + }, + { + "#": 7365 + }, + { + "#": 7366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 441.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 445.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 445.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 441.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 436.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 432.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 431 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 432.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 436.528 + }, + [], + [ + { + "#": 7369 + }, + { + "#": 7373 + }, + { + "#": 7377 + }, + { + "#": 7381 + }, + { + "#": 7385 + }, + { + "#": 7389 + }, + { + "#": 7393 + }, + { + "#": 7397 + }, + { + "#": 7401 + }, + { + "#": 7405 + }, + { + "#": 7409 + }, + { + "#": 7413 + }, + { + "#": 7417 + }, + { + "#": 7421 + }, + { + "#": 7425 + }, + { + "#": 7429 + }, + { + "#": 7433 + }, + { + "#": 7437 + }, + { + "#": 7441 + }, + { + "#": 7445 + }, + { + "#": 7449 + }, + { + "#": 7453 + }, + { + "#": 7457 + }, + { + "#": 7461 + }, + { + "#": 7465 + }, + { + "#": 7469 + }, + { + "#": 7473 + }, + { + "#": 7477 + }, + { + "#": 7481 + }, + { + "#": 7485 + }, + { + "#": 7489 + }, + { + "#": 7493 + }, + { + "#": 7497 + }, + { + "#": 7501 + }, + { + "#": 7505 + }, + { + "#": 7509 + }, + { + "#": 7513 + }, + { + "#": 7517 + }, + { + "#": 7521 + }, + { + "#": 7525 + }, + { + "#": 7529 + }, + { + "#": 7533 + }, + { + "#": 7537 + }, + { + "#": 7541 + }, + { + "#": 7545 + }, + { + "#": 7549 + }, + { + "#": 7553 + }, + { + "#": 7557 + }, + { + "#": 7561 + }, + { + "#": 7565 + }, + { + "#": 7569 + }, + { + "#": 7573 + }, + { + "#": 7577 + }, + { + "#": 7581 + }, + { + "#": 7585 + }, + { + "#": 7589 + }, + { + "#": 7593 + }, + { + "#": 7597 + }, + { + "#": 7601 + }, + { + "#": 7605 + }, + { + "#": 7609 + }, + { + "#": 7613 + }, + { + "#": 7617 + }, + { + "#": 7621 + }, + { + "#": 7625 + }, + { + "#": 7629 + }, + { + "#": 7633 + }, + { + "#": 7637 + }, + { + "#": 7641 + }, + { + "#": 7645 + }, + { + "#": 7649 + }, + { + "#": 7653 + }, + { + "#": 7657 + }, + { + "#": 7661 + }, + { + "#": 7665 + }, + { + "#": 7669 + }, + { + "#": 7673 + }, + { + "#": 7677 + }, + { + "#": 7681 + }, + { + "#": 7685 + }, + { + "#": 7689 + }, + { + "#": 7693 + }, + { + "#": 7697 + }, + { + "#": 7701 + }, + { + "#": 7705 + }, + { + "#": 7709 + }, + { + "#": 7713 + }, + { + "#": 7717 + }, + { + "#": 7721 + }, + { + "#": 7725 + }, + { + "#": 7729 + }, + { + "#": 7733 + }, + { + "#": 7737 + }, + { + "#": 7741 + }, + { + "#": 7745 + }, + { + "#": 7749 + }, + { + "#": 7753 + }, + { + "#": 7757 + }, + { + "#": 7761 + }, + { + "#": 7765 + }, + { + "#": 7769 + }, + { + "#": 7773 + }, + { + "#": 7777 + }, + { + "#": 7781 + }, + { + "#": 7785 + }, + { + "#": 7789 + }, + { + "#": 7793 + }, + { + "#": 7797 + }, + { + "#": 7801 + }, + { + "#": 7805 + }, + { + "#": 7809 + }, + { + "#": 7813 + }, + { + "#": 7817 + }, + { + "#": 7821 + }, + { + "#": 7825 + }, + { + "#": 7829 + }, + { + "#": 7833 + }, + { + "#": 7837 + }, + { + "#": 7841 + }, + { + "#": 7845 + }, + { + "#": 7849 + }, + { + "#": 7853 + }, + { + "#": 7857 + }, + { + "#": 7861 + }, + { + "#": 7865 + }, + { + "#": 7869 + }, + { + "#": 7873 + }, + { + "#": 7877 + }, + { + "#": 7881 + }, + { + "#": 7885 + }, + { + "#": 7889 + }, + { + "#": 7893 + }, + { + "#": 7897 + }, + { + "#": 7901 + }, + { + "#": 7905 + }, + { + "#": 7909 + }, + { + "#": 7913 + }, + { + "#": 7917 + }, + { + "#": 7921 + }, + { + "#": 7925 + }, + { + "#": 7929 + }, + { + "#": 7933 + }, + { + "#": 7937 + }, + { + "#": 7941 + }, + { + "#": 7945 + }, + { + "#": 7949 + }, + { + "#": 7953 + }, + { + "#": 7957 + }, + { + "#": 7961 + }, + { + "#": 7965 + }, + { + "#": 7969 + }, + { + "#": 7973 + }, + { + "#": 7977 + }, + { + "#": 7981 + }, + { + "#": 7985 + }, + { + "#": 7989 + }, + { + "#": 7993 + }, + { + "#": 7997 + }, + { + "#": 8001 + }, + { + "#": 8005 + }, + { + "#": 8009 + }, + { + "#": 8013 + }, + { + "#": 8017 + }, + { + "#": 8021 + }, + { + "#": 8025 + }, + { + "#": 8029 + }, + { + "#": 8033 + }, + { + "#": 8037 + }, + { + "#": 8041 + }, + { + "#": 8045 + }, + { + "#": 8049 + }, + { + "#": 8053 + }, + { + "#": 8057 + }, + { + "#": 8061 + }, + { + "#": 8065 + }, + { + "#": 8069 + }, + { + "#": 8073 + }, + { + "#": 8077 + }, + { + "#": 8081 + }, + { + "#": 8085 + }, + { + "#": 8089 + }, + { + "#": 8093 + }, + { + "#": 8097 + }, + { + "#": 8101 + }, + { + "#": 8105 + }, + { + "#": 8109 + }, + { + "#": 8113 + }, + { + "#": 8117 + }, + { + "#": 8121 + }, + { + "#": 8125 + }, + { + "#": 8129 + }, + { + "#": 8133 + }, + { + "#": 8137 + }, + { + "#": 8141 + }, + { + "#": 8145 + }, + { + "#": 8149 + }, + { + "#": 8153 + }, + { + "#": 8157 + }, + { + "#": 8161 + }, + { + "#": 8165 + }, + { + "#": 8169 + }, + { + "#": 8173 + }, + { + "#": 8177 + }, + { + "#": 8181 + }, + { + "#": 8185 + }, + { + "#": 8189 + }, + { + "#": 8193 + }, + { + "#": 8197 + }, + { + "#": 8201 + }, + { + "#": 8205 + }, + { + "#": 8209 + }, + { + "#": 8213 + }, + { + "#": 8217 + }, + { + "#": 8221 + }, + { + "#": 8225 + }, + { + "#": 8229 + }, + { + "#": 8233 + }, + { + "#": 8237 + }, + { + "#": 8241 + }, + { + "#": 8245 + }, + { + "#": 8249 + }, + { + "#": 8253 + }, + { + "#": 8257 + }, + { + "#": 8261 + }, + { + "#": 8265 + }, + { + "#": 8269 + }, + { + "#": 8273 + }, + { + "#": 8277 + }, + { + "#": 8281 + }, + { + "#": 8285 + }, + { + "#": 8289 + }, + { + "#": 8293 + }, + { + "#": 8297 + }, + { + "#": 8301 + }, + { + "#": 8305 + }, + { + "#": 8309 + }, + { + "#": 8313 + }, + { + "#": 8317 + }, + { + "#": 8321 + }, + { + "#": 8325 + }, + { + "#": 8329 + }, + { + "#": 8333 + }, + { + "#": 8337 + }, + { + "#": 8341 + }, + { + "#": 8345 + }, + { + "#": 8349 + }, + { + "#": 8353 + }, + { + "#": 8357 + }, + { + "#": 8361 + }, + { + "#": 8365 + }, + { + "#": 8369 + }, + { + "#": 8373 + }, + { + "#": 8377 + }, + { + "#": 8381 + }, + { + "#": 8385 + }, + { + "#": 8389 + }, + { + "#": 8393 + }, + { + "#": 8397 + }, + { + "#": 8401 + }, + { + "#": 8405 + }, + { + "#": 8409 + }, + { + "#": 8413 + }, + { + "#": 8417 + }, + { + "#": 8421 + }, + { + "#": 8425 + }, + { + "#": 8429 + }, + { + "#": 8433 + }, + { + "#": 8437 + }, + { + "#": 8441 + }, + { + "#": 8445 + }, + { + "#": 8449 + }, + { + "#": 8453 + }, + { + "#": 8457 + }, + { + "#": 8461 + }, + { + "#": 8465 + }, + { + "#": 8469 + }, + { + "#": 8473 + }, + { + "#": 8477 + }, + { + "#": 8481 + }, + { + "#": 8485 + }, + { + "#": 8489 + }, + { + "#": 8493 + }, + { + "#": 8497 + }, + { + "#": 8501 + }, + { + "#": 8505 + }, + { + "#": 8509 + }, + { + "#": 8513 + }, + { + "#": 8517 + }, + { + "#": 8521 + }, + { + "#": 8525 + }, + { + "#": 8529 + }, + { + "#": 8533 + }, + { + "#": 8537 + }, + { + "#": 8541 + }, + { + "#": 8545 + }, + { + "#": 8549 + }, + { + "#": 8553 + }, + { + "#": 8557 + }, + { + "#": 8561 + }, + { + "#": 8565 + }, + { + "#": 8569 + }, + { + "#": 8573 + }, + { + "#": 8577 + }, + { + "#": 8581 + }, + { + "#": 8585 + }, + { + "#": 8589 + }, + { + "#": 8593 + }, + { + "#": 8597 + }, + { + "#": 8601 + }, + { + "#": 8605 + }, + { + "#": 8609 + }, + { + "#": 8613 + }, + { + "#": 8617 + }, + { + "#": 8621 + }, + { + "#": 8625 + }, + { + "#": 8629 + }, + { + "#": 8633 + }, + { + "#": 8637 + }, + { + "#": 8641 + }, + { + "#": 8645 + }, + { + "#": 8649 + }, + { + "#": 8653 + }, + { + "#": 8657 + }, + { + "#": 8661 + }, + { + "#": 8665 + }, + { + "#": 8669 + }, + { + "#": 8673 + }, + { + "#": 8677 + }, + { + "#": 8681 + }, + { + "#": 8685 + }, + { + "#": 8689 + }, + { + "#": 8693 + }, + { + "#": 8697 + }, + { + "#": 8701 + }, + { + "#": 8705 + }, + { + "#": 8709 + }, + { + "#": 8713 + }, + { + "#": 8717 + }, + { + "#": 8721 + }, + { + "#": 8725 + }, + { + "#": 8729 + }, + { + "#": 8733 + }, + { + "#": 8737 + }, + { + "#": 8741 + }, + { + "#": 8745 + }, + { + "#": 8749 + }, + { + "#": 8753 + }, + { + "#": 8757 + }, + { + "#": 8761 + }, + { + "#": 8765 + }, + { + "#": 8769 + }, + { + "#": 8773 + }, + { + "#": 8777 + }, + { + "#": 8781 + }, + { + "#": 8785 + }, + { + "#": 8789 + }, + { + "#": 8793 + }, + { + "#": 8797 + }, + { + "#": 8801 + }, + { + "#": 8805 + }, + { + "#": 8809 + }, + { + "#": 8813 + }, + { + "#": 8817 + }, + { + "#": 8821 + }, + { + "#": 8825 + }, + { + "#": 8829 + }, + { + "#": 8833 + }, + { + "#": 8837 + }, + { + "#": 8841 + }, + { + "#": 8845 + }, + { + "#": 8849 + }, + { + "#": 8853 + }, + { + "#": 8857 + }, + { + "#": 8861 + }, + { + "#": 8865 + }, + { + "#": 8869 + }, + { + "#": 8873 + }, + { + "#": 8877 + }, + { + "#": 8881 + }, + { + "#": 8885 + }, + { + "#": 8889 + }, + { + "#": 8893 + }, + { + "#": 8897 + }, + { + "#": 8901 + }, + { + "#": 8905 + }, + { + "#": 8909 + }, + { + "#": 8913 + }, + { + "#": 8917 + }, + { + "#": 8921 + }, + { + "#": 8925 + }, + { + "#": 8929 + }, + { + "#": 8933 + }, + { + "#": 8937 + }, + { + "#": 8941 + }, + { + "#": 8945 + }, + { + "#": 8949 + }, + { + "#": 8953 + }, + { + "#": 8957 + }, + { + "#": 8961 + }, + { + "#": 8965 + }, + { + "#": 8969 + }, + { + "#": 8973 + }, + { + "#": 8977 + }, + { + "#": 8981 + }, + { + "#": 8985 + }, + { + "#": 8989 + }, + { + "#": 8993 + }, + { + "#": 8997 + }, + { + "#": 9001 + }, + { + "#": 9005 + }, + { + "#": 9009 + }, + { + "#": 9013 + }, + { + "#": 9017 + }, + { + "#": 9021 + }, + { + "#": 9025 + }, + { + "#": 9029 + }, + { + "#": 9033 + }, + { + "#": 9037 + }, + { + "#": 9041 + }, + { + "#": 9045 + }, + { + "#": 9049 + }, + { + "#": 9053 + }, + { + "#": 9057 + }, + { + "#": 9061 + }, + { + "#": 9065 + }, + { + "#": 9069 + }, + { + "#": 9073 + }, + { + "#": 9077 + }, + { + "#": 9081 + }, + { + "#": 9085 + }, + { + "#": 9089 + }, + { + "#": 9093 + }, + { + "#": 9097 + }, + { + "#": 9101 + }, + { + "#": 9105 + }, + { + "#": 9109 + }, + { + "#": 9113 + }, + { + "#": 9117 + }, + { + "#": 9121 + }, + { + "#": 9125 + }, + { + "#": 9129 + }, + { + "#": 9133 + }, + { + "#": 9137 + }, + { + "#": 9141 + }, + { + "#": 9145 + }, + { + "#": 9149 + }, + { + "#": 9153 + }, + { + "#": 9157 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 245, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7370 + }, + "pointB": { + "#": 7371 + }, + "render": { + "#": 7372 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 246, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7374 + }, + "pointB": { + "#": 7375 + }, + "render": { + "#": 7376 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 247, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7378 + }, + "pointB": { + "#": 7379 + }, + "render": { + "#": 7380 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 248, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7382 + }, + "pointB": { + "#": 7383 + }, + "render": { + "#": 7384 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 249, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7386 + }, + "pointB": { + "#": 7387 + }, + "render": { + "#": 7388 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 250, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7390 + }, + "pointB": { + "#": 7391 + }, + "render": { + "#": 7392 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 251, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7394 + }, + "pointB": { + "#": 7395 + }, + "render": { + "#": 7396 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 252, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7398 + }, + "pointB": { + "#": 7399 + }, + "render": { + "#": 7400 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 253, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7402 + }, + "pointB": { + "#": 7403 + }, + "render": { + "#": 7404 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 254, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7406 + }, + "pointB": { + "#": 7407 + }, + "render": { + "#": 7408 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 255, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7410 + }, + "pointB": { + "#": 7411 + }, + "render": { + "#": 7412 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 256, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7414 + }, + "pointB": { + "#": 7415 + }, + "render": { + "#": 7416 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 257, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7418 + }, + "pointB": { + "#": 7419 + }, + "render": { + "#": 7420 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 258, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7422 + }, + "pointB": { + "#": 7423 + }, + "render": { + "#": 7424 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 259, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7426 + }, + "pointB": { + "#": 7427 + }, + "render": { + "#": 7428 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 260, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 7430 + }, + "pointB": { + "#": 7431 + }, + "render": { + "#": 7432 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 261, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7434 + }, + "pointB": { + "#": 7435 + }, + "render": { + "#": 7436 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 262, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7438 + }, + "pointB": { + "#": 7439 + }, + "render": { + "#": 7440 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 263, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7442 + }, + "pointB": { + "#": 7443 + }, + "render": { + "#": 7444 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 264, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7446 + }, + "pointB": { + "#": 7447 + }, + "render": { + "#": 7448 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 265, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7450 + }, + "pointB": { + "#": 7451 + }, + "render": { + "#": 7452 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 266, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7454 + }, + "pointB": { + "#": 7455 + }, + "render": { + "#": 7456 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 267, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7458 + }, + "pointB": { + "#": 7459 + }, + "render": { + "#": 7460 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 268, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7462 + }, + "pointB": { + "#": 7463 + }, + "render": { + "#": 7464 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 269, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7466 + }, + "pointB": { + "#": 7467 + }, + "render": { + "#": 7468 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 270, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7470 + }, + "pointB": { + "#": 7471 + }, + "render": { + "#": 7472 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 271, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7474 + }, + "pointB": { + "#": 7475 + }, + "render": { + "#": 7476 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 272, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7478 + }, + "pointB": { + "#": 7479 + }, + "render": { + "#": 7480 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 273, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7482 + }, + "pointB": { + "#": 7483 + }, + "render": { + "#": 7484 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 274, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7486 + }, + "pointB": { + "#": 7487 + }, + "render": { + "#": 7488 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 275, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7490 + }, + "pointB": { + "#": 7491 + }, + "render": { + "#": 7492 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 276, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7494 + }, + "pointB": { + "#": 7495 + }, + "render": { + "#": 7496 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 277, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7498 + }, + "pointB": { + "#": 7499 + }, + "render": { + "#": 7500 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 278, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7502 + }, + "pointB": { + "#": 7503 + }, + "render": { + "#": 7504 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 279, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 7506 + }, + "pointB": { + "#": 7507 + }, + "render": { + "#": 7508 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 280, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7510 + }, + "pointB": { + "#": 7511 + }, + "render": { + "#": 7512 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 281, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7514 + }, + "pointB": { + "#": 7515 + }, + "render": { + "#": 7516 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 282, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7518 + }, + "pointB": { + "#": 7519 + }, + "render": { + "#": 7520 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 283, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7522 + }, + "pointB": { + "#": 7523 + }, + "render": { + "#": 7524 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 284, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7526 + }, + "pointB": { + "#": 7527 + }, + "render": { + "#": 7528 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 285, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7530 + }, + "pointB": { + "#": 7531 + }, + "render": { + "#": 7532 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 286, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7534 + }, + "pointB": { + "#": 7535 + }, + "render": { + "#": 7536 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 287, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7538 + }, + "pointB": { + "#": 7539 + }, + "render": { + "#": 7540 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 288, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7542 + }, + "pointB": { + "#": 7543 + }, + "render": { + "#": 7544 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 289, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7546 + }, + "pointB": { + "#": 7547 + }, + "render": { + "#": 7548 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 290, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7550 + }, + "pointB": { + "#": 7551 + }, + "render": { + "#": 7552 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 291, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7554 + }, + "pointB": { + "#": 7555 + }, + "render": { + "#": 7556 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 292, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7558 + }, + "pointB": { + "#": 7559 + }, + "render": { + "#": 7560 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 293, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7562 + }, + "pointB": { + "#": 7563 + }, + "render": { + "#": 7564 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 294, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7566 + }, + "pointB": { + "#": 7567 + }, + "render": { + "#": 7568 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 295, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7570 + }, + "pointB": { + "#": 7571 + }, + "render": { + "#": 7572 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 296, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7574 + }, + "pointB": { + "#": 7575 + }, + "render": { + "#": 7576 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 297, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7578 + }, + "pointB": { + "#": 7579 + }, + "render": { + "#": 7580 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 298, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7582 + }, + "pointB": { + "#": 7583 + }, + "render": { + "#": 7584 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 299, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7586 + }, + "pointB": { + "#": 7587 + }, + "render": { + "#": 7588 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 300, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7590 + }, + "pointB": { + "#": 7591 + }, + "render": { + "#": 7592 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 301, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7594 + }, + "pointB": { + "#": 7595 + }, + "render": { + "#": 7596 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 302, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7598 + }, + "pointB": { + "#": 7599 + }, + "render": { + "#": 7600 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 303, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7602 + }, + "pointB": { + "#": 7603 + }, + "render": { + "#": 7604 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 304, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7606 + }, + "pointB": { + "#": 7607 + }, + "render": { + "#": 7608 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 305, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7610 + }, + "pointB": { + "#": 7611 + }, + "render": { + "#": 7612 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 306, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7614 + }, + "pointB": { + "#": 7615 + }, + "render": { + "#": 7616 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 307, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7618 + }, + "pointB": { + "#": 7619 + }, + "render": { + "#": 7620 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 308, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7622 + }, + "pointB": { + "#": 7623 + }, + "render": { + "#": 7624 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 309, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7626 + }, + "pointB": { + "#": 7627 + }, + "render": { + "#": 7628 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 310, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7630 + }, + "pointB": { + "#": 7631 + }, + "render": { + "#": 7632 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 311, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7634 + }, + "pointB": { + "#": 7635 + }, + "render": { + "#": 7636 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 312, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7638 + }, + "pointB": { + "#": 7639 + }, + "render": { + "#": 7640 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 313, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7642 + }, + "pointB": { + "#": 7643 + }, + "render": { + "#": 7644 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 314, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7646 + }, + "pointB": { + "#": 7647 + }, + "render": { + "#": 7648 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 315, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7650 + }, + "pointB": { + "#": 7651 + }, + "render": { + "#": 7652 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 316, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7654 + }, + "pointB": { + "#": 7655 + }, + "render": { + "#": 7656 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 317, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7658 + }, + "pointB": { + "#": 7659 + }, + "render": { + "#": 7660 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 318, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 7662 + }, + "pointB": { + "#": 7663 + }, + "render": { + "#": 7664 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 319, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7666 + }, + "pointB": { + "#": 7667 + }, + "render": { + "#": 7668 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 320, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7670 + }, + "pointB": { + "#": 7671 + }, + "render": { + "#": 7672 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 321, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7674 + }, + "pointB": { + "#": 7675 + }, + "render": { + "#": 7676 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 322, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7678 + }, + "pointB": { + "#": 7679 + }, + "render": { + "#": 7680 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 323, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7682 + }, + "pointB": { + "#": 7683 + }, + "render": { + "#": 7684 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 324, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7686 + }, + "pointB": { + "#": 7687 + }, + "render": { + "#": 7688 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 325, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7690 + }, + "pointB": { + "#": 7691 + }, + "render": { + "#": 7692 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 326, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7694 + }, + "pointB": { + "#": 7695 + }, + "render": { + "#": 7696 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 327, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7698 + }, + "pointB": { + "#": 7699 + }, + "render": { + "#": 7700 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 328, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7702 + }, + "pointB": { + "#": 7703 + }, + "render": { + "#": 7704 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 329, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7706 + }, + "pointB": { + "#": 7707 + }, + "render": { + "#": 7708 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 330, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7710 + }, + "pointB": { + "#": 7711 + }, + "render": { + "#": 7712 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 331, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7714 + }, + "pointB": { + "#": 7715 + }, + "render": { + "#": 7716 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 332, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7718 + }, + "pointB": { + "#": 7719 + }, + "render": { + "#": 7720 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 333, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7722 + }, + "pointB": { + "#": 7723 + }, + "render": { + "#": 7724 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 334, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7726 + }, + "pointB": { + "#": 7727 + }, + "render": { + "#": 7728 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 335, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7730 + }, + "pointB": { + "#": 7731 + }, + "render": { + "#": 7732 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 336, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7734 + }, + "pointB": { + "#": 7735 + }, + "render": { + "#": 7736 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 337, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7738 + }, + "pointB": { + "#": 7739 + }, + "render": { + "#": 7740 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 338, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7742 + }, + "pointB": { + "#": 7743 + }, + "render": { + "#": 7744 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 339, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7746 + }, + "pointB": { + "#": 7747 + }, + "render": { + "#": 7748 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 340, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7750 + }, + "pointB": { + "#": 7751 + }, + "render": { + "#": 7752 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 341, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7754 + }, + "pointB": { + "#": 7755 + }, + "render": { + "#": 7756 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 342, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7758 + }, + "pointB": { + "#": 7759 + }, + "render": { + "#": 7760 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 343, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7762 + }, + "pointB": { + "#": 7763 + }, + "render": { + "#": 7764 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 344, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7766 + }, + "pointB": { + "#": 7767 + }, + "render": { + "#": 7768 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 345, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7770 + }, + "pointB": { + "#": 7771 + }, + "render": { + "#": 7772 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 346, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7774 + }, + "pointB": { + "#": 7775 + }, + "render": { + "#": 7776 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 347, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7778 + }, + "pointB": { + "#": 7779 + }, + "render": { + "#": 7780 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 348, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7782 + }, + "pointB": { + "#": 7783 + }, + "render": { + "#": 7784 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 349, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7786 + }, + "pointB": { + "#": 7787 + }, + "render": { + "#": 7788 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 350, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7790 + }, + "pointB": { + "#": 7791 + }, + "render": { + "#": 7792 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 351, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7794 + }, + "pointB": { + "#": 7795 + }, + "render": { + "#": 7796 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 352, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7798 + }, + "pointB": { + "#": 7799 + }, + "render": { + "#": 7800 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 353, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7802 + }, + "pointB": { + "#": 7803 + }, + "render": { + "#": 7804 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 354, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7806 + }, + "pointB": { + "#": 7807 + }, + "render": { + "#": 7808 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 355, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7810 + }, + "pointB": { + "#": 7811 + }, + "render": { + "#": 7812 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 356, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7814 + }, + "pointB": { + "#": 7815 + }, + "render": { + "#": 7816 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 357, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 7818 + }, + "pointB": { + "#": 7819 + }, + "render": { + "#": 7820 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 358, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7822 + }, + "pointB": { + "#": 7823 + }, + "render": { + "#": 7824 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 359, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7826 + }, + "pointB": { + "#": 7827 + }, + "render": { + "#": 7828 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 360, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7830 + }, + "pointB": { + "#": 7831 + }, + "render": { + "#": 7832 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 361, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7834 + }, + "pointB": { + "#": 7835 + }, + "render": { + "#": 7836 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 362, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7838 + }, + "pointB": { + "#": 7839 + }, + "render": { + "#": 7840 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 363, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7842 + }, + "pointB": { + "#": 7843 + }, + "render": { + "#": 7844 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 364, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7846 + }, + "pointB": { + "#": 7847 + }, + "render": { + "#": 7848 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 365, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7850 + }, + "pointB": { + "#": 7851 + }, + "render": { + "#": 7852 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 366, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7854 + }, + "pointB": { + "#": 7855 + }, + "render": { + "#": 7856 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 367, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7858 + }, + "pointB": { + "#": 7859 + }, + "render": { + "#": 7860 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 368, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7862 + }, + "pointB": { + "#": 7863 + }, + "render": { + "#": 7864 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 369, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7866 + }, + "pointB": { + "#": 7867 + }, + "render": { + "#": 7868 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 370, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7870 + }, + "pointB": { + "#": 7871 + }, + "render": { + "#": 7872 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 371, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7874 + }, + "pointB": { + "#": 7875 + }, + "render": { + "#": 7876 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 372, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7878 + }, + "pointB": { + "#": 7879 + }, + "render": { + "#": 7880 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 373, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7882 + }, + "pointB": { + "#": 7883 + }, + "render": { + "#": 7884 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 374, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7886 + }, + "pointB": { + "#": 7887 + }, + "render": { + "#": 7888 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 375, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7890 + }, + "pointB": { + "#": 7891 + }, + "render": { + "#": 7892 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 376, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7894 + }, + "pointB": { + "#": 7895 + }, + "render": { + "#": 7896 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 377, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7898 + }, + "pointB": { + "#": 7899 + }, + "render": { + "#": 7900 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 378, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7902 + }, + "pointB": { + "#": 7903 + }, + "render": { + "#": 7904 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 379, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7906 + }, + "pointB": { + "#": 7907 + }, + "render": { + "#": 7908 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 380, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7910 + }, + "pointB": { + "#": 7911 + }, + "render": { + "#": 7912 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 381, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7914 + }, + "pointB": { + "#": 7915 + }, + "render": { + "#": 7916 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 382, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7918 + }, + "pointB": { + "#": 7919 + }, + "render": { + "#": 7920 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 383, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7922 + }, + "pointB": { + "#": 7923 + }, + "render": { + "#": 7924 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 384, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7926 + }, + "pointB": { + "#": 7927 + }, + "render": { + "#": 7928 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 385, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7930 + }, + "pointB": { + "#": 7931 + }, + "render": { + "#": 7932 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 386, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7934 + }, + "pointB": { + "#": 7935 + }, + "render": { + "#": 7936 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 387, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7938 + }, + "pointB": { + "#": 7939 + }, + "render": { + "#": 7940 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 388, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7942 + }, + "pointB": { + "#": 7943 + }, + "render": { + "#": 7944 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 389, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7946 + }, + "pointB": { + "#": 7947 + }, + "render": { + "#": 7948 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 390, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7950 + }, + "pointB": { + "#": 7951 + }, + "render": { + "#": 7952 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 391, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7954 + }, + "pointB": { + "#": 7955 + }, + "render": { + "#": 7956 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 392, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7958 + }, + "pointB": { + "#": 7959 + }, + "render": { + "#": 7960 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 393, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7962 + }, + "pointB": { + "#": 7963 + }, + "render": { + "#": 7964 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 394, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7966 + }, + "pointB": { + "#": 7967 + }, + "render": { + "#": 7968 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 395, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7970 + }, + "pointB": { + "#": 7971 + }, + "render": { + "#": 7972 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 396, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 7974 + }, + "pointB": { + "#": 7975 + }, + "render": { + "#": 7976 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 397, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7978 + }, + "pointB": { + "#": 7979 + }, + "render": { + "#": 7980 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 398, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7982 + }, + "pointB": { + "#": 7983 + }, + "render": { + "#": 7984 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 399, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7986 + }, + "pointB": { + "#": 7987 + }, + "render": { + "#": 7988 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 400, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7990 + }, + "pointB": { + "#": 7991 + }, + "render": { + "#": 7992 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 401, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7994 + }, + "pointB": { + "#": 7995 + }, + "render": { + "#": 7996 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 402, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7998 + }, + "pointB": { + "#": 7999 + }, + "render": { + "#": 8000 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 403, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8002 + }, + "pointB": { + "#": 8003 + }, + "render": { + "#": 8004 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 404, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8006 + }, + "pointB": { + "#": 8007 + }, + "render": { + "#": 8008 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 405, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8010 + }, + "pointB": { + "#": 8011 + }, + "render": { + "#": 8012 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 406, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8014 + }, + "pointB": { + "#": 8015 + }, + "render": { + "#": 8016 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 407, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8018 + }, + "pointB": { + "#": 8019 + }, + "render": { + "#": 8020 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 408, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8022 + }, + "pointB": { + "#": 8023 + }, + "render": { + "#": 8024 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 409, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8026 + }, + "pointB": { + "#": 8027 + }, + "render": { + "#": 8028 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 410, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8030 + }, + "pointB": { + "#": 8031 + }, + "render": { + "#": 8032 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 411, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8034 + }, + "pointB": { + "#": 8035 + }, + "render": { + "#": 8036 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 412, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8038 + }, + "pointB": { + "#": 8039 + }, + "render": { + "#": 8040 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 413, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8042 + }, + "pointB": { + "#": 8043 + }, + "render": { + "#": 8044 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 414, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8046 + }, + "pointB": { + "#": 8047 + }, + "render": { + "#": 8048 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 415, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8050 + }, + "pointB": { + "#": 8051 + }, + "render": { + "#": 8052 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 416, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8054 + }, + "pointB": { + "#": 8055 + }, + "render": { + "#": 8056 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 417, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8058 + }, + "pointB": { + "#": 8059 + }, + "render": { + "#": 8060 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 418, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8062 + }, + "pointB": { + "#": 8063 + }, + "render": { + "#": 8064 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 419, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8066 + }, + "pointB": { + "#": 8067 + }, + "render": { + "#": 8068 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 420, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8070 + }, + "pointB": { + "#": 8071 + }, + "render": { + "#": 8072 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 421, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8074 + }, + "pointB": { + "#": 8075 + }, + "render": { + "#": 8076 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 422, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8078 + }, + "pointB": { + "#": 8079 + }, + "render": { + "#": 8080 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 423, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8082 + }, + "pointB": { + "#": 8083 + }, + "render": { + "#": 8084 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 424, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8086 + }, + "pointB": { + "#": 8087 + }, + "render": { + "#": 8088 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 425, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8090 + }, + "pointB": { + "#": 8091 + }, + "render": { + "#": 8092 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 426, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8094 + }, + "pointB": { + "#": 8095 + }, + "render": { + "#": 8096 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 427, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8098 + }, + "pointB": { + "#": 8099 + }, + "render": { + "#": 8100 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 428, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8102 + }, + "pointB": { + "#": 8103 + }, + "render": { + "#": 8104 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 429, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8106 + }, + "pointB": { + "#": 8107 + }, + "render": { + "#": 8108 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 430, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8110 + }, + "pointB": { + "#": 8111 + }, + "render": { + "#": 8112 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 431, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8114 + }, + "pointB": { + "#": 8115 + }, + "render": { + "#": 8116 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 432, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8118 + }, + "pointB": { + "#": 8119 + }, + "render": { + "#": 8120 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 433, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8122 + }, + "pointB": { + "#": 8123 + }, + "render": { + "#": 8124 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 434, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8126 + }, + "pointB": { + "#": 8127 + }, + "render": { + "#": 8128 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 435, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8130 + }, + "pointB": { + "#": 8131 + }, + "render": { + "#": 8132 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 436, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8134 + }, + "pointB": { + "#": 8135 + }, + "render": { + "#": 8136 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 437, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8138 + }, + "pointB": { + "#": 8139 + }, + "render": { + "#": 8140 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 438, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8142 + }, + "pointB": { + "#": 8143 + }, + "render": { + "#": 8144 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 439, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8146 + }, + "pointB": { + "#": 8147 + }, + "render": { + "#": 8148 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 440, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8150 + }, + "pointB": { + "#": 8151 + }, + "render": { + "#": 8152 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 441, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8154 + }, + "pointB": { + "#": 8155 + }, + "render": { + "#": 8156 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 442, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8158 + }, + "pointB": { + "#": 8159 + }, + "render": { + "#": 8160 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 443, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8162 + }, + "pointB": { + "#": 8163 + }, + "render": { + "#": 8164 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 444, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8166 + }, + "pointB": { + "#": 8167 + }, + "render": { + "#": 8168 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 445, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8170 + }, + "pointB": { + "#": 8171 + }, + "render": { + "#": 8172 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 446, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8174 + }, + "pointB": { + "#": 8175 + }, + "render": { + "#": 8176 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 447, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8178 + }, + "pointB": { + "#": 8179 + }, + "render": { + "#": 8180 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 448, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8182 + }, + "pointB": { + "#": 8183 + }, + "render": { + "#": 8184 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 449, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8186 + }, + "pointB": { + "#": 8187 + }, + "render": { + "#": 8188 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 450, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8190 + }, + "pointB": { + "#": 8191 + }, + "render": { + "#": 8192 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 451, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8194 + }, + "pointB": { + "#": 8195 + }, + "render": { + "#": 8196 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 452, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8198 + }, + "pointB": { + "#": 8199 + }, + "render": { + "#": 8200 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 453, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8202 + }, + "pointB": { + "#": 8203 + }, + "render": { + "#": 8204 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 454, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8206 + }, + "pointB": { + "#": 8207 + }, + "render": { + "#": 8208 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 455, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8210 + }, + "pointB": { + "#": 8211 + }, + "render": { + "#": 8212 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 456, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8214 + }, + "pointB": { + "#": 8215 + }, + "render": { + "#": 8216 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 457, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8218 + }, + "pointB": { + "#": 8219 + }, + "render": { + "#": 8220 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 458, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8222 + }, + "pointB": { + "#": 8223 + }, + "render": { + "#": 8224 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 459, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8226 + }, + "pointB": { + "#": 8227 + }, + "render": { + "#": 8228 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 460, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8230 + }, + "pointB": { + "#": 8231 + }, + "render": { + "#": 8232 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 461, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8234 + }, + "pointB": { + "#": 8235 + }, + "render": { + "#": 8236 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 462, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8238 + }, + "pointB": { + "#": 8239 + }, + "render": { + "#": 8240 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 463, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8242 + }, + "pointB": { + "#": 8243 + }, + "render": { + "#": 8244 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 464, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8246 + }, + "pointB": { + "#": 8247 + }, + "render": { + "#": 8248 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 465, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8250 + }, + "pointB": { + "#": 8251 + }, + "render": { + "#": 8252 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 466, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8254 + }, + "pointB": { + "#": 8255 + }, + "render": { + "#": 8256 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 467, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8258 + }, + "pointB": { + "#": 8259 + }, + "render": { + "#": 8260 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 468, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8262 + }, + "pointB": { + "#": 8263 + }, + "render": { + "#": 8264 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 469, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8266 + }, + "pointB": { + "#": 8267 + }, + "render": { + "#": 8268 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 470, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8270 + }, + "pointB": { + "#": 8271 + }, + "render": { + "#": 8272 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 471, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8274 + }, + "pointB": { + "#": 8275 + }, + "render": { + "#": 8276 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 472, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8278 + }, + "pointB": { + "#": 8279 + }, + "render": { + "#": 8280 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 473, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8282 + }, + "pointB": { + "#": 8283 + }, + "render": { + "#": 8284 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 474, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8286 + }, + "pointB": { + "#": 8287 + }, + "render": { + "#": 8288 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 475, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8290 + }, + "pointB": { + "#": 8291 + }, + "render": { + "#": 8292 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 476, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8294 + }, + "pointB": { + "#": 8295 + }, + "render": { + "#": 8296 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 477, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8298 + }, + "pointB": { + "#": 8299 + }, + "render": { + "#": 8300 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 478, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8302 + }, + "pointB": { + "#": 8303 + }, + "render": { + "#": 8304 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 479, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8306 + }, + "pointB": { + "#": 8307 + }, + "render": { + "#": 8308 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 480, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8310 + }, + "pointB": { + "#": 8311 + }, + "render": { + "#": 8312 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 481, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8314 + }, + "pointB": { + "#": 8315 + }, + "render": { + "#": 8316 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 482, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8318 + }, + "pointB": { + "#": 8319 + }, + "render": { + "#": 8320 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 483, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8322 + }, + "pointB": { + "#": 8323 + }, + "render": { + "#": 8324 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 484, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8326 + }, + "pointB": { + "#": 8327 + }, + "render": { + "#": 8328 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 485, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8330 + }, + "pointB": { + "#": 8331 + }, + "render": { + "#": 8332 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 486, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8334 + }, + "pointB": { + "#": 8335 + }, + "render": { + "#": 8336 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 487, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8338 + }, + "pointB": { + "#": 8339 + }, + "render": { + "#": 8340 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 488, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8342 + }, + "pointB": { + "#": 8343 + }, + "render": { + "#": 8344 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 489, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8346 + }, + "pointB": { + "#": 8347 + }, + "render": { + "#": 8348 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 490, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8350 + }, + "pointB": { + "#": 8351 + }, + "render": { + "#": 8352 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 491, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8354 + }, + "pointB": { + "#": 8355 + }, + "render": { + "#": 8356 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 492, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8358 + }, + "pointB": { + "#": 8359 + }, + "render": { + "#": 8360 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 493, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8362 + }, + "pointB": { + "#": 8363 + }, + "render": { + "#": 8364 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 494, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8366 + }, + "pointB": { + "#": 8367 + }, + "render": { + "#": 8368 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 495, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8370 + }, + "pointB": { + "#": 8371 + }, + "render": { + "#": 8372 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 496, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8374 + }, + "pointB": { + "#": 8375 + }, + "render": { + "#": 8376 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 497, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8378 + }, + "pointB": { + "#": 8379 + }, + "render": { + "#": 8380 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 498, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8382 + }, + "pointB": { + "#": 8383 + }, + "render": { + "#": 8384 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 499, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8386 + }, + "pointB": { + "#": 8387 + }, + "render": { + "#": 8388 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 500, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8390 + }, + "pointB": { + "#": 8391 + }, + "render": { + "#": 8392 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 501, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8394 + }, + "pointB": { + "#": 8395 + }, + "render": { + "#": 8396 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 502, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8398 + }, + "pointB": { + "#": 8399 + }, + "render": { + "#": 8400 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 503, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8402 + }, + "pointB": { + "#": 8403 + }, + "render": { + "#": 8404 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 504, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8406 + }, + "pointB": { + "#": 8407 + }, + "render": { + "#": 8408 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 505, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8410 + }, + "pointB": { + "#": 8411 + }, + "render": { + "#": 8412 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 506, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8414 + }, + "pointB": { + "#": 8415 + }, + "render": { + "#": 8416 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 507, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8418 + }, + "pointB": { + "#": 8419 + }, + "render": { + "#": 8420 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 508, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8422 + }, + "pointB": { + "#": 8423 + }, + "render": { + "#": 8424 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 509, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8426 + }, + "pointB": { + "#": 8427 + }, + "render": { + "#": 8428 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 510, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8430 + }, + "pointB": { + "#": 8431 + }, + "render": { + "#": 8432 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 511, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8434 + }, + "pointB": { + "#": 8435 + }, + "render": { + "#": 8436 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 512, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8438 + }, + "pointB": { + "#": 8439 + }, + "render": { + "#": 8440 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 513, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8442 + }, + "pointB": { + "#": 8443 + }, + "render": { + "#": 8444 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 514, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8446 + }, + "pointB": { + "#": 8447 + }, + "render": { + "#": 8448 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 515, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8450 + }, + "pointB": { + "#": 8451 + }, + "render": { + "#": 8452 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 516, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8454 + }, + "pointB": { + "#": 8455 + }, + "render": { + "#": 8456 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 517, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8458 + }, + "pointB": { + "#": 8459 + }, + "render": { + "#": 8460 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 518, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8462 + }, + "pointB": { + "#": 8463 + }, + "render": { + "#": 8464 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 519, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8466 + }, + "pointB": { + "#": 8467 + }, + "render": { + "#": 8468 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 520, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8470 + }, + "pointB": { + "#": 8471 + }, + "render": { + "#": 8472 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 521, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8474 + }, + "pointB": { + "#": 8475 + }, + "render": { + "#": 8476 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 522, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8478 + }, + "pointB": { + "#": 8479 + }, + "render": { + "#": 8480 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 523, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8482 + }, + "pointB": { + "#": 8483 + }, + "render": { + "#": 8484 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 524, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8486 + }, + "pointB": { + "#": 8487 + }, + "render": { + "#": 8488 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 525, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8490 + }, + "pointB": { + "#": 8491 + }, + "render": { + "#": 8492 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 526, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8494 + }, + "pointB": { + "#": 8495 + }, + "render": { + "#": 8496 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 527, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8498 + }, + "pointB": { + "#": 8499 + }, + "render": { + "#": 8500 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 528, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8502 + }, + "pointB": { + "#": 8503 + }, + "render": { + "#": 8504 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 529, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8506 + }, + "pointB": { + "#": 8507 + }, + "render": { + "#": 8508 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 530, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8510 + }, + "pointB": { + "#": 8511 + }, + "render": { + "#": 8512 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 531, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8514 + }, + "pointB": { + "#": 8515 + }, + "render": { + "#": 8516 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 532, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8518 + }, + "pointB": { + "#": 8519 + }, + "render": { + "#": 8520 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 533, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8522 + }, + "pointB": { + "#": 8523 + }, + "render": { + "#": 8524 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 534, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8526 + }, + "pointB": { + "#": 8527 + }, + "render": { + "#": 8528 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 535, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8530 + }, + "pointB": { + "#": 8531 + }, + "render": { + "#": 8532 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 536, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8534 + }, + "pointB": { + "#": 8535 + }, + "render": { + "#": 8536 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 537, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8538 + }, + "pointB": { + "#": 8539 + }, + "render": { + "#": 8540 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 538, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8542 + }, + "pointB": { + "#": 8543 + }, + "render": { + "#": 8544 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 539, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8546 + }, + "pointB": { + "#": 8547 + }, + "render": { + "#": 8548 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 540, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8550 + }, + "pointB": { + "#": 8551 + }, + "render": { + "#": 8552 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 541, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8554 + }, + "pointB": { + "#": 8555 + }, + "render": { + "#": 8556 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 542, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8558 + }, + "pointB": { + "#": 8559 + }, + "render": { + "#": 8560 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 543, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8562 + }, + "pointB": { + "#": 8563 + }, + "render": { + "#": 8564 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 544, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8566 + }, + "pointB": { + "#": 8567 + }, + "render": { + "#": 8568 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 545, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8570 + }, + "pointB": { + "#": 8571 + }, + "render": { + "#": 8572 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 546, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8574 + }, + "pointB": { + "#": 8575 + }, + "render": { + "#": 8576 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 547, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8578 + }, + "pointB": { + "#": 8579 + }, + "render": { + "#": 8580 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 548, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8582 + }, + "pointB": { + "#": 8583 + }, + "render": { + "#": 8584 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 549, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8586 + }, + "pointB": { + "#": 8587 + }, + "render": { + "#": 8588 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 550, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8590 + }, + "pointB": { + "#": 8591 + }, + "render": { + "#": 8592 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 551, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8594 + }, + "pointB": { + "#": 8595 + }, + "render": { + "#": 8596 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 552, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8598 + }, + "pointB": { + "#": 8599 + }, + "render": { + "#": 8600 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 553, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8602 + }, + "pointB": { + "#": 8603 + }, + "render": { + "#": 8604 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 554, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8606 + }, + "pointB": { + "#": 8607 + }, + "render": { + "#": 8608 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 555, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8610 + }, + "pointB": { + "#": 8611 + }, + "render": { + "#": 8612 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 556, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8614 + }, + "pointB": { + "#": 8615 + }, + "render": { + "#": 8616 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 557, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8618 + }, + "pointB": { + "#": 8619 + }, + "render": { + "#": 8620 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 558, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8622 + }, + "pointB": { + "#": 8623 + }, + "render": { + "#": 8624 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 559, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8626 + }, + "pointB": { + "#": 8627 + }, + "render": { + "#": 8628 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 560, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8630 + }, + "pointB": { + "#": 8631 + }, + "render": { + "#": 8632 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 561, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8634 + }, + "pointB": { + "#": 8635 + }, + "render": { + "#": 8636 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 562, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8638 + }, + "pointB": { + "#": 8639 + }, + "render": { + "#": 8640 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 563, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8642 + }, + "pointB": { + "#": 8643 + }, + "render": { + "#": 8644 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 564, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8646 + }, + "pointB": { + "#": 8647 + }, + "render": { + "#": 8648 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 565, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8650 + }, + "pointB": { + "#": 8651 + }, + "render": { + "#": 8652 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 566, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8654 + }, + "pointB": { + "#": 8655 + }, + "render": { + "#": 8656 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 567, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8658 + }, + "pointB": { + "#": 8659 + }, + "render": { + "#": 8660 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 568, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8662 + }, + "pointB": { + "#": 8663 + }, + "render": { + "#": 8664 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 569, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8666 + }, + "pointB": { + "#": 8667 + }, + "render": { + "#": 8668 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 570, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8670 + }, + "pointB": { + "#": 8671 + }, + "render": { + "#": 8672 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 571, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8674 + }, + "pointB": { + "#": 8675 + }, + "render": { + "#": 8676 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 572, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8678 + }, + "pointB": { + "#": 8679 + }, + "render": { + "#": 8680 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 573, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8682 + }, + "pointB": { + "#": 8683 + }, + "render": { + "#": 8684 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 574, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8686 + }, + "pointB": { + "#": 8687 + }, + "render": { + "#": 8688 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 575, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8690 + }, + "pointB": { + "#": 8691 + }, + "render": { + "#": 8692 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 576, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8694 + }, + "pointB": { + "#": 8695 + }, + "render": { + "#": 8696 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 577, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8698 + }, + "pointB": { + "#": 8699 + }, + "render": { + "#": 8700 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 578, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8702 + }, + "pointB": { + "#": 8703 + }, + "render": { + "#": 8704 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 579, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8706 + }, + "pointB": { + "#": 8707 + }, + "render": { + "#": 8708 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 580, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8710 + }, + "pointB": { + "#": 8711 + }, + "render": { + "#": 8712 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 581, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8714 + }, + "pointB": { + "#": 8715 + }, + "render": { + "#": 8716 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 582, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8718 + }, + "pointB": { + "#": 8719 + }, + "render": { + "#": 8720 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 583, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8722 + }, + "pointB": { + "#": 8723 + }, + "render": { + "#": 8724 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 584, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8726 + }, + "pointB": { + "#": 8727 + }, + "render": { + "#": 8728 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 585, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8730 + }, + "pointB": { + "#": 8731 + }, + "render": { + "#": 8732 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 586, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8734 + }, + "pointB": { + "#": 8735 + }, + "render": { + "#": 8736 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 587, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8738 + }, + "pointB": { + "#": 8739 + }, + "render": { + "#": 8740 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 588, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8742 + }, + "pointB": { + "#": 8743 + }, + "render": { + "#": 8744 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 589, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8746 + }, + "pointB": { + "#": 8747 + }, + "render": { + "#": 8748 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 590, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8750 + }, + "pointB": { + "#": 8751 + }, + "render": { + "#": 8752 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 591, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8754 + }, + "pointB": { + "#": 8755 + }, + "render": { + "#": 8756 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 592, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8758 + }, + "pointB": { + "#": 8759 + }, + "render": { + "#": 8760 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 593, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8762 + }, + "pointB": { + "#": 8763 + }, + "render": { + "#": 8764 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 594, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8766 + }, + "pointB": { + "#": 8767 + }, + "render": { + "#": 8768 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 595, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8770 + }, + "pointB": { + "#": 8771 + }, + "render": { + "#": 8772 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 596, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8774 + }, + "pointB": { + "#": 8775 + }, + "render": { + "#": 8776 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 597, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8778 + }, + "pointB": { + "#": 8779 + }, + "render": { + "#": 8780 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 598, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8782 + }, + "pointB": { + "#": 8783 + }, + "render": { + "#": 8784 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 599, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8786 + }, + "pointB": { + "#": 8787 + }, + "render": { + "#": 8788 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 600, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8790 + }, + "pointB": { + "#": 8791 + }, + "render": { + "#": 8792 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 601, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8794 + }, + "pointB": { + "#": 8795 + }, + "render": { + "#": 8796 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 602, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8798 + }, + "pointB": { + "#": 8799 + }, + "render": { + "#": 8800 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 603, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8802 + }, + "pointB": { + "#": 8803 + }, + "render": { + "#": 8804 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 604, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8806 + }, + "pointB": { + "#": 8807 + }, + "render": { + "#": 8808 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 605, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8810 + }, + "pointB": { + "#": 8811 + }, + "render": { + "#": 8812 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 606, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8814 + }, + "pointB": { + "#": 8815 + }, + "render": { + "#": 8816 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 607, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8818 + }, + "pointB": { + "#": 8819 + }, + "render": { + "#": 8820 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 608, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8822 + }, + "pointB": { + "#": 8823 + }, + "render": { + "#": 8824 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 609, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8826 + }, + "pointB": { + "#": 8827 + }, + "render": { + "#": 8828 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 610, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8830 + }, + "pointB": { + "#": 8831 + }, + "render": { + "#": 8832 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 611, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8834 + }, + "pointB": { + "#": 8835 + }, + "render": { + "#": 8836 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 612, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8838 + }, + "pointB": { + "#": 8839 + }, + "render": { + "#": 8840 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 613, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8842 + }, + "pointB": { + "#": 8843 + }, + "render": { + "#": 8844 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 614, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8846 + }, + "pointB": { + "#": 8847 + }, + "render": { + "#": 8848 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 615, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8850 + }, + "pointB": { + "#": 8851 + }, + "render": { + "#": 8852 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 616, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8854 + }, + "pointB": { + "#": 8855 + }, + "render": { + "#": 8856 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 617, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8858 + }, + "pointB": { + "#": 8859 + }, + "render": { + "#": 8860 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 618, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8862 + }, + "pointB": { + "#": 8863 + }, + "render": { + "#": 8864 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 619, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8866 + }, + "pointB": { + "#": 8867 + }, + "render": { + "#": 8868 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 620, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8870 + }, + "pointB": { + "#": 8871 + }, + "render": { + "#": 8872 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 621, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8874 + }, + "pointB": { + "#": 8875 + }, + "render": { + "#": 8876 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 622, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8878 + }, + "pointB": { + "#": 8879 + }, + "render": { + "#": 8880 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 623, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8882 + }, + "pointB": { + "#": 8883 + }, + "render": { + "#": 8884 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 624, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8886 + }, + "pointB": { + "#": 8887 + }, + "render": { + "#": 8888 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 625, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8890 + }, + "pointB": { + "#": 8891 + }, + "render": { + "#": 8892 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 626, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8894 + }, + "pointB": { + "#": 8895 + }, + "render": { + "#": 8896 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 627, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8898 + }, + "pointB": { + "#": 8899 + }, + "render": { + "#": 8900 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 628, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8902 + }, + "pointB": { + "#": 8903 + }, + "render": { + "#": 8904 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 629, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8906 + }, + "pointB": { + "#": 8907 + }, + "render": { + "#": 8908 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 630, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8910 + }, + "pointB": { + "#": 8911 + }, + "render": { + "#": 8912 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 631, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8914 + }, + "pointB": { + "#": 8915 + }, + "render": { + "#": 8916 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 632, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8918 + }, + "pointB": { + "#": 8919 + }, + "render": { + "#": 8920 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 633, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8922 + }, + "pointB": { + "#": 8923 + }, + "render": { + "#": 8924 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 634, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8926 + }, + "pointB": { + "#": 8927 + }, + "render": { + "#": 8928 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 635, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8930 + }, + "pointB": { + "#": 8931 + }, + "render": { + "#": 8932 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 636, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8934 + }, + "pointB": { + "#": 8935 + }, + "render": { + "#": 8936 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 637, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8938 + }, + "pointB": { + "#": 8939 + }, + "render": { + "#": 8940 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 638, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8942 + }, + "pointB": { + "#": 8943 + }, + "render": { + "#": 8944 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 639, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8946 + }, + "pointB": { + "#": 8947 + }, + "render": { + "#": 8948 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 640, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8950 + }, + "pointB": { + "#": 8951 + }, + "render": { + "#": 8952 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 641, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8954 + }, + "pointB": { + "#": 8955 + }, + "render": { + "#": 8956 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 642, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8958 + }, + "pointB": { + "#": 8959 + }, + "render": { + "#": 8960 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 643, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8962 + }, + "pointB": { + "#": 8963 + }, + "render": { + "#": 8964 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 644, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8966 + }, + "pointB": { + "#": 8967 + }, + "render": { + "#": 8968 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 645, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8970 + }, + "pointB": { + "#": 8971 + }, + "render": { + "#": 8972 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 646, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8974 + }, + "pointB": { + "#": 8975 + }, + "render": { + "#": 8976 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 647, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8978 + }, + "pointB": { + "#": 8979 + }, + "render": { + "#": 8980 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 648, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8982 + }, + "pointB": { + "#": 8983 + }, + "render": { + "#": 8984 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 649, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8986 + }, + "pointB": { + "#": 8987 + }, + "render": { + "#": 8988 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 650, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8990 + }, + "pointB": { + "#": 8991 + }, + "render": { + "#": 8992 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 651, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8994 + }, + "pointB": { + "#": 8995 + }, + "render": { + "#": 8996 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 652, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8998 + }, + "pointB": { + "#": 8999 + }, + "render": { + "#": 9000 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 653, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9002 + }, + "pointB": { + "#": 9003 + }, + "render": { + "#": 9004 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 654, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9006 + }, + "pointB": { + "#": 9007 + }, + "render": { + "#": 9008 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 655, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9010 + }, + "pointB": { + "#": 9011 + }, + "render": { + "#": 9012 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 656, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9014 + }, + "pointB": { + "#": 9015 + }, + "render": { + "#": 9016 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 657, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9018 + }, + "pointB": { + "#": 9019 + }, + "render": { + "#": 9020 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 658, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9022 + }, + "pointB": { + "#": 9023 + }, + "render": { + "#": 9024 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 659, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9026 + }, + "pointB": { + "#": 9027 + }, + "render": { + "#": 9028 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 660, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9030 + }, + "pointB": { + "#": 9031 + }, + "render": { + "#": 9032 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 661, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9034 + }, + "pointB": { + "#": 9035 + }, + "render": { + "#": 9036 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 662, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9038 + }, + "pointB": { + "#": 9039 + }, + "render": { + "#": 9040 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 663, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9042 + }, + "pointB": { + "#": 9043 + }, + "render": { + "#": 9044 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 664, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9046 + }, + "pointB": { + "#": 9047 + }, + "render": { + "#": 9048 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 665, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9050 + }, + "pointB": { + "#": 9051 + }, + "render": { + "#": 9052 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 666, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9054 + }, + "pointB": { + "#": 9055 + }, + "render": { + "#": 9056 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 667, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9058 + }, + "pointB": { + "#": 9059 + }, + "render": { + "#": 9060 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 668, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9062 + }, + "pointB": { + "#": 9063 + }, + "render": { + "#": 9064 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 669, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 9066 + }, + "pointB": { + "#": 9067 + }, + "render": { + "#": 9068 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 670, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9070 + }, + "pointB": { + "#": 9071 + }, + "render": { + "#": 9072 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 671, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9074 + }, + "pointB": { + "#": 9075 + }, + "render": { + "#": 9076 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 672, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9078 + }, + "pointB": { + "#": 9079 + }, + "render": { + "#": 9080 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 673, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9082 + }, + "pointB": { + "#": 9083 + }, + "render": { + "#": 9084 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 674, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9086 + }, + "pointB": { + "#": 9087 + }, + "render": { + "#": 9088 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 675, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9090 + }, + "pointB": { + "#": 9091 + }, + "render": { + "#": 9092 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 676, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9094 + }, + "pointB": { + "#": 9095 + }, + "render": { + "#": 9096 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 677, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9098 + }, + "pointB": { + "#": 9099 + }, + "render": { + "#": 9100 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 678, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9102 + }, + "pointB": { + "#": 9103 + }, + "render": { + "#": 9104 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 679, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9106 + }, + "pointB": { + "#": 9107 + }, + "render": { + "#": 9108 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 680, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9110 + }, + "pointB": { + "#": 9111 + }, + "render": { + "#": 9112 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 681, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9114 + }, + "pointB": { + "#": 9115 + }, + "render": { + "#": 9116 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 682, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9118 + }, + "pointB": { + "#": 9119 + }, + "render": { + "#": 9120 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 683, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9122 + }, + "pointB": { + "#": 9123 + }, + "render": { + "#": 9124 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 684, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9126 + }, + "pointB": { + "#": 9127 + }, + "render": { + "#": 9128 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 685, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9130 + }, + "pointB": { + "#": 9131 + }, + "render": { + "#": 9132 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 686, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9134 + }, + "pointB": { + "#": 9135 + }, + "render": { + "#": 9136 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 687, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9138 + }, + "pointB": { + "#": 9139 + }, + "render": { + "#": 9140 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 688, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9142 + }, + "pointB": { + "#": 9143 + }, + "render": { + "#": 9144 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 689, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9146 + }, + "pointB": { + "#": 9147 + }, + "render": { + "#": 9148 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 690, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9150 + }, + "pointB": { + "#": 9151 + }, + "render": { + "#": 9152 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 691, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9154 + }, + "pointB": { + "#": 9155 + }, + "render": { + "#": 9156 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 692, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9158 + }, + "pointB": { + "#": 9159 + }, + "render": { + "#": 9160 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 9162 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 9163 + }, + "pointB": "", + "render": { + "#": 9164 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/cloth/cloth-10.json b/tests/browser/refs/cloth/cloth-10.json new file mode 100644 index 00000000..03285ae5 --- /dev/null +++ b/tests/browser/refs/cloth/cloth-10.json @@ -0,0 +1,85424 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 167 + }, + "composites": { + "#": 170 + }, + "constraints": { + "#": 9407 + }, + "gravity": { + "#": 9411 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 145 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 19911.024116, + "axes": { + "#": 91 + }, + "bounds": { + "#": 105 + }, + "circleRadius": 80, + "collisionFilter": { + "#": 108 + }, + "constraintImpulse": { + "#": 109 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 110 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 693, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 111 + }, + "positionImpulse": { + "#": 112 + }, + "positionPrev": { + "#": 113 + }, + "region": { + "#": 114 + }, + "render": { + "#": 115 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 117 + }, + "vertices": { + "#": 118 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": -0.9709333586157194, + "y": -0.2393499804203023 + }, + { + "x": -0.8854709821702762, + "y": -0.46469467366692147 + }, + { + "x": -0.748515380823054, + "y": -0.6631174290209226 + }, + { + "x": -0.5680418986705345, + "y": -0.8229996363029416 + }, + { + "x": -0.354604215858066, + "y": -0.9350164972318329 + }, + { + "x": -0.120555900025101, + "y": -0.9927065402066907 + }, + { + "x": 0.120555900025101, + "y": -0.9927065402066907 + }, + { + "x": 0.354604215858066, + "y": -0.9350164972318329 + }, + { + "x": 0.5680418986705345, + "y": -0.8229996363029416 + }, + { + "x": 0.748515380823054, + "y": -0.6631174290209226 + }, + { + "x": 0.8854709821702762, + "y": -0.46469467366692147 + }, + { + "x": 0.9709333586157194, + "y": -0.2393499804203023 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 106 + }, + "min": { + "#": 107 + } + }, + { + "x": 379.41700000000003, + "y": 580 + }, + { + "x": 220.583, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 500 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 500 + }, + { + "endCol": 7, + "endRow": 12, + "id": "4,7,8,12", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 116 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 379.41700000000003, + "y": 509.64300000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.801, + "y": 528.368 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 365.839, + "y": 545.445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.05, + "y": 559.881 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.178, + "y": 570.836 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 319.145, + "y": 577.675 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 300, + "y": 580 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.855, + "y": 577.675 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 262.822, + "y": 570.836 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 246.95, + "y": 559.881 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 234.161, + "y": 545.445 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 225.199, + "y": 528.368 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 220.583, + "y": 509.64300000000003 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 220.583, + "y": 490.35699999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 225.199, + "y": 471.632 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 234.161, + "y": 454.555 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 246.95, + "y": 440.119 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 262.822, + "y": 429.164 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 280.855, + "y": 422.325 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 319.145, + "y": 422.325 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 337.178, + "y": 429.164 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 353.05, + "y": 440.119 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 365.839, + "y": 454.555 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 374.801, + "y": 471.632 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 379.41700000000003, + "y": 490.35699999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6400, + "axes": { + "#": 146 + }, + "bounds": { + "#": 149 + }, + "collisionFilter": { + "#": 152 + }, + "constraintImpulse": { + "#": 153 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 154 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 694, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 155 + }, + "positionImpulse": { + "#": 156 + }, + "positionPrev": { + "#": 157 + }, + "region": { + "#": 158 + }, + "render": { + "#": 159 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 161 + }, + "vertices": { + "#": 162 + } + }, + [ + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 150 + }, + "min": { + "#": 151 + } + }, + { + "x": 540, + "y": 520 + }, + { + "x": 460, + "y": 440 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 480 + }, + { + "endCol": 11, + "endRow": 10, + "id": "9,11,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 160 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 440 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 440 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 520 + }, + { + "max": { + "#": 168 + }, + "min": { + "#": 169 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 171 + } + ], + { + "bodies": { + "#": 172 + }, + "composites": { + "#": 7613 + }, + "constraints": { + "#": 7614 + }, + "id": 4, + "isModified": false, + "label": "Soft Body", + "parent": null, + "type": "composite" + }, + [ + { + "#": 173 + }, + { + "#": 204 + }, + { + "#": 235 + }, + { + "#": 266 + }, + { + "#": 297 + }, + { + "#": 328 + }, + { + "#": 359 + }, + { + "#": 390 + }, + { + "#": 421 + }, + { + "#": 452 + }, + { + "#": 483 + }, + { + "#": 514 + }, + { + "#": 545 + }, + { + "#": 576 + }, + { + "#": 607 + }, + { + "#": 638 + }, + { + "#": 669 + }, + { + "#": 700 + }, + { + "#": 731 + }, + { + "#": 762 + }, + { + "#": 793 + }, + { + "#": 824 + }, + { + "#": 855 + }, + { + "#": 886 + }, + { + "#": 917 + }, + { + "#": 948 + }, + { + "#": 979 + }, + { + "#": 1010 + }, + { + "#": 1041 + }, + { + "#": 1072 + }, + { + "#": 1103 + }, + { + "#": 1134 + }, + { + "#": 1165 + }, + { + "#": 1196 + }, + { + "#": 1227 + }, + { + "#": 1258 + }, + { + "#": 1289 + }, + { + "#": 1320 + }, + { + "#": 1351 + }, + { + "#": 1382 + }, + { + "#": 1413 + }, + { + "#": 1444 + }, + { + "#": 1475 + }, + { + "#": 1506 + }, + { + "#": 1537 + }, + { + "#": 1568 + }, + { + "#": 1599 + }, + { + "#": 1630 + }, + { + "#": 1661 + }, + { + "#": 1692 + }, + { + "#": 1723 + }, + { + "#": 1754 + }, + { + "#": 1785 + }, + { + "#": 1816 + }, + { + "#": 1847 + }, + { + "#": 1878 + }, + { + "#": 1909 + }, + { + "#": 1940 + }, + { + "#": 1971 + }, + { + "#": 2002 + }, + { + "#": 2033 + }, + { + "#": 2064 + }, + { + "#": 2095 + }, + { + "#": 2126 + }, + { + "#": 2157 + }, + { + "#": 2188 + }, + { + "#": 2219 + }, + { + "#": 2250 + }, + { + "#": 2281 + }, + { + "#": 2312 + }, + { + "#": 2343 + }, + { + "#": 2374 + }, + { + "#": 2405 + }, + { + "#": 2436 + }, + { + "#": 2467 + }, + { + "#": 2498 + }, + { + "#": 2529 + }, + { + "#": 2560 + }, + { + "#": 2591 + }, + { + "#": 2622 + }, + { + "#": 2653 + }, + { + "#": 2684 + }, + { + "#": 2715 + }, + { + "#": 2746 + }, + { + "#": 2777 + }, + { + "#": 2808 + }, + { + "#": 2839 + }, + { + "#": 2870 + }, + { + "#": 2901 + }, + { + "#": 2932 + }, + { + "#": 2963 + }, + { + "#": 2994 + }, + { + "#": 3025 + }, + { + "#": 3056 + }, + { + "#": 3087 + }, + { + "#": 3118 + }, + { + "#": 3149 + }, + { + "#": 3180 + }, + { + "#": 3211 + }, + { + "#": 3242 + }, + { + "#": 3273 + }, + { + "#": 3304 + }, + { + "#": 3335 + }, + { + "#": 3366 + }, + { + "#": 3397 + }, + { + "#": 3428 + }, + { + "#": 3459 + }, + { + "#": 3490 + }, + { + "#": 3521 + }, + { + "#": 3552 + }, + { + "#": 3583 + }, + { + "#": 3614 + }, + { + "#": 3645 + }, + { + "#": 3676 + }, + { + "#": 3707 + }, + { + "#": 3738 + }, + { + "#": 3769 + }, + { + "#": 3800 + }, + { + "#": 3831 + }, + { + "#": 3862 + }, + { + "#": 3893 + }, + { + "#": 3924 + }, + { + "#": 3955 + }, + { + "#": 3986 + }, + { + "#": 4017 + }, + { + "#": 4048 + }, + { + "#": 4079 + }, + { + "#": 4110 + }, + { + "#": 4141 + }, + { + "#": 4172 + }, + { + "#": 4203 + }, + { + "#": 4234 + }, + { + "#": 4265 + }, + { + "#": 4296 + }, + { + "#": 4327 + }, + { + "#": 4358 + }, + { + "#": 4389 + }, + { + "#": 4420 + }, + { + "#": 4451 + }, + { + "#": 4482 + }, + { + "#": 4513 + }, + { + "#": 4544 + }, + { + "#": 4575 + }, + { + "#": 4606 + }, + { + "#": 4637 + }, + { + "#": 4668 + }, + { + "#": 4699 + }, + { + "#": 4730 + }, + { + "#": 4761 + }, + { + "#": 4792 + }, + { + "#": 4823 + }, + { + "#": 4854 + }, + { + "#": 4885 + }, + { + "#": 4916 + }, + { + "#": 4947 + }, + { + "#": 4978 + }, + { + "#": 5009 + }, + { + "#": 5040 + }, + { + "#": 5071 + }, + { + "#": 5102 + }, + { + "#": 5133 + }, + { + "#": 5164 + }, + { + "#": 5195 + }, + { + "#": 5226 + }, + { + "#": 5257 + }, + { + "#": 5288 + }, + { + "#": 5319 + }, + { + "#": 5350 + }, + { + "#": 5381 + }, + { + "#": 5412 + }, + { + "#": 5443 + }, + { + "#": 5474 + }, + { + "#": 5505 + }, + { + "#": 5536 + }, + { + "#": 5567 + }, + { + "#": 5598 + }, + { + "#": 5629 + }, + { + "#": 5660 + }, + { + "#": 5691 + }, + { + "#": 5722 + }, + { + "#": 5753 + }, + { + "#": 5784 + }, + { + "#": 5815 + }, + { + "#": 5846 + }, + { + "#": 5877 + }, + { + "#": 5908 + }, + { + "#": 5939 + }, + { + "#": 5970 + }, + { + "#": 6001 + }, + { + "#": 6032 + }, + { + "#": 6063 + }, + { + "#": 6094 + }, + { + "#": 6125 + }, + { + "#": 6156 + }, + { + "#": 6187 + }, + { + "#": 6218 + }, + { + "#": 6249 + }, + { + "#": 6280 + }, + { + "#": 6311 + }, + { + "#": 6342 + }, + { + "#": 6373 + }, + { + "#": 6404 + }, + { + "#": 6435 + }, + { + "#": 6466 + }, + { + "#": 6497 + }, + { + "#": 6528 + }, + { + "#": 6559 + }, + { + "#": 6590 + }, + { + "#": 6621 + }, + { + "#": 6652 + }, + { + "#": 6683 + }, + { + "#": 6714 + }, + { + "#": 6745 + }, + { + "#": 6776 + }, + { + "#": 6807 + }, + { + "#": 6838 + }, + { + "#": 6869 + }, + { + "#": 6900 + }, + { + "#": 6931 + }, + { + "#": 6962 + }, + { + "#": 6993 + }, + { + "#": 7024 + }, + { + "#": 7055 + }, + { + "#": 7086 + }, + { + "#": 7117 + }, + { + "#": 7148 + }, + { + "#": 7179 + }, + { + "#": 7210 + }, + { + "#": 7241 + }, + { + "#": 7272 + }, + { + "#": 7303 + }, + { + "#": 7334 + }, + { + "#": 7365 + }, + { + "#": 7396 + }, + { + "#": 7427 + }, + { + "#": 7458 + }, + { + "#": 7489 + }, + { + "#": 7520 + }, + { + "#": 7551 + }, + { + "#": 7582 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 174 + }, + "bounds": { + "#": 180 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "region": { + "#": 189 + }, + "render": { + "#": 190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 192 + }, + "vertices": { + "#": 193 + } + }, + [ + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 215.216, + "y": 216 + }, + { + "x": 200, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.608, + "y": 208 + }, + { + "endCol": 4, + "endRow": 4, + "id": "4,4,4,4", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 191 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.216, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.608, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.906, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.906, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.608, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.216, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 205 + }, + "bounds": { + "#": 211 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 214 + }, + "constraintImpulse": { + "#": 215 + }, + "density": 0.001, + "force": { + "#": 216 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 217 + }, + "positionImpulse": { + "#": 218 + }, + "positionPrev": { + "#": 219 + }, + "region": { + "#": 220 + }, + "render": { + "#": 221 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 223 + }, + "vertices": { + "#": 224 + } + }, + [ + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 212 + }, + "min": { + "#": 213 + } + }, + { + "x": 235.43200000000002, + "y": 216 + }, + { + "x": 220.216, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.824, + "y": 208 + }, + { + "endCol": 4, + "endRow": 4, + "id": "4,4,4,4", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 222 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200000000002, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.526, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.824, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.122, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.216, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.216, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.122, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.824, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.526, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200000000002, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 236 + }, + "bounds": { + "#": 242 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "density": 0.001, + "force": { + "#": 247 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 248 + }, + "positionImpulse": { + "#": 249 + }, + "positionPrev": { + "#": 250 + }, + "region": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 243 + }, + "min": { + "#": 244 + } + }, + { + "x": 255.64800000000002, + "y": 216 + }, + { + "x": 240.43200000000002, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.04000000000002, + "y": 208 + }, + { + "endCol": 5, + "endRow": 4, + "id": "5,5,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64800000000002, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74200000000002, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.04000000000002, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33800000000002, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43200000000002, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43200000000002, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33800000000002, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.04000000000002, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74200000000002, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64800000000002, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 267 + }, + "bounds": { + "#": 273 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 276 + }, + "constraintImpulse": { + "#": 277 + }, + "density": 0.001, + "force": { + "#": 278 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 279 + }, + "positionImpulse": { + "#": 280 + }, + "positionPrev": { + "#": 281 + }, + "region": { + "#": 282 + }, + "render": { + "#": 283 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 285 + }, + "vertices": { + "#": 286 + } + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 274 + }, + "min": { + "#": 275 + } + }, + { + "x": 275.86400000000003, + "y": 216 + }, + { + "x": 260.648, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.25600000000003, + "y": 208 + }, + { + "endCol": 5, + "endRow": 4, + "id": "5,5,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 284 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86400000000003, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.958, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25600000000003, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55400000000003, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.648, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.648, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55400000000003, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25600000000003, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.958, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86400000000003, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 298 + }, + "bounds": { + "#": 304 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 307 + }, + "constraintImpulse": { + "#": 308 + }, + "density": 0.001, + "force": { + "#": 309 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 310 + }, + "positionImpulse": { + "#": 311 + }, + "positionPrev": { + "#": 312 + }, + "region": { + "#": 313 + }, + "render": { + "#": 314 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 316 + }, + "vertices": { + "#": 317 + } + }, + [ + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 305 + }, + "min": { + "#": 306 + } + }, + { + "x": 296.08000000000004, + "y": 216 + }, + { + "x": 280.86400000000003, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47200000000004, + "y": 208 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 315 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.08000000000004, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17400000000004, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47200000000004, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.77000000000004, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86400000000003, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86400000000003, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.77000000000004, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47200000000004, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17400000000004, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.08000000000004, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 329 + }, + "bounds": { + "#": 335 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 338 + }, + "constraintImpulse": { + "#": 339 + }, + "density": 0.001, + "force": { + "#": 340 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 341 + }, + "positionImpulse": { + "#": 342 + }, + "positionPrev": { + "#": 343 + }, + "region": { + "#": 344 + }, + "render": { + "#": 345 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 347 + }, + "vertices": { + "#": 348 + } + }, + [ + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 336 + }, + "min": { + "#": 337 + } + }, + { + "x": 316.29600000000005, + "y": 216 + }, + { + "x": 301.08000000000004, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68800000000005, + "y": 208 + }, + { + "endCol": 6, + "endRow": 4, + "id": "6,6,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 346 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.29600000000005, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39000000000004, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.68800000000005, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.98600000000005, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.08000000000004, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.08000000000004, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.98600000000005, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.68800000000005, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39000000000004, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.29600000000005, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 360 + }, + "bounds": { + "#": 366 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 369 + }, + "constraintImpulse": { + "#": 370 + }, + "density": 0.001, + "force": { + "#": 371 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 372 + }, + "positionImpulse": { + "#": 373 + }, + "positionPrev": { + "#": 374 + }, + "region": { + "#": 375 + }, + "render": { + "#": 376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 378 + }, + "vertices": { + "#": 379 + } + }, + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 367 + }, + "min": { + "#": 368 + } + }, + { + "x": 336.51200000000006, + "y": 216 + }, + { + "x": 321.29600000000005, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90400000000005, + "y": 208 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 377 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.51200000000006, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.60600000000005, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.90400000000005, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.20200000000006, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.29600000000005, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.29600000000005, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.20200000000006, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.90400000000005, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.60600000000005, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.51200000000006, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 391 + }, + "bounds": { + "#": 397 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 400 + }, + "constraintImpulse": { + "#": 401 + }, + "density": 0.001, + "force": { + "#": 402 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 403 + }, + "positionImpulse": { + "#": 404 + }, + "positionPrev": { + "#": 405 + }, + "region": { + "#": 406 + }, + "render": { + "#": 407 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 409 + }, + "vertices": { + "#": 410 + } + }, + [ + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 398 + }, + "min": { + "#": 399 + } + }, + { + "x": 356.72800000000007, + "y": 216 + }, + { + "x": 341.51200000000006, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000000000006, + "y": 208 + }, + { + "endCol": 7, + "endRow": 4, + "id": "7,7,4,4", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 408 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800000000007, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200000000006, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000000000006, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800000000006, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200000000006, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200000000006, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800000000006, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000000000006, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200000000006, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800000000007, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 422 + }, + "bounds": { + "#": 428 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 431 + }, + "constraintImpulse": { + "#": 432 + }, + "density": 0.001, + "force": { + "#": 433 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 434 + }, + "positionImpulse": { + "#": 435 + }, + "positionPrev": { + "#": 436 + }, + "region": { + "#": 437 + }, + "render": { + "#": 438 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 440 + }, + "vertices": { + "#": 441 + } + }, + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 429 + }, + "min": { + "#": 430 + } + }, + { + "x": 376.9440000000001, + "y": 216 + }, + { + "x": 361.72800000000007, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.33600000000007, + "y": 208 + }, + { + "endCol": 7, + "endRow": 4, + "id": "7,7,4,4", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 439 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9440000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.03800000000007, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.33600000000007, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.63400000000007, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.72800000000007, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.72800000000007, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.63400000000007, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.33600000000007, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.03800000000007, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9440000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 453 + }, + "bounds": { + "#": 459 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 462 + }, + "constraintImpulse": { + "#": 463 + }, + "density": 0.001, + "force": { + "#": 464 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 465 + }, + "positionImpulse": { + "#": 466 + }, + "positionPrev": { + "#": 467 + }, + "region": { + "#": 468 + }, + "render": { + "#": 469 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 471 + }, + "vertices": { + "#": 472 + } + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 460 + }, + "min": { + "#": 461 + } + }, + { + "x": 397.1600000000001, + "y": 216 + }, + { + "x": 381.9440000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5520000000001, + "y": 208 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,4,4", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 470 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1600000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2540000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5520000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8500000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9440000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9440000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8500000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5520000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2540000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1600000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 484 + }, + "bounds": { + "#": 490 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 493 + }, + "constraintImpulse": { + "#": 494 + }, + "density": 0.001, + "force": { + "#": 495 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 496 + }, + "positionImpulse": { + "#": 497 + }, + "positionPrev": { + "#": 498 + }, + "region": { + "#": 499 + }, + "render": { + "#": 500 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 502 + }, + "vertices": { + "#": 503 + } + }, + [ + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 491 + }, + "min": { + "#": 492 + } + }, + { + "x": 417.3760000000001, + "y": 216 + }, + { + "x": 402.1600000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7680000000001, + "y": 208 + }, + { + "endCol": 8, + "endRow": 4, + "id": "8,8,4,4", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 501 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3760000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4700000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7680000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0660000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1600000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1600000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0660000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7680000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4700000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3760000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 515 + }, + "bounds": { + "#": 521 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 524 + }, + "constraintImpulse": { + "#": 525 + }, + "density": 0.001, + "force": { + "#": 526 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 527 + }, + "positionImpulse": { + "#": 528 + }, + "positionPrev": { + "#": 529 + }, + "region": { + "#": 530 + }, + "render": { + "#": 531 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 533 + }, + "vertices": { + "#": 534 + } + }, + [ + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 522 + }, + "min": { + "#": 523 + } + }, + { + "x": 437.5920000000001, + "y": 216 + }, + { + "x": 422.3760000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840000000001, + "y": 208 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,4,4", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 532 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5920000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.6860000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.9840000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.2820000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.3760000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.3760000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.2820000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.9840000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.6860000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5920000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 546 + }, + "bounds": { + "#": 552 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 555 + }, + "constraintImpulse": { + "#": 556 + }, + "density": 0.001, + "force": { + "#": 557 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 558 + }, + "positionImpulse": { + "#": 559 + }, + "positionPrev": { + "#": 560 + }, + "region": { + "#": 561 + }, + "render": { + "#": 562 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 564 + }, + "vertices": { + "#": 565 + } + }, + [ + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 553 + }, + "min": { + "#": 554 + } + }, + { + "x": 457.8080000000001, + "y": 216 + }, + { + "x": 442.5920000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000000000001, + "y": 208 + }, + { + "endCol": 9, + "endRow": 4, + "id": "9,9,4,4", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 563 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 577 + }, + "bounds": { + "#": 583 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 586 + }, + "constraintImpulse": { + "#": 587 + }, + "density": 0.001, + "force": { + "#": 588 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 589 + }, + "positionImpulse": { + "#": 590 + }, + "positionPrev": { + "#": 591 + }, + "region": { + "#": 592 + }, + "render": { + "#": 593 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 595 + }, + "vertices": { + "#": 596 + } + }, + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 584 + }, + "min": { + "#": 585 + } + }, + { + "x": 478.0240000000001, + "y": 216 + }, + { + "x": 462.8080000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4160000000001, + "y": 208 + }, + { + "endCol": 9, + "endRow": 4, + "id": "9,9,4,4", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 594 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0240000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1180000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4160000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7140000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8080000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8080000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7140000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4160000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1180000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0240000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 608 + }, + "bounds": { + "#": 614 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 617 + }, + "constraintImpulse": { + "#": 618 + }, + "density": 0.001, + "force": { + "#": 619 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 620 + }, + "positionImpulse": { + "#": 621 + }, + "positionPrev": { + "#": 622 + }, + "region": { + "#": 623 + }, + "render": { + "#": 624 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 626 + }, + "vertices": { + "#": 627 + } + }, + [ + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 615 + }, + "min": { + "#": 616 + } + }, + { + "x": 498.2400000000001, + "y": 216 + }, + { + "x": 483.0240000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6320000000001, + "y": 208 + }, + { + "endCol": 10, + "endRow": 4, + "id": "10,10,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 625 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2400000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3340000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6320000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9300000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.0240000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.0240000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9300000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6320000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3340000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2400000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 639 + }, + "bounds": { + "#": 645 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 648 + }, + "constraintImpulse": { + "#": 649 + }, + "density": 0.001, + "force": { + "#": 650 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 651 + }, + "positionImpulse": { + "#": 652 + }, + "positionPrev": { + "#": 653 + }, + "region": { + "#": 654 + }, + "render": { + "#": 655 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 657 + }, + "vertices": { + "#": 658 + } + }, + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 646 + }, + "min": { + "#": 647 + } + }, + { + "x": 518.4560000000001, + "y": 216 + }, + { + "x": 503.2400000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480000000001, + "y": 208 + }, + { + "endCol": 10, + "endRow": 4, + "id": "10,10,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 656 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000000001, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000000002, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.14600000000013, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.14600000000013, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000000002, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000000001, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 670 + }, + "bounds": { + "#": 676 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 679 + }, + "constraintImpulse": { + "#": 680 + }, + "density": 0.001, + "force": { + "#": 681 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 682 + }, + "positionImpulse": { + "#": 683 + }, + "positionPrev": { + "#": 684 + }, + "region": { + "#": 685 + }, + "render": { + "#": 686 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 688 + }, + "vertices": { + "#": 689 + } + }, + [ + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 677 + }, + "min": { + "#": 678 + } + }, + { + "x": 538.672, + "y": 216 + }, + { + "x": 523.4560000000001, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640000000001, + "y": 208 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 687 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660000000001, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640000000001, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620000000001, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560000000001, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560000000001, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620000000001, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640000000001, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660000000001, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 701 + }, + "bounds": { + "#": 707 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 710 + }, + "constraintImpulse": { + "#": 711 + }, + "density": 0.001, + "force": { + "#": 712 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 713 + }, + "positionImpulse": { + "#": 714 + }, + "positionPrev": { + "#": 715 + }, + "region": { + "#": 716 + }, + "render": { + "#": 717 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 719 + }, + "vertices": { + "#": 720 + } + }, + [ + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 708 + }, + "min": { + "#": 709 + } + }, + { + "x": 558.8879999999999, + "y": 216 + }, + { + "x": 543.672, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.28, + "y": 208 + }, + { + "endCol": 11, + "endRow": 4, + "id": "11,11,4,4", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 718 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879999999999, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.982, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.28, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.578, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.672, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.672, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.578, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.28, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.982, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879999999999, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 732 + }, + "bounds": { + "#": 738 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "density": 0.001, + "force": { + "#": 743 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 744 + }, + "positionImpulse": { + "#": 745 + }, + "positionPrev": { + "#": 746 + }, + "region": { + "#": 747 + }, + "render": { + "#": 748 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 750 + }, + "vertices": { + "#": 751 + } + }, + [ + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 739 + }, + "min": { + "#": 740 + } + }, + { + "x": 579.1039999999998, + "y": 216 + }, + { + "x": 563.8879999999999, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959999999999, + "y": 208 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,4,4", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 749 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039999999998, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979999999999, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959999999999, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939999999999, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8879999999999, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8879999999999, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939999999999, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959999999999, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979999999999, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039999999998, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 763 + }, + "bounds": { + "#": 769 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 772 + }, + "constraintImpulse": { + "#": 773 + }, + "density": 0.001, + "force": { + "#": 774 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": true, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 775 + }, + "positionImpulse": { + "#": 776 + }, + "positionPrev": { + "#": 777 + }, + "region": { + "#": 778 + }, + "render": { + "#": 779 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 781 + }, + "vertices": { + "#": 782 + } + }, + [ + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 770 + }, + "min": { + "#": 771 + } + }, + { + "x": 599.3199999999997, + "y": 216 + }, + { + "x": 584.1039999999998, + "y": 200 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999998, + "y": 208 + }, + { + "endCol": 12, + "endRow": 4, + "id": "12,12,4,4", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 780 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199999999997, + "y": 210.472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139999999998, + "y": 214.472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119999999998, + "y": 216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099999999998, + "y": 214.472 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999999998, + "y": 210.472 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999999998, + "y": 205.528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099999999998, + "y": 201.528 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119999999998, + "y": 200 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139999999998, + "y": 201.528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199999999997, + "y": 205.528 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 794 + }, + "bounds": { + "#": 800 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 803 + }, + "constraintImpulse": { + "#": 804 + }, + "density": 0.001, + "force": { + "#": 805 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 806 + }, + "positionImpulse": { + "#": 807 + }, + "positionPrev": { + "#": 808 + }, + "region": { + "#": 809 + }, + "render": { + "#": 810 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7425570668394935, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 812 + }, + "vertices": { + "#": 813 + } + }, + [ + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 801 + }, + "min": { + "#": 802 + } + }, + { + "x": 215.2160000073758, + "y": 241.6413712138298 + }, + { + "x": 200.0000000073758, + "y": 225.6413712138298 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.60800000737578, + "y": 233.6413712138298 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.6080000000236, + "y": 233.1713685291545 + }, + { + "endCol": 4, + "endRow": 5, + "id": "4,4,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 811 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 3.8335201679728925e-10, + "y": -0.3602061532882317 + }, + [ + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.2160000073758, + "y": 236.11337121382982 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.3100000073758, + "y": 240.11337121382982 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.6080000073758, + "y": 241.6413712138298 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.9060000073758, + "y": 240.11337121382982 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.0000000073758, + "y": 236.11337121382982 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200.0000000073758, + "y": 231.1693712138298 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.9060000073758, + "y": 227.1693712138298 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.6080000073758, + "y": 225.6413712138298 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.3100000073758, + "y": 227.1693712138298 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.2160000073758, + "y": 231.1693712138298 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 825 + }, + "bounds": { + "#": 831 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 834 + }, + "constraintImpulse": { + "#": 835 + }, + "density": 0.001, + "force": { + "#": 836 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 837 + }, + "positionImpulse": { + "#": 838 + }, + "positionPrev": { + "#": 839 + }, + "region": { + "#": 840 + }, + "render": { + "#": 841 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7493165883155135, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 843 + }, + "vertices": { + "#": 844 + } + }, + [ + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 832 + }, + "min": { + "#": 833 + } + }, + { + "x": 235.43200607476376, + "y": 241.66946528292237 + }, + { + "x": 220.21600607476375, + "y": 225.66946528292237 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.82400607476376, + "y": 233.66946528292243 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.82400000496767, + "y": 233.17998583406458 + }, + { + "endCol": 4, + "endRow": 5, + "id": "4,4,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 842 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 2.920977522080648e-7, + "y": -0.351722660224965 + }, + [ + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.43200607476376, + "y": 236.14146528292238 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.52600607476376, + "y": 240.14146528292238 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.82400607476376, + "y": 241.66946528292237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.12200607476376, + "y": 240.14146528292238 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.21600607476375, + "y": 236.14146528292238 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.21600607476375, + "y": 231.19746528292237 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.12200607476376, + "y": 227.19746528292237 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.82400607476376, + "y": 225.66946528292237 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.52600607476376, + "y": 227.19746528292237 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.43200607476376, + "y": 231.19746528292237 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 856 + }, + "bounds": { + "#": 862 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 865 + }, + "constraintImpulse": { + "#": 866 + }, + "density": 0.001, + "force": { + "#": 867 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 868 + }, + "positionImpulse": { + "#": 869 + }, + "positionPrev": { + "#": 870 + }, + "region": { + "#": 871 + }, + "render": { + "#": 872 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.683488382071854, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 874 + }, + "vertices": { + "#": 875 + } + }, + [ + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 863 + }, + "min": { + "#": 864 + } + }, + { + "x": 255.64799574222633, + "y": 241.4407591152056 + }, + { + "x": 240.43199574222632, + "y": 225.4407591152056 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.03999574222635, + "y": 233.44075911520565 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.03999999983162, + "y": 233.08438190591744 + }, + { + "endCol": 5, + "endRow": 5, + "id": "5,5,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 873 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.4906339629305876e-7, + "y": -0.4126769465440816 + }, + [ + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64799574222633, + "y": 235.9127591152056 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74199574222632, + "y": 239.9127591152056 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.03999574222632, + "y": 241.4407591152056 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33799574222633, + "y": 239.9127591152056 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43199574222632, + "y": 235.9127591152056 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43199574222632, + "y": 230.9687591152056 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33799574222633, + "y": 226.9687591152056 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.03999574222632, + "y": 225.4407591152056 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74199574222632, + "y": 226.9687591152056 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64799574222633, + "y": 230.9687591152056 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 887 + }, + "bounds": { + "#": 893 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 896 + }, + "constraintImpulse": { + "#": 897 + }, + "density": 0.001, + "force": { + "#": 898 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 899 + }, + "positionImpulse": { + "#": 900 + }, + "positionPrev": { + "#": 901 + }, + "region": { + "#": 902 + }, + "render": { + "#": 903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6925893130333673, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 905 + }, + "vertices": { + "#": 906 + } + }, + [ + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 894 + }, + "min": { + "#": 895 + } + }, + { + "x": 275.8640247482399, + "y": 241.45822865762975 + }, + { + "x": 260.6480247482399, + "y": 225.45822865762975 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.2560247482397, + "y": 233.4582286576298 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.2560003904123, + "y": 233.10014919380083 + }, + { + "endCol": 5, + "endRow": 5, + "id": "5,5,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 904 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000007213670983219345, + "y": -0.4101907664154112 + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.8640247482399, + "y": 235.93022865762975 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.9580247482399, + "y": 239.93022865762975 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.2560247482399, + "y": 241.45822865762975 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.5540247482399, + "y": 239.93022865762975 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.6480247482399, + "y": 235.93022865762975 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.6480247482399, + "y": 230.98622865762974 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.5540247482399, + "y": 226.98622865762974 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.2560247482399, + "y": 225.45822865762975 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.9580247482399, + "y": 226.98622865762974 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.8640247482399, + "y": 230.98622865762974 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 918 + }, + "bounds": { + "#": 924 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 927 + }, + "constraintImpulse": { + "#": 928 + }, + "density": 0.001, + "force": { + "#": 929 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 930 + }, + "positionImpulse": { + "#": 931 + }, + "positionPrev": { + "#": 932 + }, + "region": { + "#": 933 + }, + "render": { + "#": 934 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5729249405803157, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 936 + }, + "vertices": { + "#": 937 + } + }, + [ + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 925 + }, + "min": { + "#": 926 + } + }, + { + "x": 296.0799900099662, + "y": 241.074751053205 + }, + { + "x": 280.8639900099662, + "y": 225.074751053205 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.4719900099661, + "y": 233.07475105320498 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47199986353723, + "y": 232.8965291244648 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 935 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000004443814589194517, + "y": -0.4917367654218765 + }, + [ + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.0799900099662, + "y": 235.546751053205 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.1739900099662, + "y": 239.546751053205 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.4719900099662, + "y": 241.074751053205 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.7699900099662, + "y": 239.546751053205 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.8639900099662, + "y": 235.546751053205 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.8639900099662, + "y": 230.602751053205 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.7699900099662, + "y": 226.602751053205 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.4719900099662, + "y": 225.074751053205 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.1739900099662, + "y": 226.602751053205 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.0799900099662, + "y": 230.602751053205 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 949 + }, + "bounds": { + "#": 955 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 958 + }, + "constraintImpulse": { + "#": 959 + }, + "density": 0.001, + "force": { + "#": 960 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 961 + }, + "positionImpulse": { + "#": 962 + }, + "positionPrev": { + "#": 963 + }, + "region": { + "#": 964 + }, + "render": { + "#": 965 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.528462681327833, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 967 + }, + "vertices": { + "#": 968 + } + }, + [ + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 956 + }, + "min": { + "#": 957 + } + }, + { + "x": 316.2961524221256, + "y": 240.9068903862412 + }, + { + "x": 301.0801524221256, + "y": 224.9068903862412 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.68815242212565, + "y": 232.90689038624117 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.6880025402552, + "y": 232.8343865460053 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 966 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000015030858662612445, + "y": -0.538884231236068 + }, + [ + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.2961524221256, + "y": 235.3788903862412 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.3901524221256, + "y": 239.3788903862412 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.6881524221256, + "y": 240.9068903862412 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.9861524221256, + "y": 239.3788903862412 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.0801524221256, + "y": 235.3788903862412 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.0801524221256, + "y": 230.4348903862412 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.9861524221256, + "y": 226.4348903862412 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.6881524221256, + "y": 224.9068903862412 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.3901524221256, + "y": 226.4348903862412 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.2961524221256, + "y": 230.4348903862412 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 980 + }, + "bounds": { + "#": 986 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 989 + }, + "constraintImpulse": { + "#": 990 + }, + "density": 0.001, + "force": { + "#": 991 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 992 + }, + "positionImpulse": { + "#": 993 + }, + "positionPrev": { + "#": 994 + }, + "region": { + "#": 995 + }, + "render": { + "#": 996 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6660290555240103, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 998 + }, + "vertices": { + "#": 999 + } + }, + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 987 + }, + "min": { + "#": 988 + } + }, + { + "x": 336.5117958271079, + "y": 241.3723061002288 + }, + { + "x": 321.2957958271079, + "y": 225.3723061002288 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.903795827108, + "y": 233.37230610022888 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.9039958140248, + "y": 233.05753228088219 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 997 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00002531908012315398, + "y": -0.4302463639693599 + }, + [ + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.5117958271079, + "y": 235.8443061002288 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.6057958271079, + "y": 239.8443061002288 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.9037958271079, + "y": 241.3723061002288 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.2017958271079, + "y": 239.8443061002288 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.2957958271079, + "y": 235.8443061002288 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.2957958271079, + "y": 230.9003061002288 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.2017958271079, + "y": 226.9003061002288 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.9037958271079, + "y": 225.3723061002288 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.6057958271079, + "y": 226.9003061002288 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.5117958271079, + "y": 230.9003061002288 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1011 + }, + "bounds": { + "#": 1017 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1020 + }, + "constraintImpulse": { + "#": 1021 + }, + "density": 0.001, + "force": { + "#": 1022 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1023 + }, + "positionImpulse": { + "#": 1024 + }, + "positionPrev": { + "#": 1025 + }, + "region": { + "#": 1026 + }, + "render": { + "#": 1027 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6641488301166217, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1029 + }, + "vertices": { + "#": 1030 + } + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1018 + }, + "min": { + "#": 1019 + } + }, + { + "x": 356.72800349802685, + "y": 241.36906509651462 + }, + { + "x": 341.51200349802684, + "y": 225.36906509651462 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.1200034980269, + "y": 233.36906509651462 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000007222224, + "y": 233.05838948493488 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1028 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 4.801907493856561e-7, + "y": -0.4333942424984798 + }, + [ + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.72800349802685, + "y": 235.84106509651463 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82200349802685, + "y": 239.84106509651463 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12000349802685, + "y": 241.36906509651462 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.41800349802685, + "y": 239.84106509651463 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51200349802684, + "y": 235.84106509651463 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51200349802684, + "y": 230.8970650965146 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.41800349802685, + "y": 226.8970650965146 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12000349802685, + "y": 225.36906509651462 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82200349802685, + "y": 226.8970650965146 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.72800349802685, + "y": 230.8970650965146 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1042 + }, + "bounds": { + "#": 1048 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1051 + }, + "constraintImpulse": { + "#": 1052 + }, + "density": 0.001, + "force": { + "#": 1053 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1054 + }, + "positionImpulse": { + "#": 1055 + }, + "positionPrev": { + "#": 1056 + }, + "region": { + "#": 1057 + }, + "render": { + "#": 1058 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7486648858111834, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1060 + }, + "vertices": { + "#": 1061 + } + }, + [ + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1049 + }, + "min": { + "#": 1050 + } + }, + { + "x": 376.9439860551052, + "y": 241.66586081882784 + }, + { + "x": 361.7279860551052, + "y": 225.66586081882784 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.3359860551052, + "y": 233.6658608188278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.3359998267359, + "y": 233.17920752679962 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1059 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0000013605721846943197, + "y": -0.3528167420811883 + }, + [ + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9439860551052, + "y": 236.13786081882785 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.0379860551052, + "y": 240.13786081882785 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.3359860551052, + "y": 241.66586081882784 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.6339860551052, + "y": 240.13786081882785 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.7279860551052, + "y": 236.13786081882785 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.7279860551052, + "y": 231.19386081882783 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.6339860551052, + "y": 227.19386081882783 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.3359860551052, + "y": 225.66586081882784 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.0379860551052, + "y": 227.19386081882783 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9439860551052, + "y": 231.19386081882783 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1073 + }, + "bounds": { + "#": 1079 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1082 + }, + "constraintImpulse": { + "#": 1083 + }, + "density": 0.001, + "force": { + "#": 1084 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1085 + }, + "positionImpulse": { + "#": 1086 + }, + "positionPrev": { + "#": 1087 + }, + "region": { + "#": 1088 + }, + "render": { + "#": 1089 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7424128150569758, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1091 + }, + "vertices": { + "#": 1092 + } + }, + [ + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1080 + }, + "min": { + "#": 1081 + } + }, + { + "x": 397.15999908962226, + "y": 241.64004212383605 + }, + { + "x": 381.94399908962225, + "y": 225.64004212383605 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5519990896223, + "y": 233.64004212383605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5519999973753, + "y": 233.1712154588571 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1090 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.7316779121756554e-7, + "y": -0.36059407300720636 + }, + [ + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.15999908962226, + "y": 236.11204212383606 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.25399908962225, + "y": 240.11204212383606 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.55199908962226, + "y": 241.64004212383605 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.84999908962226, + "y": 240.11204212383606 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.94399908962225, + "y": 236.11204212383606 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.94399908962225, + "y": 231.16804212383605 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.84999908962226, + "y": 227.16804212383605 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.55199908962226, + "y": 225.64004212383605 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.25399908962225, + "y": 227.16804212383605 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.15999908962226, + "y": 231.16804212383605 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1104 + }, + "bounds": { + "#": 1110 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1113 + }, + "constraintImpulse": { + "#": 1114 + }, + "density": 0.001, + "force": { + "#": 1115 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1116 + }, + "positionImpulse": { + "#": 1117 + }, + "positionPrev": { + "#": 1118 + }, + "region": { + "#": 1119 + }, + "render": { + "#": 1120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7421316042794728, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1122 + }, + "vertices": { + "#": 1123 + } + }, + [ + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1111 + }, + "min": { + "#": 1112 + } + }, + { + "x": 417.37599999831923, + "y": 241.63833384353978 + }, + { + "x": 402.1599999983192, + "y": 225.63833384353978 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7679999983192, + "y": 233.6383338435398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7679999999816, + "y": 233.17090214464648 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1121 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.241904439870268e-10, + "y": -0.36112855737920313 + }, + [ + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.37599999831923, + "y": 236.1103338435398 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4699999983192, + "y": 240.1103338435398 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7679999983192, + "y": 241.63833384353978 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0659999983192, + "y": 240.1103338435398 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1599999983192, + "y": 236.1103338435398 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1599999983192, + "y": 231.16633384353977 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0659999983192, + "y": 227.16633384353977 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7679999983192, + "y": 225.63833384353978 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4699999983192, + "y": 227.16633384353977 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.37599999831923, + "y": 231.16633384353977 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1135 + }, + "bounds": { + "#": 1141 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1144 + }, + "constraintImpulse": { + "#": 1145 + }, + "density": 0.001, + "force": { + "#": 1146 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1147 + }, + "positionImpulse": { + "#": 1148 + }, + "positionPrev": { + "#": 1149 + }, + "region": { + "#": 1150 + }, + "render": { + "#": 1151 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7420793996286228, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1153 + }, + "vertices": { + "#": 1154 + } + }, + [ + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1142 + }, + "min": { + "#": 1143 + } + }, + { + "x": 437.59200087781556, + "y": 241.6378396089794 + }, + { + "x": 422.37600087781556, + "y": 225.6378396089794 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.98400087781556, + "y": 233.6378396089794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.98400000203475, + "y": 233.1708479035275 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1152 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.6203534869418945e-7, + "y": -0.361275637304999 + }, + [ + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.59200087781556, + "y": 236.1098396089794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.68600087781556, + "y": 240.1098396089794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.98400087781556, + "y": 241.6378396089794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.28200087781556, + "y": 240.1098396089794 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.37600087781556, + "y": 236.1098396089794 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.37600087781556, + "y": 231.16583960897938 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.28200087781556, + "y": 227.16583960897938 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.98400087781556, + "y": 225.6378396089794 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.68600087781556, + "y": 227.16583960897938 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.59200087781556, + "y": 231.16583960897938 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1166 + }, + "bounds": { + "#": 1172 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1175 + }, + "constraintImpulse": { + "#": 1176 + }, + "density": 0.001, + "force": { + "#": 1177 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1178 + }, + "positionImpulse": { + "#": 1179 + }, + "positionPrev": { + "#": 1180 + }, + "region": { + "#": 1181 + }, + "render": { + "#": 1182 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7391575143783712, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1184 + }, + "vertices": { + "#": 1185 + } + }, + [ + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1173 + }, + "min": { + "#": 1174 + } + }, + { + "x": 457.8080397100979, + "y": 241.6240272813831 + }, + { + "x": 442.5920397100979, + "y": 225.6240272813831 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2000397100979, + "y": 233.62402728138312 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.20000061593134, + "y": 233.16735263140416 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1183 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000010216433793175383, + "y": -0.3655688106696857 + }, + [ + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8080397100979, + "y": 236.0960272813831 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9020397100979, + "y": 240.0960272813831 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2000397100979, + "y": 241.6240272813831 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4980397100979, + "y": 240.0960272813831 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5920397100979, + "y": 236.0960272813831 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5920397100979, + "y": 231.15202728138308 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4980397100979, + "y": 227.15202728138308 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2000397100979, + "y": 225.6240272813831 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9020397100979, + "y": 227.15202728138308 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8080397100979, + "y": 231.15202728138308 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1197 + }, + "bounds": { + "#": 1203 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1206 + }, + "constraintImpulse": { + "#": 1207 + }, + "density": 0.001, + "force": { + "#": 1208 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1209 + }, + "positionImpulse": { + "#": 1210 + }, + "positionPrev": { + "#": 1211 + }, + "region": { + "#": 1212 + }, + "render": { + "#": 1213 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6412867983946474, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1215 + }, + "vertices": { + "#": 1216 + } + }, + [ + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1204 + }, + "min": { + "#": 1205 + } + }, + { + "x": 478.0239766065733, + "y": 241.26927007884544 + }, + { + "x": 462.8079766065733, + "y": 225.26927007884544 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4159766065733, + "y": 233.2692700788454 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4159997311198, + "y": 233.02911884479627 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1214 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000006183779134971701, + "y": -0.46337541861868203 + }, + [ + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0239766065733, + "y": 235.74127007884545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.1179766065733, + "y": 239.74127007884545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.4159766065733, + "y": 241.26927007884544 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.7139766065733, + "y": 239.74127007884545 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.8079766065733, + "y": 235.74127007884545 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.8079766065733, + "y": 230.79727007884543 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.7139766065733, + "y": 226.79727007884543 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.4159766065733, + "y": 225.26927007884544 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.1179766065733, + "y": 226.79727007884543 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0239766065733, + "y": 230.79727007884543 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1228 + }, + "bounds": { + "#": 1234 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1237 + }, + "constraintImpulse": { + "#": 1238 + }, + "density": 0.001, + "force": { + "#": 1239 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1240 + }, + "positionImpulse": { + "#": 1241 + }, + "positionPrev": { + "#": 1242 + }, + "region": { + "#": 1243 + }, + "render": { + "#": 1244 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6378518257376031, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1246 + }, + "vertices": { + "#": 1247 + } + }, + [ + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1235 + }, + "min": { + "#": 1236 + } + }, + { + "x": 498.23999972060966, + "y": 241.2553897809998 + }, + { + "x": 483.02399972060965, + "y": 225.2553897809998 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.63199972060966, + "y": 233.25538978099988 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.63200000027564, + "y": 233.02471181989063 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1245 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -5.681192760675913e-8, + "y": -0.46749498185360494 + }, + [ + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.23999972060966, + "y": 235.7273897809998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.33399972060965, + "y": 239.7273897809998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.63199972060966, + "y": 241.2553897809998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.92999972060966, + "y": 239.7273897809998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.02399972060965, + "y": 235.7273897809998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.02399972060965, + "y": 230.78338978099978 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.92999972060966, + "y": 226.78338978099978 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.63199972060966, + "y": 225.2553897809998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.33399972060965, + "y": 226.78338978099978 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.23999972060966, + "y": 230.78338978099978 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1259 + }, + "bounds": { + "#": 1265 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1268 + }, + "constraintImpulse": { + "#": 1269 + }, + "density": 0.001, + "force": { + "#": 1270 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1271 + }, + "positionImpulse": { + "#": 1272 + }, + "positionPrev": { + "#": 1273 + }, + "region": { + "#": 1274 + }, + "render": { + "#": 1275 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6378429492760251, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1277 + }, + "vertices": { + "#": 1278 + } + }, + [ + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1266 + }, + "min": { + "#": 1267 + } + }, + { + "x": 518.4560000500833, + "y": 241.25535189439393 + }, + { + "x": 503.2400000500834, + "y": 225.25535189439393 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.84800005008333, + "y": 233.25535189439393 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8479999998418, + "y": 233.02469957107206 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1276 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.486910150561016e-9, + "y": -0.46750598227626483 + }, + [ + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560000500833, + "y": 235.72735189439393 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500000500833, + "y": 239.72735189439393 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480000500834, + "y": 241.25535189439393 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.1460000500834, + "y": 239.72735189439393 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400000500834, + "y": 235.72735189439393 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400000500834, + "y": 230.78335189439392 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.1460000500834, + "y": 226.78335189439392 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480000500834, + "y": 225.25535189439393 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500000500833, + "y": 226.78335189439392 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560000500833, + "y": 230.78335189439392 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1290 + }, + "bounds": { + "#": 1296 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1299 + }, + "constraintImpulse": { + "#": 1300 + }, + "density": 0.001, + "force": { + "#": 1301 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1302 + }, + "positionImpulse": { + "#": 1303 + }, + "positionPrev": { + "#": 1304 + }, + "region": { + "#": 1305 + }, + "render": { + "#": 1306 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6413120772291304, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1308 + }, + "vertices": { + "#": 1309 + } + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1297 + }, + "min": { + "#": 1298 + } + }, + { + "x": 538.672023607128, + "y": 241.26935962610628 + }, + { + "x": 523.4560236071281, + "y": 225.26935962610628 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640236071281, + "y": 233.2693596261063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0640002687152, + "y": 233.02915481436858 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1307 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000006236578542484494, + "y": -0.4633499073007954 + }, + [ + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.672023607128, + "y": 235.7413596261063 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7660236071281, + "y": 239.7413596261063 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0640236071281, + "y": 241.26935962610628 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3620236071281, + "y": 239.7413596261063 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4560236071281, + "y": 235.7413596261063 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4560236071281, + "y": 230.79735962610627 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3620236071281, + "y": 226.79735962610627 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0640236071281, + "y": 225.26935962610628 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7660236071281, + "y": 226.79735962610627 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.672023607128, + "y": 230.79735962610627 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1321 + }, + "bounds": { + "#": 1327 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1330 + }, + "constraintImpulse": { + "#": 1331 + }, + "density": 0.001, + "force": { + "#": 1332 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1333 + }, + "positionImpulse": { + "#": 1334 + }, + "positionPrev": { + "#": 1335 + }, + "region": { + "#": 1336 + }, + "render": { + "#": 1337 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7391387170240254, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1339 + }, + "vertices": { + "#": 1340 + } + }, + [ + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1328 + }, + "min": { + "#": 1329 + } + }, + { + "x": 558.8879645920262, + "y": 241.62391480264205 + }, + { + "x": 543.6719645920263, + "y": 225.62391480264205 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.2799645920262, + "y": 233.62391480264205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.2799993857361, + "y": 233.167331169137 + }, + { + "endCol": 11, + "endRow": 5, + "id": "11,11,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1338 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000010101039038090676, + "y": -0.36560327993686315 + }, + [ + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8879645920262, + "y": 236.09591480264206 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.9819645920262, + "y": 240.09591480264206 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.2799645920262, + "y": 241.62391480264205 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.5779645920262, + "y": 240.09591480264206 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.6719645920263, + "y": 236.09591480264206 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.6719645920263, + "y": 231.15191480264204 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.5779645920262, + "y": 227.15191480264204 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.2799645920262, + "y": 225.62391480264205 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.9819645920262, + "y": 227.15191480264204 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8879645920262, + "y": 231.15191480264204 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1352 + }, + "bounds": { + "#": 1358 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1361 + }, + "constraintImpulse": { + "#": 1362 + }, + "density": 0.001, + "force": { + "#": 1363 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1364 + }, + "positionImpulse": { + "#": 1365 + }, + "positionPrev": { + "#": 1366 + }, + "region": { + "#": 1367 + }, + "render": { + "#": 1368 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7420758569107393, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1370 + }, + "vertices": { + "#": 1371 + } + }, + [ + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1359 + }, + "min": { + "#": 1360 + } + }, + { + "x": 579.1039948374018, + "y": 241.63778976333583 + }, + { + "x": 563.887994837402, + "y": 225.63778976333583 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959948374019, + "y": 233.6377897633359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.495999996513, + "y": 233.17084413326836 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1369 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.504934855096508e-7, + "y": -0.3612881713068532 + }, + [ + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1039948374018, + "y": 236.10978976333584 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1979948374019, + "y": 240.10978976333584 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4959948374019, + "y": 241.63778976333583 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7939948374019, + "y": 240.10978976333584 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.887994837402, + "y": 236.10978976333584 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.887994837402, + "y": 231.16578976333582 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7939948374019, + "y": 227.16578976333582 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4959948374019, + "y": 225.63778976333583 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1979948374019, + "y": 227.16578976333582 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1039948374018, + "y": 231.16578976333582 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1383 + }, + "bounds": { + "#": 1389 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1392 + }, + "constraintImpulse": { + "#": 1393 + }, + "density": 0.001, + "force": { + "#": 1394 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1395 + }, + "positionImpulse": { + "#": 1396 + }, + "positionPrev": { + "#": 1397 + }, + "region": { + "#": 1398 + }, + "render": { + "#": 1399 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7420939379001452, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1401 + }, + "vertices": { + "#": 1402 + } + }, + [ + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1390 + }, + "min": { + "#": 1391 + } + }, + { + "x": 599.31999999138, + "y": 241.63792735304088 + }, + { + "x": 584.1039999913801, + "y": 225.63792735304088 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999913801, + "y": 233.63792735304082 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999999743, + "y": 233.17086325900377 + }, + { + "endCol": 12, + "endRow": 5, + "id": "12,12,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1400 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -4.063167580170557e-10, + "y": -0.3612457305728469 + }, + [ + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.31999999138, + "y": 236.1099273530409 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.41399999138, + "y": 240.1099273530409 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.71199999138, + "y": 241.63792735304088 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.00999999138, + "y": 240.1099273530409 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039999913801, + "y": 236.1099273530409 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039999913801, + "y": 231.16592735304087 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.00999999138, + "y": 227.16592735304087 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.71199999138, + "y": 225.63792735304088 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.41399999138, + "y": 227.16592735304087 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.31999999138, + "y": 231.16592735304087 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1414 + }, + "bounds": { + "#": 1420 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "density": 0.001, + "force": { + "#": 1425 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1426 + }, + "positionImpulse": { + "#": 1427 + }, + "positionPrev": { + "#": 1428 + }, + "region": { + "#": 1429 + }, + "render": { + "#": 1430 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1129860085146892, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1432 + }, + "vertices": { + "#": 1433 + } + }, + [ + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1421 + }, + "min": { + "#": 1422 + } + }, + { + "x": 215.21600496348668, + "y": 265.83451083616796 + }, + { + "x": 200.00000496348667, + "y": 249.834510836168 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.60800496348665, + "y": 257.83451083616796 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.6080000057571, + "y": 256.9822169334688 + }, + { + "endCol": 4, + "endRow": 5, + "id": "4,4,5,5", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1431 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.9880107515746204e-7, + "y": 0.1497807942515692 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.21600496348668, + "y": 260.306510836168 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.31000496348668, + "y": 264.30651083616794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.60800496348668, + "y": 265.83451083616796 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.90600496348668, + "y": 264.30651083616794 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.00000496348667, + "y": 260.306510836168 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200.00000496348667, + "y": 255.36251083616798 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.90600496348668, + "y": 251.36251083616798 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.60800496348668, + "y": 249.834510836168 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.31000496348668, + "y": 251.36251083616798 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.21600496348668, + "y": 255.36251083616798 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1445 + }, + "bounds": { + "#": 1451 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1454 + }, + "constraintImpulse": { + "#": 1455 + }, + "density": 0.001, + "force": { + "#": 1456 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1457 + }, + "positionImpulse": { + "#": 1458 + }, + "positionPrev": { + "#": 1459 + }, + "region": { + "#": 1460 + }, + "render": { + "#": 1461 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1368891892669302, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1463 + }, + "vertices": { + "#": 1464 + } + }, + [ + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1452 + }, + "min": { + "#": 1453 + } + }, + { + "x": 235.4323420210971, + "y": 265.9210349983517 + }, + { + "x": 220.2163420210971, + "y": 249.92103499835167 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.82434202109718, + "y": 257.9210349983517 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.82400450680214, + "y": 257.01598789562183 + }, + { + "endCol": 4, + "endRow": 5, + "id": "4,4,5,5", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1462 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00016313710125359648, + "y": 0.17708371405365142 + }, + [ + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.4323420210971, + "y": 260.3930349983517 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.5263420210971, + "y": 264.39303499835165 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.8243420210971, + "y": 265.9210349983517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.1223420210971, + "y": 264.39303499835165 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.2163420210971, + "y": 260.3930349983517 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.2163420210971, + "y": 255.44903499835166 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.1223420210971, + "y": 251.44903499835166 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.8243420210971, + "y": 249.92103499835167 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.5263420210971, + "y": 251.44903499835166 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.4323420210971, + "y": 255.44903499835166 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1476 + }, + "bounds": { + "#": 1482 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1485 + }, + "constraintImpulse": { + "#": 1486 + }, + "density": 0.001, + "force": { + "#": 1487 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1488 + }, + "positionImpulse": { + "#": 1489 + }, + "positionPrev": { + "#": 1490 + }, + "region": { + "#": 1491 + }, + "render": { + "#": 1492 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9645274686573311, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1494 + }, + "vertices": { + "#": 1495 + } + }, + [ + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1483 + }, + "min": { + "#": 1484 + } + }, + { + "x": 255.64774769986963, + "y": 265.3536699541492 + }, + { + "x": 240.43174769986962, + "y": 249.3536699541492 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.0397476998696, + "y": 257.3536699541492 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.03999750974356, + "y": 256.72644360586304 + }, + { + "endCol": 5, + "endRow": 5, + "id": "5,5,5,5", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1493 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00012628209449871974, + "y": 0.021477976539756582 + }, + [ + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64774769986963, + "y": 259.82566995414925 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.74174769986962, + "y": 263.8256699541492 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.03974769986962, + "y": 265.3536699541492 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33774769986962, + "y": 263.8256699541492 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.43174769986962, + "y": 259.82566995414925 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.43174769986962, + "y": 254.8816699541492 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33774769986962, + "y": 250.8816699541492 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.03974769986962, + "y": 249.3536699541492 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.74174769986962, + "y": 250.8816699541492 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64774769986963, + "y": 254.8816699541492 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1507 + }, + "bounds": { + "#": 1513 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1516 + }, + "constraintImpulse": { + "#": 1517 + }, + "density": 0.001, + "force": { + "#": 1518 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1519 + }, + "positionImpulse": { + "#": 1520 + }, + "positionPrev": { + "#": 1521 + }, + "region": { + "#": 1522 + }, + "render": { + "#": 1523 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9712437074586453, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1525 + }, + "vertices": { + "#": 1526 + } + }, + [ + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1514 + }, + "min": { + "#": 1515 + } + }, + { + "x": 275.86498958756107, + "y": 265.34231199798444 + }, + { + "x": 260.64898958756106, + "y": 249.34231199798455 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.2569895875612, + "y": 257.34231199798455 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.256115975977, + "y": 256.75423324753973 + }, + { + "endCol": 5, + "endRow": 5, + "id": "5,5,5,5", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1524 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0004288253704771705, + "y": 0.0088060955945366 + }, + [ + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.86498958756107, + "y": 259.8143119979845 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.95898958756106, + "y": 263.8143119979844 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.25698958756107, + "y": 265.34231199798444 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.55498958756107, + "y": 263.8143119979844 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.64898958756106, + "y": 259.8143119979845 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.64898958756106, + "y": 254.87031199798454 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.55498958756107, + "y": 250.87031199798454 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.25698958756107, + "y": 249.34231199798455 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.95898958756106, + "y": 250.87031199798454 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.86498958756107, + "y": 254.87031199798454 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1538 + }, + "bounds": { + "#": 1544 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1547 + }, + "constraintImpulse": { + "#": 1548 + }, + "density": 0.001, + "force": { + "#": 1549 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1550 + }, + "positionImpulse": { + "#": 1551 + }, + "positionPrev": { + "#": 1552 + }, + "region": { + "#": 1553 + }, + "render": { + "#": 1554 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7274193215069849, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1556 + }, + "vertices": { + "#": 1557 + } + }, + [ + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1545 + }, + "min": { + "#": 1546 + } + }, + { + "x": 296.07986202827755, + "y": 264.5454692255543 + }, + { + "x": 280.86386202827754, + "y": 248.54546922555434 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.4718620282776, + "y": 256.54546922555426 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.4719187660759, + "y": 256.2502799182702 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,5,5", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1555 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00011455536747462247, + "y": -0.165652783263738 + }, + [ + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.07986202827755, + "y": 259.0174692255543 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.17386202827754, + "y": 263.0174692255543 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.47186202827754, + "y": 264.5454692255543 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.76986202827754, + "y": 263.0174692255543 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.86386202827754, + "y": 259.0174692255543 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.86386202827754, + "y": 254.07346922555433 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.76986202827754, + "y": 250.07346922555433 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.47186202827754, + "y": 248.54546922555434 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.17386202827754, + "y": 250.07346922555433 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.07986202827755, + "y": 254.07346922555433 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1569 + }, + "bounds": { + "#": 1575 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1578 + }, + "constraintImpulse": { + "#": 1579 + }, + "density": 0.001, + "force": { + "#": 1580 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1581 + }, + "positionImpulse": { + "#": 1582 + }, + "positionPrev": { + "#": 1583 + }, + "region": { + "#": 1584 + }, + "render": { + "#": 1585 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5936274351174544, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1587 + }, + "vertices": { + "#": 1588 + } + }, + [ + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1576 + }, + "min": { + "#": 1577 + } + }, + { + "x": 316.30143038593764, + "y": 264.0870094103508 + }, + { + "x": 301.0854303859376, + "y": 248.08700941035096 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.69343038593763, + "y": 256.087009410351 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.6882589862785, + "y": 256.0421445551766 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,5,5", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1586 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004929860702418409, + "y": -0.3010904653347666 + }, + [ + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.30143038593764, + "y": 258.55900941035077 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.39543038593763, + "y": 262.55900941035077 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.69343038593763, + "y": 264.0870094103508 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.99143038593763, + "y": 262.55900941035077 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.0854303859376, + "y": 258.55900941035077 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.0854303859376, + "y": 253.61500941035095 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.99143038593763, + "y": 249.61500941035095 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.69343038593763, + "y": 248.08700941035096 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.39543038593763, + "y": 249.61500941035095 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.30143038593764, + "y": 253.61500941035095 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1600 + }, + "bounds": { + "#": 1606 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1609 + }, + "constraintImpulse": { + "#": 1610 + }, + "density": 0.001, + "force": { + "#": 1611 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1612 + }, + "positionImpulse": { + "#": 1613 + }, + "positionPrev": { + "#": 1614 + }, + "region": { + "#": 1615 + }, + "render": { + "#": 1616 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9129571653017273, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1618 + }, + "vertices": { + "#": 1619 + } + }, + [ + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1607 + }, + "min": { + "#": 1608 + } + }, + { + "x": 336.5058236658188, + "y": 265.1590819858004 + }, + { + "x": 321.2898236658188, + "y": 249.15908198580064 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.89782366581886, + "y": 257.1590819858004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.90362281069594, + "y": 256.64218360505515 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,5,5", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1617 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.005274376492707233, + "y": -0.0348175320153814 + }, + [ + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.5058236658188, + "y": 259.6310819858005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.5998236658188, + "y": 263.6310819858004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.8978236658188, + "y": 265.1590819858004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.1958236658188, + "y": 263.6310819858004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.2898236658188, + "y": 259.6310819858005 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.2898236658188, + "y": 254.68708198580063 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.1958236658188, + "y": 250.68708198580063 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.8978236658188, + "y": 249.15908198580064 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.5998236658188, + "y": 250.68708198580063 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.5058236658188, + "y": 254.68708198580063 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1631 + }, + "bounds": { + "#": 1637 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1640 + }, + "constraintImpulse": { + "#": 1641 + }, + "density": 0.001, + "force": { + "#": 1642 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1643 + }, + "positionImpulse": { + "#": 1644 + }, + "positionPrev": { + "#": 1645 + }, + "region": { + "#": 1646 + }, + "render": { + "#": 1647 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9065643065937027, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1649 + }, + "vertices": { + "#": 1650 + } + }, + [ + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1638 + }, + "min": { + "#": 1639 + } + }, + { + "x": 356.7281827639716, + "y": 265.1591718086608 + }, + { + "x": 341.51218276397157, + "y": 249.1591718086609 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.1201827639716, + "y": 257.159171808661 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12000726116116, + "y": 256.63753335049375 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,5,5", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1648 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00008820823040878167, + "y": -0.03625869190904041 + }, + [ + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.7281827639716, + "y": 259.63117180866084 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82218276397157, + "y": 263.6311718086608 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12018276397157, + "y": 265.1591718086608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.4181827639716, + "y": 263.6311718086608 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51218276397157, + "y": 259.63117180866084 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51218276397157, + "y": 254.68717180866088 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.4181827639716, + "y": 250.68717180866088 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12018276397157, + "y": 249.1591718086609 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82218276397157, + "y": 250.68717180866088 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.7281827639716, + "y": 254.68717180866088 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1662 + }, + "bounds": { + "#": 1668 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1671 + }, + "constraintImpulse": { + "#": 1672 + }, + "density": 0.001, + "force": { + "#": 1673 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1674 + }, + "positionImpulse": { + "#": 1675 + }, + "positionPrev": { + "#": 1676 + }, + "region": { + "#": 1677 + }, + "render": { + "#": 1678 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1337346298673678, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1680 + }, + "vertices": { + "#": 1681 + } + }, + [ + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1669 + }, + "min": { + "#": 1670 + } + }, + { + "x": 376.9430485708696, + "y": 265.9063177185483 + }, + { + "x": 361.7270485708696, + "y": 249.90631771854825 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.3350485708696, + "y": 257.9063177185482 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.3359807228972, + "y": 257.01201605440207 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,5,5", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1679 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0003423733107865701, + "y": 0.17225486445880733 + }, + [ + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9430485708696, + "y": 260.3783177185483 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.0370485708696, + "y": 264.37831771854826 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.3350485708696, + "y": 265.9063177185483 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.6330485708696, + "y": 264.37831771854826 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.7270485708696, + "y": 260.3783177185483 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.7270485708696, + "y": 255.43431771854824 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.6330485708696, + "y": 251.43431771854824 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.3350485708696, + "y": 249.90631771854825 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.0370485708696, + "y": 251.43431771854824 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9430485708696, + "y": 255.43431771854824 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1693 + }, + "bounds": { + "#": 1699 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1702 + }, + "constraintImpulse": { + "#": 1703 + }, + "density": 0.001, + "force": { + "#": 1704 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1705 + }, + "positionImpulse": { + "#": 1706 + }, + "positionPrev": { + "#": 1707 + }, + "region": { + "#": 1708 + }, + "render": { + "#": 1709 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.111834345124646, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1711 + }, + "vertices": { + "#": 1712 + } + }, + [ + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1700 + }, + "min": { + "#": 1701 + } + }, + { + "x": 397.15994613838393, + "y": 265.82708292961826 + }, + { + "x": 381.9439461383839, + "y": 249.8270829296182 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5519461383839, + "y": 257.82708292961826 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5519973006521, + "y": 256.98093883991487 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,5,5", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1710 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00001901365556022938, + "y": 0.1473654978714194 + }, + [ + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.15994613838393, + "y": 260.2990829296183 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2539461383839, + "y": 264.29908292961824 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5519461383839, + "y": 265.82708292961826 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8499461383839, + "y": 264.29908292961824 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9439461383839, + "y": 260.2990829296183 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9439461383839, + "y": 255.3550829296182 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8499461383839, + "y": 251.3550829296182 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5519461383839, + "y": 249.8270829296182 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2539461383839, + "y": 251.3550829296182 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.15994613838393, + "y": 255.3550829296182 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1724 + }, + "bounds": { + "#": 1730 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1733 + }, + "constraintImpulse": { + "#": 1734 + }, + "density": 0.001, + "force": { + "#": 1735 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1736 + }, + "positionImpulse": { + "#": 1737 + }, + "positionPrev": { + "#": 1738 + }, + "region": { + "#": 1739 + }, + "render": { + "#": 1740 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.110289844987545, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1742 + }, + "vertices": { + "#": 1743 + } + }, + [ + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1731 + }, + "min": { + "#": 1732 + } + }, + { + "x": 417.3759995077731, + "y": 265.81978170623563 + }, + { + "x": 402.1599995077731, + "y": 249.81978170623566 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7679995077731, + "y": 257.8197817062357 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7679999966876, + "y": 256.97908707886984 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1741 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -3.9134249618655303e-8, + "y": 0.14492753348758924 + }, + [ + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3759995077731, + "y": 260.29178170623567 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4699995077731, + "y": 264.2917817062356 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7679995077731, + "y": 265.81978170623563 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0659995077731, + "y": 264.2917817062356 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1599995077731, + "y": 260.29178170623567 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1599995077731, + "y": 255.34778170623565 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0659995077731, + "y": 251.34778170623565 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7679995077731, + "y": 249.81978170623566 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4699995077731, + "y": 251.34778170623565 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3759995077731, + "y": 255.34778170623565 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1755 + }, + "bounds": { + "#": 1761 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1764 + }, + "constraintImpulse": { + "#": 1765 + }, + "density": 0.001, + "force": { + "#": 1766 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1767 + }, + "positionImpulse": { + "#": 1768 + }, + "positionPrev": { + "#": 1769 + }, + "region": { + "#": 1770 + }, + "render": { + "#": 1771 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1098519691180961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1773 + }, + "vertices": { + "#": 1774 + } + }, + [ + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1762 + }, + "min": { + "#": 1763 + } + }, + { + "x": 437.59217714699497, + "y": 265.817076265518 + }, + { + "x": 422.37617714699496, + "y": 249.81707626551795 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.98417714699497, + "y": 257.8170762655179 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9840025328392, + "y": 256.9786073246753 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1772 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00001858261003917505, + "y": 0.14403431256698696 + }, + [ + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.59217714699497, + "y": 260.289076265518 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.68617714699496, + "y": 264.28907626551796 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.98417714699497, + "y": 265.817076265518 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.28217714699497, + "y": 264.28907626551796 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.37617714699496, + "y": 260.289076265518 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.37617714699496, + "y": 255.34507626551795 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.28217714699497, + "y": 251.34507626551795 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.98417714699497, + "y": 249.81707626551795 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.68617714699496, + "y": 251.34507626551795 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.59217714699497, + "y": 255.34507626551795 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1786 + }, + "bounds": { + "#": 1792 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1795 + }, + "constraintImpulse": { + "#": 1796 + }, + "density": 0.001, + "force": { + "#": 1797 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1798 + }, + "positionImpulse": { + "#": 1799 + }, + "positionPrev": { + "#": 1800 + }, + "region": { + "#": 1801 + }, + "render": { + "#": 1802 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.097687282438591, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1804 + }, + "vertices": { + "#": 1805 + } + }, + [ + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1793 + }, + "min": { + "#": 1794 + } + }, + { + "x": 457.8095887967459, + "y": 265.76821146719925 + }, + { + "x": 442.5935887967459, + "y": 249.76821146719922 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.20158879674585, + "y": 257.76821146719925 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2001553860991, + "y": 256.9626291395935 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,5,5", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1803 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0007084910494086216, + "y": 0.12812851078422227 + }, + [ + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8095887967459, + "y": 260.2402114671993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9035887967459, + "y": 264.24021146719923 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2015887967459, + "y": 265.76821146719925 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.4995887967459, + "y": 264.24021146719923 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.5935887967459, + "y": 260.2402114671993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.5935887967459, + "y": 255.2962114671992 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.4995887967459, + "y": 251.2962114671992 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2015887967459, + "y": 249.76821146719922 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9035887967459, + "y": 251.2962114671992 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8095887967459, + "y": 255.2962114671992 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1817 + }, + "bounds": { + "#": 1823 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1826 + }, + "constraintImpulse": { + "#": 1827 + }, + "density": 0.001, + "force": { + "#": 1828 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1829 + }, + "positionImpulse": { + "#": 1830 + }, + "positionPrev": { + "#": 1831 + }, + "region": { + "#": 1832 + }, + "render": { + "#": 1833 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8214238296189921, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1835 + }, + "vertices": { + "#": 1836 + } + }, + [ + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1824 + }, + "min": { + "#": 1825 + } + }, + { + "x": 478.02298114193377, + "y": 264.8351821683637 + }, + { + "x": 462.80698114193376, + "y": 248.83518216836373 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4149811419338, + "y": 256.83518216836376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.4158933927016, + "y": 256.5191745316645 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,5,5", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1834 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00047328382134992353, + "y": -0.13932450090391058 + }, + [ + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.02298114193377, + "y": 259.30718216836374 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.11698114193376, + "y": 263.3071821683637 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.41498114193377, + "y": 264.8351821683637 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.71298114193377, + "y": 263.3071821683637 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.80698114193376, + "y": 259.30718216836374 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.80698114193376, + "y": 254.36318216836372 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.71298114193377, + "y": 250.36318216836372 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.41498114193377, + "y": 248.83518216836373 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.11698114193376, + "y": 250.36318216836372 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.02298114193377, + "y": 254.36318216836372 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1848 + }, + "bounds": { + "#": 1854 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1857 + }, + "constraintImpulse": { + "#": 1858 + }, + "density": 0.001, + "force": { + "#": 1859 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1860 + }, + "positionImpulse": { + "#": 1861 + }, + "positionPrev": { + "#": 1862 + }, + "region": { + "#": 1863 + }, + "render": { + "#": 1864 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8098881134826796, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1866 + }, + "vertices": { + "#": 1867 + } + }, + [ + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1855 + }, + "min": { + "#": 1856 + } + }, + { + "x": 498.239874932717, + "y": 264.79153719977955 + }, + { + "x": 483.023874932717, + "y": 248.79153719977958 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.631874932717, + "y": 256.7915371997796 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6319989810746, + "y": 256.50251345823887 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1865 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00000663214427731873, + "y": -0.1526048483514728 + }, + [ + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.239874932717, + "y": 259.2635371997796 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.333874932717, + "y": 263.26353719977953 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.631874932717, + "y": 264.79153719977955 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.929874932717, + "y": 263.26353719977953 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.023874932717, + "y": 259.2635371997796 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.023874932717, + "y": 254.31953719977957 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.929874932717, + "y": 250.31953719977957 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.631874932717, + "y": 248.79153719977958 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.333874932717, + "y": 250.31953719977957 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.239874932717, + "y": 254.31953719977957 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1879 + }, + "bounds": { + "#": 1885 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1888 + }, + "constraintImpulse": { + "#": 1889 + }, + "density": 0.001, + "force": { + "#": 1890 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1891 + }, + "positionImpulse": { + "#": 1892 + }, + "positionPrev": { + "#": 1893 + }, + "region": { + "#": 1894 + }, + "render": { + "#": 1895 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8098563535490592, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1897 + }, + "vertices": { + "#": 1898 + } + }, + [ + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1886 + }, + "min": { + "#": 1887 + } + }, + { + "x": 518.4560824887132, + "y": 264.7914227834693 + }, + { + "x": 503.2400824887131, + "y": 248.79142278346924 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480824887131, + "y": 256.79142278346933 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8479999756957, + "y": 256.50246751131084 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1896 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0000017855198279903561, + "y": -0.15264070012261755 + }, + [ + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4560824887132, + "y": 259.2634227834693 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5500824887132, + "y": 263.26342278346925 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8480824887131, + "y": 264.7914227834693 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.1460824887131, + "y": 263.26342278346925 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2400824887131, + "y": 259.2634227834693 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2400824887131, + "y": 254.31942278346924 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.1460824887131, + "y": 250.31942278346924 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8480824887131, + "y": 248.79142278346924 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5500824887132, + "y": 250.31942278346924 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4560824887132, + "y": 254.31942278346924 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1910 + }, + "bounds": { + "#": 1916 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1919 + }, + "constraintImpulse": { + "#": 1920 + }, + "density": 0.001, + "force": { + "#": 1921 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1922 + }, + "positionImpulse": { + "#": 1923 + }, + "positionPrev": { + "#": 1924 + }, + "region": { + "#": 1925 + }, + "render": { + "#": 1926 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8214963619983464, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1928 + }, + "vertices": { + "#": 1929 + } + }, + [ + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1917 + }, + "min": { + "#": 1918 + } + }, + { + "x": 538.6730764308651, + "y": 264.8353749238257 + }, + { + "x": 523.4570764308652, + "y": 248.83537492382564 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.065076430865, + "y": 256.8353749238257 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0641075443307, + "y": 256.51929026005143 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1927 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0004778311134714386, + "y": -0.13926648303367983 + }, + [ + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.6730764308651, + "y": 259.30737492382576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7670764308651, + "y": 263.3073749238257 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0650764308651, + "y": 264.8353749238257 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3630764308651, + "y": 263.3073749238257 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4570764308652, + "y": 259.30737492382576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4570764308652, + "y": 254.36337492382563 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3630764308651, + "y": 250.36337492382563 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0650764308651, + "y": 248.83537492382564 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7670764308651, + "y": 250.36337492382563 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.6730764308651, + "y": 254.36337492382563 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1941 + }, + "bounds": { + "#": 1947 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1950 + }, + "constraintImpulse": { + "#": 1951 + }, + "density": 0.001, + "force": { + "#": 1952 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1953 + }, + "positionImpulse": { + "#": 1954 + }, + "positionPrev": { + "#": 1955 + }, + "region": { + "#": 1956 + }, + "render": { + "#": 1957 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0975875878387442, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1959 + }, + "vertices": { + "#": 1960 + } + }, + [ + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1948 + }, + "min": { + "#": 1949 + } + }, + { + "x": 558.8866395104175, + "y": 265.76768990381106 + }, + { + "x": 543.6706395104176, + "y": 249.7676899038111 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.2786395104174, + "y": 257.7676899038112 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.2798464187754, + "y": 256.9625080926844 + }, + { + "endCol": 11, + "endRow": 5, + "id": "11,11,5,5", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1958 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0005865960054052266, + "y": 0.12796744081271072 + }, + [ + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8866395104175, + "y": 260.2396899038111 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.9806395104175, + "y": 264.23968990381104 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.2786395104175, + "y": 265.76768990381106 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.5766395104175, + "y": 264.23968990381104 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.6706395104176, + "y": 260.2396899038111 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.6706395104176, + "y": 255.29568990381108 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.5766395104175, + "y": 251.29568990381108 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.2786395104175, + "y": 249.7676899038111 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.9806395104175, + "y": 251.29568990381108 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8866395104175, + "y": 255.29568990381108 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 1972 + }, + "bounds": { + "#": 1978 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 1981 + }, + "constraintImpulse": { + "#": 1982 + }, + "density": 0.001, + "force": { + "#": 1983 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 1984 + }, + "positionImpulse": { + "#": 1985 + }, + "positionPrev": { + "#": 1986 + }, + "region": { + "#": 1987 + }, + "render": { + "#": 1988 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1098141687933687, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1990 + }, + "vertices": { + "#": 1991 + } + }, + [ + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1979 + }, + "min": { + "#": 1980 + } + }, + { + "x": 579.1035762940471, + "y": 265.8167115126342 + }, + { + "x": 563.8875762940472, + "y": 249.81671151263413 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.495576294047, + "y": 257.81671151263413 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4959960880202, + "y": 256.97856662489863 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,5,5", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1989 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00014043525311535632, + "y": 0.14392454219159845 + }, + [ + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.1035762940471, + "y": 260.2887115126342 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1975762940472, + "y": 264.28871151263417 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4955762940472, + "y": 265.8167115126342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7935762940472, + "y": 264.28871151263417 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8875762940472, + "y": 260.2887115126342 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8875762940472, + "y": 255.34471151263412 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7935762940472, + "y": 251.34471151263412 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4955762940472, + "y": 249.81671151263413 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1975762940472, + "y": 251.34471151263412 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.1035762940471, + "y": 255.34471151263412 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2003 + }, + "bounds": { + "#": 2009 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2012 + }, + "constraintImpulse": { + "#": 2013 + }, + "density": 0.001, + "force": { + "#": 2014 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2015 + }, + "positionImpulse": { + "#": 2016 + }, + "positionPrev": { + "#": 2017 + }, + "region": { + "#": 2018 + }, + "render": { + "#": 2019 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1099388059251403, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2021 + }, + "vertices": { + "#": 2022 + } + }, + [ + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2010 + }, + "min": { + "#": 2011 + } + }, + { + "x": 599.3199935305457, + "y": 265.81738962556693 + }, + { + "x": 584.1039935305458, + "y": 249.81738962556696 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119935305458, + "y": 257.817389625567 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119999938978, + "y": 256.9787077166757 + }, + { + "endCol": 12, + "endRow": 5, + "id": "12,12,5,5", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2020 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.3466691345674917e-7, + "y": 0.14414911019491683 + }, + [ + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3199935305457, + "y": 260.28938962556697 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4139935305458, + "y": 264.2893896255669 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7119935305458, + "y": 265.81738962556693 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0099935305458, + "y": 264.2893896255669 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1039935305458, + "y": 260.28938962556697 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1039935305458, + "y": 255.34538962556695 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0099935305458, + "y": 251.34538962556695 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7119935305458, + "y": 249.81738962556696 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4139935305458, + "y": 251.34538962556695 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3199935305457, + "y": 255.34538962556695 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2034 + }, + "bounds": { + "#": 2040 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2043 + }, + "constraintImpulse": { + "#": 2044 + }, + "density": 0.001, + "force": { + "#": 2045 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2046 + }, + "positionImpulse": { + "#": 2047 + }, + "positionPrev": { + "#": 2048 + }, + "region": { + "#": 2049 + }, + "render": { + "#": 2050 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4829244845321232, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2052 + }, + "vertices": { + "#": 2053 + } + }, + [ + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2041 + }, + "min": { + "#": 2042 + } + }, + { + "x": 215.21646535995342, + "y": 289.531681806165 + }, + { + "x": 200.0004653599534, + "y": 273.531681806165 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.6084653599534, + "y": 281.5316818061649 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.60800353954693, + "y": 280.2785465481072 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2051 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0001579578536450299, + "y": 0.663503612921545 + }, + [ + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.21646535995342, + "y": 284.003681806165 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.3104653599534, + "y": 288.003681806165 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.6084653599534, + "y": 289.531681806165 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.90646535995342, + "y": 288.003681806165 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.0004653599534, + "y": 284.003681806165 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200.0004653599534, + "y": 279.05968180616503 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.90646535995342, + "y": 275.05968180616503 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.6084653599534, + "y": 273.531681806165 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.3104653599534, + "y": 275.05968180616503 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.21646535995342, + "y": 279.05968180616503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2065 + }, + "bounds": { + "#": 2071 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2074 + }, + "constraintImpulse": { + "#": 2075 + }, + "density": 0.001, + "force": { + "#": 2076 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2077 + }, + "positionImpulse": { + "#": 2078 + }, + "positionPrev": { + "#": 2079 + }, + "region": { + "#": 2080 + }, + "render": { + "#": 2081 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5461970039332498, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2083 + }, + "vertices": { + "#": 2084 + } + }, + [ + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2072 + }, + "min": { + "#": 2073 + } + }, + { + "x": 235.4386275219032, + "y": 289.7392653069827 + }, + { + "x": 220.22262752190318, + "y": 273.7392653069827 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.83062752190315, + "y": 281.7392653069828 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.82443986581163, + "y": 280.381446844 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2082 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005455651060117361, + "y": 0.7234777178907166 + }, + [ + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.4386275219032, + "y": 284.2112653069827 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.53262752190318, + "y": 288.2112653069827 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.83062752190318, + "y": 289.7392653069827 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.12862752190318, + "y": 288.2112653069827 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.22262752190318, + "y": 284.2112653069827 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.22262752190318, + "y": 279.2672653069827 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.12862752190318, + "y": 275.2672653069827 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.83062752190318, + "y": 273.7392653069827 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.53262752190318, + "y": 275.2672653069827 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.4386275219032, + "y": 279.2672653069827 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2096 + }, + "bounds": { + "#": 2102 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2105 + }, + "constraintImpulse": { + "#": 2106 + }, + "density": 0.001, + "force": { + "#": 2107 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2108 + }, + "positionImpulse": { + "#": 2109 + }, + "positionPrev": { + "#": 2110 + }, + "region": { + "#": 2111 + }, + "render": { + "#": 2112 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2178610802900185, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2114 + }, + "vertices": { + "#": 2115 + } + }, + [ + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2103 + }, + "min": { + "#": 2104 + } + }, + { + "x": 255.64311244137238, + "y": 288.6386582457659 + }, + { + "x": 240.42711244137237, + "y": 272.6386582457659 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.03511244137235, + "y": 280.63865824576584 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.03981176621633, + "y": 279.704236765629 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2113 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.004717093412637041, + "y": 0.4666778671090128 + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.64311244137238, + "y": 283.1106582457659 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.73711244137237, + "y": 287.1106582457659 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.03511244137238, + "y": 288.6386582457659 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.33311244137238, + "y": 287.1106582457659 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.42711244137237, + "y": 283.1106582457659 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.42711244137237, + "y": 278.1666582457659 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.33311244137238, + "y": 274.1666582457659 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.03511244137238, + "y": 272.6386582457659 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.73711244137237, + "y": 274.1666582457659 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.64311244137238, + "y": 278.1666582457659 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2127 + }, + "bounds": { + "#": 2133 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2136 + }, + "constraintImpulse": { + "#": 2137 + }, + "density": 0.001, + "force": { + "#": 2138 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2139 + }, + "positionImpulse": { + "#": 2140 + }, + "positionPrev": { + "#": 2141 + }, + "region": { + "#": 2142 + }, + "render": { + "#": 2143 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.172096241681343, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2145 + }, + "vertices": { + "#": 2146 + } + }, + [ + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2134 + }, + "min": { + "#": 2135 + } + }, + { + "x": 275.8827616570219, + "y": 288.4575503996589 + }, + { + "x": 260.6667616570219, + "y": 272.4575503996589 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.2747616570218, + "y": 280.45755039965906 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.26084991274735, + "y": 279.6958739901654 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2144 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.013598578012818052, + "y": 0.3842497818706079 + }, + [ + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.8827616570219, + "y": 282.92955039965886 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.9767616570219, + "y": 286.92955039965886 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.2747616570219, + "y": 288.4575503996589 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.5727616570219, + "y": 286.92955039965886 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.6667616570219, + "y": 282.92955039965886 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.6667616570219, + "y": 277.9855503996589 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.5727616570219, + "y": 273.9855503996589 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.2747616570219, + "y": 272.4575503996589 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.9767616570219, + "y": 273.9855503996589 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.8827616570219, + "y": 277.9855503996589 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2158 + }, + "bounds": { + "#": 2164 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2167 + }, + "constraintImpulse": { + "#": 2168 + }, + "density": 0.001, + "force": { + "#": 2169 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2170 + }, + "positionImpulse": { + "#": 2171 + }, + "positionPrev": { + "#": 2172 + }, + "region": { + "#": 2173 + }, + "render": { + "#": 2174 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8343103562438392, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2176 + }, + "vertices": { + "#": 2177 + } + }, + [ + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2165 + }, + "min": { + "#": 2166 + } + }, + { + "x": 296.0830015572998, + "y": 287.2024954985326 + }, + { + "x": 280.8670015572998, + "y": 271.2024954985326 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.47500155729983, + "y": 279.20249549853264 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.46796332620823, + "y": 278.74967256266996 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,5,5", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2175 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.006706829362883582, + "y": 0.17832276925361157 + }, + [ + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.0830015572998, + "y": 281.67449549853256 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.1770015572998, + "y": 285.67449549853256 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.4750015572998, + "y": 287.2024954985326 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.7730015572998, + "y": 285.67449549853256 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.8670015572998, + "y": 281.67449549853256 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.8670015572998, + "y": 276.7304954985326 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.7730015572998, + "y": 272.7304954985326 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.4750015572998, + "y": 271.2024954985326 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.1770015572998, + "y": 272.7304954985326 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.0830015572998, + "y": 276.7304954985326 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2189 + }, + "bounds": { + "#": 2195 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2198 + }, + "constraintImpulse": { + "#": 2199 + }, + "density": 0.001, + "force": { + "#": 2200 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2201 + }, + "positionImpulse": { + "#": 2202 + }, + "positionPrev": { + "#": 2203 + }, + "region": { + "#": 2204 + }, + "render": { + "#": 2205 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5328553093222581, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2207 + }, + "vertices": { + "#": 2208 + } + }, + [ + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2196 + }, + "min": { + "#": 2197 + } + }, + { + "x": 316.3169670041423, + "y": 286.2295946964473 + }, + { + "x": 301.1009670041423, + "y": 270.2295946964473 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.7089670041424, + "y": 278.2295946964473 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.6983354568595, + "y": 278.2002923544896 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,5,5", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2206 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0104813145441085, + "y": -0.07542210088462298 + }, + [ + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.3169670041423, + "y": 280.7015946964473 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.4109670041423, + "y": 284.7015946964473 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.7089670041423, + "y": 286.2295946964473 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.0069670041423, + "y": 284.7015946964473 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.1009670041423, + "y": 280.7015946964473 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.1009670041423, + "y": 275.7575946964473 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 304.0069670041423, + "y": 271.7575946964473 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.7089670041423, + "y": 270.2295946964473 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.4109670041423, + "y": 271.7575946964473 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.3169670041423, + "y": 275.7575946964473 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2220 + }, + "bounds": { + "#": 2226 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2229 + }, + "constraintImpulse": { + "#": 2230 + }, + "density": 0.001, + "force": { + "#": 2231 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2232 + }, + "positionImpulse": { + "#": 2233 + }, + "positionPrev": { + "#": 2234 + }, + "region": { + "#": 2235 + }, + "render": { + "#": 2236 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0882422596855617, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2238 + }, + "vertices": { + "#": 2239 + } + }, + [ + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2227 + }, + "min": { + "#": 2228 + } + }, + { + "x": 336.4835491224147, + "y": 288.1807924324661 + }, + { + "x": 321.26754912241466, + "y": 272.1807924324661 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.87554912241455, + "y": 280.180792432466 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.89271008974924, + "y": 279.4762323496072 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2237 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.016435014457101715, + "y": 0.33798787513785555 + }, + [ + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.4835491224147, + "y": 282.6527924324661 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.57754912241467, + "y": 286.6527924324661 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.87554912241467, + "y": 288.1807924324661 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.17354912241467, + "y": 286.6527924324661 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.26754912241466, + "y": 282.6527924324661 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.26754912241466, + "y": 277.7087924324661 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.17354912241467, + "y": 273.7087924324661 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.87554912241467, + "y": 272.1807924324661 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.57754912241467, + "y": 273.7087924324661 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.4835491224147, + "y": 277.7087924324661 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2251 + }, + "bounds": { + "#": 2257 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2260 + }, + "constraintImpulse": { + "#": 2261 + }, + "density": 0.001, + "force": { + "#": 2262 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2263 + }, + "positionImpulse": { + "#": 2264 + }, + "positionPrev": { + "#": 2265 + }, + "region": { + "#": 2266 + }, + "render": { + "#": 2267 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0913598251700274, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2269 + }, + "vertices": { + "#": 2270 + } + }, + [ + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2258 + }, + "min": { + "#": 2259 + } + }, + { + "x": 356.73179852921317, + "y": 288.23143598976293 + }, + { + "x": 341.51579852921316, + "y": 272.23143598976293 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12379852921316, + "y": 280.2314359897631 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.12032447470335, + "y": 279.471190367567 + }, + { + "endCol": 7, + "endRow": 6, + "id": "7,7,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2268 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.003406058513917287, + "y": 0.36167263425039664 + }, + [ + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + }, + { + "#": 2279 + }, + { + "#": 2280 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.73179852921317, + "y": 282.7034359897629 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82579852921316, + "y": 286.7034359897629 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12379852921316, + "y": 288.23143598976293 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.42179852921316, + "y": 286.7034359897629 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51579852921316, + "y": 282.7034359897629 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51579852921316, + "y": 277.75943598976295 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.42179852921316, + "y": 273.75943598976295 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12379852921316, + "y": 272.23143598976293 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82579852921316, + "y": 273.75943598976295 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.73179852921317, + "y": 277.75943598976295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2282 + }, + "bounds": { + "#": 2288 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2291 + }, + "constraintImpulse": { + "#": 2292 + }, + "density": 0.001, + "force": { + "#": 2293 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2294 + }, + "positionImpulse": { + "#": 2295 + }, + "positionPrev": { + "#": 2296 + }, + "region": { + "#": 2297 + }, + "render": { + "#": 2298 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5341011079911828, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2300 + }, + "vertices": { + "#": 2301 + } + }, + [ + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2289 + }, + "min": { + "#": 2290 + } + }, + { + "x": 376.9230244186267, + "y": 289.6915385907864 + }, + { + "x": 361.7070244186267, + "y": 273.6915385907864 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.31502441862665, + "y": 281.69153859078637 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.3349604508507, + "y": 280.3649959195978 + }, + { + "endCol": 7, + "endRow": 6, + "id": "7,7,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2299 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.018834327158458564, + "y": 0.707455192553823 + }, + [ + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.9230244186267, + "y": 284.1635385907864 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.0170244186267, + "y": 288.1635385907864 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.3150244186267, + "y": 289.6915385907864 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.6130244186267, + "y": 288.1635385907864 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.7070244186267, + "y": 284.1635385907864 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.7070244186267, + "y": 279.21953859078644 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.6130244186267, + "y": 275.21953859078644 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.3150244186267, + "y": 273.6915385907864 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 374.0170244186267, + "y": 275.21953859078644 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.9230244186267, + "y": 279.21953859078644 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2313 + }, + "bounds": { + "#": 2319 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2322 + }, + "constraintImpulse": { + "#": 2323 + }, + "density": 0.001, + "force": { + "#": 2324 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2325 + }, + "positionImpulse": { + "#": 2326 + }, + "positionPrev": { + "#": 2327 + }, + "region": { + "#": 2328 + }, + "render": { + "#": 2329 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4763141042014845, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2331 + }, + "vertices": { + "#": 2332 + } + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2320 + }, + "min": { + "#": 2321 + } + }, + { + "x": 397.1582406691859, + "y": 289.49969120693567 + }, + { + "x": 381.9422406691859, + "y": 273.49969120693567 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5502406691859, + "y": 281.49969120693567 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5516920732538, + "y": 280.2707150119339 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2330 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0008085248803126888, + "y": 0.6527036709555318 + }, + [ + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1582406691859, + "y": 283.97169120693565 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2522406691859, + "y": 287.97169120693565 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5502406691859, + "y": 289.49969120693567 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8482406691859, + "y": 287.97169120693565 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9422406691859, + "y": 283.97169120693565 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9422406691859, + "y": 279.0276912069357 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8482406691859, + "y": 275.0276912069357 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5502406691859, + "y": 273.49969120693567 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2522406691859, + "y": 275.0276912069357 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1582406691859, + "y": 279.0276912069357 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2344 + }, + "bounds": { + "#": 2350 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2353 + }, + "constraintImpulse": { + "#": 2354 + }, + "density": 0.001, + "force": { + "#": 2355 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2356 + }, + "positionImpulse": { + "#": 2357 + }, + "positionPrev": { + "#": 2358 + }, + "region": { + "#": 2359 + }, + "render": { + "#": 2360 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4700622487351493, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2362 + }, + "vertices": { + "#": 2363 + } + }, + [ + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2351 + }, + "min": { + "#": 2352 + } + }, + { + "x": 417.37597130603365, + "y": 289.4750380167896 + }, + { + "x": 402.15997130603364, + "y": 273.4750380167896 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.76797130603364, + "y": 281.47503801678965 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7679993268993, + "y": 280.26246433875855 + }, + { + "endCol": 8, + "endRow": 6, + "id": "8,8,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2361 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000014743966232799721, + "y": 0.6446186491075991 + }, + [ + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.37597130603365, + "y": 283.9470380167896 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.46997130603364, + "y": 287.9470380167896 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.76797130603364, + "y": 289.4750380167896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.06597130603365, + "y": 287.9470380167896 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.15997130603364, + "y": 283.9470380167896 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.15997130603364, + "y": 279.0030380167896 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.06597130603365, + "y": 275.0030380167896 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.76797130603364, + "y": 273.4750380167896 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.46997130603364, + "y": 275.0030380167896 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.37597130603365, + "y": 279.0030380167896 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2375 + }, + "bounds": { + "#": 2381 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2384 + }, + "constraintImpulse": { + "#": 2385 + }, + "density": 0.001, + "force": { + "#": 2386 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2387 + }, + "positionImpulse": { + "#": 2388 + }, + "positionPrev": { + "#": 2389 + }, + "region": { + "#": 2390 + }, + "render": { + "#": 2391 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4676294766253368, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2393 + }, + "vertices": { + "#": 2394 + } + }, + [ + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2382 + }, + "min": { + "#": 2383 + } + }, + { + "x": 437.5980312500715, + "y": 289.4637749729474 + }, + { + "x": 422.38203125007146, + "y": 273.4637749729474 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9900312500715, + "y": 281.4637749729475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9843035151228, + "y": 280.259572233443 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2392 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005060187028732344, + "y": 0.6408073868097404 + }, + [ + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.5980312500715, + "y": 283.9357749729474 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.69203125007147, + "y": 287.9357749729474 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.99003125007147, + "y": 289.4637749729474 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.28803125007147, + "y": 287.9357749729474 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.38203125007146, + "y": 283.9357749729474 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.38203125007146, + "y": 278.99177497294744 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.28803125007147, + "y": 274.99177497294744 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.99003125007147, + "y": 273.4637749729474 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.69203125007147, + "y": 274.99177497294744 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.5980312500715, + "y": 278.99177497294744 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2406 + }, + "bounds": { + "#": 2412 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2415 + }, + "constraintImpulse": { + "#": 2416 + }, + "density": 0.001, + "force": { + "#": 2417 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2418 + }, + "positionImpulse": { + "#": 2419 + }, + "positionPrev": { + "#": 2420 + }, + "region": { + "#": 2421 + }, + "render": { + "#": 2422 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.429489800442271, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2424 + }, + "vertices": { + "#": 2425 + } + }, + [ + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2413 + }, + "min": { + "#": 2414 + } + }, + { + "x": 457.8358175177234, + "y": 289.3255752322127 + }, + { + "x": 442.6198175177234, + "y": 273.3255752322127 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.22781751772345, + "y": 281.3255752322127 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.2061170707994, + "y": 280.2031603503951 + }, + { + "endCol": 9, + "endRow": 6, + "id": "9,9,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2423 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02011783621895802, + "y": 0.5974005443691794 + }, + [ + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.8358175177234, + "y": 283.7975752322127 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 454.9298175177234, + "y": 287.7975752322127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.2278175177234, + "y": 289.3255752322127 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.5258175177234, + "y": 287.7975752322127 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.6198175177234, + "y": 283.7975752322127 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.6198175177234, + "y": 278.85357523221273 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.5258175177234, + "y": 274.85357523221273 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.2278175177234, + "y": 273.3255752322127 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.9298175177234, + "y": 274.85357523221273 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.8358175177234, + "y": 278.85357523221273 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2437 + }, + "bounds": { + "#": 2443 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2446 + }, + "constraintImpulse": { + "#": 2447 + }, + "density": 0.001, + "force": { + "#": 2448 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2449 + }, + "positionImpulse": { + "#": 2450 + }, + "positionPrev": { + "#": 2451 + }, + "region": { + "#": 2452 + }, + "render": { + "#": 2453 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8472428528768257, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2455 + }, + "vertices": { + "#": 2456 + } + }, + [ + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2444 + }, + "min": { + "#": 2445 + } + }, + { + "x": 478.0009261909807, + "y": 287.3902322997291 + }, + { + "x": 462.7849261909807, + "y": 271.3902322997291 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.39292619098075, + "y": 279.3902322997292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.41082823867544, + "y": 279.08985340905446 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,5,5", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2454 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01740922261654987, + "y": 0.11131541332764527 + }, + [ + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + }, + { + "#": 2465 + }, + { + "#": 2466 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.0009261909807, + "y": 281.8622322997291 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.0949261909807, + "y": 285.8622322997291 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.3929261909807, + "y": 287.3902322997291 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.6909261909807, + "y": 285.8622322997291 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.7849261909807, + "y": 281.8622322997291 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.7849261909807, + "y": 276.91823229972914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.6909261909807, + "y": 272.91823229972914 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.3929261909807, + "y": 271.3902322997291 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.0949261909807, + "y": 272.91823229972914 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.0009261909807, + "y": 276.91823229972914 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2468 + }, + "bounds": { + "#": 2474 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2477 + }, + "constraintImpulse": { + "#": 2478 + }, + "density": 0.001, + "force": { + "#": 2479 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2480 + }, + "positionImpulse": { + "#": 2481 + }, + "positionPrev": { + "#": 2482 + }, + "region": { + "#": 2483 + }, + "render": { + "#": 2484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8168844199765409, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2486 + }, + "vertices": { + "#": 2487 + } + }, + [ + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2475 + }, + "min": { + "#": 2476 + } + }, + { + "x": 498.2337734218336, + "y": 287.2736968335189 + }, + { + "x": 483.01777342183357, + "y": 271.2736968335189 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.6257734218337, + "y": 279.27369683351895 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.63184647205185, + "y": 279.0397975939614 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2485 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0059070777561487375, + "y": 0.07662463327773139 + }, + [ + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2337734218336, + "y": 281.7456968335189 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.32777342183357, + "y": 285.7456968335189 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.62577342183357, + "y": 287.2736968335189 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9237734218336, + "y": 285.7456968335189 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.01777342183357, + "y": 281.7456968335189 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 483.01777342183357, + "y": 276.8016968335189 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9237734218336, + "y": 272.8016968335189 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.62577342183357, + "y": 271.2736968335189 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.32777342183357, + "y": 272.8016968335189 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2337734218336, + "y": 276.8016968335189 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2499 + }, + "bounds": { + "#": 2505 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2508 + }, + "constraintImpulse": { + "#": 2509 + }, + "density": 0.001, + "force": { + "#": 2510 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2511 + }, + "positionImpulse": { + "#": 2512 + }, + "positionPrev": { + "#": 2513 + }, + "region": { + "#": 2514 + }, + "render": { + "#": 2515 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.816800687253729, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2517 + }, + "vertices": { + "#": 2518 + } + }, + [ + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2506 + }, + "min": { + "#": 2507 + } + }, + { + "x": 518.4602683457343, + "y": 287.2734362994812 + }, + { + "x": 503.24426834573427, + "y": 271.2734362994812 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8522683457343, + "y": 279.2734362994812 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8480479893821, + "y": 279.03966131731573 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2516 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004115660273328103, + "y": 0.07654903209783015 + }, + [ + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4602683457343, + "y": 281.7454362994812 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5542683457344, + "y": 285.7454362994812 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8522683457343, + "y": 287.2734362994812 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.1502683457343, + "y": 285.7454362994812 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.24426834573427, + "y": 281.7454362994812 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.24426834573427, + "y": 276.8014362994812 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.1502683457343, + "y": 272.8014362994812 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8522683457343, + "y": 271.2734362994812 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5542683457344, + "y": 272.8014362994812 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4602683457343, + "y": 276.8014362994812 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2530 + }, + "bounds": { + "#": 2536 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2539 + }, + "constraintImpulse": { + "#": 2540 + }, + "density": 0.001, + "force": { + "#": 2541 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2542 + }, + "positionImpulse": { + "#": 2543 + }, + "positionPrev": { + "#": 2544 + }, + "region": { + "#": 2545 + }, + "render": { + "#": 2546 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8473580135364105, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2548 + }, + "vertices": { + "#": 2549 + } + }, + [ + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2537 + }, + "min": { + "#": 2538 + } + }, + { + "x": 538.6977412036185, + "y": 287.3901406645233 + }, + { + "x": 523.4817412036186, + "y": 271.3901406645233 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0897412036186, + "y": 279.39014066452347 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.0692660472296, + "y": 279.0901062910727 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2547 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.019930155520683, + "y": 0.11130986201266069 + }, + [ + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.6977412036185, + "y": 281.8621406645233 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.7917412036186, + "y": 285.8621406645233 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.0897412036186, + "y": 287.3901406645233 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.3877412036186, + "y": 285.8621406645233 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.4817412036186, + "y": 281.8621406645233 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.4817412036186, + "y": 276.9181406645233 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.3877412036186, + "y": 272.9181406645233 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.0897412036186, + "y": 271.3901406645233 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.7917412036186, + "y": 272.9181406645233 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.6977412036185, + "y": 276.9181406645233 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2561 + }, + "bounds": { + "#": 2567 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2570 + }, + "constraintImpulse": { + "#": 2571 + }, + "density": 0.001, + "force": { + "#": 2572 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2573 + }, + "positionImpulse": { + "#": 2574 + }, + "positionPrev": { + "#": 2575 + }, + "region": { + "#": 2576 + }, + "render": { + "#": 2577 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4290664770109112, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2579 + }, + "vertices": { + "#": 2580 + } + }, + [ + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2568 + }, + "min": { + "#": 2569 + } + }, + { + "x": 558.8641180455255, + "y": 289.32353832931705 + }, + { + "x": 543.6481180455256, + "y": 273.32353832931705 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.2561180455255, + "y": 281.3235383293171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.2740478791703, + "y": 280.2026050521617 + }, + { + "endCol": 11, + "endRow": 6, + "id": "11,11,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2578 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.016504801260907698, + "y": 0.5967191529639422 + }, + [ + { + "#": 2581 + }, + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8641180455255, + "y": 283.795538329317 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.9581180455256, + "y": 287.795538329317 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.2561180455256, + "y": 289.32353832931705 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.5541180455256, + "y": 287.795538329317 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.6481180455256, + "y": 283.795538329317 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.6481180455256, + "y": 278.85153832931707 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.5541180455256, + "y": 274.85153832931707 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.2561180455256, + "y": 273.32353832931705 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.9581180455256, + "y": 274.85153832931707 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8641180455255, + "y": 278.85153832931707 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2592 + }, + "bounds": { + "#": 2598 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2601 + }, + "constraintImpulse": { + "#": 2602 + }, + "density": 0.001, + "force": { + "#": 2603 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2604 + }, + "positionImpulse": { + "#": 2605 + }, + "positionPrev": { + "#": 2606 + }, + "region": { + "#": 2607 + }, + "render": { + "#": 2608 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.467323735650971, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2610 + }, + "vertices": { + "#": 2611 + } + }, + [ + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2599 + }, + "min": { + "#": 2600 + } + }, + { + "x": 579.0935790561837, + "y": 289.46173399144226 + }, + { + "x": 563.8775790561838, + "y": 273.46173399144226 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.485579056184, + "y": 281.4617339914422 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4955662107237, + "y": 280.25923299831976 + }, + { + "endCol": 12, + "endRow": 6, + "id": "11,12,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2609 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.009278526853563562, + "y": 0.6401378506715787 + }, + [ + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.0935790561837, + "y": 283.93373399144224 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1875790561837, + "y": 287.93373399144224 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4855790561837, + "y": 289.46173399144226 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7835790561837, + "y": 287.93373399144224 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8775790561838, + "y": 283.93373399144224 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8775790561838, + "y": 278.9897339914423 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7835790561837, + "y": 274.9897339914423 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4855790561837, + "y": 273.46173399144226 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1875790561837, + "y": 274.9897339914423 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.0935790561837, + "y": 278.9897339914423 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2623 + }, + "bounds": { + "#": 2629 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2632 + }, + "constraintImpulse": { + "#": 2633 + }, + "density": 0.001, + "force": { + "#": 2634 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2635 + }, + "positionImpulse": { + "#": 2636 + }, + "positionPrev": { + "#": 2637 + }, + "region": { + "#": 2638 + }, + "render": { + "#": 2639 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4679087483906266, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2641 + }, + "vertices": { + "#": 2642 + } + }, + [ + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2630 + }, + "min": { + "#": 2631 + } + }, + { + "x": 599.3193834035234, + "y": 289.4643840723811 + }, + { + "x": 584.1033834035235, + "y": 273.4643840723811 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7113834035233, + "y": 281.46438407238105 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.7119957835932, + "y": 280.25996303067535 + }, + { + "endCol": 12, + "endRow": 6, + "id": "12,12,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2640 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00020927058073993976, + "y": 0.6410249901364296 + }, + [ + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3193834035234, + "y": 283.9363840723811 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.4133834035234, + "y": 287.9363840723811 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.7113834035234, + "y": 289.4643840723811 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.0093834035234, + "y": 287.9363840723811 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.1033834035235, + "y": 283.9363840723811 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.1033834035235, + "y": 278.9923840723811 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.0093834035234, + "y": 274.9923840723811 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.7113834035234, + "y": 273.4643840723811 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.4133834035234, + "y": 274.9923840723811 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3193834035234, + "y": 278.9923840723811 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2654 + }, + "bounds": { + "#": 2660 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2663 + }, + "constraintImpulse": { + "#": 2664 + }, + "density": 0.001, + "force": { + "#": 2665 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2666 + }, + "positionImpulse": { + "#": 2667 + }, + "positionPrev": { + "#": 2668 + }, + "region": { + "#": 2669 + }, + "render": { + "#": 2670 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8608411566468654, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2672 + }, + "vertices": { + "#": 2673 + } + }, + [ + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + }, + { + "#": 2658 + }, + { + "#": 2659 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2661 + }, + "min": { + "#": 2662 + } + }, + { + "x": 215.22915536214427, + "y": 312.80703612669686 + }, + { + "x": 200.01315536214426, + "y": 296.80703612669686 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.62115536214426, + "y": 304.80703612669686 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.60845423433167, + "y": 303.11525078997283 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,6,6", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2671 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.011744915268707246, + "y": 1.1853231630276468 + }, + [ + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.22915536214427, + "y": 307.27903612669684 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.32315536214426, + "y": 311.27903612669684 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.62115536214426, + "y": 312.80703612669686 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.91915536214427, + "y": 311.27903612669684 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.01315536214426, + "y": 307.27903612669684 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200.01315536214426, + "y": 302.3350361266969 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.91915536214427, + "y": 298.3350361266969 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.62115536214426, + "y": 296.80703612669686 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.32315536214426, + "y": 298.3350361266969 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.22915536214427, + "y": 302.3350361266969 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2685 + }, + "bounds": { + "#": 2691 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2694 + }, + "constraintImpulse": { + "#": 2695 + }, + "density": 0.001, + "force": { + "#": 2696 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2697 + }, + "positionImpulse": { + "#": 2698 + }, + "positionPrev": { + "#": 2699 + }, + "region": { + "#": 2700 + }, + "render": { + "#": 2701 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9854766391295056, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2703 + }, + "vertices": { + "#": 2704 + } + }, + [ + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2692 + }, + "min": { + "#": 2693 + } + }, + { + "x": 235.46649278656042, + "y": 313.202413489682 + }, + { + "x": 220.25049278656041, + "y": 297.202413489682 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.85849278656042, + "y": 305.20241348968176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.83712981467286, + "y": 303.36339261111186 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,6,6", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2702 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.01992690542661535, + "y": 1.278880949067286 + }, + [ + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.46649278656042, + "y": 307.67441348968197 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.56049278656042, + "y": 311.67441348968197 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.85849278656042, + "y": 313.202413489682 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.15649278656042, + "y": 311.67441348968197 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.25049278656041, + "y": 307.67441348968197 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.25049278656041, + "y": 302.730413489682 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.15649278656042, + "y": 298.730413489682 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.85849278656042, + "y": 297.202413489682 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.56049278656042, + "y": 298.730413489682 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.46649278656042, + "y": 302.730413489682 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2716 + }, + "bounds": { + "#": 2722 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2725 + }, + "constraintImpulse": { + "#": 2726 + }, + "density": 0.001, + "force": { + "#": 2727 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2728 + }, + "positionImpulse": { + "#": 2729 + }, + "positionPrev": { + "#": 2730 + }, + "region": { + "#": 2731 + }, + "render": { + "#": 2732 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5147029773517173, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2734 + }, + "vertices": { + "#": 2735 + } + }, + [ + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2723 + }, + "min": { + "#": 2724 + } + }, + { + "x": 255.6442537634288, + "y": 311.41595693156535 + }, + { + "x": 240.42825376342878, + "y": 295.41595693156535 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.03625376342882, + "y": 303.415956931565 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.03507805897442, + "y": 302.08410639429536 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,6,6", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2733 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0008854327034555354, + "y": 0.9577826754015746 + }, + [ + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.6442537634288, + "y": 305.8879569315653 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.7382537634288, + "y": 309.8879569315653 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.0362537634288, + "y": 311.41595693156535 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.3342537634288, + "y": 309.8879569315653 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.42825376342878, + "y": 305.8879569315653 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.42825376342878, + "y": 300.94395693156537 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.3342537634288, + "y": 296.94395693156537 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.0362537634288, + "y": 295.41595693156535 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.7382537634288, + "y": 296.94395693156537 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.6442537634288, + "y": 300.94395693156537 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2747 + }, + "bounds": { + "#": 2753 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2756 + }, + "constraintImpulse": { + "#": 2757 + }, + "density": 0.001, + "force": { + "#": 2758 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2759 + }, + "positionImpulse": { + "#": 2760 + }, + "positionPrev": { + "#": 2761 + }, + "region": { + "#": 2762 + }, + "render": { + "#": 2763 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3011311337146712, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2765 + }, + "vertices": { + "#": 2766 + } + }, + [ + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2754 + }, + "min": { + "#": 2755 + } + }, + { + "x": 275.9013863878344, + "y": 310.7783494838671 + }, + { + "x": 260.6853863878344, + "y": 294.7783494838671 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.29338638783435, + "y": 302.7783494838669 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.2771009941959, + "y": 301.86389313540604 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,6,6", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2764 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.01602471184236265, + "y": 0.7259299181933443 + }, + [ + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.9013863878344, + "y": 305.25034948386707 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.9953863878344, + "y": 309.25034948386707 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.2933863878344, + "y": 310.7783494838671 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.5913863878344, + "y": 309.25034948386707 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.6853863878344, + "y": 305.25034948386707 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.6853863878344, + "y": 300.3063494838671 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.5913863878344, + "y": 296.3063494838671 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.2933863878344, + "y": 294.7783494838671 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.9953863878344, + "y": 296.3063494838671 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.9013863878344, + "y": 300.3063494838671 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2778 + }, + "bounds": { + "#": 2784 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "density": 0.001, + "force": { + "#": 2789 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2790 + }, + "positionImpulse": { + "#": 2791 + }, + "positionPrev": { + "#": 2792 + }, + "region": { + "#": 2793 + }, + "render": { + "#": 2794 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9915089857773858, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2796 + }, + "vertices": { + "#": 2797 + } + }, + [ + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2785 + }, + "min": { + "#": 2786 + } + }, + { + "x": 296.1097815985415, + "y": 309.15973412713805 + }, + { + "x": 280.89378159854147, + "y": 293.15973412713805 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.50178159854164, + "y": 301.1597341271379 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.4772354206392, + "y": 300.4480049917188 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,6,6", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2795 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0241134456960026, + "y": 0.5779757023528305 + }, + [ + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.1097815985415, + "y": 303.63173412713803 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.20378159854147, + "y": 307.63173412713803 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.50178159854147, + "y": 309.15973412713805 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.7997815985415, + "y": 307.63173412713803 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.89378159854147, + "y": 303.63173412713803 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.89378159854147, + "y": 298.68773412713807 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.7997815985415, + "y": 294.68773412713807 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.50178159854147, + "y": 293.15973412713805 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.20378159854147, + "y": 294.68773412713807 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.1097815985415, + "y": 298.68773412713807 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2809 + }, + "bounds": { + "#": 2815 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2818 + }, + "constraintImpulse": { + "#": 2819 + }, + "density": 0.001, + "force": { + "#": 2820 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2821 + }, + "positionImpulse": { + "#": 2822 + }, + "positionPrev": { + "#": 2823 + }, + "region": { + "#": 2824 + }, + "render": { + "#": 2825 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.49544282465303513, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2827 + }, + "vertices": { + "#": 2828 + } + }, + [ + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2816 + }, + "min": { + "#": 2817 + } + }, + { + "x": 316.34745946089674, + "y": 307.51332447641244 + }, + { + "x": 301.13145946089674, + "y": 291.51332447641244 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.7394594608966, + "y": 299.5133244764124 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.713955812413, + "y": 299.2903785321876 + }, + { + "endCol": 6, + "endRow": 6, + "id": "6,6,6,6", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2826 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.025587466953766125, + "y": 0.2533678844329188 + }, + [ + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.34745946089674, + "y": 301.9853244764124 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.44145946089674, + "y": 305.9853244764124 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.73945946089674, + "y": 307.51332447641244 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.03745946089674, + "y": 305.9853244764124 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.13145946089674, + "y": 301.9853244764124 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.13145946089674, + "y": 297.04132447641246 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 304.03745946089674, + "y": 293.04132447641246 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.73945946089674, + "y": 291.51332447641244 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.44145946089674, + "y": 293.04132447641246 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.34745946089674, + "y": 297.04132447641246 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2840 + }, + "bounds": { + "#": 2846 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2849 + }, + "constraintImpulse": { + "#": 2850 + }, + "density": 0.001, + "force": { + "#": 2851 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2852 + }, + "positionImpulse": { + "#": 2853 + }, + "positionPrev": { + "#": 2854 + }, + "region": { + "#": 2855 + }, + "render": { + "#": 2856 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2467291457206953, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2858 + }, + "vertices": { + "#": 2859 + } + }, + [ + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2847 + }, + "min": { + "#": 2848 + } + }, + { + "x": 336.4390152542116, + "y": 310.514651480391 + }, + { + "x": 321.2230152542116, + "y": 294.514651480391 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.83101525421165, + "y": 302.51465148039097 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.8659978817402, + "y": 301.54900174950603 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,6,6", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2857 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.034214551285799644, + "y": 0.7314661261729611 + }, + [ + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.4390152542116, + "y": 304.986651480391 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.5330152542116, + "y": 308.986651480391 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.8310152542116, + "y": 310.514651480391 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.1290152542116, + "y": 308.986651480391 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.2230152542116, + "y": 304.986651480391 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.2230152542116, + "y": 300.04265148039104 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.1290152542116, + "y": 296.04265148039104 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.8310152542116, + "y": 294.514651480391 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.5330152542116, + "y": 296.04265148039104 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.4390152542116, + "y": 300.04265148039104 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2871 + }, + "bounds": { + "#": 2877 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2880 + }, + "constraintImpulse": { + "#": 2881 + }, + "density": 0.001, + "force": { + "#": 2882 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2883 + }, + "positionImpulse": { + "#": 2884 + }, + "positionPrev": { + "#": 2885 + }, + "region": { + "#": 2886 + }, + "render": { + "#": 2887 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3123290764258089, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2889 + }, + "vertices": { + "#": 2890 + } + }, + [ + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2878 + }, + "min": { + "#": 2879 + } + }, + { + "x": 356.73537922760966, + "y": 310.7360649924582 + }, + { + "x": 341.51937922760965, + "y": 294.7360649924582 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.1273792276098, + "y": 302.7360649924579 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.1273876500451, + "y": 301.60154705837937 + }, + { + "endCol": 7, + "endRow": 6, + "id": "7,7,6,6", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2888 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00019743781626857526, + "y": 0.825607589630124 + }, + [ + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.73537922760966, + "y": 305.20806499245816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.82937922760965, + "y": 309.20806499245816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.12737922760965, + "y": 310.7360649924582 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.42537922760965, + "y": 309.20806499245816 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.51937922760965, + "y": 305.20806499245816 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.51937922760965, + "y": 300.2640649924582 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.42537922760965, + "y": 296.2640649924582 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.12737922760965, + "y": 294.7360649924582 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.82937922760965, + "y": 296.2640649924582 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.73537922760966, + "y": 300.2640649924582 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2902 + }, + "bounds": { + "#": 2908 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2911 + }, + "constraintImpulse": { + "#": 2912 + }, + "density": 0.001, + "force": { + "#": 2913 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2914 + }, + "positionImpulse": { + "#": 2915 + }, + "positionPrev": { + "#": 2916 + }, + "region": { + "#": 2917 + }, + "render": { + "#": 2918 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9497687752472963, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2920 + }, + "vertices": { + "#": 2921 + } + }, + [ + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2909 + }, + "min": { + "#": 2910 + } + }, + { + "x": 376.8803051825255, + "y": 313.07900993148604 + }, + { + "x": 361.6643051825255, + "y": 297.07900993148604 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.2723051825255, + "y": 305.07900993148604 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.31168865372234, + "y": 303.3089994686566 + }, + { + "endCol": 7, + "endRow": 6, + "id": "7,7,6,6", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2919 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03734011055189512, + "y": 1.2397683062524152 + }, + [ + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + }, + { + "#": 2927 + }, + { + "#": 2928 + }, + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.8803051825255, + "y": 307.551009931486 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.9743051825255, + "y": 311.551009931486 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.2723051825255, + "y": 313.07900993148604 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.5703051825255, + "y": 311.551009931486 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.6643051825255, + "y": 307.551009931486 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.6643051825255, + "y": 302.60700993148606 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.5703051825255, + "y": 298.60700993148606 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.2723051825255, + "y": 297.07900993148604 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 373.9743051825255, + "y": 298.60700993148606 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.8803051825255, + "y": 302.60700993148606 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2933 + }, + "bounds": { + "#": 2939 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2942 + }, + "constraintImpulse": { + "#": 2943 + }, + "density": 0.001, + "force": { + "#": 2944 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2945 + }, + "positionImpulse": { + "#": 2946 + }, + "positionPrev": { + "#": 2947 + }, + "region": { + "#": 2948 + }, + "render": { + "#": 2949 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.833006022345892, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2951 + }, + "vertices": { + "#": 2952 + } + }, + [ + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2940 + }, + "min": { + "#": 2941 + } + }, + { + "x": 397.1319329821848, + "y": 312.69911970798097 + }, + { + "x": 381.9159329821848, + "y": 296.69911970798097 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5239329821848, + "y": 304.69911970798074 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.54154189928033, + "y": 303.07904486381216 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,6,6", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2950 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.016657072625832825, + "y": 1.149450847783612 + }, + [ + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1319329821848, + "y": 307.17111970798095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2259329821848, + "y": 311.17111970798095 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.5239329821848, + "y": 312.69911970798097 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.8219329821848, + "y": 311.17111970798095 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.9159329821848, + "y": 307.17111970798095 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.9159329821848, + "y": 302.227119707981 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.8219329821848, + "y": 298.227119707981 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.5239329821848, + "y": 296.69911970798097 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.2259329821848, + "y": 298.227119707981 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.1319329821848, + "y": 302.227119707981 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2964 + }, + "bounds": { + "#": 2970 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 2973 + }, + "constraintImpulse": { + "#": 2974 + }, + "density": 0.001, + "force": { + "#": 2975 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 2976 + }, + "positionImpulse": { + "#": 2977 + }, + "positionPrev": { + "#": 2978 + }, + "region": { + "#": 2979 + }, + "render": { + "#": 2980 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8137330443677417, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2982 + }, + "vertices": { + "#": 2983 + } + }, + [ + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + }, + { + "#": 2969 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2971 + }, + "min": { + "#": 2972 + } + }, + { + "x": 417.37551183525517, + "y": 312.63170703567465 + }, + { + "x": 402.15951183525516, + "y": 296.63170703567465 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.76751183525516, + "y": 304.6317070356745 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7679473754223, + "y": 303.0503546253763 + }, + { + "endCol": 8, + "endRow": 6, + "id": "8,8,6,6", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2981 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0005068102360610283, + "y": 1.128548472445857 + }, + [ + { + "#": 2984 + }, + { + "#": 2985 + }, + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.37551183525517, + "y": 307.10370703567463 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.46951183525516, + "y": 311.10370703567463 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.76751183525516, + "y": 312.63170703567465 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.06551183525517, + "y": 311.10370703567463 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.15951183525516, + "y": 307.10370703567463 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.15951183525516, + "y": 302.15970703567467 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.06551183525517, + "y": 298.15970703567467 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.76751183525516, + "y": 296.63170703567465 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.46951183525516, + "y": 298.15970703567467 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.37551183525517, + "y": 302.15970703567467 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 2995 + }, + "bounds": { + "#": 3001 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3004 + }, + "constraintImpulse": { + "#": 3005 + }, + "density": 0.001, + "force": { + "#": 3006 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3007 + }, + "positionImpulse": { + "#": 3008 + }, + "positionPrev": { + "#": 3009 + }, + "region": { + "#": 3010 + }, + "render": { + "#": 3011 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8041794208458555, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3013 + }, + "vertices": { + "#": 3014 + } + }, + [ + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3002 + }, + "min": { + "#": 3003 + } + }, + { + "x": 437.62624715935834, + "y": 312.59474379367947 + }, + { + "x": 422.41024715935833, + "y": 296.59474379367947 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.0182471593581, + "y": 304.5947437936793 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.9946737003349, + "y": 303.0376446270595 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,6,6", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3012 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.022242359123026745, + "y": 1.1163016629629396 + }, + [ + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.62624715935834, + "y": 307.06674379367945 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.72024715935834, + "y": 311.06674379367945 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430.01824715935834, + "y": 312.59474379367947 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.31624715935834, + "y": 311.06674379367945 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.41024715935833, + "y": 307.06674379367945 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.41024715935833, + "y": 302.1227437936795 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.31624715935834, + "y": 298.1227437936795 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.01824715935834, + "y": 296.59474379367947 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.72024715935834, + "y": 298.1227437936795 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.62624715935834, + "y": 302.1227437936795 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3026 + }, + "bounds": { + "#": 3032 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3035 + }, + "constraintImpulse": { + "#": 3036 + }, + "density": 0.001, + "force": { + "#": 3037 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3038 + }, + "positionImpulse": { + "#": 3039 + }, + "positionPrev": { + "#": 3040 + }, + "region": { + "#": 3041 + }, + "render": { + "#": 3042 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.7112962689866487, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3044 + }, + "vertices": { + "#": 3045 + } + }, + [ + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3033 + }, + "min": { + "#": 3034 + } + }, + { + "x": 457.90628727196514, + "y": 312.2717205672593 + }, + { + "x": 442.69028727196513, + "y": 296.2717205672593 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.29828727196525, + "y": 304.2717205672592 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.238977191061, + "y": 302.8788239997917 + }, + { + "endCol": 9, + "endRow": 6, + "id": "9,9,6,6", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3043 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05689057061795211, + "y": 1.0216988351367604 + }, + [ + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.90628727196514, + "y": 306.7437205672593 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 455.00028727196514, + "y": 310.7437205672593 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.29828727196514, + "y": 312.2717205672593 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.59628727196514, + "y": 310.7437205672593 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.69028727196513, + "y": 306.7437205672593 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.69028727196513, + "y": 301.7997205672593 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.59628727196514, + "y": 297.7997205672593 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.29828727196514, + "y": 296.2717205672593 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.00028727196514, + "y": 297.7997205672593 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 457.90628727196514, + "y": 301.7997205672593 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3057 + }, + "bounds": { + "#": 3063 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3066 + }, + "constraintImpulse": { + "#": 3067 + }, + "density": 0.001, + "force": { + "#": 3068 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3069 + }, + "positionImpulse": { + "#": 3070 + }, + "positionPrev": { + "#": 3071 + }, + "region": { + "#": 3072 + }, + "render": { + "#": 3073 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7714152176349175, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3075 + }, + "vertices": { + "#": 3076 + } + }, + [ + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3064 + }, + "min": { + "#": 3065 + } + }, + { + "x": 477.9449129807573, + "y": 308.9205823350659 + }, + { + "x": 462.7289129807573, + "y": 292.9205823350659 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.3369129807571, + "y": 300.92058233506583 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.3851677629905, + "y": 300.6059057261073 + }, + { + "endCol": 9, + "endRow": 6, + "id": "9,9,6,6", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3074 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.048459818385538256, + "y": 0.35144566167190305 + }, + [ + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 477.9449129807573, + "y": 303.39258233506587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.0389129807573, + "y": 307.39258233506587 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.3369129807573, + "y": 308.9205823350659 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.6349129807573, + "y": 307.39258233506587 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.7289129807573, + "y": 303.39258233506587 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.7289129807573, + "y": 298.4485823350659 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.6349129807573, + "y": 294.4485823350659 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.3369129807573, + "y": 292.9205823350659 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.0389129807573, + "y": 294.4485823350659 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 477.9449129807573, + "y": 298.4485823350659 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3088 + }, + "bounds": { + "#": 3094 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3097 + }, + "constraintImpulse": { + "#": 3098 + }, + "density": 0.001, + "force": { + "#": 3099 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3100 + }, + "positionImpulse": { + "#": 3101 + }, + "positionPrev": { + "#": 3102 + }, + "region": { + "#": 3103 + }, + "render": { + "#": 3104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6972746023068854, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3106 + }, + "vertices": { + "#": 3107 + } + }, + [ + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3095 + }, + "min": { + "#": 3096 + } + }, + { + "x": 498.2113055841471, + "y": 308.6473874058142 + }, + { + "x": 482.9953055841471, + "y": 292.6473874058142 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.60330558414694, + "y": 300.64738740581413 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.61974009029706, + "y": 300.4746861675323 + }, + { + "endCol": 10, + "endRow": 6, + "id": "10,10,6,6", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3105 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.016625949618401137, + "y": 0.2708227913456085 + }, + [ + { + "#": 3108 + }, + { + "#": 3109 + }, + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.2113055841471, + "y": 303.11938740581417 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.3053055841471, + "y": 307.11938740581417 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.6033055841471, + "y": 308.6473874058142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.9013055841471, + "y": 307.11938740581417 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 482.9953055841471, + "y": 303.11938740581417 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 482.9953055841471, + "y": 298.1753874058142 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.9013055841471, + "y": 294.1753874058142 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.6033055841471, + "y": 292.6473874058142 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.3053055841471, + "y": 294.1753874058142 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.2113055841471, + "y": 298.1753874058142 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3119 + }, + "bounds": { + "#": 3125 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3128 + }, + "constraintImpulse": { + "#": 3129 + }, + "density": 0.001, + "force": { + "#": 3130 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3131 + }, + "positionImpulse": { + "#": 3132 + }, + "positionPrev": { + "#": 3133 + }, + "region": { + "#": 3134 + }, + "render": { + "#": 3135 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6970606732962652, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3137 + }, + "vertices": { + "#": 3138 + } + }, + [ + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3126 + }, + "min": { + "#": 3127 + } + }, + { + "x": 518.4743863999809, + "y": 308.64679880532697 + }, + { + "x": 503.2583863999811, + "y": 292.64679880532697 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.866386399981, + "y": 300.6467988053267 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.85383632262455, + "y": 300.47439647892463 + }, + { + "endCol": 10, + "endRow": 6, + "id": "10,10,6,6", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3136 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.012729917247725098, + "y": 0.2707130148820056 + }, + [ + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4743863999809, + "y": 303.11879880532695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5683863999809, + "y": 307.11879880532695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8663863999811, + "y": 308.64679880532697 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.1643863999811, + "y": 307.11879880532695 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2583863999811, + "y": 303.11879880532695 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.2583863999811, + "y": 298.174798805327 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.1643863999811, + "y": 294.174798805327 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.8663863999811, + "y": 292.64679880532697 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5683863999809, + "y": 294.174798805327 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4743863999809, + "y": 298.174798805327 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3150 + }, + "bounds": { + "#": 3156 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3159 + }, + "constraintImpulse": { + "#": 3160 + }, + "density": 0.001, + "force": { + "#": 3161 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3162 + }, + "positionImpulse": { + "#": 3163 + }, + "positionPrev": { + "#": 3164 + }, + "region": { + "#": 3165 + }, + "render": { + "#": 3166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.771211166974449, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3168 + }, + "vertices": { + "#": 3169 + } + }, + [ + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3157 + }, + "min": { + "#": 3158 + } + }, + { + "x": 538.7597919912683, + "y": 308.9174718578441 + }, + { + "x": 523.5437919912684, + "y": 292.9174718578441 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.1517919912689, + "y": 300.91747185784396 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.100203828514, + "y": 300.6059026745142 + }, + { + "endCol": 11, + "endRow": 6, + "id": "10,11,6,6", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3167 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05181617233427005, + "y": 0.35032396057385995 + }, + [ + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.7597919912683, + "y": 303.38947185784406 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.8537919912684, + "y": 307.38947185784406 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.1517919912684, + "y": 308.9174718578441 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.4497919912684, + "y": 307.38947185784406 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.5437919912684, + "y": 303.38947185784406 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.5437919912684, + "y": 298.4454718578441 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.4497919912684, + "y": 294.4454718578441 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.1517919912684, + "y": 292.9174718578441 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.8537919912684, + "y": 294.4454718578441 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.7597919912683, + "y": 298.4454718578441 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3181 + }, + "bounds": { + "#": 3187 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3190 + }, + "constraintImpulse": { + "#": 3191 + }, + "density": 0.001, + "force": { + "#": 3192 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3193 + }, + "positionImpulse": { + "#": 3194 + }, + "positionPrev": { + "#": 3195 + }, + "region": { + "#": 3196 + }, + "render": { + "#": 3197 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.709631505497975, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3199 + }, + "vertices": { + "#": 3200 + } + }, + [ + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3188 + }, + "min": { + "#": 3189 + } + }, + { + "x": 558.8004461729254, + "y": 312.2650060498369 + }, + { + "x": 543.5844461729255, + "y": 296.2650060498369 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.1924461729257, + "y": 304.26500604983676 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.2460370618593, + "y": 302.8765800559761 + }, + { + "endCol": 11, + "endRow": 6, + "id": "11,11,6,6", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3198 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.05128065142946525, + "y": 1.0195230535622386 + }, + [ + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + }, + { + "#": 3210 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.8004461729254, + "y": 306.7370060498369 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.8944461729254, + "y": 310.7370060498369 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.1924461729254, + "y": 312.2650060498369 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.4904461729254, + "y": 310.7370060498369 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.5844461729255, + "y": 306.7370060498369 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.5844461729255, + "y": 301.79300604983695 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.4904461729254, + "y": 297.79300604983695 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.1924461729254, + "y": 296.2650060498369 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.8944461729254, + "y": 297.79300604983695 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.8004461729254, + "y": 301.79300604983695 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3212 + }, + "bounds": { + "#": 3218 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3221 + }, + "constraintImpulse": { + "#": 3222 + }, + "density": 0.001, + "force": { + "#": 3223 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3224 + }, + "positionImpulse": { + "#": 3225 + }, + "positionPrev": { + "#": 3226 + }, + "region": { + "#": 3227 + }, + "render": { + "#": 3228 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8024065085277023, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3230 + }, + "vertices": { + "#": 3231 + } + }, + [ + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3219 + }, + "min": { + "#": 3220 + } + }, + { + "x": 579.0633702200081, + "y": 312.58581182965247 + }, + { + "x": 563.8473702200082, + "y": 296.58581182965247 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4553702200084, + "y": 304.58581182965247 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4814012094147, + "y": 303.03553111735704 + }, + { + "endCol": 12, + "endRow": 6, + "id": "11,12,6,6", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3229 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.02440988713237857, + "y": 1.1132756292989825 + }, + [ + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.0633702200081, + "y": 307.05781182965245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.1573702200081, + "y": 311.05781182965245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.4553702200081, + "y": 312.58581182965247 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.7533702200082, + "y": 311.05781182965245 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.8473702200082, + "y": 307.05781182965245 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.8473702200082, + "y": 302.1138118296525 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.7533702200082, + "y": 298.1138118296525 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.4553702200081, + "y": 296.58581182965247 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.1573702200081, + "y": 298.1138118296525 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 579.0633702200081, + "y": 302.1138118296525 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3243 + }, + "bounds": { + "#": 3249 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3252 + }, + "constraintImpulse": { + "#": 3253 + }, + "density": 0.001, + "force": { + "#": 3254 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3255 + }, + "positionImpulse": { + "#": 3256 + }, + "positionPrev": { + "#": 3257 + }, + "region": { + "#": 3258 + }, + "render": { + "#": 3259 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8044201272235585, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3261 + }, + "vertices": { + "#": 3262 + } + }, + [ + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + }, + { + "#": 3248 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3250 + }, + "min": { + "#": 3251 + } + }, + { + "x": 599.3019788323204, + "y": 312.59435016072837 + }, + { + "x": 584.0859788323205, + "y": 296.59435016072837 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.6939788323206, + "y": 304.59435016072814 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.711445063441, + "y": 303.0384025533009 + }, + { + "endCol": 12, + "endRow": 6, + "id": "12,12,6,6", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3260 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.016296470162842525, + "y": 1.116164298427691 + }, + [ + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + }, + { + "#": 3271 + }, + { + "#": 3272 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.3019788323204, + "y": 307.06635016072835 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.3959788323205, + "y": 311.06635016072835 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.6939788323205, + "y": 312.59435016072837 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.9919788323205, + "y": 311.06635016072835 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.0859788323205, + "y": 307.06635016072835 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.0859788323205, + "y": 302.1223501607284 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.9919788323205, + "y": 298.1223501607284 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.6939788323205, + "y": 296.59435016072837 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.3959788323205, + "y": 298.1223501607284 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.3019788323204, + "y": 302.1223501607284 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3274 + }, + "bounds": { + "#": 3280 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3283 + }, + "constraintImpulse": { + "#": 3284 + }, + "density": 0.001, + "force": { + "#": 3285 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3286 + }, + "positionImpulse": { + "#": 3287 + }, + "positionPrev": { + "#": 3288 + }, + "region": { + "#": 3289 + }, + "render": { + "#": 3290 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.2654780145095255, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3292 + }, + "vertices": { + "#": 3293 + } + }, + [ + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3281 + }, + "min": { + "#": 3282 + } + }, + { + "x": 215.27363577188362, + "y": 335.784876699201 + }, + { + "x": 200.0576357718836, + "y": 319.784876699201 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.66563577188364, + "y": 327.78487669920116 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.6262483293156, + "y": 325.6116129111647 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,6,6", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3291 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03742409570261884, + "y": 1.7147723080731225 + }, + [ + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + }, + { + "#": 3297 + }, + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.27363577188362, + "y": 330.256876699201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.3676357718836, + "y": 334.256876699201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.66563577188361, + "y": 335.784876699201 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.96363577188362, + "y": 334.256876699201 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.0576357718836, + "y": 330.256876699201 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200.0576357718836, + "y": 325.312876699201 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.96363577188362, + "y": 321.312876699201 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.66563577188361, + "y": 319.784876699201 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.3676357718836, + "y": 321.312876699201 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.27363577188362, + "y": 325.312876699201 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3305 + }, + "bounds": { + "#": 3311 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3314 + }, + "constraintImpulse": { + "#": 3315 + }, + "density": 0.001, + "force": { + "#": 3316 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3317 + }, + "positionImpulse": { + "#": 3318 + }, + "positionPrev": { + "#": 3319 + }, + "region": { + "#": 3320 + }, + "render": { + "#": 3321 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.4338419379567404, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3323 + }, + "vertices": { + "#": 3324 + } + }, + [ + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3312 + }, + "min": { + "#": 3313 + } + }, + { + "x": 235.52707045862874, + "y": 336.37003035050213 + }, + { + "x": 220.31107045862873, + "y": 320.37003035050213 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.91907045862868, + "y": 328.37003035050225 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.87203104457532, + "y": 326.07984593725473 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3322 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04460880373252962, + "y": 1.802918325985786 + }, + [ + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + }, + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.52707045862874, + "y": 330.8420303505021 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.62107045862874, + "y": 334.8420303505021 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 227.91907045862874, + "y": 336.37003035050213 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.21707045862874, + "y": 334.8420303505021 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.31107045862873, + "y": 330.8420303505021 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.31107045862873, + "y": 325.89803035050215 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.21707045862874, + "y": 321.89803035050215 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 227.91907045862874, + "y": 320.37003035050213 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.62107045862874, + "y": 321.89803035050215 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.52707045862874, + "y": 325.89803035050215 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3336 + }, + "bounds": { + "#": 3342 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3345 + }, + "constraintImpulse": { + "#": 3346 + }, + "density": 0.001, + "force": { + "#": 3347 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3348 + }, + "positionImpulse": { + "#": 3349 + }, + "positionPrev": { + "#": 3350 + }, + "region": { + "#": 3351 + }, + "render": { + "#": 3352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.906461319510623, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3354 + }, + "vertices": { + "#": 3355 + } + }, + [ + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3343 + }, + "min": { + "#": 3344 + } + }, + { + "x": 255.66216937817504, + "y": 333.8385936387762 + }, + { + "x": 240.44616937817503, + "y": 317.8385936387762 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.05416937817503, + "y": 325.8385936387765 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.03924807267578, + "y": 324.06380300048784 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,6,6", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3353 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.014172225461663857, + "y": 1.4743511940500866 + }, + [ + { + "#": 3356 + }, + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + }, + { + "#": 3365 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.66216937817504, + "y": 328.3105936387762 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.75616937817503, + "y": 332.3105936387762 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.05416937817503, + "y": 333.8385936387762 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.35216937817503, + "y": 332.3105936387762 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.44616937817503, + "y": 328.3105936387762 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.44616937817503, + "y": 323.36659363877624 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.35216937817503, + "y": 319.36659363877624 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.05416937817503, + "y": 317.8385936387762 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.75616937817503, + "y": 319.36659363877624 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.66216937817504, + "y": 323.36659363877624 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3367 + }, + "bounds": { + "#": 3373 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3376 + }, + "constraintImpulse": { + "#": 3377 + }, + "density": 0.001, + "force": { + "#": 3378 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 108, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3379 + }, + "positionImpulse": { + "#": 3380 + }, + "positionPrev": { + "#": 3381 + }, + "region": { + "#": 3382 + }, + "render": { + "#": 3383 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4036315807291069, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3385 + }, + "vertices": { + "#": 3386 + } + }, + [ + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3374 + }, + "min": { + "#": 3375 + } + }, + { + "x": 275.93122679004534, + "y": 332.3809096148727 + }, + { + "x": 260.71522679004534, + "y": 316.3809096148727 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.32322679004534, + "y": 324.38090961487256 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.30322418570734, + "y": 323.28519269028425 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,6,6", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3384 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.019981621621241175, + "y": 1.0587160089211238 + }, + [ + { + "#": 3387 + }, + { + "#": 3388 + }, + { + "#": 3389 + }, + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + }, + { + "#": 3395 + }, + { + "#": 3396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.93122679004534, + "y": 326.85290961487266 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 273.0252267900453, + "y": 330.85290961487266 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.3232267900453, + "y": 332.3809096148727 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.6212267900453, + "y": 330.85290961487266 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.71522679004534, + "y": 326.85290961487266 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.71522679004534, + "y": 321.9089096148727 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.6212267900453, + "y": 317.9089096148727 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.3232267900453, + "y": 316.3809096148727 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 273.0252267900453, + "y": 317.9089096148727 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.93122679004534, + "y": 321.9089096148727 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3398 + }, + "bounds": { + "#": 3404 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3407 + }, + "constraintImpulse": { + "#": 3408 + }, + "density": 0.001, + "force": { + "#": 3409 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3410 + }, + "positionImpulse": { + "#": 3411 + }, + "positionPrev": { + "#": 3412 + }, + "region": { + "#": 3413 + }, + "render": { + "#": 3414 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2510157670013606, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3416 + }, + "vertices": { + "#": 3417 + } + }, + [ + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3405 + }, + "min": { + "#": 3406 + } + }, + { + "x": 296.1790750648158, + "y": 330.5804062971011 + }, + { + "x": 280.96307506481577, + "y": 314.5804062971011 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.57107506481566, + "y": 322.5804062971009 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.51593323169726, + "y": 321.5521292528338 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,6,6", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3415 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05508746462402314, + "y": 1.0087552692615986 + }, + [ + { + "#": 3418 + }, + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + }, + { + "#": 3422 + }, + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.1790750648158, + "y": 325.0524062971011 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.2730750648158, + "y": 329.0524062971011 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.57107506481583, + "y": 330.5804062971011 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.86907506481583, + "y": 329.0524062971011 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 280.96307506481577, + "y": 325.0524062971011 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.96307506481577, + "y": 320.1084062971011 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.86907506481583, + "y": 316.1084062971011 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.57107506481583, + "y": 314.5804062971011 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.2730750648158, + "y": 316.1084062971011 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.1790750648158, + "y": 320.1084062971011 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3429 + }, + "bounds": { + "#": 3435 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3438 + }, + "constraintImpulse": { + "#": 3439 + }, + "density": 0.001, + "force": { + "#": 3440 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 110, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3441 + }, + "positionImpulse": { + "#": 3442 + }, + "positionPrev": { + "#": 3443 + }, + "region": { + "#": 3444 + }, + "render": { + "#": 3445 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7226131720675033, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3447 + }, + "vertices": { + "#": 3448 + } + }, + [ + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3436 + }, + "min": { + "#": 3437 + } + }, + { + "x": 316.4049746667972, + "y": 328.3874146711617 + }, + { + "x": 301.1889746667972, + "y": 312.3874146711617 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.7969746667972, + "y": 320.38741467116205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.7544888636404, + "y": 319.63451730219157 + }, + { + "endCol": 6, + "endRow": 6, + "id": "6,6,6,6", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3446 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04257808115278294, + "y": 0.7874616473294509 + }, + [ + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.4049746667972, + "y": 322.8594146711617 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.4989746667972, + "y": 326.8594146711617 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.7969746667972, + "y": 328.3874146711617 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.0949746667972, + "y": 326.8594146711617 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.1889746667972, + "y": 322.8594146711617 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.1889746667972, + "y": 317.9154146711617 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 304.0949746667972, + "y": 313.9154146711617 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.7969746667972, + "y": 312.3874146711617 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.4989746667972, + "y": 313.9154146711617 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.4049746667972, + "y": 317.9154146711617 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3460 + }, + "bounds": { + "#": 3466 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3469 + }, + "constraintImpulse": { + "#": 3470 + }, + "density": 0.001, + "force": { + "#": 3471 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 111, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3472 + }, + "positionImpulse": { + "#": 3473 + }, + "positionPrev": { + "#": 3474 + }, + "region": { + "#": 3475 + }, + "render": { + "#": 3476 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4967406144013642, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3478 + }, + "vertices": { + "#": 3479 + } + }, + [ + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3467 + }, + "min": { + "#": 3468 + } + }, + { + "x": 336.3670724833439, + "y": 332.39157999667754 + }, + { + "x": 321.1510724833439, + "y": 316.39157999667754 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.7590724833439, + "y": 324.39157999667754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.8091792642822, + "y": 323.02435467756084 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,6,6", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3477 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.049343745109581505, + "y": 1.1927346682010693 + }, + [ + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + }, + { + "#": 3488 + }, + { + "#": 3489 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.3670724833439, + "y": 326.8635799966775 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.4610724833439, + "y": 330.8635799966775 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.7590724833439, + "y": 332.39157999667754 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.0570724833439, + "y": 330.8635799966775 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.1510724833439, + "y": 326.8635799966775 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.1510724833439, + "y": 321.91957999667756 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.0570724833439, + "y": 317.91957999667756 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.7590724833439, + "y": 316.39157999667754 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.4610724833439, + "y": 317.91957999667756 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.3670724833439, + "y": 321.91957999667756 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3491 + }, + "bounds": { + "#": 3497 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3500 + }, + "constraintImpulse": { + "#": 3501 + }, + "density": 0.001, + "force": { + "#": 3502 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3503 + }, + "positionImpulse": { + "#": 3504 + }, + "positionPrev": { + "#": 3505 + }, + "region": { + "#": 3506 + }, + "render": { + "#": 3507 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.697508218336869, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3509 + }, + "vertices": { + "#": 3510 + } + }, + [ + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3498 + }, + "min": { + "#": 3499 + } + }, + { + "x": 356.7199210149899, + "y": 332.94686381202166 + }, + { + "x": 341.5039210149899, + "y": 316.94686381202166 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.11192101499006, + "y": 324.94686381202195 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.1284178147696, + "y": 323.2783487517752 + }, + { + "endCol": 7, + "endRow": 6, + "id": "7,7,6,6", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3508 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.015650727823924626, + "y": 1.3844426109868095 + }, + [ + { + "#": 3511 + }, + { + "#": 3512 + }, + { + "#": 3513 + }, + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.7199210149899, + "y": 327.41886381202164 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.8139210149899, + "y": 331.41886381202164 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.1119210149899, + "y": 332.94686381202166 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.4099210149899, + "y": 331.41886381202164 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.5039210149899, + "y": 327.41886381202164 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.5039210149899, + "y": 322.4748638120217 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.4099210149899, + "y": 318.4748638120217 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.1119210149899, + "y": 316.94686381202166 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.8139210149899, + "y": 318.4748638120217 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.7199210149899, + "y": 322.4748638120217 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3522 + }, + "bounds": { + "#": 3528 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3531 + }, + "constraintImpulse": { + "#": 3532 + }, + "density": 0.001, + "force": { + "#": 3533 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 113, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3534 + }, + "positionImpulse": { + "#": 3535 + }, + "positionPrev": { + "#": 3536 + }, + "region": { + "#": 3537 + }, + "render": { + "#": 3538 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.355285887167558, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3540 + }, + "vertices": { + "#": 3541 + } + }, + [ + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3529 + }, + "min": { + "#": 3530 + } + }, + { + "x": 376.79083214062337, + "y": 336.1134012088565 + }, + { + "x": 361.57483214062336, + "y": 320.1134012088565 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.1828321406234, + "y": 328.11340120885654 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.2494196294161, + "y": 325.93850755984073 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3539 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.06417029904832816, + "y": 1.7310729126954243 + }, + [ + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.79083214062337, + "y": 330.58540120885647 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.88483214062336, + "y": 334.58540120885647 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.18283214062336, + "y": 336.1134012088565 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.48083214062336, + "y": 334.58540120885647 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.57483214062336, + "y": 330.58540120885647 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.57483214062336, + "y": 325.6414012088565 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.48083214062336, + "y": 321.6414012088565 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.18283214062336, + "y": 320.1134012088565 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 373.88483214062336, + "y": 321.6414012088565 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.79083214062337, + "y": 325.6414012088565 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3553 + }, + "bounds": { + "#": 3559 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3562 + }, + "constraintImpulse": { + "#": 3563 + }, + "density": 0.001, + "force": { + "#": 3564 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 114, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3565 + }, + "positionImpulse": { + "#": 3566 + }, + "positionPrev": { + "#": 3567 + }, + "region": { + "#": 3568 + }, + "render": { + "#": 3569 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.179666055262803, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3571 + }, + "vertices": { + "#": 3572 + } + }, + [ + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + }, + { + "#": 3557 + }, + { + "#": 3558 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3560 + }, + "min": { + "#": 3561 + } + }, + { + "x": 397.0854924415388, + "y": 335.49837756812286 + }, + { + "x": 381.8694924415388, + "y": 319.49837756812286 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.4774924415389, + "y": 327.4983775681228 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.5121362380459, + "y": 325.48414013833144 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,6,6", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3570 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.033531534250812456, + "y": 1.6268086079493287 + }, + [ + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.0854924415388, + "y": 329.97037756812284 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.1794924415388, + "y": 333.97037756812284 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.4774924415388, + "y": 335.49837756812286 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.7754924415388, + "y": 333.97037756812284 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.8694924415388, + "y": 329.97037756812284 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.8694924415388, + "y": 325.0263775681229 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.7754924415388, + "y": 321.0263775681229 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.4774924415388, + "y": 319.49837756812286 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.1794924415388, + "y": 321.0263775681229 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.0854924415388, + "y": 325.0263775681229 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3584 + }, + "bounds": { + "#": 3590 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3593 + }, + "constraintImpulse": { + "#": 3594 + }, + "density": 0.001, + "force": { + "#": 3595 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3596 + }, + "positionImpulse": { + "#": 3597 + }, + "positionPrev": { + "#": 3598 + }, + "region": { + "#": 3599 + }, + "render": { + "#": 3600 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.13413027704126, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3602 + }, + "vertices": { + "#": 3603 + } + }, + [ + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3591 + }, + "min": { + "#": 3592 + } + }, + { + "x": 417.3794512414974, + "y": 335.3483843461514 + }, + { + "x": 402.1634512414974, + "y": 319.3483843461514 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7714512414975, + "y": 327.3483843461514 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.76646667753477, + "y": 325.40493914166484 + }, + { + "endCol": 8, + "endRow": 6, + "id": "8,8,6,6", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3601 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0045643089455325025, + "y": 1.5851794474409644 + }, + [ + { + "#": 3604 + }, + { + "#": 3605 + }, + { + "#": 3606 + }, + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.3794512414974, + "y": 329.8203843461514 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.4734512414974, + "y": 333.8203843461514 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7714512414974, + "y": 335.3483843461514 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.0694512414974, + "y": 333.8203843461514 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1634512414974, + "y": 329.8203843461514 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1634512414974, + "y": 324.87638434615144 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.0694512414974, + "y": 320.87638434615144 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7714512414974, + "y": 319.3483843461514 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.4734512414974, + "y": 320.87638434615144 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.3794512414974, + "y": 324.87638434615144 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3615 + }, + "bounds": { + "#": 3621 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3624 + }, + "constraintImpulse": { + "#": 3625 + }, + "density": 0.001, + "force": { + "#": 3626 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 116, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3627 + }, + "positionImpulse": { + "#": 3628 + }, + "positionPrev": { + "#": 3629 + }, + "region": { + "#": 3630 + }, + "render": { + "#": 3631 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1063556001230554, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3633 + }, + "vertices": { + "#": 3634 + } + }, + [ + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3622 + }, + "min": { + "#": 3623 + } + }, + { + "x": 437.6956705038194, + "y": 335.2506610090176 + }, + { + "x": 422.47967050381936, + "y": 319.2506610090176 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.0876705038193, + "y": 327.2506610090176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.02980108249875, + "y": 325.3623720417284 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,6,6", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3632 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05585391548612506, + "y": 1.554668514994944 + }, + [ + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.6956705038194, + "y": 329.7226610090176 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.78967050381937, + "y": 333.7226610090176 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430.08767050381937, + "y": 335.2506610090176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.38567050381937, + "y": 333.7226610090176 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.47967050381936, + "y": 329.7226610090176 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.47967050381936, + "y": 324.77866100901764 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.38567050381937, + "y": 320.77866100901764 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.08767050381937, + "y": 319.2506610090176 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.78967050381937, + "y": 320.77866100901764 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.6956705038194, + "y": 324.77866100901764 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3646 + }, + "bounds": { + "#": 3652 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3655 + }, + "constraintImpulse": { + "#": 3656 + }, + "density": 0.001, + "force": { + "#": 3657 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 117, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3658 + }, + "positionImpulse": { + "#": 3659 + }, + "positionPrev": { + "#": 3660 + }, + "region": { + "#": 3661 + }, + "render": { + "#": 3662 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9274925986250397, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3664 + }, + "vertices": { + "#": 3665 + } + }, + [ + { + "#": 3647 + }, + { + "#": 3648 + }, + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3653 + }, + "min": { + "#": 3654 + } + }, + { + "x": 458.05273282926095, + "y": 334.61294292711335 + }, + { + "x": 442.83673282926094, + "y": 318.61294292711335 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.44473282926106, + "y": 326.61294292711347 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.3321893195681, + "y": 324.99895506187147 + }, + { + "endCol": 9, + "endRow": 6, + "id": "9,9,6,6", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3663 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11023403469181403, + "y": 1.385912615163761 + }, + [ + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 458.05273282926095, + "y": 329.08494292711333 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 455.14673282926094, + "y": 333.08494292711333 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.44473282926094, + "y": 334.61294292711335 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.74273282926094, + "y": 333.08494292711333 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 442.83673282926094, + "y": 329.08494292711333 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 442.83673282926094, + "y": 324.1409429271134 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.74273282926094, + "y": 320.1409429271134 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.44473282926094, + "y": 318.61294292711335 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.14673282926094, + "y": 320.1409429271134 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.05273282926095, + "y": 324.1409429271134 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3677 + }, + "bounds": { + "#": 3683 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3686 + }, + "constraintImpulse": { + "#": 3687 + }, + "density": 0.001, + "force": { + "#": 3688 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3689 + }, + "positionImpulse": { + "#": 3690 + }, + "positionPrev": { + "#": 3691 + }, + "region": { + "#": 3692 + }, + "render": { + "#": 3693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7574102767234661, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3695 + }, + "vertices": { + "#": 3696 + } + }, + [ + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3684 + }, + "min": { + "#": 3685 + } + }, + { + "x": 477.830071927084, + "y": 329.62252348991217 + }, + { + "x": 462.614071927084, + "y": 313.62252348991217 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.2220719270842, + "y": 321.62252348991217 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.31310638846486, + "y": 321.14366130131117 + }, + { + "endCol": 9, + "endRow": 6, + "id": "9,9,6,6", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3694 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.09267928322873331, + "y": 0.6662873816371757 + }, + [ + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 477.830071927084, + "y": 324.09452348991215 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.924071927084, + "y": 328.09452348991215 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.222071927084, + "y": 329.62252348991217 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.520071927084, + "y": 328.09452348991215 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.614071927084, + "y": 324.09452348991215 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.614071927084, + "y": 319.1505234899122 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.520071927084, + "y": 315.1505234899122 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.222071927084, + "y": 313.62252348991217 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.924071927084, + "y": 315.1505234899122 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 477.830071927084, + "y": 319.1505234899122 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3708 + }, + "bounds": { + "#": 3714 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3717 + }, + "constraintImpulse": { + "#": 3718 + }, + "density": 0.001, + "force": { + "#": 3719 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 119, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3720 + }, + "positionImpulse": { + "#": 3721 + }, + "positionPrev": { + "#": 3722 + }, + "region": { + "#": 3723 + }, + "render": { + "#": 3724 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5979787901922295, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3726 + }, + "vertices": { + "#": 3727 + } + }, + [ + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3715 + }, + "min": { + "#": 3716 + } + }, + { + "x": 498.1718464220333, + "y": 329.07050370947616 + }, + { + "x": 482.9558464220333, + "y": 313.07050370947616 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.5638464220334, + "y": 321.0705037094763 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.59741111760627, + "y": 320.840791124366 + }, + { + "endCol": 10, + "endRow": 6, + "id": "10,10,6,6", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3725 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.034503905345616204, + "y": 0.5121916516869192 + }, + [ + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + }, + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.1718464220333, + "y": 323.54250370947614 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.2658464220333, + "y": 327.54250370947614 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.5638464220333, + "y": 329.07050370947616 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.8618464220333, + "y": 327.54250370947614 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 482.9558464220333, + "y": 323.54250370947614 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 482.9558464220333, + "y": 318.5985037094762 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.8618464220333, + "y": 314.5985037094762 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.5638464220333, + "y": 313.07050370947616 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.2658464220333, + "y": 314.5985037094762 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.1718464220333, + "y": 318.5985037094762 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3739 + }, + "bounds": { + "#": 3745 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3748 + }, + "constraintImpulse": { + "#": 3749 + }, + "density": 0.001, + "force": { + "#": 3750 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 120, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3751 + }, + "positionImpulse": { + "#": 3752 + }, + "positionPrev": { + "#": 3753 + }, + "region": { + "#": 3754 + }, + "render": { + "#": 3755 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5975290732283455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3757 + }, + "vertices": { + "#": 3758 + } + }, + [ + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3746 + }, + "min": { + "#": 3747 + } + }, + { + "x": 518.5112360190761, + "y": 329.0682202918365 + }, + { + "x": 503.29523601907607, + "y": 313.0682202918365 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.90323601907613, + "y": 321.0682202918367 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.87185923608655, + "y": 320.84021913715077 + }, + { + "endCol": 10, + "endRow": 6, + "id": "10,10,6,6", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3756 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03240291173403875, + "y": 0.5116124662120569 + }, + [ + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.5112360190761, + "y": 323.5402202918365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.6052360190762, + "y": 327.5402202918365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.9032360190761, + "y": 329.0682202918365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.2012360190761, + "y": 327.5402202918365 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.29523601907607, + "y": 323.5402202918365 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.29523601907607, + "y": 318.5962202918365 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.2012360190761, + "y": 314.5962202918365 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.9032360190761, + "y": 313.0682202918365 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.6052360190762, + "y": 314.5962202918365 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.5112360190761, + "y": 318.5962202918365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3770 + }, + "bounds": { + "#": 3776 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3779 + }, + "constraintImpulse": { + "#": 3780 + }, + "density": 0.001, + "force": { + "#": 3781 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3782 + }, + "positionImpulse": { + "#": 3783 + }, + "positionPrev": { + "#": 3784 + }, + "region": { + "#": 3785 + }, + "render": { + "#": 3786 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7544567413147693, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3788 + }, + "vertices": { + "#": 3789 + } + }, + [ + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3777 + }, + "min": { + "#": 3778 + } + }, + { + "x": 538.8809410006331, + "y": 329.6055606954157 + }, + { + "x": 523.6649410006332, + "y": 313.6055606954157 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.2729410006328, + "y": 321.60556069541576 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.1780042467599, + "y": 321.14034977624505 + }, + { + "endCol": 11, + "endRow": 6, + "id": "10,11,6,6", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3787 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.09665282745595505, + "y": 0.6604943090311508 + }, + [ + { + "#": 3790 + }, + { + "#": 3791 + }, + { + "#": 3792 + }, + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + }, + { + "#": 3797 + }, + { + "#": 3798 + }, + { + "#": 3799 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 538.8809410006331, + "y": 324.0775606954157 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 535.9749410006332, + "y": 328.0775606954157 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.2729410006332, + "y": 329.6055606954157 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.5709410006332, + "y": 328.0775606954157 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.6649410006332, + "y": 324.0775606954157 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.6649410006332, + "y": 319.1335606954157 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.5709410006332, + "y": 315.1335606954157 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.2729410006332, + "y": 313.6055606954157 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.9749410006332, + "y": 315.1335606954157 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.8809410006331, + "y": 319.1335606954157 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3801 + }, + "bounds": { + "#": 3807 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3810 + }, + "constraintImpulse": { + "#": 3811 + }, + "density": 0.001, + "force": { + "#": 3812 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 122, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3813 + }, + "positionImpulse": { + "#": 3814 + }, + "positionPrev": { + "#": 3815 + }, + "region": { + "#": 3816 + }, + "render": { + "#": 3817 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9221496561059694, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3819 + }, + "vertices": { + "#": 3820 + } + }, + [ + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3808 + }, + "min": { + "#": 3809 + } + }, + { + "x": 558.6595849479078, + "y": 334.5945238528657 + }, + { + "x": 543.4435849479079, + "y": 318.5945238528657 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.0515849479079, + "y": 326.5945238528656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 551.1607319890578, + "y": 324.991263469521 + }, + { + "endCol": 11, + "endRow": 6, + "id": "11,11,6,6", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3818 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.10672547307922287, + "y": 1.3800396209247197 + }, + [ + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + }, + { + "#": 3830 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.6595849479078, + "y": 329.06652385286566 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.7535849479078, + "y": 333.06652385286566 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 551.0515849479078, + "y": 334.5945238528657 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.3495849479078, + "y": 333.06652385286566 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.4435849479079, + "y": 329.06652385286566 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.4435849479079, + "y": 324.1225238528657 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.3495849479078, + "y": 320.1225238528657 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 551.0515849479078, + "y": 318.5945238528657 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.7535849479078, + "y": 320.1225238528657 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.6595849479078, + "y": 324.1225238528657 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3832 + }, + "bounds": { + "#": 3838 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3841 + }, + "constraintImpulse": { + "#": 3842 + }, + "density": 0.001, + "force": { + "#": 3843 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 123, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3844 + }, + "positionImpulse": { + "#": 3845 + }, + "positionPrev": { + "#": 3846 + }, + "region": { + "#": 3847 + }, + "render": { + "#": 3848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.0986506701652075, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3850 + }, + "vertices": { + "#": 3851 + } + }, + [ + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3839 + }, + "min": { + "#": 3840 + } + }, + { + "x": 578.9779317125194, + "y": 335.2195151453499 + }, + { + "x": 563.7619317125195, + "y": 319.2195151453499 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.3699317125196, + "y": 327.2195151453499 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.4408739710509, + "y": 325.3524190196574 + }, + { + "endCol": 12, + "endRow": 6, + "id": "11,12,6,6", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3849 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.06826755569841225, + "y": 1.5442635706880878 + }, + [ + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + }, + { + "#": 3858 + }, + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 578.9779317125194, + "y": 329.69151514534985 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 576.0719317125195, + "y": 333.69151514534985 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.3699317125195, + "y": 335.2195151453499 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.6679317125195, + "y": 333.69151514534985 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.7619317125195, + "y": 329.69151514534985 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.7619317125195, + "y": 324.7475151453499 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.6679317125195, + "y": 320.7475151453499 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.3699317125195, + "y": 319.2195151453499 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.0719317125195, + "y": 320.7475151453499 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 578.9779317125194, + "y": 324.7475151453499 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3863 + }, + "bounds": { + "#": 3869 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3872 + }, + "constraintImpulse": { + "#": 3873 + }, + "density": 0.001, + "force": { + "#": 3874 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3875 + }, + "positionImpulse": { + "#": 3876 + }, + "positionPrev": { + "#": 3877 + }, + "region": { + "#": 3878 + }, + "render": { + "#": 3879 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1044400486117487, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3881 + }, + "vertices": { + "#": 3882 + } + }, + [ + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3870 + }, + "min": { + "#": 3871 + } + }, + { + "x": 599.2403726921832, + "y": 335.2423107722071 + }, + { + "x": 584.0243726921833, + "y": 319.2423107722071 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.6323726921834, + "y": 327.2423107722071 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.6881161432414, + "y": 325.3614885489026 + }, + { + "endCol": 12, + "endRow": 6, + "id": "12,12,6,6", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3880 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.05350340488746497, + "y": 1.5521372533751219 + }, + [ + { + "#": 3883 + }, + { + "#": 3884 + }, + { + "#": 3885 + }, + { + "#": 3886 + }, + { + "#": 3887 + }, + { + "#": 3888 + }, + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.2403726921832, + "y": 329.71431077220706 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.3343726921833, + "y": 333.71431077220706 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.6323726921833, + "y": 335.2423107722071 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.9303726921833, + "y": 333.71431077220706 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 584.0243726921833, + "y": 329.71431077220706 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 584.0243726921833, + "y": 324.7703107722071 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.9303726921833, + "y": 320.7703107722071 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.6323726921833, + "y": 319.2423107722071 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.3343726921833, + "y": 320.7703107722071 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.2403726921832, + "y": 324.7703107722071 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3894 + }, + "bounds": { + "#": 3900 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3903 + }, + "constraintImpulse": { + "#": 3904 + }, + "density": 0.001, + "force": { + "#": 3905 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 125, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3906 + }, + "positionImpulse": { + "#": 3907 + }, + "positionPrev": { + "#": 3908 + }, + "region": { + "#": 3909 + }, + "render": { + "#": 3910 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7001788859545877, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3912 + }, + "vertices": { + "#": 3913 + } + }, + [ + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3901 + }, + "min": { + "#": 3902 + } + }, + { + "x": 215.3732066106103, + "y": 358.5861785612607 + }, + { + "x": 200.1572066106103, + "y": 342.5861785612607 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.76520661061028, + "y": 350.5861785612608 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.6873814389223, + "y": 347.94026441920937 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3911 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.07406950403114365, + "y": 2.219894182592327 + }, + [ + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.3732066106103, + "y": 353.05817856126066 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.4672066106103, + "y": 357.05817856126066 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.7652066106103, + "y": 358.5861785612607 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 203.0632066106103, + "y": 357.05817856126066 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.1572066106103, + "y": 353.05817856126066 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200.1572066106103, + "y": 348.1141785612607 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 203.0632066106103, + "y": 344.1141785612607 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.7652066106103, + "y": 342.5861785612607 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.4672066106103, + "y": 344.1141785612607 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.3732066106103, + "y": 348.1141785612607 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3925 + }, + "bounds": { + "#": 3931 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3934 + }, + "constraintImpulse": { + "#": 3935 + }, + "density": 0.001, + "force": { + "#": 3936 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 126, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3937 + }, + "positionImpulse": { + "#": 3938 + }, + "positionPrev": { + "#": 3939 + }, + "region": { + "#": 3940 + }, + "render": { + "#": 3941 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8122280940568385, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3943 + }, + "vertices": { + "#": 3944 + } + }, + [ + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + }, + { + "#": 3929 + }, + { + "#": 3930 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3932 + }, + "min": { + "#": 3933 + } + }, + { + "x": 235.64407424459034, + "y": 359.22287334957525 + }, + { + "x": 220.42807424459033, + "y": 343.22287334957525 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.03607424459037, + "y": 351.2228733495749 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.9445358127808, + "y": 348.6102528299855 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3942 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0865786502963033, + "y": 2.221314518346901 + }, + [ + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.64407424459034, + "y": 353.69487334957523 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.73807424459034, + "y": 357.69487334957523 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 228.03607424459034, + "y": 359.22287334957525 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.33407424459034, + "y": 357.69487334957523 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.42807424459033, + "y": 353.69487334957523 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.42807424459033, + "y": 348.7508733495753 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.33407424459034, + "y": 344.7508733495753 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 228.03607424459034, + "y": 343.22287334957525 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.73807424459034, + "y": 344.7508733495753 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.64407424459034, + "y": 348.7508733495753 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3956 + }, + "bounds": { + "#": 3962 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3965 + }, + "constraintImpulse": { + "#": 3966 + }, + "density": 0.001, + "force": { + "#": 3967 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3968 + }, + "positionImpulse": { + "#": 3969 + }, + "positionPrev": { + "#": 3970 + }, + "region": { + "#": 3971 + }, + "render": { + "#": 3972 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3026862525529728, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3974 + }, + "vertices": { + "#": 3975 + } + }, + [ + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3963 + }, + "min": { + "#": 3964 + } + }, + { + "x": 255.7195901647069, + "y": 355.9311810923054 + }, + { + "x": 240.50359016470688, + "y": 339.9311810923054 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.11159016470694, + "y": 347.9311810923054 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.0581131800324, + "y": 345.83427533041385 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3973 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.050662182077843454, + "y": 1.9055713686422564 + }, + [ + { + "#": 3976 + }, + { + "#": 3977 + }, + { + "#": 3978 + }, + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + }, + { + "#": 3984 + }, + { + "#": 3985 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.7195901647069, + "y": 350.4031810923054 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 252.81359016470688, + "y": 354.4031810923054 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.11159016470688, + "y": 355.9311810923054 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.40959016470688, + "y": 354.4031810923054 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.50359016470688, + "y": 350.4031810923054 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.50359016470688, + "y": 345.4591810923054 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.40959016470688, + "y": 341.4591810923054 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.11159016470688, + "y": 339.9311810923054 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 252.81359016470688, + "y": 341.4591810923054 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 255.7195901647069, + "y": 345.4591810923054 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 3987 + }, + "bounds": { + "#": 3993 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 3996 + }, + "constraintImpulse": { + "#": 3997 + }, + "density": 0.001, + "force": { + "#": 3998 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 128, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 3999 + }, + "positionImpulse": { + "#": 4000 + }, + "positionPrev": { + "#": 4001 + }, + "region": { + "#": 4002 + }, + "render": { + "#": 4003 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5334892264796578, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4005 + }, + "vertices": { + "#": 4006 + } + }, + [ + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3994 + }, + "min": { + "#": 3995 + } + }, + { + "x": 275.94190444412664, + "y": 353.41581413395915 + }, + { + "x": 260.7259044441266, + "y": 337.41581413395915 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.33390444412674, + "y": 345.41581413395915 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.3200576441203, + "y": 344.09945998861224 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4004 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.015140906955537048, + "y": 1.3924489965992848 + }, + [ + { + "#": 4007 + }, + { + "#": 4008 + }, + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.94190444412664, + "y": 347.8878141339591 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 273.03590444412663, + "y": 351.8878141339591 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.33390444412663, + "y": 353.41581413395915 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 263.63190444412663, + "y": 351.8878141339591 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260.7259044441266, + "y": 347.8878141339591 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 260.7259044441266, + "y": 342.94381413395917 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 263.63190444412663, + "y": 338.94381413395917 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.33390444412663, + "y": 337.41581413395915 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 273.03590444412663, + "y": 338.94381413395917 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275.94190444412664, + "y": 342.94381413395917 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4018 + }, + "bounds": { + "#": 4024 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4027 + }, + "constraintImpulse": { + "#": 4028 + }, + "density": 0.001, + "force": { + "#": 4029 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 129, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4030 + }, + "positionImpulse": { + "#": 4031 + }, + "positionPrev": { + "#": 4032 + }, + "region": { + "#": 4033 + }, + "render": { + "#": 4034 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.519318972410265, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4036 + }, + "vertices": { + "#": 4037 + } + }, + [ + { + "#": 4019 + }, + { + "#": 4020 + }, + { + "#": 4021 + }, + { + "#": 4022 + }, + { + "#": 4023 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4025 + }, + "min": { + "#": 4026 + } + }, + { + "x": 296.2357114491983, + "y": 351.53684700149097 + }, + { + "x": 281.01971144919827, + "y": 335.53684700149097 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.6277114491984, + "y": 343.5368470014913 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.5832882972555, + "y": 342.26108287138624 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4035 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04643502378917219, + "y": 1.37780730979091 + }, + [ + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.2357114491983, + "y": 346.00884700149095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.32971144919827, + "y": 350.00884700149095 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.6277114491983, + "y": 351.53684700149097 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.9257114491983, + "y": 350.00884700149095 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 281.01971144919827, + "y": 346.00884700149095 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 281.01971144919827, + "y": 341.064847001491 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.9257114491983, + "y": 337.064847001491 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.6277114491983, + "y": 335.53684700149097 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.32971144919827, + "y": 337.064847001491 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.2357114491983, + "y": 341.064847001491 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4049 + }, + "bounds": { + "#": 4055 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4058 + }, + "constraintImpulse": { + "#": 4059 + }, + "density": 0.001, + "force": { + "#": 4060 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4061 + }, + "positionImpulse": { + "#": 4062 + }, + "positionPrev": { + "#": 4063 + }, + "region": { + "#": 4064 + }, + "render": { + "#": 4065 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.31346124005885, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4067 + }, + "vertices": { + "#": 4068 + } + }, + [ + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4056 + }, + "min": { + "#": 4057 + } + }, + { + "x": 316.46123869427464, + "y": 349.31031239147575 + }, + { + "x": 301.24523869427463, + "y": 333.31031239147575 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.85323869427464, + "y": 341.3103123914757 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.7949057077806, + "y": 339.8156821386316 + }, + { + "endCol": 6, + "endRow": 7, + "id": "6,6,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4066 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.057856683618695115, + "y": 1.4679648583980907 + }, + [ + { + "#": 4069 + }, + { + "#": 4070 + }, + { + "#": 4071 + }, + { + "#": 4072 + }, + { + "#": 4073 + }, + { + "#": 4074 + }, + { + "#": 4075 + }, + { + "#": 4076 + }, + { + "#": 4077 + }, + { + "#": 4078 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.46123869427464, + "y": 343.7823123914757 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.55523869427464, + "y": 347.7823123914757 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.85323869427464, + "y": 349.31031239147575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.15123869427464, + "y": 347.7823123914757 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.24523869427463, + "y": 343.7823123914757 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.24523869427463, + "y": 338.83831239147577 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 304.15123869427464, + "y": 334.83831239147577 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.85323869427464, + "y": 333.31031239147575 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.55523869427464, + "y": 334.83831239147577 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.46123869427464, + "y": 338.83831239147577 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4080 + }, + "bounds": { + "#": 4086 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4089 + }, + "constraintImpulse": { + "#": 4090 + }, + "density": 0.001, + "force": { + "#": 4091 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 131, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4092 + }, + "positionImpulse": { + "#": 4093 + }, + "positionPrev": { + "#": 4094 + }, + "region": { + "#": 4095 + }, + "render": { + "#": 4096 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8921399174077986, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4098 + }, + "vertices": { + "#": 4099 + } + }, + [ + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4087 + }, + "min": { + "#": 4088 + } + }, + { + "x": 336.2738940426938, + "y": 354.0661125701138 + }, + { + "x": 321.0578940426938, + "y": 338.0661125701138 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.66589404269365, + "y": 346.06611257011366 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.7074149902726, + "y": 344.221744993117 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,7,7", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4097 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.04246231774186526, + "y": 1.693106172536318 + }, + [ + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.2738940426938, + "y": 348.53811257011375 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.3678940426938, + "y": 352.53811257011375 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.6658940426938, + "y": 354.0661125701138 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 323.9638940426938, + "y": 352.53811257011375 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.0578940426938, + "y": 348.53811257011375 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.0578940426938, + "y": 343.5941125701138 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 323.9638940426938, + "y": 339.5941125701138 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.6658940426938, + "y": 338.0661125701138 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.3678940426938, + "y": 339.5941125701138 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.2738940426938, + "y": 343.5941125701138 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4111 + }, + "bounds": { + "#": 4117 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4120 + }, + "constraintImpulse": { + "#": 4121 + }, + "density": 0.001, + "force": { + "#": 4122 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 132, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4123 + }, + "positionImpulse": { + "#": 4124 + }, + "positionPrev": { + "#": 4125 + }, + "region": { + "#": 4126 + }, + "render": { + "#": 4127 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.2200232924424337, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4129 + }, + "vertices": { + "#": 4130 + } + }, + [ + { + "#": 4112 + }, + { + "#": 4113 + }, + { + "#": 4114 + }, + { + "#": 4115 + }, + { + "#": 4116 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4118 + }, + "min": { + "#": 4119 + } + }, + { + "x": 356.6549516902432, + "y": 355.0711925695036 + }, + { + "x": 341.4389516902432, + "y": 339.0711925695036 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.0469516902429, + "y": 347.0711925695036 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.09766031913654, + "y": 344.8489341961189 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4128 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.05082294569479018, + "y": 1.9500538222792443 + }, + [ + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + }, + { + "#": 4139 + }, + { + "#": 4140 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.6549516902432, + "y": 349.54319256950356 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.7489516902432, + "y": 353.54319256950356 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.0469516902432, + "y": 355.0711925695036 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.3449516902432, + "y": 353.54319256950356 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.4389516902432, + "y": 349.54319256950356 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.4389516902432, + "y": 344.5991925695036 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.3449516902432, + "y": 340.5991925695036 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.0469516902432, + "y": 339.0711925695036 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.7489516902432, + "y": 340.5991925695036 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.6549516902432, + "y": 344.5991925695036 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4142 + }, + "bounds": { + "#": 4148 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4151 + }, + "constraintImpulse": { + "#": 4152 + }, + "density": 0.001, + "force": { + "#": 4153 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4154 + }, + "positionImpulse": { + "#": 4155 + }, + "positionPrev": { + "#": 4156 + }, + "region": { + "#": 4157 + }, + "render": { + "#": 4158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.685227352166191, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4160 + }, + "vertices": { + "#": 4161 + } + }, + [ + { + "#": 4143 + }, + { + "#": 4144 + }, + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4149 + }, + "min": { + "#": 4150 + } + }, + { + "x": 376.6683279683479, + "y": 358.78964382320527 + }, + { + "x": 361.4523279683479, + "y": 342.78964382320527 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.06032796834796, + "y": 350.78964382320544 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.1399740847997, + "y": 348.3205979575382 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4159 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.07876453676942674, + "y": 2.1239540119940443 + }, + [ + { + "#": 4162 + }, + { + "#": 4163 + }, + { + "#": 4164 + }, + { + "#": 4165 + }, + { + "#": 4166 + }, + { + "#": 4167 + }, + { + "#": 4168 + }, + { + "#": 4169 + }, + { + "#": 4170 + }, + { + "#": 4171 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.6683279683479, + "y": 353.26164382320525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.7623279683479, + "y": 357.26164382320525 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.0603279683479, + "y": 358.78964382320527 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.3583279683479, + "y": 357.26164382320525 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.4523279683479, + "y": 353.26164382320525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.4523279683479, + "y": 348.3176438232053 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.3583279683479, + "y": 344.3176438232053 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 369.0603279683479, + "y": 342.78964382320527 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 373.7623279683479, + "y": 344.3176438232053 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.6683279683479, + "y": 348.3176438232053 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4173 + }, + "bounds": { + "#": 4179 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4182 + }, + "constraintImpulse": { + "#": 4183 + }, + "density": 0.001, + "force": { + "#": 4184 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 134, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4185 + }, + "positionImpulse": { + "#": 4186 + }, + "positionPrev": { + "#": 4187 + }, + "region": { + "#": 4188 + }, + "render": { + "#": 4189 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.5098042473579887, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4191 + }, + "vertices": { + "#": 4192 + } + }, + [ + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4180 + }, + "min": { + "#": 4181 + } + }, + { + "x": 397.0217121281836, + "y": 357.9849348358575 + }, + { + "x": 381.8057121281836, + "y": 341.9849348358575 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.41371212818353, + "y": 349.9849348358576 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.4533409240206, + "y": 347.5968862869564 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4190 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.039473533334785316, + "y": 2.063691206638282 + }, + [ + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + }, + { + "#": 4199 + }, + { + "#": 4200 + }, + { + "#": 4201 + }, + { + "#": 4202 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.0217121281836, + "y": 352.45693483585745 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.1157121281836, + "y": 356.45693483585745 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.4137121281836, + "y": 357.9849348358575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.7117121281836, + "y": 356.45693483585745 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.8057121281836, + "y": 352.45693483585745 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.8057121281836, + "y": 347.5129348358575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.7117121281836, + "y": 343.5129348358575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.4137121281836, + "y": 341.9849348358575 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.1157121281836, + "y": 343.5129348358575 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.0217121281836, + "y": 347.5129348358575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4204 + }, + "bounds": { + "#": 4210 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4213 + }, + "constraintImpulse": { + "#": 4214 + }, + "density": 0.001, + "force": { + "#": 4215 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 135, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4216 + }, + "positionImpulse": { + "#": 4217 + }, + "positionPrev": { + "#": 4218 + }, + "region": { + "#": 4219 + }, + "render": { + "#": 4220 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.4283212559816354, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4222 + }, + "vertices": { + "#": 4223 + } + }, + [ + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4211 + }, + "min": { + "#": 4212 + } + }, + { + "x": 417.40655713446233, + "y": 357.7123023485506 + }, + { + "x": 402.1905571344623, + "y": 341.7123023485506 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.79855713446227, + "y": 349.7123023485505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7717203869087, + "y": 347.4218579593367 + }, + { + "endCol": 8, + "endRow": 7, + "id": "8,8,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4221 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.025625146891627537, + "y": 2.0013092100736003 + }, + [ + { + "#": 4224 + }, + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + }, + { + "#": 4232 + }, + { + "#": 4233 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.40655713446233, + "y": 352.1843023485506 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.5005571344623, + "y": 356.1843023485506 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.7985571344623, + "y": 357.7123023485506 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.09655713446233, + "y": 356.1843023485506 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.1905571344623, + "y": 352.1843023485506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.1905571344623, + "y": 347.24030234855064 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.09655713446233, + "y": 343.24030234855064 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.7985571344623, + "y": 341.7123023485506 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.5005571344623, + "y": 343.24030234855064 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.40655713446233, + "y": 347.24030234855064 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4235 + }, + "bounds": { + "#": 4241 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4244 + }, + "constraintImpulse": { + "#": 4245 + }, + "density": 0.001, + "force": { + "#": 4246 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4247 + }, + "positionImpulse": { + "#": 4248 + }, + "positionPrev": { + "#": 4249 + }, + "region": { + "#": 4250 + }, + "render": { + "#": 4251 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3668610645723747, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4253 + }, + "vertices": { + "#": 4254 + } + }, + [ + { + "#": 4236 + }, + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4242 + }, + "min": { + "#": 4243 + } + }, + { + "x": 437.8310084641863, + "y": 357.50037060428787 + }, + { + "x": 422.6150084641863, + "y": 341.50037060428787 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.22300846418625, + "y": 349.50037060428804 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.1196797456543, + "y": 347.3096709740055 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4252 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.10090254985857428, + "y": 1.9414681789271526 + }, + [ + { + "#": 4255 + }, + { + "#": 4256 + }, + { + "#": 4257 + }, + { + "#": 4258 + }, + { + "#": 4259 + }, + { + "#": 4260 + }, + { + "#": 4261 + }, + { + "#": 4262 + }, + { + "#": 4263 + }, + { + "#": 4264 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 437.8310084641863, + "y": 351.97237060428785 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.9250084641863, + "y": 355.97237060428785 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430.2230084641863, + "y": 357.50037060428787 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.5210084641863, + "y": 355.97237060428785 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.6150084641863, + "y": 351.97237060428785 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.6150084641863, + "y": 347.0283706042879 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.5210084641863, + "y": 343.0283706042879 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.2230084641863, + "y": 341.50037060428787 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.9250084641863, + "y": 343.0283706042879 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 437.8310084641863, + "y": 347.0283706042879 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4266 + }, + "bounds": { + "#": 4272 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4275 + }, + "constraintImpulse": { + "#": 4276 + }, + "density": 0.001, + "force": { + "#": 4277 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 137, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4278 + }, + "positionImpulse": { + "#": 4279 + }, + "positionPrev": { + "#": 4280 + }, + "region": { + "#": 4281 + }, + "render": { + "#": 4282 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.081395973449172, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4284 + }, + "vertices": { + "#": 4285 + } + }, + [ + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + }, + { + "#": 4271 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4273 + }, + "min": { + "#": 4274 + } + }, + { + "x": 458.2736414196214, + "y": 356.3982156851607 + }, + { + "x": 443.0576414196214, + "y": 340.3982156851607 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.66564141962124, + "y": 348.3982156851607 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.51584766194674, + "y": 346.61487641056783 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4283 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.14844731206022743, + "y": 1.68121573683527 + }, + [ + { + "#": 4286 + }, + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + }, + { + "#": 4294 + }, + { + "#": 4295 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 458.2736414196214, + "y": 350.8702156851607 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 455.36764141962146, + "y": 354.8702156851607 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.66564141962147, + "y": 356.3982156851607 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 445.96364141962147, + "y": 354.8702156851607 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 443.0576414196214, + "y": 350.8702156851607 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 443.0576414196214, + "y": 345.92621568516074 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 445.96364141962147, + "y": 341.92621568516074 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.66564141962147, + "y": 340.3982156851607 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.36764141962146, + "y": 341.92621568516074 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.2736414196214, + "y": 345.92621568516074 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4297 + }, + "bounds": { + "#": 4303 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4306 + }, + "constraintImpulse": { + "#": 4307 + }, + "density": 0.001, + "force": { + "#": 4308 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 138, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4309 + }, + "positionImpulse": { + "#": 4310 + }, + "positionPrev": { + "#": 4311 + }, + "region": { + "#": 4312 + }, + "render": { + "#": 4313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9143742068346746, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4315 + }, + "vertices": { + "#": 4316 + } + }, + [ + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4304 + }, + "min": { + "#": 4305 + } + }, + { + "x": 477.65315747000056, + "y": 349.780675539278 + }, + { + "x": 462.43715747000056, + "y": 333.780675539278 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.0451574700006, + "y": 341.780675539278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.1658857648701, + "y": 341.0018814343434 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4314 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.12316585053577, + "y": 1.0575578536042372 + }, + [ + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + }, + { + "#": 4320 + }, + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + }, + { + "#": 4325 + }, + { + "#": 4326 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 477.65315747000056, + "y": 344.25267553927796 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.74715747000056, + "y": 348.25267553927796 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.04515747000056, + "y": 349.780675539278 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.34315747000056, + "y": 348.25267553927796 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.43715747000056, + "y": 344.25267553927796 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.43715747000056, + "y": 339.308675539278 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.34315747000056, + "y": 335.308675539278 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.04515747000056, + "y": 333.780675539278 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.74715747000056, + "y": 335.308675539278 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 477.65315747000056, + "y": 339.308675539278 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4328 + }, + "bounds": { + "#": 4334 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4337 + }, + "constraintImpulse": { + "#": 4338 + }, + "density": 0.001, + "force": { + "#": 4339 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4340 + }, + "positionImpulse": { + "#": 4341 + }, + "positionPrev": { + "#": 4342 + }, + "region": { + "#": 4343 + }, + "render": { + "#": 4344 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6437982603128148, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4346 + }, + "vertices": { + "#": 4347 + } + }, + [ + { + "#": 4329 + }, + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4335 + }, + "min": { + "#": 4336 + } + }, + { + "x": 498.1057918603053, + "y": 348.8198069600373 + }, + { + "x": 482.8897918603053, + "y": 332.8198069600373 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.4977918603052, + "y": 340.8198069600372 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.5439368136209, + "y": 340.4045564043816 + }, + { + "endCol": 10, + "endRow": 7, + "id": "10,10,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4345 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.04709491386307718, + "y": 0.8183940304526232 + }, + [ + { + "#": 4348 + }, + { + "#": 4349 + }, + { + "#": 4350 + }, + { + "#": 4351 + }, + { + "#": 4352 + }, + { + "#": 4353 + }, + { + "#": 4354 + }, + { + "#": 4355 + }, + { + "#": 4356 + }, + { + "#": 4357 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.1057918603053, + "y": 343.29180696003726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.1997918603053, + "y": 347.29180696003726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.4977918603053, + "y": 348.8198069600373 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.7957918603053, + "y": 347.29180696003726 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 482.8897918603053, + "y": 343.29180696003726 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 482.8897918603053, + "y": 338.3478069600373 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.7957918603053, + "y": 334.3478069600373 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.4977918603053, + "y": 332.8198069600373 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.1997918603053, + "y": 334.3478069600373 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.1057918603053, + "y": 338.3478069600373 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4359 + }, + "bounds": { + "#": 4365 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4368 + }, + "constraintImpulse": { + "#": 4369 + }, + "density": 0.001, + "force": { + "#": 4370 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 140, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4371 + }, + "positionImpulse": { + "#": 4372 + }, + "positionPrev": { + "#": 4373 + }, + "region": { + "#": 4374 + }, + "render": { + "#": 4375 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6419633041227636, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4377 + }, + "vertices": { + "#": 4378 + } + }, + [ + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4366 + }, + "min": { + "#": 4367 + } + }, + { + "x": 518.5817620157887, + "y": 348.809050745462 + }, + { + "x": 503.3657620157886, + "y": 332.809050745462 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.9737620157887, + "y": 340.80905074546195 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.92171990738166, + "y": 340.4022980250468 + }, + { + "endCol": 10, + "endRow": 7, + "id": "10,10,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4376 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05441693262645231, + "y": 0.8149508831921821 + }, + [ + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + }, + { + "#": 4387 + }, + { + "#": 4388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.5817620157887, + "y": 343.281050745462 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.6757620157888, + "y": 347.281050745462 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.9737620157886, + "y": 348.809050745462 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.2717620157886, + "y": 347.281050745462 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.3657620157886, + "y": 343.281050745462 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.3657620157886, + "y": 338.337050745462 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.2717620157886, + "y": 334.337050745462 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.9737620157886, + "y": 332.809050745462 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.6757620157888, + "y": 334.337050745462 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.5817620157887, + "y": 338.337050745462 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4390 + }, + "bounds": { + "#": 4396 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4399 + }, + "constraintImpulse": { + "#": 4400 + }, + "density": 0.001, + "force": { + "#": 4401 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 141, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4402 + }, + "positionImpulse": { + "#": 4403 + }, + "positionPrev": { + "#": 4404 + }, + "region": { + "#": 4405 + }, + "render": { + "#": 4406 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8991704234812834, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4408 + }, + "vertices": { + "#": 4409 + } + }, + [ + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4397 + }, + "min": { + "#": 4398 + } + }, + { + "x": 539.0573320816449, + "y": 349.71607644412126 + }, + { + "x": 523.841332081645, + "y": 333.71607644412126 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.449332081645, + "y": 341.7160764441214 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.3341620508445, + "y": 340.98239559617923 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4407 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11816334035142972, + "y": 1.0365041453217145 + }, + [ + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + }, + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + }, + { + "#": 4418 + }, + { + "#": 4419 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 539.0573320816449, + "y": 344.18807644412124 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 536.1513320816449, + "y": 348.18807644412124 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.4493320816449, + "y": 349.71607644412126 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.7473320816449, + "y": 348.18807644412124 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.841332081645, + "y": 344.18807644412124 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.841332081645, + "y": 339.2440764441213 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.7473320816449, + "y": 335.2440764441213 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.4493320816449, + "y": 333.71607644412126 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 536.1513320816449, + "y": 335.2440764441213 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 539.0573320816449, + "y": 339.2440764441213 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4421 + }, + "bounds": { + "#": 4427 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4430 + }, + "constraintImpulse": { + "#": 4431 + }, + "density": 0.001, + "force": { + "#": 4432 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4433 + }, + "positionImpulse": { + "#": 4434 + }, + "positionPrev": { + "#": 4435 + }, + "region": { + "#": 4436 + }, + "render": { + "#": 4437 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.068995583637318, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4439 + }, + "vertices": { + "#": 4440 + } + }, + [ + { + "#": 4422 + }, + { + "#": 4423 + }, + { + "#": 4424 + }, + { + "#": 4425 + }, + { + "#": 4426 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4428 + }, + "min": { + "#": 4429 + } + }, + { + "x": 558.4229757577825, + "y": 356.3580365996089 + }, + { + "x": 543.2069757577826, + "y": 340.3580365996089 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.8149757577825, + "y": 348.35803659960897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.9849441567274, + "y": 346.59373436994883 + }, + { + "endCol": 11, + "endRow": 7, + "id": "11,11,7,7", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4438 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.16842502284646343, + "y": 1.669216177978285 + }, + [ + { + "#": 4441 + }, + { + "#": 4442 + }, + { + "#": 4443 + }, + { + "#": 4444 + }, + { + "#": 4445 + }, + { + "#": 4446 + }, + { + "#": 4447 + }, + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.4229757577825, + "y": 350.8300365996089 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.5169757577826, + "y": 354.8300365996089 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.8149757577826, + "y": 356.3580365996089 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.1129757577826, + "y": 354.8300365996089 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 543.2069757577826, + "y": 350.8300365996089 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 543.2069757577826, + "y": 345.88603659960893 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 546.1129757577826, + "y": 341.88603659960893 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550.8149757577826, + "y": 340.3580365996089 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.5169757577826, + "y": 341.88603659960893 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.4229757577825, + "y": 345.88603659960893 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4452 + }, + "bounds": { + "#": 4458 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4461 + }, + "constraintImpulse": { + "#": 4462 + }, + "density": 0.001, + "force": { + "#": 4463 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 143, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4464 + }, + "positionImpulse": { + "#": 4465 + }, + "positionPrev": { + "#": 4466 + }, + "region": { + "#": 4467 + }, + "render": { + "#": 4468 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.342407959169203, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4470 + }, + "vertices": { + "#": 4471 + } + }, + [ + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + }, + { + "#": 4457 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4459 + }, + "min": { + "#": 4460 + } + }, + { + "x": 578.7925573088294, + "y": 357.41206297828734 + }, + { + "x": 563.5765573088295, + "y": 341.41206297828734 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.1845573088298, + "y": 349.4120629782873 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.3297733398535, + "y": 347.2733369993713 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,7,7", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4469 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.14184704881699872, + "y": 1.9139550963084844 + }, + [ + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + }, + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + }, + { + "#": 4480 + }, + { + "#": 4481 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 578.7925573088294, + "y": 351.8840629782873 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575.8865573088294, + "y": 355.8840629782873 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 571.1845573088294, + "y": 357.41206297828734 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.4825573088294, + "y": 355.8840629782873 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.5765573088295, + "y": 351.8840629782873 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.5765573088295, + "y": 346.94006297828736 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.4825573088294, + "y": 342.94006297828736 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 571.1845573088294, + "y": 341.41206297828734 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 575.8865573088294, + "y": 342.94006297828736 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 578.7925573088294, + "y": 346.94006297828736 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4483 + }, + "bounds": { + "#": 4489 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4492 + }, + "constraintImpulse": { + "#": 4493 + }, + "density": 0.001, + "force": { + "#": 4494 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 144, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4495 + }, + "positionImpulse": { + "#": 4496 + }, + "positionPrev": { + "#": 4497 + }, + "region": { + "#": 4498 + }, + "render": { + "#": 4499 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3556883460754574, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4501 + }, + "vertices": { + "#": 4502 + } + }, + [ + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + }, + { + "#": 4487 + }, + { + "#": 4488 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4490 + }, + "min": { + "#": 4491 + } + }, + { + "x": 599.0873160490164, + "y": 357.4625039233222 + }, + { + "x": 583.8713160490165, + "y": 341.4625039233222 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.4793160490161, + "y": 349.46250392332234 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.6041431252675, + "y": 347.29681065565944 + }, + { + "endCol": 12, + "endRow": 7, + "id": "12,12,7,7", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4500 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.121605960112106, + "y": 1.931067353662968 + }, + [ + { + "#": 4503 + }, + { + "#": 4504 + }, + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + }, + { + "#": 4511 + }, + { + "#": 4512 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.0873160490164, + "y": 351.93450392332215 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.1813160490165, + "y": 355.93450392332215 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.4793160490165, + "y": 357.4625039233222 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.7773160490165, + "y": 355.93450392332215 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 583.8713160490165, + "y": 351.93450392332215 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 583.8713160490165, + "y": 346.9905039233222 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.7773160490165, + "y": 342.9905039233222 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.4793160490165, + "y": 341.4625039233222 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 596.1813160490165, + "y": 342.9905039233222 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.0873160490164, + "y": 346.9905039233222 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4514 + }, + "bounds": { + "#": 4520 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4523 + }, + "constraintImpulse": { + "#": 4524 + }, + "density": 0.001, + "force": { + "#": 4525 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4526 + }, + "positionImpulse": { + "#": 4527 + }, + "positionPrev": { + "#": 4528 + }, + "region": { + "#": 4529 + }, + "render": { + "#": 4530 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0958105139380923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4532 + }, + "vertices": { + "#": 4533 + } + }, + [ + { + "#": 4515 + }, + { + "#": 4516 + }, + { + "#": 4517 + }, + { + "#": 4518 + }, + { + "#": 4519 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4521 + }, + "min": { + "#": 4522 + } + }, + { + "x": 215.57079384929273, + "y": 381.2369845236148 + }, + { + "x": 200.35479384929272, + "y": 365.2369845236148 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.9627938492928, + "y": 373.2369845236149 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.82138018166663, + "y": 370.24143040732224 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4531 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.14021611102867837, + "y": 2.6219920544078263 + }, + [ + { + "#": 4534 + }, + { + "#": 4535 + }, + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.57079384929273, + "y": 375.7089845236148 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.66479384929272, + "y": 379.7089845236148 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.96279384929272, + "y": 381.2369845236148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 203.26079384929272, + "y": 379.7089845236148 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.35479384929272, + "y": 375.7089845236148 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200.35479384929272, + "y": 370.7649845236148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 203.26079384929272, + "y": 366.7649845236148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.96279384929272, + "y": 365.2369845236148 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.66479384929272, + "y": 366.7649845236148 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.57079384929273, + "y": 370.7649845236148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4545 + }, + "bounds": { + "#": 4551 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4554 + }, + "constraintImpulse": { + "#": 4555 + }, + "density": 0.001, + "force": { + "#": 4556 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 146, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4557 + }, + "positionImpulse": { + "#": 4558 + }, + "positionPrev": { + "#": 4559 + }, + "region": { + "#": 4560 + }, + "render": { + "#": 4561 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0150447575307946, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4563 + }, + "vertices": { + "#": 4564 + } + }, + [ + { + "#": 4546 + }, + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + }, + { + "#": 4550 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4552 + }, + "min": { + "#": 4553 + } + }, + { + "x": 235.92161799340394, + "y": 381.67435695521897 + }, + { + "x": 220.70561799340393, + "y": 365.67435695521897 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.31361799340405, + "y": 373.67435695521914 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.11657618562, + "y": 370.92384952182323 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4562 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2005298416375183, + "y": 2.4712551656421624 + }, + [ + { + "#": 4565 + }, + { + "#": 4566 + }, + { + "#": 4567 + }, + { + "#": 4568 + }, + { + "#": 4569 + }, + { + "#": 4570 + }, + { + "#": 4571 + }, + { + "#": 4572 + }, + { + "#": 4573 + }, + { + "#": 4574 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.92161799340394, + "y": 376.14635695521895 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 233.01561799340394, + "y": 380.14635695521895 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 228.31361799340394, + "y": 381.67435695521897 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.61161799340394, + "y": 380.14635695521895 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.70561799340393, + "y": 376.14635695521895 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.70561799340393, + "y": 371.202356955219 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.61161799340394, + "y": 367.202356955219 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 228.31361799340394, + "y": 365.67435695521897 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 233.01561799340394, + "y": 367.202356955219 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.92161799340394, + "y": 371.202356955219 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4576 + }, + "bounds": { + "#": 4582 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4585 + }, + "constraintImpulse": { + "#": 4586 + }, + "density": 0.001, + "force": { + "#": 4587 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 147, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4588 + }, + "positionImpulse": { + "#": 4589 + }, + "positionPrev": { + "#": 4590 + }, + "region": { + "#": 4591 + }, + "render": { + "#": 4592 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.5054837479197114, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4594 + }, + "vertices": { + "#": 4595 + } + }, + [ + { + "#": 4577 + }, + { + "#": 4578 + }, + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4583 + }, + "min": { + "#": 4584 + } + }, + { + "x": 256.0362014984548, + "y": 377.51554722059996 + }, + { + "x": 240.82020149845476, + "y": 361.51554722059996 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.4282014984547, + "y": 369.51554722059996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.24982346483495, + "y": 367.3848454018351 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4593 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.17911771873710336, + "y": 2.118066764103162 + }, + [ + { + "#": 4596 + }, + { + "#": 4597 + }, + { + "#": 4598 + }, + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 256.0362014984548, + "y": 371.98754722059994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 253.13020149845477, + "y": 375.98754722059994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.42820149845477, + "y": 377.51554722059996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 243.72620149845477, + "y": 375.98754722059994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 240.82020149845476, + "y": 371.98754722059994 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 240.82020149845476, + "y": 367.0435472206 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.72620149845477, + "y": 363.0435472206 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.42820149845477, + "y": 361.51554722059996 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 253.13020149845477, + "y": 363.0435472206 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 256.0362014984548, + "y": 367.0435472206 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4607 + }, + "bounds": { + "#": 4613 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4616 + }, + "constraintImpulse": { + "#": 4617 + }, + "density": 0.001, + "force": { + "#": 4618 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4619 + }, + "positionImpulse": { + "#": 4620 + }, + "positionPrev": { + "#": 4621 + }, + "region": { + "#": 4622 + }, + "render": { + "#": 4623 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6949989639801557, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4625 + }, + "vertices": { + "#": 4626 + } + }, + [ + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4614 + }, + "min": { + "#": 4615 + } + }, + { + "x": 276.3140050734476, + "y": 373.99986372608885 + }, + { + "x": 261.0980050734476, + "y": 357.99986372608885 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.7060050734476, + "y": 365.99986372608873 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.594823646743, + "y": 364.49756427416565 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4624 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0922833037724331, + "y": 1.686929144319322 + }, + [ + { + "#": 4627 + }, + { + "#": 4628 + }, + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + }, + { + "#": 4636 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 276.3140050734476, + "y": 368.4718637260888 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 273.4080050734476, + "y": 372.4718637260888 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.7060050734476, + "y": 373.99986372608885 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 264.0040050734476, + "y": 372.4718637260888 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.0980050734476, + "y": 368.4718637260888 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.0980050734476, + "y": 363.52786372608887 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 264.0040050734476, + "y": 359.52786372608887 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 268.7060050734476, + "y": 357.99986372608885 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 273.4080050734476, + "y": 359.52786372608887 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 276.3140050734476, + "y": 363.52786372608887 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4638 + }, + "bounds": { + "#": 4644 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4647 + }, + "constraintImpulse": { + "#": 4648 + }, + "density": 0.001, + "force": { + "#": 4649 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 149, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4650 + }, + "positionImpulse": { + "#": 4651 + }, + "positionPrev": { + "#": 4652 + }, + "region": { + "#": 4653 + }, + "render": { + "#": 4654 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6512297686260877, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4656 + }, + "vertices": { + "#": 4657 + } + }, + [ + { + "#": 4639 + }, + { + "#": 4640 + }, + { + "#": 4641 + }, + { + "#": 4642 + }, + { + "#": 4643 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4645 + }, + "min": { + "#": 4646 + } + }, + { + "x": 296.66883697612406, + "y": 371.99736859853306 + }, + { + "x": 281.45283697612405, + "y": 355.99736859853306 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 289.0608369761241, + "y": 363.99736859853294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.9860525898899, + "y": 362.6078685086359 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4655 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.049576432987009866, + "y": 1.6187686230369422 + }, + [ + { + "#": 4658 + }, + { + "#": 4659 + }, + { + "#": 4660 + }, + { + "#": 4661 + }, + { + "#": 4662 + }, + { + "#": 4663 + }, + { + "#": 4664 + }, + { + "#": 4665 + }, + { + "#": 4666 + }, + { + "#": 4667 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.66883697612406, + "y": 366.46936859853304 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.76283697612405, + "y": 370.46936859853304 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 289.06083697612405, + "y": 371.99736859853306 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 284.35883697612405, + "y": 370.46936859853304 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 281.45283697612405, + "y": 366.46936859853304 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 281.45283697612405, + "y": 361.5253685985331 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 284.35883697612405, + "y": 357.5253685985331 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 289.06083697612405, + "y": 355.99736859853306 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 293.76283697612405, + "y": 357.5253685985331 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 296.66883697612406, + "y": 361.5253685985331 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4669 + }, + "bounds": { + "#": 4675 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4678 + }, + "constraintImpulse": { + "#": 4679 + }, + "density": 0.001, + "force": { + "#": 4680 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 150, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4681 + }, + "positionImpulse": { + "#": 4682 + }, + "positionPrev": { + "#": 4683 + }, + "region": { + "#": 4684 + }, + "render": { + "#": 4685 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.0439156055166032, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4687 + }, + "vertices": { + "#": 4688 + } + }, + [ + { + "#": 4670 + }, + { + "#": 4671 + }, + { + "#": 4672 + }, + { + "#": 4673 + }, + { + "#": 4674 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4676 + }, + "min": { + "#": 4677 + } + }, + { + "x": 316.8318852553249, + "y": 370.46246169537034 + }, + { + "x": 301.6158852553249, + "y": 354.46246169537034 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 309.2238852553249, + "y": 362.4624616953706 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 309.1492858189696, + "y": 360.3068218131552 + }, + { + "endCol": 6, + "endRow": 7, + "id": "6,6,7,7", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4686 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.08042836782260565, + "y": 2.080137448373023 + }, + [ + { + "#": 4689 + }, + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + }, + { + "#": 4697 + }, + { + "#": 4698 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 316.8318852553249, + "y": 364.9344616953703 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 313.9258852553249, + "y": 368.9344616953703 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 309.2238852553249, + "y": 370.46246169537034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.5218852553249, + "y": 368.9344616953703 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 301.6158852553249, + "y": 364.9344616953703 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 301.6158852553249, + "y": 359.99046169537036 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 304.5218852553249, + "y": 355.99046169537036 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 309.2238852553249, + "y": 354.46246169537034 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.9258852553249, + "y": 355.99046169537036 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 316.8318852553249, + "y": 359.99046169537036 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4700 + }, + "bounds": { + "#": 4706 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4709 + }, + "constraintImpulse": { + "#": 4710 + }, + "density": 0.001, + "force": { + "#": 4711 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4712 + }, + "positionImpulse": { + "#": 4713 + }, + "positionPrev": { + "#": 4714 + }, + "region": { + "#": 4715 + }, + "render": { + "#": 4716 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3099397709316416, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4718 + }, + "vertices": { + "#": 4719 + } + }, + [ + { + "#": 4701 + }, + { + "#": 4702 + }, + { + "#": 4703 + }, + { + "#": 4704 + }, + { + "#": 4705 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4707 + }, + "min": { + "#": 4708 + } + }, + { + "x": 336.40159020252446, + "y": 375.6193463754165 + }, + { + "x": 321.18559020252445, + "y": 359.6193463754165 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.7935902025247, + "y": 367.6193463754162 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.7877429791017, + "y": 365.40767553922535 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,7,7", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4717 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.011665422965450034, + "y": 2.1118145750660915 + }, + [ + { + "#": 4720 + }, + { + "#": 4721 + }, + { + "#": 4722 + }, + { + "#": 4723 + }, + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + }, + { + "#": 4728 + }, + { + "#": 4729 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.40159020252446, + "y": 370.0913463754165 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.49559020252445, + "y": 374.0913463754165 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.79359020252446, + "y": 375.6193463754165 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 324.09159020252446, + "y": 374.0913463754165 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.18559020252445, + "y": 370.0913463754165 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 321.18559020252445, + "y": 365.14734637541653 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.09159020252446, + "y": 361.14734637541653 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 328.79359020252446, + "y": 359.6193463754165 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 333.49559020252445, + "y": 361.14734637541653 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.40159020252446, + "y": 365.14734637541653 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4731 + }, + "bounds": { + "#": 4737 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4740 + }, + "constraintImpulse": { + "#": 4741 + }, + "density": 0.001, + "force": { + "#": 4742 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 152, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4743 + }, + "positionImpulse": { + "#": 4744 + }, + "positionPrev": { + "#": 4745 + }, + "region": { + "#": 4746 + }, + "render": { + "#": 4747 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6983102753634602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4749 + }, + "vertices": { + "#": 4750 + } + }, + [ + { + "#": 4732 + }, + { + "#": 4733 + }, + { + "#": 4734 + }, + { + "#": 4735 + }, + { + "#": 4736 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4738 + }, + "min": { + "#": 4739 + } + }, + { + "x": 356.6547254156498, + "y": 377.1115531170675 + }, + { + "x": 341.4387254156498, + "y": 361.1115531170675 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.04672541565, + "y": 369.1115531170677 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 349.10426348056825, + "y": 366.49782675625113 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4748 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.048149543540034756, + "y": 2.38997761466419 + }, + [ + { + "#": 4751 + }, + { + "#": 4752 + }, + { + "#": 4753 + }, + { + "#": 4754 + }, + { + "#": 4755 + }, + { + "#": 4756 + }, + { + "#": 4757 + }, + { + "#": 4758 + }, + { + "#": 4759 + }, + { + "#": 4760 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.6547254156498, + "y": 371.5835531170675 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.7487254156498, + "y": 375.5835531170675 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 349.0467254156498, + "y": 377.1115531170675 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.3447254156498, + "y": 375.5835531170675 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 341.4387254156498, + "y": 371.5835531170675 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.4387254156498, + "y": 366.6395531170675 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.3447254156498, + "y": 362.6395531170675 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 349.0467254156498, + "y": 361.1115531170675 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 353.7487254156498, + "y": 362.6395531170675 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.6547254156498, + "y": 366.6395531170675 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4762 + }, + "bounds": { + "#": 4768 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4771 + }, + "constraintImpulse": { + "#": 4772 + }, + "density": 0.001, + "force": { + "#": 4773 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 153, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4774 + }, + "positionImpulse": { + "#": 4775 + }, + "positionPrev": { + "#": 4776 + }, + "region": { + "#": 4777 + }, + "render": { + "#": 4778 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.862155214308473, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4780 + }, + "vertices": { + "#": 4781 + } + }, + [ + { + "#": 4763 + }, + { + "#": 4764 + }, + { + "#": 4765 + }, + { + "#": 4766 + }, + { + "#": 4767 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4769 + }, + "min": { + "#": 4770 + } + }, + { + "x": 376.60601422645357, + "y": 381.05376584874966 + }, + { + "x": 361.39001422645356, + "y": 365.05376584874966 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.9980142264534, + "y": 373.05376584874944 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.04299653843435, + "y": 370.4440073879472 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4779 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03896022290990686, + "y": 2.380843472562333 + }, + [ + { + "#": 4782 + }, + { + "#": 4783 + }, + { + "#": 4784 + }, + { + "#": 4785 + }, + { + "#": 4786 + }, + { + "#": 4787 + }, + { + "#": 4788 + }, + { + "#": 4789 + }, + { + "#": 4790 + }, + { + "#": 4791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.60601422645357, + "y": 375.52576584874964 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.70001422645356, + "y": 379.52576584874964 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 368.99801422645356, + "y": 381.05376584874966 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 364.29601422645356, + "y": 379.52576584874964 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 361.39001422645356, + "y": 375.52576584874964 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.39001422645356, + "y": 370.5817658487497 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 364.29601422645356, + "y": 366.5817658487497 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 368.99801422645356, + "y": 365.05376584874966 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 373.70001422645356, + "y": 366.5817658487497 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.60601422645357, + "y": 370.5817658487497 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4793 + }, + "bounds": { + "#": 4799 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4802 + }, + "constraintImpulse": { + "#": 4803 + }, + "density": 0.001, + "force": { + "#": 4804 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4805 + }, + "positionImpulse": { + "#": 4806 + }, + "positionPrev": { + "#": 4807 + }, + "region": { + "#": 4808 + }, + "render": { + "#": 4809 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.800571666517877, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4811 + }, + "vertices": { + "#": 4812 + } + }, + [ + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + }, + { + "#": 4797 + }, + { + "#": 4798 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4800 + }, + "min": { + "#": 4801 + } + }, + { + "x": 397.0078493343044, + "y": 380.228060811228 + }, + { + "x": 381.7918493343044, + "y": 364.228060811228 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.3998493343042, + "y": 372.2280608112279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.40111668577026, + "y": 369.5302164402423 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4810 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0020774324041781256, + "y": 2.4277880165186048 + }, + [ + { + "#": 4813 + }, + { + "#": 4814 + }, + { + "#": 4815 + }, + { + "#": 4816 + }, + { + "#": 4817 + }, + { + "#": 4818 + }, + { + "#": 4819 + }, + { + "#": 4820 + }, + { + "#": 4821 + }, + { + "#": 4822 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.0078493343044, + "y": 374.70006081122796 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.1018493343044, + "y": 378.70006081122796 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.3998493343044, + "y": 380.228060811228 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.6978493343044, + "y": 378.70006081122796 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.7918493343044, + "y": 374.70006081122796 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.7918493343044, + "y": 369.756060811228 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6978493343044, + "y": 365.756060811228 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.3998493343044, + "y": 364.228060811228 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 394.1018493343044, + "y": 365.756060811228 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 397.0078493343044, + "y": 369.756060811228 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4824 + }, + "bounds": { + "#": 4830 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4833 + }, + "constraintImpulse": { + "#": 4834 + }, + "density": 0.001, + "force": { + "#": 4835 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 155, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4836 + }, + "positionImpulse": { + "#": 4837 + }, + "positionPrev": { + "#": 4838 + }, + "region": { + "#": 4839 + }, + "render": { + "#": 4840 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6946134305593654, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4842 + }, + "vertices": { + "#": 4843 + } + }, + [ + { + "#": 4825 + }, + { + "#": 4826 + }, + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4831 + }, + "min": { + "#": 4832 + } + }, + { + "x": 417.4977606913654, + "y": 379.82119621836 + }, + { + "x": 402.2817606913654, + "y": 363.82119621836 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.8897606913656, + "y": 371.82119621836 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.82081703574175, + "y": 369.21877329199924 + }, + { + "endCol": 8, + "endRow": 7, + "id": "8,8,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4841 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.06937315324552173, + "y": 2.360750219532804 + }, + [ + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + }, + { + "#": 4847 + }, + { + "#": 4848 + }, + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + }, + { + "#": 4852 + }, + { + "#": 4853 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.4977606913654, + "y": 374.29319621836 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.5917606913654, + "y": 378.29319621836 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.8897606913654, + "y": 379.82119621836 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.1877606913654, + "y": 378.29319621836 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.2817606913654, + "y": 374.29319621836 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.2817606913654, + "y": 369.34919621836 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.1877606913654, + "y": 365.34919621836 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.8897606913654, + "y": 363.82119621836 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.5917606913654, + "y": 365.34919621836 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.4977606913654, + "y": 369.34919621836 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4855 + }, + "bounds": { + "#": 4861 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4864 + }, + "constraintImpulse": { + "#": 4865 + }, + "density": 0.001, + "force": { + "#": 4866 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 156, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4867 + }, + "positionImpulse": { + "#": 4868 + }, + "positionPrev": { + "#": 4869 + }, + "region": { + "#": 4870 + }, + "render": { + "#": 4871 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.5882939753379897, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4873 + }, + "vertices": { + "#": 4874 + } + }, + [ + { + "#": 4856 + }, + { + "#": 4857 + }, + { + "#": 4858 + }, + { + "#": 4859 + }, + { + "#": 4860 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4862 + }, + "min": { + "#": 4863 + } + }, + { + "x": 438.04382497328385, + "y": 379.43773013684796 + }, + { + "x": 422.82782497328384, + "y": 363.43773013684796 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.43582497328384, + "y": 371.4377301368477 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.293234768854, + "y": 368.9800549516444 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4872 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.14146913181366472, + "y": 2.267015071677463 + }, + [ + { + "#": 4875 + }, + { + "#": 4876 + }, + { + "#": 4877 + }, + { + "#": 4878 + }, + { + "#": 4879 + }, + { + "#": 4880 + }, + { + "#": 4881 + }, + { + "#": 4882 + }, + { + "#": 4883 + }, + { + "#": 4884 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 438.04382497328385, + "y": 373.90973013684794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.13782497328384, + "y": 377.90973013684794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430.43582497328384, + "y": 379.43773013684796 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.73382497328384, + "y": 377.90973013684794 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.82782497328384, + "y": 373.90973013684794 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.82782497328384, + "y": 368.965730136848 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.73382497328384, + "y": 364.965730136848 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.43582497328384, + "y": 363.43773013684796 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 435.13782497328384, + "y": 364.965730136848 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 438.04382497328385, + "y": 368.965730136848 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4886 + }, + "bounds": { + "#": 4892 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4895 + }, + "constraintImpulse": { + "#": 4896 + }, + "density": 0.001, + "force": { + "#": 4897 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4898 + }, + "positionImpulse": { + "#": 4899 + }, + "positionPrev": { + "#": 4900 + }, + "region": { + "#": 4901 + }, + "render": { + "#": 4902 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1710685842328483, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4904 + }, + "vertices": { + "#": 4905 + } + }, + [ + { + "#": 4887 + }, + { + "#": 4888 + }, + { + "#": 4889 + }, + { + "#": 4890 + }, + { + "#": 4891 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4893 + }, + "min": { + "#": 4894 + } + }, + { + "x": 458.554480665184, + "y": 377.69525661134776 + }, + { + "x": 443.33848066518397, + "y": 361.69525661134776 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.946480665184, + "y": 369.69525661134753 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 450.78148779921685, + "y": 367.81420126598806 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4903 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1650429497272512, + "y": 1.8885600503289197 + }, + [ + { + "#": 4906 + }, + { + "#": 4907 + }, + { + "#": 4908 + }, + { + "#": 4909 + }, + { + "#": 4910 + }, + { + "#": 4911 + }, + { + "#": 4912 + }, + { + "#": 4913 + }, + { + "#": 4914 + }, + { + "#": 4915 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 458.554480665184, + "y": 372.16725661134774 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 455.64848066518397, + "y": 376.16725661134774 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.94648066518397, + "y": 377.69525661134776 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 446.24448066518397, + "y": 376.16725661134774 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 443.33848066518397, + "y": 372.16725661134774 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 443.33848066518397, + "y": 367.2232566113478 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 446.24448066518397, + "y": 363.2232566113478 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.94648066518397, + "y": 361.69525661134776 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.64848066518397, + "y": 363.2232566113478 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.554480665184, + "y": 367.2232566113478 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4917 + }, + "bounds": { + "#": 4923 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4926 + }, + "constraintImpulse": { + "#": 4927 + }, + "density": 0.001, + "force": { + "#": 4928 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 158, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4929 + }, + "positionImpulse": { + "#": 4930 + }, + "positionPrev": { + "#": 4931 + }, + "region": { + "#": 4932 + }, + "render": { + "#": 4933 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1714250524203402, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4935 + }, + "vertices": { + "#": 4936 + } + }, + [ + { + "#": 4918 + }, + { + "#": 4919 + }, + { + "#": 4920 + }, + { + "#": 4921 + }, + { + "#": 4922 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4924 + }, + "min": { + "#": 4925 + } + }, + { + "x": 477.4843616686896, + "y": 369.5943450817508 + }, + { + "x": 462.2683616686896, + "y": 353.5943450817508 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 469.8763616686894, + "y": 361.59434508175093 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 469.96590303890923, + "y": 360.5025538228372 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4934 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.09705330591157235, + "y": 1.4410276824024209 + }, + [ + { + "#": 4937 + }, + { + "#": 4938 + }, + { + "#": 4939 + }, + { + "#": 4940 + }, + { + "#": 4941 + }, + { + "#": 4942 + }, + { + "#": 4943 + }, + { + "#": 4944 + }, + { + "#": 4945 + }, + { + "#": 4946 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 477.4843616686896, + "y": 364.0663450817508 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.5783616686896, + "y": 368.0663450817508 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 469.8763616686896, + "y": 369.5943450817508 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 465.1743616686896, + "y": 368.0663450817508 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 462.2683616686896, + "y": 364.0663450817508 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.2683616686896, + "y": 359.12234508175084 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.1743616686896, + "y": 355.12234508175084 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 469.8763616686896, + "y": 353.5943450817508 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.5783616686896, + "y": 355.12234508175084 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 477.4843616686896, + "y": 359.12234508175084 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4948 + }, + "bounds": { + "#": 4954 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4957 + }, + "constraintImpulse": { + "#": 4958 + }, + "density": 0.001, + "force": { + "#": 4959 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 159, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4960 + }, + "positionImpulse": { + "#": 4961 + }, + "positionPrev": { + "#": 4962 + }, + "region": { + "#": 4963 + }, + "render": { + "#": 4964 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7896799339578858, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4966 + }, + "vertices": { + "#": 4967 + } + }, + [ + { + "#": 4949 + }, + { + "#": 4950 + }, + { + "#": 4951 + }, + { + "#": 4952 + }, + { + "#": 4953 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4955 + }, + "min": { + "#": 4956 + } + }, + { + "x": 498.0680527296251, + "y": 368.119376578049 + }, + { + "x": 482.8520527296251, + "y": 352.119376578049 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.46005272962515, + "y": 360.11937657804884 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.4804341546864, + "y": 359.48854652992026 + }, + { + "endCol": 10, + "endRow": 7, + "id": "10,10,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4965 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.02927632444294659, + "y": 1.1217717042755453 + }, + [ + { + "#": 4968 + }, + { + "#": 4969 + }, + { + "#": 4970 + }, + { + "#": 4971 + }, + { + "#": 4972 + }, + { + "#": 4973 + }, + { + "#": 4974 + }, + { + "#": 4975 + }, + { + "#": 4976 + }, + { + "#": 4977 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 498.0680527296251, + "y": 362.591376578049 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 495.1620527296251, + "y": 366.591376578049 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.4600527296251, + "y": 368.119376578049 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.7580527296251, + "y": 366.591376578049 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 482.8520527296251, + "y": 362.591376578049 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 482.8520527296251, + "y": 357.64737657804903 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.7580527296251, + "y": 353.64737657804903 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.4600527296251, + "y": 352.119376578049 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 495.1620527296251, + "y": 353.64737657804903 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 498.0680527296251, + "y": 357.64737657804903 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 4979 + }, + "bounds": { + "#": 4985 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 4988 + }, + "constraintImpulse": { + "#": 4989 + }, + "density": 0.001, + "force": { + "#": 4990 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 160, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 4991 + }, + "positionImpulse": { + "#": 4992 + }, + "positionPrev": { + "#": 4993 + }, + "region": { + "#": 4994 + }, + "render": { + "#": 4995 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7824020484901274, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4997 + }, + "vertices": { + "#": 4998 + } + }, + [ + { + "#": 4980 + }, + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 4986 + }, + "min": { + "#": 4987 + } + }, + { + "x": 518.7012499321993, + "y": 368.07706419416 + }, + { + "x": 503.4852499321991, + "y": 352.07706419416 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 511.093249932199, + "y": 360.0770641941599 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 511.02126313118254, + "y": 359.4769051436608 + }, + { + "endCol": 10, + "endRow": 7, + "id": "10,10,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4996 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.06754660471875695, + "y": 1.107195728446527 + }, + [ + { + "#": 4999 + }, + { + "#": 5000 + }, + { + "#": 5001 + }, + { + "#": 5002 + }, + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + }, + { + "#": 5007 + }, + { + "#": 5008 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.7012499321993, + "y": 362.54906419416 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.7952499321993, + "y": 366.54906419416 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 511.0932499321991, + "y": 368.07706419416 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.3912499321991, + "y": 366.54906419416 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.4852499321991, + "y": 362.54906419416 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.4852499321991, + "y": 357.60506419416004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.3912499321991, + "y": 353.60506419416004 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 511.0932499321991, + "y": 352.07706419416 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.7952499321993, + "y": 353.60506419416004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.7012499321993, + "y": 357.60506419416004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5010 + }, + "bounds": { + "#": 5016 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5019 + }, + "constraintImpulse": { + "#": 5020 + }, + "density": 0.001, + "force": { + "#": 5021 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 161, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5022 + }, + "positionImpulse": { + "#": 5023 + }, + "positionPrev": { + "#": 5024 + }, + "region": { + "#": 5025 + }, + "render": { + "#": 5026 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1196827746865188, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5028 + }, + "vertices": { + "#": 5029 + } + }, + [ + { + "#": 5011 + }, + { + "#": 5012 + }, + { + "#": 5013 + }, + { + "#": 5014 + }, + { + "#": 5015 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5017 + }, + "min": { + "#": 5018 + } + }, + { + "x": 539.2561597637359, + "y": 369.3986843383829 + }, + { + "x": 524.040159763736, + "y": 353.3986843383829 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.6481597637362, + "y": 361.39868433838285 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.5462224883951, + "y": 360.42741318026043 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5027 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.10169767682566544, + "y": 1.3791675257209022 + }, + [ + { + "#": 5030 + }, + { + "#": 5031 + }, + { + "#": 5032 + }, + { + "#": 5033 + }, + { + "#": 5034 + }, + { + "#": 5035 + }, + { + "#": 5036 + }, + { + "#": 5037 + }, + { + "#": 5038 + }, + { + "#": 5039 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 539.2561597637359, + "y": 363.8706843383829 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 536.350159763736, + "y": 367.8706843383829 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.648159763736, + "y": 369.3986843383829 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.946159763736, + "y": 367.8706843383829 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 524.040159763736, + "y": 363.8706843383829 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 524.040159763736, + "y": 358.9266843383829 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.946159763736, + "y": 354.9266843383829 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.648159763736, + "y": 353.3986843383829 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 536.350159763736, + "y": 354.9266843383829 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 539.2561597637359, + "y": 358.9266843383829 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5041 + }, + "bounds": { + "#": 5047 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5050 + }, + "constraintImpulse": { + "#": 5051 + }, + "density": 0.001, + "force": { + "#": 5052 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 162, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5053 + }, + "positionImpulse": { + "#": 5054 + }, + "positionPrev": { + "#": 5055 + }, + "region": { + "#": 5056 + }, + "render": { + "#": 5057 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1521423569105473, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5059 + }, + "vertices": { + "#": 5060 + } + }, + [ + { + "#": 5042 + }, + { + "#": 5043 + }, + { + "#": 5044 + }, + { + "#": 5045 + }, + { + "#": 5046 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5048 + }, + "min": { + "#": 5049 + } + }, + { + "x": 558.0780143332044, + "y": 377.62303499570436 + }, + { + "x": 542.8620143332045, + "y": 361.62303499570436 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.4700143332046, + "y": 369.62303499570453 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.697701016071, + "y": 367.7682858114196 + }, + { + "endCol": 11, + "endRow": 7, + "id": "11,11,7,7", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5058 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.2281690905437017, + "y": 1.8722431901349523 + }, + [ + { + "#": 5061 + }, + { + "#": 5062 + }, + { + "#": 5063 + }, + { + "#": 5064 + }, + { + "#": 5065 + }, + { + "#": 5066 + }, + { + "#": 5067 + }, + { + "#": 5068 + }, + { + "#": 5069 + }, + { + "#": 5070 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.0780143332044, + "y": 372.09503499570434 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.1720143332044, + "y": 376.09503499570434 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.4700143332044, + "y": 377.62303499570436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.7680143332044, + "y": 376.09503499570434 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 542.8620143332045, + "y": 372.09503499570434 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 542.8620143332045, + "y": 367.1510349957044 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 545.7680143332044, + "y": 363.1510349957044 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550.4700143332044, + "y": 361.62303499570436 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 555.1720143332044, + "y": 363.1510349957044 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.0780143332044, + "y": 367.1510349957044 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5072 + }, + "bounds": { + "#": 5078 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5081 + }, + "constraintImpulse": { + "#": 5082 + }, + "density": 0.001, + "force": { + "#": 5083 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 163, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5084 + }, + "positionImpulse": { + "#": 5085 + }, + "positionPrev": { + "#": 5086 + }, + "region": { + "#": 5087 + }, + "render": { + "#": 5088 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.52924151262341, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5090 + }, + "vertices": { + "#": 5091 + } + }, + [ + { + "#": 5073 + }, + { + "#": 5074 + }, + { + "#": 5075 + }, + { + "#": 5076 + }, + { + "#": 5077 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5079 + }, + "min": { + "#": 5080 + } + }, + { + "x": 578.463933868687, + "y": 379.22945765534536 + }, + { + "x": 563.2479338686871, + "y": 363.22945765534536 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 570.8559338686866, + "y": 371.22945765534547 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.0957634776147, + "y": 368.8747164659061 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,7,7", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5089 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.23603662327889197, + "y": 2.209300673325913 + }, + [ + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + }, + { + "#": 5095 + }, + { + "#": 5096 + }, + { + "#": 5097 + }, + { + "#": 5098 + }, + { + "#": 5099 + }, + { + "#": 5100 + }, + { + "#": 5101 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 578.463933868687, + "y": 373.70145765534534 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575.5579338686871, + "y": 377.70145765534534 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570.8559338686871, + "y": 379.22945765534536 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.1539338686871, + "y": 377.70145765534534 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.2479338686871, + "y": 373.70145765534534 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 563.2479338686871, + "y": 368.7574576553454 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 566.1539338686871, + "y": 364.7574576553454 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 570.8559338686871, + "y": 363.22945765534536 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 575.5579338686871, + "y": 364.7574576553454 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 578.463933868687, + "y": 368.7574576553454 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5103 + }, + "bounds": { + "#": 5109 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5112 + }, + "constraintImpulse": { + "#": 5113 + }, + "density": 0.001, + "force": { + "#": 5114 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 164, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5115 + }, + "positionImpulse": { + "#": 5116 + }, + "positionPrev": { + "#": 5117 + }, + "region": { + "#": 5118 + }, + "render": { + "#": 5119 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.5542408175714066, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5121 + }, + "vertices": { + "#": 5122 + } + }, + [ + { + "#": 5104 + }, + { + "#": 5105 + }, + { + "#": 5106 + }, + { + "#": 5107 + }, + { + "#": 5108 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5110 + }, + "min": { + "#": 5111 + } + }, + { + "x": 598.7854184455546, + "y": 379.3241538713152 + }, + { + "x": 583.5694184455547, + "y": 363.3241538713152 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.1774184455547, + "y": 371.32415387131505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.4067406116172, + "y": 368.92463181446385 + }, + { + "endCol": 12, + "endRow": 7, + "id": "12,12,7,7", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5120 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.22536410362022252, + "y": 2.239771110890729 + }, + [ + { + "#": 5123 + }, + { + "#": 5124 + }, + { + "#": 5125 + }, + { + "#": 5126 + }, + { + "#": 5127 + }, + { + "#": 5128 + }, + { + "#": 5129 + }, + { + "#": 5130 + }, + { + "#": 5131 + }, + { + "#": 5132 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 598.7854184455546, + "y": 373.7961538713152 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 595.8794184455546, + "y": 377.7961538713152 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 591.1774184455546, + "y": 379.3241538713152 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.4754184455546, + "y": 377.7961538713152 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 583.5694184455547, + "y": 373.7961538713152 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 583.5694184455547, + "y": 368.85215387131524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 586.4754184455546, + "y": 364.85215387131524 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 591.1774184455546, + "y": 363.3241538713152 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 595.8794184455546, + "y": 364.85215387131524 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 598.7854184455546, + "y": 368.85215387131524 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5134 + }, + "bounds": { + "#": 5140 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5143 + }, + "constraintImpulse": { + "#": 5144 + }, + "density": 0.001, + "force": { + "#": 5145 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 165, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5146 + }, + "positionImpulse": { + "#": 5147 + }, + "positionPrev": { + "#": 5148 + }, + "region": { + "#": 5149 + }, + "render": { + "#": 5150 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.315899506877822, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5152 + }, + "vertices": { + "#": 5153 + } + }, + [ + { + "#": 5135 + }, + { + "#": 5136 + }, + { + "#": 5137 + }, + { + "#": 5138 + }, + { + "#": 5139 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5141 + }, + "min": { + "#": 5142 + } + }, + { + "x": 215.682449263187, + "y": 403.6519525848031 + }, + { + "x": 200.466449263187, + "y": 387.6519525848031 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 208.07444926318686, + "y": 395.65195258480287 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.9815607158302, + "y": 392.50280155515793 + }, + { + "endCol": 4, + "endRow": 8, + "id": "4,4,8,8", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5151 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.052146770472177195, + "y": 2.8547612463907512 + }, + [ + { + "#": 5154 + }, + { + "#": 5155 + }, + { + "#": 5156 + }, + { + "#": 5157 + }, + { + "#": 5158 + }, + { + "#": 5159 + }, + { + "#": 5160 + }, + { + "#": 5161 + }, + { + "#": 5162 + }, + { + "#": 5163 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.682449263187, + "y": 398.1239525848031 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.776449263187, + "y": 402.1239525848031 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 208.074449263187, + "y": 403.6519525848031 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 203.372449263187, + "y": 402.1239525848031 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200.466449263187, + "y": 398.1239525848031 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 200.466449263187, + "y": 393.1799525848031 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 203.372449263187, + "y": 389.1799525848031 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.074449263187, + "y": 387.6519525848031 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 212.776449263187, + "y": 389.1799525848031 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 215.682449263187, + "y": 393.1799525848031 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5165 + }, + "bounds": { + "#": 5171 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5174 + }, + "constraintImpulse": { + "#": 5175 + }, + "density": 0.001, + "force": { + "#": 5176 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 166, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5177 + }, + "positionImpulse": { + "#": 5178 + }, + "positionPrev": { + "#": 5179 + }, + "region": { + "#": 5180 + }, + "render": { + "#": 5181 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0036464499423365, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5183 + }, + "vertices": { + "#": 5184 + } + }, + [ + { + "#": 5166 + }, + { + "#": 5167 + }, + { + "#": 5168 + }, + { + "#": 5169 + }, + { + "#": 5170 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5172 + }, + "min": { + "#": 5173 + } + }, + { + "x": 235.66980399644166, + "y": 403.65175877391533 + }, + { + "x": 220.45380399644165, + "y": 387.65175877391533 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.06180399644165, + "y": 395.65175877391533 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.0690954480553, + "y": 392.8914873132608 + }, + { + "endCol": 4, + "endRow": 8, + "id": "4,4,8,8", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5182 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.028224108868442954, + "y": 2.6189884733057056 + }, + [ + { + "#": 5185 + }, + { + "#": 5186 + }, + { + "#": 5187 + }, + { + "#": 5188 + }, + { + "#": 5189 + }, + { + "#": 5190 + }, + { + "#": 5191 + }, + { + "#": 5192 + }, + { + "#": 5193 + }, + { + "#": 5194 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.66980399644166, + "y": 398.1237587739153 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.76380399644165, + "y": 402.1237587739153 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 228.06180399644165, + "y": 403.65175877391533 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.35980399644166, + "y": 402.1237587739153 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.45380399644165, + "y": 398.1237587739153 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.45380399644165, + "y": 393.17975877391535 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.35980399644166, + "y": 389.17975877391535 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 228.06180399644165, + "y": 387.65175877391533 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.76380399644165, + "y": 389.17975877391535 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.66980399644166, + "y": 393.17975877391535 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5196 + }, + "bounds": { + "#": 5202 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5205 + }, + "constraintImpulse": { + "#": 5206 + }, + "density": 0.001, + "force": { + "#": 5207 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 167, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5208 + }, + "positionImpulse": { + "#": 5209 + }, + "positionPrev": { + "#": 5210 + }, + "region": { + "#": 5211 + }, + "render": { + "#": 5212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3493386930345546, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5214 + }, + "vertices": { + "#": 5215 + } + }, + [ + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + }, + { + "#": 5200 + }, + { + "#": 5201 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5203 + }, + "min": { + "#": 5204 + } + }, + { + "x": 254.77783754141217, + "y": 398.3242757236989 + }, + { + "x": 239.56183754141216, + "y": 382.3242757236989 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.16983754141214, + "y": 390.3242757236989 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5238578371515, + "y": 388.4293558096939 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5213 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3251623419139946, + "y": 2.0882032037842464 + }, + [ + { + "#": 5216 + }, + { + "#": 5217 + }, + { + "#": 5218 + }, + { + "#": 5219 + }, + { + "#": 5220 + }, + { + "#": 5221 + }, + { + "#": 5222 + }, + { + "#": 5223 + }, + { + "#": 5224 + }, + { + "#": 5225 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 254.77783754141217, + "y": 392.7962757236989 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 251.87183754141216, + "y": 396.7962757236989 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 247.16983754141216, + "y": 398.3242757236989 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 242.46783754141217, + "y": 396.7962757236989 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 239.56183754141216, + "y": 392.7962757236989 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 239.56183754141216, + "y": 387.85227572369894 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 242.46783754141217, + "y": 383.85227572369894 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 247.16983754141216, + "y": 382.3242757236989 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 251.87183754141216, + "y": 383.85227572369894 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 254.77783754141217, + "y": 387.85227572369894 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5227 + }, + "bounds": { + "#": 5233 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5236 + }, + "constraintImpulse": { + "#": 5237 + }, + "density": 0.001, + "force": { + "#": 5238 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 168, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5239 + }, + "positionImpulse": { + "#": 5240 + }, + "positionPrev": { + "#": 5241 + }, + "region": { + "#": 5242 + }, + "render": { + "#": 5243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8048124395491651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5245 + }, + "vertices": { + "#": 5246 + } + }, + [ + { + "#": 5228 + }, + { + "#": 5229 + }, + { + "#": 5230 + }, + { + "#": 5231 + }, + { + "#": 5232 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5234 + }, + "min": { + "#": 5235 + } + }, + { + "x": 274.18288740443995, + "y": 394.08041548421073 + }, + { + "x": 258.96688740443994, + "y": 378.08041548421073 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 266.57488740444, + "y": 386.08041548421085 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 266.97982153286614, + "y": 384.53319752879975 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5244 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3554446408862191, + "y": 1.8036262333133664 + }, + [ + { + "#": 5247 + }, + { + "#": 5248 + }, + { + "#": 5249 + }, + { + "#": 5250 + }, + { + "#": 5251 + }, + { + "#": 5252 + }, + { + "#": 5253 + }, + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 274.18288740443995, + "y": 388.5524154842107 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 271.27688740443995, + "y": 392.5524154842107 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 266.57488740443995, + "y": 394.08041548421073 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 261.87288740443995, + "y": 392.5524154842107 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 258.96688740443994, + "y": 388.5524154842107 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 258.96688740443994, + "y": 383.60841548421075 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 261.87288740443995, + "y": 379.60841548421075 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 266.57488740443995, + "y": 378.08041548421073 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 271.27688740443995, + "y": 379.60841548421075 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 274.18288740443995, + "y": 383.60841548421075 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5258 + }, + "bounds": { + "#": 5264 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5267 + }, + "constraintImpulse": { + "#": 5268 + }, + "density": 0.001, + "force": { + "#": 5269 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 169, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5270 + }, + "positionImpulse": { + "#": 5271 + }, + "positionPrev": { + "#": 5272 + }, + "region": { + "#": 5273 + }, + "render": { + "#": 5274 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6207531852008397, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5276 + }, + "vertices": { + "#": 5277 + } + }, + [ + { + "#": 5259 + }, + { + "#": 5260 + }, + { + "#": 5261 + }, + { + "#": 5262 + }, + { + "#": 5263 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5265 + }, + "min": { + "#": 5266 + } + }, + { + "x": 294.3778682836592, + "y": 391.89663401142076 + }, + { + "x": 279.1618682836592, + "y": 375.89663401142076 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 286.7698682836594, + "y": 383.89663401142076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.04549285205104, + "y": 382.4516530089426 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5275 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.20413987077137108, + "y": 1.732116081320953 + }, + [ + { + "#": 5278 + }, + { + "#": 5279 + }, + { + "#": 5280 + }, + { + "#": 5281 + }, + { + "#": 5282 + }, + { + "#": 5283 + }, + { + "#": 5284 + }, + { + "#": 5285 + }, + { + "#": 5286 + }, + { + "#": 5287 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 294.3778682836592, + "y": 386.36863401142074 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 291.4718682836592, + "y": 390.36863401142074 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 286.7698682836592, + "y": 391.89663401142076 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 282.0678682836592, + "y": 390.36863401142074 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 279.1618682836592, + "y": 386.36863401142074 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 279.1618682836592, + "y": 381.4246340114208 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 282.0678682836592, + "y": 377.4246340114208 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 286.7698682836592, + "y": 375.89663401142076 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 291.4718682836592, + "y": 377.4246340114208 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 294.3778682836592, + "y": 381.4246340114208 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5289 + }, + "bounds": { + "#": 5295 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5298 + }, + "constraintImpulse": { + "#": 5299 + }, + "density": 0.001, + "force": { + "#": 5300 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 170, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5301 + }, + "positionImpulse": { + "#": 5302 + }, + "positionPrev": { + "#": 5303 + }, + "region": { + "#": 5304 + }, + "render": { + "#": 5305 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.56223543332667, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5307 + }, + "vertices": { + "#": 5308 + } + }, + [ + { + "#": 5290 + }, + { + "#": 5291 + }, + { + "#": 5292 + }, + { + "#": 5293 + }, + { + "#": 5294 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5296 + }, + "min": { + "#": 5297 + } + }, + { + "x": 315.21160184457773, + "y": 391.6788512140304 + }, + { + "x": 299.9956018445777, + "y": 375.6788512140304 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.6036018445776, + "y": 383.67885121403054 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.6893521026358, + "y": 381.10796692083653 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5306 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.09938366194330683, + "y": 2.5186990360828645 + }, + [ + { + "#": 5309 + }, + { + "#": 5310 + }, + { + "#": 5311 + }, + { + "#": 5312 + }, + { + "#": 5313 + }, + { + "#": 5314 + }, + { + "#": 5315 + }, + { + "#": 5316 + }, + { + "#": 5317 + }, + { + "#": 5318 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.21160184457773, + "y": 386.15085121403035 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.3056018445778, + "y": 390.15085121403035 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 307.6036018445778, + "y": 391.6788512140304 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 302.9016018445778, + "y": 390.15085121403035 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 299.9956018445777, + "y": 386.15085121403035 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 299.9956018445777, + "y": 381.2068512140304 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 302.9016018445778, + "y": 377.2068512140304 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 307.6036018445778, + "y": 375.6788512140304 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 312.3056018445778, + "y": 377.2068512140304 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 315.21160184457773, + "y": 381.2068512140304 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5320 + }, + "bounds": { + "#": 5326 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5329 + }, + "constraintImpulse": { + "#": 5330 + }, + "density": 0.001, + "force": { + "#": 5331 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 171, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5332 + }, + "positionImpulse": { + "#": 5333 + }, + "positionPrev": { + "#": 5334 + }, + "region": { + "#": 5335 + }, + "render": { + "#": 5336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.533615889443399, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5338 + }, + "vertices": { + "#": 5339 + } + }, + [ + { + "#": 5321 + }, + { + "#": 5322 + }, + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5327 + }, + "min": { + "#": 5328 + } + }, + { + "x": 335.1705449062726, + "y": 396.916532670197 + }, + { + "x": 319.9545449062726, + "y": 380.916532670197 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 327.5625449062725, + "y": 388.9165326701969 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 327.6114776703454, + "y": 386.5585406705254 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5337 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.056851039596324426, + "y": 2.3248185741099974 + }, + [ + { + "#": 5340 + }, + { + "#": 5341 + }, + { + "#": 5342 + }, + { + "#": 5343 + }, + { + "#": 5344 + }, + { + "#": 5345 + }, + { + "#": 5346 + }, + { + "#": 5347 + }, + { + "#": 5348 + }, + { + "#": 5349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335.1705449062726, + "y": 391.388532670197 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 332.2645449062726, + "y": 395.388532670197 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 327.5625449062726, + "y": 396.916532670197 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 322.8605449062726, + "y": 395.388532670197 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 319.9545449062726, + "y": 391.388532670197 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 319.9545449062726, + "y": 386.444532670197 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.8605449062726, + "y": 382.444532670197 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 327.5625449062726, + "y": 380.916532670197 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 332.2645449062726, + "y": 382.444532670197 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 335.1705449062726, + "y": 386.444532670197 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5351 + }, + "bounds": { + "#": 5357 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5360 + }, + "constraintImpulse": { + "#": 5361 + }, + "density": 0.001, + "force": { + "#": 5362 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 172, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5363 + }, + "positionImpulse": { + "#": 5364 + }, + "positionPrev": { + "#": 5365 + }, + "region": { + "#": 5366 + }, + "render": { + "#": 5367 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9441775148090668, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5369 + }, + "vertices": { + "#": 5370 + } + }, + [ + { + "#": 5352 + }, + { + "#": 5353 + }, + { + "#": 5354 + }, + { + "#": 5355 + }, + { + "#": 5356 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5358 + }, + "min": { + "#": 5359 + } + }, + { + "x": 355.7687957360469, + "y": 398.889676120634 + }, + { + "x": 340.5527957360469, + "y": 382.889676120634 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.16079573604674, + "y": 390.889676120634 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.27431839695095, + "y": 388.13286225847907 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5368 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1361461103884949, + "y": 2.631474641646207 + }, + [ + { + "#": 5371 + }, + { + "#": 5372 + }, + { + "#": 5373 + }, + { + "#": 5374 + }, + { + "#": 5375 + }, + { + "#": 5376 + }, + { + "#": 5377 + }, + { + "#": 5378 + }, + { + "#": 5379 + }, + { + "#": 5380 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 355.7687957360469, + "y": 393.361676120634 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.8627957360469, + "y": 397.361676120634 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 348.1607957360469, + "y": 398.889676120634 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 343.4587957360469, + "y": 397.361676120634 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 340.5527957360469, + "y": 393.361676120634 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 340.5527957360469, + "y": 388.41767612063404 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 343.4587957360469, + "y": 384.41767612063404 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 348.1607957360469, + "y": 382.889676120634 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 352.8627957360469, + "y": 384.41767612063404 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 355.7687957360469, + "y": 388.41767612063404 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5382 + }, + "bounds": { + "#": 5388 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5391 + }, + "constraintImpulse": { + "#": 5392 + }, + "density": 0.001, + "force": { + "#": 5393 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 173, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5394 + }, + "positionImpulse": { + "#": 5395 + }, + "positionPrev": { + "#": 5396 + }, + "region": { + "#": 5397 + }, + "render": { + "#": 5398 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8730067799312553, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5400 + }, + "vertices": { + "#": 5401 + } + }, + [ + { + "#": 5383 + }, + { + "#": 5384 + }, + { + "#": 5385 + }, + { + "#": 5386 + }, + { + "#": 5387 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5389 + }, + "min": { + "#": 5390 + } + }, + { + "x": 376.0536448119878, + "y": 402.864109014382 + }, + { + "x": 360.8376448119878, + "y": 386.864109014382 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.44564481198785, + "y": 394.8641090143819 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.514600313067, + "y": 392.24792882013116 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5399 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0869103499310313, + "y": 2.48531909705423 + }, + [ + { + "#": 5402 + }, + { + "#": 5403 + }, + { + "#": 5404 + }, + { + "#": 5405 + }, + { + "#": 5406 + }, + { + "#": 5407 + }, + { + "#": 5408 + }, + { + "#": 5409 + }, + { + "#": 5410 + }, + { + "#": 5411 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 376.0536448119878, + "y": 397.336109014382 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.1476448119878, + "y": 401.336109014382 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 368.4456448119878, + "y": 402.864109014382 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 363.7436448119878, + "y": 401.336109014382 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.8376448119878, + "y": 397.336109014382 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 360.8376448119878, + "y": 392.392109014382 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 363.7436448119878, + "y": 388.392109014382 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 368.4456448119878, + "y": 386.864109014382 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 373.1476448119878, + "y": 388.392109014382 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 376.0536448119878, + "y": 392.392109014382 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5413 + }, + "bounds": { + "#": 5419 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5422 + }, + "constraintImpulse": { + "#": 5423 + }, + "density": 0.001, + "force": { + "#": 5424 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 174, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5425 + }, + "positionImpulse": { + "#": 5426 + }, + "positionPrev": { + "#": 5427 + }, + "region": { + "#": 5428 + }, + "render": { + "#": 5429 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0136900284380044, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5431 + }, + "vertices": { + "#": 5432 + } + }, + [ + { + "#": 5414 + }, + { + "#": 5415 + }, + { + "#": 5416 + }, + { + "#": 5417 + }, + { + "#": 5418 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5420 + }, + "min": { + "#": 5421 + } + }, + { + "x": 396.757504277166, + "y": 402.2452848082009 + }, + { + "x": 381.541504277166, + "y": 386.2452848082009 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.14950427716593, + "y": 394.24528480820123 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.1443434928317, + "y": 391.3513241052791 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5430 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.014604132375723111, + "y": 2.685295247372096 + }, + [ + { + "#": 5433 + }, + { + "#": 5434 + }, + { + "#": 5435 + }, + { + "#": 5436 + }, + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + }, + { + "#": 5441 + }, + { + "#": 5442 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.757504277166, + "y": 396.7172848082009 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 393.851504277166, + "y": 400.7172848082009 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.149504277166, + "y": 402.2452848082009 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.447504277166, + "y": 400.7172848082009 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.541504277166, + "y": 396.7172848082009 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.541504277166, + "y": 391.7732848082009 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.447504277166, + "y": 387.7732848082009 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.149504277166, + "y": 386.2452848082009 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 393.851504277166, + "y": 387.7732848082009 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 396.757504277166, + "y": 391.7732848082009 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5444 + }, + "bounds": { + "#": 5450 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5453 + }, + "constraintImpulse": { + "#": 5454 + }, + "density": 0.001, + "force": { + "#": 5455 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 175, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5456 + }, + "positionImpulse": { + "#": 5457 + }, + "positionPrev": { + "#": 5458 + }, + "region": { + "#": 5459 + }, + "render": { + "#": 5460 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.919539931088296, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5462 + }, + "vertices": { + "#": 5463 + } + }, + [ + { + "#": 5445 + }, + { + "#": 5446 + }, + { + "#": 5447 + }, + { + "#": 5448 + }, + { + "#": 5449 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5451 + }, + "min": { + "#": 5452 + } + }, + { + "x": 417.4741210924965, + "y": 401.75046970938314 + }, + { + "x": 402.2581210924965, + "y": 385.75046970938314 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.8661210924964, + "y": 393.750469709383 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.7961419550638, + "y": 390.90442818276034 + }, + { + "endCol": 8, + "endRow": 8, + "id": "8,8,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5461 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05500937286791441, + "y": 2.641752993024511 + }, + [ + { + "#": 5464 + }, + { + "#": 5465 + }, + { + "#": 5466 + }, + { + "#": 5467 + }, + { + "#": 5468 + }, + { + "#": 5469 + }, + { + "#": 5470 + }, + { + "#": 5471 + }, + { + "#": 5472 + }, + { + "#": 5473 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.4741210924965, + "y": 396.2224697093831 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.5681210924965, + "y": 400.2224697093831 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.8661210924965, + "y": 401.75046970938314 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.1641210924965, + "y": 400.2224697093831 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.2581210924965, + "y": 396.2224697093831 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.2581210924965, + "y": 391.27846970938316 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.1641210924965, + "y": 387.27846970938316 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 409.8661210924965, + "y": 385.75046970938314 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.5681210924965, + "y": 387.27846970938316 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.4741210924965, + "y": 391.27846970938316 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5475 + }, + "bounds": { + "#": 5481 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5484 + }, + "constraintImpulse": { + "#": 5485 + }, + "density": 0.001, + "force": { + "#": 5486 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 176, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5487 + }, + "positionImpulse": { + "#": 5488 + }, + "positionPrev": { + "#": 5489 + }, + "region": { + "#": 5490 + }, + "render": { + "#": 5491 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7724717225629854, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5493 + }, + "vertices": { + "#": 5494 + } + }, + [ + { + "#": 5476 + }, + { + "#": 5477 + }, + { + "#": 5478 + }, + { + "#": 5479 + }, + { + "#": 5480 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5482 + }, + "min": { + "#": 5483 + } + }, + { + "x": 438.1819760235873, + "y": 401.16574461212656 + }, + { + "x": 422.9659760235873, + "y": 385.16574461212656 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.5739760235872, + "y": 393.16574461212656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430.45247588788766, + "y": 390.4863087316018 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5492 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11018919380745729, + "y": 2.5230387297689845 + }, + [ + { + "#": 5495 + }, + { + "#": 5496 + }, + { + "#": 5497 + }, + { + "#": 5498 + }, + { + "#": 5499 + }, + { + "#": 5500 + }, + { + "#": 5501 + }, + { + "#": 5502 + }, + { + "#": 5503 + }, + { + "#": 5504 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 438.1819760235873, + "y": 395.63774461212654 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 435.2759760235873, + "y": 399.63774461212654 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 430.5739760235873, + "y": 401.16574461212656 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.8719760235873, + "y": 399.63774461212654 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 422.9659760235873, + "y": 395.63774461212654 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 422.9659760235873, + "y": 390.6937446121266 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 425.8719760235873, + "y": 386.6937446121266 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.5739760235873, + "y": 385.16574461212656 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 435.2759760235873, + "y": 386.6937446121266 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 438.1819760235873, + "y": 390.6937446121266 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5506 + }, + "bounds": { + "#": 5512 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5515 + }, + "constraintImpulse": { + "#": 5516 + }, + "density": 0.001, + "force": { + "#": 5517 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 177, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5518 + }, + "positionImpulse": { + "#": 5519 + }, + "positionPrev": { + "#": 5520 + }, + "region": { + "#": 5521 + }, + "render": { + "#": 5522 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.169965975267737, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5524 + }, + "vertices": { + "#": 5525 + } + }, + [ + { + "#": 5507 + }, + { + "#": 5508 + }, + { + "#": 5509 + }, + { + "#": 5510 + }, + { + "#": 5511 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5513 + }, + "min": { + "#": 5514 + } + }, + { + "x": 458.68612367884674, + "y": 398.57676741250873 + }, + { + "x": 443.47012367884673, + "y": 382.57676741250873 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451.07812367884685, + "y": 390.5767674125085 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451.00925153642186, + "y": 388.67309638315453 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5523 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0772223668233778, + "y": 1.9991784843255687 + }, + [ + { + "#": 5526 + }, + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + }, + { + "#": 5534 + }, + { + "#": 5535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 458.68612367884674, + "y": 393.0487674125087 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 455.78012367884673, + "y": 397.0487674125087 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 451.07812367884674, + "y": 398.57676741250873 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 446.37612367884674, + "y": 397.0487674125087 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 443.47012367884673, + "y": 393.0487674125087 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 443.47012367884673, + "y": 388.10476741250875 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 446.37612367884674, + "y": 384.10476741250875 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 451.07812367884674, + "y": 382.57676741250873 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.78012367884673, + "y": 384.10476741250875 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.68612367884674, + "y": 388.10476741250875 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5537 + }, + "bounds": { + "#": 5543 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5546 + }, + "constraintImpulse": { + "#": 5547 + }, + "density": 0.001, + "force": { + "#": 5548 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 178, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5549 + }, + "positionImpulse": { + "#": 5550 + }, + "positionPrev": { + "#": 5551 + }, + "region": { + "#": 5552 + }, + "render": { + "#": 5553 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3898233353101308, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5555 + }, + "vertices": { + "#": 5556 + } + }, + [ + { + "#": 5538 + }, + { + "#": 5539 + }, + { + "#": 5540 + }, + { + "#": 5541 + }, + { + "#": 5542 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5544 + }, + "min": { + "#": 5545 + } + }, + { + "x": 477.02070302533417, + "y": 389.15318090222513 + }, + { + "x": 461.80470302533416, + "y": 373.15318090222513 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 469.41270302533405, + "y": 381.1531809022252 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 469.6089934966053, + "y": 379.7961874897423 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5554 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.16169315931830397, + "y": 1.745592046330728 + }, + [ + { + "#": 5557 + }, + { + "#": 5558 + }, + { + "#": 5559 + }, + { + "#": 5560 + }, + { + "#": 5561 + }, + { + "#": 5562 + }, + { + "#": 5563 + }, + { + "#": 5564 + }, + { + "#": 5565 + }, + { + "#": 5566 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 477.02070302533417, + "y": 383.6251809022251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.11470302533417, + "y": 387.6251809022251 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 469.41270302533417, + "y": 389.15318090222513 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.71070302533417, + "y": 387.6251809022251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 461.80470302533416, + "y": 383.6251809022251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 461.80470302533416, + "y": 378.68118090222515 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 464.71070302533417, + "y": 374.68118090222515 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 469.41270302533417, + "y": 373.15318090222513 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.11470302533417, + "y": 374.68118090222515 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 477.02070302533417, + "y": 378.68118090222515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5568 + }, + "bounds": { + "#": 5574 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5577 + }, + "constraintImpulse": { + "#": 5578 + }, + "density": 0.001, + "force": { + "#": 5579 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 179, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5580 + }, + "positionImpulse": { + "#": 5581 + }, + "positionPrev": { + "#": 5582 + }, + "region": { + "#": 5583 + }, + "render": { + "#": 5584 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9208688235256433, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5586 + }, + "vertices": { + "#": 5587 + } + }, + [ + { + "#": 5569 + }, + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + }, + { + "#": 5573 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5575 + }, + "min": { + "#": 5576 + } + }, + { + "x": 497.66417062493645, + "y": 387.10415123495585 + }, + { + "x": 482.44817062493644, + "y": 371.10415123495585 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.05617062493644, + "y": 379.1041512349558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.25378317616276, + "y": 378.28128835128473 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5585 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1474621045914546, + "y": 1.361817342170923 + }, + [ + { + "#": 5588 + }, + { + "#": 5589 + }, + { + "#": 5590 + }, + { + "#": 5591 + }, + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + }, + { + "#": 5596 + }, + { + "#": 5597 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 497.66417062493645, + "y": 381.57615123495583 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.75817062493644, + "y": 385.57615123495583 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 490.05617062493644, + "y": 387.10415123495585 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.35417062493644, + "y": 385.57615123495583 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 482.44817062493644, + "y": 381.57615123495583 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 482.44817062493644, + "y": 376.63215123495587 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 485.35417062493644, + "y": 372.63215123495587 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.05617062493644, + "y": 371.10415123495585 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 494.75817062493644, + "y": 372.63215123495587 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 497.66417062493645, + "y": 376.63215123495587 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5599 + }, + "bounds": { + "#": 5605 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5608 + }, + "constraintImpulse": { + "#": 5609 + }, + "density": 0.001, + "force": { + "#": 5610 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 180, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5611 + }, + "positionImpulse": { + "#": 5612 + }, + "positionPrev": { + "#": 5613 + }, + "region": { + "#": 5614 + }, + "render": { + "#": 5615 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.879815474690106, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5617 + }, + "vertices": { + "#": 5618 + } + }, + [ + { + "#": 5600 + }, + { + "#": 5601 + }, + { + "#": 5602 + }, + { + "#": 5603 + }, + { + "#": 5604 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5606 + }, + "min": { + "#": 5607 + } + }, + { + "x": 518.4828456421191, + "y": 386.9714388131434 + }, + { + "x": 503.26684564211905, + "y": 370.9714388131434 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.8748456421189, + "y": 378.97143881314344 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 510.9968114286588, + "y": 378.23584747307876 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5616 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.07413400874781928, + "y": 1.319301512930167 + }, + [ + { + "#": 5619 + }, + { + "#": 5620 + }, + { + "#": 5621 + }, + { + "#": 5622 + }, + { + "#": 5623 + }, + { + "#": 5624 + }, + { + "#": 5625 + }, + { + "#": 5626 + }, + { + "#": 5627 + }, + { + "#": 5628 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.4828456421191, + "y": 381.44343881314336 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 515.5768456421191, + "y": 385.44343881314336 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.87484564211906, + "y": 386.9714388131434 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.17284564211906, + "y": 385.44343881314336 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.26684564211905, + "y": 381.44343881314336 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 503.26684564211905, + "y": 376.4994388131434 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 506.17284564211906, + "y": 372.4994388131434 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 510.87484564211906, + "y": 370.9714388131434 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 515.5768456421191, + "y": 372.4994388131434 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 518.4828456421191, + "y": 376.4994388131434 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5630 + }, + "bounds": { + "#": 5636 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5639 + }, + "constraintImpulse": { + "#": 5640 + }, + "density": 0.001, + "force": { + "#": 5641 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 181, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5642 + }, + "positionImpulse": { + "#": 5643 + }, + "positionPrev": { + "#": 5644 + }, + "region": { + "#": 5645 + }, + "render": { + "#": 5646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2361678347156586, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5648 + }, + "vertices": { + "#": 5649 + } + }, + [ + { + "#": 5631 + }, + { + "#": 5632 + }, + { + "#": 5633 + }, + { + "#": 5634 + }, + { + "#": 5635 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5637 + }, + "min": { + "#": 5638 + } + }, + { + "x": 539.2120254111016, + "y": 388.639335397064 + }, + { + "x": 523.9960254111018, + "y": 372.639335397064 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.6040254111022, + "y": 380.6393353970641 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.6641285942901, + "y": 379.5634788116237 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5647 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.027585442618828893, + "y": 1.6115128010519015 + }, + [ + { + "#": 5650 + }, + { + "#": 5651 + }, + { + "#": 5652 + }, + { + "#": 5653 + }, + { + "#": 5654 + }, + { + "#": 5655 + }, + { + "#": 5656 + }, + { + "#": 5657 + }, + { + "#": 5658 + }, + { + "#": 5659 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 539.2120254111016, + "y": 383.11133539706395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 536.3060254111017, + "y": 387.11133539706395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.6040254111017, + "y": 388.639335397064 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.9020254111017, + "y": 387.11133539706395 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 523.9960254111018, + "y": 383.11133539706395 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.9960254111018, + "y": 378.167335397064 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 526.9020254111017, + "y": 374.167335397064 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 531.6040254111017, + "y": 372.639335397064 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 536.3060254111017, + "y": 374.167335397064 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 539.2120254111016, + "y": 378.167335397064 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5661 + }, + "bounds": { + "#": 5667 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5670 + }, + "constraintImpulse": { + "#": 5671 + }, + "density": 0.001, + "force": { + "#": 5672 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 182, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5673 + }, + "positionImpulse": { + "#": 5674 + }, + "positionPrev": { + "#": 5675 + }, + "region": { + "#": 5676 + }, + "render": { + "#": 5677 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1631474465795466, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5679 + }, + "vertices": { + "#": 5680 + } + }, + [ + { + "#": 5662 + }, + { + "#": 5663 + }, + { + "#": 5664 + }, + { + "#": 5665 + }, + { + "#": 5666 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5668 + }, + "min": { + "#": 5669 + } + }, + { + "x": 557.5025015324296, + "y": 398.46246727878577 + }, + { + "x": 542.2865015324297, + "y": 382.46246727878577 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 549.8945015324294, + "y": 390.4624672787855 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.2424068516684, + "y": 388.5996652158815 + }, + { + "endCol": 11, + "endRow": 8, + "id": "11,11,7,8", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5678 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.34981281132263575, + "y": 1.9629079699385557 + }, + [ + { + "#": 5681 + }, + { + "#": 5682 + }, + { + "#": 5683 + }, + { + "#": 5684 + }, + { + "#": 5685 + }, + { + "#": 5686 + }, + { + "#": 5687 + }, + { + "#": 5688 + }, + { + "#": 5689 + }, + { + "#": 5690 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 557.5025015324296, + "y": 392.93446727878575 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.5965015324297, + "y": 396.93446727878575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.8945015324297, + "y": 398.46246727878577 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545.1925015324297, + "y": 396.93446727878575 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 542.2865015324297, + "y": 392.93446727878575 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 542.2865015324297, + "y": 387.9904672787858 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 545.1925015324297, + "y": 383.9904672787858 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 549.8945015324297, + "y": 382.46246727878577 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 554.5965015324297, + "y": 383.9904672787858 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 557.5025015324296, + "y": 387.9904672787858 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5692 + }, + "bounds": { + "#": 5698 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5701 + }, + "constraintImpulse": { + "#": 5702 + }, + "density": 0.001, + "force": { + "#": 5703 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 183, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5704 + }, + "positionImpulse": { + "#": 5705 + }, + "positionPrev": { + "#": 5706 + }, + "region": { + "#": 5707 + }, + "render": { + "#": 5708 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6632481007596174, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5710 + }, + "vertices": { + "#": 5711 + } + }, + [ + { + "#": 5693 + }, + { + "#": 5694 + }, + { + "#": 5695 + }, + { + "#": 5696 + }, + { + "#": 5697 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5699 + }, + "min": { + "#": 5700 + } + }, + { + "x": 577.9025098188639, + "y": 400.7443819314784 + }, + { + "x": 562.686509818864, + "y": 384.7443819314784 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 570.2945098188642, + "y": 392.7443819314785 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 570.6721498037934, + "y": 390.23502688125836 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,8,8", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5709 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3750738717450304, + "y": 2.423614603850467 + }, + [ + { + "#": 5712 + }, + { + "#": 5713 + }, + { + "#": 5714 + }, + { + "#": 5715 + }, + { + "#": 5716 + }, + { + "#": 5717 + }, + { + "#": 5718 + }, + { + "#": 5719 + }, + { + "#": 5720 + }, + { + "#": 5721 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 577.9025098188639, + "y": 395.2163819314784 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 574.996509818864, + "y": 399.2163819314784 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570.294509818864, + "y": 400.7443819314784 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 565.592509818864, + "y": 399.2163819314784 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 562.686509818864, + "y": 395.2163819314784 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 562.686509818864, + "y": 390.27238193147844 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 565.592509818864, + "y": 386.27238193147844 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 570.294509818864, + "y": 384.7443819314784 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 574.996509818864, + "y": 386.27238193147844 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 577.9025098188639, + "y": 390.27238193147844 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5723 + }, + "bounds": { + "#": 5729 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5732 + }, + "constraintImpulse": { + "#": 5733 + }, + "density": 0.001, + "force": { + "#": 5734 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 184, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5735 + }, + "positionImpulse": { + "#": 5736 + }, + "positionPrev": { + "#": 5737 + }, + "region": { + "#": 5738 + }, + "render": { + "#": 5739 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7038454820635263, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5741 + }, + "vertices": { + "#": 5742 + } + }, + [ + { + "#": 5724 + }, + { + "#": 5725 + }, + { + "#": 5726 + }, + { + "#": 5727 + }, + { + "#": 5728 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5730 + }, + "min": { + "#": 5731 + } + }, + { + "x": 598.2500705298302, + "y": 400.9003924336581 + }, + { + "x": 583.0340705298303, + "y": 384.9003924336581 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 590.6420705298306, + "y": 392.90039243365806 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.0124850895028, + "y": 390.32421316209974 + }, + { + "endCol": 12, + "endRow": 8, + "id": "12,12,8,8", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5740 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3670868009047581, + "y": 2.472750848570911 + }, + [ + { + "#": 5743 + }, + { + "#": 5744 + }, + { + "#": 5745 + }, + { + "#": 5746 + }, + { + "#": 5747 + }, + { + "#": 5748 + }, + { + "#": 5749 + }, + { + "#": 5750 + }, + { + "#": 5751 + }, + { + "#": 5752 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 598.2500705298302, + "y": 395.3723924336581 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 595.3440705298302, + "y": 399.3723924336581 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 590.6420705298302, + "y": 400.9003924336581 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 585.9400705298302, + "y": 399.3723924336581 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 583.0340705298303, + "y": 395.3723924336581 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 583.0340705298303, + "y": 390.42839243365813 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 585.9400705298302, + "y": 386.42839243365813 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 590.6420705298302, + "y": 384.9003924336581 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 595.3440705298302, + "y": 386.42839243365813 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 598.2500705298302, + "y": 390.42839243365813 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5754 + }, + "bounds": { + "#": 5760 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5763 + }, + "constraintImpulse": { + "#": 5764 + }, + "density": 0.001, + "force": { + "#": 5765 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 185, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5766 + }, + "positionImpulse": { + "#": 5767 + }, + "positionPrev": { + "#": 5768 + }, + "region": { + "#": 5769 + }, + "render": { + "#": 5770 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.410429489764864, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5772 + }, + "vertices": { + "#": 5773 + } + }, + [ + { + "#": 5755 + }, + { + "#": 5756 + }, + { + "#": 5757 + }, + { + "#": 5758 + }, + { + "#": 5759 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5761 + }, + "min": { + "#": 5762 + } + }, + { + "x": 218.83383893889064, + "y": 425.52682990752527 + }, + { + "x": 203.61783893889063, + "y": 409.52682990752527 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 211.22583893889066, + "y": 417.5268299075256 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 209.9710852419083, + "y": 414.4782229375762 + }, + { + "endCol": 4, + "endRow": 8, + "id": "4,4,8,8", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5771 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.1044248913639763, + "y": 2.858637047856689 + }, + [ + { + "#": 5774 + }, + { + "#": 5775 + }, + { + "#": 5776 + }, + { + "#": 5777 + }, + { + "#": 5778 + }, + { + "#": 5779 + }, + { + "#": 5780 + }, + { + "#": 5781 + }, + { + "#": 5782 + }, + { + "#": 5783 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 218.83383893889064, + "y": 419.99882990752525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 215.92783893889063, + "y": 423.99882990752525 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 211.22583893889063, + "y": 425.52682990752527 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 206.52383893889063, + "y": 423.99882990752525 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 203.61783893889063, + "y": 419.99882990752525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 203.61783893889063, + "y": 415.0548299075253 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 206.52383893889063, + "y": 411.0548299075253 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 211.22583893889063, + "y": 409.52682990752527 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 215.92783893889063, + "y": 411.0548299075253 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 218.83383893889064, + "y": 415.0548299075253 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5785 + }, + "bounds": { + "#": 5791 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5794 + }, + "constraintImpulse": { + "#": 5795 + }, + "density": 0.001, + "force": { + "#": 5796 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 186, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5797 + }, + "positionImpulse": { + "#": 5798 + }, + "positionPrev": { + "#": 5799 + }, + "region": { + "#": 5800 + }, + "render": { + "#": 5801 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9459185392119704, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5803 + }, + "vertices": { + "#": 5804 + } + }, + [ + { + "#": 5786 + }, + { + "#": 5787 + }, + { + "#": 5788 + }, + { + "#": 5789 + }, + { + "#": 5790 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5792 + }, + "min": { + "#": 5793 + } + }, + { + "x": 238.84231559572564, + "y": 424.87885867063187 + }, + { + "x": 223.62631559572563, + "y": 408.87885867063187 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.23431559572558, + "y": 416.87885867063164 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 230.32646386334324, + "y": 414.2708529838218 + }, + { + "endCol": 4, + "endRow": 8, + "id": "4,4,8,8", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5802 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.8759253382957013, + "y": 2.5779881486460567 + }, + [ + { + "#": 5805 + }, + { + "#": 5806 + }, + { + "#": 5807 + }, + { + "#": 5808 + }, + { + "#": 5809 + }, + { + "#": 5810 + }, + { + "#": 5811 + }, + { + "#": 5812 + }, + { + "#": 5813 + }, + { + "#": 5814 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.84231559572564, + "y": 419.35085867063185 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 235.93631559572563, + "y": 423.35085867063185 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.23431559572563, + "y": 424.87885867063187 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.53231559572563, + "y": 423.35085867063185 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 223.62631559572563, + "y": 419.35085867063185 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 223.62631559572563, + "y": 414.4068586706319 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 226.53231559572563, + "y": 410.4068586706319 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 231.23431559572563, + "y": 408.87885867063187 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 235.93631559572563, + "y": 410.4068586706319 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 238.84231559572564, + "y": 414.4068586706319 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5816 + }, + "bounds": { + "#": 5822 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5825 + }, + "constraintImpulse": { + "#": 5826 + }, + "density": 0.001, + "force": { + "#": 5827 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 187, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5828 + }, + "positionImpulse": { + "#": 5829 + }, + "positionPrev": { + "#": 5830 + }, + "region": { + "#": 5831 + }, + "render": { + "#": 5832 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.91627019927608, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5834 + }, + "vertices": { + "#": 5835 + } + }, + [ + { + "#": 5817 + }, + { + "#": 5818 + }, + { + "#": 5819 + }, + { + "#": 5820 + }, + { + "#": 5821 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5823 + }, + "min": { + "#": 5824 + } + }, + { + "x": 257.4690438745017, + "y": 418.3120214867715 + }, + { + "x": 242.25304387450177, + "y": 402.3120214867715 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 249.8610438745018, + "y": 410.31202148677124 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 249.9069637629129, + "y": 408.5817650750315 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5833 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2773095167289341, + "y": 1.9324402548689932 + }, + [ + { + "#": 5836 + }, + { + "#": 5837 + }, + { + "#": 5838 + }, + { + "#": 5839 + }, + { + "#": 5840 + }, + { + "#": 5841 + }, + { + "#": 5842 + }, + { + "#": 5843 + }, + { + "#": 5844 + }, + { + "#": 5845 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 257.4690438745017, + "y": 412.7840214867715 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 254.56304387450177, + "y": 416.7840214867715 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 249.86104387450177, + "y": 418.3120214867715 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 245.15904387450178, + "y": 416.7840214867715 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 242.25304387450177, + "y": 412.7840214867715 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 242.25304387450177, + "y": 407.84002148677155 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 245.15904387450178, + "y": 403.84002148677155 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 249.86104387450177, + "y": 402.3120214867715 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 254.56304387450177, + "y": 403.84002148677155 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 257.4690438745017, + "y": 407.84002148677155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5847 + }, + "bounds": { + "#": 5853 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5856 + }, + "constraintImpulse": { + "#": 5857 + }, + "density": 0.001, + "force": { + "#": 5858 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 188, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5859 + }, + "positionImpulse": { + "#": 5860 + }, + "positionPrev": { + "#": 5861 + }, + "region": { + "#": 5862 + }, + "render": { + "#": 5863 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6821752981074, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5865 + }, + "vertices": { + "#": 5866 + } + }, + [ + { + "#": 5848 + }, + { + "#": 5849 + }, + { + "#": 5850 + }, + { + "#": 5851 + }, + { + "#": 5852 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5854 + }, + "min": { + "#": 5855 + } + }, + { + "x": 277.6151340436575, + "y": 413.7289841722125 + }, + { + "x": 262.3991340436575, + "y": 397.7289841722125 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.0071340436574, + "y": 405.7289841722127 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.53024027485134, + "y": 403.97772565301483 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5864 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.12405247372061012, + "y": 1.9529082447368182 + }, + [ + { + "#": 5867 + }, + { + "#": 5868 + }, + { + "#": 5869 + }, + { + "#": 5870 + }, + { + "#": 5871 + }, + { + "#": 5872 + }, + { + "#": 5873 + }, + { + "#": 5874 + }, + { + "#": 5875 + }, + { + "#": 5876 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 277.6151340436575, + "y": 408.2009841722125 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 274.7091340436575, + "y": 412.2009841722125 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270.0071340436575, + "y": 413.7289841722125 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265.3051340436575, + "y": 412.2009841722125 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 262.3991340436575, + "y": 408.2009841722125 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 262.3991340436575, + "y": 403.2569841722125 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 265.3051340436575, + "y": 399.2569841722125 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 270.0071340436575, + "y": 397.7289841722125 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 274.7091340436575, + "y": 399.2569841722125 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 277.6151340436575, + "y": 403.2569841722125 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5878 + }, + "bounds": { + "#": 5884 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5887 + }, + "constraintImpulse": { + "#": 5888 + }, + "density": 0.001, + "force": { + "#": 5889 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 189, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5890 + }, + "positionImpulse": { + "#": 5891 + }, + "positionPrev": { + "#": 5892 + }, + "region": { + "#": 5893 + }, + "render": { + "#": 5894 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.7192392090631847, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5896 + }, + "vertices": { + "#": 5897 + } + }, + [ + { + "#": 5879 + }, + { + "#": 5880 + }, + { + "#": 5881 + }, + { + "#": 5882 + }, + { + "#": 5883 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5885 + }, + "min": { + "#": 5886 + } + }, + { + "x": 298.8580570006249, + "y": 411.18815433593244 + }, + { + "x": 283.6420570006249, + "y": 395.18815433593244 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 291.2500570006247, + "y": 403.18815433593227 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 292.0784295389169, + "y": 401.3132703392102 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5895 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.4497462793980276, + "y": 2.099935296900753 + }, + [ + { + "#": 5898 + }, + { + "#": 5899 + }, + { + "#": 5900 + }, + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + }, + { + "#": 5904 + }, + { + "#": 5905 + }, + { + "#": 5906 + }, + { + "#": 5907 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 298.8580570006249, + "y": 405.6601543359324 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 295.9520570006249, + "y": 409.6601543359324 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 291.2500570006249, + "y": 411.18815433593244 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 286.5480570006249, + "y": 409.6601543359324 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 283.6420570006249, + "y": 405.6601543359324 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 283.6420570006249, + "y": 400.71615433593246 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 286.5480570006249, + "y": 396.71615433593246 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 291.2500570006249, + "y": 395.18815433593244 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 295.9520570006249, + "y": 396.71615433593246 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 298.8580570006249, + "y": 400.71615433593246 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5909 + }, + "bounds": { + "#": 5915 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5918 + }, + "constraintImpulse": { + "#": 5919 + }, + "density": 0.001, + "force": { + "#": 5920 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 190, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5921 + }, + "positionImpulse": { + "#": 5922 + }, + "positionPrev": { + "#": 5923 + }, + "region": { + "#": 5924 + }, + "render": { + "#": 5925 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0435511287726995, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5927 + }, + "vertices": { + "#": 5928 + } + }, + [ + { + "#": 5910 + }, + { + "#": 5911 + }, + { + "#": 5912 + }, + { + "#": 5913 + }, + { + "#": 5914 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5916 + }, + "min": { + "#": 5917 + } + }, + { + "x": 320.7982541910273, + "y": 412.23949471422907 + }, + { + "x": 305.5822541910273, + "y": 396.23949471422907 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 313.19025419102735, + "y": 404.23949471422884 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 314.0752698990856, + "y": 401.22800266510075 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5926 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.1226691573095877, + "y": 2.925477268861016 + }, + [ + { + "#": 5929 + }, + { + "#": 5930 + }, + { + "#": 5931 + }, + { + "#": 5932 + }, + { + "#": 5933 + }, + { + "#": 5934 + }, + { + "#": 5935 + }, + { + "#": 5936 + }, + { + "#": 5937 + }, + { + "#": 5938 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.7982541910273, + "y": 406.71149471422905 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 317.8922541910273, + "y": 410.71149471422905 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 313.1902541910273, + "y": 412.23949471422907 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 308.4882541910273, + "y": 410.71149471422905 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 305.5822541910273, + "y": 406.71149471422905 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 305.5822541910273, + "y": 401.7674947142291 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 308.4882541910273, + "y": 397.7674947142291 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 313.1902541910273, + "y": 396.23949471422907 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 317.8922541910273, + "y": 397.7674947142291 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.7982541910273, + "y": 401.7674947142291 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5940 + }, + "bounds": { + "#": 5946 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5949 + }, + "constraintImpulse": { + "#": 5950 + }, + "density": 0.001, + "force": { + "#": 5951 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 191, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5952 + }, + "positionImpulse": { + "#": 5953 + }, + "positionPrev": { + "#": 5954 + }, + "region": { + "#": 5955 + }, + "render": { + "#": 5956 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.55363058298922, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5958 + }, + "vertices": { + "#": 5959 + } + }, + [ + { + "#": 5941 + }, + { + "#": 5942 + }, + { + "#": 5943 + }, + { + "#": 5944 + }, + { + "#": 5945 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5947 + }, + "min": { + "#": 5948 + } + }, + { + "x": 340.21303061725916, + "y": 417.4483687232269 + }, + { + "x": 324.99703061725916, + "y": 401.4483687232269 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 332.60503061725944, + "y": 409.4483687232269 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 332.8037559330779, + "y": 407.0137822757418 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5957 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.3418645167269574, + "y": 2.4284451963828815 + }, + [ + { + "#": 5960 + }, + { + "#": 5961 + }, + { + "#": 5962 + }, + { + "#": 5963 + }, + { + "#": 5964 + }, + { + "#": 5965 + }, + { + "#": 5966 + }, + { + "#": 5967 + }, + { + "#": 5968 + }, + { + "#": 5969 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340.21303061725916, + "y": 411.9203687232269 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 337.30703061725916, + "y": 415.9203687232269 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 332.60503061725916, + "y": 417.4483687232269 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 327.90303061725916, + "y": 415.9203687232269 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 324.99703061725916, + "y": 411.9203687232269 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 324.99703061725916, + "y": 406.9763687232269 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.90303061725916, + "y": 402.9763687232269 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 332.60503061725916, + "y": 401.4483687232269 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 337.30703061725916, + "y": 402.9763687232269 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.21303061725916, + "y": 406.9763687232269 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 5971 + }, + "bounds": { + "#": 5977 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 5980 + }, + "constraintImpulse": { + "#": 5981 + }, + "density": 0.001, + "force": { + "#": 5982 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 192, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 5983 + }, + "positionImpulse": { + "#": 5984 + }, + "positionPrev": { + "#": 5985 + }, + "region": { + "#": 5986 + }, + "render": { + "#": 5987 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.894232833337449, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5989 + }, + "vertices": { + "#": 5990 + } + }, + [ + { + "#": 5972 + }, + { + "#": 5973 + }, + { + "#": 5974 + }, + { + "#": 5975 + }, + { + "#": 5976 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 5978 + }, + "min": { + "#": 5979 + } + }, + { + "x": 359.5175318688385, + "y": 419.9496221508692 + }, + { + "x": 344.3015318688385, + "y": 403.9496221508692 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.90953186883826, + "y": 411.94962215086906 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.8620975414157, + "y": 409.2555306719546 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5988 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.09674513033883159, + "y": 2.6762169819028827 + }, + [ + { + "#": 5991 + }, + { + "#": 5992 + }, + { + "#": 5993 + }, + { + "#": 5994 + }, + { + "#": 5995 + }, + { + "#": 5996 + }, + { + "#": 5997 + }, + { + "#": 5998 + }, + { + "#": 5999 + }, + { + "#": 6000 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 359.5175318688385, + "y": 414.42162215086915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 356.6115318688385, + "y": 418.42162215086915 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 351.9095318688385, + "y": 419.9496221508692 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 347.2075318688385, + "y": 418.42162215086915 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 344.3015318688385, + "y": 414.42162215086915 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.3015318688385, + "y": 409.4776221508692 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 347.2075318688385, + "y": 405.4776221508692 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 351.9095318688385, + "y": 403.9496221508692 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.6115318688385, + "y": 405.4776221508692 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 359.5175318688385, + "y": 409.4776221508692 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6002 + }, + "bounds": { + "#": 6008 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6011 + }, + "constraintImpulse": { + "#": 6012 + }, + "density": 0.001, + "force": { + "#": 6013 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 193, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6014 + }, + "positionImpulse": { + "#": 6015 + }, + "positionPrev": { + "#": 6016 + }, + "region": { + "#": 6017 + }, + "render": { + "#": 6018 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.764995375084015, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6020 + }, + "vertices": { + "#": 6021 + } + }, + [ + { + "#": 6003 + }, + { + "#": 6004 + }, + { + "#": 6005 + }, + { + "#": 6006 + }, + { + "#": 6007 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6009 + }, + "min": { + "#": 6010 + } + }, + { + "x": 378.9884342624759, + "y": 424.0444711204647 + }, + { + "x": 363.7724342624759, + "y": 408.0444711204647 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 371.380434262476, + "y": 416.0444711204647 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 371.1540965569831, + "y": 413.523811769165 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6019 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1999823324413228, + "y": 2.5379624350678114 + }, + [ + { + "#": 6022 + }, + { + "#": 6023 + }, + { + "#": 6024 + }, + { + "#": 6025 + }, + { + "#": 6026 + }, + { + "#": 6027 + }, + { + "#": 6028 + }, + { + "#": 6029 + }, + { + "#": 6030 + }, + { + "#": 6031 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 378.9884342624759, + "y": 418.5164711204647 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 376.0824342624759, + "y": 422.5164711204647 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 371.3804342624759, + "y": 424.0444711204647 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.6784342624759, + "y": 422.5164711204647 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 363.7724342624759, + "y": 418.5164711204647 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 363.7724342624759, + "y": 413.57247112046474 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 366.6784342624759, + "y": 409.57247112046474 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 371.3804342624759, + "y": 408.0444711204647 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 376.0824342624759, + "y": 409.57247112046474 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 378.9884342624759, + "y": 413.57247112046474 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6033 + }, + "bounds": { + "#": 6039 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6042 + }, + "constraintImpulse": { + "#": 6043 + }, + "density": 0.001, + "force": { + "#": 6044 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 194, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6045 + }, + "positionImpulse": { + "#": 6046 + }, + "positionPrev": { + "#": 6047 + }, + "region": { + "#": 6048 + }, + "render": { + "#": 6049 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.094762144613162, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6051 + }, + "vertices": { + "#": 6052 + } + }, + [ + { + "#": 6034 + }, + { + "#": 6035 + }, + { + "#": 6036 + }, + { + "#": 6037 + }, + { + "#": 6038 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6040 + }, + "min": { + "#": 6041 + } + }, + { + "x": 398.704935095603, + "y": 423.8913100907717 + }, + { + "x": 383.488935095603, + "y": 407.8913100907717 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 391.09693509560316, + "y": 415.89131009077164 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 390.8048105904341, + "y": 412.97851778501337 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6050 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.38425735131892225, + "y": 2.799186685715995 + }, + [ + { + "#": 6053 + }, + { + "#": 6054 + }, + { + "#": 6055 + }, + { + "#": 6056 + }, + { + "#": 6057 + }, + { + "#": 6058 + }, + { + "#": 6059 + }, + { + "#": 6060 + }, + { + "#": 6061 + }, + { + "#": 6062 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 398.704935095603, + "y": 418.3633100907717 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 395.798935095603, + "y": 422.3633100907717 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 391.096935095603, + "y": 423.8913100907717 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 386.394935095603, + "y": 422.3633100907717 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 383.488935095603, + "y": 418.3633100907717 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 383.488935095603, + "y": 413.4193100907717 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 386.394935095603, + "y": 409.4193100907717 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 391.096935095603, + "y": 407.8913100907717 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 395.798935095603, + "y": 409.4193100907717 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 398.704935095603, + "y": 413.4193100907717 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6064 + }, + "bounds": { + "#": 6070 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6073 + }, + "constraintImpulse": { + "#": 6074 + }, + "density": 0.001, + "force": { + "#": 6075 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 195, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6076 + }, + "positionImpulse": { + "#": 6077 + }, + "positionPrev": { + "#": 6078 + }, + "region": { + "#": 6079 + }, + "render": { + "#": 6080 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0751115065288253, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6082 + }, + "vertices": { + "#": 6083 + } + }, + [ + { + "#": 6065 + }, + { + "#": 6066 + }, + { + "#": 6067 + }, + { + "#": 6068 + }, + { + "#": 6069 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6071 + }, + "min": { + "#": 6072 + } + }, + { + "x": 418.9700668748452, + "y": 423.46223982569074 + }, + { + "x": 403.7540668748452, + "y": 407.46223982569074 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.3620668748452, + "y": 415.4622398256908 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.00985649460625, + "y": 412.49248712380734 + }, + { + "endCol": 8, + "endRow": 8, + "id": "8,8,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6081 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.4358876948407442, + "y": 2.8146934288774332 + }, + [ + { + "#": 6084 + }, + { + "#": 6085 + }, + { + "#": 6086 + }, + { + "#": 6087 + }, + { + "#": 6088 + }, + { + "#": 6089 + }, + { + "#": 6090 + }, + { + "#": 6091 + }, + { + "#": 6092 + }, + { + "#": 6093 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 418.9700668748452, + "y": 417.9342398256907 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 416.0640668748452, + "y": 421.9342398256907 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 411.3620668748452, + "y": 423.46223982569074 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 406.6600668748452, + "y": 421.9342398256907 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 403.7540668748452, + "y": 417.9342398256907 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.7540668748452, + "y": 412.99023982569076 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 406.6600668748452, + "y": 408.99023982569076 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 411.3620668748452, + "y": 407.46223982569074 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 416.0640668748452, + "y": 408.99023982569076 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 418.9700668748452, + "y": 412.99023982569076 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6095 + }, + "bounds": { + "#": 6101 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6104 + }, + "constraintImpulse": { + "#": 6105 + }, + "density": 0.001, + "force": { + "#": 6106 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 196, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6107 + }, + "positionImpulse": { + "#": 6108 + }, + "positionPrev": { + "#": 6109 + }, + "region": { + "#": 6110 + }, + "render": { + "#": 6111 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9337342546666494, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6113 + }, + "vertices": { + "#": 6114 + } + }, + [ + { + "#": 6096 + }, + { + "#": 6097 + }, + { + "#": 6098 + }, + { + "#": 6099 + }, + { + "#": 6100 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6102 + }, + "min": { + "#": 6103 + } + }, + { + "x": 439.6717398252552, + "y": 422.7251817335792 + }, + { + "x": 424.4557398252552, + "y": 406.7251817335792 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.06373982525514, + "y": 414.7251817335792 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 431.5560677289994, + "y": 411.89158702919264 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6112 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5666450018230194, + "y": 2.6886437144462434 + }, + [ + { + "#": 6115 + }, + { + "#": 6116 + }, + { + "#": 6117 + }, + { + "#": 6118 + }, + { + "#": 6119 + }, + { + "#": 6120 + }, + { + "#": 6121 + }, + { + "#": 6122 + }, + { + "#": 6123 + }, + { + "#": 6124 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 439.6717398252552, + "y": 417.19718173357916 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 436.7657398252552, + "y": 421.19718173357916 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 432.0637398252552, + "y": 422.7251817335792 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 427.3617398252552, + "y": 421.19718173357916 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 424.4557398252552, + "y": 417.19718173357916 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 424.4557398252552, + "y": 412.2531817335792 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 427.3617398252552, + "y": 408.2531817335792 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 432.0637398252552, + "y": 406.7251817335792 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 436.7657398252552, + "y": 408.2531817335792 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 439.6717398252552, + "y": 412.2531817335792 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6126 + }, + "bounds": { + "#": 6132 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6135 + }, + "constraintImpulse": { + "#": 6136 + }, + "density": 0.001, + "force": { + "#": 6137 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 197, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6138 + }, + "positionImpulse": { + "#": 6139 + }, + "positionPrev": { + "#": 6140 + }, + "region": { + "#": 6141 + }, + "render": { + "#": 6142 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1428557012550606, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6144 + }, + "vertices": { + "#": 6145 + } + }, + [ + { + "#": 6127 + }, + { + "#": 6128 + }, + { + "#": 6129 + }, + { + "#": 6130 + }, + { + "#": 6131 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6133 + }, + "min": { + "#": 6134 + } + }, + { + "x": 460.5292249711946, + "y": 419.10987773653835 + }, + { + "x": 445.3132249711946, + "y": 403.10987773653835 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.9212249711946, + "y": 411.1098777365383 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.2548284040287, + "y": 409.21808065735763 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,8,8", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6143 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6272989204821897, + "y": 1.9923594251457644 + }, + [ + { + "#": 6146 + }, + { + "#": 6147 + }, + { + "#": 6148 + }, + { + "#": 6149 + }, + { + "#": 6150 + }, + { + "#": 6151 + }, + { + "#": 6152 + }, + { + "#": 6153 + }, + { + "#": 6154 + }, + { + "#": 6155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460.5292249711946, + "y": 413.58187773653833 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 457.6232249711946, + "y": 417.58187773653833 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 452.9212249711946, + "y": 419.10987773653835 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 448.2192249711946, + "y": 417.58187773653833 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 445.3132249711946, + "y": 413.58187773653833 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 445.3132249711946, + "y": 408.63787773653837 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 448.2192249711946, + "y": 404.63787773653837 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 452.9212249711946, + "y": 403.10987773653835 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 457.6232249711946, + "y": 404.63787773653837 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 460.5292249711946, + "y": 408.63787773653837 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6157 + }, + "bounds": { + "#": 6163 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6166 + }, + "constraintImpulse": { + "#": 6167 + }, + "density": 0.001, + "force": { + "#": 6168 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 198, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6169 + }, + "positionImpulse": { + "#": 6170 + }, + "positionPrev": { + "#": 6171 + }, + "region": { + "#": 6172 + }, + "render": { + "#": 6173 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5563500072920011, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6175 + }, + "vertices": { + "#": 6176 + } + }, + [ + { + "#": 6158 + }, + { + "#": 6159 + }, + { + "#": 6160 + }, + { + "#": 6161 + }, + { + "#": 6162 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6164 + }, + "min": { + "#": 6165 + } + }, + { + "x": 478.98710979286517, + "y": 408.4691926261623 + }, + { + "x": 463.77110979286516, + "y": 392.4691926261623 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 471.3791097928652, + "y": 400.46919262616234 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.54780228021986, + "y": 398.8420423144896 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,8,8", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6174 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.623392964168545, + "y": 2.06260583714851 + }, + [ + { + "#": 6177 + }, + { + "#": 6178 + }, + { + "#": 6179 + }, + { + "#": 6180 + }, + { + "#": 6181 + }, + { + "#": 6182 + }, + { + "#": 6183 + }, + { + "#": 6184 + }, + { + "#": 6185 + }, + { + "#": 6186 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.98710979286517, + "y": 402.94119262616226 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 476.08110979286516, + "y": 406.94119262616226 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 471.37910979286517, + "y": 408.4691926261623 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.67710979286517, + "y": 406.94119262616226 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 463.77110979286516, + "y": 402.94119262616226 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 463.77110979286516, + "y": 397.9971926261623 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 466.67710979286517, + "y": 393.9971926261623 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 471.37910979286517, + "y": 392.4691926261623 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 476.08110979286516, + "y": 393.9971926261623 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.98710979286517, + "y": 397.9971926261623 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6188 + }, + "bounds": { + "#": 6194 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6197 + }, + "constraintImpulse": { + "#": 6198 + }, + "density": 0.001, + "force": { + "#": 6199 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 199, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6200 + }, + "positionImpulse": { + "#": 6201 + }, + "positionPrev": { + "#": 6202 + }, + "region": { + "#": 6203 + }, + "render": { + "#": 6204 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.074304355542074, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6206 + }, + "vertices": { + "#": 6207 + } + }, + [ + { + "#": 6189 + }, + { + "#": 6190 + }, + { + "#": 6191 + }, + { + "#": 6192 + }, + { + "#": 6193 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6195 + }, + "min": { + "#": 6196 + } + }, + { + "x": 499.66816681437797, + "y": 405.8782646288385 + }, + { + "x": 484.45216681437796, + "y": 389.8782646288385 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.060166814378, + "y": 397.87826462883845 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 491.22144013037183, + "y": 396.82033204183455 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6205 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6299525589702171, + "y": 1.5766271446358928 + }, + [ + { + "#": 6208 + }, + { + "#": 6209 + }, + { + "#": 6210 + }, + { + "#": 6211 + }, + { + "#": 6212 + }, + { + "#": 6213 + }, + { + "#": 6214 + }, + { + "#": 6215 + }, + { + "#": 6216 + }, + { + "#": 6217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 499.66816681437797, + "y": 400.3502646288385 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 496.76216681437796, + "y": 404.3502646288385 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 492.06016681437796, + "y": 405.8782646288385 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 487.35816681437797, + "y": 404.3502646288385 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 484.45216681437796, + "y": 400.3502646288385 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 484.45216681437796, + "y": 395.4062646288385 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 487.35816681437797, + "y": 391.4062646288385 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 492.06016681437796, + "y": 389.8782646288385 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 496.76216681437796, + "y": 391.4062646288385 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 499.66816681437797, + "y": 395.4062646288385 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6219 + }, + "bounds": { + "#": 6225 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6228 + }, + "constraintImpulse": { + "#": 6229 + }, + "density": 0.001, + "force": { + "#": 6230 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 200, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6231 + }, + "positionImpulse": { + "#": 6232 + }, + "positionPrev": { + "#": 6233 + }, + "region": { + "#": 6234 + }, + "render": { + "#": 6235 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.973652430815986, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6237 + }, + "vertices": { + "#": 6238 + } + }, + [ + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + }, + { + "#": 6223 + }, + { + "#": 6224 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6226 + }, + "min": { + "#": 6227 + } + }, + { + "x": 520.2404656307632, + "y": 405.55264320728156 + }, + { + "x": 505.02446563076313, + "y": 389.55264320728156 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.6324656307634, + "y": 397.5526432072817 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 511.8629814145553, + "y": 396.68235723875483 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6236 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5834525589673376, + "y": 1.4677978785189794 + }, + [ + { + "#": 6239 + }, + { + "#": 6240 + }, + { + "#": 6241 + }, + { + "#": 6242 + }, + { + "#": 6243 + }, + { + "#": 6244 + }, + { + "#": 6245 + }, + { + "#": 6246 + }, + { + "#": 6247 + }, + { + "#": 6248 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520.2404656307632, + "y": 400.02464320728154 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 517.3344656307632, + "y": 404.02464320728154 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 512.6324656307631, + "y": 405.55264320728156 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 507.93046563076314, + "y": 404.02464320728154 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 505.02446563076313, + "y": 400.02464320728154 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 505.02446563076313, + "y": 395.0806432072816 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 507.93046563076314, + "y": 391.0806432072816 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 512.6324656307631, + "y": 389.55264320728156 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 517.3344656307632, + "y": 391.0806432072816 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 520.2404656307632, + "y": 395.0806432072816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6250 + }, + "bounds": { + "#": 6256 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6259 + }, + "constraintImpulse": { + "#": 6260 + }, + "density": 0.001, + "force": { + "#": 6261 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 201, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6262 + }, + "positionImpulse": { + "#": 6263 + }, + "positionPrev": { + "#": 6264 + }, + "region": { + "#": 6265 + }, + "render": { + "#": 6266 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.23295909893316, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6268 + }, + "vertices": { + "#": 6269 + } + }, + [ + { + "#": 6251 + }, + { + "#": 6252 + }, + { + "#": 6253 + }, + { + "#": 6254 + }, + { + "#": 6255 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6257 + }, + "min": { + "#": 6258 + } + }, + { + "x": 540.5134741211247, + "y": 407.3986761135537 + }, + { + "x": 525.2974741211248, + "y": 391.3986761135537 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 532.9054741211243, + "y": 399.3986761135536 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 532.3451183777108, + "y": 398.2775511330395 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6267 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.43384485531714745, + "y": 1.7162269853176326 + }, + [ + { + "#": 6270 + }, + { + "#": 6271 + }, + { + "#": 6272 + }, + { + "#": 6273 + }, + { + "#": 6274 + }, + { + "#": 6275 + }, + { + "#": 6276 + }, + { + "#": 6277 + }, + { + "#": 6278 + }, + { + "#": 6279 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540.5134741211247, + "y": 401.87067611355366 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 537.6074741211247, + "y": 405.87067611355366 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 532.9054741211247, + "y": 407.3986761135537 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 528.2034741211247, + "y": 405.87067611355366 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 525.2974741211248, + "y": 401.87067611355366 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 525.2974741211248, + "y": 396.9266761135537 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.2034741211247, + "y": 392.9266761135537 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 532.9054741211247, + "y": 391.3986761135537 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 537.6074741211247, + "y": 392.9266761135537 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 540.5134741211247, + "y": 396.9266761135537 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6281 + }, + "bounds": { + "#": 6287 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6290 + }, + "constraintImpulse": { + "#": 6291 + }, + "density": 0.001, + "force": { + "#": 6292 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 202, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6293 + }, + "positionImpulse": { + "#": 6294 + }, + "positionPrev": { + "#": 6295 + }, + "region": { + "#": 6296 + }, + "render": { + "#": 6297 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.085387842838437, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6299 + }, + "vertices": { + "#": 6300 + } + }, + [ + { + "#": 6282 + }, + { + "#": 6283 + }, + { + "#": 6284 + }, + { + "#": 6285 + }, + { + "#": 6286 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6288 + }, + "min": { + "#": 6289 + } + }, + { + "x": 557.1391758104397, + "y": 418.9340724529917 + }, + { + "x": 541.9231758104398, + "y": 402.9340724529917 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 549.5311758104401, + "y": 410.93407245299176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 549.7679304135768, + "y": 409.14492018149565 + }, + { + "endCol": 11, + "endRow": 8, + "id": "11,11,8,8", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6298 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.26778333193146864, + "y": 2.0134180410951785 + }, + [ + { + "#": 6301 + }, + { + "#": 6302 + }, + { + "#": 6303 + }, + { + "#": 6304 + }, + { + "#": 6305 + }, + { + "#": 6306 + }, + { + "#": 6307 + }, + { + "#": 6308 + }, + { + "#": 6309 + }, + { + "#": 6310 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 557.1391758104397, + "y": 413.4060724529917 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 554.2331758104398, + "y": 417.4060724529917 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5311758104398, + "y": 418.9340724529917 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.8291758104398, + "y": 417.4060724529917 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 541.9231758104398, + "y": 413.4060724529917 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 541.9231758104398, + "y": 408.4620724529917 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 544.8291758104398, + "y": 404.4620724529917 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 549.5311758104398, + "y": 402.9340724529917 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 554.2331758104398, + "y": 404.4620724529917 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 557.1391758104397, + "y": 408.4620724529917 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6312 + }, + "bounds": { + "#": 6318 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6321 + }, + "constraintImpulse": { + "#": 6322 + }, + "density": 0.001, + "force": { + "#": 6323 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 203, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6324 + }, + "positionImpulse": { + "#": 6325 + }, + "positionPrev": { + "#": 6326 + }, + "region": { + "#": 6327 + }, + "render": { + "#": 6328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7464186420834835, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6330 + }, + "vertices": { + "#": 6331 + } + }, + [ + { + "#": 6313 + }, + { + "#": 6314 + }, + { + "#": 6315 + }, + { + "#": 6316 + }, + { + "#": 6317 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6319 + }, + "min": { + "#": 6320 + } + }, + { + "x": 577.2629816530033, + "y": 422.02845595371645 + }, + { + "x": 562.0469816530034, + "y": 406.02845595371645 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 569.6549816530032, + "y": 414.02845595371645 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 570.0930434189346, + "y": 411.42146269014887 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,8,8", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6329 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.43445654616391494, + "y": 2.570741663869569 + }, + [ + { + "#": 6332 + }, + { + "#": 6333 + }, + { + "#": 6334 + }, + { + "#": 6335 + }, + { + "#": 6336 + }, + { + "#": 6337 + }, + { + "#": 6338 + }, + { + "#": 6339 + }, + { + "#": 6340 + }, + { + "#": 6341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 577.2629816530033, + "y": 416.5004559537164 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 574.3569816530033, + "y": 420.5004559537164 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 569.6549816530033, + "y": 422.02845595371645 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 564.9529816530033, + "y": 420.5004559537164 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 562.0469816530034, + "y": 416.5004559537164 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 562.0469816530034, + "y": 411.55645595371647 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 564.9529816530033, + "y": 407.55645595371647 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 569.6549816530033, + "y": 406.02845595371645 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 574.3569816530033, + "y": 407.55645595371647 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 577.2629816530033, + "y": 411.55645595371647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6343 + }, + "bounds": { + "#": 6349 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6352 + }, + "constraintImpulse": { + "#": 6353 + }, + "density": 0.001, + "force": { + "#": 6354 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 204, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6355 + }, + "positionImpulse": { + "#": 6356 + }, + "positionPrev": { + "#": 6357 + }, + "region": { + "#": 6358 + }, + "render": { + "#": 6359 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8093024732351912, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6361 + }, + "vertices": { + "#": 6362 + } + }, + [ + { + "#": 6344 + }, + { + "#": 6345 + }, + { + "#": 6346 + }, + { + "#": 6347 + }, + { + "#": 6348 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6350 + }, + "min": { + "#": 6351 + } + }, + { + "x": 597.5594039136137, + "y": 422.2633240172104 + }, + { + "x": 582.3434039136138, + "y": 406.2633240172104 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 589.9514039136135, + "y": 414.2633240172104 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 590.4198598029528, + "y": 411.56269807129286 + }, + { + "endCol": 12, + "endRow": 8, + "id": "12,12,8,8", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6360 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.46308779436265013, + "y": 2.637118473117937 + }, + [ + { + "#": 6363 + }, + { + "#": 6364 + }, + { + "#": 6365 + }, + { + "#": 6366 + }, + { + "#": 6367 + }, + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + }, + { + "#": 6371 + }, + { + "#": 6372 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 597.5594039136137, + "y": 416.73532401721036 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 594.6534039136137, + "y": 420.73532401721036 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 589.9514039136137, + "y": 422.2633240172104 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 585.2494039136137, + "y": 420.73532401721036 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 582.3434039136138, + "y": 416.73532401721036 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 582.3434039136138, + "y": 411.7913240172104 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 585.2494039136137, + "y": 407.7913240172104 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 589.9514039136137, + "y": 406.2633240172104 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 594.6534039136137, + "y": 407.7913240172104 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 597.5594039136137, + "y": 411.7913240172104 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6374 + }, + "bounds": { + "#": 6380 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6383 + }, + "constraintImpulse": { + "#": 6384 + }, + "density": 0.001, + "force": { + "#": 6385 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 205, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6386 + }, + "positionImpulse": { + "#": 6387 + }, + "positionPrev": { + "#": 6388 + }, + "region": { + "#": 6389 + }, + "render": { + "#": 6390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.411449770979547, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6392 + }, + "vertices": { + "#": 6393 + } + }, + [ + { + "#": 6375 + }, + { + "#": 6376 + }, + { + "#": 6377 + }, + { + "#": 6378 + }, + { + "#": 6379 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6381 + }, + "min": { + "#": 6382 + } + }, + { + "x": 232.2633580452699, + "y": 442.60105470806667 + }, + { + "x": 217.0473580452699, + "y": 426.60105470806667 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 224.65535804526982, + "y": 434.60105470806656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.64791884643353, + "y": 432.75939356826973 + }, + { + "endCol": 4, + "endRow": 9, + "id": "4,4,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6391 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 3.0602549931160183, + "y": 1.8050100775022315 + }, + [ + { + "#": 6394 + }, + { + "#": 6395 + }, + { + "#": 6396 + }, + { + "#": 6397 + }, + { + "#": 6398 + }, + { + "#": 6399 + }, + { + "#": 6400 + }, + { + "#": 6401 + }, + { + "#": 6402 + }, + { + "#": 6403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 232.2633580452699, + "y": 437.07305470806665 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 229.3573580452699, + "y": 441.07305470806665 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 224.6553580452699, + "y": 442.60105470806667 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 219.9533580452699, + "y": 441.07305470806665 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 217.0473580452699, + "y": 437.07305470806665 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 217.0473580452699, + "y": 432.1290547080667 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 219.9533580452699, + "y": 428.1290547080667 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 224.6553580452699, + "y": 426.60105470806667 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 229.3573580452699, + "y": 428.1290547080667 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 232.2633580452699, + "y": 432.1290547080667 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6405 + }, + "bounds": { + "#": 6411 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6414 + }, + "constraintImpulse": { + "#": 6415 + }, + "density": 0.001, + "force": { + "#": 6416 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 206, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6417 + }, + "positionImpulse": { + "#": 6418 + }, + "positionPrev": { + "#": 6419 + }, + "region": { + "#": 6420 + }, + "render": { + "#": 6421 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0478235636788455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6423 + }, + "vertices": { + "#": 6424 + } + }, + [ + { + "#": 6406 + }, + { + "#": 6407 + }, + { + "#": 6408 + }, + { + "#": 6409 + }, + { + "#": 6410 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6412 + }, + "min": { + "#": 6413 + } + }, + { + "x": 256.5467319596311, + "y": 439.26912542558364 + }, + { + "x": 238.44597878660997, + "y": 422.54617263773486 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 246.05397878661003, + "y": 430.5461726377348 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 244.45045718527675, + "y": 431.6529379566994 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6422 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.60352852848942, + "y": -1.1067701001513228 + }, + [ + { + "#": 6425 + }, + { + "#": 6426 + }, + { + "#": 6427 + }, + { + "#": 6428 + }, + { + "#": 6429 + }, + { + "#": 6430 + }, + { + "#": 6431 + }, + { + "#": 6432 + }, + { + "#": 6433 + }, + { + "#": 6434 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 253.66197878660998, + "y": 433.01817263773484 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250.75597878660997, + "y": 437.01817263773484 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 246.05397878660997, + "y": 438.54617263773486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.35197878660998, + "y": 437.01817263773484 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 238.44597878660997, + "y": 433.01817263773484 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 238.44597878660997, + "y": 428.0741726377349 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 241.35197878660998, + "y": 424.0741726377349 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 246.05397878660997, + "y": 422.54617263773486 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250.75597878660997, + "y": 424.0741726377349 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 253.66197878660998, + "y": 428.0741726377349 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6436 + }, + "bounds": { + "#": 6442 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6445 + }, + "constraintImpulse": { + "#": 6446 + }, + "density": 0.001, + "force": { + "#": 6447 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 207, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6448 + }, + "positionImpulse": { + "#": 6449 + }, + "positionPrev": { + "#": 6450 + }, + "region": { + "#": 6451 + }, + "render": { + "#": 6452 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9272525804679776, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6454 + }, + "vertices": { + "#": 6455 + } + }, + [ + { + "#": 6437 + }, + { + "#": 6438 + }, + { + "#": 6439 + }, + { + "#": 6440 + }, + { + "#": 6441 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6443 + }, + "min": { + "#": 6444 + } + }, + { + "x": 276.0052415456919, + "y": 428.1965115785269 + }, + { + "x": 258.52501267838636, + "y": 411.7065480713537 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 266.1330126783865, + "y": 419.7065480713537 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.43108821550175, + "y": 420.3520014846332 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6453 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.7019323328824498, + "y": -0.6454563979694967 + }, + [ + { + "#": 6456 + }, + { + "#": 6457 + }, + { + "#": 6458 + }, + { + "#": 6459 + }, + { + "#": 6460 + }, + { + "#": 6461 + }, + { + "#": 6462 + }, + { + "#": 6463 + }, + { + "#": 6464 + }, + { + "#": 6465 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 273.7410126783864, + "y": 422.1785480713537 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 270.8350126783864, + "y": 426.1785480713537 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 266.1330126783865, + "y": 427.7065480713537 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 261.4310126783864, + "y": 426.1785480713537 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 258.52501267838636, + "y": 422.1785480713537 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 258.52501267838636, + "y": 417.23454807135374 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 261.4310126783864, + "y": 413.23454807135374 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 266.1330126783865, + "y": 411.7065480713537 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 270.8350126783864, + "y": 413.23454807135374 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 273.7410126783864, + "y": 417.23454807135374 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6467 + }, + "bounds": { + "#": 6473 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6476 + }, + "constraintImpulse": { + "#": 6477 + }, + "density": 0.001, + "force": { + "#": 6478 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 208, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6479 + }, + "positionImpulse": { + "#": 6480 + }, + "positionPrev": { + "#": 6481 + }, + "region": { + "#": 6482 + }, + "render": { + "#": 6483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2276396789041704, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6485 + }, + "vertices": { + "#": 6486 + } + }, + [ + { + "#": 6468 + }, + { + "#": 6469 + }, + { + "#": 6470 + }, + { + "#": 6471 + }, + { + "#": 6472 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6474 + }, + "min": { + "#": 6475 + } + }, + { + "x": 296.26498291215864, + "y": 422.46111823971836 + }, + { + "x": 279.65384118933935, + "y": 405.59731117301277 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.2618411893391, + "y": 413.59731117301277 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 286.1579672027878, + "y": 413.73136742888806 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6484 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.1038823421239385, + "y": -0.13405727058966477 + }, + [ + { + "#": 6487 + }, + { + "#": 6488 + }, + { + "#": 6489 + }, + { + "#": 6490 + }, + { + "#": 6491 + }, + { + "#": 6492 + }, + { + "#": 6493 + }, + { + "#": 6494 + }, + { + "#": 6495 + }, + { + "#": 6496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 294.86984118933935, + "y": 416.06931117301275 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 291.96384118933935, + "y": 420.06931117301275 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 287.26184118933935, + "y": 421.59731117301277 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 282.55984118933935, + "y": 420.06931117301275 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 279.65384118933935, + "y": 416.06931117301275 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 279.65384118933935, + "y": 411.1253111730128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 282.55984118933935, + "y": 407.1253111730128 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.26184118933935, + "y": 405.59731117301277 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 291.96384118933935, + "y": 407.1253111730128 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 294.86984118933935, + "y": 411.1253111730128 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6498 + }, + "bounds": { + "#": 6504 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6507 + }, + "constraintImpulse": { + "#": 6508 + }, + "density": 0.001, + "force": { + "#": 6509 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 209, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6510 + }, + "positionImpulse": { + "#": 6511 + }, + "positionPrev": { + "#": 6512 + }, + "region": { + "#": 6513 + }, + "render": { + "#": 6514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7820210501931761, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6516 + }, + "vertices": { + "#": 6517 + } + }, + [ + { + "#": 6499 + }, + { + "#": 6500 + }, + { + "#": 6501 + }, + { + "#": 6502 + }, + { + "#": 6503 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6505 + }, + "min": { + "#": 6506 + } + }, + { + "x": 316.58667614420415, + "y": 421.53820477719546 + }, + { + "x": 300.5195223171419, + "y": 404.8662110248744 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.127522317142, + "y": 412.8662110248743 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.29153309381076, + "y": 412.7646871312078 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6515 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.8359975789038003, + "y": 0.1015249083808385 + }, + [ + { + "#": 6518 + }, + { + "#": 6519 + }, + { + "#": 6520 + }, + { + "#": 6521 + }, + { + "#": 6522 + }, + { + "#": 6523 + }, + { + "#": 6524 + }, + { + "#": 6525 + }, + { + "#": 6526 + }, + { + "#": 6527 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.7355223171419, + "y": 415.3382110248744 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.8295223171419, + "y": 419.3382110248744 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.1275223171419, + "y": 420.8662110248744 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.4255223171419, + "y": 419.3382110248744 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.5195223171419, + "y": 415.3382110248744 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 300.5195223171419, + "y": 410.39421102487444 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.4255223171419, + "y": 406.39421102487444 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.1275223171419, + "y": 404.8662110248744 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 312.8295223171419, + "y": 406.39421102487444 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 315.7355223171419, + "y": 410.39421102487444 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6529 + }, + "bounds": { + "#": 6535 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6538 + }, + "constraintImpulse": { + "#": 6539 + }, + "density": 0.001, + "force": { + "#": 6540 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 210, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6541 + }, + "positionImpulse": { + "#": 6542 + }, + "positionPrev": { + "#": 6543 + }, + "region": { + "#": 6544 + }, + "render": { + "#": 6545 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0020749386675312, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6547 + }, + "vertices": { + "#": 6548 + } + }, + [ + { + "#": 6530 + }, + { + "#": 6531 + }, + { + "#": 6532 + }, + { + "#": 6533 + }, + { + "#": 6534 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6536 + }, + "min": { + "#": 6537 + } + }, + { + "x": 301.804444373905, + "y": 405.39572191075064 + }, + { + "x": 286.588444373905, + "y": 389.39572191075064 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.1964443739049, + "y": 397.39572191075064 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.6529280265224, + "y": 396.28159117164563 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6546 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.49615151771479304, + "y": 1.0690474973145 + }, + [ + { + "#": 6549 + }, + { + "#": 6550 + }, + { + "#": 6551 + }, + { + "#": 6552 + }, + { + "#": 6553 + }, + { + "#": 6554 + }, + { + "#": 6555 + }, + { + "#": 6556 + }, + { + "#": 6557 + }, + { + "#": 6558 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 301.804444373905, + "y": 399.8677219107506 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 298.8984443739051, + "y": 403.8677219107506 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 294.1964443739051, + "y": 405.39572191075064 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 289.4944443739051, + "y": 403.8677219107506 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 286.588444373905, + "y": 399.8677219107506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 286.588444373905, + "y": 394.92372191075066 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 289.4944443739051, + "y": 390.92372191075066 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 294.1964443739051, + "y": 389.39572191075064 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 298.8984443739051, + "y": 390.92372191075066 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.804444373905, + "y": 394.92372191075066 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6560 + }, + "bounds": { + "#": 6566 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6569 + }, + "constraintImpulse": { + "#": 6570 + }, + "density": 0.001, + "force": { + "#": 6571 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 211, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6572 + }, + "positionImpulse": { + "#": 6573 + }, + "positionPrev": { + "#": 6574 + }, + "region": { + "#": 6575 + }, + "render": { + "#": 6576 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4458859350793418, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6578 + }, + "vertices": { + "#": 6579 + } + }, + [ + { + "#": 6561 + }, + { + "#": 6562 + }, + { + "#": 6563 + }, + { + "#": 6564 + }, + { + "#": 6565 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6567 + }, + "min": { + "#": 6568 + } + }, + { + "x": 319.55970075011555, + "y": 416.5083279218953 + }, + { + "x": 304.34370075011554, + "y": 400.5083279218953 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 311.95170075011555, + "y": 408.5083279218953 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.04692368946127, + "y": 408.56936095391535 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6577 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.006825839575185455, + "y": -0.002725374613248732 + }, + [ + { + "#": 6580 + }, + { + "#": 6581 + }, + { + "#": 6582 + }, + { + "#": 6583 + }, + { + "#": 6584 + }, + { + "#": 6585 + }, + { + "#": 6586 + }, + { + "#": 6587 + }, + { + "#": 6588 + }, + { + "#": 6589 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.55970075011555, + "y": 410.98032792189525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 316.65370075011555, + "y": 414.98032792189525 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.95170075011555, + "y": 416.5083279218953 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 307.24970075011555, + "y": 414.98032792189525 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 304.34370075011554, + "y": 410.98032792189525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 304.34370075011554, + "y": 406.0363279218953 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 307.24970075011555, + "y": 402.0363279218953 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 311.95170075011555, + "y": 400.5083279218953 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 316.65370075011555, + "y": 402.0363279218953 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 319.55970075011555, + "y": 406.0363279218953 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6591 + }, + "bounds": { + "#": 6597 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6600 + }, + "constraintImpulse": { + "#": 6601 + }, + "density": 0.001, + "force": { + "#": 6602 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 212, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6603 + }, + "positionImpulse": { + "#": 6604 + }, + "positionPrev": { + "#": 6605 + }, + "region": { + "#": 6606 + }, + "render": { + "#": 6607 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.376186060263882, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6609 + }, + "vertices": { + "#": 6610 + } + }, + [ + { + "#": 6592 + }, + { + "#": 6593 + }, + { + "#": 6594 + }, + { + "#": 6595 + }, + { + "#": 6596 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6598 + }, + "min": { + "#": 6599 + } + }, + { + "x": 339.5882012719583, + "y": 427.0727502712392 + }, + { + "x": 323.6255100211543, + "y": 410.88171929951193 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 331.9802012719584, + "y": 418.88171929951193 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 332.69544900383386, + "y": 419.15297639696087 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6608 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.7152556018731957, + "y": -0.27126008213889463 + }, + [ + { + "#": 6611 + }, + { + "#": 6612 + }, + { + "#": 6613 + }, + { + "#": 6614 + }, + { + "#": 6615 + }, + { + "#": 6616 + }, + { + "#": 6617 + }, + { + "#": 6618 + }, + { + "#": 6619 + }, + { + "#": 6620 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 339.5882012719583, + "y": 421.3537192995119 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.6822012719584, + "y": 425.3537192995119 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.9802012719584, + "y": 426.88171929951193 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 327.2782012719584, + "y": 425.3537192995119 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 324.3722012719583, + "y": 421.3537192995119 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 324.3722012719583, + "y": 416.40971929951195 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.2782012719584, + "y": 412.40971929951195 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 331.9802012719584, + "y": 410.88171929951193 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 336.6822012719584, + "y": 412.40971929951195 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 339.5882012719583, + "y": 416.40971929951195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6622 + }, + "bounds": { + "#": 6628 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6631 + }, + "constraintImpulse": { + "#": 6632 + }, + "density": 0.001, + "force": { + "#": 6633 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 213, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6634 + }, + "positionImpulse": { + "#": 6635 + }, + "positionPrev": { + "#": 6636 + }, + "region": { + "#": 6637 + }, + "render": { + "#": 6638 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9018391627982916, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6640 + }, + "vertices": { + "#": 6641 + } + }, + [ + { + "#": 6623 + }, + { + "#": 6624 + }, + { + "#": 6625 + }, + { + "#": 6626 + }, + { + "#": 6627 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6629 + }, + "min": { + "#": 6630 + } + }, + { + "x": 361.4240661522973, + "y": 435.42707057674306 + }, + { + "x": 346.2080661522973, + "y": 419.42707057674306 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 353.81606615229714, + "y": 427.42707057674306 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355.24190012463527, + "y": 427.17253751317105 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6639 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.3371536996866098, + "y": 0.34524077566487676 + }, + [ + { + "#": 6642 + }, + { + "#": 6643 + }, + { + "#": 6644 + }, + { + "#": 6645 + }, + { + "#": 6646 + }, + { + "#": 6647 + }, + { + "#": 6648 + }, + { + "#": 6649 + }, + { + "#": 6650 + }, + { + "#": 6651 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 361.4240661522973, + "y": 429.89907057674304 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 358.5180661522973, + "y": 433.89907057674304 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 353.8160661522973, + "y": 435.42707057674306 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 349.1140661522973, + "y": 433.89907057674304 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 346.2080661522973, + "y": 429.89907057674304 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 346.2080661522973, + "y": 424.9550705767431 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 349.1140661522973, + "y": 420.9550705767431 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 353.8160661522973, + "y": 419.42707057674306 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 358.5180661522973, + "y": 420.9550705767431 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 361.4240661522973, + "y": 424.9550705767431 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6653 + }, + "bounds": { + "#": 6659 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6662 + }, + "constraintImpulse": { + "#": 6663 + }, + "density": 0.001, + "force": { + "#": 6664 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 214, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6665 + }, + "positionImpulse": { + "#": 6666 + }, + "positionPrev": { + "#": 6667 + }, + "region": { + "#": 6668 + }, + "render": { + "#": 6669 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.591824211158226, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6671 + }, + "vertices": { + "#": 6672 + } + }, + [ + { + "#": 6654 + }, + { + "#": 6655 + }, + { + "#": 6656 + }, + { + "#": 6657 + }, + { + "#": 6658 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6660 + }, + "min": { + "#": 6661 + } + }, + { + "x": 385.2232952801288, + "y": 440.578880503548 + }, + { + "x": 370.0072952801288, + "y": 424.578880503548 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.61529528012886, + "y": 432.57888050354813 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 379.31525676308013, + "y": 431.1640480604104 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6670 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.7223094251216935, + "y": 1.3785320861609307 + }, + [ + { + "#": 6673 + }, + { + "#": 6674 + }, + { + "#": 6675 + }, + { + "#": 6676 + }, + { + "#": 6677 + }, + { + "#": 6678 + }, + { + "#": 6679 + }, + { + "#": 6680 + }, + { + "#": 6681 + }, + { + "#": 6682 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 385.2232952801288, + "y": 435.050880503548 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 382.3172952801288, + "y": 439.050880503548 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 377.6152952801288, + "y": 440.578880503548 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 372.9132952801288, + "y": 439.050880503548 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 370.0072952801288, + "y": 435.050880503548 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370.0072952801288, + "y": 430.10688050354804 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 372.9132952801288, + "y": 426.10688050354804 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 377.6152952801288, + "y": 424.578880503548 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 382.3172952801288, + "y": 426.10688050354804 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 385.2232952801288, + "y": 430.10688050354804 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6684 + }, + "bounds": { + "#": 6690 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6693 + }, + "constraintImpulse": { + "#": 6694 + }, + "density": 0.001, + "force": { + "#": 6695 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 215, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6696 + }, + "positionImpulse": { + "#": 6697 + }, + "positionPrev": { + "#": 6698 + }, + "region": { + "#": 6699 + }, + "render": { + "#": 6700 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.881434550114928, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6702 + }, + "vertices": { + "#": 6703 + } + }, + [ + { + "#": 6685 + }, + { + "#": 6686 + }, + { + "#": 6687 + }, + { + "#": 6688 + }, + { + "#": 6689 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6691 + }, + "min": { + "#": 6692 + } + }, + { + "x": 408.77549253195434, + "y": 442.4693901887474 + }, + { + "x": 393.55949253195433, + "y": 426.4693901887474 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.1674925319544, + "y": 434.46939018874735 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 402.7911748131244, + "y": 432.35332203601877 + }, + { + "endCol": 8, + "endRow": 9, + "id": "8,8,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6701 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.653219829114846, + "y": 2.054833590982412 + }, + [ + { + "#": 6704 + }, + { + "#": 6705 + }, + { + "#": 6706 + }, + { + "#": 6707 + }, + { + "#": 6708 + }, + { + "#": 6709 + }, + { + "#": 6710 + }, + { + "#": 6711 + }, + { + "#": 6712 + }, + { + "#": 6713 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 408.77549253195434, + "y": 436.9413901887474 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405.86949253195434, + "y": 440.9413901887474 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 401.16749253195434, + "y": 442.4693901887474 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.46549253195434, + "y": 440.9413901887474 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 393.55949253195433, + "y": 436.9413901887474 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 393.55949253195433, + "y": 431.99739018874743 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 396.46549253195434, + "y": 427.99739018874743 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 401.16749253195434, + "y": 426.4693901887474 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 405.86949253195434, + "y": 427.99739018874743 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 408.77549253195434, + "y": 431.99739018874743 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6715 + }, + "bounds": { + "#": 6721 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6724 + }, + "constraintImpulse": { + "#": 6725 + }, + "density": 0.001, + "force": { + "#": 6726 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 216, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6727 + }, + "positionImpulse": { + "#": 6728 + }, + "positionPrev": { + "#": 6729 + }, + "region": { + "#": 6730 + }, + "render": { + "#": 6731 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8992026233203285, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6733 + }, + "vertices": { + "#": 6734 + } + }, + [ + { + "#": 6716 + }, + { + "#": 6717 + }, + { + "#": 6718 + }, + { + "#": 6719 + }, + { + "#": 6720 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6722 + }, + "min": { + "#": 6723 + } + }, + { + "x": 431.6213104040144, + "y": 442.7129844041587 + }, + { + "x": 416.4053104040144, + "y": 426.7129844041587 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 424.0133104040144, + "y": 434.7129844041587 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425.6040414845292, + "y": 432.4360906850606 + }, + { + "endCol": 8, + "endRow": 9, + "id": "8,8,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6732 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.6311084398203093, + "y": 2.1756888170185107 + }, + [ + { + "#": 6735 + }, + { + "#": 6736 + }, + { + "#": 6737 + }, + { + "#": 6738 + }, + { + "#": 6739 + }, + { + "#": 6740 + }, + { + "#": 6741 + }, + { + "#": 6742 + }, + { + "#": 6743 + }, + { + "#": 6744 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 431.6213104040144, + "y": 437.1849844041587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 428.7153104040144, + "y": 441.1849844041587 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 424.0133104040144, + "y": 442.7129844041587 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 419.3113104040144, + "y": 441.1849844041587 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 416.4053104040144, + "y": 437.1849844041587 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 416.4053104040144, + "y": 432.2409844041587 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 419.3113104040144, + "y": 428.2409844041587 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 424.0133104040144, + "y": 426.7129844041587 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 428.7153104040144, + "y": 428.2409844041587 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 431.6213104040144, + "y": 432.2409844041587 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6746 + }, + "bounds": { + "#": 6752 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6755 + }, + "constraintImpulse": { + "#": 6756 + }, + "density": 0.001, + "force": { + "#": 6757 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 217, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6758 + }, + "positionImpulse": { + "#": 6759 + }, + "positionPrev": { + "#": 6760 + }, + "region": { + "#": 6761 + }, + "render": { + "#": 6762 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.133078954678357, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6764 + }, + "vertices": { + "#": 6765 + } + }, + [ + { + "#": 6747 + }, + { + "#": 6748 + }, + { + "#": 6749 + }, + { + "#": 6750 + }, + { + "#": 6751 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6753 + }, + "min": { + "#": 6754 + } + }, + { + "x": 452.9705968601576, + "y": 438.2227541215334 + }, + { + "x": 437.7545968601576, + "y": 422.2227541215334 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 445.3625968601576, + "y": 430.22275412153346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 447.3590038041098, + "y": 429.0551758223506 + }, + { + "endCol": 9, + "endRow": 9, + "id": "9,9,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6763 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.9301781484266485, + "y": 1.3257659291115829 + }, + [ + { + "#": 6766 + }, + { + "#": 6767 + }, + { + "#": 6768 + }, + { + "#": 6769 + }, + { + "#": 6770 + }, + { + "#": 6771 + }, + { + "#": 6772 + }, + { + "#": 6773 + }, + { + "#": 6774 + }, + { + "#": 6775 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 452.9705968601576, + "y": 432.6947541215334 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450.0645968601576, + "y": 436.6947541215334 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 445.3625968601576, + "y": 438.2227541215334 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440.6605968601576, + "y": 436.6947541215334 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 437.7545968601576, + "y": 432.6947541215334 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 437.7545968601576, + "y": 427.7507541215334 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 440.6605968601576, + "y": 423.7507541215334 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 445.3625968601576, + "y": 422.2227541215334 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 450.0645968601576, + "y": 423.7507541215334 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 452.9705968601576, + "y": 427.7507541215334 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6777 + }, + "bounds": { + "#": 6783 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6786 + }, + "constraintImpulse": { + "#": 6787 + }, + "density": 0.001, + "force": { + "#": 6788 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 218, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6789 + }, + "positionImpulse": { + "#": 6790 + }, + "positionPrev": { + "#": 6791 + }, + "region": { + "#": 6792 + }, + "render": { + "#": 6793 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.055992259065146, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6795 + }, + "vertices": { + "#": 6796 + } + }, + [ + { + "#": 6778 + }, + { + "#": 6779 + }, + { + "#": 6780 + }, + { + "#": 6781 + }, + { + "#": 6782 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6784 + }, + "min": { + "#": 6785 + } + }, + { + "x": 470.2982751552781, + "y": 425.54788615616235 + }, + { + "x": 455.08227515527807, + "y": 409.54788615616235 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.6902751552781, + "y": 417.5478861561624 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 465.26867282896427, + "y": 416.7366675579875 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,8,8", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6794 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.3141003435910648, + "y": 1.3768474448430652 + }, + [ + { + "#": 6797 + }, + { + "#": 6798 + }, + { + "#": 6799 + }, + { + "#": 6800 + }, + { + "#": 6801 + }, + { + "#": 6802 + }, + { + "#": 6803 + }, + { + "#": 6804 + }, + { + "#": 6805 + }, + { + "#": 6806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 470.2982751552781, + "y": 420.01988615616233 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 467.39227515527807, + "y": 424.01988615616233 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 462.6902751552781, + "y": 425.54788615616235 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 457.9882751552781, + "y": 424.01988615616233 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 455.08227515527807, + "y": 420.01988615616233 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 455.08227515527807, + "y": 415.07588615616237 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 457.9882751552781, + "y": 411.07588615616237 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 462.6902751552781, + "y": 409.54788615616235 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 467.39227515527807, + "y": 411.07588615616237 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 470.2982751552781, + "y": 415.07588615616237 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6808 + }, + "bounds": { + "#": 6814 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6817 + }, + "constraintImpulse": { + "#": 6818 + }, + "density": 0.001, + "force": { + "#": 6819 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 219, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6820 + }, + "positionImpulse": { + "#": 6821 + }, + "positionPrev": { + "#": 6822 + }, + "region": { + "#": 6823 + }, + "render": { + "#": 6824 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6960700108585134, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6826 + }, + "vertices": { + "#": 6827 + } + }, + [ + { + "#": 6809 + }, + { + "#": 6810 + }, + { + "#": 6811 + }, + { + "#": 6812 + }, + { + "#": 6813 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6815 + }, + "min": { + "#": 6816 + } + }, + { + "x": 492.2157720918633, + "y": 423.27424824629315 + }, + { + "x": 476.9997720918633, + "y": 407.27424824629315 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 484.60777209186307, + "y": 415.2742482462934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.0660446940754, + "y": 414.7142518670595 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,8,8", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6825 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.2207128683425594, + "y": 1.0891059321041894 + }, + [ + { + "#": 6828 + }, + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + }, + { + "#": 6832 + }, + { + "#": 6833 + }, + { + "#": 6834 + }, + { + "#": 6835 + }, + { + "#": 6836 + }, + { + "#": 6837 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 492.2157720918633, + "y": 417.74624824629313 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 489.3097720918633, + "y": 421.74624824629313 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 484.6077720918633, + "y": 423.27424824629315 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 479.9057720918633, + "y": 421.74624824629313 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 476.9997720918633, + "y": 417.74624824629313 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 476.9997720918633, + "y": 412.8022482462932 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 479.9057720918633, + "y": 408.8022482462932 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 484.6077720918633, + "y": 407.27424824629315 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 489.3097720918633, + "y": 408.8022482462932 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 492.2157720918633, + "y": 412.8022482462932 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6839 + }, + "bounds": { + "#": 6845 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6848 + }, + "constraintImpulse": { + "#": 6849 + }, + "density": 0.001, + "force": { + "#": 6850 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 220, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6851 + }, + "positionImpulse": { + "#": 6852 + }, + "positionPrev": { + "#": 6853 + }, + "region": { + "#": 6854 + }, + "render": { + "#": 6855 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.383936463222813, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6857 + }, + "vertices": { + "#": 6858 + } + }, + [ + { + "#": 6840 + }, + { + "#": 6841 + }, + { + "#": 6842 + }, + { + "#": 6843 + }, + { + "#": 6844 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6846 + }, + "min": { + "#": 6847 + } + }, + { + "x": 514.3169519565802, + "y": 423.23174569451527 + }, + { + "x": 499.10095195658033, + "y": 407.23174569451527 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 506.7089519565804, + "y": 415.2317456945152 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 508.8861042208331, + "y": 414.66156591823875 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6856 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.938195797662729, + "y": 1.1492097217012542 + }, + [ + { + "#": 6859 + }, + { + "#": 6860 + }, + { + "#": 6861 + }, + { + "#": 6862 + }, + { + "#": 6863 + }, + { + "#": 6864 + }, + { + "#": 6865 + }, + { + "#": 6866 + }, + { + "#": 6867 + }, + { + "#": 6868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 514.3169519565802, + "y": 417.70374569451525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.4109519565802, + "y": 421.70374569451525 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.70895195658034, + "y": 423.23174569451527 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 502.00695195658034, + "y": 421.70374569451525 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 499.10095195658033, + "y": 417.70374569451525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 499.10095195658033, + "y": 412.7597456945153 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 502.00695195658034, + "y": 408.7597456945153 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 506.70895195658034, + "y": 407.23174569451527 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 511.4109519565802, + "y": 408.7597456945153 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 514.3169519565802, + "y": 412.7597456945153 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6870 + }, + "bounds": { + "#": 6876 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6879 + }, + "constraintImpulse": { + "#": 6880 + }, + "density": 0.001, + "force": { + "#": 6881 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 221, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6882 + }, + "positionImpulse": { + "#": 6883 + }, + "positionPrev": { + "#": 6884 + }, + "region": { + "#": 6885 + }, + "render": { + "#": 6886 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3219104732899682, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6888 + }, + "vertices": { + "#": 6889 + } + }, + [ + { + "#": 6871 + }, + { + "#": 6872 + }, + { + "#": 6873 + }, + { + "#": 6874 + }, + { + "#": 6875 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6877 + }, + "min": { + "#": 6878 + } + }, + { + "x": 536.2468780240316, + "y": 425.42126033765703 + }, + { + "x": 521.0308780240317, + "y": 409.42126033765703 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 528.6388780240322, + "y": 417.42126033765703 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.4492180045373, + "y": 416.40994693845306 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6887 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.5309528893706101, + "y": 1.7443960486846777 + }, + [ + { + "#": 6890 + }, + { + "#": 6891 + }, + { + "#": 6892 + }, + { + "#": 6893 + }, + { + "#": 6894 + }, + { + "#": 6895 + }, + { + "#": 6896 + }, + { + "#": 6897 + }, + { + "#": 6898 + }, + { + "#": 6899 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 536.2468780240316, + "y": 419.893260337657 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 533.3408780240317, + "y": 423.893260337657 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 528.6388780240317, + "y": 425.42126033765703 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 523.9368780240317, + "y": 423.893260337657 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 521.0308780240317, + "y": 419.893260337657 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 521.0308780240317, + "y": 414.94926033765705 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 523.9368780240317, + "y": 410.94926033765705 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 528.6388780240317, + "y": 409.42126033765703 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 533.3408780240317, + "y": 410.94926033765705 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 536.2468780240316, + "y": 414.94926033765705 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6901 + }, + "bounds": { + "#": 6907 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6910 + }, + "constraintImpulse": { + "#": 6911 + }, + "density": 0.001, + "force": { + "#": 6912 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 222, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6913 + }, + "positionImpulse": { + "#": 6914 + }, + "positionPrev": { + "#": 6915 + }, + "region": { + "#": 6916 + }, + "render": { + "#": 6917 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.0808170832763118, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6919 + }, + "vertices": { + "#": 6920 + } + }, + [ + { + "#": 6902 + }, + { + "#": 6903 + }, + { + "#": 6904 + }, + { + "#": 6905 + }, + { + "#": 6906 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6908 + }, + "min": { + "#": 6909 + } + }, + { + "x": 554.3526507061298, + "y": 438.92753421680754 + }, + { + "x": 539.1366507061299, + "y": 422.92753421680754 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 546.7446507061293, + "y": 430.92753421680754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 547.9825228412554, + "y": 429.45971444900994 + }, + { + "endCol": 11, + "endRow": 9, + "id": "11,11,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6918 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.2363404343333286, + "y": 1.6034033509250776 + }, + [ + { + "#": 6921 + }, + { + "#": 6922 + }, + { + "#": 6923 + }, + { + "#": 6924 + }, + { + "#": 6925 + }, + { + "#": 6926 + }, + { + "#": 6927 + }, + { + "#": 6928 + }, + { + "#": 6929 + }, + { + "#": 6930 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 554.3526507061298, + "y": 433.3995342168075 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 551.4466507061298, + "y": 437.3995342168075 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 546.7446507061298, + "y": 438.92753421680754 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 542.0426507061298, + "y": 437.3995342168075 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.1366507061299, + "y": 433.3995342168075 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 539.1366507061299, + "y": 428.45553421680756 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 542.0426507061298, + "y": 424.45553421680756 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 546.7446507061298, + "y": 422.92753421680754 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 551.4466507061298, + "y": 424.45553421680756 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 554.3526507061298, + "y": 428.45553421680756 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6932 + }, + "bounds": { + "#": 6938 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6941 + }, + "constraintImpulse": { + "#": 6942 + }, + "density": 0.001, + "force": { + "#": 6943 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 223, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6944 + }, + "positionImpulse": { + "#": 6945 + }, + "positionPrev": { + "#": 6946 + }, + "region": { + "#": 6947 + }, + "render": { + "#": 6948 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8429500911221997, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6950 + }, + "vertices": { + "#": 6951 + } + }, + [ + { + "#": 6933 + }, + { + "#": 6934 + }, + { + "#": 6935 + }, + { + "#": 6936 + }, + { + "#": 6937 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6939 + }, + "min": { + "#": 6940 + } + }, + { + "x": 575.1725614916573, + "y": 443.0671128513458 + }, + { + "x": 559.9565614916575, + "y": 427.0671128513458 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 567.5645614916574, + "y": 435.0671128513458 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.655290129391, + "y": 432.45384005701044 + }, + { + "endCol": 11, + "endRow": 9, + "id": "11,11,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6949 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.0893213763771428, + "y": 2.580286645978049 + }, + [ + { + "#": 6952 + }, + { + "#": 6953 + }, + { + "#": 6954 + }, + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + }, + { + "#": 6959 + }, + { + "#": 6960 + }, + { + "#": 6961 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575.1725614916573, + "y": 437.5391128513458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 572.2665614916574, + "y": 441.5391128513458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.5645614916574, + "y": 443.0671128513458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 562.8625614916574, + "y": 441.5391128513458 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 559.9565614916575, + "y": 437.5391128513458 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 559.9565614916575, + "y": 432.59511285134585 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 562.8625614916574, + "y": 428.59511285134585 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 567.5645614916574, + "y": 427.0671128513458 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 572.2665614916574, + "y": 428.59511285134585 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 575.1725614916573, + "y": 432.59511285134585 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6963 + }, + "bounds": { + "#": 6969 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 6972 + }, + "constraintImpulse": { + "#": 6973 + }, + "density": 0.001, + "force": { + "#": 6974 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 224, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 6975 + }, + "positionImpulse": { + "#": 6976 + }, + "positionPrev": { + "#": 6977 + }, + "region": { + "#": 6978 + }, + "render": { + "#": 6979 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9103940482628787, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6981 + }, + "vertices": { + "#": 6982 + } + }, + [ + { + "#": 6964 + }, + { + "#": 6965 + }, + { + "#": 6966 + }, + { + "#": 6967 + }, + { + "#": 6968 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 6970 + }, + "min": { + "#": 6971 + } + }, + { + "x": 595.7729396202374, + "y": 443.4073163252725 + }, + { + "x": 580.5569396202375, + "y": 427.4073163252725 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 588.1649396202378, + "y": 435.4073163252726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 589.133487049184, + "y": 432.6625900311064 + }, + { + "endCol": 12, + "endRow": 9, + "id": "12,12,8,9", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6980 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.9669465532949744, + "y": 2.7166355200685075 + }, + [ + { + "#": 6983 + }, + { + "#": 6984 + }, + { + "#": 6985 + }, + { + "#": 6986 + }, + { + "#": 6987 + }, + { + "#": 6988 + }, + { + "#": 6989 + }, + { + "#": 6990 + }, + { + "#": 6991 + }, + { + "#": 6992 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 595.7729396202374, + "y": 437.8793163252725 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 592.8669396202374, + "y": 441.8793163252725 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 588.1649396202374, + "y": 443.4073163252725 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 583.4629396202374, + "y": 441.8793163252725 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 580.5569396202375, + "y": 437.8793163252725 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 580.5569396202375, + "y": 432.93531632527254 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 583.4629396202374, + "y": 428.93531632527254 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 588.1649396202374, + "y": 427.4073163252725 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 592.8669396202374, + "y": 428.93531632527254 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 595.7729396202374, + "y": 432.93531632527254 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 6994 + }, + "bounds": { + "#": 7000 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7003 + }, + "constraintImpulse": { + "#": 7004 + }, + "density": 0.001, + "force": { + "#": 7005 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 225, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7006 + }, + "positionImpulse": { + "#": 7007 + }, + "positionPrev": { + "#": 7008 + }, + "region": { + "#": 7009 + }, + "render": { + "#": 7010 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8291481266958185, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7012 + }, + "vertices": { + "#": 7013 + } + }, + [ + { + "#": 6995 + }, + { + "#": 6996 + }, + { + "#": 6997 + }, + { + "#": 6998 + }, + { + "#": 6999 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7001 + }, + "min": { + "#": 7002 + } + }, + { + "x": 214.8520756392676, + "y": 454.6834631011107 + }, + { + "x": 199.6360756392676, + "y": 438.6834631011107 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.2440756392676, + "y": 446.68346310111076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 204.96078087474712, + "y": 445.9458966173092 + }, + { + "endCol": 4, + "endRow": 9, + "id": "4,4,9,9", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7011 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 2.2304789702407675, + "y": 0.7742175460961676 + }, + [ + { + "#": 7014 + }, + { + "#": 7015 + }, + { + "#": 7016 + }, + { + "#": 7017 + }, + { + "#": 7018 + }, + { + "#": 7019 + }, + { + "#": 7020 + }, + { + "#": 7021 + }, + { + "#": 7022 + }, + { + "#": 7023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.8520756392676, + "y": 449.1554631011107 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 211.9460756392676, + "y": 453.1554631011107 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 207.2440756392676, + "y": 454.6834631011107 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.5420756392676, + "y": 453.1554631011107 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 199.6360756392676, + "y": 449.1554631011107 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 199.6360756392676, + "y": 444.2114631011107 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.5420756392676, + "y": 440.2114631011107 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 207.2440756392676, + "y": 438.6834631011107 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 211.9460756392676, + "y": 440.2114631011107 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 214.8520756392676, + "y": 444.2114631011107 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7025 + }, + "bounds": { + "#": 7031 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7034 + }, + "constraintImpulse": { + "#": 7035 + }, + "density": 0.001, + "force": { + "#": 7036 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 226, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7037 + }, + "positionImpulse": { + "#": 7038 + }, + "positionPrev": { + "#": 7039 + }, + "region": { + "#": 7040 + }, + "render": { + "#": 7041 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.7117760664345085, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7043 + }, + "vertices": { + "#": 7044 + } + }, + [ + { + "#": 7026 + }, + { + "#": 7027 + }, + { + "#": 7028 + }, + { + "#": 7029 + }, + { + "#": 7030 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7032 + }, + "min": { + "#": 7033 + } + }, + { + "x": 235.75006761348558, + "y": 449.4411921426105 + }, + { + "x": 220.53406761348558, + "y": 433.4411921426105 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.14206761348555, + "y": 441.4411921426105 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 226.16212140836504, + "y": 442.3430724668797 + }, + { + "endCol": 4, + "endRow": 9, + "id": "4,4,9,9", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7042 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.9666508240725875, + "y": -0.8946259148848412 + }, + [ + { + "#": 7045 + }, + { + "#": 7046 + }, + { + "#": 7047 + }, + { + "#": 7048 + }, + { + "#": 7049 + }, + { + "#": 7050 + }, + { + "#": 7051 + }, + { + "#": 7052 + }, + { + "#": 7053 + }, + { + "#": 7054 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 235.75006761348558, + "y": 443.91319214261046 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.84406761348558, + "y": 447.91319214261046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 228.14206761348558, + "y": 449.4411921426105 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 223.44006761348558, + "y": 447.91319214261046 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.53406761348558, + "y": 443.91319214261046 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220.53406761348558, + "y": 438.9691921426105 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 223.44006761348558, + "y": 434.9691921426105 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 228.14206761348558, + "y": 433.4411921426105 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.84406761348558, + "y": 434.9691921426105 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 235.75006761348558, + "y": 438.9691921426105 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7056 + }, + "bounds": { + "#": 7062 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7065 + }, + "constraintImpulse": { + "#": 7066 + }, + "density": 0.001, + "force": { + "#": 7067 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 227, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7068 + }, + "positionImpulse": { + "#": 7069 + }, + "positionPrev": { + "#": 7070 + }, + "region": { + "#": 7071 + }, + "render": { + "#": 7072 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.7699727346195924, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7074 + }, + "vertices": { + "#": 7075 + } + }, + [ + { + "#": 7057 + }, + { + "#": 7058 + }, + { + "#": 7059 + }, + { + "#": 7060 + }, + { + "#": 7061 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7063 + }, + "min": { + "#": 7064 + } + }, + { + "x": 256.43799998581835, + "y": 438.1265934354316 + }, + { + "x": 239.66657401552385, + "y": 421.368873250308 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.27457401552377, + "y": 430.1265934354318 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 245.7662835294337, + "y": 431.16762936506365 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7073 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.508297413246197, + "y": -1.0410407108185495 + }, + [ + { + "#": 7076 + }, + { + "#": 7077 + }, + { + "#": 7078 + }, + { + "#": 7079 + }, + { + "#": 7080 + }, + { + "#": 7081 + }, + { + "#": 7082 + }, + { + "#": 7083 + }, + { + "#": 7084 + }, + { + "#": 7085 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 254.88257401552386, + "y": 432.59859343543155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 251.97657401552385, + "y": 436.59859343543155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 247.27457401552385, + "y": 438.1265934354316 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 242.57257401552386, + "y": 436.59859343543155 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 239.66657401552385, + "y": 432.59859343543155 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 239.66657401552385, + "y": 427.6545934354316 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 242.57257401552386, + "y": 423.6545934354316 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 247.27457401552385, + "y": 422.1265934354316 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 251.97657401552385, + "y": 423.6545934354316 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 254.88257401552386, + "y": 427.6545934354316 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7087 + }, + "bounds": { + "#": 7093 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7096 + }, + "constraintImpulse": { + "#": 7097 + }, + "density": 0.001, + "force": { + "#": 7098 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 228, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7099 + }, + "positionImpulse": { + "#": 7100 + }, + "positionPrev": { + "#": 7101 + }, + "region": { + "#": 7102 + }, + "render": { + "#": 7103 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.217288167236458, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7105 + }, + "vertices": { + "#": 7106 + } + }, + [ + { + "#": 7088 + }, + { + "#": 7089 + }, + { + "#": 7090 + }, + { + "#": 7091 + }, + { + "#": 7092 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7094 + }, + "min": { + "#": 7095 + } + }, + { + "x": 275.1529845003969, + "y": 427.62927392632383 + }, + { + "x": 258.7960417795417, + "y": 411.6037596310992 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 266.40404177954196, + "y": 419.60375963109914 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 265.2570492153523, + "y": 420.0387555910887 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7104 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.1470004341873619, + "y": -0.43499894467959166 + }, + [ + { + "#": 7107 + }, + { + "#": 7108 + }, + { + "#": 7109 + }, + { + "#": 7110 + }, + { + "#": 7111 + }, + { + "#": 7112 + }, + { + "#": 7113 + }, + { + "#": 7114 + }, + { + "#": 7115 + }, + { + "#": 7116 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 274.01204177954196, + "y": 422.0757596310992 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 271.1060417795419, + "y": 426.0757596310992 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 266.4040417795419, + "y": 427.6037596310992 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 261.70204177954184, + "y": 426.0757596310992 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 258.7960417795417, + "y": 422.0757596310992 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 258.7960417795417, + "y": 417.1317596310992 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 261.70204177954184, + "y": 413.1317596310992 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 266.4040417795419, + "y": 411.6037596310992 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 271.1060417795419, + "y": 413.1317596310992 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 274.01204177954196, + "y": 417.1317596310992 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7118 + }, + "bounds": { + "#": 7124 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7127 + }, + "constraintImpulse": { + "#": 7128 + }, + "density": 0.001, + "force": { + "#": 7129 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 229, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7130 + }, + "positionImpulse": { + "#": 7131 + }, + "positionPrev": { + "#": 7132 + }, + "region": { + "#": 7133 + }, + "render": { + "#": 7134 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7780834847975132, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7136 + }, + "vertices": { + "#": 7137 + } + }, + [ + { + "#": 7119 + }, + { + "#": 7120 + }, + { + "#": 7121 + }, + { + "#": 7122 + }, + { + "#": 7123 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7125 + }, + "min": { + "#": 7126 + } + }, + { + "x": 295.29882184380415, + "y": 421.7005363001377 + }, + { + "x": 279.16104988436797, + "y": 405.3936869828636 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 286.76904988436803, + "y": 413.3936869828636 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285.81381313964357, + "y": 413.509692489862 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7135 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.9552451002970201, + "y": -0.11600652171273396 + }, + [ + { + "#": 7138 + }, + { + "#": 7139 + }, + { + "#": 7140 + }, + { + "#": 7141 + }, + { + "#": 7142 + }, + { + "#": 7143 + }, + { + "#": 7144 + }, + { + "#": 7145 + }, + { + "#": 7146 + }, + { + "#": 7147 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 294.377049884368, + "y": 415.86568698286356 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 291.47104988436797, + "y": 419.86568698286356 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 286.769049884368, + "y": 421.3936869828636 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 282.067049884368, + "y": 419.86568698286356 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 279.16104988436797, + "y": 415.86568698286356 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 279.16104988436797, + "y": 410.9216869828636 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 282.067049884368, + "y": 406.9216869828636 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 286.769049884368, + "y": 405.3936869828636 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 291.47104988436797, + "y": 406.9216869828636 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 294.377049884368, + "y": 410.9216869828636 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7149 + }, + "bounds": { + "#": 7155 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7158 + }, + "constraintImpulse": { + "#": 7159 + }, + "density": 0.001, + "force": { + "#": 7160 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 230, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7161 + }, + "positionImpulse": { + "#": 7162 + }, + "positionPrev": { + "#": 7163 + }, + "region": { + "#": 7164 + }, + "render": { + "#": 7165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5221824638459709, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7167 + }, + "vertices": { + "#": 7168 + } + }, + [ + { + "#": 7150 + }, + { + "#": 7151 + }, + { + "#": 7152 + }, + { + "#": 7153 + }, + { + "#": 7154 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7156 + }, + "min": { + "#": 7157 + } + }, + { + "x": 316.62121656723684, + "y": 421.39164549210534 + }, + { + "x": 300.6339025538144, + "y": 404.8495090799852 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 308.24190255381427, + "y": 412.8495090799851 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.4613708785761, + "y": 412.75472004133644 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7166 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.7805400308107551, + "y": 0.09479005336299906 + }, + [ + { + "#": 7169 + }, + { + "#": 7170 + }, + { + "#": 7171 + }, + { + "#": 7172 + }, + { + "#": 7173 + }, + { + "#": 7174 + }, + { + "#": 7175 + }, + { + "#": 7176 + }, + { + "#": 7177 + }, + { + "#": 7178 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.8499025538144, + "y": 415.32150907998516 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.9439025538144, + "y": 419.32150907998516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.2419025538144, + "y": 420.8495090799852 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.5399025538144, + "y": 419.32150907998516 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.6339025538144, + "y": 415.32150907998516 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 300.6339025538144, + "y": 410.3775090799852 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 303.5399025538144, + "y": 406.3775090799852 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.2419025538144, + "y": 404.8495090799852 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 312.9439025538144, + "y": 406.3775090799852 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 315.8499025538144, + "y": 410.3775090799852 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7180 + }, + "bounds": { + "#": 7186 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7189 + }, + "constraintImpulse": { + "#": 7190 + }, + "density": 0.001, + "force": { + "#": 7191 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 231, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7192 + }, + "positionImpulse": { + "#": 7193 + }, + "positionPrev": { + "#": 7194 + }, + "region": { + "#": 7195 + }, + "render": { + "#": 7196 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.47709302058052355, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7198 + }, + "vertices": { + "#": 7199 + } + }, + [ + { + "#": 7181 + }, + { + "#": 7182 + }, + { + "#": 7183 + }, + { + "#": 7184 + }, + { + "#": 7185 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7187 + }, + "min": { + "#": 7188 + } + }, + { + "x": 337.67191990033643, + "y": 426.7205550594699 + }, + { + "x": 322.24115519835397, + "y": 410.26423716441303 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 330.0639199003363, + "y": 418.26423716441315 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 329.991738359836, + "y": 418.2368623762203 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7197 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.07218941049802652, + "y": 0.0273777728828577 + }, + [ + { + "#": 7200 + }, + { + "#": 7201 + }, + { + "#": 7202 + }, + { + "#": 7203 + }, + { + "#": 7204 + }, + { + "#": 7205 + }, + { + "#": 7206 + }, + { + "#": 7207 + }, + { + "#": 7208 + }, + { + "#": 7209 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 337.67191990033643, + "y": 420.736237164413 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 334.7659199003364, + "y": 424.736237164413 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 330.06391990033643, + "y": 426.26423716441303 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325.36191990033643, + "y": 424.736237164413 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 322.4559199003364, + "y": 420.736237164413 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 322.4559199003364, + "y": 415.79223716441305 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 325.36191990033643, + "y": 411.79223716441305 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.06391990033643, + "y": 410.26423716441303 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 334.7659199003364, + "y": 411.79223716441305 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 337.67191990033643, + "y": 415.79223716441305 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7211 + }, + "bounds": { + "#": 7217 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7220 + }, + "constraintImpulse": { + "#": 7221 + }, + "density": 0.001, + "force": { + "#": 7222 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 232, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7223 + }, + "positionImpulse": { + "#": 7224 + }, + "positionPrev": { + "#": 7225 + }, + "region": { + "#": 7226 + }, + "render": { + "#": 7227 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0026778512532604, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7229 + }, + "vertices": { + "#": 7230 + } + }, + [ + { + "#": 7212 + }, + { + "#": 7213 + }, + { + "#": 7214 + }, + { + "#": 7215 + }, + { + "#": 7216 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7218 + }, + "min": { + "#": 7219 + } + }, + { + "x": 357.93747586908984, + "y": 436.38742371321035 + }, + { + "x": 341.88141739465755, + "y": 420.34668837112775 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350.3294758690899, + "y": 428.38742371321047 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 350.8066136185311, + "y": 428.71674856484407 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7228 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.47714467659739057, + "y": -0.32932963282030414 + }, + [ + { + "#": 7231 + }, + { + "#": 7232 + }, + { + "#": 7233 + }, + { + "#": 7234 + }, + { + "#": 7235 + }, + { + "#": 7236 + }, + { + "#": 7237 + }, + { + "#": 7238 + }, + { + "#": 7239 + }, + { + "#": 7240 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 357.93747586908984, + "y": 430.85942371321033 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 355.03147586908983, + "y": 434.85942371321033 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.32947586908983, + "y": 436.38742371321035 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 345.62747586908984, + "y": 434.85942371321033 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 342.72147586908983, + "y": 430.85942371321033 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 342.72147586908983, + "y": 425.9154237132104 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 345.62747586908984, + "y": 421.9154237132104 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350.32947586908983, + "y": 420.38742371321035 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 355.03147586908983, + "y": 421.9154237132104 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 357.93747586908984, + "y": 425.9154237132104 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7242 + }, + "bounds": { + "#": 7248 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7251 + }, + "constraintImpulse": { + "#": 7252 + }, + "density": 0.001, + "force": { + "#": 7253 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 233, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7254 + }, + "positionImpulse": { + "#": 7255 + }, + "positionPrev": { + "#": 7256 + }, + "region": { + "#": 7257 + }, + "render": { + "#": 7258 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9128435894769378, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7260 + }, + "vertices": { + "#": 7261 + } + }, + [ + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + }, + { + "#": 7246 + }, + { + "#": 7247 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7249 + }, + "min": { + "#": 7250 + } + }, + { + "x": 375.8385043227157, + "y": 450.1710566792765 + }, + { + "x": 360.6225043227157, + "y": 434.1710566792765 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.2305043227157, + "y": 442.17105667927655 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.80525607324284, + "y": 442.78001797458853 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,9,9", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7259 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.6634320231786432, + "y": -0.6996690074048502 + }, + [ + { + "#": 7262 + }, + { + "#": 7263 + }, + { + "#": 7264 + }, + { + "#": 7265 + }, + { + "#": 7266 + }, + { + "#": 7267 + }, + { + "#": 7268 + }, + { + "#": 7269 + }, + { + "#": 7270 + }, + { + "#": 7271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375.8385043227157, + "y": 444.64305667927647 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 372.9325043227157, + "y": 448.64305667927647 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 368.2305043227157, + "y": 450.1710566792765 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 363.5285043227157, + "y": 448.64305667927647 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 360.6225043227157, + "y": 444.64305667927647 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 360.6225043227157, + "y": 439.6990566792765 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 363.5285043227157, + "y": 435.6990566792765 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 368.2305043227157, + "y": 434.1710566792765 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 372.9325043227157, + "y": 435.6990566792765 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 375.8385043227157, + "y": 439.6990566792765 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7273 + }, + "bounds": { + "#": 7279 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7282 + }, + "constraintImpulse": { + "#": 7283 + }, + "density": 0.001, + "force": { + "#": 7284 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 234, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7285 + }, + "positionImpulse": { + "#": 7286 + }, + "positionPrev": { + "#": 7287 + }, + "region": { + "#": 7288 + }, + "render": { + "#": 7289 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8662483699997212, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7291 + }, + "vertices": { + "#": 7292 + } + }, + [ + { + "#": 7274 + }, + { + "#": 7275 + }, + { + "#": 7276 + }, + { + "#": 7277 + }, + { + "#": 7278 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7280 + }, + "min": { + "#": 7281 + } + }, + { + "x": 396.29969396440765, + "y": 458.570569545479 + }, + { + "x": 381.08369396440764, + "y": 442.570569545479 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 388.6916939644076, + "y": 450.57056954547886 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 389.98117767600473, + "y": 449.4648528044768 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,9,9", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7290 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.2671357694267158, + "y": 1.1420170979789077 + }, + [ + { + "#": 7293 + }, + { + "#": 7294 + }, + { + "#": 7295 + }, + { + "#": 7296 + }, + { + "#": 7297 + }, + { + "#": 7298 + }, + { + "#": 7299 + }, + { + "#": 7300 + }, + { + "#": 7301 + }, + { + "#": 7302 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.29969396440765, + "y": 453.04256954547895 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 393.39369396440765, + "y": 457.04256954547895 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 388.69169396440765, + "y": 458.570569545479 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 383.98969396440765, + "y": 457.04256954547895 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.08369396440764, + "y": 453.04256954547895 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 381.08369396440764, + "y": 448.098569545479 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 383.98969396440765, + "y": 444.098569545479 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 388.69169396440765, + "y": 442.570569545479 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 393.39369396440765, + "y": 444.098569545479 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 396.29969396440765, + "y": 448.098569545479 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7304 + }, + "bounds": { + "#": 7310 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7313 + }, + "constraintImpulse": { + "#": 7314 + }, + "density": 0.001, + "force": { + "#": 7315 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 235, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7316 + }, + "positionImpulse": { + "#": 7317 + }, + "positionPrev": { + "#": 7318 + }, + "region": { + "#": 7319 + }, + "render": { + "#": 7320 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3328699395110606, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7322 + }, + "vertices": { + "#": 7323 + } + }, + [ + { + "#": 7305 + }, + { + "#": 7306 + }, + { + "#": 7307 + }, + { + "#": 7308 + }, + { + "#": 7309 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7311 + }, + "min": { + "#": 7312 + } + }, + { + "x": 417.98783185895707, + "y": 461.5675754003412 + }, + { + "x": 402.77183185895706, + "y": 445.5675754003412 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 410.3798318589572, + "y": 453.5675754003412 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.56707482257247, + "y": 451.6161917225705 + }, + { + "endCol": 8, + "endRow": 9, + "id": "8,8,9,9", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7321 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.1577054156704776, + "y": 2.0126182395168826 + }, + [ + { + "#": 7324 + }, + { + "#": 7325 + }, + { + "#": 7326 + }, + { + "#": 7327 + }, + { + "#": 7328 + }, + { + "#": 7329 + }, + { + "#": 7330 + }, + { + "#": 7331 + }, + { + "#": 7332 + }, + { + "#": 7333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.98783185895707, + "y": 456.03957540034116 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 415.0818318589571, + "y": 460.03957540034116 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 410.3798318589571, + "y": 461.5675754003412 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405.6778318589571, + "y": 460.03957540034116 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 402.77183185895706, + "y": 456.03957540034116 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 402.77183185895706, + "y": 451.0955754003412 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.6778318589571, + "y": 447.0955754003412 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 410.3798318589571, + "y": 445.5675754003412 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 415.0818318589571, + "y": 447.0955754003412 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 417.98783185895707, + "y": 451.0955754003412 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7335 + }, + "bounds": { + "#": 7341 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7344 + }, + "constraintImpulse": { + "#": 7345 + }, + "density": 0.001, + "force": { + "#": 7346 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 236, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7347 + }, + "positionImpulse": { + "#": 7348 + }, + "positionPrev": { + "#": 7349 + }, + "region": { + "#": 7350 + }, + "render": { + "#": 7351 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.418095929144624, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7353 + }, + "vertices": { + "#": 7354 + } + }, + [ + { + "#": 7336 + }, + { + "#": 7337 + }, + { + "#": 7338 + }, + { + "#": 7339 + }, + { + "#": 7340 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7342 + }, + "min": { + "#": 7343 + } + }, + { + "x": 439.5242646418263, + "y": 462.52155345209644 + }, + { + "x": 424.30826464182627, + "y": 446.52155345209644 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 431.9162646418263, + "y": 454.52155345209655 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.5335454062394, + "y": 452.53286254528876 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,9,9", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7352 + }, + "strokeStyle": "#1b9a91", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.5769034051076005, + "y": 2.089895808887377 + }, + [ + { + "#": 7355 + }, + { + "#": 7356 + }, + { + "#": 7357 + }, + { + "#": 7358 + }, + { + "#": 7359 + }, + { + "#": 7360 + }, + { + "#": 7361 + }, + { + "#": 7362 + }, + { + "#": 7363 + }, + { + "#": 7364 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 439.5242646418263, + "y": 456.9935534520964 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 436.6182646418263, + "y": 460.9935534520964 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.9162646418263, + "y": 462.52155345209644 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 427.2142646418263, + "y": 460.9935534520964 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 424.30826464182627, + "y": 456.9935534520964 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 424.30826464182627, + "y": 452.04955345209646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 427.2142646418263, + "y": 448.04955345209646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 431.9162646418263, + "y": 446.52155345209644 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 436.6182646418263, + "y": 448.04955345209646 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 439.5242646418263, + "y": 452.04955345209646 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7366 + }, + "bounds": { + "#": 7372 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7375 + }, + "constraintImpulse": { + "#": 7376 + }, + "density": 0.001, + "force": { + "#": 7377 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 237, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7378 + }, + "positionImpulse": { + "#": 7379 + }, + "positionPrev": { + "#": 7380 + }, + "region": { + "#": 7381 + }, + "render": { + "#": 7382 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0740967610723136, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7384 + }, + "vertices": { + "#": 7385 + } + }, + [ + { + "#": 7367 + }, + { + "#": 7368 + }, + { + "#": 7369 + }, + { + "#": 7370 + }, + { + "#": 7371 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7373 + }, + "min": { + "#": 7374 + } + }, + { + "x": 460.8156981606153, + "y": 457.385198478168 + }, + { + "x": 444.834000831927, + "y": 441.11898447171393 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.44200083192675, + "y": 449.1189844717138 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.4420008319267, + "y": 448.69475117455795 + }, + { + "endCol": 9, + "endRow": 9, + "id": "9,9,9,9", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7383 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 5.684341886080802e-14, + "y": 0.42424171411721545 + }, + [ + { + "#": 7386 + }, + { + "#": 7387 + }, + { + "#": 7388 + }, + { + "#": 7389 + }, + { + "#": 7390 + }, + { + "#": 7391 + }, + { + "#": 7392 + }, + { + "#": 7393 + }, + { + "#": 7394 + }, + { + "#": 7395 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460.05000083192704, + "y": 451.5909844717139 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 457.14400083192703, + "y": 455.5909844717139 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 452.44200083192703, + "y": 457.11898447171393 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 447.74000083192703, + "y": 455.5909844717139 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 444.834000831927, + "y": 451.5909844717139 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 444.834000831927, + "y": 446.64698447171395 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 447.74000083192703, + "y": 442.64698447171395 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 452.44200083192703, + "y": 441.11898447171393 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 457.14400083192703, + "y": 442.64698447171395 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 460.05000083192704, + "y": 446.64698447171395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7397 + }, + "bounds": { + "#": 7403 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7406 + }, + "constraintImpulse": { + "#": 7407 + }, + "density": 0.001, + "force": { + "#": 7408 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 238, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7409 + }, + "positionImpulse": { + "#": 7410 + }, + "positionPrev": { + "#": 7411 + }, + "region": { + "#": 7412 + }, + "render": { + "#": 7413 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.3708406429095165, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7415 + }, + "vertices": { + "#": 7416 + } + }, + [ + { + "#": 7398 + }, + { + "#": 7399 + }, + { + "#": 7400 + }, + { + "#": 7401 + }, + { + "#": 7402 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7404 + }, + "min": { + "#": 7405 + } + }, + { + "x": 478.65356243364386, + "y": 442.31086796403883 + }, + { + "x": 463.1792906562419, + "y": 424.05000282649684 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.78729065624196, + "y": 432.05000282649706 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.2648309692423, + "y": 432.050002826497 + }, + { + "endCol": 9, + "endRow": 9, + "id": "9,9,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7414 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5224681039609891, + "y": 5.684341886080802e-14 + }, + [ + { + "#": 7417 + }, + { + "#": 7418 + }, + { + "#": 7419 + }, + { + "#": 7420 + }, + { + "#": 7421 + }, + { + "#": 7422 + }, + { + "#": 7423 + }, + { + "#": 7424 + }, + { + "#": 7425 + }, + { + "#": 7426 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.3952906562419, + "y": 434.5220028264968 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.4892906562419, + "y": 438.5220028264968 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.7872906562419, + "y": 440.05000282649684 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.0852906562419, + "y": 438.5220028264968 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 463.1792906562419, + "y": 434.5220028264968 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 463.1792906562419, + "y": 429.57800282649686 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 466.0852906562419, + "y": 425.57800282649686 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 470.7872906562419, + "y": 424.05000282649684 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.4892906562419, + "y": 425.57800282649686 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 478.3952906562419, + "y": 429.57800282649686 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7428 + }, + "bounds": { + "#": 7434 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7437 + }, + "constraintImpulse": { + "#": 7438 + }, + "density": 0.001, + "force": { + "#": 7439 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 239, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7440 + }, + "positionImpulse": { + "#": 7441 + }, + "positionPrev": { + "#": 7442 + }, + "region": { + "#": 7443 + }, + "render": { + "#": 7444 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.579195294572063, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7446 + }, + "vertices": { + "#": 7447 + } + }, + [ + { + "#": 7429 + }, + { + "#": 7430 + }, + { + "#": 7431 + }, + { + "#": 7432 + }, + { + "#": 7433 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7435 + }, + "min": { + "#": 7436 + } + }, + { + "x": 500.71826062073626, + "y": 440.51146826913987 + }, + { + "x": 484.8885016789256, + "y": 423.41433987570366 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.49650167892565, + "y": 431.41433987570355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 491.6453723848755, + "y": 431.41433987570355 + }, + { + "endCol": 10, + "endRow": 9, + "id": "10,10,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7445 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.8511377110115177, + "y": 0 + }, + [ + { + "#": 7448 + }, + { + "#": 7449 + }, + { + "#": 7450 + }, + { + "#": 7451 + }, + { + "#": 7452 + }, + { + "#": 7453 + }, + { + "#": 7454 + }, + { + "#": 7455 + }, + { + "#": 7456 + }, + { + "#": 7457 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500.1045016789256, + "y": 433.88633987570364 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 497.1985016789256, + "y": 437.88633987570364 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 492.4965016789256, + "y": 439.41433987570366 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 487.7945016789256, + "y": 437.88633987570364 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 484.8885016789256, + "y": 433.88633987570364 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 484.8885016789256, + "y": 428.9423398757037 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 487.7945016789256, + "y": 424.9423398757037 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 492.4965016789256, + "y": 423.41433987570366 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 497.1985016789256, + "y": 424.9423398757037 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 500.1045016789256, + "y": 428.9423398757037 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7459 + }, + "bounds": { + "#": 7465 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7468 + }, + "constraintImpulse": { + "#": 7469 + }, + "density": 0.001, + "force": { + "#": 7470 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 240, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7471 + }, + "positionImpulse": { + "#": 7472 + }, + "positionPrev": { + "#": 7473 + }, + "region": { + "#": 7474 + }, + "render": { + "#": 7475 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7342827852049947, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7477 + }, + "vertices": { + "#": 7478 + } + }, + [ + { + "#": 7460 + }, + { + "#": 7461 + }, + { + "#": 7462 + }, + { + "#": 7463 + }, + { + "#": 7464 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7466 + }, + "min": { + "#": 7467 + } + }, + { + "x": 522.5064739590133, + "y": 440.4934819373622 + }, + { + "x": 506.3950863313762, + "y": 423.36471498945434 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 514.0030863313759, + "y": 431.3647149894544 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.8690242053536, + "y": 431.3647149894544 + }, + { + "endCol": 10, + "endRow": 9, + "id": "10,10,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7476 + }, + "strokeStyle": "#94c131", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.1340705429836362, + "y": 0 + }, + [ + { + "#": 7479 + }, + { + "#": 7480 + }, + { + "#": 7481 + }, + { + "#": 7482 + }, + { + "#": 7483 + }, + { + "#": 7484 + }, + { + "#": 7485 + }, + { + "#": 7486 + }, + { + "#": 7487 + }, + { + "#": 7488 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 521.6110863313759, + "y": 433.8367149894543 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 518.7050863313759, + "y": 437.8367149894543 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 514.0030863313762, + "y": 439.36471498945434 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 509.3010863313762, + "y": 437.8367149894543 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 506.3950863313762, + "y": 433.8367149894543 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 506.3950863313762, + "y": 428.89271498945436 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 509.3010863313762, + "y": 424.89271498945436 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 514.0030863313762, + "y": 423.36471498945434 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 518.7050863313759, + "y": 424.89271498945436 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 521.6110863313759, + "y": 428.89271498945436 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7490 + }, + "bounds": { + "#": 7496 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7499 + }, + "constraintImpulse": { + "#": 7500 + }, + "density": 0.001, + "force": { + "#": 7501 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 241, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7502 + }, + "positionImpulse": { + "#": 7503 + }, + "positionPrev": { + "#": 7504 + }, + "region": { + "#": 7505 + }, + "render": { + "#": 7506 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7882753934986387, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7508 + }, + "vertices": { + "#": 7509 + } + }, + [ + { + "#": 7491 + }, + { + "#": 7492 + }, + { + "#": 7493 + }, + { + "#": 7494 + }, + { + "#": 7495 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7497 + }, + "min": { + "#": 7498 + } + }, + { + "x": 543.9861460063413, + "y": 442.1121257028256 + }, + { + "x": 527.6713654403104, + "y": 424.0500027952082 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 535.2793654403098, + "y": 432.0500027952082 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 533.9013619138901, + "y": 432.0500027952082 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7507 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.3780119433808977, + "y": 0 + }, + [ + { + "#": 7510 + }, + { + "#": 7511 + }, + { + "#": 7512 + }, + { + "#": 7513 + }, + { + "#": 7514 + }, + { + "#": 7515 + }, + { + "#": 7516 + }, + { + "#": 7517 + }, + { + "#": 7518 + }, + { + "#": 7519 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 542.8873654403103, + "y": 434.52200279520815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 539.9813654403104, + "y": 438.52200279520815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 535.2793654403104, + "y": 440.0500027952082 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 530.5773654403104, + "y": 438.52200279520815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 527.6713654403104, + "y": 434.52200279520815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 527.6713654403104, + "y": 429.5780027952082 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530.5773654403104, + "y": 425.5780027952082 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 535.2793654403104, + "y": 424.0500027952082 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 539.9813654403104, + "y": 425.5780027952082 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 542.8873654403103, + "y": 429.5780027952082 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7521 + }, + "bounds": { + "#": 7527 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7530 + }, + "constraintImpulse": { + "#": 7531 + }, + "density": 0.001, + "force": { + "#": 7532 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 242, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7533 + }, + "positionImpulse": { + "#": 7534 + }, + "positionPrev": { + "#": 7535 + }, + "region": { + "#": 7536 + }, + "render": { + "#": 7537 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.8639546674534604, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7539 + }, + "vertices": { + "#": 7540 + } + }, + [ + { + "#": 7522 + }, + { + "#": 7523 + }, + { + "#": 7524 + }, + { + "#": 7525 + }, + { + "#": 7526 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7528 + }, + "min": { + "#": 7529 + } + }, + { + "x": 555.1659994192794, + "y": 460.747823834868 + }, + { + "x": 539.3677477763108, + "y": 443.5194435396435 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 547.5579994192794, + "y": 451.5194435396432 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 547.5579994192794, + "y": 450.155546996982 + }, + { + "endCol": 11, + "endRow": 9, + "id": "11,11,9,9", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7538 + }, + "strokeStyle": "#cc3838", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.3639049596225163 + }, + [ + { + "#": 7541 + }, + { + "#": 7542 + }, + { + "#": 7543 + }, + { + "#": 7544 + }, + { + "#": 7545 + }, + { + "#": 7546 + }, + { + "#": 7547 + }, + { + "#": 7548 + }, + { + "#": 7549 + }, + { + "#": 7550 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.1659994192794, + "y": 453.99144353964346 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 552.2599994192794, + "y": 457.99144353964346 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 547.5579994192794, + "y": 459.5194435396435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 542.8559994192794, + "y": 457.99144353964346 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 539.9499994192795, + "y": 453.99144353964346 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 539.9499994192795, + "y": 449.0474435396435 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 542.8559994192794, + "y": 445.0474435396435 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 547.5579994192794, + "y": 443.5194435396435 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 552.2599994192794, + "y": 445.0474435396435 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 555.1659994192794, + "y": 449.0474435396435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7552 + }, + "bounds": { + "#": 7558 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7561 + }, + "constraintImpulse": { + "#": 7562 + }, + "density": 0.001, + "force": { + "#": 7563 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 243, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7564 + }, + "positionImpulse": { + "#": 7565 + }, + "positionPrev": { + "#": 7566 + }, + "region": { + "#": 7567 + }, + "render": { + "#": 7568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8963841552534006, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7570 + }, + "vertices": { + "#": 7571 + } + }, + [ + { + "#": 7553 + }, + { + "#": 7554 + }, + { + "#": 7555 + }, + { + "#": 7556 + }, + { + "#": 7557 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7559 + }, + "min": { + "#": 7560 + } + }, + { + "x": 574.273247891059, + "y": 464.1469866873149 + }, + { + "x": 559.0572478910591, + "y": 448.1469866873149 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.665247891059, + "y": 456.146986687315 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 567.4789023974461, + "y": 453.4543171530019 + }, + { + "endCol": 11, + "endRow": 9, + "id": "11,11,9,9", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7569 + }, + "strokeStyle": "#222f3d", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.8150617677434866, + "y": 2.7256556826704355 + }, + [ + { + "#": 7572 + }, + { + "#": 7573 + }, + { + "#": 7574 + }, + { + "#": 7575 + }, + { + "#": 7576 + }, + { + "#": 7577 + }, + { + "#": 7578 + }, + { + "#": 7579 + }, + { + "#": 7580 + }, + { + "#": 7581 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 574.273247891059, + "y": 458.6189866873149 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 571.367247891059, + "y": 462.6189866873149 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 566.665247891059, + "y": 464.1469866873149 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 561.963247891059, + "y": 462.6189866873149 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 559.0572478910591, + "y": 458.6189866873149 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 559.0572478910591, + "y": 453.6749866873149 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 561.963247891059, + "y": 449.6749866873149 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 566.665247891059, + "y": 448.1469866873149 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 571.367247891059, + "y": 449.6749866873149 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 574.273247891059, + "y": 453.6749866873149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 188.07721600000002, + "axes": { + "#": 7583 + }, + "bounds": { + "#": 7589 + }, + "circleRadius": 8, + "collisionFilter": { + "#": 7592 + }, + "constraintImpulse": { + "#": 7593 + }, + "density": 0.001, + "force": { + "#": 7594 + }, + "friction": 0.00001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 244, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 5.316965134150007, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.18807721600000002, + "motion": 0, + "parent": null, + "position": { + "#": 7595 + }, + "positionImpulse": { + "#": 7596 + }, + "positionPrev": { + "#": 7597 + }, + "region": { + "#": 7598 + }, + "render": { + "#": 7599 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9730662024746852, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7601 + }, + "vertices": { + "#": 7602 + } + }, + [ + { + "#": 7584 + }, + { + "#": 7585 + }, + { + "#": 7586 + }, + { + "#": 7587 + }, + { + "#": 7588 + } + ], + { + "x": -0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": -0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.3090586311458668, + "y": -0.9510429866805407 + }, + { + "x": 0.8090333553601466, + "y": -0.5877627326691465 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 7590 + }, + "min": { + "#": 7591 + } + }, + { + "x": 594.5732988422747, + "y": 464.45756970719856 + }, + { + "x": 579.3572988422748, + "y": 448.45756970719856 + }, + { + "category": 1, + "group": -4, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.9652988422746, + "y": 456.45756970719856 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.9479009762117, + "y": 453.6838401255343 + }, + { + "endCol": 12, + "endRow": 9, + "id": "12,12,9,9", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7600 + }, + "strokeStyle": "#911a25", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.9842030095884411, + "y": 2.801820355761947 + }, + [ + { + "#": 7603 + }, + { + "#": 7604 + }, + { + "#": 7605 + }, + { + "#": 7606 + }, + { + "#": 7607 + }, + { + "#": 7608 + }, + { + "#": 7609 + }, + { + "#": 7610 + }, + { + "#": 7611 + }, + { + "#": 7612 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 594.5732988422747, + "y": 458.92956970719854 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 591.6672988422747, + "y": 462.92956970719854 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.9652988422747, + "y": 464.45756970719856 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 582.2632988422747, + "y": 462.92956970719854 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 579.3572988422748, + "y": 458.92956970719854 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 579.3572988422748, + "y": 453.9855697071986 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 582.2632988422747, + "y": 449.9855697071986 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 586.9652988422747, + "y": 448.45756970719856 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 591.6672988422747, + "y": 449.9855697071986 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 594.5732988422747, + "y": 453.9855697071986 + }, + [], + [ + { + "#": 7615 + }, + { + "#": 7619 + }, + { + "#": 7623 + }, + { + "#": 7627 + }, + { + "#": 7631 + }, + { + "#": 7635 + }, + { + "#": 7639 + }, + { + "#": 7643 + }, + { + "#": 7647 + }, + { + "#": 7651 + }, + { + "#": 7655 + }, + { + "#": 7659 + }, + { + "#": 7663 + }, + { + "#": 7667 + }, + { + "#": 7671 + }, + { + "#": 7675 + }, + { + "#": 7679 + }, + { + "#": 7683 + }, + { + "#": 7687 + }, + { + "#": 7691 + }, + { + "#": 7695 + }, + { + "#": 7699 + }, + { + "#": 7703 + }, + { + "#": 7707 + }, + { + "#": 7711 + }, + { + "#": 7715 + }, + { + "#": 7719 + }, + { + "#": 7723 + }, + { + "#": 7727 + }, + { + "#": 7731 + }, + { + "#": 7735 + }, + { + "#": 7739 + }, + { + "#": 7743 + }, + { + "#": 7747 + }, + { + "#": 7751 + }, + { + "#": 7755 + }, + { + "#": 7759 + }, + { + "#": 7763 + }, + { + "#": 7767 + }, + { + "#": 7771 + }, + { + "#": 7775 + }, + { + "#": 7779 + }, + { + "#": 7783 + }, + { + "#": 7787 + }, + { + "#": 7791 + }, + { + "#": 7795 + }, + { + "#": 7799 + }, + { + "#": 7803 + }, + { + "#": 7807 + }, + { + "#": 7811 + }, + { + "#": 7815 + }, + { + "#": 7819 + }, + { + "#": 7823 + }, + { + "#": 7827 + }, + { + "#": 7831 + }, + { + "#": 7835 + }, + { + "#": 7839 + }, + { + "#": 7843 + }, + { + "#": 7847 + }, + { + "#": 7851 + }, + { + "#": 7855 + }, + { + "#": 7859 + }, + { + "#": 7863 + }, + { + "#": 7867 + }, + { + "#": 7871 + }, + { + "#": 7875 + }, + { + "#": 7879 + }, + { + "#": 7883 + }, + { + "#": 7887 + }, + { + "#": 7891 + }, + { + "#": 7895 + }, + { + "#": 7899 + }, + { + "#": 7903 + }, + { + "#": 7907 + }, + { + "#": 7911 + }, + { + "#": 7915 + }, + { + "#": 7919 + }, + { + "#": 7923 + }, + { + "#": 7927 + }, + { + "#": 7931 + }, + { + "#": 7935 + }, + { + "#": 7939 + }, + { + "#": 7943 + }, + { + "#": 7947 + }, + { + "#": 7951 + }, + { + "#": 7955 + }, + { + "#": 7959 + }, + { + "#": 7963 + }, + { + "#": 7967 + }, + { + "#": 7971 + }, + { + "#": 7975 + }, + { + "#": 7979 + }, + { + "#": 7983 + }, + { + "#": 7987 + }, + { + "#": 7991 + }, + { + "#": 7995 + }, + { + "#": 7999 + }, + { + "#": 8003 + }, + { + "#": 8007 + }, + { + "#": 8011 + }, + { + "#": 8015 + }, + { + "#": 8019 + }, + { + "#": 8023 + }, + { + "#": 8027 + }, + { + "#": 8031 + }, + { + "#": 8035 + }, + { + "#": 8039 + }, + { + "#": 8043 + }, + { + "#": 8047 + }, + { + "#": 8051 + }, + { + "#": 8055 + }, + { + "#": 8059 + }, + { + "#": 8063 + }, + { + "#": 8067 + }, + { + "#": 8071 + }, + { + "#": 8075 + }, + { + "#": 8079 + }, + { + "#": 8083 + }, + { + "#": 8087 + }, + { + "#": 8091 + }, + { + "#": 8095 + }, + { + "#": 8099 + }, + { + "#": 8103 + }, + { + "#": 8107 + }, + { + "#": 8111 + }, + { + "#": 8115 + }, + { + "#": 8119 + }, + { + "#": 8123 + }, + { + "#": 8127 + }, + { + "#": 8131 + }, + { + "#": 8135 + }, + { + "#": 8139 + }, + { + "#": 8143 + }, + { + "#": 8147 + }, + { + "#": 8151 + }, + { + "#": 8155 + }, + { + "#": 8159 + }, + { + "#": 8163 + }, + { + "#": 8167 + }, + { + "#": 8171 + }, + { + "#": 8175 + }, + { + "#": 8179 + }, + { + "#": 8183 + }, + { + "#": 8187 + }, + { + "#": 8191 + }, + { + "#": 8195 + }, + { + "#": 8199 + }, + { + "#": 8203 + }, + { + "#": 8207 + }, + { + "#": 8211 + }, + { + "#": 8215 + }, + { + "#": 8219 + }, + { + "#": 8223 + }, + { + "#": 8227 + }, + { + "#": 8231 + }, + { + "#": 8235 + }, + { + "#": 8239 + }, + { + "#": 8243 + }, + { + "#": 8247 + }, + { + "#": 8251 + }, + { + "#": 8255 + }, + { + "#": 8259 + }, + { + "#": 8263 + }, + { + "#": 8267 + }, + { + "#": 8271 + }, + { + "#": 8275 + }, + { + "#": 8279 + }, + { + "#": 8283 + }, + { + "#": 8287 + }, + { + "#": 8291 + }, + { + "#": 8295 + }, + { + "#": 8299 + }, + { + "#": 8303 + }, + { + "#": 8307 + }, + { + "#": 8311 + }, + { + "#": 8315 + }, + { + "#": 8319 + }, + { + "#": 8323 + }, + { + "#": 8327 + }, + { + "#": 8331 + }, + { + "#": 8335 + }, + { + "#": 8339 + }, + { + "#": 8343 + }, + { + "#": 8347 + }, + { + "#": 8351 + }, + { + "#": 8355 + }, + { + "#": 8359 + }, + { + "#": 8363 + }, + { + "#": 8367 + }, + { + "#": 8371 + }, + { + "#": 8375 + }, + { + "#": 8379 + }, + { + "#": 8383 + }, + { + "#": 8387 + }, + { + "#": 8391 + }, + { + "#": 8395 + }, + { + "#": 8399 + }, + { + "#": 8403 + }, + { + "#": 8407 + }, + { + "#": 8411 + }, + { + "#": 8415 + }, + { + "#": 8419 + }, + { + "#": 8423 + }, + { + "#": 8427 + }, + { + "#": 8431 + }, + { + "#": 8435 + }, + { + "#": 8439 + }, + { + "#": 8443 + }, + { + "#": 8447 + }, + { + "#": 8451 + }, + { + "#": 8455 + }, + { + "#": 8459 + }, + { + "#": 8463 + }, + { + "#": 8467 + }, + { + "#": 8471 + }, + { + "#": 8475 + }, + { + "#": 8479 + }, + { + "#": 8483 + }, + { + "#": 8487 + }, + { + "#": 8491 + }, + { + "#": 8495 + }, + { + "#": 8499 + }, + { + "#": 8503 + }, + { + "#": 8507 + }, + { + "#": 8511 + }, + { + "#": 8515 + }, + { + "#": 8519 + }, + { + "#": 8523 + }, + { + "#": 8527 + }, + { + "#": 8531 + }, + { + "#": 8535 + }, + { + "#": 8539 + }, + { + "#": 8543 + }, + { + "#": 8547 + }, + { + "#": 8551 + }, + { + "#": 8555 + }, + { + "#": 8559 + }, + { + "#": 8563 + }, + { + "#": 8567 + }, + { + "#": 8571 + }, + { + "#": 8575 + }, + { + "#": 8579 + }, + { + "#": 8583 + }, + { + "#": 8587 + }, + { + "#": 8591 + }, + { + "#": 8595 + }, + { + "#": 8599 + }, + { + "#": 8603 + }, + { + "#": 8607 + }, + { + "#": 8611 + }, + { + "#": 8615 + }, + { + "#": 8619 + }, + { + "#": 8623 + }, + { + "#": 8627 + }, + { + "#": 8631 + }, + { + "#": 8635 + }, + { + "#": 8639 + }, + { + "#": 8643 + }, + { + "#": 8647 + }, + { + "#": 8651 + }, + { + "#": 8655 + }, + { + "#": 8659 + }, + { + "#": 8663 + }, + { + "#": 8667 + }, + { + "#": 8671 + }, + { + "#": 8675 + }, + { + "#": 8679 + }, + { + "#": 8683 + }, + { + "#": 8687 + }, + { + "#": 8691 + }, + { + "#": 8695 + }, + { + "#": 8699 + }, + { + "#": 8703 + }, + { + "#": 8707 + }, + { + "#": 8711 + }, + { + "#": 8715 + }, + { + "#": 8719 + }, + { + "#": 8723 + }, + { + "#": 8727 + }, + { + "#": 8731 + }, + { + "#": 8735 + }, + { + "#": 8739 + }, + { + "#": 8743 + }, + { + "#": 8747 + }, + { + "#": 8751 + }, + { + "#": 8755 + }, + { + "#": 8759 + }, + { + "#": 8763 + }, + { + "#": 8767 + }, + { + "#": 8771 + }, + { + "#": 8775 + }, + { + "#": 8779 + }, + { + "#": 8783 + }, + { + "#": 8787 + }, + { + "#": 8791 + }, + { + "#": 8795 + }, + { + "#": 8799 + }, + { + "#": 8803 + }, + { + "#": 8807 + }, + { + "#": 8811 + }, + { + "#": 8815 + }, + { + "#": 8819 + }, + { + "#": 8823 + }, + { + "#": 8827 + }, + { + "#": 8831 + }, + { + "#": 8835 + }, + { + "#": 8839 + }, + { + "#": 8843 + }, + { + "#": 8847 + }, + { + "#": 8851 + }, + { + "#": 8855 + }, + { + "#": 8859 + }, + { + "#": 8863 + }, + { + "#": 8867 + }, + { + "#": 8871 + }, + { + "#": 8875 + }, + { + "#": 8879 + }, + { + "#": 8883 + }, + { + "#": 8887 + }, + { + "#": 8891 + }, + { + "#": 8895 + }, + { + "#": 8899 + }, + { + "#": 8903 + }, + { + "#": 8907 + }, + { + "#": 8911 + }, + { + "#": 8915 + }, + { + "#": 8919 + }, + { + "#": 8923 + }, + { + "#": 8927 + }, + { + "#": 8931 + }, + { + "#": 8935 + }, + { + "#": 8939 + }, + { + "#": 8943 + }, + { + "#": 8947 + }, + { + "#": 8951 + }, + { + "#": 8955 + }, + { + "#": 8959 + }, + { + "#": 8963 + }, + { + "#": 8967 + }, + { + "#": 8971 + }, + { + "#": 8975 + }, + { + "#": 8979 + }, + { + "#": 8983 + }, + { + "#": 8987 + }, + { + "#": 8991 + }, + { + "#": 8995 + }, + { + "#": 8999 + }, + { + "#": 9003 + }, + { + "#": 9007 + }, + { + "#": 9011 + }, + { + "#": 9015 + }, + { + "#": 9019 + }, + { + "#": 9023 + }, + { + "#": 9027 + }, + { + "#": 9031 + }, + { + "#": 9035 + }, + { + "#": 9039 + }, + { + "#": 9043 + }, + { + "#": 9047 + }, + { + "#": 9051 + }, + { + "#": 9055 + }, + { + "#": 9059 + }, + { + "#": 9063 + }, + { + "#": 9067 + }, + { + "#": 9071 + }, + { + "#": 9075 + }, + { + "#": 9079 + }, + { + "#": 9083 + }, + { + "#": 9087 + }, + { + "#": 9091 + }, + { + "#": 9095 + }, + { + "#": 9099 + }, + { + "#": 9103 + }, + { + "#": 9107 + }, + { + "#": 9111 + }, + { + "#": 9115 + }, + { + "#": 9119 + }, + { + "#": 9123 + }, + { + "#": 9127 + }, + { + "#": 9131 + }, + { + "#": 9135 + }, + { + "#": 9139 + }, + { + "#": 9143 + }, + { + "#": 9147 + }, + { + "#": 9151 + }, + { + "#": 9155 + }, + { + "#": 9159 + }, + { + "#": 9163 + }, + { + "#": 9167 + }, + { + "#": 9171 + }, + { + "#": 9175 + }, + { + "#": 9179 + }, + { + "#": 9183 + }, + { + "#": 9187 + }, + { + "#": 9191 + }, + { + "#": 9195 + }, + { + "#": 9199 + }, + { + "#": 9203 + }, + { + "#": 9207 + }, + { + "#": 9211 + }, + { + "#": 9215 + }, + { + "#": 9219 + }, + { + "#": 9223 + }, + { + "#": 9227 + }, + { + "#": 9231 + }, + { + "#": 9235 + }, + { + "#": 9239 + }, + { + "#": 9243 + }, + { + "#": 9247 + }, + { + "#": 9251 + }, + { + "#": 9255 + }, + { + "#": 9259 + }, + { + "#": 9263 + }, + { + "#": 9267 + }, + { + "#": 9271 + }, + { + "#": 9275 + }, + { + "#": 9279 + }, + { + "#": 9283 + }, + { + "#": 9287 + }, + { + "#": 9291 + }, + { + "#": 9295 + }, + { + "#": 9299 + }, + { + "#": 9303 + }, + { + "#": 9307 + }, + { + "#": 9311 + }, + { + "#": 9315 + }, + { + "#": 9319 + }, + { + "#": 9323 + }, + { + "#": 9327 + }, + { + "#": 9331 + }, + { + "#": 9335 + }, + { + "#": 9339 + }, + { + "#": 9343 + }, + { + "#": 9347 + }, + { + "#": 9351 + }, + { + "#": 9355 + }, + { + "#": 9359 + }, + { + "#": 9363 + }, + { + "#": 9367 + }, + { + "#": 9371 + }, + { + "#": 9375 + }, + { + "#": 9379 + }, + { + "#": 9383 + }, + { + "#": 9387 + }, + { + "#": 9391 + }, + { + "#": 9395 + }, + { + "#": 9399 + }, + { + "#": 9403 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 245, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7616 + }, + "pointB": { + "#": 7617 + }, + "render": { + "#": 7618 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 246, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7620 + }, + "pointB": { + "#": 7621 + }, + "render": { + "#": 7622 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 247, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7624 + }, + "pointB": { + "#": 7625 + }, + "render": { + "#": 7626 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 248, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7628 + }, + "pointB": { + "#": 7629 + }, + "render": { + "#": 7630 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 249, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7632 + }, + "pointB": { + "#": 7633 + }, + "render": { + "#": 7634 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 250, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7636 + }, + "pointB": { + "#": 7637 + }, + "render": { + "#": 7638 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 251, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7640 + }, + "pointB": { + "#": 7641 + }, + "render": { + "#": 7642 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 252, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7644 + }, + "pointB": { + "#": 7645 + }, + "render": { + "#": 7646 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 253, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7648 + }, + "pointB": { + "#": 7649 + }, + "render": { + "#": 7650 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 254, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7652 + }, + "pointB": { + "#": 7653 + }, + "render": { + "#": 7654 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 255, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7656 + }, + "pointB": { + "#": 7657 + }, + "render": { + "#": 7658 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 256, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7660 + }, + "pointB": { + "#": 7661 + }, + "render": { + "#": 7662 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 257, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7664 + }, + "pointB": { + "#": 7665 + }, + "render": { + "#": 7666 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 258, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7668 + }, + "pointB": { + "#": 7669 + }, + "render": { + "#": 7670 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 259, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7672 + }, + "pointB": { + "#": 7673 + }, + "render": { + "#": 7674 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 260, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 7676 + }, + "pointB": { + "#": 7677 + }, + "render": { + "#": 7678 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 261, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7680 + }, + "pointB": { + "#": 7681 + }, + "render": { + "#": 7682 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 262, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7684 + }, + "pointB": { + "#": 7685 + }, + "render": { + "#": 7686 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 263, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7688 + }, + "pointB": { + "#": 7689 + }, + "render": { + "#": 7690 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 264, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7692 + }, + "pointB": { + "#": 7693 + }, + "render": { + "#": 7694 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 265, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7696 + }, + "pointB": { + "#": 7697 + }, + "render": { + "#": 7698 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 266, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7700 + }, + "pointB": { + "#": 7701 + }, + "render": { + "#": 7702 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 267, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7704 + }, + "pointB": { + "#": 7705 + }, + "render": { + "#": 7706 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 268, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7708 + }, + "pointB": { + "#": 7709 + }, + "render": { + "#": 7710 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 269, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7712 + }, + "pointB": { + "#": 7713 + }, + "render": { + "#": 7714 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 270, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7716 + }, + "pointB": { + "#": 7717 + }, + "render": { + "#": 7718 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 271, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7720 + }, + "pointB": { + "#": 7721 + }, + "render": { + "#": 7722 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 272, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7724 + }, + "pointB": { + "#": 7725 + }, + "render": { + "#": 7726 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 273, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7728 + }, + "pointB": { + "#": 7729 + }, + "render": { + "#": 7730 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 274, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7732 + }, + "pointB": { + "#": 7733 + }, + "render": { + "#": 7734 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 275, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7736 + }, + "pointB": { + "#": 7737 + }, + "render": { + "#": 7738 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 276, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7740 + }, + "pointB": { + "#": 7741 + }, + "render": { + "#": 7742 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 277, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7744 + }, + "pointB": { + "#": 7745 + }, + "render": { + "#": 7746 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 278, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7748 + }, + "pointB": { + "#": 7749 + }, + "render": { + "#": 7750 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 279, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 7752 + }, + "pointB": { + "#": 7753 + }, + "render": { + "#": 7754 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 280, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7756 + }, + "pointB": { + "#": 7757 + }, + "render": { + "#": 7758 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 281, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7760 + }, + "pointB": { + "#": 7761 + }, + "render": { + "#": 7762 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 282, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7764 + }, + "pointB": { + "#": 7765 + }, + "render": { + "#": 7766 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 283, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7768 + }, + "pointB": { + "#": 7769 + }, + "render": { + "#": 7770 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 284, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7772 + }, + "pointB": { + "#": 7773 + }, + "render": { + "#": 7774 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 285, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7776 + }, + "pointB": { + "#": 7777 + }, + "render": { + "#": 7778 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 286, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7780 + }, + "pointB": { + "#": 7781 + }, + "render": { + "#": 7782 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 287, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7784 + }, + "pointB": { + "#": 7785 + }, + "render": { + "#": 7786 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 288, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7788 + }, + "pointB": { + "#": 7789 + }, + "render": { + "#": 7790 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 289, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7792 + }, + "pointB": { + "#": 7793 + }, + "render": { + "#": 7794 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 290, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7796 + }, + "pointB": { + "#": 7797 + }, + "render": { + "#": 7798 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 291, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7800 + }, + "pointB": { + "#": 7801 + }, + "render": { + "#": 7802 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 292, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7804 + }, + "pointB": { + "#": 7805 + }, + "render": { + "#": 7806 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 293, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7808 + }, + "pointB": { + "#": 7809 + }, + "render": { + "#": 7810 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 294, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7812 + }, + "pointB": { + "#": 7813 + }, + "render": { + "#": 7814 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 295, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7816 + }, + "pointB": { + "#": 7817 + }, + "render": { + "#": 7818 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 296, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7820 + }, + "pointB": { + "#": 7821 + }, + "render": { + "#": 7822 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 297, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7824 + }, + "pointB": { + "#": 7825 + }, + "render": { + "#": 7826 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 298, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7828 + }, + "pointB": { + "#": 7829 + }, + "render": { + "#": 7830 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 299, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7832 + }, + "pointB": { + "#": 7833 + }, + "render": { + "#": 7834 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 300, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7836 + }, + "pointB": { + "#": 7837 + }, + "render": { + "#": 7838 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 301, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7840 + }, + "pointB": { + "#": 7841 + }, + "render": { + "#": 7842 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 302, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7844 + }, + "pointB": { + "#": 7845 + }, + "render": { + "#": 7846 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 303, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7848 + }, + "pointB": { + "#": 7849 + }, + "render": { + "#": 7850 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 304, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7852 + }, + "pointB": { + "#": 7853 + }, + "render": { + "#": 7854 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 305, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7856 + }, + "pointB": { + "#": 7857 + }, + "render": { + "#": 7858 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 306, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7860 + }, + "pointB": { + "#": 7861 + }, + "render": { + "#": 7862 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 307, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7864 + }, + "pointB": { + "#": 7865 + }, + "render": { + "#": 7866 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 308, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7868 + }, + "pointB": { + "#": 7869 + }, + "render": { + "#": 7870 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 309, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7872 + }, + "pointB": { + "#": 7873 + }, + "render": { + "#": 7874 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 310, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7876 + }, + "pointB": { + "#": 7877 + }, + "render": { + "#": 7878 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 311, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7880 + }, + "pointB": { + "#": 7881 + }, + "render": { + "#": 7882 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 312, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7884 + }, + "pointB": { + "#": 7885 + }, + "render": { + "#": 7886 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 313, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7888 + }, + "pointB": { + "#": 7889 + }, + "render": { + "#": 7890 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 314, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7892 + }, + "pointB": { + "#": 7893 + }, + "render": { + "#": 7894 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 315, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7896 + }, + "pointB": { + "#": 7897 + }, + "render": { + "#": 7898 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 316, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7900 + }, + "pointB": { + "#": 7901 + }, + "render": { + "#": 7902 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 317, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 7904 + }, + "pointB": { + "#": 7905 + }, + "render": { + "#": 7906 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 318, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 7908 + }, + "pointB": { + "#": 7909 + }, + "render": { + "#": 7910 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 319, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7912 + }, + "pointB": { + "#": 7913 + }, + "render": { + "#": 7914 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 320, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7916 + }, + "pointB": { + "#": 7917 + }, + "render": { + "#": 7918 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 321, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 7920 + }, + "pointB": { + "#": 7921 + }, + "render": { + "#": 7922 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 322, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7924 + }, + "pointB": { + "#": 7925 + }, + "render": { + "#": 7926 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 323, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7928 + }, + "pointB": { + "#": 7929 + }, + "render": { + "#": 7930 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 324, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7932 + }, + "pointB": { + "#": 7933 + }, + "render": { + "#": 7934 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 325, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7936 + }, + "pointB": { + "#": 7937 + }, + "render": { + "#": 7938 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 326, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7940 + }, + "pointB": { + "#": 7941 + }, + "render": { + "#": 7942 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 327, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7944 + }, + "pointB": { + "#": 7945 + }, + "render": { + "#": 7946 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 328, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7948 + }, + "pointB": { + "#": 7949 + }, + "render": { + "#": 7950 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 329, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7952 + }, + "pointB": { + "#": 7953 + }, + "render": { + "#": 7954 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 330, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7956 + }, + "pointB": { + "#": 7957 + }, + "render": { + "#": 7958 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 331, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7960 + }, + "pointB": { + "#": 7961 + }, + "render": { + "#": 7962 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 332, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7964 + }, + "pointB": { + "#": 7965 + }, + "render": { + "#": 7966 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 333, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7968 + }, + "pointB": { + "#": 7969 + }, + "render": { + "#": 7970 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 334, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7972 + }, + "pointB": { + "#": 7973 + }, + "render": { + "#": 7974 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 335, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7976 + }, + "pointB": { + "#": 7977 + }, + "render": { + "#": 7978 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 336, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7980 + }, + "pointB": { + "#": 7981 + }, + "render": { + "#": 7982 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 337, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7984 + }, + "pointB": { + "#": 7985 + }, + "render": { + "#": 7986 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 338, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7988 + }, + "pointB": { + "#": 7989 + }, + "render": { + "#": 7990 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 339, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7992 + }, + "pointB": { + "#": 7993 + }, + "render": { + "#": 7994 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 340, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 7996 + }, + "pointB": { + "#": 7997 + }, + "render": { + "#": 7998 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 341, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8000 + }, + "pointB": { + "#": 8001 + }, + "render": { + "#": 8002 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 342, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8004 + }, + "pointB": { + "#": 8005 + }, + "render": { + "#": 8006 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 343, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8008 + }, + "pointB": { + "#": 8009 + }, + "render": { + "#": 8010 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 344, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8012 + }, + "pointB": { + "#": 8013 + }, + "render": { + "#": 8014 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 345, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8016 + }, + "pointB": { + "#": 8017 + }, + "render": { + "#": 8018 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 346, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8020 + }, + "pointB": { + "#": 8021 + }, + "render": { + "#": 8022 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 347, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8024 + }, + "pointB": { + "#": 8025 + }, + "render": { + "#": 8026 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 348, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8028 + }, + "pointB": { + "#": 8029 + }, + "render": { + "#": 8030 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 349, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8032 + }, + "pointB": { + "#": 8033 + }, + "render": { + "#": 8034 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 350, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8036 + }, + "pointB": { + "#": 8037 + }, + "render": { + "#": 8038 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 351, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8040 + }, + "pointB": { + "#": 8041 + }, + "render": { + "#": 8042 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 352, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8044 + }, + "pointB": { + "#": 8045 + }, + "render": { + "#": 8046 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 353, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8048 + }, + "pointB": { + "#": 8049 + }, + "render": { + "#": 8050 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 354, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8052 + }, + "pointB": { + "#": 8053 + }, + "render": { + "#": 8054 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 355, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8056 + }, + "pointB": { + "#": 8057 + }, + "render": { + "#": 8058 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 356, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8060 + }, + "pointB": { + "#": 8061 + }, + "render": { + "#": 8062 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 357, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8064 + }, + "pointB": { + "#": 8065 + }, + "render": { + "#": 8066 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 358, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8068 + }, + "pointB": { + "#": 8069 + }, + "render": { + "#": 8070 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 359, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8072 + }, + "pointB": { + "#": 8073 + }, + "render": { + "#": 8074 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 360, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8076 + }, + "pointB": { + "#": 8077 + }, + "render": { + "#": 8078 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 361, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8080 + }, + "pointB": { + "#": 8081 + }, + "render": { + "#": 8082 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 362, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8084 + }, + "pointB": { + "#": 8085 + }, + "render": { + "#": 8086 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 363, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8088 + }, + "pointB": { + "#": 8089 + }, + "render": { + "#": 8090 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 364, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8092 + }, + "pointB": { + "#": 8093 + }, + "render": { + "#": 8094 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 365, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8096 + }, + "pointB": { + "#": 8097 + }, + "render": { + "#": 8098 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 366, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8100 + }, + "pointB": { + "#": 8101 + }, + "render": { + "#": 8102 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 367, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8104 + }, + "pointB": { + "#": 8105 + }, + "render": { + "#": 8106 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 368, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8108 + }, + "pointB": { + "#": 8109 + }, + "render": { + "#": 8110 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 369, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8112 + }, + "pointB": { + "#": 8113 + }, + "render": { + "#": 8114 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 370, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8116 + }, + "pointB": { + "#": 8117 + }, + "render": { + "#": 8118 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 371, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8120 + }, + "pointB": { + "#": 8121 + }, + "render": { + "#": 8122 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 372, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8124 + }, + "pointB": { + "#": 8125 + }, + "render": { + "#": 8126 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 373, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8128 + }, + "pointB": { + "#": 8129 + }, + "render": { + "#": 8130 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 374, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8132 + }, + "pointB": { + "#": 8133 + }, + "render": { + "#": 8134 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 375, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8136 + }, + "pointB": { + "#": 8137 + }, + "render": { + "#": 8138 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 376, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8140 + }, + "pointB": { + "#": 8141 + }, + "render": { + "#": 8142 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 377, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8144 + }, + "pointB": { + "#": 8145 + }, + "render": { + "#": 8146 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 378, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8148 + }, + "pointB": { + "#": 8149 + }, + "render": { + "#": 8150 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 379, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8152 + }, + "pointB": { + "#": 8153 + }, + "render": { + "#": 8154 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 380, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8156 + }, + "pointB": { + "#": 8157 + }, + "render": { + "#": 8158 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 381, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8160 + }, + "pointB": { + "#": 8161 + }, + "render": { + "#": 8162 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 382, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8164 + }, + "pointB": { + "#": 8165 + }, + "render": { + "#": 8166 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 383, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8168 + }, + "pointB": { + "#": 8169 + }, + "render": { + "#": 8170 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 384, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8172 + }, + "pointB": { + "#": 8173 + }, + "render": { + "#": 8174 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 385, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8176 + }, + "pointB": { + "#": 8177 + }, + "render": { + "#": 8178 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 386, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8180 + }, + "pointB": { + "#": 8181 + }, + "render": { + "#": 8182 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 387, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8184 + }, + "pointB": { + "#": 8185 + }, + "render": { + "#": 8186 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 388, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8188 + }, + "pointB": { + "#": 8189 + }, + "render": { + "#": 8190 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 389, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8192 + }, + "pointB": { + "#": 8193 + }, + "render": { + "#": 8194 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 390, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8196 + }, + "pointB": { + "#": 8197 + }, + "render": { + "#": 8198 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 391, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8200 + }, + "pointB": { + "#": 8201 + }, + "render": { + "#": 8202 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 392, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8204 + }, + "pointB": { + "#": 8205 + }, + "render": { + "#": 8206 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 393, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8208 + }, + "pointB": { + "#": 8209 + }, + "render": { + "#": 8210 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 394, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8212 + }, + "pointB": { + "#": 8213 + }, + "render": { + "#": 8214 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 395, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8216 + }, + "pointB": { + "#": 8217 + }, + "render": { + "#": 8218 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 396, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8220 + }, + "pointB": { + "#": 8221 + }, + "render": { + "#": 8222 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 397, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8224 + }, + "pointB": { + "#": 8225 + }, + "render": { + "#": 8226 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 398, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8228 + }, + "pointB": { + "#": 8229 + }, + "render": { + "#": 8230 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 399, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8232 + }, + "pointB": { + "#": 8233 + }, + "render": { + "#": 8234 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 400, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8236 + }, + "pointB": { + "#": 8237 + }, + "render": { + "#": 8238 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 401, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8240 + }, + "pointB": { + "#": 8241 + }, + "render": { + "#": 8242 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 402, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8244 + }, + "pointB": { + "#": 8245 + }, + "render": { + "#": 8246 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 403, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8248 + }, + "pointB": { + "#": 8249 + }, + "render": { + "#": 8250 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 404, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8252 + }, + "pointB": { + "#": 8253 + }, + "render": { + "#": 8254 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 405, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8256 + }, + "pointB": { + "#": 8257 + }, + "render": { + "#": 8258 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 406, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8260 + }, + "pointB": { + "#": 8261 + }, + "render": { + "#": 8262 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 407, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8264 + }, + "pointB": { + "#": 8265 + }, + "render": { + "#": 8266 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 408, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8268 + }, + "pointB": { + "#": 8269 + }, + "render": { + "#": 8270 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 409, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8272 + }, + "pointB": { + "#": 8273 + }, + "render": { + "#": 8274 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 410, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8276 + }, + "pointB": { + "#": 8277 + }, + "render": { + "#": 8278 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 411, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8280 + }, + "pointB": { + "#": 8281 + }, + "render": { + "#": 8282 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 412, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8284 + }, + "pointB": { + "#": 8285 + }, + "render": { + "#": 8286 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 413, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8288 + }, + "pointB": { + "#": 8289 + }, + "render": { + "#": 8290 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 414, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8292 + }, + "pointB": { + "#": 8293 + }, + "render": { + "#": 8294 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 415, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8296 + }, + "pointB": { + "#": 8297 + }, + "render": { + "#": 8298 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 416, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8300 + }, + "pointB": { + "#": 8301 + }, + "render": { + "#": 8302 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 417, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8304 + }, + "pointB": { + "#": 8305 + }, + "render": { + "#": 8306 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 418, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8308 + }, + "pointB": { + "#": 8309 + }, + "render": { + "#": 8310 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 419, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8312 + }, + "pointB": { + "#": 8313 + }, + "render": { + "#": 8314 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 420, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8316 + }, + "pointB": { + "#": 8317 + }, + "render": { + "#": 8318 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 421, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8320 + }, + "pointB": { + "#": 8321 + }, + "render": { + "#": 8322 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 422, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8324 + }, + "pointB": { + "#": 8325 + }, + "render": { + "#": 8326 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 423, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8328 + }, + "pointB": { + "#": 8329 + }, + "render": { + "#": 8330 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 424, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8332 + }, + "pointB": { + "#": 8333 + }, + "render": { + "#": 8334 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 425, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8336 + }, + "pointB": { + "#": 8337 + }, + "render": { + "#": 8338 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 426, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8340 + }, + "pointB": { + "#": 8341 + }, + "render": { + "#": 8342 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 427, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8344 + }, + "pointB": { + "#": 8345 + }, + "render": { + "#": 8346 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 428, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8348 + }, + "pointB": { + "#": 8349 + }, + "render": { + "#": 8350 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 429, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8352 + }, + "pointB": { + "#": 8353 + }, + "render": { + "#": 8354 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 430, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8356 + }, + "pointB": { + "#": 8357 + }, + "render": { + "#": 8358 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 431, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8360 + }, + "pointB": { + "#": 8361 + }, + "render": { + "#": 8362 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 432, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8364 + }, + "pointB": { + "#": 8365 + }, + "render": { + "#": 8366 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 433, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8368 + }, + "pointB": { + "#": 8369 + }, + "render": { + "#": 8370 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 434, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8372 + }, + "pointB": { + "#": 8373 + }, + "render": { + "#": 8374 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 435, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8376 + }, + "pointB": { + "#": 8377 + }, + "render": { + "#": 8378 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 436, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8380 + }, + "pointB": { + "#": 8381 + }, + "render": { + "#": 8382 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 437, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8384 + }, + "pointB": { + "#": 8385 + }, + "render": { + "#": 8386 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 438, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8388 + }, + "pointB": { + "#": 8389 + }, + "render": { + "#": 8390 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 439, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8392 + }, + "pointB": { + "#": 8393 + }, + "render": { + "#": 8394 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 440, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8396 + }, + "pointB": { + "#": 8397 + }, + "render": { + "#": 8398 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 441, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8400 + }, + "pointB": { + "#": 8401 + }, + "render": { + "#": 8402 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 442, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8404 + }, + "pointB": { + "#": 8405 + }, + "render": { + "#": 8406 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 443, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8408 + }, + "pointB": { + "#": 8409 + }, + "render": { + "#": 8410 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 444, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8412 + }, + "pointB": { + "#": 8413 + }, + "render": { + "#": 8414 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 445, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8416 + }, + "pointB": { + "#": 8417 + }, + "render": { + "#": 8418 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 446, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8420 + }, + "pointB": { + "#": 8421 + }, + "render": { + "#": 8422 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 447, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8424 + }, + "pointB": { + "#": 8425 + }, + "render": { + "#": 8426 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 448, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8428 + }, + "pointB": { + "#": 8429 + }, + "render": { + "#": 8430 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 449, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8432 + }, + "pointB": { + "#": 8433 + }, + "render": { + "#": 8434 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 450, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8436 + }, + "pointB": { + "#": 8437 + }, + "render": { + "#": 8438 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 451, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8440 + }, + "pointB": { + "#": 8441 + }, + "render": { + "#": 8442 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 452, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8444 + }, + "pointB": { + "#": 8445 + }, + "render": { + "#": 8446 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 453, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8448 + }, + "pointB": { + "#": 8449 + }, + "render": { + "#": 8450 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 454, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8452 + }, + "pointB": { + "#": 8453 + }, + "render": { + "#": 8454 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 455, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8456 + }, + "pointB": { + "#": 8457 + }, + "render": { + "#": 8458 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 456, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8460 + }, + "pointB": { + "#": 8461 + }, + "render": { + "#": 8462 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 457, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8464 + }, + "pointB": { + "#": 8465 + }, + "render": { + "#": 8466 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 458, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8468 + }, + "pointB": { + "#": 8469 + }, + "render": { + "#": 8470 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 459, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8472 + }, + "pointB": { + "#": 8473 + }, + "render": { + "#": 8474 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 460, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8476 + }, + "pointB": { + "#": 8477 + }, + "render": { + "#": 8478 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 461, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8480 + }, + "pointB": { + "#": 8481 + }, + "render": { + "#": 8482 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 462, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8484 + }, + "pointB": { + "#": 8485 + }, + "render": { + "#": 8486 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 463, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8488 + }, + "pointB": { + "#": 8489 + }, + "render": { + "#": 8490 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 464, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8492 + }, + "pointB": { + "#": 8493 + }, + "render": { + "#": 8494 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 465, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8496 + }, + "pointB": { + "#": 8497 + }, + "render": { + "#": 8498 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 466, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8500 + }, + "pointB": { + "#": 8501 + }, + "render": { + "#": 8502 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 467, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8504 + }, + "pointB": { + "#": 8505 + }, + "render": { + "#": 8506 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 468, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8508 + }, + "pointB": { + "#": 8509 + }, + "render": { + "#": 8510 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 469, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8512 + }, + "pointB": { + "#": 8513 + }, + "render": { + "#": 8514 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 470, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8516 + }, + "pointB": { + "#": 8517 + }, + "render": { + "#": 8518 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 471, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8520 + }, + "pointB": { + "#": 8521 + }, + "render": { + "#": 8522 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 472, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8524 + }, + "pointB": { + "#": 8525 + }, + "render": { + "#": 8526 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 473, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8528 + }, + "pointB": { + "#": 8529 + }, + "render": { + "#": 8530 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 474, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8532 + }, + "pointB": { + "#": 8533 + }, + "render": { + "#": 8534 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 475, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8536 + }, + "pointB": { + "#": 8537 + }, + "render": { + "#": 8538 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 476, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8540 + }, + "pointB": { + "#": 8541 + }, + "render": { + "#": 8542 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 477, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8544 + }, + "pointB": { + "#": 8545 + }, + "render": { + "#": 8546 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 478, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8548 + }, + "pointB": { + "#": 8549 + }, + "render": { + "#": 8550 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 479, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8552 + }, + "pointB": { + "#": 8553 + }, + "render": { + "#": 8554 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 480, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8556 + }, + "pointB": { + "#": 8557 + }, + "render": { + "#": 8558 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 481, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8560 + }, + "pointB": { + "#": 8561 + }, + "render": { + "#": 8562 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 482, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8564 + }, + "pointB": { + "#": 8565 + }, + "render": { + "#": 8566 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 483, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8568 + }, + "pointB": { + "#": 8569 + }, + "render": { + "#": 8570 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 484, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8572 + }, + "pointB": { + "#": 8573 + }, + "render": { + "#": 8574 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 485, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8576 + }, + "pointB": { + "#": 8577 + }, + "render": { + "#": 8578 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 486, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8580 + }, + "pointB": { + "#": 8581 + }, + "render": { + "#": 8582 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 487, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8584 + }, + "pointB": { + "#": 8585 + }, + "render": { + "#": 8586 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 488, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8588 + }, + "pointB": { + "#": 8589 + }, + "render": { + "#": 8590 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 489, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8592 + }, + "pointB": { + "#": 8593 + }, + "render": { + "#": 8594 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 490, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8596 + }, + "pointB": { + "#": 8597 + }, + "render": { + "#": 8598 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 491, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8600 + }, + "pointB": { + "#": 8601 + }, + "render": { + "#": 8602 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 492, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8604 + }, + "pointB": { + "#": 8605 + }, + "render": { + "#": 8606 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 493, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8608 + }, + "pointB": { + "#": 8609 + }, + "render": { + "#": 8610 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 494, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8612 + }, + "pointB": { + "#": 8613 + }, + "render": { + "#": 8614 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 495, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8616 + }, + "pointB": { + "#": 8617 + }, + "render": { + "#": 8618 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 496, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8620 + }, + "pointB": { + "#": 8621 + }, + "render": { + "#": 8622 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 497, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8624 + }, + "pointB": { + "#": 8625 + }, + "render": { + "#": 8626 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 498, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8628 + }, + "pointB": { + "#": 8629 + }, + "render": { + "#": 8630 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 499, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8632 + }, + "pointB": { + "#": 8633 + }, + "render": { + "#": 8634 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 500, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8636 + }, + "pointB": { + "#": 8637 + }, + "render": { + "#": 8638 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 501, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8640 + }, + "pointB": { + "#": 8641 + }, + "render": { + "#": 8642 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 502, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8644 + }, + "pointB": { + "#": 8645 + }, + "render": { + "#": 8646 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 503, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8648 + }, + "pointB": { + "#": 8649 + }, + "render": { + "#": 8650 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 504, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8652 + }, + "pointB": { + "#": 8653 + }, + "render": { + "#": 8654 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 505, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8656 + }, + "pointB": { + "#": 8657 + }, + "render": { + "#": 8658 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 506, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8660 + }, + "pointB": { + "#": 8661 + }, + "render": { + "#": 8662 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 507, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8664 + }, + "pointB": { + "#": 8665 + }, + "render": { + "#": 8666 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 508, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8668 + }, + "pointB": { + "#": 8669 + }, + "render": { + "#": 8670 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 509, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8672 + }, + "pointB": { + "#": 8673 + }, + "render": { + "#": 8674 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 510, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8676 + }, + "pointB": { + "#": 8677 + }, + "render": { + "#": 8678 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 511, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8680 + }, + "pointB": { + "#": 8681 + }, + "render": { + "#": 8682 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 512, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8684 + }, + "pointB": { + "#": 8685 + }, + "render": { + "#": 8686 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 513, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8688 + }, + "pointB": { + "#": 8689 + }, + "render": { + "#": 8690 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 514, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8692 + }, + "pointB": { + "#": 8693 + }, + "render": { + "#": 8694 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 515, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8696 + }, + "pointB": { + "#": 8697 + }, + "render": { + "#": 8698 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 516, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8700 + }, + "pointB": { + "#": 8701 + }, + "render": { + "#": 8702 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 517, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8704 + }, + "pointB": { + "#": 8705 + }, + "render": { + "#": 8706 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 518, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8708 + }, + "pointB": { + "#": 8709 + }, + "render": { + "#": 8710 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 519, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8712 + }, + "pointB": { + "#": 8713 + }, + "render": { + "#": 8714 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 520, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8716 + }, + "pointB": { + "#": 8717 + }, + "render": { + "#": 8718 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 521, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8720 + }, + "pointB": { + "#": 8721 + }, + "render": { + "#": 8722 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 522, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8724 + }, + "pointB": { + "#": 8725 + }, + "render": { + "#": 8726 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 523, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8728 + }, + "pointB": { + "#": 8729 + }, + "render": { + "#": 8730 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 524, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8732 + }, + "pointB": { + "#": 8733 + }, + "render": { + "#": 8734 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 525, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8736 + }, + "pointB": { + "#": 8737 + }, + "render": { + "#": 8738 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 526, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8740 + }, + "pointB": { + "#": 8741 + }, + "render": { + "#": 8742 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 527, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8744 + }, + "pointB": { + "#": 8745 + }, + "render": { + "#": 8746 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 528, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8748 + }, + "pointB": { + "#": 8749 + }, + "render": { + "#": 8750 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 529, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8752 + }, + "pointB": { + "#": 8753 + }, + "render": { + "#": 8754 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 530, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8756 + }, + "pointB": { + "#": 8757 + }, + "render": { + "#": 8758 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 531, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8760 + }, + "pointB": { + "#": 8761 + }, + "render": { + "#": 8762 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 532, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8764 + }, + "pointB": { + "#": 8765 + }, + "render": { + "#": 8766 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 533, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8768 + }, + "pointB": { + "#": 8769 + }, + "render": { + "#": 8770 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 534, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8772 + }, + "pointB": { + "#": 8773 + }, + "render": { + "#": 8774 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 535, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8776 + }, + "pointB": { + "#": 8777 + }, + "render": { + "#": 8778 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 536, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8780 + }, + "pointB": { + "#": 8781 + }, + "render": { + "#": 8782 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 537, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8784 + }, + "pointB": { + "#": 8785 + }, + "render": { + "#": 8786 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 538, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8788 + }, + "pointB": { + "#": 8789 + }, + "render": { + "#": 8790 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 539, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8792 + }, + "pointB": { + "#": 8793 + }, + "render": { + "#": 8794 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 540, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8796 + }, + "pointB": { + "#": 8797 + }, + "render": { + "#": 8798 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 541, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8800 + }, + "pointB": { + "#": 8801 + }, + "render": { + "#": 8802 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 542, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8804 + }, + "pointB": { + "#": 8805 + }, + "render": { + "#": 8806 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 543, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8808 + }, + "pointB": { + "#": 8809 + }, + "render": { + "#": 8810 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 544, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8812 + }, + "pointB": { + "#": 8813 + }, + "render": { + "#": 8814 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 545, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8816 + }, + "pointB": { + "#": 8817 + }, + "render": { + "#": 8818 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 546, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8820 + }, + "pointB": { + "#": 8821 + }, + "render": { + "#": 8822 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 547, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8824 + }, + "pointB": { + "#": 8825 + }, + "render": { + "#": 8826 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 548, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8828 + }, + "pointB": { + "#": 8829 + }, + "render": { + "#": 8830 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 549, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8832 + }, + "pointB": { + "#": 8833 + }, + "render": { + "#": 8834 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 550, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8836 + }, + "pointB": { + "#": 8837 + }, + "render": { + "#": 8838 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 551, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8840 + }, + "pointB": { + "#": 8841 + }, + "render": { + "#": 8842 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 552, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 8844 + }, + "pointB": { + "#": 8845 + }, + "render": { + "#": 8846 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 553, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8848 + }, + "pointB": { + "#": 8849 + }, + "render": { + "#": 8850 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 554, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8852 + }, + "pointB": { + "#": 8853 + }, + "render": { + "#": 8854 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 555, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 8856 + }, + "pointB": { + "#": 8857 + }, + "render": { + "#": 8858 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 556, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8860 + }, + "pointB": { + "#": 8861 + }, + "render": { + "#": 8862 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 557, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8864 + }, + "pointB": { + "#": 8865 + }, + "render": { + "#": 8866 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 558, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8868 + }, + "pointB": { + "#": 8869 + }, + "render": { + "#": 8870 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 559, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8872 + }, + "pointB": { + "#": 8873 + }, + "render": { + "#": 8874 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 560, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8876 + }, + "pointB": { + "#": 8877 + }, + "render": { + "#": 8878 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 561, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8880 + }, + "pointB": { + "#": 8881 + }, + "render": { + "#": 8882 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 562, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8884 + }, + "pointB": { + "#": 8885 + }, + "render": { + "#": 8886 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 563, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8888 + }, + "pointB": { + "#": 8889 + }, + "render": { + "#": 8890 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 564, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8892 + }, + "pointB": { + "#": 8893 + }, + "render": { + "#": 8894 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 565, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8896 + }, + "pointB": { + "#": 8897 + }, + "render": { + "#": 8898 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 566, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8900 + }, + "pointB": { + "#": 8901 + }, + "render": { + "#": 8902 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 567, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8904 + }, + "pointB": { + "#": 8905 + }, + "render": { + "#": 8906 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 568, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8908 + }, + "pointB": { + "#": 8909 + }, + "render": { + "#": 8910 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 569, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8912 + }, + "pointB": { + "#": 8913 + }, + "render": { + "#": 8914 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 570, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8916 + }, + "pointB": { + "#": 8917 + }, + "render": { + "#": 8918 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 571, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8920 + }, + "pointB": { + "#": 8921 + }, + "render": { + "#": 8922 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 572, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8924 + }, + "pointB": { + "#": 8925 + }, + "render": { + "#": 8926 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 573, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8928 + }, + "pointB": { + "#": 8929 + }, + "render": { + "#": 8930 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 574, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8932 + }, + "pointB": { + "#": 8933 + }, + "render": { + "#": 8934 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 575, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 8936 + }, + "pointB": { + "#": 8937 + }, + "render": { + "#": 8938 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 576, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8940 + }, + "pointB": { + "#": 8941 + }, + "render": { + "#": 8942 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 577, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8944 + }, + "pointB": { + "#": 8945 + }, + "render": { + "#": 8946 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 578, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8948 + }, + "pointB": { + "#": 8949 + }, + "render": { + "#": 8950 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 579, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8952 + }, + "pointB": { + "#": 8953 + }, + "render": { + "#": 8954 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 580, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8956 + }, + "pointB": { + "#": 8957 + }, + "render": { + "#": 8958 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 581, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8960 + }, + "pointB": { + "#": 8961 + }, + "render": { + "#": 8962 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 582, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8964 + }, + "pointB": { + "#": 8965 + }, + "render": { + "#": 8966 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 583, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8968 + }, + "pointB": { + "#": 8969 + }, + "render": { + "#": 8970 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 584, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8972 + }, + "pointB": { + "#": 8973 + }, + "render": { + "#": 8974 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 585, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8976 + }, + "pointB": { + "#": 8977 + }, + "render": { + "#": 8978 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 586, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8980 + }, + "pointB": { + "#": 8981 + }, + "render": { + "#": 8982 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 587, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8984 + }, + "pointB": { + "#": 8985 + }, + "render": { + "#": 8986 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 588, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8988 + }, + "pointB": { + "#": 8989 + }, + "render": { + "#": 8990 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 589, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8992 + }, + "pointB": { + "#": 8993 + }, + "render": { + "#": 8994 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 590, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 8996 + }, + "pointB": { + "#": 8997 + }, + "render": { + "#": 8998 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 591, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 9000 + }, + "pointB": { + "#": 9001 + }, + "render": { + "#": 9002 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 592, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9004 + }, + "pointB": { + "#": 9005 + }, + "render": { + "#": 9006 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 593, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9008 + }, + "pointB": { + "#": 9009 + }, + "render": { + "#": 9010 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 594, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9012 + }, + "pointB": { + "#": 9013 + }, + "render": { + "#": 9014 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 595, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9016 + }, + "pointB": { + "#": 9017 + }, + "render": { + "#": 9018 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 596, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9020 + }, + "pointB": { + "#": 9021 + }, + "render": { + "#": 9022 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 597, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9024 + }, + "pointB": { + "#": 9025 + }, + "render": { + "#": 9026 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 598, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9028 + }, + "pointB": { + "#": 9029 + }, + "render": { + "#": 9030 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 599, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9032 + }, + "pointB": { + "#": 9033 + }, + "render": { + "#": 9034 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 600, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9036 + }, + "pointB": { + "#": 9037 + }, + "render": { + "#": 9038 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 601, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9040 + }, + "pointB": { + "#": 9041 + }, + "render": { + "#": 9042 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 602, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9044 + }, + "pointB": { + "#": 9045 + }, + "render": { + "#": 9046 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 603, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9048 + }, + "pointB": { + "#": 9049 + }, + "render": { + "#": 9050 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 604, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9052 + }, + "pointB": { + "#": 9053 + }, + "render": { + "#": 9054 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 605, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9056 + }, + "pointB": { + "#": 9057 + }, + "render": { + "#": 9058 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 606, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9060 + }, + "pointB": { + "#": 9061 + }, + "render": { + "#": 9062 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 607, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9064 + }, + "pointB": { + "#": 9065 + }, + "render": { + "#": 9066 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 608, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9068 + }, + "pointB": { + "#": 9069 + }, + "render": { + "#": 9070 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 609, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9072 + }, + "pointB": { + "#": 9073 + }, + "render": { + "#": 9074 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 610, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9076 + }, + "pointB": { + "#": 9077 + }, + "render": { + "#": 9078 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 611, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9080 + }, + "pointB": { + "#": 9081 + }, + "render": { + "#": 9082 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 612, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9084 + }, + "pointB": { + "#": 9085 + }, + "render": { + "#": 9086 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 613, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9088 + }, + "pointB": { + "#": 9089 + }, + "render": { + "#": 9090 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 614, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9092 + }, + "pointB": { + "#": 9093 + }, + "render": { + "#": 9094 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 615, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9096 + }, + "pointB": { + "#": 9097 + }, + "render": { + "#": 9098 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 616, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9100 + }, + "pointB": { + "#": 9101 + }, + "render": { + "#": 9102 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 617, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9104 + }, + "pointB": { + "#": 9105 + }, + "render": { + "#": 9106 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 618, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9108 + }, + "pointB": { + "#": 9109 + }, + "render": { + "#": 9110 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 619, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9112 + }, + "pointB": { + "#": 9113 + }, + "render": { + "#": 9114 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 620, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9116 + }, + "pointB": { + "#": 9117 + }, + "render": { + "#": 9118 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 621, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9120 + }, + "pointB": { + "#": 9121 + }, + "render": { + "#": 9122 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 622, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9124 + }, + "pointB": { + "#": 9125 + }, + "render": { + "#": 9126 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 623, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9128 + }, + "pointB": { + "#": 9129 + }, + "render": { + "#": 9130 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 624, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9132 + }, + "pointB": { + "#": 9133 + }, + "render": { + "#": 9134 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 625, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9136 + }, + "pointB": { + "#": 9137 + }, + "render": { + "#": 9138 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 626, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9140 + }, + "pointB": { + "#": 9141 + }, + "render": { + "#": 9142 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 627, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9144 + }, + "pointB": { + "#": 9145 + }, + "render": { + "#": 9146 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 628, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9148 + }, + "pointB": { + "#": 9149 + }, + "render": { + "#": 9150 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 629, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9152 + }, + "pointB": { + "#": 9153 + }, + "render": { + "#": 9154 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 630, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 9156 + }, + "pointB": { + "#": 9157 + }, + "render": { + "#": 9158 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 631, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9160 + }, + "pointB": { + "#": 9161 + }, + "render": { + "#": 9162 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 632, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9164 + }, + "pointB": { + "#": 9165 + }, + "render": { + "#": 9166 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 633, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9168 + }, + "pointB": { + "#": 9169 + }, + "render": { + "#": 9170 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 634, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9172 + }, + "pointB": { + "#": 9173 + }, + "render": { + "#": 9174 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 635, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9176 + }, + "pointB": { + "#": 9177 + }, + "render": { + "#": 9178 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 636, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9180 + }, + "pointB": { + "#": 9181 + }, + "render": { + "#": 9182 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 637, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9184 + }, + "pointB": { + "#": 9185 + }, + "render": { + "#": 9186 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 638, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9188 + }, + "pointB": { + "#": 9189 + }, + "render": { + "#": 9190 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 639, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9192 + }, + "pointB": { + "#": 9193 + }, + "render": { + "#": 9194 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 640, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9196 + }, + "pointB": { + "#": 9197 + }, + "render": { + "#": 9198 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 641, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9200 + }, + "pointB": { + "#": 9201 + }, + "render": { + "#": 9202 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 642, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9204 + }, + "pointB": { + "#": 9205 + }, + "render": { + "#": 9206 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 643, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9208 + }, + "pointB": { + "#": 9209 + }, + "render": { + "#": 9210 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 644, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9212 + }, + "pointB": { + "#": 9213 + }, + "render": { + "#": 9214 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 645, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9216 + }, + "pointB": { + "#": 9217 + }, + "render": { + "#": 9218 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 646, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9220 + }, + "pointB": { + "#": 9221 + }, + "render": { + "#": 9222 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 647, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9224 + }, + "pointB": { + "#": 9225 + }, + "render": { + "#": 9226 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 648, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9228 + }, + "pointB": { + "#": 9229 + }, + "render": { + "#": 9230 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 649, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9232 + }, + "pointB": { + "#": 9233 + }, + "render": { + "#": 9234 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 650, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9236 + }, + "pointB": { + "#": 9237 + }, + "render": { + "#": 9238 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 651, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9240 + }, + "pointB": { + "#": 9241 + }, + "render": { + "#": 9242 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 652, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9244 + }, + "pointB": { + "#": 9245 + }, + "render": { + "#": 9246 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 653, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9248 + }, + "pointB": { + "#": 9249 + }, + "render": { + "#": 9250 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 654, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9252 + }, + "pointB": { + "#": 9253 + }, + "render": { + "#": 9254 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 655, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9256 + }, + "pointB": { + "#": 9257 + }, + "render": { + "#": 9258 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 656, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9260 + }, + "pointB": { + "#": 9261 + }, + "render": { + "#": 9262 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 657, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9264 + }, + "pointB": { + "#": 9265 + }, + "render": { + "#": 9266 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 658, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9268 + }, + "pointB": { + "#": 9269 + }, + "render": { + "#": 9270 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 659, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9272 + }, + "pointB": { + "#": 9273 + }, + "render": { + "#": 9274 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 660, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9276 + }, + "pointB": { + "#": 9277 + }, + "render": { + "#": 9278 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 661, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9280 + }, + "pointB": { + "#": 9281 + }, + "render": { + "#": 9282 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 662, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9284 + }, + "pointB": { + "#": 9285 + }, + "render": { + "#": 9286 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 663, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9288 + }, + "pointB": { + "#": 9289 + }, + "render": { + "#": 9290 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 664, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9292 + }, + "pointB": { + "#": 9293 + }, + "render": { + "#": 9294 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 665, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9296 + }, + "pointB": { + "#": 9297 + }, + "render": { + "#": 9298 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 666, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9300 + }, + "pointB": { + "#": 9301 + }, + "render": { + "#": 9302 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 667, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9304 + }, + "pointB": { + "#": 9305 + }, + "render": { + "#": 9306 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 668, + "label": "Constraint", + "length": 20.216000000000008, + "pointA": { + "#": 9308 + }, + "pointB": { + "#": 9309 + }, + "render": { + "#": 9310 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 669, + "label": "Constraint", + "length": 20.21599999999995, + "pointA": { + "#": 9312 + }, + "pointB": { + "#": 9313 + }, + "render": { + "#": 9314 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 670, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9316 + }, + "pointB": { + "#": 9317 + }, + "render": { + "#": 9318 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 671, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9320 + }, + "pointB": { + "#": 9321 + }, + "render": { + "#": 9322 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 672, + "label": "Constraint", + "length": 20.215999999999894, + "pointA": { + "#": 9324 + }, + "pointB": { + "#": 9325 + }, + "render": { + "#": 9326 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 673, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9328 + }, + "pointB": { + "#": 9329 + }, + "render": { + "#": 9330 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 674, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9332 + }, + "pointB": { + "#": 9333 + }, + "render": { + "#": 9334 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 675, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9336 + }, + "pointB": { + "#": 9337 + }, + "render": { + "#": 9338 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 676, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9340 + }, + "pointB": { + "#": 9341 + }, + "render": { + "#": 9342 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 677, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9344 + }, + "pointB": { + "#": 9345 + }, + "render": { + "#": 9346 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 678, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9348 + }, + "pointB": { + "#": 9349 + }, + "render": { + "#": 9350 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 679, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9352 + }, + "pointB": { + "#": 9353 + }, + "render": { + "#": 9354 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 680, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9356 + }, + "pointB": { + "#": 9357 + }, + "render": { + "#": 9358 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 681, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9360 + }, + "pointB": { + "#": 9361 + }, + "render": { + "#": 9362 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 682, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9364 + }, + "pointB": { + "#": 9365 + }, + "render": { + "#": 9366 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 683, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9368 + }, + "pointB": { + "#": 9369 + }, + "render": { + "#": 9370 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 684, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9372 + }, + "pointB": { + "#": 9373 + }, + "render": { + "#": 9374 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 685, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9376 + }, + "pointB": { + "#": 9377 + }, + "render": { + "#": 9378 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 686, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9380 + }, + "pointB": { + "#": 9381 + }, + "render": { + "#": 9382 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 687, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9384 + }, + "pointB": { + "#": 9385 + }, + "render": { + "#": 9386 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 688, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9388 + }, + "pointB": { + "#": 9389 + }, + "render": { + "#": 9390 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 689, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9392 + }, + "pointB": { + "#": 9393 + }, + "render": { + "#": 9394 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 690, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9396 + }, + "pointB": { + "#": 9397 + }, + "render": { + "#": 9398 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 691, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9400 + }, + "pointB": { + "#": 9401 + }, + "render": { + "#": 9402 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 692, + "label": "Constraint", + "length": 21, + "pointA": { + "#": 9404 + }, + "pointB": { + "#": 9405 + }, + "render": { + "#": 9406 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 9408 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 9409 + }, + "pointB": "", + "render": { + "#": 9410 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/collisionFiltering/collisionFiltering-0.json b/tests/browser/refs/collisionFiltering/collisionFiltering-0.json new file mode 100644 index 00000000..0a7e15e3 --- /dev/null +++ b/tests/browser/refs/collisionFiltering/collisionFiltering-0.json @@ -0,0 +1,22345 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 248 + }, + "composites": { + "#": 251 + }, + "constraints": { + "#": 2506 + }, + "events": { + "#": 2510 + }, + "gravity": { + "#": 2512 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 140 + }, + { + "#": 194 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 87 + }, + "bounds": { + "#": 101 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 104 + }, + "constraintImpulse": { + "#": 105 + }, + "density": 0.001, + "force": { + "#": 106 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 4991.137790304929, + "inverseInertia": 0.0002003551178135088, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 107 + }, + "positionImpulse": { + "#": 108 + }, + "positionPrev": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + }, + { + "#": 90 + }, + { + "#": 91 + }, + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 102 + }, + "min": { + "#": 103 + } + }, + { + "x": 339.781, + "y": 70 + }, + { + "x": 280.219, + "y": 10 + }, + { + "category": 1, + "group": 0, + "mask": 5 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 310, + "y": 40 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 310, + "y": 40 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 339.781, + "y": 43.616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 338.05, + "y": 50.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 334.69, + "y": 57.042 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 329.894, + "y": 62.455 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 323.942, + "y": 66.564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 317.179, + "y": 69.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 310, + "y": 70 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 302.821, + "y": 69.128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 296.058, + "y": 66.564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.106, + "y": 62.455 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.31, + "y": 57.042 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 281.95, + "y": 50.638 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.219, + "y": 43.616 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 280.219, + "y": 36.384 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 281.95, + "y": 29.362000000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 285.31, + "y": 22.958 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 290.106, + "y": 17.545 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 296.058, + "y": 13.436 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 302.821, + "y": 10.872 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 310, + "y": 10 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 317.179, + "y": 10.872 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 323.942, + "y": 13.436 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 329.894, + "y": 17.545 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 334.69, + "y": 22.958 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 338.05, + "y": 29.362000000000002 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 339.781, + "y": 36.384 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 141 + }, + "bounds": { + "#": 155 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 158 + }, + "constraintImpulse": { + "#": 159 + }, + "density": 0.001, + "force": { + "#": 160 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 4991.137790304929, + "inverseInertia": 0.0002003551178135088, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 161 + }, + "positionImpulse": { + "#": 162 + }, + "positionPrev": { + "#": 163 + }, + "render": { + "#": 164 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 166 + }, + "vertices": { + "#": 167 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 156 + }, + "min": { + "#": 157 + } + }, + { + "x": 429.781, + "y": 70 + }, + { + "x": 370.219, + "y": 10 + }, + { + "category": 1, + "group": 0, + "mask": 3 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 40 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 40 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 165 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + }, + { + "#": 193 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 429.781, + "y": 43.616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 428.05, + "y": 50.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 424.69, + "y": 57.042 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 419.894, + "y": 62.455 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 413.942, + "y": 66.564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 407.179, + "y": 69.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 400, + "y": 70 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 392.821, + "y": 69.128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 386.058, + "y": 66.564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 380.106, + "y": 62.455 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 375.31, + "y": 57.042 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 371.95, + "y": 50.638 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 370.219, + "y": 43.616 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 370.219, + "y": 36.384 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 371.95, + "y": 29.362000000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 375.31, + "y": 22.958 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 380.106, + "y": 17.545 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 386.058, + "y": 13.436 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 392.821, + "y": 10.872 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 400, + "y": 10 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 407.179, + "y": 10.872 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 413.942, + "y": 13.436 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 419.894, + "y": 17.545 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 424.69, + "y": 22.958 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 428.05, + "y": 29.362000000000002 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 429.781, + "y": 36.384 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 195 + }, + "bounds": { + "#": 209 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 212 + }, + "constraintImpulse": { + "#": 213 + }, + "density": 0.001, + "force": { + "#": 214 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 4991.137790304929, + "inverseInertia": 0.0002003551178135088, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 215 + }, + "positionImpulse": { + "#": 216 + }, + "positionPrev": { + "#": 217 + }, + "render": { + "#": 218 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 220 + }, + "vertices": { + "#": 221 + } + }, + [ + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 210 + }, + "min": { + "#": 211 + } + }, + { + "x": 509.781, + "y": 70 + }, + { + "x": 450.219, + "y": 10 + }, + { + "category": 1, + "group": 0, + "mask": 9 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 40 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 40 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 219 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 509.781, + "y": 43.616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 508.05, + "y": 50.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 504.69, + "y": 57.042 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 499.894, + "y": 62.455 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 493.942, + "y": 66.564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 487.179, + "y": 69.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 70 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 472.821, + "y": 69.128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 466.058, + "y": 66.564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 460.106, + "y": 62.455 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 455.31, + "y": 57.042 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 451.95, + "y": 50.638 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 450.219, + "y": 43.616 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 450.219, + "y": 36.384 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 451.95, + "y": 29.362000000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.31, + "y": 22.958 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 460.106, + "y": 17.545 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 466.058, + "y": 13.436 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 472.821, + "y": 10.872 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 480, + "y": 10 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 487.179, + "y": 10.872 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 493.942, + "y": 13.436 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 499.894, + "y": 17.545 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 504.69, + "y": 22.958 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 508.05, + "y": 29.362000000000002 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 509.781, + "y": 36.384 + }, + { + "max": { + "#": 249 + }, + "min": { + "#": 250 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 252 + } + ], + { + "bodies": { + "#": 253 + }, + "composites": { + "#": 2504 + }, + "constraints": { + "#": 2505 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 254 + }, + { + "#": 299 + }, + { + "#": 344 + }, + { + "#": 389 + }, + { + "#": 434 + }, + { + "#": 479 + }, + { + "#": 524 + }, + { + "#": 569 + }, + { + "#": 614 + }, + { + "#": 659 + }, + { + "#": 704 + }, + { + "#": 749 + }, + { + "#": 794 + }, + { + "#": 839 + }, + { + "#": 884 + }, + { + "#": 929 + }, + { + "#": 974 + }, + { + "#": 1019 + }, + { + "#": 1064 + }, + { + "#": 1109 + }, + { + "#": 1154 + }, + { + "#": 1199 + }, + { + "#": 1244 + }, + { + "#": 1289 + }, + { + "#": 1334 + }, + { + "#": 1379 + }, + { + "#": 1424 + }, + { + "#": 1469 + }, + { + "#": 1514 + }, + { + "#": 1559 + }, + { + "#": 1604 + }, + { + "#": 1649 + }, + { + "#": 1694 + }, + { + "#": 1739 + }, + { + "#": 1784 + }, + { + "#": 1829 + }, + { + "#": 1874 + }, + { + "#": 1919 + }, + { + "#": 1964 + }, + { + "#": 2009 + }, + { + "#": 2054 + }, + { + "#": 2099 + }, + { + "#": 2144 + }, + { + "#": 2189 + }, + { + "#": 2234 + }, + { + "#": 2279 + }, + { + "#": 2324 + }, + { + "#": 2369 + }, + { + "#": 2414 + }, + { + "#": 2459 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 255 + }, + "bounds": { + "#": 266 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 269 + }, + "constraintImpulse": { + "#": 270 + }, + "density": 0.001, + "force": { + "#": 271 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 272 + }, + "positionImpulse": { + "#": 273 + }, + "positionPrev": { + "#": 274 + }, + "render": { + "#": 275 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 277 + }, + "vertices": { + "#": 278 + } + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 267 + }, + "min": { + "#": 268 + } + }, + { + "x": 314.50800000000004, + "y": 189.50799999999998 + }, + { + "x": 275, + "y": 150 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 169.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 169.754 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 276 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 178.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 183.896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 183.896 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 178.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 166.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 155.612 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 151.934 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 150 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 150 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 151.934 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 155.612 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 166.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 300 + }, + "bounds": { + "#": 311 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 314 + }, + "constraintImpulse": { + "#": 315 + }, + "density": 0.001, + "force": { + "#": 316 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 317 + }, + "positionImpulse": { + "#": 318 + }, + "positionPrev": { + "#": 319 + }, + "render": { + "#": 320 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 322 + }, + "vertices": { + "#": 323 + } + }, + [ + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 312 + }, + "min": { + "#": 313 + } + }, + { + "x": 364.0160000000001, + "y": 189.50799999999998 + }, + { + "x": 324.50800000000004, + "y": 150 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 169.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 169.754 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 321 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 178.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 183.896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 183.896 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 178.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 166.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 155.612 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 151.934 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 150 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 150 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 151.934 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 155.612 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 166.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 345 + }, + "bounds": { + "#": 356 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 359 + }, + "constraintImpulse": { + "#": 360 + }, + "density": 0.001, + "force": { + "#": 361 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 362 + }, + "positionImpulse": { + "#": 363 + }, + "positionPrev": { + "#": 364 + }, + "render": { + "#": 365 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 367 + }, + "vertices": { + "#": 368 + } + }, + [ + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 357 + }, + "min": { + "#": 358 + } + }, + { + "x": 413.5240000000001, + "y": 189.50799999999998 + }, + { + "x": 374.0160000000001, + "y": 150 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 169.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 169.754 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 366 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 178.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 183.896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 183.896 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 178.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 166.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 155.612 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 151.934 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 150 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 150 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 151.934 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 155.612 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 166.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 390 + }, + "bounds": { + "#": 401 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 404 + }, + "constraintImpulse": { + "#": 405 + }, + "density": 0.001, + "force": { + "#": 406 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 407 + }, + "positionImpulse": { + "#": 408 + }, + "positionPrev": { + "#": 409 + }, + "render": { + "#": 410 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 412 + }, + "vertices": { + "#": 413 + } + }, + [ + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 402 + }, + "min": { + "#": 403 + } + }, + { + "x": 463.03200000000015, + "y": 189.50799999999998 + }, + { + "x": 423.5240000000001, + "y": 150 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 169.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 169.754 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 411 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 178.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 183.896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 183.896 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 178.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 166.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 155.612 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 151.934 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 150 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 150 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 151.934 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 155.612 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 166.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 435 + }, + "bounds": { + "#": 446 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 449 + }, + "constraintImpulse": { + "#": 450 + }, + "density": 0.001, + "force": { + "#": 451 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 452 + }, + "positionImpulse": { + "#": 453 + }, + "positionPrev": { + "#": 454 + }, + "render": { + "#": 455 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 457 + }, + "vertices": { + "#": 458 + } + }, + [ + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 447 + }, + "min": { + "#": 448 + } + }, + { + "x": 512.5400000000002, + "y": 189.50799999999998 + }, + { + "x": 473.03200000000015, + "y": 150 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 169.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 169.754 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 456 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 178.834 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 183.896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 189.50799999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 187.57399999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 183.896 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 178.834 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 172.88299999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 166.625 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 155.612 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 151.934 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 150 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 150 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 151.934 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 155.612 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 160.67399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 166.625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 480 + }, + "bounds": { + "#": 491 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 494 + }, + "constraintImpulse": { + "#": 495 + }, + "density": 0.001, + "force": { + "#": 496 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 497 + }, + "positionImpulse": { + "#": 498 + }, + "positionPrev": { + "#": 499 + }, + "render": { + "#": 500 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 502 + }, + "vertices": { + "#": 503 + } + }, + [ + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 492 + }, + "min": { + "#": 493 + } + }, + { + "x": 314.50800000000004, + "y": 239.01599999999996 + }, + { + "x": 275, + "y": 199.50799999999998 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 219.26199999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 219.26199999999997 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 501 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 216.13299999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 216.13299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 525 + }, + "bounds": { + "#": 536 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 539 + }, + "constraintImpulse": { + "#": 540 + }, + "density": 0.001, + "force": { + "#": 541 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 542 + }, + "positionImpulse": { + "#": 543 + }, + "positionPrev": { + "#": 544 + }, + "render": { + "#": 545 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 547 + }, + "vertices": { + "#": 548 + } + }, + [ + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 537 + }, + "min": { + "#": 538 + } + }, + { + "x": 364.0160000000001, + "y": 239.01599999999996 + }, + { + "x": 324.50800000000004, + "y": 199.50799999999998 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 219.26199999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 219.26199999999997 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 546 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 216.13299999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 216.13299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 570 + }, + "bounds": { + "#": 581 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "density": 0.001, + "force": { + "#": 586 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 587 + }, + "positionImpulse": { + "#": 588 + }, + "positionPrev": { + "#": 589 + }, + "render": { + "#": 590 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 592 + }, + "vertices": { + "#": 593 + } + }, + [ + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 582 + }, + "min": { + "#": 583 + } + }, + { + "x": 413.5240000000001, + "y": 239.01599999999996 + }, + { + "x": 374.0160000000001, + "y": 199.50799999999998 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 219.26199999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 219.26199999999997 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 591 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 216.13299999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 216.13299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 615 + }, + "bounds": { + "#": 626 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 629 + }, + "constraintImpulse": { + "#": 630 + }, + "density": 0.001, + "force": { + "#": 631 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 632 + }, + "positionImpulse": { + "#": 633 + }, + "positionPrev": { + "#": 634 + }, + "render": { + "#": 635 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 637 + }, + "vertices": { + "#": 638 + } + }, + [ + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 627 + }, + "min": { + "#": 628 + } + }, + { + "x": 463.03200000000015, + "y": 239.01599999999996 + }, + { + "x": 423.5240000000001, + "y": 199.50799999999998 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 219.26199999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 219.26199999999997 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 636 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 216.13299999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 216.13299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 660 + }, + "bounds": { + "#": 671 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 674 + }, + "constraintImpulse": { + "#": 675 + }, + "density": 0.001, + "force": { + "#": 676 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 677 + }, + "positionImpulse": { + "#": 678 + }, + "positionPrev": { + "#": 679 + }, + "render": { + "#": 680 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 682 + }, + "vertices": { + "#": 683 + } + }, + [ + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 672 + }, + "min": { + "#": 673 + } + }, + { + "x": 512.5400000000002, + "y": 239.01599999999996 + }, + { + "x": 473.03200000000015, + "y": 199.50799999999998 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 219.26199999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 219.26199999999997 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 681 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 239.01599999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 237.08199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 233.40399999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 228.34199999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 222.39099999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 216.13299999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 199.50799999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 201.44199999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 205.11999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 210.18199999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 216.13299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 705 + }, + "bounds": { + "#": 716 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "density": 0.001, + "force": { + "#": 721 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 722 + }, + "positionImpulse": { + "#": 723 + }, + "positionPrev": { + "#": 724 + }, + "render": { + "#": 725 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 727 + }, + "vertices": { + "#": 728 + } + }, + [ + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 717 + }, + "min": { + "#": 718 + } + }, + { + "x": 314.50800000000004, + "y": 288.524 + }, + { + "x": 275, + "y": 249.016 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 268.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 268.77 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 726 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 271.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 282.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 286.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 288.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 288.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 286.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 282.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 271.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 265.64099999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 254.628 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 250.95 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 249.016 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 249.016 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 250.95 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 254.628 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 265.64099999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 750 + }, + "bounds": { + "#": 761 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 764 + }, + "constraintImpulse": { + "#": 765 + }, + "density": 0.001, + "force": { + "#": 766 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 767 + }, + "positionImpulse": { + "#": 768 + }, + "positionPrev": { + "#": 769 + }, + "render": { + "#": 770 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 772 + }, + "vertices": { + "#": 773 + } + }, + [ + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 762 + }, + "min": { + "#": 763 + } + }, + { + "x": 364.0160000000001, + "y": 288.524 + }, + { + "x": 324.50800000000004, + "y": 249.016 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 268.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 268.77 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 771 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 271.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 282.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 286.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 288.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 288.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 286.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 282.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 271.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 265.64099999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 254.628 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 250.95 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 249.016 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 249.016 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 250.95 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 254.628 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 265.64099999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 795 + }, + "bounds": { + "#": 806 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 809 + }, + "constraintImpulse": { + "#": 810 + }, + "density": 0.001, + "force": { + "#": 811 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 812 + }, + "positionImpulse": { + "#": 813 + }, + "positionPrev": { + "#": 814 + }, + "render": { + "#": 815 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 817 + }, + "vertices": { + "#": 818 + } + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 807 + }, + "min": { + "#": 808 + } + }, + { + "x": 413.5240000000001, + "y": 288.524 + }, + { + "x": 374.0160000000001, + "y": 249.016 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 268.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 268.77 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 816 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 271.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 282.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 286.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 288.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 288.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 286.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 282.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 271.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 265.64099999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 254.628 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 250.95 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 249.016 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 249.016 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 250.95 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 254.628 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 265.64099999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 840 + }, + "bounds": { + "#": 851 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 854 + }, + "constraintImpulse": { + "#": 855 + }, + "density": 0.001, + "force": { + "#": 856 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 857 + }, + "positionImpulse": { + "#": 858 + }, + "positionPrev": { + "#": 859 + }, + "render": { + "#": 860 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 862 + }, + "vertices": { + "#": 863 + } + }, + [ + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 852 + }, + "min": { + "#": 853 + } + }, + { + "x": 463.03200000000015, + "y": 288.524 + }, + { + "x": 423.5240000000001, + "y": 249.016 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 268.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 268.77 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 861 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 271.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 282.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 286.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 288.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 288.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 286.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 282.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 271.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 265.64099999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 254.628 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 250.95 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 249.016 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 249.016 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 250.95 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 254.628 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 265.64099999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 885 + }, + "bounds": { + "#": 896 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 899 + }, + "constraintImpulse": { + "#": 900 + }, + "density": 0.001, + "force": { + "#": 901 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 902 + }, + "positionImpulse": { + "#": 903 + }, + "positionPrev": { + "#": 904 + }, + "render": { + "#": 905 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 907 + }, + "vertices": { + "#": 908 + } + }, + [ + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 897 + }, + "min": { + "#": 898 + } + }, + { + "x": 512.5400000000002, + "y": 288.524 + }, + { + "x": 473.03200000000015, + "y": 249.016 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 268.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 268.77 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 906 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 271.899 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 282.912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 286.59 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 288.524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 288.524 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 286.59 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 282.912 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 277.84999999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 271.899 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 265.64099999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 254.628 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 250.95 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 249.016 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 249.016 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 250.95 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 254.628 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 259.68999999999994 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 265.64099999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 930 + }, + "bounds": { + "#": 941 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 944 + }, + "constraintImpulse": { + "#": 945 + }, + "density": 0.001, + "force": { + "#": 946 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 947 + }, + "positionImpulse": { + "#": 948 + }, + "positionPrev": { + "#": 949 + }, + "render": { + "#": 950 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 952 + }, + "vertices": { + "#": 953 + } + }, + [ + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 942 + }, + "min": { + "#": 943 + } + }, + { + "x": 314.50800000000004, + "y": 338.03200000000004 + }, + { + "x": 275, + "y": 298.524 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 318.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 318.278 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 951 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 327.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 332.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 336.098 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 336.098 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 332.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 327.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 315.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 304.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 300.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 298.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 298.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 300.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 304.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 315.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 975 + }, + "bounds": { + "#": 986 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 989 + }, + "constraintImpulse": { + "#": 990 + }, + "density": 0.001, + "force": { + "#": 991 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 992 + }, + "positionImpulse": { + "#": 993 + }, + "positionPrev": { + "#": 994 + }, + "render": { + "#": 995 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 997 + }, + "vertices": { + "#": 998 + } + }, + [ + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 987 + }, + "min": { + "#": 988 + } + }, + { + "x": 364.0160000000001, + "y": 338.03200000000004 + }, + { + "x": 324.50800000000004, + "y": 298.524 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 318.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 318.278 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 996 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 327.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 332.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 336.098 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 336.098 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 332.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 327.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 315.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 304.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 300.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 298.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 298.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 300.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 304.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 315.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1020 + }, + "bounds": { + "#": 1031 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1034 + }, + "constraintImpulse": { + "#": 1035 + }, + "density": 0.001, + "force": { + "#": 1036 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1037 + }, + "positionImpulse": { + "#": 1038 + }, + "positionPrev": { + "#": 1039 + }, + "render": { + "#": 1040 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1042 + }, + "vertices": { + "#": 1043 + } + }, + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1032 + }, + "min": { + "#": 1033 + } + }, + { + "x": 413.5240000000001, + "y": 338.03200000000004 + }, + { + "x": 374.0160000000001, + "y": 298.524 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 318.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 318.278 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1041 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 327.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 332.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 336.098 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 336.098 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 332.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 327.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 315.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 304.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 300.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 298.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 298.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 300.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 304.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 315.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1065 + }, + "bounds": { + "#": 1076 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1079 + }, + "constraintImpulse": { + "#": 1080 + }, + "density": 0.001, + "force": { + "#": 1081 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1082 + }, + "positionImpulse": { + "#": 1083 + }, + "positionPrev": { + "#": 1084 + }, + "render": { + "#": 1085 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1087 + }, + "vertices": { + "#": 1088 + } + }, + [ + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1077 + }, + "min": { + "#": 1078 + } + }, + { + "x": 463.03200000000015, + "y": 338.03200000000004 + }, + { + "x": 423.5240000000001, + "y": 298.524 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 318.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 318.278 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1086 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 327.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 332.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 336.098 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 336.098 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 332.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 327.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 315.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 304.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 300.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 298.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 298.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 300.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 304.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 315.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1110 + }, + "bounds": { + "#": 1121 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1124 + }, + "constraintImpulse": { + "#": 1125 + }, + "density": 0.001, + "force": { + "#": 1126 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1127 + }, + "positionImpulse": { + "#": 1128 + }, + "positionPrev": { + "#": 1129 + }, + "render": { + "#": 1130 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1132 + }, + "vertices": { + "#": 1133 + } + }, + [ + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1122 + }, + "min": { + "#": 1123 + } + }, + { + "x": 512.5400000000002, + "y": 338.03200000000004 + }, + { + "x": 473.03200000000015, + "y": 298.524 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 318.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 318.278 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1131 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 327.358 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 332.42 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 336.098 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 338.03200000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 336.098 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 332.42 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 327.358 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 321.40700000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 315.149 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 304.136 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 300.458 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 298.524 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 298.524 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 300.458 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 304.136 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 309.19800000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 315.149 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1155 + }, + "bounds": { + "#": 1166 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1169 + }, + "constraintImpulse": { + "#": 1170 + }, + "density": 0.001, + "force": { + "#": 1171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1172 + }, + "positionImpulse": { + "#": 1173 + }, + "positionPrev": { + "#": 1174 + }, + "render": { + "#": 1175 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1177 + }, + "vertices": { + "#": 1178 + } + }, + [ + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1167 + }, + "min": { + "#": 1168 + } + }, + { + "x": 314.50800000000004, + "y": 387.5400000000001 + }, + { + "x": 275, + "y": 348.03200000000004 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 367.78600000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 367.78600000000006 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1176 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 364.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 364.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1200 + }, + "bounds": { + "#": 1211 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1214 + }, + "constraintImpulse": { + "#": 1215 + }, + "density": 0.001, + "force": { + "#": 1216 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1217 + }, + "positionImpulse": { + "#": 1218 + }, + "positionPrev": { + "#": 1219 + }, + "render": { + "#": 1220 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1222 + }, + "vertices": { + "#": 1223 + } + }, + [ + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1212 + }, + "min": { + "#": 1213 + } + }, + { + "x": 364.0160000000001, + "y": 387.5400000000001 + }, + { + "x": 324.50800000000004, + "y": 348.03200000000004 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 367.78600000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 367.78600000000006 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1221 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 364.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 364.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1245 + }, + "bounds": { + "#": 1256 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1259 + }, + "constraintImpulse": { + "#": 1260 + }, + "density": 0.001, + "force": { + "#": 1261 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1262 + }, + "positionImpulse": { + "#": 1263 + }, + "positionPrev": { + "#": 1264 + }, + "render": { + "#": 1265 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1267 + }, + "vertices": { + "#": 1268 + } + }, + [ + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1257 + }, + "min": { + "#": 1258 + } + }, + { + "x": 413.5240000000001, + "y": 387.5400000000001 + }, + { + "x": 374.0160000000001, + "y": 348.03200000000004 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 367.78600000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 367.78600000000006 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1266 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 364.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 364.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1290 + }, + "bounds": { + "#": 1301 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1304 + }, + "constraintImpulse": { + "#": 1305 + }, + "density": 0.001, + "force": { + "#": 1306 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1307 + }, + "positionImpulse": { + "#": 1308 + }, + "positionPrev": { + "#": 1309 + }, + "render": { + "#": 1310 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1312 + }, + "vertices": { + "#": 1313 + } + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1302 + }, + "min": { + "#": 1303 + } + }, + { + "x": 463.03200000000015, + "y": 387.5400000000001 + }, + { + "x": 423.5240000000001, + "y": 348.03200000000004 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 367.78600000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 367.78600000000006 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1311 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 364.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 364.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1335 + }, + "bounds": { + "#": 1346 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "density": 0.001, + "force": { + "#": 1351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1352 + }, + "positionImpulse": { + "#": 1353 + }, + "positionPrev": { + "#": 1354 + }, + "render": { + "#": 1355 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1357 + }, + "vertices": { + "#": 1358 + } + }, + [ + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1347 + }, + "min": { + "#": 1348 + } + }, + { + "x": 512.5400000000002, + "y": 387.5400000000001 + }, + { + "x": 473.03200000000015, + "y": 348.03200000000004 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 367.78600000000006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 367.78600000000006 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1356 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 387.5400000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 385.60600000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 381.92800000000005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 376.86600000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 370.9150000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 364.65700000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 348.03200000000004 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 349.96600000000007 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 353.64400000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 358.7060000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 364.65700000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1380 + }, + "bounds": { + "#": 1391 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1394 + }, + "constraintImpulse": { + "#": 1395 + }, + "density": 0.001, + "force": { + "#": 1396 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1397 + }, + "positionImpulse": { + "#": 1398 + }, + "positionPrev": { + "#": 1399 + }, + "render": { + "#": 1400 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1402 + }, + "vertices": { + "#": 1403 + } + }, + [ + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1392 + }, + "min": { + "#": 1393 + } + }, + { + "x": 314.50800000000004, + "y": 437.0480000000001 + }, + { + "x": 275, + "y": 397.5400000000001 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 417.2940000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 417.2940000000001 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1401 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 414.1650000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 414.1650000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1425 + }, + "bounds": { + "#": 1436 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1439 + }, + "constraintImpulse": { + "#": 1440 + }, + "density": 0.001, + "force": { + "#": 1441 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1442 + }, + "positionImpulse": { + "#": 1443 + }, + "positionPrev": { + "#": 1444 + }, + "render": { + "#": 1445 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1447 + }, + "vertices": { + "#": 1448 + } + }, + [ + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1437 + }, + "min": { + "#": 1438 + } + }, + { + "x": 364.0160000000001, + "y": 437.0480000000001 + }, + { + "x": 324.50800000000004, + "y": 397.5400000000001 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 417.2940000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 417.2940000000001 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1446 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 414.1650000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 414.1650000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1470 + }, + "bounds": { + "#": 1481 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1484 + }, + "constraintImpulse": { + "#": 1485 + }, + "density": 0.001, + "force": { + "#": 1486 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1487 + }, + "positionImpulse": { + "#": 1488 + }, + "positionPrev": { + "#": 1489 + }, + "render": { + "#": 1490 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1492 + }, + "vertices": { + "#": 1493 + } + }, + [ + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1482 + }, + "min": { + "#": 1483 + } + }, + { + "x": 413.5240000000001, + "y": 437.0480000000001 + }, + { + "x": 374.0160000000001, + "y": 397.5400000000001 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 417.2940000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 417.2940000000001 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1491 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 414.1650000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 414.1650000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1515 + }, + "bounds": { + "#": 1526 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1529 + }, + "constraintImpulse": { + "#": 1530 + }, + "density": 0.001, + "force": { + "#": 1531 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1532 + }, + "positionImpulse": { + "#": 1533 + }, + "positionPrev": { + "#": 1534 + }, + "render": { + "#": 1535 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1537 + }, + "vertices": { + "#": 1538 + } + }, + [ + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1527 + }, + "min": { + "#": 1528 + } + }, + { + "x": 463.03200000000015, + "y": 437.0480000000001 + }, + { + "x": 423.5240000000001, + "y": 397.5400000000001 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 417.2940000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 417.2940000000001 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1536 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 414.1650000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 414.1650000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1560 + }, + "bounds": { + "#": 1571 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1574 + }, + "constraintImpulse": { + "#": 1575 + }, + "density": 0.001, + "force": { + "#": 1576 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1577 + }, + "positionImpulse": { + "#": 1578 + }, + "positionPrev": { + "#": 1579 + }, + "render": { + "#": 1580 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1582 + }, + "vertices": { + "#": 1583 + } + }, + [ + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1572 + }, + "min": { + "#": 1573 + } + }, + { + "x": 512.5400000000002, + "y": 437.0480000000001 + }, + { + "x": 473.03200000000015, + "y": 397.5400000000001 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 417.2940000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 417.2940000000001 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1581 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 437.0480000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 435.1140000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 431.4360000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 426.3740000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 420.4230000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 414.1650000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 397.5400000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 399.4740000000001 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 403.1520000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 408.2140000000001 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 414.1650000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1605 + }, + "bounds": { + "#": 1616 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1619 + }, + "constraintImpulse": { + "#": 1620 + }, + "density": 0.001, + "force": { + "#": 1621 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1622 + }, + "positionImpulse": { + "#": 1623 + }, + "positionPrev": { + "#": 1624 + }, + "render": { + "#": 1625 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1627 + }, + "vertices": { + "#": 1628 + } + }, + [ + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1617 + }, + "min": { + "#": 1618 + } + }, + { + "x": 314.50800000000004, + "y": 486.55600000000015 + }, + { + "x": 275, + "y": 447.0480000000001 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 466.80200000000013 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 466.80200000000013 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1626 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 463.6730000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 463.6730000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1650 + }, + "bounds": { + "#": 1661 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1664 + }, + "constraintImpulse": { + "#": 1665 + }, + "density": 0.001, + "force": { + "#": 1666 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1667 + }, + "positionImpulse": { + "#": 1668 + }, + "positionPrev": { + "#": 1669 + }, + "render": { + "#": 1670 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1672 + }, + "vertices": { + "#": 1673 + } + }, + [ + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1662 + }, + "min": { + "#": 1663 + } + }, + { + "x": 364.0160000000001, + "y": 486.55600000000015 + }, + { + "x": 324.50800000000004, + "y": 447.0480000000001 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 466.80200000000013 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 466.80200000000013 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1671 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 463.6730000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 463.6730000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1695 + }, + "bounds": { + "#": 1706 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1709 + }, + "constraintImpulse": { + "#": 1710 + }, + "density": 0.001, + "force": { + "#": 1711 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1712 + }, + "positionImpulse": { + "#": 1713 + }, + "positionPrev": { + "#": 1714 + }, + "render": { + "#": 1715 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1717 + }, + "vertices": { + "#": 1718 + } + }, + [ + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1707 + }, + "min": { + "#": 1708 + } + }, + { + "x": 413.5240000000001, + "y": 486.55600000000015 + }, + { + "x": 374.0160000000001, + "y": 447.0480000000001 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 466.80200000000013 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 466.80200000000013 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1716 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 463.6730000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 463.6730000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1740 + }, + "bounds": { + "#": 1751 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1754 + }, + "constraintImpulse": { + "#": 1755 + }, + "density": 0.001, + "force": { + "#": 1756 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1757 + }, + "positionImpulse": { + "#": 1758 + }, + "positionPrev": { + "#": 1759 + }, + "render": { + "#": 1760 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1762 + }, + "vertices": { + "#": 1763 + } + }, + [ + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1752 + }, + "min": { + "#": 1753 + } + }, + { + "x": 463.03200000000015, + "y": 486.55600000000015 + }, + { + "x": 423.5240000000001, + "y": 447.0480000000001 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 466.80200000000013 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 466.80200000000013 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1761 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 463.6730000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 463.6730000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1785 + }, + "bounds": { + "#": 1796 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1799 + }, + "constraintImpulse": { + "#": 1800 + }, + "density": 0.001, + "force": { + "#": 1801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1802 + }, + "positionImpulse": { + "#": 1803 + }, + "positionPrev": { + "#": 1804 + }, + "render": { + "#": 1805 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1807 + }, + "vertices": { + "#": 1808 + } + }, + [ + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1797 + }, + "min": { + "#": 1798 + } + }, + { + "x": 512.5400000000002, + "y": 486.55600000000015 + }, + { + "x": 473.03200000000015, + "y": 447.0480000000001 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 466.80200000000013 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 466.80200000000013 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1806 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 486.55600000000015 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 484.6220000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 480.94400000000013 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 475.8820000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 469.93100000000015 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 463.6730000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 447.0480000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 448.98200000000014 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 452.66000000000014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 457.72200000000015 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 463.6730000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1830 + }, + "bounds": { + "#": 1841 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1844 + }, + "constraintImpulse": { + "#": 1845 + }, + "density": 0.001, + "force": { + "#": 1846 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1847 + }, + "positionImpulse": { + "#": 1848 + }, + "positionPrev": { + "#": 1849 + }, + "render": { + "#": 1850 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1852 + }, + "vertices": { + "#": 1853 + } + }, + [ + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1842 + }, + "min": { + "#": 1843 + } + }, + { + "x": 314.50800000000004, + "y": 536.0640000000002 + }, + { + "x": 275, + "y": 496.55600000000015 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 516.3100000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 516.3100000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1851 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 513.1810000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 513.1810000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1875 + }, + "bounds": { + "#": 1886 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1889 + }, + "constraintImpulse": { + "#": 1890 + }, + "density": 0.001, + "force": { + "#": 1891 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1892 + }, + "positionImpulse": { + "#": 1893 + }, + "positionPrev": { + "#": 1894 + }, + "render": { + "#": 1895 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1897 + }, + "vertices": { + "#": 1898 + } + }, + [ + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1887 + }, + "min": { + "#": 1888 + } + }, + { + "x": 364.0160000000001, + "y": 536.0640000000002 + }, + { + "x": 324.50800000000004, + "y": 496.55600000000015 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 516.3100000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 516.3100000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1896 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 513.1810000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 513.1810000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1920 + }, + "bounds": { + "#": 1931 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1934 + }, + "constraintImpulse": { + "#": 1935 + }, + "density": 0.001, + "force": { + "#": 1936 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1937 + }, + "positionImpulse": { + "#": 1938 + }, + "positionPrev": { + "#": 1939 + }, + "render": { + "#": 1940 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1942 + }, + "vertices": { + "#": 1943 + } + }, + [ + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1932 + }, + "min": { + "#": 1933 + } + }, + { + "x": 413.5240000000001, + "y": 536.0640000000002 + }, + { + "x": 374.0160000000001, + "y": 496.55600000000015 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 516.3100000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 516.3100000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1941 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 513.1810000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 513.1810000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1965 + }, + "bounds": { + "#": 1976 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1979 + }, + "constraintImpulse": { + "#": 1980 + }, + "density": 0.001, + "force": { + "#": 1981 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1982 + }, + "positionImpulse": { + "#": 1983 + }, + "positionPrev": { + "#": 1984 + }, + "render": { + "#": 1985 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1987 + }, + "vertices": { + "#": 1988 + } + }, + [ + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1977 + }, + "min": { + "#": 1978 + } + }, + { + "x": 463.03200000000015, + "y": 536.0640000000002 + }, + { + "x": 423.5240000000001, + "y": 496.55600000000015 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 516.3100000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 516.3100000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1986 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 513.1810000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 513.1810000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2010 + }, + "bounds": { + "#": 2021 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2024 + }, + "constraintImpulse": { + "#": 2025 + }, + "density": 0.001, + "force": { + "#": 2026 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2027 + }, + "positionImpulse": { + "#": 2028 + }, + "positionPrev": { + "#": 2029 + }, + "render": { + "#": 2030 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2032 + }, + "vertices": { + "#": 2033 + } + }, + [ + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2022 + }, + "min": { + "#": 2023 + } + }, + { + "x": 512.5400000000002, + "y": 536.0640000000002 + }, + { + "x": 473.03200000000015, + "y": 496.55600000000015 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 516.3100000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 516.3100000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2031 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 536.0640000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 534.1300000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 530.4520000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 525.3900000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 519.4390000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 513.1810000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 496.55600000000015 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 498.4900000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 502.1680000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 507.2300000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 513.1810000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2055 + }, + "bounds": { + "#": 2066 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2069 + }, + "constraintImpulse": { + "#": 2070 + }, + "density": 0.001, + "force": { + "#": 2071 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2072 + }, + "positionImpulse": { + "#": 2073 + }, + "positionPrev": { + "#": 2074 + }, + "render": { + "#": 2075 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2077 + }, + "vertices": { + "#": 2078 + } + }, + [ + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2067 + }, + "min": { + "#": 2068 + } + }, + { + "x": 314.50800000000004, + "y": 585.5720000000002 + }, + { + "x": 275, + "y": 546.0640000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 565.8180000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 565.8180000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2076 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 562.6890000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 562.6890000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2100 + }, + "bounds": { + "#": 2111 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2114 + }, + "constraintImpulse": { + "#": 2115 + }, + "density": 0.001, + "force": { + "#": 2116 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2117 + }, + "positionImpulse": { + "#": 2118 + }, + "positionPrev": { + "#": 2119 + }, + "render": { + "#": 2120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2122 + }, + "vertices": { + "#": 2123 + } + }, + [ + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2112 + }, + "min": { + "#": 2113 + } + }, + { + "x": 364.0160000000001, + "y": 585.5720000000002 + }, + { + "x": 324.50800000000004, + "y": 546.0640000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 565.8180000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 565.8180000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2121 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 562.6890000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 562.6890000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2145 + }, + "bounds": { + "#": 2156 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2159 + }, + "constraintImpulse": { + "#": 2160 + }, + "density": 0.001, + "force": { + "#": 2161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2162 + }, + "positionImpulse": { + "#": 2163 + }, + "positionPrev": { + "#": 2164 + }, + "render": { + "#": 2165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2167 + }, + "vertices": { + "#": 2168 + } + }, + [ + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2157 + }, + "min": { + "#": 2158 + } + }, + { + "x": 413.5240000000001, + "y": 585.5720000000002 + }, + { + "x": 374.0160000000001, + "y": 546.0640000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 565.8180000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 565.8180000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2166 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 562.6890000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 562.6890000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2190 + }, + "bounds": { + "#": 2201 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2204 + }, + "constraintImpulse": { + "#": 2205 + }, + "density": 0.001, + "force": { + "#": 2206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2207 + }, + "positionImpulse": { + "#": 2208 + }, + "positionPrev": { + "#": 2209 + }, + "render": { + "#": 2210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2212 + }, + "vertices": { + "#": 2213 + } + }, + [ + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2202 + }, + "min": { + "#": 2203 + } + }, + { + "x": 463.03200000000015, + "y": 585.5720000000002 + }, + { + "x": 423.5240000000001, + "y": 546.0640000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 565.8180000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 565.8180000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2211 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 562.6890000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 562.6890000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2235 + }, + "bounds": { + "#": 2246 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2249 + }, + "constraintImpulse": { + "#": 2250 + }, + "density": 0.001, + "force": { + "#": 2251 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2252 + }, + "positionImpulse": { + "#": 2253 + }, + "positionPrev": { + "#": 2254 + }, + "render": { + "#": 2255 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2257 + }, + "vertices": { + "#": 2258 + } + }, + [ + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2247 + }, + "min": { + "#": 2248 + } + }, + { + "x": 512.5400000000002, + "y": 585.5720000000002 + }, + { + "x": 473.03200000000015, + "y": 546.0640000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 565.8180000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 565.8180000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2256 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 585.5720000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 583.6380000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 579.9600000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 574.8980000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 568.9470000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 562.6890000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 546.0640000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 547.9980000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 551.6760000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 556.7380000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 562.6890000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2280 + }, + "bounds": { + "#": 2291 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2294 + }, + "constraintImpulse": { + "#": 2295 + }, + "density": 0.001, + "force": { + "#": 2296 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2297 + }, + "positionImpulse": { + "#": 2298 + }, + "positionPrev": { + "#": 2299 + }, + "render": { + "#": 2300 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2302 + }, + "vertices": { + "#": 2303 + } + }, + [ + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2292 + }, + "min": { + "#": 2293 + } + }, + { + "x": 314.50800000000004, + "y": 635.0800000000003 + }, + { + "x": 275, + "y": 595.5720000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 615.3260000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 615.3260000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2301 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 612.1970000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 612.1970000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2325 + }, + "bounds": { + "#": 2336 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2339 + }, + "constraintImpulse": { + "#": 2340 + }, + "density": 0.001, + "force": { + "#": 2341 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2342 + }, + "positionImpulse": { + "#": 2343 + }, + "positionPrev": { + "#": 2344 + }, + "render": { + "#": 2345 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2347 + }, + "vertices": { + "#": 2348 + } + }, + [ + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2337 + }, + "min": { + "#": 2338 + } + }, + { + "x": 364.0160000000001, + "y": 635.0800000000003 + }, + { + "x": 324.50800000000004, + "y": 595.5720000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 615.3260000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 615.3260000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2346 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 612.1970000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 612.1970000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2370 + }, + "bounds": { + "#": 2381 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2384 + }, + "constraintImpulse": { + "#": 2385 + }, + "density": 0.001, + "force": { + "#": 2386 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2387 + }, + "positionImpulse": { + "#": 2388 + }, + "positionPrev": { + "#": 2389 + }, + "render": { + "#": 2390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2392 + }, + "vertices": { + "#": 2393 + } + }, + [ + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2382 + }, + "min": { + "#": 2383 + } + }, + { + "x": 413.5240000000001, + "y": 635.0800000000003 + }, + { + "x": 374.0160000000001, + "y": 595.5720000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 615.3260000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 615.3260000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2391 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 612.1970000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 612.1970000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2415 + }, + "bounds": { + "#": 2426 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2429 + }, + "constraintImpulse": { + "#": 2430 + }, + "density": 0.001, + "force": { + "#": 2431 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2432 + }, + "positionImpulse": { + "#": 2433 + }, + "positionPrev": { + "#": 2434 + }, + "render": { + "#": 2435 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2437 + }, + "vertices": { + "#": 2438 + } + }, + [ + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2427 + }, + "min": { + "#": 2428 + } + }, + { + "x": 463.03200000000015, + "y": 635.0800000000003 + }, + { + "x": 423.5240000000001, + "y": 595.5720000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 615.3260000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 615.3260000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2436 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 612.1970000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 612.1970000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2460 + }, + "bounds": { + "#": 2471 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2474 + }, + "constraintImpulse": { + "#": 2475 + }, + "density": 0.001, + "force": { + "#": 2476 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2477 + }, + "positionImpulse": { + "#": 2478 + }, + "positionPrev": { + "#": 2479 + }, + "render": { + "#": 2480 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2482 + }, + "vertices": { + "#": 2483 + } + }, + [ + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + }, + { + "#": 2465 + }, + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2472 + }, + "min": { + "#": 2473 + } + }, + { + "x": 512.5400000000002, + "y": 635.0800000000003 + }, + { + "x": 473.03200000000015, + "y": 595.5720000000002 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 615.3260000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 615.3260000000002 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2481 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 635.0800000000003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 633.1460000000003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 629.4680000000003 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 624.4060000000003 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 618.4550000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 612.1970000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 595.5720000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 597.5060000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 601.1840000000002 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 606.2460000000002 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 612.1970000000002 + }, + [], + [], + [ + { + "#": 2507 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2508 + }, + "pointB": "", + "render": { + "#": 2509 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 2511 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/collisionFiltering/collisionFiltering-10.json b/tests/browser/refs/collisionFiltering/collisionFiltering-10.json new file mode 100644 index 00000000..23ab67a4 --- /dev/null +++ b/tests/browser/refs/collisionFiltering/collisionFiltering-10.json @@ -0,0 +1,22915 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 255 + }, + "composites": { + "#": 258 + }, + "constraints": { + "#": 2563 + }, + "events": { + "#": 2567 + }, + "gravity": { + "#": 2569 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 145 + }, + { + "#": 200 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 91 + }, + "bounds": { + "#": 105 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 108 + }, + "constraintImpulse": { + "#": 109 + }, + "density": 0.001, + "force": { + "#": 110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 4991.137790304929, + "inverseInertia": 0.0002003551178135088, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 111 + }, + "positionImpulse": { + "#": 112 + }, + "positionPrev": { + "#": 113 + }, + "region": { + "#": 114 + }, + "render": { + "#": 115 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 117 + }, + "vertices": { + "#": 118 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 106 + }, + "min": { + "#": 107 + } + }, + { + "x": 339.781, + "y": 135.99252924881458 + }, + { + "x": 280.219, + "y": 73.08525853377894 + }, + { + "category": 1, + "group": 0, + "mask": 5 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 310, + "y": 103.08525853377893 + }, + { + "x": 0, + "y": 0.8523115466493796 + }, + { + "x": 310, + "y": 100.17798781874328 + }, + { + "endCol": 7, + "endRow": 2, + "id": "5,7,1,2", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 116 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 339.781, + "y": 106.70125853377894 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 338.05, + "y": 113.72325853377893 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 334.69, + "y": 120.12725853377896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 329.894, + "y": 125.54025853377894 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 323.942, + "y": 129.64925853377892 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 317.179, + "y": 132.21325853377894 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 310, + "y": 133.08525853377893 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 302.821, + "y": 132.21325853377894 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 296.058, + "y": 129.64925853377892 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.106, + "y": 125.54025853377894 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.31, + "y": 120.12725853377896 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 281.95, + "y": 113.72325853377893 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.219, + "y": 106.70125853377894 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 280.219, + "y": 99.46925853377894 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 281.95, + "y": 92.44725853377892 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 285.31, + "y": 86.04325853377892 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 290.106, + "y": 80.63025853377894 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 296.058, + "y": 76.52125853377893 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 302.821, + "y": 73.95725853377894 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 310, + "y": 73.08525853377894 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 317.179, + "y": 73.95725853377894 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 323.942, + "y": 76.52125853377893 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 329.894, + "y": 80.63025853377894 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 334.69, + "y": 86.04325853377892 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 338.05, + "y": 92.44725853377892 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 339.781, + "y": 99.46925853377894 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 146 + }, + "bounds": { + "#": 160 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 163 + }, + "constraintImpulse": { + "#": 164 + }, + "density": 0.001, + "force": { + "#": 165 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 4991.137790304929, + "inverseInertia": 0.0002003551178135088, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 166 + }, + "positionImpulse": { + "#": 167 + }, + "positionPrev": { + "#": 168 + }, + "region": { + "#": 169 + }, + "render": { + "#": 170 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 172 + }, + "vertices": { + "#": 173 + } + }, + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 161 + }, + "min": { + "#": 162 + } + }, + { + "x": 429.781, + "y": 135.99252924881458 + }, + { + "x": 370.219, + "y": 73.08525853377894 + }, + { + "category": 1, + "group": 0, + "mask": 3 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 103.08525853377893 + }, + { + "x": 0, + "y": 0.8523115466493796 + }, + { + "x": 400, + "y": 100.17798781874328 + }, + { + "endCol": 8, + "endRow": 2, + "id": "7,8,1,2", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 171 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 429.781, + "y": 106.70125853377894 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 428.05, + "y": 113.72325853377893 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 424.69, + "y": 120.12725853377896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 419.894, + "y": 125.54025853377894 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 413.942, + "y": 129.64925853377892 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 407.179, + "y": 132.21325853377894 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 400, + "y": 133.08525853377893 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 392.821, + "y": 132.21325853377894 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 386.058, + "y": 129.64925853377892 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 380.106, + "y": 125.54025853377894 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 375.31, + "y": 120.12725853377896 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 371.95, + "y": 113.72325853377893 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 370.219, + "y": 106.70125853377894 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 370.219, + "y": 99.46925853377894 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 371.95, + "y": 92.44725853377892 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 375.31, + "y": 86.04325853377892 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 380.106, + "y": 80.63025853377894 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 386.058, + "y": 76.52125853377893 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 392.821, + "y": 73.95725853377894 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 400, + "y": 73.08525853377894 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 407.179, + "y": 73.95725853377894 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 413.942, + "y": 76.52125853377893 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 419.894, + "y": 80.63025853377894 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 424.69, + "y": 86.04325853377892 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 428.05, + "y": 92.44725853377892 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 429.781, + "y": 99.46925853377894 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 201 + }, + "bounds": { + "#": 215 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 218 + }, + "constraintImpulse": { + "#": 219 + }, + "density": 0.001, + "force": { + "#": 220 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 4991.137790304929, + "inverseInertia": 0.0002003551178135088, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 221 + }, + "positionImpulse": { + "#": 222 + }, + "positionPrev": { + "#": 223 + }, + "region": { + "#": 224 + }, + "render": { + "#": 225 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 227 + }, + "vertices": { + "#": 228 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 216 + }, + "min": { + "#": 217 + } + }, + { + "x": 509.781, + "y": 135.99252924881458 + }, + { + "x": 450.219, + "y": 73.08525853377894 + }, + { + "category": 1, + "group": 0, + "mask": 9 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 103.08525853377893 + }, + { + "x": 0, + "y": 0.8523115466493796 + }, + { + "x": 480, + "y": 100.17798781874328 + }, + { + "endCol": 10, + "endRow": 2, + "id": "9,10,1,2", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 226 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 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 + }, + { + "#": 254 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 509.781, + "y": 106.70125853377894 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 508.05, + "y": 113.72325853377893 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 504.69, + "y": 120.12725853377896 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 499.894, + "y": 125.54025853377894 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 493.942, + "y": 129.64925853377892 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 487.179, + "y": 132.21325853377894 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 133.08525853377893 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 472.821, + "y": 132.21325853377894 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 466.058, + "y": 129.64925853377892 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 460.106, + "y": 125.54025853377894 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 455.31, + "y": 120.12725853377896 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 451.95, + "y": 113.72325853377893 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 450.219, + "y": 106.70125853377894 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 450.219, + "y": 99.46925853377894 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 451.95, + "y": 92.44725853377892 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.31, + "y": 86.04325853377892 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 460.106, + "y": 80.63025853377894 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 466.058, + "y": 76.52125853377893 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 472.821, + "y": 73.95725853377894 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 480, + "y": 73.08525853377894 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 487.179, + "y": 73.95725853377894 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 493.942, + "y": 76.52125853377893 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 499.894, + "y": 80.63025853377894 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 504.69, + "y": 86.04325853377892 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 508.05, + "y": 92.44725853377892 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 509.781, + "y": 99.46925853377894 + }, + { + "max": { + "#": 256 + }, + "min": { + "#": 257 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 259 + } + ], + { + "bodies": { + "#": 260 + }, + "composites": { + "#": 2561 + }, + "constraints": { + "#": 2562 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 261 + }, + { + "#": 307 + }, + { + "#": 353 + }, + { + "#": 399 + }, + { + "#": 445 + }, + { + "#": 491 + }, + { + "#": 537 + }, + { + "#": 583 + }, + { + "#": 629 + }, + { + "#": 675 + }, + { + "#": 721 + }, + { + "#": 767 + }, + { + "#": 813 + }, + { + "#": 859 + }, + { + "#": 905 + }, + { + "#": 951 + }, + { + "#": 997 + }, + { + "#": 1043 + }, + { + "#": 1089 + }, + { + "#": 1135 + }, + { + "#": 1181 + }, + { + "#": 1227 + }, + { + "#": 1273 + }, + { + "#": 1319 + }, + { + "#": 1365 + }, + { + "#": 1411 + }, + { + "#": 1457 + }, + { + "#": 1503 + }, + { + "#": 1549 + }, + { + "#": 1595 + }, + { + "#": 1641 + }, + { + "#": 1687 + }, + { + "#": 1733 + }, + { + "#": 1779 + }, + { + "#": 1825 + }, + { + "#": 1871 + }, + { + "#": 1917 + }, + { + "#": 1963 + }, + { + "#": 2009 + }, + { + "#": 2055 + }, + { + "#": 2101 + }, + { + "#": 2147 + }, + { + "#": 2193 + }, + { + "#": 2239 + }, + { + "#": 2285 + }, + { + "#": 2331 + }, + { + "#": 2377 + }, + { + "#": 2423 + }, + { + "#": 2469 + }, + { + "#": 2515 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 262 + }, + "bounds": { + "#": 273 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 276 + }, + "constraintImpulse": { + "#": 277 + }, + "density": 0.001, + "force": { + "#": 278 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 279 + }, + "positionImpulse": { + "#": 280 + }, + "positionPrev": { + "#": 281 + }, + "region": { + "#": 282 + }, + "render": { + "#": 283 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 285 + }, + "vertices": { + "#": 286 + } + }, + [ + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 274 + }, + "min": { + "#": 275 + } + }, + { + "x": 314.50800000000004, + "y": 207.24375476702596 + }, + { + "x": 275, + "y": 167.73575476702598 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 187.48975476702597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 184.5824840519903 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 284 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 184.36075476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 184.36075476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 308 + }, + "bounds": { + "#": 319 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 322 + }, + "constraintImpulse": { + "#": 323 + }, + "density": 0.001, + "force": { + "#": 324 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 325 + }, + "positionImpulse": { + "#": 326 + }, + "positionPrev": { + "#": 327 + }, + "region": { + "#": 328 + }, + "render": { + "#": 329 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 331 + }, + "vertices": { + "#": 332 + } + }, + [ + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 320 + }, + "min": { + "#": 321 + } + }, + { + "x": 364.0160000000001, + "y": 207.24375476702596 + }, + { + "x": 324.50800000000004, + "y": 167.73575476702598 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 187.48975476702597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 184.5824840519903 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,3,4", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 330 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 184.36075476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 184.36075476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 354 + }, + "bounds": { + "#": 365 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 368 + }, + "constraintImpulse": { + "#": 369 + }, + "density": 0.001, + "force": { + "#": 370 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 371 + }, + "positionImpulse": { + "#": 372 + }, + "positionPrev": { + "#": 373 + }, + "region": { + "#": 374 + }, + "render": { + "#": 375 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 377 + }, + "vertices": { + "#": 378 + } + }, + [ + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 366 + }, + "min": { + "#": 367 + } + }, + { + "x": 413.5240000000001, + "y": 207.24375476702596 + }, + { + "x": 374.0160000000001, + "y": 167.73575476702598 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 187.48975476702597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 184.5824840519903 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,3,4", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 376 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 184.36075476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 184.36075476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 400 + }, + "bounds": { + "#": 411 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 414 + }, + "constraintImpulse": { + "#": 415 + }, + "density": 0.001, + "force": { + "#": 416 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 417 + }, + "positionImpulse": { + "#": 418 + }, + "positionPrev": { + "#": 419 + }, + "region": { + "#": 420 + }, + "render": { + "#": 421 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 423 + }, + "vertices": { + "#": 424 + } + }, + [ + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 412 + }, + "min": { + "#": 413 + } + }, + { + "x": 463.03200000000015, + "y": 207.24375476702596 + }, + { + "x": 423.5240000000001, + "y": 167.73575476702598 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 187.48975476702597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 184.5824840519903 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,3,4", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 422 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 184.36075476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 184.36075476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 446 + }, + "bounds": { + "#": 457 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 460 + }, + "constraintImpulse": { + "#": 461 + }, + "density": 0.001, + "force": { + "#": 462 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 463 + }, + "positionImpulse": { + "#": 464 + }, + "positionPrev": { + "#": 465 + }, + "region": { + "#": 466 + }, + "render": { + "#": 467 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 469 + }, + "vertices": { + "#": 470 + } + }, + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 458 + }, + "min": { + "#": 459 + } + }, + { + "x": 512.5400000000002, + "y": 207.24375476702596 + }, + { + "x": 473.03200000000015, + "y": 167.73575476702598 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 187.48975476702597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 184.5824840519903 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,3,4", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 468 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 207.24375476702596 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 205.30975476702596 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 201.63175476702597 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 196.56975476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 190.61875476702596 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 184.36075476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 169.66975476702598 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 173.34775476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 178.40975476702596 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 184.36075476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 492 + }, + "bounds": { + "#": 503 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 506 + }, + "constraintImpulse": { + "#": 507 + }, + "density": 0.001, + "force": { + "#": 508 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 509 + }, + "positionImpulse": { + "#": 510 + }, + "positionPrev": { + "#": 511 + }, + "region": { + "#": 512 + }, + "render": { + "#": 513 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 515 + }, + "vertices": { + "#": 516 + } + }, + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 504 + }, + "min": { + "#": 505 + } + }, + { + "x": 314.50800000000004, + "y": 256.75175476702594 + }, + { + "x": 275, + "y": 217.24375476702596 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 236.99775476702595 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 234.09048405199027 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 514 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 233.86875476702596 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 233.86875476702596 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 538 + }, + "bounds": { + "#": 549 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 552 + }, + "constraintImpulse": { + "#": 553 + }, + "density": 0.001, + "force": { + "#": 554 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 555 + }, + "positionImpulse": { + "#": 556 + }, + "positionPrev": { + "#": 557 + }, + "region": { + "#": 558 + }, + "render": { + "#": 559 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 561 + }, + "vertices": { + "#": 562 + } + }, + [ + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 550 + }, + "min": { + "#": 551 + } + }, + { + "x": 364.0160000000001, + "y": 256.75175476702594 + }, + { + "x": 324.50800000000004, + "y": 217.24375476702596 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 236.99775476702595 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 234.09048405199027 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 560 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 233.86875476702596 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 233.86875476702596 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 584 + }, + "bounds": { + "#": 595 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 598 + }, + "constraintImpulse": { + "#": 599 + }, + "density": 0.001, + "force": { + "#": 600 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 601 + }, + "positionImpulse": { + "#": 602 + }, + "positionPrev": { + "#": 603 + }, + "region": { + "#": 604 + }, + "render": { + "#": 605 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 607 + }, + "vertices": { + "#": 608 + } + }, + [ + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 596 + }, + "min": { + "#": 597 + } + }, + { + "x": 413.5240000000001, + "y": 256.75175476702594 + }, + { + "x": 374.0160000000001, + "y": 217.24375476702596 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 236.99775476702595 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 234.09048405199027 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 606 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 233.86875476702596 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 233.86875476702596 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 630 + }, + "bounds": { + "#": 641 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 644 + }, + "constraintImpulse": { + "#": 645 + }, + "density": 0.001, + "force": { + "#": 646 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 647 + }, + "positionImpulse": { + "#": 648 + }, + "positionPrev": { + "#": 649 + }, + "region": { + "#": 650 + }, + "render": { + "#": 651 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 653 + }, + "vertices": { + "#": 654 + } + }, + [ + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 642 + }, + "min": { + "#": 643 + } + }, + { + "x": 463.03200000000015, + "y": 256.75175476702594 + }, + { + "x": 423.5240000000001, + "y": 217.24375476702596 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 236.99775476702595 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 234.09048405199027 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 652 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 233.86875476702596 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 233.86875476702596 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 676 + }, + "bounds": { + "#": 687 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 690 + }, + "constraintImpulse": { + "#": 691 + }, + "density": 0.001, + "force": { + "#": 692 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 693 + }, + "positionImpulse": { + "#": 694 + }, + "positionPrev": { + "#": 695 + }, + "region": { + "#": 696 + }, + "render": { + "#": 697 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 699 + }, + "vertices": { + "#": 700 + } + }, + [ + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 688 + }, + "min": { + "#": 689 + } + }, + { + "x": 512.5400000000002, + "y": 256.75175476702594 + }, + { + "x": 473.03200000000015, + "y": 217.24375476702596 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 236.99775476702595 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 234.09048405199027 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 698 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 256.75175476702594 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 254.81775476702595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 251.13975476702595 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 246.07775476702597 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 240.12675476702594 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 233.86875476702596 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 217.24375476702596 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 219.17775476702596 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 222.85575476702596 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 227.91775476702594 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 233.86875476702596 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 722 + }, + "bounds": { + "#": 733 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 736 + }, + "constraintImpulse": { + "#": 737 + }, + "density": 0.001, + "force": { + "#": 738 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 739 + }, + "positionImpulse": { + "#": 740 + }, + "positionPrev": { + "#": 741 + }, + "region": { + "#": 742 + }, + "render": { + "#": 743 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 745 + }, + "vertices": { + "#": 746 + } + }, + [ + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 734 + }, + "min": { + "#": 735 + } + }, + { + "x": 314.50800000000004, + "y": 306.25975476702496 + }, + { + "x": 275, + "y": 266.7517547670251 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 286.50575476702494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 283.5984840519894 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 744 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 283.3767547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 272.363754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 272.363754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 283.3767547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 768 + }, + "bounds": { + "#": 779 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 782 + }, + "constraintImpulse": { + "#": 783 + }, + "density": 0.001, + "force": { + "#": 784 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 785 + }, + "positionImpulse": { + "#": 786 + }, + "positionPrev": { + "#": 787 + }, + "region": { + "#": 788 + }, + "render": { + "#": 789 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 791 + }, + "vertices": { + "#": 792 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 780 + }, + "min": { + "#": 781 + } + }, + { + "x": 364.0160000000001, + "y": 306.25975476702496 + }, + { + "x": 324.50800000000004, + "y": 266.7517547670251 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 286.50575476702494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 283.5984840519894 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 790 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 283.3767547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 272.363754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 272.363754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 283.3767547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 814 + }, + "bounds": { + "#": 825 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 828 + }, + "constraintImpulse": { + "#": 829 + }, + "density": 0.001, + "force": { + "#": 830 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 831 + }, + "positionImpulse": { + "#": 832 + }, + "positionPrev": { + "#": 833 + }, + "region": { + "#": 834 + }, + "render": { + "#": 835 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 837 + }, + "vertices": { + "#": 838 + } + }, + [ + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 826 + }, + "min": { + "#": 827 + } + }, + { + "x": 413.5240000000001, + "y": 306.25975476702496 + }, + { + "x": 374.0160000000001, + "y": 266.7517547670251 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 286.50575476702494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 283.5984840519894 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 836 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 283.3767547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 272.363754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 272.363754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 283.3767547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 860 + }, + "bounds": { + "#": 871 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 874 + }, + "constraintImpulse": { + "#": 875 + }, + "density": 0.001, + "force": { + "#": 876 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 877 + }, + "positionImpulse": { + "#": 878 + }, + "positionPrev": { + "#": 879 + }, + "region": { + "#": 880 + }, + "render": { + "#": 881 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 883 + }, + "vertices": { + "#": 884 + } + }, + [ + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 872 + }, + "min": { + "#": 873 + } + }, + { + "x": 463.03200000000015, + "y": 306.25975476702496 + }, + { + "x": 423.5240000000001, + "y": 266.7517547670251 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 286.50575476702494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 283.5984840519894 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 882 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 283.3767547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 272.363754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 272.363754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 283.3767547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 906 + }, + "bounds": { + "#": 917 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 920 + }, + "constraintImpulse": { + "#": 921 + }, + "density": 0.001, + "force": { + "#": 922 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 923 + }, + "positionImpulse": { + "#": 924 + }, + "positionPrev": { + "#": 925 + }, + "region": { + "#": 926 + }, + "render": { + "#": 927 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 929 + }, + "vertices": { + "#": 930 + } + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 918 + }, + "min": { + "#": 919 + } + }, + { + "x": 512.5400000000002, + "y": 306.25975476702496 + }, + { + "x": 473.03200000000015, + "y": 266.7517547670251 + }, + { + "category": 2, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 286.50575476702494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 283.5984840519894 + }, + { + "endCol": 10, + "endRow": 6, + "id": "9,10,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 928 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 306.25975476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 304.32575476702493 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 300.64775476702494 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 295.5857547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 289.63475476702496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 283.3767547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 272.363754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 266.7517547670251 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 268.68575476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 272.363754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 277.4257547670249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 283.3767547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 952 + }, + "bounds": { + "#": 963 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 966 + }, + "constraintImpulse": { + "#": 967 + }, + "density": 0.001, + "force": { + "#": 968 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 969 + }, + "positionImpulse": { + "#": 970 + }, + "positionPrev": { + "#": 971 + }, + "region": { + "#": 972 + }, + "render": { + "#": 973 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 975 + }, + "vertices": { + "#": 976 + } + }, + [ + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 964 + }, + "min": { + "#": 965 + } + }, + { + "x": 314.50800000000004, + "y": 355.767754767025 + }, + { + "x": 275, + "y": 316.25975476702496 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 336.013754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 333.1064840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 974 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 339.142754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 350.155754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 355.767754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 355.767754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 350.155754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 339.142754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 332.88475476702496 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 326.933754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 321.871754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 318.193754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 318.193754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 321.871754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 326.933754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 332.88475476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 998 + }, + "bounds": { + "#": 1009 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1012 + }, + "constraintImpulse": { + "#": 1013 + }, + "density": 0.001, + "force": { + "#": 1014 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1015 + }, + "positionImpulse": { + "#": 1016 + }, + "positionPrev": { + "#": 1017 + }, + "region": { + "#": 1018 + }, + "render": { + "#": 1019 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1021 + }, + "vertices": { + "#": 1022 + } + }, + [ + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1010 + }, + "min": { + "#": 1011 + } + }, + { + "x": 364.0160000000001, + "y": 355.767754767025 + }, + { + "x": 324.50800000000004, + "y": 316.25975476702496 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 336.013754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 333.1064840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1020 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 339.142754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 350.155754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 355.767754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 355.767754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 350.155754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 339.142754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 332.88475476702496 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 326.933754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 321.871754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 318.193754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 318.193754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 321.871754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 326.933754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 332.88475476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1044 + }, + "bounds": { + "#": 1055 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1058 + }, + "constraintImpulse": { + "#": 1059 + }, + "density": 0.001, + "force": { + "#": 1060 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1061 + }, + "positionImpulse": { + "#": 1062 + }, + "positionPrev": { + "#": 1063 + }, + "region": { + "#": 1064 + }, + "render": { + "#": 1065 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1067 + }, + "vertices": { + "#": 1068 + } + }, + [ + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1056 + }, + "min": { + "#": 1057 + } + }, + { + "x": 413.5240000000001, + "y": 355.767754767025 + }, + { + "x": 374.0160000000001, + "y": 316.25975476702496 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 336.013754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 333.1064840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1066 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 339.142754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 350.155754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 355.767754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 355.767754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 350.155754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 339.142754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 332.88475476702496 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 326.933754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 321.871754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 318.193754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 318.193754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 321.871754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 326.933754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 332.88475476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1090 + }, + "bounds": { + "#": 1101 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1104 + }, + "constraintImpulse": { + "#": 1105 + }, + "density": 0.001, + "force": { + "#": 1106 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1107 + }, + "positionImpulse": { + "#": 1108 + }, + "positionPrev": { + "#": 1109 + }, + "region": { + "#": 1110 + }, + "render": { + "#": 1111 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1113 + }, + "vertices": { + "#": 1114 + } + }, + [ + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1102 + }, + "min": { + "#": 1103 + } + }, + { + "x": 463.03200000000015, + "y": 355.767754767025 + }, + { + "x": 423.5240000000001, + "y": 316.25975476702496 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 336.013754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 333.1064840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1112 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 339.142754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 350.155754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 355.767754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 355.767754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 350.155754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 339.142754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 332.88475476702496 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 326.933754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 321.871754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 318.193754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 318.193754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 321.871754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 326.933754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 332.88475476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1136 + }, + "bounds": { + "#": 1147 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1150 + }, + "constraintImpulse": { + "#": 1151 + }, + "density": 0.001, + "force": { + "#": 1152 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1153 + }, + "positionImpulse": { + "#": 1154 + }, + "positionPrev": { + "#": 1155 + }, + "region": { + "#": 1156 + }, + "render": { + "#": 1157 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1159 + }, + "vertices": { + "#": 1160 + } + }, + [ + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1148 + }, + "min": { + "#": 1149 + } + }, + { + "x": 512.5400000000002, + "y": 355.767754767025 + }, + { + "x": 473.03200000000015, + "y": 316.25975476702496 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 336.013754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 333.1064840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1158 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 339.142754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 350.155754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 355.767754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 355.767754767025 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 353.83375476702497 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 350.155754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 345.09375476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 339.142754767025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 332.88475476702496 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 326.933754767025 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 321.871754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 318.193754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 316.25975476702496 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 318.193754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 321.871754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 326.933754767025 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 332.88475476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1182 + }, + "bounds": { + "#": 1193 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1196 + }, + "constraintImpulse": { + "#": 1197 + }, + "density": 0.001, + "force": { + "#": 1198 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1199 + }, + "positionImpulse": { + "#": 1200 + }, + "positionPrev": { + "#": 1201 + }, + "region": { + "#": 1202 + }, + "render": { + "#": 1203 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1205 + }, + "vertices": { + "#": 1206 + } + }, + [ + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1194 + }, + "min": { + "#": 1195 + } + }, + { + "x": 314.50800000000004, + "y": 405.27575476702503 + }, + { + "x": 275, + "y": 365.767754767025 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 385.521754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 382.61448405198945 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1204 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 394.601754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 399.663754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 403.341754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 403.341754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 399.663754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 394.601754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 382.392754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 371.379754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 367.701754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 365.767754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 365.767754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 367.701754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 371.379754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 382.392754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1228 + }, + "bounds": { + "#": 1239 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1242 + }, + "constraintImpulse": { + "#": 1243 + }, + "density": 0.001, + "force": { + "#": 1244 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1245 + }, + "positionImpulse": { + "#": 1246 + }, + "positionPrev": { + "#": 1247 + }, + "region": { + "#": 1248 + }, + "render": { + "#": 1249 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1251 + }, + "vertices": { + "#": 1252 + } + }, + [ + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1240 + }, + "min": { + "#": 1241 + } + }, + { + "x": 364.0160000000001, + "y": 405.27575476702503 + }, + { + "x": 324.50800000000004, + "y": 365.767754767025 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 385.521754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 382.61448405198945 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1250 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 394.601754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 399.663754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 403.341754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 403.341754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 399.663754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 394.601754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 382.392754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 371.379754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 367.701754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 365.767754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 365.767754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 367.701754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 371.379754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 382.392754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1274 + }, + "bounds": { + "#": 1285 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1288 + }, + "constraintImpulse": { + "#": 1289 + }, + "density": 0.001, + "force": { + "#": 1290 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1291 + }, + "positionImpulse": { + "#": 1292 + }, + "positionPrev": { + "#": 1293 + }, + "region": { + "#": 1294 + }, + "render": { + "#": 1295 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1297 + }, + "vertices": { + "#": 1298 + } + }, + [ + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1286 + }, + "min": { + "#": 1287 + } + }, + { + "x": 413.5240000000001, + "y": 405.27575476702503 + }, + { + "x": 374.0160000000001, + "y": 365.767754767025 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 385.521754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 382.61448405198945 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1296 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 394.601754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 399.663754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 403.341754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 403.341754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 399.663754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 394.601754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 382.392754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 371.379754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 367.701754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 365.767754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 365.767754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 367.701754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 371.379754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 382.392754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1320 + }, + "bounds": { + "#": 1331 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1334 + }, + "constraintImpulse": { + "#": 1335 + }, + "density": 0.001, + "force": { + "#": 1336 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1337 + }, + "positionImpulse": { + "#": 1338 + }, + "positionPrev": { + "#": 1339 + }, + "region": { + "#": 1340 + }, + "render": { + "#": 1341 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1343 + }, + "vertices": { + "#": 1344 + } + }, + [ + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1332 + }, + "min": { + "#": 1333 + } + }, + { + "x": 463.03200000000015, + "y": 405.27575476702503 + }, + { + "x": 423.5240000000001, + "y": 365.767754767025 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 385.521754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 382.61448405198945 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1342 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 394.601754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 399.663754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 403.341754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 403.341754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 399.663754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 394.601754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 382.392754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 371.379754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 367.701754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 365.767754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 365.767754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 367.701754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 371.379754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 382.392754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1366 + }, + "bounds": { + "#": 1377 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1380 + }, + "constraintImpulse": { + "#": 1381 + }, + "density": 0.001, + "force": { + "#": 1382 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1383 + }, + "positionImpulse": { + "#": 1384 + }, + "positionPrev": { + "#": 1385 + }, + "region": { + "#": 1386 + }, + "render": { + "#": 1387 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1389 + }, + "vertices": { + "#": 1390 + } + }, + [ + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1378 + }, + "min": { + "#": 1379 + } + }, + { + "x": 512.5400000000002, + "y": 405.27575476702503 + }, + { + "x": 473.03200000000015, + "y": 365.767754767025 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 385.521754767025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 382.61448405198945 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1388 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 394.601754767025 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 399.663754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 403.341754767025 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 405.27575476702503 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 403.341754767025 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 399.663754767025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 394.601754767025 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 388.65075476702503 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 382.392754767025 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 371.379754767025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 367.701754767025 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 365.767754767025 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 365.767754767025 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 367.701754767025 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 371.379754767025 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 376.44175476702503 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 382.392754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1412 + }, + "bounds": { + "#": 1423 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1426 + }, + "constraintImpulse": { + "#": 1427 + }, + "density": 0.001, + "force": { + "#": 1428 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1429 + }, + "positionImpulse": { + "#": 1430 + }, + "positionPrev": { + "#": 1431 + }, + "region": { + "#": 1432 + }, + "render": { + "#": 1433 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1435 + }, + "vertices": { + "#": 1436 + } + }, + [ + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1424 + }, + "min": { + "#": 1425 + } + }, + { + "x": 314.50800000000004, + "y": 454.7837547670251 + }, + { + "x": 275, + "y": 415.27575476702503 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 435.02975476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 432.1224840519895 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1434 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 431.90075476702503 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 431.90075476702503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1458 + }, + "bounds": { + "#": 1469 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1472 + }, + "constraintImpulse": { + "#": 1473 + }, + "density": 0.001, + "force": { + "#": 1474 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1475 + }, + "positionImpulse": { + "#": 1476 + }, + "positionPrev": { + "#": 1477 + }, + "region": { + "#": 1478 + }, + "render": { + "#": 1479 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1481 + }, + "vertices": { + "#": 1482 + } + }, + [ + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1470 + }, + "min": { + "#": 1471 + } + }, + { + "x": 364.0160000000001, + "y": 454.7837547670251 + }, + { + "x": 324.50800000000004, + "y": 415.27575476702503 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 435.02975476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 432.1224840519895 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1480 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 431.90075476702503 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 431.90075476702503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1504 + }, + "bounds": { + "#": 1515 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1518 + }, + "constraintImpulse": { + "#": 1519 + }, + "density": 0.001, + "force": { + "#": 1520 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1521 + }, + "positionImpulse": { + "#": 1522 + }, + "positionPrev": { + "#": 1523 + }, + "region": { + "#": 1524 + }, + "render": { + "#": 1525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1527 + }, + "vertices": { + "#": 1528 + } + }, + [ + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1516 + }, + "min": { + "#": 1517 + } + }, + { + "x": 413.5240000000001, + "y": 454.7837547670251 + }, + { + "x": 374.0160000000001, + "y": 415.27575476702503 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 435.02975476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 432.1224840519895 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1526 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 431.90075476702503 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 431.90075476702503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1550 + }, + "bounds": { + "#": 1561 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1564 + }, + "constraintImpulse": { + "#": 1565 + }, + "density": 0.001, + "force": { + "#": 1566 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1567 + }, + "positionImpulse": { + "#": 1568 + }, + "positionPrev": { + "#": 1569 + }, + "region": { + "#": 1570 + }, + "render": { + "#": 1571 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1573 + }, + "vertices": { + "#": 1574 + } + }, + [ + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1562 + }, + "min": { + "#": 1563 + } + }, + { + "x": 463.03200000000015, + "y": 454.7837547670251 + }, + { + "x": 423.5240000000001, + "y": 415.27575476702503 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 435.02975476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 432.1224840519895 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1572 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 431.90075476702503 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 431.90075476702503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1596 + }, + "bounds": { + "#": 1607 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1610 + }, + "constraintImpulse": { + "#": 1611 + }, + "density": 0.001, + "force": { + "#": 1612 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1613 + }, + "positionImpulse": { + "#": 1614 + }, + "positionPrev": { + "#": 1615 + }, + "region": { + "#": 1616 + }, + "render": { + "#": 1617 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1619 + }, + "vertices": { + "#": 1620 + } + }, + [ + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1608 + }, + "min": { + "#": 1609 + } + }, + { + "x": 512.5400000000002, + "y": 454.7837547670251 + }, + { + "x": 473.03200000000015, + "y": 415.27575476702503 + }, + { + "category": 4, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 435.02975476702505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 432.1224840519895 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1618 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 454.7837547670251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 452.84975476702505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 449.17175476702505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 444.10975476702504 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 438.1587547670251 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 431.90075476702503 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 415.27575476702503 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 417.20975476702506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 420.88775476702506 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 425.94975476702507 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 431.90075476702503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1642 + }, + "bounds": { + "#": 1653 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1656 + }, + "constraintImpulse": { + "#": 1657 + }, + "density": 0.001, + "force": { + "#": 1658 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1659 + }, + "positionImpulse": { + "#": 1660 + }, + "positionPrev": { + "#": 1661 + }, + "region": { + "#": 1662 + }, + "render": { + "#": 1663 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8508707426264899, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1665 + }, + "vertices": { + "#": 1666 + } + }, + [ + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1654 + }, + "min": { + "#": 1655 + } + }, + { + "x": 314.50800000000004, + "y": 502.52396527916176 + }, + { + "x": 275, + "y": 462.1650945365352 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 481.9190945365352 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 481.9190587800798 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1664 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.00004743696308651124 + }, + [ + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 478.7900945365352 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 478.7900945365352 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1688 + }, + "bounds": { + "#": 1699 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1702 + }, + "constraintImpulse": { + "#": 1703 + }, + "density": 0.001, + "force": { + "#": 1704 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1705 + }, + "positionImpulse": { + "#": 1706 + }, + "positionPrev": { + "#": 1707 + }, + "region": { + "#": 1708 + }, + "render": { + "#": 1709 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8508707426264899, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1711 + }, + "vertices": { + "#": 1712 + } + }, + [ + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1700 + }, + "min": { + "#": 1701 + } + }, + { + "x": 364.0160000000001, + "y": 502.52396527916176 + }, + { + "x": 324.50800000000004, + "y": 462.1650945365352 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 481.9190945365352 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 481.9190587800798 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1710 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.00004743696308651124 + }, + [ + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 478.7900945365352 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 478.7900945365352 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1734 + }, + "bounds": { + "#": 1745 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1748 + }, + "constraintImpulse": { + "#": 1749 + }, + "density": 0.001, + "force": { + "#": 1750 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1751 + }, + "positionImpulse": { + "#": 1752 + }, + "positionPrev": { + "#": 1753 + }, + "region": { + "#": 1754 + }, + "render": { + "#": 1755 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8508707426264899, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1757 + }, + "vertices": { + "#": 1758 + } + }, + [ + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1746 + }, + "min": { + "#": 1747 + } + }, + { + "x": 413.5240000000001, + "y": 502.52396527916176 + }, + { + "x": 374.0160000000001, + "y": 462.1650945365352 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 481.9190945365352 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 481.9190587800798 + }, + { + "endCol": 8, + "endRow": 10, + "id": "7,8,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1756 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.00004743696308651124 + }, + [ + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 478.7900945365352 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 478.7900945365352 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1780 + }, + "bounds": { + "#": 1791 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1794 + }, + "constraintImpulse": { + "#": 1795 + }, + "density": 0.001, + "force": { + "#": 1796 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1797 + }, + "positionImpulse": { + "#": 1798 + }, + "positionPrev": { + "#": 1799 + }, + "region": { + "#": 1800 + }, + "render": { + "#": 1801 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8508707426264899, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1803 + }, + "vertices": { + "#": 1804 + } + }, + [ + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1792 + }, + "min": { + "#": 1793 + } + }, + { + "x": 463.03200000000015, + "y": 502.52396527916176 + }, + { + "x": 423.5240000000001, + "y": 462.1650945365352 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 481.9190945365352 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 481.9190587800798 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1802 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.00004743696308651124 + }, + [ + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 478.7900945365352 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 478.7900945365352 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1826 + }, + "bounds": { + "#": 1837 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1840 + }, + "constraintImpulse": { + "#": 1841 + }, + "density": 0.001, + "force": { + "#": 1842 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1843 + }, + "positionImpulse": { + "#": 1844 + }, + "positionPrev": { + "#": 1845 + }, + "region": { + "#": 1846 + }, + "render": { + "#": 1847 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8508707426264899, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1849 + }, + "vertices": { + "#": 1850 + } + }, + [ + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1838 + }, + "min": { + "#": 1839 + } + }, + { + "x": 512.5400000000002, + "y": 502.52396527916176 + }, + { + "x": 473.03200000000015, + "y": 462.1650945365352 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 481.9190945365352 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 481.9190587800798 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1848 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.00004743696308651124 + }, + [ + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 501.67309453653525 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 499.7390945365352 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 496.0610945365352 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 490.9990945365352 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 485.04809453653525 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 478.7900945365352 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 462.1650945365352 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 464.09909453653523 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 467.77709453653523 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 472.83909453653524 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 478.7900945365352 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1872 + }, + "bounds": { + "#": 1883 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1886 + }, + "constraintImpulse": { + "#": 1887 + }, + "density": 0.001, + "force": { + "#": 1888 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1889 + }, + "positionImpulse": { + "#": 1890 + }, + "positionPrev": { + "#": 1891 + }, + "region": { + "#": 1892 + }, + "render": { + "#": 1893 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8462697322694335, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1895 + }, + "vertices": { + "#": 1896 + } + }, + [ + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1884 + }, + "min": { + "#": 1885 + } + }, + { + "x": 314.50800000000004, + "y": 541.8282298956211 + }, + { + "x": 275, + "y": 501.4739601633515 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 521.2279601633517 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 521.2279246975352 + }, + { + "endCol": 6, + "endRow": 11, + "id": "5,6,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1894 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.000023785308826518303 + }, + [ + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 518.0989601633516 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 518.0989601633516 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1918 + }, + "bounds": { + "#": 1929 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1932 + }, + "constraintImpulse": { + "#": 1933 + }, + "density": 0.001, + "force": { + "#": 1934 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1935 + }, + "positionImpulse": { + "#": 1936 + }, + "positionPrev": { + "#": 1937 + }, + "region": { + "#": 1938 + }, + "render": { + "#": 1939 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8462697322694335, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1941 + }, + "vertices": { + "#": 1942 + } + }, + [ + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1930 + }, + "min": { + "#": 1931 + } + }, + { + "x": 364.0160000000001, + "y": 541.8282298956211 + }, + { + "x": 324.50800000000004, + "y": 501.4739601633515 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 521.2279601633517 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 521.2279246975352 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1940 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.000023785308826518303 + }, + [ + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 518.0989601633516 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 518.0989601633516 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 1964 + }, + "bounds": { + "#": 1975 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 1978 + }, + "constraintImpulse": { + "#": 1979 + }, + "density": 0.001, + "force": { + "#": 1980 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 1981 + }, + "positionImpulse": { + "#": 1982 + }, + "positionPrev": { + "#": 1983 + }, + "region": { + "#": 1984 + }, + "render": { + "#": 1985 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8462697322694335, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1987 + }, + "vertices": { + "#": 1988 + } + }, + [ + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1976 + }, + "min": { + "#": 1977 + } + }, + { + "x": 413.5240000000001, + "y": 541.8282298956211 + }, + { + "x": 374.0160000000001, + "y": 501.4739601633515 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 521.2279601633517 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 521.2279246975352 + }, + { + "endCol": 8, + "endRow": 11, + "id": "7,8,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 1986 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.000023785308826518303 + }, + [ + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 518.0989601633516 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 518.0989601633516 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2010 + }, + "bounds": { + "#": 2021 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2024 + }, + "constraintImpulse": { + "#": 2025 + }, + "density": 0.001, + "force": { + "#": 2026 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2027 + }, + "positionImpulse": { + "#": 2028 + }, + "positionPrev": { + "#": 2029 + }, + "region": { + "#": 2030 + }, + "render": { + "#": 2031 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8462697322694335, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2033 + }, + "vertices": { + "#": 2034 + } + }, + [ + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2022 + }, + "min": { + "#": 2023 + } + }, + { + "x": 463.03200000000015, + "y": 541.8282298956211 + }, + { + "x": 423.5240000000001, + "y": 501.4739601633515 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 521.2279601633517 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 521.2279246975352 + }, + { + "endCol": 9, + "endRow": 11, + "id": "8,9,10,11", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2032 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.000023785308826518303 + }, + [ + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 518.0989601633516 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 518.0989601633516 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2056 + }, + "bounds": { + "#": 2067 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2070 + }, + "constraintImpulse": { + "#": 2071 + }, + "density": 0.001, + "force": { + "#": 2072 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2073 + }, + "positionImpulse": { + "#": 2074 + }, + "positionPrev": { + "#": 2075 + }, + "region": { + "#": 2076 + }, + "render": { + "#": 2077 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8462697322694335, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2079 + }, + "vertices": { + "#": 2080 + } + }, + [ + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2068 + }, + "min": { + "#": 2069 + } + }, + { + "x": 512.5400000000002, + "y": 541.8282298956211 + }, + { + "x": 473.03200000000015, + "y": 501.4739601633515 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 521.2279601633517 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 521.2279246975352 + }, + { + "endCol": 10, + "endRow": 11, + "id": "9,10,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2078 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.000023785308826518303 + }, + [ + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 540.9819601633517 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 539.0479601633517 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 535.3699601633517 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 530.3079601633516 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 524.3569601633517 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 518.0989601633516 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 501.4739601633515 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 503.4079601633515 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 507.0859601633515 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 512.1479601633515 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 518.0989601633516 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2102 + }, + "bounds": { + "#": 2113 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2116 + }, + "constraintImpulse": { + "#": 2117 + }, + "density": 0.001, + "force": { + "#": 2118 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2119 + }, + "positionImpulse": { + "#": 2120 + }, + "positionPrev": { + "#": 2121 + }, + "region": { + "#": 2122 + }, + "render": { + "#": 2123 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6521944699496027, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2125 + }, + "vertices": { + "#": 2126 + } + }, + [ + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2114 + }, + "min": { + "#": 2115 + } + }, + { + "x": 314.50800000000004, + "y": 580.6976075963938 + }, + { + "x": 275, + "y": 540.5374131264442 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 560.2914131264442 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 560.2913899129303 + }, + { + "endCol": 6, + "endRow": 12, + "id": "5,6,11,12", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2124 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.3362031242868397e-7 + }, + [ + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 557.1624131264442 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 557.1624131264442 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2148 + }, + "bounds": { + "#": 2159 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2162 + }, + "constraintImpulse": { + "#": 2163 + }, + "density": 0.001, + "force": { + "#": 2164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2165 + }, + "positionImpulse": { + "#": 2166 + }, + "positionPrev": { + "#": 2167 + }, + "region": { + "#": 2168 + }, + "render": { + "#": 2169 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6521944699496027, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2171 + }, + "vertices": { + "#": 2172 + } + }, + [ + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2160 + }, + "min": { + "#": 2161 + } + }, + { + "x": 364.0160000000001, + "y": 580.6976075963938 + }, + { + "x": 324.50800000000004, + "y": 540.5374131264442 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 560.2914131264442 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 560.2913899129303 + }, + { + "endCol": 7, + "endRow": 12, + "id": "6,7,11,12", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2170 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.3362031242868397e-7 + }, + [ + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 557.1624131264442 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 557.1624131264442 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2194 + }, + "bounds": { + "#": 2205 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2208 + }, + "constraintImpulse": { + "#": 2209 + }, + "density": 0.001, + "force": { + "#": 2210 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2211 + }, + "positionImpulse": { + "#": 2212 + }, + "positionPrev": { + "#": 2213 + }, + "region": { + "#": 2214 + }, + "render": { + "#": 2215 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6521944699496027, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2217 + }, + "vertices": { + "#": 2218 + } + }, + [ + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2206 + }, + "min": { + "#": 2207 + } + }, + { + "x": 413.5240000000001, + "y": 580.6976075963938 + }, + { + "x": 374.0160000000001, + "y": 540.5374131264442 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 560.2914131264442 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 560.2913899129303 + }, + { + "endCol": 8, + "endRow": 12, + "id": "7,8,11,12", + "startCol": 7, + "startRow": 11 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2216 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.3362031242868397e-7 + }, + [ + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 557.1624131264442 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 557.1624131264442 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2240 + }, + "bounds": { + "#": 2251 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2254 + }, + "constraintImpulse": { + "#": 2255 + }, + "density": 0.001, + "force": { + "#": 2256 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2257 + }, + "positionImpulse": { + "#": 2258 + }, + "positionPrev": { + "#": 2259 + }, + "region": { + "#": 2260 + }, + "render": { + "#": 2261 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6521944699496027, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2263 + }, + "vertices": { + "#": 2264 + } + }, + [ + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2252 + }, + "min": { + "#": 2253 + } + }, + { + "x": 463.03200000000015, + "y": 580.6976075963938 + }, + { + "x": 423.5240000000001, + "y": 540.5374131264442 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 560.2914131264442 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 560.2913899129303 + }, + { + "endCol": 9, + "endRow": 12, + "id": "8,9,11,12", + "startCol": 8, + "startRow": 11 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2262 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.3362031242868397e-7 + }, + [ + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + }, + { + "#": 2279 + }, + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 557.1624131264442 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 557.1624131264442 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2286 + }, + "bounds": { + "#": 2297 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2300 + }, + "constraintImpulse": { + "#": 2301 + }, + "density": 0.001, + "force": { + "#": 2302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2303 + }, + "positionImpulse": { + "#": 2304 + }, + "positionPrev": { + "#": 2305 + }, + "region": { + "#": 2306 + }, + "render": { + "#": 2307 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6521944699496027, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2309 + }, + "vertices": { + "#": 2310 + } + }, + [ + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2298 + }, + "min": { + "#": 2299 + } + }, + { + "x": 512.5400000000002, + "y": 580.6976075963938 + }, + { + "x": 473.03200000000015, + "y": 540.5374131264442 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 560.2914131264442 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 560.2913899129303 + }, + { + "endCol": 10, + "endRow": 12, + "id": "9,10,11,12", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2308 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.3362031242868397e-7 + }, + [ + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 580.0454131264443 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 578.1114131264443 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 574.4334131264443 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 569.3714131264443 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 563.4204131264443 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 557.1624131264442 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 540.5374131264442 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 542.4714131264442 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 546.1494131264442 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 551.2114131264442 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 557.1624131264442 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2332 + }, + "bounds": { + "#": 2343 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2346 + }, + "constraintImpulse": { + "#": 2347 + }, + "density": 0.001, + "force": { + "#": 2348 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2349 + }, + "positionImpulse": { + "#": 2350 + }, + "positionPrev": { + "#": 2351 + }, + "region": { + "#": 2352 + }, + "render": { + "#": 2353 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2355 + }, + "vertices": { + "#": 2356 + } + }, + [ + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2344 + }, + "min": { + "#": 2345 + } + }, + { + "x": 314.50800000000004, + "y": 812.7206714898923 + }, + { + "x": 275, + "y": 770.3054007748564 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.754, + "y": 790.0594007748563 + }, + { + "x": 0, + "y": 2.950658670433893 + }, + { + "x": 294.754, + "y": 787.1521300598204 + }, + { + "endCol": 6, + "endRow": 16, + "id": "5,6,15,16", + "startCol": 5, + "startRow": 15 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2354 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.50800000000004, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.574, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 308.896, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.834, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 297.88300000000004, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 291.625, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.67400000000004, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 280.612, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 276.934, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 275, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 275, + "y": 786.9304007748564 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 276.934, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 280.612, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 285.67400000000004, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 291.625, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.88300000000004, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 303.834, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.896, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 312.574, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 314.50800000000004, + "y": 786.9304007748564 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2378 + }, + "bounds": { + "#": 2389 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2392 + }, + "constraintImpulse": { + "#": 2393 + }, + "density": 0.001, + "force": { + "#": 2394 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2395 + }, + "positionImpulse": { + "#": 2396 + }, + "positionPrev": { + "#": 2397 + }, + "region": { + "#": 2398 + }, + "render": { + "#": 2399 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2401 + }, + "vertices": { + "#": 2402 + } + }, + [ + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2390 + }, + "min": { + "#": 2391 + } + }, + { + "x": 364.0160000000001, + "y": 812.7206714898923 + }, + { + "x": 324.50800000000004, + "y": 770.3054007748564 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 344.26200000000006, + "y": 790.0594007748563 + }, + { + "x": 0, + "y": 2.950658670433893 + }, + { + "x": 344.26200000000006, + "y": 787.1521300598204 + }, + { + "endCol": 7, + "endRow": 16, + "id": "6,7,15,16", + "startCol": 6, + "startRow": 15 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2400 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.0160000000001, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.08200000000005, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.40400000000005, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.34200000000004, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 347.3910000000001, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 341.13300000000004, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 335.1820000000001, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 330.12000000000006, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.44200000000006, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 324.50800000000004, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 324.50800000000004, + "y": 786.9304007748564 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 326.44200000000006, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 330.12000000000006, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.1820000000001, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 341.13300000000004, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 347.3910000000001, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 353.34200000000004, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 358.40400000000005, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 362.08200000000005, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 364.0160000000001, + "y": 786.9304007748564 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2424 + }, + "bounds": { + "#": 2435 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2438 + }, + "constraintImpulse": { + "#": 2439 + }, + "density": 0.001, + "force": { + "#": 2440 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2441 + }, + "positionImpulse": { + "#": 2442 + }, + "positionPrev": { + "#": 2443 + }, + "region": { + "#": 2444 + }, + "render": { + "#": 2445 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2447 + }, + "vertices": { + "#": 2448 + } + }, + [ + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2436 + }, + "min": { + "#": 2437 + } + }, + { + "x": 413.5240000000001, + "y": 812.7206714898923 + }, + { + "x": 374.0160000000001, + "y": 770.3054007748564 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.7700000000001, + "y": 790.0594007748563 + }, + { + "x": 0, + "y": 2.950658670433893 + }, + { + "x": 393.7700000000001, + "y": 787.1521300598204 + }, + { + "endCol": 8, + "endRow": 16, + "id": "7,8,15,16", + "startCol": 7, + "startRow": 15 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2446 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + }, + { + "#": 2465 + }, + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.5240000000001, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.5900000000001, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.9120000000001, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.8500000000001, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.8990000000001, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.6410000000001, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.6900000000001, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.6280000000001, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.9500000000001, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.0160000000001, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0160000000001, + "y": 786.9304007748564 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.9500000000001, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.6280000000001, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.6900000000001, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.6410000000001, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.8990000000001, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.8500000000001, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.9120000000001, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.5900000000001, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.5240000000001, + "y": 786.9304007748564 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2470 + }, + "bounds": { + "#": 2481 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2484 + }, + "constraintImpulse": { + "#": 2485 + }, + "density": 0.001, + "force": { + "#": 2486 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2487 + }, + "positionImpulse": { + "#": 2488 + }, + "positionPrev": { + "#": 2489 + }, + "region": { + "#": 2490 + }, + "render": { + "#": 2491 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2493 + }, + "vertices": { + "#": 2494 + } + }, + [ + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2482 + }, + "min": { + "#": 2483 + } + }, + { + "x": 463.03200000000015, + "y": 812.7206714898923 + }, + { + "x": 423.5240000000001, + "y": 770.3054007748564 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.27800000000013, + "y": 790.0594007748563 + }, + { + "x": 0, + "y": 2.950658670433893 + }, + { + "x": 443.27800000000013, + "y": 787.1521300598204 + }, + { + "endCol": 9, + "endRow": 16, + "id": "8,9,15,16", + "startCol": 8, + "startRow": 15 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2492 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.03200000000015, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.0980000000001, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.42000000000013, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.3580000000001, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.40700000000015, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.1490000000001, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.19800000000015, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 429.13600000000014, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 425.45800000000014, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 423.5240000000001, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.5240000000001, + "y": 786.9304007748564 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 425.45800000000014, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 429.13600000000014, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.19800000000015, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.1490000000001, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.40700000000015, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.3580000000001, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.42000000000013, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.0980000000001, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.03200000000015, + "y": 786.9304007748564 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 2516 + }, + "bounds": { + "#": 2527 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 2530 + }, + "constraintImpulse": { + "#": 2531 + }, + "density": 0.001, + "force": { + "#": 2532 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 972.733631710278, + "inverseInertia": 0.0010280306626612484, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 2533 + }, + "positionImpulse": { + "#": 2534 + }, + "positionPrev": { + "#": 2535 + }, + "region": { + "#": 2536 + }, + "render": { + "#": 2537 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2539 + }, + "vertices": { + "#": 2540 + } + }, + [ + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2528 + }, + "min": { + "#": 2529 + } + }, + { + "x": 512.5400000000002, + "y": 812.7206714898923 + }, + { + "x": 473.03200000000015, + "y": 770.3054007748564 + }, + { + "category": 8, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.7860000000002, + "y": 790.0594007748563 + }, + { + "x": 0, + "y": 2.950658670433893 + }, + { + "x": 492.7860000000002, + "y": 787.1521300598204 + }, + { + "endCol": 10, + "endRow": 16, + "id": "9,10,15,16", + "startCol": 9, + "startRow": 15 + }, + { + "fillStyle": "transparent", + "lineWidth": 1.5, + "sprite": { + "#": 2538 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035883 + }, + [ + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.5400000000002, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.60600000000017, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 506.92800000000017, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 501.86600000000016, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 495.9150000000002, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 489.65700000000015, + "y": 809.8134007748564 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.7060000000002, + "y": 807.8794007748564 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 478.6440000000002, + "y": 804.2014007748563 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 474.9660000000002, + "y": 799.1394007748564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.03200000000015, + "y": 793.1884007748564 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 473.03200000000015, + "y": 786.9304007748564 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 474.9660000000002, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.6440000000002, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.7060000000002, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 489.65700000000015, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 495.9150000000002, + "y": 770.3054007748564 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 501.86600000000016, + "y": 772.2394007748563 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 506.92800000000017, + "y": 775.9174007748562 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 510.60600000000017, + "y": 780.9794007748563 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.5400000000002, + "y": 786.9304007748564 + }, + [], + [], + [ + { + "#": 2564 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2565 + }, + "pointB": "", + "render": { + "#": 2566 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 2568 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/compositeManipulation/compositeManipulation-0.json b/tests/browser/refs/compositeManipulation/compositeManipulation-0.json new file mode 100644 index 00000000..294999cc --- /dev/null +++ b/tests/browser/refs/compositeManipulation/compositeManipulation-0.json @@ -0,0 +1,3821 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 430 + }, + "gravity": { + "#": 434 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 428 + }, + "constraints": { + "#": 429 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 197 + }, + { + "#": 218 + }, + { + "#": 239 + }, + { + "#": 260 + }, + { + "#": 281 + }, + { + "#": 302 + }, + { + "#": 323 + }, + { + "#": 344 + }, + { + "#": 365 + }, + { + "#": 386 + }, + { + "#": 407 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 240, + "y": 240 + }, + { + "x": 200, + "y": 200 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 220 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 220 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 200 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 240, + "y": 200 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 240, + "y": 240 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 280, + "y": 240 + }, + { + "x": 240, + "y": 200 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260, + "y": 220 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260, + "y": 220 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240, + "y": 200 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 200 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 240 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 320, + "y": 240 + }, + { + "x": 280, + "y": 200 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 220 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 220 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 200 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 200 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 240 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 360, + "y": 240 + }, + { + "x": 320, + "y": 200 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 220 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 220 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320, + "y": 200 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 360, + "y": 200 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 360, + "y": 240 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 320, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 177 + }, + "bounds": { + "#": 180 + }, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "render": { + "#": 189 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 191 + }, + "vertices": { + "#": 192 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 240, + "y": 280 + }, + { + "x": 200, + "y": 240 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 260 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 260 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 190 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 240, + "y": 240 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 240, + "y": 280 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 280 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 198 + }, + "bounds": { + "#": 201 + }, + "collisionFilter": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "density": 0.001, + "force": { + "#": 206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 207 + }, + "positionImpulse": { + "#": 208 + }, + "positionPrev": { + "#": 209 + }, + "render": { + "#": 210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 212 + }, + "vertices": { + "#": 213 + } + }, + [ + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 202 + }, + "min": { + "#": 203 + } + }, + { + "x": 280, + "y": 280 + }, + { + "x": 240, + "y": 240 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260, + "y": 260 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260, + "y": 260 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 211 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 240 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 280 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240, + "y": 280 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 219 + }, + "bounds": { + "#": 222 + }, + "collisionFilter": { + "#": 225 + }, + "constraintImpulse": { + "#": 226 + }, + "density": 0.001, + "force": { + "#": 227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 228 + }, + "positionImpulse": { + "#": 229 + }, + "positionPrev": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 223 + }, + "min": { + "#": 224 + } + }, + { + "x": 320, + "y": 280 + }, + { + "x": 280, + "y": 240 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 260 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 260 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 240 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 280 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 280 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 240 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 360, + "y": 280 + }, + { + "x": 320, + "y": 240 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 260 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 260 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 360, + "y": 240 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 360, + "y": 280 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 320, + "y": 280 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 261 + }, + "bounds": { + "#": 264 + }, + "collisionFilter": { + "#": 267 + }, + "constraintImpulse": { + "#": 268 + }, + "density": 0.001, + "force": { + "#": 269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 270 + }, + "positionImpulse": { + "#": 271 + }, + "positionPrev": { + "#": 272 + }, + "render": { + "#": 273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 275 + }, + "vertices": { + "#": 276 + } + }, + [ + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 265 + }, + "min": { + "#": 266 + } + }, + { + "x": 240, + "y": 320 + }, + { + "x": 200, + "y": 280 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 300 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 274 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 280 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 240, + "y": 280 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 240, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 282 + }, + "bounds": { + "#": 285 + }, + "collisionFilter": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "density": 0.001, + "force": { + "#": 290 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 291 + }, + "positionImpulse": { + "#": 292 + }, + "positionPrev": { + "#": 293 + }, + "render": { + "#": 294 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 296 + }, + "vertices": { + "#": 297 + } + }, + [ + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 286 + }, + "min": { + "#": 287 + } + }, + { + "x": 280, + "y": 320 + }, + { + "x": 240, + "y": 280 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260, + "y": 300 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 295 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240, + "y": 280 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 280 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 303 + }, + "bounds": { + "#": 306 + }, + "collisionFilter": { + "#": 309 + }, + "constraintImpulse": { + "#": 310 + }, + "density": 0.001, + "force": { + "#": 311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 312 + }, + "positionImpulse": { + "#": 313 + }, + "positionPrev": { + "#": 314 + }, + "render": { + "#": 315 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 317 + }, + "vertices": { + "#": 318 + } + }, + [ + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 307 + }, + "min": { + "#": 308 + } + }, + { + "x": 320, + "y": 320 + }, + { + "x": 280, + "y": 280 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 300 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 316 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 280 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 280 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 324 + }, + "bounds": { + "#": 327 + }, + "collisionFilter": { + "#": 330 + }, + "constraintImpulse": { + "#": 331 + }, + "density": 0.001, + "force": { + "#": 332 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 333 + }, + "positionImpulse": { + "#": 334 + }, + "positionPrev": { + "#": 335 + }, + "render": { + "#": 336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 338 + }, + "vertices": { + "#": 339 + } + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 328 + }, + "min": { + "#": 329 + } + }, + { + "x": 360, + "y": 320 + }, + { + "x": 320, + "y": 280 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 300 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 337 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320, + "y": 280 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 360, + "y": 280 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 360, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 320, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 345 + }, + "bounds": { + "#": 348 + }, + "collisionFilter": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "density": 0.001, + "force": { + "#": 353 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 354 + }, + "positionImpulse": { + "#": 355 + }, + "positionPrev": { + "#": 356 + }, + "render": { + "#": 357 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 359 + }, + "vertices": { + "#": 360 + } + }, + [ + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 349 + }, + "min": { + "#": 350 + } + }, + { + "x": 240, + "y": 360 + }, + { + "x": 200, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 340 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 340 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 358 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 240, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 240, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 360 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 366 + }, + "bounds": { + "#": 369 + }, + "collisionFilter": { + "#": 372 + }, + "constraintImpulse": { + "#": 373 + }, + "density": 0.001, + "force": { + "#": 374 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 375 + }, + "positionImpulse": { + "#": 376 + }, + "positionPrev": { + "#": 377 + }, + "render": { + "#": 378 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 380 + }, + "vertices": { + "#": 381 + } + }, + [ + { + "#": 367 + }, + { + "#": 368 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 370 + }, + "min": { + "#": 371 + } + }, + { + "x": 280, + "y": 360 + }, + { + "x": 240, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260, + "y": 340 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260, + "y": 340 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 379 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240, + "y": 360 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 387 + }, + "bounds": { + "#": 390 + }, + "collisionFilter": { + "#": 393 + }, + "constraintImpulse": { + "#": 394 + }, + "density": 0.001, + "force": { + "#": 395 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 396 + }, + "positionImpulse": { + "#": 397 + }, + "positionPrev": { + "#": 398 + }, + "render": { + "#": 399 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 401 + }, + "vertices": { + "#": 402 + } + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 391 + }, + "min": { + "#": 392 + } + }, + { + "x": 320, + "y": 360 + }, + { + "x": 280, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 340 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 340 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 400 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 360 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 408 + }, + "bounds": { + "#": 411 + }, + "collisionFilter": { + "#": 414 + }, + "constraintImpulse": { + "#": 415 + }, + "density": 0.001, + "force": { + "#": 416 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 417 + }, + "positionImpulse": { + "#": 418 + }, + "positionPrev": { + "#": 419 + }, + "render": { + "#": 420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 422 + }, + "vertices": { + "#": 423 + } + }, + [ + { + "#": 409 + }, + { + "#": 410 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 412 + }, + "min": { + "#": 413 + } + }, + { + "x": 360, + "y": 360 + }, + { + "x": 320, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 340 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 340 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 421 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 360, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 360, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 320, + "y": 360 + }, + [], + [], + [ + { + "#": 431 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 432 + }, + "pointB": "", + "render": { + "#": 433 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 0 + } +] \ No newline at end of file diff --git a/tests/browser/refs/compositeManipulation/compositeManipulation-10.json b/tests/browser/refs/compositeManipulation/compositeManipulation-10.json new file mode 100644 index 00000000..bc618e82 --- /dev/null +++ b/tests/browser/refs/compositeManipulation/compositeManipulation-10.json @@ -0,0 +1,4021 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 450 + }, + "gravity": { + "#": 454 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 448 + }, + "constraints": { + "#": 449 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 206 + }, + { + "#": 228 + }, + { + "#": 250 + }, + { + "#": 272 + }, + { + "#": 294 + }, + { + "#": 316 + }, + { + "#": 338 + }, + { + "#": 360 + }, + { + "#": 382 + }, + { + "#": 404 + }, + { + "#": 426 + } + ], + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994026, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 554.5620428652178, + "inverseInertia": 0.0018032247480072173, + "inverseMass": 0.5482129677426495, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994025, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": -0.06569319738995522, + "y": 0.9978398688249955 + }, + { + "x": -0.9978398688249955, + "y": -0.06569319738995513 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 256.7569669235733, + "y": 232.36131954278187 + }, + { + "x": 211.33391141739025, + "y": 186.93826403659875 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 234.04543917048179, + "y": 209.6497917896903 + }, + { + "x": -0.000539420130992882, + "y": -0.00006787133284218174 + }, + { + "x": 234.04543917048179, + "y": 209.6497917896903 + }, + { + "endCol": 5, + "endRow": 4, + "id": "4,5,3,4", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.1396405914181, + "y": 186.93826403659875 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 256.7569669235733, + "y": 189.7439932106266 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 253.95123774954547, + "y": 232.36131954278187 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 211.33391141739025, + "y": 229.55559036875403 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994171, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 554.5620428652263, + "inverseInertia": 0.0018032247480071896, + "inverseMass": 0.548212967742645, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994172, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": -0.06569319738995585, + "y": 0.9978398688249955 + }, + { + "x": -0.9978398688249955, + "y": -0.06569319738995513 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 299.31918614835047, + "y": 235.24100779201297 + }, + { + "x": 253.89613064216724, + "y": 189.8179522858298 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 276.60765839525897, + "y": 212.52948003892138 + }, + { + "x": -0.00031385916830523096, + "y": -0.00011778755914032935 + }, + { + "x": 276.60765839525897, + "y": 212.52948003892138 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 256.70185981619505, + "y": 189.8179522858298 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 299.31918614835047, + "y": 192.62368145985766 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 296.5134569743229, + "y": 235.24100779201297 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 253.89613064216724, + "y": 232.43527861798506 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.108619899409, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 554.5620428652209, + "inverseInertia": 0.0018032247480072074, + "inverseMass": 0.5482129677426475, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.824108619899409, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": -0.06569319738995576, + "y": 0.9978398688249955 + }, + { + "x": -0.9978398688249959, + "y": -0.06569319738995177 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 341.9659376932718, + "y": 237.9716329186483 + }, + { + "x": 296.5428821870888, + "y": 192.54857741246514 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 319.2544099401803, + "y": 215.26010516555672 + }, + { + "x": -0.00010494522049033337, + "y": -0.00001862589189249999 + }, + { + "x": 319.2544099401803, + "y": 215.26010516555672 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 299.3486113611165, + "y": 192.54857741246514 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 341.9659376932718, + "y": 195.354306586493 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 339.1602085192441, + "y": 237.9716329186483 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 296.5428821870888, + "y": 235.16590374462044 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.108619899418, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 554.5620428652269, + "inverseInertia": 0.0018032247480071878, + "inverseMass": 0.5482129677426448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.824108619899418, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.06569319738995624, + "y": 0.9978398688249955 + }, + { + "x": -0.997839868824996, + "y": -0.06569319738994892 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 384.53329568567, + "y": 240.77523708637466 + }, + { + "x": 339.110240179487, + "y": 195.3521815801913 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 361.8217679325785, + "y": 218.063709333283 + }, + { + "x": 0.00010494522049033337, + "y": 0.00001862589189249999 + }, + { + "x": 361.8217679325785, + "y": 218.063709333283 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 341.9159693535146, + "y": 195.3521815801913 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 384.53329568567, + "y": 198.15791075421922 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 381.7275665116424, + "y": 240.77523708637466 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 339.110240179487, + "y": 237.96950791234676 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994162, + "axes": { + "#": 185 + }, + "bounds": { + "#": 188 + }, + "collisionFilter": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "density": 0.001, + "force": { + "#": 193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 554.5620428652248, + "inverseInertia": 0.0018032247480071944, + "inverseMass": 0.5482129677426453, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994163, + "motion": 0, + "parent": null, + "position": { + "#": 194 + }, + "positionImpulse": { + "#": 195 + }, + "positionPrev": { + "#": 196 + }, + "region": { + "#": 197 + }, + "render": { + "#": 198 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 200 + }, + "vertices": { + "#": 201 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "x": -0.06569319738994647, + "y": 0.9978398688249962 + }, + { + "x": -0.9978398688249955, + "y": -0.06569319738995519 + }, + { + "max": { + "#": 189 + }, + "min": { + "#": 190 + } + }, + { + "x": 253.94651130282728, + "y": 275.00591436116497 + }, + { + "x": 208.52345579664413, + "y": 229.58285885498185 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.23498354973572, + "y": 252.29438660807358 + }, + { + "x": 0.000820415984889376, + "y": -0.00003687855267444716 + }, + { + "x": 231.23498354973572, + "y": 252.29438660807358 + }, + { + "endCol": 5, + "endRow": 5, + "id": "4,5,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 199 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 211.329184970672, + "y": 229.58285885498185 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 253.94651130282728, + "y": 232.38858802900975 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 251.14078212879943, + "y": 275.00591436116497 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 208.52345579664413, + "y": 272.2001851871375 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994144, + "axes": { + "#": 207 + }, + "bounds": { + "#": 210 + }, + "collisionFilter": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "density": 0.001, + "force": { + "#": 215 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 554.5620428652244, + "inverseInertia": 0.0018032247480071959, + "inverseMass": 0.5482129677426458, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994145, + "motion": 0, + "parent": null, + "position": { + "#": 216 + }, + "positionImpulse": { + "#": 217 + }, + "positionPrev": { + "#": 218 + }, + "region": { + "#": 219 + }, + "render": { + "#": 220 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 222 + }, + "vertices": { + "#": 223 + } + }, + [ + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "x": -0.06569319738995297, + "y": 0.9978398688249956 + }, + { + "x": -0.9978398688249955, + "y": -0.06569319738995479 + }, + { + "max": { + "#": 211 + }, + "min": { + "#": 212 + } + }, + { + "x": 296.51501102750916, + "y": 277.8081730557052 + }, + { + "x": 251.09195552132618, + "y": 232.38511754952194 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 273.80348327441766, + "y": 255.09664530261358 + }, + { + "x": 0.00037236836456235387, + "y": 0.0001995003930416393 + }, + { + "x": 273.80348327441766, + "y": 255.09664530261358 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 221 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 253.89768469535403, + "y": 232.38511754952194 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 296.51501102750916, + "y": 235.1908467235497 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 293.70928185348157, + "y": 277.8081730557052 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 251.09195552132618, + "y": 275.00244388167744 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994144, + "axes": { + "#": 229 + }, + "bounds": { + "#": 232 + }, + "collisionFilter": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "density": 0.001, + "force": { + "#": 237 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 554.5620428652246, + "inverseInertia": 0.0018032247480071952, + "inverseMass": 0.5482129677426458, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994145, + "motion": 0, + "parent": null, + "position": { + "#": 238 + }, + "positionImpulse": { + "#": 239 + }, + "positionPrev": { + "#": 240 + }, + "region": { + "#": 241 + }, + "render": { + "#": 242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 244 + }, + "vertices": { + "#": 245 + } + }, + [ + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": -0.06569319738995036, + "y": 0.9978398688249959 + }, + { + "x": -0.9978398688249959, + "y": -0.06569319738995005 + }, + { + "max": { + "#": 233 + }, + "min": { + "#": 234 + } + }, + { + "x": 339.08362435481206, + "y": 280.6104238479625 + }, + { + "x": 293.66056884862905, + "y": 235.18736834177932 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 316.37209660172056, + "y": 257.898896094871 + }, + { + "x": -0.00002310451456168924, + "y": -0.000382215908986069 + }, + { + "x": 316.37209660172056, + "y": 257.898896094871 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 243 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 296.4662980226567, + "y": 235.18736834177932 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 339.08362435481206, + "y": 237.99309751580725 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 336.2778951807844, + "y": 280.6104238479625 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 293.66056884862905, + "y": 277.8046946739349 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994126, + "axes": { + "#": 251 + }, + "bounds": { + "#": 254 + }, + "collisionFilter": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "density": 0.001, + "force": { + "#": 259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 554.5620428652234, + "inverseInertia": 0.0018032247480071991, + "inverseMass": 0.5482129677426465, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994125, + "motion": 0, + "parent": null, + "position": { + "#": 260 + }, + "positionImpulse": { + "#": 261 + }, + "positionPrev": { + "#": 262 + }, + "region": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": -0.06569319738995036, + "y": 0.9978398688249959 + }, + { + "x": -0.9978398688249959, + "y": -0.06569319738995014 + }, + { + "max": { + "#": 255 + }, + "min": { + "#": 256 + } + }, + { + "x": 381.6513990405508, + "y": 283.4130614729198 + }, + { + "x": 336.2283435343678, + "y": 237.9900059667367 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 358.9398712874593, + "y": 260.7015337198283 + }, + { + "x": -0.00013930807037312707, + "y": -0.0009982465352391607 + }, + { + "x": 358.9398712874593, + "y": 260.7015337198283 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 339.03407270839546, + "y": 237.9900059667367 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 381.6513990405508, + "y": 240.79573514076463 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 378.84566986652317, + "y": 283.4130614729198 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 336.2283435343678, + "y": 280.6073322988922 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994053, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 554.5620428652197, + "inverseInertia": 0.001803224748007211, + "inverseMass": 0.5482129677426486, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994054, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": -0.06569319738995177, + "y": 0.9978398688249959 + }, + { + "x": -0.9978398688249955, + "y": -0.06569319738995576 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 251.14564109782592, + "y": 317.5736348599368 + }, + { + "x": 205.72258559164274, + "y": 272.1505793537538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.43411334473433, + "y": 294.8621071068453 + }, + { + "x": -0.0001798853448157612, + "y": -0.0003039662696228497 + }, + { + "x": 228.43411334473433, + "y": 294.8621071068453 + }, + { + "endCol": 5, + "endRow": 6, + "id": "4,5,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 208.52831476567061, + "y": 272.1505793537538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 251.14564109782592, + "y": 274.9563085277815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.33991192379804, + "y": 317.5736348599368 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 205.72258559164274, + "y": 314.7679056859091 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.108619899418, + "axes": { + "#": 295 + }, + "bounds": { + "#": 298 + }, + "collisionFilter": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "density": 0.001, + "force": { + "#": 303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 554.5620428652259, + "inverseInertia": 0.001803224748007191, + "inverseMass": 0.5482129677426448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.824108619899418, + "motion": 0, + "parent": null, + "position": { + "#": 304 + }, + "positionImpulse": { + "#": 305 + }, + "positionPrev": { + "#": 306 + }, + "region": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": -0.06569319738994892, + "y": 0.997839868824996 + }, + { + "x": -0.9978398688249955, + "y": -0.06569319738995558 + }, + { + "max": { + "#": 299 + }, + "min": { + "#": 300 + } + }, + { + "x": 293.7137279083322, + "y": 320.3757722934915 + }, + { + "x": 248.29067240214903, + "y": 274.9527167873085 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.0022001552407, + "y": 297.6642445404 + }, + { + "x": -0.00036959814644558207, + "y": 0.00028442919830276174 + }, + { + "x": 271.0022001552407, + "y": 297.6642445404 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.0964015761769, + "y": 274.9527167873085 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.7137279083322, + "y": 277.75844596133607 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 290.9079987343045, + "y": 320.3757722934915 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 248.29067240214903, + "y": 317.5700431194639 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994071, + "axes": { + "#": 317 + }, + "bounds": { + "#": 320 + }, + "collisionFilter": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "density": 0.001, + "force": { + "#": 325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 554.5620428652209, + "inverseInertia": 0.0018032247480072074, + "inverseMass": 0.548212967742648, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994072, + "motion": 0, + "parent": null, + "position": { + "#": 326 + }, + "positionImpulse": { + "#": 327 + }, + "positionPrev": { + "#": 328 + }, + "region": { + "#": 329 + }, + "render": { + "#": 330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 332 + }, + "vertices": { + "#": 333 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": -0.06569319738995169, + "y": 0.9978398688249959 + }, + { + "x": -0.9978398688249959, + "y": -0.06569319738995044 + }, + { + "max": { + "#": 321 + }, + "min": { + "#": 322 + } + }, + { + "x": 336.28161244919573, + "y": 323.17803806653467 + }, + { + "x": 290.85855694301273, + "y": 277.75498256035166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 313.57008469610423, + "y": 300.46651031344317 + }, + { + "x": -0.0005493748992246888, + "y": 0.00013059510933983325 + }, + { + "x": 313.57008469610423, + "y": 300.46651031344317 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 331 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 293.6642861170404, + "y": 277.75498256035166 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.28161244919573, + "y": 280.56071173437937 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 333.4758832751681, + "y": 323.17803806653467 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 290.85855694301273, + "y": 320.37230889250696 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.108619899409, + "axes": { + "#": 339 + }, + "bounds": { + "#": 342 + }, + "collisionFilter": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "density": 0.001, + "force": { + "#": 347 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 554.5620428652213, + "inverseInertia": 0.0018032247480072058, + "inverseMass": 0.5482129677426475, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.824108619899409, + "motion": 0, + "parent": null, + "position": { + "#": 348 + }, + "positionImpulse": { + "#": 349 + }, + "positionPrev": { + "#": 350 + }, + "region": { + "#": 351 + }, + "render": { + "#": 352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 354 + }, + "vertices": { + "#": 355 + } + }, + [ + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": -0.06569319738995044, + "y": 0.9978398688249959 + }, + { + "x": -0.9978398688249959, + "y": -0.06569319738995169 + }, + { + "max": { + "#": 343 + }, + "min": { + "#": 344 + } + }, + { + "x": 378.9479312896865, + "y": 325.9869205642039 + }, + { + "x": 333.5248757835035, + "y": 280.5638650580209 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 356.236403536595, + "y": 303.2753928111124 + }, + { + "x": 0.000016272634775549445, + "y": -0.0005618011418899065 + }, + { + "x": 356.236403536595, + "y": 303.2753928111124 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 353 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.3306049575312, + "y": 280.5638650580209 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 378.9479312896865, + "y": 283.36959423204854 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 376.1422021156588, + "y": 325.9869205642039 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 333.5248757835035, + "y": 323.18119139017625 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994144, + "axes": { + "#": 361 + }, + "bounds": { + "#": 364 + }, + "collisionFilter": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "density": 0.001, + "force": { + "#": 369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 554.5620428652243, + "inverseInertia": 0.0018032247480071963, + "inverseMass": 0.5482129677426458, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994145, + "motion": 0, + "parent": null, + "position": { + "#": 370 + }, + "positionImpulse": { + "#": 371 + }, + "positionPrev": { + "#": 372 + }, + "region": { + "#": 373 + }, + "render": { + "#": 374 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 376 + }, + "vertices": { + "#": 377 + } + }, + [ + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": -0.06569319738994785, + "y": 0.997839868824996 + }, + { + "x": -0.9978398688249955, + "y": -0.06569319738995616 + }, + { + "max": { + "#": 365 + }, + "min": { + "#": 366 + } + }, + { + "x": 248.34365748027997, + "y": 360.1413733184087 + }, + { + "x": 202.9206019740968, + "y": 314.7183178122257 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225.63212972718839, + "y": 337.4298455653172 + }, + { + "x": -0.0002652039815426161, + "y": -0.0005521980466791416 + }, + { + "x": 225.63212972718839, + "y": 337.4298455653172 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 375 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 205.7263311481247, + "y": 314.7183178122257 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 248.34365748027997, + "y": 317.5240469862532 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 245.53792830625207, + "y": 360.1413733184087 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.9206019740968, + "y": 357.33564414438115 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994108, + "axes": { + "#": 383 + }, + "bounds": { + "#": 386 + }, + "collisionFilter": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "density": 0.001, + "force": { + "#": 391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 554.5620428652229, + "inverseInertia": 0.0018032247480072006, + "inverseMass": 0.548212967742647, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994108, + "motion": 0, + "parent": null, + "position": { + "#": 392 + }, + "positionImpulse": { + "#": 393 + }, + "positionPrev": { + "#": 394 + }, + "region": { + "#": 395 + }, + "render": { + "#": 396 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 398 + }, + "vertices": { + "#": 399 + } + }, + [ + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "x": -0.0656931973899501, + "y": 0.9978398688249959 + }, + { + "x": -0.9978398688249955, + "y": -0.065693197389955 + }, + { + "max": { + "#": 387 + }, + "min": { + "#": 388 + } + }, + { + "x": 290.91096579308027, + "y": 362.94321660231697 + }, + { + "x": 245.48791028689723, + "y": 317.52016109613396 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 268.19943803998876, + "y": 340.23168884922546 + }, + { + "x": 0.00012320413958424788, + "y": 0.00029807244118829605 + }, + { + "x": 268.19943803998876, + "y": 340.23168884922546 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 397 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 248.29363946092508, + "y": 317.52016109613396 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 290.91096579308027, + "y": 320.3258902701616 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.10523661905273, + "y": 362.94321660231697 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 245.48791028689723, + "y": 360.1374874282893 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994108, + "axes": { + "#": 405 + }, + "bounds": { + "#": 408 + }, + "collisionFilter": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "density": 0.001, + "force": { + "#": 413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 554.5620428652219, + "inverseInertia": 0.0018032247480072041, + "inverseMass": 0.548212967742647, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994108, + "motion": 0, + "parent": null, + "position": { + "#": 414 + }, + "positionImpulse": { + "#": 415 + }, + "positionPrev": { + "#": 416 + }, + "region": { + "#": 417 + }, + "render": { + "#": 418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 420 + }, + "vertices": { + "#": 421 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": -0.06569319738995044, + "y": 0.9978398688249959 + }, + { + "x": -0.9978398688249959, + "y": -0.06569319738995169 + }, + { + "max": { + "#": 409 + }, + "min": { + "#": 410 + } + }, + { + "x": 333.5559903831156, + "y": 365.82391245035575 + }, + { + "x": 288.1329348769326, + "y": 320.40085694417274 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 310.8444626300241, + "y": 343.11238469726425 + }, + { + "x": -0.000169783421017895, + "y": -0.00002543100787956869 + }, + { + "x": 310.8444626300241, + "y": 343.11238469726425 + }, + { + "endCol": 6, + "endRow": 7, + "id": "6,6,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 419 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 290.9386640509603, + "y": 320.40085694417274 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.5559903831156, + "y": 323.2065861182004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 330.7502612090879, + "y": 365.82391245035575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 288.1329348769326, + "y": 363.0181832763281 + }, + { + "angle": 0.06574054027377121, + "anglePrev": 0.06574054027377121, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1824.1086198994162, + "axes": { + "#": 427 + }, + "bounds": { + "#": 430 + }, + "collisionFilter": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "density": 0.001, + "force": { + "#": 435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 554.5620428652264, + "inverseInertia": 0.0018032247480071891, + "inverseMass": 0.5482129677426453, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8241086198994163, + "motion": 0, + "parent": null, + "position": { + "#": 436 + }, + "positionImpulse": { + "#": 437 + }, + "positionPrev": { + "#": 438 + }, + "region": { + "#": 439 + }, + "render": { + "#": 440 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 442 + }, + "vertices": { + "#": 443 + } + }, + [ + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": -0.06569319738994886, + "y": 0.997839868824996 + }, + { + "x": -0.997839868824996, + "y": -0.06569319738994762 + }, + { + "max": { + "#": 431 + }, + "min": { + "#": 432 + } + }, + { + "x": 376.1282399998103, + "y": 368.5532149079787 + }, + { + "x": 330.7051844936273, + "y": 323.1301594017957 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 353.4167122467188, + "y": 345.8416871548872 + }, + { + "x": 0.00006934130252772347, + "y": -0.000432204696169714 + }, + { + "x": 353.4167122467188, + "y": 345.8416871548872 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 441 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 333.51091366765485, + "y": 323.1301594017957 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 376.1282399998103, + "y": 325.9358885758233 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 373.3225108257828, + "y": 368.5532149079787 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 330.7051844936273, + "y": 365.7474857339511 + }, + [], + [], + [ + { + "#": 451 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 452 + }, + "pointB": "", + "render": { + "#": 453 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 0 + } +] \ No newline at end of file diff --git a/tests/browser/refs/compound/compound-0.json b/tests/browser/refs/compound/compound-0.json new file mode 100644 index 00000000..e85894f8 --- /dev/null +++ b/tests/browser/refs/compound/compound-0.json @@ -0,0 +1,1668 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 170 + }, + "composites": { + "#": 173 + }, + "constraints": { + "#": 174 + }, + "gravity": { + "#": 182 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 113 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 16000, + "axes": { + "#": 87 + }, + "bounds": { + "#": 92 + }, + "collisionFilter": { + "#": 95 + }, + "constraintImpulse": { + "#": 96 + }, + "density": 0.001, + "force": { + "#": 97 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 221866.66666666666, + "inverseInertia": 0.000004507211538461539, + "inverseMass": 0.0625, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 16, + "motion": 0, + "parent": null, + "position": { + "#": 98 + }, + "positionImpulse": { + "#": 99 + }, + "positionPrev": { + "#": 100 + }, + "render": { + "#": 101 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 103 + }, + "vertices": { + "#": 104 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + }, + { + "#": 90 + }, + { + "#": 91 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 93 + }, + "min": { + "#": 94 + } + }, + { + "x": 300, + "y": 300 + }, + { + "x": 100, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 102 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 300 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 220 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 180 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 180, + "y": 100 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 220, + "y": 100 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 180 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 11199.936656, + "axes": { + "#": 114 + }, + "bounds": { + "#": 129 + }, + "collisionFilter": { + "#": 132 + }, + "constraintImpulse": { + "#": 133 + }, + "density": 0.001, + "force": { + "#": 134 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 19964.551161219715, + "inverseInertia": 0.0000500887794533772, + "inverseMass": 0.08928621926306009, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 11.199936656, + "motion": 0, + "parent": null, + "position": { + "#": 135 + }, + "positionImpulse": { + "#": 136 + }, + "positionPrev": { + "#": 137 + }, + "render": { + "#": 138 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 140 + }, + "vertices": { + "#": 141 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + } + ], + { + "x": -0.9709343487684781, + "y": -0.23934596378784284 + }, + { + "x": -0.8855173827763894, + "y": -0.4646062470531942 + }, + { + "x": -0.7484763992216208, + "y": -0.6631614281668055 + }, + { + "x": -0.5681238392986314, + "y": -0.8229430741069413 + }, + { + "x": -0.3545000156212715, + "y": -0.9350560084425523 + }, + { + "x": -0.12057913941160207, + "y": -0.9927037177016904 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.12057913941160207, + "y": -0.9927037177016904 + }, + { + "x": 0.3545000156212715, + "y": -0.9350560084425523 + }, + { + "x": 0.5681238392986314, + "y": -0.8229430741069413 + }, + { + "x": 0.7484763992216168, + "y": -0.6631614281668098 + }, + { + "x": 0.8855173827763957, + "y": -0.4646062470531818 + }, + { + "x": 0.9709343487684781, + "y": -0.23934596378784284 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 130 + }, + "min": { + "#": 131 + } + }, + { + "x": 579.781, + "y": 480 + }, + { + "x": 370.219, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 375 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 139 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 142 + }, + { + "#": 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 + }, + { + "#": 169 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.781, + "y": 453.616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 578.05, + "y": 460.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 574.69, + "y": 467.04200000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 569.894, + "y": 472.455 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 563.942, + "y": 476.564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 557.179, + "y": 479.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 550, + "y": 480 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 480 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 392.821, + "y": 479.128 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 386.058, + "y": 476.564 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 380.106, + "y": 472.455 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.31, + "y": 467.04200000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 371.95, + "y": 460.638 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 370.219, + "y": 453.616 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 370.219, + "y": 296.384 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 371.95, + "y": 289.362 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 375.31, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 380.106, + "y": 277.545 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 386.058, + "y": 273.436 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 392.821, + "y": 270.872 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 400, + "y": 270 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 550, + "y": 270 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 557.179, + "y": 270.872 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 563.942, + "y": 273.436 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 569.894, + "y": 277.545 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 574.69, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 578.05, + "y": 289.362 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 579.781, + "y": 296.384 + }, + { + "max": { + "#": 171 + }, + "min": { + "#": 172 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [], + [ + { + "#": 175 + }, + { + "#": 178 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 176 + }, + "pointB": "", + "render": { + "#": 177 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 12, + "label": "Constraint", + "length": 237.17082451262846, + "pointA": { + "#": 179 + }, + "pointB": { + "#": 180 + }, + "render": { + "#": 181 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 400, + "y": 100 + }, + { + "x": 0, + "y": -50 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/compound/compound-10.json b/tests/browser/refs/compound/compound-10.json new file mode 100644 index 00000000..0275f2f2 --- /dev/null +++ b/tests/browser/refs/compound/compound-10.json @@ -0,0 +1,1728 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 176 + }, + "composites": { + "#": 179 + }, + "constraints": { + "#": 180 + }, + "gravity": { + "#": 188 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 118 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 16000, + "axes": { + "#": 91 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 221866.66666666666, + "inverseInertia": 0.000004507211538461539, + "inverseMass": 0.0625, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 16, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "region": { + "#": 105 + }, + "render": { + "#": 106 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 108 + }, + "vertices": { + "#": 109 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 300, + "y": 317.73575476702587 + }, + { + "x": 100, + "y": 117.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 217.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 214.8284840519903 + }, + { + "endCol": 6, + "endRow": 6, + "id": "2,6,2,6", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 107 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 317.73575476702587 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 317.73575476702587 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 197.73575476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 180, + "y": 117.73575476702595 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 220, + "y": 117.73575476702595 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 197.73575476702598 + }, + { + "angle": -0.07143107665746028, + "anglePrev": -0.060871862278235885, + "angularSpeed": 0.00980497409413378, + "angularVelocity": -0.009804974094133785, + "area": 11199.936656, + "axes": { + "#": 119 + }, + "bounds": { + "#": 134 + }, + "collisionFilter": { + "#": 137 + }, + "constraintImpulse": { + "#": 138 + }, + "density": 0.001, + "force": { + "#": 139 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 19964.551161219715, + "inverseInertia": 0.0000500887794533772, + "inverseMass": 0.08928621926306009, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 11.199936656, + "motion": 0, + "parent": null, + "position": { + "#": 140 + }, + "positionImpulse": { + "#": 141 + }, + "positionPrev": { + "#": 142 + }, + "region": { + "#": 143 + }, + "render": { + "#": 144 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9586143693926944, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 146 + }, + "vertices": { + "#": 147 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": -0.9855405592758093, + "y": -0.16943968254905875 + }, + { + "x": -0.9164183209730334, + "y": -0.4002217647566994 + }, + { + "x": -0.793897759865241, + "y": -0.608051269944363 + }, + { + "x": -0.6254087912131313, + "y": -0.780297279165659 + }, + { + "x": -0.42033127185093555, + "y": -0.9073707191132934 + }, + { + "x": -0.19112125774692526, + "y": -0.9815664342454024 + }, + { + "x": -0.07137034718057023, + "y": -0.9974498852289905 + }, + { + "x": 0.049422039787300476, + "y": -0.9987779843304833 + }, + { + "x": 0.28686072793928924, + "y": -0.957972297494109 + }, + { + "x": 0.5079413253954148, + "y": -0.8613916704702625 + }, + { + "x": 0.6992376371351813, + "y": -0.714889310882187 + }, + { + "x": 0.8501001026641435, + "y": -0.5266211308430491 + }, + { + "x": 0.9513761502121961, + "y": -0.3080315256713529 + }, + { + "x": 0.9974498852289905, + "y": -0.07137034718057023 + }, + { + "max": { + "#": 135 + }, + "min": { + "#": 136 + } + }, + { + "x": 580.2464522298171, + "y": 487.75571135592 + }, + { + "x": 359.99715695356406, + "y": 267.58568338074673 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.12180459169065, + "y": 377.6706973683334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.927746583416, + "y": 377.30496299836034 + }, + { + "endCol": 12, + "endRow": 10, + "id": "7,12,5,10", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 145 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.7310209175915929, + "y": 0.6201208972851191 + }, + [ + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580.2464522298171, + "y": 448.6079611975685 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 579.0210290563878, + "y": 455.735596362616 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 576.1266531453625, + "y": 462.363069794149 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 571.7292111850932, + "y": 468.10455820797165 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 566.0856502247751, + "y": 472.6278760927963 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 559.5228902211426, + "y": 475.6680152565056 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 552.4244324378251, + "y": 477.0501592788345 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 402.8069496534762, + "y": 487.75571135592 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 395.5840219846759, + "y": 487.39830277840974 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 388.6552748407013, + "y": 485.32351893066505 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 382.42519236725343, + "y": 481.64979365867765 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 377.2550950284067, + "y": 476.59288961501125 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 373.44660771069283, + "y": 470.4450249165313 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 371.2188593814595, + "y": 463.5644738934231 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 359.99715695356406, + "y": 306.73343353909826 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 361.22258012699365, + "y": 299.6057983740508 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 364.11695603801854, + "y": 292.97832494251776 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 368.5143979982884, + "y": 287.2368365286951 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 374.15795895860623, + "y": 282.71351864387043 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 380.72071896223895, + "y": 279.67337948016115 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 387.8191767455566, + "y": 278.29123545783216 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 537.4366595299048, + "y": 267.58568338074673 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 544.6595871987055, + "y": 267.943091958257 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 551.5883343426801, + "y": 270.0178758060017 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 557.8184168161284, + "y": 273.6916010779891 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 562.9885141549745, + "y": 278.7485051216555 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 566.7970014726883, + "y": 284.89636982013536 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 569.0247498019216, + "y": 291.7769208432437 + }, + { + "max": { + "#": 177 + }, + "min": { + "#": 178 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [], + [ + { + "#": 181 + }, + { + "#": 184 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 182 + }, + "pointB": "", + "render": { + "#": 183 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleB": -0.07143107665746028, + "angularStiffness": 0, + "bodyB": null, + "id": 12, + "label": "Constraint", + "length": 237.17082451262846, + "pointA": { + "#": 185 + }, + "pointB": { + "#": 186 + }, + "render": { + "#": 187 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 400, + "y": 100 + }, + { + "x": -3.568517359028511, + "y": -49.872494261449496 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/compoundStack/compoundStack-0.json b/tests/browser/refs/compoundStack/compoundStack-0.json new file mode 100644 index 00000000..6e1b9960 --- /dev/null +++ b/tests/browser/refs/compoundStack/compoundStack-0.json @@ -0,0 +1,17966 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 2038 + }, + "events": { + "#": 2042 + }, + "gravity": { + "#": 2044 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 2036 + }, + "constraints": { + "#": 2037 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 119 + }, + { + "#": 146 + }, + { + "#": 173 + }, + { + "#": 200 + }, + { + "#": 227 + }, + { + "#": 254 + }, + { + "#": 281 + }, + { + "#": 308 + }, + { + "#": 335 + }, + { + "#": 362 + }, + { + "#": 389 + }, + { + "#": 416 + }, + { + "#": 443 + }, + { + "#": 470 + }, + { + "#": 497 + }, + { + "#": 524 + }, + { + "#": 551 + }, + { + "#": 578 + }, + { + "#": 605 + }, + { + "#": 632 + }, + { + "#": 659 + }, + { + "#": 686 + }, + { + "#": 713 + }, + { + "#": 740 + }, + { + "#": 767 + }, + { + "#": 794 + }, + { + "#": 821 + }, + { + "#": 848 + }, + { + "#": 875 + }, + { + "#": 902 + }, + { + "#": 929 + }, + { + "#": 956 + }, + { + "#": 983 + }, + { + "#": 1010 + }, + { + "#": 1037 + }, + { + "#": 1064 + }, + { + "#": 1091 + }, + { + "#": 1118 + }, + { + "#": 1145 + }, + { + "#": 1172 + }, + { + "#": 1199 + }, + { + "#": 1226 + }, + { + "#": 1253 + }, + { + "#": 1280 + }, + { + "#": 1307 + }, + { + "#": 1334 + }, + { + "#": 1361 + }, + { + "#": 1388 + }, + { + "#": 1415 + }, + { + "#": 1442 + }, + { + "#": 1469 + }, + { + "#": 1496 + }, + { + "#": 1523 + }, + { + "#": 1550 + }, + { + "#": 1577 + }, + { + "#": 1604 + }, + { + "#": 1631 + }, + { + "#": 1658 + }, + { + "#": 1685 + }, + { + "#": 1712 + }, + { + "#": 1739 + }, + { + "#": 1766 + }, + { + "#": 1793 + }, + { + "#": 1820 + }, + { + "#": 1847 + }, + { + "#": 1874 + }, + { + "#": 1901 + }, + { + "#": 1928 + }, + { + "#": 1955 + }, + { + "#": 1982 + }, + { + "#": 2009 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 93 + }, + "bounds": { + "#": 98 + }, + "collisionFilter": { + "#": 101 + }, + "constraintImpulse": { + "#": 102 + }, + "density": 0.001, + "force": { + "#": 103 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 104 + }, + "positionImpulse": { + "#": 105 + }, + "positionPrev": { + "#": 106 + }, + "render": { + "#": 107 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 109 + }, + "vertices": { + "#": 110 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 99 + }, + "min": { + "#": 100 + } + }, + { + "x": 150, + "y": 270 + }, + { + "x": 100, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 245 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 108 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 120 + }, + "bounds": { + "#": 125 + }, + "collisionFilter": { + "#": 128 + }, + "constraintImpulse": { + "#": 129 + }, + "density": 0.001, + "force": { + "#": 130 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 131 + }, + "positionImpulse": { + "#": 132 + }, + "positionPrev": { + "#": 133 + }, + "render": { + "#": 134 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 136 + }, + "vertices": { + "#": 137 + } + }, + [ + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 126 + }, + "min": { + "#": 127 + } + }, + { + "x": 200, + "y": 270 + }, + { + "x": 150, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 245 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 135 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 147 + }, + "bounds": { + "#": 152 + }, + "collisionFilter": { + "#": 155 + }, + "constraintImpulse": { + "#": 156 + }, + "density": 0.001, + "force": { + "#": 157 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 158 + }, + "positionImpulse": { + "#": 159 + }, + "positionPrev": { + "#": 160 + }, + "render": { + "#": 161 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 163 + }, + "vertices": { + "#": 164 + } + }, + [ + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 153 + }, + "min": { + "#": 154 + } + }, + { + "x": 250, + "y": 270 + }, + { + "x": 200, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 245 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 162 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 174 + }, + "bounds": { + "#": 179 + }, + "collisionFilter": { + "#": 182 + }, + "constraintImpulse": { + "#": 183 + }, + "density": 0.001, + "force": { + "#": 184 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 185 + }, + "positionImpulse": { + "#": 186 + }, + "positionPrev": { + "#": 187 + }, + "render": { + "#": 188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 190 + }, + "vertices": { + "#": 191 + } + }, + [ + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 180 + }, + "min": { + "#": 181 + } + }, + { + "x": 300, + "y": 270 + }, + { + "x": 250, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 245 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 189 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 201 + }, + "bounds": { + "#": 206 + }, + "collisionFilter": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "density": 0.001, + "force": { + "#": 211 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 212 + }, + "positionImpulse": { + "#": 213 + }, + "positionPrev": { + "#": 214 + }, + "render": { + "#": 215 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 217 + }, + "vertices": { + "#": 218 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 207 + }, + "min": { + "#": 208 + } + }, + { + "x": 350, + "y": 270 + }, + { + "x": 300, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 245 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 216 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 228 + }, + "bounds": { + "#": 233 + }, + "collisionFilter": { + "#": 236 + }, + "constraintImpulse": { + "#": 237 + }, + "density": 0.001, + "force": { + "#": 238 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 239 + }, + "positionImpulse": { + "#": 240 + }, + "positionPrev": { + "#": 241 + }, + "render": { + "#": 242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 244 + }, + "vertices": { + "#": 245 + } + }, + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 234 + }, + "min": { + "#": 235 + } + }, + { + "x": 400, + "y": 270 + }, + { + "x": 350, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 245 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 243 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 255 + }, + "bounds": { + "#": 260 + }, + "collisionFilter": { + "#": 263 + }, + "constraintImpulse": { + "#": 264 + }, + "density": 0.001, + "force": { + "#": 265 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 266 + }, + "positionImpulse": { + "#": 267 + }, + "positionPrev": { + "#": 268 + }, + "render": { + "#": 269 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 271 + }, + "vertices": { + "#": 272 + } + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 261 + }, + "min": { + "#": 262 + } + }, + { + "x": 450, + "y": 270 + }, + { + "x": 400, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 245 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 270 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 282 + }, + "bounds": { + "#": 287 + }, + "collisionFilter": { + "#": 290 + }, + "constraintImpulse": { + "#": 291 + }, + "density": 0.001, + "force": { + "#": 292 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 293 + }, + "positionImpulse": { + "#": 294 + }, + "positionPrev": { + "#": 295 + }, + "render": { + "#": 296 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 298 + }, + "vertices": { + "#": 299 + } + }, + [ + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 288 + }, + "min": { + "#": 289 + } + }, + { + "x": 500, + "y": 270 + }, + { + "x": 450, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 245 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 297 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 309 + }, + "bounds": { + "#": 314 + }, + "collisionFilter": { + "#": 317 + }, + "constraintImpulse": { + "#": 318 + }, + "density": 0.001, + "force": { + "#": 319 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 320 + }, + "positionImpulse": { + "#": 321 + }, + "positionPrev": { + "#": 322 + }, + "render": { + "#": 323 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 325 + }, + "vertices": { + "#": 326 + } + }, + [ + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 315 + }, + "min": { + "#": 316 + } + }, + { + "x": 550, + "y": 270 + }, + { + "x": 500, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 245 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 324 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 336 + }, + "bounds": { + "#": 341 + }, + "collisionFilter": { + "#": 344 + }, + "constraintImpulse": { + "#": 345 + }, + "density": 0.001, + "force": { + "#": 346 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 347 + }, + "positionImpulse": { + "#": 348 + }, + "positionPrev": { + "#": 349 + }, + "render": { + "#": 350 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 352 + }, + "vertices": { + "#": 353 + } + }, + [ + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 342 + }, + "min": { + "#": 343 + } + }, + { + "x": 600, + "y": 270 + }, + { + "x": 550, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 245 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 351 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 363 + }, + "bounds": { + "#": 368 + }, + "collisionFilter": { + "#": 371 + }, + "constraintImpulse": { + "#": 372 + }, + "density": 0.001, + "force": { + "#": 373 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 374 + }, + "positionImpulse": { + "#": 375 + }, + "positionPrev": { + "#": 376 + }, + "render": { + "#": 377 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 379 + }, + "vertices": { + "#": 380 + } + }, + [ + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 369 + }, + "min": { + "#": 370 + } + }, + { + "x": 650, + "y": 270 + }, + { + "x": 600, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 245 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 378 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 390 + }, + "bounds": { + "#": 395 + }, + "collisionFilter": { + "#": 398 + }, + "constraintImpulse": { + "#": 399 + }, + "density": 0.001, + "force": { + "#": 400 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 401 + }, + "positionImpulse": { + "#": 402 + }, + "positionPrev": { + "#": 403 + }, + "render": { + "#": 404 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 406 + }, + "vertices": { + "#": 407 + } + }, + [ + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 396 + }, + "min": { + "#": 397 + } + }, + { + "x": 700, + "y": 270 + }, + { + "x": 650, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 245 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 405 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 250 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 240 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 220 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 220 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 240 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 417 + }, + "bounds": { + "#": 422 + }, + "collisionFilter": { + "#": 425 + }, + "constraintImpulse": { + "#": 426 + }, + "density": 0.001, + "force": { + "#": 427 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 428 + }, + "positionImpulse": { + "#": 429 + }, + "positionPrev": { + "#": 430 + }, + "render": { + "#": 431 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 433 + }, + "vertices": { + "#": 434 + } + }, + [ + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 423 + }, + "min": { + "#": 424 + } + }, + { + "x": 150, + "y": 320 + }, + { + "x": 100, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 295 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 432 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 444 + }, + "bounds": { + "#": 449 + }, + "collisionFilter": { + "#": 452 + }, + "constraintImpulse": { + "#": 453 + }, + "density": 0.001, + "force": { + "#": 454 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 455 + }, + "positionImpulse": { + "#": 456 + }, + "positionPrev": { + "#": 457 + }, + "render": { + "#": 458 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 460 + }, + "vertices": { + "#": 461 + } + }, + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 450 + }, + "min": { + "#": 451 + } + }, + { + "x": 200, + "y": 320 + }, + { + "x": 150, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 295 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 459 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 471 + }, + "bounds": { + "#": 476 + }, + "collisionFilter": { + "#": 479 + }, + "constraintImpulse": { + "#": 480 + }, + "density": 0.001, + "force": { + "#": 481 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 482 + }, + "positionImpulse": { + "#": 483 + }, + "positionPrev": { + "#": 484 + }, + "render": { + "#": 485 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 487 + }, + "vertices": { + "#": 488 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 477 + }, + "min": { + "#": 478 + } + }, + { + "x": 250, + "y": 320 + }, + { + "x": 200, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 295 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 486 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 498 + }, + "bounds": { + "#": 503 + }, + "collisionFilter": { + "#": 506 + }, + "constraintImpulse": { + "#": 507 + }, + "density": 0.001, + "force": { + "#": 508 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 509 + }, + "positionImpulse": { + "#": 510 + }, + "positionPrev": { + "#": 511 + }, + "render": { + "#": 512 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 514 + }, + "vertices": { + "#": 515 + } + }, + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 504 + }, + "min": { + "#": 505 + } + }, + { + "x": 300, + "y": 320 + }, + { + "x": 250, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 295 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 513 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 525 + }, + "bounds": { + "#": 530 + }, + "collisionFilter": { + "#": 533 + }, + "constraintImpulse": { + "#": 534 + }, + "density": 0.001, + "force": { + "#": 535 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 536 + }, + "positionImpulse": { + "#": 537 + }, + "positionPrev": { + "#": 538 + }, + "render": { + "#": 539 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 541 + }, + "vertices": { + "#": 542 + } + }, + [ + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 531 + }, + "min": { + "#": 532 + } + }, + { + "x": 350, + "y": 320 + }, + { + "x": 300, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 295 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 540 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 552 + }, + "bounds": { + "#": 557 + }, + "collisionFilter": { + "#": 560 + }, + "constraintImpulse": { + "#": 561 + }, + "density": 0.001, + "force": { + "#": 562 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 563 + }, + "positionImpulse": { + "#": 564 + }, + "positionPrev": { + "#": 565 + }, + "render": { + "#": 566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 568 + }, + "vertices": { + "#": 569 + } + }, + [ + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 558 + }, + "min": { + "#": 559 + } + }, + { + "x": 400, + "y": 320 + }, + { + "x": 350, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 295 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 567 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 579 + }, + "bounds": { + "#": 584 + }, + "collisionFilter": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "density": 0.001, + "force": { + "#": 589 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 590 + }, + "positionImpulse": { + "#": 591 + }, + "positionPrev": { + "#": 592 + }, + "render": { + "#": 593 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 595 + }, + "vertices": { + "#": 596 + } + }, + [ + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 585 + }, + "min": { + "#": 586 + } + }, + { + "x": 450, + "y": 320 + }, + { + "x": 400, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 295 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 594 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 606 + }, + "bounds": { + "#": 611 + }, + "collisionFilter": { + "#": 614 + }, + "constraintImpulse": { + "#": 615 + }, + "density": 0.001, + "force": { + "#": 616 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 617 + }, + "positionImpulse": { + "#": 618 + }, + "positionPrev": { + "#": 619 + }, + "render": { + "#": 620 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 622 + }, + "vertices": { + "#": 623 + } + }, + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 612 + }, + "min": { + "#": 613 + } + }, + { + "x": 500, + "y": 320 + }, + { + "x": 450, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 295 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 621 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 633 + }, + "bounds": { + "#": 638 + }, + "collisionFilter": { + "#": 641 + }, + "constraintImpulse": { + "#": 642 + }, + "density": 0.001, + "force": { + "#": 643 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 644 + }, + "positionImpulse": { + "#": 645 + }, + "positionPrev": { + "#": 646 + }, + "render": { + "#": 647 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 649 + }, + "vertices": { + "#": 650 + } + }, + [ + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 639 + }, + "min": { + "#": 640 + } + }, + { + "x": 550, + "y": 320 + }, + { + "x": 500, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 295 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 648 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 660 + }, + "bounds": { + "#": 665 + }, + "collisionFilter": { + "#": 668 + }, + "constraintImpulse": { + "#": 669 + }, + "density": 0.001, + "force": { + "#": 670 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 671 + }, + "positionImpulse": { + "#": 672 + }, + "positionPrev": { + "#": 673 + }, + "render": { + "#": 674 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 676 + }, + "vertices": { + "#": 677 + } + }, + [ + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 666 + }, + "min": { + "#": 667 + } + }, + { + "x": 600, + "y": 320 + }, + { + "x": 550, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 295 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 675 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 687 + }, + "bounds": { + "#": 692 + }, + "collisionFilter": { + "#": 695 + }, + "constraintImpulse": { + "#": 696 + }, + "density": 0.001, + "force": { + "#": 697 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 698 + }, + "positionImpulse": { + "#": 699 + }, + "positionPrev": { + "#": 700 + }, + "render": { + "#": 701 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 703 + }, + "vertices": { + "#": 704 + } + }, + [ + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 693 + }, + "min": { + "#": 694 + } + }, + { + "x": 650, + "y": 320 + }, + { + "x": 600, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 295 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 702 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 714 + }, + "bounds": { + "#": 719 + }, + "collisionFilter": { + "#": 722 + }, + "constraintImpulse": { + "#": 723 + }, + "density": 0.001, + "force": { + "#": 724 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 725 + }, + "positionImpulse": { + "#": 726 + }, + "positionPrev": { + "#": 727 + }, + "render": { + "#": 728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 730 + }, + "vertices": { + "#": 731 + } + }, + [ + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 720 + }, + "min": { + "#": 721 + } + }, + { + "x": 700, + "y": 320 + }, + { + "x": 650, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 295 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 729 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 300 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 290 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 270 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 270 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 741 + }, + "bounds": { + "#": 746 + }, + "collisionFilter": { + "#": 749 + }, + "constraintImpulse": { + "#": 750 + }, + "density": 0.001, + "force": { + "#": 751 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 752 + }, + "positionImpulse": { + "#": 753 + }, + "positionPrev": { + "#": 754 + }, + "render": { + "#": 755 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 757 + }, + "vertices": { + "#": 758 + } + }, + [ + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 747 + }, + "min": { + "#": 748 + } + }, + { + "x": 150, + "y": 370 + }, + { + "x": 100, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 345 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 756 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 768 + }, + "bounds": { + "#": 773 + }, + "collisionFilter": { + "#": 776 + }, + "constraintImpulse": { + "#": 777 + }, + "density": 0.001, + "force": { + "#": 778 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 779 + }, + "positionImpulse": { + "#": 780 + }, + "positionPrev": { + "#": 781 + }, + "render": { + "#": 782 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 784 + }, + "vertices": { + "#": 785 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 774 + }, + "min": { + "#": 775 + } + }, + { + "x": 200, + "y": 370 + }, + { + "x": 150, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 345 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 783 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 795 + }, + "bounds": { + "#": 800 + }, + "collisionFilter": { + "#": 803 + }, + "constraintImpulse": { + "#": 804 + }, + "density": 0.001, + "force": { + "#": 805 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 806 + }, + "positionImpulse": { + "#": 807 + }, + "positionPrev": { + "#": 808 + }, + "render": { + "#": 809 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 811 + }, + "vertices": { + "#": 812 + } + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 801 + }, + "min": { + "#": 802 + } + }, + { + "x": 250, + "y": 370 + }, + { + "x": 200, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 345 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 810 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 822 + }, + "bounds": { + "#": 827 + }, + "collisionFilter": { + "#": 830 + }, + "constraintImpulse": { + "#": 831 + }, + "density": 0.001, + "force": { + "#": 832 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 833 + }, + "positionImpulse": { + "#": 834 + }, + "positionPrev": { + "#": 835 + }, + "render": { + "#": 836 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 838 + }, + "vertices": { + "#": 839 + } + }, + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 828 + }, + "min": { + "#": 829 + } + }, + { + "x": 300, + "y": 370 + }, + { + "x": 250, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 345 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 837 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 849 + }, + "bounds": { + "#": 854 + }, + "collisionFilter": { + "#": 857 + }, + "constraintImpulse": { + "#": 858 + }, + "density": 0.001, + "force": { + "#": 859 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 860 + }, + "positionImpulse": { + "#": 861 + }, + "positionPrev": { + "#": 862 + }, + "render": { + "#": 863 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 865 + }, + "vertices": { + "#": 866 + } + }, + [ + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 855 + }, + "min": { + "#": 856 + } + }, + { + "x": 350, + "y": 370 + }, + { + "x": 300, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 345 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 864 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 876 + }, + "bounds": { + "#": 881 + }, + "collisionFilter": { + "#": 884 + }, + "constraintImpulse": { + "#": 885 + }, + "density": 0.001, + "force": { + "#": 886 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 887 + }, + "positionImpulse": { + "#": 888 + }, + "positionPrev": { + "#": 889 + }, + "render": { + "#": 890 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 892 + }, + "vertices": { + "#": 893 + } + }, + [ + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 882 + }, + "min": { + "#": 883 + } + }, + { + "x": 400, + "y": 370 + }, + { + "x": 350, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 345 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 891 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 903 + }, + "bounds": { + "#": 908 + }, + "collisionFilter": { + "#": 911 + }, + "constraintImpulse": { + "#": 912 + }, + "density": 0.001, + "force": { + "#": 913 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 914 + }, + "positionImpulse": { + "#": 915 + }, + "positionPrev": { + "#": 916 + }, + "render": { + "#": 917 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 919 + }, + "vertices": { + "#": 920 + } + }, + [ + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 909 + }, + "min": { + "#": 910 + } + }, + { + "x": 450, + "y": 370 + }, + { + "x": 400, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 345 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 918 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 930 + }, + "bounds": { + "#": 935 + }, + "collisionFilter": { + "#": 938 + }, + "constraintImpulse": { + "#": 939 + }, + "density": 0.001, + "force": { + "#": 940 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 941 + }, + "positionImpulse": { + "#": 942 + }, + "positionPrev": { + "#": 943 + }, + "render": { + "#": 944 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 946 + }, + "vertices": { + "#": 947 + } + }, + [ + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 936 + }, + "min": { + "#": 937 + } + }, + { + "x": 500, + "y": 370 + }, + { + "x": 450, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 345 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 945 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 957 + }, + "bounds": { + "#": 962 + }, + "collisionFilter": { + "#": 965 + }, + "constraintImpulse": { + "#": 966 + }, + "density": 0.001, + "force": { + "#": 967 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 968 + }, + "positionImpulse": { + "#": 969 + }, + "positionPrev": { + "#": 970 + }, + "render": { + "#": 971 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 973 + }, + "vertices": { + "#": 974 + } + }, + [ + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 963 + }, + "min": { + "#": 964 + } + }, + { + "x": 550, + "y": 370 + }, + { + "x": 500, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 345 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 972 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 984 + }, + "bounds": { + "#": 989 + }, + "collisionFilter": { + "#": 992 + }, + "constraintImpulse": { + "#": 993 + }, + "density": 0.001, + "force": { + "#": 994 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 995 + }, + "positionImpulse": { + "#": 996 + }, + "positionPrev": { + "#": 997 + }, + "render": { + "#": 998 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1000 + }, + "vertices": { + "#": 1001 + } + }, + [ + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 990 + }, + "min": { + "#": 991 + } + }, + { + "x": 600, + "y": 370 + }, + { + "x": 550, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 345 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 999 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1011 + }, + "bounds": { + "#": 1016 + }, + "collisionFilter": { + "#": 1019 + }, + "constraintImpulse": { + "#": 1020 + }, + "density": 0.001, + "force": { + "#": 1021 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1022 + }, + "positionImpulse": { + "#": 1023 + }, + "positionPrev": { + "#": 1024 + }, + "render": { + "#": 1025 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1027 + }, + "vertices": { + "#": 1028 + } + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1017 + }, + "min": { + "#": 1018 + } + }, + { + "x": 650, + "y": 370 + }, + { + "x": 600, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 345 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1026 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1038 + }, + "bounds": { + "#": 1043 + }, + "collisionFilter": { + "#": 1046 + }, + "constraintImpulse": { + "#": 1047 + }, + "density": 0.001, + "force": { + "#": 1048 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1049 + }, + "positionImpulse": { + "#": 1050 + }, + "positionPrev": { + "#": 1051 + }, + "render": { + "#": 1052 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1054 + }, + "vertices": { + "#": 1055 + } + }, + [ + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1044 + }, + "min": { + "#": 1045 + } + }, + { + "x": 700, + "y": 370 + }, + { + "x": 650, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 345 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1053 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 350 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 340 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 320 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 320 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1065 + }, + "bounds": { + "#": 1070 + }, + "collisionFilter": { + "#": 1073 + }, + "constraintImpulse": { + "#": 1074 + }, + "density": 0.001, + "force": { + "#": 1075 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1076 + }, + "positionImpulse": { + "#": 1077 + }, + "positionPrev": { + "#": 1078 + }, + "render": { + "#": 1079 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1081 + }, + "vertices": { + "#": 1082 + } + }, + [ + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1071 + }, + "min": { + "#": 1072 + } + }, + { + "x": 150, + "y": 420 + }, + { + "x": 100, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 395 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1080 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1092 + }, + "bounds": { + "#": 1097 + }, + "collisionFilter": { + "#": 1100 + }, + "constraintImpulse": { + "#": 1101 + }, + "density": 0.001, + "force": { + "#": 1102 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1103 + }, + "positionImpulse": { + "#": 1104 + }, + "positionPrev": { + "#": 1105 + }, + "render": { + "#": 1106 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1108 + }, + "vertices": { + "#": 1109 + } + }, + [ + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1098 + }, + "min": { + "#": 1099 + } + }, + { + "x": 200, + "y": 420 + }, + { + "x": 150, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 395 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1107 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1119 + }, + "bounds": { + "#": 1124 + }, + "collisionFilter": { + "#": 1127 + }, + "constraintImpulse": { + "#": 1128 + }, + "density": 0.001, + "force": { + "#": 1129 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1130 + }, + "positionImpulse": { + "#": 1131 + }, + "positionPrev": { + "#": 1132 + }, + "render": { + "#": 1133 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1135 + }, + "vertices": { + "#": 1136 + } + }, + [ + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1125 + }, + "min": { + "#": 1126 + } + }, + { + "x": 250, + "y": 420 + }, + { + "x": 200, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 395 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1134 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1146 + }, + "bounds": { + "#": 1151 + }, + "collisionFilter": { + "#": 1154 + }, + "constraintImpulse": { + "#": 1155 + }, + "density": 0.001, + "force": { + "#": 1156 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1157 + }, + "positionImpulse": { + "#": 1158 + }, + "positionPrev": { + "#": 1159 + }, + "render": { + "#": 1160 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1162 + }, + "vertices": { + "#": 1163 + } + }, + [ + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1152 + }, + "min": { + "#": 1153 + } + }, + { + "x": 300, + "y": 420 + }, + { + "x": 250, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 395 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1161 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1173 + }, + "bounds": { + "#": 1178 + }, + "collisionFilter": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "density": 0.001, + "force": { + "#": 1183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1184 + }, + "positionImpulse": { + "#": 1185 + }, + "positionPrev": { + "#": 1186 + }, + "render": { + "#": 1187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1189 + }, + "vertices": { + "#": 1190 + } + }, + [ + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1179 + }, + "min": { + "#": 1180 + } + }, + { + "x": 350, + "y": 420 + }, + { + "x": 300, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 395 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1188 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1200 + }, + "bounds": { + "#": 1205 + }, + "collisionFilter": { + "#": 1208 + }, + "constraintImpulse": { + "#": 1209 + }, + "density": 0.001, + "force": { + "#": 1210 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1211 + }, + "positionImpulse": { + "#": 1212 + }, + "positionPrev": { + "#": 1213 + }, + "render": { + "#": 1214 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1216 + }, + "vertices": { + "#": 1217 + } + }, + [ + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1206 + }, + "min": { + "#": 1207 + } + }, + { + "x": 400, + "y": 420 + }, + { + "x": 350, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 395 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1215 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1227 + }, + "bounds": { + "#": 1232 + }, + "collisionFilter": { + "#": 1235 + }, + "constraintImpulse": { + "#": 1236 + }, + "density": 0.001, + "force": { + "#": 1237 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1238 + }, + "positionImpulse": { + "#": 1239 + }, + "positionPrev": { + "#": 1240 + }, + "render": { + "#": 1241 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1243 + }, + "vertices": { + "#": 1244 + } + }, + [ + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1233 + }, + "min": { + "#": 1234 + } + }, + { + "x": 450, + "y": 420 + }, + { + "x": 400, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 395 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1242 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1254 + }, + "bounds": { + "#": 1259 + }, + "collisionFilter": { + "#": 1262 + }, + "constraintImpulse": { + "#": 1263 + }, + "density": 0.001, + "force": { + "#": 1264 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1265 + }, + "positionImpulse": { + "#": 1266 + }, + "positionPrev": { + "#": 1267 + }, + "render": { + "#": 1268 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1270 + }, + "vertices": { + "#": 1271 + } + }, + [ + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1260 + }, + "min": { + "#": 1261 + } + }, + { + "x": 500, + "y": 420 + }, + { + "x": 450, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 395 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1269 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1281 + }, + "bounds": { + "#": 1286 + }, + "collisionFilter": { + "#": 1289 + }, + "constraintImpulse": { + "#": 1290 + }, + "density": 0.001, + "force": { + "#": 1291 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1292 + }, + "positionImpulse": { + "#": 1293 + }, + "positionPrev": { + "#": 1294 + }, + "render": { + "#": 1295 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1297 + }, + "vertices": { + "#": 1298 + } + }, + [ + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1287 + }, + "min": { + "#": 1288 + } + }, + { + "x": 550, + "y": 420 + }, + { + "x": 500, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 395 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1296 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1308 + }, + "bounds": { + "#": 1313 + }, + "collisionFilter": { + "#": 1316 + }, + "constraintImpulse": { + "#": 1317 + }, + "density": 0.001, + "force": { + "#": 1318 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1319 + }, + "positionImpulse": { + "#": 1320 + }, + "positionPrev": { + "#": 1321 + }, + "render": { + "#": 1322 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1324 + }, + "vertices": { + "#": 1325 + } + }, + [ + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1314 + }, + "min": { + "#": 1315 + } + }, + { + "x": 600, + "y": 420 + }, + { + "x": 550, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 395 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1323 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1335 + }, + "bounds": { + "#": 1340 + }, + "collisionFilter": { + "#": 1343 + }, + "constraintImpulse": { + "#": 1344 + }, + "density": 0.001, + "force": { + "#": 1345 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1346 + }, + "positionImpulse": { + "#": 1347 + }, + "positionPrev": { + "#": 1348 + }, + "render": { + "#": 1349 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1351 + }, + "vertices": { + "#": 1352 + } + }, + [ + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1341 + }, + "min": { + "#": 1342 + } + }, + { + "x": 650, + "y": 420 + }, + { + "x": 600, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 395 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1350 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1362 + }, + "bounds": { + "#": 1367 + }, + "collisionFilter": { + "#": 1370 + }, + "constraintImpulse": { + "#": 1371 + }, + "density": 0.001, + "force": { + "#": 1372 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1373 + }, + "positionImpulse": { + "#": 1374 + }, + "positionPrev": { + "#": 1375 + }, + "render": { + "#": 1376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1378 + }, + "vertices": { + "#": 1379 + } + }, + [ + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1368 + }, + "min": { + "#": 1369 + } + }, + { + "x": 700, + "y": 420 + }, + { + "x": 650, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 395 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1377 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 400 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 390 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 370 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 370 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 390 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1389 + }, + "bounds": { + "#": 1394 + }, + "collisionFilter": { + "#": 1397 + }, + "constraintImpulse": { + "#": 1398 + }, + "density": 0.001, + "force": { + "#": 1399 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1400 + }, + "positionImpulse": { + "#": 1401 + }, + "positionPrev": { + "#": 1402 + }, + "render": { + "#": 1403 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1405 + }, + "vertices": { + "#": 1406 + } + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1395 + }, + "min": { + "#": 1396 + } + }, + { + "x": 150, + "y": 470 + }, + { + "x": 100, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 445 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1404 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1416 + }, + "bounds": { + "#": 1421 + }, + "collisionFilter": { + "#": 1424 + }, + "constraintImpulse": { + "#": 1425 + }, + "density": 0.001, + "force": { + "#": 1426 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1427 + }, + "positionImpulse": { + "#": 1428 + }, + "positionPrev": { + "#": 1429 + }, + "render": { + "#": 1430 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1432 + }, + "vertices": { + "#": 1433 + } + }, + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1422 + }, + "min": { + "#": 1423 + } + }, + { + "x": 200, + "y": 470 + }, + { + "x": 150, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 445 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1431 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1443 + }, + "bounds": { + "#": 1448 + }, + "collisionFilter": { + "#": 1451 + }, + "constraintImpulse": { + "#": 1452 + }, + "density": 0.001, + "force": { + "#": 1453 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1454 + }, + "positionImpulse": { + "#": 1455 + }, + "positionPrev": { + "#": 1456 + }, + "render": { + "#": 1457 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1459 + }, + "vertices": { + "#": 1460 + } + }, + [ + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1449 + }, + "min": { + "#": 1450 + } + }, + { + "x": 250, + "y": 470 + }, + { + "x": 200, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 445 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1458 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1470 + }, + "bounds": { + "#": 1475 + }, + "collisionFilter": { + "#": 1478 + }, + "constraintImpulse": { + "#": 1479 + }, + "density": 0.001, + "force": { + "#": 1480 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 160, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1481 + }, + "positionImpulse": { + "#": 1482 + }, + "positionPrev": { + "#": 1483 + }, + "render": { + "#": 1484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1486 + }, + "vertices": { + "#": 1487 + } + }, + [ + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1476 + }, + "min": { + "#": 1477 + } + }, + { + "x": 300, + "y": 470 + }, + { + "x": 250, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 445 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1485 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1497 + }, + "bounds": { + "#": 1502 + }, + "collisionFilter": { + "#": 1505 + }, + "constraintImpulse": { + "#": 1506 + }, + "density": 0.001, + "force": { + "#": 1507 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 163, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1508 + }, + "positionImpulse": { + "#": 1509 + }, + "positionPrev": { + "#": 1510 + }, + "render": { + "#": 1511 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1513 + }, + "vertices": { + "#": 1514 + } + }, + [ + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1503 + }, + "min": { + "#": 1504 + } + }, + { + "x": 350, + "y": 470 + }, + { + "x": 300, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 445 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1512 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1524 + }, + "bounds": { + "#": 1529 + }, + "collisionFilter": { + "#": 1532 + }, + "constraintImpulse": { + "#": 1533 + }, + "density": 0.001, + "force": { + "#": 1534 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 166, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1535 + }, + "positionImpulse": { + "#": 1536 + }, + "positionPrev": { + "#": 1537 + }, + "render": { + "#": 1538 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1540 + }, + "vertices": { + "#": 1541 + } + }, + [ + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1530 + }, + "min": { + "#": 1531 + } + }, + { + "x": 400, + "y": 470 + }, + { + "x": 350, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 445 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1539 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1551 + }, + "bounds": { + "#": 1556 + }, + "collisionFilter": { + "#": 1559 + }, + "constraintImpulse": { + "#": 1560 + }, + "density": 0.001, + "force": { + "#": 1561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 169, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1562 + }, + "positionImpulse": { + "#": 1563 + }, + "positionPrev": { + "#": 1564 + }, + "render": { + "#": 1565 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1567 + }, + "vertices": { + "#": 1568 + } + }, + [ + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1557 + }, + "min": { + "#": 1558 + } + }, + { + "x": 450, + "y": 470 + }, + { + "x": 400, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 445 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1566 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1578 + }, + "bounds": { + "#": 1583 + }, + "collisionFilter": { + "#": 1586 + }, + "constraintImpulse": { + "#": 1587 + }, + "density": 0.001, + "force": { + "#": 1588 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 172, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1589 + }, + "positionImpulse": { + "#": 1590 + }, + "positionPrev": { + "#": 1591 + }, + "render": { + "#": 1592 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1594 + }, + "vertices": { + "#": 1595 + } + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1584 + }, + "min": { + "#": 1585 + } + }, + { + "x": 500, + "y": 470 + }, + { + "x": 450, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 445 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1593 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1605 + }, + "bounds": { + "#": 1610 + }, + "collisionFilter": { + "#": 1613 + }, + "constraintImpulse": { + "#": 1614 + }, + "density": 0.001, + "force": { + "#": 1615 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 175, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1616 + }, + "positionImpulse": { + "#": 1617 + }, + "positionPrev": { + "#": 1618 + }, + "render": { + "#": 1619 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1621 + }, + "vertices": { + "#": 1622 + } + }, + [ + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1611 + }, + "min": { + "#": 1612 + } + }, + { + "x": 550, + "y": 470 + }, + { + "x": 500, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 445 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1620 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1632 + }, + "bounds": { + "#": 1637 + }, + "collisionFilter": { + "#": 1640 + }, + "constraintImpulse": { + "#": 1641 + }, + "density": 0.001, + "force": { + "#": 1642 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 178, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1643 + }, + "positionImpulse": { + "#": 1644 + }, + "positionPrev": { + "#": 1645 + }, + "render": { + "#": 1646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1648 + }, + "vertices": { + "#": 1649 + } + }, + [ + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1638 + }, + "min": { + "#": 1639 + } + }, + { + "x": 600, + "y": 470 + }, + { + "x": 550, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 445 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1647 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1659 + }, + "bounds": { + "#": 1664 + }, + "collisionFilter": { + "#": 1667 + }, + "constraintImpulse": { + "#": 1668 + }, + "density": 0.001, + "force": { + "#": 1669 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 181, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1670 + }, + "positionImpulse": { + "#": 1671 + }, + "positionPrev": { + "#": 1672 + }, + "render": { + "#": 1673 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1675 + }, + "vertices": { + "#": 1676 + } + }, + [ + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1665 + }, + "min": { + "#": 1666 + } + }, + { + "x": 650, + "y": 470 + }, + { + "x": 600, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 445 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1674 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1686 + }, + "bounds": { + "#": 1691 + }, + "collisionFilter": { + "#": 1694 + }, + "constraintImpulse": { + "#": 1695 + }, + "density": 0.001, + "force": { + "#": 1696 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 184, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1697 + }, + "positionImpulse": { + "#": 1698 + }, + "positionPrev": { + "#": 1699 + }, + "render": { + "#": 1700 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1702 + }, + "vertices": { + "#": 1703 + } + }, + [ + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1692 + }, + "min": { + "#": 1693 + } + }, + { + "x": 700, + "y": 470 + }, + { + "x": 650, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 445 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1701 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 450 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 450 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 440 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 420 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 420 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 440 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1713 + }, + "bounds": { + "#": 1718 + }, + "collisionFilter": { + "#": 1721 + }, + "constraintImpulse": { + "#": 1722 + }, + "density": 0.001, + "force": { + "#": 1723 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 187, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1724 + }, + "positionImpulse": { + "#": 1725 + }, + "positionPrev": { + "#": 1726 + }, + "render": { + "#": 1727 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1729 + }, + "vertices": { + "#": 1730 + } + }, + [ + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1719 + }, + "min": { + "#": 1720 + } + }, + { + "x": 150, + "y": 520 + }, + { + "x": 100, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 495 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1728 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1740 + }, + "bounds": { + "#": 1745 + }, + "collisionFilter": { + "#": 1748 + }, + "constraintImpulse": { + "#": 1749 + }, + "density": 0.001, + "force": { + "#": 1750 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 190, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1751 + }, + "positionImpulse": { + "#": 1752 + }, + "positionPrev": { + "#": 1753 + }, + "render": { + "#": 1754 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1756 + }, + "vertices": { + "#": 1757 + } + }, + [ + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1746 + }, + "min": { + "#": 1747 + } + }, + { + "x": 200, + "y": 520 + }, + { + "x": 150, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 495 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1755 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1767 + }, + "bounds": { + "#": 1772 + }, + "collisionFilter": { + "#": 1775 + }, + "constraintImpulse": { + "#": 1776 + }, + "density": 0.001, + "force": { + "#": 1777 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 193, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1778 + }, + "positionImpulse": { + "#": 1779 + }, + "positionPrev": { + "#": 1780 + }, + "render": { + "#": 1781 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1783 + }, + "vertices": { + "#": 1784 + } + }, + [ + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1773 + }, + "min": { + "#": 1774 + } + }, + { + "x": 250, + "y": 520 + }, + { + "x": 200, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 495 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1782 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1794 + }, + "bounds": { + "#": 1799 + }, + "collisionFilter": { + "#": 1802 + }, + "constraintImpulse": { + "#": 1803 + }, + "density": 0.001, + "force": { + "#": 1804 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 196, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1805 + }, + "positionImpulse": { + "#": 1806 + }, + "positionPrev": { + "#": 1807 + }, + "render": { + "#": 1808 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1810 + }, + "vertices": { + "#": 1811 + } + }, + [ + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1800 + }, + "min": { + "#": 1801 + } + }, + { + "x": 300, + "y": 520 + }, + { + "x": 250, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 495 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1809 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1821 + }, + "bounds": { + "#": 1826 + }, + "collisionFilter": { + "#": 1829 + }, + "constraintImpulse": { + "#": 1830 + }, + "density": 0.001, + "force": { + "#": 1831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 199, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1832 + }, + "positionImpulse": { + "#": 1833 + }, + "positionPrev": { + "#": 1834 + }, + "render": { + "#": 1835 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1837 + }, + "vertices": { + "#": 1838 + } + }, + [ + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1827 + }, + "min": { + "#": 1828 + } + }, + { + "x": 350, + "y": 520 + }, + { + "x": 300, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 495 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1836 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1848 + }, + "bounds": { + "#": 1853 + }, + "collisionFilter": { + "#": 1856 + }, + "constraintImpulse": { + "#": 1857 + }, + "density": 0.001, + "force": { + "#": 1858 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 202, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1859 + }, + "positionImpulse": { + "#": 1860 + }, + "positionPrev": { + "#": 1861 + }, + "render": { + "#": 1862 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1864 + }, + "vertices": { + "#": 1865 + } + }, + [ + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1854 + }, + "min": { + "#": 1855 + } + }, + { + "x": 400, + "y": 520 + }, + { + "x": 350, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 495 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1863 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1875 + }, + "bounds": { + "#": 1880 + }, + "collisionFilter": { + "#": 1883 + }, + "constraintImpulse": { + "#": 1884 + }, + "density": 0.001, + "force": { + "#": 1885 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 205, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1886 + }, + "positionImpulse": { + "#": 1887 + }, + "positionPrev": { + "#": 1888 + }, + "render": { + "#": 1889 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1891 + }, + "vertices": { + "#": 1892 + } + }, + [ + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1881 + }, + "min": { + "#": 1882 + } + }, + { + "x": 450, + "y": 520 + }, + { + "x": 400, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 495 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1890 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1902 + }, + "bounds": { + "#": 1907 + }, + "collisionFilter": { + "#": 1910 + }, + "constraintImpulse": { + "#": 1911 + }, + "density": 0.001, + "force": { + "#": 1912 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 208, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1913 + }, + "positionImpulse": { + "#": 1914 + }, + "positionPrev": { + "#": 1915 + }, + "render": { + "#": 1916 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1918 + }, + "vertices": { + "#": 1919 + } + }, + [ + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1908 + }, + "min": { + "#": 1909 + } + }, + { + "x": 500, + "y": 520 + }, + { + "x": 450, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 495 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1917 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1929 + }, + "bounds": { + "#": 1934 + }, + "collisionFilter": { + "#": 1937 + }, + "constraintImpulse": { + "#": 1938 + }, + "density": 0.001, + "force": { + "#": 1939 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 211, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1940 + }, + "positionImpulse": { + "#": 1941 + }, + "positionPrev": { + "#": 1942 + }, + "render": { + "#": 1943 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1945 + }, + "vertices": { + "#": 1946 + } + }, + [ + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1935 + }, + "min": { + "#": 1936 + } + }, + { + "x": 550, + "y": 520 + }, + { + "x": 500, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 495 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1944 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1956 + }, + "bounds": { + "#": 1961 + }, + "collisionFilter": { + "#": 1964 + }, + "constraintImpulse": { + "#": 1965 + }, + "density": 0.001, + "force": { + "#": 1966 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 214, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1967 + }, + "positionImpulse": { + "#": 1968 + }, + "positionPrev": { + "#": 1969 + }, + "render": { + "#": 1970 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1972 + }, + "vertices": { + "#": 1973 + } + }, + [ + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1962 + }, + "min": { + "#": 1963 + } + }, + { + "x": 600, + "y": 520 + }, + { + "x": 550, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 495 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1971 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1983 + }, + "bounds": { + "#": 1988 + }, + "collisionFilter": { + "#": 1991 + }, + "constraintImpulse": { + "#": 1992 + }, + "density": 0.001, + "force": { + "#": 1993 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 217, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1994 + }, + "positionImpulse": { + "#": 1995 + }, + "positionPrev": { + "#": 1996 + }, + "render": { + "#": 1997 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1999 + }, + "vertices": { + "#": 2000 + } + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1989 + }, + "min": { + "#": 1990 + } + }, + { + "x": 650, + "y": 520 + }, + { + "x": 600, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 495 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1998 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 490 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 2010 + }, + "bounds": { + "#": 2015 + }, + "collisionFilter": { + "#": 2018 + }, + "constraintImpulse": { + "#": 2019 + }, + "density": 0.001, + "force": { + "#": 2020 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 220, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 2021 + }, + "positionImpulse": { + "#": 2022 + }, + "positionPrev": { + "#": 2023 + }, + "render": { + "#": 2024 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2026 + }, + "vertices": { + "#": 2027 + } + }, + [ + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2016 + }, + "min": { + "#": 2017 + } + }, + { + "x": 700, + "y": 520 + }, + { + "x": 650, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 495 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2025 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 500 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 500 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 490 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 470 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 470 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 490 + }, + [], + [], + [ + { + "#": 2039 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2040 + }, + "pointB": "", + "render": { + "#": 2041 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 2043 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/compoundStack/compoundStack-10.json b/tests/browser/refs/compoundStack/compoundStack-10.json new file mode 100644 index 00000000..33645d6b --- /dev/null +++ b/tests/browser/refs/compoundStack/compoundStack-10.json @@ -0,0 +1,18726 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 2114 + }, + "events": { + "#": 2118 + }, + "gravity": { + "#": 2120 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 2112 + }, + "constraints": { + "#": 2113 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 124 + }, + { + "#": 152 + }, + { + "#": 180 + }, + { + "#": 208 + }, + { + "#": 236 + }, + { + "#": 264 + }, + { + "#": 292 + }, + { + "#": 320 + }, + { + "#": 348 + }, + { + "#": 376 + }, + { + "#": 404 + }, + { + "#": 432 + }, + { + "#": 460 + }, + { + "#": 488 + }, + { + "#": 516 + }, + { + "#": 544 + }, + { + "#": 572 + }, + { + "#": 600 + }, + { + "#": 628 + }, + { + "#": 656 + }, + { + "#": 684 + }, + { + "#": 712 + }, + { + "#": 740 + }, + { + "#": 768 + }, + { + "#": 796 + }, + { + "#": 824 + }, + { + "#": 852 + }, + { + "#": 880 + }, + { + "#": 908 + }, + { + "#": 936 + }, + { + "#": 964 + }, + { + "#": 992 + }, + { + "#": 1020 + }, + { + "#": 1048 + }, + { + "#": 1076 + }, + { + "#": 1104 + }, + { + "#": 1132 + }, + { + "#": 1160 + }, + { + "#": 1188 + }, + { + "#": 1216 + }, + { + "#": 1244 + }, + { + "#": 1272 + }, + { + "#": 1300 + }, + { + "#": 1328 + }, + { + "#": 1356 + }, + { + "#": 1384 + }, + { + "#": 1412 + }, + { + "#": 1440 + }, + { + "#": 1468 + }, + { + "#": 1496 + }, + { + "#": 1524 + }, + { + "#": 1552 + }, + { + "#": 1580 + }, + { + "#": 1608 + }, + { + "#": 1636 + }, + { + "#": 1664 + }, + { + "#": 1692 + }, + { + "#": 1720 + }, + { + "#": 1748 + }, + { + "#": 1776 + }, + { + "#": 1804 + }, + { + "#": 1832 + }, + { + "#": 1860 + }, + { + "#": 1888 + }, + { + "#": 1916 + }, + { + "#": 1944 + }, + { + "#": 1972 + }, + { + "#": 2000 + }, + { + "#": 2028 + }, + { + "#": 2056 + }, + { + "#": 2084 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 97 + }, + "bounds": { + "#": 102 + }, + "collisionFilter": { + "#": 105 + }, + "constraintImpulse": { + "#": 106 + }, + "density": 0.001, + "force": { + "#": 107 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 108 + }, + "positionImpulse": { + "#": 109 + }, + "positionPrev": { + "#": 110 + }, + "region": { + "#": 111 + }, + "render": { + "#": 112 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 114 + }, + "vertices": { + "#": 115 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 103 + }, + "min": { + "#": 104 + } + }, + { + "x": 150, + "y": 290.732848959517 + }, + { + "x": 100, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 125, + "y": 259.9183075294458 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 113 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 125 + }, + "bounds": { + "#": 130 + }, + "collisionFilter": { + "#": 133 + }, + "constraintImpulse": { + "#": 134 + }, + "density": 0.001, + "force": { + "#": 135 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 136 + }, + "positionImpulse": { + "#": 137 + }, + "positionPrev": { + "#": 138 + }, + "region": { + "#": 139 + }, + "render": { + "#": 140 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 142 + }, + "vertices": { + "#": 143 + } + }, + [ + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 131 + }, + "min": { + "#": 132 + } + }, + { + "x": 200, + "y": 290.732848959517 + }, + { + "x": 150, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 175, + "y": 259.9183075294458 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 141 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 153 + }, + "bounds": { + "#": 158 + }, + "collisionFilter": { + "#": 161 + }, + "constraintImpulse": { + "#": 162 + }, + "density": 0.001, + "force": { + "#": 163 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 164 + }, + "positionImpulse": { + "#": 165 + }, + "positionPrev": { + "#": 166 + }, + "region": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 159 + }, + "min": { + "#": 160 + } + }, + { + "x": 250, + "y": 290.732848959517 + }, + { + "x": 200, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 225, + "y": 259.9183075294458 + }, + { + "endCol": 5, + "endRow": 5, + "id": "4,5,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 181 + }, + "bounds": { + "#": 186 + }, + "collisionFilter": { + "#": 189 + }, + "constraintImpulse": { + "#": 190 + }, + "density": 0.001, + "force": { + "#": 191 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 192 + }, + "positionImpulse": { + "#": 193 + }, + "positionPrev": { + "#": 194 + }, + "region": { + "#": 195 + }, + "render": { + "#": 196 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 198 + }, + "vertices": { + "#": 199 + } + }, + [ + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 187 + }, + "min": { + "#": 188 + } + }, + { + "x": 300, + "y": 290.732848959517 + }, + { + "x": 250, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 275, + "y": 259.9183075294458 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 197 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 209 + }, + "bounds": { + "#": 214 + }, + "collisionFilter": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "density": 0.001, + "force": { + "#": 219 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 220 + }, + "positionImpulse": { + "#": 221 + }, + "positionPrev": { + "#": 222 + }, + "region": { + "#": 223 + }, + "render": { + "#": 224 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 226 + }, + "vertices": { + "#": 227 + } + }, + [ + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 215 + }, + "min": { + "#": 216 + } + }, + { + "x": 350, + "y": 290.732848959517 + }, + { + "x": 300, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 325, + "y": 259.9183075294458 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 225 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 237 + }, + "bounds": { + "#": 242 + }, + "collisionFilter": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "density": 0.001, + "force": { + "#": 247 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 248 + }, + "positionImpulse": { + "#": 249 + }, + "positionPrev": { + "#": 250 + }, + "region": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 243 + }, + "min": { + "#": 244 + } + }, + { + "x": 400, + "y": 290.732848959517 + }, + { + "x": 350, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 375, + "y": 259.9183075294458 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 265 + }, + "bounds": { + "#": 270 + }, + "collisionFilter": { + "#": 273 + }, + "constraintImpulse": { + "#": 274 + }, + "density": 0.001, + "force": { + "#": 275 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 276 + }, + "positionImpulse": { + "#": 277 + }, + "positionPrev": { + "#": 278 + }, + "region": { + "#": 279 + }, + "render": { + "#": 280 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 282 + }, + "vertices": { + "#": 283 + } + }, + [ + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 271 + }, + "min": { + "#": 272 + } + }, + { + "x": 450, + "y": 290.732848959517 + }, + { + "x": 400, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 425, + "y": 259.9183075294458 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 281 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 293 + }, + "bounds": { + "#": 298 + }, + "collisionFilter": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "density": 0.001, + "force": { + "#": 303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 304 + }, + "positionImpulse": { + "#": 305 + }, + "positionPrev": { + "#": 306 + }, + "region": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 299 + }, + "min": { + "#": 300 + } + }, + { + "x": 500, + "y": 290.732848959517 + }, + { + "x": 450, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 475, + "y": 259.9183075294458 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 321 + }, + "bounds": { + "#": 326 + }, + "collisionFilter": { + "#": 329 + }, + "constraintImpulse": { + "#": 330 + }, + "density": 0.001, + "force": { + "#": 331 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 332 + }, + "positionImpulse": { + "#": 333 + }, + "positionPrev": { + "#": 334 + }, + "region": { + "#": 335 + }, + "render": { + "#": 336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 338 + }, + "vertices": { + "#": 339 + } + }, + [ + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 327 + }, + "min": { + "#": 328 + } + }, + { + "x": 550, + "y": 290.732848959517 + }, + { + "x": 500, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 525, + "y": 259.9183075294458 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 337 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 349 + }, + "bounds": { + "#": 354 + }, + "collisionFilter": { + "#": 357 + }, + "constraintImpulse": { + "#": 358 + }, + "density": 0.001, + "force": { + "#": 359 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 360 + }, + "positionImpulse": { + "#": 361 + }, + "positionPrev": { + "#": 362 + }, + "region": { + "#": 363 + }, + "render": { + "#": 364 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 366 + }, + "vertices": { + "#": 367 + } + }, + [ + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 355 + }, + "min": { + "#": 356 + } + }, + { + "x": 600, + "y": 290.732848959517 + }, + { + "x": 550, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 575, + "y": 259.9183075294458 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 365 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 377 + }, + "bounds": { + "#": 382 + }, + "collisionFilter": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "density": 0.001, + "force": { + "#": 387 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 388 + }, + "positionImpulse": { + "#": 389 + }, + "positionPrev": { + "#": 390 + }, + "region": { + "#": 391 + }, + "render": { + "#": 392 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 394 + }, + "vertices": { + "#": 395 + } + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 383 + }, + "min": { + "#": 384 + } + }, + { + "x": 650, + "y": 290.732848959517 + }, + { + "x": 600, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 625, + "y": 259.9183075294458 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 393 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 405 + }, + "bounds": { + "#": 410 + }, + "collisionFilter": { + "#": 413 + }, + "constraintImpulse": { + "#": 414 + }, + "density": 0.001, + "force": { + "#": 415 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 416 + }, + "positionImpulse": { + "#": 417 + }, + "positionPrev": { + "#": 418 + }, + "region": { + "#": 419 + }, + "render": { + "#": 420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 422 + }, + "vertices": { + "#": 423 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 411 + }, + "min": { + "#": 412 + } + }, + { + "x": 700, + "y": 290.732848959517 + }, + { + "x": 650, + "y": 237.82557824448148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 262.82557824448145 + }, + { + "x": 0, + "y": 0.0043606346096648815 + }, + { + "x": 675, + "y": 259.9183075294458 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,4,5", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 421 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 287.8255782444814 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 267.8255782444815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 257.8255782444815 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 237.82557824448148 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 257.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 433 + }, + "bounds": { + "#": 438 + }, + "collisionFilter": { + "#": 441 + }, + "constraintImpulse": { + "#": 442 + }, + "density": 0.001, + "force": { + "#": 443 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 444 + }, + "positionImpulse": { + "#": 445 + }, + "positionPrev": { + "#": 446 + }, + "region": { + "#": 447 + }, + "render": { + "#": 448 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 450 + }, + "vertices": { + "#": 451 + } + }, + [ + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 439 + }, + "min": { + "#": 440 + } + }, + { + "x": 150, + "y": 340.6828510351859 + }, + { + "x": 100, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 125, + "y": 309.8683096051145 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,5,7", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 449 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 461 + }, + "bounds": { + "#": 466 + }, + "collisionFilter": { + "#": 469 + }, + "constraintImpulse": { + "#": 470 + }, + "density": 0.001, + "force": { + "#": 471 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 472 + }, + "positionImpulse": { + "#": 473 + }, + "positionPrev": { + "#": 474 + }, + "region": { + "#": 475 + }, + "render": { + "#": 476 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 478 + }, + "vertices": { + "#": 479 + } + }, + [ + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 467 + }, + "min": { + "#": 468 + } + }, + { + "x": 200, + "y": 340.6828510351859 + }, + { + "x": 150, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 175, + "y": 309.8683096051145 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,5,7", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 477 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 489 + }, + "bounds": { + "#": 494 + }, + "collisionFilter": { + "#": 497 + }, + "constraintImpulse": { + "#": 498 + }, + "density": 0.001, + "force": { + "#": 499 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 500 + }, + "positionImpulse": { + "#": 501 + }, + "positionPrev": { + "#": 502 + }, + "region": { + "#": 503 + }, + "render": { + "#": 504 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 506 + }, + "vertices": { + "#": 507 + } + }, + [ + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 495 + }, + "min": { + "#": 496 + } + }, + { + "x": 250, + "y": 340.6828510351859 + }, + { + "x": 200, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 225, + "y": 309.8683096051145 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,5,7", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 505 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 517 + }, + "bounds": { + "#": 522 + }, + "collisionFilter": { + "#": 525 + }, + "constraintImpulse": { + "#": 526 + }, + "density": 0.001, + "force": { + "#": 527 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 528 + }, + "positionImpulse": { + "#": 529 + }, + "positionPrev": { + "#": 530 + }, + "region": { + "#": 531 + }, + "render": { + "#": 532 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 534 + }, + "vertices": { + "#": 535 + } + }, + [ + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 523 + }, + "min": { + "#": 524 + } + }, + { + "x": 300, + "y": 340.6828510351859 + }, + { + "x": 250, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 275, + "y": 309.8683096051145 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,5,7", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 533 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 545 + }, + "bounds": { + "#": 550 + }, + "collisionFilter": { + "#": 553 + }, + "constraintImpulse": { + "#": 554 + }, + "density": 0.001, + "force": { + "#": 555 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 556 + }, + "positionImpulse": { + "#": 557 + }, + "positionPrev": { + "#": 558 + }, + "region": { + "#": 559 + }, + "render": { + "#": 560 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 562 + }, + "vertices": { + "#": 563 + } + }, + [ + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 551 + }, + "min": { + "#": 552 + } + }, + { + "x": 350, + "y": 340.6828510351859 + }, + { + "x": 300, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 325, + "y": 309.8683096051145 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,5,7", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 561 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 573 + }, + "bounds": { + "#": 578 + }, + "collisionFilter": { + "#": 581 + }, + "constraintImpulse": { + "#": 582 + }, + "density": 0.001, + "force": { + "#": 583 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 584 + }, + "positionImpulse": { + "#": 585 + }, + "positionPrev": { + "#": 586 + }, + "region": { + "#": 587 + }, + "render": { + "#": 588 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 590 + }, + "vertices": { + "#": 591 + } + }, + [ + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 579 + }, + "min": { + "#": 580 + } + }, + { + "x": 400, + "y": 340.6828510351859 + }, + { + "x": 350, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 375, + "y": 309.8683096051145 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,5,7", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 589 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 601 + }, + "bounds": { + "#": 606 + }, + "collisionFilter": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "density": 0.001, + "force": { + "#": 611 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 612 + }, + "positionImpulse": { + "#": 613 + }, + "positionPrev": { + "#": 614 + }, + "region": { + "#": 615 + }, + "render": { + "#": 616 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 618 + }, + "vertices": { + "#": 619 + } + }, + [ + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 607 + }, + "min": { + "#": 608 + } + }, + { + "x": 450, + "y": 340.6828510351859 + }, + { + "x": 400, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 425, + "y": 309.8683096051145 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,5,7", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 617 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 629 + }, + "bounds": { + "#": 634 + }, + "collisionFilter": { + "#": 637 + }, + "constraintImpulse": { + "#": 638 + }, + "density": 0.001, + "force": { + "#": 639 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 640 + }, + "positionImpulse": { + "#": 641 + }, + "positionPrev": { + "#": 642 + }, + "region": { + "#": 643 + }, + "render": { + "#": 644 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 646 + }, + "vertices": { + "#": 647 + } + }, + [ + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 635 + }, + "min": { + "#": 636 + } + }, + { + "x": 500, + "y": 340.6828510351859 + }, + { + "x": 450, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 475, + "y": 309.8683096051145 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,5,7", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 645 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 657 + }, + "bounds": { + "#": 662 + }, + "collisionFilter": { + "#": 665 + }, + "constraintImpulse": { + "#": 666 + }, + "density": 0.001, + "force": { + "#": 667 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 668 + }, + "positionImpulse": { + "#": 669 + }, + "positionPrev": { + "#": 670 + }, + "region": { + "#": 671 + }, + "render": { + "#": 672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 674 + }, + "vertices": { + "#": 675 + } + }, + [ + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 663 + }, + "min": { + "#": 664 + } + }, + { + "x": 550, + "y": 340.6828510351859 + }, + { + "x": 500, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 525, + "y": 309.8683096051145 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,5,7", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 673 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 685 + }, + "bounds": { + "#": 690 + }, + "collisionFilter": { + "#": 693 + }, + "constraintImpulse": { + "#": 694 + }, + "density": 0.001, + "force": { + "#": 695 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 696 + }, + "positionImpulse": { + "#": 697 + }, + "positionPrev": { + "#": 698 + }, + "region": { + "#": 699 + }, + "render": { + "#": 700 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 702 + }, + "vertices": { + "#": 703 + } + }, + [ + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 691 + }, + "min": { + "#": 692 + } + }, + { + "x": 600, + "y": 340.6828510351859 + }, + { + "x": 550, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 575, + "y": 309.8683096051145 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,5,7", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 701 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 713 + }, + "bounds": { + "#": 718 + }, + "collisionFilter": { + "#": 721 + }, + "constraintImpulse": { + "#": 722 + }, + "density": 0.001, + "force": { + "#": 723 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 724 + }, + "positionImpulse": { + "#": 725 + }, + "positionPrev": { + "#": 726 + }, + "region": { + "#": 727 + }, + "render": { + "#": 728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 730 + }, + "vertices": { + "#": 731 + } + }, + [ + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 719 + }, + "min": { + "#": 720 + } + }, + { + "x": 650, + "y": 340.6828510351859 + }, + { + "x": 600, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 625, + "y": 309.8683096051145 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,5,7", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 729 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 741 + }, + "bounds": { + "#": 746 + }, + "collisionFilter": { + "#": 749 + }, + "constraintImpulse": { + "#": 750 + }, + "density": 0.001, + "force": { + "#": 751 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 752 + }, + "positionImpulse": { + "#": 753 + }, + "positionPrev": { + "#": 754 + }, + "region": { + "#": 755 + }, + "render": { + "#": 756 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 758 + }, + "vertices": { + "#": 759 + } + }, + [ + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 747 + }, + "min": { + "#": 748 + } + }, + { + "x": 700, + "y": 340.6828510351859 + }, + { + "x": 650, + "y": 287.7755803201502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 312.7755803201502 + }, + { + "x": 0, + "y": 0.004377931191936242 + }, + { + "x": 675, + "y": 309.8683096051145 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,5,7", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 757 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 337.7755803201502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 317.7755803201502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 307.7755803201502 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 287.7755803201502 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 307.7755803201502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 769 + }, + "bounds": { + "#": 774 + }, + "collisionFilter": { + "#": 777 + }, + "constraintImpulse": { + "#": 778 + }, + "density": 0.001, + "force": { + "#": 779 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 780 + }, + "positionImpulse": { + "#": 781 + }, + "positionPrev": { + "#": 782 + }, + "region": { + "#": 783 + }, + "render": { + "#": 784 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 786 + }, + "vertices": { + "#": 787 + } + }, + [ + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 775 + }, + "min": { + "#": 776 + } + }, + { + "x": 150, + "y": 390.6328531108547 + }, + { + "x": 100, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 125, + "y": 359.8183116807833 + }, + { + "endCol": 3, + "endRow": 8, + "id": "2,3,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 785 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 797 + }, + "bounds": { + "#": 802 + }, + "collisionFilter": { + "#": 805 + }, + "constraintImpulse": { + "#": 806 + }, + "density": 0.001, + "force": { + "#": 807 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 808 + }, + "positionImpulse": { + "#": 809 + }, + "positionPrev": { + "#": 810 + }, + "region": { + "#": 811 + }, + "render": { + "#": 812 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 814 + }, + "vertices": { + "#": 815 + } + }, + [ + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 803 + }, + "min": { + "#": 804 + } + }, + { + "x": 200, + "y": 390.6328531108547 + }, + { + "x": 150, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 175, + "y": 359.8183116807833 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 813 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 825 + }, + "bounds": { + "#": 830 + }, + "collisionFilter": { + "#": 833 + }, + "constraintImpulse": { + "#": 834 + }, + "density": 0.001, + "force": { + "#": 835 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 836 + }, + "positionImpulse": { + "#": 837 + }, + "positionPrev": { + "#": 838 + }, + "region": { + "#": 839 + }, + "render": { + "#": 840 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 842 + }, + "vertices": { + "#": 843 + } + }, + [ + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 831 + }, + "min": { + "#": 832 + } + }, + { + "x": 250, + "y": 390.6328531108547 + }, + { + "x": 200, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 225, + "y": 359.8183116807833 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 841 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 853 + }, + "bounds": { + "#": 858 + }, + "collisionFilter": { + "#": 861 + }, + "constraintImpulse": { + "#": 862 + }, + "density": 0.001, + "force": { + "#": 863 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 864 + }, + "positionImpulse": { + "#": 865 + }, + "positionPrev": { + "#": 866 + }, + "region": { + "#": 867 + }, + "render": { + "#": 868 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 870 + }, + "vertices": { + "#": 871 + } + }, + [ + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 859 + }, + "min": { + "#": 860 + } + }, + { + "x": 300, + "y": 390.6328531108547 + }, + { + "x": 250, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 275, + "y": 359.8183116807833 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 869 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 881 + }, + "bounds": { + "#": 886 + }, + "collisionFilter": { + "#": 889 + }, + "constraintImpulse": { + "#": 890 + }, + "density": 0.001, + "force": { + "#": 891 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 892 + }, + "positionImpulse": { + "#": 893 + }, + "positionPrev": { + "#": 894 + }, + "region": { + "#": 895 + }, + "render": { + "#": 896 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 898 + }, + "vertices": { + "#": 899 + } + }, + [ + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 887 + }, + "min": { + "#": 888 + } + }, + { + "x": 350, + "y": 390.6328531108547 + }, + { + "x": 300, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 325, + "y": 359.8183116807833 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 897 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 909 + }, + "bounds": { + "#": 914 + }, + "collisionFilter": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "density": 0.001, + "force": { + "#": 919 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 920 + }, + "positionImpulse": { + "#": 921 + }, + "positionPrev": { + "#": 922 + }, + "region": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 915 + }, + "min": { + "#": 916 + } + }, + { + "x": 400, + "y": 390.6328531108547 + }, + { + "x": 350, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 375, + "y": 359.8183116807833 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 937 + }, + "bounds": { + "#": 942 + }, + "collisionFilter": { + "#": 945 + }, + "constraintImpulse": { + "#": 946 + }, + "density": 0.001, + "force": { + "#": 947 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 948 + }, + "positionImpulse": { + "#": 949 + }, + "positionPrev": { + "#": 950 + }, + "region": { + "#": 951 + }, + "render": { + "#": 952 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 954 + }, + "vertices": { + "#": 955 + } + }, + [ + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 943 + }, + "min": { + "#": 944 + } + }, + { + "x": 450, + "y": 390.6328531108547 + }, + { + "x": 400, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 425, + "y": 359.8183116807833 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 953 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 965 + }, + "bounds": { + "#": 970 + }, + "collisionFilter": { + "#": 973 + }, + "constraintImpulse": { + "#": 974 + }, + "density": 0.001, + "force": { + "#": 975 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 976 + }, + "positionImpulse": { + "#": 977 + }, + "positionPrev": { + "#": 978 + }, + "region": { + "#": 979 + }, + "render": { + "#": 980 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 982 + }, + "vertices": { + "#": 983 + } + }, + [ + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 971 + }, + "min": { + "#": 972 + } + }, + { + "x": 500, + "y": 390.6328531108547 + }, + { + "x": 450, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 475, + "y": 359.8183116807833 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 981 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 993 + }, + "bounds": { + "#": 998 + }, + "collisionFilter": { + "#": 1001 + }, + "constraintImpulse": { + "#": 1002 + }, + "density": 0.001, + "force": { + "#": 1003 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1004 + }, + "positionImpulse": { + "#": 1005 + }, + "positionPrev": { + "#": 1006 + }, + "region": { + "#": 1007 + }, + "render": { + "#": 1008 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1010 + }, + "vertices": { + "#": 1011 + } + }, + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 999 + }, + "min": { + "#": 1000 + } + }, + { + "x": 550, + "y": 390.6328531108547 + }, + { + "x": 500, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 525, + "y": 359.8183116807833 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1009 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1021 + }, + "bounds": { + "#": 1026 + }, + "collisionFilter": { + "#": 1029 + }, + "constraintImpulse": { + "#": 1030 + }, + "density": 0.001, + "force": { + "#": 1031 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1032 + }, + "positionImpulse": { + "#": 1033 + }, + "positionPrev": { + "#": 1034 + }, + "region": { + "#": 1035 + }, + "render": { + "#": 1036 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1038 + }, + "vertices": { + "#": 1039 + } + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1027 + }, + "min": { + "#": 1028 + } + }, + { + "x": 600, + "y": 390.6328531108547 + }, + { + "x": 550, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 575, + "y": 359.8183116807833 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,7,8", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1037 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1049 + }, + "bounds": { + "#": 1054 + }, + "collisionFilter": { + "#": 1057 + }, + "constraintImpulse": { + "#": 1058 + }, + "density": 0.001, + "force": { + "#": 1059 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1060 + }, + "positionImpulse": { + "#": 1061 + }, + "positionPrev": { + "#": 1062 + }, + "region": { + "#": 1063 + }, + "render": { + "#": 1064 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1066 + }, + "vertices": { + "#": 1067 + } + }, + [ + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1055 + }, + "min": { + "#": 1056 + } + }, + { + "x": 650, + "y": 390.6328531108547 + }, + { + "x": 600, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 625, + "y": 359.8183116807833 + }, + { + "endCol": 13, + "endRow": 8, + "id": "12,13,7,8", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1065 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1077 + }, + "bounds": { + "#": 1082 + }, + "collisionFilter": { + "#": 1085 + }, + "constraintImpulse": { + "#": 1086 + }, + "density": 0.001, + "force": { + "#": 1087 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1088 + }, + "positionImpulse": { + "#": 1089 + }, + "positionPrev": { + "#": 1090 + }, + "region": { + "#": 1091 + }, + "render": { + "#": 1092 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1094 + }, + "vertices": { + "#": 1095 + } + }, + [ + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1083 + }, + "min": { + "#": 1084 + } + }, + { + "x": 700, + "y": 390.6328531108547 + }, + { + "x": 650, + "y": 337.725582395819 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 362.725582395819 + }, + { + "x": 0, + "y": 0.004395227774375657 + }, + { + "x": 675, + "y": 359.8183116807833 + }, + { + "endCol": 14, + "endRow": 8, + "id": "13,14,7,8", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1093 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 367.725582395819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 387.725582395819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 387.725582395819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 367.725582395819 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 357.725582395819 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 337.725582395819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 337.725582395819 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 357.725582395819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1105 + }, + "bounds": { + "#": 1110 + }, + "collisionFilter": { + "#": 1113 + }, + "constraintImpulse": { + "#": 1114 + }, + "density": 0.001, + "force": { + "#": 1115 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1116 + }, + "positionImpulse": { + "#": 1117 + }, + "positionPrev": { + "#": 1118 + }, + "region": { + "#": 1119 + }, + "render": { + "#": 1120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1122 + }, + "vertices": { + "#": 1123 + } + }, + [ + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1111 + }, + "min": { + "#": 1112 + } + }, + { + "x": 150, + "y": 437.73575476702496 + }, + { + "x": 100, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 409.8284840519894 + }, + { + "endCol": 3, + "endRow": 9, + "id": "2,3,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1121 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1133 + }, + "bounds": { + "#": 1138 + }, + "collisionFilter": { + "#": 1141 + }, + "constraintImpulse": { + "#": 1142 + }, + "density": 0.001, + "force": { + "#": 1143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1144 + }, + "positionImpulse": { + "#": 1145 + }, + "positionPrev": { + "#": 1146 + }, + "region": { + "#": 1147 + }, + "render": { + "#": 1148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1150 + }, + "vertices": { + "#": 1151 + } + }, + [ + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1139 + }, + "min": { + "#": 1140 + } + }, + { + "x": 200, + "y": 437.73575476702496 + }, + { + "x": 150, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 409.8284840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1149 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1161 + }, + "bounds": { + "#": 1166 + }, + "collisionFilter": { + "#": 1169 + }, + "constraintImpulse": { + "#": 1170 + }, + "density": 0.001, + "force": { + "#": 1171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1172 + }, + "positionImpulse": { + "#": 1173 + }, + "positionPrev": { + "#": 1174 + }, + "region": { + "#": 1175 + }, + "render": { + "#": 1176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1178 + }, + "vertices": { + "#": 1179 + } + }, + [ + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1167 + }, + "min": { + "#": 1168 + } + }, + { + "x": 250, + "y": 437.73575476702496 + }, + { + "x": 200, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 409.8284840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1177 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1189 + }, + "bounds": { + "#": 1194 + }, + "collisionFilter": { + "#": 1197 + }, + "constraintImpulse": { + "#": 1198 + }, + "density": 0.001, + "force": { + "#": 1199 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1200 + }, + "positionImpulse": { + "#": 1201 + }, + "positionPrev": { + "#": 1202 + }, + "region": { + "#": 1203 + }, + "render": { + "#": 1204 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1206 + }, + "vertices": { + "#": 1207 + } + }, + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1195 + }, + "min": { + "#": 1196 + } + }, + { + "x": 300, + "y": 437.73575476702496 + }, + { + "x": 250, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 409.8284840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1205 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1217 + }, + "bounds": { + "#": 1222 + }, + "collisionFilter": { + "#": 1225 + }, + "constraintImpulse": { + "#": 1226 + }, + "density": 0.001, + "force": { + "#": 1227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1228 + }, + "positionImpulse": { + "#": 1229 + }, + "positionPrev": { + "#": 1230 + }, + "region": { + "#": 1231 + }, + "render": { + "#": 1232 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1234 + }, + "vertices": { + "#": 1235 + } + }, + [ + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1223 + }, + "min": { + "#": 1224 + } + }, + { + "x": 350, + "y": 437.73575476702496 + }, + { + "x": 300, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 409.8284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1233 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1245 + }, + "bounds": { + "#": 1250 + }, + "collisionFilter": { + "#": 1253 + }, + "constraintImpulse": { + "#": 1254 + }, + "density": 0.001, + "force": { + "#": 1255 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1256 + }, + "positionImpulse": { + "#": 1257 + }, + "positionPrev": { + "#": 1258 + }, + "region": { + "#": 1259 + }, + "render": { + "#": 1260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1262 + }, + "vertices": { + "#": 1263 + } + }, + [ + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1251 + }, + "min": { + "#": 1252 + } + }, + { + "x": 400, + "y": 437.73575476702496 + }, + { + "x": 350, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 409.8284840519894 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1261 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1273 + }, + "bounds": { + "#": 1278 + }, + "collisionFilter": { + "#": 1281 + }, + "constraintImpulse": { + "#": 1282 + }, + "density": 0.001, + "force": { + "#": 1283 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1284 + }, + "positionImpulse": { + "#": 1285 + }, + "positionPrev": { + "#": 1286 + }, + "region": { + "#": 1287 + }, + "render": { + "#": 1288 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1290 + }, + "vertices": { + "#": 1291 + } + }, + [ + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1279 + }, + "min": { + "#": 1280 + } + }, + { + "x": 450, + "y": 437.73575476702496 + }, + { + "x": 400, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 409.8284840519894 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1289 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1301 + }, + "bounds": { + "#": 1306 + }, + "collisionFilter": { + "#": 1309 + }, + "constraintImpulse": { + "#": 1310 + }, + "density": 0.001, + "force": { + "#": 1311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1312 + }, + "positionImpulse": { + "#": 1313 + }, + "positionPrev": { + "#": 1314 + }, + "region": { + "#": 1315 + }, + "render": { + "#": 1316 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1318 + }, + "vertices": { + "#": 1319 + } + }, + [ + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1307 + }, + "min": { + "#": 1308 + } + }, + { + "x": 500, + "y": 437.73575476702496 + }, + { + "x": 450, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 409.8284840519894 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1317 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1329 + }, + "bounds": { + "#": 1334 + }, + "collisionFilter": { + "#": 1337 + }, + "constraintImpulse": { + "#": 1338 + }, + "density": 0.001, + "force": { + "#": 1339 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1340 + }, + "positionImpulse": { + "#": 1341 + }, + "positionPrev": { + "#": 1342 + }, + "region": { + "#": 1343 + }, + "render": { + "#": 1344 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1346 + }, + "vertices": { + "#": 1347 + } + }, + [ + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1335 + }, + "min": { + "#": 1336 + } + }, + { + "x": 550, + "y": 437.73575476702496 + }, + { + "x": 500, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 409.8284840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1345 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1357 + }, + "bounds": { + "#": 1362 + }, + "collisionFilter": { + "#": 1365 + }, + "constraintImpulse": { + "#": 1366 + }, + "density": 0.001, + "force": { + "#": 1367 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1368 + }, + "positionImpulse": { + "#": 1369 + }, + "positionPrev": { + "#": 1370 + }, + "region": { + "#": 1371 + }, + "render": { + "#": 1372 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1374 + }, + "vertices": { + "#": 1375 + } + }, + [ + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1363 + }, + "min": { + "#": 1364 + } + }, + { + "x": 600, + "y": 437.73575476702496 + }, + { + "x": 550, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 409.8284840519894 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1373 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1385 + }, + "bounds": { + "#": 1390 + }, + "collisionFilter": { + "#": 1393 + }, + "constraintImpulse": { + "#": 1394 + }, + "density": 0.001, + "force": { + "#": 1395 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1396 + }, + "positionImpulse": { + "#": 1397 + }, + "positionPrev": { + "#": 1398 + }, + "region": { + "#": 1399 + }, + "render": { + "#": 1400 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1402 + }, + "vertices": { + "#": 1403 + } + }, + [ + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1391 + }, + "min": { + "#": 1392 + } + }, + { + "x": 650, + "y": 437.73575476702496 + }, + { + "x": 600, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 409.8284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "12,13,8,9", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1401 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1413 + }, + "bounds": { + "#": 1418 + }, + "collisionFilter": { + "#": 1421 + }, + "constraintImpulse": { + "#": 1422 + }, + "density": 0.001, + "force": { + "#": 1423 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1424 + }, + "positionImpulse": { + "#": 1425 + }, + "positionPrev": { + "#": 1426 + }, + "region": { + "#": 1427 + }, + "render": { + "#": 1428 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1430 + }, + "vertices": { + "#": 1431 + } + }, + [ + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1419 + }, + "min": { + "#": 1420 + } + }, + { + "x": 700, + "y": 437.73575476702496 + }, + { + "x": 650, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 412.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 409.8284840519894 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,8,9", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1429 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 407.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 407.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1441 + }, + "bounds": { + "#": 1446 + }, + "collisionFilter": { + "#": 1449 + }, + "constraintImpulse": { + "#": 1450 + }, + "density": 0.001, + "force": { + "#": 1451 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1452 + }, + "positionImpulse": { + "#": 1453 + }, + "positionPrev": { + "#": 1454 + }, + "region": { + "#": 1455 + }, + "render": { + "#": 1456 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1458 + }, + "vertices": { + "#": 1459 + } + }, + [ + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1447 + }, + "min": { + "#": 1448 + } + }, + { + "x": 150, + "y": 487.73575476702496 + }, + { + "x": 100, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 459.8284840519894 + }, + { + "endCol": 3, + "endRow": 10, + "id": "2,3,9,10", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1457 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1469 + }, + "bounds": { + "#": 1474 + }, + "collisionFilter": { + "#": 1477 + }, + "constraintImpulse": { + "#": 1478 + }, + "density": 0.001, + "force": { + "#": 1479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1480 + }, + "positionImpulse": { + "#": 1481 + }, + "positionPrev": { + "#": 1482 + }, + "region": { + "#": 1483 + }, + "render": { + "#": 1484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1486 + }, + "vertices": { + "#": 1487 + } + }, + [ + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1475 + }, + "min": { + "#": 1476 + } + }, + { + "x": 200, + "y": 487.73575476702496 + }, + { + "x": 150, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 459.8284840519894 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,9,10", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1485 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1497 + }, + "bounds": { + "#": 1502 + }, + "collisionFilter": { + "#": 1505 + }, + "constraintImpulse": { + "#": 1506 + }, + "density": 0.001, + "force": { + "#": 1507 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1508 + }, + "positionImpulse": { + "#": 1509 + }, + "positionPrev": { + "#": 1510 + }, + "region": { + "#": 1511 + }, + "render": { + "#": 1512 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1514 + }, + "vertices": { + "#": 1515 + } + }, + [ + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1503 + }, + "min": { + "#": 1504 + } + }, + { + "x": 250, + "y": 487.73575476702496 + }, + { + "x": 200, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 459.8284840519894 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1513 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1525 + }, + "bounds": { + "#": 1530 + }, + "collisionFilter": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "density": 0.001, + "force": { + "#": 1535 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 160, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1536 + }, + "positionImpulse": { + "#": 1537 + }, + "positionPrev": { + "#": 1538 + }, + "region": { + "#": 1539 + }, + "render": { + "#": 1540 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1542 + }, + "vertices": { + "#": 1543 + } + }, + [ + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1531 + }, + "min": { + "#": 1532 + } + }, + { + "x": 300, + "y": 487.73575476702496 + }, + { + "x": 250, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 459.8284840519894 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1541 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1553 + }, + "bounds": { + "#": 1558 + }, + "collisionFilter": { + "#": 1561 + }, + "constraintImpulse": { + "#": 1562 + }, + "density": 0.001, + "force": { + "#": 1563 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 163, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1564 + }, + "positionImpulse": { + "#": 1565 + }, + "positionPrev": { + "#": 1566 + }, + "region": { + "#": 1567 + }, + "render": { + "#": 1568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1570 + }, + "vertices": { + "#": 1571 + } + }, + [ + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1559 + }, + "min": { + "#": 1560 + } + }, + { + "x": 350, + "y": 487.73575476702496 + }, + { + "x": 300, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 459.8284840519894 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1569 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1581 + }, + "bounds": { + "#": 1586 + }, + "collisionFilter": { + "#": 1589 + }, + "constraintImpulse": { + "#": 1590 + }, + "density": 0.001, + "force": { + "#": 1591 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 166, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1592 + }, + "positionImpulse": { + "#": 1593 + }, + "positionPrev": { + "#": 1594 + }, + "region": { + "#": 1595 + }, + "render": { + "#": 1596 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1598 + }, + "vertices": { + "#": 1599 + } + }, + [ + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1587 + }, + "min": { + "#": 1588 + } + }, + { + "x": 400, + "y": 487.73575476702496 + }, + { + "x": 350, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 459.8284840519894 + }, + { + "endCol": 8, + "endRow": 10, + "id": "7,8,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1597 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1609 + }, + "bounds": { + "#": 1614 + }, + "collisionFilter": { + "#": 1617 + }, + "constraintImpulse": { + "#": 1618 + }, + "density": 0.001, + "force": { + "#": 1619 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 169, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1620 + }, + "positionImpulse": { + "#": 1621 + }, + "positionPrev": { + "#": 1622 + }, + "region": { + "#": 1623 + }, + "render": { + "#": 1624 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1626 + }, + "vertices": { + "#": 1627 + } + }, + [ + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1615 + }, + "min": { + "#": 1616 + } + }, + { + "x": 450, + "y": 487.73575476702496 + }, + { + "x": 400, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 459.8284840519894 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1625 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1637 + }, + "bounds": { + "#": 1642 + }, + "collisionFilter": { + "#": 1645 + }, + "constraintImpulse": { + "#": 1646 + }, + "density": 0.001, + "force": { + "#": 1647 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 172, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1648 + }, + "positionImpulse": { + "#": 1649 + }, + "positionPrev": { + "#": 1650 + }, + "region": { + "#": 1651 + }, + "render": { + "#": 1652 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1654 + }, + "vertices": { + "#": 1655 + } + }, + [ + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1643 + }, + "min": { + "#": 1644 + } + }, + { + "x": 500, + "y": 487.73575476702496 + }, + { + "x": 450, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 459.8284840519894 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1653 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1665 + }, + "bounds": { + "#": 1670 + }, + "collisionFilter": { + "#": 1673 + }, + "constraintImpulse": { + "#": 1674 + }, + "density": 0.001, + "force": { + "#": 1675 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 175, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1676 + }, + "positionImpulse": { + "#": 1677 + }, + "positionPrev": { + "#": 1678 + }, + "region": { + "#": 1679 + }, + "render": { + "#": 1680 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1682 + }, + "vertices": { + "#": 1683 + } + }, + [ + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1671 + }, + "min": { + "#": 1672 + } + }, + { + "x": 550, + "y": 487.73575476702496 + }, + { + "x": 500, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 459.8284840519894 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1681 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1693 + }, + "bounds": { + "#": 1698 + }, + "collisionFilter": { + "#": 1701 + }, + "constraintImpulse": { + "#": 1702 + }, + "density": 0.001, + "force": { + "#": 1703 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 178, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1704 + }, + "positionImpulse": { + "#": 1705 + }, + "positionPrev": { + "#": 1706 + }, + "region": { + "#": 1707 + }, + "render": { + "#": 1708 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1710 + }, + "vertices": { + "#": 1711 + } + }, + [ + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1699 + }, + "min": { + "#": 1700 + } + }, + { + "x": 600, + "y": 487.73575476702496 + }, + { + "x": 550, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 459.8284840519894 + }, + { + "endCol": 12, + "endRow": 10, + "id": "11,12,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1709 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1721 + }, + "bounds": { + "#": 1726 + }, + "collisionFilter": { + "#": 1729 + }, + "constraintImpulse": { + "#": 1730 + }, + "density": 0.001, + "force": { + "#": 1731 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 181, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1732 + }, + "positionImpulse": { + "#": 1733 + }, + "positionPrev": { + "#": 1734 + }, + "region": { + "#": 1735 + }, + "render": { + "#": 1736 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1738 + }, + "vertices": { + "#": 1739 + } + }, + [ + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1727 + }, + "min": { + "#": 1728 + } + }, + { + "x": 650, + "y": 487.73575476702496 + }, + { + "x": 600, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 459.8284840519894 + }, + { + "endCol": 13, + "endRow": 10, + "id": "12,13,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1737 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1749 + }, + "bounds": { + "#": 1754 + }, + "collisionFilter": { + "#": 1757 + }, + "constraintImpulse": { + "#": 1758 + }, + "density": 0.001, + "force": { + "#": 1759 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 184, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1760 + }, + "positionImpulse": { + "#": 1761 + }, + "positionPrev": { + "#": 1762 + }, + "region": { + "#": 1763 + }, + "render": { + "#": 1764 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1766 + }, + "vertices": { + "#": 1767 + } + }, + [ + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1755 + }, + "min": { + "#": 1756 + } + }, + { + "x": 700, + "y": 487.73575476702496 + }, + { + "x": 650, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 462.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 459.8284840519894 + }, + { + "endCol": 14, + "endRow": 10, + "id": "13,14,9,10", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1765 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 457.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 457.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1777 + }, + "bounds": { + "#": 1782 + }, + "collisionFilter": { + "#": 1785 + }, + "constraintImpulse": { + "#": 1786 + }, + "density": 0.001, + "force": { + "#": 1787 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 187, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1788 + }, + "positionImpulse": { + "#": 1789 + }, + "positionPrev": { + "#": 1790 + }, + "region": { + "#": 1791 + }, + "render": { + "#": 1792 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1794 + }, + "vertices": { + "#": 1795 + } + }, + [ + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1783 + }, + "min": { + "#": 1784 + } + }, + { + "x": 150, + "y": 537.7357547670252 + }, + { + "x": 100, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125, + "y": 509.8284840519894 + }, + { + "endCol": 3, + "endRow": 11, + "id": "2,3,10,11", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1793 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 120, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 150, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1805 + }, + "bounds": { + "#": 1810 + }, + "collisionFilter": { + "#": 1813 + }, + "constraintImpulse": { + "#": 1814 + }, + "density": 0.001, + "force": { + "#": 1815 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 190, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1816 + }, + "positionImpulse": { + "#": 1817 + }, + "positionPrev": { + "#": 1818 + }, + "region": { + "#": 1819 + }, + "render": { + "#": 1820 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1822 + }, + "vertices": { + "#": 1823 + } + }, + [ + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1811 + }, + "min": { + "#": 1812 + } + }, + { + "x": 200, + "y": 537.7357547670252 + }, + { + "x": 150, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 175, + "y": 509.8284840519894 + }, + { + "endCol": 4, + "endRow": 11, + "id": "3,4,10,11", + "startCol": 3, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1821 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 170, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1833 + }, + "bounds": { + "#": 1838 + }, + "collisionFilter": { + "#": 1841 + }, + "constraintImpulse": { + "#": 1842 + }, + "density": 0.001, + "force": { + "#": 1843 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 193, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1844 + }, + "positionImpulse": { + "#": 1845 + }, + "positionPrev": { + "#": 1846 + }, + "region": { + "#": 1847 + }, + "render": { + "#": 1848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1850 + }, + "vertices": { + "#": 1851 + } + }, + [ + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1839 + }, + "min": { + "#": 1840 + } + }, + { + "x": 250, + "y": 537.7357547670252 + }, + { + "x": 200, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 225, + "y": 509.8284840519894 + }, + { + "endCol": 5, + "endRow": 11, + "id": "4,5,10,11", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1849 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 220, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 230, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1861 + }, + "bounds": { + "#": 1866 + }, + "collisionFilter": { + "#": 1869 + }, + "constraintImpulse": { + "#": 1870 + }, + "density": 0.001, + "force": { + "#": 1871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 196, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1872 + }, + "positionImpulse": { + "#": 1873 + }, + "positionPrev": { + "#": 1874 + }, + "region": { + "#": 1875 + }, + "render": { + "#": 1876 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1878 + }, + "vertices": { + "#": 1879 + } + }, + [ + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1867 + }, + "min": { + "#": 1868 + } + }, + { + "x": 300, + "y": 537.7357547670252 + }, + { + "x": 250, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 275, + "y": 509.8284840519894 + }, + { + "endCol": 6, + "endRow": 11, + "id": "5,6,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1877 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 270, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 250, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 270, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 280, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1889 + }, + "bounds": { + "#": 1894 + }, + "collisionFilter": { + "#": 1897 + }, + "constraintImpulse": { + "#": 1898 + }, + "density": 0.001, + "force": { + "#": 1899 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 199, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1900 + }, + "positionImpulse": { + "#": 1901 + }, + "positionPrev": { + "#": 1902 + }, + "region": { + "#": 1903 + }, + "render": { + "#": 1904 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1906 + }, + "vertices": { + "#": 1907 + } + }, + [ + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1895 + }, + "min": { + "#": 1896 + } + }, + { + "x": 350, + "y": 537.7357547670252 + }, + { + "x": 300, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 325, + "y": 509.8284840519894 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1905 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 320, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 330, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 350, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1917 + }, + "bounds": { + "#": 1922 + }, + "collisionFilter": { + "#": 1925 + }, + "constraintImpulse": { + "#": 1926 + }, + "density": 0.001, + "force": { + "#": 1927 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 202, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1928 + }, + "positionImpulse": { + "#": 1929 + }, + "positionPrev": { + "#": 1930 + }, + "region": { + "#": 1931 + }, + "render": { + "#": 1932 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1934 + }, + "vertices": { + "#": 1935 + } + }, + [ + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1923 + }, + "min": { + "#": 1924 + } + }, + { + "x": 400, + "y": 537.7357547670252 + }, + { + "x": 350, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 375, + "y": 509.8284840519894 + }, + { + "endCol": 8, + "endRow": 11, + "id": "7,8,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1933 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 370, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 380, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 400, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1945 + }, + "bounds": { + "#": 1950 + }, + "collisionFilter": { + "#": 1953 + }, + "constraintImpulse": { + "#": 1954 + }, + "density": 0.001, + "force": { + "#": 1955 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 205, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1956 + }, + "positionImpulse": { + "#": 1957 + }, + "positionPrev": { + "#": 1958 + }, + "region": { + "#": 1959 + }, + "render": { + "#": 1960 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1962 + }, + "vertices": { + "#": 1963 + } + }, + [ + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1951 + }, + "min": { + "#": 1952 + } + }, + { + "x": 450, + "y": 537.7357547670252 + }, + { + "x": 400, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425, + "y": 509.8284840519894 + }, + { + "endCol": 9, + "endRow": 11, + "id": "8,9,10,11", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1961 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 400, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 430, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 1973 + }, + "bounds": { + "#": 1978 + }, + "collisionFilter": { + "#": 1981 + }, + "constraintImpulse": { + "#": 1982 + }, + "density": 0.001, + "force": { + "#": 1983 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 208, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 1984 + }, + "positionImpulse": { + "#": 1985 + }, + "positionPrev": { + "#": 1986 + }, + "region": { + "#": 1987 + }, + "render": { + "#": 1988 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1990 + }, + "vertices": { + "#": 1991 + } + }, + [ + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1979 + }, + "min": { + "#": 1980 + } + }, + { + "x": 500, + "y": 537.7357547670252 + }, + { + "x": 450, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475, + "y": 509.8284840519894 + }, + { + "endCol": 10, + "endRow": 11, + "id": "9,10,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1989 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 450, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 480, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 2001 + }, + "bounds": { + "#": 2006 + }, + "collisionFilter": { + "#": 2009 + }, + "constraintImpulse": { + "#": 2010 + }, + "density": 0.001, + "force": { + "#": 2011 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 211, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 2012 + }, + "positionImpulse": { + "#": 2013 + }, + "positionPrev": { + "#": 2014 + }, + "region": { + "#": 2015 + }, + "render": { + "#": 2016 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2018 + }, + "vertices": { + "#": 2019 + } + }, + [ + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2007 + }, + "min": { + "#": 2008 + } + }, + { + "x": 550, + "y": 537.7357547670252 + }, + { + "x": 500, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525, + "y": 509.8284840519894 + }, + { + "endCol": 11, + "endRow": 11, + "id": "10,11,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2017 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 530, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 500, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 530, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 550, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 2029 + }, + "bounds": { + "#": 2034 + }, + "collisionFilter": { + "#": 2037 + }, + "constraintImpulse": { + "#": 2038 + }, + "density": 0.001, + "force": { + "#": 2039 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 214, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 2040 + }, + "positionImpulse": { + "#": 2041 + }, + "positionPrev": { + "#": 2042 + }, + "region": { + "#": 2043 + }, + "render": { + "#": 2044 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2046 + }, + "vertices": { + "#": 2047 + } + }, + [ + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2035 + }, + "min": { + "#": 2036 + } + }, + { + "x": 600, + "y": 537.7357547670252 + }, + { + "x": 550, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 575, + "y": 509.8284840519894 + }, + { + "endCol": 12, + "endRow": 11, + "id": "11,12,10,11", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2045 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 570, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 550, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 580, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 600, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 2057 + }, + "bounds": { + "#": 2062 + }, + "collisionFilter": { + "#": 2065 + }, + "constraintImpulse": { + "#": 2066 + }, + "density": 0.001, + "force": { + "#": 2067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 217, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 2068 + }, + "positionImpulse": { + "#": 2069 + }, + "positionPrev": { + "#": 2070 + }, + "region": { + "#": 2071 + }, + "render": { + "#": 2072 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2074 + }, + "vertices": { + "#": 2075 + } + }, + [ + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2063 + }, + "min": { + "#": 2064 + } + }, + { + "x": 650, + "y": 537.7357547670252 + }, + { + "x": 600, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625, + "y": 509.8284840519894 + }, + { + "endCol": 13, + "endRow": 11, + "id": "12,13,10,11", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2073 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 600, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 630, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 650, + "y": 507.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 2085 + }, + "bounds": { + "#": 2090 + }, + "collisionFilter": { + "#": 2093 + }, + "constraintImpulse": { + "#": 2094 + }, + "density": 0.001, + "force": { + "#": 2095 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 220, + "inertia": 866.6666666666666, + "inverseInertia": 0.001153846153846154, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 2096 + }, + "positionImpulse": { + "#": 2097 + }, + "positionPrev": { + "#": 2098 + }, + "region": { + "#": 2099 + }, + "render": { + "#": 2100 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2102 + }, + "vertices": { + "#": 2103 + } + }, + [ + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2091 + }, + "min": { + "#": 2092 + } + }, + { + "x": 700, + "y": 537.7357547670252 + }, + { + "x": 650, + "y": 487.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 512.7357547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 675, + "y": 509.8284840519894 + }, + { + "endCol": 14, + "endRow": 11, + "id": "13,14,10,11", + "startCol": 13, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2101 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 670, + "y": 537.7357547670252 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 650, + "y": 507.73575476702496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 680, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 700, + "y": 507.73575476702496 + }, + [], + [], + [ + { + "#": 2115 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2116 + }, + "pointB": "", + "render": { + "#": 2117 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 2119 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/concave/concave-0.json b/tests/browser/refs/concave/concave-0.json new file mode 100644 index 00000000..c725d23d --- /dev/null +++ b/tests/browser/refs/concave/concave-0.json @@ -0,0 +1,6237 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 714 + }, + "gravity": { + "#": 718 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 712 + }, + "constraints": { + "#": 713 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 117 + }, + { + "#": 142 + }, + { + "#": 167 + }, + { + "#": 199 + }, + { + "#": 224 + }, + { + "#": 256 + }, + { + "#": 280 + }, + { + "#": 304 + }, + { + "#": 329 + }, + { + "#": 354 + }, + { + "#": 379 + }, + { + "#": 404 + }, + { + "#": 428 + }, + { + "#": 453 + }, + { + "#": 478 + }, + { + "#": 502 + }, + { + "#": 527 + }, + { + "#": 551 + }, + { + "#": 575 + }, + { + "#": 607 + }, + { + "#": 631 + }, + { + "#": 663 + }, + { + "#": 688 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 93 + }, + "bounds": { + "#": 99 + }, + "collisionFilter": { + "#": 102 + }, + "constraintImpulse": { + "#": 103 + }, + "density": 0.001, + "force": { + "#": 104 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 105 + }, + "positionImpulse": { + "#": 106 + }, + "positionPrev": { + "#": 107 + }, + "render": { + "#": 108 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 110 + }, + "vertices": { + "#": 111 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 100 + }, + "min": { + "#": 101 + } + }, + { + "x": 150, + "y": 145.2517006802721 + }, + { + "x": 50, + "y": 45.251700680272116 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 100 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 109 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 83.25170068027211 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 132, + "y": 145.2517006802721 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 68, + "y": 145.2517006802721 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 50, + "y": 83.25170068027211 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 45.251700680272116 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 118 + }, + "bounds": { + "#": 124 + }, + "collisionFilter": { + "#": 127 + }, + "constraintImpulse": { + "#": 128 + }, + "density": 0.001, + "force": { + "#": 129 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 130 + }, + "positionImpulse": { + "#": 131 + }, + "positionPrev": { + "#": 132 + }, + "render": { + "#": 133 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 135 + }, + "vertices": { + "#": 136 + } + }, + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 125 + }, + "min": { + "#": 126 + } + }, + { + "x": 260, + "y": 145.2517006802721 + }, + { + "x": 160, + "y": 45.251700680272116 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 100 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 134 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 83.25170068027211 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 242, + "y": 145.2517006802721 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 178, + "y": 145.2517006802721 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 83.25170068027211 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 210, + "y": 45.251700680272116 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 143 + }, + "bounds": { + "#": 149 + }, + "collisionFilter": { + "#": 152 + }, + "constraintImpulse": { + "#": 153 + }, + "density": 0.001, + "force": { + "#": 154 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 155 + }, + "positionImpulse": { + "#": 156 + }, + "positionPrev": { + "#": 157 + }, + "render": { + "#": 158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 160 + }, + "vertices": { + "#": 161 + } + }, + [ + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 150 + }, + "min": { + "#": 151 + } + }, + { + "x": 365.4761904761905, + "y": 150 + }, + { + "x": 265.4761904761905, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 100 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 159 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 365.4761904761905, + "y": 130 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 305.4761904761905, + "y": 150 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265.4761904761905, + "y": 100 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.4761904761905, + "y": 50 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 365.4761904761905, + "y": 70 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2216, + "axes": { + "#": 168 + }, + "bounds": { + "#": 177 + }, + "collisionFilter": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "density": 0.001, + "force": { + "#": 182 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 634.4194592174847, + "inverseInertia": 0.0015762442110988134, + "inverseMass": 0.45126353790613716, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 2.216, + "motion": 0, + "parent": null, + "position": { + "#": 183 + }, + "positionImpulse": { + "#": 184 + }, + "positionPrev": { + "#": 185 + }, + "render": { + "#": 186 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 188 + }, + "vertices": { + "#": 189 + } + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + } + ], + { + "x": 0.9998656545973652, + "y": 0.01639124023930107 + }, + { + "x": 0.04993761694389223, + "y": 0.9987523388778445 + }, + { + "x": -0.2873478855663454, + "y": 0.9578262852211513 + }, + { + "x": -0.8858315352801555, + "y": 0.4640069946705576 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.9728062146853669, + "y": -0.23162052730603974 + }, + { + "x": -0.52999894000318, + "y": -0.847998304005088 + }, + { + "x": 0, + "y": -1 + }, + { + "max": { + "#": 178 + }, + "min": { + "#": 179 + } + }, + { + "x": 430.21724041602204, + "y": 128.34250902527077 + }, + { + "x": 378.21724041602204, + "y": 50.342509025270765 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.4761904761905, + "y": 89 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.4761904761905, + "y": 89 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 187 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 430.21724041602204, + "y": 66.34250902527077 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 429.21724041602204, + "y": 127.34250902527077 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.21724041602204, + "y": 128.34250902527077 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.21724041602204, + "y": 122.34250902527077 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 378.21724041602204, + "y": 101.34250902527077 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 378.21724041602204, + "y": 81.34250902527077 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 383.21724041602204, + "y": 60.342509025270765 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 399.21724041602204, + "y": 50.342509025270765 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 430.21724041602204, + "y": 50.342509025270765 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 200 + }, + "bounds": { + "#": 206 + }, + "collisionFilter": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "density": 0.001, + "force": { + "#": 211 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 212 + }, + "positionImpulse": { + "#": 213 + }, + "positionPrev": { + "#": 214 + }, + "render": { + "#": 215 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 217 + }, + "vertices": { + "#": 218 + } + }, + [ + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 207 + }, + "min": { + "#": 208 + } + }, + { + "x": 535.6934308922125, + "y": 150 + }, + { + "x": 435.6934308922125, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.21724041602204, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.21724041602204, + "y": 100 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 216 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 535.6934308922125, + "y": 130 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.6934308922125, + "y": 150 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 435.6934308922125, + "y": 100 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475.6934308922125, + "y": 50 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 535.6934308922125, + "y": 70 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2216, + "axes": { + "#": 225 + }, + "bounds": { + "#": 234 + }, + "collisionFilter": { + "#": 237 + }, + "constraintImpulse": { + "#": 238 + }, + "density": 0.001, + "force": { + "#": 239 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 634.4194592174847, + "inverseInertia": 0.0015762442110988134, + "inverseMass": 0.45126353790613716, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 2.216, + "motion": 0, + "parent": null, + "position": { + "#": 240 + }, + "positionImpulse": { + "#": 241 + }, + "positionPrev": { + "#": 242 + }, + "render": { + "#": 243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 245 + }, + "vertices": { + "#": 246 + } + }, + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "x": 0.9998656545973652, + "y": 0.01639124023930107 + }, + { + "x": 0.04993761694389223, + "y": 0.9987523388778445 + }, + { + "x": -0.2873478855663454, + "y": 0.9578262852211513 + }, + { + "x": -0.8858315352801555, + "y": 0.4640069946705576 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.9728062146853669, + "y": -0.23162052730603974 + }, + { + "x": -0.52999894000318, + "y": -0.847998304005088 + }, + { + "x": 0, + "y": -1 + }, + { + "max": { + "#": 235 + }, + "min": { + "#": 236 + } + }, + { + "x": 600.4344808320441, + "y": 128.34250902527077 + }, + { + "x": 548.4344808320441, + "y": 50.342509025270765 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.6934308922125, + "y": 89 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.6934308922125, + "y": 89 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 244 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600.4344808320441, + "y": 66.34250902527077 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 599.4344808320441, + "y": 127.34250902527077 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 579.4344808320441, + "y": 128.34250902527077 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.4344808320441, + "y": 122.34250902527077 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 548.4344808320441, + "y": 101.34250902527077 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 548.4344808320441, + "y": 81.34250902527077 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 553.4344808320441, + "y": 60.342509025270765 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 569.4344808320441, + "y": 50.342509025270765 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 600.4344808320441, + "y": 50.342509025270765 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 257 + }, + "bounds": { + "#": 262 + }, + "collisionFilter": { + "#": 265 + }, + "constraintImpulse": { + "#": 266 + }, + "density": 0.001, + "force": { + "#": 267 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 268 + }, + "positionImpulse": { + "#": 269 + }, + "positionPrev": { + "#": 270 + }, + "render": { + "#": 271 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 273 + }, + "vertices": { + "#": 274 + } + }, + [ + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 263 + }, + "min": { + "#": 264 + } + }, + { + "x": 150, + "y": 260 + }, + { + "x": 50, + "y": 160 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 210 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 210 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 272 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 75, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 50, + "y": 210 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 160 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 160 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 281 + }, + "bounds": { + "#": 286 + }, + "collisionFilter": { + "#": 289 + }, + "constraintImpulse": { + "#": 290 + }, + "density": 0.001, + "force": { + "#": 291 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 292 + }, + "positionImpulse": { + "#": 293 + }, + "positionPrev": { + "#": 294 + }, + "render": { + "#": 295 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 297 + }, + "vertices": { + "#": 298 + } + }, + [ + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 287 + }, + "min": { + "#": 288 + } + }, + { + "x": 260, + "y": 260 + }, + { + "x": 160, + "y": 160 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 210 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 210 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 296 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 185, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 210 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 185, + "y": 160 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260, + "y": 160 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 305 + }, + "bounds": { + "#": 311 + }, + "collisionFilter": { + "#": 314 + }, + "constraintImpulse": { + "#": 315 + }, + "density": 0.001, + "force": { + "#": 316 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 317 + }, + "positionImpulse": { + "#": 318 + }, + "positionPrev": { + "#": 319 + }, + "render": { + "#": 320 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 322 + }, + "vertices": { + "#": 323 + } + }, + [ + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 312 + }, + "min": { + "#": 313 + } + }, + { + "x": 370, + "y": 255.2517006802721 + }, + { + "x": 270, + "y": 155.2517006802721 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 210 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 210 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 321 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 193.2517006802721 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352, + "y": 255.2517006802721 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288, + "y": 255.2517006802721 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 270, + "y": 193.2517006802721 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320, + "y": 155.2517006802721 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 330 + }, + "bounds": { + "#": 336 + }, + "collisionFilter": { + "#": 339 + }, + "constraintImpulse": { + "#": 340 + }, + "density": 0.001, + "force": { + "#": 341 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 342 + }, + "positionImpulse": { + "#": 343 + }, + "positionPrev": { + "#": 344 + }, + "render": { + "#": 345 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 347 + }, + "vertices": { + "#": 348 + } + }, + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 337 + }, + "min": { + "#": 338 + } + }, + { + "x": 480, + "y": 255.2517006802721 + }, + { + "x": 380, + "y": 155.2517006802721 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430, + "y": 210 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430, + "y": 210 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 346 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 193.2517006802721 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 462, + "y": 255.2517006802721 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 398, + "y": 255.2517006802721 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 193.2517006802721 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 430, + "y": 155.2517006802721 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 355 + }, + "bounds": { + "#": 361 + }, + "collisionFilter": { + "#": 364 + }, + "constraintImpulse": { + "#": 365 + }, + "density": 0.001, + "force": { + "#": 366 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 367 + }, + "positionImpulse": { + "#": 368 + }, + "positionPrev": { + "#": 369 + }, + "render": { + "#": 370 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 372 + }, + "vertices": { + "#": 373 + } + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 362 + }, + "min": { + "#": 363 + } + }, + { + "x": 585.4761904761905, + "y": 260 + }, + { + "x": 485.4761904761905, + "y": 160 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 210 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 210 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 371 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 585.4761904761905, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525.4761904761905, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 485.4761904761905, + "y": 210 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525.4761904761905, + "y": 160 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 585.4761904761905, + "y": 180 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 380 + }, + "bounds": { + "#": 386 + }, + "collisionFilter": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "density": 0.001, + "force": { + "#": 391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 392 + }, + "positionImpulse": { + "#": 393 + }, + "positionPrev": { + "#": 394 + }, + "render": { + "#": 395 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 397 + }, + "vertices": { + "#": 398 + } + }, + [ + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 387 + }, + "min": { + "#": 388 + } + }, + { + "x": 690.952380952381, + "y": 260 + }, + { + "x": 590.952380952381, + "y": 160 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.4761904761905, + "y": 210 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.4761904761905, + "y": 210 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 396 + }, + "strokeStyle": "#FF6B6B", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 690.952380952381, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630.952380952381, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 590.952380952381, + "y": 210 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 630.952380952381, + "y": 160 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 690.952380952381, + "y": 180 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 405 + }, + "bounds": { + "#": 410 + }, + "collisionFilter": { + "#": 413 + }, + "constraintImpulse": { + "#": 414 + }, + "density": 0.001, + "force": { + "#": 415 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 416 + }, + "positionImpulse": { + "#": 417 + }, + "positionPrev": { + "#": 418 + }, + "render": { + "#": 419 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 421 + }, + "vertices": { + "#": 422 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 411 + }, + "min": { + "#": 412 + } + }, + { + "x": 150, + "y": 370 + }, + { + "x": 50, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 320 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 420 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 75, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 50, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 270 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 429 + }, + "bounds": { + "#": 435 + }, + "collisionFilter": { + "#": 438 + }, + "constraintImpulse": { + "#": 439 + }, + "density": 0.001, + "force": { + "#": 440 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 441 + }, + "positionImpulse": { + "#": 442 + }, + "positionPrev": { + "#": 443 + }, + "render": { + "#": 444 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 446 + }, + "vertices": { + "#": 447 + } + }, + [ + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 436 + }, + "min": { + "#": 437 + } + }, + { + "x": 255.47619047619048, + "y": 370 + }, + { + "x": 155.47619047619048, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 320 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 445 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.47619047619048, + "y": 350 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.47619047619048, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 155.47619047619048, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195.47619047619048, + "y": 270 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 255.47619047619048, + "y": 290 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 454 + }, + "bounds": { + "#": 460 + }, + "collisionFilter": { + "#": 463 + }, + "constraintImpulse": { + "#": 464 + }, + "density": 0.001, + "force": { + "#": 465 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 466 + }, + "positionImpulse": { + "#": 467 + }, + "positionPrev": { + "#": 468 + }, + "render": { + "#": 469 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 471 + }, + "vertices": { + "#": 472 + } + }, + [ + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 461 + }, + "min": { + "#": 462 + } + }, + { + "x": 365.4761904761905, + "y": 365.2517006802721 + }, + { + "x": 265.4761904761905, + "y": 265.2517006802721 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 315.4761904761905, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 315.4761904761905, + "y": 320 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 470 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 365.4761904761905, + "y": 303.2517006802721 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 347.4761904761905, + "y": 365.2517006802721 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 283.4761904761905, + "y": 365.2517006802721 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265.4761904761905, + "y": 303.2517006802721 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 315.4761904761905, + "y": 265.2517006802721 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 479 + }, + "bounds": { + "#": 484 + }, + "collisionFilter": { + "#": 487 + }, + "constraintImpulse": { + "#": 488 + }, + "density": 0.001, + "force": { + "#": 489 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 490 + }, + "positionImpulse": { + "#": 491 + }, + "positionPrev": { + "#": 492 + }, + "render": { + "#": 493 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 495 + }, + "vertices": { + "#": 496 + } + }, + [ + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 485 + }, + "min": { + "#": 486 + } + }, + { + "x": 475.4761904761905, + "y": 370 + }, + { + "x": 375.4761904761905, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425.4761904761905, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425.4761904761905, + "y": 320 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 494 + }, + "strokeStyle": "#FF6B6B", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475.4761904761905, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400.4761904761905, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375.4761904761905, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400.4761904761905, + "y": 270 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 475.4761904761905, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 503 + }, + "bounds": { + "#": 509 + }, + "collisionFilter": { + "#": 512 + }, + "constraintImpulse": { + "#": 513 + }, + "density": 0.001, + "force": { + "#": 514 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 515 + }, + "positionImpulse": { + "#": 516 + }, + "positionPrev": { + "#": 517 + }, + "render": { + "#": 518 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 520 + }, + "vertices": { + "#": 521 + } + }, + [ + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 510 + }, + "min": { + "#": 511 + } + }, + { + "x": 585.4761904761905, + "y": 365.2517006802721 + }, + { + "x": 485.4761904761905, + "y": 265.2517006802721 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 535.4761904761905, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 535.4761904761905, + "y": 320 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 519 + }, + "strokeStyle": "#FF6B6B", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 585.4761904761905, + "y": 303.2517006802721 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 567.4761904761905, + "y": 365.2517006802721 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 503.4761904761905, + "y": 365.2517006802721 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.4761904761905, + "y": 303.2517006802721 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 535.4761904761905, + "y": 265.2517006802721 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 528 + }, + "bounds": { + "#": 533 + }, + "collisionFilter": { + "#": 536 + }, + "constraintImpulse": { + "#": 537 + }, + "density": 0.001, + "force": { + "#": 538 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 539 + }, + "positionImpulse": { + "#": 540 + }, + "positionPrev": { + "#": 541 + }, + "render": { + "#": 542 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 544 + }, + "vertices": { + "#": 545 + } + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 534 + }, + "min": { + "#": 535 + } + }, + { + "x": 695.4761904761905, + "y": 370 + }, + { + "x": 595.4761904761905, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.4761904761905, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.4761904761905, + "y": 320 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 543 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 695.4761904761905, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620.4761904761905, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 595.4761904761905, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 620.4761904761905, + "y": 270 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 695.4761904761905, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 552 + }, + "bounds": { + "#": 557 + }, + "collisionFilter": { + "#": 560 + }, + "constraintImpulse": { + "#": 561 + }, + "density": 0.001, + "force": { + "#": 562 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 563 + }, + "positionImpulse": { + "#": 564 + }, + "positionPrev": { + "#": 565 + }, + "render": { + "#": 566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 568 + }, + "vertices": { + "#": 569 + } + }, + [ + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 558 + }, + "min": { + "#": 559 + } + }, + { + "x": 150, + "y": 480 + }, + { + "x": 50, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 430 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 430 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 567 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 480 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 75, + "y": 480 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 50, + "y": 430 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 380 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2216, + "axes": { + "#": 576 + }, + "bounds": { + "#": 585 + }, + "collisionFilter": { + "#": 588 + }, + "constraintImpulse": { + "#": 589 + }, + "density": 0.001, + "force": { + "#": 590 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 634.4194592174847, + "inverseInertia": 0.0015762442110988134, + "inverseMass": 0.45126353790613716, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 2.216, + "motion": 0, + "parent": null, + "position": { + "#": 591 + }, + "positionImpulse": { + "#": 592 + }, + "positionPrev": { + "#": 593 + }, + "render": { + "#": 594 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 596 + }, + "vertices": { + "#": 597 + } + }, + [ + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + } + ], + { + "x": 0.9998656545973652, + "y": 0.01639124023930107 + }, + { + "x": 0.04993761694389223, + "y": 0.9987523388778445 + }, + { + "x": -0.2873478855663454, + "y": 0.9578262852211513 + }, + { + "x": -0.8858315352801555, + "y": 0.4640069946705576 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.9728062146853669, + "y": -0.23162052730603974 + }, + { + "x": -0.52999894000318, + "y": -0.847998304005088 + }, + { + "x": 0, + "y": -1 + }, + { + "max": { + "#": 586 + }, + "min": { + "#": 587 + } + }, + { + "x": 214.74104993983153, + "y": 458.3425090252708 + }, + { + "x": 162.74104993983153, + "y": 380.3425090252708 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 186, + "y": 419 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 186, + "y": 419 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 595 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.74104993983153, + "y": 396.3425090252708 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 213.74104993983153, + "y": 457.3425090252708 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.74104993983153, + "y": 458.3425090252708 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 173.74104993983153, + "y": 452.3425090252708 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 162.74104993983153, + "y": 431.3425090252708 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 162.74104993983153, + "y": 411.3425090252708 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 167.74104993983153, + "y": 390.3425090252708 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 183.74104993983153, + "y": 380.3425090252708 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 214.74104993983153, + "y": 380.3425090252708 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 608 + }, + "bounds": { + "#": 613 + }, + "collisionFilter": { + "#": 616 + }, + "constraintImpulse": { + "#": 617 + }, + "density": 0.001, + "force": { + "#": 618 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 619 + }, + "positionImpulse": { + "#": 620 + }, + "positionPrev": { + "#": 621 + }, + "render": { + "#": 622 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 624 + }, + "vertices": { + "#": 625 + } + }, + [ + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 614 + }, + "min": { + "#": 615 + } + }, + { + "x": 324.74104993983156, + "y": 480 + }, + { + "x": 224.74104993983156, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 274.74104993983156, + "y": 430 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 274.74104993983156, + "y": 430 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 623 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 324.74104993983156, + "y": 480 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.74104993983156, + "y": 480 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 224.74104993983156, + "y": 430 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 249.74104993983156, + "y": 380 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 324.74104993983156, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2216, + "axes": { + "#": 632 + }, + "bounds": { + "#": 641 + }, + "collisionFilter": { + "#": 644 + }, + "constraintImpulse": { + "#": 645 + }, + "density": 0.001, + "force": { + "#": 646 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 634.4194592174847, + "inverseInertia": 0.0015762442110988134, + "inverseMass": 0.45126353790613716, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 2.216, + "motion": 0, + "parent": null, + "position": { + "#": 647 + }, + "positionImpulse": { + "#": 648 + }, + "positionPrev": { + "#": 649 + }, + "render": { + "#": 650 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 652 + }, + "vertices": { + "#": 653 + } + }, + [ + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + } + ], + { + "x": 0.9998656545973652, + "y": 0.01639124023930107 + }, + { + "x": 0.04993761694389223, + "y": 0.9987523388778445 + }, + { + "x": -0.2873478855663454, + "y": 0.9578262852211513 + }, + { + "x": -0.8858315352801555, + "y": 0.4640069946705576 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.9728062146853669, + "y": -0.23162052730603974 + }, + { + "x": -0.52999894000318, + "y": -0.847998304005088 + }, + { + "x": 0, + "y": -1 + }, + { + "max": { + "#": 642 + }, + "min": { + "#": 643 + } + }, + { + "x": 389.4820998796631, + "y": 458.3425090252708 + }, + { + "x": 337.4820998796631, + "y": 380.3425090252708 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360.74104993983156, + "y": 419 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360.74104993983156, + "y": 419 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 651 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.4820998796631, + "y": 396.3425090252708 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 388.4820998796631, + "y": 457.3425090252708 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 368.4820998796631, + "y": 458.3425090252708 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 348.4820998796631, + "y": 452.3425090252708 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.4820998796631, + "y": 431.3425090252708 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 337.4820998796631, + "y": 411.3425090252708 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 342.4820998796631, + "y": 390.3425090252708 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.4820998796631, + "y": 380.3425090252708 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 389.4820998796631, + "y": 380.3425090252708 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 664 + }, + "bounds": { + "#": 670 + }, + "collisionFilter": { + "#": 673 + }, + "constraintImpulse": { + "#": 674 + }, + "density": 0.001, + "force": { + "#": 675 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 676 + }, + "positionImpulse": { + "#": 677 + }, + "positionPrev": { + "#": 678 + }, + "render": { + "#": 679 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 681 + }, + "vertices": { + "#": 682 + } + }, + [ + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 671 + }, + "min": { + "#": 672 + } + }, + { + "x": 499.4820998796631, + "y": 475.2517006802721 + }, + { + "x": 399.4820998796631, + "y": 375.2517006802721 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 449.4820998796631, + "y": 430 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 449.4820998796631, + "y": 430 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 680 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 499.4820998796631, + "y": 413.2517006802721 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 481.4820998796631, + "y": 475.2517006802721 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 417.4820998796631, + "y": 475.2517006802721 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 399.4820998796631, + "y": 413.2517006802721 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 449.4820998796631, + "y": 375.2517006802721 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 689 + }, + "bounds": { + "#": 694 + }, + "collisionFilter": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "density": 0.001, + "force": { + "#": 699 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 700 + }, + "positionImpulse": { + "#": 701 + }, + "positionPrev": { + "#": 702 + }, + "render": { + "#": 703 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 705 + }, + "vertices": { + "#": 706 + } + }, + [ + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 695 + }, + "min": { + "#": 696 + } + }, + { + "x": 609.4820998796631, + "y": 480 + }, + { + "x": 509.4820998796631, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 559.4820998796631, + "y": 430 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 559.4820998796631, + "y": 430 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 704 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 609.4820998796631, + "y": 480 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 534.4820998796631, + "y": 480 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 509.4820998796631, + "y": 430 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 534.4820998796631, + "y": 380 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 609.4820998796631, + "y": 380 + }, + [], + [], + [ + { + "#": 715 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 716 + }, + "pointB": "", + "render": { + "#": 717 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/concave/concave-10.json b/tests/browser/refs/concave/concave-10.json new file mode 100644 index 00000000..9be9b3d9 --- /dev/null +++ b/tests/browser/refs/concave/concave-10.json @@ -0,0 +1,6517 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 742 + }, + "gravity": { + "#": 746 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 740 + }, + "constraints": { + "#": 741 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 122 + }, + { + "#": 148 + }, + { + "#": 174 + }, + { + "#": 207 + }, + { + "#": 233 + }, + { + "#": 266 + }, + { + "#": 291 + }, + { + "#": 316 + }, + { + "#": 342 + }, + { + "#": 368 + }, + { + "#": 394 + }, + { + "#": 420 + }, + { + "#": 445 + }, + { + "#": 471 + }, + { + "#": 497 + }, + { + "#": 522 + }, + { + "#": 548 + }, + { + "#": 573 + }, + { + "#": 598 + }, + { + "#": 631 + }, + { + "#": 656 + }, + { + "#": 689 + }, + { + "#": 715 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 97 + }, + "bounds": { + "#": 103 + }, + "collisionFilter": { + "#": 106 + }, + "constraintImpulse": { + "#": 107 + }, + "density": 0.001, + "force": { + "#": 108 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 109 + }, + "positionImpulse": { + "#": 110 + }, + "positionPrev": { + "#": 111 + }, + "region": { + "#": 112 + }, + "render": { + "#": 113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 115 + }, + "vertices": { + "#": 116 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 104 + }, + "min": { + "#": 105 + } + }, + { + "x": 150, + "y": 162.98745544729786 + }, + { + "x": 50, + "y": 62.98745544729784 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 114.82848405199007 + }, + { + "endCol": 3, + "endRow": 3, + "id": "1,3,1,3", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 114 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 100.98745544729783 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 132, + "y": 162.98745544729786 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 68, + "y": 162.98745544729786 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 50, + "y": 100.98745544729783 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 100, + "y": 62.98745544729784 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 123 + }, + "bounds": { + "#": 129 + }, + "collisionFilter": { + "#": 132 + }, + "constraintImpulse": { + "#": 133 + }, + "density": 0.001, + "force": { + "#": 134 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 135 + }, + "positionImpulse": { + "#": 136 + }, + "positionPrev": { + "#": 137 + }, + "region": { + "#": 138 + }, + "render": { + "#": 139 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 141 + }, + "vertices": { + "#": 142 + } + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 130 + }, + "min": { + "#": 131 + } + }, + { + "x": 260, + "y": 162.98745544729786 + }, + { + "x": 160, + "y": 62.98745544729784 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 114.82848405199007 + }, + { + "endCol": 5, + "endRow": 3, + "id": "3,5,1,3", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 140 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 100.98745544729783 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 242, + "y": 162.98745544729786 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 178, + "y": 162.98745544729786 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 100.98745544729783 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 210, + "y": 62.98745544729784 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 149 + }, + "bounds": { + "#": 155 + }, + "collisionFilter": { + "#": 158 + }, + "constraintImpulse": { + "#": 159 + }, + "density": 0.001, + "force": { + "#": 160 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 161 + }, + "positionImpulse": { + "#": 162 + }, + "positionPrev": { + "#": 163 + }, + "region": { + "#": 164 + }, + "render": { + "#": 165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 167 + }, + "vertices": { + "#": 168 + } + }, + [ + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 156 + }, + "min": { + "#": 157 + } + }, + { + "x": 365.4761904761905, + "y": 167.73575476702575 + }, + { + "x": 265.4761904761905, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 114.82848405199007 + }, + { + "endCol": 7, + "endRow": 3, + "id": "5,7,1,3", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 166 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 365.4761904761905, + "y": 147.73575476702575 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 305.4761904761905, + "y": 167.73575476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265.4761904761905, + "y": 117.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.4761904761905, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 365.4761904761905, + "y": 87.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2216, + "axes": { + "#": 175 + }, + "bounds": { + "#": 184 + }, + "collisionFilter": { + "#": 187 + }, + "constraintImpulse": { + "#": 188 + }, + "density": 0.001, + "force": { + "#": 189 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 634.4194592174847, + "inverseInertia": 0.0015762442110988134, + "inverseMass": 0.45126353790613716, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 2.216, + "motion": 0, + "parent": null, + "position": { + "#": 190 + }, + "positionImpulse": { + "#": 191 + }, + "positionPrev": { + "#": 192 + }, + "region": { + "#": 193 + }, + "render": { + "#": 194 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 196 + }, + "vertices": { + "#": 197 + } + }, + [ + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": 0.9998656545973652, + "y": 0.01639124023930107 + }, + { + "x": 0.04993761694389223, + "y": 0.9987523388778445 + }, + { + "x": -0.2873478855663454, + "y": 0.9578262852211513 + }, + { + "x": -0.8858315352801555, + "y": 0.4640069946705576 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.9728062146853669, + "y": -0.23162052730603974 + }, + { + "x": -0.52999894000318, + "y": -0.847998304005088 + }, + { + "x": 0, + "y": -1 + }, + { + "max": { + "#": 185 + }, + "min": { + "#": 186 + } + }, + { + "x": 430.21724041602204, + "y": 146.07826379229653 + }, + { + "x": 378.21724041602204, + "y": 68.0782637922965 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.4761904761905, + "y": 106.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.4761904761905, + "y": 103.82848405199007 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,1,3", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 195 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 430.21724041602204, + "y": 84.0782637922965 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 429.21724041602204, + "y": 145.07826379229653 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 409.21724041602204, + "y": 146.07826379229653 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.21724041602204, + "y": 140.07826379229653 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 378.21724041602204, + "y": 119.0782637922965 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 378.21724041602204, + "y": 99.0782637922965 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 383.21724041602204, + "y": 78.0782637922965 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 399.21724041602204, + "y": 68.0782637922965 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 430.21724041602204, + "y": 68.0782637922965 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 208 + }, + "bounds": { + "#": 214 + }, + "collisionFilter": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "density": 0.001, + "force": { + "#": 219 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 220 + }, + "positionImpulse": { + "#": 221 + }, + "positionPrev": { + "#": 222 + }, + "region": { + "#": 223 + }, + "render": { + "#": 224 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 226 + }, + "vertices": { + "#": 227 + } + }, + [ + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 215 + }, + "min": { + "#": 216 + } + }, + { + "x": 535.6934308922125, + "y": 167.73575476702575 + }, + { + "x": 435.6934308922125, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.21724041602204, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.21724041602204, + "y": 114.82848405199007 + }, + { + "endCol": 11, + "endRow": 3, + "id": "9,11,1,3", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 225 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 535.6934308922125, + "y": 147.73575476702575 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475.6934308922125, + "y": 167.73575476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 435.6934308922125, + "y": 117.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475.6934308922125, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 535.6934308922125, + "y": 87.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2216, + "axes": { + "#": 234 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 634.4194592174847, + "inverseInertia": 0.0015762442110988134, + "inverseMass": 0.45126353790613716, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 2.216, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "region": { + "#": 252 + }, + "render": { + "#": 253 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 255 + }, + "vertices": { + "#": 256 + } + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0.9998656545973652, + "y": 0.01639124023930107 + }, + { + "x": 0.04993761694389223, + "y": 0.9987523388778445 + }, + { + "x": -0.2873478855663454, + "y": 0.9578262852211513 + }, + { + "x": -0.8858315352801555, + "y": 0.4640069946705576 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.9728062146853669, + "y": -0.23162052730603974 + }, + { + "x": -0.52999894000318, + "y": -0.847998304005088 + }, + { + "x": 0, + "y": -1 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 600.4344808320441, + "y": 146.07826379229653 + }, + { + "x": 548.4344808320441, + "y": 68.0782637922965 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.6934308922125, + "y": 106.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 571.6934308922125, + "y": 103.82848405199007 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,1,3", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 254 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600.4344808320441, + "y": 84.0782637922965 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 599.4344808320441, + "y": 145.07826379229653 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 579.4344808320441, + "y": 146.07826379229653 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.4344808320441, + "y": 140.07826379229653 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 548.4344808320441, + "y": 119.0782637922965 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 548.4344808320441, + "y": 99.0782637922965 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 553.4344808320441, + "y": 78.0782637922965 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 569.4344808320441, + "y": 68.0782637922965 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 600.4344808320441, + "y": 68.0782637922965 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 267 + }, + "bounds": { + "#": 272 + }, + "collisionFilter": { + "#": 275 + }, + "constraintImpulse": { + "#": 276 + }, + "density": 0.001, + "force": { + "#": 277 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 278 + }, + "positionImpulse": { + "#": 279 + }, + "positionPrev": { + "#": 280 + }, + "region": { + "#": 281 + }, + "render": { + "#": 282 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 284 + }, + "vertices": { + "#": 285 + } + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 273 + }, + "min": { + "#": 274 + } + }, + { + "x": 150, + "y": 277.73575476702587 + }, + { + "x": 50, + "y": 177.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 227.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 224.8284840519903 + }, + { + "endCol": 3, + "endRow": 5, + "id": "1,3,3,5", + "startCol": 1, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 283 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 277.73575476702587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 75, + "y": 277.73575476702587 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 50, + "y": 227.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 177.73575476702598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 177.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 292 + }, + "bounds": { + "#": 297 + }, + "collisionFilter": { + "#": 300 + }, + "constraintImpulse": { + "#": 301 + }, + "density": 0.001, + "force": { + "#": 302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 303 + }, + "positionImpulse": { + "#": 304 + }, + "positionPrev": { + "#": 305 + }, + "region": { + "#": 306 + }, + "render": { + "#": 307 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 309 + }, + "vertices": { + "#": 310 + } + }, + [ + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 298 + }, + "min": { + "#": 299 + } + }, + { + "x": 260, + "y": 277.73575476702587 + }, + { + "x": 160, + "y": 177.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 227.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 224.8284840519903 + }, + { + "endCol": 5, + "endRow": 5, + "id": "3,5,3,5", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 308 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 277.73575476702587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 185, + "y": 277.73575476702587 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 227.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 185, + "y": 177.73575476702598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 260, + "y": 177.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 317 + }, + "bounds": { + "#": 323 + }, + "collisionFilter": { + "#": 326 + }, + "constraintImpulse": { + "#": 327 + }, + "density": 0.001, + "force": { + "#": 328 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 329 + }, + "positionImpulse": { + "#": 330 + }, + "positionPrev": { + "#": 331 + }, + "region": { + "#": 332 + }, + "render": { + "#": 333 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 335 + }, + "vertices": { + "#": 336 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 324 + }, + "min": { + "#": 325 + } + }, + { + "x": 370, + "y": 272.987455447298 + }, + { + "x": 270, + "y": 172.9874554472981 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 227.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 224.8284840519903 + }, + { + "endCol": 7, + "endRow": 5, + "id": "5,7,3,5", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 334 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 210.9874554472981 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352, + "y": 272.987455447298 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288, + "y": 272.987455447298 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 270, + "y": 210.9874554472981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320, + "y": 172.9874554472981 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 343 + }, + "bounds": { + "#": 349 + }, + "collisionFilter": { + "#": 352 + }, + "constraintImpulse": { + "#": 353 + }, + "density": 0.001, + "force": { + "#": 354 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 355 + }, + "positionImpulse": { + "#": 356 + }, + "positionPrev": { + "#": 357 + }, + "region": { + "#": 358 + }, + "render": { + "#": 359 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 361 + }, + "vertices": { + "#": 362 + } + }, + [ + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 350 + }, + "min": { + "#": 351 + } + }, + { + "x": 480, + "y": 272.987455447298 + }, + { + "x": 380, + "y": 172.9874554472981 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430, + "y": 227.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 430, + "y": 224.8284840519903 + }, + { + "endCol": 10, + "endRow": 5, + "id": "7,10,3,5", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 360 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 210.9874554472981 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 462, + "y": 272.987455447298 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 398, + "y": 272.987455447298 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 210.9874554472981 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 430, + "y": 172.9874554472981 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 369 + }, + "bounds": { + "#": 375 + }, + "collisionFilter": { + "#": 378 + }, + "constraintImpulse": { + "#": 379 + }, + "density": 0.001, + "force": { + "#": 380 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 381 + }, + "positionImpulse": { + "#": 382 + }, + "positionPrev": { + "#": 383 + }, + "region": { + "#": 384 + }, + "render": { + "#": 385 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 387 + }, + "vertices": { + "#": 388 + } + }, + [ + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 376 + }, + "min": { + "#": 377 + } + }, + { + "x": 585.4761904761905, + "y": 277.73575476702587 + }, + { + "x": 485.4761904761905, + "y": 177.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 227.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 224.8284840519903 + }, + { + "endCol": 12, + "endRow": 5, + "id": "10,12,3,5", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 386 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 585.4761904761905, + "y": 257.735754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525.4761904761905, + "y": 277.73575476702587 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 485.4761904761905, + "y": 227.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525.4761904761905, + "y": 177.73575476702598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 585.4761904761905, + "y": 197.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 395 + }, + "bounds": { + "#": 401 + }, + "collisionFilter": { + "#": 404 + }, + "constraintImpulse": { + "#": 405 + }, + "density": 0.001, + "force": { + "#": 406 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 407 + }, + "positionImpulse": { + "#": 408 + }, + "positionPrev": { + "#": 409 + }, + "region": { + "#": 410 + }, + "render": { + "#": 411 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 413 + }, + "vertices": { + "#": 414 + } + }, + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 402 + }, + "min": { + "#": 403 + } + }, + { + "x": 690.952380952381, + "y": 277.73575476702587 + }, + { + "x": 590.952380952381, + "y": 177.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.4761904761905, + "y": 227.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.4761904761905, + "y": 224.8284840519903 + }, + { + "endCol": 14, + "endRow": 5, + "id": "12,14,3,5", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 412 + }, + "strokeStyle": "#FF6B6B", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 690.952380952381, + "y": 257.735754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 630.952380952381, + "y": 277.73575476702587 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 590.952380952381, + "y": 227.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 630.952380952381, + "y": 177.73575476702598 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 690.952380952381, + "y": 197.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 421 + }, + "bounds": { + "#": 426 + }, + "collisionFilter": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "density": 0.001, + "force": { + "#": 431 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 432 + }, + "positionImpulse": { + "#": 433 + }, + "positionPrev": { + "#": 434 + }, + "region": { + "#": 435 + }, + "render": { + "#": 436 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 438 + }, + "vertices": { + "#": 439 + } + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 427 + }, + "min": { + "#": 428 + } + }, + { + "x": 150, + "y": 387.73575476702496 + }, + { + "x": 50, + "y": 287.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 334.8284840519894 + }, + { + "endCol": 3, + "endRow": 8, + "id": "1,3,5,8", + "startCol": 1, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 437 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 75, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 50, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 287.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 287.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5600, + "axes": { + "#": 446 + }, + "bounds": { + "#": 452 + }, + "collisionFilter": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "density": 0.001, + "force": { + "#": 457 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 17168.888888888887, + "inverseInertia": 0.00005824488739321771, + "inverseMass": 0.17857142857142858, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 5.6, + "motion": 0, + "parent": null, + "position": { + "#": 458 + }, + "positionImpulse": { + "#": 459 + }, + "positionPrev": { + "#": 460 + }, + "region": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "x": 0.31622776601683794, + "y": 0.9486832980505138 + }, + { + "x": -0.7808688094430304, + "y": 0.6246950475544243 + }, + { + "x": -0.7808688094430304, + "y": -0.6246950475544243 + }, + { + "x": 0.31622776601683794, + "y": -0.9486832980505138 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 453 + }, + "min": { + "#": 454 + } + }, + { + "x": 255.47619047619048, + "y": 387.73575476702496 + }, + { + "x": 155.47619047619048, + "y": 287.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210, + "y": 334.8284840519894 + }, + { + "endCol": 5, + "endRow": 8, + "id": "3,5,5,8", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.47619047619048, + "y": 367.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.47619047619048, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 155.47619047619048, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195.47619047619048, + "y": 287.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 255.47619047619048, + "y": 307.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 472 + }, + "bounds": { + "#": 478 + }, + "collisionFilter": { + "#": 481 + }, + "constraintImpulse": { + "#": 482 + }, + "density": 0.001, + "force": { + "#": 483 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 484 + }, + "positionImpulse": { + "#": 485 + }, + "positionPrev": { + "#": 486 + }, + "region": { + "#": 487 + }, + "render": { + "#": 488 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 490 + }, + "vertices": { + "#": 491 + } + }, + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 479 + }, + "min": { + "#": 480 + } + }, + { + "x": 365.4761904761905, + "y": 382.98745544729707 + }, + { + "x": 265.4761904761905, + "y": 282.98745544729707 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 315.4761904761905, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 315.4761904761905, + "y": 334.8284840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "5,7,5,7", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 489 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 365.4761904761905, + "y": 320.98745544729707 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 347.4761904761905, + "y": 382.98745544729707 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 283.4761904761905, + "y": 382.98745544729707 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265.4761904761905, + "y": 320.98745544729707 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 315.4761904761905, + "y": 282.98745544729707 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 498 + }, + "bounds": { + "#": 503 + }, + "collisionFilter": { + "#": 506 + }, + "constraintImpulse": { + "#": 507 + }, + "density": 0.001, + "force": { + "#": 508 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 509 + }, + "positionImpulse": { + "#": 510 + }, + "positionPrev": { + "#": 511 + }, + "region": { + "#": 512 + }, + "render": { + "#": 513 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 515 + }, + "vertices": { + "#": 516 + } + }, + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 504 + }, + "min": { + "#": 505 + } + }, + { + "x": 475.4761904761905, + "y": 387.73575476702496 + }, + { + "x": 375.4761904761905, + "y": 287.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425.4761904761905, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 425.4761904761905, + "y": 334.8284840519894 + }, + { + "endCol": 9, + "endRow": 8, + "id": "7,9,5,8", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 514 + }, + "strokeStyle": "#FF6B6B", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475.4761904761905, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400.4761904761905, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375.4761904761905, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400.4761904761905, + "y": 287.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 475.4761904761905, + "y": 287.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 523 + }, + "bounds": { + "#": 529 + }, + "collisionFilter": { + "#": 532 + }, + "constraintImpulse": { + "#": 533 + }, + "density": 0.001, + "force": { + "#": 534 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 535 + }, + "positionImpulse": { + "#": 536 + }, + "positionPrev": { + "#": 537 + }, + "region": { + "#": 538 + }, + "render": { + "#": 539 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 541 + }, + "vertices": { + "#": 542 + } + }, + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 530 + }, + "min": { + "#": 531 + } + }, + { + "x": 585.4761904761905, + "y": 382.98745544729707 + }, + { + "x": 485.4761904761905, + "y": 282.98745544729707 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 535.4761904761905, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 535.4761904761905, + "y": 334.8284840519894 + }, + { + "endCol": 12, + "endRow": 7, + "id": "10,12,5,7", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 540 + }, + "strokeStyle": "#FF6B6B", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 585.4761904761905, + "y": 320.98745544729707 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 567.4761904761905, + "y": 382.98745544729707 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 503.4761904761905, + "y": 382.98745544729707 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 485.4761904761905, + "y": 320.98745544729707 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 535.4761904761905, + "y": 282.98745544729707 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 549 + }, + "bounds": { + "#": 554 + }, + "collisionFilter": { + "#": 557 + }, + "constraintImpulse": { + "#": 558 + }, + "density": 0.001, + "force": { + "#": 559 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 560 + }, + "positionImpulse": { + "#": 561 + }, + "positionPrev": { + "#": 562 + }, + "region": { + "#": 563 + }, + "render": { + "#": 564 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 566 + }, + "vertices": { + "#": 567 + } + }, + [ + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 555 + }, + "min": { + "#": 556 + } + }, + { + "x": 695.4761904761905, + "y": 387.73575476702496 + }, + { + "x": 595.4761904761905, + "y": 287.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.4761904761905, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.4761904761905, + "y": 334.8284840519894 + }, + { + "endCol": 14, + "endRow": 8, + "id": "12,14,5,8", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 565 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 695.4761904761905, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620.4761904761905, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 595.4761904761905, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 620.4761904761905, + "y": 287.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 695.4761904761905, + "y": 287.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 574 + }, + "bounds": { + "#": 579 + }, + "collisionFilter": { + "#": 582 + }, + "constraintImpulse": { + "#": 583 + }, + "density": 0.001, + "force": { + "#": 584 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 585 + }, + "positionImpulse": { + "#": 586 + }, + "positionPrev": { + "#": 587 + }, + "region": { + "#": 588 + }, + "render": { + "#": 589 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 591 + }, + "vertices": { + "#": 592 + } + }, + [ + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 580 + }, + "min": { + "#": 581 + } + }, + { + "x": 150, + "y": 497.73575476702496 + }, + { + "x": 50, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 447.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 444.8284840519894 + }, + { + "endCol": 3, + "endRow": 10, + "id": "1,3,8,10", + "startCol": 1, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 590 + }, + "strokeStyle": "#C44D58", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 497.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 75, + "y": 497.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 50, + "y": 447.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2216, + "axes": { + "#": 599 + }, + "bounds": { + "#": 608 + }, + "collisionFilter": { + "#": 611 + }, + "constraintImpulse": { + "#": 612 + }, + "density": 0.001, + "force": { + "#": 613 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 634.4194592174847, + "inverseInertia": 0.0015762442110988134, + "inverseMass": 0.45126353790613716, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 2.216, + "motion": 0, + "parent": null, + "position": { + "#": 614 + }, + "positionImpulse": { + "#": 615 + }, + "positionPrev": { + "#": 616 + }, + "region": { + "#": 617 + }, + "render": { + "#": 618 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 620 + }, + "vertices": { + "#": 621 + } + }, + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + } + ], + { + "x": 0.9998656545973652, + "y": 0.01639124023930107 + }, + { + "x": 0.04993761694389223, + "y": 0.9987523388778445 + }, + { + "x": -0.2873478855663454, + "y": 0.9578262852211513 + }, + { + "x": -0.8858315352801555, + "y": 0.4640069946705576 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.9728062146853669, + "y": -0.23162052730603974 + }, + { + "x": -0.52999894000318, + "y": -0.847998304005088 + }, + { + "x": 0, + "y": -1 + }, + { + "max": { + "#": 609 + }, + "min": { + "#": 610 + } + }, + { + "x": 214.74104993983153, + "y": 476.07826379229573 + }, + { + "x": 162.74104993983153, + "y": 398.07826379229573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 186, + "y": 436.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 186, + "y": 433.8284840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 619 + }, + "strokeStyle": "#4ECDC4", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.74104993983153, + "y": 414.07826379229573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 213.74104993983153, + "y": 475.07826379229573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 193.74104993983153, + "y": 476.07826379229573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 173.74104993983153, + "y": 470.07826379229573 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 162.74104993983153, + "y": 449.07826379229573 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 162.74104993983153, + "y": 429.07826379229573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 167.74104993983153, + "y": 408.07826379229573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 183.74104993983153, + "y": 398.07826379229573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 214.74104993983153, + "y": 398.07826379229573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 632 + }, + "bounds": { + "#": 637 + }, + "collisionFilter": { + "#": 640 + }, + "constraintImpulse": { + "#": 641 + }, + "density": 0.001, + "force": { + "#": 642 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 643 + }, + "positionImpulse": { + "#": 644 + }, + "positionPrev": { + "#": 645 + }, + "region": { + "#": 646 + }, + "render": { + "#": 647 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 649 + }, + "vertices": { + "#": 650 + } + }, + [ + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 638 + }, + "min": { + "#": 639 + } + }, + { + "x": 324.74104993983156, + "y": 497.73575476702496 + }, + { + "x": 224.74104993983156, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 274.74104993983156, + "y": 447.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 274.74104993983156, + "y": 444.8284840519894 + }, + { + "endCol": 6, + "endRow": 10, + "id": "4,6,8,10", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 648 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 324.74104993983156, + "y": 497.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.74104993983156, + "y": 497.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 224.74104993983156, + "y": 447.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 249.74104993983156, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 324.74104993983156, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2216, + "axes": { + "#": 657 + }, + "bounds": { + "#": 666 + }, + "collisionFilter": { + "#": 669 + }, + "constraintImpulse": { + "#": 670 + }, + "density": 0.001, + "force": { + "#": 671 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 634.4194592174847, + "inverseInertia": 0.0015762442110988134, + "inverseMass": 0.45126353790613716, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 2.216, + "motion": 0, + "parent": null, + "position": { + "#": 672 + }, + "positionImpulse": { + "#": 673 + }, + "positionPrev": { + "#": 674 + }, + "region": { + "#": 675 + }, + "render": { + "#": 676 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 678 + }, + "vertices": { + "#": 679 + } + }, + [ + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": 0.9998656545973652, + "y": 0.01639124023930107 + }, + { + "x": 0.04993761694389223, + "y": 0.9987523388778445 + }, + { + "x": -0.2873478855663454, + "y": 0.9578262852211513 + }, + { + "x": -0.8858315352801555, + "y": 0.4640069946705576 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.9728062146853669, + "y": -0.23162052730603974 + }, + { + "x": -0.52999894000318, + "y": -0.847998304005088 + }, + { + "x": 0, + "y": -1 + }, + { + "max": { + "#": 667 + }, + "min": { + "#": 668 + } + }, + { + "x": 389.4820998796631, + "y": 476.07826379229573 + }, + { + "x": 337.4820998796631, + "y": 398.07826379229573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360.74104993983156, + "y": 436.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360.74104993983156, + "y": 433.8284840519894 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 677 + }, + "strokeStyle": "#C7F464", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.4820998796631, + "y": 414.07826379229573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 388.4820998796631, + "y": 475.07826379229573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 368.4820998796631, + "y": 476.07826379229573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 348.4820998796631, + "y": 470.07826379229573 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.4820998796631, + "y": 449.07826379229573 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 337.4820998796631, + "y": 429.07826379229573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 342.4820998796631, + "y": 408.07826379229573 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.4820998796631, + "y": 398.07826379229573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 389.4820998796631, + "y": 398.07826379229573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 690 + }, + "bounds": { + "#": 696 + }, + "collisionFilter": { + "#": 699 + }, + "constraintImpulse": { + "#": 700 + }, + "density": 0.001, + "force": { + "#": 701 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 702 + }, + "positionImpulse": { + "#": 703 + }, + "positionPrev": { + "#": 704 + }, + "region": { + "#": 705 + }, + "render": { + "#": 706 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 708 + }, + "vertices": { + "#": 709 + } + }, + [ + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 697 + }, + "min": { + "#": 698 + } + }, + { + "x": 499.4820998796631, + "y": 492.98745544729707 + }, + { + "x": 399.4820998796631, + "y": 392.98745544729707 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 449.4820998796631, + "y": 447.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 449.4820998796631, + "y": 444.8284840519894 + }, + { + "endCol": 10, + "endRow": 10, + "id": "8,10,8,10", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 707 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 499.4820998796631, + "y": 430.98745544729707 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 481.4820998796631, + "y": 492.98745544729707 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 417.4820998796631, + "y": 492.98745544729707 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 399.4820998796631, + "y": 430.98745544729707 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 449.4820998796631, + "y": 392.98745544729707 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7500, + "axes": { + "#": 716 + }, + "bounds": { + "#": 721 + }, + "collisionFilter": { + "#": 724 + }, + "constraintImpulse": { + "#": 725 + }, + "density": 0.001, + "force": { + "#": 726 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 26736.11111111111, + "inverseInertia": 0.00003740259740259741, + "inverseMass": 0.13333333333333333, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 7.5, + "motion": 0, + "parent": null, + "position": { + "#": 727 + }, + "positionImpulse": { + "#": 728 + }, + "positionPrev": { + "#": 729 + }, + "region": { + "#": 730 + }, + "render": { + "#": 731 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 733 + }, + "vertices": { + "#": 734 + } + }, + [ + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.8944271909999159, + "y": 0.4472135954999579 + }, + { + "x": -0.8944271909999159, + "y": -0.4472135954999579 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 722 + }, + "min": { + "#": 723 + } + }, + { + "x": 609.4820998796631, + "y": 497.73575476702496 + }, + { + "x": 509.4820998796631, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 559.4820998796631, + "y": 447.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 559.4820998796631, + "y": 444.8284840519894 + }, + { + "endCol": 12, + "endRow": 10, + "id": "10,12,8,10", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 732 + }, + "strokeStyle": "#556270", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 609.4820998796631, + "y": 497.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 534.4820998796631, + "y": 497.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 509.4820998796631, + "y": 447.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 534.4820998796631, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 609.4820998796631, + "y": 397.73575476702496 + }, + [], + [], + [ + { + "#": 743 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 744 + }, + "pointB": "", + "render": { + "#": 745 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/events/events-0.json b/tests/browser/refs/events/events-0.json new file mode 100644 index 00000000..a4171438 --- /dev/null +++ b/tests/browser/refs/events/events-0.json @@ -0,0 +1,11979 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 1342 + }, + "events": { + "#": 1346 + }, + "gravity": { + "#": 1349 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 1340 + }, + "constraints": { + "#": 1341 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 131 + }, + { + "#": 170 + }, + { + "#": 209 + }, + { + "#": 248 + }, + { + "#": 287 + }, + { + "#": 326 + }, + { + "#": 365 + }, + { + "#": 404 + }, + { + "#": 443 + }, + { + "#": 482 + }, + { + "#": 521 + }, + { + "#": 560 + }, + { + "#": 599 + }, + { + "#": 638 + }, + { + "#": 677 + }, + { + "#": 716 + }, + { + "#": 755 + }, + { + "#": 794 + }, + { + "#": 833 + }, + { + "#": 872 + }, + { + "#": 911 + }, + { + "#": 950 + }, + { + "#": 989 + }, + { + "#": 1028 + }, + { + "#": 1067 + }, + { + "#": 1106 + }, + { + "#": 1145 + }, + { + "#": 1184 + }, + { + "#": 1223 + }, + { + "#": 1262 + }, + { + "#": 1301 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 93 + }, + "bounds": { + "#": 102 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 105 + }, + "constraintImpulse": { + "#": 106 + }, + "density": 0.001, + "force": { + "#": 107 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 108 + }, + "positionImpulse": { + "#": 109 + }, + "positionPrev": { + "#": 110 + }, + "render": { + "#": 111 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 113 + }, + "vertices": { + "#": 114 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 103 + }, + "min": { + "#": 104 + } + }, + { + "x": 79.424, + "y": 129.424 + }, + { + "x": 50, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 114.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 114.712 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 112 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 79.424, + "y": 117.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 77.184, + "y": 123.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.046, + "y": 127.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.638, + "y": 129.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.786, + "y": 129.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.378, + "y": 127.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.24, + "y": 123.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 50, + "y": 117.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50, + "y": 111.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.24, + "y": 106.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.378, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.786, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 67.638, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.046, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 77.184, + "y": 106.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 79.424, + "y": 111.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 132 + }, + "bounds": { + "#": 141 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 144 + }, + "constraintImpulse": { + "#": 145 + }, + "density": 0.001, + "force": { + "#": 146 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 147 + }, + "positionImpulse": { + "#": 148 + }, + "positionPrev": { + "#": 149 + }, + "render": { + "#": 150 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 152 + }, + "vertices": { + "#": 153 + } + }, + [ + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 142 + }, + "min": { + "#": 143 + } + }, + { + "x": 158.84799999999998, + "y": 129.424 + }, + { + "x": 129.42399999999998, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 114.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 114.712 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 151 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.84799999999998, + "y": 117.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.608, + "y": 123.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.47, + "y": 127.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.06199999999998, + "y": 129.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 141.20999999999998, + "y": 129.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 135.802, + "y": 127.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 131.664, + "y": 123.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.42399999999998, + "y": 117.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.42399999999998, + "y": 111.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.664, + "y": 106.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.802, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.20999999999998, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.06199999999998, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.47, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.608, + "y": 106.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.84799999999998, + "y": 111.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 171 + }, + "bounds": { + "#": 180 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "render": { + "#": 189 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 191 + }, + "vertices": { + "#": 192 + } + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 238.27199999999996, + "y": 129.424 + }, + { + "x": 208.84799999999998, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 114.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 114.712 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 190 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.27199999999996, + "y": 117.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 236.03199999999998, + "y": 123.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.89399999999998, + "y": 127.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.48599999999996, + "y": 129.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.634, + "y": 129.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.22599999999997, + "y": 127.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.08799999999997, + "y": 123.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.84799999999998, + "y": 117.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.84799999999998, + "y": 111.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.08799999999997, + "y": 106.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.22599999999997, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.634, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.48599999999996, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 231.89399999999998, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 236.03199999999998, + "y": 106.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 238.27199999999996, + "y": 111.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 210 + }, + "bounds": { + "#": 219 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 222 + }, + "constraintImpulse": { + "#": 223 + }, + "density": 0.001, + "force": { + "#": 224 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 225 + }, + "positionImpulse": { + "#": 226 + }, + "positionPrev": { + "#": 227 + }, + "render": { + "#": 228 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 230 + }, + "vertices": { + "#": 231 + } + }, + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 220 + }, + "min": { + "#": 221 + } + }, + { + "x": 317.6959999999999, + "y": 129.424 + }, + { + "x": 288.27199999999993, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 114.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 114.712 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 229 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6959999999999, + "y": 117.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.4559999999999, + "y": 123.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.3179999999999, + "y": 127.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.9099999999999, + "y": 129.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.05799999999994, + "y": 129.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.6499999999999, + "y": 127.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.51199999999994, + "y": 123.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.27199999999993, + "y": 117.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.27199999999993, + "y": 111.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.51199999999994, + "y": 106.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.6499999999999, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.05799999999994, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.9099999999999, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.3179999999999, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.4559999999999, + "y": 106.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.6959999999999, + "y": 111.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 249 + }, + "bounds": { + "#": 258 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 261 + }, + "constraintImpulse": { + "#": 262 + }, + "density": 0.001, + "force": { + "#": 263 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 264 + }, + "positionImpulse": { + "#": 265 + }, + "positionPrev": { + "#": 266 + }, + "render": { + "#": 267 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 269 + }, + "vertices": { + "#": 270 + } + }, + [ + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 259 + }, + "min": { + "#": 260 + } + }, + { + "x": 397.1199999999999, + "y": 129.424 + }, + { + "x": 367.6959999999999, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 114.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 114.712 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 268 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 117.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 123.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 127.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 129.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 129.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 127.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 123.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 117.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 111.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 106.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 106.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 111.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 288 + }, + "bounds": { + "#": 297 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 300 + }, + "constraintImpulse": { + "#": 301 + }, + "density": 0.001, + "force": { + "#": 302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 303 + }, + "positionImpulse": { + "#": 304 + }, + "positionPrev": { + "#": 305 + }, + "render": { + "#": 306 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 308 + }, + "vertices": { + "#": 309 + } + }, + [ + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 298 + }, + "min": { + "#": 299 + } + }, + { + "x": 476.54399999999987, + "y": 129.424 + }, + { + "x": 447.1199999999999, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 114.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 114.712 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 307 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.54399999999987, + "y": 117.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.30399999999986, + "y": 123.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.1659999999999, + "y": 127.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.75799999999987, + "y": 129.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 458.9059999999999, + "y": 129.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 453.4979999999999, + "y": 127.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.3599999999999, + "y": 123.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 447.1199999999999, + "y": 117.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 447.1199999999999, + "y": 111.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 449.3599999999999, + "y": 106.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.4979999999999, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.9059999999999, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 464.75799999999987, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1659999999999, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.30399999999986, + "y": 106.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 476.54399999999987, + "y": 111.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 327 + }, + "bounds": { + "#": 336 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 339 + }, + "constraintImpulse": { + "#": 340 + }, + "density": 0.001, + "force": { + "#": 341 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 342 + }, + "positionImpulse": { + "#": 343 + }, + "positionPrev": { + "#": 344 + }, + "render": { + "#": 345 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 347 + }, + "vertices": { + "#": 348 + } + }, + [ + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 337 + }, + "min": { + "#": 338 + } + }, + { + "x": 555.9679999999998, + "y": 129.424 + }, + { + "x": 526.5439999999999, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 114.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 114.712 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 346 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.9679999999998, + "y": 117.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.7279999999998, + "y": 123.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5899999999998, + "y": 127.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.1819999999999, + "y": 129.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.3299999999998, + "y": 129.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.9219999999999, + "y": 127.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.7839999999999, + "y": 123.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.5439999999999, + "y": 117.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5439999999999, + "y": 111.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.7839999999999, + "y": 106.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.9219999999999, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 538.3299999999998, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 544.1819999999999, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 549.5899999999998, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 553.7279999999998, + "y": 106.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 555.9679999999998, + "y": 111.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 366 + }, + "bounds": { + "#": 375 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 378 + }, + "constraintImpulse": { + "#": 379 + }, + "density": 0.001, + "force": { + "#": 380 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 381 + }, + "positionImpulse": { + "#": 382 + }, + "positionPrev": { + "#": 383 + }, + "render": { + "#": 384 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 386 + }, + "vertices": { + "#": 387 + } + }, + [ + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 376 + }, + "min": { + "#": 377 + } + }, + { + "x": 635.3919999999998, + "y": 129.424 + }, + { + "x": 605.9679999999998, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 114.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 114.712 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 385 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.3919999999998, + "y": 117.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.1519999999998, + "y": 123.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.0139999999998, + "y": 127.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.6059999999999, + "y": 129.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.7539999999998, + "y": 129.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 612.3459999999999, + "y": 127.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 608.2079999999999, + "y": 123.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 605.9679999999998, + "y": 117.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.9679999999998, + "y": 111.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 608.2079999999999, + "y": 106.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.3459999999999, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 617.7539999999998, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 623.6059999999999, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 629.0139999999998, + "y": 102.24000000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 633.1519999999998, + "y": 106.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 635.3919999999998, + "y": 111.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 405 + }, + "bounds": { + "#": 414 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 417 + }, + "constraintImpulse": { + "#": 418 + }, + "density": 0.001, + "force": { + "#": 419 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 420 + }, + "positionImpulse": { + "#": 421 + }, + "positionPrev": { + "#": 422 + }, + "render": { + "#": 423 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 425 + }, + "vertices": { + "#": 426 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 415 + }, + "min": { + "#": 416 + } + }, + { + "x": 79.424, + "y": 208.84799999999998 + }, + { + "x": 50, + "y": 179.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 194.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 194.136 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 424 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 79.424, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 77.184, + "y": 202.47 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.046, + "y": 206.608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.638, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.786, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.378, + "y": 206.608 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.24, + "y": 202.47 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 50, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50, + "y": 191.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.24, + "y": 185.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.378, + "y": 181.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.786, + "y": 179.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 67.638, + "y": 179.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.046, + "y": 181.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 77.184, + "y": 185.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 79.424, + "y": 191.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 444 + }, + "bounds": { + "#": 453 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 456 + }, + "constraintImpulse": { + "#": 457 + }, + "density": 0.001, + "force": { + "#": 458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 459 + }, + "positionImpulse": { + "#": 460 + }, + "positionPrev": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 454 + }, + "min": { + "#": 455 + } + }, + { + "x": 158.84799999999998, + "y": 208.84799999999998 + }, + { + "x": 129.42399999999998, + "y": 179.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 194.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 194.136 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.84799999999998, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.608, + "y": 202.47 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.47, + "y": 206.608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.06199999999998, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 141.20999999999998, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 135.802, + "y": 206.608 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 131.664, + "y": 202.47 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.42399999999998, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.42399999999998, + "y": 191.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.664, + "y": 185.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.802, + "y": 181.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.20999999999998, + "y": 179.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.06199999999998, + "y": 179.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.47, + "y": 181.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.608, + "y": 185.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.84799999999998, + "y": 191.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 483 + }, + "bounds": { + "#": 492 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 495 + }, + "constraintImpulse": { + "#": 496 + }, + "density": 0.001, + "force": { + "#": 497 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 498 + }, + "positionImpulse": { + "#": 499 + }, + "positionPrev": { + "#": 500 + }, + "render": { + "#": 501 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 503 + }, + "vertices": { + "#": 504 + } + }, + [ + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 493 + }, + "min": { + "#": 494 + } + }, + { + "x": 238.27199999999996, + "y": 208.84799999999998 + }, + { + "x": 208.84799999999998, + "y": 179.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 194.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 194.136 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 502 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.27199999999996, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 236.03199999999998, + "y": 202.47 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.89399999999998, + "y": 206.608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.48599999999996, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.634, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.22599999999997, + "y": 206.608 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.08799999999997, + "y": 202.47 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.84799999999998, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.84799999999998, + "y": 191.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.08799999999997, + "y": 185.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.22599999999997, + "y": 181.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.634, + "y": 179.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.48599999999996, + "y": 179.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 231.89399999999998, + "y": 181.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 236.03199999999998, + "y": 185.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 238.27199999999996, + "y": 191.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 522 + }, + "bounds": { + "#": 531 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 534 + }, + "constraintImpulse": { + "#": 535 + }, + "density": 0.001, + "force": { + "#": 536 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 537 + }, + "positionImpulse": { + "#": 538 + }, + "positionPrev": { + "#": 539 + }, + "render": { + "#": 540 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 542 + }, + "vertices": { + "#": 543 + } + }, + [ + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 532 + }, + "min": { + "#": 533 + } + }, + { + "x": 317.6959999999999, + "y": 208.84799999999998 + }, + { + "x": 288.27199999999993, + "y": 179.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 194.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 194.136 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 541 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6959999999999, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.4559999999999, + "y": 202.47 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.3179999999999, + "y": 206.608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.9099999999999, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.05799999999994, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.6499999999999, + "y": 206.608 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.51199999999994, + "y": 202.47 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.27199999999993, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.27199999999993, + "y": 191.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.51199999999994, + "y": 185.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.6499999999999, + "y": 181.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.05799999999994, + "y": 179.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.9099999999999, + "y": 179.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.3179999999999, + "y": 181.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.4559999999999, + "y": 185.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.6959999999999, + "y": 191.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 561 + }, + "bounds": { + "#": 570 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 573 + }, + "constraintImpulse": { + "#": 574 + }, + "density": 0.001, + "force": { + "#": 575 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 576 + }, + "positionImpulse": { + "#": 577 + }, + "positionPrev": { + "#": 578 + }, + "render": { + "#": 579 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 581 + }, + "vertices": { + "#": 582 + } + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 571 + }, + "min": { + "#": 572 + } + }, + { + "x": 397.1199999999999, + "y": 208.84799999999998 + }, + { + "x": 367.6959999999999, + "y": 179.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 194.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 194.136 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 580 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 202.47 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 206.608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 206.608 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 202.47 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 191.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 185.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 181.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 179.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 179.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 181.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 185.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 191.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 600 + }, + "bounds": { + "#": 609 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 612 + }, + "constraintImpulse": { + "#": 613 + }, + "density": 0.001, + "force": { + "#": 614 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 615 + }, + "positionImpulse": { + "#": 616 + }, + "positionPrev": { + "#": 617 + }, + "render": { + "#": 618 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 620 + }, + "vertices": { + "#": 621 + } + }, + [ + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 610 + }, + "min": { + "#": 611 + } + }, + { + "x": 476.54399999999987, + "y": 208.84799999999998 + }, + { + "x": 447.1199999999999, + "y": 179.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 194.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 194.136 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 619 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.54399999999987, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.30399999999986, + "y": 202.47 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.1659999999999, + "y": 206.608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.75799999999987, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 458.9059999999999, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 453.4979999999999, + "y": 206.608 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.3599999999999, + "y": 202.47 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 447.1199999999999, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 447.1199999999999, + "y": 191.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 449.3599999999999, + "y": 185.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.4979999999999, + "y": 181.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.9059999999999, + "y": 179.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 464.75799999999987, + "y": 179.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1659999999999, + "y": 181.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.30399999999986, + "y": 185.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 476.54399999999987, + "y": 191.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 639 + }, + "bounds": { + "#": 648 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 651 + }, + "constraintImpulse": { + "#": 652 + }, + "density": 0.001, + "force": { + "#": 653 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 654 + }, + "positionImpulse": { + "#": 655 + }, + "positionPrev": { + "#": 656 + }, + "render": { + "#": 657 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 659 + }, + "vertices": { + "#": 660 + } + }, + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 649 + }, + "min": { + "#": 650 + } + }, + { + "x": 555.9679999999998, + "y": 208.84799999999998 + }, + { + "x": 526.5439999999999, + "y": 179.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 194.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 194.136 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 658 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.9679999999998, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.7279999999998, + "y": 202.47 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5899999999998, + "y": 206.608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.1819999999999, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.3299999999998, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.9219999999999, + "y": 206.608 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.7839999999999, + "y": 202.47 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.5439999999999, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5439999999999, + "y": 191.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.7839999999999, + "y": 185.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.9219999999999, + "y": 181.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 538.3299999999998, + "y": 179.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 544.1819999999999, + "y": 179.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 549.5899999999998, + "y": 181.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 553.7279999999998, + "y": 185.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 555.9679999999998, + "y": 191.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 678 + }, + "bounds": { + "#": 687 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 690 + }, + "constraintImpulse": { + "#": 691 + }, + "density": 0.001, + "force": { + "#": 692 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 693 + }, + "positionImpulse": { + "#": 694 + }, + "positionPrev": { + "#": 695 + }, + "render": { + "#": 696 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 698 + }, + "vertices": { + "#": 699 + } + }, + [ + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 688 + }, + "min": { + "#": 689 + } + }, + { + "x": 635.3919999999998, + "y": 208.84799999999998 + }, + { + "x": 605.9679999999998, + "y": 179.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 194.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 194.136 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 697 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.3919999999998, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.1519999999998, + "y": 202.47 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.0139999999998, + "y": 206.608 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.6059999999999, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.7539999999998, + "y": 208.84799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 612.3459999999999, + "y": 206.608 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 608.2079999999999, + "y": 202.47 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 605.9679999999998, + "y": 197.06199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.9679999999998, + "y": 191.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 608.2079999999999, + "y": 185.802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.3459999999999, + "y": 181.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 617.7539999999998, + "y": 179.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 623.6059999999999, + "y": 179.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 629.0139999999998, + "y": 181.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 633.1519999999998, + "y": 185.802 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 635.3919999999998, + "y": 191.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 717 + }, + "bounds": { + "#": 726 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 729 + }, + "constraintImpulse": { + "#": 730 + }, + "density": 0.001, + "force": { + "#": 731 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 732 + }, + "positionImpulse": { + "#": 733 + }, + "positionPrev": { + "#": 734 + }, + "render": { + "#": 735 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 737 + }, + "vertices": { + "#": 738 + } + }, + [ + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 727 + }, + "min": { + "#": 728 + } + }, + { + "x": 79.424, + "y": 288.27199999999993 + }, + { + "x": 50, + "y": 258.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 273.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 273.55999999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 736 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 79.424, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 77.184, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.046, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.638, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.786, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.378, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.24, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 50, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50, + "y": 270.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.24, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.378, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.786, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 67.638, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.046, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 77.184, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 79.424, + "y": 270.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 756 + }, + "bounds": { + "#": 765 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 768 + }, + "constraintImpulse": { + "#": 769 + }, + "density": 0.001, + "force": { + "#": 770 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 771 + }, + "positionImpulse": { + "#": 772 + }, + "positionPrev": { + "#": 773 + }, + "render": { + "#": 774 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 776 + }, + "vertices": { + "#": 777 + } + }, + [ + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 766 + }, + "min": { + "#": 767 + } + }, + { + "x": 158.84799999999998, + "y": 288.27199999999993 + }, + { + "x": 129.42399999999998, + "y": 258.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 273.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 273.55999999999995 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 775 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.84799999999998, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.608, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.47, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.06199999999998, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 141.20999999999998, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 135.802, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 131.664, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.42399999999998, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.42399999999998, + "y": 270.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.664, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.802, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.20999999999998, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.06199999999998, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.47, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.608, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.84799999999998, + "y": 270.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 795 + }, + "bounds": { + "#": 804 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "density": 0.001, + "force": { + "#": 809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 810 + }, + "positionImpulse": { + "#": 811 + }, + "positionPrev": { + "#": 812 + }, + "render": { + "#": 813 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 815 + }, + "vertices": { + "#": 816 + } + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 805 + }, + "min": { + "#": 806 + } + }, + { + "x": 238.27199999999996, + "y": 288.27199999999993 + }, + { + "x": 208.84799999999998, + "y": 258.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 273.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 273.55999999999995 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 814 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.27199999999996, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 236.03199999999998, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.89399999999998, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.48599999999996, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.634, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.22599999999997, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.08799999999997, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.84799999999998, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.84799999999998, + "y": 270.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.08799999999997, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.22599999999997, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.634, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.48599999999996, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 231.89399999999998, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 236.03199999999998, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 238.27199999999996, + "y": 270.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 834 + }, + "bounds": { + "#": 843 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "density": 0.001, + "force": { + "#": 848 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 849 + }, + "positionImpulse": { + "#": 850 + }, + "positionPrev": { + "#": 851 + }, + "render": { + "#": 852 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 854 + }, + "vertices": { + "#": 855 + } + }, + [ + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 844 + }, + "min": { + "#": 845 + } + }, + { + "x": 317.6959999999999, + "y": 288.27199999999993 + }, + { + "x": 288.27199999999993, + "y": 258.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 273.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 273.55999999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 853 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6959999999999, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.4559999999999, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.3179999999999, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.9099999999999, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.05799999999994, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.6499999999999, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.51199999999994, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.27199999999993, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.27199999999993, + "y": 270.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.51199999999994, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.6499999999999, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.05799999999994, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.9099999999999, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.3179999999999, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.4559999999999, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.6959999999999, + "y": 270.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 873 + }, + "bounds": { + "#": 882 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 885 + }, + "constraintImpulse": { + "#": 886 + }, + "density": 0.001, + "force": { + "#": 887 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 888 + }, + "positionImpulse": { + "#": 889 + }, + "positionPrev": { + "#": 890 + }, + "render": { + "#": 891 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 893 + }, + "vertices": { + "#": 894 + } + }, + [ + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 883 + }, + "min": { + "#": 884 + } + }, + { + "x": 397.1199999999999, + "y": 288.27199999999993 + }, + { + "x": 367.6959999999999, + "y": 258.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 273.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 273.55999999999995 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 892 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 270.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 270.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 912 + }, + "bounds": { + "#": 921 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 924 + }, + "constraintImpulse": { + "#": 925 + }, + "density": 0.001, + "force": { + "#": 926 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 927 + }, + "positionImpulse": { + "#": 928 + }, + "positionPrev": { + "#": 929 + }, + "render": { + "#": 930 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 932 + }, + "vertices": { + "#": 933 + } + }, + [ + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 922 + }, + "min": { + "#": 923 + } + }, + { + "x": 476.54399999999987, + "y": 288.27199999999993 + }, + { + "x": 447.1199999999999, + "y": 258.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 273.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 273.55999999999995 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 931 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.54399999999987, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.30399999999986, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.1659999999999, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.75799999999987, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 458.9059999999999, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 453.4979999999999, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.3599999999999, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 447.1199999999999, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 447.1199999999999, + "y": 270.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 449.3599999999999, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.4979999999999, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.9059999999999, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 464.75799999999987, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1659999999999, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.30399999999986, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 476.54399999999987, + "y": 270.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 951 + }, + "bounds": { + "#": 960 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 963 + }, + "constraintImpulse": { + "#": 964 + }, + "density": 0.001, + "force": { + "#": 965 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 966 + }, + "positionImpulse": { + "#": 967 + }, + "positionPrev": { + "#": 968 + }, + "render": { + "#": 969 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 971 + }, + "vertices": { + "#": 972 + } + }, + [ + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 961 + }, + "min": { + "#": 962 + } + }, + { + "x": 555.9679999999998, + "y": 288.27199999999993 + }, + { + "x": 526.5439999999999, + "y": 258.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 273.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 273.55999999999995 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 970 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.9679999999998, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.7279999999998, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5899999999998, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.1819999999999, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.3299999999998, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.9219999999999, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.7839999999999, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.5439999999999, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5439999999999, + "y": 270.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.7839999999999, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.9219999999999, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 538.3299999999998, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 544.1819999999999, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 549.5899999999998, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 553.7279999999998, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 555.9679999999998, + "y": 270.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 990 + }, + "bounds": { + "#": 999 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1002 + }, + "constraintImpulse": { + "#": 1003 + }, + "density": 0.001, + "force": { + "#": 1004 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1005 + }, + "positionImpulse": { + "#": 1006 + }, + "positionPrev": { + "#": 1007 + }, + "render": { + "#": 1008 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1010 + }, + "vertices": { + "#": 1011 + } + }, + [ + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1000 + }, + "min": { + "#": 1001 + } + }, + { + "x": 635.3919999999998, + "y": 288.27199999999993 + }, + { + "x": 605.9679999999998, + "y": 258.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 273.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 273.55999999999995 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1009 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.3919999999998, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.1519999999998, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.0139999999998, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.6059999999999, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.7539999999998, + "y": 288.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 612.3459999999999, + "y": 286.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 608.2079999999999, + "y": 281.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 605.9679999999998, + "y": 276.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.9679999999998, + "y": 270.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 608.2079999999999, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.3459999999999, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 617.7539999999998, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 623.6059999999999, + "y": 258.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 629.0139999999998, + "y": 261.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 633.1519999999998, + "y": 265.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 635.3919999999998, + "y": 270.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1029 + }, + "bounds": { + "#": 1038 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1041 + }, + "constraintImpulse": { + "#": 1042 + }, + "density": 0.001, + "force": { + "#": 1043 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1044 + }, + "positionImpulse": { + "#": 1045 + }, + "positionPrev": { + "#": 1046 + }, + "render": { + "#": 1047 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1049 + }, + "vertices": { + "#": 1050 + } + }, + [ + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1039 + }, + "min": { + "#": 1040 + } + }, + { + "x": 79.424, + "y": 367.6959999999999 + }, + { + "x": 50, + "y": 338.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 352.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 352.9839999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1048 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 79.424, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 77.184, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.046, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.638, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.786, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.378, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.24, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 50, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50, + "y": 350.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.24, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.378, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.786, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 67.638, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.046, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 77.184, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 79.424, + "y": 350.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1068 + }, + "bounds": { + "#": 1077 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1080 + }, + "constraintImpulse": { + "#": 1081 + }, + "density": 0.001, + "force": { + "#": 1082 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1083 + }, + "positionImpulse": { + "#": 1084 + }, + "positionPrev": { + "#": 1085 + }, + "render": { + "#": 1086 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1088 + }, + "vertices": { + "#": 1089 + } + }, + [ + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1078 + }, + "min": { + "#": 1079 + } + }, + { + "x": 158.84799999999998, + "y": 367.6959999999999 + }, + { + "x": 129.42399999999998, + "y": 338.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 352.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 352.9839999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1087 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.84799999999998, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.608, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.47, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.06199999999998, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 141.20999999999998, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 135.802, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 131.664, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.42399999999998, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.42399999999998, + "y": 350.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.664, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.802, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.20999999999998, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.06199999999998, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.47, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.608, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.84799999999998, + "y": 350.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1107 + }, + "bounds": { + "#": 1116 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1119 + }, + "constraintImpulse": { + "#": 1120 + }, + "density": 0.001, + "force": { + "#": 1121 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1122 + }, + "positionImpulse": { + "#": 1123 + }, + "positionPrev": { + "#": 1124 + }, + "render": { + "#": 1125 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1127 + }, + "vertices": { + "#": 1128 + } + }, + [ + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1117 + }, + "min": { + "#": 1118 + } + }, + { + "x": 238.27199999999996, + "y": 367.6959999999999 + }, + { + "x": 208.84799999999998, + "y": 338.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 352.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 352.9839999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1126 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.27199999999996, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 236.03199999999998, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.89399999999998, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.48599999999996, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.634, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.22599999999997, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.08799999999997, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.84799999999998, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.84799999999998, + "y": 350.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.08799999999997, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.22599999999997, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.634, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.48599999999996, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 231.89399999999998, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 236.03199999999998, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 238.27199999999996, + "y": 350.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1146 + }, + "bounds": { + "#": 1155 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1158 + }, + "constraintImpulse": { + "#": 1159 + }, + "density": 0.001, + "force": { + "#": 1160 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1161 + }, + "positionImpulse": { + "#": 1162 + }, + "positionPrev": { + "#": 1163 + }, + "render": { + "#": 1164 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1166 + }, + "vertices": { + "#": 1167 + } + }, + [ + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1156 + }, + "min": { + "#": 1157 + } + }, + { + "x": 317.6959999999999, + "y": 367.6959999999999 + }, + { + "x": 288.27199999999993, + "y": 338.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 352.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 352.9839999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1165 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6959999999999, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.4559999999999, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.3179999999999, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.9099999999999, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.05799999999994, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.6499999999999, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.51199999999994, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.27199999999993, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.27199999999993, + "y": 350.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.51199999999994, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.6499999999999, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.05799999999994, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.9099999999999, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.3179999999999, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.4559999999999, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.6959999999999, + "y": 350.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1185 + }, + "bounds": { + "#": 1194 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1197 + }, + "constraintImpulse": { + "#": 1198 + }, + "density": 0.001, + "force": { + "#": 1199 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1200 + }, + "positionImpulse": { + "#": 1201 + }, + "positionPrev": { + "#": 1202 + }, + "render": { + "#": 1203 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1205 + }, + "vertices": { + "#": 1206 + } + }, + [ + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1195 + }, + "min": { + "#": 1196 + } + }, + { + "x": 397.1199999999999, + "y": 367.6959999999999 + }, + { + "x": 367.6959999999999, + "y": 338.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 352.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 352.9839999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1204 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 350.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 350.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1224 + }, + "bounds": { + "#": 1233 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1236 + }, + "constraintImpulse": { + "#": 1237 + }, + "density": 0.001, + "force": { + "#": 1238 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1239 + }, + "positionImpulse": { + "#": 1240 + }, + "positionPrev": { + "#": 1241 + }, + "render": { + "#": 1242 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1244 + }, + "vertices": { + "#": 1245 + } + }, + [ + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1234 + }, + "min": { + "#": 1235 + } + }, + { + "x": 476.54399999999987, + "y": 367.6959999999999 + }, + { + "x": 447.1199999999999, + "y": 338.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 352.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 352.9839999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1243 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.54399999999987, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.30399999999986, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.1659999999999, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.75799999999987, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 458.9059999999999, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 453.4979999999999, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.3599999999999, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 447.1199999999999, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 447.1199999999999, + "y": 350.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 449.3599999999999, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.4979999999999, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.9059999999999, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 464.75799999999987, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1659999999999, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.30399999999986, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 476.54399999999987, + "y": 350.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1263 + }, + "bounds": { + "#": 1272 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1275 + }, + "constraintImpulse": { + "#": 1276 + }, + "density": 0.001, + "force": { + "#": 1277 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1278 + }, + "positionImpulse": { + "#": 1279 + }, + "positionPrev": { + "#": 1280 + }, + "render": { + "#": 1281 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1283 + }, + "vertices": { + "#": 1284 + } + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1273 + }, + "min": { + "#": 1274 + } + }, + { + "x": 555.9679999999998, + "y": 367.6959999999999 + }, + { + "x": 526.5439999999999, + "y": 338.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 352.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 352.9839999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1282 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.9679999999998, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.7279999999998, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5899999999998, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.1819999999999, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.3299999999998, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.9219999999999, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.7839999999999, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.5439999999999, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5439999999999, + "y": 350.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.7839999999999, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.9219999999999, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 538.3299999999998, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 544.1819999999999, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 549.5899999999998, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 553.7279999999998, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 555.9679999999998, + "y": 350.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1302 + }, + "bounds": { + "#": 1311 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1314 + }, + "constraintImpulse": { + "#": 1315 + }, + "density": 0.001, + "force": { + "#": 1316 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1317 + }, + "positionImpulse": { + "#": 1318 + }, + "positionPrev": { + "#": 1319 + }, + "render": { + "#": 1320 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1322 + }, + "vertices": { + "#": 1323 + } + }, + [ + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1312 + }, + "min": { + "#": 1313 + } + }, + { + "x": 635.3919999999998, + "y": 367.6959999999999 + }, + { + "x": 605.9679999999998, + "y": 338.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 352.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 352.9839999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1321 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.3919999999998, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.1519999999998, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.0139999999998, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.6059999999999, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.7539999999998, + "y": 367.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 612.3459999999999, + "y": 365.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 608.2079999999999, + "y": 361.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 605.9679999999998, + "y": 355.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.9679999999998, + "y": 350.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 608.2079999999999, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.3459999999999, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 617.7539999999998, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 623.6059999999999, + "y": 338.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 629.0139999999998, + "y": 340.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 633.1519999999998, + "y": 344.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 635.3919999999998, + "y": 350.05799999999994 + }, + [], + [], + [ + { + "#": 1343 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1344 + }, + "pointB": "", + "render": { + "#": 1345 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 1347 + } + }, + [ + { + "#": 1348 + } + ], + {}, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/events/events-10.json b/tests/browser/refs/events/events-10.json new file mode 100644 index 00000000..d62f8f1c --- /dev/null +++ b/tests/browser/refs/events/events-10.json @@ -0,0 +1,12339 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 1378 + }, + "events": { + "#": 1382 + }, + "gravity": { + "#": 1385 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1376 + }, + "constraints": { + "#": 1377 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 136 + }, + { + "#": 176 + }, + { + "#": 216 + }, + { + "#": 256 + }, + { + "#": 296 + }, + { + "#": 336 + }, + { + "#": 376 + }, + { + "#": 416 + }, + { + "#": 456 + }, + { + "#": 496 + }, + { + "#": 536 + }, + { + "#": 576 + }, + { + "#": 616 + }, + { + "#": 656 + }, + { + "#": 696 + }, + { + "#": 736 + }, + { + "#": 776 + }, + { + "#": 816 + }, + { + "#": 856 + }, + { + "#": 896 + }, + { + "#": 936 + }, + { + "#": 976 + }, + { + "#": 1016 + }, + { + "#": 1056 + }, + { + "#": 1096 + }, + { + "#": 1136 + }, + { + "#": 1176 + }, + { + "#": 1216 + }, + { + "#": 1256 + }, + { + "#": 1296 + }, + { + "#": 1336 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 97 + }, + "bounds": { + "#": 106 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 109 + }, + "constraintImpulse": { + "#": 110 + }, + "density": 0.001, + "force": { + "#": 111 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 112 + }, + "positionImpulse": { + "#": 113 + }, + "positionPrev": { + "#": 114 + }, + "region": { + "#": 115 + }, + "render": { + "#": 116 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 118 + }, + "vertices": { + "#": 119 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 107 + }, + "min": { + "#": 108 + } + }, + { + "x": 79.424, + "y": 147.15975476702576 + }, + { + "x": 50, + "y": 117.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 132.44775476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 129.5404840519901 + }, + { + "endCol": 1, + "endRow": 3, + "id": "1,1,2,3", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 117 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 79.424, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 77.184, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.046, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.638, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.786, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.378, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.24, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 50, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50, + "y": 129.52175476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.24, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.378, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.786, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 67.638, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.046, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 77.184, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 79.424, + "y": 129.52175476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 137 + }, + "bounds": { + "#": 146 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 149 + }, + "constraintImpulse": { + "#": 150 + }, + "density": 0.001, + "force": { + "#": 151 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 152 + }, + "positionImpulse": { + "#": 153 + }, + "positionPrev": { + "#": 154 + }, + "region": { + "#": 155 + }, + "render": { + "#": 156 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 158 + }, + "vertices": { + "#": 159 + } + }, + [ + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 147 + }, + "min": { + "#": 148 + } + }, + { + "x": 158.84799999999998, + "y": 147.15975476702576 + }, + { + "x": 129.42399999999998, + "y": 117.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 132.44775476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 129.5404840519901 + }, + { + "endCol": 3, + "endRow": 3, + "id": "2,3,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 157 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.84799999999998, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.608, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.47, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.06199999999998, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 141.20999999999998, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 135.802, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 131.664, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.42399999999998, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.42399999999998, + "y": 129.52175476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.664, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.802, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.20999999999998, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.06199999999998, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.47, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.608, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.84799999999998, + "y": 129.52175476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 177 + }, + "bounds": { + "#": 186 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 189 + }, + "constraintImpulse": { + "#": 190 + }, + "density": 0.001, + "force": { + "#": 191 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 192 + }, + "positionImpulse": { + "#": 193 + }, + "positionPrev": { + "#": 194 + }, + "region": { + "#": 195 + }, + "render": { + "#": 196 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 198 + }, + "vertices": { + "#": 199 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 187 + }, + "min": { + "#": 188 + } + }, + { + "x": 238.27199999999996, + "y": 147.15975476702576 + }, + { + "x": 208.84799999999998, + "y": 117.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 132.44775476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 129.5404840519901 + }, + { + "endCol": 4, + "endRow": 3, + "id": "4,4,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 197 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.27199999999996, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 236.03199999999998, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.89399999999998, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.48599999999996, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.634, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.22599999999997, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.08799999999997, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.84799999999998, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.84799999999998, + "y": 129.52175476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.08799999999997, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.22599999999997, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.634, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.48599999999996, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 231.89399999999998, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 236.03199999999998, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 238.27199999999996, + "y": 129.52175476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 217 + }, + "bounds": { + "#": 226 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 229 + }, + "constraintImpulse": { + "#": 230 + }, + "density": 0.001, + "force": { + "#": 231 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 232 + }, + "positionImpulse": { + "#": 233 + }, + "positionPrev": { + "#": 234 + }, + "region": { + "#": 235 + }, + "render": { + "#": 236 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 238 + }, + "vertices": { + "#": 239 + } + }, + [ + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 227 + }, + "min": { + "#": 228 + } + }, + { + "x": 317.6959999999999, + "y": 147.15975476702576 + }, + { + "x": 288.27199999999993, + "y": 117.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 132.44775476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 129.5404840519901 + }, + { + "endCol": 6, + "endRow": 3, + "id": "6,6,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 237 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6959999999999, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.4559999999999, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.3179999999999, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.9099999999999, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.05799999999994, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.6499999999999, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.51199999999994, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.27199999999993, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.27199999999993, + "y": 129.52175476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.51199999999994, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.6499999999999, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.05799999999994, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.9099999999999, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.3179999999999, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.4559999999999, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.6959999999999, + "y": 129.52175476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 257 + }, + "bounds": { + "#": 266 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 269 + }, + "constraintImpulse": { + "#": 270 + }, + "density": 0.001, + "force": { + "#": 271 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 272 + }, + "positionImpulse": { + "#": 273 + }, + "positionPrev": { + "#": 274 + }, + "region": { + "#": 275 + }, + "render": { + "#": 276 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 278 + }, + "vertices": { + "#": 279 + } + }, + [ + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 267 + }, + "min": { + "#": 268 + } + }, + { + "x": 397.1199999999999, + "y": 147.15975476702576 + }, + { + "x": 367.6959999999999, + "y": 117.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 132.44775476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 129.5404840519901 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 277 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 129.52175476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 129.52175476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 297 + }, + "bounds": { + "#": 306 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 309 + }, + "constraintImpulse": { + "#": 310 + }, + "density": 0.001, + "force": { + "#": 311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 312 + }, + "positionImpulse": { + "#": 313 + }, + "positionPrev": { + "#": 314 + }, + "region": { + "#": 315 + }, + "render": { + "#": 316 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 318 + }, + "vertices": { + "#": 319 + } + }, + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 307 + }, + "min": { + "#": 308 + } + }, + { + "x": 476.54399999999987, + "y": 147.15975476702576 + }, + { + "x": 447.1199999999999, + "y": 117.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 132.44775476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 129.5404840519901 + }, + { + "endCol": 9, + "endRow": 3, + "id": "9,9,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 317 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.54399999999987, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.30399999999986, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.1659999999999, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.75799999999987, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 458.9059999999999, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 453.4979999999999, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.3599999999999, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 447.1199999999999, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 447.1199999999999, + "y": 129.52175476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 449.3599999999999, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.4979999999999, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.9059999999999, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 464.75799999999987, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1659999999999, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.30399999999986, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 476.54399999999987, + "y": 129.52175476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 337 + }, + "bounds": { + "#": 346 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 349 + }, + "constraintImpulse": { + "#": 350 + }, + "density": 0.001, + "force": { + "#": 351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 352 + }, + "positionImpulse": { + "#": 353 + }, + "positionPrev": { + "#": 354 + }, + "region": { + "#": 355 + }, + "render": { + "#": 356 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 358 + }, + "vertices": { + "#": 359 + } + }, + [ + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 347 + }, + "min": { + "#": 348 + } + }, + { + "x": 555.9679999999998, + "y": 147.15975476702576 + }, + { + "x": 526.5439999999999, + "y": 117.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 132.44775476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 129.5404840519901 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 357 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.9679999999998, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.7279999999998, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5899999999998, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.1819999999999, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.3299999999998, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.9219999999999, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.7839999999999, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.5439999999999, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5439999999999, + "y": 129.52175476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.7839999999999, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.9219999999999, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 538.3299999999998, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 544.1819999999999, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 549.5899999999998, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 553.7279999999998, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 555.9679999999998, + "y": 129.52175476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 377 + }, + "bounds": { + "#": 386 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "density": 0.001, + "force": { + "#": 391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 392 + }, + "positionImpulse": { + "#": 393 + }, + "positionPrev": { + "#": 394 + }, + "region": { + "#": 395 + }, + "render": { + "#": 396 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 398 + }, + "vertices": { + "#": 399 + } + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 387 + }, + "min": { + "#": 388 + } + }, + { + "x": 635.3919999999998, + "y": 147.15975476702576 + }, + { + "x": 605.9679999999998, + "y": 117.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 132.44775476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 129.5404840519901 + }, + { + "endCol": 13, + "endRow": 3, + "id": "12,13,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 397 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.3919999999998, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.1519999999998, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.0139999999998, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.6059999999999, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.7539999999998, + "y": 147.15975476702576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 612.3459999999999, + "y": 144.91975476702575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 608.2079999999999, + "y": 140.78175476702575 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 605.9679999999998, + "y": 135.37375476702576 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.9679999999998, + "y": 129.52175476702573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 608.2079999999999, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.3459999999999, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 617.7539999999998, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 623.6059999999999, + "y": 117.73575476702574 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 629.0139999999998, + "y": 119.97575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 633.1519999999998, + "y": 124.11375476702574 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 635.3919999999998, + "y": 129.52175476702573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 417 + }, + "bounds": { + "#": 426 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "density": 0.001, + "force": { + "#": 431 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 432 + }, + "positionImpulse": { + "#": 433 + }, + "positionPrev": { + "#": 434 + }, + "region": { + "#": 435 + }, + "render": { + "#": 436 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 438 + }, + "vertices": { + "#": 439 + } + }, + [ + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 427 + }, + "min": { + "#": 428 + } + }, + { + "x": 79.424, + "y": 226.58375476702597 + }, + { + "x": 50, + "y": 197.159754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 211.87175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 208.9644840519903 + }, + { + "endCol": 1, + "endRow": 4, + "id": "1,1,4,4", + "startCol": 1, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 437 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 79.424, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 77.184, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.046, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.638, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.786, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.378, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.24, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 50, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50, + "y": 208.945754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.24, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.378, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.786, + "y": 197.159754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 67.638, + "y": 197.159754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.046, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 77.184, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 79.424, + "y": 208.945754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 457 + }, + "bounds": { + "#": 466 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 469 + }, + "constraintImpulse": { + "#": 470 + }, + "density": 0.001, + "force": { + "#": 471 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 472 + }, + "positionImpulse": { + "#": 473 + }, + "positionPrev": { + "#": 474 + }, + "region": { + "#": 475 + }, + "render": { + "#": 476 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 478 + }, + "vertices": { + "#": 479 + } + }, + [ + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 467 + }, + "min": { + "#": 468 + } + }, + { + "x": 158.84799999999998, + "y": 226.58375476702597 + }, + { + "x": 129.42399999999998, + "y": 197.159754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 211.87175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 208.9644840519903 + }, + { + "endCol": 3, + "endRow": 4, + "id": "2,3,4,4", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 477 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.84799999999998, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.608, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.47, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.06199999999998, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 141.20999999999998, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 135.802, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 131.664, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.42399999999998, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.42399999999998, + "y": 208.945754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.664, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.802, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.20999999999998, + "y": 197.159754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.06199999999998, + "y": 197.159754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.47, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.608, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.84799999999998, + "y": 208.945754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 497 + }, + "bounds": { + "#": 506 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 509 + }, + "constraintImpulse": { + "#": 510 + }, + "density": 0.001, + "force": { + "#": 511 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 512 + }, + "positionImpulse": { + "#": 513 + }, + "positionPrev": { + "#": 514 + }, + "region": { + "#": 515 + }, + "render": { + "#": 516 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 518 + }, + "vertices": { + "#": 519 + } + }, + [ + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 507 + }, + "min": { + "#": 508 + } + }, + { + "x": 238.27199999999996, + "y": 226.58375476702597 + }, + { + "x": 208.84799999999998, + "y": 197.159754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 211.87175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 208.9644840519903 + }, + { + "endCol": 4, + "endRow": 4, + "id": "4,4,4,4", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 517 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.27199999999996, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 236.03199999999998, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.89399999999998, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.48599999999996, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.634, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.22599999999997, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.08799999999997, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.84799999999998, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.84799999999998, + "y": 208.945754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.08799999999997, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.22599999999997, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.634, + "y": 197.159754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.48599999999996, + "y": 197.159754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 231.89399999999998, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 236.03199999999998, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 238.27199999999996, + "y": 208.945754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 537 + }, + "bounds": { + "#": 546 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 549 + }, + "constraintImpulse": { + "#": 550 + }, + "density": 0.001, + "force": { + "#": 551 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 552 + }, + "positionImpulse": { + "#": 553 + }, + "positionPrev": { + "#": 554 + }, + "region": { + "#": 555 + }, + "render": { + "#": 556 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 558 + }, + "vertices": { + "#": 559 + } + }, + [ + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 547 + }, + "min": { + "#": 548 + } + }, + { + "x": 317.6959999999999, + "y": 226.58375476702597 + }, + { + "x": 288.27199999999993, + "y": 197.159754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 211.87175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 208.9644840519903 + }, + { + "endCol": 6, + "endRow": 4, + "id": "6,6,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 557 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6959999999999, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.4559999999999, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.3179999999999, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.9099999999999, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.05799999999994, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.6499999999999, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.51199999999994, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.27199999999993, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.27199999999993, + "y": 208.945754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.51199999999994, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.6499999999999, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.05799999999994, + "y": 197.159754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.9099999999999, + "y": 197.159754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.3179999999999, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.4559999999999, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.6959999999999, + "y": 208.945754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 577 + }, + "bounds": { + "#": 586 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 589 + }, + "constraintImpulse": { + "#": 590 + }, + "density": 0.001, + "force": { + "#": 591 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 592 + }, + "positionImpulse": { + "#": 593 + }, + "positionPrev": { + "#": 594 + }, + "region": { + "#": 595 + }, + "render": { + "#": 596 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 598 + }, + "vertices": { + "#": 599 + } + }, + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 587 + }, + "min": { + "#": 588 + } + }, + { + "x": 397.1199999999999, + "y": 226.58375476702597 + }, + { + "x": 367.6959999999999, + "y": 197.159754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 211.87175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 208.9644840519903 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,4,4", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 597 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 208.945754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 197.159754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 197.159754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 208.945754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 617 + }, + "bounds": { + "#": 626 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 629 + }, + "constraintImpulse": { + "#": 630 + }, + "density": 0.001, + "force": { + "#": 631 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 632 + }, + "positionImpulse": { + "#": 633 + }, + "positionPrev": { + "#": 634 + }, + "region": { + "#": 635 + }, + "render": { + "#": 636 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 638 + }, + "vertices": { + "#": 639 + } + }, + [ + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 627 + }, + "min": { + "#": 628 + } + }, + { + "x": 476.54399999999987, + "y": 226.58375476702597 + }, + { + "x": 447.1199999999999, + "y": 197.159754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 211.87175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 208.9644840519903 + }, + { + "endCol": 9, + "endRow": 4, + "id": "9,9,4,4", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 637 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.54399999999987, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.30399999999986, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.1659999999999, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.75799999999987, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 458.9059999999999, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 453.4979999999999, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.3599999999999, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 447.1199999999999, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 447.1199999999999, + "y": 208.945754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 449.3599999999999, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.4979999999999, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.9059999999999, + "y": 197.159754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 464.75799999999987, + "y": 197.159754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1659999999999, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.30399999999986, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 476.54399999999987, + "y": 208.945754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 657 + }, + "bounds": { + "#": 666 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 669 + }, + "constraintImpulse": { + "#": 670 + }, + "density": 0.001, + "force": { + "#": 671 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 672 + }, + "positionImpulse": { + "#": 673 + }, + "positionPrev": { + "#": 674 + }, + "region": { + "#": 675 + }, + "render": { + "#": 676 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 678 + }, + "vertices": { + "#": 679 + } + }, + [ + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 667 + }, + "min": { + "#": 668 + } + }, + { + "x": 555.9679999999998, + "y": 226.58375476702597 + }, + { + "x": 526.5439999999999, + "y": 197.159754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 211.87175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 208.9644840519903 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 677 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.9679999999998, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.7279999999998, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5899999999998, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.1819999999999, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.3299999999998, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.9219999999999, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.7839999999999, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.5439999999999, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5439999999999, + "y": 208.945754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.7839999999999, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.9219999999999, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 538.3299999999998, + "y": 197.159754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 544.1819999999999, + "y": 197.159754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 549.5899999999998, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 553.7279999999998, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 555.9679999999998, + "y": 208.945754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 697 + }, + "bounds": { + "#": 706 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 709 + }, + "constraintImpulse": { + "#": 710 + }, + "density": 0.001, + "force": { + "#": 711 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 712 + }, + "positionImpulse": { + "#": 713 + }, + "positionPrev": { + "#": 714 + }, + "region": { + "#": 715 + }, + "render": { + "#": 716 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 718 + }, + "vertices": { + "#": 719 + } + }, + [ + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 707 + }, + "min": { + "#": 708 + } + }, + { + "x": 635.3919999999998, + "y": 226.58375476702597 + }, + { + "x": 605.9679999999998, + "y": 197.159754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 211.87175476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 208.9644840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,4,4", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 717 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.3919999999998, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.1519999999998, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.0139999999998, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.6059999999999, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.7539999999998, + "y": 226.58375476702597 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 612.3459999999999, + "y": 224.34375476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 608.2079999999999, + "y": 220.20575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 605.9679999999998, + "y": 214.79775476702596 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.9679999999998, + "y": 208.945754767026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 608.2079999999999, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.3459999999999, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 617.7539999999998, + "y": 197.159754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 623.6059999999999, + "y": 197.159754767026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 629.0139999999998, + "y": 199.39975476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 633.1519999999998, + "y": 203.53775476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 635.3919999999998, + "y": 208.945754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 737 + }, + "bounds": { + "#": 746 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 749 + }, + "constraintImpulse": { + "#": 750 + }, + "density": 0.001, + "force": { + "#": 751 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 752 + }, + "positionImpulse": { + "#": 753 + }, + "positionPrev": { + "#": 754 + }, + "region": { + "#": 755 + }, + "render": { + "#": 756 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 758 + }, + "vertices": { + "#": 759 + } + }, + [ + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 747 + }, + "min": { + "#": 748 + } + }, + { + "x": 79.424, + "y": 306.0077547670249 + }, + { + "x": 50, + "y": 276.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 291.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 288.38848405198934 + }, + { + "endCol": 1, + "endRow": 6, + "id": "1,1,5,6", + "startCol": 1, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 757 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 79.424, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 77.184, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.046, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.638, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.786, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.378, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.24, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 50, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50, + "y": 288.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.24, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.378, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.786, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 67.638, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.046, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 77.184, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 79.424, + "y": 288.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 777 + }, + "bounds": { + "#": 786 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 789 + }, + "constraintImpulse": { + "#": 790 + }, + "density": 0.001, + "force": { + "#": 791 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 792 + }, + "positionImpulse": { + "#": 793 + }, + "positionPrev": { + "#": 794 + }, + "region": { + "#": 795 + }, + "render": { + "#": 796 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 798 + }, + "vertices": { + "#": 799 + } + }, + [ + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 787 + }, + "min": { + "#": 788 + } + }, + { + "x": 158.84799999999998, + "y": 306.0077547670249 + }, + { + "x": 129.42399999999998, + "y": 276.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 291.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 288.38848405198934 + }, + { + "endCol": 3, + "endRow": 6, + "id": "2,3,5,6", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 797 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.84799999999998, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.608, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.47, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.06199999999998, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 141.20999999999998, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 135.802, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 131.664, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.42399999999998, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.42399999999998, + "y": 288.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.664, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.802, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.20999999999998, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.06199999999998, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.47, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.608, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.84799999999998, + "y": 288.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 817 + }, + "bounds": { + "#": 826 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "density": 0.001, + "force": { + "#": 831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 832 + }, + "positionImpulse": { + "#": 833 + }, + "positionPrev": { + "#": 834 + }, + "region": { + "#": 835 + }, + "render": { + "#": 836 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 838 + }, + "vertices": { + "#": 839 + } + }, + [ + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 827 + }, + "min": { + "#": 828 + } + }, + { + "x": 238.27199999999996, + "y": 306.0077547670249 + }, + { + "x": 208.84799999999998, + "y": 276.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 291.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 288.38848405198934 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 837 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.27199999999996, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 236.03199999999998, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.89399999999998, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.48599999999996, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.634, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.22599999999997, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.08799999999997, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.84799999999998, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.84799999999998, + "y": 288.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.08799999999997, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.22599999999997, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.634, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.48599999999996, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 231.89399999999998, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 236.03199999999998, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 238.27199999999996, + "y": 288.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 857 + }, + "bounds": { + "#": 866 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 869 + }, + "constraintImpulse": { + "#": 870 + }, + "density": 0.001, + "force": { + "#": 871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 872 + }, + "positionImpulse": { + "#": 873 + }, + "positionPrev": { + "#": 874 + }, + "region": { + "#": 875 + }, + "render": { + "#": 876 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 878 + }, + "vertices": { + "#": 879 + } + }, + [ + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 867 + }, + "min": { + "#": 868 + } + }, + { + "x": 317.6959999999999, + "y": 306.0077547670249 + }, + { + "x": 288.27199999999993, + "y": 276.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 291.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 288.38848405198934 + }, + { + "endCol": 6, + "endRow": 6, + "id": "6,6,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 877 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6959999999999, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.4559999999999, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.3179999999999, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.9099999999999, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.05799999999994, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.6499999999999, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.51199999999994, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.27199999999993, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.27199999999993, + "y": 288.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.51199999999994, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.6499999999999, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.05799999999994, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.9099999999999, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.3179999999999, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.4559999999999, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.6959999999999, + "y": 288.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 897 + }, + "bounds": { + "#": 906 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 909 + }, + "constraintImpulse": { + "#": 910 + }, + "density": 0.001, + "force": { + "#": 911 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 912 + }, + "positionImpulse": { + "#": 913 + }, + "positionPrev": { + "#": 914 + }, + "region": { + "#": 915 + }, + "render": { + "#": 916 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 918 + }, + "vertices": { + "#": 919 + } + }, + [ + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 907 + }, + "min": { + "#": 908 + } + }, + { + "x": 397.1199999999999, + "y": 306.0077547670249 + }, + { + "x": 367.6959999999999, + "y": 276.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 291.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 288.38848405198934 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 917 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 288.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 288.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 937 + }, + "bounds": { + "#": 946 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 949 + }, + "constraintImpulse": { + "#": 950 + }, + "density": 0.001, + "force": { + "#": 951 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 952 + }, + "positionImpulse": { + "#": 953 + }, + "positionPrev": { + "#": 954 + }, + "region": { + "#": 955 + }, + "render": { + "#": 956 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 958 + }, + "vertices": { + "#": 959 + } + }, + [ + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 947 + }, + "min": { + "#": 948 + } + }, + { + "x": 476.54399999999987, + "y": 306.0077547670249 + }, + { + "x": 447.1199999999999, + "y": 276.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 291.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 288.38848405198934 + }, + { + "endCol": 9, + "endRow": 6, + "id": "9,9,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 957 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.54399999999987, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.30399999999986, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.1659999999999, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.75799999999987, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 458.9059999999999, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 453.4979999999999, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.3599999999999, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 447.1199999999999, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 447.1199999999999, + "y": 288.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 449.3599999999999, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.4979999999999, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.9059999999999, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 464.75799999999987, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1659999999999, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.30399999999986, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 476.54399999999987, + "y": 288.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 977 + }, + "bounds": { + "#": 986 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 989 + }, + "constraintImpulse": { + "#": 990 + }, + "density": 0.001, + "force": { + "#": 991 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 992 + }, + "positionImpulse": { + "#": 993 + }, + "positionPrev": { + "#": 994 + }, + "region": { + "#": 995 + }, + "render": { + "#": 996 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 998 + }, + "vertices": { + "#": 999 + } + }, + [ + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 987 + }, + "min": { + "#": 988 + } + }, + { + "x": 555.9679999999998, + "y": 306.0077547670249 + }, + { + "x": 526.5439999999999, + "y": 276.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 291.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 288.38848405198934 + }, + { + "endCol": 11, + "endRow": 6, + "id": "10,11,5,6", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 997 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.9679999999998, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.7279999999998, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5899999999998, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.1819999999999, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.3299999999998, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.9219999999999, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.7839999999999, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.5439999999999, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5439999999999, + "y": 288.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.7839999999999, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.9219999999999, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 538.3299999999998, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 544.1819999999999, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 549.5899999999998, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 553.7279999999998, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 555.9679999999998, + "y": 288.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1017 + }, + "bounds": { + "#": 1026 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1029 + }, + "constraintImpulse": { + "#": 1030 + }, + "density": 0.001, + "force": { + "#": 1031 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1032 + }, + "positionImpulse": { + "#": 1033 + }, + "positionPrev": { + "#": 1034 + }, + "region": { + "#": 1035 + }, + "render": { + "#": 1036 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1038 + }, + "vertices": { + "#": 1039 + } + }, + [ + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1027 + }, + "min": { + "#": 1028 + } + }, + { + "x": 635.3919999999998, + "y": 306.0077547670249 + }, + { + "x": 605.9679999999998, + "y": 276.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 291.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 288.38848405198934 + }, + { + "endCol": 13, + "endRow": 6, + "id": "12,13,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1037 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.3919999999998, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.1519999999998, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.0139999999998, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.6059999999999, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.7539999999998, + "y": 306.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 612.3459999999999, + "y": 303.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 608.2079999999999, + "y": 299.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 605.9679999999998, + "y": 294.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.9679999999998, + "y": 288.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 608.2079999999999, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.3459999999999, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 617.7539999999998, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 623.6059999999999, + "y": 276.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 629.0139999999998, + "y": 278.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 633.1519999999998, + "y": 282.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 635.3919999999998, + "y": 288.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1057 + }, + "bounds": { + "#": 1066 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1069 + }, + "constraintImpulse": { + "#": 1070 + }, + "density": 0.001, + "force": { + "#": 1071 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1072 + }, + "positionImpulse": { + "#": 1073 + }, + "positionPrev": { + "#": 1074 + }, + "region": { + "#": 1075 + }, + "render": { + "#": 1076 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1078 + }, + "vertices": { + "#": 1079 + } + }, + [ + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1067 + }, + "min": { + "#": 1068 + } + }, + { + "x": 79.424, + "y": 385.43175476702487 + }, + { + "x": 50, + "y": 356.0077547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 370.7197547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.712, + "y": 367.8124840519893 + }, + { + "endCol": 1, + "endRow": 8, + "id": "1,1,7,8", + "startCol": 1, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1077 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 79.424, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 77.184, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 73.046, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.638, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.786, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.378, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 52.24, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 50, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 50, + "y": 367.7937547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.24, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.378, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.786, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 67.638, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 73.046, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 77.184, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 79.424, + "y": 367.7937547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1097 + }, + "bounds": { + "#": 1106 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1109 + }, + "constraintImpulse": { + "#": 1110 + }, + "density": 0.001, + "force": { + "#": 1111 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1112 + }, + "positionImpulse": { + "#": 1113 + }, + "positionPrev": { + "#": 1114 + }, + "region": { + "#": 1115 + }, + "render": { + "#": 1116 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1118 + }, + "vertices": { + "#": 1119 + } + }, + [ + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1107 + }, + "min": { + "#": 1108 + } + }, + { + "x": 158.84799999999998, + "y": 385.43175476702487 + }, + { + "x": 129.42399999999998, + "y": 356.0077547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 370.7197547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 144.136, + "y": 367.8124840519893 + }, + { + "endCol": 3, + "endRow": 8, + "id": "2,3,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1117 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 158.84799999999998, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.608, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.47, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.06199999999998, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 141.20999999999998, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 135.802, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 131.664, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 129.42399999999998, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 129.42399999999998, + "y": 367.7937547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.664, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 135.802, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.20999999999998, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 147.06199999999998, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 152.47, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 156.608, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 158.84799999999998, + "y": 367.7937547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1137 + }, + "bounds": { + "#": 1146 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1149 + }, + "constraintImpulse": { + "#": 1150 + }, + "density": 0.001, + "force": { + "#": 1151 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1152 + }, + "positionImpulse": { + "#": 1153 + }, + "positionPrev": { + "#": 1154 + }, + "region": { + "#": 1155 + }, + "render": { + "#": 1156 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1158 + }, + "vertices": { + "#": 1159 + } + }, + [ + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1147 + }, + "min": { + "#": 1148 + } + }, + { + "x": 238.27199999999996, + "y": 385.43175476702487 + }, + { + "x": 208.84799999999998, + "y": 356.0077547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 370.7197547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 223.55999999999997, + "y": 367.8124840519893 + }, + { + "endCol": 4, + "endRow": 8, + "id": "4,4,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1157 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 238.27199999999996, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 236.03199999999998, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.89399999999998, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 226.48599999999996, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.634, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.22599999999997, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 211.08799999999997, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 208.84799999999998, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 208.84799999999998, + "y": 367.7937547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 211.08799999999997, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.22599999999997, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 220.634, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.48599999999996, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 231.89399999999998, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 236.03199999999998, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 238.27199999999996, + "y": 367.7937547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1177 + }, + "bounds": { + "#": 1186 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1189 + }, + "constraintImpulse": { + "#": 1190 + }, + "density": 0.001, + "force": { + "#": 1191 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1192 + }, + "positionImpulse": { + "#": 1193 + }, + "positionPrev": { + "#": 1194 + }, + "region": { + "#": 1195 + }, + "render": { + "#": 1196 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1198 + }, + "vertices": { + "#": 1199 + } + }, + [ + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1187 + }, + "min": { + "#": 1188 + } + }, + { + "x": 317.6959999999999, + "y": 385.43175476702487 + }, + { + "x": 288.27199999999993, + "y": 356.0077547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 370.7197547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.9839999999999, + "y": 367.8124840519893 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1197 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6959999999999, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 315.4559999999999, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.3179999999999, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.9099999999999, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 300.05799999999994, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.6499999999999, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 290.51199999999994, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 288.27199999999993, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 288.27199999999993, + "y": 367.7937547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.51199999999994, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.6499999999999, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.05799999999994, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.9099999999999, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 311.3179999999999, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 315.4559999999999, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.6959999999999, + "y": 367.7937547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1217 + }, + "bounds": { + "#": 1226 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1229 + }, + "constraintImpulse": { + "#": 1230 + }, + "density": 0.001, + "force": { + "#": 1231 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1232 + }, + "positionImpulse": { + "#": 1233 + }, + "positionPrev": { + "#": 1234 + }, + "region": { + "#": 1235 + }, + "render": { + "#": 1236 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1238 + }, + "vertices": { + "#": 1239 + } + }, + [ + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1227 + }, + "min": { + "#": 1228 + } + }, + { + "x": 397.1199999999999, + "y": 385.43175476702487 + }, + { + "x": 367.6959999999999, + "y": 356.0077547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 370.7197547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 367.8124840519893 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1237 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 367.7937547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 367.7937547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1257 + }, + "bounds": { + "#": 1266 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1269 + }, + "constraintImpulse": { + "#": 1270 + }, + "density": 0.001, + "force": { + "#": 1271 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1272 + }, + "positionImpulse": { + "#": 1273 + }, + "positionPrev": { + "#": 1274 + }, + "region": { + "#": 1275 + }, + "render": { + "#": 1276 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1278 + }, + "vertices": { + "#": 1279 + } + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1267 + }, + "min": { + "#": 1268 + } + }, + { + "x": 476.54399999999987, + "y": 385.43175476702487 + }, + { + "x": 447.1199999999999, + "y": 356.0077547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 370.7197547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.8319999999999, + "y": 367.8124840519893 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1277 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 476.54399999999987, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.30399999999986, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 470.1659999999999, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 464.75799999999987, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 458.9059999999999, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 453.4979999999999, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.3599999999999, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 447.1199999999999, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 447.1199999999999, + "y": 367.7937547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 449.3599999999999, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 453.4979999999999, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 458.9059999999999, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 464.75799999999987, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1659999999999, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 474.30399999999986, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 476.54399999999987, + "y": 367.7937547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1297 + }, + "bounds": { + "#": 1306 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1309 + }, + "constraintImpulse": { + "#": 1310 + }, + "density": 0.001, + "force": { + "#": 1311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1312 + }, + "positionImpulse": { + "#": 1313 + }, + "positionPrev": { + "#": 1314 + }, + "region": { + "#": 1315 + }, + "render": { + "#": 1316 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1318 + }, + "vertices": { + "#": 1319 + } + }, + [ + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1307 + }, + "min": { + "#": 1308 + } + }, + { + "x": 555.9679999999998, + "y": 385.43175476702487 + }, + { + "x": 526.5439999999999, + "y": 356.0077547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 370.7197547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.2559999999999, + "y": 367.8124840519893 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1317 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.9679999999998, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.7279999999998, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.5899999999998, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 544.1819999999999, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 538.3299999999998, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 532.9219999999999, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 528.7839999999999, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 526.5439999999999, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 526.5439999999999, + "y": 367.7937547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.7839999999999, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 532.9219999999999, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 538.3299999999998, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 544.1819999999999, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 549.5899999999998, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 553.7279999999998, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 555.9679999999998, + "y": 367.7937547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1337 + }, + "bounds": { + "#": 1346 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "density": 0.001, + "force": { + "#": 1351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 302.12291579862625, + "inverseInertia": 0.00330991112460509, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1352 + }, + "positionImpulse": { + "#": 1353 + }, + "positionPrev": { + "#": 1354 + }, + "region": { + "#": 1355 + }, + "render": { + "#": 1356 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1358 + }, + "vertices": { + "#": 1359 + } + }, + [ + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1347 + }, + "min": { + "#": 1348 + } + }, + { + "x": 635.3919999999998, + "y": 385.43175476702487 + }, + { + "x": 605.9679999999998, + "y": 356.0077547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 370.7197547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.6799999999998, + "y": 367.8124840519893 + }, + { + "endCol": 13, + "endRow": 8, + "id": "12,13,7,8", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1357 + }, + "strokeStyle": "#777", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.3919999999998, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 633.1519999999998, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 629.0139999999998, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.6059999999999, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.7539999999998, + "y": 385.43175476702487 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 612.3459999999999, + "y": 383.19175476702486 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 608.2079999999999, + "y": 379.0537547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 605.9679999999998, + "y": 373.64575476702487 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 605.9679999999998, + "y": 367.7937547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 608.2079999999999, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.3459999999999, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 617.7539999999998, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 623.6059999999999, + "y": 356.0077547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 629.0139999999998, + "y": 358.2477547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 633.1519999999998, + "y": 362.3857547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 635.3919999999998, + "y": 367.7937547670249 + }, + [], + [], + [ + { + "#": 1379 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1380 + }, + "pointB": "", + "render": { + "#": 1381 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 1383 + } + }, + [ + { + "#": 1384 + } + ], + {}, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/friction/friction-0.json b/tests/browser/refs/friction/friction-0.json new file mode 100644 index 00000000..b6855bbc --- /dev/null +++ b/tests/browser/refs/friction/friction-0.json @@ -0,0 +1,2021 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 212 + }, + "composites": { + "#": 215 + }, + "constraints": { + "#": 216 + }, + "events": { + "#": 220 + }, + "gravity": { + "#": 222 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + }, + { + "#": 128 + }, + { + "#": 149 + }, + { + "#": 170 + }, + { + "#": 191 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 87 + }, + "bounds": { + "#": 90 + }, + "collisionFilter": { + "#": 93 + }, + "constraintImpulse": { + "#": 94 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 95 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 96 + }, + "positionImpulse": { + "#": 97 + }, + "positionPrev": { + "#": 98 + }, + "render": { + "#": 99 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 101 + }, + "vertices": { + "#": 102 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 645.6743509008983, + "y": 255.4063326122905 + }, + { + "x": -45.674350900898276, + "y": 104.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 180 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 180 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 100 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -41.92672460918379, + "y": 104.5936673877095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 645.6743509008983, + "y": 235.76058759771672 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 641.9267246091838, + "y": 255.4063326122905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -45.674350900898276, + "y": 124.23941240228328 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 108 + }, + "bounds": { + "#": 111 + }, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": 0.001, + "force": { + "#": 116 + }, + "friction": 0.001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "render": { + "#": 120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 122 + }, + "vertices": { + "#": 123 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 320, + "y": 90 + }, + { + "x": 280, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 70 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 70 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 121 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 90 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 90 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 129 + }, + "bounds": { + "#": 132 + }, + "collisionFilter": { + "#": 135 + }, + "constraintImpulse": { + "#": 136 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 137 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 138 + }, + "positionImpulse": { + "#": 139 + }, + "positionPrev": { + "#": 140 + }, + "render": { + "#": 141 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 143 + }, + "vertices": { + "#": 144 + } + }, + [ + { + "#": 130 + }, + { + "#": 131 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 133 + }, + "min": { + "#": 134 + } + }, + { + "x": 645.6743509008983, + "y": 425.4063326122905 + }, + { + "x": -45.674350900898276, + "y": 274.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 350 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 142 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -41.92672460918379, + "y": 274.5936673877095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 645.6743509008983, + "y": 405.7605875977167 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 641.9267246091838, + "y": 425.4063326122905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -45.674350900898276, + "y": 294.2394124022833 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 150 + }, + "bounds": { + "#": 153 + }, + "collisionFilter": { + "#": 156 + }, + "constraintImpulse": { + "#": 157 + }, + "density": 0.001, + "force": { + "#": 158 + }, + "friction": 0.0005, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 159 + }, + "positionImpulse": { + "#": 160 + }, + "positionPrev": { + "#": 161 + }, + "render": { + "#": 162 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 164 + }, + "vertices": { + "#": 165 + } + }, + [ + { + "#": 151 + }, + { + "#": 152 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 154 + }, + "min": { + "#": 155 + } + }, + { + "x": 320, + "y": 270 + }, + { + "x": 280, + "y": 230 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 250 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 163 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 230 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 230 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 270 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 171 + }, + "bounds": { + "#": 174 + }, + "collisionFilter": { + "#": 177 + }, + "constraintImpulse": { + "#": 178 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 179 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 180 + }, + "positionImpulse": { + "#": 181 + }, + "positionPrev": { + "#": 182 + }, + "render": { + "#": 183 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 185 + }, + "vertices": { + "#": 186 + } + }, + [ + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 175 + }, + "min": { + "#": 176 + } + }, + { + "x": 645.6743509008983, + "y": 595.4063326122905 + }, + { + "x": -45.674350900898276, + "y": 444.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 520 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 184 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -41.92672460918379, + "y": 444.5936673877095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 645.6743509008983, + "y": 575.7605875977167 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 641.9267246091838, + "y": 595.4063326122905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -45.674350900898276, + "y": 464.2394124022833 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 192 + }, + "bounds": { + "#": 195 + }, + "collisionFilter": { + "#": 198 + }, + "constraintImpulse": { + "#": 199 + }, + "density": 0.001, + "force": { + "#": 200 + }, + "friction": 0, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 201 + }, + "positionImpulse": { + "#": 202 + }, + "positionPrev": { + "#": 203 + }, + "render": { + "#": 204 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 206 + }, + "vertices": { + "#": 207 + } + }, + [ + { + "#": 193 + }, + { + "#": 194 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 196 + }, + "min": { + "#": 197 + } + }, + { + "x": 320, + "y": 450 + }, + { + "x": 280, + "y": 410 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 430 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 430 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 205 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 410 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 410 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 450 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 450 + }, + { + "max": { + "#": 213 + }, + "min": { + "#": 214 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [], + [ + { + "#": 217 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 218 + }, + "pointB": "", + "render": { + "#": 219 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 221 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/friction/friction-10.json b/tests/browser/refs/friction/friction-10.json new file mode 100644 index 00000000..701fd1c2 --- /dev/null +++ b/tests/browser/refs/friction/friction-10.json @@ -0,0 +1,2121 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 222 + }, + "composites": { + "#": 225 + }, + "constraints": { + "#": 226 + }, + "events": { + "#": 230 + }, + "gravity": { + "#": 232 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + }, + { + "#": 156 + }, + { + "#": 178 + }, + { + "#": 200 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 91 + }, + "bounds": { + "#": 94 + }, + "collisionFilter": { + "#": 97 + }, + "constraintImpulse": { + "#": 98 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 99 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 100 + }, + "positionImpulse": { + "#": 101 + }, + "positionPrev": { + "#": 102 + }, + "region": { + "#": 103 + }, + "render": { + "#": 104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 106 + }, + "vertices": { + "#": 107 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 95 + }, + "min": { + "#": 96 + } + }, + { + "x": 645.6743509008983, + "y": 255.4063326122905 + }, + { + "x": -45.674350900898276, + "y": 104.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 180 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 180 + }, + { + "endCol": 13, + "endRow": 5, + "id": "-1,13,2,5", + "startCol": -1, + "startRow": 2 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 105 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -41.92672460918379, + "y": 104.5936673877095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 645.6743509008983, + "y": 235.76058759771672 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 641.9267246091838, + "y": 255.4063326122905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -45.674350900898276, + "y": 124.23941240228328 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 113 + }, + "bounds": { + "#": 116 + }, + "collisionFilter": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "density": 0.001, + "force": { + "#": 121 + }, + "friction": 0.001, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 122 + }, + "positionImpulse": { + "#": 123 + }, + "positionPrev": { + "#": 124 + }, + "region": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 320, + "y": 107.73575476702572 + }, + { + "x": 280, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 87.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 84.82848405199007 + }, + { + "endCol": 6, + "endRow": 2, + "id": "5,6,1,2", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 107.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 107.73575476702572 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 143 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "region": { + "#": 147 + }, + "render": { + "#": 148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 150 + }, + "vertices": { + "#": 151 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 645.6743509008983, + "y": 425.4063326122905 + }, + { + "x": -45.674350900898276, + "y": 274.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 350 + }, + { + "endCol": 13, + "endRow": 8, + "id": "-1,13,5,8", + "startCol": -1, + "startRow": 5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 149 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -41.92672460918379, + "y": 274.5936673877095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 645.6743509008983, + "y": 405.7605875977167 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 641.9267246091838, + "y": 425.4063326122905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -45.674350900898276, + "y": 294.2394124022833 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 157 + }, + "bounds": { + "#": 160 + }, + "collisionFilter": { + "#": 163 + }, + "constraintImpulse": { + "#": 164 + }, + "density": 0.001, + "force": { + "#": 165 + }, + "friction": 0.0005, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 166 + }, + "positionImpulse": { + "#": 167 + }, + "positionPrev": { + "#": 168 + }, + "region": { + "#": 169 + }, + "render": { + "#": 170 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 172 + }, + "vertices": { + "#": 173 + } + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 161 + }, + "min": { + "#": 162 + } + }, + { + "x": 320, + "y": 287.73575476702587 + }, + { + "x": 280, + "y": 247.73575476702592 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 267.7357547670259 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 264.82848405199024 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,5,5", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 171 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 247.73575476702592 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 247.73575476702592 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 287.73575476702587 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 287.73575476702587 + }, + { + "angle": 0.18849555921538758, + "anglePrev": 0.18849555921538758, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 14000, + "axes": { + "#": 179 + }, + "bounds": { + "#": 182 + }, + "collisionFilter": { + "#": 185 + }, + "constraintImpulse": { + "#": 186 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 187 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 188 + }, + "positionImpulse": { + "#": 189 + }, + "positionPrev": { + "#": 190 + }, + "region": { + "#": 191 + }, + "render": { + "#": 192 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 194 + }, + "vertices": { + "#": 195 + } + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": -0.1873813145857246, + "y": 0.9822872507286887 + }, + { + "x": -0.9822872507286887, + "y": -0.1873813145857246 + }, + { + "max": { + "#": 183 + }, + "min": { + "#": 184 + } + }, + { + "x": 645.6743509008983, + "y": 595.4063326122905 + }, + { + "x": -45.674350900898276, + "y": 444.5936673877095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 520 + }, + { + "endCol": 13, + "endRow": 12, + "id": "-1,13,9,12", + "startCol": -1, + "startRow": 9 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 193 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -41.92672460918379, + "y": 444.5936673877095 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 645.6743509008983, + "y": 575.7605875977167 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 641.9267246091838, + "y": 595.4063326122905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -45.674350900898276, + "y": 464.2394124022833 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 201 + }, + "bounds": { + "#": 204 + }, + "collisionFilter": { + "#": 207 + }, + "constraintImpulse": { + "#": 208 + }, + "density": 0.001, + "force": { + "#": 209 + }, + "friction": 0, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 210 + }, + "positionImpulse": { + "#": 211 + }, + "positionPrev": { + "#": 212 + }, + "region": { + "#": 213 + }, + "render": { + "#": 214 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 216 + }, + "vertices": { + "#": 217 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 205 + }, + "min": { + "#": 206 + } + }, + { + "x": 320, + "y": 467.73575476702496 + }, + { + "x": 280, + "y": 427.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 447.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 444.8284840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 215 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280, + "y": 427.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320, + "y": 427.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320, + "y": 467.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280, + "y": 467.73575476702496 + }, + { + "max": { + "#": 223 + }, + "min": { + "#": 224 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [], + [ + { + "#": 227 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 228 + }, + "pointB": "", + "render": { + "#": 229 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 231 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/gravity/gravity-0.json b/tests/browser/refs/gravity/gravity-0.json new file mode 100644 index 00000000..1486d61a --- /dev/null +++ b/tests/browser/refs/gravity/gravity-0.json @@ -0,0 +1,22915 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 2619 + }, + "gravity": { + "#": 2623 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 2617 + }, + "constraints": { + "#": 2618 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 200 + }, + { + "#": 225 + }, + { + "#": 279 + }, + { + "#": 300 + }, + { + "#": 321 + }, + { + "#": 342 + }, + { + "#": 363 + }, + { + "#": 384 + }, + { + "#": 413 + }, + { + "#": 434 + }, + { + "#": 459 + }, + { + "#": 480 + }, + { + "#": 501 + }, + { + "#": 555 + }, + { + "#": 576 + }, + { + "#": 597 + }, + { + "#": 651 + }, + { + "#": 672 + }, + { + "#": 693 + }, + { + "#": 714 + }, + { + "#": 738 + }, + { + "#": 762 + }, + { + "#": 783 + }, + { + "#": 807 + }, + { + "#": 828 + }, + { + "#": 852 + }, + { + "#": 873 + }, + { + "#": 894 + }, + { + "#": 915 + }, + { + "#": 942 + }, + { + "#": 963 + }, + { + "#": 984 + }, + { + "#": 1005 + }, + { + "#": 1026 + }, + { + "#": 1047 + }, + { + "#": 1101 + }, + { + "#": 1122 + }, + { + "#": 1151 + }, + { + "#": 1172 + }, + { + "#": 1201 + }, + { + "#": 1222 + }, + { + "#": 1243 + }, + { + "#": 1264 + }, + { + "#": 1285 + }, + { + "#": 1314 + }, + { + "#": 1335 + }, + { + "#": 1356 + }, + { + "#": 1377 + }, + { + "#": 1398 + }, + { + "#": 1452 + }, + { + "#": 1473 + }, + { + "#": 1527 + }, + { + "#": 1548 + }, + { + "#": 1577 + }, + { + "#": 1598 + }, + { + "#": 1619 + }, + { + "#": 1640 + }, + { + "#": 1661 + }, + { + "#": 1686 + }, + { + "#": 1707 + }, + { + "#": 1728 + }, + { + "#": 1749 + }, + { + "#": 1774 + }, + { + "#": 1795 + }, + { + "#": 1816 + }, + { + "#": 1837 + }, + { + "#": 1891 + }, + { + "#": 1945 + }, + { + "#": 1970 + }, + { + "#": 1991 + }, + { + "#": 2012 + }, + { + "#": 2041 + }, + { + "#": 2065 + }, + { + "#": 2086 + }, + { + "#": 2115 + }, + { + "#": 2136 + }, + { + "#": 2157 + }, + { + "#": 2178 + }, + { + "#": 2203 + }, + { + "#": 2224 + }, + { + "#": 2251 + }, + { + "#": 2272 + }, + { + "#": 2293 + }, + { + "#": 2314 + }, + { + "#": 2335 + }, + { + "#": 2359 + }, + { + "#": 2380 + }, + { + "#": 2404 + }, + { + "#": 2425 + }, + { + "#": 2446 + }, + { + "#": 2471 + }, + { + "#": 2492 + }, + { + "#": 2546 + }, + { + "#": 2567 + }, + { + "#": 2588 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1534.906434764454, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 56.40316358024691, + "y": 62.164094650205755 + }, + { + "x": 19.999999999999996, + "y": 19.999999999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.201581790123456, + "y": 41.08204732510288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.201581790123456, + "y": 41.08204732510288 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 19.999999999999996, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 56.40316358024691, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.40316358024691, + "y": 62.164094650205755 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 19.999999999999996, + "y": 62.164094650205755 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.52878634164, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 101.7190072016461, + "y": 69.0011574074074 + }, + { + "x": 56.40316358024691, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.0610853909465, + "y": 44.5005787037037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.0610853909465, + "y": 44.5005787037037 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.40316358024691, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 101.7190072016461, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 101.7190072016461, + "y": 69.0011574074074 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 56.40316358024691, + "y": 69.0011574074074 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1140.197701571206, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 140.93981481481484, + "y": 49.07124485596708 + }, + { + "x": 101.7190072016461, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.32941100823047, + "y": 34.53562242798354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.32941100823047, + "y": 34.53562242798354 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 101.7190072016461, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.93981481481484, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140.93981481481484, + "y": 49.07124485596708 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 101.7190072016461, + "y": 49.07124485596708 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 752.4076041785743, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 165.81712962962968, + "y": 50.24472736625515 + }, + { + "x": 140.93981481481484, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.37847222222226, + "y": 35.122363683127574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.37847222222226, + "y": 35.122363683127574 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140.93981481481484, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 165.81712962962968, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.81712962962968, + "y": 50.24472736625515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.93981481481484, + "y": 50.24472736625515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2027.2541820000001, + "axes": { + "#": 177 + }, + "bounds": { + "#": 181 + }, + "collisionFilter": { + "#": 184 + }, + "constraintImpulse": { + "#": 185 + }, + "density": 0.001, + "force": { + "#": 186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 187 + }, + "positionImpulse": { + "#": 188 + }, + "positionPrev": { + "#": 189 + }, + "render": { + "#": 190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 192 + }, + "vertices": { + "#": 193 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + } + ], + { + "x": -0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 182 + }, + "min": { + "#": 183 + } + }, + { + "x": 214.19912962962968, + "y": 75.868 + }, + { + "x": 165.81712962962968, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 190.00812962962968, + "y": 47.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 190.00812962962968, + "y": 47.934 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 191 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.19912962962968, + "y": 61.900999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.00812962962968, + "y": 75.868 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.81712962962968, + "y": 61.900999999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 165.81712962962968, + "y": 33.967 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 190.00812962962968, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 214.19912962962968, + "y": 33.967 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4842.27229, + "axes": { + "#": 201 + }, + "bounds": { + "#": 207 + }, + "collisionFilter": { + "#": 210 + }, + "constraintImpulse": { + "#": 211 + }, + "density": 0.001, + "force": { + "#": 212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 213 + }, + "positionImpulse": { + "#": 214 + }, + "positionPrev": { + "#": 215 + }, + "render": { + "#": 216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 218 + }, + "vertices": { + "#": 219 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 0.30902000749156683, + "y": 0.95105553726894 + }, + { + "x": -0.8090188345853124, + "y": 0.5877827194518592 + }, + { + "x": -0.8090188345853124, + "y": -0.5877827194518592 + }, + { + "x": 0.30902000749156683, + "y": -0.95105553726894 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 208 + }, + "min": { + "#": 209 + } + }, + { + "x": 291.5277437444547, + "y": 105.84 + }, + { + "x": 209.8897437444547, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.0181296296297, + "y": 62.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.0181296296297, + "y": 62.92 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 217 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 291.5277437444547, + "y": 89.446 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 241.0727437444547, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 209.8897437444547, + "y": 62.92 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.0727437444547, + "y": 20 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.5277437444547, + "y": 36.394000000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3079.0178339999993, + "axes": { + "#": 226 + }, + "bounds": { + "#": 240 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 243 + }, + "constraintImpulse": { + "#": 244 + }, + "density": 0.001, + "force": { + "#": 245 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 246 + }, + "positionImpulse": { + "#": 247 + }, + "positionPrev": { + "#": 248 + }, + "render": { + "#": 249 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 251 + }, + "vertices": { + "#": 252 + } + }, + [ + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + } + ], + { + "x": -0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": -0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": -0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": -0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": -0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": -0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": 0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": 0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": 0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": 0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 241 + }, + "min": { + "#": 242 + } + }, + { + "x": 353.98774374445475, + "y": 82.918 + }, + { + "x": 291.5277437444547, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.75774374445473, + "y": 51.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.75774374445473, + "y": 51.459 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 250 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.98774374445475, + "y": 55.251000000000005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.17274374445475, + "y": 62.615 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 348.6477437444547, + "y": 69.33 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 343.6187437444547, + "y": 75.007 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.37774374445473, + "y": 79.315 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 330.2867437444547, + "y": 82.004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.75774374445473, + "y": 82.918 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 315.22874374445473, + "y": 82.004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.1377437444547, + "y": 79.315 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.89674374445474, + "y": 75.007 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 296.86774374445474, + "y": 69.33 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 293.3427437444547, + "y": 62.615 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 291.5277437444547, + "y": 55.251000000000005 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 291.5277437444547, + "y": 47.667 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 293.3427437444547, + "y": 40.303000000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 296.86774374445474, + "y": 33.58800000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 301.89674374445474, + "y": 27.911000000000005 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.1377437444547, + "y": 23.603 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 315.22874374445473, + "y": 20.914 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 322.75774374445473, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 330.2867437444547, + "y": 20.914 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 337.37774374445473, + "y": 23.603 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 343.6187437444547, + "y": 27.911000000000005 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 348.6477437444547, + "y": 33.58800000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 352.17274374445475, + "y": 40.303000000000004 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 353.98774374445475, + "y": 47.667 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1329.4167625219097, + "axes": { + "#": 280 + }, + "bounds": { + "#": 283 + }, + "collisionFilter": { + "#": 286 + }, + "constraintImpulse": { + "#": 287 + }, + "density": 0.001, + "force": { + "#": 288 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 289 + }, + "positionImpulse": { + "#": 290 + }, + "positionPrev": { + "#": 291 + }, + "render": { + "#": 292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 294 + }, + "vertices": { + "#": 295 + } + }, + [ + { + "#": 281 + }, + { + "#": 282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 284 + }, + "min": { + "#": 285 + } + }, + { + "x": 402.76539292140944, + "y": 47.25462962962963 + }, + { + "x": 353.98774374445475, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.3765683329321, + "y": 33.62731481481482 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.3765683329321, + "y": 33.62731481481482 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 293 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.98774374445475, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 402.76539292140944, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 402.76539292140944, + "y": 47.25462962962963 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.98774374445475, + "y": 47.25462962962963 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2858.632357296012, + "axes": { + "#": 301 + }, + "bounds": { + "#": 304 + }, + "collisionFilter": { + "#": 307 + }, + "constraintImpulse": { + "#": 308 + }, + "density": 0.001, + "force": { + "#": 309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 310 + }, + "positionImpulse": { + "#": 311 + }, + "positionPrev": { + "#": 312 + }, + "render": { + "#": 313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 315 + }, + "vertices": { + "#": 316 + } + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 305 + }, + "min": { + "#": 306 + } + }, + { + "x": 511.6199882574863, + "y": 46.261016803840874 + }, + { + "x": 402.76539292140944, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.19269058944786, + "y": 33.13050840192044 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.19269058944786, + "y": 33.13050840192044 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 314 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 402.76539292140944, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.6199882574863, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 511.6199882574863, + "y": 46.261016803840874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.76539292140944, + "y": 46.261016803840874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.8394636035856, + "axes": { + "#": 322 + }, + "bounds": { + "#": 325 + }, + "collisionFilter": { + "#": 328 + }, + "constraintImpulse": { + "#": 329 + }, + "density": 0.001, + "force": { + "#": 330 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 331 + }, + "positionImpulse": { + "#": 332 + }, + "positionPrev": { + "#": 333 + }, + "render": { + "#": 334 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 336 + }, + "vertices": { + "#": 337 + } + }, + [ + { + "#": 323 + }, + { + "#": 324 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 326 + }, + "min": { + "#": 327 + } + }, + { + "x": 550.3757752945232, + "y": 43.914866255144034 + }, + { + "x": 511.6199882574862, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9978817760048, + "y": 31.957433127572017 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9978817760048, + "y": 31.957433127572017 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 335 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 511.6199882574862, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550.3757752945232, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.3757752945232, + "y": 43.914866255144034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 511.6199882574862, + "y": 43.914866255144034 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.4501361223834, + "axes": { + "#": 343 + }, + "bounds": { + "#": 346 + }, + "collisionFilter": { + "#": 349 + }, + "constraintImpulse": { + "#": 350 + }, + "density": 0.001, + "force": { + "#": 351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 352 + }, + "positionImpulse": { + "#": 353 + }, + "positionPrev": { + "#": 354 + }, + "render": { + "#": 355 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 357 + }, + "vertices": { + "#": 358 + } + }, + [ + { + "#": 344 + }, + { + "#": 345 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 347 + }, + "min": { + "#": 348 + } + }, + { + "x": 586.1460942245644, + "y": 56.076003086419746 + }, + { + "x": 550.3757752945232, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.2609347595438, + "y": 38.03800154320987 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.2609347595438, + "y": 38.03800154320987 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 356 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550.3757752945232, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.1460942245644, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.1460942245644, + "y": 56.076003086419746 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550.3757752945232, + "y": 56.076003086419746 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.2925932011974, + "axes": { + "#": 364 + }, + "bounds": { + "#": 367 + }, + "collisionFilter": { + "#": 370 + }, + "constraintImpulse": { + "#": 371 + }, + "density": 0.001, + "force": { + "#": 372 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 373 + }, + "positionImpulse": { + "#": 374 + }, + "positionPrev": { + "#": 375 + }, + "render": { + "#": 376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 378 + }, + "vertices": { + "#": 379 + } + }, + [ + { + "#": 365 + }, + { + "#": 366 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 368 + }, + "min": { + "#": 369 + } + }, + { + "x": 616.7010067760048, + "y": 57.58127572016461 + }, + { + "x": 586.1460942245644, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.4235505002846, + "y": 38.790637860082306 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.4235505002846, + "y": 38.790637860082306 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 377 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 586.1460942245644, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.7010067760048, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.7010067760048, + "y": 57.58127572016461 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.1460942245644, + "y": 57.58127572016461 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1926.7878890000002, + "axes": { + "#": 385 + }, + "bounds": { + "#": 393 + }, + "collisionFilter": { + "#": 396 + }, + "constraintImpulse": { + "#": 397 + }, + "density": 0.001, + "force": { + "#": 398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 399 + }, + "positionImpulse": { + "#": 400 + }, + "positionPrev": { + "#": 401 + }, + "render": { + "#": 402 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 404 + }, + "vertices": { + "#": 405 + } + }, + [ + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + } + ], + { + "x": 0.6234921001781484, + "y": 0.7818296496139309 + }, + { + "x": -0.22251820971292155, + "y": 0.9749285339685962 + }, + { + "x": -0.9009815501548849, + "y": 0.43385740316433524 + }, + { + "x": -0.9009815501548849, + "y": -0.43385740316433524 + }, + { + "x": -0.22251820971292155, + "y": -0.9749285339685962 + }, + { + "x": 0.6234921001781484, + "y": -0.7818296496139309 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 394 + }, + "min": { + "#": 395 + } + }, + { + "x": 665.8303156438957, + "y": 71.74000000000001 + }, + { + "x": 615.3873156438957, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 641.9225067760048, + "y": 45.870000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 641.9225067760048, + "y": 45.870000000000005 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 403 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 665.8303156438957, + "y": 57.383 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 647.8273156438956, + "y": 71.74000000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625.3773156438957, + "y": 66.616 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615.3873156438957, + "y": 45.870000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 625.3773156438957, + "y": 25.124000000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 647.8273156438956, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 665.8303156438957, + "y": 34.357000000000006 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1097.755875, + "axes": { + "#": 414 + }, + "bounds": { + "#": 418 + }, + "collisionFilter": { + "#": 421 + }, + "constraintImpulse": { + "#": 422 + }, + "density": 0.001, + "force": { + "#": 423 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 927.6617490689248, + "inverseInertia": 0.0010779791243992539, + "inverseMass": 0.9109493492804126, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.097755875, + "motion": 0, + "parent": null, + "position": { + "#": 424 + }, + "positionImpulse": { + "#": 425 + }, + "positionPrev": { + "#": 426 + }, + "render": { + "#": 427 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 429 + }, + "vertices": { + "#": 430 + } + }, + [ + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "x": -0.49999466010690446, + "y": 0.8660284867512045 + }, + { + "x": -0.49999466010690446, + "y": -0.8660284867512045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 419 + }, + "min": { + "#": 420 + } + }, + { + "x": 702.1678156438957, + "y": 70.35 + }, + { + "x": 658.5628156438956, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.6328156438957, + "y": 45.175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.6328156438957, + "y": 45.175 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 428 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 702.1678156438957, + "y": 70.35 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 658.5628156438956, + "y": 45.175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 702.1678156438957, + "y": 19.999999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 435 + }, + "bounds": { + "#": 441 + }, + "collisionFilter": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "density": 0.001, + "force": { + "#": 446 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 447 + }, + "positionImpulse": { + "#": 448 + }, + "positionPrev": { + "#": 449 + }, + "render": { + "#": 450 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 452 + }, + "vertices": { + "#": 453 + } + }, + [ + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 442 + }, + "min": { + "#": 443 + } + }, + { + "x": 737.0727729237212, + "y": 58.74600000000001 + }, + { + "x": 700.2227729237212, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 720.5928156438956, + "y": 39.373000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 720.5928156438956, + "y": 39.373000000000005 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 451 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 737.0727729237212, + "y": 51.346000000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 714.2977729237213, + "y": 58.74600000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700.2227729237212, + "y": 39.373000000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 714.2977729237213, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 737.0727729237212, + "y": 27.400000000000006 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.454244, + "axes": { + "#": 460 + }, + "bounds": { + "#": 463 + }, + "collisionFilter": { + "#": 466 + }, + "constraintImpulse": { + "#": 467 + }, + "density": 0.001, + "force": { + "#": 468 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 469 + }, + "positionImpulse": { + "#": 470 + }, + "positionPrev": { + "#": 471 + }, + "render": { + "#": 472 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 474 + }, + "vertices": { + "#": 475 + } + }, + [ + { + "#": 461 + }, + { + "#": 462 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 464 + }, + "min": { + "#": 465 + } + }, + { + "x": 771.7347729237213, + "y": 54.662000000000006 + }, + { + "x": 737.0727729237212, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 754.4037729237212, + "y": 37.331 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 754.4037729237212, + "y": 37.331 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 473 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 771.7347729237213, + "y": 54.662000000000006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 737.0727729237212, + "y": 54.662000000000006 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 737.0727729237212, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 771.7347729237213, + "y": 20.000000000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1990.733346252218, + "axes": { + "#": 481 + }, + "bounds": { + "#": 484 + }, + "collisionFilter": { + "#": 487 + }, + "constraintImpulse": { + "#": 488 + }, + "density": 0.001, + "force": { + "#": 489 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 490 + }, + "positionImpulse": { + "#": 491 + }, + "positionPrev": { + "#": 492 + }, + "render": { + "#": 493 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 495 + }, + "vertices": { + "#": 496 + } + }, + [ + { + "#": 482 + }, + { + "#": 483 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 485 + }, + "min": { + "#": 486 + } + }, + { + "x": 866.5585040622673, + "y": 40.9940414951989 + }, + { + "x": 771.7347729237213, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.1466384929943, + "y": 30.49702074759945 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.1466384929943, + "y": 30.49702074759945 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 494 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 771.7347729237213, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 866.5585040622673, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 866.5585040622673, + "y": 40.9940414951989 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 771.7347729237213, + "y": 40.9940414951989 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7321.24308, + "axes": { + "#": 502 + }, + "bounds": { + "#": 516 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "density": 0.001, + "force": { + "#": 521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 522 + }, + "positionImpulse": { + "#": 523 + }, + "positionPrev": { + "#": 524 + }, + "render": { + "#": 525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 527 + }, + "vertices": { + "#": 528 + } + }, + [ + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 517 + }, + "min": { + "#": 518 + } + }, + { + "x": 962.8725040622674, + "y": 117.01999999999998 + }, + { + "x": 866.5585040622673, + "y": 19.999999999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.7155040622673, + "y": 68.50999999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.7155040622673, + "y": 68.50999999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 526 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 962.8725040622674, + "y": 74.357 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 960.0735040622673, + "y": 85.71199999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 954.6385040622673, + "y": 96.067 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 946.8835040622673, + "y": 104.821 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 937.2595040622673, + "y": 111.464 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 926.3245040622674, + "y": 115.61099999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 914.7155040622673, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 903.1065040622673, + "y": 115.61099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 892.1715040622673, + "y": 111.464 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 882.5475040622673, + "y": 104.821 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 874.7925040622673, + "y": 96.067 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 869.3575040622674, + "y": 85.71199999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 866.5585040622673, + "y": 74.357 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 866.5585040622673, + "y": 62.66299999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 869.3575040622674, + "y": 51.30799999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 874.7925040622673, + "y": 40.95299999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 882.5475040622673, + "y": 32.19899999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 892.1715040622673, + "y": 25.55599999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 903.1065040622673, + "y": 21.408999999999992 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 914.7155040622673, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 926.3245040622674, + "y": 21.408999999999992 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 937.2595040622673, + "y": 25.55599999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 946.8835040622673, + "y": 32.19899999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 954.6385040622673, + "y": 40.95299999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 960.0735040622673, + "y": 51.30799999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 962.8725040622674, + "y": 62.66299999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 556 + }, + "bounds": { + "#": 559 + }, + "collisionFilter": { + "#": 562 + }, + "constraintImpulse": { + "#": 563 + }, + "density": 0.001, + "force": { + "#": 564 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 565 + }, + "positionImpulse": { + "#": 566 + }, + "positionPrev": { + "#": 567 + }, + "render": { + "#": 568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 570 + }, + "vertices": { + "#": 571 + } + }, + [ + { + "#": 557 + }, + { + "#": 558 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 560 + }, + "min": { + "#": 561 + } + }, + { + "x": 1047.1051858180972, + "y": 44.15646433470508 + }, + { + "x": 962.8725040622674, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1004.9888449401823, + "y": 32.07823216735254 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1004.9888449401823, + "y": 32.07823216735254 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 569 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 962.8725040622674, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1047.1051858180972, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1047.1051858180972, + "y": 44.15646433470508 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 962.8725040622674, + "y": 44.15646433470508 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 577 + }, + "bounds": { + "#": 580 + }, + "collisionFilter": { + "#": 583 + }, + "constraintImpulse": { + "#": 584 + }, + "density": 0.001, + "force": { + "#": 585 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 586 + }, + "positionImpulse": { + "#": 587 + }, + "positionPrev": { + "#": 588 + }, + "render": { + "#": 589 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 591 + }, + "vertices": { + "#": 592 + } + }, + [ + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 581 + }, + "min": { + "#": 582 + } + }, + { + "x": 1096.491759892171, + "y": 40.865097736625515 + }, + { + "x": 1047.1051858180972, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1071.7984728551342, + "y": 30.432548868312757 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1071.7984728551342, + "y": 30.432548868312757 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 590 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1047.1051858180972, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1096.491759892171, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1096.491759892171, + "y": 40.865097736625515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1047.1051858180972, + "y": 40.865097736625515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2157.165332, + "axes": { + "#": 598 + }, + "bounds": { + "#": 612 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "density": 0.001, + "force": { + "#": 617 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 618 + }, + "positionImpulse": { + "#": 619 + }, + "positionPrev": { + "#": 620 + }, + "render": { + "#": 621 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 623 + }, + "vertices": { + "#": 624 + } + }, + [ + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + } + ], + { + "x": -0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": -0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": -0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": -0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": -0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": -0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": 0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": 0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": 0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": 0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 613 + }, + "min": { + "#": 614 + } + }, + { + "x": 72.28, + "y": 169.68399999999997 + }, + { + "x": 20, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 46.14, + "y": 143.35199999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 46.14, + "y": 143.35199999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 622 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 72.28, + "y": 146.52599999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 70.761, + "y": 152.68899999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 67.811, + "y": 158.30999999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 63.601, + "y": 163.06199999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 58.377, + "y": 166.66799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 52.442, + "y": 168.91899999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 46.14, + "y": 169.68399999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 39.838, + "y": 168.91899999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 33.903, + "y": 166.66799999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 28.679000000000002, + "y": 163.06199999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 24.469, + "y": 158.30999999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 21.519000000000002, + "y": 152.68899999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20, + "y": 146.52599999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 20, + "y": 140.17799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 21.519000000000002, + "y": 134.015 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 24.469, + "y": 128.39399999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 28.679000000000002, + "y": 123.64199999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 33.903, + "y": 120.03599999999997 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 39.838, + "y": 117.78499999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 46.14, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 52.442, + "y": 117.78499999999997 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 58.377, + "y": 120.03599999999997 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 63.601, + "y": 123.64199999999997 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 67.811, + "y": 128.39399999999998 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 70.761, + "y": 134.015 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 72.28, + "y": 140.17799999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2399.6281959999997, + "axes": { + "#": 652 + }, + "bounds": { + "#": 655 + }, + "collisionFilter": { + "#": 658 + }, + "constraintImpulse": { + "#": 659 + }, + "density": 0.001, + "force": { + "#": 660 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 661 + }, + "positionImpulse": { + "#": 662 + }, + "positionPrev": { + "#": 663 + }, + "render": { + "#": 664 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 666 + }, + "vertices": { + "#": 667 + } + }, + [ + { + "#": 653 + }, + { + "#": 654 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 656 + }, + "min": { + "#": 657 + } + }, + { + "x": 121.26599999999999, + "y": 166.00599999999997 + }, + { + "x": 72.28, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 96.773, + "y": 141.51299999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 96.773, + "y": 141.51299999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 665 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 121.26599999999999, + "y": 166.00599999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 72.28, + "y": 166.00599999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 72.28, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 121.26599999999999, + "y": 117.01999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 673 + }, + "bounds": { + "#": 676 + }, + "collisionFilter": { + "#": 679 + }, + "constraintImpulse": { + "#": 680 + }, + "density": 0.001, + "force": { + "#": 681 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 682 + }, + "positionImpulse": { + "#": 683 + }, + "positionPrev": { + "#": 684 + }, + "render": { + "#": 685 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 687 + }, + "vertices": { + "#": 688 + } + }, + [ + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 677 + }, + "min": { + "#": 678 + } + }, + { + "x": 156.67893724279836, + "y": 159.08893004115225 + }, + { + "x": 121.26599999999999, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.97246862139917, + "y": 138.05446502057612 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.97246862139917, + "y": 138.05446502057612 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 686 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 121.26599999999999, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 156.67893724279836, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 156.67893724279836, + "y": 159.08893004115225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 121.26599999999999, + "y": 159.08893004115225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 694 + }, + "bounds": { + "#": 697 + }, + "collisionFilter": { + "#": 700 + }, + "constraintImpulse": { + "#": 701 + }, + "density": 0.001, + "force": { + "#": 702 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 703 + }, + "positionImpulse": { + "#": 704 + }, + "positionPrev": { + "#": 705 + }, + "render": { + "#": 706 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 708 + }, + "vertices": { + "#": 709 + } + }, + [ + { + "#": 695 + }, + { + "#": 696 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 698 + }, + "min": { + "#": 699 + } + }, + { + "x": 198.4428261316872, + "y": 159.2901903292181 + }, + { + "x": 156.67893724279836, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.56088168724278, + "y": 138.15509516460904 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.56088168724278, + "y": 138.15509516460904 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 707 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 156.67893724279836, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.4428261316872, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 198.4428261316872, + "y": 159.2901903292181 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 156.67893724279836, + "y": 159.2901903292181 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1919.5457599999997, + "axes": { + "#": 715 + }, + "bounds": { + "#": 719 + }, + "collisionFilter": { + "#": 722 + }, + "constraintImpulse": { + "#": 723 + }, + "density": 0.001, + "force": { + "#": 724 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 725 + }, + "positionImpulse": { + "#": 726 + }, + "positionPrev": { + "#": 727 + }, + "render": { + "#": 728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 730 + }, + "vertices": { + "#": 731 + } + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + } + ], + { + "x": -0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 720 + }, + "min": { + "#": 721 + } + }, + { + "x": 245.5228261316872, + "y": 171.382 + }, + { + "x": 198.4428261316872, + "y": 117.02 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.9828261316872, + "y": 144.201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.9828261316872, + "y": 144.201 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 729 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.5228261316872, + "y": 157.792 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 221.9828261316872, + "y": 171.382 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 198.4428261316872, + "y": 157.792 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 198.4428261316872, + "y": 130.61 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 221.9828261316872, + "y": 117.02 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 245.5228261316872, + "y": 130.61 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6052.328004, + "axes": { + "#": 739 + }, + "bounds": { + "#": 743 + }, + "collisionFilter": { + "#": 746 + }, + "constraintImpulse": { + "#": 747 + }, + "density": 0.001, + "force": { + "#": 748 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 749 + }, + "positionImpulse": { + "#": 750 + }, + "positionPrev": { + "#": 751 + }, + "render": { + "#": 752 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 754 + }, + "vertices": { + "#": 755 + } + }, + [ + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "x": -0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 744 + }, + "min": { + "#": 745 + } + }, + { + "x": 329.1208261316872, + "y": 213.54999999999995 + }, + { + "x": 245.5228261316872, + "y": 117.01999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.3218261316872, + "y": 165.28499999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.3218261316872, + "y": 165.28499999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 753 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 329.1208261316872, + "y": 189.41799999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 287.3218261316872, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 245.5228261316872, + "y": 189.41799999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 245.5228261316872, + "y": 141.152 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 287.3218261316872, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 329.1208261316872, + "y": 141.152 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 763 + }, + "bounds": { + "#": 766 + }, + "collisionFilter": { + "#": 769 + }, + "constraintImpulse": { + "#": 770 + }, + "density": 0.001, + "force": { + "#": 771 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 772 + }, + "positionImpulse": { + "#": 773 + }, + "positionPrev": { + "#": 774 + }, + "render": { + "#": 775 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 777 + }, + "vertices": { + "#": 778 + } + }, + [ + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 767 + }, + "min": { + "#": 768 + } + }, + { + "x": 374.27218930041147, + "y": 166.18846707818926 + }, + { + "x": 329.1208261316872, + "y": 117.01999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.6965077160493, + "y": 141.60423353909462 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.6965077160493, + "y": 141.60423353909462 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 776 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 329.1208261316872, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 374.27218930041147, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 374.27218930041147, + "y": 166.18846707818926 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 329.1208261316872, + "y": 166.18846707818926 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2601.1074479999997, + "axes": { + "#": 784 + }, + "bounds": { + "#": 788 + }, + "collisionFilter": { + "#": 791 + }, + "constraintImpulse": { + "#": 792 + }, + "density": 0.001, + "force": { + "#": 793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 794 + }, + "positionImpulse": { + "#": 795 + }, + "positionPrev": { + "#": 796 + }, + "render": { + "#": 797 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 799 + }, + "vertices": { + "#": 800 + } + }, + [ + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + } + ], + { + "x": -0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 789 + }, + "min": { + "#": 790 + } + }, + { + "x": 429.07618930041144, + "y": 180.30199999999996 + }, + { + "x": 374.27218930041147, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.67418930041146, + "y": 148.66099999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.67418930041146, + "y": 148.66099999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 798 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 429.07618930041144, + "y": 164.48199999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 401.67418930041146, + "y": 180.30199999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 374.27218930041147, + "y": 164.48199999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 374.27218930041147, + "y": 132.83999999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 401.67418930041146, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 429.07618930041144, + "y": 132.83999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1413.3088360000002, + "axes": { + "#": 808 + }, + "bounds": { + "#": 811 + }, + "collisionFilter": { + "#": 814 + }, + "constraintImpulse": { + "#": 815 + }, + "density": 0.001, + "force": { + "#": 816 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 817 + }, + "positionImpulse": { + "#": 818 + }, + "positionPrev": { + "#": 819 + }, + "render": { + "#": 820 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 822 + }, + "vertices": { + "#": 823 + } + }, + [ + { + "#": 809 + }, + { + "#": 810 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 812 + }, + "min": { + "#": 813 + } + }, + { + "x": 466.6701893004115, + "y": 154.61399999999998 + }, + { + "x": 429.07618930041144, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 447.87318930041147, + "y": 135.81699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 447.87318930041147, + "y": 135.81699999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 821 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 466.6701893004115, + "y": 154.61399999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 429.07618930041144, + "y": 154.61399999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 429.07618930041144, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.6701893004115, + "y": 117.01999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5460.808751999999, + "axes": { + "#": 829 + }, + "bounds": { + "#": 833 + }, + "collisionFilter": { + "#": 836 + }, + "constraintImpulse": { + "#": 837 + }, + "density": 0.001, + "force": { + "#": 838 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 839 + }, + "positionImpulse": { + "#": 840 + }, + "positionPrev": { + "#": 841 + }, + "render": { + "#": 842 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 844 + }, + "vertices": { + "#": 845 + } + }, + [ + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": -0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 834 + }, + "min": { + "#": 835 + } + }, + { + "x": 546.0781893004115, + "y": 208.712 + }, + { + "x": 466.6701893004115, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 506.3741893004115, + "y": 162.86599999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 506.3741893004115, + "y": 162.86599999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 843 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 546.0781893004115, + "y": 185.789 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 506.3741893004115, + "y": 208.712 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 466.6701893004115, + "y": 185.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 466.6701893004115, + "y": 139.94299999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 506.3741893004115, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 546.0781893004115, + "y": 139.94299999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 853 + }, + "bounds": { + "#": 856 + }, + "collisionFilter": { + "#": 859 + }, + "constraintImpulse": { + "#": 860 + }, + "density": 0.001, + "force": { + "#": 861 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 862 + }, + "positionImpulse": { + "#": 863 + }, + "positionPrev": { + "#": 864 + }, + "render": { + "#": 865 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 867 + }, + "vertices": { + "#": 868 + } + }, + [ + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 857 + }, + "min": { + "#": 858 + } + }, + { + "x": 566.2487139917695, + "y": 139.4097890946502 + }, + { + "x": 546.0781893004115, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.1634516460905, + "y": 128.2148945473251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 556.1634516460905, + "y": 128.2148945473251 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 866 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 546.0781893004115, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 566.2487139917695, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 566.2487139917695, + "y": 139.4097890946502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.0781893004115, + "y": 139.4097890946502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 874 + }, + "bounds": { + "#": 877 + }, + "collisionFilter": { + "#": 880 + }, + "constraintImpulse": { + "#": 881 + }, + "density": 0.001, + "force": { + "#": 882 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 883 + }, + "positionImpulse": { + "#": 884 + }, + "positionPrev": { + "#": 885 + }, + "render": { + "#": 886 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 888 + }, + "vertices": { + "#": 889 + } + }, + [ + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 878 + }, + "min": { + "#": 879 + } + }, + { + "x": 668.0818758573388, + "y": 146.69283950617285 + }, + { + "x": 566.2487139917695, + "y": 117.02 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 617.1652949245541, + "y": 131.8564197530864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 617.1652949245541, + "y": 131.8564197530864 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 887 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 566.2487139917695, + "y": 117.02 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 668.0818758573388, + "y": 117.02 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 668.0818758573388, + "y": 146.69283950617285 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 566.2487139917695, + "y": 146.69283950617285 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 895 + }, + "bounds": { + "#": 898 + }, + "collisionFilter": { + "#": 901 + }, + "constraintImpulse": { + "#": 902 + }, + "density": 0.001, + "force": { + "#": 903 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 904 + }, + "positionImpulse": { + "#": 905 + }, + "positionPrev": { + "#": 906 + }, + "render": { + "#": 907 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 909 + }, + "vertices": { + "#": 910 + } + }, + [ + { + "#": 896 + }, + { + "#": 897 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 899 + }, + "min": { + "#": 900 + } + }, + { + "x": 708.1533779149519, + "y": 138.40027263374483 + }, + { + "x": 668.0818758573388, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 688.1176268861453, + "y": 127.71013631687241 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 688.1176268861453, + "y": 127.71013631687241 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 908 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 668.0818758573388, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 708.1533779149519, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 708.1533779149519, + "y": 138.40027263374483 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 668.0818758573388, + "y": 138.40027263374483 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 916 + }, + "bounds": { + "#": 921 + }, + "collisionFilter": { + "#": 924 + }, + "constraintImpulse": { + "#": 925 + }, + "density": 0.001, + "force": { + "#": 926 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 927 + }, + "positionImpulse": { + "#": 928 + }, + "positionPrev": { + "#": 929 + }, + "render": { + "#": 930 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 932 + }, + "vertices": { + "#": 933 + } + }, + [ + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 922 + }, + "min": { + "#": 923 + } + }, + { + "x": 778.4053779149518, + "y": 187.272 + }, + { + "x": 708.1533779149519, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.2793779149519, + "y": 152.146 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.2793779149519, + "y": 152.146 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 931 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.4053779149518, + "y": 166.696 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 757.8293779149518, + "y": 187.272 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 728.7293779149519, + "y": 187.272 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 708.1533779149519, + "y": 166.696 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 708.1533779149519, + "y": 137.596 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 728.7293779149519, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 757.8293779149518, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 778.4053779149518, + "y": 137.596 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 943 + }, + "bounds": { + "#": 946 + }, + "collisionFilter": { + "#": 949 + }, + "constraintImpulse": { + "#": 950 + }, + "density": 0.001, + "force": { + "#": 951 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 952 + }, + "positionImpulse": { + "#": 953 + }, + "positionPrev": { + "#": 954 + }, + "render": { + "#": 955 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 957 + }, + "vertices": { + "#": 958 + } + }, + [ + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 947 + }, + "min": { + "#": 948 + } + }, + { + "x": 867.9096646090533, + "y": 138.97584705075445 + }, + { + "x": 778.4053779149518, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 823.1575212620025, + "y": 127.99792352537722 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 823.1575212620025, + "y": 127.99792352537722 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 956 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.4053779149518, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 867.9096646090533, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 867.9096646090533, + "y": 138.97584705075445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 778.4053779149518, + "y": 138.97584705075445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1492.5256200000001, + "axes": { + "#": 964 + }, + "bounds": { + "#": 968 + }, + "collisionFilter": { + "#": 971 + }, + "constraintImpulse": { + "#": 972 + }, + "density": 0.001, + "force": { + "#": 973 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1714.8324723309402, + "inverseInertia": 0.0005831473430408735, + "inverseMass": 0.6700052492231255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.49252562, + "motion": 0, + "parent": null, + "position": { + "#": 974 + }, + "positionImpulse": { + "#": 975 + }, + "positionPrev": { + "#": 976 + }, + "render": { + "#": 977 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 979 + }, + "vertices": { + "#": 980 + } + }, + [ + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + } + ], + { + "x": -0.5000025921589079, + "y": 0.8660239071956228 + }, + { + "x": -0.5000025921589079, + "y": -0.8660239071956228 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 969 + }, + "min": { + "#": 970 + } + }, + { + "x": 910.2796646090532, + "y": 175.72999999999996 + }, + { + "x": 859.4356646090532, + "y": 117.01999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 893.3316646090532, + "y": 146.37499999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 893.3316646090532, + "y": 146.37499999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 978 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 910.2796646090532, + "y": 175.72999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 859.4356646090532, + "y": 146.37499999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 910.2796646090532, + "y": 117.01999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 942.0065703840771, + "axes": { + "#": 985 + }, + "bounds": { + "#": 988 + }, + "collisionFilter": { + "#": 991 + }, + "constraintImpulse": { + "#": 992 + }, + "density": 0.001, + "force": { + "#": 993 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 994 + }, + "positionImpulse": { + "#": 995 + }, + "positionPrev": { + "#": 996 + }, + "render": { + "#": 997 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 999 + }, + "vertices": { + "#": 1000 + } + }, + [ + { + "#": 986 + }, + { + "#": 987 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 989 + }, + "min": { + "#": 990 + } + }, + { + "x": 931.3395925925923, + "y": 161.74980967078187 + }, + { + "x": 910.2796646090532, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 920.8096286008227, + "y": 139.38490483539093 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 920.8096286008227, + "y": 139.38490483539093 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 998 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 910.2796646090532, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 931.3395925925923, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 931.3395925925923, + "y": 161.74980967078187 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 910.2796646090532, + "y": 161.74980967078187 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2898.415585731765, + "axes": { + "#": 1006 + }, + "bounds": { + "#": 1009 + }, + "collisionFilter": { + "#": 1012 + }, + "constraintImpulse": { + "#": 1013 + }, + "density": 0.001, + "force": { + "#": 1014 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 1015 + }, + "positionImpulse": { + "#": 1016 + }, + "positionPrev": { + "#": 1017 + }, + "render": { + "#": 1018 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1020 + }, + "vertices": { + "#": 1021 + } + }, + [ + { + "#": 1007 + }, + { + "#": 1008 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1010 + }, + "min": { + "#": 1011 + } + }, + { + "x": 1043.5355802469135, + "y": 142.85350480109736 + }, + { + "x": 931.3395925925923, + "y": 117.01999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 987.4375864197528, + "y": 129.93675240054867 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 987.4375864197528, + "y": 129.93675240054867 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1019 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 931.3395925925923, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1043.5355802469135, + "y": 117.01999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1043.5355802469135, + "y": 142.85350480109736 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 931.3395925925923, + "y": 142.85350480109736 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 842.523055, + "axes": { + "#": 1027 + }, + "bounds": { + "#": 1031 + }, + "collisionFilter": { + "#": 1034 + }, + "constraintImpulse": { + "#": 1035 + }, + "density": 0.001, + "force": { + "#": 1036 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 546.4390114484775, + "inverseInertia": 0.001830030395065027, + "inverseMass": 1.1869111403722952, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.842523055, + "motion": 0, + "parent": null, + "position": { + "#": 1037 + }, + "positionImpulse": { + "#": 1038 + }, + "positionPrev": { + "#": 1039 + }, + "render": { + "#": 1040 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1042 + }, + "vertices": { + "#": 1043 + } + }, + [ + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + } + ], + { + "x": -0.49999391924129877, + "y": 0.8660289144836479 + }, + { + "x": -0.49999391924129877, + "y": -0.8660289144836479 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1032 + }, + "min": { + "#": 1033 + } + }, + { + "x": 1075.3697469135802, + "y": 161.13 + }, + { + "x": 1037.16874691358, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1062.6360802469135, + "y": 139.075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1062.6360802469135, + "y": 139.075 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1041 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1075.3697469135802, + "y": 161.13 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1037.16874691358, + "y": 139.075 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1075.3697469135802, + "y": 117.01999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6661.542482000001, + "axes": { + "#": 1048 + }, + "bounds": { + "#": 1062 + }, + "circleRadius": 46.273148148148145, + "collisionFilter": { + "#": 1065 + }, + "constraintImpulse": { + "#": 1066 + }, + "density": 0.001, + "force": { + "#": 1067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 28251.272419191544, + "inverseInertia": 0.00003539663577491412, + "inverseMass": 0.15011538284144801, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.661542482000001, + "motion": 0, + "parent": null, + "position": { + "#": 1068 + }, + "positionImpulse": { + "#": 1069 + }, + "positionPrev": { + "#": 1070 + }, + "render": { + "#": 1071 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1073 + }, + "vertices": { + "#": 1074 + } + }, + [ + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": -0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": -0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": -0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": -0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": -0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": -0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": 0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": 0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": 0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": 0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1063 + }, + "min": { + "#": 1064 + } + }, + { + "x": 1167.24174691358, + "y": 209.56599999999997 + }, + { + "x": 1075.3697469135802, + "y": 117.01999999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1121.3057469135802, + "y": 163.29299999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1121.3057469135802, + "y": 163.29299999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1072 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1167.24174691358, + "y": 168.87099999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1164.5717469135802, + "y": 179.70199999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1159.3877469135803, + "y": 189.57899999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1151.99074691358, + "y": 197.92899999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1142.80974691358, + "y": 204.266 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1132.3797469135802, + "y": 208.22199999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1121.3057469135802, + "y": 209.56599999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 1110.23174691358, + "y": 208.22199999999998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 1099.8017469135802, + "y": 204.266 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 1090.6207469135802, + "y": 197.92899999999997 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 1083.22374691358, + "y": 189.57899999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 1078.03974691358, + "y": 179.70199999999997 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 1075.3697469135802, + "y": 168.87099999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 1075.3697469135802, + "y": 157.71499999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 1078.03974691358, + "y": 146.884 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 1083.22374691358, + "y": 137.00699999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 1090.6207469135802, + "y": 128.65699999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 1099.8017469135802, + "y": 122.31999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 1110.23174691358, + "y": 118.36399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 1121.3057469135802, + "y": 117.01999999999998 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 1132.3797469135802, + "y": 118.36399999999998 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1142.80974691358, + "y": 122.31999999999998 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1151.99074691358, + "y": 128.65699999999998 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1159.3877469135803, + "y": 137.00699999999998 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1164.5717469135802, + "y": 146.884 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1167.24174691358, + "y": 157.71499999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1051.3111283901928, + "axes": { + "#": 1102 + }, + "bounds": { + "#": 1105 + }, + "collisionFilter": { + "#": 1108 + }, + "constraintImpulse": { + "#": 1109 + }, + "density": 0.001, + "force": { + "#": 1110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 1111 + }, + "positionImpulse": { + "#": 1112 + }, + "positionPrev": { + "#": 1113 + }, + "render": { + "#": 1114 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1116 + }, + "vertices": { + "#": 1117 + } + }, + [ + { + "#": 1103 + }, + { + "#": 1104 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1106 + }, + "min": { + "#": 1107 + } + }, + { + "x": 49.54835390946502, + "y": 249.12934670781885 + }, + { + "x": 20, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 34.77417695473251, + "y": 231.3396733539094 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 34.77417695473251, + "y": 231.3396733539094 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1115 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 49.54835390946502, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 49.54835390946502, + "y": 249.12934670781885 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 249.12934670781885 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6245.524001, + "axes": { + "#": 1123 + }, + "bounds": { + "#": 1131 + }, + "collisionFilter": { + "#": 1134 + }, + "constraintImpulse": { + "#": 1135 + }, + "density": 0.001, + "force": { + "#": 1136 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 24931.28629116745, + "inverseInertia": 0.00004011024494770155, + "inverseMass": 0.16011466769479796, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.245524001, + "motion": 0, + "parent": null, + "position": { + "#": 1137 + }, + "positionImpulse": { + "#": 1138 + }, + "positionPrev": { + "#": 1139 + }, + "render": { + "#": 1140 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1142 + }, + "vertices": { + "#": 1143 + } + }, + [ + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + } + ], + { + "x": 0.6235088590146987, + "y": 0.7818162845133048 + }, + { + "x": -0.22254054198130854, + "y": 0.9749234365706189 + }, + { + "x": -0.9009716362849914, + "y": 0.4338779904649981 + }, + { + "x": -0.9009716362849914, + "y": -0.4338779904649981 + }, + { + "x": -0.22254054198130854, + "y": -0.9749234365706189 + }, + { + "x": 0.6235088590146987, + "y": -0.7818162845133048 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1132 + }, + "min": { + "#": 1133 + } + }, + { + "x": 137.99981624467063, + "y": 306.70399999999995 + }, + { + "x": 47.18281624467064, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 94.95685390946502, + "y": 260.12699999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 94.95685390946502, + "y": 260.12699999999995 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1141 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 137.99981624467063, + "y": 280.85499999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 105.58781624467063, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 65.16981624467064, + "y": 297.47799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 47.18281624467064, + "y": 260.12699999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 65.16981624467064, + "y": 222.77599999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 105.58781624467063, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 137.99981624467063, + "y": 239.39899999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1100.443548, + "axes": { + "#": 1152 + }, + "bounds": { + "#": 1156 + }, + "collisionFilter": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "density": 0.001, + "force": { + "#": 1161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 932.2097612415441, + "inverseInertia": 0.001072719940915627, + "inverseMass": 0.9087244882460795, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.1004435479999999, + "motion": 0, + "parent": null, + "position": { + "#": 1162 + }, + "positionImpulse": { + "#": 1163 + }, + "positionPrev": { + "#": 1164 + }, + "render": { + "#": 1165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1167 + }, + "vertices": { + "#": 1168 + } + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": -0.5000006240740739, + "y": 0.8660250434748042 + }, + { + "x": -0.5000006240740739, + "y": -0.8660250434748042 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1157 + }, + "min": { + "#": 1158 + } + }, + { + "x": 174.3814829113373, + "y": 263.96199999999993 + }, + { + "x": 130.7234829113373, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 159.82881624467063, + "y": 238.75599999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 159.82881624467063, + "y": 238.75599999999994 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1166 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 174.3814829113373, + "y": 263.96199999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130.7234829113373, + "y": 238.75599999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 174.3814829113373, + "y": 213.54999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4695.386625, + "axes": { + "#": 1173 + }, + "bounds": { + "#": 1181 + }, + "collisionFilter": { + "#": 1184 + }, + "constraintImpulse": { + "#": 1185 + }, + "density": 0.001, + "force": { + "#": 1186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 1187 + }, + "positionImpulse": { + "#": 1188 + }, + "positionPrev": { + "#": 1189 + }, + "render": { + "#": 1190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1192 + }, + "vertices": { + "#": 1193 + } + }, + [ + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + } + ], + { + "x": 0.6235000959518373, + "y": 0.7818232730918474 + }, + { + "x": -0.2225264190381346, + "y": 0.9749266602314579 + }, + { + "x": -0.9009718651359478, + "y": 0.43387751524301366 + }, + { + "x": -0.9009718651359478, + "y": -0.43387751524301366 + }, + { + "x": -0.2225264190381346, + "y": -0.9749266602314579 + }, + { + "x": 0.6235000959518373, + "y": -0.7818232730918474 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1182 + }, + "min": { + "#": 1183 + } + }, + { + "x": 251.07435787900175, + "y": 294.31999999999994 + }, + { + "x": 172.33035787900175, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 213.7534829113373, + "y": 253.93499999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 213.7534829113373, + "y": 253.93499999999995 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1191 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.07435787900175, + "y": 271.90799999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 222.97135787900177, + "y": 294.31999999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.92635787900176, + "y": 286.3209999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 172.33035787900175, + "y": 253.93499999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 187.92635787900176, + "y": 221.54899999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 222.97135787900177, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 251.07435787900175, + "y": 235.96199999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2533.681298803042, + "axes": { + "#": 1202 + }, + "bounds": { + "#": 1205 + }, + "collisionFilter": { + "#": 1208 + }, + "constraintImpulse": { + "#": 1209 + }, + "density": 0.001, + "force": { + "#": 1210 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 9087.287047208478, + "inverseInertia": 0.00011004384419739331, + "inverseMass": 0.3946826305551604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.533681298803042, + "motion": 0, + "parent": null, + "position": { + "#": 1211 + }, + "positionImpulse": { + "#": 1212 + }, + "positionPrev": { + "#": 1213 + }, + "render": { + "#": 1214 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1216 + }, + "vertices": { + "#": 1217 + } + }, + [ + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1206 + }, + "min": { + "#": 1207 + } + }, + { + "x": 351.7014154921705, + "y": 238.72892661179696 + }, + { + "x": 251.07435787900175, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.3878866855861, + "y": 226.13946330589846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.3878866855861, + "y": 226.13946330589846 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1215 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 251.07435787900175, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 351.7014154921705, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 351.7014154921705, + "y": 238.72892661179696 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 251.07435787900175, + "y": 238.72892661179696 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2082.1047164947227, + "axes": { + "#": 1223 + }, + "bounds": { + "#": 1226 + }, + "collisionFilter": { + "#": 1229 + }, + "constraintImpulse": { + "#": 1230 + }, + "density": 0.001, + "force": { + "#": 1231 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2917.86500075833, + "inverseInertia": 0.0003427163353136995, + "inverseMass": 0.4802832403566742, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.082104716494723, + "motion": 0, + "parent": null, + "position": { + "#": 1232 + }, + "positionImpulse": { + "#": 1233 + }, + "positionPrev": { + "#": 1234 + }, + "render": { + "#": 1235 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1237 + }, + "vertices": { + "#": 1238 + } + }, + [ + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1227 + }, + "min": { + "#": 1228 + } + }, + { + "x": 394.2788331876438, + "y": 262.45162037037034 + }, + { + "x": 351.7014154921705, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 372.99012433990714, + "y": 238.00081018518514 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 372.99012433990714, + "y": 238.00081018518514 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1236 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 351.7014154921705, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.2788331876438, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 394.2788331876438, + "y": 262.45162037037034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 351.7014154921705, + "y": 262.45162037037034 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2570.1808866424026, + "axes": { + "#": 1244 + }, + "bounds": { + "#": 1247 + }, + "collisionFilter": { + "#": 1250 + }, + "constraintImpulse": { + "#": 1251 + }, + "density": 0.001, + "force": { + "#": 1252 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 7426.992944977438, + "inverseInertia": 0.00013464399487227974, + "inverseMass": 0.38907767355875333, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5701808866424027, + "motion": 0, + "parent": null, + "position": { + "#": 1253 + }, + "positionImpulse": { + "#": 1254 + }, + "positionPrev": { + "#": 1255 + }, + "render": { + "#": 1256 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1258 + }, + "vertices": { + "#": 1259 + } + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1248 + }, + "min": { + "#": 1249 + } + }, + { + "x": 482.73682358544903, + "y": 242.60538408779144 + }, + { + "x": 394.2788331876438, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.5078283865464, + "y": 228.0776920438957 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.5078283865464, + "y": 228.0776920438957 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1257 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.2788331876438, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 482.73682358544903, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 482.73682358544903, + "y": 242.60538408779144 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 394.2788331876438, + "y": 242.60538408779144 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1460.278512, + "axes": { + "#": 1265 + }, + "bounds": { + "#": 1269 + }, + "collisionFilter": { + "#": 1272 + }, + "constraintImpulse": { + "#": 1273 + }, + "density": 0.001, + "force": { + "#": 1274 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1641.5325488167716, + "inverseInertia": 0.0006091868240570722, + "inverseMass": 0.6848008731090607, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4602785120000001, + "motion": 0, + "parent": null, + "position": { + "#": 1275 + }, + "positionImpulse": { + "#": 1276 + }, + "positionPrev": { + "#": 1277 + }, + "render": { + "#": 1278 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1280 + }, + "vertices": { + "#": 1281 + } + }, + [ + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + } + ], + { + "x": -0.49999871188519596, + "y": 0.8660261474765902 + }, + { + "x": -0.49999871188519596, + "y": -0.8660261474765902 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1270 + }, + "min": { + "#": 1271 + } + }, + { + "x": 524.646823585449, + "y": 271.62199999999996 + }, + { + "x": 474.354823585449, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 507.88282358544905, + "y": 242.58599999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 507.88282358544905, + "y": 242.58599999999996 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1279 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 524.646823585449, + "y": 271.62199999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.354823585449, + "y": 242.58599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 524.646823585449, + "y": 213.54999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4167.4330549999995, + "axes": { + "#": 1286 + }, + "bounds": { + "#": 1294 + }, + "collisionFilter": { + "#": 1297 + }, + "constraintImpulse": { + "#": 1298 + }, + "density": 0.001, + "force": { + "#": 1299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 11100.542061550868, + "inverseInertia": 0.00009008569081177725, + "inverseMass": 0.23995586415004816, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.167433054999999, + "motion": 0, + "parent": null, + "position": { + "#": 1300 + }, + "positionImpulse": { + "#": 1301 + }, + "positionPrev": { + "#": 1302 + }, + "render": { + "#": 1303 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1305 + }, + "vertices": { + "#": 1306 + } + }, + [ + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + } + ], + { + "x": 0.6235095584460711, + "y": 0.7818157267069941 + }, + { + "x": -0.22252973145772786, + "y": 0.974925904167774 + }, + { + "x": -0.9009725986708983, + "y": 0.43387599201178284 + }, + { + "x": -0.9009725986708983, + "y": -0.43387599201178284 + }, + { + "x": -0.22252973145772786, + "y": -0.974925904167774 + }, + { + "x": 0.6235095584460711, + "y": -0.7818157267069941 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1295 + }, + "min": { + "#": 1296 + } + }, + { + "x": 596.8995334433461, + "y": 289.64399999999995 + }, + { + "x": 522.714533443346, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 561.739323585449, + "y": 251.59699999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 561.739323585449, + "y": 251.59699999999995 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1304 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 596.8995334433461, + "y": 268.52899999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 570.4235334433461, + "y": 289.64399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 537.4075334433461, + "y": 282.10799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 522.714533443346, + "y": 251.59699999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 537.4075334433461, + "y": 221.08599999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 570.4235334433461, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 596.8995334433461, + "y": 234.66499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1687.7661798887366, + "axes": { + "#": 1315 + }, + "bounds": { + "#": 1318 + }, + "collisionFilter": { + "#": 1321 + }, + "constraintImpulse": { + "#": 1322 + }, + "density": 0.001, + "force": { + "#": 1323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1980.3012000583947, + "inverseInertia": 0.0005049736878261308, + "inverseMass": 0.5924991340127004, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6877661798887367, + "motion": 0, + "parent": null, + "position": { + "#": 1324 + }, + "positionImpulse": { + "#": 1325 + }, + "positionPrev": { + "#": 1326 + }, + "render": { + "#": 1327 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1329 + }, + "vertices": { + "#": 1330 + } + }, + [ + { + "#": 1316 + }, + { + "#": 1317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1319 + }, + "min": { + "#": 1320 + } + }, + { + "x": 632.4098215091898, + "y": 261.0789351851852 + }, + { + "x": 596.8995334433461, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 614.6546774762679, + "y": 237.31446759259256 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 614.6546774762679, + "y": 237.31446759259256 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1328 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 596.8995334433461, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 632.4098215091898, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 632.4098215091898, + "y": 261.0789351851852 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 596.8995334433461, + "y": 261.0789351851852 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 888.874596, + "axes": { + "#": 1336 + }, + "bounds": { + "#": 1339 + }, + "collisionFilter": { + "#": 1342 + }, + "constraintImpulse": { + "#": 1343 + }, + "density": 0.001, + "force": { + "#": 1344 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 526.7320316094421, + "inverseInertia": 0.0018984985533241191, + "inverseMass": 1.125018089728374, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.888874596, + "motion": 0, + "parent": null, + "position": { + "#": 1345 + }, + "positionImpulse": { + "#": 1346 + }, + "positionPrev": { + "#": 1347 + }, + "render": { + "#": 1348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1350 + }, + "vertices": { + "#": 1351 + } + }, + [ + { + "#": 1337 + }, + { + "#": 1338 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1340 + }, + "min": { + "#": 1341 + } + }, + { + "x": 662.2238215091899, + "y": 243.36399999999998 + }, + { + "x": 632.4098215091898, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 647.3168215091898, + "y": 228.45699999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 647.3168215091898, + "y": 228.45699999999997 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1349 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 662.2238215091899, + "y": 243.36399999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 632.4098215091898, + "y": 243.36399999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 632.4098215091898, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 662.2238215091899, + "y": 213.54999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1624.121534624581, + "axes": { + "#": 1357 + }, + "bounds": { + "#": 1360 + }, + "collisionFilter": { + "#": 1363 + }, + "constraintImpulse": { + "#": 1364 + }, + "density": 0.001, + "force": { + "#": 1365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1766.6812602831346, + "inverseInertia": 0.0005660330601116675, + "inverseMass": 0.6157174686013581, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.624121534624581, + "motion": 0, + "parent": null, + "position": { + "#": 1366 + }, + "positionImpulse": { + "#": 1367 + }, + "positionPrev": { + "#": 1368 + }, + "render": { + "#": 1369 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1371 + }, + "vertices": { + "#": 1372 + } + }, + [ + { + "#": 1358 + }, + { + "#": 1359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1361 + }, + "min": { + "#": 1362 + } + }, + { + "x": 704.5130447602186, + "y": 251.95509259259256 + }, + { + "x": 662.2238215091899, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 683.3684331347042, + "y": 232.75254629629626 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 683.3684331347042, + "y": 232.75254629629626 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1370 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 662.2238215091899, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 704.5130447602186, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 704.5130447602186, + "y": 251.95509259259256 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 662.2238215091899, + "y": 251.95509259259256 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 925.4335858447538, + "axes": { + "#": 1378 + }, + "bounds": { + "#": 1381 + }, + "collisionFilter": { + "#": 1384 + }, + "constraintImpulse": { + "#": 1385 + }, + "density": 0.001, + "force": { + "#": 1386 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 658.9066011822378, + "inverseInertia": 0.001517665778739746, + "inverseMass": 1.080574570985751, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9254335858447538, + "motion": 0, + "parent": null, + "position": { + "#": 1387 + }, + "positionImpulse": { + "#": 1388 + }, + "positionPrev": { + "#": 1389 + }, + "render": { + "#": 1390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1392 + }, + "vertices": { + "#": 1393 + } + }, + [ + { + "#": 1379 + }, + { + "#": 1380 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1382 + }, + "min": { + "#": 1383 + } + }, + { + "x": 744.5266764474615, + "y": 236.67795781893 + }, + { + "x": 704.5130447602186, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 724.51986060384, + "y": 225.11397890946498 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 724.51986060384, + "y": 225.11397890946498 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1391 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 704.5130447602186, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 744.5266764474615, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 744.5266764474615, + "y": 236.67795781893 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 704.5130447602186, + "y": 236.67795781893 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5929.347511999999, + "axes": { + "#": 1399 + }, + "bounds": { + "#": 1413 + }, + "circleRadius": 43.65625, + "collisionFilter": { + "#": 1416 + }, + "constraintImpulse": { + "#": 1417 + }, + "density": 0.001, + "force": { + "#": 1418 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 22382.17146584697, + "inverseInertia": 0.00004467841744157413, + "inverseMass": 0.1686526212161066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.929347512, + "motion": 0, + "parent": null, + "position": { + "#": 1419 + }, + "positionImpulse": { + "#": 1420 + }, + "positionPrev": { + "#": 1421 + }, + "render": { + "#": 1422 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1424 + }, + "vertices": { + "#": 1425 + } + }, + [ + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + } + ], + { + "x": -0.9709364586220396, + "y": -0.23933740476259086 + }, + { + "x": -0.885455576089853, + "y": -0.4647240286141727 + }, + { + "x": -0.7484830648246673, + "y": -0.6631539049652597 + }, + { + "x": -0.5681125845628812, + "y": -0.8229508437697133 + }, + { + "x": -0.3546198602355774, + "y": -0.9350105639651882 + }, + { + "x": -0.12047891877198527, + "y": -0.9927158859067047 + }, + { + "x": 0.12047891877198527, + "y": -0.9927158859067047 + }, + { + "x": 0.3546198602355774, + "y": -0.9350105639651882 + }, + { + "x": 0.5681125845628812, + "y": -0.8229508437697133 + }, + { + "x": 0.7484830648246673, + "y": -0.6631539049652597 + }, + { + "x": 0.885455576089853, + "y": -0.4647240286141727 + }, + { + "x": 0.9709364586220396, + "y": -0.23933740476259086 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1414 + }, + "min": { + "#": 1415 + } + }, + { + "x": 831.2026764474614, + "y": 300.86199999999997 + }, + { + "x": 744.5266764474615, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 787.8646764474614, + "y": 257.20599999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 787.8646764474614, + "y": 257.20599999999996 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1423 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 831.2026764474614, + "y": 262.46799999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 828.6836764474614, + "y": 272.68699999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 823.7926764474614, + "y": 282.006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 816.8136764474614, + "y": 289.8829999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 808.1526764474614, + "y": 295.86199999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 798.3126764474614, + "y": 299.59399999999994 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 787.8646764474614, + "y": 300.86199999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 777.4166764474614, + "y": 299.59399999999994 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 767.5766764474614, + "y": 295.86199999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 758.9156764474615, + "y": 289.8829999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 751.9366764474614, + "y": 282.006 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 747.0456764474615, + "y": 272.68699999999995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 744.5266764474615, + "y": 262.46799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 744.5266764474615, + "y": 251.94399999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 747.0456764474615, + "y": 241.72499999999997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 751.9366764474614, + "y": 232.40599999999995 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 758.9156764474615, + "y": 224.52899999999997 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 767.5766764474614, + "y": 218.54999999999995 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 777.4166764474614, + "y": 214.81799999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 787.8646764474614, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 798.3126764474614, + "y": 214.81799999999996 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 808.1526764474614, + "y": 218.54999999999995 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 816.8136764474614, + "y": 224.52899999999997 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 823.7926764474614, + "y": 232.40599999999995 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 828.6836764474614, + "y": 241.72499999999997 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 831.2026764474614, + "y": 251.94399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2550.166396822507, + "axes": { + "#": 1453 + }, + "bounds": { + "#": 1456 + }, + "collisionFilter": { + "#": 1459 + }, + "constraintImpulse": { + "#": 1460 + }, + "density": 0.001, + "force": { + "#": 1461 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 10939.165130883785, + "inverseInertia": 0.00009141465441240754, + "inverseMass": 0.392131274745834, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5501663968225072, + "motion": 0, + "parent": null, + "position": { + "#": 1462 + }, + "positionImpulse": { + "#": 1463 + }, + "positionPrev": { + "#": 1464 + }, + "render": { + "#": 1465 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1467 + }, + "vertices": { + "#": 1468 + } + }, + [ + { + "#": 1454 + }, + { + "#": 1455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1457 + }, + "min": { + "#": 1458 + } + }, + { + "x": 942.2964693144023, + "y": 236.50507544581615 + }, + { + "x": 831.2026764474614, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7495728809319, + "y": 225.02753772290805 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7495728809319, + "y": 225.02753772290805 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1466 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 831.2026764474614, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 942.2964693144023, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 942.2964693144023, + "y": 236.50507544581615 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 831.2026764474614, + "y": 236.50507544581615 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5174.381305999998, + "axes": { + "#": 1474 + }, + "bounds": { + "#": 1488 + }, + "circleRadius": 40.782407407407405, + "collisionFilter": { + "#": 1491 + }, + "constraintImpulse": { + "#": 1492 + }, + "density": 0.001, + "force": { + "#": 1493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17045.3242729355, + "inverseInertia": 0.000058667115039154525, + "inverseMass": 0.1932598200369272, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.174381305999998, + "motion": 0, + "parent": null, + "position": { + "#": 1494 + }, + "positionImpulse": { + "#": 1495 + }, + "positionPrev": { + "#": 1496 + }, + "render": { + "#": 1497 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1499 + }, + "vertices": { + "#": 1500 + } + }, + [ + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + } + ], + { + "x": -0.9709389264723081, + "y": -0.23932739304309056 + }, + { + "x": -0.8854449940324717, + "y": -0.46474419043473386 + }, + { + "x": -0.748536249103088, + "y": -0.6630938725238529 + }, + { + "x": -0.5680775563568219, + "y": -0.8229750239002773 + }, + { + "x": -0.35456531449559353, + "y": -0.9350312496150279 + }, + { + "x": -0.12052880622175748, + "y": -0.9927098301471373 + }, + { + "x": 0.12052880622175748, + "y": -0.9927098301471373 + }, + { + "x": 0.35456531449559353, + "y": -0.9350312496150279 + }, + { + "x": 0.5680775563568219, + "y": -0.8229750239002773 + }, + { + "x": 0.748536249103088, + "y": -0.6630938725238529 + }, + { + "x": 0.8854449940324717, + "y": -0.46474419043473386 + }, + { + "x": 0.9709389264723081, + "y": -0.23932739304309056 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1489 + }, + "min": { + "#": 1490 + } + }, + { + "x": 1023.2664693144023, + "y": 295.1139999999999 + }, + { + "x": 942.2964693144023, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 982.7814693144023, + "y": 254.33199999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 982.7814693144023, + "y": 254.33199999999994 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1498 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1023.2664693144023, + "y": 259.24799999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1020.9134693144023, + "y": 268.7939999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1016.3444693144023, + "y": 277.4989999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1009.8254693144023, + "y": 284.85799999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1001.7344693144023, + "y": 290.4429999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 992.5414693144023, + "y": 293.929 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 982.7814693144023, + "y": 295.1139999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 973.0214693144023, + "y": 293.929 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 963.8284693144024, + "y": 290.4429999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 955.7374693144023, + "y": 284.85799999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 949.2184693144023, + "y": 277.4989999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 944.6494693144024, + "y": 268.7939999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 942.2964693144023, + "y": 259.24799999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 942.2964693144023, + "y": 249.41599999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 944.6494693144024, + "y": 239.86999999999995 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 949.2184693144023, + "y": 231.16499999999994 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 955.7374693144023, + "y": 223.80599999999993 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 963.8284693144024, + "y": 218.22099999999995 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 973.0214693144023, + "y": 214.73499999999993 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 982.7814693144023, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 992.5414693144023, + "y": 214.73499999999993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1001.7344693144023, + "y": 218.22099999999995 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1009.8254693144023, + "y": 223.80599999999993 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1016.3444693144023, + "y": 231.16499999999994 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1020.9134693144023, + "y": 239.86999999999995 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1023.2664693144023, + "y": 249.41599999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1308.2034644955884, + "axes": { + "#": 1528 + }, + "bounds": { + "#": 1531 + }, + "collisionFilter": { + "#": 1534 + }, + "constraintImpulse": { + "#": 1535 + }, + "density": 0.001, + "force": { + "#": 1536 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1149.8579054087725, + "inverseInertia": 0.0008696726745940854, + "inverseMass": 0.7644070873834413, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3082034644955884, + "motion": 0, + "parent": null, + "position": { + "#": 1537 + }, + "positionImpulse": { + "#": 1538 + }, + "positionPrev": { + "#": 1539 + }, + "render": { + "#": 1540 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1542 + }, + "vertices": { + "#": 1543 + } + }, + [ + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1532 + }, + "min": { + "#": 1533 + } + }, + { + "x": 1061.7685269275707, + "y": 247.527494855967 + }, + { + "x": 1023.2664693144022, + "y": 213.54999999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1042.5174981209866, + "y": 230.53874742798348 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1042.5174981209866, + "y": 230.53874742798348 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1541 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1023.2664693144022, + "y": 213.54999999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1061.7685269275707, + "y": 213.54999999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1061.7685269275707, + "y": 247.527494855967 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1023.2664693144022, + "y": 247.527494855967 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3803.7767479999993, + "axes": { + "#": 1549 + }, + "bounds": { + "#": 1557 + }, + "collisionFilter": { + "#": 1560 + }, + "constraintImpulse": { + "#": 1561 + }, + "density": 0.001, + "force": { + "#": 1562 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 9247.768748441516, + "inverseInertia": 0.00010813419184692798, + "inverseMass": 0.2628966067805618, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.8037767479999993, + "motion": 0, + "parent": null, + "position": { + "#": 1563 + }, + "positionImpulse": { + "#": 1564 + }, + "positionPrev": { + "#": 1565 + }, + "render": { + "#": 1566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1568 + }, + "vertices": { + "#": 1569 + } + }, + [ + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + } + ], + { + "x": 0.623488113338336, + "y": 0.7818328290151305 + }, + { + "x": -0.22254280104331042, + "y": 0.9749229209039029 + }, + { + "x": -0.9009618424321717, + "y": 0.43389832735472317 + }, + { + "x": -0.9009618424321717, + "y": -0.43389832735472317 + }, + { + "x": -0.22254280104331042, + "y": -0.9749229209039029 + }, + { + "x": 0.623488113338336, + "y": -0.7818328290151305 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1558 + }, + "min": { + "#": 1559 + } + }, + { + "x": 1130.797166256119, + "y": 286.24799999999993 + }, + { + "x": 1059.922166256119, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1097.2060269275707, + "y": 249.89899999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1097.2060269275707, + "y": 249.89899999999994 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1567 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1130.797166256119, + "y": 266.0759999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1105.5021662561192, + "y": 286.24799999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1073.960166256119, + "y": 279.04799999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1059.922166256119, + "y": 249.89899999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1073.960166256119, + "y": 220.74999999999994 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1105.5021662561192, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1130.797166256119, + "y": 233.72199999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1519.5385669833, + "axes": { + "#": 1578 + }, + "bounds": { + "#": 1581 + }, + "collisionFilter": { + "#": 1584 + }, + "constraintImpulse": { + "#": 1585 + }, + "density": 0.001, + "force": { + "#": 1586 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1623.6987742797708, + "inverseInertia": 0.0006158777821604092, + "inverseMass": 0.6580945174595165, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5195385669833, + "motion": 0, + "parent": null, + "position": { + "#": 1587 + }, + "positionImpulse": { + "#": 1588 + }, + "positionPrev": { + "#": 1589 + }, + "render": { + "#": 1590 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1592 + }, + "vertices": { + "#": 1593 + } + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1582 + }, + "min": { + "#": 1583 + } + }, + { + "x": 1163.8559368322508, + "y": 259.51476337448554 + }, + { + "x": 1130.797166256119, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1147.326551544185, + "y": 236.53238168724275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1147.326551544185, + "y": 236.53238168724275 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1591 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1130.797166256119, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1163.8559368322508, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1163.8559368322508, + "y": 259.51476337448554 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1130.797166256119, + "y": 259.51476337448554 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3306.4800040000005, + "axes": { + "#": 1599 + }, + "bounds": { + "#": 1602 + }, + "collisionFilter": { + "#": 1605 + }, + "constraintImpulse": { + "#": 1606 + }, + "density": 0.001, + "force": { + "#": 1607 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 7288.540011234562, + "inverseInertia": 0.00013720168901571494, + "inverseMass": 0.302436427496992, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.3064800040000004, + "motion": 0, + "parent": null, + "position": { + "#": 1608 + }, + "positionImpulse": { + "#": 1609 + }, + "positionPrev": { + "#": 1610 + }, + "render": { + "#": 1611 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1613 + }, + "vertices": { + "#": 1614 + } + }, + [ + { + "#": 1600 + }, + { + "#": 1601 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1603 + }, + "min": { + "#": 1604 + } + }, + { + "x": 1221.3579368322507, + "y": 271.05199999999996 + }, + { + "x": 1163.8559368322508, + "y": 213.54999999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1192.6069368322508, + "y": 242.30099999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1192.6069368322508, + "y": 242.30099999999996 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1612 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1221.3579368322507, + "y": 271.05199999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1163.8559368322508, + "y": 271.05199999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1163.8559368322508, + "y": 213.54999999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1221.3579368322507, + "y": 213.54999999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1545.32445, + "axes": { + "#": 1620 + }, + "bounds": { + "#": 1624 + }, + "collisionFilter": { + "#": 1627 + }, + "constraintImpulse": { + "#": 1628 + }, + "density": 0.001, + "force": { + "#": 1629 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 1838.3045471526925, + "inverseInertia": 0.000543979506305893, + "inverseMass": 0.6471132971461107, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.54532445, + "motion": 0, + "parent": null, + "position": { + "#": 1630 + }, + "positionImpulse": { + "#": 1631 + }, + "positionPrev": { + "#": 1632 + }, + "render": { + "#": 1633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1635 + }, + "vertices": { + "#": 1636 + } + }, + [ + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + } + ], + { + "x": -0.5000098405967125, + "y": 0.8660197222387318 + }, + { + "x": -0.5000098405967125, + "y": -0.8660197222387318 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1625 + }, + "min": { + "#": 1626 + } + }, + { + "x": 63.11250000000001, + "y": 366.44399999999996 + }, + { + "x": 11.377500000000005, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 45.86750000000001, + "y": 336.57399999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 45.86750000000001, + "y": 336.57399999999996 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1634 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 63.11250000000001, + "y": 366.44399999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 11.377500000000005, + "y": 336.57399999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 63.11250000000001, + "y": 306.70399999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 832.6916065934118, + "axes": { + "#": 1641 + }, + "bounds": { + "#": 1644 + }, + "collisionFilter": { + "#": 1647 + }, + "constraintImpulse": { + "#": 1648 + }, + "density": 0.001, + "force": { + "#": 1649 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 462.4740461527257, + "inverseInertia": 0.0021622835017854466, + "inverseMass": 1.2009247986671274, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8326916065934119, + "motion": 0, + "parent": null, + "position": { + "#": 1650 + }, + "positionImpulse": { + "#": 1651 + }, + "positionPrev": { + "#": 1652 + }, + "render": { + "#": 1653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1655 + }, + "vertices": { + "#": 1656 + } + }, + [ + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1645 + }, + "min": { + "#": 1646 + } + }, + { + "x": 92.42139917695474, + "y": 335.1148796296296 + }, + { + "x": 63.11250000000001, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 77.76694958847737, + "y": 320.9094398148148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 77.76694958847737, + "y": 320.9094398148148 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1654 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 63.11250000000001, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 92.42139917695474, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 92.42139917695474, + "y": 335.1148796296296 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 63.11250000000001, + "y": 335.1148796296296 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 979.5317619999998, + "axes": { + "#": 1662 + }, + "bounds": { + "#": 1668 + }, + "collisionFilter": { + "#": 1671 + }, + "constraintImpulse": { + "#": 1672 + }, + "density": 0.001, + "force": { + "#": 1673 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 621.1930410018283, + "inverseInertia": 0.0016098055419089229, + "inverseMass": 1.0208959410955785, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9795317619999999, + "motion": 0, + "parent": null, + "position": { + "#": 1674 + }, + "positionImpulse": { + "#": 1675 + }, + "positionPrev": { + "#": 1676 + }, + "render": { + "#": 1677 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1679 + }, + "vertices": { + "#": 1680 + } + }, + [ + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + } + ], + { + "x": 0.30903963762764336, + "y": 0.9510491587583552 + }, + { + "x": -0.8090205210332716, + "y": 0.5877803982330935 + }, + { + "x": -0.8090205210332716, + "y": -0.5877803982330935 + }, + { + "x": 0.30903963762764336, + "y": -0.9510491587583552 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1669 + }, + "min": { + "#": 1670 + } + }, + { + "x": 127.20130264884645, + "y": 345.3119999999999 + }, + { + "x": 90.48330264884645, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 110.78039917695475, + "y": 326.0079999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 110.78039917695475, + "y": 326.0079999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1678 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 127.20130264884645, + "y": 337.93799999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 104.50830264884645, + "y": 345.3119999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 90.48330264884645, + "y": 326.0079999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 104.50830264884645, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 127.20130264884645, + "y": 314.0779999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1515.3131811080627, + "axes": { + "#": 1687 + }, + "bounds": { + "#": 1690 + }, + "collisionFilter": { + "#": 1693 + }, + "constraintImpulse": { + "#": 1694 + }, + "density": 0.001, + "force": { + "#": 1695 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1532.4206796199487, + "inverseInertia": 0.0006525623239749069, + "inverseMass": 0.6599295858224876, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5153131811080627, + "motion": 0, + "parent": null, + "position": { + "#": 1696 + }, + "positionImpulse": { + "#": 1697 + }, + "positionPrev": { + "#": 1698 + }, + "render": { + "#": 1699 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1701 + }, + "vertices": { + "#": 1702 + } + }, + [ + { + "#": 1688 + }, + { + "#": 1689 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1691 + }, + "min": { + "#": 1692 + } + }, + { + "x": 167.03913701098637, + "y": 344.741037037037 + }, + { + "x": 127.20130264884645, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 147.1202198299164, + "y": 325.7225185185185 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 147.1202198299164, + "y": 325.7225185185185 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1700 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 127.20130264884645, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 167.03913701098637, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.03913701098637, + "y": 344.741037037037 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 127.20130264884645, + "y": 344.741037037037 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1347.9278604289448, + "axes": { + "#": 1708 + }, + "bounds": { + "#": 1711 + }, + "collisionFilter": { + "#": 1714 + }, + "constraintImpulse": { + "#": 1715 + }, + "density": 0.001, + "force": { + "#": 1716 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1394.5666895178056, + "inverseInertia": 0.000717068611717498, + "inverseMass": 0.7418794650344082, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3479278604289449, + "motion": 0, + "parent": null, + "position": { + "#": 1717 + }, + "positionImpulse": { + "#": 1718 + }, + "positionPrev": { + "#": 1719 + }, + "render": { + "#": 1720 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1722 + }, + "vertices": { + "#": 1723 + } + }, + [ + { + "#": 1709 + }, + { + "#": 1710 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1712 + }, + "min": { + "#": 1713 + } + }, + { + "x": 195.01804647600696, + "y": 354.88056893004114 + }, + { + "x": 167.03913701098637, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.02859174349666, + "y": 330.79228446502054 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.02859174349666, + "y": 330.79228446502054 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1721 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 167.03913701098637, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.01804647600696, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.01804647600696, + "y": 354.88056893004114 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 167.03913701098637, + "y": 354.88056893004114 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2285.4053614040354, + "axes": { + "#": 1729 + }, + "bounds": { + "#": 1732 + }, + "collisionFilter": { + "#": 1735 + }, + "constraintImpulse": { + "#": 1736 + }, + "density": 0.001, + "force": { + "#": 1737 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 3483.877210739159, + "inverseInertia": 0.00028703652267579035, + "inverseMass": 0.43755913803652385, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.2854053614040355, + "motion": 0, + "parent": null, + "position": { + "#": 1738 + }, + "positionImpulse": { + "#": 1739 + }, + "positionPrev": { + "#": 1740 + }, + "render": { + "#": 1741 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1743 + }, + "vertices": { + "#": 1744 + } + }, + [ + { + "#": 1730 + }, + { + "#": 1731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1733 + }, + "min": { + "#": 1734 + } + }, + { + "x": 242.05624092045142, + "y": 355.2901625514403 + }, + { + "x": 195.01804647600696, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 218.5371436982292, + "y": 330.9970812757201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 218.5371436982292, + "y": 330.9970812757201 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1742 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195.01804647600696, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 242.05624092045142, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 242.05624092045142, + "y": 355.2901625514403 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195.01804647600696, + "y": 355.2901625514403 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4327.82858, + "axes": { + "#": 1750 + }, + "bounds": { + "#": 1756 + }, + "collisionFilter": { + "#": 1759 + }, + "constraintImpulse": { + "#": 1760 + }, + "density": 0.001, + "force": { + "#": 1761 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 12126.33710521863, + "inverseInertia": 0.0000824651328198393, + "inverseMass": 0.23106275618707614, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.32782858, + "motion": 0, + "parent": null, + "position": { + "#": 1762 + }, + "positionImpulse": { + "#": 1763 + }, + "positionPrev": { + "#": 1764 + }, + "render": { + "#": 1765 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1767 + }, + "vertices": { + "#": 1768 + } + }, + [ + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + } + ], + { + "x": 0.30902295452491274, + "y": 0.9510545797043899 + }, + { + "x": -0.8090187921715927, + "y": 0.587782777829716 + }, + { + "x": -0.8090187921715927, + "y": -0.587782777829716 + }, + { + "x": 0.30902295452491274, + "y": -0.9510545797043899 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1757 + }, + "min": { + "#": 1758 + } + }, + { + "x": 315.1622882764983, + "y": 387.856 + }, + { + "x": 237.98228827649834, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280.6462409204514, + "y": 347.28 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280.6462409204514, + "y": 347.28 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1766 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.1622882764983, + "y": 372.35699999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 267.4622882764984, + "y": 387.856 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 237.98228827649834, + "y": 347.28 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.4622882764984, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 315.1622882764983, + "y": 322.203 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2032.7292721140495, + "axes": { + "#": 1775 + }, + "bounds": { + "#": 1778 + }, + "collisionFilter": { + "#": 1781 + }, + "constraintImpulse": { + "#": 1782 + }, + "density": 0.001, + "force": { + "#": 1783 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 6700.374119056197, + "inverseInertia": 0.00014924539767950423, + "inverseMass": 0.49194942667401764, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.0327292721140497, + "motion": 0, + "parent": null, + "position": { + "#": 1784 + }, + "positionImpulse": { + "#": 1785 + }, + "positionPrev": { + "#": 1786 + }, + "render": { + "#": 1787 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1789 + }, + "vertices": { + "#": 1790 + } + }, + [ + { + "#": 1776 + }, + { + "#": 1777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1779 + }, + "min": { + "#": 1780 + } + }, + { + "x": 412.3814240789675, + "y": 327.6127362825788 + }, + { + "x": 315.1622882764983, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 363.7718561777329, + "y": 317.1583681412894 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 363.7718561777329, + "y": 317.1583681412894 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1788 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 315.1622882764983, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 412.3814240789675, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 412.3814240789675, + "y": 327.6127362825788 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 315.1622882764983, + "y": 327.6127362825788 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1931.953486546484, + "axes": { + "#": 1796 + }, + "bounds": { + "#": 1799 + }, + "collisionFilter": { + "#": 1802 + }, + "constraintImpulse": { + "#": 1803 + }, + "density": 0.001, + "force": { + "#": 1804 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 4690.996610130106, + "inverseInertia": 0.00021317431733813697, + "inverseMass": 0.517610805313733, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.9319534865464842, + "motion": 0, + "parent": null, + "position": { + "#": 1805 + }, + "positionImpulse": { + "#": 1806 + }, + "positionPrev": { + "#": 1807 + }, + "render": { + "#": 1808 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1810 + }, + "vertices": { + "#": 1811 + } + }, + [ + { + "#": 1797 + }, + { + "#": 1798 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1800 + }, + "min": { + "#": 1801 + } + }, + { + "x": 494.41623203507174, + "y": 330.25441152263375 + }, + { + "x": 412.3814240789675, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 453.3988280570196, + "y": 318.47920576131685 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 453.3988280570196, + "y": 318.47920576131685 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1809 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 412.3814240789675, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.41623203507174, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 494.41623203507174, + "y": 330.25441152263375 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 412.3814240789675, + "y": 330.25441152263375 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2376.3179650719107, + "axes": { + "#": 1817 + }, + "bounds": { + "#": 1820 + }, + "collisionFilter": { + "#": 1823 + }, + "constraintImpulse": { + "#": 1824 + }, + "density": 0.001, + "force": { + "#": 1825 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 3764.591504006761, + "inverseInertia": 0.0002656330703970595, + "inverseMass": 0.42081910531267586, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.3763179650719106, + "motion": 0, + "parent": null, + "position": { + "#": 1826 + }, + "positionImpulse": { + "#": 1827 + }, + "positionPrev": { + "#": 1828 + }, + "render": { + "#": 1829 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1831 + }, + "vertices": { + "#": 1832 + } + }, + [ + { + "#": 1818 + }, + { + "#": 1819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1821 + }, + "min": { + "#": 1822 + } + }, + { + "x": 543.1574871791047, + "y": 355.4577294238683 + }, + { + "x": 494.41623203507174, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 518.7868596070882, + "y": 331.0808647119341 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 518.7868596070882, + "y": 331.0808647119341 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1830 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 494.41623203507174, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 543.1574871791047, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 543.1574871791047, + "y": 355.4577294238683 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 494.41623203507174, + "y": 355.4577294238683 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7163.665109999999, + "axes": { + "#": 1838 + }, + "bounds": { + "#": 1852 + }, + "circleRadius": 47.985725308641975, + "collisionFilter": { + "#": 1855 + }, + "constraintImpulse": { + "#": 1856 + }, + "density": 0.001, + "force": { + "#": 1857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 32670.739096352663, + "inverseInertia": 0.000030608429060964806, + "inverseMass": 0.13959334846684368, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.163665109999999, + "motion": 0, + "parent": null, + "position": { + "#": 1858 + }, + "positionImpulse": { + "#": 1859 + }, + "positionPrev": { + "#": 1860 + }, + "render": { + "#": 1861 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1863 + }, + "vertices": { + "#": 1864 + } + }, + [ + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + } + ], + { + "x": -0.9709305552368677, + "y": -0.23936135215908938 + }, + { + "x": -0.8854539309223355, + "y": -0.4647271631981327 + }, + { + "x": -0.7485195270433018, + "y": -0.6631127488103902 + }, + { + "x": -0.5680541170604241, + "y": -0.8229912029242489 + }, + { + "x": -0.3546073256135543, + "y": -0.9350153178537786 + }, + { + "x": -0.12058693531691794, + "y": -0.9927027707379854 + }, + { + "x": 0.12058693531691794, + "y": -0.9927027707379854 + }, + { + "x": 0.3546073256135543, + "y": -0.9350153178537786 + }, + { + "x": 0.5680541170604241, + "y": -0.8229912029242489 + }, + { + "x": 0.7485195270433018, + "y": -0.6631127488103902 + }, + { + "x": 0.8854539309223355, + "y": -0.4647271631981327 + }, + { + "x": 0.9709305552368677, + "y": -0.23936135215908938 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1853 + }, + "min": { + "#": 1854 + } + }, + { + "x": 638.4294871791046, + "y": 402.67599999999993 + }, + { + "x": 543.1574871791047, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 590.7934871791047, + "y": 354.68999999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 590.7934871791047, + "y": 354.68999999999994 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1862 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.4294871791046, + "y": 360.47399999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 635.6604871791046, + "y": 371.70599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 630.2844871791046, + "y": 381.94899999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 622.6134871791047, + "y": 390.60799999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 613.0934871791046, + "y": 397.1789999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 602.2774871791047, + "y": 401.28099999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 590.7934871791047, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 579.3094871791046, + "y": 401.28099999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 568.4934871791047, + "y": 397.1789999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 558.9734871791047, + "y": 390.60799999999995 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 551.3024871791047, + "y": 381.94899999999996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 545.9264871791047, + "y": 371.70599999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 543.1574871791047, + "y": 360.47399999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 543.1574871791047, + "y": 348.90599999999995 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 545.9264871791047, + "y": 337.6739999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 551.3024871791047, + "y": 327.4309999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 558.9734871791047, + "y": 318.77199999999993 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 568.4934871791047, + "y": 312.20099999999996 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 579.3094871791046, + "y": 308.09899999999993 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 590.7934871791047, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 602.2774871791047, + "y": 308.09899999999993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 613.0934871791046, + "y": 312.20099999999996 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 622.6134871791047, + "y": 318.77199999999993 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 630.2844871791046, + "y": 327.4309999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 635.6604871791046, + "y": 337.6739999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 638.4294871791046, + "y": 348.90599999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6059.0497460000015, + "axes": { + "#": 1892 + }, + "bounds": { + "#": 1906 + }, + "circleRadius": 44.13130144032922, + "collisionFilter": { + "#": 1909 + }, + "constraintImpulse": { + "#": 1910 + }, + "density": 0.001, + "force": { + "#": 1911 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 23372.08438446153, + "inverseInertia": 0.00004278608546633651, + "inverseMass": 0.16504238154838874, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.059049746000001, + "motion": 0, + "parent": null, + "position": { + "#": 1912 + }, + "positionImpulse": { + "#": 1913 + }, + "positionPrev": { + "#": 1914 + }, + "render": { + "#": 1915 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1917 + }, + "vertices": { + "#": 1918 + } + }, + [ + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + } + ], + { + "x": -0.9709225149895018, + "y": -0.23939396376362687 + }, + { + "x": -0.8854559247382039, + "y": -0.46472336432119704 + }, + { + "x": -0.7485335294885549, + "y": -0.663096942559236 + }, + { + "x": -0.5680558224819049, + "y": -0.8229900257867082 + }, + { + "x": -0.3546230668670807, + "y": -0.9350093477852434 + }, + { + "x": -0.1205054107991527, + "y": -0.9927126703976974 + }, + { + "x": 0.1205054107991527, + "y": -0.9927126703976974 + }, + { + "x": 0.3546230668670807, + "y": -0.9350093477852434 + }, + { + "x": 0.5680558224819049, + "y": -0.8229900257867082 + }, + { + "x": 0.7485335294885549, + "y": -0.663096942559236 + }, + { + "x": 0.8854559247382039, + "y": -0.46472336432119704 + }, + { + "x": 0.9709225149895018, + "y": -0.23939396376362687 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1907 + }, + "min": { + "#": 1908 + } + }, + { + "x": 726.0494871791045, + "y": 394.9659999999999 + }, + { + "x": 638.4294871791046, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 682.2394871791046, + "y": 350.8349999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 682.2394871791046, + "y": 350.8349999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1916 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 726.0494871791045, + "y": 356.15399999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 723.5024871791046, + "y": 366.4839999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 718.5584871791045, + "y": 375.90399999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 711.5034871791046, + "y": 383.86799999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 702.7484871791046, + "y": 389.91099999999994 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 692.8004871791046, + "y": 393.6839999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 682.2394871791046, + "y": 394.9659999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 671.6784871791045, + "y": 393.6839999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 661.7304871791046, + "y": 389.91099999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 652.9754871791046, + "y": 383.86799999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 645.9204871791046, + "y": 375.90399999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 640.9764871791045, + "y": 366.4839999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 638.4294871791046, + "y": 356.15399999999994 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 638.4294871791046, + "y": 345.5159999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 640.9764871791045, + "y": 335.1859999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 645.9204871791046, + "y": 325.7659999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 652.9754871791046, + "y": 317.8019999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 661.7304871791046, + "y": 311.7589999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 671.6784871791045, + "y": 307.98599999999993 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 682.2394871791046, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 692.8004871791046, + "y": 307.98599999999993 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 702.7484871791046, + "y": 311.7589999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 711.5034871791046, + "y": 317.8019999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 718.5584871791045, + "y": 325.7659999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 723.5024871791046, + "y": 335.1859999999999 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 726.0494871791045, + "y": 345.5159999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1190.42275, + "axes": { + "#": 1946 + }, + "bounds": { + "#": 1952 + }, + "collisionFilter": { + "#": 1955 + }, + "constraintImpulse": { + "#": 1956 + }, + "density": 0.001, + "force": { + "#": 1957 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 917.4702110738278, + "inverseInertia": 0.001089953644194701, + "inverseMass": 0.8400377092927702, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.19042275, + "motion": 0, + "parent": null, + "position": { + "#": 1958 + }, + "positionImpulse": { + "#": 1959 + }, + "positionPrev": { + "#": 1960 + }, + "render": { + "#": 1961 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1963 + }, + "vertices": { + "#": 1964 + } + }, + [ + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + } + ], + { + "x": 0.30904480933870226, + "y": 0.9510474782158908 + }, + { + "x": -0.8090088872494576, + "y": 0.5877964106316017 + }, + { + "x": -0.8090088872494576, + "y": -0.5877964106316017 + }, + { + "x": 0.30904480933870226, + "y": -0.9510474782158908 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1953 + }, + "min": { + "#": 1954 + } + }, + { + "x": 764.3907015176674, + "y": 349.26599999999996 + }, + { + "x": 723.9127015176673, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 746.2884871791045, + "y": 327.98499999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 746.2884871791045, + "y": 327.98499999999996 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1962 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 764.3907015176674, + "y": 341.13699999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 739.3747015176673, + "y": 349.26599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 723.9127015176673, + "y": 327.98499999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 739.3747015176673, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 764.3907015176674, + "y": 314.83299999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2171.016137319483, + "axes": { + "#": 1971 + }, + "bounds": { + "#": 1974 + }, + "collisionFilter": { + "#": 1977 + }, + "constraintImpulse": { + "#": 1978 + }, + "density": 0.001, + "force": { + "#": 1979 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 3142.3211355327803, + "inverseInertia": 0.0003182360926425332, + "inverseMass": 0.46061380328323276, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.1710161373194827, + "motion": 0, + "parent": null, + "position": { + "#": 1980 + }, + "positionImpulse": { + "#": 1981 + }, + "positionPrev": { + "#": 1982 + }, + "render": { + "#": 1983 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1985 + }, + "vertices": { + "#": 1986 + } + }, + [ + { + "#": 1972 + }, + { + "#": 1973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1975 + }, + "min": { + "#": 1976 + } + }, + { + "x": 811.1835255917415, + "y": 353.1003477366255 + }, + { + "x": 764.3907015176674, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 787.7871135547044, + "y": 329.90217386831273 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 787.7871135547044, + "y": 329.90217386831273 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1984 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 764.3907015176674, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 811.1835255917415, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 811.1835255917415, + "y": 353.1003477366255 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 764.3907015176674, + "y": 353.1003477366255 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1119.9948759999997, + "axes": { + "#": 1992 + }, + "bounds": { + "#": 1996 + }, + "collisionFilter": { + "#": 1999 + }, + "constraintImpulse": { + "#": 2000 + }, + "density": 0.001, + "force": { + "#": 2001 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 965.6287346905493, + "inverseInertia": 0.0010355947001934086, + "inverseMass": 0.8928612276972597, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.1199948759999998, + "motion": 0, + "parent": null, + "position": { + "#": 2002 + }, + "positionImpulse": { + "#": 2003 + }, + "positionPrev": { + "#": 2004 + }, + "render": { + "#": 2005 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2007 + }, + "vertices": { + "#": 2008 + } + }, + [ + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + } + ], + { + "x": -0.5000027244187393, + "y": 0.8660238308348324 + }, + { + "x": -0.5000027244187393, + "y": -0.8660238308348324 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1997 + }, + "min": { + "#": 1998 + } + }, + { + "x": 847.8868589250748, + "y": 357.5619999999999 + }, + { + "x": 803.8428589250748, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 833.2055255917414, + "y": 332.1329999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 833.2055255917414, + "y": 332.1329999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2006 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 847.8868589250748, + "y": 357.5619999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 803.8428589250748, + "y": 332.1329999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 847.8868589250748, + "y": 306.70399999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5582.974756, + "axes": { + "#": 2013 + }, + "bounds": { + "#": 2021 + }, + "collisionFilter": { + "#": 2024 + }, + "constraintImpulse": { + "#": 2025 + }, + "density": 0.001, + "force": { + "#": 2026 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 19922.243813825833, + "inverseInertia": 0.000050195149168188086, + "inverseMass": 0.17911598094283054, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.582974756, + "motion": 0, + "parent": null, + "position": { + "#": 2027 + }, + "positionImpulse": { + "#": 2028 + }, + "positionPrev": { + "#": 2029 + }, + "render": { + "#": 2030 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2032 + }, + "vertices": { + "#": 2033 + } + }, + [ + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + } + ], + { + "x": 0.6234964763295189, + "y": 0.7818261597085848 + }, + { + "x": -0.22252413765652376, + "y": 0.9749271809526189 + }, + { + "x": -0.9009669496877173, + "y": 0.43388772230890577 + }, + { + "x": -0.9009669496877173, + "y": -0.43388772230890577 + }, + { + "x": -0.22252413765652376, + "y": -0.9749271809526189 + }, + { + "x": 0.6234964763295189, + "y": -0.7818261597085848 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2022 + }, + "min": { + "#": 2023 + } + }, + { + "x": 931.5152738853482, + "y": 394.7779999999999 + }, + { + "x": 845.6502738853482, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 890.8193589250748, + "y": 350.74099999999993 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 890.8193589250748, + "y": 350.74099999999993 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2031 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 931.5152738853482, + "y": 370.33899999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 900.8702738853482, + "y": 394.7779999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 862.6572738853482, + "y": 386.0559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 845.6502738853482, + "y": 350.74099999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 862.6572738853482, + "y": 315.42599999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 900.8702738853482, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 931.5152738853482, + "y": 331.1429999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1427.950596, + "axes": { + "#": 2042 + }, + "bounds": { + "#": 2046 + }, + "collisionFilter": { + "#": 2049 + }, + "constraintImpulse": { + "#": 2050 + }, + "density": 0.001, + "force": { + "#": 2051 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 1308.0466332042622, + "inverseInertia": 0.0007644987377478626, + "inverseMass": 0.7003043402210255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4279505959999998, + "motion": 0, + "parent": null, + "position": { + "#": 2052 + }, + "positionImpulse": { + "#": 2053 + }, + "positionPrev": { + "#": 2054 + }, + "render": { + "#": 2055 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2057 + }, + "vertices": { + "#": 2058 + } + }, + [ + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + } + ], + { + "x": -0.5000018390041978, + "y": -0.8660243420322666 + }, + { + "x": 0.5000018390041978, + "y": -0.8660243420322666 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2047 + }, + "min": { + "#": 2048 + } + }, + { + "x": 972.1212738853482, + "y": 353.592 + }, + { + "x": 931.5152738853482, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 951.8182738853482, + "y": 330.14799999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 951.8182738853482, + "y": 330.14799999999997 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2056 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 972.1212738853482, + "y": 341.86999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 951.8182738853482, + "y": 353.592 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 931.5152738853482, + "y": 341.86999999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 931.5152738853482, + "y": 318.426 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 951.8182738853482, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 972.1212738853482, + "y": 318.426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1006.2524335919638, + "axes": { + "#": 2066 + }, + "bounds": { + "#": 2069 + }, + "collisionFilter": { + "#": 2072 + }, + "constraintImpulse": { + "#": 2073 + }, + "density": 0.001, + "force": { + "#": 2074 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 697.1461738741186, + "inverseInertia": 0.0014344194051053728, + "inverseMass": 0.9937864164266964, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0062524335919638, + "motion": 0, + "parent": null, + "position": { + "#": 2075 + }, + "positionImpulse": { + "#": 2076 + }, + "positionPrev": { + "#": 2077 + }, + "render": { + "#": 2078 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2080 + }, + "vertices": { + "#": 2081 + } + }, + [ + { + "#": 2067 + }, + { + "#": 2068 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2070 + }, + "min": { + "#": 2071 + } + }, + { + "x": 1008.1616545437843, + "y": 334.62413888888887 + }, + { + "x": 972.1212738853482, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 990.1414642145662, + "y": 320.6640694444444 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 990.1414642145662, + "y": 320.6640694444444 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2079 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 972.1212738853482, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1008.1616545437843, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1008.1616545437843, + "y": 334.62413888888887 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 972.1212738853482, + "y": 334.62413888888887 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3210.130139, + "axes": { + "#": 2087 + }, + "bounds": { + "#": 2095 + }, + "collisionFilter": { + "#": 2098 + }, + "constraintImpulse": { + "#": 2099 + }, + "density": 0.001, + "force": { + "#": 2100 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 6586.462154550281, + "inverseInertia": 0.00015182657647385802, + "inverseMass": 0.3115138504358312, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.210130139, + "motion": 0, + "parent": null, + "position": { + "#": 2101 + }, + "positionImpulse": { + "#": 2102 + }, + "positionPrev": { + "#": 2103 + }, + "render": { + "#": 2104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2106 + }, + "vertices": { + "#": 2107 + } + }, + [ + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + } + ], + { + "x": 0.6234920819000309, + "y": 0.7818296641903307 + }, + { + "x": -0.2225269729299679, + "y": 0.9749265338058173 + }, + { + "x": -0.9009636744259215, + "y": 0.4338945233175249 + }, + { + "x": -0.9009636744259215, + "y": -0.4338945233175249 + }, + { + "x": -0.2225269729299679, + "y": -0.9749265338058173 + }, + { + "x": 0.6234920819000309, + "y": -0.7818296641903307 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2096 + }, + "min": { + "#": 2097 + } + }, + { + "x": 1071.57552335436, + "y": 373.48799999999994 + }, + { + "x": 1006.4655233543602, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1040.7166545437842, + "y": 340.09599999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1040.7166545437842, + "y": 340.09599999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2105 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1071.57552335436, + "y": 354.95699999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1048.3385233543602, + "y": 373.48799999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1019.3615233543602, + "y": 366.87399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1006.4655233543602, + "y": 340.09599999999995 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1019.3615233543602, + "y": 313.3179999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1048.3385233543602, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1071.57552335436, + "y": 325.23499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1352.927270280826, + "axes": { + "#": 2116 + }, + "bounds": { + "#": 2119 + }, + "collisionFilter": { + "#": 2122 + }, + "constraintImpulse": { + "#": 2123 + }, + "density": 0.001, + "force": { + "#": 2124 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 1256.990937022409, + "inverseInertia": 0.0007955506842148158, + "inverseMass": 0.7391380320040639, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.352927270280826, + "motion": 0, + "parent": null, + "position": { + "#": 2125 + }, + "positionImpulse": { + "#": 2126 + }, + "positionPrev": { + "#": 2127 + }, + "render": { + "#": 2128 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2130 + }, + "vertices": { + "#": 2131 + } + }, + [ + { + "#": 2117 + }, + { + "#": 2118 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2120 + }, + "min": { + "#": 2121 + } + }, + { + "x": 1113.1448391979816, + "y": 339.25029629629626 + }, + { + "x": 1071.57552335436, + "y": 306.70399999999995 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1092.3601812761708, + "y": 322.9771481481481 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1092.3601812761708, + "y": 322.9771481481481 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2129 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1071.57552335436, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1113.1448391979816, + "y": 306.70399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1113.1448391979816, + "y": 339.25029629629626 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1071.57552335436, + "y": 339.25029629629626 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1720.1260092915415, + "axes": { + "#": 2137 + }, + "bounds": { + "#": 2140 + }, + "collisionFilter": { + "#": 2143 + }, + "constraintImpulse": { + "#": 2144 + }, + "density": 0.001, + "force": { + "#": 2145 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 2025.862459801684, + "inverseInertia": 0.0004936169260463478, + "inverseMass": 0.5813527582272093, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7201260092915416, + "motion": 0, + "parent": null, + "position": { + "#": 2146 + }, + "positionImpulse": { + "#": 2147 + }, + "positionPrev": { + "#": 2148 + }, + "render": { + "#": 2149 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2151 + }, + "vertices": { + "#": 2152 + } + }, + [ + { + "#": 2138 + }, + { + "#": 2139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2141 + }, + "min": { + "#": 2142 + } + }, + { + "x": 56.932613168724274, + "y": 449.25071707818927 + }, + { + "x": 20, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.46630658436214, + "y": 425.9633585390946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.46630658436214, + "y": 425.9633585390946 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2150 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 56.932613168724274, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.932613168724274, + "y": 449.25071707818927 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 449.25071707818927 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1250.161678324093, + "axes": { + "#": 2158 + }, + "bounds": { + "#": 2161 + }, + "collisionFilter": { + "#": 2164 + }, + "constraintImpulse": { + "#": 2165 + }, + "density": 0.001, + "force": { + "#": 2166 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 1044.2197391722605, + "inverseInertia": 0.0009576528411469095, + "inverseMass": 0.7998965392544685, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.250161678324093, + "motion": 0, + "parent": null, + "position": { + "#": 2167 + }, + "positionImpulse": { + "#": 2168 + }, + "positionPrev": { + "#": 2169 + }, + "render": { + "#": 2170 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2172 + }, + "vertices": { + "#": 2173 + } + }, + [ + { + "#": 2159 + }, + { + "#": 2160 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2162 + }, + "min": { + "#": 2163 + } + }, + { + "x": 93.48006687242797, + "y": 436.8825329218106 + }, + { + "x": 56.932613168724274, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.20634002057612, + "y": 419.77926646090526 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.20634002057612, + "y": 419.77926646090526 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2171 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.932613168724274, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 93.48006687242797, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 93.48006687242797, + "y": 436.8825329218106 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 56.932613168724274, + "y": 436.8825329218106 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3092.075232, + "axes": { + "#": 2179 + }, + "bounds": { + "#": 2185 + }, + "collisionFilter": { + "#": 2188 + }, + "constraintImpulse": { + "#": 2189 + }, + "density": 0.001, + "force": { + "#": 2190 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 6189.985619847792, + "inverseInertia": 0.00016155126383388745, + "inverseMass": 0.32340739631783966, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.092075232, + "motion": 0, + "parent": null, + "position": { + "#": 2191 + }, + "positionImpulse": { + "#": 2192 + }, + "positionPrev": { + "#": 2193 + }, + "render": { + "#": 2194 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2196 + }, + "vertices": { + "#": 2197 + } + }, + [ + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + } + ], + { + "x": 0.3090076656207097, + "y": 0.9510595473405646 + }, + { + "x": -0.8090195640060213, + "y": 0.5877817154824632 + }, + { + "x": -0.8090195640060213, + "y": -0.5877817154824632 + }, + { + "x": 0.3090076656207097, + "y": -0.9510595473405646 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2186 + }, + "min": { + "#": 2187 + } + }, + { + "x": 155.27345245050316, + "y": 471.27 + }, + { + "x": 90.03645245050316, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.09856687242797, + "y": 436.97299999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.09856687242797, + "y": 436.97299999999996 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2195 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 155.27345245050316, + "y": 458.16999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 114.95445245050317, + "y": 471.27 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 90.03645245050316, + "y": 436.97299999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 114.95445245050317, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 155.27345245050316, + "y": 415.77599999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1581.4152047253658, + "axes": { + "#": 2204 + }, + "bounds": { + "#": 2207 + }, + "collisionFilter": { + "#": 2210 + }, + "constraintImpulse": { + "#": 2211 + }, + "density": 0.001, + "force": { + "#": 2212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 1771.7086023235004, + "inverseInertia": 0.0005644269033229019, + "inverseMass": 0.6323450014973541, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5814152047253658, + "motion": 0, + "parent": null, + "position": { + "#": 2213 + }, + "positionImpulse": { + "#": 2214 + }, + "positionPrev": { + "#": 2215 + }, + "render": { + "#": 2216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2218 + }, + "vertices": { + "#": 2219 + } + }, + [ + { + "#": 2205 + }, + { + "#": 2206 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2208 + }, + "min": { + "#": 2209 + } + }, + { + "x": 202.69706356161424, + "y": 436.0225792181069 + }, + { + "x": 155.27345245050316, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.9852580060587, + "y": 419.3492896090534 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.9852580060587, + "y": 419.3492896090534 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2217 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 155.27345245050316, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 202.69706356161424, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 202.69706356161424, + "y": 436.0225792181069 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 155.27345245050316, + "y": 436.0225792181069 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4508.288001999999, + "axes": { + "#": 2225 + }, + "bounds": { + "#": 2230 + }, + "collisionFilter": { + "#": 2233 + }, + "constraintImpulse": { + "#": 2234 + }, + "density": 0.001, + "force": { + "#": 2235 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 12968.580393466536, + "inverseInertia": 0.00007710944217948417, + "inverseMass": 0.22181369059748904, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.508288002, + "motion": 0, + "parent": null, + "position": { + "#": 2236 + }, + "positionImpulse": { + "#": 2237 + }, + "positionPrev": { + "#": 2238 + }, + "render": { + "#": 2239 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2241 + }, + "vertices": { + "#": 2242 + } + }, + [ + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2231 + }, + "min": { + "#": 2232 + } + }, + { + "x": 276.4670635616142, + "y": 476.4459999999999 + }, + { + "x": 202.69706356161424, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 239.58206356161423, + "y": 439.5609999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 239.58206356161423, + "y": 439.5609999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2240 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 276.4670635616142, + "y": 454.83899999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 254.86006356161423, + "y": 476.4459999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 224.30406356161424, + "y": 476.4459999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.69706356161424, + "y": 454.83899999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 202.69706356161424, + "y": 424.2829999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 224.30406356161424, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 254.86006356161423, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 276.4670635616142, + "y": 424.2829999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1039.6267295619953, + "axes": { + "#": 2252 + }, + "bounds": { + "#": 2255 + }, + "collisionFilter": { + "#": 2258 + }, + "constraintImpulse": { + "#": 2259 + }, + "density": 0.001, + "force": { + "#": 2260 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 836.7694481463552, + "inverseInertia": 0.0011950723131864333, + "inverseMass": 0.9618836949501189, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0396267295619952, + "motion": 0, + "parent": null, + "position": { + "#": 2261 + }, + "positionImpulse": { + "#": 2262 + }, + "positionPrev": { + "#": 2263 + }, + "render": { + "#": 2264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2266 + }, + "vertices": { + "#": 2267 + } + }, + [ + { + "#": 2253 + }, + { + "#": 2254 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2256 + }, + "min": { + "#": 2257 + } + }, + { + "x": 319.1418320801327, + "y": 427.0376255144032 + }, + { + "x": 276.46706356161417, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.80444782087346, + "y": 414.85681275720157 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.80444782087346, + "y": 414.85681275720157 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2265 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 276.46706356161417, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 319.1418320801327, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 319.1418320801327, + "y": 427.0376255144032 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 276.46706356161417, + "y": 427.0376255144032 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1574.8717250450893, + "axes": { + "#": 2273 + }, + "bounds": { + "#": 2276 + }, + "collisionFilter": { + "#": 2279 + }, + "constraintImpulse": { + "#": 2280 + }, + "density": 0.001, + "force": { + "#": 2281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 1691.4099419533813, + "inverseInertia": 0.0005912227279716214, + "inverseMass": 0.6349723498727298, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5748717250450894, + "motion": 0, + "parent": null, + "position": { + "#": 2282 + }, + "positionImpulse": { + "#": 2283 + }, + "positionPrev": { + "#": 2284 + }, + "render": { + "#": 2285 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2287 + }, + "vertices": { + "#": 2288 + } + }, + [ + { + "#": 2274 + }, + { + "#": 2275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2277 + }, + "min": { + "#": 2278 + } + }, + { + "x": 354.8033547138776, + "y": 446.83765123456783 + }, + { + "x": 319.1418320801327, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 336.97259339700514, + "y": 424.7568256172839 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 336.97259339700514, + "y": 424.7568256172839 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2286 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 319.1418320801327, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.8033547138776, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 354.8033547138776, + "y": 446.83765123456783 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 319.1418320801327, + "y": 446.83765123456783 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 968.3879641074045, + "axes": { + "#": 2294 + }, + "bounds": { + "#": 2297 + }, + "collisionFilter": { + "#": 2300 + }, + "constraintImpulse": { + "#": 2301 + }, + "density": 0.001, + "force": { + "#": 2302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 797.6175154248832, + "inverseInertia": 0.001253733751655779, + "inverseMass": 1.0326439785130264, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9683879641074046, + "motion": 0, + "parent": null, + "position": { + "#": 2303 + }, + "positionImpulse": { + "#": 2304 + }, + "positionPrev": { + "#": 2305 + }, + "render": { + "#": 2306 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2308 + }, + "vertices": { + "#": 2309 + } + }, + [ + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2298 + }, + "min": { + "#": 2299 + } + }, + { + "x": 399.55502652457716, + "y": 424.3151460905349 + }, + { + "x": 354.8033547138776, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.17919061922737, + "y": 413.4955730452674 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.17919061922737, + "y": 413.4955730452674 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2307 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 354.8033547138776, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 399.55502652457716, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 399.55502652457716, + "y": 424.3151460905349 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 354.8033547138776, + "y": 424.3151460905349 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1379.2675785219164, + "axes": { + "#": 2315 + }, + "bounds": { + "#": 2318 + }, + "collisionFilter": { + "#": 2321 + }, + "constraintImpulse": { + "#": 2322 + }, + "density": 0.001, + "force": { + "#": 2323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 1297.383606626366, + "inverseInertia": 0.0007707820531202307, + "inverseMass": 0.7250224797364148, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3792675785219164, + "motion": 0, + "parent": null, + "position": { + "#": 2324 + }, + "positionImpulse": { + "#": 2325 + }, + "positionPrev": { + "#": 2326 + }, + "render": { + "#": 2327 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2329 + }, + "vertices": { + "#": 2330 + } + }, + [ + { + "#": 2316 + }, + { + "#": 2317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2319 + }, + "min": { + "#": 2320 + } + }, + { + "x": 432.9261684998858, + "y": 444.00714711934154 + }, + { + "x": 399.55502652457716, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 416.2405975122315, + "y": 423.34157355967073 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 416.2405975122315, + "y": 423.34157355967073 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2328 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 399.55502652457716, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 432.9261684998858, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 432.9261684998858, + "y": 444.00714711934154 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 399.55502652457716, + "y": 444.00714711934154 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1475.914064, + "axes": { + "#": 2336 + }, + "bounds": { + "#": 2340 + }, + "collisionFilter": { + "#": 2343 + }, + "constraintImpulse": { + "#": 2344 + }, + "density": 0.001, + "force": { + "#": 2345 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 1397.3944234227881, + "inverseInertia": 0.0007156175688397215, + "inverseMass": 0.6775462233145303, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4759140640000001, + "motion": 0, + "parent": null, + "position": { + "#": 2346 + }, + "positionImpulse": { + "#": 2347 + }, + "positionPrev": { + "#": 2348 + }, + "render": { + "#": 2349 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2351 + }, + "vertices": { + "#": 2352 + } + }, + [ + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + } + ], + { + "x": -0.5000287318776591, + "y": -0.8660088147916394 + }, + { + "x": 0.5000287318776591, + "y": -0.8660088147916394 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2341 + }, + "min": { + "#": 2342 + } + }, + { + "x": 474.20816849988586, + "y": 450.3459999999999 + }, + { + "x": 432.9261684998858, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 453.56716849988584, + "y": 426.5109999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 453.56716849988584, + "y": 426.5109999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2350 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 474.20816849988586, + "y": 438.4279999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.56716849988584, + "y": 450.3459999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 432.9261684998858, + "y": 438.4279999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 432.9261684998858, + "y": 414.59399999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 453.56716849988584, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 474.20816849988586, + "y": 414.59399999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2731.525696, + "axes": { + "#": 2360 + }, + "bounds": { + "#": 2363 + }, + "collisionFilter": { + "#": 2366 + }, + "constraintImpulse": { + "#": 2367 + }, + "density": 0.001, + "force": { + "#": 2368 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 4974.15508527219, + "inverseInertia": 0.00020103916803094191, + "inverseMass": 0.3660957689193197, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.7315256960000003, + "motion": 0, + "parent": null, + "position": { + "#": 2369 + }, + "positionImpulse": { + "#": 2370 + }, + "positionPrev": { + "#": 2371 + }, + "render": { + "#": 2372 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2374 + }, + "vertices": { + "#": 2375 + } + }, + [ + { + "#": 2361 + }, + { + "#": 2362 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2364 + }, + "min": { + "#": 2365 + } + }, + { + "x": 526.4721684998858, + "y": 454.93999999999994 + }, + { + "x": 474.20816849988586, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500.34016849988586, + "y": 428.80799999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500.34016849988586, + "y": 428.80799999999994 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2373 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 526.4721684998858, + "y": 454.93999999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 474.20816849988586, + "y": 454.93999999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 474.20816849988586, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.4721684998858, + "y": 402.67599999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1453.96239, + "axes": { + "#": 2381 + }, + "bounds": { + "#": 2385 + }, + "collisionFilter": { + "#": 2388 + }, + "constraintImpulse": { + "#": 2389 + }, + "density": 0.001, + "force": { + "#": 2390 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 1356.1358869695257, + "inverseInertia": 0.0007373892318671982, + "inverseMass": 0.6877756996176496, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.45396239, + "motion": 0, + "parent": null, + "position": { + "#": 2391 + }, + "positionImpulse": { + "#": 2392 + }, + "positionPrev": { + "#": 2393 + }, + "render": { + "#": 2394 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2396 + }, + "vertices": { + "#": 2397 + } + }, + [ + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + } + ], + { + "x": -0.5000261561969946, + "y": -0.8660103019703972 + }, + { + "x": 0.5000261561969946, + "y": -0.8660103019703972 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2386 + }, + "min": { + "#": 2387 + } + }, + { + "x": 567.4461684998857, + "y": 449.9899999999999 + }, + { + "x": 526.4721684998858, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 546.9591684998858, + "y": 426.3329999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 546.9591684998858, + "y": 426.3329999999999 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2395 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 567.4461684998857, + "y": 438.1609999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 546.9591684998858, + "y": 449.9899999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 526.4721684998858, + "y": 438.1609999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 526.4721684998858, + "y": 414.50499999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 546.9591684998858, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 567.4461684998857, + "y": 414.50499999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4826.0809, + "axes": { + "#": 2405 + }, + "bounds": { + "#": 2408 + }, + "collisionFilter": { + "#": 2411 + }, + "constraintImpulse": { + "#": 2412 + }, + "density": 0.001, + "force": { + "#": 2413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 15527.371235563205, + "inverseInertia": 0.00006440240172204064, + "inverseMass": 0.20720746724324493, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.8260809, + "motion": 0, + "parent": null, + "position": { + "#": 2414 + }, + "positionImpulse": { + "#": 2415 + }, + "positionPrev": { + "#": 2416 + }, + "render": { + "#": 2417 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2419 + }, + "vertices": { + "#": 2420 + } + }, + [ + { + "#": 2406 + }, + { + "#": 2407 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2409 + }, + "min": { + "#": 2410 + } + }, + { + "x": 636.9161684998858, + "y": 472.14599999999996 + }, + { + "x": 567.4461684998857, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 602.1811684998858, + "y": 437.41099999999994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 602.1811684998858, + "y": 437.41099999999994 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2418 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 636.9161684998858, + "y": 472.14599999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 567.4461684998857, + "y": 472.14599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.4461684998857, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 636.9161684998858, + "y": 402.67599999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1288.7426280768939, + "axes": { + "#": 2426 + }, + "bounds": { + "#": 2429 + }, + "collisionFilter": { + "#": 2432 + }, + "constraintImpulse": { + "#": 2433 + }, + "density": 0.001, + "force": { + "#": 2434 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 1283.525413611018, + "inverseInertia": 0.0007791041684064836, + "inverseMass": 0.7759501224012698, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2887426280768939, + "motion": 0, + "parent": null, + "position": { + "#": 2435 + }, + "positionImpulse": { + "#": 2436 + }, + "positionPrev": { + "#": 2437 + }, + "render": { + "#": 2438 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2440 + }, + "vertices": { + "#": 2441 + } + }, + [ + { + "#": 2427 + }, + { + "#": 2428 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2430 + }, + "min": { + "#": 2431 + } + }, + { + "x": 684.3455666480339, + "y": 429.8478106995884 + }, + { + "x": 636.9161684998858, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 660.6308675739599, + "y": 416.2619053497942 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 660.6308675739599, + "y": 416.2619053497942 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2439 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 636.9161684998858, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 684.3455666480339, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 684.3455666480339, + "y": 429.8478106995884 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 636.9161684998858, + "y": 429.8478106995884 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1779.883796, + "axes": { + "#": 2447 + }, + "bounds": { + "#": 2453 + }, + "collisionFilter": { + "#": 2456 + }, + "constraintImpulse": { + "#": 2457 + }, + "density": 0.001, + "force": { + "#": 2458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 2051.033881833643, + "inverseInertia": 0.0004875589861567722, + "inverseMass": 0.5618344311282218, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.779883796, + "motion": 0, + "parent": null, + "position": { + "#": 2459 + }, + "positionImpulse": { + "#": 2460 + }, + "positionPrev": { + "#": 2461 + }, + "render": { + "#": 2462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2464 + }, + "vertices": { + "#": 2465 + } + }, + [ + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + } + ], + { + "x": 0.30900874044209636, + "y": 0.9510591981209104 + }, + { + "x": -0.8090075783738877, + "y": 0.5877982120878029 + }, + { + "x": -0.8090075783738877, + "y": -0.5877982120878029 + }, + { + "x": 0.30900874044209636, + "y": -0.9510591981209104 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2454 + }, + "min": { + "#": 2455 + } + }, + { + "x": 731.228775125426, + "y": 454.71799999999996 + }, + { + "x": 681.732775125426, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 709.0935666480339, + "y": 428.69699999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 709.0935666480339, + "y": 428.69699999999995 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2463 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 731.228775125426, + "y": 444.77899999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700.6387751254259, + "y": 454.71799999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 681.732775125426, + "y": 428.69699999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700.6387751254259, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 731.228775125426, + "y": 412.61499999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4428.370116000001, + "axes": { + "#": 2472 + }, + "bounds": { + "#": 2475 + }, + "collisionFilter": { + "#": 2478 + }, + "constraintImpulse": { + "#": 2479 + }, + "density": 0.001, + "force": { + "#": 2480 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 13073.641256187908, + "inverseInertia": 0.0000764897843228403, + "inverseMass": 0.22581671671636758, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.428370116000001, + "motion": 0, + "parent": null, + "position": { + "#": 2481 + }, + "positionImpulse": { + "#": 2482 + }, + "positionPrev": { + "#": 2483 + }, + "render": { + "#": 2484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2486 + }, + "vertices": { + "#": 2487 + } + }, + [ + { + "#": 2473 + }, + { + "#": 2474 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2476 + }, + "min": { + "#": 2477 + } + }, + { + "x": 797.774775125426, + "y": 469.222 + }, + { + "x": 731.228775125426, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 764.501775125426, + "y": 435.94899999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 764.501775125426, + "y": 435.94899999999996 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2485 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 797.774775125426, + "y": 469.222 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 731.228775125426, + "y": 469.222 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 731.228775125426, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 797.774775125426, + "y": 402.67599999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4006.5774799999995, + "axes": { + "#": 2493 + }, + "bounds": { + "#": 2507 + }, + "circleRadius": 35.88631687242798, + "collisionFilter": { + "#": 2510 + }, + "constraintImpulse": { + "#": 2511 + }, + "density": 0.001, + "force": { + "#": 2512 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 10219.637720405184, + "inverseInertia": 0.00009785082674734506, + "inverseMass": 0.2495895823784244, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.00657748, + "motion": 0, + "parent": null, + "position": { + "#": 2513 + }, + "positionImpulse": { + "#": 2514 + }, + "positionPrev": { + "#": 2515 + }, + "render": { + "#": 2516 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2518 + }, + "vertices": { + "#": 2519 + } + }, + [ + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + } + ], + { + "x": -0.9709194534434736, + "y": -0.2394063802930625 + }, + { + "x": -0.8854942138286769, + "y": -0.4646504032882501 + }, + { + "x": -0.7484734206820648, + "y": -0.6631647898769117 + }, + { + "x": -0.5680975359623629, + "y": -0.8229612321570753 + }, + { + "x": -0.35462984236614764, + "y": -0.9350067779986203 + }, + { + "x": -0.12044873884362048, + "y": -0.9927195481660375 + }, + { + "x": 0.12044873884362048, + "y": -0.9927195481660375 + }, + { + "x": 0.35462984236614764, + "y": -0.9350067779986203 + }, + { + "x": 0.5680975359623629, + "y": -0.8229612321570753 + }, + { + "x": 0.7484734206820648, + "y": -0.6631647898769117 + }, + { + "x": 0.8854942138286769, + "y": -0.4646504032882501 + }, + { + "x": 0.9709194534434736, + "y": -0.2394063802930625 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2508 + }, + "min": { + "#": 2509 + } + }, + { + "x": 869.024775125426, + "y": 474.448 + }, + { + "x": 797.774775125426, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 833.399775125426, + "y": 438.56199999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 833.399775125426, + "y": 438.56199999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2517 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 869.024775125426, + "y": 442.888 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 866.953775125426, + "y": 451.287 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 862.933775125426, + "y": 458.948 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 857.196775125426, + "y": 465.42299999999994 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 850.076775125426, + "y": 470.33799999999997 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 841.987775125426, + "y": 473.40599999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 833.399775125426, + "y": 474.448 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 824.811775125426, + "y": 473.40599999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 816.722775125426, + "y": 470.33799999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 809.602775125426, + "y": 465.42299999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 803.865775125426, + "y": 458.948 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 799.845775125426, + "y": 451.287 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 797.774775125426, + "y": 442.888 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 797.774775125426, + "y": 434.23599999999993 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 799.845775125426, + "y": 425.83699999999993 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 803.865775125426, + "y": 418.17599999999993 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 809.602775125426, + "y": 411.70099999999996 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 816.722775125426, + "y": 406.78599999999994 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 824.811775125426, + "y": 403.71799999999996 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 833.399775125426, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 841.987775125426, + "y": 403.71799999999996 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 850.076775125426, + "y": 406.78599999999994 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 857.196775125426, + "y": 411.70099999999996 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 862.933775125426, + "y": 418.17599999999993 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 866.953775125426, + "y": 425.83699999999993 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 869.024775125426, + "y": 434.23599999999993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2513.037024864943, + "axes": { + "#": 2547 + }, + "bounds": { + "#": 2550 + }, + "collisionFilter": { + "#": 2553 + }, + "constraintImpulse": { + "#": 2554 + }, + "density": 0.001, + "force": { + "#": 2555 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 7118.367975988358, + "inverseInertia": 0.000140481638961795, + "inverseMass": 0.3979248972878713, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5130370248649427, + "motion": 0, + "parent": null, + "position": { + "#": 2556 + }, + "positionImpulse": { + "#": 2557 + }, + "positionPrev": { + "#": 2558 + }, + "render": { + "#": 2559 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2561 + }, + "vertices": { + "#": 2562 + } + }, + [ + { + "#": 2548 + }, + { + "#": 2549 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2551 + }, + "min": { + "#": 2552 + } + }, + { + "x": 956.6310851391434, + "y": 431.3615709876542 + }, + { + "x": 869.024775125426, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 912.8279301322847, + "y": 417.01878549382707 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 912.8279301322847, + "y": 417.01878549382707 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2560 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 869.024775125426, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 956.6310851391434, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 956.6310851391434, + "y": 431.3615709876542 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 869.024775125426, + "y": 431.3615709876542 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1629.3666616192165, + "axes": { + "#": 2568 + }, + "bounds": { + "#": 2571 + }, + "collisionFilter": { + "#": 2574 + }, + "constraintImpulse": { + "#": 2575 + }, + "density": 0.001, + "force": { + "#": 2576 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 1918.0622160315609, + "inverseInertia": 0.0005213595219392745, + "inverseMass": 0.6137354001132129, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6293666616192166, + "motion": 0, + "parent": null, + "position": { + "#": 2577 + }, + "positionImpulse": { + "#": 2578 + }, + "positionPrev": { + "#": 2579 + }, + "render": { + "#": 2580 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2582 + }, + "vertices": { + "#": 2583 + } + }, + [ + { + "#": 2569 + }, + { + "#": 2570 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2572 + }, + "min": { + "#": 2573 + } + }, + { + "x": 989.5741149745343, + "y": 452.1361337448559 + }, + { + "x": 956.6310851391434, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 973.1026000568388, + "y": 427.4060668724279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 973.1026000568388, + "y": 427.4060668724279 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2581 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 956.6310851391434, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 989.5741149745343, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 989.5741149745343, + "y": 452.1361337448559 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 956.6310851391434, + "y": 452.1361337448559 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1316.36654, + "axes": { + "#": 2589 + }, + "bounds": { + "#": 2597 + }, + "collisionFilter": { + "#": 2600 + }, + "constraintImpulse": { + "#": 2601 + }, + "density": 0.001, + "force": { + "#": 2602 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 1107.5429879268129, + "inverseInertia": 0.0009028994909460621, + "inverseMass": 0.759666832613354, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.31636654, + "motion": 0, + "parent": null, + "position": { + "#": 2603 + }, + "positionImpulse": { + "#": 2604 + }, + "positionPrev": { + "#": 2605 + }, + "render": { + "#": 2606 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2608 + }, + "vertices": { + "#": 2609 + } + }, + [ + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + } + ], + { + "x": 0.6235089422456015, + "y": 0.7818162181355482 + }, + { + "x": -0.22250665600611816, + "y": 0.9749311709207862 + }, + { + "x": -0.9009697215706803, + "y": 0.43388196645268706 + }, + { + "x": -0.9009697215706803, + "y": -0.43388196645268706 + }, + { + "x": -0.22250665600611816, + "y": -0.9749311709207862 + }, + { + "x": 0.6235089422456015, + "y": -0.7818162181355482 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2598 + }, + "min": { + "#": 2599 + } + }, + { + "x": 1030.182141764567, + "y": 445.4419999999999 + }, + { + "x": 988.488141764567, + "y": 402.67599999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1010.4211149745342, + "y": 424.0589999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1010.4211149745342, + "y": 424.0589999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2607 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1030.182141764567, + "y": 433.57499999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1015.302141764567, + "y": 445.4419999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 996.7461417645669, + "y": 441.20699999999994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 988.488141764567, + "y": 424.0589999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 996.7461417645669, + "y": 406.9109999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1015.302141764567, + "y": 402.67599999999993 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1030.182141764567, + "y": 414.5429999999999 + }, + [], + [], + [ + { + "#": 2620 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2621 + }, + "pointB": "", + "render": { + "#": 2622 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": -1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/gravity/gravity-10.json b/tests/browser/refs/gravity/gravity-10.json new file mode 100644 index 00000000..fb87a1fa --- /dev/null +++ b/tests/browser/refs/gravity/gravity-10.json @@ -0,0 +1,23955 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 2723 + }, + "gravity": { + "#": 2727 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 2721 + }, + "constraints": { + "#": 2722 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 209 + }, + { + "#": 235 + }, + { + "#": 290 + }, + { + "#": 312 + }, + { + "#": 334 + }, + { + "#": 356 + }, + { + "#": 378 + }, + { + "#": 400 + }, + { + "#": 430 + }, + { + "#": 452 + }, + { + "#": 478 + }, + { + "#": 500 + }, + { + "#": 522 + }, + { + "#": 577 + }, + { + "#": 599 + }, + { + "#": 621 + }, + { + "#": 676 + }, + { + "#": 698 + }, + { + "#": 720 + }, + { + "#": 742 + }, + { + "#": 767 + }, + { + "#": 792 + }, + { + "#": 814 + }, + { + "#": 839 + }, + { + "#": 861 + }, + { + "#": 886 + }, + { + "#": 908 + }, + { + "#": 930 + }, + { + "#": 952 + }, + { + "#": 980 + }, + { + "#": 1002 + }, + { + "#": 1024 + }, + { + "#": 1046 + }, + { + "#": 1068 + }, + { + "#": 1090 + }, + { + "#": 1145 + }, + { + "#": 1167 + }, + { + "#": 1197 + }, + { + "#": 1219 + }, + { + "#": 1249 + }, + { + "#": 1271 + }, + { + "#": 1293 + }, + { + "#": 1315 + }, + { + "#": 1337 + }, + { + "#": 1367 + }, + { + "#": 1389 + }, + { + "#": 1411 + }, + { + "#": 1433 + }, + { + "#": 1455 + }, + { + "#": 1510 + }, + { + "#": 1532 + }, + { + "#": 1587 + }, + { + "#": 1609 + }, + { + "#": 1639 + }, + { + "#": 1661 + }, + { + "#": 1683 + }, + { + "#": 1705 + }, + { + "#": 1727 + }, + { + "#": 1753 + }, + { + "#": 1775 + }, + { + "#": 1797 + }, + { + "#": 1819 + }, + { + "#": 1845 + }, + { + "#": 1867 + }, + { + "#": 1889 + }, + { + "#": 1911 + }, + { + "#": 1966 + }, + { + "#": 2021 + }, + { + "#": 2047 + }, + { + "#": 2069 + }, + { + "#": 2091 + }, + { + "#": 2121 + }, + { + "#": 2146 + }, + { + "#": 2168 + }, + { + "#": 2198 + }, + { + "#": 2220 + }, + { + "#": 2242 + }, + { + "#": 2264 + }, + { + "#": 2290 + }, + { + "#": 2312 + }, + { + "#": 2340 + }, + { + "#": 2362 + }, + { + "#": 2384 + }, + { + "#": 2406 + }, + { + "#": 2428 + }, + { + "#": 2453 + }, + { + "#": 2475 + }, + { + "#": 2500 + }, + { + "#": 2522 + }, + { + "#": 2544 + }, + { + "#": 2570 + }, + { + "#": 2592 + }, + { + "#": 2647 + }, + { + "#": 2669 + }, + { + "#": 2691 + } + ], + { + "angle": -0.0001959765554855968, + "anglePrev": -0.0002020405291276624, + "angularSpeed": 0.000001929317564678257, + "angularVelocity": 0.000007312766279799095, + "area": 1534.906434764454, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2777419130647224, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 0.00019597655423112437, + "y": 0.9999999807965947 + }, + { + "x": -0.9999999807965947, + "y": 0.00019597655423112437 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 56.48848334443743, + "y": 62.33419304928775 + }, + { + "x": 20.07697859109038, + "y": 19.885223140299427 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.28269161867241, + "y": 41.24857904575118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.284346340086074, + "y": 41.24871608407425 + }, + { + "endCol": 1, + "endRow": 1, + "id": "0,1,0,1", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00030070877897969694, + "y": 0.000058616345846473905 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20.07697859109038, + "y": 20.17009920877615 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 56.48014147227261, + "y": 20.162965042214584 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.48840464625444, + "y": 62.32705888272618 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.0852417650722, + "y": 62.33419304928775 + }, + { + "angle": -0.000019721487986384265, + "anglePrev": -0.0000130047705658681, + "angularSpeed": 0.000009692057732935638, + "angularVelocity": 0.000013844521672796759, + "area": 2220.52878634164, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.27787063926899624, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": 0.000019721487985105872, + "y": 0.9999999998055316 + }, + { + "x": -0.9999999998055316, + "y": 0.000019721487985105872 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 101.50444655647534, + "y": 69.16498041170654 + }, + { + "x": 56.18728845598434, + "y": 19.88505889674872 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 78.84604156231346, + "y": 44.66395486483466 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 78.85121751707729, + "y": 44.6645917059216 + }, + { + "endCol": 2, + "endRow": 1, + "id": "1,2,0,1", + "startCol": 1, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0025673831444237294, + "y": -0.00009797985841686341 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.18763656815159, + "y": 20.16382301382831 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 101.50348018073826, + "y": 20.16292931796278 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 101.50444655647534, + "y": 69.16408671584102 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 56.188602943888654, + "y": 69.16498041170654 + }, + { + "angle": -0.0001950947603882722, + "anglePrev": -0.00020936881237330286, + "angularSpeed": 0.0000644511499394486, + "angularVelocity": 0.00006486204302744614, + "area": 1140.197701571206, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2805518537840089, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0.0001950947591506572, + "y": 0.9999999809690174 + }, + { + "x": -0.9999999809690174, + "y": 0.0001950947591506572 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 140.41792998617666, + "y": 49.24101582559091 + }, + { + "x": 101.18746589409673, + "y": 19.881596206480072 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120.80469072904097, + "y": 34.701567787227056 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120.81805033706519, + "y": 34.705526552882446 + }, + { + "endCol": 2, + "endRow": 1, + "id": "2,2,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.006833788367458737, + "y": 0.00022804522220098988 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 101.19145147190515, + "y": 20.16977152287819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.41225833866332, + "y": 20.162119748863198 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140.41792998617666, + "y": 49.23336405157593 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 101.19712311941856, + "y": 49.24101582559091 + }, + { + "angle": 0.0021773458007706657, + "anglePrev": 0.001722468321823362, + "angularSpeed": 0.000044714404986596036, + "angularVelocity": 0.0007180041448168575, + "area": 752.4076041785743, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.28466601706350075, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.0021773440803649715, + "y": 0.9999976295835685 + }, + { + "x": -0.9999976295835685, + "y": -0.0021773440803649715 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 165.0262484905527, + "y": 50.46038740998971 + }, + { + "x": 140.07625539892913, + "y": 19.87698249588703 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 152.5546939788966, + "y": 35.31097633608778 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 152.57416186829826, + "y": 35.31344184601115 + }, + { + "endCol": 3, + "endRow": 1, + "id": "2,3,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.02935710972874972, + "y": -0.008810198776892264 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140.14899264533366, + "y": 20.16156526218584 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 165.0262484905527, + "y": 20.21573173633326 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 164.96039531245955, + "y": 50.46038740998971 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.08313946724053, + "y": 50.406220935842285 + }, + { + "angle": 0.005498123141157145, + "anglePrev": 0.006443906758052634, + "angularSpeed": 0.000949460535088276, + "angularVelocity": -0.0009967972542360417, + "area": 2027.2541820000001, + "axes": { + "#": 185 + }, + "bounds": { + "#": 189 + }, + "collisionFilter": { + "#": 192 + }, + "constraintImpulse": { + "#": 193 + }, + "density": 0.001, + "force": { + "#": 194 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 195 + }, + "positionImpulse": { + "#": 196 + }, + "positionPrev": { + "#": 197 + }, + "region": { + "#": 198 + }, + "render": { + "#": 199 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.27201931853925276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 201 + }, + "vertices": { + "#": 202 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": -0.49523956155334037, + "y": -0.8687564541759997 + }, + { + "x": 0.5047624877156854, + "y": -0.8632582643653479 + }, + { + "x": 0.999984885359038, + "y": 0.0054980954404101525 + }, + { + "max": { + "#": 190 + }, + "min": { + "#": 191 + } + }, + { + "x": 213.08021593187695, + "y": 75.95257897171139 + }, + { + "x": 164.52438840251978, + "y": 19.81421395950037 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 188.81278967114028, + "y": 48.01900118409205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 188.84685281509567, + "y": 48.049963210654454 + }, + { + "endCol": 4, + "endRow": 1, + "id": "3,4,0,1", + "startCol": 3, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 200 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.047251471519928145, + "y": -0.03296089487025 + }, + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 212.92663213384458, + "y": 62.11879450470069 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 188.6592058731079, + "y": 75.95257897171139 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 164.5453634104036, + "y": 61.852785651102764 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 164.69894720843598, + "y": 33.91920786348339 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 188.96637346917265, + "y": 20.08542339647267 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 213.08021593187695, + "y": 34.18521671708133 + }, + { + "angle": -0.027916300632346132, + "anglePrev": -0.025667985463242927, + "angularSpeed": 0.0020079591357333275, + "angularVelocity": -0.002301652371836972, + "area": 4842.27229, + "axes": { + "#": 210 + }, + "bounds": { + "#": 216 + }, + "collisionFilter": { + "#": 219 + }, + "constraintImpulse": { + "#": 220 + }, + "density": 0.001, + "force": { + "#": 221 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 222 + }, + "positionImpulse": { + "#": 223 + }, + "positionPrev": { + "#": 224 + }, + "region": { + "#": 225 + }, + "render": { + "#": 226 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.31341056829430325, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 228 + }, + "vertices": { + "#": 229 + } + }, + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "x": 0.3354461065465415, + "y": 0.9420593981287838 + }, + { + "x": -0.7922970249305229, + "y": 0.610135578610396 + }, + { + "x": -0.8251102007552589, + "y": -0.5649718193057209 + }, + { + "x": 0.2823530986530857, + "y": -0.9593105480922233 + }, + { + "x": 0.9996103653846538, + "y": -0.027912674819137423 + }, + { + "max": { + "#": 217 + }, + "min": { + "#": 218 + } + }, + { + "x": 293.19174949091536, + "y": 106.47282870866097 + }, + { + "x": 210.83528306875843, + "y": 20.35301963322434 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.95594917328992, + "y": 63.180298804911345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.95821839133043, + "y": 63.367139084230146 + }, + { + "endCol": 6, + "endRow": 2, + "id": "4,6,0,2", + "startCol": 4, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 227 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0009134944487811936, + "y": -0.19179595322569298 + }, + [ + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 293.19174949091536, + "y": 88.67688237054539 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.21400889641757, + "y": 106.47282870866097 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 210.84514686939062, + "y": 64.43995276523678 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240.81798488994278, + "y": 20.666274944042282 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.7109262664105, + "y": 35.645553266158714 + }, + { + "angle": 0.025061596962569665, + "anglePrev": 0.021040919423128624, + "angularSpeed": 0.004086243029936438, + "angularVelocity": 0.003970828239551864, + "area": 3079.0178339999993, + "axes": { + "#": 236 + }, + "bounds": { + "#": 250 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "density": 0.001, + "force": { + "#": 255 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 256 + }, + "positionImpulse": { + "#": 257 + }, + "positionPrev": { + "#": 258 + }, + "region": { + "#": 259 + }, + "render": { + "#": 260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2726973685631275, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 262 + }, + "vertices": { + "#": 263 + } + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "x": -0.9646420372969208, + "y": -0.2635635404976301 + }, + { + "x": -0.8734929194067671, + "y": -0.4868368512615318 + }, + { + "x": -0.7316842990660694, + "y": -0.6816436653414997 + }, + { + "x": -0.5472767389107416, + "y": -0.8369517136891613 + }, + { + "x": -0.33103255297519785, + "y": -0.9436193347270511 + }, + { + "x": -0.09559831459361803, + "y": -0.9954199928908701 + }, + { + "x": 0.14535099264108953, + "y": -0.989380153903569 + }, + { + "x": 0.37789422075283796, + "y": -0.9258487770265753 + }, + { + "x": 0.588522541254996, + "y": -0.8084808089464843 + }, + { + "x": 0.7649172268846812, + "y": -0.6441285865532203 + }, + { + "x": 0.8967874974817478, + "y": -0.4424615060775618 + }, + { + "x": 0.9766356547536856, + "y": -0.21490183308627164 + }, + { + "x": 0.9996859746155431, + "y": 0.025058973581772406 + }, + { + "max": { + "#": 251 + }, + "min": { + "#": 252 + } + }, + { + "x": 354.44985958752216, + "y": 83.13593342388394 + }, + { + "x": 291.8043102943096, + "y": 19.965413180885445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.1346429724566, + "y": 51.68681234845356 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.14789875219935, + "y": 51.6940944990956 + }, + { + "endCol": 7, + "endRow": 1, + "id": "6,7,0,1", + "startCol": 6, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 261 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.010271655866347373, + "y": -0.010826508809792301 + }, + [ + { + "#": 264 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 354.259812331878, + "y": 56.260213309154445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.2608480064946, + "y": 63.576418789172386 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 348.5686839383731, + "y": 70.20097722684 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 343.3990033790079, + "y": 75.75017292658973 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.05200915324195, + "y": 79.90042705110963 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 329.8958523272819, + "y": 82.41088945518248 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.34631272254774, + "y": 83.13593342388394 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 314.8425809215209, + "y": 82.03355143098815 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 307.82119125548354, + "y": 79.16770266357861 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.6901051460982, + "y": 74.70466243081103 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 296.8049441727803, + "y": 68.90342357477586 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 293.44932211986213, + "y": 62.10219937335672 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 291.8194263573911, + "y": 54.695029819236936 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 292.00947361303525, + "y": 47.11341138775267 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 294.00843793841864, + "y": 39.79720590773473 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.7006020065401, + "y": 33.17264747006711 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 302.8702825659053, + "y": 27.623451770317395 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 309.2172767916713, + "y": 23.47319764579748 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 316.37343361763135, + "y": 20.962735241724626 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 323.9229732223655, + "y": 20.237691273023188 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 331.42670502339234, + "y": 21.340073265918964 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 338.4480946894297, + "y": 24.205922033328502 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 344.57918079881506, + "y": 28.668962266096102 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 349.4643417721329, + "y": 34.47020112213128 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 352.8199638250511, + "y": 41.271425323550396 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 354.44985958752216, + "y": 48.67859487767018 + }, + { + "angle": -0.012993252182921963, + "anglePrev": -0.010374306816716373, + "angularSpeed": 0.002838566077301364, + "angularVelocity": -0.0026683495428695882, + "area": 1329.4167625219097, + "axes": { + "#": 291 + }, + "bounds": { + "#": 294 + }, + "collisionFilter": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "density": 0.001, + "force": { + "#": 299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 300 + }, + "positionImpulse": { + "#": 301 + }, + "positionPrev": { + "#": 302 + }, + "region": { + "#": 303 + }, + "render": { + "#": 304 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.21568853174038502, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 306 + }, + "vertices": { + "#": 307 + } + }, + [ + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "x": 0.012992886589236, + "y": 0.9999155888864217 + }, + { + "x": -0.9999155888864217, + "y": 0.012992886589236 + }, + { + "max": { + "#": 295 + }, + "min": { + "#": 296 + } + }, + { + "x": 402.5554691949446, + "y": 48.03068424573196 + }, + { + "x": 353.38960432332584, + "y": 19.932316929817016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.9916451384049, + "y": 34.08763849581288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.0272659652558, + "y": 34.028864311710755 + }, + { + "endCol": 8, + "endRow": 0, + "id": "7,8,0,0", + "startCol": 7, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 305 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03593233585621647, + "y": 0.05648724886464862 + }, + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.42782108186526, + "y": 20.778355209739512 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 402.20135288313514, + "y": 20.1445927458938 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 402.5554691949446, + "y": 47.39692178188625 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.7819373936747, + "y": 48.03068424573196 + }, + { + "angle": -0.0005141341631346567, + "anglePrev": -0.0005431988187778571, + "angularSpeed": 0.000012742758786161588, + "angularVelocity": 0.000014805103820662792, + "area": 2858.632357296012, + "axes": { + "#": 313 + }, + "bounds": { + "#": 316 + }, + "collisionFilter": { + "#": 319 + }, + "constraintImpulse": { + "#": 320 + }, + "density": 0.001, + "force": { + "#": 321 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 322 + }, + "positionImpulse": { + "#": 323 + }, + "positionPrev": { + "#": 324 + }, + "region": { + "#": 325 + }, + "render": { + "#": 326 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2786142453819283, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 328 + }, + "vertices": { + "#": 329 + } + }, + [ + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "x": 0.000514134140484139, + "y": 0.9999998678330341 + }, + { + "x": -0.9999998678330341, + "y": 0.000514134140484139 + }, + { + "max": { + "#": 317 + }, + "min": { + "#": 318 + } + }, + { + "x": 510.8416193433973, + "y": 46.476775660609746 + }, + { + "x": 401.9730569427667, + "y": 19.881182631487576 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 456.40757802619834, + "y": 33.31828606220333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 456.4093962844365, + "y": 33.31970970037092 + }, + { + "endCol": 10, + "endRow": 0, + "id": "8,10,0,0", + "startCol": 8, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 327 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0016733899090581872, + "y": -0.0003600911074954638 + }, + [ + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 401.97353670899935, + "y": 20.2157623276078 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.8281176580945, + "y": 20.159796463796926 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.8416193433973, + "y": 46.42080979679888 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 401.98703839430215, + "y": 46.476775660609746 + }, + { + "angle": -0.001759135927921671, + "anglePrev": -0.0017492410369790287, + "angularSpeed": 6.116867531717534e-7, + "angularVelocity": -6.60149102617389e-7, + "area": 926.8394636035856, + "axes": { + "#": 335 + }, + "bounds": { + "#": 338 + }, + "collisionFilter": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "density": 0.001, + "force": { + "#": 343 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 344 + }, + "positionImpulse": { + "#": 345 + }, + "positionPrev": { + "#": 346 + }, + "region": { + "#": 347 + }, + "render": { + "#": 348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2777506204459238, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 350 + }, + "vertices": { + "#": 351 + } + }, + [ + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "x": 0.0017591350206300953, + "y": 0.9999984527207924 + }, + { + "x": -0.9999984527207924, + "y": 0.0017591350206300953 + }, + { + "max": { + "#": 339 + }, + "min": { + "#": 340 + } + }, + { + "x": 549.0209754135537, + "y": 44.14607419079999 + }, + { + "x": 510.223054319813, + "y": 19.885317683879347 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 529.6219525946913, + "y": 32.15457123360119 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 529.6231821663598, + "y": 32.15441713261812 + }, + { + "endCol": 11, + "endRow": 0, + "id": "10,11,0,0", + "startCol": 10, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 349 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0015224181488520117, + "y": 0.00030550913151472514 + }, + [ + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510.223054319813, + "y": 20.231244938631306 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 548.9787813908265, + "y": 20.16306827640237 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.0208508695695, + "y": 44.07789752857107 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510.2651237985561, + "y": 44.14607419079999 + }, + { + "angle": -0.000057946847383434116, + "anglePrev": -0.00006494950410863072, + "angularSpeed": 0.000004016230630165926, + "angularVelocity": 0.000007786712053553832, + "area": 1290.4501361223834, + "axes": { + "#": 357 + }, + "bounds": { + "#": 360 + }, + "collisionFilter": { + "#": 363 + }, + "constraintImpulse": { + "#": 364 + }, + "density": 0.001, + "force": { + "#": 365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 366 + }, + "positionImpulse": { + "#": 367 + }, + "positionPrev": { + "#": 368 + }, + "region": { + "#": 369 + }, + "render": { + "#": 370 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2777772409612517, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 372 + }, + "vertices": { + "#": 373 + } + }, + [ + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "x": 0.00005794684735100476, + "y": 0.9999999983210813 + }, + { + "x": -0.9999999983210813, + "y": 0.00005794684735100476 + }, + { + "max": { + "#": 361 + }, + "min": { + "#": 362 + } + }, + { + "x": 584.1789313987341, + "y": 56.24123911681662 + }, + { + "x": 548.4063538274007, + "y": 19.885386123724384 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.2925585077156, + "y": 38.20220121528571 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.2930939269652, + "y": 38.202116590390254 + }, + { + "endCol": 12, + "endRow": 1, + "id": "11,12,0,1", + "startCol": 11, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 371 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0003250882440397618, + "y": -0.000024120915917080765 + }, + [ + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 548.4063538274007, + "y": 20.165236090965546 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 584.1766726973865, + "y": 20.16316331375482 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 584.1787631880305, + "y": 56.23916633960587 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 548.4084443180448, + "y": 56.24123911681662 + }, + { + "angle": -0.00001488183935489576, + "anglePrev": -0.000017362267055458884, + "angularSpeed": 0.0000027787287163369257, + "angularVelocity": 0.000002583238547237782, + "area": 1148.2925932011974, + "axes": { + "#": 379 + }, + "bounds": { + "#": 382 + }, + "collisionFilter": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "density": 0.001, + "force": { + "#": 387 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 388 + }, + "positionImpulse": { + "#": 389 + }, + "positionPrev": { + "#": 390 + }, + "region": { + "#": 391 + }, + "render": { + "#": 392 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2778093977976706, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 394 + }, + "vertices": { + "#": 395 + } + }, + [ + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "x": 0.000014881839354346447, + "y": 0.9999999998892655 + }, + { + "x": -0.9999999998892655, + "y": 0.000014881839354346447 + }, + { + "max": { + "#": 383 + }, + "min": { + "#": 384 + } + }, + { + "x": 614.1610166967745, + "y": 57.76122639397363 + }, + { + "x": 583.6053879372961, + "y": 19.901686611198055 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.8831238505784, + "y": 38.970361179322055 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.8833307348151, + "y": 38.97028605453953 + }, + { + "endCol": 12, + "endRow": 1, + "id": "12,12,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 393 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000044741031047124125, + "y": 0.000015962087005050307 + }, + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 583.6053879372961, + "y": 20.179950677970556 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 614.1603004853528, + "y": 20.179495964670476 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 614.1608597638607, + "y": 57.76077168067355 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 583.605947215804, + "y": 57.76122639397363 + }, + { + "angle": 0.0005641946119140708, + "anglePrev": 0.0005660848329308176, + "angularSpeed": 5.268164422033837e-7, + "angularVelocity": -0.0000018582773906886335, + "area": 1926.7878890000002, + "axes": { + "#": 401 + }, + "bounds": { + "#": 409 + }, + "collisionFilter": { + "#": 412 + }, + "constraintImpulse": { + "#": 413 + }, + "density": 0.001, + "force": { + "#": 414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 415 + }, + "positionImpulse": { + "#": 416 + }, + "positionPrev": { + "#": 417 + }, + "region": { + "#": 418 + }, + "render": { + "#": 419 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.27778862522785197, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 421 + }, + "vertices": { + "#": 422 + } + }, + [ + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 0.623050896892187, + "y": 0.782181296044492 + }, + { + "x": -0.2230682236941031, + "y": 0.9748028352328265 + }, + { + "x": -0.9012261867528831, + "y": 0.43334900520349273 + }, + { + "x": -0.9007366267604469, + "y": -0.43436566302161916 + }, + { + "x": -0.2219681249007334, + "y": -0.9750539223694514 + }, + { + "x": 0.6239331049968773, + "y": -0.7814777543148337 + }, + { + "x": 0.9999998408422242, + "y": 0.0005641945819820839 + }, + { + "max": { + "#": 410 + }, + "min": { + "#": 411 + } + }, + { + "x": 664.1128430375538, + "y": 71.93873596440818 + }, + { + "x": 613.6632674895275, + "y": 19.920955587943663 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640.1984543983546, + "y": 46.06540862064896 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640.1985004026045, + "y": 46.0653938021581 + }, + { + "endCol": 13, + "endRow": 1, + "id": "12,13,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 420 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00006351225954404072, + "y": 0.000017002602199056582 + }, + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 664.0997638889095, + "y": 57.591895444495805 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 646.088666612613, + "y": 71.93873596440818 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 623.6415611187435, + "y": 66.80207061156715 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 613.6632674895275, + "y": 46.050437609580364 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 623.6649706803393, + "y": 25.31007721534159 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 646.117858040285, + "y": 20.198744199231527 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 664.1127550333543, + "y": 34.56589910926275 + }, + { + "angle": -0.00021377428807937068, + "anglePrev": -0.00021462227795512054, + "angularSpeed": 4.788818264813802e-7, + "angularVelocity": 6.538453166765287e-7, + "area": 1097.755875, + "axes": { + "#": 431 + }, + "bounds": { + "#": 435 + }, + "collisionFilter": { + "#": 438 + }, + "constraintImpulse": { + "#": 439 + }, + "density": 0.001, + "force": { + "#": 440 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 927.6617490689248, + "inverseInertia": 0.0010779791243992539, + "inverseMass": 0.9109493492804126, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.097755875, + "motion": 0, + "parent": null, + "position": { + "#": 441 + }, + "positionImpulse": { + "#": 442 + }, + "positionPrev": { + "#": 443 + }, + "region": { + "#": 444 + }, + "render": { + "#": 445 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.27778193589081124, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 447 + }, + "vertices": { + "#": 448 + } + }, + [ + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + } + ], + { + "x": -0.49980951406036345, + "y": 0.866135352964387 + }, + { + "x": -0.5001797833039664, + "y": -0.8659215809609999 + }, + { + "x": 0.999999977150277, + "y": -0.00021377428645114288 + }, + { + "max": { + "#": 436 + }, + "min": { + "#": 437 + } + }, + { + "x": 707.2880787224813, + "y": 70.54899815679669 + }, + { + "x": 663.6776440052556, + "y": 19.921217376627602 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 692.747643341014, + "y": 45.377105941291994 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 692.7476670180895, + "y": 45.37711421643134 + }, + { + "endCol": 14, + "endRow": 1, + "id": "13,14,0,1", + "startCol": 13, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 446 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00004725760061319306, + "y": -0.000010206233106657692 + }, + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 707.288024776555, + "y": 70.54899815679669 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 663.6776440052556, + "y": 45.38332035979912 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 707.2772612412319, + "y": 20.1989993072802 + }, + { + "angle": -0.0011979043430086643, + "anglePrev": -0.001197701128134641, + "angularSpeed": 2.462355100683834e-8, + "angularVelocity": -3.0392266993860793e-7, + "area": 986.5801250000001, + "axes": { + "#": 453 + }, + "bounds": { + "#": 459 + }, + "collisionFilter": { + "#": 462 + }, + "constraintImpulse": { + "#": 463 + }, + "density": 0.001, + "force": { + "#": 464 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 465 + }, + "positionImpulse": { + "#": 466 + }, + "positionPrev": { + "#": 467 + }, + "region": { + "#": 468 + }, + "render": { + "#": 469 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2777824221222826, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 471 + }, + "vertices": { + "#": 472 + } + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "x": 0.3101543072346706, + "y": 0.9506862288388221 + }, + { + "x": -0.8083184378041789, + "y": 0.5887455334062516 + }, + { + "x": -0.8097266382855005, + "y": -0.5868072692552997 + }, + { + "x": 0.30787575696205255, + "y": -0.951426570090957 + }, + { + "x": 0.9999992825126781, + "y": -0.001197904056514924 + }, + { + "max": { + "#": 460 + }, + "min": { + "#": 461 + } + }, + { + "x": 743.8054660646656, + "y": 58.93804742613401 + }, + { + "x": 706.9411185246794, + "y": 19.91429280555857 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 727.3111466296062, + "y": 39.55752046880546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 727.3111521534148, + "y": 39.55752108021158 + }, + { + "endCol": 15, + "endRow": 1, + "id": "14,15,0,1", + "startCol": 14, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 470 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000018960405213874765, + "y": -0.0000043999114680559614 + }, + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 743.8054345905401, + "y": 51.51077047065305 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 721.0393154213318, + "y": 58.93804742613401 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 706.9411185246794, + "y": 39.581921825611325 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 720.9929014307584, + "y": 20.192075225897767 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 743.7767495800028, + "y": 27.564787651604465 + }, + { + "angle": -0.00019845310884952517, + "anglePrev": -0.0001982121109056332, + "angularSpeed": 8.90632239271345e-8, + "angularVelocity": -3.33614880980291e-7, + "area": 1201.454244, + "axes": { + "#": 479 + }, + "bounds": { + "#": 482 + }, + "collisionFilter": { + "#": 485 + }, + "constraintImpulse": { + "#": 486 + }, + "density": 0.001, + "force": { + "#": 487 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 488 + }, + "positionImpulse": { + "#": 489 + }, + "positionPrev": { + "#": 490 + }, + "region": { + "#": 491 + }, + "render": { + "#": 492 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2777782095857254, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 494 + }, + "vertices": { + "#": 495 + } + }, + [ + { + "#": 480 + }, + { + "#": 481 + } + ], + { + "x": -0.000198453107546891, + "y": -0.9999999803081819 + }, + { + "x": 0.9999999803081819, + "y": -0.000198453107546891 + }, + { + "max": { + "#": 483 + }, + "min": { + "#": 484 + } + }, + { + "x": 778.2673711794521, + "y": 54.86095465053623 + }, + { + "x": 743.5984685694203, + "y": 19.91429834297593 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 760.9329076189483, + "y": 37.52651560100824 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 760.9329087797684, + "y": 37.52652177964106 + }, + { + "endCol": 16, + "endRow": 1, + "id": "15,16,0,1", + "startCol": 15, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 493 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000009872708119473828, + "y": -0.00000306768281177483 + }, + [ + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.2673466684763, + "y": 54.85407586892246 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 743.6053473510341, + "y": 54.86095465053623 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 743.5984685694203, + "y": 20.198955333094034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 778.2604678868626, + "y": 20.192076551480238 + }, + { + "angle": -0.0954203908538847, + "anglePrev": -0.07512659335884726, + "angularSpeed": 0.017897963134984585, + "angularVelocity": -0.02027714095152154, + "area": 1990.733346252218, + "axes": { + "#": 501 + }, + "bounds": { + "#": 504 + }, + "collisionFilter": { + "#": 507 + }, + "constraintImpulse": { + "#": 508 + }, + "density": 0.001, + "force": { + "#": 509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 510 + }, + "positionImpulse": { + "#": 511 + }, + "positionPrev": { + "#": 512 + }, + "region": { + "#": 513 + }, + "render": { + "#": 514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1429899294032546, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 516 + }, + "vertices": { + "#": 517 + } + }, + [ + { + "#": 502 + }, + { + "#": 503 + } + ], + { + "x": 0.09527565550668946, + "y": 0.9954509277045107 + }, + { + "x": -0.9954509277045107, + "y": 0.09527565550668946 + }, + { + "max": { + "#": 505 + }, + "min": { + "#": 506 + } + }, + { + "x": 868.0086187545954, + "y": 19.641338814566726 + }, + { + "x": 771.5040584951882, + "y": -11.429084885214923 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.7003545929176, + "y": 4.674873202327833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.600963344792, + "y": 5.651049504825576 + }, + { + "endCol": 18, + "endRow": 0, + "id": "16,18,-1,0", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 515 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1052654901840242, + "y": -0.9767385323848723 + }, + [ + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 771.5040584951882, + "y": -1.2571992680959978 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 865.8964296254572, + "y": -10.291592409911061 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 867.896650690647, + "y": 10.606945672751666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 773.504279560378, + "y": 19.641338814566726 + }, + { + "angle": -0.00029402354363371354, + "anglePrev": -0.0002585503609881394, + "angularSpeed": 0.00003547318264557414, + "angularVelocity": -0.00003547318264557414, + "area": 7321.24308, + "axes": { + "#": 523 + }, + "bounds": { + "#": 537 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "region": { + "#": 546 + }, + "render": { + "#": 547 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.908974514182302, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 549 + }, + "vertices": { + "#": 550 + } + }, + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": -0.9710073002046187, + "y": -0.2390498336107714 + }, + { + "x": -0.8855828942701608, + "y": -0.4644813638630561 + }, + { + "x": -0.7487212712409831, + "y": -0.6628849507956008 + }, + { + "x": -0.5683085773704935, + "y": -0.822815508414326 + }, + { + "x": -0.3548724273627757, + "y": -0.9349147342392521 + }, + { + "x": -0.12077902220269135, + "y": -0.9926794184406977 + }, + { + "x": 0.12019525911307521, + "y": -0.9927502705548563 + }, + { + "x": 0.35432259215081796, + "y": -0.9351232542780257 + }, + { + "x": 0.5678246248749248, + "y": -0.8231495583341163 + }, + { + "x": 0.7483313342452693, + "y": -0.6633251195203564 + }, + { + "x": 0.8853096042557907, + "y": -0.4650020479658714 + }, + { + "x": 0.9708665597674988, + "y": -0.23962079026082314 + }, + { + "x": 0.9999999567750781, + "y": -0.00029402353939733195 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 962.8867287895174, + "y": 99.27012424559821 + }, + { + "x": 866.569294641413, + "y": 2.2501284392801466 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.7280117154653, + "y": 50.76012634243918 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.7265026993475, + "y": 53.66910046522413 + }, + { + "endCol": 20, + "endRow": 2, + "id": "18,20,0,2", + "startCol": 18, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 548 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0015090161178272865, + "y": -2.908974122784958 + }, + [ + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 962.8867287895174, + "y": 56.592966798116315 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 960.091067547794, + "y": 67.9487892791841 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 954.659112396472, + "y": 78.30538684952664 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 946.9066866137451, + "y": 87.06166662368375 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 937.284640228114, + "y": 93.70749601908375 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 926.3508600163965, + "y": 97.85771098723329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 914.7422747973615, + "y": 99.27012424559821 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 903.1328610199926, + "y": 97.864537625771 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 892.196642177039, + "y": 93.72075295242809 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 882.5706893946635, + "y": 87.08058292211443 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 874.813115847809, + "y": 78.32886345305337 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 869.3750714689859, + "y": 67.97546191858407 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 866.5727329526825, + "y": 56.62128538128984 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 866.569294641413, + "y": 44.92728588676204 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 869.3649558831366, + "y": 33.571463405694274 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 874.7969110344586, + "y": 23.21486583535172 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 882.5493368171855, + "y": 14.458586061194644 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 892.1713832028166, + "y": 7.812756665794645 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 903.1051634145341, + "y": 3.6625416976451106 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 914.7137486335691, + "y": 2.2501284392801466 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 926.323162410938, + "y": 3.655715059107365 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 937.2593812538913, + "y": 7.7994997324503075 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 946.8853340362668, + "y": 14.439669762763984 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 954.6429075831217, + "y": 23.191389231824985 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 960.0809519619445, + "y": 33.54479076629429 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 962.8832904782479, + "y": 44.89896730358855 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 578 + }, + "bounds": { + "#": 581 + }, + "collisionFilter": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "density": 0.001, + "force": { + "#": 586 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 587 + }, + "positionImpulse": { + "#": 588 + }, + "positionPrev": { + "#": 589 + }, + "region": { + "#": 590 + }, + "render": { + "#": 591 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356547, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 593 + }, + "vertices": { + "#": 594 + } + }, + [ + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 582 + }, + "min": { + "#": 583 + } + }, + { + "x": 1047.1051858180972, + "y": 26.4207095676793 + }, + { + "x": 962.8725040622674, + "y": 2.2642452329742233 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1004.9888449401823, + "y": 14.34247740032676 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1004.9888449401823, + "y": 17.249748115362415 + }, + { + "endCol": 21, + "endRow": 0, + "id": "20,21,0,0", + "startCol": 20, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 592 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -2.9072707150356547 + }, + [ + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 962.8725040622674, + "y": 2.2642452329742233 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1047.1051858180972, + "y": 2.2642452329742233 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1047.1051858180972, + "y": 26.4207095676793 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 962.8725040622674, + "y": 26.4207095676793 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 600 + }, + "bounds": { + "#": 603 + }, + "collisionFilter": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "density": 0.001, + "force": { + "#": 608 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 609 + }, + "positionImpulse": { + "#": 610 + }, + "positionPrev": { + "#": 611 + }, + "region": { + "#": 612 + }, + "render": { + "#": 613 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356565, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 615 + }, + "vertices": { + "#": 616 + } + }, + [ + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 604 + }, + "min": { + "#": 605 + } + }, + { + "x": 1096.491759892171, + "y": 23.129342969599726 + }, + { + "x": 1047.1051858180972, + "y": 2.2642452329742215 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1071.7984728551342, + "y": 12.696794101286976 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1071.7984728551342, + "y": 15.604064816322632 + }, + { + "endCol": 22, + "endRow": 0, + "id": "21,22,0,0", + "startCol": 21, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 614 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -2.9072707150356565 + }, + [ + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1047.1051858180972, + "y": 2.2642452329742215 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1096.491759892171, + "y": 2.2642452329742215 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1096.491759892171, + "y": 23.129342969599726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1047.1051858180972, + "y": 23.129342969599726 + }, + { + "angle": -0.17003603562450043, + "anglePrev": -0.1303479524890572, + "angularSpeed": 0.03549442744577603, + "angularVelocity": -0.03983710022101267, + "area": 2157.165332, + "axes": { + "#": 622 + }, + "bounds": { + "#": 636 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 639 + }, + "constraintImpulse": { + "#": 640 + }, + "density": 0.001, + "force": { + "#": 641 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 642 + }, + "positionImpulse": { + "#": 643 + }, + "positionPrev": { + "#": 644 + }, + "region": { + "#": 645 + }, + "render": { + "#": 646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6618060995495865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 648 + }, + "vertices": { + "#": 649 + } + }, + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + } + ], + { + "x": -0.9974365020102348, + "y": -0.07155714120607781 + }, + { + "x": -0.9513315533707284, + "y": -0.3081692320158481 + }, + { + "x": -0.849922504013321, + "y": -0.5269077121960983 + }, + { + "x": -0.6991484132697294, + "y": -0.71497657040103 + }, + { + "x": -0.5077316782219172, + "y": -0.8615152598358053 + }, + { + "x": -0.2867522954114891, + "y": -0.958004760466378 + }, + { + "x": -0.049217141508615565, + "y": -0.998788102142652 + }, + { + "x": 0.19129144981005924, + "y": -0.9815332807549446 + }, + { + "x": 0.4206245866432293, + "y": -0.907234786100716 + }, + { + "x": 0.6254952548494408, + "y": -0.7802279706347581 + }, + { + "x": 0.794057993462167, + "y": -0.6078420049806008 + }, + { + "x": 0.9164456953113179, + "y": -0.40015907779951093 + }, + { + "x": 0.9855786696780355, + "y": -0.1692178651197148 + }, + { + "max": { + "#": 637 + }, + "min": { + "#": 638 + } + }, + { + "x": 71.93678871773623, + "y": 158.8005664022771 + }, + { + "x": 19.32397281075596, + "y": 104.60940616147406 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 45.62409674002979, + "y": 132.53586556863434 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 45.52512545447509, + "y": 134.00590796548317 + }, + { + "endCol": 1, + "endRow": 3, + "id": "0,1,2,3", + "startCol": 0, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 647 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1392401640917882, + "y": -1.4683712356720378 + }, + [ + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 71.9242206693036, + "y": 131.2407372719631 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 71.47001637279547, + "y": 137.57190055030566 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 69.51373291708319, + "y": 143.61103095466905 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 66.16857001278757, + "y": 149.00690800513306 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.63010666401118, + "y": 153.44489881537746 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 56.16160667385652, + "y": 156.66774443030823 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 50.07994156436211, + "y": 158.48812309859633 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 43.73937312123455, + "y": 158.8005664022771 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 37.50905430231094, + "y": 157.58633684631735 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 31.750191710291197, + "y": 154.9163342908438 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 26.796782215897778, + "y": 150.94527166468777 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 22.938151520509642, + "y": 145.9045266645306 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20.3981678185359, + "y": 140.08744726042173 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 19.32397281075596, + "y": 133.83099386530557 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 19.778177107264096, + "y": 127.49983058696303 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 21.734460562976373, + "y": 121.46070018259958 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 25.07962346727202, + "y": 116.06482313213556 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 29.618086816048393, + "y": 111.62683232189116 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 35.08658680620306, + "y": 108.40398670696041 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 41.168251915697454, + "y": 106.58360803867225 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 47.50882035882501, + "y": 106.27116473499152 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 53.73913917774863, + "y": 107.48539429095126 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 59.498001769768365, + "y": 110.15539684642488 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 64.4514112641618, + "y": 114.1264594725809 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 68.31004195954992, + "y": 119.16720447273805 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 70.85002566152366, + "y": 124.98428387684693 + }, + { + "angle": -0.013632198538076009, + "anglePrev": -0.008100026061653609, + "angularSpeed": 0.0038528896918866027, + "angularVelocity": -0.005743454381081968, + "area": 2399.6281959999997, + "axes": { + "#": 677 + }, + "bounds": { + "#": 680 + }, + "collisionFilter": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "density": 0.001, + "force": { + "#": 685 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 686 + }, + "positionImpulse": { + "#": 687 + }, + "positionPrev": { + "#": 688 + }, + "region": { + "#": 689 + }, + "render": { + "#": 690 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6859509011618625, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 692 + }, + "vertices": { + "#": 693 + } + }, + [ + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": -0.013631776314556362, + "y": -0.9999070830204723 + }, + { + "x": 0.9999070830204723, + "y": -0.013631776314556362 + }, + { + "max": { + "#": 681 + }, + "min": { + "#": 682 + } + }, + { + "x": 119.1742048519399, + "y": 149.44235128489458 + }, + { + "x": 69.50386420000014, + "y": 97.10726890424117 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 94.34959757024704, + "y": 124.61774400320176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 94.25277693207522, + "y": 127.25044186744628 + }, + { + "endCol": 2, + "endRow": 3, + "id": "1,2,2,3", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 691 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11543371443876538, + "y": -2.63608493041707 + }, + [ + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 119.1742048519399, + "y": 148.7745850903497 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 70.19275648309906, + "y": 149.44235128489458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 69.52499028855418, + "y": 100.46090291605375 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 118.50643865739502, + "y": 99.79313672150892 + }, + { + "angle": -0.008132791647870114, + "anglePrev": -0.0049658210163389845, + "angularSpeed": 0.0022371587499779464, + "angularVelocity": -0.003578915672997402, + "area": 1489.7843794189994, + "axes": { + "#": 699 + }, + "bounds": { + "#": 702 + }, + "collisionFilter": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "density": 0.001, + "force": { + "#": 707 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 708 + }, + "positionImpulse": { + "#": 709 + }, + "positionPrev": { + "#": 710 + }, + "region": { + "#": 711 + }, + "render": { + "#": 712 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8169650254871144, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 714 + }, + "vertices": { + "#": 715 + } + }, + [ + { + "#": 700 + }, + { + "#": 701 + } + ], + { + "x": 0.008132701994575789, + "y": 0.9999669290322892 + }, + { + "x": -0.9999669290322892, + "y": 0.008132701994575789 + }, + { + "max": { + "#": 703 + }, + "min": { + "#": 704 + } + }, + { + "x": 152.0478701243681, + "y": 141.8081741064491 + }, + { + "x": 116.29006966388428, + "y": 96.6356701348005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 134.17092003739333, + "y": 120.63040328331233 + }, + { + "x": -1.4113601361474917, + "y": -0.030435222061082953 + }, + { + "x": 134.12901559440766, + "y": 123.43271686296406 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,2,2", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 713 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.057590540060118656, + "y": -2.807235231007695 + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 116.29396995041849, + "y": 99.74063532552385 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.70573605311282, + "y": 99.45263246017558 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.0478701243681, + "y": 141.52017124110085 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 116.63610402167386, + "y": 141.8081741064491 + }, + { + "angle": -0.0037774799504086552, + "anglePrev": -0.002464250656145218, + "angularSpeed": 0.0010314231725018618, + "angularVelocity": -0.0014533562225900417, + "area": 1765.3675322216507, + "axes": { + "#": 721 + }, + "bounds": { + "#": 724 + }, + "collisionFilter": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "density": 0.001, + "force": { + "#": 729 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 730 + }, + "positionImpulse": { + "#": 731 + }, + "positionPrev": { + "#": 732 + }, + "region": { + "#": 733 + }, + "render": { + "#": 734 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.878138865350955, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 736 + }, + "vertices": { + "#": 737 + } + }, + [ + { + "#": 722 + }, + { + "#": 723 + } + ], + { + "x": 0.003777470966714802, + "y": 0.9999928653310959 + }, + { + "x": -0.9999928653310959, + "y": 0.003777470966714802 + }, + { + "max": { + "#": 725 + }, + "min": { + "#": 726 + } + }, + { + "x": 190.82029973869172, + "y": 141.70045893519273 + }, + { + "x": 148.88352510396498, + "y": 96.39470115160121 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 169.84515777101277, + "y": 120.48663362362255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 169.8164466006011, + "y": 123.36212933343309 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,2,2", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 735 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03724543618179155, + "y": -2.877743280245838 + }, + [ + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 148.88352510396498, + "y": 99.43057018978723 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.64711602133445, + "y": 99.27280831205235 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 190.80679043806055, + "y": 141.54269705745784 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 149.04319952069108, + "y": 141.70045893519273 + }, + { + "angle": -0.0009037104038105393, + "anglePrev": -0.000491417431349512, + "angularSpeed": 0.0003785673509738079, + "angularVelocity": -0.00047027890230514464, + "area": 1919.5457599999997, + "axes": { + "#": 743 + }, + "bounds": { + "#": 747 + }, + "collisionFilter": { + "#": 750 + }, + "constraintImpulse": { + "#": 751 + }, + "density": 0.001, + "force": { + "#": 752 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 753 + }, + "positionImpulse": { + "#": 754 + }, + "positionPrev": { + "#": 755 + }, + "region": { + "#": 756 + }, + "render": { + "#": 757 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905644514999238, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 759 + }, + "vertices": { + "#": 760 + } + }, + [ + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": -0.5007596704510746, + "y": -0.8655863633686304 + }, + { + "x": 0.499194374565822, + "y": -0.8664900324884512 + }, + { + "x": 0.9999995916537808, + "y": -0.0009037102808016272 + }, + { + "max": { + "#": 748 + }, + "min": { + "#": 749 + } + }, + { + "x": 234.492339035142, + "y": 153.53858706403648 + }, + { + "x": 187.36638278680994, + "y": 96.27104363357293 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 210.9186555007663, + "y": 126.35759816329502 + }, + { + "x": -0.8558307063275269, + "y": -0.03002266592886868 + }, + { + "x": 210.89060738666186, + "y": 129.26390857920964 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 758 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03375152608307985, + "y": -2.9070200835993205 + }, + [ + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 234.47092821472268, + "y": 139.92731927345147 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 210.9432192499088, + "y": 153.53858706403648 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.3909474396627, + "y": 139.96986595347164 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 187.36638278680994, + "y": 112.78787705313859 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 210.89409175162382, + "y": 99.17660926255365 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 234.4463635618699, + "y": 112.74533037311846 + }, + { + "angle": 0.0003968374962754574, + "anglePrev": 0.00030329103880200113, + "angularSpeed": 0.00008781567703132468, + "angularVelocity": 0.00009568597445227427, + "area": 6052.328004, + "axes": { + "#": 768 + }, + "bounds": { + "#": 772 + }, + "collisionFilter": { + "#": 775 + }, + "constraintImpulse": { + "#": 776 + }, + "density": 0.001, + "force": { + "#": 777 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 778 + }, + "positionImpulse": { + "#": 779 + }, + "positionPrev": { + "#": 780 + }, + "region": { + "#": 781 + }, + "render": { + "#": 782 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9107558563292475, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 784 + }, + "vertices": { + "#": 785 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": -0.49964597037610536, + "y": -0.8662297064214088 + }, + { + "x": 0.5003333177912329, + "y": -0.8658328771235344 + }, + { + "x": 0.9999999212600018, + "y": 0.0003968374858597961 + }, + { + "max": { + "#": 773 + }, + "min": { + "#": 774 + } + }, + { + "x": 314.6594394797798, + "y": 195.8197136904332 + }, + { + "x": 231.02049957155404, + "y": 96.37904701675289 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 272.8290731593471, + "y": 147.55471749081923 + }, + { + "x": 0.46837771860092714, + "y": 0.0020698470676999347 + }, + { + "x": 272.80104273151625, + "y": 150.46632844993377 + }, + { + "endCol": 6, + "endRow": 4, + "id": "4,6,2,4", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 783 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02839844820101689, + "y": -2.911596723450799 + }, + [ + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 314.6184929890476, + "y": 171.7043030006583 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 272.8099197980921, + "y": 195.8197136904332 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.02049957155404, + "y": 171.6711281805154 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 231.0396533296465, + "y": 123.40513198098017 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 272.8482265206021, + "y": 99.28972129120531 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 314.63764674714014, + "y": 123.43830680112308 + }, + { + "angle": -0.00013416487099172762, + "anglePrev": -0.0001408264231248385, + "angularSpeed": 0.000013794262729797865, + "angularVelocity": 0.000011621769218086731, + "area": 2220.023313496789, + "axes": { + "#": 793 + }, + "bounds": { + "#": 796 + }, + "collisionFilter": { + "#": 799 + }, + "constraintImpulse": { + "#": 800 + }, + "density": 0.001, + "force": { + "#": 801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 802 + }, + "positionImpulse": { + "#": 803 + }, + "positionPrev": { + "#": 804 + }, + "region": { + "#": 805 + }, + "render": { + "#": 806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9069243505677202, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 808 + }, + "vertices": { + "#": 809 + } + }, + [ + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "x": 0.00013416487058922827, + "y": 0.9999999909998937 + }, + { + "x": -0.9999999909998937, + "y": 0.00013416487058922827 + }, + { + "max": { + "#": 797 + }, + "min": { + "#": 798 + } + }, + { + "x": 356.76176782099895, + "y": 148.45961552136995 + }, + { + "x": 311.580620651315, + "y": 96.37825929082787 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 334.1596003730049, + "y": 123.87235334013776 + }, + { + "x": 2.3024687887109927, + "y": -0.0003237083990973776 + }, + { + "x": 334.13065788221587, + "y": 126.77997789400332 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 807 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.029209931946752477, + "y": -2.9075516592292843 + }, + [ + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 311.580620651315, + "y": 99.29114888570207 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 356.73198341367214, + "y": 99.28509115890563 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 356.7385800946948, + "y": 148.45355779457347 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 311.5872173323376, + "y": 148.45961552136995 + }, + { + "angle": -0.00016181884574446907, + "anglePrev": -0.00011105613980048356, + "angularSpeed": 0.00006441698271782335, + "angularVelocity": -0.00005372061137694078, + "area": 2601.1074479999997, + "axes": { + "#": 815 + }, + "bounds": { + "#": 819 + }, + "collisionFilter": { + "#": 822 + }, + "constraintImpulse": { + "#": 823 + }, + "density": 0.001, + "force": { + "#": 824 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 825 + }, + "positionImpulse": { + "#": 826 + }, + "positionPrev": { + "#": 827 + }, + "region": { + "#": 828 + }, + "render": { + "#": 829 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.908588430383429, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 831 + }, + "vertices": { + "#": 832 + } + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + } + ], + { + "x": -0.5001270476801039, + "y": -0.8659520403456434 + }, + { + "x": 0.49984676677372647, + "y": -0.8661138549554854 + }, + { + "x": 0.9999999869073306, + "y": -0.00016181884503825556 + }, + { + "max": { + "#": 820 + }, + "min": { + "#": 821 + } + }, + { + "x": 409.13944026017873, + "y": 162.5475805900061 + }, + { + "x": 354.30716214554167, + "y": 96.35708518535235 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 381.71172192272365, + "y": 130.9065810042713 + }, + { + "x": 4.155551842045788, + "y": -0.0026833332175621957 + }, + { + "x": 381.68287594683255, + "y": 133.81562902520537 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 830 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.028617717114002517, + "y": -2.909110235892598 + }, + [ + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 409.11628169990564, + "y": 146.72314663714042 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 381.71684203279955, + "y": 162.5475805900061 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 354.31228241743634, + "y": 146.7320149571239 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 354.30716214554167, + "y": 115.09001537140217 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 381.70660181264776, + "y": 99.2655814185365 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 409.111161428011, + "y": 115.08114705141871 + }, + { + "angle": -0.00007669236366627312, + "anglePrev": -0.00008486321104853115, + "angularSpeed": 0.000015701855028378046, + "angularVelocity": 0.000010112724927145494, + "area": 1413.3088360000002, + "axes": { + "#": 840 + }, + "bounds": { + "#": 843 + }, + "collisionFilter": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "density": 0.001, + "force": { + "#": 848 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 849 + }, + "positionImpulse": { + "#": 850 + }, + "positionPrev": { + "#": 851 + }, + "region": { + "#": 852 + }, + "render": { + "#": 853 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.910925311815922, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 855 + }, + "vertices": { + "#": 856 + } + }, + [ + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "x": -0.00007669236359109263, + "y": -0.9999999970591407 + }, + { + "x": 0.9999999970591407, + "y": -0.00007669236359109263 + }, + { + "max": { + "#": 844 + }, + "min": { + "#": 845 + } + }, + { + "x": 444.98789129871915, + "y": 136.86959530406742 + }, + { + "x": 407.3681572097627, + "y": 96.36187662278809 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.16659874084183, + "y": 118.07115377298838 + }, + { + "x": 5.401444102668367, + "y": -0.0009555788801166561 + }, + { + "x": 426.13806818592667, + "y": 120.98178645289174 + }, + { + "endCol": 9, + "endRow": 2, + "id": "8,9,2,2", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 854 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.029257530090774253, + "y": -2.910775138388516 + }, + [ + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 444.96504027192094, + "y": 136.86671213135057 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 407.3710403824796, + "y": 136.86959530406742 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.3681572097627, + "y": 99.27559541462617 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 444.9621570992041, + "y": 99.27271224190932 + }, + { + "angle": 0.00008179203463960782, + "anglePrev": -0.000010861585706060593, + "angularSpeed": 0.0000753810076314073, + "angularVelocity": 0.00009360398549052095, + "area": 5460.808751999999, + "axes": { + "#": 862 + }, + "bounds": { + "#": 866 + }, + "collisionFilter": { + "#": 869 + }, + "constraintImpulse": { + "#": 870 + }, + "density": 0.001, + "force": { + "#": 871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 872 + }, + "positionImpulse": { + "#": 873 + }, + "positionPrev": { + "#": 874 + }, + "region": { + "#": 875 + }, + "render": { + "#": 876 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9084298481285633, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 878 + }, + "vertices": { + "#": 879 + } + }, + [ + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "x": -0.4999272815284707, + "y": -0.8660673837430627 + }, + { + "x": 0.5000689496657774, + "y": -0.8659855920164988 + }, + { + "x": 0.9999999966550316, + "y": 0.00008179203454841058 + }, + { + "max": { + "#": 867 + }, + "min": { + "#": 868 + } + }, + { + "x": 523.388557087664, + "y": 188.4123637040154 + }, + { + "x": 443.9543634205134, + "y": 93.81202076342869 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 483.66023820651264, + "y": 142.5663638573688 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 483.63237053016417, + "y": 145.47311355512576 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,1,3", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 877 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.028072297157393677, + "y": -2.906727437594924 + }, + [ + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 523.362363154896, + "y": 165.4926112516318 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.65648836889676, + "y": 188.4123637040154 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 443.9543634205134, + "y": 165.4861163097524 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 443.95811325812923, + "y": 119.64011646310583 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 483.66398804412853, + "y": 96.72036401072224 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.366112992512, + "y": 119.64661140498524 + }, + { + "angle": -0.0006652222530514394, + "anglePrev": -0.0009299333278021283, + "angularSpeed": 0.00026471107475068887, + "angularVelocity": 0.00026471107475068887, + "area": 451.6137937679406, + "axes": { + "#": 887 + }, + "bounds": { + "#": 890 + }, + "collisionFilter": { + "#": 893 + }, + "constraintImpulse": { + "#": 894 + }, + "density": 0.001, + "force": { + "#": 895 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 896 + }, + "positionImpulse": { + "#": 897 + }, + "positionPrev": { + "#": 898 + }, + "region": { + "#": 899 + }, + "render": { + "#": 900 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8624936894419846, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 902 + }, + "vertices": { + "#": 903 + } + }, + [ + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "x": 0.0006652222039890104, + "y": 0.999999778739685 + }, + { + "x": -0.999999778739685, + "y": 0.0006652222039890104 + }, + { + "max": { + "#": 891 + }, + "min": { + "#": 892 + } + }, + { + "x": 567.501666966954, + "y": 121.7848107119843 + }, + { + "x": 547.3162525536843, + "y": 99.38160869041513 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.4089597603191, + "y": 110.58320970119975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.4135476138598, + "y": 113.44569971405483 + }, + { + "endCol": 11, + "endRow": 2, + "id": "11,11,2,2", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 901 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.004587853540712104, + "y": -2.8624900128550794 + }, + [ + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 547.3162525536843, + "y": 99.39502657130595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 567.4867727821056, + "y": 99.38160869041513 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 567.501666966954, + "y": 121.77139283109352 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 547.3311467385327, + "y": 121.7848107119843 + }, + { + "angle": 0.00026115318850659377, + "anglePrev": 0.00013001231698610472, + "angularSpeed": 0.00013114087152048907, + "angularVelocity": 0.00013114087152048907, + "area": 3021.679068443158, + "axes": { + "#": 909 + }, + "bounds": { + "#": 912 + }, + "collisionFilter": { + "#": 915 + }, + "constraintImpulse": { + "#": 916 + }, + "density": 0.001, + "force": { + "#": 917 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 918 + }, + "positionImpulse": { + "#": 919 + }, + "positionPrev": { + "#": 920 + }, + "region": { + "#": 921 + }, + "render": { + "#": 922 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907744544823594, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 924 + }, + "vertices": { + "#": 925 + } + }, + [ + { + "#": 910 + }, + { + "#": 911 + } + ], + { + "x": -0.0002611531855381096, + "y": 0.9999999658995062 + }, + { + "x": -0.9999999658995062, + "y": -0.0002611531855381096 + }, + { + "max": { + "#": 913 + }, + "min": { + "#": 914 + } + }, + { + "x": 669.3884400396778, + "y": 110.08692831155611 + }, + { + "x": 567.5451515327596, + "y": 77.479752192607 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.4679862648933, + "y": 95.2372120370916 + }, + { + "x": 0.03590850546030952, + "y": -1.3417747786440055 + }, + { + "x": 618.4703672222424, + "y": 98.14495560711174 + }, + { + "endCol": 13, + "endRow": 2, + "id": "11,13,1,2", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 923 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0023809573491291756, + "y": -2.9077435700201404 + }, + [ + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 567.5552816466696, + "y": 80.38749576262714 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 669.3884400396778, + "y": 80.41408981724175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.3806908831169, + "y": 110.08692831155611 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 567.5475324901088, + "y": 110.0603342569415 + }, + { + "angle": 0.0013673473034861358, + "anglePrev": 0.0013253418845796169, + "angularSpeed": 0.00004200541890651895, + "angularVelocity": 0.00004200541890651895, + "area": 856.7396388354374, + "axes": { + "#": 931 + }, + "bounds": { + "#": 934 + }, + "collisionFilter": { + "#": 937 + }, + "constraintImpulse": { + "#": 938 + }, + "density": 0.001, + "force": { + "#": 939 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 940 + }, + "positionImpulse": { + "#": 941 + }, + "positionPrev": { + "#": 942 + }, + "region": { + "#": 943 + }, + "render": { + "#": 944 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.934702673804129, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 946 + }, + "vertices": { + "#": 947 + } + }, + [ + { + "#": 932 + }, + { + "#": 933 + } + ], + { + "x": -0.0013673468774119482, + "y": 0.9999990651808216 + }, + { + "x": -0.9999990651808216, + "y": -0.0013673468774119482 + }, + { + "max": { + "#": 935 + }, + "min": { + "#": 936 + } + }, + { + "x": 710.898404551409, + "y": 117.59409646617316 + }, + { + "x": 670.7806869146154, + "y": 93.22439884979902 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 690.8310363381297, + "y": 106.87657432103934 + }, + { + "x": 0.36446862914958705, + "y": -0.43653949828059874 + }, + { + "x": 690.8140175483646, + "y": 109.81122764714586 + }, + { + "endCol": 14, + "endRow": 2, + "id": "13,14,2,2", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 945 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.017018789765103293, + "y": -2.934653326106516 + }, + [ + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 670.8099211636394, + "y": 96.15905217590553 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 710.881385761644, + "y": 96.2138438191172 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 710.85215151262, + "y": 117.59409646617316 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 670.7806869146154, + "y": 117.53930482296147 + }, + { + "angle": 0.00009411879603218737, + "anglePrev": 0.00010564212981025353, + "angularSpeed": 0.000011523333778066163, + "angularVelocity": -0.000011523333778066163, + "area": 4088.5999519999996, + "axes": { + "#": 953 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9048442411924866, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": -0.7070402260158354, + "y": -0.7071733300934618 + }, + { + "x": 0.0000941187958932312, + "y": -0.9999999955708262 + }, + { + "x": 0.7071733300934618, + "y": -0.7070402260158354 + }, + { + "x": 0.9999999955708262, + "y": 0.0000941187958932312 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 778.6962262612524, + "y": 169.81428189309582 + }, + { + "x": 708.4414877154502, + "y": 99.5595433472937 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.5688569883513, + "y": 134.68691262019473 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 743.5656697965195, + "y": 137.59175511289504 + }, + { + "endCol": 16, + "endRow": 3, + "id": "14,16,2,3", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.003187191831793825, + "y": -2.904842492700315 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 778.6934874042919, + "y": 149.24021857257483 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 758.1155509070821, + "y": 169.81428189309582 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 729.0155510359713, + "y": 169.81154303613533 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 708.4414877154502, + "y": 149.2336065389257 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 708.4442265724107, + "y": 120.1336066678147 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 729.0221630696204, + "y": 99.5595433472937 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 758.1221629407313, + "y": 99.56228220425417 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 778.6962262612524, + "y": 120.1402187014638 + }, + { + "angle": -0.003155427260849589, + "anglePrev": -0.002913171824698238, + "angularSpeed": 0.000242255436151351, + "angularVelocity": -0.000242255436151351, + "area": 1965.14242904257, + "axes": { + "#": 981 + }, + "bounds": { + "#": 984 + }, + "collisionFilter": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "density": 0.001, + "force": { + "#": 989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 990 + }, + "positionImpulse": { + "#": 991 + }, + "positionPrev": { + "#": 992 + }, + "region": { + "#": 993 + }, + "render": { + "#": 994 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8830762274288175, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 996 + }, + "vertices": { + "#": 997 + } + }, + [ + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "x": 0.0031554220245672802, + "y": 0.9999950216435318 + }, + { + "x": -0.9999950216435318, + "y": 0.0031554220245672802 + }, + { + "max": { + "#": 985 + }, + "min": { + "#": 986 + } + }, + { + "x": 1294.0245481976492, + "y": 33.0833565761506 + }, + { + "x": 1204.4473452004172, + "y": 7.962121694114045 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1249.2339057370218, + "y": 21.96427580402611 + }, + { + "x": 8.006226998521845, + "y": -2.13121596648861 + }, + { + "x": 1249.2298238129986, + "y": 24.84734914181366 + }, + { + "endCol": 26, + "endRow": 0, + "id": "24,26,0,0", + "startCol": 24, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 995 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004081924023219017, + "y": -2.8830733377875513 + }, + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1204.4473452004172, + "y": 11.12761882942935 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1293.9511863102741, + "y": 10.845195031901596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1294.020466273626, + "y": 32.80093277862282 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1204.5166251637695, + "y": 33.0833565761506 + }, + { + "angle": 0.0012601621914320065, + "anglePrev": 0.0011888753985445954, + "angularSpeed": 0.00007128679288741112, + "angularVelocity": 0.00007128679288741112, + "area": 1492.5256200000001, + "axes": { + "#": 1003 + }, + "bounds": { + "#": 1007 + }, + "collisionFilter": { + "#": 1010 + }, + "constraintImpulse": { + "#": 1011 + }, + "density": 0.001, + "force": { + "#": 1012 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1714.8324723309402, + "inverseInertia": 0.0005831473430408735, + "inverseMass": 0.6700052492231255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.49252562, + "motion": 0, + "parent": null, + "position": { + "#": 1013 + }, + "positionImpulse": { + "#": 1014 + }, + "positionPrev": { + "#": 1015 + }, + "region": { + "#": 1016 + }, + "render": { + "#": 1017 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.894112664184195, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1019 + }, + "vertices": { + "#": 1020 + } + }, + [ + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + } + ], + { + "x": -0.501093525450599, + "y": 0.8653931353734498 + }, + { + "x": -0.49891086485883135, + "y": -0.8666533037644367 + }, + { + "x": 0.9999992059957308, + "y": 0.001260161857907269 + }, + { + "max": { + "#": 1008 + }, + "min": { + "#": 1009 + } + }, + { + "x": 906.5729364681173, + "y": 178.00801262652348 + }, + { + "x": 855.6919847871316, + "y": 119.2980592425142 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 889.5879578735628, + "y": 148.63167871135101 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 889.5932750843426, + "y": 151.52578649100624 + }, + { + "endCol": 18, + "endRow": 3, + "id": "17,18,2,3", + "startCol": 17, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1018 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.005317210779871857, + "y": -2.894107779655219 + }, + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 906.4989523654394, + "y": 178.00801262652348 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 855.6919847871316, + "y": 148.58896426501542 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 906.5729364681173, + "y": 119.2980592425142 + }, + { + "angle": -0.00278234566445996, + "anglePrev": -0.0022336940871724347, + "angularSpeed": 0.0005486515772875254, + "angularVelocity": -0.0005486515772875254, + "area": 942.0065703840771, + "axes": { + "#": 1025 + }, + "bounds": { + "#": 1028 + }, + "collisionFilter": { + "#": 1031 + }, + "constraintImpulse": { + "#": 1032 + }, + "density": 0.001, + "force": { + "#": 1033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 1034 + }, + "positionImpulse": { + "#": 1035 + }, + "positionPrev": { + "#": 1036 + }, + "region": { + "#": 1037 + }, + "render": { + "#": 1038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9000640143461665, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1040 + }, + "vertices": { + "#": 1041 + } + }, + [ + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "x": 0.0027823420745642508, + "y": 0.9999961292787991 + }, + { + "x": -0.9999961292787991, + "y": 0.0027823420745642508 + }, + { + "max": { + "#": 1029 + }, + "min": { + "#": 1030 + } + }, + { + "x": 929.3357318440516, + "y": 150.88156828781763 + }, + { + "x": 908.1514317461878, + "y": 106.09333582994253 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 918.7435817951197, + "y": 128.48745205888005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 918.7422034209235, + "y": 131.3875157456618 + }, + { + "endCol": 19, + "endRow": 3, + "id": "18,19,2,3", + "startCol": 18, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1039 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0013783741961754003, + "y": -2.9000636867817535 + }, + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 908.1514317461878, + "y": 106.15193175365843 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 929.2112782126175, + "y": 106.09333582994253 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 929.3357318440516, + "y": 150.82297236410173 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 908.2758853776219, + "y": 150.88156828781763 + }, + { + "angle": 0.00009834545680414817, + "anglePrev": 0.00010978820178082184, + "angularSpeed": 0.000011442744976673662, + "angularVelocity": -0.000011442744976673662, + "area": 2898.415585731765, + "axes": { + "#": 1047 + }, + "bounds": { + "#": 1050 + }, + "collisionFilter": { + "#": 1053 + }, + "constraintImpulse": { + "#": 1054 + }, + "density": 0.001, + "force": { + "#": 1055 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 1056 + }, + "positionImpulse": { + "#": 1057 + }, + "positionPrev": { + "#": 1058 + }, + "region": { + "#": 1059 + }, + "render": { + "#": 1060 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.877628642772627, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1062 + }, + "vertices": { + "#": 1063 + } + }, + [ + { + "#": 1048 + }, + { + "#": 1049 + } + ], + { + "x": -0.00009834545664561811, + "y": 0.9999999951640857 + }, + { + "x": -0.9999999951640857, + "y": -0.00009834545664561811 + }, + { + "max": { + "#": 1051 + }, + "min": { + "#": 1052 + } + }, + { + "x": 1042.2847620360242, + "y": 131.9087130570584 + }, + { + "x": 930.0828986061931, + "y": 103.18654770583426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 986.182162465982, + "y": 118.9864437361542 + }, + { + "x": 0.17831828539172315, + "y": -0.0003029192537507702 + }, + { + "x": 986.1788267557281, + "y": 121.86407044556988 + }, + { + "endCol": 21, + "endRow": 2, + "id": "19,21,2,2", + "startCol": 19, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1061 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.003335710253822981, + "y": -2.8776267094156838 + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 930.0854392140197, + "y": 106.06417441524994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1042.2814263257703, + "y": 106.07520838088962 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1042.2788857179437, + "y": 131.9087130570584 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 930.0828986061931, + "y": 131.89767909141872 + }, + { + "angle": 0.004597976511571769, + "anglePrev": 0.0034657530968359575, + "angularSpeed": 0.0011322234147358111, + "angularVelocity": 0.0011322234147358111, + "area": 842.523055, + "axes": { + "#": 1069 + }, + "bounds": { + "#": 1073 + }, + "collisionFilter": { + "#": 1076 + }, + "constraintImpulse": { + "#": 1077 + }, + "density": 0.001, + "force": { + "#": 1078 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 546.4390114484775, + "inverseInertia": 0.001830030395065027, + "inverseMass": 1.1869111403722952, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.842523055, + "motion": 0, + "parent": null, + "position": { + "#": 1079 + }, + "positionImpulse": { + "#": 1080 + }, + "positionPrev": { + "#": 1081 + }, + "region": { + "#": 1082 + }, + "render": { + "#": 1083 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.936106797328251, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1085 + }, + "vertices": { + "#": 1086 + } + }, + [ + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + } + ], + { + "x": -0.5039706005442743, + "y": 0.8637208077770521 + }, + { + "x": -0.4960066673915014, + "y": -0.8683187121691991 + }, + { + "x": 0.9999894293246228, + "y": 0.004597960310321319 + }, + { + "max": { + "#": 1074 + }, + "min": { + "#": 1075 + } + }, + { + "x": 1081.2699607698225, + "y": 143.33525470289047 + }, + { + "x": 1042.9646706148724, + "y": 96.28961601679337 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1068.4317347412923, + "y": 121.22193894519778 + }, + { + "x": 0.1875682495206461, + "y": -0.000020468893368564192 + }, + { + "x": 1068.4284487906164, + "y": 124.15804390378582 + }, + { + "endCol": 22, + "endRow": 2, + "id": "21,22,2,2", + "startCol": 21, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1084 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0032859506759018585, + "y": -2.9361049585880465 + }, + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1081.0638587898582, + "y": 143.33525470289047 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1042.9646706148724, + "y": 121.10484115732137 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1081.2666748191466, + "y": 99.22572097538142 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6661.542482000001, + "axes": { + "#": 1091 + }, + "bounds": { + "#": 1105 + }, + "circleRadius": 46.273148148148145, + "collisionFilter": { + "#": 1108 + }, + "constraintImpulse": { + "#": 1109 + }, + "density": 0.001, + "force": { + "#": 1110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 28251.272419191544, + "inverseInertia": 0.00003539663577491412, + "inverseMass": 0.15011538284144801, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.661542482000001, + "motion": 0, + "parent": null, + "position": { + "#": 1111 + }, + "positionImpulse": { + "#": 1112 + }, + "positionPrev": { + "#": 1113 + }, + "region": { + "#": 1114 + }, + "render": { + "#": 1115 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1117 + }, + "vertices": { + "#": 1118 + } + }, + [ + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + } + ], + { + "x": -0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": -0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": -0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": -0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": -0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": -0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": 0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": 0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": 0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": 0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1106 + }, + "min": { + "#": 1107 + } + }, + { + "x": 1189.9663484629357, + "y": 191.830245232974 + }, + { + "x": 1098.0943484629358, + "y": 96.37697451793835 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1144.0303484629358, + "y": 145.557245232974 + }, + { + "x": 0.5467095984940997, + "y": 0 + }, + { + "x": 1144.0303484629358, + "y": 148.46451594800968 + }, + { + "endCol": 24, + "endRow": 3, + "id": "22,24,2,3", + "startCol": 22, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1116 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -2.9072707150356862 + }, + [ + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1189.9663484629357, + "y": 151.135245232974 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1187.2963484629358, + "y": 161.966245232974 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1182.1123484629359, + "y": 171.843245232974 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1174.7153484629357, + "y": 180.193245232974 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1165.5343484629357, + "y": 186.530245232974 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1155.1043484629358, + "y": 190.486245232974 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1144.0303484629358, + "y": 191.830245232974 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 1132.9563484629357, + "y": 190.486245232974 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 1122.5263484629359, + "y": 186.530245232974 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 1113.3453484629358, + "y": 180.193245232974 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 1105.9483484629357, + "y": 171.843245232974 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 1100.7643484629357, + "y": 161.966245232974 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 1098.0943484629358, + "y": 151.135245232974 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 1098.0943484629358, + "y": 139.979245232974 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 1100.7643484629357, + "y": 129.148245232974 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 1105.9483484629357, + "y": 119.271245232974 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 1113.3453484629358, + "y": 110.92124523297403 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 1122.5263484629359, + "y": 104.58424523297404 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 1132.9563484629357, + "y": 100.62824523297402 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 1144.0303484629358, + "y": 99.28424523297403 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 1155.1043484629358, + "y": 100.62824523297402 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1165.5343484629357, + "y": 104.58424523297404 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1174.7153484629357, + "y": 110.92124523297403 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1182.1123484629359, + "y": 119.271245232974 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1187.2963484629358, + "y": 129.148245232974 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1189.9663484629357, + "y": 139.979245232974 + }, + { + "angle": -0.06456182660548623, + "anglePrev": -0.0544242352914618, + "angularSpeed": 0.010137591314024426, + "angularVelocity": -0.010137591314024426, + "area": 1051.3111283901928, + "axes": { + "#": 1146 + }, + "bounds": { + "#": 1149 + }, + "collisionFilter": { + "#": 1152 + }, + "constraintImpulse": { + "#": 1153 + }, + "density": 0.001, + "force": { + "#": 1154 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 1155 + }, + "positionImpulse": { + "#": 1156 + }, + "positionPrev": { + "#": 1157 + }, + "region": { + "#": 1158 + }, + "render": { + "#": 1159 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.489933002522173, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1161 + }, + "vertices": { + "#": 1162 + } + }, + [ + { + "#": 1147 + }, + { + "#": 1148 + } + ], + { + "x": 0.06451698453422494, + "y": 0.9979166090944726 + }, + { + "x": -0.9979166090944726, + "y": 0.06451698453422494 + }, + { + "max": { + "#": 1150 + }, + "min": { + "#": 1151 + } + }, + { + "x": 53.04770148513805, + "y": 232.49110787976923 + }, + { + "x": 21.14079507279175, + "y": 192.5927047649601 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 37.15656883566659, + "y": 213.78531202344323 + }, + { + "x": 0.12127080187589, + "y": -0.36159390865765895 + }, + { + "x": 37.28120994906998, + "y": 216.27212342560034 + }, + { + "endCol": 1, + "endRow": 4, + "id": "0,1,4,4", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1160 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.124641113403395, + "y": -2.486811402157117 + }, + [ + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 21.265436186195146, + "y": 196.98588685930602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 50.75222932385187, + "y": 195.07951616711722 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 53.04770148513805, + "y": 230.5847371875804 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 23.560908347481327, + "y": 232.49110787976923 + }, + { + "angle": -0.0030377762339700294, + "anglePrev": -0.0020921376922808936, + "angularSpeed": 0.0009456385416891357, + "angularVelocity": -0.0009456385416891357, + "area": 6245.524001, + "axes": { + "#": 1168 + }, + "bounds": { + "#": 1176 + }, + "collisionFilter": { + "#": 1179 + }, + "constraintImpulse": { + "#": 1180 + }, + "density": 0.001, + "force": { + "#": 1181 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 24931.28629116745, + "inverseInertia": 0.00004011024494770155, + "inverseMass": 0.16011466769479796, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.245524001, + "motion": 0, + "parent": null, + "position": { + "#": 1182 + }, + "positionImpulse": { + "#": 1183 + }, + "positionPrev": { + "#": 1184 + }, + "region": { + "#": 1185 + }, + "render": { + "#": 1186 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7987283828401113, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1188 + }, + "vertices": { + "#": 1189 + } + }, + [ + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + } + ], + { + "x": 0.6258809613963782, + "y": 0.7799185997022671 + }, + { + "x": -0.21957792048006552, + "y": 0.9755949655659615 + }, + { + "x": -0.8996494569462775, + "y": 0.4366129345498911 + }, + { + "x": -0.902285501387754, + "y": -0.43113904252044793 + }, + { + "x": -0.22550110986121627, + "y": -0.9742429109063916 + }, + { + "x": 0.6211310028450385, + "y": -0.7837067546631943 + }, + { + "x": 0.9999953859613241, + "y": -0.0030377715618295814 + }, + { + "max": { + "#": 1177 + }, + "min": { + "#": 1178 + } + }, + { + "x": 138.45976921345468, + "y": 288.9729977718823 + }, + { + "x": 47.58022131767151, + "y": 195.81942758804112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 95.3540385512084, + "y": 242.42850711501856 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 95.25425848431199, + "y": 245.2254562563447 + }, + { + "endCol": 2, + "endRow": 6, + "id": "0,2,4,6", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1187 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.09978006689641461, + "y": -2.796949141326129 + }, + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 138.45976921345468, + "y": 263.02565678830615 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 106.12644212077798, + "y": 288.9729977718823 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 65.68060213056373, + "y": 279.8698209919892 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 47.58022131767151, + "y": 242.57363372803042 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 65.45367451935194, + "y": 205.16816566990624 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 105.8434615487073, + "y": 195.81942758804112 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 138.3338353555875, + "y": 221.5698480678933 + }, + { + "angle": -0.000012710257434153481, + "anglePrev": 0.000022256452268372938, + "angularSpeed": 0.00003496670970252642, + "angularVelocity": -0.00003496670970252642, + "area": 1100.443548, + "axes": { + "#": 1198 + }, + "bounds": { + "#": 1202 + }, + "collisionFilter": { + "#": 1205 + }, + "constraintImpulse": { + "#": 1206 + }, + "density": 0.001, + "force": { + "#": 1207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 932.2097612415441, + "inverseInertia": 0.001072719940915627, + "inverseMass": 0.9087244882460795, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.1004435479999999, + "motion": 0, + "parent": null, + "position": { + "#": 1208 + }, + "positionImpulse": { + "#": 1209 + }, + "positionPrev": { + "#": 1210 + }, + "region": { + "#": 1211 + }, + "render": { + "#": 1212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9159334527008034, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1214 + }, + "vertices": { + "#": 1215 + } + }, + [ + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + } + ], + { + "x": -0.49998961663243924, + "y": 0.8660313985414999 + }, + { + "x": -0.5000116314349329, + "y": -0.8660186882682018 + }, + { + "x": 0.9999999999192248, + "y": -0.000012710257433811256 + }, + { + "max": { + "#": 1203 + }, + "min": { + "#": 1204 + } + }, + { + "x": 172.5925518891975, + "y": 238.57406850099247 + }, + { + "x": 128.9288880714026, + "y": 185.24613994829946 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 158.034221402385, + "y": 213.36825347116823 + }, + { + "x": -0.07257967172150943, + "y": -0.18533575549456494 + }, + { + "x": 158.0288779558125, + "y": 216.28418202793335 + }, + { + "endCol": 3, + "endRow": 4, + "id": "2,3,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1213 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005343446572495054, + "y": -2.915928556765127 + }, + [ + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 172.587208442625, + "y": 238.57406850099247 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 128.9288880714026, + "y": 213.36862340744761 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 172.58656769312728, + "y": 188.16206850506458 + }, + { + "angle": -0.0003501838385855283, + "anglePrev": -0.0002838637420299505, + "angularSpeed": 0.00006632009655557778, + "angularVelocity": -0.00006632009655557778, + "area": 4695.386625, + "axes": { + "#": 1220 + }, + "bounds": { + "#": 1228 + }, + "collisionFilter": { + "#": 1231 + }, + "constraintImpulse": { + "#": 1232 + }, + "density": 0.001, + "force": { + "#": 1233 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 1234 + }, + "positionImpulse": { + "#": 1235 + }, + "positionPrev": { + "#": 1236 + }, + "region": { + "#": 1237 + }, + "render": { + "#": 1238 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9046197418434923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1240 + }, + "vertices": { + "#": 1241 + } + }, + [ + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + } + ], + { + "x": 0.6237738395915994, + "y": 0.7816048855023574 + }, + { + "x": -0.22218500184082807, + "y": 0.9750045256084666 + }, + { + "x": -0.9008198730027761, + "y": 0.4341929944198341 + }, + { + "x": -0.9011237467840931, + "y": -0.433561982860349 + }, + { + "x": -0.22286780894731129, + "y": -0.9748486753004411 + }, + { + "x": 0.6232262758530567, + "y": -0.7820415648073503 + }, + { + "x": 0.9999999386856401, + "y": -0.0003501838314284288 + }, + { + "max": { + "#": 1229 + }, + "min": { + "#": 1230 + } + }, + { + "x": 252.02193333321998, + "y": 276.59314483348555 + }, + { + "x": 173.27164430735567, + "y": 195.8231497858464 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 214.6947667998588, + "y": 236.21137526043975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 214.69120095243568, + "y": 239.11599281348165 + }, + { + "endCol": 5, + "endRow": 5, + "id": "3,5,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1239 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.003565847423114974, + "y": -2.9046175530418994 + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.02193333321998, + "y": 254.17130499144832 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 223.9267833763674, + "y": 276.59314483348555 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 188.87898440466157, + "y": 268.6064175163115 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 173.27164430735567, + "y": 236.22588096907333 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 188.85630229753224, + "y": 203.83442148776524 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 223.89849902830295, + "y": 195.8231497858464 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.0093456252154, + "y": 218.22530719545423 + }, + { + "angle": -0.00018314288898211762, + "anglePrev": -0.00015338084014754696, + "angularSpeed": 0.000029762048834570652, + "angularVelocity": -0.000029762048834570652, + "area": 2533.681298803042, + "axes": { + "#": 1250 + }, + "bounds": { + "#": 1253 + }, + "collisionFilter": { + "#": 1256 + }, + "constraintImpulse": { + "#": 1257 + }, + "density": 0.001, + "force": { + "#": 1258 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 9087.287047208478, + "inverseInertia": 0.00011004384419739331, + "inverseMass": 0.3946826305551604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.533681298803042, + "motion": 0, + "parent": null, + "position": { + "#": 1259 + }, + "positionImpulse": { + "#": 1260 + }, + "positionPrev": { + "#": 1261 + }, + "region": { + "#": 1262 + }, + "render": { + "#": 1263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905523514238343, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1265 + }, + "vertices": { + "#": 1266 + } + }, + [ + { + "#": 1251 + }, + { + "#": 1252 + } + ], + { + "x": 0.00018314288795830868, + "y": 0.9999999832293414 + }, + { + "x": -0.9999999832293414, + "y": 0.00018314288795830868 + }, + { + "max": { + "#": 1254 + }, + "min": { + "#": 1255 + } + }, + { + "x": 353.19282069237363, + "y": 221.0131406073107 + }, + { + "x": 252.56115342545147, + "y": 195.81578528784283 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.87698705891256, + "y": 208.41446294757677 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.87533674965556, + "y": 211.31998599313522 + }, + { + "endCol": 7, + "endRow": 4, + "id": "5,7,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1264 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.001650309256982041, + "y": -2.905523045558456 + }, + [ + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.56115342545147, + "y": 195.83421441778088 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.1882093510382, + "y": 195.81578528784283 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 353.19282069237363, + "y": 220.99471147737265 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 252.5657647667868, + "y": 221.0131406073107 + }, + { + "angle": 0.00007211996304651327, + "anglePrev": 0.00003295418714828468, + "angularSpeed": 0.00003916577589822859, + "angularVelocity": 0.00003916577589822859, + "area": 2082.1047164947227, + "axes": { + "#": 1272 + }, + "bounds": { + "#": 1275 + }, + "collisionFilter": { + "#": 1278 + }, + "constraintImpulse": { + "#": 1279 + }, + "density": 0.001, + "force": { + "#": 1280 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2917.86500075833, + "inverseInertia": 0.0003427163353136995, + "inverseMass": 0.4802832403566742, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.082104716494723, + "motion": 0, + "parent": null, + "position": { + "#": 1281 + }, + "positionImpulse": { + "#": 1282 + }, + "positionPrev": { + "#": 1283 + }, + "region": { + "#": 1284 + }, + "render": { + "#": 1285 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.904133093348478, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1287 + }, + "vertices": { + "#": 1288 + } + }, + [ + { + "#": 1273 + }, + { + "#": 1274 + } + ], + { + "x": -0.00007211996298399381, + "y": 0.9999999973993554 + }, + { + "x": -0.9999999973993554, + "y": -0.00007211996298399381 + }, + { + "max": { + "#": 1276 + }, + "min": { + "#": 1277 + } + }, + { + "x": 398.3321680984848, + "y": 244.72388125311872 + }, + { + "x": 355.7512237306893, + "y": 195.81919032813587 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.041695914587, + "y": 220.27153579062727 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.04264087128104, + "y": 223.17566873023912 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1286 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0009449566940236309, + "y": -2.904132939611864 + }, + [ + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 355.7547505137402, + "y": 195.81919032813587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 398.3321680984848, + "y": 195.82226100992403 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 398.32864131543386, + "y": 244.72388125311872 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.7512237306893, + "y": 244.72081057133056 + }, + { + "angle": 0.00002746038185218051, + "anglePrev": -0.000004186245339239481, + "angularSpeed": 0.000031703940596082106, + "angularVelocity": 0.00003162567909541174, + "area": 2570.1808866424026, + "axes": { + "#": 1294 + }, + "bounds": { + "#": 1297 + }, + "collisionFilter": { + "#": 1300 + }, + "constraintImpulse": { + "#": 1301 + }, + "density": 0.001, + "force": { + "#": 1302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 7426.992944977438, + "inverseInertia": 0.00013464399487227974, + "inverseMass": 0.38907767355875333, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5701808866424027, + "motion": 0, + "parent": null, + "position": { + "#": 1303 + }, + "positionImpulse": { + "#": 1304 + }, + "positionPrev": { + "#": 1305 + }, + "region": { + "#": 1306 + }, + "render": { + "#": 1307 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.909904950060489, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1309 + }, + "vertices": { + "#": 1310 + } + }, + [ + { + "#": 1295 + }, + { + "#": 1296 + } + ], + { + "x": -0.00002746038184872933, + "y": 0.9999999996229637 + }, + { + "x": -0.9999999996229637, + "y": -0.00002746038184872933 + }, + { + "max": { + "#": 1298 + }, + "min": { + "#": 1299 + } + }, + { + "x": 487.4102594147416, + "y": 217.72087660112928 + }, + { + "x": 398.95034688621905, + "y": 185.75315870123313 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.18086529654397, + "y": 203.191970017614 + }, + { + "x": 0.14227247265829282, + "y": -0.08166641805482677 + }, + { + "x": 443.18198545512496, + "y": 206.1018771372008 + }, + { + "endCol": 10, + "endRow": 4, + "id": "8,10,3,4", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1308 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0011186477664750782, + "y": -2.909907991935313 + }, + [ + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 398.95226905028824, + "y": 188.66306343409875 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 487.4102594147416, + "y": 188.66549252429266 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 487.4094615427997, + "y": 217.72087660112928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 398.95147117834637, + "y": 217.71844751093536 + }, + { + "angle": -0.00004087908263729249, + "anglePrev": -0.00004248114734523084, + "angularSpeed": 0.0000017269795762484993, + "angularVelocity": 0.000001556408221996791, + "area": 1460.278512, + "axes": { + "#": 1316 + }, + "bounds": { + "#": 1320 + }, + "collisionFilter": { + "#": 1323 + }, + "constraintImpulse": { + "#": 1324 + }, + "density": 0.001, + "force": { + "#": 1325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1641.5325488167716, + "inverseInertia": 0.0006091868240570722, + "inverseMass": 0.6848008731090607, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4602785120000001, + "motion": 0, + "parent": null, + "position": { + "#": 1326 + }, + "positionImpulse": { + "#": 1327 + }, + "positionPrev": { + "#": 1328 + }, + "region": { + "#": 1329 + }, + "render": { + "#": 1330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9056491786166374, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1332 + }, + "vertices": { + "#": 1333 + } + }, + [ + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + } + ], + { + "x": -0.49996330911298315, + "y": 0.8660465862416383 + }, + { + "x": -0.500034113821861, + "y": -0.8660057072643261 + }, + { + "x": 0.9999999991644503, + "y": -0.000040879082625906984 + }, + { + "max": { + "#": 1321 + }, + "min": { + "#": 1322 + } + }, + { + "x": 518.311381365811, + "y": 257.89450937810625 + }, + { + "x": 468.01814951715954, + "y": 196.91686024835903 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 501.54614948914525, + "y": 228.85919469930846 + }, + { + "x": -0.0012761370817611336, + "y": -0.002210122547083198 + }, + { + "x": 501.54611183881366, + "y": 231.76483967680025 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1331 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00003499120418837265, + "y": -2.9056434421041786 + }, + [ + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 518.3113364401812, + "y": 257.89450937810625 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 468.01814951715954, + "y": 228.86056529319075 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 518.3089625100951, + "y": 199.82250942662836 + }, + { + "angle": 0.00003210620494130309, + "anglePrev": 0.00002332786466683925, + "angularSpeed": 0.000008778340274463842, + "angularVelocity": 0.000008778340274463842, + "area": 4167.4330549999995, + "axes": { + "#": 1338 + }, + "bounds": { + "#": 1346 + }, + "collisionFilter": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "density": 0.001, + "force": { + "#": 1351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 11100.542061550868, + "inverseInertia": 0.00009008569081177725, + "inverseMass": 0.23995586415004816, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.167433054999999, + "motion": 0, + "parent": null, + "position": { + "#": 1352 + }, + "positionImpulse": { + "#": 1353 + }, + "positionPrev": { + "#": 1354 + }, + "region": { + "#": 1355 + }, + "render": { + "#": 1356 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9070318252157703, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1358 + }, + "vertices": { + "#": 1359 + } + }, + [ + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + } + ], + { + "x": 0.6234844569887681, + "y": 0.7818357448297059 + }, + { + "x": -0.22256103251391152, + "y": 0.9749187590801308 + }, + { + "x": -0.9009865283180496, + "y": 0.4338470649772669 + }, + { + "x": -0.9009586680950169, + "y": -0.4339049185990558 + }, + { + "x": -0.22249843017215873, + "y": -0.9749330482504557 + }, + { + "x": 0.6235346592606554, + "y": -0.7817957077783804 + }, + { + "x": 0.9999999994845958, + "y": 0.0000321062049357872 + }, + { + "max": { + "#": 1347 + }, + "min": { + "#": 1348 + } + }, + { + "x": 593.000223986292, + "y": 264.4540554816352 + }, + { + "x": 518.8145936851596, + "y": 185.453023696932 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.8394705242548, + "y": 226.40677668422342 + }, + { + "x": 0.040072745445051364, + "y": -0.3955488295377201 + }, + { + "x": 557.8395572413606, + "y": 229.3138085081458 + }, + { + "endCol": 12, + "endRow": 5, + "id": "10,12,3,5", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1357 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00008671710578028068, + "y": -2.9070318239223796 + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 592.9991367417681, + "y": 243.33990553639975 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 566.5224588328969, + "y": 264.4540554816352 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 533.5067008022737, + "y": 256.9169954670572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 518.8146804022654, + "y": 226.40552374631355 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 533.5086599871113, + "y": 195.89499549850814 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 566.5249019224551, + "y": 188.3600555208544 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 593.000223986292, + "y": 209.47590555385355 + }, + { + "angle": -0.005168767194661946, + "anglePrev": -0.004496688551899041, + "angularSpeed": 0.000672078642762905, + "angularVelocity": -0.000672078642762905, + "area": 1687.7661798887366, + "axes": { + "#": 1368 + }, + "bounds": { + "#": 1371 + }, + "collisionFilter": { + "#": 1374 + }, + "constraintImpulse": { + "#": 1375 + }, + "density": 0.001, + "force": { + "#": 1376 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1980.3012000583947, + "inverseInertia": 0.0005049736878261308, + "inverseMass": 0.5924991340127004, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6877661798887367, + "motion": 0, + "parent": null, + "position": { + "#": 1377 + }, + "positionImpulse": { + "#": 1378 + }, + "positionPrev": { + "#": 1379 + }, + "region": { + "#": 1380 + }, + "render": { + "#": 1381 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.901237025505347, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1383 + }, + "vertices": { + "#": 1384 + } + }, + [ + { + "#": 1369 + }, + { + "#": 1370 + } + ], + { + "x": 0.00516874417976236, + "y": 0.9999866419525832 + }, + { + "x": -0.9999866419525832, + "y": 0.00516874417976236 + }, + { + "max": { + "#": 1372 + }, + "min": { + "#": 1373 + } + }, + { + "x": 636.5683460407896, + "y": 193.0367145148601 + }, + { + "x": 600.7903207558576, + "y": 142.42372121400544 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6680600682779, + "y": 169.18079257177138 + }, + { + "x": 0.050142466918345834, + "y": -1.5644626467540796 + }, + { + "x": 618.6455134081865, + "y": 172.08194198644858 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1382 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.022546660091419427, + "y": -2.9011494146771954 + }, + [ + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600.7903207558576, + "y": 145.5084142234447 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 636.3001344735894, + "y": 145.32487062868265 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 636.5457993806982, + "y": 192.85317092009808 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 601.0359856629664, + "y": 193.0367145148601 + }, + { + "angle": 0.00014588391655155744, + "anglePrev": 0.00072632318591547, + "angularSpeed": 0.00028909740604354215, + "angularVelocity": -0.0005866115731476555, + "area": 888.874596, + "axes": { + "#": 1390 + }, + "bounds": { + "#": 1393 + }, + "collisionFilter": { + "#": 1396 + }, + "constraintImpulse": { + "#": 1397 + }, + "density": 0.001, + "force": { + "#": 1398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 526.7320316094421, + "inverseInertia": 0.0018984985533241191, + "inverseMass": 1.125018089728374, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.888874596, + "motion": 0, + "parent": null, + "position": { + "#": 1399 + }, + "positionImpulse": { + "#": 1400 + }, + "positionPrev": { + "#": 1401 + }, + "region": { + "#": 1402 + }, + "render": { + "#": 1403 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.901292228886559, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1405 + }, + "vertices": { + "#": 1406 + } + }, + [ + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "x": 0.00014588391603410396, + "y": -0.9999999893589416 + }, + { + "x": 0.9999999893589416, + "y": 0.00014588391603410396 + }, + { + "max": { + "#": 1394 + }, + "min": { + "#": 1395 + } + }, + { + "x": 540.5583785797327, + "y": 112.62972048706507 + }, + { + "x": 510.73937787778215, + "y": 79.91007926553776 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 525.6492040468227, + "y": 97.72054595415499 + }, + { + "x": 1.010495756383722, + "y": -6.804657324326492 + }, + { + "x": 525.6284392657474, + "y": 100.63159511250167 + }, + { + "endCol": 11, + "endRow": 2, + "id": "10,11,1,2", + "startCol": 10, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1404 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.019580587920700054, + "y": -2.9096226582269367 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540.5540291966602, + "y": 112.62972048706507 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.7400295139127, + "y": 112.6253711039924 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.7443788969852, + "y": 82.81137142124491 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540.5583785797327, + "y": 82.81572080431751 + }, + { + "angle": -0.0001333126335067146, + "anglePrev": 0.000006550375617186982, + "angularSpeed": 0.00013986300912390158, + "angularVelocity": -0.00013986300912390158, + "area": 1624.121534624581, + "axes": { + "#": 1412 + }, + "bounds": { + "#": 1415 + }, + "collisionFilter": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "density": 0.001, + "force": { + "#": 1420 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1766.6812602831346, + "inverseInertia": 0.0005660330601116675, + "inverseMass": 0.6157174686013581, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.624121534624581, + "motion": 0, + "parent": null, + "position": { + "#": 1421 + }, + "positionImpulse": { + "#": 1422 + }, + "positionPrev": { + "#": 1423 + }, + "region": { + "#": 1424 + }, + "render": { + "#": 1425 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9069431094865124, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1427 + }, + "vertices": { + "#": 1428 + } + }, + [ + { + "#": 1413 + }, + { + "#": 1414 + } + ], + { + "x": 0.00013331263311183681, + "y": 0.9999999911138708 + }, + { + "x": -0.9999999911138708, + "y": 0.00013331263311183681 + }, + { + "max": { + "#": 1416 + }, + "min": { + "#": 1417 + } + }, + { + "x": 704.5012606569396, + "y": 156.5653931170571 + }, + { + "x": 662.1985147531855, + "y": 115.24773221412065 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 683.3540892773099, + "y": 137.36002814754522 + }, + { + "x": -0.00008588353153818644, + "y": -0.30636627848969455 + }, + { + "x": 683.3624924218045, + "y": 140.2669591114578 + }, + { + "endCol": 14, + "endRow": 3, + "id": "13,14,2,3", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1426 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.008403144494643584, + "y": -2.906930963912579 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 662.2069178976801, + "y": 118.16030086573713 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 704.4961407729212, + "y": 118.15466317803323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 704.5012606569396, + "y": 156.5597554293533 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 662.2120377816985, + "y": 156.5653931170571 + }, + { + "angle": 0.0003819801945061525, + "anglePrev": 0.00034122406827272525, + "angularSpeed": 0.00004075612623342721, + "angularVelocity": 0.00004075612623342721, + "area": 925.4335858447538, + "axes": { + "#": 1434 + }, + "bounds": { + "#": 1437 + }, + "collisionFilter": { + "#": 1440 + }, + "constraintImpulse": { + "#": 1441 + }, + "density": 0.001, + "force": { + "#": 1442 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 658.9066011822378, + "inverseInertia": 0.001517665778739746, + "inverseMass": 1.080574570985751, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9254335858447538, + "motion": 0, + "parent": null, + "position": { + "#": 1443 + }, + "positionImpulse": { + "#": 1444 + }, + "positionPrev": { + "#": 1445 + }, + "region": { + "#": 1446 + }, + "render": { + "#": 1447 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907655876534939, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1449 + }, + "vertices": { + "#": 1450 + } + }, + [ + { + "#": 1435 + }, + { + "#": 1436 + } + ], + { + "x": -0.0003819801852171027, + "y": 0.9999999270455663 + }, + { + "x": -0.9999999270455663, + "y": -0.0003819801852171027 + }, + { + "max": { + "#": 1438 + }, + "min": { + "#": 1439 + } + }, + { + "x": 744.5324630224056, + "y": 218.9462345861678 + }, + { + "x": 704.509999832723, + "y": 195.80299404008178 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 724.5212314275643, + "y": 207.3746143131248 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 724.5210851648377, + "y": 210.28227018598105 + }, + { + "endCol": 15, + "endRow": 4, + "id": "14,15,4,4", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1448 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00014626272660734686, + "y": -2.9076558728562394 + }, + [ + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 704.5188342543346, + "y": 195.80299404008178 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 744.5324630224056, + "y": 195.81827845452486 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 744.523628600794, + "y": 218.9462345861678 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 704.509999832723, + "y": 218.93095017172473 + }, + { + "angle": 0.002904898989147602, + "anglePrev": 0.0027800197017961155, + "angularSpeed": 0.0001248792873514865, + "angularVelocity": 0.0001248792873514865, + "area": 5929.347511999999, + "axes": { + "#": 1456 + }, + "bounds": { + "#": 1470 + }, + "circleRadius": 43.65625, + "collisionFilter": { + "#": 1473 + }, + "constraintImpulse": { + "#": 1474 + }, + "density": 0.001, + "force": { + "#": 1475 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 22382.17146584697, + "inverseInertia": 0.00004467841744157413, + "inverseMass": 0.1686526212161066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.929347512, + "motion": 0, + "parent": null, + "position": { + "#": 1476 + }, + "positionImpulse": { + "#": 1477 + }, + "positionPrev": { + "#": 1478 + }, + "region": { + "#": 1479 + }, + "render": { + "#": 1480 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9021506738609877, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1482 + }, + "vertices": { + "#": 1483 + } + }, + [ + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + } + ], + { + "x": -0.9702371120239448, + "y": -0.2421568633168081 + }, + { + "x": -0.8841018656990898, + "y": -0.4672942232334877 + }, + { + "x": -0.746553514413979, + "y": -0.665325371616127 + }, + { + "x": -0.5657196018610702, + "y": -0.8245976789138761 + }, + { + "x": -0.351902256595603, + "y": -0.9360367523783041 + }, + { + "x": -0.11759467512761783, + "y": -0.9930616760209966 + }, + { + "x": 0.1233621457631648, + "y": -0.9923617188267128 + }, + { + "x": 0.3573344714399035, + "y": -0.9339764855288191 + }, + { + "x": 0.5705007732851636, + "y": -0.8212970642106489 + }, + { + "x": 0.7504062992117582, + "y": -0.6609768423351252 + }, + { + "x": 0.8868018146237686, + "y": -0.46214991245264914 + }, + { + "x": 0.9716276120386553, + "y": -0.23651592657590975 + }, + { + "x": 0.9999957807838986, + "y": 0.002904894903680924 + }, + { + "max": { + "#": 1471 + }, + "min": { + "#": 1472 + } + }, + { + "x": 680.3050067536011, + "y": 295.1848156834023 + }, + { + "x": 593.5942280621157, + "y": 204.97103700108678 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 636.9473307667114, + "y": 251.52899987750044 + }, + { + "x": -0.20634093553583363, + "y": -0.9233586368477935 + }, + { + "x": 636.9427574844174, + "y": 254.43114694801235 + }, + { + "endCol": 14, + "endRow": 6, + "id": "12,14,4,6", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1481 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004573282294046521, + "y": -2.902147070511907 + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 680.2698623573409, + "y": 256.91687001132107 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 677.7211878645255, + "y": 267.12850946488936 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 672.8031377851039, + "y": 276.43326230504056 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 665.8012853738569, + "y": 284.2899558087426 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 657.1229535498585, + "y": 290.2437712872887 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 647.2721539991642, + "y": 293.94717137532206 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 636.8205146747964, + "y": 295.1848156834023 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 626.3762421639038, + "y": 293.8864706914148 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 616.5471247487708, + "y": 290.1259022716769 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 607.9035296580307, + "y": 284.1217682036092 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 600.9474409610963, + "y": 276.2245281768417 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 596.0835323128897, + "y": 266.89135965474264 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 593.5942280621157, + "y": 256.6650853406497 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 593.6247991760819, + "y": 246.14112974367993 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 596.1734736688973, + "y": 235.9294902901116 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 601.0915237483189, + "y": 226.6247374499605 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 608.0933761595659, + "y": 218.76804394625844 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 616.7717079835643, + "y": 212.81422846771238 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 626.6225075342586, + "y": 209.11082837967905 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 637.0741468586264, + "y": 207.8731840715987 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 647.5184193695189, + "y": 209.1715290635864 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 657.347536784652, + "y": 212.93209748332407 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 665.991131875392, + "y": 218.93623155139178 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 672.9472205723265, + "y": 226.8334715781594 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 677.8111292205331, + "y": 236.16664010025835 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 680.3004334713071, + "y": 246.39291441435125 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2550.166396822507, + "axes": { + "#": 1511 + }, + "bounds": { + "#": 1514 + }, + "collisionFilter": { + "#": 1517 + }, + "constraintImpulse": { + "#": 1518 + }, + "density": 0.001, + "force": { + "#": 1519 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 10939.165130883785, + "inverseInertia": 0.00009141465441240754, + "inverseMass": 0.392131274745834, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5501663968225072, + "motion": 0, + "parent": null, + "position": { + "#": 1520 + }, + "positionImpulse": { + "#": 1521 + }, + "positionPrev": { + "#": 1522 + }, + "region": { + "#": 1523 + }, + "render": { + "#": 1524 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1526 + }, + "vertices": { + "#": 1527 + } + }, + [ + { + "#": 1512 + }, + { + "#": 1513 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1515 + }, + "min": { + "#": 1516 + } + }, + { + "x": 942.2964693144023, + "y": 218.76932067879017 + }, + { + "x": 831.2026764474614, + "y": 195.81424523297397 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7495728809319, + "y": 207.29178295588207 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7495728809319, + "y": 210.19905367091775 + }, + { + "endCol": 19, + "endRow": 4, + "id": "17,19,4,4", + "startCol": 17, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1525 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -2.9072707150356862 + }, + [ + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 831.2026764474614, + "y": 195.81424523297397 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 942.2964693144023, + "y": 195.81424523297397 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 942.2964693144023, + "y": 218.76932067879017 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 831.2026764474614, + "y": 218.76932067879017 + }, + { + "angle": -0.0004163078228375868, + "anglePrev": -0.00030738984108524256, + "angularSpeed": 0.00006425905177449534, + "angularVelocity": 0.000004477426779834364, + "area": 5174.381305999998, + "axes": { + "#": 1533 + }, + "bounds": { + "#": 1547 + }, + "circleRadius": 40.782407407407405, + "collisionFilter": { + "#": 1550 + }, + "constraintImpulse": { + "#": 1551 + }, + "density": 0.001, + "force": { + "#": 1552 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17045.3242729355, + "inverseInertia": 0.000058667115039154525, + "inverseMass": 0.1932598200369272, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.174381305999998, + "motion": 0, + "parent": null, + "position": { + "#": 1553 + }, + "positionImpulse": { + "#": 1554 + }, + "positionPrev": { + "#": 1555 + }, + "region": { + "#": 1556 + }, + "render": { + "#": 1557 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9152896284418692, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1559 + }, + "vertices": { + "#": 1560 + } + }, + [ + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + } + ], + { + "x": -0.9710384761975923, + "y": -0.23892316284499981 + }, + { + "x": -0.8856383939397692, + "y": -0.4643755324947543 + }, + { + "x": -0.7488122353962892, + "y": -0.6627821935755458 + }, + { + "x": -0.5684201180599894, + "y": -0.8227384574606127 + }, + { + "x": -0.3549545445829145, + "y": -0.9348835602789985 + }, + { + "x": -0.12094206863336164, + "y": -0.9926595670393166 + }, + { + "x": 0.12011552292104066, + "y": -0.9927599212062328 + }, + { + "x": 0.35417602295777767, + "y": -0.935178776898734 + }, + { + "x": 0.5677348961988832, + "y": -0.8232114477083298 + }, + { + "x": 0.7482601330794221, + "y": -0.6634054365499014 + }, + { + "x": 0.8852514406667539, + "y": -0.46511276782887506 + }, + { + "x": 0.9708392084714617, + "y": -0.2397315817628242 + }, + { + "x": 0.9999999133438998, + "y": -0.00041630781081238266 + }, + { + "max": { + "#": 1548 + }, + "min": { + "#": 1549 + } + }, + { + "x": 1027.824284446427, + "y": 219.73268714519128 + }, + { + "x": 946.84702381736, + "y": 135.25340631315476 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 987.3340668782859, + "y": 178.95069067920028 + }, + { + "x": -0.49662490203629056, + "y": -1.8317161351975668 + }, + { + "x": 987.3320081912138, + "y": 181.8694784624965 + }, + { + "endCol": 21, + "endRow": 4, + "id": "19,21,2,4", + "startCol": 19, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1558 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0013987244552708944, + "y": -2.90950374148278 + }, + [ + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1027.821109939211, + "y": 183.8498360314782 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1025.472084217475, + "y": 193.39681477653787 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1020.9067085729005, + "y": 202.10371613258414 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1014.3907727469913, + "y": 209.46542940550069 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1006.3020985272491, + "y": 215.05379726802357 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 997.1105505729071, + "y": 218.54362408364523 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 987.3510447434265, + "y": 219.73268714519128 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 977.5905522644343, + "y": 218.5517504121123 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 968.396101812035, + "y": 215.0695778319002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 960.3027774340463, + "y": 209.48794666237188 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 953.7807143897778, + "y": 202.1316612106927 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 949.2080908262162, + "y": 193.4285640754216 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 946.8511169557561, + "y": 183.88354447491963 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 946.84702381736, + "y": 174.05154532692237 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 949.1960495390964, + "y": 164.5045665818627 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 953.7614251836712, + "y": 155.79766522581642 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 960.2773610095804, + "y": 148.43595195289998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 968.3660352293226, + "y": 142.84758409037704 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 977.5575831836646, + "y": 139.3577572747554 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 987.3170890131452, + "y": 138.16869421320933 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 997.0775814921374, + "y": 139.34963094628836 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1006.2720319445367, + "y": 142.83180352650035 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1014.3653563225254, + "y": 148.41343469602873 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1020.8874193667939, + "y": 155.76972014770786 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1025.4600429303553, + "y": 164.4728172829789 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1027.8170168008153, + "y": 174.01783688348092 + }, + { + "angle": -0.004791579552306189, + "anglePrev": -0.003659575533177995, + "angularSpeed": 0.0009078537278077311, + "angularVelocity": -0.00028372365897098937, + "area": 1308.2034644955884, + "axes": { + "#": 1588 + }, + "bounds": { + "#": 1591 + }, + "collisionFilter": { + "#": 1594 + }, + "constraintImpulse": { + "#": 1595 + }, + "density": 0.001, + "force": { + "#": 1596 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1149.8579054087725, + "inverseInertia": 0.0008696726745940854, + "inverseMass": 0.7644070873834413, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3082034644955884, + "motion": 0, + "parent": null, + "position": { + "#": 1597 + }, + "positionImpulse": { + "#": 1598 + }, + "positionPrev": { + "#": 1599 + }, + "region": { + "#": 1600 + }, + "render": { + "#": 1601 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.920073601620103, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1603 + }, + "vertices": { + "#": 1604 + } + }, + [ + { + "#": 1589 + }, + { + "#": 1590 + } + ], + { + "x": 0.004791561217160725, + "y": 0.9999885204046607 + }, + { + "x": -0.9999885204046607, + "y": 0.004791561217160725 + }, + { + "max": { + "#": 1592 + }, + "min": { + "#": 1593 + } + }, + { + "x": 1066.432561531742, + "y": 206.99102622657855 + }, + { + "x": 1027.7622046754166, + "y": 169.9093688842437 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1047.0944151112844, + "y": 189.91023133952072 + }, + { + "x": -0.20591115808569205, + "y": -1.2407618862830483 + }, + { + "x": 1047.0840656856274, + "y": 192.81645570145722 + }, + { + "endCol": 22, + "endRow": 4, + "id": "21,22,3,4", + "startCol": 21, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1602 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.012959798064457573, + "y": -2.94294584579373 + }, + [ + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1027.7622046754166, + "y": 173.01392141850303 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1066.263820300544, + "y": 172.8294364524629 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1066.426625547152, + "y": 206.8065412605384 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1027.9250099220246, + "y": 206.99102622657855 + }, + { + "angle": -0.001175711930161885, + "anglePrev": -0.0009522887928797848, + "angularSpeed": 0.00022342313728210042, + "angularVelocity": -0.00022342313728210042, + "area": 3803.7767479999993, + "axes": { + "#": 1610 + }, + "bounds": { + "#": 1618 + }, + "collisionFilter": { + "#": 1621 + }, + "constraintImpulse": { + "#": 1622 + }, + "density": 0.001, + "force": { + "#": 1623 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 9247.768748441516, + "inverseInertia": 0.00010813419184692798, + "inverseMass": 0.2628966067805618, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.8037767479999993, + "motion": 0, + "parent": null, + "position": { + "#": 1624 + }, + "positionImpulse": { + "#": 1625 + }, + "positionPrev": { + "#": 1626 + }, + "region": { + "#": 1627 + }, + "render": { + "#": 1628 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907142839266271, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1630 + }, + "vertices": { + "#": 1631 + } + }, + [ + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": 0.6244068923877252, + "y": 0.781099246407717 + }, + { + "x": -0.22139641898801002, + "y": 0.9751838932525932 + }, + { + "x": -0.9004510804107017, + "y": 0.43495729880897477 + }, + { + "x": -0.9014713590555434, + "y": -0.432838756123515 + }, + { + "x": -0.22368887547805671, + "y": -0.9746606009208348 + }, + { + "x": 0.6225684724423356, + "y": -0.782565330896288 + }, + { + "x": 0.9999993088508081, + "y": -0.0011757116592977558 + }, + { + "max": { + "#": 1619 + }, + "min": { + "#": 1620 + } + }, + { + "x": 1130.183732961886, + "y": 268.49400753128225 + }, + { + "x": 1059.2887995176143, + "y": 192.88891509665902 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1096.5735973623139, + "y": 232.1547865215999 + }, + { + "x": 0.02038303094809737, + "y": -0.4203447972683916 + }, + { + "x": 1096.574560304272, + "y": 235.06192920138704 + }, + { + "endCol": 23, + "endRow": 5, + "id": "22,23,4,5", + "startCol": 22, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1629 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0009629419579641762, + "y": -2.9071426797871376 + }, + [ + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1130.183732961886, + "y": 248.29228184672178 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1104.9124669000964, + "y": 268.49400753128225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1073.362023576377, + "y": 261.33109680471404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1059.2897624595723, + "y": 232.19862159129497 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1073.2934819380632, + "y": 203.03313709732953 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1104.8269950138883, + "y": 195.79605777644616 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1130.145693986861, + "y": 215.93830420816275 + }, + { + "angle": -0.0030690149303487617, + "anglePrev": -0.0024477294074841923, + "angularSpeed": 0.0006212855228645692, + "angularVelocity": -0.0006212855228645692, + "area": 1519.5385669833, + "axes": { + "#": 1640 + }, + "bounds": { + "#": 1643 + }, + "collisionFilter": { + "#": 1646 + }, + "constraintImpulse": { + "#": 1647 + }, + "density": 0.001, + "force": { + "#": 1648 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1623.6987742797708, + "inverseInertia": 0.0006158777821604092, + "inverseMass": 0.6580945174595165, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5195385669833, + "motion": 0, + "parent": null, + "position": { + "#": 1649 + }, + "positionImpulse": { + "#": 1650 + }, + "positionPrev": { + "#": 1651 + }, + "region": { + "#": 1652 + }, + "render": { + "#": 1653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9110166449876647, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1655 + }, + "vertices": { + "#": 1656 + } + }, + [ + { + "#": 1641 + }, + { + "#": 1642 + } + ], + { + "x": 0.0030690101125844657, + "y": 0.9999952905773751 + }, + { + "x": -0.9999952905773751, + "y": 0.0030690101125844657 + }, + { + "max": { + "#": 1644 + }, + "min": { + "#": 1645 + } + }, + { + "x": 1168.1502356059268, + "y": 241.8225960289607 + }, + { + "x": 1134.950554393898, + "y": 195.7565914207639 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1151.5503949999124, + "y": 218.78959372486224 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1151.554563590535, + "y": 221.70060738512692 + }, + { + "endCol": 24, + "endRow": 5, + "id": "23,24,4,5", + "startCol": 23, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1654 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.004168590622650754, + "y": -2.9110136602646612 + }, + [ + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1134.950554393898, + "y": 195.85804912197162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1168.009169282308, + "y": 195.7565914207639 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1168.1502356059268, + "y": 241.72113832775298 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1135.091620717517, + "y": 241.8225960289607 + }, + { + "angle": -0.000760387128499708, + "anglePrev": -0.0005944951075460047, + "angularSpeed": 0.00016589202095370338, + "angularVelocity": -0.00016589202095370338, + "area": 3306.4800040000005, + "axes": { + "#": 1662 + }, + "bounds": { + "#": 1665 + }, + "collisionFilter": { + "#": 1668 + }, + "constraintImpulse": { + "#": 1669 + }, + "density": 0.001, + "force": { + "#": 1670 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 7288.540011234562, + "inverseInertia": 0.00013720168901571494, + "inverseMass": 0.302436427496992, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.3064800040000004, + "motion": 0, + "parent": null, + "position": { + "#": 1671 + }, + "positionImpulse": { + "#": 1672 + }, + "positionPrev": { + "#": 1673 + }, + "region": { + "#": 1674 + }, + "render": { + "#": 1675 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8962677923100384, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1677 + }, + "vertices": { + "#": 1678 + } + }, + [ + { + "#": 1663 + }, + { + "#": 1664 + } + ], + { + "x": -0.0007603870552251838, + "y": -0.9999997109057213 + }, + { + "x": 0.9999997109057213, + "y": -0.0007603870552251838 + }, + { + "max": { + "#": 1666 + }, + "min": { + "#": 1667 + } + }, + { + "x": 1233.4067834934149, + "y": 253.3888678149733 + }, + { + "x": 1175.8587579092593, + "y": 192.9468937976527 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1204.6316114857348, + "y": 224.61601423849814 + }, + { + "x": 0.815405057661124, + "y": 0 + }, + { + "x": 1204.62929305453, + "y": 227.5122811028684 + }, + { + "endCol": 25, + "endRow": 5, + "id": "24,25,4,5", + "startCol": 24, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1676 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0023184312046623744, + "y": -2.896266864370273 + }, + [ + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1233.4044650622102, + "y": 253.34514403852376 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1175.9024816857093, + "y": 253.3888678149733 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1175.8587579092593, + "y": 195.8868844384725 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1233.3607412857602, + "y": 195.84316066202297 + }, + { + "angle": -0.07442512141606533, + "anglePrev": -0.04003764591244662, + "angularSpeed": 0.021046028009200465, + "angularVelocity": -0.033254015933553795, + "area": 1545.32445, + "axes": { + "#": 1684 + }, + "bounds": { + "#": 1688 + }, + "collisionFilter": { + "#": 1691 + }, + "constraintImpulse": { + "#": 1692 + }, + "density": 0.001, + "force": { + "#": 1693 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 1838.3045471526925, + "inverseInertia": 0.000543979506305893, + "inverseMass": 0.6471132971461107, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.54532445, + "motion": 0, + "parent": null, + "position": { + "#": 1694 + }, + "positionImpulse": { + "#": 1695 + }, + "positionPrev": { + "#": 1696 + }, + "region": { + "#": 1697 + }, + "render": { + "#": 1698 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.306341431621366, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1700 + }, + "vertices": { + "#": 1701 + } + }, + [ + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + } + ], + { + "x": -0.43423154080596915, + "y": 0.9008012927218046 + }, + { + "x": -0.5630198147202603, + "y": -0.8264433968714153 + }, + { + "x": 0.997231728815685, + "y": -0.07435643242706003 + }, + { + "max": { + "#": 1689 + }, + "min": { + "#": 1690 + } + }, + { + "x": 80.37498438089652, + "y": 350.10615016182135 + }, + { + "x": 26.55575378638824, + "y": 288.22519418752074 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 60.95669658087375, + "y": 321.6011150993016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 60.96311704850627, + "y": 323.44601161489163 + }, + { + "endCol": 1, + "endRow": 7, + "id": "0,1,6,7", + "startCol": 0, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1699 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.006420467632516136, + "y": -1.8840990853925632 + }, + [ + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 80.37498438089652, + "y": 350.10615016182135 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 26.562174254020753, + "y": 324.1656684537109 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 75.93293110770398, + "y": 290.5315266823724 + }, + { + "angle": -0.013090984805482497, + "anglePrev": -0.008139204296005016, + "angularSpeed": 0.004852682833267881, + "angularVelocity": -0.0049514713299681126, + "area": 832.6916065934118, + "axes": { + "#": 1706 + }, + "bounds": { + "#": 1709 + }, + "collisionFilter": { + "#": 1712 + }, + "constraintImpulse": { + "#": 1713 + }, + "density": 0.001, + "force": { + "#": 1714 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 462.4740461527257, + "inverseInertia": 0.0021622835017854466, + "inverseMass": 1.2009247986671274, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8326916065934119, + "motion": 0, + "parent": null, + "position": { + "#": 1715 + }, + "positionImpulse": { + "#": 1716 + }, + "positionPrev": { + "#": 1717 + }, + "region": { + "#": 1718 + }, + "render": { + "#": 1719 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7916214681372145, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1721 + }, + "vertices": { + "#": 1722 + } + }, + [ + { + "#": 1707 + }, + { + "#": 1708 + } + ], + { + "x": 0.013090610899869603, + "y": 0.9999143142821127 + }, + { + "x": -0.9999143142821127, + "y": 0.013090610899869603 + }, + { + "max": { + "#": 1710 + }, + "min": { + "#": 1711 + } + }, + { + "x": 92.0116725552267, + "y": 318.1776662283827 + }, + { + "x": 62.31164230577707, + "y": 286.59401269068826 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 77.1725207585053, + "y": 303.78160791936176 + }, + { + "x": -1.9975865102589232, + "y": -0.12977207929668164 + }, + { + "x": 77.20418457480324, + "y": 306.57997467326163 + }, + { + "endCol": 1, + "endRow": 6, + "id": "1,1,6,6", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1720 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03158355085652431, + "y": -2.798330303826333 + }, + [ + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 62.3333689617839, + "y": 289.7692210053699 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 91.63975678467217, + "y": 289.38554961034083 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 92.0116725552267, + "y": 317.7939948333536 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 62.70528473233842, + "y": 318.1776662283827 + }, + { + "angle": 0.00027202611391938204, + "anglePrev": 0.0010912468320649685, + "angularSpeed": 0.0007617880265641005, + "angularVelocity": -0.0008206096746457496, + "area": 979.5317619999998, + "axes": { + "#": 1728 + }, + "bounds": { + "#": 1734 + }, + "collisionFilter": { + "#": 1737 + }, + "constraintImpulse": { + "#": 1738 + }, + "density": 0.001, + "force": { + "#": 1739 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 621.1930410018283, + "inverseInertia": 0.0016098055419089229, + "inverseMass": 1.0208959410955785, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9795317619999999, + "motion": 0, + "parent": null, + "position": { + "#": 1740 + }, + "positionImpulse": { + "#": 1741 + }, + "positionPrev": { + "#": 1742 + }, + "region": { + "#": 1743 + }, + "render": { + "#": 1744 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.888921323460935, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1746 + }, + "vertices": { + "#": 1747 + } + }, + [ + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + } + ], + { + "x": 0.3087809159898413, + "y": 0.9511331904210234 + }, + { + "x": -0.8091803827158353, + "y": 0.5875603017800425 + }, + { + "x": -0.8088605994846405, + "y": -0.5880004511914495 + }, + { + "x": 0.3092983363970668, + "y": -0.9509650567197554 + }, + { + "x": 0.9999999630008971, + "y": 0.00027202611056447476 + }, + { + "max": { + "#": 1735 + }, + "min": { + "#": 1736 + } + }, + { + "x": 128.4715196039122, + "y": 327.5700930082743 + }, + { + "x": 91.74474530581291, + "y": 286.0731784068056 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.04737146808016, + "y": 308.2677998965287 + }, + { + "x": -1.7886709376227028, + "y": -0.018291183010657505 + }, + { + "x": 112.05705726274907, + "y": 311.1551146814158 + }, + { + "endCol": 2, + "endRow": 6, + "id": "1,2,6,6", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1745 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.009476948676876873, + "y": -2.887216622545168 + }, + [ + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 128.46502906091416, + "y": 320.20226636963287 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 105.7700239799955, + "y": 327.5700930082743 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 91.75027569094622, + "y": 308.2622785563044 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 105.78052636407214, + "y": 288.96209443673575 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 128.4715196039122, + "y": 296.34226725243144 + }, + { + "angle": 0.00024604985108307064, + "anglePrev": 0.0003579175164405313, + "angularSpeed": 0.00011210871714860571, + "angularVelocity": -0.00011656261670983035, + "area": 1515.3131811080627, + "axes": { + "#": 1754 + }, + "bounds": { + "#": 1757 + }, + "collisionFilter": { + "#": 1760 + }, + "constraintImpulse": { + "#": 1761 + }, + "density": 0.001, + "force": { + "#": 1762 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1532.4206796199487, + "inverseInertia": 0.0006525623239749069, + "inverseMass": 0.6599295858224876, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5153131811080627, + "motion": 0, + "parent": null, + "position": { + "#": 1763 + }, + "positionImpulse": { + "#": 1764 + }, + "positionPrev": { + "#": 1765 + }, + "region": { + "#": 1766 + }, + "render": { + "#": 1767 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.904387910519076, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1769 + }, + "vertices": { + "#": 1770 + } + }, + [ + { + "#": 1755 + }, + { + "#": 1756 + } + ], + { + "x": -0.000246049848600406, + "y": 0.9999999697297357 + }, + { + "x": -0.9999999697297357, + "y": -0.000246049848600406 + }, + { + "max": { + "#": 1758 + }, + "min": { + "#": 1759 + } + }, + { + "x": 167.94134080969678, + "y": 326.9927056335369 + }, + { + "x": 128.09355185664964, + "y": 286.0414798055724 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 148.01774472797564, + "y": 307.9692866441573 + }, + { + "x": -1.4593633535753638, + "y": -0.0005669771302050521 + }, + { + "x": 148.0198326739039, + "y": 310.87249976106915 + }, + { + "endCol": 3, + "endRow": 6, + "id": "2,3,6,6", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1768 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0017607848810143878, + "y": -2.9031378599916025 + }, + [ + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 128.10350765345868, + "y": 288.9458676547777 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 167.94134080969678, + "y": 288.9556697478911 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.9319818024926, + "y": 326.9927056335369 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.0941486462545, + "y": 326.98290354042354 + }, + { + "angle": 0.00025046827830537457, + "anglePrev": 0.00022739593860854587, + "angularSpeed": 0.00001031123146357061, + "angularVelocity": 0.000029149143857146317, + "area": 1347.9278604289448, + "axes": { + "#": 1776 + }, + "bounds": { + "#": 1779 + }, + "collisionFilter": { + "#": 1782 + }, + "constraintImpulse": { + "#": 1783 + }, + "density": 0.001, + "force": { + "#": 1784 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1394.5666895178056, + "inverseInertia": 0.000717068611717498, + "inverseMass": 0.7418794650344082, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3479278604289449, + "motion": 0, + "parent": null, + "position": { + "#": 1785 + }, + "positionImpulse": { + "#": 1786 + }, + "positionPrev": { + "#": 1787 + }, + "region": { + "#": 1788 + }, + "render": { + "#": 1789 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9065301834429915, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1791 + }, + "vertices": { + "#": 1792 + } + }, + [ + { + "#": 1777 + }, + { + "#": 1778 + } + ], + { + "x": -0.0002504682756865467, + "y": 0.9999999686328209 + }, + { + "x": -0.9999999686328209, + "y": -0.0002504682756865467 + }, + { + "max": { + "#": 1780 + }, + "min": { + "#": 1781 + } + }, + { + "x": 195.35416191826113, + "y": 337.1488218846809 + }, + { + "x": 167.36272742534535, + "y": 286.0587164894252 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.35867427348632, + "y": 313.0570342606371 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.35920573100097, + "y": 315.96230989973964 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1790 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0008992453331018169, + "y": -2.9053602414069815 + }, + [ + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 167.37525333086, + "y": 288.96524663659335 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.35416191826113, + "y": 288.9722544658028 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.34209521611263, + "y": 337.1488218846809 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 167.3631866287115, + "y": 337.14181405547146 + }, + { + "angle": 0.000324475316207535, + "anglePrev": 0.00026745618866581643, + "angularSpeed": 0.00007003211968487952, + "angularVelocity": 0.00006095094936921068, + "area": 2285.4053614040354, + "axes": { + "#": 1798 + }, + "bounds": { + "#": 1801 + }, + "collisionFilter": { + "#": 1804 + }, + "constraintImpulse": { + "#": 1805 + }, + "density": 0.001, + "force": { + "#": 1806 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 3483.877210739159, + "inverseInertia": 0.00028703652267579035, + "inverseMass": 0.43755913803652385, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.2854053614040355, + "motion": 0, + "parent": null, + "position": { + "#": 1807 + }, + "positionImpulse": { + "#": 1808 + }, + "positionPrev": { + "#": 1809 + }, + "region": { + "#": 1810 + }, + "render": { + "#": 1811 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.904383312295452, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1813 + }, + "vertices": { + "#": 1814 + } + }, + [ + { + "#": 1799 + }, + { + "#": 1800 + } + ], + { + "x": -0.00032447531051384615, + "y": 0.9999999473578853 + }, + { + "x": -0.9999999473578853, + "y": -0.00032447531051384615 + }, + { + "max": { + "#": 1802 + }, + "min": { + "#": 1803 + } + }, + { + "x": 241.761922785117, + "y": 337.5713377158841 + }, + { + "x": 194.70587722775232, + "y": 286.06553242804034 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 218.2349442958995, + "y": 313.270626352629 + }, + { + "x": -0.5977446617815325, + "y": 0.00010532398187359366 + }, + { + "x": 218.23618466432424, + "y": 316.17432738663183 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1812 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0014880977739153423, + "y": -2.903702876835041 + }, + [ + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 194.7237308168626, + "y": 288.9699149893739 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 241.761922785117, + "y": 288.98517772212216 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 241.74615777493642, + "y": 337.5713377158841 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 194.707965806682, + "y": 337.55607498313583 + }, + { + "angle": -0.00032435733408170105, + "anglePrev": -0.00022012750290323506, + "angularSpeed": 0.00009747927721572349, + "angularVelocity": -0.00010429170279975156, + "area": 4327.82858, + "axes": { + "#": 1820 + }, + "bounds": { + "#": 1826 + }, + "collisionFilter": { + "#": 1829 + }, + "constraintImpulse": { + "#": 1830 + }, + "density": 0.001, + "force": { + "#": 1831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 12126.33710521863, + "inverseInertia": 0.0000824651328198393, + "inverseMass": 0.23106275618707614, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.32782858, + "motion": 0, + "parent": null, + "position": { + "#": 1832 + }, + "positionImpulse": { + "#": 1833 + }, + "positionPrev": { + "#": 1834 + }, + "region": { + "#": 1835 + }, + "render": { + "#": 1836 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.906704657715344, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1838 + }, + "vertices": { + "#": 1839 + } + }, + [ + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + } + ], + { + "x": 0.3093314197917489, + "y": 0.9509542958153251 + }, + { + "x": -0.8088280979626047, + "y": 0.5880451580841344 + }, + { + "x": -0.8092094012655908, + "y": -0.5875203357360356 + }, + { + "x": 0.3087144567464888, + "y": -0.9511547635352093 + }, + { + "x": 0.9999999473961602, + "y": -0.0003243573283942206 + }, + { + "max": { + "#": 1827 + }, + "min": { + "#": 1828 + } + }, + { + "x": 318.30099321761037, + "y": 370.13090313906224 + }, + { + "x": 241.1090957699662, + "y": 286.072205191989 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 283.776813768516, + "y": 329.5506289618583 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 283.7792722295451, + "y": 332.4573891130673 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1837 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0024757561179171717, + "y": -2.9067468485823724 + }, + [ + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.30099321761037, + "y": 354.61643210980475 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 270.6060229410464, + "y": 370.13090313906224 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 241.1128633688507, + "y": 329.5644673275566 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 270.57970069513254, + "y": 288.9789074079689 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 318.28472540016213, + "y": 304.4624347480976 + }, + { + "angle": -0.000024633336234247963, + "anglePrev": -0.000025700625469665377, + "angularSpeed": 0.0000027385915211240755, + "angularVelocity": 0.000005337910804331234, + "area": 2032.7292721140495, + "axes": { + "#": 1846 + }, + "bounds": { + "#": 1849 + }, + "collisionFilter": { + "#": 1852 + }, + "constraintImpulse": { + "#": 1853 + }, + "density": 0.001, + "force": { + "#": 1854 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 6700.374119056197, + "inverseInertia": 0.00014924539767950423, + "inverseMass": 0.49194942667401764, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.0327292721140497, + "motion": 0, + "parent": null, + "position": { + "#": 1855 + }, + "positionImpulse": { + "#": 1856 + }, + "positionPrev": { + "#": 1857 + }, + "region": { + "#": 1858 + }, + "render": { + "#": 1859 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9097578964086663, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1861 + }, + "vertices": { + "#": 1862 + } + }, + [ + { + "#": 1847 + }, + { + "#": 1848 + } + ], + { + "x": 0.00002463333623175671, + "y": 0.9999999996965994 + }, + { + "x": -0.9999999996965994, + "y": 0.00002463333623175671 + }, + { + "max": { + "#": 1850 + }, + "min": { + "#": 1851 + } + }, + { + "x": 414.87711743135344, + "y": 309.8686376115707 + }, + { + "x": 317.6520210440523, + "y": 286.04775370290974 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.2672920189015, + "y": 299.41307205762297 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.27256296044493, + "y": 302.3234415972286 + }, + { + "endCol": 8, + "endRow": 6, + "id": "6,8,6,6", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1860 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.00474260676691074, + "y": -2.9101056419505085 + }, + [ + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 317.6574666064496, + "y": 288.9599013353356 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 414.8766023794223, + "y": 288.95750650367523 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 414.87711743135344, + "y": 309.86624277991035 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 317.6579816583807, + "y": 309.8686376115707 + }, + { + "angle": -0.00015078445130603597, + "anglePrev": -0.00011201866413490279, + "angularSpeed": 0.000021301563387309615, + "angularVelocity": -0.00002340548361709556, + "area": 1931.953486546484, + "axes": { + "#": 1868 + }, + "bounds": { + "#": 1871 + }, + "collisionFilter": { + "#": 1874 + }, + "constraintImpulse": { + "#": 1875 + }, + "density": 0.001, + "force": { + "#": 1876 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 4690.996610130106, + "inverseInertia": 0.00021317431733813697, + "inverseMass": 0.517610805313733, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.9319534865464842, + "motion": 0, + "parent": null, + "position": { + "#": 1877 + }, + "positionImpulse": { + "#": 1878 + }, + "positionPrev": { + "#": 1879 + }, + "region": { + "#": 1880 + }, + "render": { + "#": 1881 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.908516543497306, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1883 + }, + "vertices": { + "#": 1884 + } + }, + [ + { + "#": 1869 + }, + { + "#": 1870 + } + ], + { + "x": 0.00015078445073466462, + "y": 0.9999999886320247 + }, + { + "x": -0.9999999886320247, + "y": 0.00015078445073466462 + }, + { + "max": { + "#": 1872 + }, + "min": { + "#": 1873 + } + }, + { + "x": 496.285816175316, + "y": 312.4841521458154 + }, + { + "x": 414.2438740944333, + "y": 286.0128569821533 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.2666371456157, + "y": 300.7027617316294 + }, + { + "x": 0.4044060679232704, + "y": -0.005995384622501102 + }, + { + "x": 455.2734968542837, + "y": 303.61559198471093 + }, + { + "endCol": 10, + "endRow": 6, + "id": "8,10,6,6", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1882 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0052900082343398935, + "y": -2.9114606721877294 + }, + [ + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 414.2474581159154, + "y": 288.9337408909022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 496.28226513945003, + "y": 288.92137131744335 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 496.285816175316, + "y": 312.4717825723566 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 414.2510091517813, + "y": 312.4841521458154 + }, + { + "angle": 0.003299828380328299, + "anglePrev": 0.002820456514308874, + "angularSpeed": 0.0007323801979837999, + "angularVelocity": 0.0004987875732493405, + "area": 2376.3179650719107, + "axes": { + "#": 1890 + }, + "bounds": { + "#": 1893 + }, + "collisionFilter": { + "#": 1896 + }, + "constraintImpulse": { + "#": 1897 + }, + "density": 0.001, + "force": { + "#": 1898 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 3764.591504006761, + "inverseInertia": 0.0002656330703970595, + "inverseMass": 0.42081910531267586, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.3763179650719106, + "motion": 0, + "parent": null, + "position": { + "#": 1899 + }, + "positionImpulse": { + "#": 1900 + }, + "positionPrev": { + "#": 1901 + }, + "region": { + "#": 1902 + }, + "render": { + "#": 1903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8896181093325723, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1905 + }, + "vertices": { + "#": 1906 + } + }, + [ + { + "#": 1891 + }, + { + "#": 1892 + } + ], + { + "x": -0.00329982239176598, + "y": 0.9999945555712705 + }, + { + "x": -0.9999945555712705, + "y": -0.00329982239176598 + }, + { + "max": { + "#": 1894 + }, + "min": { + "#": 1895 + } + }, + { + "x": 544.499939368938, + "y": 337.90461328952654 + }, + { + "x": 495.5947819389197, + "y": 286.10069557920207 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.0490051570491, + "y": 313.44746255313134 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520.0609798679214, + "y": 316.3540914767906 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1904 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.010108365513588069, + "y": -2.904321575484687 + }, + [ + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 495.7589495931949, + "y": 288.99031181673615 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 544.499939368938, + "y": 289.15114930186337 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 544.339060720903, + "y": 337.90461328952654 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 495.59807094516003, + "y": 337.7437758043993 + }, + { + "angle": 0.0010168319418853346, + "anglePrev": 0.000852594525684203, + "angularSpeed": 0.00022090755695316466, + "angularVelocity": 0.0001716449881814068, + "area": 7163.665109999999, + "axes": { + "#": 1912 + }, + "bounds": { + "#": 1926 + }, + "circleRadius": 47.985725308641975, + "collisionFilter": { + "#": 1929 + }, + "constraintImpulse": { + "#": 1930 + }, + "density": 0.001, + "force": { + "#": 1931 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 32670.739096352663, + "inverseInertia": 0.000030608429060964806, + "inverseMass": 0.13959334846684368, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.163665109999999, + "motion": 0, + "parent": null, + "position": { + "#": 1932 + }, + "positionImpulse": { + "#": 1933 + }, + "positionPrev": { + "#": 1934 + }, + "region": { + "#": 1935 + }, + "render": { + "#": 1936 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.899976157311957, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1938 + }, + "vertices": { + "#": 1939 + } + }, + [ + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + } + ], + { + "x": -0.970686663064861, + "y": -0.24034850144738626 + }, + { + "x": -0.8849809238236995, + "y": -0.4656272806313553 + }, + { + "x": -0.7478448659706336, + "y": -0.6638735244316986 + }, + { + "x": -0.5672169797926528, + "y": -0.8235683929309704 + }, + { + "x": -0.353656389013437, + "y": -0.9353754104689604 + }, + { + "x": -0.1195774612645233, + "y": -0.9928248741633797 + }, + { + "x": 0.12159628468879942, + "y": -0.9925796409104308 + }, + { + "x": 0.35555789556845235, + "y": -0.9346542584822116 + }, + { + "x": 0.5688906669902835, + "y": -0.8224131619881522 + }, + { + "x": 0.7491934141863692, + "y": -0.662351287565572 + }, + { + "x": 0.8859260225084392, + "y": -0.4638265652616031 + }, + { + "x": 0.9711734435180336, + "y": -0.2383739553838144 + }, + { + "x": 0.9999994830264451, + "y": 0.0010168317666602539 + }, + { + "max": { + "#": 1927 + }, + "min": { + "#": 1928 + } + }, + { + "x": 639.180515866289, + "y": 378.7668511557902 + }, + { + "x": 543.8735379524119, + "y": 279.895017932106 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.5386591379029, + "y": 330.78087596328317 + }, + { + "x": 0.7649235800058615, + "y": -0.4099543229548823 + }, + { + "x": 591.5594649321645, + "y": 333.67337460427285 + }, + { + "endCol": 13, + "endRow": 7, + "id": "11,13,5,7", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1937 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.021424894950541784, + "y": -2.8932640303308403 + }, + [ + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 639.1687531564121, + "y": 336.61331077114477 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 636.3883335335088, + "y": 347.842489357336 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 631.0019209049726, + "y": 358.08001757439825 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.3221201244097, + "y": 366.73121298144224 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 613.7954434444589, + "y": 373.2925293459903 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 602.9752779921382, + "y": 377.3835291729766 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 591.4898654487479, + "y": 378.7668511557902 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 580.0072898659868, + "y": 377.36017458095995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 569.1954665014795, + "y": 373.2471786491972 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 559.6821530246065, + "y": 366.6665018078119 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 552.019961736578, + "y": 357.99970616780394 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 546.654379923614, + "y": 347.7512449755865 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 543.8968024095167, + "y": 336.5164351750714 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 543.9085651193936, + "y": 324.94844115542156 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 546.688984742297, + "y": 313.71926256923035 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 552.0753973708329, + "y": 303.4817343521681 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 559.755198151396, + "y": 294.8305389451241 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 569.2818748313468, + "y": 288.269222580576 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 580.1020402836675, + "y": 284.17822275358975 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 591.5874528270579, + "y": 282.7949007707761 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 603.070028409819, + "y": 284.2015773456064 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 613.8818517743263, + "y": 288.3145732773691 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 623.3951652511993, + "y": 294.8952501187544 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 631.0573565392277, + "y": 303.5620457587624 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 636.4229383521917, + "y": 313.81050695097986 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 639.180515866289, + "y": 325.0453167514949 + }, + { + "angle": 0.0016737889098653203, + "anglePrev": 0.0012930184482692383, + "angularSpeed": 0.00036996049979266154, + "angularVelocity": 0.00038960068081594955, + "area": 6059.0497460000015, + "axes": { + "#": 1967 + }, + "bounds": { + "#": 1981 + }, + "circleRadius": 44.13130144032922, + "collisionFilter": { + "#": 1984 + }, + "constraintImpulse": { + "#": 1985 + }, + "density": 0.001, + "force": { + "#": 1986 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 23372.08438446153, + "inverseInertia": 0.00004278608546633651, + "inverseMass": 0.16504238154838874, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.059049746000001, + "motion": 0, + "parent": null, + "position": { + "#": 1987 + }, + "positionImpulse": { + "#": 1988 + }, + "positionPrev": { + "#": 1989 + }, + "region": { + "#": 1990 + }, + "render": { + "#": 1991 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8720443773527355, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1993 + }, + "vertices": { + "#": 1994 + } + }, + [ + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + } + ], + { + "x": -0.9705204601619164, + "y": -0.2410187470034277 + }, + { + "x": -0.8846768359552626, + "y": -0.46620477895897317 + }, + { + "x": -0.747422597164131, + "y": -0.6643489002387415 + }, + { + "x": -0.5666775158233174, + "y": -0.8239396780470728 + }, + { + "x": -0.35305756257044857, + "y": -0.935601601918153 + }, + { + "x": -0.11884365131451093, + "y": -0.9929129803473391 + }, + { + "x": 0.12216683267961213, + "y": -0.9925095792953496 + }, + { + "x": 0.35618757766284237, + "y": -0.9344144741594476 + }, + { + "x": 0.5694325376931026, + "y": -0.8220380678632793 + }, + { + "x": 0.7496423647449011, + "y": -0.6618431271681173 + }, + { + "x": 0.8862325328555758, + "y": -0.4632406477290075 + }, + { + "x": 0.9713218497109971, + "y": -0.23776850984519968 + }, + { + "x": 0.9999985992156696, + "y": 0.0016737881283261549 + }, + { + "max": { + "#": 1982 + }, + "min": { + "#": 1983 + } + }, + { + "x": 725.0765981908451, + "y": 392.18494703700514 + }, + { + "x": 637.4110356579756, + "y": 301.05116161487507 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 681.2577566801522, + "y": 348.0540088550185 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 681.2829793136591, + "y": 350.9265017973069 + }, + { + "endCol": 15, + "endRow": 8, + "id": "13,15,6,8", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1992 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.02553811995767319, + "y": -2.8733216875340304 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 725.0587924327359, + "y": 353.4463300621486 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 722.4945057691682, + "y": 363.7720524536836 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 717.534745610477, + "y": 373.1837640497888 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 710.4664254443564, + "y": 381.13594431869706 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 701.7013230065639, + "y": 387.16428183869385 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 691.7470217389582, + "y": 390.92062570923395 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 681.1838907362609, + "y": 392.18494703700514 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 670.6250513263246, + "y": 390.88527195638744 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 660.6833804639355, + "y": 387.0956263972461 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 651.9385074294619, + "y": 381.0379808471224 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 644.8968473606493, + "y": 373.06218342772337 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 639.9686213702958, + "y": 363.6339214146053 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 637.4389151694593, + "y": 353.2996727463447 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 637.4567209275684, + "y": 342.66168764788836 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 640.0210075911361, + "y": 332.33596525635335 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 644.9807677498274, + "y": 322.92425366024816 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 652.0490879159479, + "y": 314.9720733913399 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 660.8141903537404, + "y": 308.9437358713431 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 670.7684916213461, + "y": 305.187392000803 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 681.3316226240435, + "y": 303.9230706730318 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 691.8904620339797, + "y": 305.2227457536495 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 701.8321328963689, + "y": 309.01239131279084 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 710.5770059308425, + "y": 315.07003686291455 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 717.618665999655, + "y": 323.0458342823136 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 722.5468919900086, + "y": 332.47409629543165 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 725.0765981908451, + "y": 342.80834496369226 + }, + { + "angle": 0.022406852274999476, + "anglePrev": 0.02082174892937732, + "angularSpeed": 0.0015851033456221574, + "angularVelocity": 0.0015851033456221574, + "area": 1190.42275, + "axes": { + "#": 2022 + }, + "bounds": { + "#": 2028 + }, + "collisionFilter": { + "#": 2031 + }, + "constraintImpulse": { + "#": 2032 + }, + "density": 0.001, + "force": { + "#": 2033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 917.4702110738278, + "inverseInertia": 0.001089953644194701, + "inverseMass": 0.8400377092927702, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.19042275, + "motion": 0, + "parent": null, + "position": { + "#": 2034 + }, + "positionImpulse": { + "#": 2035 + }, + "positionPrev": { + "#": 2036 + }, + "region": { + "#": 2037 + }, + "render": { + "#": 2038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8248863755508142, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2040 + }, + "vertices": { + "#": 2041 + } + }, + [ + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + } + ], + { + "x": 0.28765903475735916, + "y": 0.9577328853717326 + }, + { + "x": -0.8219753726776285, + "y": 0.5695230343993771 + }, + { + "x": -0.7956362421266424, + "y": -0.6057746860133685 + }, + { + "x": 0.3302754292025004, + "y": -0.9438846014556567 + }, + { + "x": 0.9997489769883581, + "y": 0.022404977365108603 + }, + { + "max": { + "#": 2029 + }, + "min": { + "#": 2030 + } + }, + { + "x": 721.1402693636365, + "y": 282.6732680099716 + }, + { + "x": 680.3540899144543, + "y": 237.2971648450159 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.724258738787, + "y": 261.55251324193404 + }, + { + "x": 0.4646252506704565, + "y": -2.0245160858751237 + }, + { + "x": 702.7005886424454, + "y": 264.37730044831113 + }, + { + "endCol": 15, + "endRow": 5, + "id": "14,15,5,5", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2039 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.023670096341559203, + "y": -2.82478720637711 + }, + [ + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 720.5272587426833, + "y": 275.10679148979875 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 695.3354082733414, + "y": 282.6732680099716 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 680.3540899144543, + "y": 261.05118427066304 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 696.2890089199552, + "y": 240.12195205139304 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 721.116599267295, + "y": 248.80939439909693 + }, + { + "angle": 0.036969299004938776, + "anglePrev": 0.03327059522594237, + "angularSpeed": 0.0036987037789964054, + "angularVelocity": 0.0036987037789964054, + "area": 2171.016137319483, + "axes": { + "#": 2048 + }, + "bounds": { + "#": 2051 + }, + "collisionFilter": { + "#": 2054 + }, + "constraintImpulse": { + "#": 2055 + }, + "density": 0.001, + "force": { + "#": 2056 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 3142.3211355327803, + "inverseInertia": 0.0003182360926425332, + "inverseMass": 0.46061380328323276, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.1710161373194827, + "motion": 0, + "parent": null, + "position": { + "#": 2057 + }, + "positionImpulse": { + "#": 2058 + }, + "positionPrev": { + "#": 2059 + }, + "region": { + "#": 2060 + }, + "render": { + "#": 2061 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7715650253848887, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2063 + }, + "vertices": { + "#": 2064 + } + }, + [ + { + "#": 2049 + }, + { + "#": 2050 + } + ], + { + "x": -0.03696087841112496, + "y": 0.9993167132931773 + }, + { + "x": -0.9993167132931773, + "y": -0.03696087841112496 + }, + { + "max": { + "#": 2052 + }, + "min": { + "#": 2053 + } + }, + { + "x": 777.2373553369885, + "y": 335.5021081150284 + }, + { + "x": 728.721200832364, + "y": 284.63668872414036 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 752.9590512957758, + "y": 311.4550333099848 + }, + { + "x": 1.5261111431418009, + "y": -0.3751681927072294 + }, + { + "x": 752.9185977179749, + "y": 314.2263030907856 + }, + { + "endCol": 16, + "endRow": 6, + "id": "15,16,5,6", + "startCol": 15, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2062 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04045357780089148, + "y": -2.7712697808008238 + }, + [ + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 730.4360505997779, + "y": 287.4079585049412 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 777.1969017591875, + "y": 289.1374623860563 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 775.4820519917737, + "y": 335.5021081150284 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 728.721200832364, + "y": 333.7726042339133 + }, + { + "angle": -0.08167284309181953, + "anglePrev": -0.06468695450577151, + "angularSpeed": 0.016985888586048017, + "angularVelocity": -0.016985888586048017, + "area": 1119.9948759999997, + "axes": { + "#": 2070 + }, + "bounds": { + "#": 2074 + }, + "collisionFilter": { + "#": 2077 + }, + "constraintImpulse": { + "#": 2078 + }, + "density": 0.001, + "force": { + "#": 2079 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 965.6287346905493, + "inverseInertia": 0.0010355947001934086, + "inverseMass": 0.8928612276972597, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.1199948759999998, + "motion": 0, + "parent": null, + "position": { + "#": 2080 + }, + "positionImpulse": { + "#": 2081 + }, + "positionPrev": { + "#": 2082 + }, + "region": { + "#": 2083 + }, + "render": { + "#": 2084 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.435037554879634, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2086 + }, + "vertices": { + "#": 2087 + } + }, + [ + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + } + ], + { + "x": -0.4276840083385014, + "y": 0.9039283096637215 + }, + { + "x": -0.5689880492305772, + "y": -0.822345790913277 + }, + { + "x": 0.9966666268946083, + "y": -0.08158207422298136 + }, + { + "max": { + "#": 2075 + }, + "min": { + "#": 2076 + } + }, + { + "x": 879.3938629372273, + "y": 341.34264859517475 + }, + { + "x": 833.4221274568649, + "y": 290.65417728456885 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 862.6869174001623, + "y": 317.19614656556405 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 862.7030476930755, + "y": 319.63113069432643 + }, + { + "endCol": 18, + "endRow": 7, + "id": "17,18,6,7", + "startCol": 17, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2085 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01613029291322391, + "y": -2.434984128762387 + }, + [ + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 879.3938629372273, + "y": 341.34264859517475 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 833.4221274568649, + "y": 319.5916138169489 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 875.2447618063948, + "y": 290.65417728456885 + }, + { + "angle": -0.0047580007386038925, + "anglePrev": -0.004202127893268353, + "angularSpeed": 0.0005558728453355394, + "angularVelocity": -0.0005558728453355394, + "area": 5582.974756, + "axes": { + "#": 2092 + }, + "bounds": { + "#": 2100 + }, + "collisionFilter": { + "#": 2103 + }, + "constraintImpulse": { + "#": 2104 + }, + "density": 0.001, + "force": { + "#": 2105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 19922.243813825833, + "inverseInertia": 0.000050195149168188086, + "inverseMass": 0.17911598094283054, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.582974756, + "motion": 0, + "parent": null, + "position": { + "#": 2106 + }, + "positionImpulse": { + "#": 2107 + }, + "positionPrev": { + "#": 2108 + }, + "region": { + "#": 2109 + }, + "render": { + "#": 2110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8768258499092023, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2112 + }, + "vertices": { + "#": 2113 + } + }, + [ + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + } + ], + { + "x": 0.6272093342179219, + "y": 0.7788507245101023 + }, + { + "x": -0.21788293210222287, + "y": 0.9759749115108123 + }, + { + "x": -0.89889232109091, + "y": 0.4381695962567417 + }, + { + "x": -0.903021181718719, + "y": -0.42959602578158074 + }, + { + "x": -0.22716030559183248, + "y": -0.9738573794778298 + }, + { + "x": 0.6197695033984792, + "y": -0.7847838955134099 + }, + { + "x": 0.9999886807358399, + "y": -0.004757982786234601 + }, + { + "max": { + "#": 2101 + }, + "min": { + "#": 2102 + } + }, + { + "x": 959.8745099688873, + "y": 324.93194582586904 + }, + { + "x": 873.8868229345247, + "y": 233.98227766179815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 919.055396693446, + "y": 280.9432663726718 + }, + { + "x": -0.4542640554097601, + "y": -1.90462782089614 + }, + { + "x": 919.0249846771111, + "y": 283.8199314696145 + }, + { + "endCol": 20, + "endRow": 6, + "id": "18,20,4,6", + "startCol": 18, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2111 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03041201633490914, + "y": -2.876665096942682 + }, + [ + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 959.8440979525524, + "y": 300.34741407488184 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 929.3157251727154, + "y": 324.93194582586904 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 891.0616585898952, + "y": 316.3918613487016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 873.8868229345247, + "y": 281.1581801017608 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 890.7256022657034, + "y": 245.76266082832908 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 928.8966705968005, + "y": 236.85894275874082 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 959.6576040592633, + "y": 261.1518577447598 + }, + { + "angle": -0.0068774632073058005, + "anglePrev": -0.0060950105660691, + "angularSpeed": 0.0007824526412367003, + "angularVelocity": -0.0007824526412367003, + "area": 1427.950596, + "axes": { + "#": 2122 + }, + "bounds": { + "#": 2126 + }, + "collisionFilter": { + "#": 2129 + }, + "constraintImpulse": { + "#": 2130 + }, + "density": 0.001, + "force": { + "#": 2131 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 1308.0466332042622, + "inverseInertia": 0.0007644987377478626, + "inverseMass": 0.7003043402210255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4279505959999998, + "motion": 0, + "parent": null, + "position": { + "#": 2132 + }, + "positionImpulse": { + "#": 2133 + }, + "positionPrev": { + "#": 2134 + }, + "region": { + "#": 2135 + }, + "render": { + "#": 2136 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8860942838691455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2138 + }, + "vertices": { + "#": 2139 + } + }, + [ + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + } + ], + { + "x": -0.5059460177283067, + "y": -0.8625651437108206 + }, + { + "x": 0.4940340105362397, + "y": -0.8694425779966605 + }, + { + "x": 0.9999763503431343, + "y": -0.006877408990671999 + }, + { + "max": { + "#": 2127 + }, + "min": { + "#": 2128 + } + }, + { + "x": 1007.9397201901953, + "y": 270.0716986454212 + }, + { + "x": 967.1408453418891, + "y": 220.29889738331715 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 987.5239821710943, + "y": 246.6282530879767 + }, + { + "x": 0.6740337299093937, + "y": -1.5021055962932444 + }, + { + "x": 987.4913809811985, + "y": 249.5141632351919 + }, + { + "endCol": 20, + "endRow": 5, + "id": "20,20,4,5", + "startCol": 20, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2137 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03260118989576654, + "y": -2.8859101472151787 + }, + [ + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1007.9071190002995, + "y": 258.2103438319612 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 987.6852161474715, + "y": 270.0716986454212 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 967.3020793182662, + "y": 258.48960790143656 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 967.1408453418891, + "y": 235.0461623439922 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 987.3627481947171, + "y": 223.18480753053234 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1007.7458850239224, + "y": 234.76689827451688 + }, + { + "angle": 0.008908222520349474, + "anglePrev": 0.007742519688509008, + "angularSpeed": 0.0011657028318404657, + "angularVelocity": 0.0011657028318404657, + "area": 1006.2524335919638, + "axes": { + "#": 2147 + }, + "bounds": { + "#": 2150 + }, + "collisionFilter": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "density": 0.001, + "force": { + "#": 2155 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 697.1461738741186, + "inverseInertia": 0.0014344194051053728, + "inverseMass": 0.9937864164266964, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0062524335919638, + "motion": 0, + "parent": null, + "position": { + "#": 2156 + }, + "positionImpulse": { + "#": 2157 + }, + "positionPrev": { + "#": 2158 + }, + "region": { + "#": 2159 + }, + "render": { + "#": 2160 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9284702853023, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2162 + }, + "vertices": { + "#": 2163 + } + }, + [ + { + "#": 2148 + }, + { + "#": 2149 + } + ], + { + "x": -0.008908104700029755, + "y": 0.9999603220481565 + }, + { + "x": -0.9999603220481565, + "y": -0.008908104700029755 + }, + { + "max": { + "#": 2151 + }, + "min": { + "#": 2152 + } + }, + { + "x": 1040.2832986905728, + "y": 294.0996956383885 + }, + { + "x": 1003.9748879072397, + "y": 262.9312162697548 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1022.1187209924445, + "y": 279.97965435874 + }, + { + "x": 0.3996331210423691, + "y": -0.9889528184531651 + }, + { + "x": 1022.0979763795208, + "y": 282.90805116807667 + }, + { + "endCol": 21, + "endRow": 6, + "id": "20,21,5,6", + "startCol": 20, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2161 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.020744612923742807, + "y": -2.9283968093366686 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1004.2236034277014, + "y": 265.8596130790915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1040.2625540776492, + "y": 266.18066456342586 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1040.0138385571872, + "y": 294.0996956383885 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1003.9748879072397, + "y": 293.7786441540541 + }, + { + "angle": -0.0005344849010392773, + "anglePrev": -0.00040855096180586025, + "angularSpeed": 0.00012593393923341695, + "angularVelocity": -0.00012593393923341695, + "area": 3210.130139, + "axes": { + "#": 2169 + }, + "bounds": { + "#": 2177 + }, + "collisionFilter": { + "#": 2180 + }, + "constraintImpulse": { + "#": 2181 + }, + "density": 0.001, + "force": { + "#": 2182 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 6586.462154550281, + "inverseInertia": 0.00015182657647385802, + "inverseMass": 0.3115138504358312, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.210130139, + "motion": 0, + "parent": null, + "position": { + "#": 2183 + }, + "positionImpulse": { + "#": 2184 + }, + "positionPrev": { + "#": 2185 + }, + "region": { + "#": 2186 + }, + "render": { + "#": 2187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9104445324389454, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2189 + }, + "vertices": { + "#": 2190 + } + }, + [ + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + } + ], + { + "x": 0.6239098689730587, + "y": 0.7814963054282608 + }, + { + "x": -0.22200585765773953, + "y": 0.9750453318516282 + }, + { + "x": -0.9007316356746119, + "y": 0.4343760127987483 + }, + { + "x": -0.9011954557952421, + "y": -0.43341290988387293 + }, + { + "x": -0.223048024632003, + "y": -0.9748074572487438 + }, + { + "x": 0.6230741167114621, + "y": -0.7821627996039133 + }, + { + "x": 0.9999998571629488, + "y": -0.0005344848755911946 + }, + { + "max": { + "#": 2178 + }, + "min": { + "#": 2179 + } + }, + { + "x": 1085.9754549737638, + "y": 369.32952360685 + }, + { + "x": 1020.8575212941485, + "y": 302.5455331460796 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1055.1086475912418, + "y": 335.9416021500678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1055.1088452143408, + "y": 338.85204667579734 + }, + { + "endCol": 22, + "endRow": 7, + "id": "21,22,6,7", + "startCol": 21, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2188 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0001976230989157557, + "y": -2.9104445257295084 + }, + [ + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1085.9754549737638, + "y": 350.7861064287093 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1062.7483628320983, + "y": 369.32952360685 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1033.7678318881206, + "y": 362.7310123198142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1020.8575212941485, + "y": 335.9599088616604 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1033.7392070161231, + "y": 309.1750199695954 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1062.7126677941667, + "y": 302.5455331460796 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1085.959569014292, + "y": 321.06411067411216 + }, + { + "angle": -0.003715553380120742, + "anglePrev": -0.0030107606268374863, + "angularSpeed": 0.0007047927532832556, + "angularVelocity": -0.0007047927532832556, + "area": 1352.927270280826, + "axes": { + "#": 2199 + }, + "bounds": { + "#": 2202 + }, + "collisionFilter": { + "#": 2205 + }, + "constraintImpulse": { + "#": 2206 + }, + "density": 0.001, + "force": { + "#": 2207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 1256.990937022409, + "inverseInertia": 0.0007955506842148158, + "inverseMass": 0.7391380320040639, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.352927270280826, + "motion": 0, + "parent": null, + "position": { + "#": 2208 + }, + "positionImpulse": { + "#": 2209 + }, + "positionPrev": { + "#": 2210 + }, + "region": { + "#": 2211 + }, + "render": { + "#": 2212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.892824921631505, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2214 + }, + "vertices": { + "#": 2215 + } + }, + [ + { + "#": 2200 + }, + { + "#": 2201 + } + ], + { + "x": 0.0037155448310489335, + "y": 0.9999930973394808 + }, + { + "x": -0.9999930973394808, + "y": 0.0037155448310489335 + }, + { + "max": { + "#": 2203 + }, + "min": { + "#": 2204 + } + }, + { + "x": 1136.1310459858676, + "y": 303.21228169913724 + }, + { + "x": 1094.4197332345896, + "y": 267.61901131561 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1115.2647112984494, + "y": 286.8620195506998 + }, + { + "x": 1.2109052412827588, + "y": -0.11420851894736009 + }, + { + "x": 1115.243354674891, + "y": 289.7547656373522 + }, + { + "endCol": 23, + "endRow": 6, + "id": "22,23,5,6", + "startCol": 22, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2213 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.021356623558435785, + "y": -2.8927460866523536 + }, + [ + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1094.4197332345896, + "y": 270.66621005887544 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1135.9887621393357, + "y": 270.5117574022624 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1136.1096893623092, + "y": 303.0578290425242 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1094.540660457563, + "y": 303.21228169913724 + }, + { + "angle": -0.06786427358263085, + "anglePrev": -0.05972710063667762, + "angularSpeed": 0.008137172945953227, + "angularVelocity": -0.008137172945953227, + "area": 1720.1260092915415, + "axes": { + "#": 2221 + }, + "bounds": { + "#": 2224 + }, + "collisionFilter": { + "#": 2227 + }, + "constraintImpulse": { + "#": 2228 + }, + "density": 0.001, + "force": { + "#": 2229 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 2025.862459801684, + "inverseInertia": 0.0004936169260463478, + "inverseMass": 0.5813527582272093, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7201260092915416, + "motion": 0, + "parent": null, + "position": { + "#": 2230 + }, + "positionImpulse": { + "#": 2231 + }, + "positionPrev": { + "#": 2232 + }, + "region": { + "#": 2233 + }, + "render": { + "#": 2234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.383764158680365, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2236 + }, + "vertices": { + "#": 2237 + } + }, + [ + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "x": 0.06781219341721681, + "y": 0.9976981038490279 + }, + { + "x": -0.9976981038490279, + "y": 0.06781219341721681 + }, + { + "max": { + "#": 2225 + }, + "min": { + "#": 2226 + } + }, + { + "x": 60.30883285944456, + "y": 437.4421989468682 + }, + { + "x": 20.302901007960383, + "y": 388.47021052305297 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 40.305866933702475, + "y": 412.9562047349606 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 40.164355408796936, + "y": 415.33576478936726 + }, + { + "endCol": 1, + "endRow": 9, + "id": "0,1,8,9", + "startCol": 0, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2235 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.14151152490553684, + "y": -2.3795600544067 + }, + [ + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20.302901007960383, + "y": 390.9746920306538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 57.15049913658626, + "y": 388.47021052305297 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 60.30883285944456, + "y": 434.9377174392674 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 23.4612347308187, + "y": 437.4421989468682 + }, + { + "angle": -0.05084397216786413, + "anglePrev": -0.044075422122167585, + "angularSpeed": 0.006768550045696545, + "angularVelocity": -0.006768550045696545, + "area": 1250.161678324093, + "axes": { + "#": 2243 + }, + "bounds": { + "#": 2246 + }, + "collisionFilter": { + "#": 2249 + }, + "constraintImpulse": { + "#": 2250 + }, + "density": 0.001, + "force": { + "#": 2251 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 1044.2197391722605, + "inverseInertia": 0.0009576528411469095, + "inverseMass": 0.7998965392544685, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.250161678324093, + "motion": 0, + "parent": null, + "position": { + "#": 2252 + }, + "positionImpulse": { + "#": 2253 + }, + "positionPrev": { + "#": 2254 + }, + "region": { + "#": 2255 + }, + "render": { + "#": 2256 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7591471763884363, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2258 + }, + "vertices": { + "#": 2259 + } + }, + [ + { + "#": 2244 + }, + { + "#": 2245 + } + ], + { + "x": 0.05082206879322623, + "y": 0.9987077236727352 + }, + { + "x": -0.9987077236727352, + "y": 0.05082206879322623 + }, + { + "max": { + "#": 2247 + }, + "min": { + "#": 2248 + } + }, + { + "x": 95.69859945831179, + "y": 411.1049778726145 + }, + { + "x": 57.42172394446337, + "y": 372.326349371876 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 76.54105947635864, + "y": 393.09510495490207 + }, + { + "x": 0.016128798635922988, + "y": -0.26696415847000454 + }, + { + "x": 76.50285502630081, + "y": 395.8539876202157 + }, + { + "endCol": 1, + "endRow": 8, + "id": "1,1,7,8", + "startCol": 1, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2257 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03820445005783796, + "y": -2.7588826653136334 + }, + [ + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 57.42172394446337, + "y": 376.94264924353644 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 93.92194823892393, + "y": 375.08523203718966 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 95.66039500825396, + "y": 409.2475606662677 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 59.16017071379337, + "y": 411.1049778726145 + }, + { + "angle": -0.0029279117957837636, + "anglePrev": -0.002246679784040421, + "angularSpeed": 0.0006489291768092167, + "angularVelocity": -0.0006895199067662359, + "area": 3092.075232, + "axes": { + "#": 2265 + }, + "bounds": { + "#": 2271 + }, + "collisionFilter": { + "#": 2274 + }, + "constraintImpulse": { + "#": 2275 + }, + "density": 0.001, + "force": { + "#": 2276 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 6189.985619847792, + "inverseInertia": 0.00016155126383388745, + "inverseMass": 0.32340739631783966, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.092075232, + "motion": 0, + "parent": null, + "position": { + "#": 2277 + }, + "positionImpulse": { + "#": 2278 + }, + "positionPrev": { + "#": 2279 + }, + "region": { + "#": 2280 + }, + "render": { + "#": 2281 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8852451190736343, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2283 + }, + "vertices": { + "#": 2284 + } + }, + [ + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + } + ], + { + "x": 0.3117909556002238, + "y": 0.9501507248883723 + }, + { + "x": -0.8072951257214235, + "y": 0.5901479305957373 + }, + { + "x": -0.8107370668398635, + "y": -0.5854104615155891 + }, + { + "x": 0.30622172662312075, + "y": -0.9519602166813248 + }, + { + "x": 0.9999957136693203, + "y": -0.002927907612449849 + }, + { + "max": { + "#": 2272 + }, + "min": { + "#": 2273 + } + }, + { + "x": 150.5133005136044, + "y": 456.0339343250916 + }, + { + "x": 85.17062212850225, + "y": 384.5553171450138 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.27647713107523, + "y": 421.7044523959248 + }, + { + "x": -1.7412958968499266, + "y": 0.004367075301233731 + }, + { + "x": 121.35484259965297, + "y": 424.5873243920417 + }, + { + "endCol": 3, + "endRow": 9, + "id": "1,3,8,9", + "startCol": 1, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2282 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0768081299720933, + "y": -2.8831524841399414 + }, + [ + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150.5133005136044, + "y": 442.81594016899703 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 110.23282892389417, + "y": 456.0339343250916 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 85.21451728329787, + "y": 421.8100389352618 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 110.03199202912579, + "y": 387.4402283416581 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150.3891747982822, + "y": 400.42212188369984 + }, + { + "angle": 0.00037384967571873513, + "anglePrev": -0.00009738007275939671, + "angularSpeed": 0.00034037681306315097, + "angularVelocity": 0.0004252408876948248, + "area": 1581.4152047253658, + "axes": { + "#": 2291 + }, + "bounds": { + "#": 2294 + }, + "collisionFilter": { + "#": 2297 + }, + "constraintImpulse": { + "#": 2298 + }, + "density": 0.001, + "force": { + "#": 2299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 1771.7086023235004, + "inverseInertia": 0.0005644269033229019, + "inverseMass": 0.6323450014973541, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5814152047253658, + "motion": 0, + "parent": null, + "position": { + "#": 2300 + }, + "positionImpulse": { + "#": 2301 + }, + "positionPrev": { + "#": 2302 + }, + "region": { + "#": 2303 + }, + "render": { + "#": 2304 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8948716858313954, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2306 + }, + "vertices": { + "#": 2307 + } + }, + [ + { + "#": 2292 + }, + { + "#": 2293 + } + ], + { + "x": -0.00037384966701030695, + "y": 0.9999999301182108 + }, + { + "x": -0.9999999301182108, + "y": -0.00037384966701030695 + }, + { + "max": { + "#": 2295 + }, + "min": { + "#": 2296 + } + }, + { + "x": 197.5915862771061, + "y": 418.30095756082824 + }, + { + "x": 150.10065582751227, + "y": 382.04229947687537 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 173.87354907480565, + "y": 401.61880446632296 + }, + { + "x": -1.634700215897241, + "y": -0.002990622736386112 + }, + { + "x": 173.962206213428, + "y": 404.50855199219643 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,8,8", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2305 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.08410098191788506, + "y": -2.8905145629855724 + }, + [ + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150.1679784800418, + "y": 384.9366513718177 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 197.5915862771061, + "y": 384.95438067303996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 197.5791196695695, + "y": 418.30095756082824 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150.1555118725052, + "y": 418.28322825960595 + }, + { + "angle": -0.00020735592969856252, + "anglePrev": -0.00003073217047838371, + "angularSpeed": 0.00011222073870659284, + "angularVelocity": -0.00018719700575015036, + "area": 4508.288001999999, + "axes": { + "#": 2313 + }, + "bounds": { + "#": 2318 + }, + "collisionFilter": { + "#": 2321 + }, + "constraintImpulse": { + "#": 2322 + }, + "density": 0.001, + "force": { + "#": 2323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 12968.580393466536, + "inverseInertia": 0.00007710944217948417, + "inverseMass": 0.22181369059748904, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.508288002, + "motion": 0, + "parent": null, + "position": { + "#": 2324 + }, + "positionImpulse": { + "#": 2325 + }, + "positionPrev": { + "#": 2326 + }, + "region": { + "#": 2327 + }, + "render": { + "#": 2328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8913394934869197, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2330 + }, + "vertices": { + "#": 2331 + } + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + } + ], + { + "x": -0.7072533887679541, + "y": -0.7069601432020373 + }, + { + "x": -0.00020735592821263332, + "y": -0.9999999785017593 + }, + { + "x": 0.7069601432020373, + "y": -0.7072533887679541 + }, + { + "x": 0.9999999785017593, + "y": -0.00020735592821263332 + }, + { + "max": { + "#": 2319 + }, + "min": { + "#": 2320 + } + }, + { + "x": 270.6426366679979, + "y": 458.76505601674313 + }, + { + "x": 196.80895660511035, + "y": 382.09795088312643 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 233.75446947708926, + "y": 421.87688882583456 + }, + { + "x": -1.392627687806656, + "y": 0.008528999771725996 + }, + { + "x": 233.84638671057542, + "y": 424.76222460850374 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2329 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0935154400524425, + "y": -2.885066721741566 + }, + [ + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 270.6426366679979, + "y": 437.1472401739723 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 249.04011747205126, + "y": 458.7587200490007 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 218.4841181289515, + "y": 458.76505601674313 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 196.8726382539231, + "y": 437.1625368207966 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 196.86630228618063, + "y": 406.6065374776968 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 218.46882148212725, + "y": 384.9950576026684 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 249.024820825227, + "y": 384.988721634926 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 270.6363007002555, + "y": 406.5912408308725 + }, + { + "angle": -0.003571073786903415, + "anglePrev": -0.001647120176488226, + "angularSpeed": 0.0015540135004741913, + "angularVelocity": -0.002091104418092072, + "area": 1039.6267295619953, + "axes": { + "#": 2341 + }, + "bounds": { + "#": 2344 + }, + "collisionFilter": { + "#": 2347 + }, + "constraintImpulse": { + "#": 2348 + }, + "density": 0.001, + "force": { + "#": 2349 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 836.7694481463552, + "inverseInertia": 0.0011950723131864333, + "inverseMass": 0.9618836949501189, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0396267295619952, + "motion": 0, + "parent": null, + "position": { + "#": 2350 + }, + "positionImpulse": { + "#": 2351 + }, + "positionPrev": { + "#": 2352 + }, + "region": { + "#": 2353 + }, + "render": { + "#": 2354 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.925595455020784, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2356 + }, + "vertices": { + "#": 2357 + } + }, + [ + { + "#": 2342 + }, + { + "#": 2343 + } + ], + { + "x": 0.0035710661968480426, + "y": 0.9999936237227803 + }, + { + "x": -0.9999936237227803, + "y": 0.0035710661968480426 + }, + { + "max": { + "#": 2345 + }, + "min": { + "#": 2346 + } + }, + { + "x": 312.2753338179985, + "y": 409.34382068389897 + }, + { + "x": 269.41735086146144, + "y": 381.9059522300728 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 290.89458712312904, + "y": 397.08688838327885 + }, + { + "x": -1.085324150664358, + "y": -0.003895767836427501 + }, + { + "x": 291.02759869476165, + "y": 400.017258224452 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2355 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.11900902183845119, + "y": -2.931003336502613 + }, + [ + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 269.5138404282595, + "y": 384.9823505059735 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.1883368406237, + "y": 384.8299560826587 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 312.2753338179985, + "y": 409.1914262605842 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 269.6008374056343, + "y": 409.34382068389897 + }, + { + "angle": -0.0013433361897664093, + "anglePrev": -0.0007023689537620531, + "angularSpeed": 0.0003931328568103971, + "angularVelocity": -0.0006016700530099751, + "area": 1574.8717250450893, + "axes": { + "#": 2363 + }, + "bounds": { + "#": 2366 + }, + "collisionFilter": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "density": 0.001, + "force": { + "#": 2371 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 1691.4099419533813, + "inverseInertia": 0.0005912227279716214, + "inverseMass": 0.6349723498727298, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5748717250450894, + "motion": 0, + "parent": null, + "position": { + "#": 2372 + }, + "positionImpulse": { + "#": 2373 + }, + "positionPrev": { + "#": 2374 + }, + "region": { + "#": 2375 + }, + "render": { + "#": 2376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.965756778231396, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2378 + }, + "vertices": { + "#": 2379 + } + }, + [ + { + "#": 2364 + }, + { + "#": 2365 + } + ], + { + "x": 0.0013433357857464178, + "y": 0.9999990977240762 + }, + { + "x": -0.9999990977240762, + "y": 0.0013433357857464178 + }, + { + "max": { + "#": 2367 + }, + "min": { + "#": 2368 + } + }, + { + "x": 346.712764910006, + "y": 429.0069445830412 + }, + { + "x": 310.8829293084183, + "y": 381.83367550406433 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 328.8523577181697, + "y": 406.9021861889905 + }, + { + "x": -0.8018340274394551, + "y": 0.0003131011891507457 + }, + { + "x": 328.99264619063774, + "y": 409.8853406574819 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2377 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1302422177773792, + "y": -2.9835828672509024 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 310.99195052633337, + "y": 384.84533319446797 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 346.653440983545, + "y": 384.79742779493984 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 346.712764910006, + "y": 428.9590391835131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 311.05127445279436, + "y": 429.0069445830412 + }, + { + "angle": 0.0017102674233485187, + "anglePrev": 0.0008357934299054207, + "angularSpeed": 0.0007253639934800309, + "angularVelocity": 0.0007725011397802425, + "area": 968.3879641074045, + "axes": { + "#": 2385 + }, + "bounds": { + "#": 2388 + }, + "collisionFilter": { + "#": 2391 + }, + "constraintImpulse": { + "#": 2392 + }, + "density": 0.001, + "force": { + "#": 2393 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 797.6175154248832, + "inverseInertia": 0.001253733751655779, + "inverseMass": 1.0326439785130264, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9683879641074046, + "motion": 0, + "parent": null, + "position": { + "#": 2394 + }, + "positionImpulse": { + "#": 2395 + }, + "positionPrev": { + "#": 2396 + }, + "region": { + "#": 2397 + }, + "render": { + "#": 2398 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9560119573930934, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2400 + }, + "vertices": { + "#": 2401 + } + }, + [ + { + "#": 2386 + }, + { + "#": 2387 + } + ], + { + "x": -0.0017102665895890933, + "y": 0.9999985374930269 + }, + { + "x": -0.9999985374930269, + "y": -0.0017102665895890933 + }, + { + "max": { + "#": 2389 + }, + "min": { + "#": 2390 + } + }, + { + "x": 390.1178608802118, + "y": 406.45383288176436 + }, + { + "x": 345.1923963997387, + "y": 381.7853386323689 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 367.7235533453852, + "y": 395.5960070156349 + }, + { + "x": -0.5790605350803791, + "y": -0.019278291759610613 + }, + { + "x": 367.8909834937555, + "y": 398.5691901309006 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2399 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1503383126438962, + "y": -2.973438110280597 + }, + [ + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 345.36625451914443, + "y": 384.7381811495054 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 390.1178608802118, + "y": 384.8147184386315 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.08085217162596, + "y": 406.45383288176436 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 345.3292458105586, + "y": 406.3772955926383 + }, + { + "angle": 0.004386515130874521, + "anglePrev": 0.0025635967137461395, + "angularSpeed": 0.0014998512818876378, + "angularVelocity": 0.0019191288776707026, + "area": 1379.2675785219164, + "axes": { + "#": 2407 + }, + "bounds": { + "#": 2410 + }, + "collisionFilter": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "density": 0.001, + "force": { + "#": 2415 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 1297.383606626366, + "inverseInertia": 0.0007707820531202307, + "inverseMass": 0.7250224797364148, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3792675785219164, + "motion": 0, + "parent": null, + "position": { + "#": 2416 + }, + "positionImpulse": { + "#": 2417 + }, + "positionPrev": { + "#": 2418 + }, + "region": { + "#": 2419 + }, + "render": { + "#": 2420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.921593357661096, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2422 + }, + "vertices": { + "#": 2423 + } + }, + [ + { + "#": 2408 + }, + { + "#": 2409 + } + ], + { + "x": -0.004386501063688612, + "y": 0.9999903792579299 + }, + { + "x": -0.9999903792579299, + "y": -0.004386501063688612 + }, + { + "max": { + "#": 2411 + }, + "min": { + "#": 2412 + } + }, + { + "x": 422.15463411387253, + "y": 426.3370201897354 + }, + { + "x": 388.431879006785, + "y": 381.943282009068 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.3785740933917, + "y": 405.59845417333196 + }, + { + "x": -0.42606879414445675, + "y": 0.0008209196608031036 + }, + { + "x": 405.5806128028703, + "y": 408.52578122758985 + }, + { + "endCol": 8, + "endRow": 8, + "id": "8,8,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2421 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1898438231817181, + "y": -2.926601359089034 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 388.78381319371334, + "y": 384.8598881569285 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 422.15463411387253, + "y": 385.00627070669975 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.97333499307007, + "y": 426.3370201897354 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 388.6025140729109, + "y": 426.19063763996417 + }, + { + "angle": 0.000043281104635484665, + "anglePrev": -0.0001860340489219122, + "angularSpeed": 0.00006032963403767296, + "angularVelocity": 0.00012639587123362605, + "area": 1475.914064, + "axes": { + "#": 2429 + }, + "bounds": { + "#": 2433 + }, + "collisionFilter": { + "#": 2436 + }, + "constraintImpulse": { + "#": 2437 + }, + "density": 0.001, + "force": { + "#": 2438 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 1397.3944234227881, + "inverseInertia": 0.0007156175688397215, + "inverseMass": 0.6775462233145303, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4759140640000001, + "motion": 0, + "parent": null, + "position": { + "#": 2439 + }, + "positionImpulse": { + "#": 2440 + }, + "positionPrev": { + "#": 2441 + }, + "region": { + "#": 2442 + }, + "render": { + "#": 2443 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9004460147312456, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2445 + }, + "vertices": { + "#": 2446 + } + }, + [ + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + } + ], + { + "x": -0.4999912495912021, + "y": -0.8660304557763705 + }, + { + "x": 0.5000662132274352, + "y": -0.8659871721846537 + }, + { + "x": 0.9999999990633729, + "y": 0.00004328110462197192 + }, + { + "max": { + "#": 2434 + }, + "min": { + "#": 2435 + } + }, + { + "x": 461.9790113618566, + "y": 432.7027291106835 + }, + { + "x": 420.5167544481352, + "y": 382.13782581605574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.3374956002658, + "y": 408.867729133008 + }, + { + "x": -0.3202224894964104, + "y": 0.01671008738824149 + }, + { + "x": 441.54865354599895, + "y": 411.76419370263244 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2444 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.22255428086089069, + "y": -2.897142744487496 + }, + [ + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 461.97797980000917, + "y": 420.7856224871267 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 441.33646399513714, + "y": 432.7027291106835 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.69597983867504, + "y": 420.7838357565657 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420.69701140052246, + "y": 396.94983577888934 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 441.3385272053945, + "y": 385.03272915533256 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 461.9790113618566, + "y": 396.9516225094504 + }, + { + "angle": -0.001019552886917643, + "anglePrev": -0.0006392169483486427, + "angularSpeed": 0.00033959952370004215, + "angularVelocity": -0.00039126650458314624, + "area": 2731.525696, + "axes": { + "#": 2454 + }, + "bounds": { + "#": 2457 + }, + "collisionFilter": { + "#": 2460 + }, + "constraintImpulse": { + "#": 2461 + }, + "density": 0.001, + "force": { + "#": 2462 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 4974.15508527219, + "inverseInertia": 0.00020103916803094191, + "inverseMass": 0.3660957689193197, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.7315256960000003, + "motion": 0, + "parent": null, + "position": { + "#": 2463 + }, + "positionImpulse": { + "#": 2464 + }, + "positionPrev": { + "#": 2465 + }, + "region": { + "#": 2466 + }, + "render": { + "#": 2467 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.912663380736735, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2469 + }, + "vertices": { + "#": 2470 + } + }, + [ + { + "#": 2455 + }, + { + "#": 2456 + } + ], + { + "x": -0.0010195527102821386, + "y": -0.9999994802560007 + }, + { + "x": 0.9999994802560007, + "y": -0.0010195527102821386 + }, + { + "max": { + "#": 2458 + }, + "min": { + "#": 2459 + } + }, + { + "x": 512.861887850427, + "y": 437.2345643652543 + }, + { + "x": 460.3505462388738, + "y": 382.0111157137133 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 486.70325848095234, + "y": 411.0759349957794 + }, + { + "x": -0.2332223847741377, + "y": 0.00011805232676300958 + }, + { + "x": 486.9272305143209, + "y": 413.9809106618492 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2468 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.23016094075774163, + "y": -2.905771638522083 + }, + [ + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 512.861887850427, + "y": 437.1812784624042 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460.59791501432755, + "y": 437.2345643652543 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460.54462911147743, + "y": 384.9705915291546 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 512.8086019475769, + "y": 384.9173056263045 + }, + { + "angle": 0.0003070847891504465, + "anglePrev": 0.00003907791871316644, + "angularSpeed": 0.00018293756860980823, + "angularVelocity": 0.0003652856714105594, + "area": 1453.96239, + "axes": { + "#": 2476 + }, + "bounds": { + "#": 2480 + }, + "collisionFilter": { + "#": 2483 + }, + "constraintImpulse": { + "#": 2484 + }, + "density": 0.001, + "force": { + "#": 2485 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 1356.1358869695257, + "inverseInertia": 0.0007373892318671982, + "inverseMass": 0.6877756996176496, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.45396239, + "motion": 0, + "parent": null, + "position": { + "#": 2486 + }, + "positionImpulse": { + "#": 2487 + }, + "positionPrev": { + "#": 2488 + }, + "region": { + "#": 2489 + }, + "render": { + "#": 2490 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9192353318627258, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2492 + }, + "vertices": { + "#": 2493 + } + }, + [ + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + } + ], + { + "x": -0.4997601940336918, + "y": -0.8661638115618817 + }, + { + "x": 0.5002920712072978, + "y": -0.8658567107132176 + }, + { + "x": 0.9999999528494666, + "y": 0.0003070847843240427 + }, + { + "max": { + "#": 2481 + }, + "min": { + "#": 2482 + } + }, + { + "x": 552.3684625102221, + "y": 432.20624270149045 + }, + { + "x": 511.18284663768856, + "y": 381.98017099651065 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 531.8778312773661, + "y": 408.54924381693064 + }, + { + "x": -0.15713304892215227, + "y": -0.012782436719778021 + }, + { + "x": 532.1110663404677, + "y": 411.4594647538029 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2491 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.24451576847616252, + "y": -2.911589761165203 + }, + [ + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 552.3611981125641, + "y": 420.3835345052105 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 531.8705665726234, + "y": 432.20624270149045 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 511.38720004450994, + "y": 420.3709520132577 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 511.3944644421681, + "y": 396.7149531286508 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 531.8850959821089, + "y": 384.89224493237083 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 552.3684625102221, + "y": 396.7275356206036 + }, + { + "angle": 0.0034199827719380606, + "anglePrev": 0.001993522935395176, + "angularSpeed": 0.0011859073829786951, + "angularVelocity": 0.0014285151042871726, + "area": 4826.0809, + "axes": { + "#": 2501 + }, + "bounds": { + "#": 2504 + }, + "collisionFilter": { + "#": 2507 + }, + "constraintImpulse": { + "#": 2508 + }, + "density": 0.001, + "force": { + "#": 2509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 15527.371235563205, + "inverseInertia": 0.00006440240172204064, + "inverseMass": 0.20720746724324493, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.8260809, + "motion": 0, + "parent": null, + "position": { + "#": 2510 + }, + "positionImpulse": { + "#": 2511 + }, + "positionPrev": { + "#": 2512 + }, + "region": { + "#": 2513 + }, + "render": { + "#": 2514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.881152684483799, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2516 + }, + "vertices": { + "#": 2517 + } + }, + [ + { + "#": 2502 + }, + { + "#": 2503 + } + ], + { + "x": 0.003419976105094712, + "y": -0.9999941518646198 + }, + { + "x": 0.9999941518646198, + "y": 0.003419976105094712 + }, + { + "max": { + "#": 2505 + }, + "min": { + "#": 2506 + } + }, + { + "x": 620.4393281660218, + "y": 454.6592893276553 + }, + { + "x": 550.5000257656042, + "y": 382.0803230033029 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 585.585738430994, + "y": 419.8056995926272 + }, + { + "x": -0.08351635960244477, + "y": -0.00028562562460217897 + }, + { + "x": 585.8479745462752, + "y": 422.66590007234447 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2515 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.2655164325726673, + "y": -2.860490059553797 + }, + [ + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 620.2017424260011, + "y": 454.6592893276553 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550.7321486959661, + "y": 454.4217035876344 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.9697344359868, + "y": 384.9521098575991 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 620.4393281660218, + "y": 385.18969559762 + }, + { + "angle": 0.02599495357151301, + "anglePrev": 0.019437538620000357, + "angularSpeed": 0.005700290986063056, + "angularVelocity": 0.006674292610489966, + "area": 1288.7426280768939, + "axes": { + "#": 2523 + }, + "bounds": { + "#": 2526 + }, + "collisionFilter": { + "#": 2529 + }, + "constraintImpulse": { + "#": 2530 + }, + "density": 0.001, + "force": { + "#": 2531 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 1283.525413611018, + "inverseInertia": 0.0007791041684064836, + "inverseMass": 0.7759501224012698, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2887426280768939, + "motion": 0, + "parent": null, + "position": { + "#": 2532 + }, + "positionImpulse": { + "#": 2533 + }, + "positionPrev": { + "#": 2534 + }, + "region": { + "#": 2535 + }, + "render": { + "#": 2536 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.698775308659087, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2538 + }, + "vertices": { + "#": 2539 + } + }, + [ + { + "#": 2524 + }, + { + "#": 2525 + } + ], + { + "x": -0.02599202604245528, + "y": 0.9996621502198668 + }, + { + "x": -0.9996621502198668, + "y": -0.02599202604245528 + }, + { + "max": { + "#": 2527 + }, + "min": { + "#": 2528 + } + }, + { + "x": 666.8672644127688, + "y": 419.9005216361846 + }, + { + "x": 618.5703218364763, + "y": 388.8121609428234 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 642.8074521389009, + "y": 405.7028132056033 + }, + { + "x": -0.03354348935195315, + "y": -0.12512274470635976 + }, + { + "x": 643.0003560382639, + "y": 408.3563630718705 + }, + { + "endCol": 13, + "endRow": 8, + "id": "12,13,8,8", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2537 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.20256754200681826, + "y": -2.6531680385220398 + }, + [ + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 619.453890276357, + "y": 391.50510477502206 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 666.8672644127688, + "y": 392.7378909268668 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 666.1610140014446, + "y": 419.9005216361846 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 618.7476398650329, + "y": 418.6677354843398 + }, + { + "angle": 0.06273538684162683, + "anglePrev": 0.04968889279040413, + "angularSpeed": 0.011650303494165003, + "angularVelocity": 0.013078093216255846, + "area": 1779.883796, + "axes": { + "#": 2545 + }, + "bounds": { + "#": 2551 + }, + "collisionFilter": { + "#": 2554 + }, + "constraintImpulse": { + "#": 2555 + }, + "density": 0.001, + "force": { + "#": 2556 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 2051.033881833643, + "inverseInertia": 0.0004875589861567722, + "inverseMass": 0.5618344311282218, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.779883796, + "motion": 0, + "parent": null, + "position": { + "#": 2557 + }, + "positionImpulse": { + "#": 2558 + }, + "positionPrev": { + "#": 2559 + }, + "region": { + "#": 2560 + }, + "render": { + "#": 2561 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.2625769608676376, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2563 + }, + "vertices": { + "#": 2564 + } + }, + [ + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + } + ], + { + "x": 0.24877491574315452, + "y": 0.9685613255220271 + }, + { + "x": -0.8442676474094538, + "y": 0.5359217662473749 + }, + { + "x": -0.7705645190976234, + "y": -0.6373620022466416 + }, + { + "x": 0.36802678937896866, + "y": -0.9298151871739935 + }, + { + "x": 0.9980327809492862, + "y": 0.06269424336120735 + }, + { + "max": { + "#": 2552 + }, + "min": { + "#": 2553 + } + }, + { + "x": 715.025490989112, + "y": 444.03905720559175 + }, + { + "x": 664.3400034601934, + "y": 389.8540773448014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 691.9255784937931, + "y": 418.59931296979704 + }, + { + "x": 0.000898930773000739, + "y": -0.1749369992620053 + }, + { + "x": 692.2312781310407, + "y": 420.75068094121343 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,8,9", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2562 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.29930787355726807, + "y": -2.1522458300252083 + }, + [ + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 713.0089933456421, + "y": 436.03742630015614 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 681.8560524916362, + "y": 444.03905720559175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 664.6186116415109, + "y": 416.88394884752336 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685.1187863046401, + "y": 392.0994352194289 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 715.025490989112, + "y": 403.93669993370327 + }, + { + "angle": 0.0579524548420116, + "anglePrev": 0.045278000863540675, + "angularSpeed": 0.011025457016621826, + "angularVelocity": 0.012657224788889726, + "area": 4428.370116000001, + "axes": { + "#": 2571 + }, + "bounds": { + "#": 2574 + }, + "collisionFilter": { + "#": 2577 + }, + "constraintImpulse": { + "#": 2578 + }, + "density": 0.001, + "force": { + "#": 2579 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 13073.641256187908, + "inverseInertia": 0.0000764897843228403, + "inverseMass": 0.22581671671636758, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.428370116000001, + "motion": 0, + "parent": null, + "position": { + "#": 2580 + }, + "positionImpulse": { + "#": 2581 + }, + "positionPrev": { + "#": 2582 + }, + "region": { + "#": 2583 + }, + "render": { + "#": 2584 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.672235485631505, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2586 + }, + "vertices": { + "#": 2587 + } + }, + [ + { + "#": 2572 + }, + { + "#": 2573 + } + ], + { + "x": 0.05792002152758523, + "y": -0.9983212264127433 + }, + { + "x": 0.9983212264127433, + "y": 0.05792002152758523 + }, + { + "max": { + "#": 2575 + }, + "min": { + "#": 2576 + } + }, + { + "x": 780.6045182198059, + "y": 460.4934645254817 + }, + { + "x": 709.9707727276635, + "y": 388.5685988593716 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 745.4602031770871, + "y": 425.34914948276315 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 745.85377030548, + "y": 426.8111785786474 + }, + { + "endCol": 16, + "endRow": 9, + "id": "14,16,8,9", + "startCol": 14, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2585 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.39613615408904934, + "y": -1.461676260355091 + }, + [ + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 776.7501724672312, + "y": 460.4934645254817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 710.3158881343684, + "y": 456.63911877290707 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 714.170233886943, + "y": 390.2048344400446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 780.6045182198059, + "y": 394.05918019261924 + }, + { + "angle": -0.024386193065139932, + "anglePrev": -0.021901501366766628, + "angularSpeed": 0.0024846916983733047, + "angularVelocity": -0.0024846916983733047, + "area": 4006.5774799999995, + "axes": { + "#": 2593 + }, + "bounds": { + "#": 2607 + }, + "circleRadius": 35.88631687242798, + "collisionFilter": { + "#": 2610 + }, + "constraintImpulse": { + "#": 2611 + }, + "density": 0.001, + "force": { + "#": 2612 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 10219.637720405184, + "inverseInertia": 0.00009785082674734506, + "inverseMass": 0.2495895823784244, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.00657748, + "motion": 0, + "parent": null, + "position": { + "#": 2613 + }, + "positionImpulse": { + "#": 2614 + }, + "positionPrev": { + "#": 2615 + }, + "region": { + "#": 2616 + }, + "render": { + "#": 2617 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.722180958932134, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2619 + }, + "vertices": { + "#": 2620 + } + }, + [ + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + } + ], + { + "x": -0.9764684030243582, + "y": -0.21566051538253125 + }, + { + "x": -0.8965608625931785, + "y": -0.44292055683403986 + }, + { + "x": -0.7644213399874726, + "y": -0.6447170037867438 + }, + { + "x": -0.5879955268261451, + "y": -0.8088641792244505 + }, + { + "x": -0.377323396757232, + "y": -0.9260815591834147 + }, + { + "x": -0.14461917721081355, + "y": -0.9894873892995644 + }, + { + "x": 0.09620667479774293, + "y": -0.9953613794619328 + }, + { + "x": 0.33172540487753077, + "y": -0.9433759885426585 + }, + { + "x": 0.547861721955201, + "y": -0.8365689054801657 + }, + { + "x": 0.7320804164612955, + "y": -0.6812182204212217 + }, + { + "x": 0.873900999782998, + "y": -0.48610394215463487 + }, + { + "x": 0.9647931398696699, + "y": -0.26300988053764124 + }, + { + "x": 0.9997026715291001, + "y": -0.024383776114063893 + }, + { + "max": { + "#": 2608 + }, + "min": { + "#": 2609 + } + }, + { + "x": 921.1445869653361, + "y": 475.5788383014444 + }, + { + "x": 849.7048031879489, + "y": 403.8281781604579 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 885.4246950766425, + "y": 439.70350823095123 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 885.4132349081074, + "y": 442.4256650665707 + }, + { + "endCol": 19, + "endRow": 9, + "id": "17,19,8,9", + "startCol": 17, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2618 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.011460168535149933, + "y": -2.7221568356194723 + }, + [ + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 921.1445869653361, + "y": 443.15954996392253 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 919.2790020681813, + "y": 451.60655150242764 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 915.4470014374442, + "y": 459.3632964489907 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 909.8695921612202, + "y": 465.976260970708 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 902.8715553995338, + "y": 471.0634120872056 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 894.8597699146527, + "y": 474.3277402484436 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 886.299731266272, + "y": 475.5788383014444 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 877.688876828469, + "y": 474.7465559869787 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 869.5274724933522, + "y": 471.8767085557141 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 862.2897432124644, + "y": 467.13678241108073 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 856.3965640355635, + "y": 460.8035973364962 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 852.1909551872064, + "y": 453.24289794989045 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 849.9157716188877, + "y": 444.8968940120496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 849.7048031879489, + "y": 436.2474664979798 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 851.5703880851037, + "y": 427.8004649594747 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 855.4023887158407, + "y": 420.04372001291176 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 860.9797979920647, + "y": 413.4307554911945 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 867.9778347537512, + "y": 408.3436043746967 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 875.9896202386323, + "y": 405.07927621345874 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 884.5496588870129, + "y": 403.8281781604579 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 893.160513324816, + "y": 404.66046047492364 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 901.3219176599328, + "y": 407.53030790618834 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 908.5596469408206, + "y": 412.2702340508217 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 914.4528261177214, + "y": 418.6034191254063 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 918.6584349660785, + "y": 426.164118512012 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 920.9336185343973, + "y": 434.51012244985276 + }, + { + "angle": 0.0031266244587785626, + "anglePrev": 0.002755469271122734, + "angularSpeed": 0.0003711484657862961, + "angularVelocity": 0.00037115515798075496, + "area": 2513.037024864943, + "axes": { + "#": 2648 + }, + "bounds": { + "#": 2651 + }, + "collisionFilter": { + "#": 2654 + }, + "constraintImpulse": { + "#": 2655 + }, + "density": 0.001, + "force": { + "#": 2656 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 7118.367975988358, + "inverseInertia": 0.000140481638961795, + "inverseMass": 0.3979248972878713, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5130370248649427, + "motion": 0, + "parent": null, + "position": { + "#": 2657 + }, + "positionImpulse": { + "#": 2658 + }, + "positionPrev": { + "#": 2659 + }, + "region": { + "#": 2660 + }, + "render": { + "#": 2661 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.888924005089781, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2663 + }, + "vertices": { + "#": 2664 + } + }, + [ + { + "#": 2649 + }, + { + "#": 2650 + } + ], + { + "x": -0.0031266193645819802, + "y": 0.9999951121137289 + }, + { + "x": -0.9999951121137289, + "y": -0.0031266193645819802 + }, + { + "max": { + "#": 2652 + }, + "min": { + "#": 2653 + } + }, + { + "x": 963.2440458137992, + "y": 398.98212707100043 + }, + { + "x": 875.5200969597812, + "y": 367.1340000889638 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 919.367882292667, + "y": 384.5024558904033 + }, + { + "x": 0.002800192326127144, + "y": 0.0000029234279839839776 + }, + { + "x": 919.339504104489, + "y": 387.39124048938936 + }, + { + "endCol": 20, + "endRow": 8, + "id": "18,20,7,8", + "startCol": 18, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2662 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.028378188186479747, + "y": -2.888784601709858 + }, + [ + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 875.6097858215153, + "y": 370.0227847098062 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 963.2156676255528, + "y": 370.29669629515473 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 963.1259787638187, + "y": 398.98212707100043 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 875.5200969597812, + "y": 398.7082154856519 + }, + { + "angle": 0.0004941269894584979, + "anglePrev": 0.0004365323315798548, + "angularSpeed": 0.00005761787780206806, + "angularVelocity": 0.000057594552850587905, + "area": 1629.3666616192165, + "axes": { + "#": 2670 + }, + "bounds": { + "#": 2673 + }, + "collisionFilter": { + "#": 2676 + }, + "constraintImpulse": { + "#": 2677 + }, + "density": 0.001, + "force": { + "#": 2678 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 1918.0622160315609, + "inverseInertia": 0.0005213595219392745, + "inverseMass": 0.6137354001132129, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6293666616192166, + "motion": 0, + "parent": null, + "position": { + "#": 2679 + }, + "positionImpulse": { + "#": 2680 + }, + "positionPrev": { + "#": 2681 + }, + "region": { + "#": 2682 + }, + "render": { + "#": 2683 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.871717771995962, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2685 + }, + "vertices": { + "#": 2686 + } + }, + [ + { + "#": 2671 + }, + { + "#": 2672 + } + ], + { + "x": -0.0004941269693507019, + "y": 0.9999998779192617 + }, + { + "x": -0.9999998779192617, + "y": -0.0004941269693507019 + }, + { + "max": { + "#": 2674 + }, + "min": { + "#": 2675 + } + }, + { + "x": 996.0893904050839, + "y": 434.67951765926625 + }, + { + "x": 963.0946208797507, + "y": 382.3315239470039 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 979.578353579587, + "y": 409.9413147861563 + }, + { + "x": 0.0023135346282102125, + "y": -6.712866532244311e-7 + }, + { + "x": 979.5510494538208, + "y": 412.8129027859086 + }, + { + "endCol": 20, + "endRow": 9, + "id": "20,20,8,9", + "startCol": 20, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2684 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.027304125752948494, + "y": -2.871587995551238 + }, + [ + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 963.1190604657418, + "y": 385.2031119130463 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 996.0620862794233, + "y": 385.21938995254 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 996.0376466934322, + "y": 434.67951765926625 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 963.0946208797507, + "y": 434.6632396197726 + }, + { + "angle": 0.000012807800713702392, + "anglePrev": 0.00001126257257179796, + "angularSpeed": 0.000001545228141904433, + "angularVelocity": 0.000001545228141904433, + "area": 1316.36654, + "axes": { + "#": 2692 + }, + "bounds": { + "#": 2700 + }, + "collisionFilter": { + "#": 2703 + }, + "constraintImpulse": { + "#": 2704 + }, + "density": 0.001, + "force": { + "#": 2705 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 1107.5429879268129, + "inverseInertia": 0.0009028994909460621, + "inverseMass": 0.759666832613354, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.31636654, + "motion": 0, + "parent": null, + "position": { + "#": 2706 + }, + "positionImpulse": { + "#": 2707 + }, + "positionPrev": { + "#": 2708 + }, + "region": { + "#": 2709 + }, + "render": { + "#": 2710 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907341008958508, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2712 + }, + "vertices": { + "#": 2713 + } + }, + [ + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + } + ], + { + "x": 0.6234989288481452, + "y": 0.7818242038496992 + }, + { + "x": -0.22251914271201456, + "y": 0.9749283210199147 + }, + { + "x": -0.9009752785705423, + "y": 0.43387042697645745 + }, + { + "x": -0.9009641644230235, + "y": -0.4338935058577428 + }, + { + "x": -0.22249416926372173, + "y": -0.97493402066173 + }, + { + "x": 0.6235189555407779, + "y": -0.7818082322931484 + }, + { + "x": 0.9999999999179803, + "y": 0.000012807800713352227 + }, + { + "max": { + "#": 2701 + }, + "min": { + "#": 2702 + } + }, + { + "x": 1056.801371171746, + "y": 427.7057402444727 + }, + { + "x": 1015.0992451958118, + "y": 382.03241025694916 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1037.0322184039796, + "y": 406.3226777310081 + }, + { + "x": 0.7709843649561361, + "y": -0.0000023621463284856804 + }, + { + "x": 1037.024214303657, + "y": 409.2300077220394 + }, + { + "endCol": 21, + "endRow": 8, + "id": "21,21,8,8", + "startCol": 21, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2711 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00800410032285754, + "y": -2.907329991031272 + }, + [ + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1056.7931233133597, + "y": 415.8389308255206 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1041.9129713244095, + "y": 427.7057402444727 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1023.3570255669676, + "y": 423.47050258327005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1015.0992451958118, + "y": 406.3223968178582 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1023.357464823301, + "y": 389.1745025860829 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1041.9135190628147, + "y": 384.9397402479804 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1056.7933670714233, + "y": 396.8069308270816 + }, + [], + [], + [ + { + "#": 2724 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2725 + }, + "pointB": "", + "render": { + "#": 2726 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": -1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/manipulation/manipulation-0.json b/tests/browser/refs/manipulation/manipulation-0.json new file mode 100644 index 00000000..88b012b8 --- /dev/null +++ b/tests/browser/refs/manipulation/manipulation-0.json @@ -0,0 +1,2695 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 291 + }, + "composites": { + "#": 294 + }, + "constraints": { + "#": 295 + }, + "gravity": { + "#": 299 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + }, + { + "#": 128 + }, + { + "#": 149 + }, + { + "#": 170 + }, + { + "#": 191 + }, + { + "#": 212 + }, + { + "#": 266 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 87 + }, + "bounds": { + "#": 90 + }, + "collisionFilter": { + "#": 93 + }, + "constraintImpulse": { + "#": 94 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 95 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 96 + }, + "positionImpulse": { + "#": 97 + }, + "positionPrev": { + "#": 98 + }, + "render": { + "#": 99 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 101 + }, + "vertices": { + "#": 102 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 125, + "y": 225 + }, + { + "x": 75, + "y": 175 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 200 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 100 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 75, + "y": 175 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 108 + }, + "bounds": { + "#": 111 + }, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": 0.001, + "force": { + "#": 116 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "render": { + "#": 120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 122 + }, + "vertices": { + "#": 123 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 225, + "y": 225 + }, + { + "x": 175, + "y": 175 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 121 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 175 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 129 + }, + "bounds": { + "#": 132 + }, + "collisionFilter": { + "#": 135 + }, + "constraintImpulse": { + "#": 136 + }, + "density": 0.001, + "force": { + "#": 137 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 138 + }, + "positionImpulse": { + "#": 139 + }, + "positionPrev": { + "#": 140 + }, + "render": { + "#": 141 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 143 + }, + "vertices": { + "#": 144 + } + }, + [ + { + "#": 130 + }, + { + "#": 131 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 133 + }, + "min": { + "#": 134 + } + }, + { + "x": 325, + "y": 225 + }, + { + "x": 275, + "y": 175 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 200 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 142 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 175 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 150 + }, + "bounds": { + "#": 153 + }, + "collisionFilter": { + "#": 156 + }, + "constraintImpulse": { + "#": 157 + }, + "density": 0.001, + "force": { + "#": 158 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 159 + }, + "positionImpulse": { + "#": 160 + }, + "positionPrev": { + "#": 161 + }, + "render": { + "#": 162 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 164 + }, + "vertices": { + "#": 165 + } + }, + [ + { + "#": 151 + }, + { + "#": 152 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 154 + }, + "min": { + "#": 155 + } + }, + { + "x": 425, + "y": 225 + }, + { + "x": 375, + "y": 175 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 200 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 163 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 175 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 171 + }, + "bounds": { + "#": 174 + }, + "collisionFilter": { + "#": 177 + }, + "constraintImpulse": { + "#": 178 + }, + "density": 0.001, + "force": { + "#": 179 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 180 + }, + "positionImpulse": { + "#": 181 + }, + "positionPrev": { + "#": 182 + }, + "render": { + "#": 183 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 185 + }, + "vertices": { + "#": 186 + } + }, + [ + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 175 + }, + "min": { + "#": 176 + } + }, + { + "x": 575, + "y": 225 + }, + { + "x": 525, + "y": 175 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550, + "y": 200 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 184 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 175 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 192 + }, + "bounds": { + "#": 195 + }, + "collisionFilter": { + "#": 198 + }, + "constraintImpulse": { + "#": 199 + }, + "density": 0.001, + "force": { + "#": 200 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 201 + }, + "positionImpulse": { + "#": 202 + }, + "positionPrev": { + "#": 203 + }, + "render": { + "#": 204 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 206 + }, + "vertices": { + "#": 207 + } + }, + [ + { + "#": 193 + }, + { + "#": 194 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 196 + }, + "min": { + "#": 197 + } + }, + { + "x": 725, + "y": 225 + }, + { + "x": 675, + "y": 175 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 700, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 700, + "y": 200 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 205 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 175 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 175 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1944.4530819999998, + "axes": { + "#": 213 + }, + "bounds": { + "#": 227 + }, + "circleRadius": 25, + "collisionFilter": { + "#": 230 + }, + "constraintImpulse": { + "#": 231 + }, + "density": 0.001, + "force": { + "#": 232 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 2407.040215928269, + "inverseInertia": 0.0004154479818752644, + "inverseMass": 0.5142834297505565, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9444530819999999, + "motion": 0, + "parent": null, + "position": { + "#": 233 + }, + "positionImpulse": { + "#": 234 + }, + "positionPrev": { + "#": 235 + }, + "render": { + "#": 236 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 238 + }, + "vertices": { + "#": 239 + } + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + } + ], + { + "x": -0.9709182366411434, + "y": -0.23941131501592125 + }, + { + "x": -0.8855293211163864, + "y": -0.4645834924350539 + }, + { + "x": -0.748461108518164, + "y": -0.6631786856012194 + }, + { + "x": -0.5679927261836174, + "y": -0.8230335734358 + }, + { + "x": -0.35473926289412316, + "y": -0.9349652696016757 + }, + { + "x": -0.1204602009454297, + "y": -0.9927181573781084 + }, + { + "x": 0.1204602009454297, + "y": -0.9927181573781084 + }, + { + "x": 0.35473926289412316, + "y": -0.9349652696016757 + }, + { + "x": 0.5679927261836174, + "y": -0.8230335734358 + }, + { + "x": 0.748461108518164, + "y": -0.6631786856012194 + }, + { + "x": 0.8855293211163864, + "y": -0.4645834924350539 + }, + { + "x": 0.9709182366411434, + "y": -0.23941131501592125 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 228 + }, + "min": { + "#": 229 + } + }, + { + "x": 424.818, + "y": 125 + }, + { + "x": 375.182, + "y": 75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 100 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 237 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 424.818, + "y": 103.013 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 423.375, + "y": 108.865 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.575, + "y": 114.202 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 416.578, + "y": 118.713 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 411.618, + "y": 122.136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 405.983, + "y": 124.274 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 400, + "y": 125 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 394.017, + "y": 124.274 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 388.382, + "y": 122.136 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 383.422, + "y": 118.713 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 379.425, + "y": 114.202 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 376.625, + "y": 108.865 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 375.182, + "y": 103.013 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 375.182, + "y": 96.987 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 376.625, + "y": 91.135 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 379.425, + "y": 85.798 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 383.422, + "y": 81.287 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 388.382, + "y": 77.864 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 394.017, + "y": 75.726 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 400, + "y": 75 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 405.983, + "y": 75.726 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 411.618, + "y": 77.864 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 416.578, + "y": 81.287 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 420.575, + "y": 85.798 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 423.375, + "y": 91.135 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 424.818, + "y": 96.987 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 15500, + "axes": { + "#": 267 + }, + "bounds": { + "#": 272 + }, + "collisionFilter": { + "#": 275 + }, + "constraintImpulse": { + "#": 276 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 277 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 278 + }, + "positionImpulse": { + "#": 279 + }, + "positionPrev": { + "#": 280 + }, + "render": { + "#": 281 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 283 + }, + "vertices": { + "#": 284 + } + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.5931990380498501, + "y": 0.8050558373533679 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.5931990380498501, + "y": -0.8050558373533679 + }, + { + "max": { + "#": 273 + }, + "min": { + "#": 274 + } + }, + { + "x": 685, + "y": 295 + }, + { + "x": 540, + "y": 105 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 636.7741935483871, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 636.7741935483871, + "y": 200 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 282 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 635, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 175 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 635, + "y": 105 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 685, + "y": 105 + }, + { + "max": { + "#": 292 + }, + "min": { + "#": 293 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [], + [ + { + "#": 296 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 297 + }, + "pointB": "", + "render": { + "#": 298 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/manipulation/manipulation-10.json b/tests/browser/refs/manipulation/manipulation-10.json new file mode 100644 index 00000000..9443ec35 --- /dev/null +++ b/tests/browser/refs/manipulation/manipulation-10.json @@ -0,0 +1,2829 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 305 + }, + "composites": { + "#": 308 + }, + "constraints": { + "#": 309 + }, + "gravity": { + "#": 313 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + }, + { + "#": 156 + }, + { + "#": 178 + }, + { + "#": 202 + }, + { + "#": 224 + }, + { + "#": 279 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 91 + }, + "bounds": { + "#": 94 + }, + "collisionFilter": { + "#": 97 + }, + "constraintImpulse": { + "#": 98 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 99 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 100 + }, + "positionImpulse": { + "#": 101 + }, + "positionPrev": { + "#": 102 + }, + "region": { + "#": 103 + }, + "render": { + "#": 104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.34694662356878325, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 106 + }, + "vertices": { + "#": 107 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 95 + }, + "min": { + "#": 96 + } + }, + { + "x": 125, + "y": 225.73048573998472 + }, + { + "x": 75, + "y": 175.73048573998472 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 200.73048573998472 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 200.38353911641593 + }, + { + "endCol": 2, + "endRow": 4, + "id": "1,2,3,4", + "startCol": 1, + "startRow": 3 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 105 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.34694662356878325 + }, + [ + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 75, + "y": 175.73048573998472 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 175.73048573998472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 225.73048573998472 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 225.73048573998472 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 113 + }, + "bounds": { + "#": 116 + }, + "collisionFilter": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "density": 0.001, + "force": { + "#": 121 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 122 + }, + "positionImpulse": { + "#": 123 + }, + "positionPrev": { + "#": 124 + }, + "region": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 225, + "y": 242.73575476702598 + }, + { + "x": 175, + "y": 192.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 217.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 214.8284840519903 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 192.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 192.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "region": { + "#": 147 + }, + "render": { + "#": 148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 150 + }, + "vertices": { + "#": 151 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 325, + "y": 242.73575476702598 + }, + { + "x": 275, + "y": 192.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 217.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 214.8284840519903 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 149 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 192.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 192.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 157 + }, + "bounds": { + "#": 160 + }, + "collisionFilter": { + "#": 163 + }, + "constraintImpulse": { + "#": 164 + }, + "density": 0.001, + "force": { + "#": 165 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 166 + }, + "positionImpulse": { + "#": 167 + }, + "positionPrev": { + "#": 168 + }, + "region": { + "#": 169 + }, + "render": { + "#": 170 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 172 + }, + "vertices": { + "#": 173 + } + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 161 + }, + "min": { + "#": 162 + } + }, + { + "x": 425, + "y": 242.73575476702598 + }, + { + "x": 375, + "y": 192.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 217.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 214.8284840519903 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 171 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 192.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 192.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 242.73575476702598 + }, + { + "angle": 0.14612798086844309, + "anglePrev": 0.1246010035041571, + "angularSpeed": 0.02056706941041114, + "angularVelocity": 0.02162624928823663, + "area": 2724.393522189719, + "axes": { + "#": 179 + }, + "bounds": { + "#": 184 + }, + "collisionFilter": { + "#": 187 + }, + "constraintImpulse": { + "#": 188 + }, + "density": 0.001, + "force": { + "#": 189 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 4951.138232236453, + "inverseInertia": 0.00020197375898113333, + "inverseMass": 0.3670541688838896, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.724393522189719, + "motion": 0, + "parent": null, + "position": { + "#": 190 + }, + "positionImpulse": { + "#": 191 + }, + "positionPrev": { + "#": 192 + }, + "region": { + "#": 193 + }, + "render": { + "#": 194 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1314145030349199, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 196 + }, + "vertices": { + "#": 197 + } + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": 0.14190682660976545, + "y": -0.9898800192758442 + }, + { + "x": 0.982725000864904, + "y": 0.18507180410606755 + }, + { + "x": -0.14560848128307743, + "y": 0.9893422917162874 + }, + { + "x": -0.9947967681522271, + "y": -0.10187929168326662 + }, + { + "max": { + "#": 185 + }, + "min": { + "#": 186 + } + }, + { + "x": 589.3031747114876, + "y": 167.891423454808 + }, + { + "x": 529.0766103860074, + "y": 108.37873508322603 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.6285646868931, + "y": 138.0642972214066 + }, + { + "x": 0.005865588352549408, + "y": -0.09764246594429205 + }, + { + "x": 556.4736439173896, + "y": 138.549195439965 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 195 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.1508810430499352, + "y": -0.48802682838967826 + }, + [ + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 534.3890581958299, + "y": 108.73778919383847 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 588.2302446469773, + "y": 116.45633261466281 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 578.5437249718218, + "y": 167.891423454808 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 529.0766103860074, + "y": 160.61099939065411 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3111.7896493773515, + "axes": { + "#": 203 + }, + "bounds": { + "#": 206 + }, + "collisionFilter": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "density": 0.001, + "force": { + "#": 211 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1613.8724703286705, + "inverseInertia": 0.0006196276461648464, + "inverseMass": 0.32135848263397027, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.1117896493773514, + "motion": 0, + "parent": null, + "position": { + "#": 212 + }, + "positionImpulse": { + "#": 213 + }, + "positionPrev": { + "#": 214 + }, + "region": { + "#": 215 + }, + "render": { + "#": 216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 218 + }, + "vertices": { + "#": 219 + } + }, + [ + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 207 + }, + "min": { + "#": 208 + } + }, + { + "x": 727.8917086666333, + "y": 245.6274634336589 + }, + { + "x": 672.1082913333667, + "y": 189.84404610039306 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 700, + "y": 217.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 700, + "y": 214.8284840519903 + }, + { + "endCol": 15, + "endRow": 5, + "id": "14,15,3,5", + "startCol": 14, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 217 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 672.1082913333667, + "y": 189.84404610039306 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 727.8917086666333, + "y": 189.84404610039306 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 727.8917086666333, + "y": 245.6274634336589 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 672.1082913333667, + "y": 245.6274634336589 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1944.4530819999998, + "axes": { + "#": 225 + }, + "bounds": { + "#": 239 + }, + "circleRadius": 25, + "collisionFilter": { + "#": 242 + }, + "constraintImpulse": { + "#": 243 + }, + "density": 0.001, + "force": { + "#": 244 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 2407.040215928269, + "inverseInertia": 0.0004154479818752644, + "inverseMass": 0.5142834297505565, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9444530819999999, + "motion": 0, + "parent": null, + "position": { + "#": 245 + }, + "positionImpulse": { + "#": 246 + }, + "positionPrev": { + "#": 247 + }, + "region": { + "#": 248 + }, + "render": { + "#": 249 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 251 + }, + "vertices": { + "#": 252 + } + }, + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "x": -0.9709182366411434, + "y": -0.23941131501592125 + }, + { + "x": -0.8855293211163864, + "y": -0.4645834924350539 + }, + { + "x": -0.748461108518164, + "y": -0.6631786856012194 + }, + { + "x": -0.5679927261836174, + "y": -0.8230335734358 + }, + { + "x": -0.35473926289412316, + "y": -0.9349652696016757 + }, + { + "x": -0.1204602009454297, + "y": -0.9927181573781084 + }, + { + "x": 0.1204602009454297, + "y": -0.9927181573781084 + }, + { + "x": 0.35473926289412316, + "y": -0.9349652696016757 + }, + { + "x": 0.5679927261836174, + "y": -0.8230335734358 + }, + { + "x": 0.748461108518164, + "y": -0.6631786856012194 + }, + { + "x": 0.8855293211163864, + "y": -0.4645834924350539 + }, + { + "x": 0.9709182366411434, + "y": -0.23941131501592125 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 240 + }, + "min": { + "#": 241 + } + }, + { + "x": 424.818, + "y": 142.73575476702572 + }, + { + "x": 375.182, + "y": 92.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 114.82848405199007 + }, + { + "endCol": 8, + "endRow": 2, + "id": "7,8,1,2", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 250 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 424.818, + "y": 120.74875476702573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 423.375, + "y": 126.60075476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.575, + "y": 131.93775476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 416.578, + "y": 136.44875476702572 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 411.618, + "y": 139.87175476702575 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 405.983, + "y": 142.00975476702573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 400, + "y": 142.73575476702572 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 394.017, + "y": 142.00975476702573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 388.382, + "y": 139.87175476702575 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 383.422, + "y": 136.44875476702572 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 379.425, + "y": 131.93775476702572 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 376.625, + "y": 126.60075476702572 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 375.182, + "y": 120.74875476702573 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 375.182, + "y": 114.72275476702572 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 376.625, + "y": 108.87075476702573 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 379.425, + "y": 103.53375476702573 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 383.422, + "y": 99.02275476702573 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 388.382, + "y": 95.59975476702573 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 394.017, + "y": 93.46175476702572 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 400, + "y": 92.73575476702572 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 405.983, + "y": 93.46175476702572 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 411.618, + "y": 95.59975476702573 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 416.578, + "y": 99.02275476702573 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 420.575, + "y": 103.53375476702573 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 423.375, + "y": 108.87075476702573 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 424.818, + "y": 114.72275476702572 + }, + { + "angle": 0.21999999999999997, + "anglePrev": 0.19999999999999998, + "angularSpeed": 0.02, + "angularVelocity": 0.01999999999999999, + "area": 15500, + "axes": { + "#": 280 + }, + "bounds": { + "#": 285 + }, + "collisionFilter": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 290 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 291 + }, + "positionImpulse": { + "#": 292 + }, + "positionPrev": { + "#": 293 + }, + "region": { + "#": 294 + }, + "render": { + "#": 295 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.34694662356878325, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 297 + }, + "vertices": { + "#": 298 + } + }, + [ + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 0.21822962308086777, + "y": -0.9758974493306056 + }, + { + "x": -0.7545884601228973, + "y": 0.6561983357563127 + }, + { + "x": 0.9758974493306051, + "y": 0.21822962308087102 + }, + { + "x": -0.403214396233538, + "y": -0.9151055407274198 + }, + { + "max": { + "#": 286 + }, + "min": { + "#": 287 + } + }, + { + "x": 664.1583507220029, + "y": 298.4269817895894 + }, + { + "x": 505.46161034424784, + "y": 112.62729771248 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 200.73048573998472 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 200.38353911641593 + }, + { + "endCol": 13, + "endRow": 6, + "id": "10,13,2,6", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 296 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.34694662356878325 + }, + [ + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 624.9190561038296, + "y": 298.4269817895894 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 578.7418050737159, + "y": 288.10085162691234 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 505.46161034424784, + "y": 203.8330528756666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 515.7877405069246, + "y": 157.6558018455528 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.9810996918889, + "y": 112.62729771248 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 664.1583507220029, + "y": 122.95342787515708 + }, + { + "max": { + "#": 306 + }, + "min": { + "#": 307 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [], + [ + { + "#": 310 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 311 + }, + "pointB": "", + "render": { + "#": 312 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/mixed/mixed-0.json b/tests/browser/refs/mixed/mixed-0.json new file mode 100644 index 00000000..9ea00d11 --- /dev/null +++ b/tests/browser/refs/mixed/mixed-0.json @@ -0,0 +1,17875 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 2026 + }, + "gravity": { + "#": 2030 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 2024 + }, + "constraints": { + "#": 2025 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 146 + }, + { + "#": 167 + }, + { + "#": 188 + }, + { + "#": 209 + }, + { + "#": 280 + }, + { + "#": 301 + }, + { + "#": 322 + }, + { + "#": 343 + }, + { + "#": 397 + }, + { + "#": 418 + }, + { + "#": 439 + }, + { + "#": 493 + }, + { + "#": 532 + }, + { + "#": 553 + }, + { + "#": 574 + }, + { + "#": 628 + }, + { + "#": 667 + }, + { + "#": 688 + }, + { + "#": 709 + }, + { + "#": 730 + }, + { + "#": 751 + }, + { + "#": 772 + }, + { + "#": 801 + }, + { + "#": 822 + }, + { + "#": 861 + }, + { + "#": 916 + }, + { + "#": 937 + }, + { + "#": 958 + }, + { + "#": 979 + }, + { + "#": 1000 + }, + { + "#": 1039 + }, + { + "#": 1102 + }, + { + "#": 1123 + }, + { + "#": 1177 + }, + { + "#": 1198 + }, + { + "#": 1252 + }, + { + "#": 1273 + }, + { + "#": 1294 + }, + { + "#": 1315 + }, + { + "#": 1336 + }, + { + "#": 1361 + }, + { + "#": 1400 + }, + { + "#": 1421 + }, + { + "#": 1450 + }, + { + "#": 1489 + }, + { + "#": 1510 + }, + { + "#": 1549 + }, + { + "#": 1570 + }, + { + "#": 1591 + }, + { + "#": 1642 + }, + { + "#": 1697 + }, + { + "#": 1718 + }, + { + "#": 1739 + }, + { + "#": 1793 + }, + { + "#": 1847 + }, + { + "#": 1872 + }, + { + "#": 1943 + }, + { + "#": 1964 + }, + { + "#": 2003 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4652.0400580000005, + "axes": { + "#": 93 + }, + "bounds": { + "#": 107 + }, + "chamfer": "", + "circleRadius": 38.6693029835391, + "collisionFilter": { + "#": 110 + }, + "constraintImpulse": { + "#": 111 + }, + "density": 0.001, + "force": { + "#": 112 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 13777.654848191112, + "inverseInertia": 0.00007258129275399081, + "inverseMass": 0.21495945596606034, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.652040058000001, + "motion": 0, + "parent": null, + "position": { + "#": 113 + }, + "positionImpulse": { + "#": 114 + }, + "positionPrev": { + "#": 115 + }, + "render": { + "#": 116 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 118 + }, + "vertices": { + "#": 119 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "x": -0.970938605280551, + "y": -0.2393286960977694 + }, + { + "x": -0.8854806638699364, + "y": -0.46467622481945037 + }, + { + "x": -0.7484618993833455, + "y": -0.663177793032513 + }, + { + "x": -0.568144016285212, + "y": -0.8229291444342633 + }, + { + "x": -0.354612198176752, + "y": -0.935013469905248 + }, + { + "x": -0.12046912413389774, + "y": -0.9927170745637508 + }, + { + "x": 0.12046912413389774, + "y": -0.9927170745637508 + }, + { + "x": 0.354612198176752, + "y": -0.935013469905248 + }, + { + "x": 0.568144016285212, + "y": -0.8229291444342633 + }, + { + "x": 0.7484618993833455, + "y": -0.663177793032513 + }, + { + "x": 0.8854806638699364, + "y": -0.46467622481945037 + }, + { + "x": 0.970938605280551, + "y": -0.2393286960977694 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 108 + }, + "min": { + "#": 109 + } + }, + { + "x": 96.774, + "y": 97.338 + }, + { + "x": 20, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 58.387, + "y": 58.669 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 58.387, + "y": 58.669 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 117 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 96.774, + "y": 63.33 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 94.543, + "y": 72.381 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 90.211, + "y": 80.636 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 84.029, + "y": 87.613 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 76.358, + "y": 92.90899999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 67.64099999999999, + "y": 96.215 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 58.387, + "y": 97.338 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 49.133, + "y": 96.215 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 40.416, + "y": 92.90899999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 32.745000000000005, + "y": 87.613 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 26.563, + "y": 80.636 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 22.231, + "y": 72.381 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20, + "y": 63.33 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 20, + "y": 54.007999999999996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 22.231, + "y": 44.956999999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 26.563, + "y": 36.702 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 32.745000000000005, + "y": 29.724999999999998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 40.416, + "y": 24.428999999999995 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 49.133, + "y": 21.122999999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 58.387, + "y": 20 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 67.64099999999999, + "y": 21.122999999999998 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 76.358, + "y": 24.428999999999995 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 84.029, + "y": 29.724999999999998 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 90.211, + "y": 36.702 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 94.543, + "y": 44.956999999999994 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 96.774, + "y": 54.007999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3285.224192447692, + "axes": { + "#": 147 + }, + "bounds": { + "#": 150 + }, + "chamfer": "", + "collisionFilter": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "density": 0.001, + "force": { + "#": 155 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 16260.276467540087, + "inverseInertia": 0.00006149956933366236, + "inverseMass": 0.3043932290218949, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.285224192447692, + "motion": 0, + "parent": null, + "position": { + "#": 156 + }, + "positionImpulse": { + "#": 157 + }, + "positionPrev": { + "#": 158 + }, + "render": { + "#": 159 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 161 + }, + "vertices": { + "#": 162 + } + }, + [ + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 151 + }, + "min": { + "#": 152 + } + }, + { + "x": 215.44220987654322, + "y": 47.68411351165981 + }, + { + "x": 96.774, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 156.1081049382716, + "y": 33.8420567558299 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 156.1081049382716, + "y": 33.8420567558299 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 160 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 96.774, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 215.44220987654322, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 215.44220987654322, + "y": 47.68411351165981 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 96.774, + "y": 47.68411351165981 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1082.552735856085, + "axes": { + "#": 168 + }, + "bounds": { + "#": 171 + }, + "chamfer": "", + "collisionFilter": { + "#": 174 + }, + "constraintImpulse": { + "#": 175 + }, + "density": 0.001, + "force": { + "#": 176 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 830.3537019899098, + "inverseInertia": 0.0012043060657205955, + "inverseMass": 0.923742527156608, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0825527358560851, + "motion": 0, + "parent": null, + "position": { + "#": 177 + }, + "positionImpulse": { + "#": 178 + }, + "positionPrev": { + "#": 179 + }, + "render": { + "#": 180 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 182 + }, + "vertices": { + "#": 183 + } + }, + [ + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 172 + }, + "min": { + "#": 173 + } + }, + { + "x": 243.02622908093278, + "y": 59.24564900548697 + }, + { + "x": 215.44220987654322, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 229.234219478738, + "y": 39.622824502743484 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 229.234219478738, + "y": 39.622824502743484 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 181 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.44220987654322, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.02622908093278, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 243.02622908093278, + "y": 59.24564900548697 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 215.44220987654322, + "y": 59.24564900548697 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3923.7696, + "axes": { + "#": 189 + }, + "bounds": { + "#": 192 + }, + "chamfer": "", + "collisionFilter": { + "#": 195 + }, + "constraintImpulse": { + "#": 196 + }, + "density": 0.001, + "force": { + "#": 197 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 10263.978582589441, + "inverseInertia": 0.00009742810665021045, + "inverseMass": 0.2548569620397691, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.9237696, + "motion": 0, + "parent": null, + "position": { + "#": 198 + }, + "positionImpulse": { + "#": 199 + }, + "positionPrev": { + "#": 200 + }, + "render": { + "#": 201 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 203 + }, + "vertices": { + "#": 204 + } + }, + [ + { + "#": 190 + }, + { + "#": 191 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 193 + }, + "min": { + "#": 194 + } + }, + { + "x": 305.6662290809328, + "y": 82.64 + }, + { + "x": 243.0262290809328, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 274.3462290809328, + "y": 51.32 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 274.3462290809328, + "y": 51.32 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 202 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 305.6662290809328, + "y": 82.64 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.0262290809328, + "y": 82.64 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 243.0262290809328, + "y": 20 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 305.6662290809328, + "y": 20 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4997.272746939517, + "axes": { + "#": 210 + }, + "bounds": { + "#": 239 + }, + "collisionFilter": { + "#": 242 + }, + "constraintImpulse": { + "#": 243 + }, + "density": 0.001, + "force": { + "#": 244 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 15946.952308478234, + "inverseInertia": 0.00006270790685618014, + "inverseMass": 0.20010914965816717, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.997272746939517, + "motion": 0, + "parent": null, + "position": { + "#": 245 + }, + "positionImpulse": { + "#": 246 + }, + "positionPrev": { + "#": 247 + }, + "render": { + "#": 248 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 250 + }, + "vertices": { + "#": 251 + } + }, + [ + { + "#": 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 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "x": 0.9924760554349678, + "y": 0.1224388802147695 + }, + { + "x": 0.9329621121022841, + "y": 0.3599745787991772 + }, + { + "x": 0.8175029860449042, + "y": 0.5759243594498024 + }, + { + "x": 0.6269579598581204, + "y": 0.7790530896996324 + }, + { + "x": 0.5230761169267524, + "y": 0.8522859707286224 + }, + { + "x": 0.30025322413582944, + "y": 0.9538595291739971 + }, + { + "x": 0.05942497739698501, + "y": 0.9982327744876783 + }, + { + "x": -0.2181973087050441, + "y": 0.9759046748908808 + }, + { + "x": -0.340219004107252, + "y": 0.9403462283883897 + }, + { + "x": -0.5585577794349429, + "y": 0.8294656153408083 + }, + { + "x": -0.7434018939882578, + "y": 0.6688449925167049 + }, + { + "x": -0.8990380556862142, + "y": 0.4378704996091327 + }, + { + "x": -0.947315604262863, + "y": 0.3203016483255851 + }, + { + "x": -0.9967572247557309, + "y": 0.08046760153784385 + }, + { + "x": -0.98642845392417, + "y": -0.1641916724099355 + }, + { + "x": -0.9028867965324314, + "y": -0.4298783928594269 + }, + { + "x": -0.8410675239064238, + "y": -0.5409301435767072 + }, + { + "x": -0.684383219840347, + "y": -0.7291224920416043 + }, + { + "x": -0.4866589649720178, + "y": -0.8735920396915052 + }, + { + "x": -0.2268457523351642, + "y": -0.9739306980722465 + }, + { + "x": -0.10147762418942655, + "y": -0.9948378218528232 + }, + { + "x": 0.14334995646771803, + "y": -0.9896720618370024 + }, + { + "x": 0.37958123741135696, + "y": -0.9251584103305028 + }, + { + "x": 0.6200225840150356, + "y": -0.7845839632004457 + }, + { + "x": 0.7145300645280549, + "y": -0.6996047361800329 + }, + { + "x": 0.8631352814186796, + "y": -0.5049727576516347 + }, + { + "x": 0.9599824896949003, + "y": -0.2800600283496034 + }, + { + "x": 0.9999901643865531, + "y": -0.004435214781111542 + }, + { + "max": { + "#": 240 + }, + "min": { + "#": 241 + } + }, + { + "x": 384.53447413016573, + "y": 101.9717452787574 + }, + { + "x": 304.09615416491675, + "y": 19.991102139699215 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 345.8853890635573, + "y": 60.99032156952909 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 345.8853890635573, + "y": 60.99032156952909 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 249 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 384.53447413016573, + "y": 74.78732248926119 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 384.2346485424008, + "y": 77.21767562660979 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.3531508557217, + "y": 79.502292352382 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 381.94284018253285, + "y": 81.50417535605338 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 359.1961172290219, + "y": 99.81003821052148 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 357.1090216821008, + "y": 101.09095784528364 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 354.77319070036424, + "y": 101.8262241626523 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 352.3286975959631, + "y": 101.9717452787574 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 323.83440250851476, + "y": 95.60085818138411 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 321.5316804226027, + "y": 94.76772907302637 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 319.5004830462667, + "y": 93.39993145111511 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 317.86261383403036, + "y": 91.57948712080766 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.07754668862725, + "y": 65.32911876194066 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 304.2932009757114, + "y": 63.009358820441335 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 304.09615416491675, + "y": 60.568527622281536 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 304.49822213748087, + "y": 58.152989229087865 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 317.0499250855058, + "y": 31.790261876390264 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 318.3745561107022, + "y": 29.730653718699234 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 320.16003300747985, + "y": 28.05473445834879 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 322.2992872769655, + "y": 26.86300282470488 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 350.73593504578605, + "y": 20.23960264872065 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 353.1721145198219, + "y": 19.991102139699215 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 355.5956439736816, + "y": 20.34214048371811 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 357.86119106082504, + "y": 21.27166688389901 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 380.7694257245824, + "y": 39.37504844360711 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 382.4826021343991, + "y": 41.12477366321916 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 383.7191681141157, + "y": 43.238400009834436 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 384.4049728393965, + "y": 45.58918363111506 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2424.7221285720684, + "axes": { + "#": 281 + }, + "bounds": { + "#": 284 + }, + "chamfer": "", + "collisionFilter": { + "#": 287 + }, + "constraintImpulse": { + "#": 288 + }, + "density": 0.001, + "force": { + "#": 289 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 6421.581536792131, + "inverseInertia": 0.00015572487778447566, + "inverseMass": 0.41241839145869685, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.4247221285720686, + "motion": 0, + "parent": null, + "position": { + "#": 290 + }, + "positionImpulse": { + "#": 291 + }, + "positionPrev": { + "#": 292 + }, + "render": { + "#": 293 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 295 + }, + "vertices": { + "#": 296 + } + }, + [ + { + "#": 282 + }, + { + "#": 283 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 285 + }, + "min": { + "#": 286 + } + }, + { + "x": 468.9105029367501, + "y": 48.73709705075446 + }, + { + "x": 384.53447413016573, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.7224885334579, + "y": 34.36854852537723 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.7224885334579, + "y": 34.36854852537723 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 294 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 384.53447413016573, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 468.9105029367501, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 468.9105029367501, + "y": 48.73709705075446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.53447413016573, + "y": 48.73709705075446 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3062.135108689158, + "axes": { + "#": 302 + }, + "bounds": { + "#": 305 + }, + "chamfer": "", + "collisionFilter": { + "#": 308 + }, + "constraintImpulse": { + "#": 309 + }, + "density": 0.001, + "force": { + "#": 310 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 12902.457783405109, + "inverseInertia": 0.00007750461321300974, + "inverseMass": 0.3265695224101594, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.062135108689158, + "motion": 0, + "parent": null, + "position": { + "#": 311 + }, + "positionImpulse": { + "#": 312 + }, + "positionPrev": { + "#": 313 + }, + "render": { + "#": 314 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 316 + }, + "vertices": { + "#": 317 + } + }, + [ + { + "#": 303 + }, + { + "#": 304 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 306 + }, + "min": { + "#": 307 + } + }, + { + "x": 577.7650982728269, + "y": 48.13050840192044 + }, + { + "x": 468.9105029367501, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 523.3378006047885, + "y": 34.06525420096022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 523.3378006047885, + "y": 34.06525420096022 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 315 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 468.9105029367501, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 577.7650982728269, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 577.7650982728269, + "y": 48.13050840192044 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 468.9105029367501, + "y": 48.13050840192044 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1378.042832459846, + "axes": { + "#": 323 + }, + "bounds": { + "#": 326 + }, + "chamfer": "", + "collisionFilter": { + "#": 329 + }, + "constraintImpulse": { + "#": 330 + }, + "density": 0.001, + "force": { + "#": 331 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1458.976407551466, + "inverseInertia": 0.0006854120428706963, + "inverseMass": 0.7256668489868136, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3780428324598462, + "motion": 0, + "parent": null, + "position": { + "#": 332 + }, + "positionImpulse": { + "#": 333 + }, + "positionPrev": { + "#": 334 + }, + "render": { + "#": 335 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 337 + }, + "vertices": { + "#": 338 + } + }, + [ + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 327 + }, + "min": { + "#": 328 + } + }, + { + "x": 606.0274868187803, + "y": 68.75889489026063 + }, + { + "x": 577.7650982728269, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.8962925458036, + "y": 44.37944744513032 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 591.8962925458036, + "y": 44.37944744513032 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 336 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 577.7650982728269, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 606.0274868187803, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 606.0274868187803, + "y": 68.75889489026063 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 577.7650982728269, + "y": 68.75889489026063 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4586.778272, + "axes": { + "#": 344 + }, + "bounds": { + "#": 358 + }, + "chamfer": "", + "circleRadius": 38.39666923868313, + "collisionFilter": { + "#": 361 + }, + "constraintImpulse": { + "#": 362 + }, + "density": 0.001, + "force": { + "#": 363 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 13393.80286068791, + "inverseInertia": 0.00007466139455696301, + "inverseMass": 0.21801795087948828, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.586778271999999, + "motion": 0, + "parent": null, + "position": { + "#": 364 + }, + "positionImpulse": { + "#": 365 + }, + "positionPrev": { + "#": 366 + }, + "render": { + "#": 367 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 369 + }, + "vertices": { + "#": 370 + } + }, + [ + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": -0.9709504274119591, + "y": -0.23928072949682755 + }, + { + "x": -0.885437915675226, + "y": -0.4647576760901441 + }, + { + "x": -0.7484931813297513, + "y": -0.6631424865765035 + }, + { + "x": -0.5681140797141272, + "y": -0.8229498116109939 + }, + { + "x": -0.3545663008318936, + "y": -0.935030875594163 + }, + { + "x": -0.12056365736134667, + "y": -0.9927055981123789 + }, + { + "x": 0.12056365736134667, + "y": -0.9927055981123789 + }, + { + "x": 0.3545663008318936, + "y": -0.935030875594163 + }, + { + "x": 0.5681140797141272, + "y": -0.8229498116109939 + }, + { + "x": 0.7484931813297513, + "y": -0.6631424865765035 + }, + { + "x": 0.885437915675226, + "y": -0.4647576760901441 + }, + { + "x": 0.9709504274119591, + "y": -0.23928072949682755 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 359 + }, + "min": { + "#": 360 + } + }, + { + "x": 682.2614868187802, + "y": 96.794 + }, + { + "x": 606.0274868187803, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 644.1444868187803, + "y": 58.397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 644.1444868187803, + "y": 58.397 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 368 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 682.2614868187802, + "y": 63.025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680.0464868187803, + "y": 72.013 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675.7444868187803, + "y": 80.209 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 669.6064868187802, + "y": 87.137 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 661.9884868187803, + "y": 92.396 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 653.3334868187802, + "y": 95.678 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 644.1444868187803, + "y": 96.794 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 634.9554868187803, + "y": 95.678 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 626.3004868187802, + "y": 92.396 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 618.6824868187803, + "y": 87.137 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 612.5444868187802, + "y": 80.209 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 608.2424868187802, + "y": 72.013 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 606.0274868187803, + "y": 63.025 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 606.0274868187803, + "y": 53.769 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 608.2424868187802, + "y": 44.781 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 612.5444868187802, + "y": 36.584999999999994 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 618.6824868187803, + "y": 29.657 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 626.3004868187802, + "y": 24.397999999999996 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 634.9554868187803, + "y": 21.116 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 644.1444868187803, + "y": 20 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 653.3334868187802, + "y": 21.116 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 661.9884868187803, + "y": 24.397999999999996 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 669.6064868187802, + "y": 29.657 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 675.7444868187803, + "y": 36.584999999999994 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 680.0464868187803, + "y": 44.781 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 682.2614868187802, + "y": 53.769 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1977.449427607814, + "axes": { + "#": 398 + }, + "bounds": { + "#": 401 + }, + "chamfer": "", + "collisionFilter": { + "#": 404 + }, + "constraintImpulse": { + "#": 405 + }, + "density": 0.001, + "force": { + "#": 406 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 2674.507793468318, + "inverseInertia": 0.0003739005743195812, + "inverseMass": 0.5057019340361756, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.977449427607814, + "motion": 0, + "parent": null, + "position": { + "#": 407 + }, + "positionImpulse": { + "#": 408 + }, + "positionPrev": { + "#": 409 + }, + "render": { + "#": 410 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 412 + }, + "vertices": { + "#": 413 + } + }, + [ + { + "#": 399 + }, + { + "#": 400 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 402 + }, + "min": { + "#": 403 + } + }, + { + "x": 732.0824101726896, + "y": 59.69114368998629 + }, + { + "x": 682.2614868187802, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 707.1719484957349, + "y": 39.845571844993145 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 707.1719484957349, + "y": 39.845571844993145 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 411 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 682.2614868187802, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 732.0824101726896, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 732.0824101726896, + "y": 59.69114368998629 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 682.2614868187802, + "y": 59.69114368998629 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2209.188004, + "axes": { + "#": 419 + }, + "bounds": { + "#": 422 + }, + "chamfer": "", + "collisionFilter": { + "#": 425 + }, + "constraintImpulse": { + "#": 426 + }, + "density": 0.001, + "force": { + "#": 427 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 3253.6744246783364, + "inverseInertia": 0.00030734482602661194, + "inverseMass": 0.4526550018329721, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.209188004, + "motion": 0, + "parent": null, + "position": { + "#": 428 + }, + "positionImpulse": { + "#": 429 + }, + "positionPrev": { + "#": 430 + }, + "render": { + "#": 431 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 433 + }, + "vertices": { + "#": 434 + } + }, + [ + { + "#": 420 + }, + { + "#": 421 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 423 + }, + "min": { + "#": 424 + } + }, + { + "x": 779.0844101726896, + "y": 67.00200000000001 + }, + { + "x": 732.0824101726896, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 755.5834101726896, + "y": 43.501000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 755.5834101726896, + "y": 43.501000000000005 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 432 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.0844101726896, + "y": 67.00200000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 732.0824101726896, + "y": 67.00200000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 732.0824101726896, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.0844101726896, + "y": 20.000000000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5068.594224000001, + "axes": { + "#": 440 + }, + "bounds": { + "#": 454 + }, + "chamfer": "", + "circleRadius": 40.363404492455416, + "collisionFilter": { + "#": 457 + }, + "constraintImpulse": { + "#": 458 + }, + "density": 0.001, + "force": { + "#": 459 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 16355.486166242355, + "inverseInertia": 0.00006114156374415793, + "inverseMass": 0.19729336297329916, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.068594224000002, + "motion": 0, + "parent": null, + "position": { + "#": 460 + }, + "positionImpulse": { + "#": 461 + }, + "positionPrev": { + "#": 462 + }, + "render": { + "#": 463 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 465 + }, + "vertices": { + "#": 466 + } + }, + [ + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + } + ], + { + "x": -0.9709351990101542, + "y": -0.23934251465862083 + }, + { + "x": -0.8854571098935062, + "y": -0.4647211061906261 + }, + { + "x": -0.7485196743273241, + "y": -0.6631125825566249 + }, + { + "x": -0.568097926977753, + "y": -0.8229609622354999 + }, + { + "x": -0.35465733215779727, + "y": -0.9349963511943317 + }, + { + "x": -0.12044185194079757, + "y": -0.992720383744119 + }, + { + "x": 0.12044185194079757, + "y": -0.992720383744119 + }, + { + "x": 0.35465733215779727, + "y": -0.9349963511943317 + }, + { + "x": 0.568097926977753, + "y": -0.8229609622354999 + }, + { + "x": 0.7485196743273241, + "y": -0.6631125825566249 + }, + { + "x": 0.8854571098935062, + "y": -0.4647211061906261 + }, + { + "x": 0.9709351990101542, + "y": -0.23934251465862083 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 455 + }, + "min": { + "#": 456 + } + }, + { + "x": 859.2224101726895, + "y": 100.726 + }, + { + "x": 779.0844101726896, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.1534101726895, + "y": 60.363 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 819.1534101726895, + "y": 60.363 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 464 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 859.2224101726895, + "y": 65.22800000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 856.8934101726895, + "y": 74.676 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 852.3714101726895, + "y": 83.292 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 845.9194101726895, + "y": 90.575 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 837.9114101726896, + "y": 96.10300000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 828.8134101726895, + "y": 99.554 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 819.1534101726895, + "y": 100.726 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 809.4934101726896, + "y": 99.554 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 800.3954101726895, + "y": 96.10300000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 792.3874101726896, + "y": 90.575 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 785.9354101726896, + "y": 83.292 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 781.4134101726895, + "y": 74.676 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 779.0844101726896, + "y": 65.22800000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 779.0844101726896, + "y": 55.498 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 781.4134101726895, + "y": 46.05 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 785.9354101726896, + "y": 37.434 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 792.3874101726896, + "y": 30.151 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 800.3954101726895, + "y": 24.622999999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 809.4934101726896, + "y": 21.171999999999997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 819.1534101726895, + "y": 20 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 828.8134101726895, + "y": 21.171999999999997 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 837.9114101726896, + "y": 24.622999999999998 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 845.9194101726895, + "y": 30.151 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 852.3714101726895, + "y": 37.434 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 856.8934101726895, + "y": 46.05 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 859.2224101726895, + "y": 55.498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 703.4621424265246, + "axes": { + "#": 494 + }, + "bounds": { + "#": 503 + }, + "collisionFilter": { + "#": 506 + }, + "constraintImpulse": { + "#": 507 + }, + "density": 0.001, + "force": { + "#": 508 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 321.3570390953915, + "inverseInertia": 0.003111803627563174, + "inverseMass": 1.4215406056544801, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7034621424265246, + "motion": 0, + "parent": null, + "position": { + "#": 509 + }, + "positionImpulse": { + "#": 510 + }, + "positionPrev": { + "#": 511 + }, + "render": { + "#": 512 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 514 + }, + "vertices": { + "#": 515 + } + }, + [ + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + } + ], + { + "x": 0.9770171932916059, + "y": 0.21316051232016 + }, + { + "x": 0.7994446935362444, + "y": 0.6007396956891898 + }, + { + "x": 0.4765734276771622, + "y": 0.8791346700204928 + }, + { + "x": 0.029057800211286955, + "y": 0.9995777329687177 + }, + { + "x": -0.21316051232015995, + "y": 0.9770171932916059 + }, + { + "x": -0.6007396956891901, + "y": 0.7994446935362443 + }, + { + "x": -0.8791346700204927, + "y": 0.4765734276771623 + }, + { + "x": -0.9990185135275219, + "y": 0.04429457787653578 + }, + { + "max": { + "#": 504 + }, + "min": { + "#": 505 + } + }, + { + "x": 890.0224144593835, + "y": 46.12289951989026 + }, + { + "x": 859.2224101726895, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 874.6224123160365, + "y": 33.061449759945134 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 874.6224123160365, + "y": 33.061449759945134 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 513 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 859.2224101726895, + "y": 30 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 860.1311582529413, + "y": 25.834770290647132 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 862.6922378790246, + "y": 22.42656948173075 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 866.4401738122243, + "y": 20.394836761693977 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 880.0224144593835, + "y": 20 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 884.1876441687364, + "y": 20.90874808025186 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 887.5958449776527, + "y": 23.469827706335156 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 889.6275776976896, + "y": 27.217763639534816 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 890.0224144593835, + "y": 36.12289951989026 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 889.1136663791317, + "y": 40.288129229243125 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 886.5525867530484, + "y": 43.696330038159516 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 882.8046508198487, + "y": 45.72806275819629 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 869.2224101726895, + "y": 46.12289951989026 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 865.0571804633365, + "y": 45.2141514396384 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 861.6489796544201, + "y": 42.6530718135551 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 859.6172469343834, + "y": 38.905135880355445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3272.2976160000003, + "axes": { + "#": 533 + }, + "bounds": { + "#": 536 + }, + "chamfer": "", + "collisionFilter": { + "#": 539 + }, + "constraintImpulse": { + "#": 540 + }, + "density": 0.001, + "force": { + "#": 541 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 7138.621125119525, + "inverseInertia": 0.000140083075214789, + "inverseMass": 0.30559567537820187, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.2722976160000004, + "motion": 0, + "parent": null, + "position": { + "#": 542 + }, + "positionImpulse": { + "#": 543 + }, + "positionPrev": { + "#": 544 + }, + "render": { + "#": 545 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 547 + }, + "vertices": { + "#": 548 + } + }, + [ + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 537 + }, + "min": { + "#": 538 + } + }, + { + "x": 947.2264144593835, + "y": 77.20400000000001 + }, + { + "x": 890.0224144593835, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 918.6244144593835, + "y": 48.602000000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 918.6244144593835, + "y": 48.602000000000004 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 546 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 947.2264144593835, + "y": 77.20400000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 890.0224144593835, + "y": 77.20400000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 890.0224144593835, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 947.2264144593835, + "y": 20.000000000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2280.8721126630826, + "axes": { + "#": 554 + }, + "bounds": { + "#": 557 + }, + "chamfer": "", + "collisionFilter": { + "#": 560 + }, + "constraintImpulse": { + "#": 561 + }, + "density": 0.001, + "force": { + "#": 562 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 5951.840994899971, + "inverseInertia": 0.0001680152411425108, + "inverseMass": 0.4384287897809527, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.2808721126630824, + "motion": 0, + "parent": null, + "position": { + "#": 563 + }, + "positionImpulse": { + "#": 564 + }, + "positionPrev": { + "#": 565 + }, + "render": { + "#": 566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 568 + }, + "vertices": { + "#": 569 + } + }, + [ + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 558 + }, + "min": { + "#": 559 + } + }, + { + "x": 1031.4590962152133, + "y": 47.07823216735254 + }, + { + "x": 947.2264144593835, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 989.3427553372984, + "y": 33.53911608367627 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 989.3427553372984, + "y": 33.53911608367627 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 567 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 947.2264144593835, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1031.4590962152133, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1031.4590962152133, + "y": 47.07823216735254 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 947.2264144593835, + "y": 47.07823216735254 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7619.538811999999, + "axes": { + "#": 575 + }, + "bounds": { + "#": 589 + }, + "chamfer": "", + "circleRadius": 49.48881172839506, + "collisionFilter": { + "#": 592 + }, + "constraintImpulse": { + "#": 593 + }, + "density": 0.001, + "force": { + "#": 594 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 36961.17597180369, + "inverseInertia": 0.00002705541622276474, + "inverseMass": 0.13124153897938043, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.619538811999999, + "motion": 0, + "parent": null, + "position": { + "#": 595 + }, + "positionImpulse": { + "#": 596 + }, + "positionPrev": { + "#": 597 + }, + "render": { + "#": 598 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 600 + }, + "vertices": { + "#": 601 + } + }, + [ + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + } + ], + { + "x": -0.9709457040416061, + "y": -0.23929989511729818 + }, + { + "x": -0.8854358451601851, + "y": -0.464761620732036 + }, + { + "x": -0.7485227991107622, + "y": -0.6631090552928601 + }, + { + "x": -0.5680717815464582, + "y": -0.8229790100668625 + }, + { + "x": -0.3546112819461554, + "y": -0.9350138173933603 + }, + { + "x": -0.12053663504574892, + "y": -0.992708879587489 + }, + { + "x": 0.12053663504574892, + "y": -0.992708879587489 + }, + { + "x": 0.3546112819461554, + "y": -0.9350138173933603 + }, + { + "x": 0.5680717815464582, + "y": -0.8229790100668625 + }, + { + "x": 0.7485227991107622, + "y": -0.6631090552928601 + }, + { + "x": 0.8854358451601851, + "y": -0.464761620732036 + }, + { + "x": 0.9709457040416061, + "y": -0.23929989511729818 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 590 + }, + "min": { + "#": 591 + } + }, + { + "x": 118.256, + "y": 200.95864313905818 + }, + { + "x": 20, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 69.128, + "y": 151.46964313905818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 69.128, + "y": 151.46964313905818 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 599 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + }, + { + "#": 627 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 118.256, + "y": 157.43464313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 115.401, + "y": 169.01864313905818 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 109.856, + "y": 179.58264313905818 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 101.945, + "y": 188.51264313905818 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 92.127, + "y": 195.28964313905817 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 80.971, + "y": 199.5206431390582 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 69.128, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 57.285, + "y": 199.5206431390582 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 46.129000000000005, + "y": 195.28964313905817 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 36.311, + "y": 188.51264313905818 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 28.4, + "y": 179.58264313905818 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 22.854999999999997, + "y": 169.01864313905818 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20, + "y": 157.43464313905818 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 20, + "y": 145.50464313905817 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 22.854999999999997, + "y": 133.92064313905817 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 28.4, + "y": 123.35664313905818 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 36.311, + "y": 114.42664313905817 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 46.129000000000005, + "y": 107.64964313905818 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 57.285, + "y": 103.41864313905818 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 69.128, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 80.971, + "y": 103.41864313905818 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 92.127, + "y": 107.64964313905818 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 101.945, + "y": 114.42664313905817 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 109.856, + "y": 123.35664313905818 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 115.401, + "y": 133.92064313905817 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 118.256, + "y": 145.50464313905817 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1222.702510148351, + "axes": { + "#": 629 + }, + "bounds": { + "#": 638 + }, + "collisionFilter": { + "#": 641 + }, + "constraintImpulse": { + "#": 642 + }, + "density": 0.001, + "force": { + "#": 643 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1019.6065850774935, + "inverseInertia": 0.0009807704409088302, + "inverseMass": 0.8178604294176753, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.222702510148351, + "motion": 0, + "parent": null, + "position": { + "#": 644 + }, + "positionImpulse": { + "#": 645 + }, + "positionPrev": { + "#": 646 + }, + "render": { + "#": 647 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 649 + }, + "vertices": { + "#": 650 + } + }, + [ + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": 0.9770171932916056, + "y": 0.21316051232015978 + }, + { + "x": 0.7994446935362437, + "y": 0.6007396956891906 + }, + { + "x": 0.4765734276771634, + "y": 0.879134670020492 + }, + { + "x": 0.028769526977757462, + "y": 0.9995860714903325 + }, + { + "x": -0.21316051232015995, + "y": 0.9770171932916059 + }, + { + "x": -0.6007396956891905, + "y": 0.7994446935362437 + }, + { + "x": -0.8791346700204924, + "y": 0.4765734276771626 + }, + { + "x": -0.9998828419386167, + "y": 0.015306939496688661 + }, + { + "max": { + "#": 639 + }, + "min": { + "#": 640 + } + }, + { + "x": 149.19221399176953, + "y": 144.99000956566996 + }, + { + "x": 118.25599999999999, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 133.72410699588477, + "y": 123.48532635236407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 133.72410699588477, + "y": 123.48532635236407 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 648 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 118.25599999999999, + "y": 111.98064313905817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 119.16474808025185, + "y": 107.8154134297053 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 121.72582770633514, + "y": 104.40721262078891 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125.47376363953481, + "y": 102.37547990075214 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 139.19221399176953, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 143.3574437011224, + "y": 102.88939121931003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 146.76564451003878, + "y": 105.45047084539333 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 148.79737723007557, + "y": 109.19840677859298 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 149.19221399176953, + "y": 134.99000956566996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 148.28346591151768, + "y": 139.15523927502284 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 145.7223862854344, + "y": 142.5634400839392 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.97445035223473, + "y": 144.595172803976 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 128.25599999999997, + "y": 144.99000956566996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 124.09077029064713, + "y": 144.0812614854181 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 120.68256948173074, + "y": 141.5201818593348 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 118.65083676169397, + "y": 137.77224592613516 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1642.0854529572955, + "axes": { + "#": 668 + }, + "bounds": { + "#": 671 + }, + "chamfer": "", + "collisionFilter": { + "#": 674 + }, + "constraintImpulse": { + "#": 675 + }, + "density": 0.001, + "force": { + "#": 676 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1814.469586184716, + "inverseInertia": 0.0005511252476282611, + "inverseMass": 0.6089817056713225, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6420854529572955, + "motion": 0, + "parent": null, + "position": { + "#": 677 + }, + "positionImpulse": { + "#": 678 + }, + "positionPrev": { + "#": 679 + }, + "render": { + "#": 680 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 682 + }, + "vertices": { + "#": 683 + } + }, + [ + { + "#": 669 + }, + { + "#": 670 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 672 + }, + "min": { + "#": 673 + } + }, + { + "x": 187.03632836076818, + "y": 145.3714181733517 + }, + { + "x": 149.19221399176953, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.11427117626886, + "y": 123.67603065620494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.11427117626886, + "y": 123.67603065620494 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 681 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 149.19221399176953, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 187.03632836076818, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.03632836076818, + "y": 145.3714181733517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 149.19221399176953, + "y": 145.3714181733517 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3794.8064039999995, + "axes": { + "#": 689 + }, + "bounds": { + "#": 692 + }, + "chamfer": "", + "collisionFilter": { + "#": 695 + }, + "constraintImpulse": { + "#": 696 + }, + "density": 0.001, + "force": { + "#": 697 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 9600.370429226272, + "inverseInertia": 0.00010416264740740775, + "inverseMass": 0.2635180542928166, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.7948064039999996, + "motion": 0, + "parent": null, + "position": { + "#": 698 + }, + "positionImpulse": { + "#": 699 + }, + "positionPrev": { + "#": 700 + }, + "render": { + "#": 701 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 703 + }, + "vertices": { + "#": 704 + } + }, + [ + { + "#": 690 + }, + { + "#": 691 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 693 + }, + "min": { + "#": 694 + } + }, + { + "x": 248.63832836076816, + "y": 163.58264313905815 + }, + { + "x": 187.03632836076818, + "y": 101.98064313905816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.83732836076817, + "y": 132.78164313905816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.83732836076817, + "y": 132.78164313905816 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 702 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 248.63832836076816, + "y": 163.58264313905815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 187.03632836076818, + "y": 163.58264313905815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.03632836076818, + "y": 101.98064313905816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 248.63832836076816, + "y": 101.98064313905816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1826.8784465641675, + "axes": { + "#": 710 + }, + "bounds": { + "#": 713 + }, + "chamfer": "", + "collisionFilter": { + "#": 716 + }, + "constraintImpulse": { + "#": 717 + }, + "density": 0.001, + "force": { + "#": 718 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 2226.3146730460744, + "inverseInertia": 0.00044917280207823734, + "inverseMass": 0.547381793178803, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8268784465641674, + "motion": 0, + "parent": null, + "position": { + "#": 719 + }, + "positionImpulse": { + "#": 720 + }, + "positionPrev": { + "#": 721 + }, + "render": { + "#": 722 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 724 + }, + "vertices": { + "#": 725 + } + }, + [ + { + "#": 711 + }, + { + "#": 712 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 714 + }, + "min": { + "#": 715 + } + }, + { + "x": 292.1241608367627, + "y": 143.991531342076 + }, + { + "x": 248.63832836076816, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.3812445987654, + "y": 122.98608724056709 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.3812445987654, + "y": 122.98608724056709 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 723 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 248.63832836076816, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 292.1241608367627, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 292.1241608367627, + "y": 143.991531342076 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 248.63832836076816, + "y": 143.991531342076 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3215.056842335567, + "axes": { + "#": 731 + }, + "bounds": { + "#": 734 + }, + "chamfer": "", + "collisionFilter": { + "#": 737 + }, + "constraintImpulse": { + "#": 738 + }, + "density": 0.001, + "force": { + "#": 739 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 15932.11540305455, + "inverseInertia": 0.00006276630407838228, + "inverseMass": 0.3110364914337108, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.215056842335567, + "motion": 0, + "parent": null, + "position": { + "#": 740 + }, + "positionImpulse": { + "#": 741 + }, + "positionPrev": { + "#": 742 + }, + "render": { + "#": 743 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 745 + }, + "vertices": { + "#": 746 + } + }, + [ + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 735 + }, + "min": { + "#": 736 + } + }, + { + "x": 411.0154502743485, + "y": 129.02263130778246 + }, + { + "x": 292.1241608367627, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.5698055555556, + "y": 115.50163722342032 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.5698055555556, + "y": 115.50163722342032 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 744 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 292.1241608367627, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.0154502743485, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 411.0154502743485, + "y": 129.02263130778246 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 292.1241608367627, + "y": 129.02263130778246 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2527.170838894569, + "axes": { + "#": 752 + }, + "bounds": { + "#": 755 + }, + "chamfer": "", + "collisionFilter": { + "#": 758 + }, + "constraintImpulse": { + "#": 759 + }, + "density": 0.001, + "force": { + "#": 760 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 8473.144372295323, + "inverseInertia": 0.0001180199411294943, + "inverseMass": 0.3956994060747466, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.527170838894569, + "motion": 0, + "parent": null, + "position": { + "#": 761 + }, + "positionImpulse": { + "#": 762 + }, + "positionPrev": { + "#": 763 + }, + "render": { + "#": 764 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 766 + }, + "vertices": { + "#": 767 + } + }, + [ + { + "#": 753 + }, + { + "#": 754 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 756 + }, + "min": { + "#": 757 + } + }, + { + "x": 507.85238443072717, + "y": 128.0778224943394 + }, + { + "x": 411.01545027434855, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 459.43391735253783, + "y": 115.02923281669878 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 459.43391735253783, + "y": 115.02923281669878 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 765 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 411.01545027434855, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 507.85238443072717, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 507.85238443072717, + "y": 128.0778224943394 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 411.01545027434855, + "y": 128.0778224943394 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2948.769805, + "axes": { + "#": 773 + }, + "bounds": { + "#": 781 + }, + "chamfer": "", + "collisionFilter": { + "#": 784 + }, + "constraintImpulse": { + "#": 785 + }, + "density": 0.001, + "force": { + "#": 786 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 5557.617636669042, + "inverseInertia": 0.0001799332133614269, + "inverseMass": 0.3391244709249185, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.948769805, + "motion": 0, + "parent": null, + "position": { + "#": 787 + }, + "positionImpulse": { + "#": 788 + }, + "positionPrev": { + "#": 789 + }, + "render": { + "#": 790 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 792 + }, + "vertices": { + "#": 793 + } + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + } + ], + { + "x": 0.6234998905587619, + "y": 0.7818234368917397 + }, + { + "x": -0.2225283489437671, + "y": 0.9749262197296579 + }, + { + "x": -0.9009635514300213, + "y": 0.43389477871323057 + }, + { + "x": -0.9009635514300213, + "y": -0.43389477871323057 + }, + { + "x": -0.2225283489437671, + "y": -0.9749262197296579 + }, + { + "x": 0.6234998905587619, + "y": -0.7818234368917397 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 782 + }, + "min": { + "#": 783 + } + }, + { + "x": 568.6298038722055, + "y": 165.98864313905815 + }, + { + "x": 506.2268038722055, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.0538844307272, + "y": 133.98464313905816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.0538844307272, + "y": 133.98464313905816 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 791 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 568.6298038722055, + "y": 148.22764313905816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 546.3588038722055, + "y": 165.98864313905815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 518.5868038722055, + "y": 159.64964313905816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.2268038722055, + "y": 133.98464313905816 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 518.5868038722055, + "y": 108.31964313905817 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 546.3588038722055, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 568.6298038722055, + "y": 119.74164313905817 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1650.224030690591, + "axes": { + "#": 802 + }, + "bounds": { + "#": 805 + }, + "chamfer": "", + "collisionFilter": { + "#": 808 + }, + "constraintImpulse": { + "#": 809 + }, + "density": 0.001, + "force": { + "#": 810 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1883.1376850445035, + "inverseInertia": 0.0005310286167293006, + "inverseMass": 0.6059783286403342, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.650224030690591, + "motion": 0, + "parent": null, + "position": { + "#": 811 + }, + "positionImpulse": { + "#": 812 + }, + "positionPrev": { + "#": 813 + }, + "render": { + "#": 814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 816 + }, + "vertices": { + "#": 817 + } + }, + [ + { + "#": 803 + }, + { + "#": 804 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 806 + }, + "min": { + "#": 807 + } + }, + { + "x": 604.0847292837282, + "y": 148.52492468912678 + }, + { + "x": 568.6298038722055, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.3572665779668, + "y": 125.25278391409248 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.3572665779668, + "y": 125.25278391409248 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 815 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 568.6298038722055, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 604.0847292837282, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 604.0847292837282, + "y": 148.52492468912678 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 568.6298038722055, + "y": 148.52492468912678 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 985.702813436139, + "axes": { + "#": 823 + }, + "bounds": { + "#": 832 + }, + "collisionFilter": { + "#": 835 + }, + "constraintImpulse": { + "#": 836 + }, + "density": 0.001, + "force": { + "#": 837 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 694.3954590109718, + "inverseInertia": 0.00144010158336044, + "inverseMass": 1.014504560978193, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.985702813436139, + "motion": 0, + "parent": null, + "position": { + "#": 838 + }, + "positionImpulse": { + "#": 839 + }, + "positionPrev": { + "#": 840 + }, + "render": { + "#": 841 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 843 + }, + "vertices": { + "#": 844 + } + }, + [ + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + } + ], + { + "x": 0.9770171932916059, + "y": 0.21316051232016 + }, + { + "x": 0.799444693536244, + "y": 0.6007396956891904 + }, + { + "x": 0.4765734276771625, + "y": 0.8791346700204926 + }, + { + "x": 0.016108114574245137, + "y": 0.9998702559056664 + }, + { + "x": -0.21316051232015995, + "y": 0.9770171932916059 + }, + { + "x": -0.6007396956891901, + "y": 0.7994446935362443 + }, + { + "x": -0.8791346700204927, + "y": 0.4765734276771623 + }, + { + "x": -0.9990245010225166, + "y": 0.04415932921491988 + }, + { + "max": { + "#": 833 + }, + "min": { + "#": 834 + } + }, + { + "x": 645.8109809984057, + "y": 128.13087033384554 + }, + { + "x": 604.0847292837282, + "y": 101.98064313905816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 624.947855141067, + "y": 115.05575673645185 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 624.947855141067, + "y": 115.05575673645185 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 842 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 604.0847292837282, + "y": 111.98064313905816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 604.99347736398, + "y": 107.81541342970529 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 607.5545569900632, + "y": 104.40721262078891 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 611.3024929232629, + "y": 102.37547990075214 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 635.8109809984057, + "y": 101.98064313905816 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 639.9762107077587, + "y": 102.88939121931003 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 643.3844115166751, + "y": 105.45047084539331 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 645.4161442367118, + "y": 109.19840677859298 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 645.8109809984057, + "y": 118.13087033384554 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 644.9022329181539, + "y": 122.29610004319841 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 642.3411532920707, + "y": 125.7043008521148 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 638.5932173588709, + "y": 127.73603357215157 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 614.0847292837282, + "y": 128.13087033384554 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 609.9194995743752, + "y": 127.22212225359368 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 606.5112987654588, + "y": 124.66104262751038 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 604.4795660454221, + "y": 120.91310669431073 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4952.7985079569, + "axes": { + "#": 862 + }, + "bounds": { + "#": 883 + }, + "collisionFilter": { + "#": 886 + }, + "constraintImpulse": { + "#": 887 + }, + "density": 0.001, + "force": { + "#": 888 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 15818.469397063342, + "inverseInertia": 0.0000632172414978182, + "inverseMass": 0.2019060533945513, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.9527985079569, + "motion": 0, + "parent": null, + "position": { + "#": 889 + }, + "positionImpulse": { + "#": 890 + }, + "positionPrev": { + "#": 891 + }, + "render": { + "#": 892 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 894 + }, + "vertices": { + "#": 895 + } + }, + [ + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + } + ], + { + "x": 0.9852706907275951, + "y": 0.1710019473373548 + }, + { + "x": 0.8700268649231405, + "y": 0.49300431469918327 + }, + { + "x": 0.6530188991620234, + "y": 0.7573416120465185 + }, + { + "x": 0.314779076564745, + "y": 0.9491649661450039 + }, + { + "x": 0.14183590877131155, + "y": 0.9898901832945997 + }, + { + "x": -0.20001917819990497, + "y": 0.9797919821840934 + }, + { + "x": -0.5184786471262719, + "y": 0.8550905755965919 + }, + { + "x": -0.8054355711467087, + "y": 0.592683339340305 + }, + { + "x": -0.8976116499482651, + "y": 0.44078716618925434 + }, + { + "x": -0.9936472264221324, + "y": 0.11253972375833993 + }, + { + "x": -0.9734566664259817, + "y": -0.22887140186317512 + }, + { + "x": -0.8125610392520469, + "y": -0.5828761081822049 + }, + { + "x": -0.6965843892916697, + "y": -0.7174748696610574 + }, + { + "x": -0.41408059568440286, + "y": -0.9102402211930927 + }, + { + "x": -0.08314308915220521, + "y": -0.9965376193231384 + }, + { + "x": 0.3032498980752684, + "y": -0.9529110657964568 + }, + { + "x": 0.4671007549713962, + "y": -0.8842040967475505 + }, + { + "x": 0.7377302297636824, + "y": -0.6750956288503315 + }, + { + "x": 0.9220698606687172, + "y": -0.3870234773839601 + }, + { + "x": 0.9999816308338934, + "y": -0.006061187572337409 + }, + { + "max": { + "#": 884 + }, + "min": { + "#": 885 + } + }, + { + "x": 723.4549281351422, + "y": 185.9525090843233 + }, + { + "x": 642.6067463244755, + "y": 101.99807763961768 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 686.235071903739, + "y": 143.95785886141098 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 686.235071903739, + "y": 143.95785886141098 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 893 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 723.4549281351422, + "y": 163.7343376940529 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 722.8700948152788, + "y": 167.10400182942968 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 721.1840008580932, + "y": 170.0795275921831 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 718.5938630489019, + "y": 172.31287766027913 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 678.9284730623283, + "y": 185.46742431644665 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 675.5430070407368, + "y": 185.9525090843233 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 672.1920772912649, + "y": 185.26843509016703 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 669.2676315922173, + "y": 183.49521633076415 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 644.4991664780822, + "y": 149.83575347521014 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 642.9916407606411, + "y": 146.76585319142828 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 642.6067463244755, + "y": 143.36750391359948 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 643.3895039698, + "y": 140.03820789044434 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 667.7481337120751, + "y": 106.08095141639507 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 670.2019279142753, + "y": 103.6986035348663 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 673.3149877186254, + "y": 102.28243049815205 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 676.7231882507567, + "y": 101.99807763961768 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 716.5451287461676, + "y": 114.67082311382359 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 719.5691411939176, + "y": 116.26832588788074 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 721.8779945373644, + "y": 118.79139200586522 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 723.2016299033231, + "y": 121.9449068409739 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1624.41915552185, + "axes": { + "#": 917 + }, + "bounds": { + "#": 920 + }, + "chamfer": "", + "collisionFilter": { + "#": 923 + }, + "constraintImpulse": { + "#": 924 + }, + "density": 0.001, + "force": { + "#": 925 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1869.3319950134544, + "inverseInertia": 0.000534950454316063, + "inverseMass": 0.6156046588103344, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.62441915552185, + "motion": 0, + "parent": null, + "position": { + "#": 926 + }, + "positionImpulse": { + "#": 927 + }, + "positionPrev": { + "#": 928 + }, + "render": { + "#": 929 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 931 + }, + "vertices": { + "#": 932 + } + }, + [ + { + "#": 918 + }, + { + "#": 919 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 921 + }, + "min": { + "#": 922 + } + }, + { + "x": 771.5173424012601, + "y": 135.77876128034762 + }, + { + "x": 723.4549281351422, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 747.4861352682011, + "y": 118.87970220970288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 747.4861352682011, + "y": 118.87970220970288 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 930 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 723.4549281351422, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 771.5173424012601, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 771.5173424012601, + "y": 135.77876128034762 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 723.4549281351422, + "y": 135.77876128034762 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1339.8528159999998, + "axes": { + "#": 938 + }, + "bounds": { + "#": 941 + }, + "chamfer": "", + "collisionFilter": { + "#": 944 + }, + "constraintImpulse": { + "#": 945 + }, + "density": 0.001, + "force": { + "#": 946 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1196.8037123620863, + "inverseInertia": 0.0008355589055003328, + "inverseMass": 0.7463506349789991, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.3398528159999998, + "motion": 0, + "parent": null, + "position": { + "#": 947 + }, + "positionImpulse": { + "#": 948 + }, + "positionPrev": { + "#": 949 + }, + "render": { + "#": 950 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 952 + }, + "vertices": { + "#": 953 + } + }, + [ + { + "#": 939 + }, + { + "#": 940 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 942 + }, + "min": { + "#": 943 + } + }, + { + "x": 808.1213424012601, + "y": 138.58464313905816 + }, + { + "x": 771.5173424012601, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 789.8193424012601, + "y": 120.28264313905817 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 789.8193424012601, + "y": 120.28264313905817 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 951 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 808.1213424012601, + "y": 138.58464313905816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 771.5173424012601, + "y": 138.58464313905816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 771.5173424012601, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 808.1213424012601, + "y": 101.98064313905817 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4071.9713439999996, + "axes": { + "#": 959 + }, + "bounds": { + "#": 962 + }, + "chamfer": "", + "collisionFilter": { + "#": 965 + }, + "constraintImpulse": { + "#": 966 + }, + "density": 0.001, + "force": { + "#": 967 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 11053.96708423811, + "inverseInertia": 0.00009046525942943176, + "inverseMass": 0.24558129601611461, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.071971344, + "motion": 0, + "parent": null, + "position": { + "#": 968 + }, + "positionImpulse": { + "#": 969 + }, + "positionPrev": { + "#": 970 + }, + "render": { + "#": 971 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 973 + }, + "vertices": { + "#": 974 + } + }, + [ + { + "#": 960 + }, + { + "#": 961 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 963 + }, + "min": { + "#": 964 + } + }, + { + "x": 871.93334240126, + "y": 165.79264313905819 + }, + { + "x": 808.1213424012601, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 840.0273424012601, + "y": 133.88664313905818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 840.0273424012601, + "y": 133.88664313905818 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 972 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 871.93334240126, + "y": 165.79264313905819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 808.1213424012601, + "y": 165.79264313905819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 808.1213424012601, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 871.93334240126, + "y": 101.98064313905817 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1410.4247505938968, + "axes": { + "#": 980 + }, + "bounds": { + "#": 983 + }, + "chamfer": "", + "collisionFilter": { + "#": 986 + }, + "constraintImpulse": { + "#": 987 + }, + "density": 0.001, + "force": { + "#": 988 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1475.1971281420765, + "inverseInertia": 0.0006778755062107806, + "inverseMass": 0.7090062760022635, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4104247505938967, + "motion": 0, + "parent": null, + "position": { + "#": 989 + }, + "positionImpulse": { + "#": 990 + }, + "positionPrev": { + "#": 991 + }, + "render": { + "#": 992 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 994 + }, + "vertices": { + "#": 995 + } + }, + [ + { + "#": 981 + }, + { + "#": 982 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 984 + }, + "min": { + "#": 985 + } + }, + { + "x": 901.628236948585, + "y": 149.4778567878922 + }, + { + "x": 871.93334240126, + "y": 101.98064313905817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7807896749225, + "y": 125.72924996347518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.7807896749225, + "y": 125.72924996347518 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 993 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 871.93334240126, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 901.628236948585, + "y": 101.98064313905817 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 901.628236948585, + "y": 149.4778567878922 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 871.93334240126, + "y": 149.4778567878922 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1145.1396745385214, + "axes": { + "#": 1001 + }, + "bounds": { + "#": 1010 + }, + "collisionFilter": { + "#": 1013 + }, + "constraintImpulse": { + "#": 1014 + }, + "density": 0.001, + "force": { + "#": 1015 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 855.9197793798912, + "inverseInertia": 0.001168333790258351, + "inverseMass": 0.8732559199845983, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1451396745385214, + "motion": 0, + "parent": null, + "position": { + "#": 1016 + }, + "positionImpulse": { + "#": 1017 + }, + "positionPrev": { + "#": 1018 + }, + "render": { + "#": 1019 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1021 + }, + "vertices": { + "#": 1022 + } + }, + [ + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + } + ], + { + "x": 0.9770171932916056, + "y": 0.21316051232015978 + }, + { + "x": 0.7994446935362437, + "y": 0.6007396956891906 + }, + { + "x": 0.4765734276771622, + "y": 0.8791346700204928 + }, + { + "x": 0.02507831610142034, + "y": 0.9996854895723541 + }, + { + "x": -0.21316051232015995, + "y": 0.9770171932916059 + }, + { + "x": -0.6007396956891905, + "y": 0.7994446935362437 + }, + { + "x": -0.8791346700204924, + "y": 0.4765734276771626 + }, + { + "x": -0.9998192732273806, + "y": 0.019011072643923082 + }, + { + "max": { + "#": 1011 + }, + "min": { + "#": 1012 + } + }, + { + "x": 52.956961591220846, + "y": 238.94143206224064 + }, + { + "x": 19.999999999999996, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 36.47848079561042, + "y": 219.9500376006494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 36.47848079561042, + "y": 219.9500376006494 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1020 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 19.999999999999996, + "y": 210.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.908748080251858, + "y": 206.7934134297053 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 23.469827706335153, + "y": 203.38521262078893 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 27.217763639534816, + "y": 201.35347990075218 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 42.956961591220846, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 47.12219130057371, + "y": 201.86739121931006 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 50.530392109490094, + "y": 204.42847084539335 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 52.562124829526866, + "y": 208.17640677859302 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 52.956961591220846, + "y": 228.94143206224064 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.04821351096898, + "y": 233.1066617715935 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 49.48713388488569, + "y": 236.51486258050988 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 45.73919795168602, + "y": 238.54659530054664 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 29.999999999999996, + "y": 238.94143206224064 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 25.83477029064713, + "y": 238.03268398198875 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 22.426569481730745, + "y": 235.47160435590547 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 20.394836761693973, + "y": 231.7236684227058 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1884.7709190881956, + "axes": { + "#": 1040 + }, + "bounds": { + "#": 1057 + }, + "collisionFilter": { + "#": 1060 + }, + "constraintImpulse": { + "#": 1061 + }, + "density": 0.001, + "force": { + "#": 1062 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 2264.182707269258, + "inverseInertia": 0.00044166047059252596, + "inverseMass": 0.5305684578812234, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.8847709190881956, + "motion": 0, + "parent": null, + "position": { + "#": 1063 + }, + "positionImpulse": { + "#": 1064 + }, + "positionPrev": { + "#": 1065 + }, + "render": { + "#": 1066 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1068 + }, + "vertices": { + "#": 1069 + } + }, + [ + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + } + ], + { + "x": -0.9942376962506515, + "y": -0.10719796338642447 + }, + { + "x": -0.9485369506603959, + "y": -0.31666647001518455 + }, + { + "x": -0.8592361222845448, + "y": -0.5115792081011685 + }, + { + "x": -0.7124804361391147, + "y": -0.7016919752419981 + }, + { + "x": -0.6272318102901987, + "y": -0.7788326239700544 + }, + { + "x": -0.44679990169583184, + "y": -0.8946339183401191 + }, + { + "x": -0.24583056154545463, + "y": -0.9693128158702156 + }, + { + "x": -0.007628802720947643, + "y": -0.999970900261125 + }, + { + "x": 0.10719796338642447, + "y": -0.9942376962506515 + }, + { + "x": 0.31666647001518455, + "y": -0.9485369506603959 + }, + { + "x": 0.5115792081011685, + "y": -0.8592361222845448 + }, + { + "x": 0.7016919752419981, + "y": -0.7124804361391147 + }, + { + "x": 0.7788326239700544, + "y": -0.6272318102901987 + }, + { + "x": 0.8946339183401191, + "y": -0.44679990169583184 + }, + { + "x": 0.9693128158702156, + "y": -0.24583056154545463 + }, + { + "x": 0.999970900261125, + "y": -0.007628802720947643 + }, + { + "max": { + "#": 1058 + }, + "min": { + "#": 1059 + } + }, + { + "x": 100.9577022936933, + "y": 248.95938384153064 + }, + { + "x": 52.95696159122084, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 76.95733194245707, + "y": 224.9590134902944 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 76.95733194245707, + "y": 224.9590134902944 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1067 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100.9577022936933, + "y": 230.75805248883245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 100.72787422660937, + "y": 232.88965761203403 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 100.04895421344145, + "y": 234.92328219818532 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 98.95214922905575, + "y": 236.76544944572433 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 89.82743875286059, + "y": 246.0304516533961 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 88.15765333069069, + "y": 247.3752111060819 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 86.23959465024114, + "y": 248.33313189614287 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 84.16142745532821, + "y": 248.86018260685913 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 71.15829294391904, + "y": 248.95938384153064 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 69.02668782071744, + "y": 248.7295557744467 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 66.99306323456618, + "y": 248.05063576127878 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 65.15089598702714, + "y": 246.95383077689308 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 55.885893779355364, + "y": 237.82912030069792 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 54.54113432666958, + "y": 236.15933487852803 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 53.583213536608625, + "y": 234.24127619807848 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 53.05616282589235, + "y": 232.16310900316554 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 52.95696159122084, + "y": 219.15997449175637 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 53.18678965830478, + "y": 217.0283693685548 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 53.8657096714727, + "y": 214.9947447824035 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 54.9625146558584, + "y": 213.1525775348645 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 64.08722513205356, + "y": 203.8875753271927 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 65.75701055422346, + "y": 202.5428158745069 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 67.675069234673, + "y": 201.58489508444595 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 69.75323642958594, + "y": 201.0578443737297 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 82.75637094099511, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 84.8879760641967, + "y": 201.1884712061421 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 86.92160065034797, + "y": 201.86739121931004 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 88.763767897887, + "y": 202.96419620369574 + }, + { + "body": null, + "index": 28, + "isInternal": false, + "x": 98.02877010555878, + "y": 212.0889066798909 + }, + { + "body": null, + "index": 29, + "isInternal": false, + "x": 99.37352955824457, + "y": 213.7586921020608 + }, + { + "body": null, + "index": 30, + "isInternal": false, + "x": 100.33145034830552, + "y": 215.67675078251034 + }, + { + "body": null, + "index": 31, + "isInternal": false, + "x": 100.85850105902179, + "y": 217.75491797742328 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3192.987712697058, + "axes": { + "#": 1103 + }, + "bounds": { + "#": 1106 + }, + "chamfer": "", + "collisionFilter": { + "#": 1109 + }, + "constraintImpulse": { + "#": 1110 + }, + "density": 0.001, + "force": { + "#": 1111 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 14162.074980074754, + "inverseInertia": 0.00007061112170405424, + "inverseMass": 0.31318629759314615, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.1929877126970583, + "motion": 0, + "parent": null, + "position": { + "#": 1112 + }, + "positionImpulse": { + "#": 1113 + }, + "positionPrev": { + "#": 1114 + }, + "render": { + "#": 1115 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1117 + }, + "vertices": { + "#": 1118 + } + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1107 + }, + "min": { + "#": 1108 + } + }, + { + "x": 212.71558981084007, + "y": 229.5292235574395 + }, + { + "x": 100.9577022936933, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 156.8366460522667, + "y": 215.24393334824885 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 156.8366460522667, + "y": 215.24393334824885 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1116 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100.9577022936933, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 212.71558981084007, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 212.71558981084007, + "y": 229.5292235574395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100.9577022936933, + "y": 229.5292235574395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4466.9579779999995, + "axes": { + "#": 1124 + }, + "bounds": { + "#": 1138 + }, + "chamfer": "", + "circleRadius": 37.89191100823045, + "collisionFilter": { + "#": 1141 + }, + "constraintImpulse": { + "#": 1142 + }, + "density": 0.001, + "force": { + "#": 1143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 12703.170970181629, + "inverseInertia": 0.00007872050233341874, + "inverseMass": 0.2238659967085099, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.466957978, + "motion": 0, + "parent": null, + "position": { + "#": 1144 + }, + "positionImpulse": { + "#": 1145 + }, + "positionPrev": { + "#": 1146 + }, + "render": { + "#": 1147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1149 + }, + "vertices": { + "#": 1150 + } + }, + [ + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + } + ], + { + "x": -0.9709483957746872, + "y": -0.23928897329915064 + }, + { + "x": -0.8854069135689516, + "y": -0.46481673528854694 + }, + { + "x": -0.7485617883876168, + "y": -0.6630650412787066 + }, + { + "x": -0.568042449918069, + "y": -0.8229992558265641 + }, + { + "x": -0.3545882298397037, + "y": -0.9350225597594667 + }, + { + "x": -0.12053079587770753, + "y": -0.9927095885731568 + }, + { + "x": 0.12053079587770753, + "y": -0.9927095885731568 + }, + { + "x": 0.3545882298397037, + "y": -0.9350225597594667 + }, + { + "x": 0.568042449918069, + "y": -0.8229992558265641 + }, + { + "x": 0.7485617883876168, + "y": -0.6630650412787066 + }, + { + "x": 0.8854069135689516, + "y": -0.46481673528854694 + }, + { + "x": 0.9709483957746872, + "y": -0.23928897329915064 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1139 + }, + "min": { + "#": 1140 + } + }, + { + "x": 287.94758981084004, + "y": 276.74264313905815 + }, + { + "x": 212.71558981084007, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 250.33158981084006, + "y": 238.85064313905818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 250.33158981084006, + "y": 238.85064313905818 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 287.94758981084004, + "y": 243.41764313905819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 285.76158981084006, + "y": 252.2876431390582 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 281.5155898108401, + "y": 260.3756431390582 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275.45858981084007, + "y": 267.21364313905815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.94058981084004, + "y": 272.40264313905817 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 259.3995898108401, + "y": 275.64164313905815 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 250.33158981084006, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 241.26358981084005, + "y": 275.64164313905815 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 232.72258981084005, + "y": 272.40264313905817 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 225.20458981084005, + "y": 267.21364313905815 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.14758981084006, + "y": 260.3756431390582 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 214.90158981084005, + "y": 252.2876431390582 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 212.71558981084007, + "y": 243.41764313905819 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 212.71558981084007, + "y": 234.28364313905817 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 214.90158981084005, + "y": 225.41364313905817 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 219.14758981084006, + "y": 217.32564313905817 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 225.20458981084005, + "y": 210.48764313905818 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 232.72258981084005, + "y": 205.29864313905819 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 241.26358981084005, + "y": 202.05964313905818 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 250.33158981084006, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 259.3995898108401, + "y": 202.05964313905818 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 267.94058981084004, + "y": 205.29864313905819 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 275.45858981084007, + "y": 210.48764313905818 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 281.5155898108401, + "y": 217.32564313905817 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 285.76158981084006, + "y": 225.41364313905817 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 287.94758981084004, + "y": 234.28364313905817 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2150.621595245249, + "axes": { + "#": 1178 + }, + "bounds": { + "#": 1181 + }, + "chamfer": "", + "collisionFilter": { + "#": 1184 + }, + "constraintImpulse": { + "#": 1185 + }, + "density": 0.001, + "force": { + "#": 1186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 3103.359772962483, + "inverseInertia": 0.00032223141148903753, + "inverseMass": 0.4649818462768498, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.150621595245249, + "motion": 0, + "parent": null, + "position": { + "#": 1187 + }, + "positionImpulse": { + "#": 1188 + }, + "positionPrev": { + "#": 1189 + }, + "render": { + "#": 1190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1192 + }, + "vertices": { + "#": 1193 + } + }, + [ + { + "#": 1179 + }, + { + "#": 1180 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1182 + }, + "min": { + "#": 1183 + } + }, + { + "x": 331.76210455706774, + "y": 250.04332678103347 + }, + { + "x": 287.94758981084004, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 309.8548471839539, + "y": 225.50098496004583 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 309.8548471839539, + "y": 225.50098496004583 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1191 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 287.94758981084004, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 331.76210455706774, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.76210455706774, + "y": 250.04332678103347 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 287.94758981084004, + "y": 250.04332678103347 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2853.66629, + "axes": { + "#": 1199 + }, + "bounds": { + "#": 1213 + }, + "chamfer": "", + "circleRadius": 30.286243998628258, + "collisionFilter": { + "#": 1216 + }, + "constraintImpulse": { + "#": 1217 + }, + "density": 0.001, + "force": { + "#": 1218 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 5184.355561525051, + "inverseInertia": 0.0001928880047158332, + "inverseMass": 0.3504263983158311, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.85366629, + "motion": 0, + "parent": null, + "position": { + "#": 1219 + }, + "positionImpulse": { + "#": 1220 + }, + "positionPrev": { + "#": 1221 + }, + "render": { + "#": 1222 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1224 + }, + "vertices": { + "#": 1225 + } + }, + [ + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + } + ], + { + "x": -0.9709507779118274, + "y": -0.2392793072382511 + }, + { + "x": -0.8854613092871422, + "y": -0.4647131047813263 + }, + { + "x": -0.7484813473909255, + "y": -0.6631558433791145 + }, + { + "x": -0.5680626153308821, + "y": -0.8229853370889656 + }, + { + "x": -0.3545881737623323, + "y": -0.9350225810256638 + }, + { + "x": -0.1205276998806746, + "y": -0.9927099644717353 + }, + { + "x": 0.1205276998806746, + "y": -0.9927099644717353 + }, + { + "x": 0.3545881737623323, + "y": -0.9350225810256638 + }, + { + "x": 0.5680626153308821, + "y": -0.8229853370889656 + }, + { + "x": 0.7484813473909255, + "y": -0.6631558433791145 + }, + { + "x": 0.8854613092871422, + "y": -0.4647131047813263 + }, + { + "x": 0.9709507779118274, + "y": -0.2392793072382511 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1214 + }, + "min": { + "#": 1215 + } + }, + { + "x": 391.89210455706774, + "y": 261.53064313905816 + }, + { + "x": 331.76210455706774, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 361.82710455706774, + "y": 231.24464313905818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 361.82710455706774, + "y": 231.24464313905818 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1223 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.89210455706774, + "y": 234.8956431390582 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 390.1451045570677, + "y": 241.9846431390582 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 386.75210455706775, + "y": 248.4496431390582 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 381.91010455706777, + "y": 253.91464313905817 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 375.90210455706773, + "y": 258.0616431390582 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 369.07510455706773, + "y": 260.65064313905816 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 361.82710455706774, + "y": 261.53064313905816 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 354.57910455706775, + "y": 260.65064313905816 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 347.75210455706775, + "y": 258.0616431390582 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 341.7441045570677, + "y": 253.91464313905817 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 336.90210455706773, + "y": 248.4496431390582 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 333.50910455706776, + "y": 241.9846431390582 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 331.76210455706774, + "y": 234.8956431390582 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.76210455706774, + "y": 227.59364313905817 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 333.50910455706776, + "y": 220.50464313905817 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 336.90210455706773, + "y": 214.03964313905817 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 341.7441045570677, + "y": 208.5746431390582 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 347.75210455706775, + "y": 204.42764313905818 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 354.57910455706775, + "y": 201.83864313905818 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 361.82710455706774, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 369.07510455706773, + "y": 201.83864313905818 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 375.90210455706773, + "y": 204.42764313905818 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 381.91010455706777, + "y": 208.5746431390582 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 386.75210455706775, + "y": 214.03964313905817 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 390.1451045570677, + "y": 220.50464313905817 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 391.89210455706774, + "y": 227.59364313905817 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1365.5999734968448, + "axes": { + "#": 1253 + }, + "bounds": { + "#": 1256 + }, + "chamfer": "", + "collisionFilter": { + "#": 1259 + }, + "constraintImpulse": { + "#": 1260 + }, + "density": 0.001, + "force": { + "#": 1261 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1298.9605101084082, + "inverseInertia": 0.0007698463442253086, + "inverseMass": 0.732278865998609, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3655999734968447, + "motion": 0, + "parent": null, + "position": { + "#": 1262 + }, + "positionImpulse": { + "#": 1263 + }, + "positionPrev": { + "#": 1264 + }, + "render": { + "#": 1265 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1267 + }, + "vertices": { + "#": 1268 + } + }, + [ + { + "#": 1254 + }, + { + "#": 1255 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1257 + }, + "min": { + "#": 1258 + } + }, + { + "x": 423.7260594610458, + "y": 243.85623401697316 + }, + { + "x": 391.89210455706774, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 407.80908200905674, + "y": 222.40743857801567 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 407.80908200905674, + "y": 222.40743857801567 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1266 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.89210455706774, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 423.7260594610458, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 423.7260594610458, + "y": 243.85623401697316 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 391.89210455706774, + "y": 243.85623401697316 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1818.1655641659895, + "axes": { + "#": 1274 + }, + "bounds": { + "#": 1277 + }, + "chamfer": "", + "collisionFilter": { + "#": 1280 + }, + "constraintImpulse": { + "#": 1281 + }, + "density": 0.001, + "force": { + "#": 1282 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 2264.6113640186218, + "inverseInertia": 0.00044157687093182715, + "inverseMass": 0.5500049168837436, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8181655641659895, + "motion": 0, + "parent": null, + "position": { + "#": 1283 + }, + "positionImpulse": { + "#": 1284 + }, + "positionPrev": { + "#": 1285 + }, + "render": { + "#": 1286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1288 + }, + "vertices": { + "#": 1289 + } + }, + [ + { + "#": 1275 + }, + { + "#": 1276 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1278 + }, + "min": { + "#": 1279 + } + }, + { + "x": 461.6512995159155, + "y": 248.89942246004583 + }, + { + "x": 423.7260594610458, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 442.68867948848066, + "y": 224.929032799552 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 442.68867948848066, + "y": 224.929032799552 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1287 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 423.7260594610458, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.6512995159155, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 461.6512995159155, + "y": 248.89942246004583 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 423.7260594610458, + "y": 248.89942246004583 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1013.362993496838, + "axes": { + "#": 1295 + }, + "bounds": { + "#": 1298 + }, + "chamfer": "", + "collisionFilter": { + "#": 1301 + }, + "constraintImpulse": { + "#": 1302 + }, + "density": 0.001, + "force": { + "#": 1303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 687.3887813315329, + "inverseInertia": 0.001454780798230241, + "inverseMass": 0.9868132213406314, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.013362993496838, + "motion": 0, + "parent": null, + "position": { + "#": 1304 + }, + "positionImpulse": { + "#": 1305 + }, + "positionPrev": { + "#": 1306 + }, + "render": { + "#": 1307 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1309 + }, + "vertices": { + "#": 1310 + } + }, + [ + { + "#": 1296 + }, + { + "#": 1297 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1299 + }, + "min": { + "#": 1300 + } + }, + { + "x": 492.08114776694435, + "y": 234.26025493604035 + }, + { + "x": 461.6512995159155, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.86622364142994, + "y": 217.60944903754927 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.86622364142994, + "y": 217.60944903754927 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1308 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 461.6512995159155, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 492.08114776694435, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 492.08114776694435, + "y": 234.26025493604035 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 461.6512995159155, + "y": 234.26025493604035 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1150.5899172961686, + "axes": { + "#": 1316 + }, + "bounds": { + "#": 1319 + }, + "chamfer": "", + "collisionFilter": { + "#": 1322 + }, + "constraintImpulse": { + "#": 1323 + }, + "density": 0.001, + "force": { + "#": 1324 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 958.5119663079198, + "inverseInertia": 0.0010432837931610675, + "inverseMass": 0.8691193838634986, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1505899172961687, + "motion": 0, + "parent": null, + "position": { + "#": 1325 + }, + "positionImpulse": { + "#": 1326 + }, + "positionPrev": { + "#": 1327 + }, + "render": { + "#": 1328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1330 + }, + "vertices": { + "#": 1331 + } + }, + [ + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1320 + }, + "min": { + "#": 1321 + } + }, + { + "x": 533.7591741729801, + "y": 228.56527465483322 + }, + { + "x": 492.0811477669444, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.9201609699622, + "y": 214.7619588969457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.9201609699622, + "y": 214.7619588969457 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1329 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 492.0811477669444, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 533.7591741729801, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 533.7591741729801, + "y": 228.56527465483322 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 492.0811477669444, + "y": 228.56527465483322 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3070.122224999999, + "axes": { + "#": 1337 + }, + "bounds": { + "#": 1343 + }, + "chamfer": "", + "collisionFilter": { + "#": 1346 + }, + "constraintImpulse": { + "#": 1347 + }, + "density": 0.001, + "force": { + "#": 1348 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 6102.402752435917, + "inverseInertia": 0.00016386987889333043, + "inverseMass": 0.32571993123172815, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.070122224999999, + "motion": 0, + "parent": null, + "position": { + "#": 1349 + }, + "positionImpulse": { + "#": 1350 + }, + "positionPrev": { + "#": 1351 + }, + "render": { + "#": 1352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1354 + }, + "vertices": { + "#": 1355 + } + }, + [ + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + } + ], + { + "x": 0.30900310206539655, + "y": 0.9510610300679774 + }, + { + "x": -0.8090123890471207, + "y": 0.5877915909302124 + }, + { + "x": -0.8090123890471207, + "y": -0.5877915909302124 + }, + { + "x": 0.30900310206539655, + "y": -0.9510610300679774 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1344 + }, + "min": { + "#": 1345 + } + }, + { + "x": 595.3325851846472, + "y": 269.3086431390582 + }, + { + "x": 530.3275851846472, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.2616741729801, + "y": 235.13364313905817 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.2616741729801, + "y": 235.13364313905817 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1353 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 595.3325851846472, + "y": 256.2556431390582 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 555.1575851846472, + "y": 269.3086431390582 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 530.3275851846472, + "y": 235.13364313905817 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 555.1575851846472, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 595.3325851846472, + "y": 214.01164313905818 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1289.2729575874455, + "axes": { + "#": 1362 + }, + "bounds": { + "#": 1371 + }, + "collisionFilter": { + "#": 1374 + }, + "constraintImpulse": { + "#": 1375 + }, + "density": 0.001, + "force": { + "#": 1376 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1245.9739295541528, + "inverseInertia": 0.0008025850110345649, + "inverseMass": 0.7756309430946662, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2892729575874455, + "motion": 0, + "parent": null, + "position": { + "#": 1377 + }, + "positionImpulse": { + "#": 1378 + }, + "positionPrev": { + "#": 1379 + }, + "render": { + "#": 1380 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1382 + }, + "vertices": { + "#": 1383 + } + }, + [ + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + } + ], + { + "x": 0.9770171932916059, + "y": 0.21316051232016 + }, + { + "x": 0.799444693536244, + "y": 0.6007396956891904 + }, + { + "x": 0.4765734276771625, + "y": 0.8791346700204926 + }, + { + "x": 0.012266683251741968, + "y": 0.9999247614105781 + }, + { + "x": -0.21316051232015995, + "y": 0.9770171932916059 + }, + { + "x": -0.6007396956891901, + "y": 0.7994446935362443 + }, + { + "x": -0.8791346700204927, + "y": 0.4765734276771623 + }, + { + "x": -0.9993670806623404, + "y": 0.03557299661865815 + }, + { + "max": { + "#": 1372 + }, + "min": { + "#": 1373 + } + }, + { + "x": 644.735663031012, + "y": 229.26872115689085 + }, + { + "x": 595.3325851846472, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.0341241078296, + "y": 215.11368214797452 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 620.0341241078296, + "y": 215.11368214797452 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1381 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 595.3325851846472, + "y": 210.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.241333264899, + "y": 206.7934134297053 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 598.8024128909823, + "y": 203.38521262078893 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 602.550348824182, + "y": 201.35347990075218 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 634.735663031012, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 638.900892740365, + "y": 201.86739121931006 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 642.3090935492813, + "y": 204.42847084539335 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 644.3408262693181, + "y": 208.17640677859302 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 644.735663031012, + "y": 219.26872115689085 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 643.8269149507602, + "y": 223.43395086624372 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 641.2658353246769, + "y": 226.8421516751601 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 637.5178993914773, + "y": 228.87388439519685 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 605.3325851846472, + "y": 229.26872115689085 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 601.1673554752942, + "y": 228.35997307663897 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 597.7591546663779, + "y": 225.79889345055568 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 595.7274219463411, + "y": 222.050957517356 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1558.1253951107035, + "axes": { + "#": 1401 + }, + "bounds": { + "#": 1404 + }, + "chamfer": "", + "collisionFilter": { + "#": 1407 + }, + "constraintImpulse": { + "#": 1408 + }, + "density": 0.001, + "force": { + "#": 1409 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1636.3880205903727, + "inverseInertia": 0.0006111020047917621, + "inverseMass": 0.6417968689413157, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5581253951107035, + "motion": 0, + "parent": null, + "position": { + "#": 1410 + }, + "positionImpulse": { + "#": 1411 + }, + "positionPrev": { + "#": 1412 + }, + "render": { + "#": 1413 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1415 + }, + "vertices": { + "#": 1416 + } + }, + [ + { + "#": 1402 + }, + { + "#": 1403 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1405 + }, + "min": { + "#": 1406 + } + }, + { + "x": 681.3835754109845, + "y": 243.4747182419388 + }, + { + "x": 644.735663031012, + "y": 200.95864313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 663.0596192209982, + "y": 222.2166806904985 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 663.0596192209982, + "y": 222.2166806904985 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1414 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 644.735663031012, + "y": 200.95864313905815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 681.3835754109845, + "y": 200.95864313905815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 681.3835754109845, + "y": 243.4747182419388 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 644.735663031012, + "y": 243.4747182419388 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3629.791971, + "axes": { + "#": 1422 + }, + "bounds": { + "#": 1430 + }, + "chamfer": "", + "collisionFilter": { + "#": 1433 + }, + "constraintImpulse": { + "#": 1434 + }, + "density": 0.001, + "force": { + "#": 1435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 8421.130427783828, + "inverseInertia": 0.00011874890296208937, + "inverseMass": 0.2754978819693907, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.6297919710000004, + "motion": 0, + "parent": null, + "position": { + "#": 1436 + }, + "positionImpulse": { + "#": 1437 + }, + "positionPrev": { + "#": 1438 + }, + "render": { + "#": 1439 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1441 + }, + "vertices": { + "#": 1442 + } + }, + [ + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + } + ], + { + "x": 0.6234981676733052, + "y": 0.7818248108803091 + }, + { + "x": -0.22253182288154505, + "y": 0.9749254267917197 + }, + { + "x": -0.9009668551215138, + "y": 0.4338879186753755 + }, + { + "x": -0.9009668551215138, + "y": -0.4338879186753755 + }, + { + "x": -0.22253182288154505, + "y": -0.9749254267917197 + }, + { + "x": 0.6234981676733052, + "y": -0.7818248108803091 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1431 + }, + "min": { + "#": 1432 + } + }, + { + "x": 748.8152138572083, + "y": 271.97464313905823 + }, + { + "x": 679.5802138572083, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.0010754109844, + "y": 236.4666431390582 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.0010754109844, + "y": 236.4666431390582 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1440 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 748.8152138572083, + "y": 252.26864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 724.1052138572082, + "y": 271.97464313905823 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 693.2932138572082, + "y": 264.9416431390582 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 679.5802138572083, + "y": 236.4666431390582 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 693.2932138572082, + "y": 207.9916431390582 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 724.1052138572082, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 748.8152138572083, + "y": 220.6646431390582 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1408.6913580494604, + "axes": { + "#": 1451 + }, + "bounds": { + "#": 1460 + }, + "collisionFilter": { + "#": 1463 + }, + "constraintImpulse": { + "#": 1464 + }, + "density": 0.001, + "force": { + "#": 1465 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1303.4279840613233, + "inverseInertia": 0.0007672077109194184, + "inverseMass": 0.7098787071318777, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4086913580494604, + "motion": 0, + "parent": null, + "position": { + "#": 1466 + }, + "positionImpulse": { + "#": 1467 + }, + "positionPrev": { + "#": 1468 + }, + "render": { + "#": 1469 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1471 + }, + "vertices": { + "#": 1472 + } + }, + [ + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + } + ], + { + "x": 0.9770171932916056, + "y": 0.21316051232015978 + }, + { + "x": 0.7994446935362434, + "y": 0.6007396956891912 + }, + { + "x": 0.4765734276771625, + "y": 0.8791346700204926 + }, + { + "x": 0.021059236201301092, + "y": 0.9997782296942747 + }, + { + "x": -0.21316051232015995, + "y": 0.9770171932916059 + }, + { + "x": -0.6007396956891905, + "y": 0.7994446935362437 + }, + { + "x": -0.8791346700204924, + "y": 0.4765734276771626 + }, + { + "x": -0.9998752932213341, + "y": 0.015792340091048476 + }, + { + "max": { + "#": 1461 + }, + "min": { + "#": 1462 + } + }, + { + "x": 784.7776838503495, + "y": 243.17507832424334 + }, + { + "x": 748.8152138572083, + "y": 200.95864313905818 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 766.7964488537789, + "y": 222.06686073165076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 766.7964488537789, + "y": 222.06686073165076 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1470 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 748.8152138572083, + "y": 210.95864313905818 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 749.7239619374601, + "y": 206.7934134297053 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 752.2850415635434, + "y": 203.3852126207889 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 756.032977496743, + "y": 201.35347990075215 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 774.7776838503495, + "y": 200.95864313905818 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 778.9429135597024, + "y": 201.86739121931004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 782.3511143686188, + "y": 204.42847084539332 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 784.3828470886556, + "y": 208.176406778593 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 784.7776838503495, + "y": 233.17507832424334 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 783.8689357700977, + "y": 237.34030803359624 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 781.3078561440144, + "y": 240.74850884251262 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 777.5599202108148, + "y": 242.78024156254938 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 758.8152138572083, + "y": 243.17507832424334 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 754.6499841478553, + "y": 242.2663302439915 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 751.241783338939, + "y": 239.7052506179082 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 749.2100506189022, + "y": 235.95731468470854 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 968.997894652155, + "axes": { + "#": 1490 + }, + "bounds": { + "#": 1493 + }, + "chamfer": "", + "collisionFilter": { + "#": 1496 + }, + "constraintImpulse": { + "#": 1497 + }, + "density": 0.001, + "force": { + "#": 1498 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 632.1170940384557, + "inverseInertia": 0.0015819853780748472, + "inverseMass": 1.0319939862810268, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.968997894652155, + "motion": 0, + "parent": null, + "position": { + "#": 1499 + }, + "positionImpulse": { + "#": 1500 + }, + "positionPrev": { + "#": 1501 + }, + "render": { + "#": 1502 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1504 + }, + "vertices": { + "#": 1505 + } + }, + [ + { + "#": 1491 + }, + { + "#": 1492 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1494 + }, + "min": { + "#": 1495 + } + }, + { + "x": 53.38605967078189, + "y": 305.7666700594971 + }, + { + "x": 20, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 36.693029835390945, + "y": 291.2546565992776 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 36.693029835390945, + "y": 291.2546565992776 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1503 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 53.38605967078189, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 53.38605967078189, + "y": 305.7666700594971 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 305.7666700594971 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.2142076873033, + "axes": { + "#": 1511 + }, + "bounds": { + "#": 1520 + }, + "collisionFilter": { + "#": 1523 + }, + "constraintImpulse": { + "#": 1524 + }, + "density": 0.001, + "force": { + "#": 1525 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 5133.714051104223, + "inverseInertia": 0.00019479074799363, + "inverseMass": 0.3572431138902353, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.7992142076873034, + "motion": 0, + "parent": null, + "position": { + "#": 1526 + }, + "positionImpulse": { + "#": 1527 + }, + "positionPrev": { + "#": 1528 + }, + "render": { + "#": 1529 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1531 + }, + "vertices": { + "#": 1532 + } + }, + [ + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + } + ], + { + "x": -0.9770171932916059, + "y": -0.21316051232016 + }, + { + "x": -0.7994446935362444, + "y": -0.6007396956891898 + }, + { + "x": -0.4765734276771622, + "y": -0.8791346700204928 + }, + { + "x": -0.010721581935230895, + "y": -0.9999425221885537 + }, + { + "x": 0.21316051232016, + "y": -0.9770171932916059 + }, + { + "x": 0.6007396956891898, + "y": -0.7994446935362444 + }, + { + "x": 0.8791346700204928, + "y": -0.4765734276771622 + }, + { + "x": 0.9999425221885537, + "y": -0.010721581935230895 + }, + { + "max": { + "#": 1521 + }, + "min": { + "#": 1522 + } + }, + { + "x": 107.42805967078189, + "y": 330.7846431390582 + }, + { + "x": 53.38605967078189, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80.40705967078189, + "y": 303.76364313905816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80.40705967078189, + "y": 303.76364313905816 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1530 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 107.42805967078189, + "y": 320.7846431390582 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 106.51931159053002, + "y": 324.949872848411 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 103.95823196444674, + "y": 328.3580736573274 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100.21029603124707, + "y": 330.3898063773642 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 63.38605967078189, + "y": 330.7846431390582 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 59.22082996142902, + "y": 329.8758950588063 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 55.81262915251264, + "y": 327.314815432723 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 53.78089643247587, + "y": 323.56687949952334 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 53.38605967078189, + "y": 286.74264313905815 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 54.29480775103375, + "y": 282.5774134297053 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 56.85588737711704, + "y": 279.1692126207889 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 60.603823310316706, + "y": 277.13747990075217 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 97.42805967078189, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 101.59328938013476, + "y": 277.65139121931 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 105.00149018905114, + "y": 280.21247084539334 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 107.03322290908791, + "y": 283.960406778593 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1295.0356940051904, + "axes": { + "#": 1550 + }, + "bounds": { + "#": 1553 + }, + "chamfer": "", + "collisionFilter": { + "#": 1556 + }, + "constraintImpulse": { + "#": 1557 + }, + "density": 0.001, + "force": { + "#": 1558 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1143.53929922107, + "inverseInertia": 0.0008744780355875458, + "inverseMass": 0.7721794886651149, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2950356940051904, + "motion": 0, + "parent": null, + "position": { + "#": 1559 + }, + "positionImpulse": { + "#": 1560 + }, + "positionPrev": { + "#": 1561 + }, + "render": { + "#": 1562 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1564 + }, + "vertices": { + "#": 1565 + } + }, + [ + { + "#": 1551 + }, + { + "#": 1552 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1554 + }, + "min": { + "#": 1555 + } + }, + { + "x": 147.45892386831275, + "y": 309.0935733516782 + }, + { + "x": 107.42805967078189, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.44349176954732, + "y": 292.91810824536816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.44349176954732, + "y": 292.91810824536816 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1563 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 107.42805967078189, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 147.45892386831275, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 147.45892386831275, + "y": 309.0935733516782 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 107.42805967078189, + "y": 309.0935733516782 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4450.490944, + "axes": { + "#": 1571 + }, + "bounds": { + "#": 1574 + }, + "chamfer": "", + "collisionFilter": { + "#": 1577 + }, + "constraintImpulse": { + "#": 1578 + }, + "density": 0.001, + "force": { + "#": 1579 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 13204.579761750676, + "inverseInertia": 0.00007573130065802405, + "inverseMass": 0.22469431183725153, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.450490944, + "motion": 0, + "parent": null, + "position": { + "#": 1580 + }, + "positionImpulse": { + "#": 1581 + }, + "positionPrev": { + "#": 1582 + }, + "render": { + "#": 1583 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1585 + }, + "vertices": { + "#": 1586 + } + }, + [ + { + "#": 1572 + }, + { + "#": 1573 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1575 + }, + "min": { + "#": 1576 + } + }, + { + "x": 214.17092386831274, + "y": 343.45464313905813 + }, + { + "x": 147.45892386831275, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 180.81492386831275, + "y": 310.09864313905814 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 180.81492386831275, + "y": 310.09864313905814 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1584 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.17092386831274, + "y": 343.45464313905813 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 147.45892386831275, + "y": 343.45464313905813 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 147.45892386831275, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 214.17092386831274, + "y": 276.74264313905815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5038.307216146175, + "axes": { + "#": 1592 + }, + "bounds": { + "#": 1605 + }, + "collisionFilter": { + "#": 1608 + }, + "constraintImpulse": { + "#": 1609 + }, + "density": 0.001, + "force": { + "#": 1610 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 16255.679819965306, + "inverseInertia": 0.00006151695967656764, + "inverseMass": 0.1984793616386308, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.038307216146175, + "motion": 0, + "parent": null, + "position": { + "#": 1611 + }, + "positionImpulse": { + "#": 1612 + }, + "positionPrev": { + "#": 1613 + }, + "render": { + "#": 1614 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1616 + }, + "vertices": { + "#": 1617 + } + }, + [ + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + } + ], + { + "x": -0.9897638017130415, + "y": -0.14271515973626295 + }, + { + "x": -0.9091272822964028, + "y": -0.41651840845796567 + }, + { + "x": -0.7544237383793627, + "y": -0.6563877078142969 + }, + { + "x": -0.5044167476188847, + "y": -0.8634603318749429 + }, + { + "x": -0.3712936455239811, + "y": -0.9285154973362116 + }, + { + "x": -0.09384530787584071, + "y": -0.995586790887509 + }, + { + "x": 0.19124918307270655, + "y": -0.9815415171932477 + }, + { + "x": 0.4955976732703051, + "y": -0.8685522127362637 + }, + { + "x": 0.6184864671615099, + "y": -0.7857954504437364 + }, + { + "x": 0.8152862475384012, + "y": -0.5790581443816785 + }, + { + "x": 0.9456642763661172, + "y": -0.3251447007179235 + }, + { + "x": 0.999987037295899, + "y": -0.005091683431878638 + }, + { + "max": { + "#": 1606 + }, + "min": { + "#": 1607 + } + }, + { + "x": 290.84793994249037, + "y": 362.1641452568091 + }, + { + "x": 214.17092386831274, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 252.50943190540156, + "y": 319.4533941979336 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 252.50943190540156, + "y": 319.4533941979336 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1615 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 290.84793994249037, + "y": 335.8144012960544 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 290.44058760611944, + "y": 338.63948727730735 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 289.251717782196, + "y": 341.2344121835779 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 287.37818825080325, + "y": 343.38776627021065 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 257.509537843559, + "y": 360.83645144775943 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 254.85918085150476, + "y": 361.8962729718405 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.0173753889191, + "y": 362.1641452568091 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 249.21566079121152, + "y": 361.61824310327955 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 219.17081793015535, + "y": 344.4745941696112 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 216.92791946555323, + "y": 342.7092462704977 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.2751119541129, + "y": 340.3821721295333 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 214.34705039610574, + "y": 337.68295956436395 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 214.17092386831274, + "y": 303.0923870998128 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 214.57827620468368, + "y": 300.2673011185599 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 215.76714602860713, + "y": 297.67237621228935 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 217.64067555999986, + "y": 295.51902212565653 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 247.50932596724417, + "y": 278.0703369481078 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 250.15968295929835, + "y": 277.0105154240267 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 253.001488421884, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 255.8032030195916, + "y": 277.2885452925877 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 285.84804588064776, + "y": 294.43219422625606 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 288.0909443452499, + "y": 296.1975421253695 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 289.7437518566902, + "y": 298.52461626633396 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 290.67181341469734, + "y": 301.2238288315033 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2586.1538465710973, + "axes": { + "#": 1643 + }, + "bounds": { + "#": 1664 + }, + "collisionFilter": { + "#": 1667 + }, + "constraintImpulse": { + "#": 1668 + }, + "density": 0.001, + "force": { + "#": 1669 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 4301.698960136058, + "inverseInertia": 0.00023246629047430392, + "inverseMass": 0.38667459839091534, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.5861538465710976, + "motion": 0, + "parent": null, + "position": { + "#": 1670 + }, + "positionImpulse": { + "#": 1671 + }, + "positionPrev": { + "#": 1672 + }, + "render": { + "#": 1673 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1675 + }, + "vertices": { + "#": 1676 + } + }, + [ + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + } + ], + { + "x": 0.9852707152677412, + "y": 0.17100180594307654 + }, + { + "x": 0.870027077173325, + "y": 0.49300394013155857 + }, + { + "x": 0.6530194425849519, + "y": 0.7573411434789733 + }, + { + "x": 0.31793208336224765, + "y": 0.9481134902367654 + }, + { + "x": 0.14183463150892228, + "y": 0.9898903663056471 + }, + { + "x": -0.20002502729662638, + "y": 0.979790788104779 + }, + { + "x": -0.5184877530988952, + "y": 0.8550850541825996 + }, + { + "x": -0.8034768919857411, + "y": 0.5953359421746125 + }, + { + "x": -0.8976167927401081, + "y": 0.44077669333911224 + }, + { + "x": -0.9936475508251871, + "y": 0.11253685946883091 + }, + { + "x": -0.973458017259726, + "y": -0.22886565629810662 + }, + { + "x": -0.8145048379741128, + "y": -0.5801567623640738 + }, + { + "x": -0.6965942330729632, + "y": -0.7174653123667304 + }, + { + "x": -0.4140888248743737, + "y": -0.910236477578305 + }, + { + "x": -0.08314743531918575, + "y": -0.9965372567043551 + }, + { + "x": 0.30008822731566825, + "y": -0.9539114507261875 + }, + { + "x": 0.46710155597152475, + "y": -0.8842036736007041 + }, + { + "x": 0.7377306475692237, + "y": -0.6750951722809858 + }, + { + "x": 0.9220699891092197, + "y": -0.38702317137882536 + }, + { + "x": 0.9999559957459572, + "y": -0.009381181786492257 + }, + { + "max": { + "#": 1665 + }, + "min": { + "#": 1666 + } + }, + { + "x": 346.93445546939375, + "y": 336.78457521486814 + }, + { + "x": 288.8452771290252, + "y": 276.7600774552627 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 319.89252911267465, + "y": 306.75489201886086 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 319.89252911267465, + "y": 306.75489201886086 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1674 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 346.93445546939375, + "y": 319.13637810079825 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 346.3496231166779, + "y": 322.5060395338705 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 344.66353183468686, + "y": 325.48156356219073 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 342.07339776968894, + "y": 327.7149136421501 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 316.4731156836074, + "y": 336.2994882759912 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 313.0876033971758, + "y": 336.78457521486814 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 309.73663255821225, + "y": 336.1004719943935 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 306.81216631890214, + "y": 334.3271981872832 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 290.7376037769113, + "y": 312.632657951577 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 289.2301520285493, + "y": 309.56281777167857 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 288.8452771290252, + "y": 306.1645533888686 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 289.6279953147646, + "y": 302.83533700276945 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.29267195587147, + "y": 280.8430829480372 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 307.74646655049025, + "y": 278.460669283858 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 310.85955551800936, + "y": 277.04444901138663 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.2678007553589, + "y": 276.7600774552627 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 340.0246660608689, + "y": 284.862854756924 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 343.04867456101334, + "y": 286.460358949523 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 345.3575244338834, + "y": 288.9834244102009 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 346.6811576588353, + "y": 292.1369370770727 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.9794889800137, + "axes": { + "#": 1698 + }, + "bounds": { + "#": 1701 + }, + "chamfer": "", + "collisionFilter": { + "#": 1704 + }, + "constraintImpulse": { + "#": 1705 + }, + "density": 0.001, + "force": { + "#": 1706 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1336.116554880955, + "inverseInertia": 0.0007484376990517102, + "inverseMass": 0.7746056451989699, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2909794889800137, + "motion": 0, + "parent": null, + "position": { + "#": 1707 + }, + "positionImpulse": { + "#": 1708 + }, + "positionPrev": { + "#": 1709 + }, + "render": { + "#": 1710 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1712 + }, + "vertices": { + "#": 1713 + } + }, + [ + { + "#": 1699 + }, + { + "#": 1700 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1702 + }, + "min": { + "#": 1703 + } + }, + { + "x": 396.0739016285158, + "y": 303.01439811162334 + }, + { + "x": 346.93445546939375, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 371.50417854895477, + "y": 289.87852062534074 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 371.50417854895477, + "y": 289.87852062534074 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1711 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 346.93445546939375, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 396.0739016285158, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 396.0739016285158, + "y": 303.01439811162334 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 346.93445546939375, + "y": 303.01439811162334 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3447.135803417324, + "axes": { + "#": 1719 + }, + "bounds": { + "#": 1722 + }, + "chamfer": "", + "collisionFilter": { + "#": 1725 + }, + "constraintImpulse": { + "#": 1726 + }, + "density": 0.001, + "force": { + "#": 1727 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 17066.17470089766, + "inverseInertia": 0.000058595439079116026, + "inverseMass": 0.29009591064229273, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.447135803417324, + "motion": 0, + "parent": null, + "position": { + "#": 1728 + }, + "positionImpulse": { + "#": 1729 + }, + "positionPrev": { + "#": 1730 + }, + "render": { + "#": 1731 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1733 + }, + "vertices": { + "#": 1734 + } + }, + [ + { + "#": 1720 + }, + { + "#": 1721 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1723 + }, + "min": { + "#": 1724 + } + }, + { + "x": 514.4122075270068, + "y": 305.8721441678647 + }, + { + "x": 396.0739016285158, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.2430545777613, + "y": 291.3073936534614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.2430545777613, + "y": 291.3073936534614 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1732 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.0739016285158, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 514.4122075270068, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 514.4122075270068, + "y": 305.8721441678647 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.0739016285158, + "y": 305.8721441678647 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5745.916024000001, + "axes": { + "#": 1740 + }, + "bounds": { + "#": 1754 + }, + "chamfer": "", + "circleRadius": 42.97560871056241, + "collisionFilter": { + "#": 1757 + }, + "constraintImpulse": { + "#": 1758 + }, + "density": 0.001, + "force": { + "#": 1759 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 21018.753567668347, + "inverseInertia": 0.00004757656046447154, + "inverseMass": 0.17403665417717906, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.745916024000001, + "motion": 0, + "parent": null, + "position": { + "#": 1760 + }, + "positionImpulse": { + "#": 1761 + }, + "positionPrev": { + "#": 1762 + }, + "render": { + "#": 1763 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1765 + }, + "vertices": { + "#": 1766 + } + }, + [ + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + } + ], + { + "x": -0.9709490126883462, + "y": -0.23928647007201603 + }, + { + "x": -0.8854515230322831, + "y": -0.4647317509701811 + }, + { + "x": -0.7485265813733493, + "y": -0.6631047858201046 + }, + { + "x": -0.5680599819247337, + "y": -0.822987154781696 + }, + { + "x": -0.3546222271012525, + "y": -0.9350096662846582 + }, + { + "x": -0.12055331653660395, + "y": -0.9927068539463326 + }, + { + "x": 0.12055331653660395, + "y": -0.9927068539463326 + }, + { + "x": 0.3546222271012525, + "y": -0.9350096662846582 + }, + { + "x": 0.5680599819247337, + "y": -0.822987154781696 + }, + { + "x": 0.7485265813733493, + "y": -0.6631047858201046 + }, + { + "x": 0.8854515230322831, + "y": -0.4647317509701811 + }, + { + "x": 0.9709490126883462, + "y": -0.23928647007201603 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1755 + }, + "min": { + "#": 1756 + } + }, + { + "x": 599.7362075270069, + "y": 362.69464313905814 + }, + { + "x": 514.4122075270068, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.0742075270068, + "y": 319.71864313905814 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 557.0742075270068, + "y": 319.71864313905814 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1764 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.7362075270069, + "y": 324.89864313905815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 597.2572075270068, + "y": 334.9576431390581 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 592.4422075270069, + "y": 344.13164313905816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 585.5722075270069, + "y": 351.88664313905815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 577.0462075270068, + "y": 357.77164313905814 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 567.3592075270068, + "y": 361.4456431390581 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 557.0742075270068, + "y": 362.69464313905814 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 546.7892075270067, + "y": 361.4456431390581 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 537.1022075270068, + "y": 357.77164313905814 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 528.5762075270068, + "y": 351.88664313905815 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 521.7062075270069, + "y": 344.13164313905816 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 516.8912075270068, + "y": 334.9576431390581 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 514.4122075270068, + "y": 324.89864313905815 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 514.4122075270068, + "y": 314.53864313905814 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 516.8912075270068, + "y": 304.47964313905817 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 521.7062075270069, + "y": 295.30564313905813 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 528.5762075270068, + "y": 287.55064313905814 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 537.1022075270068, + "y": 281.66564313905815 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 546.7892075270067, + "y": 277.99164313905817 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 557.0742075270068, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 567.3592075270068, + "y": 277.99164313905817 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 577.0462075270068, + "y": 281.66564313905815 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 585.5722075270069, + "y": 287.55064313905814 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 592.4422075270069, + "y": 295.30564313905813 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 597.2572075270068, + "y": 304.47964313905817 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 599.7362075270069, + "y": 314.53864313905814 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5746.742950000001, + "axes": { + "#": 1794 + }, + "bounds": { + "#": 1808 + }, + "chamfer": "", + "circleRadius": 42.97860939643347, + "collisionFilter": { + "#": 1811 + }, + "constraintImpulse": { + "#": 1812 + }, + "density": 0.001, + "force": { + "#": 1813 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 21024.80384916412, + "inverseInertia": 0.000047562869417198245, + "inverseMass": 0.1740116112205784, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.746742950000001, + "motion": 0, + "parent": null, + "position": { + "#": 1814 + }, + "positionImpulse": { + "#": 1815 + }, + "positionPrev": { + "#": 1816 + }, + "render": { + "#": 1817 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1819 + }, + "vertices": { + "#": 1820 + } + }, + [ + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + } + ], + { + "x": -0.9709545387643245, + "y": -0.23926404588436972 + }, + { + "x": -0.8854723657848331, + "y": -0.4646920371938932 + }, + { + "x": -0.7484786737389684, + "y": -0.6631588610264928 + }, + { + "x": -0.5680802305207977, + "y": -0.8229731779902898 + }, + { + "x": -0.3545902254432111, + "y": -0.9350218029651141 + }, + { + "x": -0.12055331653660395, + "y": -0.9927068539463326 + }, + { + "x": 0.12055331653660395, + "y": -0.9927068539463326 + }, + { + "x": 0.3545902254432111, + "y": -0.9350218029651141 + }, + { + "x": 0.5680802305207977, + "y": -0.8229731779902898 + }, + { + "x": 0.7484786737389684, + "y": -0.6631588610264928 + }, + { + "x": 0.8854723657848331, + "y": -0.4646920371938932 + }, + { + "x": 0.9709545387643245, + "y": -0.23926404588436972 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1809 + }, + "min": { + "#": 1810 + } + }, + { + "x": 685.0662075270068, + "y": 362.7006431390581 + }, + { + "x": 599.7362075270069, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 642.4012075270068, + "y": 319.72164313905813 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 642.4012075270068, + "y": 319.72164313905813 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1818 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685.0662075270068, + "y": 324.90164313905814 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 682.5872075270069, + "y": 334.96164313905814 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 677.7722075270068, + "y": 344.13664313905815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 670.9012075270068, + "y": 351.89164313905815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 662.3742075270068, + "y": 357.7776431390581 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 652.6862075270068, + "y": 361.45164313905815 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 642.4012075270068, + "y": 362.7006431390581 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 632.1162075270068, + "y": 361.45164313905815 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 622.4282075270069, + "y": 357.7776431390581 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 613.9012075270068, + "y": 351.89164313905815 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 607.0302075270068, + "y": 344.13664313905815 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 602.2152075270068, + "y": 334.96164313905814 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 599.7362075270069, + "y": 324.90164313905814 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 599.7362075270069, + "y": 314.5416431390581 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 602.2152075270068, + "y": 304.4816431390581 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 607.0302075270068, + "y": 295.3066431390581 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 613.9012075270068, + "y": 287.5516431390581 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 622.4282075270069, + "y": 281.66564313905815 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 632.1162075270068, + "y": 277.99164313905817 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 642.4012075270068, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 652.6862075270068, + "y": 277.99164313905817 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 662.3742075270068, + "y": 281.66564313905815 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 670.9012075270068, + "y": 287.5516431390581 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 677.7722075270068, + "y": 295.3066431390581 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 682.5872075270069, + "y": 304.4816431390581 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 685.0662075270068, + "y": 314.5416431390581 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3203.0307430000003, + "axes": { + "#": 1848 + }, + "bounds": { + "#": 1854 + }, + "chamfer": "", + "collisionFilter": { + "#": 1857 + }, + "constraintImpulse": { + "#": 1858 + }, + "density": 0.001, + "force": { + "#": 1859 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 6642.19697105125, + "inverseInertia": 0.00015055259643131775, + "inverseMass": 0.3122043090549256, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.2030307430000002, + "motion": 0, + "parent": null, + "position": { + "#": 1860 + }, + "positionImpulse": { + "#": 1861 + }, + "positionPrev": { + "#": 1862 + }, + "render": { + "#": 1863 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1865 + }, + "vertices": { + "#": 1866 + } + }, + [ + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + } + ], + { + "x": 0.30900851155322884, + "y": 0.9510592724891851 + }, + { + "x": -0.8090216234775411, + "y": 0.5877788808265942 + }, + { + "x": -0.8090216234775411, + "y": -0.5877788808265942 + }, + { + "x": 0.30900851155322884, + "y": -0.9510592724891851 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1855 + }, + "min": { + "#": 1856 + } + }, + { + "x": 747.9583791928894, + "y": 346.5566431390581 + }, + { + "x": 681.5613791928895, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 718.2647075270067, + "y": 311.6496431390581 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 718.2647075270067, + "y": 311.6496431390581 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1864 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 747.9583791928894, + "y": 333.22364313905814 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 706.9223791928895, + "y": 346.5566431390581 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 681.5613791928895, + "y": 311.6496431390581 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 706.9223791928895, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 747.9583791928894, + "y": 290.0756431390581 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5067.6702751239845, + "axes": { + "#": 1873 + }, + "bounds": { + "#": 1902 + }, + "collisionFilter": { + "#": 1905 + }, + "constraintImpulse": { + "#": 1906 + }, + "density": 0.001, + "force": { + "#": 1907 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 16399.583595559714, + "inverseInertia": 0.00006097715799752111, + "inverseMass": 0.19732933393649693, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.067670275123985, + "motion": 0, + "parent": null, + "position": { + "#": 1908 + }, + "positionImpulse": { + "#": 1909 + }, + "positionPrev": { + "#": 1910 + }, + "render": { + "#": 1911 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1913 + }, + "vertices": { + "#": 1914 + } + }, + [ + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + } + ], + { + "x": 0.9924755050981582, + "y": 0.12244334110173448 + }, + { + "x": 0.9329572580776412, + "y": 0.3599871589379958 + }, + { + "x": 0.8174900427847476, + "y": 0.5759427314827332 + }, + { + "x": 0.6268952834093632, + "y": 0.7791035256235811 + }, + { + "x": 0.5230540479398909, + "y": 0.8522995148031555 + }, + { + "x": 0.30024182968554397, + "y": 0.953863115812262 + }, + { + "x": 0.05942697631850539, + "y": 0.9982326554895106 + }, + { + "x": -0.2182119161873597, + "y": 0.975901408767218 + }, + { + "x": -0.3402033836054012, + "y": 0.9403518797681197 + }, + { + "x": -0.5585465203579355, + "y": 0.8294731970329375 + }, + { + "x": -0.7433948468129344, + "y": 0.6688528251655769 + }, + { + "x": -0.899051915803456, + "y": 0.43784204079797495 + }, + { + "x": -0.9473139697680368, + "y": 0.32030648242319887 + }, + { + "x": -0.9967571233050424, + "y": 0.08046885820400612 + }, + { + "x": -0.9864280300702043, + "y": -0.16419421881362425 + }, + { + "x": -0.9028668891057183, + "y": -0.4299202025452659 + }, + { + "x": -0.8410629028057156, + "y": -0.5409373286472503 + }, + { + "x": -0.6843747762799663, + "y": -0.729130417409496 + }, + { + "x": -0.4866461948083627, + "y": -0.8735991535472899 + }, + { + "x": -0.226783823541681, + "y": -0.9739451203121332 + }, + { + "x": -0.10146652564062283, + "y": -0.9948389538887291 + }, + { + "x": 0.14334719336938195, + "y": -0.9896724620565741 + }, + { + "x": 0.3795657502084073, + "y": -0.9251647643899592 + }, + { + "x": 0.6200210263474298, + "y": -0.7845851941548984 + }, + { + "x": 0.7145102143578946, + "y": -0.6996250092572702 + }, + { + "x": 0.8631254930746587, + "y": -0.5049894882120096 + }, + { + "x": 0.9599795786510026, + "y": -0.28007000655736697 + }, + { + "x": 0.9999903355888731, + "y": -0.004396445024447187 + }, + { + "max": { + "#": 1903 + }, + "min": { + "#": 1904 + } + }, + { + "x": 827.3820006065704, + "y": 359.2963503188976 + }, + { + "x": 746.3735800800362, + "y": 276.7337487627887 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 788.4625894561566, + "y": 318.0239439171126 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 788.4625894561566, + "y": 318.0239439171126 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1912 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 827.3820006065704, + "y": 331.95073564778795 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 827.0821531709672, + "y": 334.38117598390494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 826.2005925610855, + "y": 336.6658640595877 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 824.7901855145653, + "y": 338.66778830270704 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 801.8393874909949, + "y": 357.1348424980292 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 799.7523767619327, + "y": 358.4156356827843 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 797.4166690416055, + "y": 359.1508325343415 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 794.9723144151828, + "y": 359.2963503188976 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 766.2248658389794, + "y": 352.8684101776541 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 763.9221015651551, + "y": 352.0353090647028 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 761.8908606166143, + "y": 350.6675221755371 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 760.2529520598541, + "y": 348.8470726912355 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 747.3550028013412, + "y": 322.36280459841373 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 746.5706330366261, + "y": 320.04301253564614 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 746.3735800800362, + "y": 317.60214357673453 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 746.7756605493546, + "y": 315.18656860615886 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 759.4402421357784, + "y": 288.58993204182786 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 760.7649070634371, + "y": 286.53030984476527 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 762.5504253489786, + "y": 284.8543906291705 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 764.689723375296, + "y": 283.6626755962048 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 793.3796390360841, + "y": 276.98220804731795 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 795.8156835654938, + "y": 276.7337487627887 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 798.2390769978443, + "y": 277.084760496747 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 800.5045115732448, + "y": 278.01419642779103 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 823.6166952289789, + "y": 296.2786754647602 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 825.3299837020147, + "y": 298.02841582270617 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 826.5666357051734, + "y": 300.14209520594903 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 827.2524898520787, + "y": 302.4929573459383 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4184.019856, + "axes": { + "#": 1944 + }, + "bounds": { + "#": 1947 + }, + "chamfer": "", + "collisionFilter": { + "#": 1950 + }, + "constraintImpulse": { + "#": 1951 + }, + "density": 0.001, + "force": { + "#": 1952 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 11670.68143693484, + "inverseInertia": 0.00008568479958978622, + "inverseMass": 0.23900460189403078, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.184019856, + "motion": 0, + "parent": null, + "position": { + "#": 1953 + }, + "positionImpulse": { + "#": 1954 + }, + "positionPrev": { + "#": 1955 + }, + "render": { + "#": 1956 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1958 + }, + "vertices": { + "#": 1959 + } + }, + [ + { + "#": 1945 + }, + { + "#": 1946 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1948 + }, + "min": { + "#": 1949 + } + }, + { + "x": 892.0660006065704, + "y": 341.4266431390581 + }, + { + "x": 827.3820006065704, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 859.7240006065704, + "y": 309.08464313905813 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 859.7240006065704, + "y": 309.08464313905813 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1957 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 892.0660006065704, + "y": 341.4266431390581 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 827.3820006065704, + "y": 341.4266431390581 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 827.3820006065704, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 892.0660006065704, + "y": 276.74264313905815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1443.6911839874222, + "axes": { + "#": 1965 + }, + "bounds": { + "#": 1974 + }, + "collisionFilter": { + "#": 1977 + }, + "constraintImpulse": { + "#": 1978 + }, + "density": 0.001, + "force": { + "#": 1979 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1352.2644248067172, + "inverseInertia": 0.0007395003385842475, + "inverseMass": 0.6926689108386993, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4436911839874222, + "motion": 0, + "parent": null, + "position": { + "#": 1980 + }, + "positionImpulse": { + "#": 1981 + }, + "positionPrev": { + "#": 1982 + }, + "render": { + "#": 1983 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1985 + }, + "vertices": { + "#": 1986 + } + }, + [ + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + } + ], + { + "x": -0.9770171932916059, + "y": -0.21316051232016 + }, + { + "x": -0.7994446935362444, + "y": -0.6007396956891898 + }, + { + "x": -0.476573427677162, + "y": -0.879134670020493 + }, + { + "x": -0.017785641726564928, + "y": -0.9998418229641998 + }, + { + "x": 0.21316051232016, + "y": -0.9770171932916059 + }, + { + "x": 0.6007396956891898, + "y": -0.7994446935362444 + }, + { + "x": 0.879134670020493, + "y": -0.476573427677162 + }, + { + "x": 0.9998418229641998, + "y": -0.017785641726564928 + }, + { + "max": { + "#": 1975 + }, + "min": { + "#": 1976 + } + }, + { + "x": 931.4800006065703, + "y": 316.15664313905813 + }, + { + "x": 892.0660006065704, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 911.7730006065703, + "y": 296.44964313905814 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 911.7730006065703, + "y": 296.44964313905814 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1984 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 931.4800006065703, + "y": 306.15664313905813 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 930.5712525263185, + "y": 310.32187284841103 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 928.0101729002351, + "y": 313.7300736573274 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 924.2622369670355, + "y": 315.76180637736417 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 902.0660006065704, + "y": 316.15664313905813 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 897.9007708972175, + "y": 315.2478950588063 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 894.4925700883011, + "y": 312.686815432723 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 892.4608373682644, + "y": 308.9388794995233 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 892.0660006065704, + "y": 286.74264313905815 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 892.9747486868222, + "y": 282.57741342970525 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 895.5358283129056, + "y": 279.16921262078887 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 899.2837642461052, + "y": 277.1374799007521 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 921.4800006065703, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 925.6452303159232, + "y": 277.65139121930997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 929.0534311248396, + "y": 280.2124708453933 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 931.0851638448763, + "y": 283.960406778593 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1357.5262341709852, + "axes": { + "#": 2004 + }, + "bounds": { + "#": 2007 + }, + "chamfer": "", + "collisionFilter": { + "#": 2010 + }, + "constraintImpulse": { + "#": 2011 + }, + "density": 0.001, + "force": { + "#": 2012 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 1286.9750720555298, + "inverseInertia": 0.0007770158270453683, + "inverseMass": 0.7366340147457117, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3575262341709853, + "motion": 0, + "parent": null, + "position": { + "#": 2013 + }, + "positionImpulse": { + "#": 2014 + }, + "positionPrev": { + "#": 2015 + }, + "render": { + "#": 2016 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2018 + }, + "vertices": { + "#": 2019 + } + }, + [ + { + "#": 2005 + }, + { + "#": 2006 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2008 + }, + "min": { + "#": 2009 + } + }, + { + "x": 963.080116347311, + "y": 319.70217674673995 + }, + { + "x": 931.4800006065703, + "y": 276.74264313905815 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 947.2800584769407, + "y": 298.22240994289905 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 947.2800584769407, + "y": 298.22240994289905 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2017 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 931.4800006065703, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 963.080116347311, + "y": 276.74264313905815 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 963.080116347311, + "y": 319.70217674673995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 931.4800006065703, + "y": 319.70217674673995 + }, + [], + [], + [ + { + "#": 2027 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2028 + }, + "pointB": "", + "render": { + "#": 2029 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/mixed/mixed-10.json b/tests/browser/refs/mixed/mixed-10.json new file mode 100644 index 00000000..994b5b44 --- /dev/null +++ b/tests/browser/refs/mixed/mixed-10.json @@ -0,0 +1,18515 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 2090 + }, + "gravity": { + "#": 2094 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 2088 + }, + "constraints": { + "#": 2089 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 151 + }, + { + "#": 173 + }, + { + "#": 195 + }, + { + "#": 217 + }, + { + "#": 289 + }, + { + "#": 311 + }, + { + "#": 333 + }, + { + "#": 355 + }, + { + "#": 410 + }, + { + "#": 432 + }, + { + "#": 454 + }, + { + "#": 509 + }, + { + "#": 549 + }, + { + "#": 571 + }, + { + "#": 593 + }, + { + "#": 648 + }, + { + "#": 688 + }, + { + "#": 710 + }, + { + "#": 732 + }, + { + "#": 754 + }, + { + "#": 776 + }, + { + "#": 798 + }, + { + "#": 828 + }, + { + "#": 850 + }, + { + "#": 890 + }, + { + "#": 946 + }, + { + "#": 968 + }, + { + "#": 990 + }, + { + "#": 1012 + }, + { + "#": 1034 + }, + { + "#": 1074 + }, + { + "#": 1138 + }, + { + "#": 1160 + }, + { + "#": 1215 + }, + { + "#": 1237 + }, + { + "#": 1292 + }, + { + "#": 1314 + }, + { + "#": 1336 + }, + { + "#": 1358 + }, + { + "#": 1380 + }, + { + "#": 1406 + }, + { + "#": 1446 + }, + { + "#": 1468 + }, + { + "#": 1498 + }, + { + "#": 1538 + }, + { + "#": 1560 + }, + { + "#": 1600 + }, + { + "#": 1622 + }, + { + "#": 1644 + }, + { + "#": 1696 + }, + { + "#": 1752 + }, + { + "#": 1774 + }, + { + "#": 1796 + }, + { + "#": 1851 + }, + { + "#": 1906 + }, + { + "#": 1932 + }, + { + "#": 2004 + }, + { + "#": 2026 + }, + { + "#": 2066 + } + ], + { + "angle": 0.05998209819750067, + "anglePrev": 0.04159333881736875, + "angularSpeed": 0.015556889139439915, + "angularVelocity": 0.018356354369759173, + "area": 4652.0400580000005, + "axes": { + "#": 97 + }, + "bounds": { + "#": 111 + }, + "chamfer": "", + "circleRadius": 38.6693029835391, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": 0.001, + "force": { + "#": 116 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 13777.654848191112, + "inverseInertia": 0.00007258129275399081, + "inverseMass": 0.21495945596606034, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.652040058000001, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "region": { + "#": 120 + }, + "render": { + "#": 121 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.913690733811717, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 123 + }, + "vertices": { + "#": 124 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": -0.954845651371317, + "y": -0.2971023090743073 + }, + { + "x": -0.856032682588627, + "y": -0.5169217023303617 + }, + { + "x": -0.7073609286549124, + "y": -0.7068525423399559 + }, + { + "x": -0.5177908504724634, + "y": -0.8555072385240247 + }, + { + "x": -0.29792402284184105, + "y": -0.9545895854312123 + }, + { + "x": -0.06074292042013131, + "y": -0.9981534439247471 + }, + { + "x": 0.1797620276917744, + "y": -0.9837101267142377 + }, + { + "x": 0.41002491374672245, + "y": -0.91207432268812 + }, + { + "x": 0.616453696743567, + "y": -0.7873911605874109 + }, + { + "x": 0.7868708221699349, + "y": -0.6171177433987867 + }, + { + "x": 0.9117437717452954, + "y": -0.4107594121668578 + }, + { + "x": 0.9835393129229332, + "y": -0.18069427200407925 + }, + { + "x": 0.9982016132390561, + "y": 0.05994613688091643 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 97.4152815065919, + "y": 113.71337293672501 + }, + { + "x": 20.18503926360278, + "y": 34.60109502180602 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 58.78241353501236, + "y": 73.20055320414706 + }, + { + "x": 0.003090387328743695, + "y": 0.06082743591511955 + }, + { + "x": 58.74171009343898, + "y": 71.46310342528125 + }, + { + "endCol": 2, + "endRow": 2, + "id": "0,2,0,2", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 122 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04317639758041025, + "y": 1.7342785051271221 + }, + [ + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 96.82096991841807, + "y": 80.15432327990202 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 94.05140963437253, + "y": 89.05530624994736 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 89.23234488586901, + "y": 97.03577390226764 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 82.643218315807, + "y": 103.62963953963876 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 74.66853899972888, + "y": 108.45626846733926 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 65.7690336085957, + "y": 111.23377252551666 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 56.4643563679642, + "y": 111.80001138648808 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 47.294318150767246, + "y": 110.12428942412461 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 38.791176616690706, + "y": 106.30168441556535 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 31.451446782455243, + "y": 100.55536185583782 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 25.698808606429548, + "y": 93.22032218207107 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 21.86945457782993, + "y": 84.72048119981456 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20.18503926360278, + "y": 75.55201856700651 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 20.74385715160665, + "y": 66.24678312839208 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 23.513417435652176, + "y": 57.345800158346705 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 28.332482184155722, + "y": 49.36533250602644 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 34.92160875421772, + "y": 42.77146686865537 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 42.89628807029586, + "y": 37.94483794095481 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 51.79579346142903, + "y": 35.16733388277742 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 61.10047070206052, + "y": 34.60109502180602 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 70.27050891925748, + "y": 36.276816984169436 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 78.773650453334, + "y": 40.099421992728715 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 86.11338028756948, + "y": 45.84574455245627 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 91.86601846359518, + "y": 53.18078422622301 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 95.69537249219478, + "y": 61.68062520847954 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 97.37978780642196, + "y": 70.84908784128757 + }, + { + "angle": 0.005876799090719365, + "anglePrev": 0.0037088246972078053, + "angularSpeed": 0.002019711576276686, + "angularVelocity": 0.0021236143961908447, + "area": 3285.224192447692, + "axes": { + "#": 152 + }, + "bounds": { + "#": 155 + }, + "chamfer": "", + "collisionFilter": { + "#": 158 + }, + "constraintImpulse": { + "#": 159 + }, + "density": 0.001, + "force": { + "#": 160 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 16260.276467540087, + "inverseInertia": 0.00006149956933366236, + "inverseMass": 0.3043932290218949, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.285224192447692, + "motion": 0, + "parent": null, + "position": { + "#": 161 + }, + "positionImpulse": { + "#": 162 + }, + "positionPrev": { + "#": 163 + }, + "region": { + "#": 164 + }, + "render": { + "#": 165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.69611936399773, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 167 + }, + "vertices": { + "#": 168 + } + }, + [ + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "x": -0.00587676526317042, + "y": 0.9999827316659231 + }, + { + "x": -0.9999827316659231, + "y": -0.00587676526317042 + }, + { + "max": { + "#": 156 + }, + "min": { + "#": 157 + } + }, + { + "x": 215.1309066813935, + "y": 67.56961165034048 + }, + { + "x": 96.07508676729823, + "y": 36.50204190201685 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.48951362273704, + "y": 50.69255223540893 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.24266918931974, + "y": 48.07896262872643 + }, + { + "endCol": 4, + "endRow": 1, + "id": "2,4,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 166 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.24334260531287555, + "y": 2.6180802872580244 + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 96.23777980392519, + "y": 36.50204190201685 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 214.9039404781759, + "y": 37.19942711566193 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 214.74124744154895, + "y": 64.88306256880102 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 96.07508676729823, + "y": 64.18567735515593 + }, + { + "angle": 0.006215800492324188, + "anglePrev": 0.004097418271864945, + "angularSpeed": 0.0023824318517084693, + "angularVelocity": 0.0027644986238944207, + "area": 1082.552735856085, + "axes": { + "#": 174 + }, + "bounds": { + "#": 177 + }, + "chamfer": "", + "collisionFilter": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "density": 0.001, + "force": { + "#": 182 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 830.3537019899098, + "inverseInertia": 0.0012043060657205955, + "inverseMass": 0.923742527156608, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0825527358560851, + "motion": 0, + "parent": null, + "position": { + "#": 183 + }, + "positionImpulse": { + "#": 184 + }, + "positionPrev": { + "#": 185 + }, + "region": { + "#": 186 + }, + "render": { + "#": 187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8076686432624576, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 189 + }, + "vertices": { + "#": 190 + } + }, + [ + { + "#": 175 + }, + { + "#": 176 + } + ], + { + "x": -0.006215760466608124, + "y": 0.9999806819743177 + }, + { + "x": -0.9999806819743177, + "y": -0.006215760466608124 + }, + { + "max": { + "#": 178 + }, + "min": { + "#": 179 + } + }, + { + "x": 242.607518797428, + "y": 79.6581705975064 + }, + { + "x": 214.58986820519203, + "y": 37.44060675373247 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 228.50358214977845, + "y": 57.14878001028864 + }, + { + "x": 0.006068921359528016, + "y": 0.00003772369020872418 + }, + { + "x": 228.28189511155094, + "y": 54.33540988119535 + }, + { + "endCol": 5, + "endRow": 1, + "id": "4,5,0,1", + "startCol": 4, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 188 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.20458667687242382, + "y": 2.776213504432903 + }, + [ + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.8338097587667, + "y": 37.44060675373247 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 242.41729609436487, + "y": 37.61206240981327 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 242.1733545407902, + "y": 76.85695326684485 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 214.58986820519203, + "y": 76.68549761076406 + }, + { + "angle": 0.0021935306455217593, + "anglePrev": -0.0004067759591721694, + "angularSpeed": 0.0015726025263865673, + "angularVelocity": 0.0025820557410834704, + "area": 3923.7696, + "axes": { + "#": 196 + }, + "bounds": { + "#": 199 + }, + "chamfer": "", + "collisionFilter": { + "#": 202 + }, + "constraintImpulse": { + "#": 203 + }, + "density": 0.001, + "force": { + "#": 204 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 10263.978582589441, + "inverseInertia": 0.00009742810665021045, + "inverseMass": 0.2548569620397691, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.9237696, + "motion": 0, + "parent": null, + "position": { + "#": 205 + }, + "positionImpulse": { + "#": 206 + }, + "positionPrev": { + "#": 207 + }, + "region": { + "#": 208 + }, + "render": { + "#": 209 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.901414097387853, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 211 + }, + "vertices": { + "#": 212 + } + }, + [ + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": 0.0021935288864653605, + "y": -0.9999975942126182 + }, + { + "x": 0.9999975942126182, + "y": 0.0021935288864653605 + }, + { + "max": { + "#": 200 + }, + "min": { + "#": 201 + } + }, + { + "x": 305.09047846646433, + "y": 103.33347109009736 + }, + { + "x": 242.2091131638254, + "y": 37.656673627454104 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 273.5977391392886, + "y": 69.04529960291741 + }, + { + "x": 0.07674987831488242, + "y": 0.0005660703400298947 + }, + { + "x": 273.4336039981512, + "y": 66.15485224224823 + }, + { + "endCol": 6, + "endRow": 2, + "id": "5,6,0,2", + "startCol": 5, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 210 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.15936632276844875, + "y": 2.8897005949827417 + }, + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.84896246530366, + "y": 100.43392557838071 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 242.2091131638254, + "y": 100.29652292893252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 242.3465158132736, + "y": 37.656673627454104 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 304.9863651147519, + "y": 37.79407627690229 + }, + { + "angle": 0.00011353911346216165, + "anglePrev": -0.00008040724242465701, + "angularSpeed": 0.00009721616179068449, + "angularVelocity": 0.00020384493947927238, + "area": 4997.272746939517, + "axes": { + "#": 218 + }, + "bounds": { + "#": 247 + }, + "collisionFilter": { + "#": 250 + }, + "constraintImpulse": { + "#": 251 + }, + "density": 0.001, + "force": { + "#": 252 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 15946.952308478234, + "inverseInertia": 0.00006270790685618014, + "inverseMass": 0.20010914965816717, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.997272746939517, + "motion": 0, + "parent": null, + "position": { + "#": 253 + }, + "positionImpulse": { + "#": 254 + }, + "positionPrev": { + "#": 255 + }, + "region": { + "#": 256 + }, + "render": { + "#": 257 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9120816546842487, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 259 + }, + "vertices": { + "#": 260 + } + }, + [ + { + "#": 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 + }, + { + "#": 246 + } + ], + { + "x": 0.9924621474360158, + "y": 0.12255156427680614 + }, + { + "x": 0.9329212348943582, + "y": 0.3600805041698119 + }, + { + "x": 0.8174375908345829, + "y": 0.5760171743017333 + }, + { + "x": 0.6268695028200676, + "y": 0.7791242689289825 + }, + { + "x": 0.5229793457619064, + "y": 0.8523453548336194 + }, + { + "x": 0.30014492183545066, + "y": 0.9538936135106427 + }, + { + "x": 0.05931163854995676, + "y": 0.9982395151127408 + }, + { + "x": -0.21830811065001182, + "y": 0.9758798946716869 + }, + { + "x": -0.34032576799123754, + "y": 0.9403075941633007 + }, + { + "x": -0.5586519526251332, + "y": 0.8294021918394755 + }, + { + "x": -0.7434778292639435, + "y": 0.6687605830138127 + }, + { + "x": -0.8990877653196361, + "y": 0.43776842080321793 + }, + { + "x": -0.947351964921992, + "y": 0.3201940888874143 + }, + { + "x": -0.9967663545511888, + "y": 0.08035443008779207 + }, + { + "x": -0.986409805389198, + "y": -0.16430366956353923 + }, + { + "x": -0.9028379827012989, + "y": -0.42998090305483244 + }, + { + "x": -0.8410061017564536, + "y": -0.5410256341509277 + }, + { + "x": -0.6843004315079365, + "y": -0.72920019160588 + }, + { + "x": -0.48655977496972486, + "y": -0.8736472888880336 + }, + { + "x": -0.22673517164522, + "y": -0.9739564476602705 + }, + { + "x": -0.10136467053125679, + "y": -0.9948493371199933 + }, + { + "x": 0.14346232203202441, + "y": -0.9896557796310695 + }, + { + "x": 0.3796862766302367, + "y": -0.9251153070502441 + }, + { + "x": 0.6201116609860667, + "y": -0.7845135613289943 + }, + { + "x": 0.7146094924238541, + "y": -0.6995236045607909 + }, + { + "x": 0.8631926100143881, + "y": -0.5048747547823604 + }, + { + "x": 0.9600142812745374, + "y": -0.27995103098387336 + }, + { + "x": 0.9999906615114047, + "y": -0.004321676756032685 + }, + { + "max": { + "#": 248 + }, + "min": { + "#": 249 + } + }, + { + "x": 385.35295527068007, + "y": 122.67917751382653 + }, + { + "x": 304.8379671052237, + "y": 37.78760140983484 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 346.62715384439826, + "y": 78.785993247055 + }, + { + "x": 0.08830908065368949, + "y": 0.003909010399741966 + }, + { + "x": 346.49055209739174, + "y": 75.86979773907022 + }, + { + "endCol": 8, + "endRow": 2, + "id": "6,8,0,2", + "startCol": 6, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 258 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.13572658497997736, + "y": 2.9155310294732857 + }, + [ + { + "#": 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 + }, + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 385.27467216264205, + "y": 92.58738226070278 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 384.9745706366696, + "y": 95.01770134045503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 384.0928135623152, + "y": 97.30221796703596 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 382.6822756061956, + "y": 99.30394083238086 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 359.93347436786496, + "y": 117.60722092610457 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 357.84623339991685, + "y": 118.88790358563288 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 355.51031895175043, + "y": 119.62290469008403 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 353.0658093407669, + "y": 119.76814825967183 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 324.57223778185187, + "y": 113.39402598636651 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 322.2696103035223, + "y": 112.56063543435512 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 320.2385682388076, + "y": 111.19260720091121 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 318.60090572876317, + "y": 109.37197692011962 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.8188191093122, + "y": 83.12015712526497 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 305.0347367849385, + "y": 80.80030814480112 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 304.8379671052237, + "y": 78.3594545898537 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 305.2403093332834, + "y": 75.9439618626706 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 317.7950054010911, + "y": 49.58265978911777 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 319.1198702638333, + "y": 47.52320204213402 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 320.9055374314892, + "y": 45.84748551404934 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 323.0449269953391, + "y": 44.65599677711953 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 351.48232659585176, + "y": 38.035825315597435 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 353.9185342687125, + "y": 37.78760140983484 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 356.3420238503689, + "y": 38.138914916976155 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 358.6074653853064, + "y": 39.06869853937295 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 381.51364445951873, + "y": 57.174680963043656 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 383.2266221960432, + "y": 58.924600683908096 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 384.4629481885284, + "y": 61.03836741550464 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 385.1484860035011, + "y": 63.38922888729348 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2424.7221285720684, + "axes": { + "#": 290 + }, + "bounds": { + "#": 293 + }, + "chamfer": "", + "collisionFilter": { + "#": 296 + }, + "constraintImpulse": { + "#": 297 + }, + "density": 0.001, + "force": { + "#": 298 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 6421.581536792131, + "inverseInertia": 0.00015572487778447566, + "inverseMass": 0.41241839145869685, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.4247221285720686, + "motion": 0, + "parent": null, + "position": { + "#": 299 + }, + "positionImpulse": { + "#": 300 + }, + "positionPrev": { + "#": 301 + }, + "region": { + "#": 302 + }, + "render": { + "#": 303 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 305 + }, + "vertices": { + "#": 306 + } + }, + [ + { + "#": 291 + }, + { + "#": 292 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 294 + }, + "min": { + "#": 295 + } + }, + { + "x": 469.48949597941765, + "y": 66.46913445915244 + }, + { + "x": 385.1134671728333, + "y": 37.732037408397986 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 427.30148157612547, + "y": 52.100585933775214 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 427.30148157612547, + "y": 49.19331521873956 + }, + { + "endCol": 9, + "endRow": 1, + "id": "8,9,0,1", + "startCol": 8, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 304 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 385.1134671728333, + "y": 37.732037408397986 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 469.48949597941765, + "y": 37.732037408397986 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 469.48949597941765, + "y": 66.46913445915244 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.1134671728333, + "y": 66.46913445915244 + }, + { + "angle": -5.95725003586558e-14, + "anglePrev": 0.000014857112182855894, + "angularSpeed": 1.9577268951061136e-14, + "angularVelocity": -0.000013066670653156444, + "area": 3062.135108689158, + "axes": { + "#": 312 + }, + "bounds": { + "#": 315 + }, + "chamfer": "", + "collisionFilter": { + "#": 318 + }, + "constraintImpulse": { + "#": 319 + }, + "density": 0.001, + "force": { + "#": 320 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 12902.457783405109, + "inverseInertia": 0.00007750461321300974, + "inverseMass": 0.3265695224101594, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.062135108689158, + "motion": 0, + "parent": null, + "position": { + "#": 321 + }, + "positionImpulse": { + "#": 322 + }, + "positionPrev": { + "#": 323 + }, + "region": { + "#": 324 + }, + "render": { + "#": 325 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150341315, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 327 + }, + "vertices": { + "#": 328 + } + }, + [ + { + "#": 313 + }, + { + "#": 314 + } + ], + { + "x": 5.95725003586558e-14, + "y": 1 + }, + { + "x": -1, + "y": 5.95725003586558e-14 + }, + { + "max": { + "#": 316 + }, + "min": { + "#": 317 + } + }, + { + "x": 578.598646375718, + "y": 68.77352013114806 + }, + { + "x": 469.7440510396395, + "y": 37.73574101418701 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 524.1713487076788, + "y": 51.80099521515047 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 524.185369822002, + "y": 48.897079382365696 + }, + { + "endCol": 12, + "endRow": 1, + "id": "9,12,0,1", + "startCol": 9, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 326 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.011946581884330953, + "y": 2.904632031681551 + }, + [ + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 469.7440510396395, + "y": 37.73574101419351 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 578.5986463757164, + "y": 37.73574101418701 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 578.598646375718, + "y": 65.86624941610745 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 469.7440510396412, + "y": 65.86624941611393 + }, + { + "angle": 0.0001269567397339905, + "anglePrev": -0.000392876824773127, + "angularSpeed": 0.0001269567398289086, + "angularVelocity": 0.0004758140897828893, + "area": 1378.042832459846, + "axes": { + "#": 334 + }, + "bounds": { + "#": 337 + }, + "chamfer": "", + "collisionFilter": { + "#": 340 + }, + "constraintImpulse": { + "#": 341 + }, + "density": 0.001, + "force": { + "#": 342 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1458.976407551466, + "inverseInertia": 0.0006854120428706963, + "inverseMass": 0.7256668489868136, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3780428324598462, + "motion": 0, + "parent": null, + "position": { + "#": 343 + }, + "positionImpulse": { + "#": 344 + }, + "positionPrev": { + "#": 345 + }, + "region": { + "#": 346 + }, + "render": { + "#": 347 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905454176937781, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 349 + }, + "vertices": { + "#": 350 + } + }, + [ + { + "#": 335 + }, + { + "#": 336 + } + ], + { + "x": -0.00012695673939294206, + "y": 0.9999999919409931 + }, + { + "x": -0.9999999919409931, + "y": -0.00012695673939294206 + }, + { + "max": { + "#": 338 + }, + "min": { + "#": 339 + } + }, + { + "x": 606.8046173188283, + "y": 89.40003151224711 + }, + { + "x": 578.523638260961, + "y": 37.732121200002545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 592.6703280245791, + "y": 62.113362499007344 + }, + { + "x": -0.06681123368927021, + "y": 0.000002630116428091686 + }, + { + "x": 592.6954349098514, + "y": 59.20705738492943 + }, + { + "endCol": 12, + "endRow": 1, + "id": "12,12,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 348 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01942407238823307, + "y": 2.907849489587015 + }, + [ + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 578.5422290006417, + "y": 37.732121200002545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 606.8046173188283, + "y": 37.73570930069978 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 606.7984270485166, + "y": 86.49460379801215 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 578.53603873033, + "y": 86.49101569731488 + }, + { + "angle": -0.00007423372747940437, + "anglePrev": 0.00009240153593463822, + "angularSpeed": 0.00002444600201969303, + "angularVelocity": -0.00017967722079647013, + "area": 4586.778272, + "axes": { + "#": 356 + }, + "bounds": { + "#": 370 + }, + "chamfer": "", + "circleRadius": 38.39666923868313, + "collisionFilter": { + "#": 373 + }, + "constraintImpulse": { + "#": 374 + }, + "density": 0.001, + "force": { + "#": 375 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 13393.80286068791, + "inverseInertia": 0.00007466139455696301, + "inverseMass": 0.21801795087948828, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.586778271999999, + "motion": 0, + "parent": null, + "position": { + "#": 376 + }, + "positionImpulse": { + "#": 377 + }, + "positionPrev": { + "#": 378 + }, + "region": { + "#": 379 + }, + "render": { + "#": 380 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9090470908674244, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 382 + }, + "vertices": { + "#": 383 + } + }, + [ + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + } + ], + { + "x": -0.9709681874371251, + "y": -0.2392086515681735 + }, + { + "x": -0.8854724139301976, + "y": -0.46469194545271464 + }, + { + "x": -0.7485424068059939, + "y": -0.6630869213105398 + }, + { + "x": -0.5681751687807776, + "y": -0.8229076361177693 + }, + { + "x": -0.3546357106820888, + "y": -0.9350045522397255 + }, + { + "x": -0.12063734926592469, + "y": -0.9926966454874777 + }, + { + "x": 0.12048996479238495, + "y": -0.9927145452668306 + }, + { + "x": 0.3544968890278089, + "y": -0.9350571937959758 + }, + { + "x": 0.5680529875168011, + "y": -0.8229919825692331 + }, + { + "x": 0.7484439517288274, + "y": -0.6631980481881237 + }, + { + "x": 0.8854034125409193, + "y": -0.46482340416645834 + }, + { + "x": 0.9709326620362287, + "y": -0.2393528061068901 + }, + { + "x": 0.9999999972446768, + "y": -0.00007423372741122506 + }, + { + "max": { + "#": 371 + }, + "min": { + "#": 372 + } + }, + { + "x": 682.958021282072, + "y": 117.43825236305817 + }, + { + "x": 606.7046404656272, + "y": 37.73526554919428 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 644.8406778334062, + "y": 76.13226544339815 + }, + { + "x": -0.07132104981976868, + "y": 0.0005538774351983786 + }, + { + "x": 644.8776474931722, + "y": 73.22685210082899 + }, + { + "endCol": 14, + "endRow": 2, + "id": "12,14,0,2", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 381 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.032660114798773066, + "y": 2.903888913514308 + }, + [ + { + "#": 384 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 682.958021282072, + "y": 80.75743586365878 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680.743688500917, + "y": 89.74560026660015 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 676.4422969324003, + "y": 97.94191959751284 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 670.3048112405759, + "y": 104.8703752250428 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 662.6872016567385, + "y": 110.12994072308798 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 654.0324453156791, + "y": 113.41258320695573 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 644.8435281858375, + "y": 114.52926533760198 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 635.6544453663164, + "y": 113.41394747439814 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 626.9992017550703, + "y": 110.13258997635182 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 619.380811380888, + "y": 104.87415550337751 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 613.2422971065366, + "y": 97.94661116908522 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 608.9396886987602, + "y": 89.75093054516316 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 606.7240214921213, + "y": 80.76309499763423 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 606.7233343847404, + "y": 71.50709502313751 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 608.9376671658954, + "y": 62.51893062019613 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 613.2390587344121, + "y": 54.32261128928344 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 619.3765444262365, + "y": 47.39415566175346 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 626.9941540100739, + "y": 42.13459016370829 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 635.6489103511333, + "y": 38.85194767984052 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 644.8378274809749, + "y": 37.73526554919428 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 654.026910300496, + "y": 38.850583412398144 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 662.682153911742, + "y": 42.13194091044444 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 670.3005442859244, + "y": 47.390375383418785 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 676.4390585602757, + "y": 54.31791971771105 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 680.7416669680522, + "y": 62.5136003416331 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 682.957334174691, + "y": 71.50143588916204 + }, + { + "angle": -0.007680970208705633, + "anglePrev": 0.000010713599733281975, + "angularSpeed": 0.004467369704902799, + "angularVelocity": -0.007260602074310345, + "area": 1977.449427607814, + "axes": { + "#": 411 + }, + "bounds": { + "#": 414 + }, + "chamfer": "", + "collisionFilter": { + "#": 417 + }, + "constraintImpulse": { + "#": 418 + }, + "density": 0.001, + "force": { + "#": 419 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 2674.507793468318, + "inverseInertia": 0.0003739005743195812, + "inverseMass": 0.5057019340361756, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.977449427607814, + "motion": 0, + "parent": null, + "position": { + "#": 420 + }, + "positionImpulse": { + "#": 421 + }, + "positionPrev": { + "#": 422 + }, + "region": { + "#": 423 + }, + "render": { + "#": 424 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.77994977803416, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 426 + }, + "vertices": { + "#": 427 + } + }, + [ + { + "#": 412 + }, + { + "#": 413 + } + ], + { + "x": 0.007680894682840191, + "y": 0.9999705014933545 + }, + { + "x": -0.9999705014933545, + "y": 0.007680894682840191 + }, + { + "max": { + "#": 415 + }, + "min": { + "#": 416 + } + }, + { + "x": 732.7343586374594, + "y": 80.1722686813395 + }, + { + "x": 682.5103031155061, + "y": 37.321466546349534 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 707.6722000346618, + "y": 57.35778760925133 + }, + { + "x": -0.05312592903682695, + "y": 0.0003569973427762238 + }, + { + "x": 707.8404083922084, + "y": 54.65282773790987 + }, + { + "endCol": 15, + "endRow": 1, + "id": "14,15,0,1", + "startCol": 14, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 425 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.15715915019791282, + "y": 2.727526882294036 + }, + [ + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 682.6100414318643, + "y": 37.70413581163276 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 732.4294951429351, + "y": 37.321466546349534 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 732.7343586374594, + "y": 77.01143940686991 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 682.9149049263885, + "y": 77.39410867215317 + }, + { + "angle": -0.010364760804742135, + "anglePrev": -0.0025159498790982495, + "angularSpeed": 0.0050306345479038395, + "angularVelocity": -0.007710908858397229, + "area": 2209.188004, + "axes": { + "#": 433 + }, + "bounds": { + "#": 436 + }, + "chamfer": "", + "collisionFilter": { + "#": 439 + }, + "constraintImpulse": { + "#": 440 + }, + "density": 0.001, + "force": { + "#": 441 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 3253.6744246783364, + "inverseInertia": 0.00030734482602661194, + "inverseMass": 0.4526550018329721, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.209188004, + "motion": 0, + "parent": null, + "position": { + "#": 442 + }, + "positionImpulse": { + "#": 443 + }, + "positionPrev": { + "#": 444 + }, + "region": { + "#": 445 + }, + "render": { + "#": 446 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.474588351749468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 448 + }, + "vertices": { + "#": 449 + } + }, + [ + { + "#": 434 + }, + { + "#": 435 + } + ], + { + "x": -0.010364575227691224, + "y": -0.9999462863475965 + }, + { + "x": 0.9999462863475965, + "y": -0.010364575227691224 + }, + { + "max": { + "#": 437 + }, + "min": { + "#": 438 + } + }, + { + "x": 779.8219791471736, + "y": 86.6661689204492 + }, + { + "x": 732.2281243731913, + "y": 36.70727353933644 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 756.0786635892928, + "y": 60.45058909721728 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 756.2507136827635, + "y": 58.236470311520094 + }, + { + "endCol": 16, + "endRow": 1, + "id": "15,16,0,1", + "startCol": 15, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 447 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1522366392183585, + "y": 2.2420797466808224 + }, + [ + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.8219791471736, + "y": 83.70674889024616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 732.822503796264, + "y": 84.19390465509811 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 732.335348031412, + "y": 37.19442930418839 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.3348233823216, + "y": 36.70727353933644 + }, + { + "angle": 0.0020792548342075195, + "anglePrev": 0.0019114143708082187, + "angularSpeed": 0.00016784046339930075, + "angularVelocity": 0.00016784046339930075, + "area": 5068.594224000001, + "axes": { + "#": 455 + }, + "bounds": { + "#": 469 + }, + "chamfer": "", + "circleRadius": 40.363404492455416, + "collisionFilter": { + "#": 472 + }, + "constraintImpulse": { + "#": 473 + }, + "density": 0.001, + "force": { + "#": 474 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 16355.486166242355, + "inverseInertia": 0.00006114156374415793, + "inverseMass": 0.19729336297329916, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.068594224000002, + "motion": 0, + "parent": null, + "position": { + "#": 475 + }, + "positionImpulse": { + "#": 476 + }, + "positionPrev": { + "#": 477 + }, + "region": { + "#": 478 + }, + "render": { + "#": 479 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8899287893253165, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 481 + }, + "vertices": { + "#": 482 + } + }, + [ + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + } + ], + { + "x": -0.9704354464664638, + "y": -0.24136081753556302 + }, + { + "x": -0.8844889229351829, + "y": -0.4665611912760857 + }, + { + "x": -0.7471392772406792, + "y": -0.6646675111695136 + }, + { + "x": -0.5663855546229962, + "y": -0.8241404027921463 + }, + { + "x": -0.3527124712305643, + "y": -0.9357317525009122 + }, + { + "x": -0.11837747441810632, + "y": -0.9929686669529862 + }, + { + "x": 0.12250570875733775, + "y": -0.9924678087081021 + }, + { + "x": 0.35660065979530253, + "y": -0.9342569076188599 + }, + { + "x": 0.5698078432752488, + "y": -0.8217779637724593 + }, + { + "x": 0.7498968353395288, + "y": -0.6615547871096994 + }, + { + "x": 0.8864214687558964, + "y": -0.46287901197682274 + }, + { + "x": 0.971430753910565, + "y": -0.23732317703239852 + }, + { + "x": 0.9999978383504461, + "y": 0.002079253336000542 + }, + { + "max": { + "#": 470 + }, + "min": { + "#": 471 + } + }, + { + "x": 1203.9613257675244, + "y": 198.83768011783565 + }, + { + "x": 1123.802003690179, + "y": 115.22192610633255 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1163.8822968151806, + "y": 155.58483885567162 + }, + { + "x": 6.080190863886244, + "y": 1.8690629475994058 + }, + { + "x": 1163.8835609878388, + "y": 152.69491034284664 + }, + { + "endCol": 24, + "endRow": 4, + "id": "23,24,2,4", + "startCol": 23, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 480 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0012641726583387935, + "y": 2.8899285128249765 + }, + [ + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1203.941094632565, + "y": 160.53314194116672 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1201.5924548815283, + "y": 169.97627893688218 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1197.0525498097645, + "y": 178.58285792852422 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1190.5854205546814, + "y": 185.85242684270665 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 1182.5659437527295, + "y": 191.36376423239327 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 1173.460787916155, + "y": 194.79583972568975 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 1163.7983719127797, + "y": 195.94775160501067 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 1154.1408296792245, + "y": 194.75566855123822 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 1145.0500248491742, + "y": 191.28575896423985 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 1137.0535362721052, + "y": 185.74112025312388 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 1130.6166934211142, + "y": 178.44472065389368 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 1126.1126180428366, + "y": 169.81933689508088 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 1123.8032678628372, + "y": 160.36651473732636 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 1123.8234989977966, + "y": 150.63653577017652 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 1126.1721387488328, + "y": 141.19339877446097 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 1130.7120438205966, + "y": 132.58681978281894 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 1137.1791730756797, + "y": 125.31725086863653 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 1145.1986498776316, + "y": 119.80591347894998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 1154.3038057142066, + "y": 116.3738379856535 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 1163.966221717582, + "y": 115.22192610633255 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 1173.623763951137, + "y": 116.41400916010505 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 1182.714568781187, + "y": 119.88391874710337 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 1190.7110573582563, + "y": 125.4285574582193 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 1197.147900209247, + "y": 132.72495705744947 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 1201.6519755875245, + "y": 141.35034081626233 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 1203.9613257675244, + "y": 150.80316297401689 + }, + { + "angle": -0.0001340411870231332, + "anglePrev": -0.00011973939960754184, + "angularSpeed": 0.000014301787415591368, + "angularVelocity": -0.000014301787415591368, + "area": 703.4621424265246, + "axes": { + "#": 510 + }, + "bounds": { + "#": 519 + }, + "collisionFilter": { + "#": 522 + }, + "constraintImpulse": { + "#": 523 + }, + "density": 0.001, + "force": { + "#": 524 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 321.3570390953915, + "inverseInertia": 0.003111803627563174, + "inverseMass": 1.4215406056544801, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7034621424265246, + "motion": 0, + "parent": null, + "position": { + "#": 525 + }, + "positionImpulse": { + "#": 526 + }, + "positionPrev": { + "#": 527 + }, + "region": { + "#": 528 + }, + "render": { + "#": 529 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.899810695257733, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 531 + }, + "vertices": { + "#": 532 + } + }, + [ + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 0.9770457568025648, + "y": 0.21302954986128972 + }, + { + "x": 0.7995252102160779, + "y": 0.6006325317770725 + }, + { + "x": 0.47669126365022524, + "y": 0.8790707816550105 + }, + { + "x": 0.029191784535693432, + "y": 0.9995738290469701 + }, + { + "x": -0.21302954986128966, + "y": 0.9770457568025648 + }, + { + "x": -0.6006325317770728, + "y": 0.7995252102160778 + }, + { + "x": -0.8790707816550104, + "y": 0.47669126365022535 + }, + { + "x": -0.9990125672550398, + "y": 0.044428487105624886 + }, + { + "max": { + "#": 520 + }, + "min": { + "#": 521 + } + }, + { + "x": 889.9438526891767, + "y": 63.789345428768705 + }, + { + "x": 859.143027958458, + "y": 37.66499849816392 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 874.5434403238173, + "y": 50.72717196346631 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 874.5518663954568, + "y": 47.82737351018583 + }, + { + "endCol": 18, + "endRow": 1, + "id": "17,18,0,1", + "startCol": 17, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 530 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.008426071639554493, + "y": 2.8997984532804795 + }, + [ + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 859.143027958458, + "y": 47.66778646558505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 860.0512177182134, + "y": 43.50243498397959 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 862.6118404820081, + "y": 40.09389091552872 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 866.3595040456737, + "y": 38.0616558359642 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 879.9416916464286, + "y": 37.66499849816392 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 884.1070431280341, + "y": 38.57318825791923 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 887.515587196485, + "y": 41.13381102171435 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 889.5478222760496, + "y": 44.88147458537966 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 889.9438526891767, + "y": 53.78655746134757 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 889.0356629294215, + "y": 57.95190894295303 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 886.4750401656268, + "y": 61.360453011403905 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 882.7273766019612, + "y": 63.392688090968434 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 869.1451890012063, + "y": 63.789345428768705 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 864.9798375196006, + "y": 62.88115566901338 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 861.5712934511497, + "y": 60.32053290521827 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 859.539058371585, + "y": 56.572869341552966 + }, + { + "angle": 0.00005488515975969057, + "anglePrev": 0.00004902907996372163, + "angularSpeed": 0.000005856079795968938, + "angularVelocity": 0.000005856079795968938, + "area": 3272.2976160000003, + "axes": { + "#": 550 + }, + "bounds": { + "#": 553 + }, + "chamfer": "", + "collisionFilter": { + "#": 556 + }, + "constraintImpulse": { + "#": 557 + }, + "density": 0.001, + "force": { + "#": 558 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 7138.621125119525, + "inverseInertia": 0.000140083075214789, + "inverseMass": 0.30559567537820187, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.2722976160000004, + "motion": 0, + "parent": null, + "position": { + "#": 559 + }, + "positionImpulse": { + "#": 560 + }, + "positionPrev": { + "#": 561 + }, + "region": { + "#": 562 + }, + "render": { + "#": 563 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8831534944338517, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 565 + }, + "vertices": { + "#": 566 + } + }, + [ + { + "#": 551 + }, + { + "#": 552 + } + ], + { + "x": 0.000054885159732134746, + "y": -0.9999999984938096 + }, + { + "x": 0.9999999984938096, + "y": 0.000054885159732134746 + }, + { + "max": { + "#": 554 + }, + "min": { + "#": 555 + } + }, + { + "x": 947.2620111595302, + "y": 55.02417165730411 + }, + { + "x": 890.0548715950129, + "y": -2.1829679072130723 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 918.6584413772715, + "y": 26.420601875045513 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 918.6548108085124, + "y": 23.537450666482805 + }, + { + "endCol": 19, + "endRow": 1, + "id": "18,19,-1,1", + "startCol": 18, + "startRow": -1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 564 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0036305687591789136, + "y": 2.88315120856271 + }, + [ + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 947.2588715088527, + "y": 55.02417165730411 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 890.0548715950129, + "y": 55.0210320066268 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 890.0580112456903, + "y": -2.1829679072130723 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 947.2620111595302, + "y": -2.1798282565357603 + }, + { + "angle": 0.0007028977115909669, + "anglePrev": 0.0006279006612862367, + "angularSpeed": 0.00007499705030473015, + "angularVelocity": 0.00007499705030473015, + "area": 2280.8721126630826, + "axes": { + "#": 572 + }, + "bounds": { + "#": 575 + }, + "chamfer": "", + "collisionFilter": { + "#": 578 + }, + "constraintImpulse": { + "#": 579 + }, + "density": 0.001, + "force": { + "#": 580 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 5951.840994899971, + "inverseInertia": 0.0001680152411425108, + "inverseMass": 0.4384287897809527, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.2808721126630824, + "motion": 0, + "parent": null, + "position": { + "#": 581 + }, + "positionImpulse": { + "#": 582 + }, + "positionPrev": { + "#": 583 + }, + "region": { + "#": 584 + }, + "render": { + "#": 585 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8993083041525916, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 587 + }, + "vertices": { + "#": 588 + } + }, + [ + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "x": -0.0007028976537114195, + "y": 0.9999997529674138 + }, + { + "x": -0.9999997529674138, + "y": -0.0007028976537114195 + }, + { + "max": { + "#": 576 + }, + "min": { + "#": 577 + } + }, + { + "x": 1082.4621826142668, + "y": 52.23899058627068 + }, + { + "x": 998.210488440797, + "y": 25.10155815375189 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1040.336335527532, + "y": 38.67027437001129 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1040.330701669581, + "y": 35.77097153964452 + }, + { + "endCol": 22, + "endRow": 1, + "id": "20,22,0,1", + "startCol": 20, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 586 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00563385795084514, + "y": 2.89930283036677 + }, + [ + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 998.229521666654, + "y": 25.10155815375189 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1082.4621826142668, + "y": 25.160765108123886 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1082.4431493884097, + "y": 52.23899058627068 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 998.210488440797, + "y": 52.179783631898715 + }, + { + "angle": 0.012412850991559232, + "anglePrev": 0.01113784837383909, + "angularSpeed": 0.0012750026177201414, + "angularVelocity": 0.0012750026177201414, + "area": 7619.538811999999, + "axes": { + "#": 594 + }, + "bounds": { + "#": 608 + }, + "chamfer": "", + "circleRadius": 49.48881172839506, + "collisionFilter": { + "#": 611 + }, + "constraintImpulse": { + "#": 612 + }, + "density": 0.001, + "force": { + "#": 613 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 36961.17597180369, + "inverseInertia": 0.00002705541622276474, + "inverseMass": 0.13124153897938043, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.619538811999999, + "motion": 0, + "parent": null, + "position": { + "#": 614 + }, + "positionImpulse": { + "#": 615 + }, + "positionPrev": { + "#": 616 + }, + "region": { + "#": 617 + }, + "render": { + "#": 618 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.780630826343592, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 620 + }, + "vertices": { + "#": 621 + } + }, + [ + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + } + ], + { + "x": -0.9679005862318948, + "y": -0.25133335467453355 + }, + { + "x": -0.8795987639602908, + "y": -0.4757163171886467 + }, + { + "x": -0.7402342715540462, + "y": -0.6723490337740144 + }, + { + "x": -0.5578127646887248, + "y": -0.8299668183429515 + }, + { + "x": -0.3429780740962201, + "y": -0.9393434093499818 + }, + { + "x": -0.10820531812354067, + "y": -0.9941285677063019 + }, + { + "x": 0.13284938005793068, + "y": -0.9911362379704532 + }, + { + "x": 0.3661898523921164, + "y": -0.9305401614143476 + }, + { + "x": 0.5782432716700049, + "y": -0.8158643997432229 + }, + { + "x": 0.7566959966014567, + "y": -0.6537669070298133 + }, + { + "x": 0.8911365011575314, + "y": -0.45373531524966526 + }, + { + "x": 0.9738412215555298, + "y": -0.22722956497611313 + }, + { + "x": 0.9999229615543047, + "y": 0.012412532234339763 + }, + { + "max": { + "#": 609 + }, + "min": { + "#": 610 + } + }, + { + "x": 119.30647437904257, + "y": 220.2383287810983 + }, + { + "x": 20.90372884144913, + "y": 118.48733005307848 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 70.10198485146682, + "y": 167.97251749743947 + }, + { + "x": 0.017179852004130775, + "y": 0 + }, + { + "x": 70.09575133390882, + "y": 165.19189365814168 + }, + { + "endCol": 2, + "endRow": 4, + "id": "0,2,2,4", + "startCol": 0, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 619 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.006233517557995327, + "y": 2.780623839297776 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 119.15215935192886, + "y": 174.54686084671962 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 116.15359252328874, + "y": 186.09453065383556 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 110.47789371094656, + "y": 196.58888932845585 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 102.4566592492378, + "y": 205.42000583262987 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 92.55529588174552, + "y": 212.07461750160667 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 81.34763789876219, + "y": 216.16681734233669 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 69.48770104372156, + "y": 217.4577049418005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 57.66346263138695, + "y": 215.8728141038341 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 46.56083949617061, + "y": 211.5036658438915 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 36.82771559058257, + "y": 204.60532169196125 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 29.028168954579122, + "y": 195.57781410277536 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 23.614722123284082, + "y": 184.94580044567633 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 20.90372884144913, + "y": 173.32725507950232 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 21.05181035100481, + "y": 161.3981741481593 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 24.050377179644926, + "y": 149.85050434104338 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 29.72607599198711, + "y": 139.35614566642315 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 37.74731045369585, + "y": 130.52502916224904 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 47.648673821188154, + "y": 123.87041749327226 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 58.85633180417147, + "y": 119.77821765254231 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 70.71626865921209, + "y": 118.48733005307848 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 82.54050707154671, + "y": 120.07222089104485 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 93.64313020676305, + "y": 124.44136915098741 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 103.37625411235106, + "y": 131.3397133029177 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 111.17580074835452, + "y": 140.36722089210352 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 116.58924757964955, + "y": 150.9992345492026 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 119.30024086148457, + "y": 162.61777991537662 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1222.702510148351, + "axes": { + "#": 649 + }, + "bounds": { + "#": 658 + }, + "collisionFilter": { + "#": 661 + }, + "constraintImpulse": { + "#": 662 + }, + "density": 0.001, + "force": { + "#": 663 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1019.6065850774935, + "inverseInertia": 0.0009807704409088302, + "inverseMass": 0.8178604294176753, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.222702510148351, + "motion": 0, + "parent": null, + "position": { + "#": 664 + }, + "positionImpulse": { + "#": 665 + }, + "positionPrev": { + "#": 666 + }, + "region": { + "#": 667 + }, + "render": { + "#": 668 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 670 + }, + "vertices": { + "#": 671 + } + }, + [ + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + } + ], + { + "x": 0.9770171932916056, + "y": 0.21316051232015978 + }, + { + "x": 0.7994446935362437, + "y": 0.6007396956891906 + }, + { + "x": 0.4765734276771634, + "y": 0.879134670020492 + }, + { + "x": 0.028769526977757462, + "y": 0.9995860714903325 + }, + { + "x": -0.21316051232015995, + "y": 0.9770171932916059 + }, + { + "x": -0.6007396956891905, + "y": 0.7994446935362437 + }, + { + "x": -0.8791346700204924, + "y": 0.4765734276771626 + }, + { + "x": -0.9998828419386167, + "y": 0.015306939496688661 + }, + { + "max": { + "#": 659 + }, + "min": { + "#": 660 + } + }, + { + "x": 149.19221399176953, + "y": 162.72576433269586 + }, + { + "x": 118.25599999999999, + "y": 119.71639790608404 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 133.72410699588477, + "y": 141.22108111938996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 133.72410699588477, + "y": 138.31381040435429 + }, + { + "endCol": 3, + "endRow": 3, + "id": "2,3,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 669 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 118.25599999999999, + "y": 129.71639790608404 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 119.16474808025185, + "y": 125.55116819673117 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 121.72582770633514, + "y": 122.14296738781476 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125.47376363953481, + "y": 120.111234667778 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 139.19221399176953, + "y": 119.71639790608404 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 143.3574437011224, + "y": 120.6251459863359 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 146.76564451003878, + "y": 123.18622561241918 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 148.79737723007557, + "y": 126.93416154561885 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 149.19221399176953, + "y": 152.72576433269586 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 148.28346591151768, + "y": 156.89099404204873 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 145.7223862854344, + "y": 160.2991948509651 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.97445035223473, + "y": 162.3309275710019 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 128.25599999999997, + "y": 162.72576433269586 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 124.09077029064713, + "y": 161.817016252444 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 120.68256948173074, + "y": 159.2559366263607 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 118.65083676169397, + "y": 155.50800069316105 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1642.0854529572955, + "axes": { + "#": 689 + }, + "bounds": { + "#": 692 + }, + "chamfer": "", + "collisionFilter": { + "#": 695 + }, + "constraintImpulse": { + "#": 696 + }, + "density": 0.001, + "force": { + "#": 697 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1814.469586184716, + "inverseInertia": 0.0005511252476282611, + "inverseMass": 0.6089817056713225, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6420854529572955, + "motion": 0, + "parent": null, + "position": { + "#": 698 + }, + "positionImpulse": { + "#": 699 + }, + "positionPrev": { + "#": 700 + }, + "region": { + "#": 701 + }, + "render": { + "#": 702 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 704 + }, + "vertices": { + "#": 705 + } + }, + [ + { + "#": 690 + }, + { + "#": 691 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 693 + }, + "min": { + "#": 694 + } + }, + { + "x": 187.03632836076818, + "y": 163.1071729403776 + }, + { + "x": 149.19221399176953, + "y": 119.71639790608404 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.11427117626886, + "y": 141.41178542323084 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.11427117626886, + "y": 138.50451470819516 + }, + { + "endCol": 3, + "endRow": 3, + "id": "3,3,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 703 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 149.19221399176953, + "y": 119.71639790608404 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 187.03632836076818, + "y": 119.71639790608404 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.03632836076818, + "y": 163.1071729403776 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 149.19221399176953, + "y": 163.1071729403776 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3794.8064039999995, + "axes": { + "#": 711 + }, + "bounds": { + "#": 714 + }, + "chamfer": "", + "collisionFilter": { + "#": 717 + }, + "constraintImpulse": { + "#": 718 + }, + "density": 0.001, + "force": { + "#": 719 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 9600.370429226272, + "inverseInertia": 0.00010416264740740775, + "inverseMass": 0.2635180542928166, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.7948064039999996, + "motion": 0, + "parent": null, + "position": { + "#": 720 + }, + "positionImpulse": { + "#": 721 + }, + "positionPrev": { + "#": 722 + }, + "region": { + "#": 723 + }, + "render": { + "#": 724 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 726 + }, + "vertices": { + "#": 727 + } + }, + [ + { + "#": 712 + }, + { + "#": 713 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 715 + }, + "min": { + "#": 716 + } + }, + { + "x": 248.63832836076816, + "y": 181.31839790608413 + }, + { + "x": 187.03632836076818, + "y": 119.7163979060841 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.83732836076817, + "y": 150.51739790608414 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.83732836076817, + "y": 147.61012719104846 + }, + { + "endCol": 5, + "endRow": 3, + "id": "3,5,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 725 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 248.63832836076816, + "y": 181.31839790608413 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 187.03632836076818, + "y": 181.31839790608413 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 187.03632836076818, + "y": 119.7163979060841 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 248.63832836076816, + "y": 119.7163979060841 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1826.8784465641675, + "axes": { + "#": 733 + }, + "bounds": { + "#": 736 + }, + "chamfer": "", + "collisionFilter": { + "#": 739 + }, + "constraintImpulse": { + "#": 740 + }, + "density": 0.001, + "force": { + "#": 741 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 2226.3146730460744, + "inverseInertia": 0.00044917280207823734, + "inverseMass": 0.547381793178803, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8268784465641674, + "motion": 0, + "parent": null, + "position": { + "#": 742 + }, + "positionImpulse": { + "#": 743 + }, + "positionPrev": { + "#": 744 + }, + "region": { + "#": 745 + }, + "render": { + "#": 746 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 748 + }, + "vertices": { + "#": 749 + } + }, + [ + { + "#": 734 + }, + { + "#": 735 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 737 + }, + "min": { + "#": 738 + } + }, + { + "x": 292.1241608367627, + "y": 161.7272861091019 + }, + { + "x": 248.63832836076816, + "y": 119.71639790608404 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.3812445987654, + "y": 140.72184200759298 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 270.3812445987654, + "y": 137.8145712925573 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 747 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 248.63832836076816, + "y": 119.71639790608404 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 292.1241608367627, + "y": 119.71639790608404 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 292.1241608367627, + "y": 161.7272861091019 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 248.63832836076816, + "y": 161.7272861091019 + }, + { + "angle": 0.00004571885484194826, + "anglePrev": -0.000003962995418936039, + "angularSpeed": 0.00002588340013075825, + "angularVelocity": 0.000050402466311239266, + "area": 3215.056842335567, + "axes": { + "#": 755 + }, + "bounds": { + "#": 758 + }, + "chamfer": "", + "collisionFilter": { + "#": 761 + }, + "constraintImpulse": { + "#": 762 + }, + "density": 0.001, + "force": { + "#": 763 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 15932.11540305455, + "inverseInertia": 0.00006276630407838228, + "inverseMass": 0.3110364914337108, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.215056842335567, + "motion": 0, + "parent": null, + "position": { + "#": 764 + }, + "positionImpulse": { + "#": 765 + }, + "positionPrev": { + "#": 766 + }, + "region": { + "#": 767 + }, + "render": { + "#": 768 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9119897355040734, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 770 + }, + "vertices": { + "#": 771 + } + }, + [ + { + "#": 756 + }, + { + "#": 757 + } + ], + { + "x": -0.00004571885482602123, + "y": 0.9999999989548932 + }, + { + "x": -0.9999999989548932, + "y": -0.00004571885482602123 + }, + { + "max": { + "#": 759 + }, + "min": { + "#": 760 + } + }, + { + "x": 411.0767086641933, + "y": 149.6747281958903 + }, + { + "x": 292.16982958804704, + "y": 119.71535012115825 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 351.61609240907853, + "y": 133.23906197819048 + }, + { + "x": 0.006220087239726389, + "y": 0.003630698613753208 + }, + { + "x": 351.5852378032183, + "y": 130.32151202685003 + }, + { + "endCol": 8, + "endRow": 3, + "id": "6,8,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 769 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03034824960275273, + "y": 2.9174337592931465 + }, + [ + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 292.17106591677833, + "y": 119.71535012115825 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.06235523011003, + "y": 119.72078569476014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 411.06111890137873, + "y": 146.7627738352227 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 292.16982958804704, + "y": 146.75733826162082 + }, + { + "angle": -0.00005200637852947943, + "anglePrev": 0.00004043822827470408, + "angularSpeed": 0.00005200637852947943, + "angularVelocity": -0.00009864322362904311, + "area": 2527.170838894569, + "axes": { + "#": 777 + }, + "bounds": { + "#": 780 + }, + "chamfer": "", + "collisionFilter": { + "#": 783 + }, + "constraintImpulse": { + "#": 784 + }, + "density": 0.001, + "force": { + "#": 785 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 8473.144372295323, + "inverseInertia": 0.0001180199411294943, + "inverseMass": 0.3956994060747466, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.527170838894569, + "motion": 0, + "parent": null, + "position": { + "#": 786 + }, + "positionImpulse": { + "#": 787 + }, + "positionPrev": { + "#": 788 + }, + "region": { + "#": 789 + }, + "render": { + "#": 790 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.911542638486728, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 792 + }, + "vertices": { + "#": 793 + } + }, + [ + { + "#": 778 + }, + { + "#": 779 + } + ], + { + "x": 0.00005200637850603614, + "y": 0.9999999986476683 + }, + { + "x": -0.9999999986476683, + "y": 0.00005200637850603614 + }, + { + "max": { + "#": 781 + }, + "min": { + "#": 782 + } + }, + { + "x": 507.86499790672696, + "y": 148.73183899237299 + }, + { + "x": 411.0123515451637, + "y": 119.71811628420856 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 459.4314971677689, + "y": 132.7692240133287 + }, + { + "x": 0.007030341825208582, + "y": 3.214191776199337e-7 + }, + { + "x": 459.4005711323206, + "y": 129.85307146991215 + }, + { + "endCol": 10, + "endRow": 3, + "id": "8,10,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 791 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.031570219895684204, + "y": 2.916300362484037 + }, + [ + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 411.0123515451637, + "y": 119.72315242245966 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 507.8492855705867, + "y": 119.71811628420856 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 507.85064279037414, + "y": 145.81529560419776 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 411.0137087649512, + "y": 145.82033174244887 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2948.769805, + "axes": { + "#": 799 + }, + "bounds": { + "#": 807 + }, + "chamfer": "", + "collisionFilter": { + "#": 810 + }, + "constraintImpulse": { + "#": 811 + }, + "density": 0.001, + "force": { + "#": 812 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 5557.617636669042, + "inverseInertia": 0.0001799332133614269, + "inverseMass": 0.3391244709249185, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.948769805, + "motion": 0, + "parent": null, + "position": { + "#": 813 + }, + "positionImpulse": { + "#": 814 + }, + "positionPrev": { + "#": 815 + }, + "region": { + "#": 816 + }, + "render": { + "#": 817 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 819 + }, + "vertices": { + "#": 820 + } + }, + [ + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + } + ], + { + "x": 0.6234998905587619, + "y": 0.7818234368917397 + }, + { + "x": -0.2225283489437671, + "y": 0.9749262197296579 + }, + { + "x": -0.9009635514300213, + "y": 0.43389477871323057 + }, + { + "x": -0.9009635514300213, + "y": -0.43389477871323057 + }, + { + "x": -0.2225283489437671, + "y": -0.9749262197296579 + }, + { + "x": 0.6234998905587619, + "y": -0.7818234368917397 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 808 + }, + "min": { + "#": 809 + } + }, + { + "x": 568.6298038722055, + "y": 183.72439790608414 + }, + { + "x": 506.2268038722055, + "y": 119.71639790608413 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.0538844307272, + "y": 151.72039790608414 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.0538844307272, + "y": 148.81312719104847 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 818 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 568.6298038722055, + "y": 165.96339790608414 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 546.3588038722055, + "y": 183.72439790608414 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 518.5868038722055, + "y": 177.38539790608414 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 506.2268038722055, + "y": 151.72039790608414 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 518.5868038722055, + "y": 126.05539790608412 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 546.3588038722055, + "y": 119.71639790608413 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 568.6298038722055, + "y": 137.47739790608412 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1650.224030690591, + "axes": { + "#": 829 + }, + "bounds": { + "#": 832 + }, + "chamfer": "", + "collisionFilter": { + "#": 835 + }, + "constraintImpulse": { + "#": 836 + }, + "density": 0.001, + "force": { + "#": 837 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1883.1376850445035, + "inverseInertia": 0.0005310286167293006, + "inverseMass": 0.6059783286403342, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.650224030690591, + "motion": 0, + "parent": null, + "position": { + "#": 838 + }, + "positionImpulse": { + "#": 839 + }, + "positionPrev": { + "#": 840 + }, + "region": { + "#": 841 + }, + "render": { + "#": 842 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 844 + }, + "vertices": { + "#": 845 + } + }, + [ + { + "#": 830 + }, + { + "#": 831 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 833 + }, + "min": { + "#": 834 + } + }, + { + "x": 604.0847292837282, + "y": 166.26067945615253 + }, + { + "x": 568.6298038722055, + "y": 119.71639790608393 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.3572665779668, + "y": 142.98853868111823 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.3572665779668, + "y": 140.08126796608258 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 843 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 568.6298038722055, + "y": 119.71639790608393 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 604.0847292837282, + "y": 119.71639790608393 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 604.0847292837282, + "y": 166.26067945615253 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 568.6298038722055, + "y": 166.26067945615253 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 985.702813436139, + "axes": { + "#": 851 + }, + "bounds": { + "#": 860 + }, + "collisionFilter": { + "#": 863 + }, + "constraintImpulse": { + "#": 864 + }, + "density": 0.001, + "force": { + "#": 865 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 694.3954590109718, + "inverseInertia": 0.00144010158336044, + "inverseMass": 1.014504560978193, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.985702813436139, + "motion": 0, + "parent": null, + "position": { + "#": 866 + }, + "positionImpulse": { + "#": 867 + }, + "positionPrev": { + "#": 868 + }, + "region": { + "#": 869 + }, + "render": { + "#": 870 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 872 + }, + "vertices": { + "#": 873 + } + }, + [ + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + } + ], + { + "x": 0.9770171932916059, + "y": 0.21316051232016 + }, + { + "x": 0.799444693536244, + "y": 0.6007396956891904 + }, + { + "x": 0.4765734276771625, + "y": 0.8791346700204926 + }, + { + "x": 0.016108114574245137, + "y": 0.9998702559056664 + }, + { + "x": -0.21316051232015995, + "y": 0.9770171932916059 + }, + { + "x": -0.6007396956891901, + "y": 0.7994446935362443 + }, + { + "x": -0.8791346700204927, + "y": 0.4765734276771623 + }, + { + "x": -0.9990245010225166, + "y": 0.04415932921491988 + }, + { + "max": { + "#": 861 + }, + "min": { + "#": 862 + } + }, + { + "x": 645.8109809984057, + "y": 145.8666251008713 + }, + { + "x": 604.0847292837282, + "y": 119.71639790608388 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 624.947855141067, + "y": 132.79151150347758 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 624.947855141067, + "y": 129.88424078844193 + }, + { + "endCol": 13, + "endRow": 3, + "id": "12,13,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 871 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 604.0847292837282, + "y": 129.71639790608387 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 604.99347736398, + "y": 125.55116819673101 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 607.5545569900632, + "y": 122.14296738781464 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 611.3024929232629, + "y": 120.11123466777786 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 635.8109809984057, + "y": 119.71639790608388 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 639.9762107077587, + "y": 120.62514598633575 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 643.3844115166751, + "y": 123.18622561241904 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 645.4161442367118, + "y": 126.93416154561871 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 645.8109809984057, + "y": 135.8666251008713 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 644.9022329181539, + "y": 140.03185481022416 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 642.3411532920707, + "y": 143.44005561914054 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 638.5932173588709, + "y": 145.47178833917732 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 614.0847292837282, + "y": 145.8666251008713 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 609.9194995743752, + "y": 144.95787702061943 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 606.5112987654588, + "y": 142.39679739453612 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 604.4795660454221, + "y": 138.64886146133648 + }, + { + "angle": -0.00022886112034574538, + "anglePrev": -0.000349178107303018, + "angularSpeed": 0.000006779054803494896, + "angularVelocity": 0.00009811850915894982, + "area": 4952.7985079569, + "axes": { + "#": 891 + }, + "bounds": { + "#": 912 + }, + "collisionFilter": { + "#": 915 + }, + "constraintImpulse": { + "#": 916 + }, + "density": 0.001, + "force": { + "#": 917 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 15818.469397063342, + "inverseInertia": 0.0000632172414978182, + "inverseMass": 0.2019060533945513, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.9527985079569, + "motion": 0, + "parent": null, + "position": { + "#": 918 + }, + "positionImpulse": { + "#": 919 + }, + "positionPrev": { + "#": 920 + }, + "region": { + "#": 921 + }, + "render": { + "#": 922 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9040438299539097, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 924 + }, + "vertices": { + "#": 925 + } + }, + [ + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + } + ], + { + "x": 0.9853098006215378, + "y": 0.1707764527068798 + }, + { + "x": 0.8701396716570752, + "y": 0.49280518646673926 + }, + { + "x": 0.6531922081086078, + "y": 0.7571921415771569 + }, + { + "x": 0.31499629527673695, + "y": 0.9490929005961067 + }, + { + "x": 0.14206245243120305, + "y": 0.9898576966459536 + }, + { + "x": -0.19979493667287057, + "y": 0.9798377331374231 + }, + { + "x": -0.5182829365625674, + "y": 0.8552092128058969 + }, + { + "x": -0.8052999078815256, + "y": 0.592867656704265 + }, + { + "x": -0.89751074739717, + "y": 0.4409925830516581 + }, + { + "x": -0.9936214444327596, + "y": 0.11276712802655242 + }, + { + "x": -0.9735090206973996, + "y": -0.22864860948798785 + }, + { + "x": -0.8126944156501017, + "y": -0.5826901292892647 + }, + { + "x": -0.696748573150083, + "y": -0.7173154297889619 + }, + { + "x": -0.4142889034351554, + "y": -0.9101454304068645 + }, + { + "x": -0.0833711556888293, + "y": -0.9965185650047413 + }, + { + "x": 0.30303180584134176, + "y": -0.9529804429517614 + }, + { + "x": 0.46689838280020235, + "y": -0.8843109747925534 + }, + { + "x": 0.737575707302872, + "y": -0.6752644489358733 + }, + { + "x": 0.9219812618950399, + "y": -0.38723449318782355 + }, + { + "x": 0.9999802174755019, + "y": -0.006290044327962739 + }, + { + "max": { + "#": 913 + }, + "min": { + "#": 914 + } + }, + { + "x": 696.7283938891712, + "y": 239.16756383880494 + }, + { + "x": 615.85018251679, + "y": 152.30893148907066 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 659.5040125654454, + "y": 194.26653471166122 + }, + { + "x": -0.18835751747092533, + "y": 0.05069290410214886 + }, + { + "x": 659.5344069840253, + "y": 191.3732566699382 + }, + { + "endCol": 14, + "endRow": 4, + "id": "12,14,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 923 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.029292590845784616, + "y": 2.894874016205705 + }, + [ + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 696.7283938891712, + "y": 214.0344948484609 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 696.1443317697264, + "y": 217.40429274119813 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 694.4589188388513, + "y": 220.38020430737507 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 691.8692922244863, + "y": 222.61414709881825 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 652.2069138409572, + "y": 235.77777127599722 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 648.8215589250692, + "y": 236.26363083270996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 645.4704727054144, + "y": 235.5803237539987 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 642.5456212621259, + "y": 233.80777433294736 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 617.7694534543327, + "y": 200.15398089751693 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 616.2612251955595, + "y": 197.0844257081534 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 615.8755530194575, + "y": 193.6861646066941 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 616.6575486978716, + "y": 190.35668952793876 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 641.0084063065328, + "y": 156.39385919994186 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 643.461655217671, + "y": 154.01094980271841 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 646.574390833549, + "y": 152.59406434474357 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 649.9825261991109, + "y": 152.30893148907066 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 689.8073659503386, + "y": 164.97256293755726 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 692.8317439251649, + "y": 166.56937359090716 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 695.1411746398793, + "y": 169.09191123605754 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 696.4655316881054, + "y": 172.2451230599096 + }, + { + "angle": -0.023974631562854204, + "anglePrev": -0.021292423915072016, + "angularSpeed": 0.002682207647782188, + "angularVelocity": -0.002682207647782188, + "area": 1624.41915552185, + "axes": { + "#": 947 + }, + "bounds": { + "#": 950 + }, + "chamfer": "", + "collisionFilter": { + "#": 953 + }, + "constraintImpulse": { + "#": 954 + }, + "density": 0.001, + "force": { + "#": 955 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1869.3319950134544, + "inverseInertia": 0.000534950454316063, + "inverseMass": 0.6156046588103344, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.62441915552185, + "motion": 0, + "parent": null, + "position": { + "#": 956 + }, + "positionImpulse": { + "#": 957 + }, + "positionPrev": { + "#": 958 + }, + "region": { + "#": 959 + }, + "render": { + "#": 960 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.860019583768058, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 962 + }, + "vertices": { + "#": 963 + } + }, + [ + { + "#": 948 + }, + { + "#": 949 + } + ], + { + "x": 0.02397233492724848, + "y": 0.9997126222860929 + }, + { + "x": -0.9997126222860929, + "y": 0.02397233492724848 + }, + { + "max": { + "#": 951 + }, + "min": { + "#": 952 + } + }, + { + "x": 720.6385770526612, + "y": 140.51306292820954 + }, + { + "x": 671.7797550452862, + "y": 105.57248932064635 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 696.2091660489737, + "y": 123.04277612442796 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 696.2523067838378, + "y": 120.18308192809644 + }, + { + "endCol": 15, + "endRow": 2, + "id": "13,15,2,2", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 961 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0431407348641244, + "y": 2.859694196331524 + }, + [ + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 671.7797550452862, + "y": 106.72465761284593 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 719.8283572446674, + "y": 105.57248932064635 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720.6385770526612, + "y": 139.36089463601004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 672.58997485328, + "y": 140.51306292820954 + }, + { + "angle": -0.021069507995020633, + "anglePrev": -0.01924572796685744, + "angularSpeed": 0.001823780028163196, + "angularVelocity": -0.001823780028163196, + "area": 1339.8528159999998, + "axes": { + "#": 969 + }, + "bounds": { + "#": 972 + }, + "chamfer": "", + "collisionFilter": { + "#": 975 + }, + "constraintImpulse": { + "#": 976 + }, + "density": 0.001, + "force": { + "#": 977 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1196.8037123620863, + "inverseInertia": 0.0008355589055003328, + "inverseMass": 0.7463506349789991, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.3398528159999998, + "motion": 0, + "parent": null, + "position": { + "#": 978 + }, + "positionImpulse": { + "#": 979 + }, + "positionPrev": { + "#": 980 + }, + "region": { + "#": 981 + }, + "render": { + "#": 982 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6712842167703705, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 984 + }, + "vertices": { + "#": 985 + } + }, + [ + { + "#": 970 + }, + { + "#": 971 + } + ], + { + "x": -0.021067949152323264, + "y": -0.9997780461274968 + }, + { + "x": 0.9997780461274968, + "y": -0.021067949152323264 + }, + { + "max": { + "#": 973 + }, + "min": { + "#": 974 + } + }, + { + "x": 772.2697642778668, + "y": 154.1740282071487 + }, + { + "x": 734.9027174666443, + "y": 116.8069813959261 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 753.5862408722555, + "y": 135.4905048015374 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 753.612606762459, + "y": 132.8193507051588 + }, + { + "endCol": 16, + "endRow": 3, + "id": "15,16,2,3", + "startCol": 15, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 983 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.026365890203450135, + "y": 2.671154096378618 + }, + [ + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 772.2697642778668, + "y": 153.402856996377 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 735.6738886774158, + "y": 154.1740282071487 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 734.9027174666443, + "y": 117.57815260669778 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 771.4985930670953, + "y": 116.8069813959261 + }, + { + "angle": 0.01770766561338645, + "anglePrev": 0.015902942993325092, + "angularSpeed": 0.0018047226200613587, + "angularVelocity": 0.0018047226200613587, + "area": 4071.9713439999996, + "axes": { + "#": 991 + }, + "bounds": { + "#": 994 + }, + "chamfer": "", + "collisionFilter": { + "#": 997 + }, + "constraintImpulse": { + "#": 998 + }, + "density": 0.001, + "force": { + "#": 999 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 11053.96708423811, + "inverseInertia": 0.00009046525942943176, + "inverseMass": 0.24558129601611461, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.071971344, + "motion": 0, + "parent": null, + "position": { + "#": 1000 + }, + "positionImpulse": { + "#": 1001 + }, + "positionPrev": { + "#": 1002 + }, + "region": { + "#": 1003 + }, + "render": { + "#": 1004 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.730310925495883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1006 + }, + "vertices": { + "#": 1007 + } + }, + [ + { + "#": 992 + }, + { + "#": 993 + } + ], + { + "x": 0.01770674022109481, + "y": -0.9998432233859179 + }, + { + "x": 0.9998432233859179, + "y": 0.01770674022109481 + }, + { + "max": { + "#": 995 + }, + "min": { + "#": 996 + } + }, + { + "x": 914.7677207848874, + "y": 185.044136089202 + }, + { + "x": 849.798999376506, + "y": 117.38217521022747 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 882.2649485153515, + "y": 149.84812434907286 + }, + { + "x": 0.4763911166908648, + "y": -0.0010376643476210858 + }, + { + "x": 882.2281253846612, + "y": 147.11806174778908 + }, + { + "endCol": 19, + "endRow": 3, + "id": "17,19,2,3", + "startCol": 17, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1005 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03682313069033398, + "y": 2.7300626012837776 + }, + [ + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 913.6009951472083, + "y": 182.31407348791822 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 849.798999376506, + "y": 181.18417098092974 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 850.9289018834947, + "y": 117.38217521022747 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 914.7308976541971, + "y": 118.51207771721597 + }, + { + "angle": 0.016885883418594514, + "anglePrev": 0.015083626235635812, + "angularSpeed": 0.0018022571829587005, + "angularVelocity": 0.0018022571829587005, + "area": 1410.4247505938968, + "axes": { + "#": 1013 + }, + "bounds": { + "#": 1016 + }, + "chamfer": "", + "collisionFilter": { + "#": 1019 + }, + "constraintImpulse": { + "#": 1020 + }, + "density": 0.001, + "force": { + "#": 1021 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1475.1971281420765, + "inverseInertia": 0.0006778755062107806, + "inverseMass": 0.7090062760022635, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4104247505938967, + "motion": 0, + "parent": null, + "position": { + "#": 1022 + }, + "positionImpulse": { + "#": 1023 + }, + "positionPrev": { + "#": 1024 + }, + "region": { + "#": 1025 + }, + "render": { + "#": 1026 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.840272089312285, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1028 + }, + "vertices": { + "#": 1029 + } + }, + [ + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "x": -0.016885080976103053, + "y": 0.9998574368580906 + }, + { + "x": -0.9998574368580906, + "y": -0.016885080976103053 + }, + { + "max": { + "#": 1017 + }, + "min": { + "#": 1018 + } + }, + { + "x": 1020.6267188935303, + "y": 169.74753782844655 + }, + { + "x": 990.0816198581037, + "y": 118.91590695118454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1005.3279475823335, + "y": 142.91182844910088 + }, + { + "x": 2.8402984665805615, + "y": 0.0020753286952421715 + }, + { + "x": 1005.2755039953665, + "y": 140.07204056767162 + }, + { + "endCol": 21, + "endRow": 3, + "id": "20,21,2,3", + "startCol": 20, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1027 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0524435869670026, + "y": 2.839787881429246 + }, + [ + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 990.8836141567035, + "y": 118.91590695118454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1020.5742753065633, + "y": 119.41730765019298 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1019.7722810079636, + "y": 166.9077499470173 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 990.0816198581037, + "y": 166.4063492480088 + }, + { + "angle": 0.017542060029909042, + "anglePrev": 0.01586632606732407, + "angularSpeed": 0.0016757339625849737, + "angularVelocity": 0.002460906020898471, + "area": 1145.1396745385214, + "axes": { + "#": 1035 + }, + "bounds": { + "#": 1044 + }, + "collisionFilter": { + "#": 1047 + }, + "constraintImpulse": { + "#": 1048 + }, + "density": 0.001, + "force": { + "#": 1049 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 855.9197793798912, + "inverseInertia": 0.001168333790258351, + "inverseMass": 0.8732559199845983, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1451396745385214, + "motion": 0, + "parent": null, + "position": { + "#": 1050 + }, + "positionImpulse": { + "#": 1051 + }, + "positionPrev": { + "#": 1052 + }, + "region": { + "#": 1053 + }, + "render": { + "#": 1054 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.831249510522457, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1056 + }, + "vertices": { + "#": 1057 + } + }, + [ + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + } + ], + { + "x": 0.9731277886617938, + "y": 0.23026573113298 + }, + { + "x": 0.7887840212470848, + "y": 0.6146704546545885 + }, + { + "x": 0.4610790608240489, + "y": 0.8873590590452172 + }, + { + "x": 0.007538814121319255, + "y": 0.9999715827370519 + }, + { + "x": -0.23026573113298016, + "y": 0.9731277886617941 + }, + { + "x": -0.6146704546545884, + "y": 0.7887840212470848 + }, + { + "x": -0.8873590590452167, + "y": 0.4610790608240493 + }, + { + "x": -0.9999989193179711, + "y": 0.0014701574371560112 + }, + { + "max": { + "#": 1045 + }, + "min": { + "#": 1046 + } + }, + { + "x": 52.98775104080359, + "y": 258.6071218930517 + }, + { + "x": 20.35010978624825, + "y": 218.0262078057251 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 36.66952508321712, + "y": 236.90104021903036 + }, + { + "x": -0.007566201853934103, + "y": 0.00028973985568621683 + }, + { + "x": 36.670714422599524, + "y": 234.06979095831426 + }, + { + "endCol": 1, + "endRow": 5, + "id": "0,1,4,5", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1055 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.001552758629664197, + "y": 2.867355353086907 + }, + [ + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20.351299125630657, + "y": 227.62197748121102 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 21.3329703499923, + "y": 223.47332912152842 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 23.95343973043706, + "y": 220.11057699994873 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 27.736437963197332, + "y": 218.14490002344166 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 43.48014020848245, + "y": 218.0262078057251 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 47.62878856816509, + "y": 219.00787903008683 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 50.991540689744795, + "y": 221.62834841053154 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 52.95721766625184, + "y": 225.4113466432918 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 52.98775104080359, + "y": 246.1801029568497 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 52.00607981644192, + "y": 250.3287513165323 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 49.385610435997165, + "y": 253.691503438112 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 45.6026122032369, + "y": 255.65718041461906 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 29.858909957951777, + "y": 255.77587263233562 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 25.710261598269128, + "y": 254.7942014079739 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 22.34750947668944, + "y": 252.17373202752918 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 20.381832500182387, + "y": 248.39073379476892 + }, + { + "angle": -0.001928628611022823, + "anglePrev": -0.0016598825474911003, + "angularSpeed": 0.000268746063531723, + "angularVelocity": 0.00017078844830335132, + "area": 1884.7709190881956, + "axes": { + "#": 1075 + }, + "bounds": { + "#": 1092 + }, + "collisionFilter": { + "#": 1095 + }, + "constraintImpulse": { + "#": 1096 + }, + "density": 0.001, + "force": { + "#": 1097 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 2264.182707269258, + "inverseInertia": 0.00044166047059252596, + "inverseMass": 0.5305684578812234, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.8847709190881956, + "motion": 0, + "parent": null, + "position": { + "#": 1098 + }, + "positionImpulse": { + "#": 1099 + }, + "positionPrev": { + "#": 1100 + }, + "region": { + "#": 1101 + }, + "render": { + "#": 1102 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8938464882133728, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1104 + }, + "vertices": { + "#": 1105 + } + }, + [ + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + } + ], + { + "x": -0.9944425920948836, + "y": -0.10528024994085569 + }, + { + "x": -0.9491459182035853, + "y": -0.3148365067101861 + }, + { + "x": -0.8602211699600179, + "y": -0.5099211103225849 + }, + { + "x": -0.7138324134460637, + "y": -0.7003165609306745 + }, + { + "x": -0.6287327217128266, + "y": -0.7776214790292135 + }, + { + "x": -0.4485244862374303, + "y": -0.8937705439571437 + }, + { + "x": -0.24769954761968047, + "y": -0.9688368975782276 + }, + { + "x": -0.00955735982571804, + "y": -0.9999543273935873 + }, + { + "x": 0.10528024994085569, + "y": -0.9944425920948836 + }, + { + "x": 0.3148365067101861, + "y": -0.9491459182035853 + }, + { + "x": 0.5099211103225849, + "y": -0.8602211699600179 + }, + { + "x": 0.7003165609306745, + "y": -0.7138324134460637 + }, + { + "x": 0.7776214790292135, + "y": -0.6287327217128266 + }, + { + "x": 0.8937705439571437, + "y": -0.4485244862374303 + }, + { + "x": 0.9688368975782276, + "y": -0.24769954761968047 + }, + { + "x": 0.9999543273935873, + "y": -0.00955735982571804 + }, + { + "max": { + "#": 1093 + }, + "min": { + "#": 1094 + } + }, + { + "x": 100.94704581290128, + "y": 269.5045089258262 + }, + { + "x": 52.92385909652649, + "y": 218.58764264071246 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 76.93553591204427, + "y": 242.59915254156945 + }, + { + "x": -0.006946404337057001, + "y": 0.00005688758939086284 + }, + { + "x": 76.93570282670508, + "y": 239.70530605816984 + }, + { + "endCol": 2, + "endRow": 5, + "id": "1,2,4,5", + "startCol": 1, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1103 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000053889785135652346, + "y": 2.871909324645941 + }, + [ + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100.94704581290128, + "y": 248.35189298279482 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 100.72132924533182, + "y": 250.4839373943406 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 100.04633259895124, + "y": 252.51886758209983 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 98.95308250866475, + "y": 254.36314673173183 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 89.84625773990025, + "y": 263.6457298751014 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 88.17906896315088, + "y": 264.9937072207417 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 86.26286132221121, + "y": 265.9553254498137 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 84.18571447673105, + "y": 266.48638319054504 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 71.18279547081887, + "y": 266.6106624424266 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 69.05075105927311, + "y": 266.3849458748571 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 67.0158208715139, + "y": 265.7099492284765 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 65.17154172188187, + "y": 264.61669913819 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 55.888958578512444, + "y": 255.50987436942543 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 54.54098123287208, + "y": 253.84268559267602 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 53.57936300380019, + "y": 251.92647795173642 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 53.04830526306881, + "y": 249.84933110625622 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 52.924026011187294, + "y": 236.84641210034408 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 53.14974257875675, + "y": 234.71436768879832 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 53.824739225137336, + "y": 232.67943750103908 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 54.91798931542384, + "y": 230.83515835140707 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 64.0248140841883, + "y": 221.55257520803758 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 65.69200286093766, + "y": 220.2045978623972 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 67.60821050187734, + "y": 219.24297963332532 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 69.6853573473575, + "y": 218.71192189259398 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 82.68827635326967, + "y": 218.58764264071246 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 84.82032076481543, + "y": 218.81335920828192 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 86.85525095257465, + "y": 219.4883558546625 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 88.69953010220668, + "y": 220.58160594494896 + }, + { + "body": null, + "index": 28, + "isInternal": false, + "x": 97.98211324557612, + "y": 229.68843071371347 + }, + { + "body": null, + "index": 29, + "isInternal": false, + "x": 99.3300905912165, + "y": 231.35561949046289 + }, + { + "body": null, + "index": 30, + "isInternal": false, + "x": 100.29170882028836, + "y": 233.2718271314025 + }, + { + "body": null, + "index": 31, + "isInternal": false, + "x": 100.82276656101976, + "y": 235.3489739768827 + }, + { + "angle": -0.0007157083363083084, + "anglePrev": -0.0006148386152591197, + "angularSpeed": 0.00010024908935164966, + "angularVelocity": -0.00010100236171081819, + "area": 3192.987712697058, + "axes": { + "#": 1139 + }, + "bounds": { + "#": 1142 + }, + "chamfer": "", + "collisionFilter": { + "#": 1145 + }, + "constraintImpulse": { + "#": 1146 + }, + "density": 0.001, + "force": { + "#": 1147 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 14162.074980074754, + "inverseInertia": 0.00007061112170405424, + "inverseMass": 0.31318629759314615, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.1929877126970583, + "motion": 0, + "parent": null, + "position": { + "#": 1148 + }, + "positionImpulse": { + "#": 1149 + }, + "positionPrev": { + "#": 1150 + }, + "region": { + "#": 1151 + }, + "render": { + "#": 1152 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9151914164625006, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1154 + }, + "vertices": { + "#": 1155 + } + }, + [ + { + "#": 1140 + }, + { + "#": 1141 + } + ], + { + "x": 0.0007157082752060919, + "y": 0.9999997438807994 + }, + { + "x": -0.9999997438807994, + "y": 0.0007157082752060919 + }, + { + "max": { + "#": 1143 + }, + "min": { + "#": 1144 + } + }, + { + "x": 211.68787011519169, + "y": 249.9864092205348 + }, + { + "x": 99.90903794630803, + "y": 218.4206587055369 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.79819149362748, + "y": 232.74593827844825 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.80277230091707, + "y": 229.83194209125097 + }, + { + "endCol": 4, + "endRow": 5, + "id": "2,4,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1153 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.004609701077356476, + "y": 2.913984892657254 + }, + [ + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 99.90903794630803, + "y": 218.5006447504525 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 211.66689684011405, + "y": 218.4206587055369 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 211.68734504094692, + "y": 246.991231806444 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 99.9294861471409, + "y": 247.0712178513596 + }, + { + "angle": 0.000023545011330823848, + "anglePrev": -0.000024068983862839327, + "angularSpeed": 0.000023545011330823848, + "angularVelocity": 0.000047674448353327803, + "area": 4466.9579779999995, + "axes": { + "#": 1161 + }, + "bounds": { + "#": 1175 + }, + "chamfer": "", + "circleRadius": 37.89191100823045, + "collisionFilter": { + "#": 1178 + }, + "constraintImpulse": { + "#": 1179 + }, + "density": 0.001, + "force": { + "#": 1180 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 12703.170970181629, + "inverseInertia": 0.00007872050233341874, + "inverseMass": 0.2238659967085099, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.466957978, + "motion": 0, + "parent": null, + "position": { + "#": 1181 + }, + "positionImpulse": { + "#": 1182 + }, + "positionPrev": { + "#": 1183 + }, + "region": { + "#": 1184 + }, + "render": { + "#": 1185 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9078252615992075, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1187 + }, + "vertices": { + "#": 1188 + } + }, + [ + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "x": -0.9709427614439688, + "y": -0.23931183422380164 + }, + { + "x": -0.885395969208233, + "y": -0.46483758207551773 + }, + { + "x": -0.748546176306219, + "y": -0.6630826659907035 + }, + { + "x": -0.5680230722338149, + "y": -0.8230126301643604 + }, + { + "x": -0.3545662146246555, + "y": -0.9350309082841821 + }, + { + "x": -0.12050742248578933, + "y": -0.9927124261969482 + }, + { + "x": 0.12055416920280734, + "y": -0.9927067503990394 + }, + { + "x": 0.35461024485817966, + "y": -0.935014210716405 + }, + { + "x": 0.5680618272874187, + "y": -0.8229858810325236 + }, + { + "x": 0.7485774000540361, + "y": -0.6630474161991279 + }, + { + "x": 0.8854178574388293, + "y": -0.46479588824389684 + }, + { + "x": 0.9709540295671432, + "y": -0.23926611224184557 + }, + { + "x": 0.9999999997228162, + "y": 0.000023545011328648417 + }, + { + "max": { + "#": 1176 + }, + "min": { + "#": 1177 + } + }, + { + "x": 285.5676995085651, + "y": 297.53120951317896 + }, + { + "x": 210.32939616830177, + "y": 218.83939064632685 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.95159198892492, + "y": 256.7313906358238 + }, + { + "x": 0.21999584912676662, + "y": 0.11567979630641323 + }, + { + "x": 247.9554756032739, + "y": 253.82135979724998 + }, + { + "endCol": 5, + "endRow": 6, + "id": "4,5,4,6", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1186 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.003862961029710732, + "y": 2.9100389119265913 + }, + [ + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.5674844484316, + "y": 261.29927630370406 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.38127560478705, + "y": 270.1692248318506 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.1350851739124, + "y": 278.2571248574906 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.0779241748038, + "y": 285.0949822434616 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 265.55980200182387, + "y": 290.2838052306281 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 257.0187257418997, + "y": 293.52260413178857 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 247.95069982135564, + "y": 294.6233906253206 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 238.8827257469266, + "y": 293.5221771194631 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 230.34180201158574, + "y": 290.2829760224192 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 222.8239241887334, + "y": 285.0937990124623 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 216.76708519119975, + "y": 278.2556564022241 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 212.5212756244283, + "y": 270.16755643234785 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 210.33548446928475, + "y": 261.29750496541175 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 210.3356995294182, + "y": 252.16350496794354 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 212.52190837306276, + "y": 243.29355643979693 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 216.76809880393748, + "y": 235.2056564141569 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 222.825259803046, + "y": 228.3677990281859 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 230.34338197602594, + "y": 223.17897604101938 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 238.8844582359502, + "y": 219.94017713985895 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 247.9524841564942, + "y": 218.83939064632685 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 257.0204582309232, + "y": 219.9406041521844 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 265.56138196626404, + "y": 223.17980524922837 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 273.07925978911646, + "y": 228.36898225918523 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 279.1360987866501, + "y": 235.20712486942344 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 283.3819083534215, + "y": 243.2952248392997 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 285.5676995085651, + "y": 252.16527630623582 + }, + { + "angle": 0.00012076499479816909, + "anglePrev": 0.0000534647906333835, + "angularSpeed": 0.00006217908667413261, + "angularVelocity": 0.00006530549999607206, + "area": 2150.621595245249, + "axes": { + "#": 1216 + }, + "bounds": { + "#": 1219 + }, + "chamfer": "", + "collisionFilter": { + "#": 1222 + }, + "constraintImpulse": { + "#": 1223 + }, + "density": 0.001, + "force": { + "#": 1224 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 3103.359772962483, + "inverseInertia": 0.00032223141148903753, + "inverseMass": 0.4649818462768498, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.150621595245249, + "motion": 0, + "parent": null, + "position": { + "#": 1225 + }, + "positionImpulse": { + "#": 1226 + }, + "positionPrev": { + "#": 1227 + }, + "region": { + "#": 1228 + }, + "render": { + "#": 1229 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.916187571809465, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1231 + }, + "vertices": { + "#": 1232 + } + }, + [ + { + "#": 1217 + }, + { + "#": 1218 + } + ], + { + "x": -0.00012076499450462593, + "y": 0.999999992707908 + }, + { + "x": -0.999999992707908, + "y": -0.00012076499450462593 + }, + { + "max": { + "#": 1220 + }, + "min": { + "#": 1221 + } + }, + { + "x": 329.3125606463655, + "y": 270.7076447215867 + }, + { + "x": 285.48641033397655, + "y": 218.70148819272273 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.40233957722626, + "y": 243.24647546456163 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.40504639839406, + "y": 240.33311335691184 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1230 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0026068962587828537, + "y": 2.9134113144420724 + }, + [ + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.49804621963733, + "y": 218.70148819272273 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 329.3125606463655, + "y": 218.70677945235528 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 329.3066329348152, + "y": 267.79146273640055 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 285.492118508087, + "y": 267.78617147676795 + }, + { + "angle": 0.00032821961112353647, + "anglePrev": 0.00020138195217226837, + "angularSpeed": 0.0001268376589512681, + "angularVelocity": 0.0001268376589512681, + "area": 2853.66629, + "axes": { + "#": 1238 + }, + "bounds": { + "#": 1252 + }, + "chamfer": "", + "circleRadius": 30.286243998628258, + "collisionFilter": { + "#": 1255 + }, + "constraintImpulse": { + "#": 1256 + }, + "density": 0.001, + "force": { + "#": 1257 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 5184.355561525051, + "inverseInertia": 0.0001928880047158332, + "inverseMass": 0.3504263983158311, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.85366629, + "motion": 0, + "parent": null, + "position": { + "#": 1258 + }, + "positionImpulse": { + "#": 1259 + }, + "positionPrev": { + "#": 1260 + }, + "region": { + "#": 1261 + }, + "render": { + "#": 1262 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.900225598877963, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1264 + }, + "vertices": { + "#": 1265 + } + }, + [ + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + } + ], + { + "x": -0.9708721894527186, + "y": -0.2395979794307215 + }, + { + "x": -0.8853087336408076, + "y": -0.4650037055113746 + }, + { + "x": -0.7482636463255641, + "y": -0.663401473911214 + }, + { + "x": -0.5677924648102757, + "y": -0.8231717420469873 + }, + { + "x": -0.35428126192034926, + "y": -0.9351389134519669 + }, + { + "x": -0.12020186651591656, + "y": -0.9927494705544243 + }, + { + "x": 0.12085352026121107, + "y": -0.992670351446276 + }, + { + "x": 0.35489504740520084, + "y": -0.9349061478711435 + }, + { + "x": 0.5683327046551753, + "y": -0.8227988434722872 + }, + { + "x": 0.7486989678238043, + "y": -0.6629101414064879 + }, + { + "x": 0.8856137895444013, + "y": -0.46442245398861254 + }, + { + "x": 0.9710292617722418, + "y": -0.23896060926867269 + }, + { + "x": 0.9999999461359439, + "y": 0.0003282196052304566 + }, + { + "max": { + "#": 1253 + }, + "min": { + "#": 1254 + } + }, + { + "x": 389.0284319837204, + "y": 282.1719316517047 + }, + { + "x": 328.8882275448467, + "y": 218.6997198339924 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 358.9622352733645, + "y": 248.98571820266557 + }, + { + "x": -0.1993594325412792, + "y": 0.0000796087279621504 + }, + { + "x": 358.97004629152644, + "y": 246.08550312229957 + }, + { + "endCol": 8, + "endRow": 5, + "id": "6,8,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1263 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.007811018161909829, + "y": 2.9002150803659914 + }, + [ + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.026035324163, + "y": 252.64658592843915 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 387.276708669482, + "y": 259.73501214694653 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.8815869124949, + "y": 266.19889814959487 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 379.0377934531621, + "y": 271.6623086158993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 373.0284326500745, + "y": 275.8073364491368 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 366.2005832572464, + "y": 278.3940955544378 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 358.95229481440055, + "y": 279.27171657133874 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 351.7045840380598, + "y": 278.38933768304037 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 344.87843416634763, + "y": 275.79809706724956 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.8717956166658, + "y": 271.64912534723555 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 334.0315895976181, + "y": 266.18253640227414 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 330.64071172012666, + "y": 259.7164231013847 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 328.89603856300863, + "y": 252.62685008357667 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 328.89843522256604, + "y": 245.32485047689198 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 330.64776187724704, + "y": 238.2364242583846 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 334.0428836342341, + "y": 231.77253825573627 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 338.8866770935669, + "y": 226.30912778943187 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 344.89603789665455, + "y": 222.16409995619432 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 351.7238872894826, + "y": 219.57734085089328 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 358.9721757323285, + "y": 218.6997198339924 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 366.2198865086692, + "y": 219.58209872229068 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 373.0460363803814, + "y": 222.17333933808155 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 379.05267493006323, + "y": 226.32231105809558 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 383.8928809491109, + "y": 231.78890000305702 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 387.28375882660237, + "y": 238.25501330394644 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 389.0284319837204, + "y": 245.34458632175446 + }, + { + "angle": -0.0002505311570355707, + "anglePrev": -0.000002385343520785099, + "angularSpeed": 0.0005384878805841506, + "angularVelocity": -0.0006969005685228949, + "area": 1365.5999734968448, + "axes": { + "#": 1293 + }, + "bounds": { + "#": 1296 + }, + "chamfer": "", + "collisionFilter": { + "#": 1299 + }, + "constraintImpulse": { + "#": 1300 + }, + "density": 0.001, + "force": { + "#": 1301 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1298.9605101084082, + "inverseInertia": 0.0007698463442253086, + "inverseMass": 0.732278865998609, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3655999734968447, + "motion": 0, + "parent": null, + "position": { + "#": 1302 + }, + "positionImpulse": { + "#": 1303 + }, + "positionPrev": { + "#": 1304 + }, + "region": { + "#": 1305 + }, + "render": { + "#": 1306 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9014164864918364, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1308 + }, + "vertices": { + "#": 1309 + } + }, + [ + { + "#": 1294 + }, + { + "#": 1295 + } + ], + { + "x": 0.00025053115441477005, + "y": 0.99999996861707 + }, + { + "x": -0.99999996861707, + "y": 0.00025053115441477005 + }, + { + "max": { + "#": 1297 + }, + "min": { + "#": 1298 + } + }, + { + "x": 421.2441077924399, + "y": 264.5195885666043 + }, + { + "x": 389.3872305987904, + "y": 218.71263270025779 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.32175724849014, + "y": 240.1654151648251 + }, + { + "x": -0.10749944434586396, + "y": -0.00004780903493431789 + }, + { + "x": 405.33549891206377, + "y": 237.24879133675032 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1307 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.012976478917664735, + "y": 2.8908527931394588 + }, + [ + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.39940670454047, + "y": 218.7206080977295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 421.2333606094756, + "y": 218.71263270025779 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.2441077924399, + "y": 261.6102222319207 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.41015388750475, + "y": 261.6181976293924 + }, + { + "angle": -0.0004554819170823507, + "anglePrev": -0.0003640451078095484, + "angularSpeed": 0.0002473967337746574, + "angularVelocity": -0.00037652062847817454, + "area": 1818.1655641659895, + "axes": { + "#": 1315 + }, + "bounds": { + "#": 1318 + }, + "chamfer": "", + "collisionFilter": { + "#": 1321 + }, + "constraintImpulse": { + "#": 1322 + }, + "density": 0.001, + "force": { + "#": 1323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 2264.6113640186218, + "inverseInertia": 0.00044157687093182715, + "inverseMass": 0.5500049168837436, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.8181655641659895, + "motion": 0, + "parent": null, + "position": { + "#": 1324 + }, + "positionImpulse": { + "#": 1325 + }, + "positionPrev": { + "#": 1326 + }, + "region": { + "#": 1327 + }, + "render": { + "#": 1328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9139614115183288, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1330 + }, + "vertices": { + "#": 1331 + } + }, + [ + { + "#": 1316 + }, + { + "#": 1317 + } + ], + { + "x": 0.00045548190133301754, + "y": 0.999999896268113 + }, + { + "x": -0.999999896268113, + "y": 0.00045548190133301754 + }, + { + "max": { + "#": 1319 + }, + "min": { + "#": 1320 + } + }, + { + "x": 459.1306074469026, + "y": 269.5103820512791 + }, + { + "x": 421.17396330199364, + "y": 218.63838775233012 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440.15707130783784, + "y": 242.61741205655454 + }, + { + "x": -0.11396227628453322, + "y": 0.0000025461853955189846 + }, + { + "x": 440.1654672874676, + "y": 239.7148940848086 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1329 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.008970699647875335, + "y": 2.9218742533290367 + }, + [ + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 421.18353516877306, + "y": 218.6556620127788 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 459.10877128958606, + "y": 218.63838775233012 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 459.1306074469026, + "y": 266.57916210033034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 421.2053713260896, + "y": 266.596436360779 + }, + { + "angle": -0.001295298882237998, + "anglePrev": -0.0014021195075180478, + "angularSpeed": 0.00010624674634025835, + "angularVelocity": -0.0006289206542106022, + "area": 1013.362993496838, + "axes": { + "#": 1337 + }, + "bounds": { + "#": 1340 + }, + "chamfer": "", + "collisionFilter": { + "#": 1343 + }, + "constraintImpulse": { + "#": 1344 + }, + "density": 0.001, + "force": { + "#": 1345 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 687.3887813315329, + "inverseInertia": 0.001454780798230241, + "inverseMass": 0.9868132213406314, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.013362993496838, + "motion": 0, + "parent": null, + "position": { + "#": 1346 + }, + "positionImpulse": { + "#": 1347 + }, + "positionPrev": { + "#": 1348 + }, + "region": { + "#": 1349 + }, + "render": { + "#": 1350 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8784642327978975, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1352 + }, + "vertices": { + "#": 1353 + } + }, + [ + { + "#": 1338 + }, + { + "#": 1339 + } + ], + { + "x": 0.0012952985200294584, + "y": 0.9999991611005202 + }, + { + "x": -0.9999991611005202, + "y": 0.0012952985200294584 + }, + { + "max": { + "#": 1341 + }, + "min": { + "#": 1342 + } + }, + { + "x": 489.5319191587439, + "y": 254.81003887733505 + }, + { + "x": 459.05101921446936, + "y": 218.59058600245407 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 474.2954400327838, + "y": 235.2610858012949 + }, + { + "x": -0.12131360478678682, + "y": 0.00018236409289659565 + }, + { + "x": 474.30338175651923, + "y": 232.3826567509945 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1351 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.007137090245123545, + "y": 2.910444852392658 + }, + [ + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 459.0589609068237, + "y": 218.63000173985836 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 489.4887836302686, + "y": 218.59058600245407 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 489.5319191587439, + "y": 251.89216986273146 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 459.102096435299, + "y": 251.93158560013575 + }, + { + "angle": 0.0002246687920388095, + "anglePrev": 0.00011753993441572168, + "angularSpeed": 0.00010712885762308784, + "angularVelocity": 0.00010712885762308784, + "area": 1150.5899172961686, + "axes": { + "#": 1359 + }, + "bounds": { + "#": 1362 + }, + "chamfer": "", + "collisionFilter": { + "#": 1365 + }, + "constraintImpulse": { + "#": 1366 + }, + "density": 0.001, + "force": { + "#": 1367 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 958.5119663079198, + "inverseInertia": 0.0010432837931610675, + "inverseMass": 0.8691193838634986, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1505899172961687, + "motion": 0, + "parent": null, + "position": { + "#": 1368 + }, + "positionImpulse": { + "#": 1369 + }, + "positionPrev": { + "#": 1370 + }, + "region": { + "#": 1371 + }, + "render": { + "#": 1372 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072098477377786, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1374 + }, + "vertices": { + "#": 1375 + } + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + } + ], + { + "x": -0.00022466879014874344, + "y": 0.9999999747619668 + }, + { + "x": -0.9999999747619668, + "y": -0.00022466879014874344 + }, + { + "max": { + "#": 1363 + }, + "min": { + "#": 1364 + } + }, + { + "x": 531.9979744240633, + "y": 244.08159937758518 + }, + { + "x": 490.31374672139617, + "y": 216.4656048067788 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 511.1558605727296, + "y": 230.273602092182 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 511.18062196632974, + "y": 227.3664976956784 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1373 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.02476139360017328, + "y": 2.907104396503589 + }, + [ + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 490.3199490698988, + "y": 216.4656048067788 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 531.9979744240633, + "y": 216.4749685585472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 531.9917720755604, + "y": 244.08159937758518 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 490.31374672139617, + "y": 244.07223562581675 + }, + { + "angle": -0.005517218834920903, + "anglePrev": -0.004662755326161294, + "angularSpeed": 0.0008544635087596088, + "angularVelocity": -0.0008544635087596088, + "area": 3070.122224999999, + "axes": { + "#": 1381 + }, + "bounds": { + "#": 1387 + }, + "chamfer": "", + "collisionFilter": { + "#": 1390 + }, + "constraintImpulse": { + "#": 1391 + }, + "density": 0.001, + "force": { + "#": 1392 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 6102.402752435917, + "inverseInertia": 0.00016386987889333043, + "inverseMass": 0.32571993123172815, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.070122224999999, + "motion": 0, + "parent": null, + "position": { + "#": 1393 + }, + "positionImpulse": { + "#": 1394 + }, + "positionPrev": { + "#": 1395 + }, + "region": { + "#": 1396 + }, + "render": { + "#": 1397 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9053589125352586, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1399 + }, + "vertices": { + "#": 1400 + } + }, + [ + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + } + ], + { + "x": 0.31424558430359134, + "y": 0.9493417260110792 + }, + { + "x": -0.8057571176456783, + "y": 0.5922461205979556 + }, + { + "x": -0.812243034413641, + "y": -0.5833191691060061 + }, + { + "x": 0.3037512138882007, + "y": -0.9527513841823819 + }, + { + "x": 0.9999847801867713, + "y": -0.005517190844545767 + }, + { + "max": { + "#": 1388 + }, + "min": { + "#": 1389 + } + }, + { + "x": 587.4485704063367, + "y": 296.46789920264894 + }, + { + "x": 522.2835600335136, + "y": 225.21392085073992 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 558.261567743487, + "y": 259.32713733551935 + }, + { + "x": -0.10298440263741482, + "y": 0.37681192888977305 + }, + { + "x": 558.3060333752505, + "y": 256.422118709376 + }, + { + "endCol": 12, + "endRow": 6, + "id": "10,12,4,6", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1398 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.04446563176353038, + "y": 2.905018626143373 + }, + [ + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 587.4485704063367, + "y": 280.2884260985481 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.346197754427, + "y": 293.56288057650556 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 522.3280256652771, + "y": 259.5253925622929 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 546.9690977602024, + "y": 225.21392085073992 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 587.2155021962997, + "y": 238.04506904433822 + }, + { + "angle": -0.010967077329317388, + "anglePrev": -0.01024549121963566, + "angularSpeed": 0.0019015607215979182, + "angularVelocity": -0.0009119772250394832, + "area": 1289.2729575874455, + "axes": { + "#": 1407 + }, + "bounds": { + "#": 1416 + }, + "collisionFilter": { + "#": 1419 + }, + "constraintImpulse": { + "#": 1420 + }, + "density": 0.001, + "force": { + "#": 1421 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1245.9739295541528, + "inverseInertia": 0.0008025850110345649, + "inverseMass": 0.7756309430946662, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2892729575874455, + "motion": 0, + "parent": null, + "position": { + "#": 1422 + }, + "positionImpulse": { + "#": 1423 + }, + "positionPrev": { + "#": 1424 + }, + "region": { + "#": 1425 + }, + "render": { + "#": 1426 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.856105703556289, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1428 + }, + "vertices": { + "#": 1429 + } + }, + [ + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "x": 0.979296138596655, + "y": 0.20243288500063739 + }, + { + "x": 0.8059848433264111, + "y": 0.5919361725119535 + }, + { + "x": 0.4861861122391725, + "y": 0.8738552879428945 + }, + { + "x": 0.02323197791280778, + "y": 0.9997301011784424 + }, + { + "x": -0.20243288500063733, + "y": 0.979296138596655 + }, + { + "x": -0.5919361725119532, + "y": 0.8059848433264113 + }, + { + "x": -0.8738552879428946, + "y": 0.48618611223917235 + }, + { + "x": -0.9989168569507393, + "y": 0.04653077368426255 + }, + { + "max": { + "#": 1417 + }, + "min": { + "#": 1418 + } + }, + { + "x": 636.5546352250228, + "y": 250.1687258168725 + }, + { + "x": 587.0077009674472, + "y": 218.68232826447917 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 611.8090140771483, + "y": 232.99774570278873 + }, + { + "x": -0.6597891715614639, + "y": 0.4857415929569947 + }, + { + "x": 611.8454064460624, + "y": 230.10125151492997 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1427 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.04062508839012935, + "y": 2.8903631820155056 + }, + [ + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 587.0633929292737, + "y": 229.1138548257205 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 587.9264068788175, + "y": 224.93890949339217 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 590.4499552346869, + "y": 221.50282665087735 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 594.1753840521188, + "y": 219.43011303552038 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 626.3544325867936, + "y": 218.68232826447917 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 630.5293779191219, + "y": 219.54534221402287 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 633.9654607616369, + "y": 222.06889056989246 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 636.0381743769938, + "y": 225.79431938732426 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 636.5546352250228, + "y": 236.88163657985697 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 635.6916212754791, + "y": 241.0565819121853 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 633.1680729196097, + "y": 244.49266475470012 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 629.4426441021778, + "y": 246.5653783700571 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 597.263595567503, + "y": 247.3131631410983 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 593.0886502351747, + "y": 246.4501491915546 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 589.6525673926596, + "y": 243.926600835685 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 587.5798537773028, + "y": 240.2011720182532 + }, + { + "angle": 0.021758503085541392, + "anglePrev": 0.018366402721084585, + "angularSpeed": 0.003392100364456807, + "angularVelocity": 0.003392100364456807, + "area": 1558.1253951107035, + "axes": { + "#": 1447 + }, + "bounds": { + "#": 1450 + }, + "chamfer": "", + "collisionFilter": { + "#": 1453 + }, + "constraintImpulse": { + "#": 1454 + }, + "density": 0.001, + "force": { + "#": 1455 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1636.3880205903727, + "inverseInertia": 0.0006111020047917621, + "inverseMass": 0.6417968689413157, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5581253951107035, + "motion": 0, + "parent": null, + "position": { + "#": 1456 + }, + "positionImpulse": { + "#": 1457 + }, + "positionPrev": { + "#": 1458 + }, + "region": { + "#": 1459 + }, + "render": { + "#": 1460 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8422519415680783, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1462 + }, + "vertices": { + "#": 1463 + } + }, + [ + { + "#": 1448 + }, + { + "#": 1449 + } + ], + { + "x": -0.02175678626258754, + "y": 0.9997632931106863 + }, + { + "x": -0.9997632931106863, + "y": -0.02175678626258754 + }, + { + "max": { + "#": 1451 + }, + "min": { + "#": 1452 + } + }, + { + "x": 672.6374133142666, + "y": 286.9570514695152 + }, + { + "x": 635.073162588896, + "y": 243.65369941789695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 653.8552879515813, + "y": 265.30537544370605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 653.990308954906, + "y": 262.4663323957745 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,5,5", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1461 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.13502100332467307, + "y": 2.839043047931593 + }, + [ + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 635.9981757476335, + "y": 243.65369941789695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 672.6374133142666, + "y": 244.45104021451795 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 671.7124001555292, + "y": 286.9570514695152 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 635.073162588896, + "y": 286.15971067289416 + }, + { + "angle": -0.03579806926337733, + "anglePrev": -0.03084287571523706, + "angularSpeed": 0.004955193548140272, + "angularVelocity": -0.004955193548140272, + "area": 3629.791971, + "axes": { + "#": 1469 + }, + "bounds": { + "#": 1477 + }, + "chamfer": "", + "collisionFilter": { + "#": 1480 + }, + "constraintImpulse": { + "#": 1481 + }, + "density": 0.001, + "force": { + "#": 1482 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 8421.130427783828, + "inverseInertia": 0.00011874890296208937, + "inverseMass": 0.2754978819693907, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.6297919710000004, + "motion": 0, + "parent": null, + "position": { + "#": 1483 + }, + "positionImpulse": { + "#": 1484 + }, + "positionPrev": { + "#": 1485 + }, + "region": { + "#": 1486 + }, + "render": { + "#": 1487 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7806489665441685, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1489 + }, + "vertices": { + "#": 1490 + } + }, + [ + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + } + ], + { + "x": 0.6510805447099055, + "y": 0.7590086457348512 + }, + { + "x": -0.1874962563781312, + "y": 0.9822653174393291 + }, + { + "x": -0.8848605889404357, + "y": 0.46585591993660974 + }, + { + "x": -0.9159186539849203, + "y": -0.40136394865813696 + }, + { + "x": -0.2572822449146621, + "y": -0.9663363009075421 + }, + { + "x": 0.5951168619601224, + "y": -0.8036391731434803 + }, + { + "x": 0.9993593175425329, + "y": -0.03579042387179416 + }, + { + "max": { + "#": 1478 + }, + "min": { + "#": 1479 + } + }, + { + "x": 742.0963870858386, + "y": 292.07004796972427 + }, + { + "x": 672.2149358275129, + "y": 218.32171992462887 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 708.737711804452, + "y": 254.09702112203524 + }, + { + "x": -0.11345770052096563, + "y": 0.02686308661329296 + }, + { + "x": 708.8629604346982, + "y": 251.31919437154042 + }, + { + "endCol": 15, + "endRow": 6, + "id": "14,15,4,6", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1488 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1252486302461625, + "y": 2.77782675049482 + }, + [ + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 742.0963870858386, + "y": 268.7144651338642 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 718.1075044421801, + "y": 289.2922212192295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 687.0635310989693, + "y": 283.36650167929054 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 672.340184457759, + "y": 255.40053919482085 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 685.0252664594707, + "y": 226.45298854524327 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 715.565811700501, + "y": 218.32171992462887 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 740.9652665297943, + "y": 237.13071326225003 + }, + { + "angle": -0.1598050908632879, + "anglePrev": -0.13862902627124346, + "angularSpeed": 0.02117606459204443, + "angularVelocity": -0.02117606459204443, + "area": 1408.6913580494604, + "axes": { + "#": 1499 + }, + "bounds": { + "#": 1508 + }, + "collisionFilter": { + "#": 1511 + }, + "constraintImpulse": { + "#": 1512 + }, + "density": 0.001, + "force": { + "#": 1513 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1303.4279840613233, + "inverseInertia": 0.0007672077109194184, + "inverseMass": 0.7098787071318777, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4086913580494604, + "motion": 0, + "parent": null, + "position": { + "#": 1514 + }, + "positionImpulse": { + "#": 1515 + }, + "positionPrev": { + "#": 1516 + }, + "region": { + "#": 1517 + }, + "render": { + "#": 1518 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.104484356945139, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1520 + }, + "vertices": { + "#": 1521 + } + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": 0.9984876837567279, + "y": 0.05497586184976669 + }, + { + "x": 0.8848515978724292, + "y": 0.46587299743879684 + }, + { + "x": 0.6103940738132589, + "y": 0.7920978946150872 + }, + { + "x": 0.17988140069150602, + "y": 0.9836883051481612 + }, + { + "x": -0.0549758618497668, + "y": 0.9984876837567281 + }, + { + "x": -0.46587299743879607, + "y": 0.8848515978724294 + }, + { + "x": -0.792097894615087, + "y": 0.6103940738132589 + }, + { + "x": -0.9846222308951885, + "y": 0.17469705901068297 + }, + { + "max": { + "#": 1509 + }, + "min": { + "#": 1510 + } + }, + { + "x": 779.1299780678748, + "y": 257.83199839149813 + }, + { + "x": 739.8633492836481, + "y": 211.5212440420677 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 759.6102504310804, + "y": 233.63052769745838 + }, + { + "x": -0.03870484708497135, + "y": -0.003488690602941154 + }, + { + "x": 759.8374239417184, + "y": 231.5383406588093 + }, + { + "endCol": 16, + "endRow": 5, + "id": "15,16,4,5", + "startCol": 15, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1519 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.22717351063792307, + "y": 2.092187038649087 + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 740.090522794286, + "y": 225.525125605542 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 740.3248964518287, + "y": 221.2683626812429 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 742.3110109880326, + "y": 217.49605428264687 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 745.6878908485097, + "y": 214.89381601282244 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 764.1309293902849, + "y": 211.5212440420677 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 768.387692314584, + "y": 211.75561769961047 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 772.1600007131798, + "y": 213.74173223581414 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 774.7622389830044, + "y": 217.11861209629154 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 779.1299780678748, + "y": 241.73592978937475 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 778.8956044103321, + "y": 245.99269271367388 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 776.9094898741282, + "y": 249.76500111226989 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 773.5326100136512, + "y": 252.3672393820943 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 755.089571471876, + "y": 255.73981135284905 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 750.8328085475769, + "y": 255.50543769530628 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 747.0605001489811, + "y": 253.5193231591026 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 744.4582618791565, + "y": 250.1424432986252 + }, + { + "angle": 0.15958110851025928, + "anglePrev": 0.1278940858220583, + "angularSpeed": 0.02820765513582343, + "angularVelocity": 0.032141550115294626, + "area": 968.997894652155, + "axes": { + "#": 1539 + }, + "bounds": { + "#": 1542 + }, + "chamfer": "", + "collisionFilter": { + "#": 1545 + }, + "constraintImpulse": { + "#": 1546 + }, + "density": 0.001, + "force": { + "#": 1547 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 632.1170940384557, + "inverseInertia": 0.0015819853780748472, + "inverseMass": 1.0319939862810268, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.968997894652155, + "motion": 0, + "parent": null, + "position": { + "#": 1548 + }, + "positionImpulse": { + "#": 1549 + }, + "positionPrev": { + "#": 1550 + }, + "region": { + "#": 1551 + }, + "render": { + "#": 1552 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3564001776048507, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1554 + }, + "vertices": { + "#": 1555 + } + }, + [ + { + "#": 1540 + }, + { + "#": 1541 + } + ], + { + "x": -0.15890465154110506, + "y": 0.9872939338001625 + }, + { + "x": -0.9872939338001625, + "y": -0.15890465154110506 + }, + { + "max": { + "#": 1543 + }, + "min": { + "#": 1544 + } + }, + { + "x": 57.81203990518811, + "y": 318.0766574392771 + }, + { + "x": 19.89536356824131, + "y": 282.8038355835987 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.68231710352391, + "y": 299.7840585292577 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.27085003192457, + "y": 298.6494665694403 + }, + { + "endCol": 1, + "endRow": 6, + "id": "0,1,5,6", + "startCol": 0, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1553 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.39976852292547704, + "y": 1.1494785380115786 + }, + [ + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 24.507416452353315, + "y": 282.8038355835987 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 57.46927063880651, + "y": 288.1090357619148 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 52.85721775469451, + "y": 316.76428147491674 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 19.89536356824131, + "y": 311.45908129660063 + }, + { + "angle": 0.06584903828031399, + "anglePrev": 0.049617786304257214, + "angularSpeed": 0.014360769130394729, + "angularVelocity": 0.016151287105841558, + "area": 2799.2142076873033, + "axes": { + "#": 1561 + }, + "bounds": { + "#": 1570 + }, + "collisionFilter": { + "#": 1573 + }, + "constraintImpulse": { + "#": 1574 + }, + "density": 0.001, + "force": { + "#": 1575 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 5133.714051104223, + "inverseInertia": 0.00019479074799363, + "inverseMass": 0.3572431138902353, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.7992142076873034, + "motion": 0, + "parent": null, + "position": { + "#": 1576 + }, + "positionImpulse": { + "#": 1577 + }, + "positionPrev": { + "#": 1578 + }, + "region": { + "#": 1579 + }, + "render": { + "#": 1580 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1458048272425603, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1582 + }, + "vertices": { + "#": 1583 + } + }, + [ + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + } + ], + { + "x": -0.9608734654251465, + "y": -0.2769876954701593 + }, + { + "x": -0.758182535888392, + "y": -0.6520423623307364 + }, + { + "x": -0.4176922215578239, + "y": -0.9085885801891248 + }, + { + "x": 0.055099333085811567, + "y": -0.9984808778807428 + }, + { + "x": 0.2769876954701593, + "y": -0.9608734654251465 + }, + { + "x": 0.6520423623307364, + "y": -0.758182535888392 + }, + { + "x": 0.9085885801891248, + "y": -0.4176922215578239 + }, + { + "x": 0.9984808778807428, + "y": 0.055099333085811567 + }, + { + "max": { + "#": 1571 + }, + "min": { + "#": 1572 + } + }, + { + "x": 108.41174412248068, + "y": 350.5704023855875 + }, + { + "x": 52.58477080696941, + "y": 292.68315986598117 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80.45630998139087, + "y": 320.5546990404027 + }, + { + "x": 0.20069271675651415, + "y": 0.42449363256991424 + }, + { + "x": 80.37202729012043, + "y": 318.4949573985993 + }, + { + "endCol": 2, + "endRow": 7, + "id": "1,2,6,7", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1581 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0770541193914056, + "y": 2.0591503516468492 + }, + [ + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 106.29874166229851, + "y": 339.3168312970951 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 105.11788488084254, + "y": 343.4132369003927 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 102.33809120066522, + "y": 346.6455284560359 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 98.46458705583798, + "y": 348.4262382148242 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 61.694177724698406, + "y": 346.39713072131036 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 57.59777212140097, + "y": 345.2162739398542 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 54.36548056575763, + "y": 342.43648025967696 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 52.58477080696941, + "y": 338.56297611484973 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 54.61387830048324, + "y": 301.79256678371024 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 55.79473508193922, + "y": 297.6961611804127 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 58.574528762116564, + "y": 294.4638696247695 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 62.44803290694377, + "y": 292.68315986598117 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 99.21844223808334, + "y": 294.712267359495 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 103.31484784138078, + "y": 295.89312414095116 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 106.54713939702411, + "y": 298.6729178211284 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 108.32784915581234, + "y": 302.54642196595563 + }, + { + "angle": 0.018262964042722426, + "anglePrev": 0.013774286434892894, + "angularSpeed": 0.004821041429342834, + "angularVelocity": 0.004395686964636035, + "area": 1295.0356940051904, + "axes": { + "#": 1601 + }, + "bounds": { + "#": 1604 + }, + "chamfer": "", + "collisionFilter": { + "#": 1607 + }, + "constraintImpulse": { + "#": 1608 + }, + "density": 0.001, + "force": { + "#": 1609 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1143.53929922107, + "inverseInertia": 0.0008744780355875458, + "inverseMass": 0.7721794886651149, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2950356940051904, + "motion": 0, + "parent": null, + "position": { + "#": 1610 + }, + "positionImpulse": { + "#": 1611 + }, + "positionPrev": { + "#": 1612 + }, + "region": { + "#": 1613 + }, + "render": { + "#": 1614 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6572929034466486, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1616 + }, + "vertices": { + "#": 1617 + } + }, + [ + { + "#": 1602 + }, + { + "#": 1603 + } + ], + { + "x": -0.01826194883409662, + "y": 0.9998332367073925 + }, + { + "x": -0.9998332367073925, + "y": -0.01826194883409662 + }, + { + "max": { + "#": 1605 + }, + "min": { + "#": 1606 + } + }, + { + "x": 148.23141130866634, + "y": 328.9084592695698 + }, + { + "x": 107.30358789184996, + "y": 293.1930693650876 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.61107766739481, + "y": 309.73135779445704 + }, + { + "x": 0.38935150307684013, + "y": 0.00474301962691054 + }, + { + "x": 127.25048448688213, + "y": 307.1307914150367 + }, + { + "endCol": 3, + "endRow": 6, + "id": "2,3,6,6", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1615 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.34499728638775196, + "y": 2.5980424582725163 + }, + [ + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 107.89437892412828, + "y": 293.1930693650876 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 147.91856744293958, + "y": 293.9241109588476 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 147.32777641066127, + "y": 326.2696462238265 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 107.30358789184996, + "y": 325.53860463006646 + }, + { + "angle": 0.012554820909040696, + "anglePrev": 0.007889579403913573, + "angularSpeed": 0.0037540500397460776, + "angularVelocity": 0.004687790887060311, + "area": 4450.490944, + "axes": { + "#": 1623 + }, + "bounds": { + "#": 1626 + }, + "chamfer": "", + "collisionFilter": { + "#": 1629 + }, + "constraintImpulse": { + "#": 1630 + }, + "density": 0.001, + "force": { + "#": 1631 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 13204.579761750676, + "inverseInertia": 0.00007573130065802405, + "inverseMass": 0.22469431183725153, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.450490944, + "motion": 0, + "parent": null, + "position": { + "#": 1632 + }, + "positionImpulse": { + "#": 1633 + }, + "positionPrev": { + "#": 1634 + }, + "region": { + "#": 1635 + }, + "render": { + "#": 1636 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8754992242982174, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1638 + }, + "vertices": { + "#": 1639 + } + }, + [ + { + "#": 1624 + }, + { + "#": 1625 + } + ], + { + "x": 0.01255449108911244, + "y": -0.9999211892711815 + }, + { + "x": 0.9999211892711815, + "y": 0.01255449108911244 + }, + { + "max": { + "#": 1627 + }, + "min": { + "#": 1628 + } + }, + { + "x": 214.32842747051575, + "y": 364.37428428410885 + }, + { + "x": 146.538242097706, + "y": 293.96504157389035 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 180.31038089180393, + "y": 327.73718036798823 + }, + { + "x": 0.5389176497888702, + "y": 0.012019246696652126 + }, + { + "x": 180.028561339142, + "y": 324.8915578479201 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1637 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.28635775750851167, + "y": 2.84635694870002 + }, + [ + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 213.244984476365, + "y": 361.50931916208623 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 146.538242097706, + "y": 360.6717839525494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 147.37577730724286, + "y": 293.96504157389035 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 214.08251968590187, + "y": 294.80257678342707 + }, + { + "angle": 0.0017050151689293846, + "anglePrev": 0.0010955468913743075, + "angularSpeed": 0.0005434010949488425, + "angularVelocity": 0.000622058310605177, + "area": 5038.307216146175, + "axes": { + "#": 1645 + }, + "bounds": { + "#": 1658 + }, + "collisionFilter": { + "#": 1661 + }, + "constraintImpulse": { + "#": 1662 + }, + "density": 0.001, + "force": { + "#": 1663 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 16255.679819965306, + "inverseInertia": 0.00006151695967656764, + "inverseMass": 0.1984793616386308, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.038307216146175, + "motion": 0, + "parent": null, + "position": { + "#": 1664 + }, + "positionImpulse": { + "#": 1665 + }, + "positionPrev": { + "#": 1666 + }, + "region": { + "#": 1667 + }, + "render": { + "#": 1668 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.018397044701351, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1670 + }, + "vertices": { + "#": 1671 + } + }, + [ + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + } + ], + { + "x": -0.9895190316594443, + "y": -0.1444025137722861 + }, + { + "x": -0.9084157909848686, + "y": -0.4180678780883982 + }, + { + "x": -0.7533034913395033, + "y": -0.6576730570243203 + }, + { + "x": -0.502943802179659, + "y": -0.8643191145919824 + }, + { + "x": -0.3697099735940579, + "y": -0.9291472086946617 + }, + { + "x": -0.0921476817101254, + "y": -0.9957453513602005 + }, + { + "x": 0.19292244744964482, + "y": -0.98121400788515 + }, + { + "x": 0.49707784688045903, + "y": -0.86770594912141 + }, + { + "x": 0.6198253606814561, + "y": -0.7847397799628252 + }, + { + "x": 0.8162723649303525, + "y": -0.5776672279530917 + }, + { + "x": 0.9462172781853646, + "y": -0.3235318569530379 + }, + { + "x": 0.9999942651700101, + "y": -0.0033866837896917917 + }, + { + "max": { + "#": 1659 + }, + "min": { + "#": 1660 + } + }, + { + "x": 290.1977988757861, + "y": 383.5302685885776 + }, + { + "x": 213.310815081518, + "y": 295.1039037139614 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 251.62137164036267, + "y": 337.8137537277186 + }, + { + "x": 0.6359921413269229, + "y": 0.03234351978727584 + }, + { + "x": 251.30951192387036, + "y": 334.78658642656546 + }, + { + "endCol": 6, + "endRow": 7, + "id": "4,6,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1669 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3152180871426822, + "y": 3.0275771403657927 + }, + [ + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 289.9319281992074, + "y": 354.2401047505796 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 289.5197596428209, + "y": 357.06449208388653 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 288.32646716278106, + "y": 359.65738617823354 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 286.44926885503185, + "y": 361.80754274016147 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 256.550911604515, + "y": 379.20527607803785 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 253.89875145395607, + "y": 380.260577164943 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 251.05649339595476, + "y": 380.5236037414758 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 248.25571364164733, + "y": 379.9729254178622 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 218.24014461923267, + "y": 362.7780745151332 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 216.0002593582567, + "y": 361.00890500796834 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 214.35142194402215, + "y": 358.6790161889817 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 213.4279639311257, + "y": 355.97822518895293 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 213.310815081518, + "y": 321.38740270485766 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 213.72298363790452, + "y": 318.5630153715507 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 214.91627611794428, + "y": 315.9701212772037 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 216.7934744256935, + "y": 313.81996471527566 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 246.69183167621034, + "y": 296.4222313773994 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 249.34399182676927, + "y": 295.3669302904942 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 252.18624988477058, + "y": 295.1039037139614 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 254.98702963907795, + "y": 295.65458203757504 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 285.00259866149275, + "y": 312.84943294030404 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 287.24248392246875, + "y": 314.6186024474689 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 288.8913213367034, + "y": 316.94849126645556 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 289.81477934959975, + "y": 319.6492822664843 + }, + { + "angle": -0.006106052329019446, + "anglePrev": -0.0036754909854364573, + "angularSpeed": 0.0020152426071325166, + "angularVelocity": -0.002441958259029212, + "area": 2586.1538465710973, + "axes": { + "#": 1697 + }, + "bounds": { + "#": 1718 + }, + "collisionFilter": { + "#": 1721 + }, + "constraintImpulse": { + "#": 1722 + }, + "density": 0.001, + "force": { + "#": 1723 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 4301.698960136058, + "inverseInertia": 0.00023246629047430392, + "inverseMass": 0.38667459839091534, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.5861538465710976, + "motion": 0, + "parent": null, + "position": { + "#": 1724 + }, + "positionImpulse": { + "#": 1725 + }, + "positionPrev": { + "#": 1726 + }, + "region": { + "#": 1727 + }, + "render": { + "#": 1728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.975681106945499, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1730 + }, + "vertices": { + "#": 1731 + } + }, + [ + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + } + ], + { + "x": 0.9862964874568478, + "y": 0.164982540986264 + }, + { + "x": 0.8730211473842022, + "y": 0.48768235176185243 + }, + { + "x": 0.6576316049924753, + "y": 0.7533396791056615 + }, + { + "x": 0.3237153511217718, + "y": 0.9461545177443843 + }, + { + "x": 0.14787627226222946, + "y": 0.9890058685881631 + }, + { + "x": -0.19403868180650802, + "y": 0.9809938786571467 + }, + { + "x": -0.5132569258703563, + "y": 0.8582350074694646 + }, + { + "x": -0.7998267838387126, + "y": 0.6002308854551065 + }, + { + "x": -0.8949086706452952, + "y": 0.44624933748283674 + }, + { + "x": -0.9929418756842824, + "y": 0.11860198781040499 + }, + { + "x": -0.9748373271624359, + "y": -0.22291744115433929 + }, + { + "x": -0.818032099610239, + "y": -0.5751725688932534 + }, + { + "x": -0.7009621007660554, + "y": -0.7131985230562656 + }, + { + "x": -0.4196390225073005, + "y": -0.9076910767376296 + }, + { + "x": -0.0892307561205365, + "y": -0.9960109799405615 + }, + { + "x": 0.2942580360657618, + "y": -0.9557260110568934 + }, + { + "x": 0.46169388796921235, + "y": -0.8870393192028594 + }, + { + "x": 0.7335947540493056, + "y": -0.6795871811852684 + }, + { + "x": 0.9196896309392628, + "y": -0.39264612915805297 + }, + { + "x": 0.9998800730557292, + "y": -0.015486752599230796 + }, + { + "max": { + "#": 1719 + }, + "min": { + "#": 1720 + } + }, + { + "x": 347.94146806082745, + "y": 357.9185961944406 + }, + { + "x": 289.5043488363375, + "y": 294.9245879974182 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320.5546266570209, + "y": 324.8844987290263 + }, + { + "x": 0.7052534099944348, + "y": 0.0121049196666078 + }, + { + "x": 320.23321720701045, + "y": 321.9100113010646 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1729 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.31930915237632007, + "y": 2.9750490976442734 + }, + [ + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 347.67165043354356, + "y": 337.1006356054259 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 347.10740418438894, + "y": 340.4738052164346 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 345.4395129268321, + "y": 343.45956907301854 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 342.86306401451924, + "y": 345.70869291499764 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 317.3156767020278, + "y": 354.4494232069406 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 313.933189475736, + "y": 354.9551730896108 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 310.5781039610616, + "y": 354.2915436982566 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 307.6428646039221, + "y": 352.53615978123236 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 291.4361345472094, + "y": 330.94017548266663 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 289.9099664122795, + "y": 327.87959705242116 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 289.5043488363375, + "y": 324.48374607132007 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 290.2667241875903, + "y": 321.14981245956955 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 305.796823790038, + "y": 299.06231964086356 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 308.2360255892059, + "y": 296.6649674842576 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 311.3404090615375, + "y": 295.2297650467728 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.74685438597703, + "y": 294.9245879974182 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 340.55271520987725, + "y": 302.86994245798144 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 343.5864217204013, + "y": 304.4489522306938 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 345.9106344259703, + "y": 306.9578727861499 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 347.25349836962187, + "y": 310.10324454210445 + }, + { + "angle": -0.004298329655376176, + "anglePrev": -0.0034101029622488647, + "angularSpeed": 0.0008463519012864666, + "angularVelocity": -0.0008736788442288246, + "area": 1290.9794889800137, + "axes": { + "#": 1753 + }, + "bounds": { + "#": 1756 + }, + "chamfer": "", + "collisionFilter": { + "#": 1759 + }, + "constraintImpulse": { + "#": 1760 + }, + "density": 0.001, + "force": { + "#": 1761 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1336.116554880955, + "inverseInertia": 0.0007484376990517102, + "inverseMass": 0.7746056451989699, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2909794889800137, + "motion": 0, + "parent": null, + "position": { + "#": 1762 + }, + "positionImpulse": { + "#": 1763 + }, + "positionPrev": { + "#": 1764 + }, + "region": { + "#": 1765 + }, + "render": { + "#": 1766 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8978152698733095, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1768 + }, + "vertices": { + "#": 1769 + } + }, + [ + { + "#": 1754 + }, + { + "#": 1755 + } + ], + { + "x": 0.004298316419658076, + "y": 0.99999076219531 + }, + { + "x": -0.99999076219531, + "y": 0.004298316419658076 + }, + { + "max": { + "#": 1757 + }, + "min": { + "#": 1758 + } + }, + { + "x": 396.58423386837484, + "y": 323.52159986042574 + }, + { + "x": 347.0885100576343, + "y": 294.1513299832084 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 371.7144683247781, + "y": 307.39269456695973 + }, + { + "x": 0.7456585240052256, + "y": -0.01158910526608559 + }, + { + "x": 371.4235101093062, + "y": 304.506474971602 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,6,6", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1767 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2915809216931393, + "y": 2.886982577417257 + }, + [ + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 347.0885100576343, + "y": 294.36254687148715 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 396.22750227615006, + "y": 294.1513299832084 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 396.3404265919219, + "y": 320.4228422624323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 347.2014343734062, + "y": 320.63405915071104 + }, + { + "angle": 0.00019263368985743352, + "anglePrev": 0.00033016259652100073, + "angularSpeed": 0.000058504179003173714, + "angularVelocity": -0.00013343110834199934, + "area": 3447.135803417324, + "axes": { + "#": 1775 + }, + "bounds": { + "#": 1778 + }, + "chamfer": "", + "collisionFilter": { + "#": 1781 + }, + "constraintImpulse": { + "#": 1782 + }, + "density": 0.001, + "force": { + "#": 1783 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 17066.17470089766, + "inverseInertia": 0.000058595439079116026, + "inverseMass": 0.29009591064229273, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.447135803417324, + "motion": 0, + "parent": null, + "position": { + "#": 1784 + }, + "positionImpulse": { + "#": 1785 + }, + "positionPrev": { + "#": 1786 + }, + "region": { + "#": 1787 + }, + "render": { + "#": 1788 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8722568554236947, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1790 + }, + "vertices": { + "#": 1791 + } + }, + [ + { + "#": 1776 + }, + { + "#": 1777 + } + ], + { + "x": -0.0001926336886660668, + "y": 0.9999999814461309 + }, + { + "x": -0.9999999814461309, + "y": -0.0001926336886660668 + }, + { + "max": { + "#": 1779 + }, + "min": { + "#": 1780 + } + }, + { + "x": 514.789458520434, + "y": 316.1677911766381 + }, + { + "x": 396.2049321320729, + "y": 284.1533337393869 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.3768896451177, + "y": 298.72948195574554 + }, + { + "x": 0.7626384435181044, + "y": -0.0017286239092136968 + }, + { + "x": 455.0836455524498, + "y": 295.873659760044 + }, + { + "endCol": 10, + "endRow": 6, + "id": "8,10,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1789 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2930108842870709, + "y": 2.855536452915203 + }, + [ + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.21054345530507, + "y": 284.1533337393869 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 514.5488471581626, + "y": 284.1761296837627 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 514.5432358349302, + "y": 313.3056301721042 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.2049321320729, + "y": 313.28283422772836 + }, + { + "angle": 0.000981710433697312, + "anglePrev": 0.0008412559032674705, + "angularSpeed": 0.00014045453042984152, + "angularVelocity": 0.00014045453042984152, + "area": 5745.916024000001, + "axes": { + "#": 1797 + }, + "bounds": { + "#": 1811 + }, + "chamfer": "", + "circleRadius": 42.97560871056241, + "collisionFilter": { + "#": 1814 + }, + "constraintImpulse": { + "#": 1815 + }, + "density": 0.001, + "force": { + "#": 1816 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 21018.753567668347, + "inverseInertia": 0.00004757656046447154, + "inverseMass": 0.17403665417717906, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.745916024000001, + "motion": 0, + "parent": null, + "position": { + "#": 1817 + }, + "positionImpulse": { + "#": 1818 + }, + "positionPrev": { + "#": 1819 + }, + "region": { + "#": 1820 + }, + "render": { + "#": 1821 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.912869487508737, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1823 + }, + "vertices": { + "#": 1824 + } + }, + [ + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + } + ], + { + "x": -0.9707136348231385, + "y": -0.24023954538845144 + }, + { + "x": -0.8849948644174698, + "y": -0.46560078388540627 + }, + { + "x": -0.7478752438928093, + "y": -0.6638393025215295 + }, + { + "x": -0.5672517732424524, + "y": -0.8235444285242259 + }, + { + "x": -0.3537041476191678, + "y": -0.9353573520088447 + }, + { + "x": -0.11957870792507132, + "y": -0.9928247240127385 + }, + { + "x": 0.12152780896423905, + "y": -0.9925880271534366 + }, + { + "x": 0.35553996481428707, + "y": -0.934661079439952 + }, + { + "x": 0.5688676431361979, + "y": -0.8224290878809354 + }, + { + "x": 0.7491771974574302, + "y": -0.662369630047929 + }, + { + "x": 0.8859073282885, + "y": -0.4638622701672686 + }, + { + "x": 0.971183454796298, + "y": -0.2383331641419772 + }, + { + "x": 0.9999995181223508, + "y": 0.0009817102760092014 + }, + { + "max": { + "#": 1812 + }, + "min": { + "#": 1813 + } + }, + { + "x": 555.4581517313123, + "y": 420.3208383497759 + }, + { + "x": 470.10067536657687, + "y": 331.4561038463223 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.7910870299469, + "y": 374.43208313714854 + }, + { + "x": -0.7544234401255503, + "y": 1.1785681167848747 + }, + { + "x": 512.8144339919513, + "y": 371.5193072153474 + }, + { + "endCol": 11, + "endRow": 8, + "id": "9,11,6,8", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1822 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.023346962004422947, + "y": 2.9127759218011566 + }, + [ + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 555.4479812128528, + "y": 379.6539623648174 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 552.9591073837611, + "y": 389.71052385783594 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 548.13510349393, + "y": 398.8797925021114 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 541.2574936412392, + "y": 406.6280444155541 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 532.7257203847535, + "y": 412.5046715178908 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.0351182491481, + "y": 416.16915992002856 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 512.7488970491252, + "y": 417.40806242797476 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 502.4651281613711, + "y": 416.14896613965124 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 492.7817396328743, + "y": 412.46545808262596 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 484.2615211063375, + "y": 406.5720908566626 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 477.3991375800274, + "y": 398.81035024402763 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 472.59314611034034, + "y": 389.6316277297941 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 470.1240223285813, + "y": 379.57019891722723 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 470.1341928470408, + "y": 369.2102039094797 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 472.6230666761325, + "y": 359.15364241646114 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 477.4470705659638, + "y": 349.9843737721857 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 484.3246804186548, + "y": 342.236121858743 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 492.8564536751402, + "y": 336.35949475640626 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 502.54705581074535, + "y": 332.6950063542685 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 512.8332770107686, + "y": 331.4561038463223 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 523.1170458985224, + "y": 332.71520013464584 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 532.8004344270196, + "y": 336.3987081916711 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 541.3206529535564, + "y": 342.29207541763446 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 548.1830364798665, + "y": 350.05381603026945 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 552.9890279495534, + "y": 359.232538544503 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 555.4581517313123, + "y": 369.29396735706985 + }, + { + "angle": -0.004711849320799181, + "anglePrev": -0.004134549973085742, + "angularSpeed": 0.0005772993477134395, + "angularVelocity": -0.0005772993477134395, + "area": 5746.742950000001, + "axes": { + "#": 1852 + }, + "bounds": { + "#": 1866 + }, + "chamfer": "", + "circleRadius": 42.97860939643347, + "collisionFilter": { + "#": 1869 + }, + "constraintImpulse": { + "#": 1870 + }, + "density": 0.001, + "force": { + "#": 1871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 21024.80384916412, + "inverseInertia": 0.000047562869417198245, + "inverseMass": 0.1740116112205784, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.746742950000001, + "motion": 0, + "parent": null, + "position": { + "#": 1872 + }, + "positionImpulse": { + "#": 1873 + }, + "positionPrev": { + "#": 1874 + }, + "region": { + "#": 1875 + }, + "render": { + "#": 1876 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8861060110217003, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1878 + }, + "vertices": { + "#": 1879 + } + }, + [ + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + } + ], + { + "x": -0.9720711324095257, + "y": -0.23468641532066067 + }, + { + "x": -0.8876520871429369, + "y": -0.46051468184064226 + }, + { + "x": -0.7515950581374347, + "y": -0.6596247937906716 + }, + { + "x": -0.5719516356702181, + "y": -0.8202873438339527 + }, + { + "x": -0.35899195477389934, + "y": -0.9333406539991785 + }, + { + "x": -0.12522944611305925, + "y": -0.9921278072033947 + }, + { + "x": 0.11587451049774738, + "y": -0.9932638611249819 + }, + { + "x": 0.3501806236836797, + "y": -0.9366821930604367 + }, + { + "x": 0.5641962131478269, + "y": -0.8256407409216502 + }, + { + "x": 0.7453456720039914, + "y": -0.6666782051521697 + }, + { + "x": 0.8832729856271012, + "y": -0.46885907569480506 + }, + { + "x": 0.969816388488489, + "y": -0.24383636443144432 + }, + { + "x": 0.9999888992585266, + "y": -0.0047118318857792205 + }, + { + "max": { + "#": 1867 + }, + "min": { + "#": 1868 + } + }, + { + "x": 648.9381275309458, + "y": 431.24480946705233 + }, + { + "x": 563.5415945001993, + "y": 342.40171801365045 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 606.2491938549125, + "y": 385.3802409148827 + }, + { + "x": -0.2611593994962574, + "y": 1.1706166550625097 + }, + { + "x": 606.2678595335924, + "y": 382.49419526394524 + }, + { + "endCol": 13, + "endRow": 8, + "id": "11,13,7,8", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1877 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01866567867989602, + "y": 2.886045650937457 + }, + [ + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 648.9381275309458, + "y": 390.35915310563496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 646.506556078455, + "y": 400.4307220634208 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 641.7348405860771, + "y": 409.6283076846478 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 634.900457115546, + "y": 417.41559659528474 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 626.401285614048, + "y": 423.3417090468105 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 616.73070442838, + "y": 427.0613164899958 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 606.4517036775316, + "y": 428.3587638161149 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 596.1609327706321, + "y": 427.1582388718862 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 586.4557290442671, + "y": 423.52992788331983 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 577.90108985781, + "y": 417.6841710127743 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 570.9936258747304, + "y": 409.9616320959115 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 566.1354482672484, + "y": 400.80942141574457 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 563.6090747572159, + "y": 390.76121372044867 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 563.5602601788792, + "y": 380.4013287241304 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 565.99183163137, + "y": 370.3297597663446 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 570.7635471237479, + "y": 361.1321741451176 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 577.597930594279, + "y": 353.3448852344806 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 586.097102095777, + "y": 347.4187727829549 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 595.767683281445, + "y": 343.69916533976965 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 606.0466840322935, + "y": 342.40171801365045 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 616.3374549391929, + "y": 343.6022429578791 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 626.042658665558, + "y": 347.2305539464455 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 634.597297852015, + "y": 353.07631081699105 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 641.5047618350947, + "y": 360.79884973385384 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 646.3629394425766, + "y": 369.9510604140208 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 648.8893129526091, + "y": 379.9992681093167 + }, + { + "angle": -0.010089721503005324, + "anglePrev": -0.0087632861508566, + "angularSpeed": 0.001326435352148724, + "angularVelocity": -0.001326435352148724, + "area": 3203.0307430000003, + "axes": { + "#": 1907 + }, + "bounds": { + "#": 1913 + }, + "chamfer": "", + "collisionFilter": { + "#": 1916 + }, + "constraintImpulse": { + "#": 1917 + }, + "density": 0.001, + "force": { + "#": 1918 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 6642.19697105125, + "inverseInertia": 0.00015055259643131775, + "inverseMass": 0.3122043090549256, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.2030307430000002, + "motion": 0, + "parent": null, + "position": { + "#": 1919 + }, + "positionImpulse": { + "#": 1920 + }, + "positionPrev": { + "#": 1921 + }, + "region": { + "#": 1922 + }, + "render": { + "#": 1923 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8113555110147264, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1925 + }, + "vertices": { + "#": 1926 + } + }, + [ + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + } + ], + { + "x": 0.3185885431485544, + "y": 0.9478931058798148 + }, + { + "x": -0.8030500190333638, + "y": 0.5959116267791005 + }, + { + "x": -0.8149108682127734, + "y": -0.5795862980339542 + }, + { + "x": 0.29939702239195654, + "y": -0.9541286197273562 + }, + { + "x": 0.999949099191817, + "y": -0.010089550310764783 + }, + { + "max": { + "#": 1914 + }, + "min": { + "#": 1915 + } + }, + { + "x": 689.2877681475969, + "y": 365.06579859122684 + }, + { + "x": 622.5644002898471, + "y": 292.4462315210224 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 659.3779359551955, + "y": 327.2370157341429 + }, + { + "x": -0.5865870628561365, + "y": 1.3250539038435463 + }, + { + "x": 659.4900115155019, + "y": 324.4278950749161 + }, + { + "endCol": 14, + "endRow": 7, + "id": "12,14,6,7", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1924 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.11207556030637875, + "y": 2.809120659226813 + }, + [ + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 689.2877681475969, + "y": 348.51032180592296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 648.3883808874551, + "y": 362.256677932 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 622.6764758501535, + "y": 327.6073358119425 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 647.6839890220593, + "y": 292.4462315210224 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 688.852424230788, + "y": 305.3645180739944 + }, + { + "angle": -0.06018949835712188, + "anglePrev": -0.05269740365034768, + "angularSpeed": 0.007492094706774199, + "angularVelocity": -0.007492094706774199, + "area": 5067.6702751239845, + "axes": { + "#": 1933 + }, + "bounds": { + "#": 1962 + }, + "collisionFilter": { + "#": 1965 + }, + "constraintImpulse": { + "#": 1966 + }, + "density": 0.001, + "force": { + "#": 1967 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 16399.583595559714, + "inverseInertia": 0.00006097715799752111, + "inverseMass": 0.19732933393649693, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.067670275123985, + "motion": 0, + "parent": null, + "position": { + "#": 1968 + }, + "positionImpulse": { + "#": 1969 + }, + "positionPrev": { + "#": 1970 + }, + "region": { + "#": 1971 + }, + "render": { + "#": 1972 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.4114774921359547, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1974 + }, + "vertices": { + "#": 1975 + } + }, + [ + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + } + ], + { + "x": 0.9980436439212638, + "y": 0.06252107507365287 + }, + { + "x": 0.9529221869246461, + "y": 0.3032149496095965 + }, + { + "x": 0.8506544751122969, + "y": 0.5257251791301449 + }, + { + "x": 0.6726256168717561, + "y": 0.7399829589442511 + }, + { + "x": 0.5733753916268138, + "y": 0.8192927805594269 + }, + { + "x": 0.357076022710128, + "y": 0.934075325659294 + }, + { + "x": 0.11936621491131011, + "y": 0.9928502942225212 + }, + { + "x": -0.15911321280475663, + "y": 0.9872603433294322 + }, + { + "x": -0.283022189667727, + "y": 0.9591133614728163 + }, + { + "x": -0.5076396451509602, + "y": 0.8615694926533827 + }, + { + "x": -0.7018150640372354, + "y": 0.712359190219661 + }, + { + "x": -0.8710862921270316, + "y": 0.4911299946738949 + }, + { + "x": -0.9263310867557532, + "y": 0.3767103897026274 + }, + { + "x": -0.990111698246409, + "y": 0.14028123536528977 + }, + { + "x": -0.9945185672519937, + "y": -0.10456012333122729 + }, + { + "x": -0.9270930005833019, + "y": -0.37483138645189484 + }, + { + "x": -0.8720789627358655, + "y": -0.48936518343006075 + }, + { + "x": -0.7269949830038762, + "y": -0.6866427707965718 + }, + { + "x": -0.5383147079671241, + "y": -0.8427438965583022 + }, + { + "x": -0.2849590334258692, + "y": -0.9585396962405858 + }, + { + "x": -0.16112549540627266, + "y": -0.9869339262230696 + }, + { + "x": 0.08355568569145093, + "y": -0.9965031095729867 + }, + { + "x": 0.32322683030401606, + "y": -0.9463215183919357 + }, + { + "x": 0.5717029859236538, + "y": -0.8204606607790396 + }, + { + "x": 0.671131692862604, + "y": -0.7413381487792027 + }, + { + "x": 0.831185795106448, + "y": -0.5559947607786085 + }, + { + "x": 0.941394111515813, + "y": -0.3373086521323659 + }, + { + "x": 0.9979150519485, + "y": -0.06454106518041425 + }, + { + "max": { + "#": 1963 + }, + "min": { + "#": 1964 + } + }, + { + "x": 776.7342850187239, + "y": 374.93456910874585 + }, + { + "x": 694.9015464826712, + "y": 290.06168157450946 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 737.0476101666052, + "y": 331.71941861452285 + }, + { + "x": -0.2000294901522784, + "y": -0.001464698811098709 + }, + { + "x": 737.1555083565775, + "y": 329.31035620859 + }, + { + "endCol": 16, + "endRow": 7, + "id": "14,16,6,7", + "startCol": 14, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1973 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.1078981899722703, + "y": 2.4090624059328603 + }, + [ + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 776.7342850187239, + "y": 343.279865465175 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 776.5811792322979, + "y": 345.7239414317165 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 775.8386462022545, + "y": 348.05752095925686 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 774.5512152535742, + "y": 350.1406604803749 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 752.7528291943911, + "y": 369.9548368646332 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 750.746641470976, + "y": 371.3588510325653 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 748.4593877619866, + "y": 372.2332167661409 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 746.0282128282859, + "y": 372.525506702813 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 716.9461603830091, + "y": 367.8384564928154 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 714.5974523824552, + "y": 367.1453825477439 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 712.4876129810725, + "y": 365.90225807063985 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 710.7431646222594, + "y": 364.18363051103404 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 696.2754590106813, + "y": 338.5231736595993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 695.3529667854182, + "y": 336.2547646936921 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 695.0094446726434, + "y": 333.83016911910374 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 695.2654925637617, + "y": 331.3947819589723 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 706.3072687975097, + "y": 304.08449303889427 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 707.5056421782637, + "y": 301.94891770528926 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 709.1871153326109, + "y": 300.1686287409882 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 711.2508540018594, + "y": 298.85038617216765 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 739.4869655333247, + "y": 290.4562267218406 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 741.9036531614747, + "y": 290.06168157450946 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 744.343772679439, + "y": 290.26628290242706 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 746.6610134237123, + "y": 291.05776271797174 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 770.8300107684245, + "y": 307.89889674093985 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 772.6454491648784, + "y": 309.5424088768069 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 774.0070062877744, + "y": 311.5778721933897 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 774.8330302547664, + "y": 313.88322099953956 + }, + { + "angle": 0.017099771588343735, + "anglePrev": 0.01535272267454948, + "angularSpeed": 0.0016780367157996931, + "angularVelocity": 0.0017466536836349307, + "area": 4184.019856, + "axes": { + "#": 2005 + }, + "bounds": { + "#": 2008 + }, + "chamfer": "", + "collisionFilter": { + "#": 2011 + }, + "constraintImpulse": { + "#": 2012 + }, + "density": 0.001, + "force": { + "#": 2013 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 11670.68143693484, + "inverseInertia": 0.00008568479958978622, + "inverseMass": 0.23900460189403078, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.184019856, + "motion": 0, + "parent": null, + "position": { + "#": 2014 + }, + "positionImpulse": { + "#": 2015 + }, + "positionPrev": { + "#": 2016 + }, + "region": { + "#": 2017 + }, + "render": { + "#": 2018 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7312002435428306, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2020 + }, + "vertices": { + "#": 2021 + } + }, + [ + { + "#": 2006 + }, + { + "#": 2007 + } + ], + { + "x": 0.017098938265421575, + "y": -0.9998538024682382 + }, + { + "x": 0.9998538024682382, + "y": 0.017098938265421575 + }, + { + "max": { + "#": 2009 + }, + "min": { + "#": 2010 + } + }, + { + "x": 897.5846757517255, + "y": 360.7586890056094 + }, + { + "x": 831.7793007093056, + "y": 292.2470303139274 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 864.6695862501136, + "y": 325.13731585473533 + }, + { + "x": 0.04079737382511412, + "y": -0.00017533012787191495 + }, + { + "x": 864.6448842210569, + "y": 322.4002678251702 + }, + { + "endCol": 18, + "endRow": 7, + "id": "17,18,6,7", + "startCol": 17, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2019 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02470261281587227, + "y": 2.7370138944757514 + }, + [ + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 896.4538440681612, + "y": 358.0276013955433 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 831.7793007093056, + "y": 356.92157367278276 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 832.8853284320661, + "y": 292.2470303139274 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 897.5598717909216, + "y": 293.3530580366879 + }, + { + "angle": 0.015638326813957878, + "anglePrev": 0.013913984131271427, + "angularSpeed": 0.0013605910014668108, + "angularVelocity": 0.0017222594910319255, + "area": 1443.6911839874222, + "axes": { + "#": 2027 + }, + "bounds": { + "#": 2036 + }, + "collisionFilter": { + "#": 2039 + }, + "constraintImpulse": { + "#": 2040 + }, + "density": 0.001, + "force": { + "#": 2041 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1352.2644248067172, + "inverseInertia": 0.0007395003385842475, + "inverseMass": 0.6926689108386993, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4436911839874222, + "motion": 0, + "parent": null, + "position": { + "#": 2042 + }, + "positionImpulse": { + "#": 2043 + }, + "positionPrev": { + "#": 2044 + }, + "region": { + "#": 2045 + }, + "render": { + "#": 2046 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.845643655830218, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2048 + }, + "vertices": { + "#": 2049 + } + }, + [ + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + } + ], + { + "x": -0.9735643895134513, + "y": -0.22841273929293343 + }, + { + "x": -0.7899527597464991, + "y": -0.6131677073761223 + }, + { + "x": -0.46276751919768805, + "y": -0.8864796800692152 + }, + { + "x": -0.002148251079612923, + "y": -0.9999976925059869 + }, + { + "x": 0.22841273929293343, + "y": -0.9735643895134513 + }, + { + "x": 0.6131677073761223, + "y": -0.7899527597464991 + }, + { + "x": 0.8864796800692152, + "y": -0.46276751919768805 + }, + { + "x": 0.9999976925059869, + "y": -0.002148251079612923 + }, + { + "max": { + "#": 2037 + }, + "min": { + "#": 2038 + } + }, + { + "x": 936.4891045793055, + "y": 335.8853247438556 + }, + { + "x": 897.3362785114474, + "y": 293.9344826466111 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 916.8890737644316, + "y": 313.48727789959526 + }, + { + "x": 0.040105644362954586, + "y": 0.0002652020216612492 + }, + { + "x": 916.8415427900193, + "y": 310.6593004413266 + }, + { + "endCol": 19, + "endRow": 6, + "id": "18,19,6,6", + "startCol": 18, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2047 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04752928259631517, + "y": 2.8280763865529366 + }, + [ + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 936.4418690174158, + "y": 323.50126291031285 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 935.4680974868534, + "y": 327.6517725912199 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 932.8540346340037, + "y": 331.01950729074576 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 929.0747853787044, + "y": 332.99238252029187 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 906.8750887537137, + "y": 333.0400731525794 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 902.7245790728069, + "y": 332.0663016220168 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 899.3568443732813, + "y": 329.4522387691674 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 897.383969143735, + "y": 325.67298951386795 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 897.3362785114474, + "y": 303.47329288887767 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 898.3100500420098, + "y": 299.3227832079706 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 900.9241128948595, + "y": 295.95504850844475 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 904.7033621501588, + "y": 293.98217327889864 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 926.9030587751495, + "y": 293.9344826466111 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 931.0535684560563, + "y": 294.9082541771737 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 934.4213031555819, + "y": 297.5223170300231 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 936.3941783851282, + "y": 301.30156628532256 + }, + { + "angle": 0.0035407352079389, + "anglePrev": 0.003121647238092832, + "angularSpeed": 0.00041908796984606826, + "angularVelocity": 0.00041908796984606826, + "area": 1357.5262341709852, + "axes": { + "#": 2067 + }, + "bounds": { + "#": 2070 + }, + "chamfer": "", + "collisionFilter": { + "#": 2073 + }, + "constraintImpulse": { + "#": 2074 + }, + "density": 0.001, + "force": { + "#": 2075 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 1286.9750720555298, + "inverseInertia": 0.0007770158270453683, + "inverseMass": 0.7366340147457117, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3575262341709853, + "motion": 0, + "parent": null, + "position": { + "#": 2076 + }, + "positionImpulse": { + "#": 2077 + }, + "positionPrev": { + "#": 2078 + }, + "region": { + "#": 2079 + }, + "render": { + "#": 2080 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.910796581230487, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2082 + }, + "vertices": { + "#": 2083 + } + }, + [ + { + "#": 2068 + }, + { + "#": 2069 + } + ], + { + "x": -0.003540727809691915, + "y": 0.9999937316036424 + }, + { + "x": -0.9999937316036424, + "y": -0.003540727809691915 + }, + { + "max": { + "#": 2071 + }, + "min": { + "#": 2072 + } + }, + { + "x": 979.3736445649986, + "y": 340.4274292084647 + }, + { + "x": 947.5791152838577, + "y": 294.4457912348574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 963.455128120871, + "y": 315.98136709930264 + }, + { + "x": 0.49058442415388015, + "y": 0 + }, + { + "x": 963.4126245137567, + "y": 313.0708808545859 + }, + { + "endCol": 20, + "endRow": 7, + "id": "19,20,6,7", + "startCol": 19, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2081 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04250360711434155, + "y": 2.9104862447167412 + }, + [ + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 947.7312232991939, + "y": 294.4457912348574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 979.3311409578843, + "y": 294.5576786434501 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 979.1790329425481, + "y": 337.5169429637479 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 947.5791152838577, + "y": 337.4050555551552 + }, + [], + [], + [ + { + "#": 2091 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2092 + }, + "pointB": "", + "render": { + "#": 2093 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/mixedSolid/mixedSolid-0.json b/tests/browser/refs/mixedSolid/mixedSolid-0.json new file mode 100644 index 00000000..65b8e4e9 --- /dev/null +++ b/tests/browser/refs/mixedSolid/mixedSolid-0.json @@ -0,0 +1,8705 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 986 + }, + "gravity": { + "#": 990 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 984 + }, + "constraints": { + "#": 985 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 200 + }, + { + "#": 225 + }, + { + "#": 279 + }, + { + "#": 300 + }, + { + "#": 321 + }, + { + "#": 342 + }, + { + "#": 363 + }, + { + "#": 384 + }, + { + "#": 413 + }, + { + "#": 434 + }, + { + "#": 459 + }, + { + "#": 480 + }, + { + "#": 501 + }, + { + "#": 555 + }, + { + "#": 576 + }, + { + "#": 597 + }, + { + "#": 651 + }, + { + "#": 672 + }, + { + "#": 693 + }, + { + "#": 714 + }, + { + "#": 738 + }, + { + "#": 762 + }, + { + "#": 783 + }, + { + "#": 807 + }, + { + "#": 828 + }, + { + "#": 852 + }, + { + "#": 873 + }, + { + "#": 894 + }, + { + "#": 915 + }, + { + "#": 942 + }, + { + "#": 963 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1534.906434764454, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 86.40316358024691, + "y": 92.16409465020575 + }, + { + "x": 50, + "y": 49.99999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 68.20158179012346, + "y": 71.08204732510288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 68.20158179012346, + "y": 71.08204732510288 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 50, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 86.40316358024691, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 86.40316358024691, + "y": 92.16409465020575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 50, + "y": 92.16409465020575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.52878634164, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 131.7190072016461, + "y": 99.00115740740739 + }, + { + "x": 86.40316358024691, + "y": 49.99999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 109.0610853909465, + "y": 74.5005787037037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 109.0610853909465, + "y": 74.5005787037037 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 86.40316358024691, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 131.7190072016461, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 131.7190072016461, + "y": 99.00115740740739 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 86.40316358024691, + "y": 99.00115740740739 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1140.197701571206, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 170.93981481481484, + "y": 79.07124485596708 + }, + { + "x": 131.7190072016461, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 151.32941100823047, + "y": 64.53562242798354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 151.32941100823047, + "y": 64.53562242798354 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 131.7190072016461, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 170.93981481481484, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170.93981481481484, + "y": 79.07124485596708 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 131.7190072016461, + "y": 79.07124485596708 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 752.4076041785743, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 195.81712962962968, + "y": 80.24472736625515 + }, + { + "x": 170.93981481481484, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 183.37847222222226, + "y": 65.12236368312757 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 183.37847222222226, + "y": 65.12236368312757 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170.93981481481484, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.81712962962968, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.81712962962968, + "y": 80.24472736625515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 170.93981481481484, + "y": 80.24472736625515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2027.2541820000001, + "axes": { + "#": 177 + }, + "bounds": { + "#": 181 + }, + "collisionFilter": { + "#": 184 + }, + "constraintImpulse": { + "#": 185 + }, + "density": 0.001, + "force": { + "#": 186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 187 + }, + "positionImpulse": { + "#": 188 + }, + "positionPrev": { + "#": 189 + }, + "render": { + "#": 190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 192 + }, + "vertices": { + "#": 193 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + } + ], + { + "x": -0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 182 + }, + "min": { + "#": 183 + } + }, + { + "x": 244.19912962962968, + "y": 105.868 + }, + { + "x": 195.81712962962968, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220.00812962962968, + "y": 77.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220.00812962962968, + "y": 77.934 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 191 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 244.19912962962968, + "y": 91.901 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220.00812962962968, + "y": 105.868 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.81712962962968, + "y": 91.901 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195.81712962962968, + "y": 63.967 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.00812962962968, + "y": 50 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 244.19912962962968, + "y": 63.967 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4842.27229, + "axes": { + "#": 201 + }, + "bounds": { + "#": 207 + }, + "collisionFilter": { + "#": 210 + }, + "constraintImpulse": { + "#": 211 + }, + "density": 0.001, + "force": { + "#": 212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 213 + }, + "positionImpulse": { + "#": 214 + }, + "positionPrev": { + "#": 215 + }, + "render": { + "#": 216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 218 + }, + "vertices": { + "#": 219 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 0.30902000749156683, + "y": 0.95105553726894 + }, + { + "x": -0.8090188345853124, + "y": 0.5877827194518592 + }, + { + "x": -0.8090188345853124, + "y": -0.5877827194518592 + }, + { + "x": 0.30902000749156683, + "y": -0.95105553726894 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 208 + }, + "min": { + "#": 209 + } + }, + { + "x": 321.5277437444547, + "y": 135.84 + }, + { + "x": 239.8897437444547, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285.0181296296297, + "y": 92.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285.0181296296297, + "y": 92.92 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 217 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 321.5277437444547, + "y": 119.446 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 271.07274374445467, + "y": 135.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.8897437444547, + "y": 92.92 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 271.07274374445467, + "y": 50 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.5277437444547, + "y": 66.394 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3079.0178339999993, + "axes": { + "#": 226 + }, + "bounds": { + "#": 240 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 243 + }, + "constraintImpulse": { + "#": 244 + }, + "density": 0.001, + "force": { + "#": 245 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 246 + }, + "positionImpulse": { + "#": 247 + }, + "positionPrev": { + "#": 248 + }, + "render": { + "#": 249 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 251 + }, + "vertices": { + "#": 252 + } + }, + [ + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + } + ], + { + "x": -0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": -0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": -0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": -0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": -0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": -0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": 0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": 0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": 0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": 0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 241 + }, + "min": { + "#": 242 + } + }, + { + "x": 383.98774374445475, + "y": 112.918 + }, + { + "x": 321.5277437444547, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.75774374445473, + "y": 81.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.75774374445473, + "y": 81.459 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 250 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 383.98774374445475, + "y": 85.251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 382.17274374445475, + "y": 92.61500000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 378.6477437444547, + "y": 99.33 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 373.6187437444547, + "y": 105.007 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 367.37774374445473, + "y": 109.315 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 360.2867437444547, + "y": 112.004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 352.75774374445473, + "y": 112.918 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 345.22874374445473, + "y": 112.004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.1377437444547, + "y": 109.315 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 331.89674374445474, + "y": 105.007 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 326.86774374445474, + "y": 99.33 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 323.3427437444547, + "y": 92.61500000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 321.5277437444547, + "y": 85.251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 321.5277437444547, + "y": 77.667 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 323.3427437444547, + "y": 70.303 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 326.86774374445474, + "y": 63.58800000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 331.89674374445474, + "y": 57.911 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 338.1377437444547, + "y": 53.603 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 345.22874374445473, + "y": 50.914 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 352.75774374445473, + "y": 50 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 360.2867437444547, + "y": 50.914 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 367.37774374445473, + "y": 53.603 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 373.6187437444547, + "y": 57.911 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 378.6477437444547, + "y": 63.58800000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 382.17274374445475, + "y": 70.303 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 383.98774374445475, + "y": 77.667 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1329.4167625219097, + "axes": { + "#": 280 + }, + "bounds": { + "#": 283 + }, + "collisionFilter": { + "#": 286 + }, + "constraintImpulse": { + "#": 287 + }, + "density": 0.001, + "force": { + "#": 288 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 289 + }, + "positionImpulse": { + "#": 290 + }, + "positionPrev": { + "#": 291 + }, + "render": { + "#": 292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 294 + }, + "vertices": { + "#": 295 + } + }, + [ + { + "#": 281 + }, + { + "#": 282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 284 + }, + "min": { + "#": 285 + } + }, + { + "x": 432.76539292140944, + "y": 77.25462962962963 + }, + { + "x": 383.98774374445475, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 408.3765683329321, + "y": 63.62731481481482 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 408.3765683329321, + "y": 63.62731481481482 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 293 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 383.98774374445475, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 432.76539292140944, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 432.76539292140944, + "y": 77.25462962962963 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 383.98774374445475, + "y": 77.25462962962963 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2858.632357296012, + "axes": { + "#": 301 + }, + "bounds": { + "#": 304 + }, + "collisionFilter": { + "#": 307 + }, + "constraintImpulse": { + "#": 308 + }, + "density": 0.001, + "force": { + "#": 309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 310 + }, + "positionImpulse": { + "#": 311 + }, + "positionPrev": { + "#": 312 + }, + "render": { + "#": 313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 315 + }, + "vertices": { + "#": 316 + } + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 305 + }, + "min": { + "#": 306 + } + }, + { + "x": 541.6199882574863, + "y": 76.26101680384087 + }, + { + "x": 432.76539292140944, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.19269058944786, + "y": 63.13050840192044 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.19269058944786, + "y": 63.13050840192044 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 314 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 432.76539292140944, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 541.6199882574863, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 541.6199882574863, + "y": 76.26101680384087 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 432.76539292140944, + "y": 76.26101680384087 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.8394636035856, + "axes": { + "#": 322 + }, + "bounds": { + "#": 325 + }, + "collisionFilter": { + "#": 328 + }, + "constraintImpulse": { + "#": 329 + }, + "density": 0.001, + "force": { + "#": 330 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 331 + }, + "positionImpulse": { + "#": 332 + }, + "positionPrev": { + "#": 333 + }, + "render": { + "#": 334 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 336 + }, + "vertices": { + "#": 337 + } + }, + [ + { + "#": 323 + }, + { + "#": 324 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 326 + }, + "min": { + "#": 327 + } + }, + { + "x": 580.3757752945232, + "y": 73.91486625514403 + }, + { + "x": 541.6199882574863, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560.9978817760048, + "y": 61.95743312757202 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560.9978817760048, + "y": 61.95743312757202 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 335 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 541.6199882574863, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.3757752945232, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580.3757752945232, + "y": 73.91486625514403 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 541.6199882574863, + "y": 73.91486625514403 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.4501361223834, + "axes": { + "#": 343 + }, + "bounds": { + "#": 346 + }, + "collisionFilter": { + "#": 349 + }, + "constraintImpulse": { + "#": 350 + }, + "density": 0.001, + "force": { + "#": 351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 352 + }, + "positionImpulse": { + "#": 353 + }, + "positionPrev": { + "#": 354 + }, + "render": { + "#": 355 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 357 + }, + "vertices": { + "#": 358 + } + }, + [ + { + "#": 344 + }, + { + "#": 345 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 347 + }, + "min": { + "#": 348 + } + }, + { + "x": 616.1460942245644, + "y": 86.07600308641975 + }, + { + "x": 580.3757752945232, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.2609347595438, + "y": 68.03800154320987 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.2609347595438, + "y": 68.03800154320987 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 356 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580.3757752945232, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.1460942245644, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.1460942245644, + "y": 86.07600308641975 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580.3757752945232, + "y": 86.07600308641975 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.2925932011974, + "axes": { + "#": 364 + }, + "bounds": { + "#": 367 + }, + "collisionFilter": { + "#": 370 + }, + "constraintImpulse": { + "#": 371 + }, + "density": 0.001, + "force": { + "#": 372 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 373 + }, + "positionImpulse": { + "#": 374 + }, + "positionPrev": { + "#": 375 + }, + "render": { + "#": 376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 378 + }, + "vertices": { + "#": 379 + } + }, + [ + { + "#": 365 + }, + { + "#": 366 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 368 + }, + "min": { + "#": 369 + } + }, + { + "x": 646.7010067760048, + "y": 87.58127572016463 + }, + { + "x": 616.1460942245644, + "y": 50.00000000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 631.4235505002846, + "y": 68.79063786008231 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 631.4235505002846, + "y": 68.79063786008231 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 377 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 616.1460942245644, + "y": 50.00000000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 646.7010067760048, + "y": 50.00000000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 646.7010067760048, + "y": 87.58127572016463 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 616.1460942245644, + "y": 87.58127572016463 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1926.7878890000002, + "axes": { + "#": 385 + }, + "bounds": { + "#": 393 + }, + "collisionFilter": { + "#": 396 + }, + "constraintImpulse": { + "#": 397 + }, + "density": 0.001, + "force": { + "#": 398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 399 + }, + "positionImpulse": { + "#": 400 + }, + "positionPrev": { + "#": 401 + }, + "render": { + "#": 402 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 404 + }, + "vertices": { + "#": 405 + } + }, + [ + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + } + ], + { + "x": 0.6234921001781484, + "y": 0.7818296496139309 + }, + { + "x": -0.22251820971292155, + "y": 0.9749285339685962 + }, + { + "x": -0.9009815501548849, + "y": 0.43385740316433524 + }, + { + "x": -0.9009815501548849, + "y": -0.43385740316433524 + }, + { + "x": -0.22251820971292155, + "y": -0.9749285339685962 + }, + { + "x": 0.6234921001781484, + "y": -0.7818296496139309 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 394 + }, + "min": { + "#": 395 + } + }, + { + "x": 99.1293088678909, + "y": 187.58 + }, + { + "x": 48.6863088678909, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.22149999999999, + "y": 161.71 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.22149999999999, + "y": 161.71 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 403 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 99.1293088678909, + "y": 173.223 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 81.1263088678909, + "y": 187.58 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 58.676308867890896, + "y": 182.45600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 48.6863088678909, + "y": 161.71 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 58.676308867890896, + "y": 140.964 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 81.1263088678909, + "y": 135.84 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 99.1293088678909, + "y": 150.197 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1097.755875, + "axes": { + "#": 414 + }, + "bounds": { + "#": 418 + }, + "collisionFilter": { + "#": 421 + }, + "constraintImpulse": { + "#": 422 + }, + "density": 0.001, + "force": { + "#": 423 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 927.6617490689248, + "inverseInertia": 0.0010779791243992539, + "inverseMass": 0.9109493492804126, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.097755875, + "motion": 0, + "parent": null, + "position": { + "#": 424 + }, + "positionImpulse": { + "#": 425 + }, + "positionPrev": { + "#": 426 + }, + "render": { + "#": 427 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 429 + }, + "vertices": { + "#": 430 + } + }, + [ + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "x": -0.49999466010690446, + "y": 0.8660284867512045 + }, + { + "x": -0.49999466010690446, + "y": -0.8660284867512045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 419 + }, + "min": { + "#": 420 + } + }, + { + "x": 135.4668088678909, + "y": 186.19000000000003 + }, + { + "x": 91.8618088678909, + "y": 135.84000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120.9318088678909, + "y": 161.01500000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120.9318088678909, + "y": 161.01500000000001 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 428 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 135.4668088678909, + "y": 186.19000000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 91.8618088678909, + "y": 161.01500000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 135.4668088678909, + "y": 135.84000000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 435 + }, + "bounds": { + "#": 441 + }, + "collisionFilter": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "density": 0.001, + "force": { + "#": 446 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 447 + }, + "positionImpulse": { + "#": 448 + }, + "positionPrev": { + "#": 449 + }, + "render": { + "#": 450 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 452 + }, + "vertices": { + "#": 453 + } + }, + [ + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 442 + }, + "min": { + "#": 443 + } + }, + { + "x": 170.37176614771653, + "y": 174.58599999999998 + }, + { + "x": 133.5217661477165, + "y": 135.83999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.89180886789092, + "y": 155.213 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.89180886789092, + "y": 155.213 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 451 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170.37176614771653, + "y": 167.186 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 147.59676614771652, + "y": 174.58599999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.5217661477165, + "y": 155.213 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.59676614771652, + "y": 135.83999999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 170.37176614771653, + "y": 143.24 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.454244, + "axes": { + "#": 460 + }, + "bounds": { + "#": 463 + }, + "collisionFilter": { + "#": 466 + }, + "constraintImpulse": { + "#": 467 + }, + "density": 0.001, + "force": { + "#": 468 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 469 + }, + "positionImpulse": { + "#": 470 + }, + "positionPrev": { + "#": 471 + }, + "render": { + "#": 472 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 474 + }, + "vertices": { + "#": 475 + } + }, + [ + { + "#": 461 + }, + { + "#": 462 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 464 + }, + "min": { + "#": 465 + } + }, + { + "x": 205.0337661477165, + "y": 170.50199999999998 + }, + { + "x": 170.37176614771653, + "y": 135.83999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.70276614771652, + "y": 153.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.70276614771652, + "y": 153.171 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 473 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 205.0337661477165, + "y": 170.50199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 170.37176614771653, + "y": 170.50199999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170.37176614771653, + "y": 135.83999999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 205.0337661477165, + "y": 135.83999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1990.733346252218, + "axes": { + "#": 481 + }, + "bounds": { + "#": 484 + }, + "collisionFilter": { + "#": 487 + }, + "constraintImpulse": { + "#": 488 + }, + "density": 0.001, + "force": { + "#": 489 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 490 + }, + "positionImpulse": { + "#": 491 + }, + "positionPrev": { + "#": 492 + }, + "render": { + "#": 493 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 495 + }, + "vertices": { + "#": 496 + } + }, + [ + { + "#": 482 + }, + { + "#": 483 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 485 + }, + "min": { + "#": 486 + } + }, + { + "x": 299.85749728626246, + "y": 156.83404149519893 + }, + { + "x": 205.0337661477165, + "y": 135.84000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 252.44563171698948, + "y": 146.33702074759947 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 252.44563171698948, + "y": 146.33702074759947 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 494 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 205.0337661477165, + "y": 135.84000000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 299.85749728626246, + "y": 135.84000000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 299.85749728626246, + "y": 156.83404149519893 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 205.0337661477165, + "y": 156.83404149519893 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7321.24308, + "axes": { + "#": 502 + }, + "bounds": { + "#": 516 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "density": 0.001, + "force": { + "#": 521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 522 + }, + "positionImpulse": { + "#": 523 + }, + "positionPrev": { + "#": 524 + }, + "render": { + "#": 525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 527 + }, + "vertices": { + "#": 528 + } + }, + [ + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 517 + }, + "min": { + "#": 518 + } + }, + { + "x": 396.1714972862624, + "y": 232.85999999999999 + }, + { + "x": 299.85749728626246, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.01449728626244, + "y": 184.35 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.01449728626244, + "y": 184.35 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 526 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.1714972862624, + "y": 190.197 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 393.37249728626244, + "y": 201.552 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 387.93749728626244, + "y": 211.90699999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.18249728626245, + "y": 220.661 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 370.5584972862624, + "y": 227.304 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 359.6234972862624, + "y": 231.451 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.01449728626244, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 336.40549728626246, + "y": 231.451 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 325.47049728626246, + "y": 227.304 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 315.84649728626243, + "y": 220.661 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 308.09149728626244, + "y": 211.90699999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 302.65649728626244, + "y": 201.552 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 299.85749728626246, + "y": 190.197 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 299.85749728626246, + "y": 178.503 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 302.65649728626244, + "y": 167.148 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.09149728626244, + "y": 156.793 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 315.84649728626243, + "y": 148.039 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 325.47049728626246, + "y": 141.396 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 336.40549728626246, + "y": 137.249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 348.01449728626244, + "y": 135.84 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 359.6234972862624, + "y": 137.249 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 370.5584972862624, + "y": 141.396 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 380.18249728626245, + "y": 148.039 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 387.93749728626244, + "y": 156.793 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 393.37249728626244, + "y": 167.148 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 396.1714972862624, + "y": 178.503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 556 + }, + "bounds": { + "#": 559 + }, + "collisionFilter": { + "#": 562 + }, + "constraintImpulse": { + "#": 563 + }, + "density": 0.001, + "force": { + "#": 564 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 565 + }, + "positionImpulse": { + "#": 566 + }, + "positionPrev": { + "#": 567 + }, + "render": { + "#": 568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 570 + }, + "vertices": { + "#": 571 + } + }, + [ + { + "#": 557 + }, + { + "#": 558 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 560 + }, + "min": { + "#": 561 + } + }, + { + "x": 480.4041790420924, + "y": 159.99646433470505 + }, + { + "x": 396.1714972862624, + "y": 135.83999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.2878381641774, + "y": 147.91823216735253 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.2878381641774, + "y": 147.91823216735253 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 569 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.1714972862624, + "y": 135.83999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480.4041790420924, + "y": 135.83999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480.4041790420924, + "y": 159.99646433470505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.1714972862624, + "y": 159.99646433470505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 577 + }, + "bounds": { + "#": 580 + }, + "collisionFilter": { + "#": 583 + }, + "constraintImpulse": { + "#": 584 + }, + "density": 0.001, + "force": { + "#": 585 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 586 + }, + "positionImpulse": { + "#": 587 + }, + "positionPrev": { + "#": 588 + }, + "render": { + "#": 589 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 591 + }, + "vertices": { + "#": 592 + } + }, + [ + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 581 + }, + "min": { + "#": 582 + } + }, + { + "x": 529.7907531161663, + "y": 156.7050977366255 + }, + { + "x": 480.4041790420924, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0974660791294, + "y": 146.27254886831275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0974660791294, + "y": 146.27254886831275 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 590 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.4041790420924, + "y": 135.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 529.7907531161663, + "y": 135.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 529.7907531161663, + "y": 156.7050977366255 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.4041790420924, + "y": 156.7050977366255 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2157.165332, + "axes": { + "#": 598 + }, + "bounds": { + "#": 612 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "density": 0.001, + "force": { + "#": 617 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 618 + }, + "positionImpulse": { + "#": 619 + }, + "positionPrev": { + "#": 620 + }, + "render": { + "#": 621 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 623 + }, + "vertices": { + "#": 624 + } + }, + [ + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + } + ], + { + "x": -0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": -0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": -0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": -0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": -0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": -0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": 0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": 0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": 0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": 0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 613 + }, + "min": { + "#": 614 + } + }, + { + "x": 582.0707531161663, + "y": 188.504 + }, + { + "x": 529.7907531161663, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 555.9307531161663, + "y": 162.172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 555.9307531161663, + "y": 162.172 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 622 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 582.0707531161663, + "y": 165.346 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.5517531161663, + "y": 171.509 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 577.6017531161664, + "y": 177.13 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 573.3917531161663, + "y": 181.882 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 568.1677531161663, + "y": 185.488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 562.2327531161664, + "y": 187.739 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 555.9307531161663, + "y": 188.504 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 549.6287531161663, + "y": 187.739 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 543.6937531161664, + "y": 185.488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.4697531161663, + "y": 181.882 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 534.2597531161664, + "y": 177.13 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 531.3097531161663, + "y": 171.509 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 529.7907531161663, + "y": 165.346 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 529.7907531161663, + "y": 158.998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 531.3097531161663, + "y": 152.83499999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 534.2597531161664, + "y": 147.214 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 538.4697531161663, + "y": 142.462 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 543.6937531161664, + "y": 138.856 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 549.6287531161663, + "y": 136.605 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 555.9307531161663, + "y": 135.84 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 562.2327531161664, + "y": 136.605 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 568.1677531161663, + "y": 138.856 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 573.3917531161663, + "y": 142.462 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 577.6017531161664, + "y": 147.214 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 580.5517531161663, + "y": 152.83499999999998 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 582.0707531161663, + "y": 158.998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2399.6281959999997, + "axes": { + "#": 652 + }, + "bounds": { + "#": 655 + }, + "collisionFilter": { + "#": 658 + }, + "constraintImpulse": { + "#": 659 + }, + "density": 0.001, + "force": { + "#": 660 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 661 + }, + "positionImpulse": { + "#": 662 + }, + "positionPrev": { + "#": 663 + }, + "render": { + "#": 664 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 666 + }, + "vertices": { + "#": 667 + } + }, + [ + { + "#": 653 + }, + { + "#": 654 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 656 + }, + "min": { + "#": 657 + } + }, + { + "x": 631.0567531161664, + "y": 184.826 + }, + { + "x": 582.0707531161663, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 606.5637531161664, + "y": 160.333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 606.5637531161664, + "y": 160.333 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 665 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.0567531161664, + "y": 184.826 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 582.0707531161663, + "y": 184.826 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 582.0707531161663, + "y": 135.84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 631.0567531161664, + "y": 135.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 673 + }, + "bounds": { + "#": 676 + }, + "collisionFilter": { + "#": 679 + }, + "constraintImpulse": { + "#": 680 + }, + "density": 0.001, + "force": { + "#": 681 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 682 + }, + "positionImpulse": { + "#": 683 + }, + "positionPrev": { + "#": 684 + }, + "render": { + "#": 685 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 687 + }, + "vertices": { + "#": 688 + } + }, + [ + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 677 + }, + "min": { + "#": 678 + } + }, + { + "x": 666.4696903589647, + "y": 177.90893004115227 + }, + { + "x": 631.0567531161664, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 648.7632217375656, + "y": 156.87446502057614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 648.7632217375656, + "y": 156.87446502057614 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 686 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.0567531161664, + "y": 135.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 666.4696903589647, + "y": 135.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 666.4696903589647, + "y": 177.90893004115227 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 631.0567531161664, + "y": 177.90893004115227 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 694 + }, + "bounds": { + "#": 697 + }, + "collisionFilter": { + "#": 700 + }, + "constraintImpulse": { + "#": 701 + }, + "density": 0.001, + "force": { + "#": 702 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 703 + }, + "positionImpulse": { + "#": 704 + }, + "positionPrev": { + "#": 705 + }, + "render": { + "#": 706 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 708 + }, + "vertices": { + "#": 709 + } + }, + [ + { + "#": 695 + }, + { + "#": 696 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 698 + }, + "min": { + "#": 699 + } + }, + { + "x": 708.2335792478536, + "y": 178.1101903292181 + }, + { + "x": 666.4696903589647, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.3516348034092, + "y": 156.97509516460906 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.3516348034092, + "y": 156.97509516460906 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 707 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 666.4696903589647, + "y": 135.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 708.2335792478536, + "y": 135.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 708.2335792478536, + "y": 178.1101903292181 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 666.4696903589647, + "y": 178.1101903292181 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1919.5457599999997, + "axes": { + "#": 715 + }, + "bounds": { + "#": 719 + }, + "collisionFilter": { + "#": 722 + }, + "constraintImpulse": { + "#": 723 + }, + "density": 0.001, + "force": { + "#": 724 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 725 + }, + "positionImpulse": { + "#": 726 + }, + "positionPrev": { + "#": 727 + }, + "render": { + "#": 728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 730 + }, + "vertices": { + "#": 731 + } + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + } + ], + { + "x": -0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 720 + }, + "min": { + "#": 721 + } + }, + { + "x": 97.07999999999998, + "y": 287.222 + }, + { + "x": 49.99999999999999, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.53999999999999, + "y": 260.041 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.53999999999999, + "y": 260.041 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 729 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 97.07999999999998, + "y": 273.632 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 73.53999999999999, + "y": 287.222 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 49.99999999999999, + "y": 273.632 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 49.99999999999999, + "y": 246.45 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 73.53999999999999, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 97.07999999999998, + "y": 246.45 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6052.328004, + "axes": { + "#": 739 + }, + "bounds": { + "#": 743 + }, + "collisionFilter": { + "#": 746 + }, + "constraintImpulse": { + "#": 747 + }, + "density": 0.001, + "force": { + "#": 748 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 749 + }, + "positionImpulse": { + "#": 750 + }, + "positionPrev": { + "#": 751 + }, + "render": { + "#": 752 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 754 + }, + "vertices": { + "#": 755 + } + }, + [ + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "x": -0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 744 + }, + "min": { + "#": 745 + } + }, + { + "x": 180.678, + "y": 329.39 + }, + { + "x": 97.07999999999998, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.879, + "y": 281.125 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.879, + "y": 281.125 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 753 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.678, + "y": 305.25800000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 138.879, + "y": 329.39 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 97.07999999999998, + "y": 305.25800000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 97.07999999999998, + "y": 256.99199999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 138.879, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 180.678, + "y": 256.99199999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 763 + }, + "bounds": { + "#": 766 + }, + "collisionFilter": { + "#": 769 + }, + "constraintImpulse": { + "#": 770 + }, + "density": 0.001, + "force": { + "#": 771 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 772 + }, + "positionImpulse": { + "#": 773 + }, + "positionPrev": { + "#": 774 + }, + "render": { + "#": 775 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 777 + }, + "vertices": { + "#": 778 + } + }, + [ + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 767 + }, + "min": { + "#": 768 + } + }, + { + "x": 225.82936316872429, + "y": 282.02846707818924 + }, + { + "x": 180.678, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 203.25368158436214, + "y": 257.4442335390946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 203.25368158436214, + "y": 257.4442335390946 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 776 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.678, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225.82936316872429, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.82936316872429, + "y": 282.02846707818924 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180.678, + "y": 282.02846707818924 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2601.1074479999997, + "axes": { + "#": 784 + }, + "bounds": { + "#": 788 + }, + "collisionFilter": { + "#": 791 + }, + "constraintImpulse": { + "#": 792 + }, + "density": 0.001, + "force": { + "#": 793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 794 + }, + "positionImpulse": { + "#": 795 + }, + "positionPrev": { + "#": 796 + }, + "render": { + "#": 797 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 799 + }, + "vertices": { + "#": 800 + } + }, + [ + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + } + ], + { + "x": -0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 789 + }, + "min": { + "#": 790 + } + }, + { + "x": 280.63336316872426, + "y": 296.14199999999994 + }, + { + "x": 225.82936316872429, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.23136316872427, + "y": 264.501 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.23136316872427, + "y": 264.501 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 798 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280.63336316872426, + "y": 280.322 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 253.23136316872427, + "y": 296.14199999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.82936316872429, + "y": 280.322 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225.82936316872429, + "y": 248.67999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 253.23136316872427, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.63336316872426, + "y": 248.67999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1413.3088360000002, + "axes": { + "#": 808 + }, + "bounds": { + "#": 811 + }, + "collisionFilter": { + "#": 814 + }, + "constraintImpulse": { + "#": 815 + }, + "density": 0.001, + "force": { + "#": 816 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 817 + }, + "positionImpulse": { + "#": 818 + }, + "positionPrev": { + "#": 819 + }, + "render": { + "#": 820 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 822 + }, + "vertices": { + "#": 823 + } + }, + [ + { + "#": 809 + }, + { + "#": 810 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 812 + }, + "min": { + "#": 813 + } + }, + { + "x": 318.2273631687243, + "y": 270.45399999999995 + }, + { + "x": 280.63336316872426, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 299.4303631687243, + "y": 251.65699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 299.4303631687243, + "y": 251.65699999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 821 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.2273631687243, + "y": 270.45399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280.63336316872426, + "y": 270.45399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280.63336316872426, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 318.2273631687243, + "y": 232.85999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5460.808751999999, + "axes": { + "#": 829 + }, + "bounds": { + "#": 833 + }, + "collisionFilter": { + "#": 836 + }, + "constraintImpulse": { + "#": 837 + }, + "density": 0.001, + "force": { + "#": 838 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 839 + }, + "positionImpulse": { + "#": 840 + }, + "positionPrev": { + "#": 841 + }, + "render": { + "#": 842 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 844 + }, + "vertices": { + "#": 845 + } + }, + [ + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": -0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 834 + }, + "min": { + "#": 835 + } + }, + { + "x": 397.6353631687243, + "y": 324.5519999999999 + }, + { + "x": 318.2273631687243, + "y": 232.85999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.9313631687243, + "y": 278.70599999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.9313631687243, + "y": 278.70599999999996 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 843 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.6353631687243, + "y": 301.62899999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 357.9313631687243, + "y": 324.5519999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 318.2273631687243, + "y": 301.62899999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 318.2273631687243, + "y": 255.78299999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 357.9313631687243, + "y": 232.85999999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 397.6353631687243, + "y": 255.78299999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 853 + }, + "bounds": { + "#": 856 + }, + "collisionFilter": { + "#": 859 + }, + "constraintImpulse": { + "#": 860 + }, + "density": 0.001, + "force": { + "#": 861 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 862 + }, + "positionImpulse": { + "#": 863 + }, + "positionPrev": { + "#": 864 + }, + "render": { + "#": 865 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 867 + }, + "vertices": { + "#": 868 + } + }, + [ + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 857 + }, + "min": { + "#": 858 + } + }, + { + "x": 417.80588786008235, + "y": 255.2497890946502 + }, + { + "x": 397.6353631687243, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 407.7206255144033, + "y": 244.0548945473251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 407.7206255144033, + "y": 244.0548945473251 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 866 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.6353631687243, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 417.80588786008235, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 417.80588786008235, + "y": 255.2497890946502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 397.6353631687243, + "y": 255.2497890946502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 874 + }, + "bounds": { + "#": 877 + }, + "collisionFilter": { + "#": 880 + }, + "constraintImpulse": { + "#": 881 + }, + "density": 0.001, + "force": { + "#": 882 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 883 + }, + "positionImpulse": { + "#": 884 + }, + "positionPrev": { + "#": 885 + }, + "render": { + "#": 886 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 888 + }, + "vertices": { + "#": 889 + } + }, + [ + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 878 + }, + "min": { + "#": 879 + } + }, + { + "x": 519.6390497256516, + "y": 262.5328395061729 + }, + { + "x": 417.80588786008235, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 468.722468792867, + "y": 247.69641975308642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 468.722468792867, + "y": 247.69641975308642 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 887 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.80588786008235, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 519.6390497256516, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 519.6390497256516, + "y": 262.5328395061729 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 417.80588786008235, + "y": 262.5328395061729 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 895 + }, + "bounds": { + "#": 898 + }, + "collisionFilter": { + "#": 901 + }, + "constraintImpulse": { + "#": 902 + }, + "density": 0.001, + "force": { + "#": 903 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 904 + }, + "positionImpulse": { + "#": 905 + }, + "positionPrev": { + "#": 906 + }, + "render": { + "#": 907 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 909 + }, + "vertices": { + "#": 910 + } + }, + [ + { + "#": 896 + }, + { + "#": 897 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 899 + }, + "min": { + "#": 900 + } + }, + { + "x": 559.7105517832647, + "y": 254.24027263374484 + }, + { + "x": 519.6390497256516, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.6748007544581, + "y": 243.5501363168724 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.6748007544581, + "y": 243.5501363168724 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 908 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 519.6390497256516, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 559.7105517832647, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 559.7105517832647, + "y": 254.24027263374484 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 519.6390497256516, + "y": 254.24027263374484 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 916 + }, + "bounds": { + "#": 921 + }, + "collisionFilter": { + "#": 924 + }, + "constraintImpulse": { + "#": 925 + }, + "density": 0.001, + "force": { + "#": 926 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 927 + }, + "positionImpulse": { + "#": 928 + }, + "positionPrev": { + "#": 929 + }, + "render": { + "#": 930 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 932 + }, + "vertices": { + "#": 933 + } + }, + [ + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 922 + }, + "min": { + "#": 923 + } + }, + { + "x": 629.9625517832646, + "y": 303.11199999999997 + }, + { + "x": 559.7105517832647, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 594.8365517832647, + "y": 267.986 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 594.8365517832647, + "y": 267.986 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 931 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 629.9625517832646, + "y": 282.536 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 609.3865517832646, + "y": 303.11199999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580.2865517832647, + "y": 303.11199999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.7105517832647, + "y": 282.536 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 559.7105517832647, + "y": 253.43599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 580.2865517832647, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 609.3865517832646, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 629.9625517832646, + "y": 253.43599999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 943 + }, + "bounds": { + "#": 946 + }, + "collisionFilter": { + "#": 949 + }, + "constraintImpulse": { + "#": 950 + }, + "density": 0.001, + "force": { + "#": 951 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 952 + }, + "positionImpulse": { + "#": 953 + }, + "positionPrev": { + "#": 954 + }, + "render": { + "#": 955 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 957 + }, + "vertices": { + "#": 958 + } + }, + [ + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 947 + }, + "min": { + "#": 948 + } + }, + { + "x": 719.4668384773661, + "y": 254.81584705075446 + }, + { + "x": 629.9625517832646, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 674.7146951303154, + "y": 243.83792352537722 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 674.7146951303154, + "y": 243.83792352537722 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 956 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 629.9625517832646, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 719.4668384773661, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 719.4668384773661, + "y": 254.81584705075446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 629.9625517832646, + "y": 254.81584705075446 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1492.5256200000001, + "axes": { + "#": 964 + }, + "bounds": { + "#": 968 + }, + "collisionFilter": { + "#": 971 + }, + "constraintImpulse": { + "#": 972 + }, + "density": 0.001, + "force": { + "#": 973 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1714.8324723309402, + "inverseInertia": 0.0005831473430408735, + "inverseMass": 0.6700052492231255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.49252562, + "motion": 0, + "parent": null, + "position": { + "#": 974 + }, + "positionImpulse": { + "#": 975 + }, + "positionPrev": { + "#": 976 + }, + "render": { + "#": 977 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 979 + }, + "vertices": { + "#": 980 + } + }, + [ + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + } + ], + { + "x": -0.5000025921589079, + "y": 0.8660239071956228 + }, + { + "x": -0.5000025921589079, + "y": -0.8660239071956228 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 969 + }, + "min": { + "#": 970 + } + }, + { + "x": 761.8368384773661, + "y": 291.56999999999994 + }, + { + "x": 710.9928384773661, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 744.8888384773661, + "y": 262.215 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 744.8888384773661, + "y": 262.215 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 978 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 761.8368384773661, + "y": 291.56999999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 710.9928384773661, + "y": 262.215 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 761.8368384773661, + "y": 232.85999999999999 + }, + [], + [], + [ + { + "#": 987 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 988 + }, + "pointB": "", + "render": { + "#": 989 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/mixedSolid/mixedSolid-10.json b/tests/browser/refs/mixedSolid/mixedSolid-10.json new file mode 100644 index 00000000..8703dec5 --- /dev/null +++ b/tests/browser/refs/mixedSolid/mixedSolid-10.json @@ -0,0 +1,9105 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 1026 + }, + "gravity": { + "#": 1030 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1024 + }, + "constraints": { + "#": 1025 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 209 + }, + { + "#": 235 + }, + { + "#": 290 + }, + { + "#": 312 + }, + { + "#": 334 + }, + { + "#": 356 + }, + { + "#": 378 + }, + { + "#": 400 + }, + { + "#": 430 + }, + { + "#": 452 + }, + { + "#": 478 + }, + { + "#": 500 + }, + { + "#": 522 + }, + { + "#": 577 + }, + { + "#": 599 + }, + { + "#": 621 + }, + { + "#": 676 + }, + { + "#": 698 + }, + { + "#": 720 + }, + { + "#": 742 + }, + { + "#": 767 + }, + { + "#": 792 + }, + { + "#": 814 + }, + { + "#": 839 + }, + { + "#": 861 + }, + { + "#": 886 + }, + { + "#": 908 + }, + { + "#": 930 + }, + { + "#": 952 + }, + { + "#": 980 + }, + { + "#": 1002 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1534.906434764454, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 82.40102309415396, + "y": 112.80712013226713 + }, + { + "x": 45.99785951390703, + "y": 67.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.1994413040305, + "y": 88.8178020921286 + }, + { + "x": -0.21240689241880487, + "y": 0 + }, + { + "x": 64.1994413040305, + "y": 85.91053137709295 + }, + { + "endCol": 1, + "endRow": 2, + "id": "0,1,1,2", + "startCol": 0, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 45.99785951390703, + "y": 67.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 82.40102309415396, + "y": 67.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 82.40102309415396, + "y": 109.89984941723148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 45.99785951390703, + "y": 109.89984941723148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.52878634164, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 130.08822378996675, + "y": 119.64418288946877 + }, + { + "x": 84.7723801685676, + "y": 67.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.43030197926718, + "y": 92.23633347072942 + }, + { + "x": -0.0402285530991624, + "y": 0 + }, + { + "x": 107.43030197926718, + "y": 89.32906275569377 + }, + { + "endCol": 2, + "endRow": 2, + "id": "1,2,1,2", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 84.7723801685676, + "y": 67.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130.08822378996675, + "y": 67.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 130.08822378996675, + "y": 116.73691217443312 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 84.7723801685676, + "y": 116.73691217443312 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1140.197701571206, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 169.54388458953156, + "y": 99.71427033802846 + }, + { + "x": 130.3230769763628, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 149.93348078294719, + "y": 82.27137719500926 + }, + { + "x": -0.026009009225921916, + "y": 0 + }, + { + "x": 149.93348078294719, + "y": 79.36410647997361 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,1,2", + "startCol": 2, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 130.3230769763628, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 169.54388458953156, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 169.54388458953156, + "y": 96.8069996229928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 130.3230769763628, + "y": 96.8069996229928 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 752.4076041785743, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 194.37119940434638, + "y": 100.88775284831652 + }, + { + "x": 169.49388458953155, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.93254199693897, + "y": 82.8581184501533 + }, + { + "x": -0.026009009225915793, + "y": 0 + }, + { + "x": 181.93254199693897, + "y": 79.95084773511765 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,1,2", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 169.49388458953155, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 194.37119940434638, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 194.37119940434638, + "y": 97.98048213328087 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 169.49388458953155, + "y": 97.98048213328087 + }, + { + "angle": 3.8762187644967887e-16, + "anglePrev": 2.649710854317212e-16, + "angularSpeed": 1.3074381196637362e-16, + "angularVelocity": 1.2762254350449912e-16, + "area": 2027.2541820000001, + "axes": { + "#": 185 + }, + "bounds": { + "#": 189 + }, + "collisionFilter": { + "#": 192 + }, + "constraintImpulse": { + "#": 193 + }, + "density": 0.001, + "force": { + "#": 194 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 195 + }, + "positionImpulse": { + "#": 196 + }, + "positionPrev": { + "#": 197 + }, + "region": { + "#": 198 + }, + "render": { + "#": 199 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 201 + }, + "vertices": { + "#": 202 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": -0.5000085820847088, + "y": -0.8660204488588241 + }, + { + "x": 0.5000085820847092, + "y": -0.8660204488588237 + }, + { + "x": 1, + "y": 3.8762187644967887e-16 + }, + { + "max": { + "#": 190 + }, + "min": { + "#": 191 + } + }, + { + "x": 243.74874325981477, + "y": 125.11162465181849 + }, + { + "x": 195.36674325981477, + "y": 66.33635393678286 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.55774325981477, + "y": 94.27035393678284 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.55774325981477, + "y": 91.36308322174719 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 200 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 243.74874325981477, + "y": 108.23735393678284 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 219.55774325981477, + "y": 122.20435393678284 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.36674325981477, + "y": 108.23735393678284 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195.36674325981477, + "y": 80.30335393678284 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 219.55774325981477, + "y": 66.33635393678286 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 243.74874325981477, + "y": 80.30335393678284 + }, + { + "angle": -5.246583236285029e-16, + "anglePrev": -4.472887203722439e-16, + "angularSpeed": 7.552552256704208e-17, + "angularVelocity": -7.623673670241777e-17, + "area": 4842.27229, + "axes": { + "#": 210 + }, + "bounds": { + "#": 216 + }, + "collisionFilter": { + "#": 219 + }, + "constraintImpulse": { + "#": 220 + }, + "density": 0.001, + "force": { + "#": 221 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 222 + }, + "positionImpulse": { + "#": 223 + }, + "positionPrev": { + "#": 224 + }, + "region": { + "#": 225 + }, + "render": { + "#": 226 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 228 + }, + "vertices": { + "#": 229 + } + }, + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "x": 0.30902000749156733, + "y": 0.95105553726894 + }, + { + "x": -0.8090188345853122, + "y": 0.5877827194518598 + }, + { + "x": -0.8090188345853127, + "y": -0.5877827194518587 + }, + { + "x": 0.30902000749156633, + "y": -0.95105553726894 + }, + { + "x": 1, + "y": -5.246583236285029e-16 + }, + { + "max": { + "#": 217 + }, + "min": { + "#": 218 + } + }, + { + "x": 321.55578938876494, + "y": 159.2340691690158 + }, + { + "x": 239.91778938876496, + "y": 70.48679845398011 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285.0461752739399, + "y": 113.4067984539801 + }, + { + "x": -0.07479604864768871, + "y": 0.06773793189966067 + }, + { + "x": 285.0461752739399, + "y": 110.49952773894445 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,1,3", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 227 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 321.55578938876494, + "y": 139.93279845398013 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 271.1007893887649, + "y": 156.32679845398016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.91778938876496, + "y": 113.4067984539801 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 271.1007893887649, + "y": 70.48679845398011 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.55578938876494, + "y": 86.8807984539801 + }, + { + "angle": -3.7063810097861765e-14, + "anglePrev": -3.826149409715343e-14, + "angularSpeed": 1.2129725087057634e-15, + "angularVelocity": 1.3311857637445273e-15, + "area": 3079.0178339999993, + "axes": { + "#": 236 + }, + "bounds": { + "#": 250 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "density": 0.001, + "force": { + "#": 255 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 256 + }, + "positionImpulse": { + "#": 257 + }, + "positionPrev": { + "#": 258 + }, + "region": { + "#": 259 + }, + "render": { + "#": 260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035813, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 262 + }, + "vertices": { + "#": 263 + } + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "x": -0.9709437470087525, + "y": -0.23930783552696983 + }, + { + "x": -0.8854182522513432, + "y": -0.46479513614083445 + }, + { + "x": -0.748535822224754, + "y": -0.6630943544069062 + }, + { + "x": -0.568078031004987, + "y": -0.8229746962631944 + }, + { + "x": -0.3545747323306915, + "y": -0.9350276783029573 + }, + { + "x": -0.12051249760078153, + "y": -0.9927118101050384 + }, + { + "x": 0.12051249760070792, + "y": -0.9927118101050473 + }, + { + "x": 0.3545747323306221, + "y": -0.9350276783029833 + }, + { + "x": 0.5680780310049262, + "y": -0.8229746962632364 + }, + { + "x": 0.7485358222247045, + "y": -0.6630943544069615 + }, + { + "x": 0.8854182522513088, + "y": -0.46479513614090007 + }, + { + "x": 0.970943747008735, + "y": -0.23930783552704182 + }, + { + "x": 1, + "y": -3.7063810097861765e-14 + }, + { + "max": { + "#": 251 + }, + "min": { + "#": 252 + } + }, + { + "x": 385.6670196756233, + "y": 135.78713498479874 + }, + { + "x": 323.2070196756228, + "y": 69.9618642697629 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 354.43701967562316, + "y": 101.42086426976292 + }, + { + "x": 0.03923072902534478, + "y": 0.1085176250201706 + }, + { + "x": 354.4370196756234, + "y": 98.51359355472711 + }, + { + "endCol": 8, + "endRow": 2, + "id": "6,8,1,2", + "startCol": 6, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 261 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.2737367544323206e-13, + "y": 2.9072707150358212 + }, + [ + { + "#": 264 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 385.6670196756233, + "y": 105.21286426976177 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 383.85201967562364, + "y": 112.57686426976183 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380.32701967562383, + "y": 119.29186426976196 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375.2980196756239, + "y": 124.96886426976214 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 369.0570196756242, + "y": 129.2768642697624 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.9660196756243, + "y": 131.96586426976262 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 354.43701967562436, + "y": 132.87986426976292 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 346.9080196756243, + "y": 131.96586426976322 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.8170196756242, + "y": 129.27686426976345 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 333.5760196756239, + "y": 124.9688642697637 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 328.54701967562386, + "y": 119.29186426976386 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 325.0220196756236, + "y": 112.57686426976402 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 323.20701967562326, + "y": 105.21286426976407 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 323.20701967562303, + "y": 97.62886426976407 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 325.0220196756227, + "y": 90.264864269764 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 328.5470196756225, + "y": 83.54986426976387 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 333.57601967562243, + "y": 77.8728642697637 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 339.81701967562213, + "y": 73.56486426976343 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 346.90801967562203, + "y": 70.87586426976318 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 354.43701967562197, + "y": 69.9618642697629 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 361.966019675622, + "y": 70.87586426976264 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 369.05701967562214, + "y": 73.56486426976237 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 375.2980196756224, + "y": 77.87286426976213 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 380.32701967562247, + "y": 83.54986426976197 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 383.8520196756227, + "y": 90.26486426976182 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 385.66701967562307, + "y": 97.62886426976176 + }, + { + "angle": 3.1270943006816335e-14, + "anglePrev": 1.139144336234155e-15, + "angularSpeed": 3.0189439393504445e-14, + "angularVelocity": 3.063512688957546e-14, + "area": 1329.4167625219097, + "axes": { + "#": 291 + }, + "bounds": { + "#": 294 + }, + "collisionFilter": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "density": 0.001, + "force": { + "#": 299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 300 + }, + "positionImpulse": { + "#": 301 + }, + "positionPrev": { + "#": 302 + }, + "region": { + "#": 303 + }, + "render": { + "#": 304 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150365305, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 306 + }, + "vertices": { + "#": 307 + } + }, + [ + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "x": -3.1270943006816335e-14, + "y": 1 + }, + { + "x": -1, + "y": -3.1270943006816335e-14 + }, + { + "max": { + "#": 295 + }, + "min": { + "#": 296 + } + }, + { + "x": 433.5840495877597, + "y": 97.28102533816305 + }, + { + "x": 384.80640041080363, + "y": 67.11912499349533 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.19522499928144, + "y": 80.74643980831094 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.19522499928104, + "y": 77.83916909327442 + }, + { + "endCol": 9, + "endRow": 1, + "id": "8,9,1,1", + "startCol": 8, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 305 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 3.979039320256561e-13, + "y": 2.9072707150365034 + }, + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 384.80640041080454, + "y": 67.11912499349533 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 433.58404958775924, + "y": 67.11912499349688 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 433.58404958775833, + "y": 94.37375462312652 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.80640041080363, + "y": 94.37375462312498 + }, + { + "angle": 2.724524244792797e-13, + "anglePrev": 2.2058148727003345e-13, + "angularSpeed": 5.187093720924626e-14, + "angularVelocity": 5.187093720924626e-14, + "area": 2858.632357296012, + "axes": { + "#": 313 + }, + "bounds": { + "#": 316 + }, + "collisionFilter": { + "#": 319 + }, + "constraintImpulse": { + "#": 320 + }, + "density": 0.001, + "force": { + "#": 321 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 322 + }, + "positionImpulse": { + "#": 323 + }, + "positionPrev": { + "#": 324 + }, + "region": { + "#": 325 + }, + "render": { + "#": 326 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150385986, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 328 + }, + "vertices": { + "#": 329 + } + }, + [ + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "x": -2.724524244792797e-13, + "y": 1 + }, + { + "x": -1, + "y": -2.724524244792797e-13 + }, + { + "max": { + "#": 317 + }, + "min": { + "#": 318 + } + }, + { + "x": 542.7594267767965, + "y": 93.99677157089602 + }, + { + "x": 433.90483144071266, + "y": 67.73575476702547 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 488.33212910875466, + "y": 80.86626316896076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 488.33212910875477, + "y": 77.95899245392216 + }, + { + "endCol": 11, + "endRow": 1, + "id": "9,11,1,1", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 327 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.1254996934439987e-13, + "y": 2.9072707150385986 + }, + [ + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 433.9048314407198, + "y": 67.73575476702547 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 542.7594267767965, + "y": 67.73575476705516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 542.7594267767895, + "y": 93.99677157089602 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 433.90483144071266, + "y": 93.99677157086631 + }, + { + "angle": 4.6274066257391704e-11, + "anglePrev": 3.4965524074084626e-11, + "angularSpeed": 1.1308542183307076e-11, + "angularVelocity": 1.1308542183307076e-11, + "area": 926.8394636035856, + "axes": { + "#": 335 + }, + "bounds": { + "#": 338 + }, + "collisionFilter": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "density": 0.001, + "force": { + "#": 343 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 344 + }, + "positionImpulse": { + "#": 345 + }, + "positionPrev": { + "#": 346 + }, + "region": { + "#": 347 + }, + "render": { + "#": 348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707154143185, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 350 + }, + "vertices": { + "#": 351 + } + }, + [ + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "x": -4.6274066257391704e-11, + "y": 1 + }, + { + "x": -1, + "y": -4.6274066257391704e-11 + }, + { + "max": { + "#": 339 + }, + "min": { + "#": 340 + } + }, + { + "x": 581.6982079649686, + "y": 91.65062102459468 + }, + { + "x": 542.942420926825, + "y": 67.7357547676573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.3203144458968, + "y": 79.693187896126 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.3203144459022, + "y": 76.78591718071169 + }, + { + "endCol": 12, + "endRow": 1, + "id": "11,12,1,1", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 349 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -5.402398528531193e-12, + "y": 2.9072707154143185 + }, + [ + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 542.9424209279316, + "y": 67.7357547676573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 581.6982079649686, + "y": 67.7357547694507 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 581.6982079638619, + "y": 91.65062102459468 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 542.942420926825, + "y": 91.65062102280133 + }, + { + "angle": 5.778969774103411e-10, + "anglePrev": 3.8934966410839723e-10, + "angularSpeed": 1.8854731330194388e-10, + "angularVelocity": 1.8854731330194388e-10, + "area": 1290.4501361223834, + "axes": { + "#": 357 + }, + "bounds": { + "#": 360 + }, + "collisionFilter": { + "#": 363 + }, + "constraintImpulse": { + "#": 364 + }, + "density": 0.001, + "force": { + "#": 365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 366 + }, + "positionImpulse": { + "#": 367 + }, + "positionPrev": { + "#": 368 + }, + "region": { + "#": 369 + }, + "render": { + "#": 370 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707233708694, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 372 + }, + "vertices": { + "#": 373 + } + }, + [ + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "x": -5.778969774103411e-10, + "y": 1 + }, + { + "x": -1, + "y": -5.778969774103411e-10 + }, + { + "max": { + "#": 361 + }, + "min": { + "#": 362 + } + }, + { + "x": 617.905126771844, + "y": 103.81175788879091 + }, + { + "x": 582.1348078209545, + "y": 67.7357547816996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600.0199672963993, + "y": 85.77375633524524 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600.0199672964426, + "y": 82.86648561187437 + }, + { + "endCol": 12, + "endRow": 2, + "id": "12,12,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 371 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -4.333173819759395e-11, + "y": 2.9072707233708694 + }, + [ + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 582.1348078418029, + "y": 67.7357547816996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 617.905126771844, + "y": 67.73575480237113 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 617.9051267509957, + "y": 103.81175788879091 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 582.1348078209545, + "y": 103.81175786811932 + }, + { + "angle": 5.956212439516393e-10, + "anglePrev": 3.995224559150968e-10, + "angularSpeed": 1.9609878803654246e-10, + "angularVelocity": 1.9609878803654246e-10, + "area": 1148.2925932011974, + "axes": { + "#": 379 + }, + "bounds": { + "#": 382 + }, + "collisionFilter": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "density": 0.001, + "force": { + "#": 387 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 388 + }, + "positionImpulse": { + "#": 389 + }, + "positionPrev": { + "#": 390 + }, + "region": { + "#": 391 + }, + "render": { + "#": 392 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270705354363, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 394 + }, + "vertices": { + "#": 395 + } + }, + [ + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "x": -5.956212439516393e-10, + "y": 1 + }, + { + "x": -1, + "y": -5.956212439516393e-10 + }, + { + "max": { + "#": 383 + }, + "min": { + "#": 384 + } + }, + { + "x": 651.7068713667743, + "y": 108.22430117226149 + }, + { + "x": 621.151958792897, + "y": 67.73575472854337 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 636.4294150798091, + "y": 86.52639259772523 + }, + { + "x": 0.4879586224890938, + "y": 1.7661525060908387e-14 + }, + { + "x": 636.4294150797562, + "y": 83.61912189237087 + }, + { + "endCol": 13, + "endRow": 2, + "id": "12,13,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 393 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 5.301103556121234e-11, + "y": 2.907270705354363 + }, + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 621.151958815281, + "y": 67.73575472854337 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 651.7068713667213, + "y": 67.7357547467425 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 651.7068713443373, + "y": 105.31703046690713 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 621.151958792897, + "y": 105.31703044870797 + }, + { + "angle": 0, + "anglePrev": -0.002944761536477951, + "angularSpeed": 0, + "angularVelocity": 0.0022085711523584634, + "area": 1926.7878890000002, + "axes": { + "#": 401 + }, + "bounds": { + "#": 409 + }, + "collisionFilter": { + "#": 412 + }, + "constraintImpulse": { + "#": 413 + }, + "density": 0.001, + "force": { + "#": 414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 415 + }, + "positionImpulse": { + "#": 416 + }, + "positionPrev": { + "#": 417 + }, + "region": { + "#": 418 + }, + "render": { + "#": 419 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 421 + }, + "vertices": { + "#": 422 + } + }, + [ + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 0.6234921001781484, + "y": 0.7818296496139309 + }, + { + "x": -0.22251820971292155, + "y": 0.9749285339685962 + }, + { + "x": -0.9009815501548849, + "y": 0.43385740316433524 + }, + { + "x": -0.9009815501548849, + "y": -0.43385740316433524 + }, + { + "x": -0.22251820971292155, + "y": -0.9749285339685962 + }, + { + "x": 0.6234921001781484, + "y": -0.7818296496139309 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 410 + }, + "min": { + "#": 411 + } + }, + { + "x": 71.60503020064793, + "y": 208.22302548206167 + }, + { + "x": 21.162030200647923, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 47.69722133275702, + "y": 179.445754767026 + }, + { + "x": 1.1736736849064155, + "y": 0 + }, + { + "x": 47.69722133275702, + "y": 176.67515265086743 + }, + { + "endCol": 1, + "endRow": 4, + "id": "0,1,3,4", + "startCol": 0, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 420 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.8047692658778374 + }, + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 71.60503020064793, + "y": 190.958754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 53.60203020064791, + "y": 205.315754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 31.15203020064792, + "y": 200.191754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 21.162030200647923, + "y": 179.445754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 31.15203020064792, + "y": 158.69975476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 53.60203020064791, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 71.60503020064793, + "y": 167.93275476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1097.755875, + "axes": { + "#": 431 + }, + "bounds": { + "#": 435 + }, + "collisionFilter": { + "#": 438 + }, + "constraintImpulse": { + "#": 439 + }, + "density": 0.001, + "force": { + "#": 440 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 927.6617490689248, + "inverseInertia": 0.0010779791243992539, + "inverseMass": 0.9109493492804126, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.097755875, + "motion": 0, + "parent": null, + "position": { + "#": 441 + }, + "positionImpulse": { + "#": 442 + }, + "positionPrev": { + "#": 443 + }, + "region": { + "#": 444 + }, + "render": { + "#": 445 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 447 + }, + "vertices": { + "#": 448 + } + }, + [ + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + } + ], + { + "x": -0.49999466010690446, + "y": 0.8660284867512045 + }, + { + "x": -0.49999466010690446, + "y": -0.8660284867512045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 436 + }, + "min": { + "#": 437 + } + }, + { + "x": 135.0581670975326, + "y": 206.8330254820617 + }, + { + "x": 91.45316709753263, + "y": 153.575754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120.52316709753262, + "y": 178.750754767026 + }, + { + "x": -0.08142826800548551, + "y": 0 + }, + { + "x": 120.52316709753262, + "y": 175.84348405199032 + }, + { + "endCol": 2, + "endRow": 4, + "id": "1,2,3,4", + "startCol": 1, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 446 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 135.0581670975326, + "y": 203.925754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 91.45316709753263, + "y": 178.750754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 135.0581670975326, + "y": 153.575754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 453 + }, + "bounds": { + "#": 459 + }, + "collisionFilter": { + "#": 462 + }, + "constraintImpulse": { + "#": 463 + }, + "density": 0.001, + "force": { + "#": 464 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 465 + }, + "positionImpulse": { + "#": 466 + }, + "positionPrev": { + "#": 467 + }, + "region": { + "#": 468 + }, + "render": { + "#": 469 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 471 + }, + "vertices": { + "#": 472 + } + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 460 + }, + "min": { + "#": 461 + } + }, + { + "x": 174.72886866010404, + "y": 195.22902548206164 + }, + { + "x": 137.87886866010402, + "y": 153.57575476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 158.24891138027843, + "y": 172.94875476702597 + }, + { + "x": 0.021814475646813734, + "y": 0 + }, + { + "x": 158.24891138027843, + "y": 170.0414840519903 + }, + { + "endCol": 3, + "endRow": 4, + "id": "2,3,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 470 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 174.72886866010404, + "y": 184.921754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.95386866010404, + "y": 192.32175476702596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 137.87886866010402, + "y": 172.94875476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 151.95386866010404, + "y": 153.57575476702596 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 174.72886866010404, + "y": 160.975754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.454244, + "axes": { + "#": 479 + }, + "bounds": { + "#": 482 + }, + "collisionFilter": { + "#": 485 + }, + "constraintImpulse": { + "#": 486 + }, + "density": 0.001, + "force": { + "#": 487 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 488 + }, + "positionImpulse": { + "#": 489 + }, + "positionPrev": { + "#": 490 + }, + "region": { + "#": 491 + }, + "render": { + "#": 492 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 494 + }, + "vertices": { + "#": 495 + } + }, + [ + { + "#": 480 + }, + { + "#": 481 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 483 + }, + "min": { + "#": 484 + } + }, + { + "x": 211.840233827826, + "y": 191.14502548206164 + }, + { + "x": 177.17823382782603, + "y": 153.57575476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 194.50923382782602, + "y": 170.90675476702597 + }, + { + "x": 0.09930741871464581, + "y": 0 + }, + { + "x": 194.50923382782602, + "y": 167.9994840519903 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,3,3", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 493 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 211.840233827826, + "y": 188.23775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 177.17823382782603, + "y": 188.23775476702596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 177.17823382782603, + "y": 153.57575476702596 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 211.840233827826, + "y": 153.57575476702596 + }, + { + "angle": 3.9974424435108666e-17, + "anglePrev": 1.7538705035440855e-17, + "angularSpeed": 2.2435719399667814e-17, + "angularVelocity": 2.2435719399667814e-17, + "area": 1990.733346252218, + "axes": { + "#": 501 + }, + "bounds": { + "#": 504 + }, + "collisionFilter": { + "#": 507 + }, + "constraintImpulse": { + "#": 508 + }, + "density": 0.001, + "force": { + "#": 509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 510 + }, + "positionImpulse": { + "#": 511 + }, + "positionPrev": { + "#": 512 + }, + "region": { + "#": 513 + }, + "render": { + "#": 514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 516 + }, + "vertices": { + "#": 517 + } + }, + [ + { + "#": 502 + }, + { + "#": 503 + } + ], + { + "x": -3.9974424435108666e-17, + "y": 1 + }, + { + "x": -1, + "y": -3.9974424435108666e-17 + }, + { + "max": { + "#": 505 + }, + "min": { + "#": 506 + } + }, + { + "x": 307.34296051071, + "y": 180.32189202809863 + }, + { + "x": 212.51922937216403, + "y": 156.42057981786405 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 259.93109494143704, + "y": 166.9176005654635 + }, + { + "x": 0, + "y": 0.11534049587384015 + }, + { + "x": 259.93109494143704, + "y": 164.0103298504278 + }, + { + "endCol": 6, + "endRow": 3, + "id": "4,6,3,3", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 515 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 212.51922937216403, + "y": 156.42057981786405 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 307.34296051071, + "y": 156.42057981786405 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 307.34296051071, + "y": 177.41462131306295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 212.51922937216403, + "y": 177.41462131306295 + }, + { + "angle": 1.793205365100331e-17, + "anglePrev": 1.441736752030682e-17, + "angularSpeed": 3.514686130696492e-18, + "angularVelocity": 3.514686130696492e-18, + "area": 7321.24308, + "axes": { + "#": 523 + }, + "bounds": { + "#": 537 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "region": { + "#": 546 + }, + "render": { + "#": 547 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 549 + }, + "vertices": { + "#": 550 + } + }, + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 1.793205365100331e-17 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 401.2838636848368, + "y": 251.4495581463108 + }, + { + "x": 304.9698636848368, + "y": 154.42955814631082 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 353.1268636848368, + "y": 202.93955814631082 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 353.1268636848368, + "y": 200.0322874312752 + }, + { + "endCol": 8, + "endRow": 5, + "id": "6,8,3,5", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 548 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.90727071503563 + }, + [ + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 401.2838636848368, + "y": 208.78655814631082 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 398.4848636848368, + "y": 220.1415581463108 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 393.0498636848368, + "y": 230.4965581463108 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.2948636848368, + "y": 239.25055814631082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 375.6708636848368, + "y": 245.89355814631082 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 364.7358636848368, + "y": 250.04055814631081 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 353.1268636848368, + "y": 251.4495581463108 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 341.5178636848368, + "y": 250.04055814631081 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 330.5828636848368, + "y": 245.89355814631082 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.9588636848368, + "y": 239.25055814631082 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 313.2038636848368, + "y": 230.4965581463108 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 307.7688636848368, + "y": 220.1415581463108 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 304.9698636848368, + "y": 208.78655814631082 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 304.9698636848368, + "y": 197.0925581463108 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 307.7688636848368, + "y": 185.73755814631082 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 313.2038636848368, + "y": 175.38255814631083 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 320.9588636848368, + "y": 166.6285581463108 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 330.5828636848368, + "y": 159.9855581463108 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 341.5178636848368, + "y": 155.83855814631082 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 353.1268636848368, + "y": 154.42955814631082 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 364.7358636848368, + "y": 155.83855814631082 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 375.6708636848368, + "y": 159.9855581463108 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 385.2948636848368, + "y": 166.6285581463108 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 393.0498636848368, + "y": 175.38255814631083 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 398.4848636848368, + "y": 185.73755814631082 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 401.2838636848368, + "y": 197.0925581463108 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 578 + }, + "bounds": { + "#": 581 + }, + "collisionFilter": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "density": 0.001, + "force": { + "#": 586 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 587 + }, + "positionImpulse": { + "#": 588 + }, + "positionPrev": { + "#": 589 + }, + "region": { + "#": 590 + }, + "render": { + "#": 591 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 593 + }, + "vertices": { + "#": 594 + } + }, + [ + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 582 + }, + "min": { + "#": 583 + } + }, + { + "x": 480.4041790420924, + "y": 177.73221910173103 + }, + { + "x": 396.1714972862624, + "y": 153.57575476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.2878381641774, + "y": 165.6539869343785 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.2878381641774, + "y": 162.74671621934283 + }, + { + "endCol": 10, + "endRow": 3, + "id": "8,10,3,3", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 592 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.1714972862624, + "y": 153.57575476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480.4041790420924, + "y": 153.57575476702596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480.4041790420924, + "y": 177.73221910173103 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.1714972862624, + "y": 177.73221910173103 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 600 + }, + "bounds": { + "#": 603 + }, + "collisionFilter": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "density": 0.001, + "force": { + "#": 608 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 609 + }, + "positionImpulse": { + "#": 610 + }, + "positionPrev": { + "#": 611 + }, + "region": { + "#": 612 + }, + "render": { + "#": 613 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 615 + }, + "vertices": { + "#": 616 + } + }, + [ + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 604 + }, + "min": { + "#": 605 + } + }, + { + "x": 529.7907531161663, + "y": 174.44085250365148 + }, + { + "x": 480.4041790420924, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0974660791294, + "y": 164.00830363533873 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0974660791294, + "y": 161.10103292030306 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,3,3", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 614 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.4041790420924, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 529.7907531161663, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 529.7907531161663, + "y": 174.44085250365148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.4041790420924, + "y": 174.44085250365148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2157.165332, + "axes": { + "#": 622 + }, + "bounds": { + "#": 636 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 639 + }, + "constraintImpulse": { + "#": 640 + }, + "density": 0.001, + "force": { + "#": 641 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 642 + }, + "positionImpulse": { + "#": 643 + }, + "positionPrev": { + "#": 644 + }, + "region": { + "#": 645 + }, + "render": { + "#": 646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 648 + }, + "vertices": { + "#": 649 + } + }, + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + } + ], + { + "x": -0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": -0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": -0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": -0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": -0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": -0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": 0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": 0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": 0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": 0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 637 + }, + "min": { + "#": 638 + } + }, + { + "x": 582.0707531161663, + "y": 206.23975476702597 + }, + { + "x": 529.7907531161663, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 555.9307531161663, + "y": 179.90775476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 555.9307531161663, + "y": 177.0004840519903 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,3,4", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 647 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 582.0707531161663, + "y": 183.08175476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.5517531161663, + "y": 189.24475476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 577.6017531161664, + "y": 194.86575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 573.3917531161663, + "y": 199.61775476702599 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 568.1677531161663, + "y": 203.22375476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 562.2327531161664, + "y": 205.47475476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 555.9307531161663, + "y": 206.23975476702597 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 549.6287531161663, + "y": 205.47475476702598 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 543.6937531161664, + "y": 203.22375476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.4697531161663, + "y": 199.61775476702599 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 534.2597531161664, + "y": 194.86575476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 531.3097531161663, + "y": 189.24475476702597 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 529.7907531161663, + "y": 183.08175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 529.7907531161663, + "y": 176.73375476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 531.3097531161663, + "y": 170.57075476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 534.2597531161664, + "y": 164.94975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 538.4697531161663, + "y": 160.19775476702597 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 543.6937531161664, + "y": 156.59175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 549.6287531161663, + "y": 154.34075476702597 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 555.9307531161663, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 562.2327531161664, + "y": 154.34075476702597 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 568.1677531161663, + "y": 156.59175476702598 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 573.3917531161663, + "y": 160.19775476702597 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 577.6017531161664, + "y": 164.94975476702598 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 580.5517531161663, + "y": 170.57075476702596 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 582.0707531161663, + "y": 176.73375476702597 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2399.6281959999997, + "axes": { + "#": 677 + }, + "bounds": { + "#": 680 + }, + "collisionFilter": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "density": 0.001, + "force": { + "#": 685 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 686 + }, + "positionImpulse": { + "#": 687 + }, + "positionPrev": { + "#": 688 + }, + "region": { + "#": 689 + }, + "render": { + "#": 690 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 692 + }, + "vertices": { + "#": 693 + } + }, + [ + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 681 + }, + "min": { + "#": 682 + } + }, + { + "x": 631.0567531161664, + "y": 202.56175476702597 + }, + { + "x": 582.0707531161663, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 606.5637531161664, + "y": 178.06875476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 606.5637531161664, + "y": 175.1614840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 691 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.0567531161664, + "y": 202.56175476702597 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 582.0707531161663, + "y": 202.56175476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 582.0707531161663, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 631.0567531161664, + "y": 153.57575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 699 + }, + "bounds": { + "#": 702 + }, + "collisionFilter": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "density": 0.001, + "force": { + "#": 707 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 708 + }, + "positionImpulse": { + "#": 709 + }, + "positionPrev": { + "#": 710 + }, + "region": { + "#": 711 + }, + "render": { + "#": 712 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 714 + }, + "vertices": { + "#": 715 + } + }, + [ + { + "#": 700 + }, + { + "#": 701 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 703 + }, + "min": { + "#": 704 + } + }, + { + "x": 666.4696903589647, + "y": 195.64468480817825 + }, + { + "x": 631.0567531161664, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 648.7632217375656, + "y": 174.61021978760212 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 648.7632217375656, + "y": 171.70294907256644 + }, + { + "endCol": 13, + "endRow": 4, + "id": "13,13,3,4", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 713 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.0567531161664, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 666.4696903589647, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 666.4696903589647, + "y": 195.64468480817825 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 631.0567531161664, + "y": 195.64468480817825 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 721 + }, + "bounds": { + "#": 724 + }, + "collisionFilter": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "density": 0.001, + "force": { + "#": 729 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 730 + }, + "positionImpulse": { + "#": 731 + }, + "positionPrev": { + "#": 732 + }, + "region": { + "#": 733 + }, + "render": { + "#": 734 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 736 + }, + "vertices": { + "#": 737 + } + }, + [ + { + "#": 722 + }, + { + "#": 723 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 725 + }, + "min": { + "#": 726 + } + }, + { + "x": 708.2335792478536, + "y": 195.8459450962441 + }, + { + "x": 666.4696903589647, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.3516348034092, + "y": 174.71084993163504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.3516348034092, + "y": 171.80357921659936 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,3,4", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 735 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 666.4696903589647, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 708.2335792478536, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 708.2335792478536, + "y": 195.8459450962441 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 666.4696903589647, + "y": 195.8459450962441 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1919.5457599999997, + "axes": { + "#": 743 + }, + "bounds": { + "#": 747 + }, + "collisionFilter": { + "#": 750 + }, + "constraintImpulse": { + "#": 751 + }, + "density": 0.001, + "force": { + "#": 752 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 753 + }, + "positionImpulse": { + "#": 754 + }, + "positionPrev": { + "#": 755 + }, + "region": { + "#": 756 + }, + "render": { + "#": 757 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 759 + }, + "vertices": { + "#": 760 + } + }, + [ + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": -0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 748 + }, + "min": { + "#": 749 + } + }, + { + "x": 97.07999999999998, + "y": 304.95775476702494 + }, + { + "x": 49.99999999999999, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.53999999999999, + "y": 277.77675476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.53999999999999, + "y": 274.8694840519894 + }, + { + "endCol": 2, + "endRow": 6, + "id": "1,2,5,6", + "startCol": 1, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 758 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 97.07999999999998, + "y": 291.36775476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 73.53999999999999, + "y": 304.95775476702494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 49.99999999999999, + "y": 291.36775476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 49.99999999999999, + "y": 264.18575476702506 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 73.53999999999999, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 97.07999999999998, + "y": 264.18575476702506 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6052.328004, + "axes": { + "#": 768 + }, + "bounds": { + "#": 772 + }, + "collisionFilter": { + "#": 775 + }, + "constraintImpulse": { + "#": 776 + }, + "density": 0.001, + "force": { + "#": 777 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 778 + }, + "positionImpulse": { + "#": 779 + }, + "positionPrev": { + "#": 780 + }, + "region": { + "#": 781 + }, + "render": { + "#": 782 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 784 + }, + "vertices": { + "#": 785 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": -0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 773 + }, + "min": { + "#": 774 + } + }, + { + "x": 180.678, + "y": 347.12575476702494 + }, + { + "x": 97.07999999999998, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.879, + "y": 298.86075476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.879, + "y": 295.9534840519894 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,5,7", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 783 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.678, + "y": 322.993754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 138.879, + "y": 347.12575476702494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 97.07999999999998, + "y": 322.993754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 97.07999999999998, + "y": 274.7277547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 138.879, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 180.678, + "y": 274.7277547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 793 + }, + "bounds": { + "#": 796 + }, + "collisionFilter": { + "#": 799 + }, + "constraintImpulse": { + "#": 800 + }, + "density": 0.001, + "force": { + "#": 801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 802 + }, + "positionImpulse": { + "#": 803 + }, + "positionPrev": { + "#": 804 + }, + "region": { + "#": 805 + }, + "render": { + "#": 806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 808 + }, + "vertices": { + "#": 809 + } + }, + [ + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 797 + }, + "min": { + "#": 798 + } + }, + { + "x": 225.82936316872429, + "y": 299.7642218452142 + }, + { + "x": 180.678, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 203.25368158436214, + "y": 275.1799883061196 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 203.25368158436214, + "y": 272.272717591084 + }, + { + "endCol": 4, + "endRow": 6, + "id": "3,4,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 807 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.678, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225.82936316872429, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.82936316872429, + "y": 299.7642218452142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180.678, + "y": 299.7642218452142 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2601.1074479999997, + "axes": { + "#": 815 + }, + "bounds": { + "#": 819 + }, + "collisionFilter": { + "#": 822 + }, + "constraintImpulse": { + "#": 823 + }, + "density": 0.001, + "force": { + "#": 824 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 825 + }, + "positionImpulse": { + "#": 826 + }, + "positionPrev": { + "#": 827 + }, + "region": { + "#": 828 + }, + "render": { + "#": 829 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 831 + }, + "vertices": { + "#": 832 + } + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + } + ], + { + "x": -0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 820 + }, + "min": { + "#": 821 + } + }, + { + "x": 280.63336316872426, + "y": 313.8777547670249 + }, + { + "x": 225.82936316872429, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.23136316872427, + "y": 282.23675476702493 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.23136316872427, + "y": 279.32948405198937 + }, + { + "endCol": 5, + "endRow": 6, + "id": "4,5,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 830 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280.63336316872426, + "y": 298.05775476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 253.23136316872427, + "y": 313.8777547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.82936316872429, + "y": 298.05775476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225.82936316872429, + "y": 266.4157547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 253.23136316872427, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.63336316872426, + "y": 266.4157547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1413.3088360000002, + "axes": { + "#": 840 + }, + "bounds": { + "#": 843 + }, + "collisionFilter": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "density": 0.001, + "force": { + "#": 848 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 849 + }, + "positionImpulse": { + "#": 850 + }, + "positionPrev": { + "#": 851 + }, + "region": { + "#": 852 + }, + "render": { + "#": 853 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 855 + }, + "vertices": { + "#": 856 + } + }, + [ + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 844 + }, + "min": { + "#": 845 + } + }, + { + "x": 318.2273631687243, + "y": 288.1897547670258 + }, + { + "x": 280.63336316872426, + "y": 250.5957547670259 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 299.4303631687243, + "y": 269.3927547670259 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 299.4303631687243, + "y": 266.4854840519902 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 854 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.2273631687243, + "y": 288.1897547670258 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280.63336316872426, + "y": 288.1897547670258 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280.63336316872426, + "y": 250.5957547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 318.2273631687243, + "y": 250.5957547670259 + }, + { + "angle": 4.370865055920414e-16, + "anglePrev": 3.5141746237941473e-16, + "angularSpeed": 8.566904321262666e-17, + "angularVelocity": 8.566904321262666e-17, + "area": 5460.808751999999, + "axes": { + "#": 862 + }, + "bounds": { + "#": 866 + }, + "collisionFilter": { + "#": 869 + }, + "constraintImpulse": { + "#": 870 + }, + "density": 0.001, + "force": { + "#": 871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 872 + }, + "positionImpulse": { + "#": 873 + }, + "positionPrev": { + "#": 874 + }, + "region": { + "#": 875 + }, + "render": { + "#": 876 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 878 + }, + "vertices": { + "#": 879 + } + }, + [ + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "x": -0.4999981172696017, + "y": -0.8660264907766121 + }, + { + "x": 0.49999811726960225, + "y": -0.8660264907766121 + }, + { + "x": 1, + "y": 4.370865055920414e-16 + }, + { + "max": { + "#": 867 + }, + "min": { + "#": 868 + } + }, + { + "x": 398.510305394171, + "y": 352.40382909824996 + }, + { + "x": 319.10230539417097, + "y": 257.8045583832145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 358.806305394171, + "y": 303.6505583832144 + }, + { + "x": 0.06216954385340654, + "y": 0.5122258584770738 + }, + { + "x": 358.806305394171, + "y": 300.74328766817877 + }, + { + "endCol": 8, + "endRow": 7, + "id": "6,8,5,7", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 877 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035602 + }, + [ + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 398.510305394171, + "y": 326.5735583832144 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 358.806305394171, + "y": 349.49655838321434 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 319.10230539417097, + "y": 326.5735583832144 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 319.10230539417097, + "y": 280.7275583832144 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 358.806305394171, + "y": 257.8045583832145 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 398.510305394171, + "y": 280.7275583832144 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 887 + }, + "bounds": { + "#": 890 + }, + "collisionFilter": { + "#": 893 + }, + "constraintImpulse": { + "#": 894 + }, + "density": 0.001, + "force": { + "#": 895 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 896 + }, + "positionImpulse": { + "#": 897 + }, + "positionPrev": { + "#": 898 + }, + "region": { + "#": 899 + }, + "render": { + "#": 900 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035714, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 902 + }, + "vertices": { + "#": 903 + } + }, + [ + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 891 + }, + "min": { + "#": 892 + } + }, + { + "x": 417.80588786008235, + "y": 272.9855438616762 + }, + { + "x": 397.6353631687243, + "y": 250.59575476702602 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 407.7206255144033, + "y": 261.7906493143512 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 407.7206255144033, + "y": 258.88337859931545 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 901 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035714 + }, + [ + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.6353631687243, + "y": 250.59575476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 417.80588786008235, + "y": 250.59575476702602 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 417.80588786008235, + "y": 272.9855438616762 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 397.6353631687243, + "y": 272.9855438616762 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 909 + }, + "bounds": { + "#": 912 + }, + "collisionFilter": { + "#": 915 + }, + "constraintImpulse": { + "#": 916 + }, + "density": 0.001, + "force": { + "#": 917 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 918 + }, + "positionImpulse": { + "#": 919 + }, + "positionPrev": { + "#": 920 + }, + "region": { + "#": 921 + }, + "render": { + "#": 922 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 924 + }, + "vertices": { + "#": 925 + } + }, + [ + { + "#": 910 + }, + { + "#": 911 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 913 + }, + "min": { + "#": 914 + } + }, + { + "x": 519.6390497256516, + "y": 280.26859427319874 + }, + { + "x": 417.80588786008235, + "y": 250.59575476702594 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 468.722468792867, + "y": 265.43217452011237 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 468.722468792867, + "y": 262.5249038050767 + }, + { + "endCol": 10, + "endRow": 5, + "id": "8,10,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 923 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.80588786008235, + "y": 250.59575476702594 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 519.6390497256516, + "y": 250.59575476702594 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 519.6390497256516, + "y": 280.26859427319874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 417.80588786008235, + "y": 280.26859427319874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 931 + }, + "bounds": { + "#": 934 + }, + "collisionFilter": { + "#": 937 + }, + "constraintImpulse": { + "#": 938 + }, + "density": 0.001, + "force": { + "#": 939 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 940 + }, + "positionImpulse": { + "#": 941 + }, + "positionPrev": { + "#": 942 + }, + "region": { + "#": 943 + }, + "render": { + "#": 944 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 946 + }, + "vertices": { + "#": 947 + } + }, + [ + { + "#": 932 + }, + { + "#": 933 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 935 + }, + "min": { + "#": 936 + } + }, + { + "x": 559.7105517832647, + "y": 271.97602740077076 + }, + { + "x": 519.6390497256516, + "y": 250.59575476702597 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.6748007544581, + "y": 261.2858910838984 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.6748007544581, + "y": 258.3786203688627 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 945 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 519.6390497256516, + "y": 250.59575476702597 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 559.7105517832647, + "y": 250.59575476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 559.7105517832647, + "y": 271.97602740077076 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 519.6390497256516, + "y": 271.97602740077076 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 953 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 629.9625517832646, + "y": 320.8477547670249 + }, + { + "x": 559.7105517832647, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 594.8365517832647, + "y": 285.72175476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 594.8365517832647, + "y": 282.8144840519894 + }, + { + "endCol": 13, + "endRow": 6, + "id": "11,13,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 629.9625517832646, + "y": 300.27175476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 609.3865517832646, + "y": 320.8477547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580.2865517832647, + "y": 320.8477547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.7105517832647, + "y": 300.27175476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 559.7105517832647, + "y": 271.171754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 580.2865517832647, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 609.3865517832646, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 629.9625517832646, + "y": 271.171754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 981 + }, + "bounds": { + "#": 984 + }, + "collisionFilter": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "density": 0.001, + "force": { + "#": 989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 990 + }, + "positionImpulse": { + "#": 991 + }, + "positionPrev": { + "#": 992 + }, + "region": { + "#": 993 + }, + "render": { + "#": 994 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035714, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 996 + }, + "vertices": { + "#": 997 + } + }, + [ + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 985 + }, + "min": { + "#": 986 + } + }, + { + "x": 719.4668384773661, + "y": 272.55160181778047 + }, + { + "x": 629.9625517832646, + "y": 250.59575476702602 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 674.7146951303154, + "y": 261.5736782924033 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 674.7146951303154, + "y": 258.6664075773676 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,5,5", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 995 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035714 + }, + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 629.9625517832646, + "y": 250.59575476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 719.4668384773661, + "y": 250.59575476702602 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 719.4668384773661, + "y": 272.55160181778047 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 629.9625517832646, + "y": 272.55160181778047 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1492.5256200000001, + "axes": { + "#": 1003 + }, + "bounds": { + "#": 1007 + }, + "collisionFilter": { + "#": 1010 + }, + "constraintImpulse": { + "#": 1011 + }, + "density": 0.001, + "force": { + "#": 1012 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1714.8324723309402, + "inverseInertia": 0.0005831473430408735, + "inverseMass": 0.6700052492231255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.49252562, + "motion": 0, + "parent": null, + "position": { + "#": 1013 + }, + "positionImpulse": { + "#": 1014 + }, + "positionPrev": { + "#": 1015 + }, + "region": { + "#": 1016 + }, + "render": { + "#": 1017 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1019 + }, + "vertices": { + "#": 1020 + } + }, + [ + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + } + ], + { + "x": -0.5000025921589079, + "y": 0.8660239071956228 + }, + { + "x": -0.5000025921589079, + "y": -0.8660239071956228 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1008 + }, + "min": { + "#": 1009 + } + }, + { + "x": 761.8368384773661, + "y": 309.3057547670249 + }, + { + "x": 710.9928384773661, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 744.8888384773661, + "y": 279.95075476702493 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 744.8888384773661, + "y": 277.04348405198937 + }, + { + "endCol": 15, + "endRow": 6, + "id": "14,15,5,6", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1018 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 761.8368384773661, + "y": 309.3057547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 710.9928384773661, + "y": 279.95075476702493 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 761.8368384773661, + "y": 250.59575476702506 + }, + [], + [], + [ + { + "#": 1027 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1028 + }, + "pointB": "", + "render": { + "#": 1029 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/newtonsCradle/newtonsCradle-0.json b/tests/browser/refs/newtonsCradle/newtonsCradle-0.json new file mode 100644 index 00000000..cb2db661 --- /dev/null +++ b/tests/browser/refs/newtonsCradle/newtonsCradle-0.json @@ -0,0 +1,6563 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 731 + }, + "gravity": { + "#": 735 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 90 + }, + { + "#": 384 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 362 + }, + "constraints": { + "#": 363 + }, + "id": 4, + "isModified": true, + "label": "Newtons Cradle", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 146 + }, + { + "#": 200 + }, + { + "#": 254 + }, + { + "#": 308 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 93 + }, + "bounds": { + "#": 107 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 110 + }, + "constraintImpulse": { + "#": 111 + }, + "density": 0.001, + "force": { + "#": 112 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 5, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 113 + }, + "positionImpulse": { + "#": 114 + }, + "positionPrev": { + "#": 115 + }, + "render": { + "#": 116 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 118 + }, + "vertices": { + "#": 119 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 108 + }, + "min": { + "#": 109 + } + }, + { + "x": 129.781, + "y": 230 + }, + { + "x": 70.219, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 200 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 117 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 129.781, + "y": 203.61599999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 128.05, + "y": 210.63799999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 124.69, + "y": 217.04200000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 119.894, + "y": 222.45499999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 113.94200000000001, + "y": 226.56400000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 107.17899999999997, + "y": 229.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 100, + "y": 230 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 92.82100000000003, + "y": 229.128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 86.05799999999999, + "y": 226.56400000000002 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 80.106, + "y": 222.45499999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 75.31, + "y": 217.04200000000003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 71.94999999999999, + "y": 210.63799999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 70.219, + "y": 203.61599999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 70.219, + "y": 196.38400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 71.94999999999999, + "y": 189.36200000000002 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 75.31, + "y": 182.95799999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 80.106, + "y": 177.54500000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 86.05799999999999, + "y": 173.43599999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 92.82100000000003, + "y": 170.872 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 100, + "y": 170 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 107.17899999999997, + "y": 170.872 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 113.94200000000001, + "y": 173.43599999999998 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 119.894, + "y": 177.54500000000002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 124.69, + "y": 182.95799999999997 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 128.05, + "y": 189.36200000000002 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 129.781, + "y": 196.38400000000001 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 147 + }, + "bounds": { + "#": 161 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 164 + }, + "constraintImpulse": { + "#": 165 + }, + "density": 0.001, + "force": { + "#": 166 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 7, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 167 + }, + "positionImpulse": { + "#": 168 + }, + "positionPrev": { + "#": 169 + }, + "render": { + "#": 170 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 172 + }, + "vertices": { + "#": 173 + } + }, + [ + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 162 + }, + "min": { + "#": 163 + } + }, + { + "x": 366.781, + "y": 330 + }, + { + "x": 307.219, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337, + "y": 300 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 171 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 366.781, + "y": 303.616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.05, + "y": 310.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.69, + "y": 317.04200000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 356.894, + "y": 322.455 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.942, + "y": 326.564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.179, + "y": 329.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 337, + "y": 330 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 329.821, + "y": 329.128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 323.058, + "y": 326.564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 317.106, + "y": 322.455 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 312.31, + "y": 317.04200000000003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 308.95, + "y": 310.638 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 307.219, + "y": 303.616 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 307.219, + "y": 296.384 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 308.95, + "y": 289.362 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 312.31, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 317.106, + "y": 277.545 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 323.058, + "y": 273.436 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 329.821, + "y": 270.872 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 337, + "y": 270 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 344.179, + "y": 270.872 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 350.942, + "y": 273.436 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 356.894, + "y": 277.545 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 361.69, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 365.05, + "y": 289.362 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 366.781, + "y": 296.384 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 201 + }, + "bounds": { + "#": 215 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 218 + }, + "constraintImpulse": { + "#": 219 + }, + "density": 0.001, + "force": { + "#": 220 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 9, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 221 + }, + "positionImpulse": { + "#": 222 + }, + "positionPrev": { + "#": 223 + }, + "render": { + "#": 224 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 226 + }, + "vertices": { + "#": 227 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 216 + }, + "min": { + "#": 217 + } + }, + { + "x": 423.781, + "y": 330 + }, + { + "x": 364.219, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 394, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 394, + "y": 300 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 225 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 423.781, + "y": 303.616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 422.05, + "y": 310.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 418.69, + "y": 317.04200000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 413.894, + "y": 322.455 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 407.942, + "y": 326.564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 401.179, + "y": 329.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 394, + "y": 330 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 386.821, + "y": 329.128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 380.058, + "y": 326.564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.106, + "y": 322.455 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 369.31, + "y": 317.04200000000003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 365.95, + "y": 310.638 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 364.219, + "y": 303.616 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 364.219, + "y": 296.384 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.95, + "y": 289.362 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 369.31, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 374.106, + "y": 277.545 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 380.058, + "y": 273.436 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 386.821, + "y": 270.872 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 394, + "y": 270 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 401.179, + "y": 270.872 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 407.942, + "y": 273.436 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 413.894, + "y": 277.545 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 418.69, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 422.05, + "y": 289.362 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 423.781, + "y": 296.384 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 255 + }, + "bounds": { + "#": 269 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 272 + }, + "constraintImpulse": { + "#": 273 + }, + "density": 0.001, + "force": { + "#": 274 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 11, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 275 + }, + "positionImpulse": { + "#": 276 + }, + "positionPrev": { + "#": 277 + }, + "render": { + "#": 278 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 280 + }, + "vertices": { + "#": 281 + } + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 270 + }, + "min": { + "#": 271 + } + }, + { + "x": 480.781, + "y": 330 + }, + { + "x": 421.219, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 451, + "y": 300 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 279 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.781, + "y": 303.616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 479.05, + "y": 310.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475.69, + "y": 317.04200000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 470.894, + "y": 322.455 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 464.942, + "y": 326.564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 458.179, + "y": 329.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 451, + "y": 330 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 443.821, + "y": 329.128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 437.058, + "y": 326.564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 431.106, + "y": 322.455 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 426.31, + "y": 317.04200000000003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 422.95, + "y": 310.638 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 421.219, + "y": 303.616 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 421.219, + "y": 296.384 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 422.95, + "y": 289.362 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 426.31, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 431.106, + "y": 277.545 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 437.058, + "y": 273.436 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 443.821, + "y": 270.872 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 451, + "y": 270 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 458.179, + "y": 270.872 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 464.942, + "y": 273.436 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 470.894, + "y": 277.545 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 475.69, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 479.05, + "y": 289.362 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 480.781, + "y": 296.384 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.984164, + "axes": { + "#": 309 + }, + "bounds": { + "#": 323 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 326 + }, + "constraintImpulse": { + "#": 327 + }, + "density": 0.001, + "force": { + "#": 328 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 13, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 329 + }, + "positionImpulse": { + "#": 330 + }, + "positionPrev": { + "#": 331 + }, + "render": { + "#": 332 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 334 + }, + "vertices": { + "#": 335 + } + }, + [ + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 324 + }, + "min": { + "#": 325 + } + }, + { + "x": 537.781, + "y": 330 + }, + { + "x": 478.219, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 508, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 508, + "y": 300 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 333 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 537.781, + "y": 303.616 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 536.05, + "y": 310.638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 532.69, + "y": 317.04200000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 527.894, + "y": 322.455 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 521.942, + "y": 326.564 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 515.179, + "y": 329.128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 508, + "y": 330 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 500.821, + "y": 329.128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 494.058, + "y": 326.564 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 488.106, + "y": 322.455 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 483.31, + "y": 317.04200000000003 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 479.95, + "y": 310.638 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 478.219, + "y": 303.616 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 478.219, + "y": 296.384 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 479.95, + "y": 289.362 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 483.31, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 488.106, + "y": 277.545 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 494.058, + "y": 273.436 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 500.821, + "y": 270.872 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 508, + "y": 270 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 515.179, + "y": 270.872 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 521.942, + "y": 273.436 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 527.894, + "y": 277.545 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 532.69, + "y": 282.95799999999997 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 536.05, + "y": 289.362 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 537.781, + "y": 296.384 + }, + [], + [ + { + "#": 364 + }, + { + "#": 368 + }, + { + "#": 372 + }, + { + "#": 376 + }, + { + "#": 380 + } + ], + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 6, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 365 + }, + "pointB": { + "#": 366 + }, + "render": { + "#": 367 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 280, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 8, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 369 + }, + "pointB": { + "#": 370 + }, + "render": { + "#": 371 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 337, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 10, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 373 + }, + "pointB": { + "#": 374 + }, + "render": { + "#": 375 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 394, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 12, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 377 + }, + "pointB": { + "#": 378 + }, + "render": { + "#": 379 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 451, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 14, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 381 + }, + "pointB": { + "#": 382 + }, + "render": { + "#": 383 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 508, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 385 + }, + "composites": { + "#": 701 + }, + "constraints": { + "#": 702 + }, + "id": 15, + "isModified": true, + "label": "Newtons Cradle", + "parent": null, + "type": "composite" + }, + [ + { + "#": 386 + }, + { + "#": 431 + }, + { + "#": 476 + }, + { + "#": 521 + }, + { + "#": 566 + }, + { + "#": 611 + }, + { + "#": 656 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 387 + }, + "bounds": { + "#": 398 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 401 + }, + "constraintImpulse": { + "#": 402 + }, + "density": 0.001, + "force": { + "#": 403 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 16, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 404 + }, + "positionImpulse": { + "#": 405 + }, + "positionPrev": { + "#": 406 + }, + "render": { + "#": 407 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 409 + }, + "vertices": { + "#": 410 + } + }, + [ + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 399 + }, + "min": { + "#": 400 + } + }, + { + "x": 159.75400000000002, + "y": 439.754 + }, + { + "x": 120.24599999999998, + "y": 400.246 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 140, + "y": 420 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 140, + "y": 420 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 408 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 159.75400000000002, + "y": 423.129 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 157.82, + "y": 429.08000000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 154.142, + "y": 434.14200000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 149.07999999999998, + "y": 437.82000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 143.12900000000002, + "y": 439.754 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 136.87099999999998, + "y": 439.754 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 130.92000000000002, + "y": 437.82000000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 125.858, + "y": 434.14200000000005 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 122.18, + "y": 429.08000000000004 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 120.24599999999998, + "y": 423.129 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 120.24599999999998, + "y": 416.871 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 122.18, + "y": 410.92 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 125.858, + "y": 405.858 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 130.92000000000002, + "y": 402.18 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 136.87099999999998, + "y": 400.246 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 143.12900000000002, + "y": 400.246 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 149.07999999999998, + "y": 402.18 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 154.142, + "y": 405.858 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 157.82, + "y": 410.92 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 159.75400000000002, + "y": 416.871 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 432 + }, + "bounds": { + "#": 443 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 446 + }, + "constraintImpulse": { + "#": 447 + }, + "density": 0.001, + "force": { + "#": 448 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 18, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 449 + }, + "positionImpulse": { + "#": 450 + }, + "positionPrev": { + "#": 451 + }, + "render": { + "#": 452 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 454 + }, + "vertices": { + "#": 455 + } + }, + [ + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 444 + }, + "min": { + "#": 445 + } + }, + { + "x": 337.754, + "y": 539.754 + }, + { + "x": 298.246, + "y": 500.246 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 318, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 318, + "y": 520 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 453 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 337.754, + "y": 523.129 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335.82, + "y": 529.08 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 332.142, + "y": 534.142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 327.08, + "y": 537.82 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.129, + "y": 539.754 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 314.871, + "y": 539.754 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 308.92, + "y": 537.82 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 303.858, + "y": 534.142 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 300.18, + "y": 529.08 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 298.246, + "y": 523.129 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 298.246, + "y": 516.871 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.18, + "y": 510.92 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 303.858, + "y": 505.858 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 308.92, + "y": 502.18 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 314.871, + "y": 500.246 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 321.129, + "y": 500.246 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 327.08, + "y": 502.18 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 332.142, + "y": 505.858 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 335.82, + "y": 510.92 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 337.754, + "y": 516.871 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 477 + }, + "bounds": { + "#": 488 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 491 + }, + "constraintImpulse": { + "#": 492 + }, + "density": 0.001, + "force": { + "#": 493 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 20, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 494 + }, + "positionImpulse": { + "#": 495 + }, + "positionPrev": { + "#": 496 + }, + "render": { + "#": 497 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 499 + }, + "vertices": { + "#": 500 + } + }, + [ + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 489 + }, + "min": { + "#": 490 + } + }, + { + "x": 375.754, + "y": 539.754 + }, + { + "x": 336.246, + "y": 500.246 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 356, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 356, + "y": 520 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 498 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375.754, + "y": 523.129 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 373.82, + "y": 529.08 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370.142, + "y": 534.142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 365.08, + "y": 537.82 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 359.129, + "y": 539.754 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 352.871, + "y": 539.754 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 346.92, + "y": 537.82 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 341.858, + "y": 534.142 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.18, + "y": 529.08 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 336.246, + "y": 523.129 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 336.246, + "y": 516.871 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 338.18, + "y": 510.92 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 341.858, + "y": 505.858 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 346.92, + "y": 502.18 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 352.871, + "y": 500.246 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 359.129, + "y": 500.246 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 365.08, + "y": 502.18 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 370.142, + "y": 505.858 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 373.82, + "y": 510.92 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 375.754, + "y": 516.871 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 522 + }, + "bounds": { + "#": 533 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 536 + }, + "constraintImpulse": { + "#": 537 + }, + "density": 0.001, + "force": { + "#": 538 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 22, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 539 + }, + "positionImpulse": { + "#": 540 + }, + "positionPrev": { + "#": 541 + }, + "render": { + "#": 542 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 544 + }, + "vertices": { + "#": 545 + } + }, + [ + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 534 + }, + "min": { + "#": 535 + } + }, + { + "x": 413.754, + "y": 539.754 + }, + { + "x": 374.246, + "y": 500.246 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 394, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 394, + "y": 520 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 543 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.754, + "y": 523.129 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.82, + "y": 529.08 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 408.142, + "y": 534.142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 403.08, + "y": 537.82 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 397.129, + "y": 539.754 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.871, + "y": 539.754 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.92, + "y": 537.82 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.858, + "y": 534.142 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 376.18, + "y": 529.08 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 374.246, + "y": 523.129 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.246, + "y": 516.871 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 376.18, + "y": 510.92 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.858, + "y": 505.858 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.92, + "y": 502.18 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.871, + "y": 500.246 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.129, + "y": 500.246 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 403.08, + "y": 502.18 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 408.142, + "y": 505.858 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.82, + "y": 510.92 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 413.754, + "y": 516.871 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 567 + }, + "bounds": { + "#": 578 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 581 + }, + "constraintImpulse": { + "#": 582 + }, + "density": 0.001, + "force": { + "#": 583 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 24, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 584 + }, + "positionImpulse": { + "#": 585 + }, + "positionPrev": { + "#": 586 + }, + "render": { + "#": 587 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 589 + }, + "vertices": { + "#": 590 + } + }, + [ + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 579 + }, + "min": { + "#": 580 + } + }, + { + "x": 451.754, + "y": 539.754 + }, + { + "x": 412.246, + "y": 500.246 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432, + "y": 520 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 588 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 451.754, + "y": 523.129 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 449.82, + "y": 529.08 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 446.142, + "y": 534.142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 441.08, + "y": 537.82 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 435.129, + "y": 539.754 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 428.871, + "y": 539.754 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 422.92, + "y": 537.82 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 417.858, + "y": 534.142 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.18, + "y": 529.08 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 412.246, + "y": 523.129 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 412.246, + "y": 516.871 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 414.18, + "y": 510.92 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 417.858, + "y": 505.858 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 422.92, + "y": 502.18 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 428.871, + "y": 500.246 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 435.129, + "y": 500.246 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 441.08, + "y": 502.18 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 446.142, + "y": 505.858 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 449.82, + "y": 510.92 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 451.754, + "y": 516.871 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 612 + }, + "bounds": { + "#": 623 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 626 + }, + "constraintImpulse": { + "#": 627 + }, + "density": 0.001, + "force": { + "#": 628 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 26, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 629 + }, + "positionImpulse": { + "#": 630 + }, + "positionPrev": { + "#": 631 + }, + "render": { + "#": 632 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 634 + }, + "vertices": { + "#": 635 + } + }, + [ + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 624 + }, + "min": { + "#": 625 + } + }, + { + "x": 489.754, + "y": 539.754 + }, + { + "x": 450.246, + "y": 500.246 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470, + "y": 520 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 633 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 489.754, + "y": 523.129 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 487.82, + "y": 529.08 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 484.142, + "y": 534.142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 479.08, + "y": 537.82 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 473.129, + "y": 539.754 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 466.871, + "y": 539.754 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 460.92, + "y": 537.82 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 455.858, + "y": 534.142 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 452.18, + "y": 529.08 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 450.246, + "y": 523.129 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 450.246, + "y": 516.871 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 452.18, + "y": 510.92 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 455.858, + "y": 505.858 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 460.92, + "y": 502.18 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 466.871, + "y": 500.246 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 473.129, + "y": 500.246 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 479.08, + "y": 502.18 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 484.142, + "y": 505.858 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 487.82, + "y": 510.92 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 489.754, + "y": 516.871 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.0755439999998, + "axes": { + "#": 657 + }, + "bounds": { + "#": 668 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 671 + }, + "constraintImpulse": { + "#": 672 + }, + "density": 0.001, + "force": { + "#": 673 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 28, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 674 + }, + "positionImpulse": { + "#": 675 + }, + "positionPrev": { + "#": 676 + }, + "render": { + "#": 677 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 679 + }, + "vertices": { + "#": 680 + } + }, + [ + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 669 + }, + "min": { + "#": 670 + } + }, + { + "x": 527.754, + "y": 539.754 + }, + { + "x": 488.246, + "y": 500.246 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 508, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 508, + "y": 520 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 678 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 527.754, + "y": 523.129 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525.82, + "y": 529.08 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 522.142, + "y": 534.142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 517.08, + "y": 537.82 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 511.129, + "y": 539.754 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 504.871, + "y": 539.754 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 498.92, + "y": 537.82 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 493.858, + "y": 534.142 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 490.18, + "y": 529.08 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 488.246, + "y": 523.129 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 488.246, + "y": 516.871 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 490.18, + "y": 510.92 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 493.858, + "y": 505.858 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 498.92, + "y": 502.18 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 504.871, + "y": 500.246 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 511.129, + "y": 500.246 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 517.08, + "y": 502.18 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 522.142, + "y": 505.858 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 525.82, + "y": 510.92 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 527.754, + "y": 516.871 + }, + [], + [ + { + "#": 703 + }, + { + "#": 707 + }, + { + "#": 711 + }, + { + "#": 715 + }, + { + "#": 719 + }, + { + "#": 723 + }, + { + "#": 727 + } + ], + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 17, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 704 + }, + "pointB": { + "#": 705 + }, + "render": { + "#": 706 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 280, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 19, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 708 + }, + "pointB": { + "#": 709 + }, + "render": { + "#": 710 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 318, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 21, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 712 + }, + "pointB": { + "#": 713 + }, + "render": { + "#": 714 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 356, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 23, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 716 + }, + "pointB": { + "#": 717 + }, + "render": { + "#": 718 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 394, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 25, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 720 + }, + "pointB": { + "#": 721 + }, + "render": { + "#": 722 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 432, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 27, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 724 + }, + "pointB": { + "#": 725 + }, + "render": { + "#": 726 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 470, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 29, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 728 + }, + "pointB": { + "#": 729 + }, + "render": { + "#": 730 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 508, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 732 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 733 + }, + "pointB": "", + "render": { + "#": 734 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/newtonsCradle/newtonsCradle-10.json b/tests/browser/refs/newtonsCradle/newtonsCradle-10.json new file mode 100644 index 00000000..5374b8fd --- /dev/null +++ b/tests/browser/refs/newtonsCradle/newtonsCradle-10.json @@ -0,0 +1,6723 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 747 + }, + "gravity": { + "#": 751 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 94 + }, + { + "#": 393 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 371 + }, + "constraints": { + "#": 372 + }, + "id": 4, + "isModified": false, + "label": "Newtons Cradle", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 151 + }, + { + "#": 206 + }, + { + "#": 261 + }, + { + "#": 316 + } + ], + { + "angle": 2.9481262646091003e-21, + "anglePrev": 2.601438243756468e-21, + "angularSpeed": 3.466880208526321e-22, + "angularVelocity": 3.4668802085263226e-22, + "area": 2799.984164, + "axes": { + "#": 97 + }, + "bounds": { + "#": 111 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": 0.001, + "force": { + "#": 116 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 5, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "region": { + "#": 120 + }, + "render": { + "#": 121 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 2.640753288112704, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 123 + }, + "vertices": { + "#": 124 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": -0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": -0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": -0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": -0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": -0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": -0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.12057913941159967, + "y": -0.9927037177016906 + }, + { + "x": 0.3545000156212773, + "y": -0.93505600844255 + }, + { + "x": 0.5681238392986281, + "y": -0.8229430741069437 + }, + { + "x": 0.7484763992216226, + "y": -0.6631614281668033 + }, + { + "x": 0.8855173827763886, + "y": -0.4646062470531956 + }, + { + "x": 0.9709343487684781, + "y": -0.239345963787843 + }, + { + "x": 1, + "y": 2.9481262646091003e-21 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 143.1068743566276, + "y": 240.87360051262368 + }, + { + "x": 83.54487435662749, + "y": 180.87360051262368 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 113.3258743566275, + "y": 210.87360051262368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 111.88884772451912, + "y": 208.6677416512677 + }, + { + "endCol": 2, + "endRow": 5, + "id": "1,2,3,5", + "startCol": 1, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 122 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.2846883932132727, + "y": 2.3071960603774357 + }, + [ + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 143.1068743566276, + "y": 214.48960051262367 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 141.3758743566276, + "y": 221.51160051262366 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 138.0158743566276, + "y": 227.9156005126237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 133.21987435662757, + "y": 233.32860051262367 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 127.2678743566275, + "y": 237.4376005126237 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120.50487435662747, + "y": 240.00160051262367 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 113.3258743566275, + "y": 240.87360051262368 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 106.14687435662752, + "y": 240.00160051262367 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 99.38387435662749, + "y": 237.4376005126237 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 93.43187435662749, + "y": 233.32860051262367 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 88.6358743566275, + "y": 227.9156005126237 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 85.27587435662748, + "y": 221.51160051262366 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 83.54487435662749, + "y": 214.48960051262367 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 83.54487435662749, + "y": 207.2576005126237 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 85.27587435662748, + "y": 200.2356005126237 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 88.6358743566275, + "y": 193.83160051262365 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 93.43187435662749, + "y": 188.4186005126237 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 99.38387435662749, + "y": 184.30960051262366 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 106.14687435662752, + "y": 181.7456005126237 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 113.3258743566275, + "y": 180.87360051262368 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 120.50487435662747, + "y": 181.7456005126237 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 127.2678743566275, + "y": 184.30960051262366 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 133.21987435662757, + "y": 188.4186005126237 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 138.0158743566276, + "y": 193.83160051262365 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 141.3758743566276, + "y": 200.2356005126237 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 143.1068743566276, + "y": 207.2576005126237 + }, + { + "angle": 4.012191199404054e-11, + "anglePrev": 3.5665704849666716e-11, + "angularSpeed": 4.456207144373826e-12, + "angularVelocity": 4.456207144373827e-12, + "area": 2799.984164, + "axes": { + "#": 152 + }, + "bounds": { + "#": 166 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 7, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.33530713090848, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.9709343487588747, + "y": -0.23934596382679874 + }, + { + "x": -0.8855173827577477, + "y": -0.4646062470887242 + }, + { + "x": -0.7484763991950152, + "y": -0.6631614281968333 + }, + { + "x": -0.56812383926561, + "y": -0.8229430741297379 + }, + { + "x": -0.3545000155837611, + "y": -0.9350560084567732 + }, + { + "x": -0.1205791393717705, + "y": -0.9927037177065285 + }, + { + "x": 0.12057913945142884, + "y": -0.9927037176968527 + }, + { + "x": 0.3545000156587935, + "y": -0.9350560084283268 + }, + { + "x": 0.5681238393316461, + "y": -0.8229430740841495 + }, + { + "x": 0.74847639924823, + "y": -0.6631614281367734 + }, + { + "x": 0.8855173827950295, + "y": -0.46460624701766695 + }, + { + "x": 0.9709343487780814, + "y": -0.23934596374888728 + }, + { + "x": 1, + "y": 4.012191199404054e-11 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 361.62203216186987, + "y": 330.0592419506993 + }, + { + "x": 302.0600321615793, + "y": 270.0592419506993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 331.8410321617246, + "y": 300.05924195069935 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 331.76636140303356, + "y": 300.1074049814094 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.07142913280523544, + "y": 0.07754374586477297 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 361.6220321615793, + "y": 303.6752419518942 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 359.8910321612978, + "y": 310.69724195182465 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 356.5310321610408, + "y": 317.10124195169 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 351.73503216082366, + "y": 322.51424195149747 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 345.78303216065876, + "y": 326.62324195125865 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 339.0200321605559, + "y": 329.18724195098724 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 331.8410321605209, + "y": 330.0592419506993 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 324.66203216055595, + "y": 329.1872419504112 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 317.89903216065875, + "y": 326.62324195013986 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.94703216082365, + "y": 322.51424194990096 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 307.1510321610408, + "y": 317.10124194970865 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 303.7910321612978, + "y": 310.69724194957377 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 302.0600321615793, + "y": 303.67524194950437 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.06003216186986, + "y": 296.4432419495044 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 303.79103216215134, + "y": 289.4212419495738 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 307.15103216240834, + "y": 283.0172419497086 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 311.9470321626255, + "y": 277.604241949901 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 317.8990321627904, + "y": 273.4952419501398 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 324.66203216289324, + "y": 270.9312419504112 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 331.84103216292823, + "y": 270.0592419506993 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 339.0200321628932, + "y": 270.93124195098727 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 345.7830321627904, + "y": 273.4952419512586 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 351.7350321626255, + "y": 277.6042419514975 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 356.53103216240834, + "y": 283.0172419516899 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 359.89103216215136, + "y": 289.4212419518247 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 361.62203216186987, + "y": 296.4432419518942 + }, + { + "angle": 1.4119577442422716e-14, + "anglePrev": 1.255136299954647e-14, + "angularSpeed": 1.5682144428762465e-15, + "angularVelocity": 1.5682144428762463e-15, + "area": 2799.984164, + "axes": { + "#": 207 + }, + "bounds": { + "#": 221 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 224 + }, + "constraintImpulse": { + "#": 225 + }, + "density": 0.001, + "force": { + "#": 226 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 9, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 227 + }, + "positionImpulse": { + "#": 228 + }, + "positionPrev": { + "#": 229 + }, + "region": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.32934464405517333, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + } + ], + { + "x": -0.9709343487684751, + "y": -0.23934596378785675 + }, + { + "x": -0.8855173827763816, + "y": -0.4646062470532081 + }, + { + "x": -0.7484763992216136, + "y": -0.6631614281668143 + }, + { + "x": -0.5681238392986161, + "y": -0.8229430741069517 + }, + { + "x": -0.3545000156212643, + "y": -0.935056008442555 + }, + { + "x": -0.12057913941158568, + "y": -0.9927037177016926 + }, + { + "x": 0.12057913941161366, + "y": -0.9927037177016886 + }, + { + "x": 0.3545000156212903, + "y": -0.935056008442545 + }, + { + "x": 0.5681238392986401, + "y": -0.8229430741069357 + }, + { + "x": 0.7484763992216316, + "y": -0.6631614281667924 + }, + { + "x": 0.8855173827763956, + "y": -0.4646062470531831 + }, + { + "x": 0.9709343487684811, + "y": -0.23934596378782927 + }, + { + "x": 1, + "y": 1.4119577442422716e-14 + }, + { + "max": { + "#": 222 + }, + "min": { + "#": 223 + } + }, + { + "x": 422.26650970869235, + "y": 330.12049850454804 + }, + { + "x": 362.70450970869234, + "y": 270.12049850454804 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 392.48550970869246, + "y": 300.12049850454804 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 392.46352136950867, + "y": 300.17038615210595 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.021033077816696277, + "y": 0.07633790970515975 + }, + [ + { + "#": 235 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 422.26650970869235, + "y": 303.73649850454854 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420.53550970869236, + "y": 310.75849850454847 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 417.17550970869206, + "y": 317.1624985045486 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 412.37950970869184, + "y": 322.5754985045485 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 406.42750970869184, + "y": 326.684498504548 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 399.6645097086918, + "y": 329.24849850454797 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 392.48550970869184, + "y": 330.12049850454804 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 385.30650970869186, + "y": 329.24849850454797 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 378.54350970869183, + "y": 326.684498504548 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 372.59150970869183, + "y": 322.57549850454745 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 367.79550970869207, + "y": 317.16249850454756 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 364.43550970869234, + "y": 310.75849850454745 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 362.70450970869234, + "y": 303.7364985045475 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 362.70450970869234, + "y": 296.50449850454754 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 364.43550970869234, + "y": 289.4824985045475 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.79550970869263, + "y": 283.0784985045475 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 372.59150970869285, + "y": 277.6654985045475 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 378.54350970869285, + "y": 273.55649850454796 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 385.3065097086929, + "y": 270.992498504548 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 392.48550970869286, + "y": 270.12049850454804 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 399.66450970869283, + "y": 270.992498504548 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 406.42750970869287, + "y": 273.55649850454796 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 412.37950970869286, + "y": 277.6654985045485 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 417.17550970869263, + "y": 283.0784985045485 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 420.53550970869236, + "y": 289.4824985045485 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 422.26650970869235, + "y": 296.50449850454856 + }, + { + "angle": -1.965257761098282e-14, + "anglePrev": -1.7469831269272248e-14, + "angularSpeed": 2.182746343607949e-15, + "angularVelocity": -2.1827463414395206e-15, + "area": 2799.984164, + "axes": { + "#": 262 + }, + "bounds": { + "#": 276 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 11, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.3293446437789189, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": -0.9709343487684831, + "y": -0.23934596378782402 + }, + { + "x": -0.8855173827763976, + "y": -0.4646062470531781 + }, + { + "x": -0.7484763992216356, + "y": -0.6631614281667884 + }, + { + "x": -0.5681238392986441, + "y": -0.8229430741069327 + }, + { + "x": -0.3545000156212958, + "y": -0.935056008442543 + }, + { + "x": -0.12057913941161916, + "y": -0.9927037177016886 + }, + { + "x": 0.12057913941158019, + "y": -0.9927037177016926 + }, + { + "x": 0.3545000156212588, + "y": -0.935056008442557 + }, + { + "x": 0.5681238392986121, + "y": -0.8229430741069547 + }, + { + "x": 0.7484763992216096, + "y": -0.6631614281668183 + }, + { + "x": 0.8855173827763796, + "y": -0.4646062470532131 + }, + { + "x": 0.9709343487684731, + "y": -0.239345963787862 + }, + { + "x": 1, + "y": -1.9652577610982828e-14 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 482.2954903304432, + "y": 330.12049850425166 + }, + { + "x": 422.7334903304432, + "y": 270.12049850425166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.51449033044315, + "y": 300.1204985042515 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 452.53647866545225, + "y": 300.17038615183725 + }, + { + "endCol": 10, + "endRow": 6, + "id": "8,10,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.021033073617275022, + "y": 0.07633790967668119 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 482.2954903304432, + "y": 303.73649850425113 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480.5644903304432, + "y": 310.75849850425107 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 477.2044903304437, + "y": 317.1624985042512 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 472.4084903304437, + "y": 322.5754985042511 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 466.4564903304437, + "y": 326.6844985042511 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 459.6934903304437, + "y": 329.2484985042516 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 452.5144903304437, + "y": 330.12049850425166 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 445.33549033044375, + "y": 329.2484985042516 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 438.5724903304437, + "y": 326.68449850425213 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 432.6204903304437, + "y": 322.5754985042521 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 427.8244903304437, + "y": 317.1624985042522 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 424.4644903304432, + "y": 310.7584985042521 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 422.7334903304432, + "y": 303.73649850425215 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 422.7334903304432, + "y": 296.5044985042522 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 424.4644903304432, + "y": 289.48249850425213 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 427.8244903304427, + "y": 283.07849850425214 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 432.6204903304427, + "y": 277.6654985042521 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 438.5724903304427, + "y": 273.5564985042521 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 445.3354903304427, + "y": 270.9924985042516 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 452.5144903304427, + "y": 270.12049850425166 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 459.69349033044267, + "y": 270.9924985042516 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 466.4564903304427, + "y": 273.55649850425107 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 472.4084903304427, + "y": 277.6654985042511 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 477.2044903304427, + "y": 283.0784985042511 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 480.5644903304432, + "y": 289.4824985042511 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 482.2954903304432, + "y": 296.50449850425116 + }, + { + "angle": -4.009808260244804e-11, + "anglePrev": -3.5644522109231926e-11, + "angularSpeed": 4.4535604932161134e-12, + "angularVelocity": -4.453560493216116e-12, + "area": 2799.984164, + "axes": { + "#": 317 + }, + "bounds": { + "#": 331 + }, + "circleRadius": 30, + "collisionFilter": { + "#": 334 + }, + "constraintImpulse": { + "#": 335 + }, + "density": 0.001, + "force": { + "#": 336 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 13, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.35714487705224035, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.799984164, + "motion": 0, + "parent": null, + "position": { + "#": 337 + }, + "positionImpulse": { + "#": 338 + }, + "positionPrev": { + "#": 339 + }, + "region": { + "#": 340 + }, + "render": { + "#": 341 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.33530713183014377, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 343 + }, + "vertices": { + "#": 344 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + } + ], + { + "x": -0.9709343487780754, + "y": -0.2393459637489104 + }, + { + "x": -0.8855173827950183, + "y": -0.46460624701768805 + }, + { + "x": -0.748476399248214, + "y": -0.6631614281367914 + }, + { + "x": -0.5681238393316266, + "y": -0.822943074084163 + }, + { + "x": -0.3545000156587712, + "y": -0.9350560084283353 + }, + { + "x": -0.12057913945140518, + "y": -0.9927037176968557 + }, + { + "x": 0.12057913937179417, + "y": -0.9927037177065255 + }, + { + "x": 0.3545000155837834, + "y": -0.9350560084567647 + }, + { + "x": 0.5681238392656296, + "y": -0.8229430741297243 + }, + { + "x": 0.7484763991950312, + "y": -0.6631614281968153 + }, + { + "x": 0.8855173827577588, + "y": -0.46460624708870313 + }, + { + "x": 0.9709343487588807, + "y": -0.23934596382677562 + }, + { + "x": 1, + "y": -4.009808260244804e-11 + }, + { + "max": { + "#": 332 + }, + "min": { + "#": 333 + } + }, + { + "x": 542.9399677992988, + "y": 330.0592419517095 + }, + { + "x": 483.37796779900884, + "y": 270.0592419517095 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 513.1589677991535, + "y": 300.05924195170945 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 513.2336385620184, + "y": 300.1074049823244 + }, + { + "endCol": 11, + "endRow": 6, + "id": "10,11,5,6", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 342 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.07142913700363351, + "y": 0.07754374596180469 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 542.9399677992988, + "y": 303.67524195051533 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 541.2089677995801, + "y": 310.69724195058467 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 537.848967799837, + "y": 317.1012419507195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 533.0529678000539, + "y": 322.5142419509117 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 527.1009678002187, + "y": 326.6232419511504 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 520.3379678003215, + "y": 329.1872419514215 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 513.1589678003564, + "y": 330.0592419517095 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 505.97996780032173, + "y": 329.18724195199735 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 499.21696780021887, + "y": 326.62324195226853 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 493.26496780005414, + "y": 322.5142419525072 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 488.4689677998371, + "y": 317.1012419526996 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 485.10896779958034, + "y": 310.6972419528342 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 483.37796779929863, + "y": 303.67524195290366 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 483.37796779900884, + "y": 296.4432419529037 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 485.1089677987271, + "y": 289.42124195283424 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 488.4689677984704, + "y": 283.0172419526995 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 493.26496779825334, + "y": 277.6042419525072 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 499.2169677980886, + "y": 273.4952419522685 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 505.9799677979858, + "y": 270.9312419519974 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 513.1589677979506, + "y": 270.0592419517095 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 520.3379677979855, + "y": 270.93124195142155 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 527.1009677980884, + "y": 273.4952419511504 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 533.0529677982531, + "y": 277.6042419509117 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 537.8489677984701, + "y": 283.01724195071944 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 541.2089677987268, + "y": 289.4212419505847 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 542.9399677990082, + "y": 296.44324195051536 + }, + [], + [ + { + "#": 373 + }, + { + "#": 377 + }, + { + "#": 381 + }, + { + "#": 385 + }, + { + "#": 389 + } + ], + { + "angleB": 2.9481262646091003e-21, + "angularStiffness": 0, + "bodyB": null, + "id": 6, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 374 + }, + "pointB": { + "#": 375 + }, + "render": { + "#": 376 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 280, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 4.012191199404054e-11, + "angularStiffness": 0, + "bodyB": null, + "id": 8, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 378 + }, + "pointB": { + "#": 379 + }, + "render": { + "#": 380 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 337, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 1.4119577442422716e-14, + "angularStiffness": 0, + "bodyB": null, + "id": 10, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 382 + }, + "pointB": { + "#": 383 + }, + "render": { + "#": 384 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 394, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": -1.965257761071177e-14, + "angularStiffness": 0, + "bodyB": null, + "id": 12, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 386 + }, + "pointB": { + "#": 387 + }, + "render": { + "#": 388 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 451, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": -4.009808260244804e-11, + "angularStiffness": 0, + "bodyB": null, + "id": 14, + "label": "Constraint", + "length": 200, + "pointA": { + "#": 390 + }, + "pointB": { + "#": 391 + }, + "render": { + "#": 392 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 508, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 394 + }, + "composites": { + "#": 717 + }, + "constraints": { + "#": 718 + }, + "id": 15, + "isModified": false, + "label": "Newtons Cradle", + "parent": null, + "type": "composite" + }, + [ + { + "#": 395 + }, + { + "#": 441 + }, + { + "#": 487 + }, + { + "#": 533 + }, + { + "#": 579 + }, + { + "#": 625 + }, + { + "#": 671 + } + ], + { + "angle": -1.8210355516150483e-22, + "anglePrev": -1.4742348104190818e-22, + "angularSpeed": 1.733266588574624e-23, + "angularVelocity": -3.4680074119596646e-23, + "area": 1236.0755439999998, + "axes": { + "#": 396 + }, + "bounds": { + "#": 407 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 410 + }, + "constraintImpulse": { + "#": 411 + }, + "density": 0.001, + "force": { + "#": 412 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 16, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 413 + }, + "positionImpulse": { + "#": 414 + }, + "positionPrev": { + "#": 415 + }, + "region": { + "#": 416 + }, + "render": { + "#": 417 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 2.91237353525397, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 419 + }, + "vertices": { + "#": 420 + } + }, + [ + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "x": -0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": -0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": -0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": -0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": -1.8210355516150483e-22, + "y": -1 + }, + { + "x": 0.3090752315221116, + "y": -0.9510375919276551 + }, + { + "x": 0.5878105367943046, + "y": -0.808998623505375 + }, + { + "x": 0.808998623505375, + "y": -0.5878105367943046 + }, + { + "x": 0.9510375919276551, + "y": -0.3090752315221116 + }, + { + "x": 1, + "y": -1.8210355516150483e-22 + }, + { + "max": { + "#": 408 + }, + "min": { + "#": 409 + } + }, + { + "x": 170.97479412298355, + "y": 454.8696744059192 + }, + { + "x": 131.4667941229835, + "y": 415.3616744059192 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 151.22079412298353, + "y": 435.11567440591926 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 150.05027822318, + "y": 432.45651688702594 + }, + { + "endCol": 3, + "endRow": 9, + "id": "2,3,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 418 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.0988882897014776, + "y": 2.689813120548706 + }, + [ + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170.97479412298355, + "y": 438.2446744059192 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 169.04079412298353, + "y": 444.19567440591925 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.36279412298353, + "y": 449.25767440591926 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160.30079412298352, + "y": 452.93567440591926 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 154.34979412298355, + "y": 454.8696744059192 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 148.09179412298352, + "y": 454.8696744059192 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 142.14079412298355, + "y": 452.93567440591926 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 137.07879412298354, + "y": 449.25767440591926 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 133.40079412298354, + "y": 444.19567440591925 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 131.4667941229835, + "y": 438.2446744059192 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 131.4667941229835, + "y": 431.9866744059192 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 133.40079412298354, + "y": 426.0356744059192 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 137.07879412298354, + "y": 420.9736744059192 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 142.14079412298355, + "y": 417.2956744059192 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 148.09179412298352, + "y": 415.3616744059192 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 154.34979412298355, + "y": 415.3616744059192 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 160.30079412298352, + "y": 417.2956744059192 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 165.36279412298353, + "y": 420.9736744059192 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 169.04079412298353, + "y": 426.0356744059192 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 170.97479412298355, + "y": 431.9866744059192 + }, + { + "angle": 5.313625844843808e-7, + "anglePrev": 3.6239889378030043e-7, + "angularSpeed": 1.679110413917467e-7, + "angularVelocity": 1.6791104139174675e-7, + "area": 1236.0755439999998, + "axes": { + "#": 442 + }, + "bounds": { + "#": 453 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 456 + }, + "constraintImpulse": { + "#": 457 + }, + "density": 0.001, + "force": { + "#": 458 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 18, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 459 + }, + "positionImpulse": { + "#": 460 + }, + "positionPrev": { + "#": 461 + }, + "region": { + "#": 462 + }, + "render": { + "#": 463 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.2774340262886231, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 465 + }, + "vertices": { + "#": 466 + } + }, + [ + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": -0.9510374276965073, + "y": -0.3090757368678607 + }, + { + "x": -0.8089983111647348, + "y": -0.5878109666658211 + }, + { + "x": -0.5878101069226225, + "y": -0.8089989358457867 + }, + { + "x": -0.3090747261762752, + "y": -0.9510377561585346 + }, + { + "x": 5.313625844843559e-7, + "y": -0.9999999999998589 + }, + { + "x": 0.3090757368678607, + "y": -0.9510374276965073 + }, + { + "x": 0.5878109666658211, + "y": -0.8089983111647348 + }, + { + "x": 0.8089989358457867, + "y": -0.5878101069226225 + }, + { + "x": 0.9510377561585346, + "y": -0.3090747261762752 + }, + { + "x": 0.9999999999998589, + "y": 5.313625844843559e-7 + }, + { + "max": { + "#": 454 + }, + "min": { + "#": 455 + } + }, + { + "x": 333.9726651920808, + "y": 539.8879317708628 + }, + { + "x": 294.4622974492453, + "y": 500.2874837208271 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 314.216299111876, + "y": 520.0414853834577 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 314.21686875185753, + "y": 520.0415290792545 + }, + { + "endCol": 6, + "endRow": 11, + "id": "6,6,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 464 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004861627306809169, + "y": -0.000043692910708159616 + }, + [ + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 333.9702974492398, + "y": 523.1704958799941 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 332.03629428710127, + "y": 529.1214948523381 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.3582915973444, + "y": 534.1834928979857 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 323.2962896429935, + "y": 537.8614902082277 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 317.34528861533914, + "y": 539.7954870460886 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 311.08728861533996, + "y": 539.7954837208217 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 305.1362896429961, + "y": 537.8614805586832 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 300.07429159734846, + "y": 534.1834778689262 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 296.3962942871063, + "y": 529.1214759145756 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 294.4622974492453, + "y": 523.170474886921 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 294.46230077451236, + "y": 516.9124748869218 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 296.3963039366509, + "y": 510.9614759145778 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 300.07430662640775, + "y": 505.8994778689302 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 305.1363085807587, + "y": 502.22148055868803 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 311.087309608413, + "y": 500.2874837208271 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 317.3453096084122, + "y": 500.2874870460941 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 323.2963085807561, + "y": 502.22149020823264 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 328.3583066264037, + "y": 505.89949289798943 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 332.0363039366459, + "y": 510.9614948523404 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 333.9703007745069, + "y": 516.9124958799948 + }, + { + "angle": -3.5873880815014555e-7, + "anglePrev": -2.360070092269171e-7, + "angularSpeed": 1.2668734089656822e-7, + "angularVelocity": -1.2444203660222337e-7, + "area": 1236.0755439999998, + "axes": { + "#": 488 + }, + "bounds": { + "#": 499 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 502 + }, + "constraintImpulse": { + "#": 503 + }, + "density": 0.001, + "force": { + "#": 504 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 20, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 505 + }, + "positionImpulse": { + "#": 506 + }, + "positionPrev": { + "#": 507 + }, + "region": { + "#": 508 + }, + "render": { + "#": 509 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.2775324551060733, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 511 + }, + "vertices": { + "#": 512 + } + }, + [ + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + } + ], + { + "x": -0.9510377028048743, + "y": -0.3090748903479994 + }, + { + "x": -0.8089988343757745, + "y": -0.587810246575065 + }, + { + "x": -0.587810827013469, + "y": -0.8089984126348718 + }, + { + "x": -0.30907557269618385, + "y": -0.9510374810503139 + }, + { + "x": -3.5873880815013787e-7, + "y": -0.9999999999999358 + }, + { + "x": 0.3090748903479994, + "y": -0.9510377028048743 + }, + { + "x": 0.587810246575065, + "y": -0.8089988343757745 + }, + { + "x": 0.8089984126348718, + "y": -0.587810827013469 + }, + { + "x": 0.9510374810503139, + "y": -0.30907557269618385 + }, + { + "x": 0.9999999999999358, + "y": -3.5873880815013787e-7 + }, + { + "max": { + "#": 500 + }, + "min": { + "#": 501 + } + }, + { + "x": 373.47106159327035, + "y": 539.920452046199 + }, + { + "x": 333.9596722467691, + "y": 500.3198937457017 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 353.71367336926164, + "y": 520.0738948681944 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 353.71717181557676, + "y": 520.0738268848745 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 510 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004860976034251507, + "y": 0.00006798332356083847 + }, + [ + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 373.46767449175417, + "y": 523.2028877816679 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 371.53367662660884, + "y": 529.1538884754683 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 367.8556784425449, + "y": 534.2158897949092 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 362.79367976198665, + "y": 537.893891610845 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 356.84268045578784, + "y": 539.8278937456995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 350.58468045578815, + "y": 539.8278959906869 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 344.6336797619879, + "y": 537.8938981255417 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 339.5716784425468, + "y": 534.2158999414778 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 335.89367662661124, + "y": 529.1539012609194 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 333.95967449175663, + "y": 523.2029019547207 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 333.9596722467691, + "y": 516.944901954721 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 335.89367011191445, + "y": 510.99390126092044 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 339.5716682959784, + "y": 505.93189994147934 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 344.63366697653663, + "y": 502.2538981255438 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 350.58466628273544, + "y": 500.3198959906892 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 356.84266628273514, + "y": 500.3198937457017 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 362.7936669765354, + "y": 502.253891610847 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 367.8556682959765, + "y": 505.93188979491094 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 371.53367011191204, + "y": 510.9938884754692 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 373.46767224676665, + "y": 516.9448877816682 + }, + { + "angle": 4.299114391772231e-10, + "anglePrev": 2.0009799022396918e-10, + "angularSpeed": 2.120552085077259e-10, + "angularVelocity": 2.2233342025813136e-10, + "area": 1236.0755439999998, + "axes": { + "#": 534 + }, + "bounds": { + "#": 545 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 548 + }, + "constraintImpulse": { + "#": 549 + }, + "density": 0.001, + "force": { + "#": 550 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 22, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 551 + }, + "positionImpulse": { + "#": 552 + }, + "positionPrev": { + "#": 553 + }, + "region": { + "#": 554 + }, + "render": { + "#": 555 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.27759315763008724, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 557 + }, + "vertices": { + "#": 558 + } + }, + [ + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + } + ], + { + "x": -0.9510375917947803, + "y": -0.30907523193097347 + }, + { + "x": -0.8089986232526685, + "y": -0.5878105371421022 + }, + { + "x": -0.587810536446507, + "y": -0.8089986237580815 + }, + { + "x": -0.3090752311132497, + "y": -0.95103759206053 + }, + { + "x": 4.299114391772231e-10, + "y": -1 + }, + { + "x": 0.30907523193097347, + "y": -0.9510375917947803 + }, + { + "x": 0.5878105371421022, + "y": -0.8089986232526685 + }, + { + "x": 0.8089986237580815, + "y": -0.587810536446507 + }, + { + "x": 0.95103759206053, + "y": -0.3090752311132497 + }, + { + "x": 1, + "y": 4.299114391772231e-10 + }, + { + "max": { + "#": 546 + }, + "min": { + "#": 547 + } + }, + { + "x": 412.96388930350986, + "y": 539.9368049147841 + }, + { + "x": 373.4547949770601, + "y": 500.33630211304956 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.20988930216464, + "y": 520.0903021143945 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 393.20697110214246, + "y": 520.0903403660731 + }, + { + "endCol": 8, + "endRow": 11, + "id": "7,8,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 556 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004859966396793425, + "y": -0.00003825167766535742 + }, + [ + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 412.96388930081946, + "y": 523.2193021228871 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 411.0298892982611, + "y": 529.1703021220559 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.3518892960848, + "y": 534.2323021204744 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.2898892945036, + "y": 537.9103021182985 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 396.3388892936722, + "y": 539.8443021157399 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 390.08088929367216, + "y": 539.8443021130496 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.12988929450364, + "y": 537.910302110491 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 379.0678892960848, + "y": 534.2323021083151 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 375.3898892982611, + "y": 529.1703021067336 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 373.4558893008194, + "y": 523.2193021059023 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 373.4558893035098, + "y": 516.9613021059023 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 375.3898893060682, + "y": 511.0103021067338 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.0678893082445, + "y": 505.9483021083149 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 384.12988930982567, + "y": 502.27030211049123 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 390.0808893106571, + "y": 500.33630211304956 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 396.3388893106571, + "y": 500.33630211573995 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 402.28988930982564, + "y": 502.27030211829833 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 407.3518893082445, + "y": 505.94830212047464 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 411.0298893060682, + "y": 511.0103021220558 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 412.96388930350986, + "y": 516.9613021228871 + }, + { + "angle": -7.797744072331507e-8, + "anglePrev": -5.637745267043902e-8, + "angularSpeed": 1.7751342347461413e-8, + "angularVelocity": -1.9673598121008648e-8, + "area": 1236.0755439999998, + "axes": { + "#": 580 + }, + "bounds": { + "#": 591 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 594 + }, + "constraintImpulse": { + "#": 595 + }, + "density": 0.001, + "force": { + "#": 596 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 24, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 597 + }, + "positionImpulse": { + "#": 598 + }, + "positionPrev": { + "#": 599 + }, + "region": { + "#": 600 + }, + "render": { + "#": 601 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.2775664485831968, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 603 + }, + "vertices": { + "#": 604 + } + }, + [ + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + } + ], + { + "x": -0.951037616028548, + "y": -0.3090751573626331 + }, + { + "x": -0.8089986693413338, + "y": -0.5878104737106605 + }, + { + "x": -0.5878105998779448, + "y": -0.8089985776694111 + }, + { + "x": -0.309075305681588, + "y": -0.9510375678267567 + }, + { + "x": -7.797744072331498e-8, + "y": -0.999999999999997 + }, + { + "x": 0.3090751573626331, + "y": -0.951037616028548 + }, + { + "x": 0.5878104737106605, + "y": -0.8089986693413338 + }, + { + "x": 0.8089985776694111, + "y": -0.5878105998779448 + }, + { + "x": 0.9510375678267567, + "y": -0.309075305681588 + }, + { + "x": 0.999999999999997, + "y": -7.797744072331498e-8 + }, + { + "max": { + "#": 592 + }, + "min": { + "#": 593 + } + }, + { + "x": 452.4643581844648, + "y": 539.9371994856117 + }, + { + "x": 412.95132737801805, + "y": 500.33671234896536 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.70532762200935, + "y": 520.0907125929565 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 432.7105384921203, + "y": 520.0907337669354 + }, + { + "endCol": 9, + "endRow": 11, + "id": "8,9,10,11", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 602 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004859731402291345, + "y": -0.000021174764242459787 + }, + [ + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 452.4593278660009, + "y": 523.2197110525902 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450.5253283300446, + "y": 529.1707112033984 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 446.8473287247665, + "y": 534.2327114901994 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 441.7853290115673, + "y": 537.9107118849214 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 435.83432916237587, + "y": 539.8447123489651 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 429.5763291623758, + "y": 539.8447128369479 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 423.62532901156743, + "y": 537.9107133009916 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 418.56332872476656, + "y": 534.2327136957136 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 414.8853283300447, + "y": 529.1707139825146 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 412.95132786600095, + "y": 523.2197141333228 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 412.95132737801805, + "y": 516.9617141333227 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 414.8853269139743, + "y": 511.01071398251474 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 418.5633265192524, + "y": 505.9487136957139 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 423.62532623245164, + "y": 502.270713300992 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 429.57632608164306, + "y": 500.33671283694827 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 435.8343260816431, + "y": 500.33671234896536 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 441.7853262324515, + "y": 502.27071188492164 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 446.84732651925236, + "y": 505.94871149019974 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 450.52532691397425, + "y": 511.01071120339896 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 452.459327378018, + "y": 516.9617110525902 + }, + { + "angle": -9.771501363490808e-8, + "anglePrev": -7.066885695709218e-8, + "angularSpeed": 2.1023812652081323e-8, + "angularVelocity": -2.706211340932799e-8, + "area": 1236.0755439999998, + "axes": { + "#": 626 + }, + "bounds": { + "#": 637 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 640 + }, + "constraintImpulse": { + "#": 641 + }, + "density": 0.001, + "force": { + "#": 642 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 26, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 643 + }, + "positionImpulse": { + "#": 644 + }, + "positionPrev": { + "#": 645 + }, + "region": { + "#": 646 + }, + "render": { + "#": 647 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.27754762454512477, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 649 + }, + "vertices": { + "#": 650 + } + }, + [ + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + } + ], + { + "x": -0.9510376221289412, + "y": -0.3090751385914588 + }, + { + "x": -0.8089986809432856, + "y": -0.5878104577429899 + }, + { + "x": -0.5878106158456133, + "y": -0.8089985660674566 + }, + { + "x": -0.30907532445276137, + "y": -0.95103756172636 + }, + { + "x": -9.771501363490792e-8, + "y": -0.9999999999999951 + }, + { + "x": 0.3090751385914588, + "y": -0.9510376221289412 + }, + { + "x": 0.5878104577429899, + "y": -0.8089986809432856 + }, + { + "x": 0.8089985660674566, + "y": -0.5878106158456133 + }, + { + "x": 0.95103756172636, + "y": -0.30907532445276137 + }, + { + "x": 0.9999999999999951, + "y": -9.771501363490792e-8 + }, + { + "max": { + "#": 638 + }, + "min": { + "#": 639 + } + }, + { + "x": 491.95689351204817, + "y": 539.921715928438 + }, + { + "x": 452.4468899109371, + "y": 500.32123881583976 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 472.2008902166873, + "y": 520.0752391215899 + }, + { + "x": 0.00016327268808249732, + "y": 8.200242218916135e-11 + }, + { + "x": 472.19599875700953, + "y": 520.0752764660385 + }, + { + "endCol": 10, + "endRow": 11, + "id": "9,10,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 648 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004858512328212328, + "y": -0.00003734444544534199 + }, + [ + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 491.9548905224375, + "y": 523.2042371913276 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 490.02089110393956, + "y": 529.1552373803084 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 486.3428915985729, + "y": 534.2172377397043 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 481.2808919579687, + "y": 537.8952382343376 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 475.32989214694976, + "y": 539.8292388158395 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 469.0718921469497, + "y": 539.8292394273401 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 463.12089195796887, + "y": 537.8952400088423 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 458.058891598573, + "y": 534.2172405034756 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 454.3808911039398, + "y": 529.1552408628714 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 452.4468905224376, + "y": 523.2042410518524 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 452.4468899109371, + "y": 516.9462410518524 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 454.38088932943504, + "y": 510.9952408628715 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 458.0588888348017, + "y": 505.93324050347564 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 463.1208884754059, + "y": 502.25524000884246 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 469.07188828642484, + "y": 500.3212394273403 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 475.3298882864249, + "y": 500.32123881583976 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 481.28088847540573, + "y": 502.2552382343377 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 486.3428888348016, + "y": 505.93323773970434 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 490.0208893294348, + "y": 510.99523738030854 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 491.95488991093697, + "y": 516.9462371913277 + }, + { + "angle": -1.9625890901402047e-10, + "anglePrev": -6.654221778115441e-11, + "angularSpeed": 8.381740671358782e-11, + "angularVelocity": -1.264580598701456e-10, + "area": 1236.0755439999998, + "axes": { + "#": 672 + }, + "bounds": { + "#": 683 + }, + "circleRadius": 20, + "collisionFilter": { + "#": 686 + }, + "constraintImpulse": { + "#": 687 + }, + "density": 0.001, + "force": { + "#": 688 + }, + "friction": 0, + "frictionAir": 0.0001, + "frictionStatic": 0.5, + "id": 28, + "inertia": 99999, + "inverseInertia": 0.00001000010000100001, + "inverseMass": 0.8090120420665812, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.2360755439999997, + "motion": 0, + "parent": null, + "position": { + "#": 689 + }, + "positionImpulse": { + "#": 690 + }, + "positionPrev": { + "#": 691 + }, + "region": { + "#": 692 + }, + "render": { + "#": 693 + }, + "restitution": 1, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.01, + "speed": 0.2776446879742179, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 695 + }, + "vertices": { + "#": 696 + } + }, + [ + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + } + ], + { + "x": -0.9510375919883136, + "y": -0.30907523133546194 + }, + { + "x": -0.808998623620738, + "y": -0.5878105366355314 + }, + { + "x": -0.5878105369530778, + "y": -0.8089986233900119 + }, + { + "x": -0.3090752317087612, + "y": -0.9510375918669967 + }, + { + "x": -1.9625890901402047e-10, + "y": -1 + }, + { + "x": 0.30907523133546194, + "y": -0.9510375919883136 + }, + { + "x": 0.5878105366355314, + "y": -0.808998623620738 + }, + { + "x": 0.8089986233900119, + "y": -0.5878105369530778 + }, + { + "x": 0.9510375918669967, + "y": -0.3090752317087612 + }, + { + "x": 1, + "y": -1.9625890901402047e-10 + }, + { + "max": { + "#": 684 + }, + "min": { + "#": 685 + } + }, + { + "x": 531.4518583050228, + "y": 539.8906372411843 + }, + { + "x": 491.93538593941605, + "y": 500.2900557786794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 511.69785830440867, + "y": 520.0440557792939 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 511.692999788927, + "y": 520.0439942482453 + }, + { + "endCol": 11, + "endRow": 11, + "id": "10,11,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 694 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.004891462831210447, + "y": 0.00006153104538952903 + }, + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 531.4518583050228, + "y": 523.173055775417 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 529.5178583061905, + "y": 529.1240557757964 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525.839858307184, + "y": 534.1860557765185 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520.7778583079062, + "y": 537.864055777512 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 514.8268583082855, + "y": 539.7980557786797 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 508.5688583082855, + "y": 539.7980557799079 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 502.61785830790603, + "y": 537.8640557810756 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 497.5558583071841, + "y": 534.1860557820692 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 493.8778583061907, + "y": 529.1240557827913 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 491.94385830502273, + "y": 523.1730557831706 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 491.94385830379446, + "y": 516.9150557831706 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 493.8778583026265, + "y": 510.96405578279087 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 497.5558583016331, + "y": 505.902055782069 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 502.6178583009112, + "y": 502.22405578107555 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 508.5688583005317, + "y": 500.29005577990756 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 514.8268583005319, + "y": 500.2900557786794 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 520.7778583009112, + "y": 502.22405577751135 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 525.8398583016334, + "y": 505.9020557765179 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 529.5178583026269, + "y": 510.96405577579606 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 531.4518583037946, + "y": 516.9150557754169 + }, + [], + [ + { + "#": 719 + }, + { + "#": 723 + }, + { + "#": 727 + }, + { + "#": 731 + }, + { + "#": 735 + }, + { + "#": 739 + }, + { + "#": 743 + } + ], + { + "angleB": -1.8210355516150483e-22, + "angularStiffness": 0, + "bodyB": null, + "id": 17, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 720 + }, + "pointB": { + "#": 721 + }, + "render": { + "#": 722 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 280, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 5.313625844843808e-7, + "angularStiffness": 0, + "bodyB": null, + "id": 19, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 724 + }, + "pointB": { + "#": 725 + }, + "render": { + "#": 726 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 318, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": -3.5873880815014555e-7, + "angularStiffness": 0, + "bodyB": null, + "id": 21, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 728 + }, + "pointB": { + "#": 729 + }, + "render": { + "#": 730 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 356, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": 4.2991143917722316e-10, + "angularStiffness": 0, + "bodyB": null, + "id": 23, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 732 + }, + "pointB": { + "#": 733 + }, + "render": { + "#": 734 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 394, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": -7.797744072331507e-8, + "angularStiffness": 0, + "bodyB": null, + "id": 25, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 736 + }, + "pointB": { + "#": 737 + }, + "render": { + "#": 738 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 432, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": -9.771501363490808e-8, + "angularStiffness": 0, + "bodyB": null, + "id": 27, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 740 + }, + "pointB": { + "#": 741 + }, + "render": { + "#": 742 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 470, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleB": -1.96258909014021e-10, + "angularStiffness": 0, + "bodyB": null, + "id": 29, + "label": "Constraint", + "length": 140, + "pointA": { + "#": 744 + }, + "pointB": { + "#": 745 + }, + "render": { + "#": 746 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 508, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 748 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 749 + }, + "pointB": "", + "render": { + "#": 750 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/pyramid/pyramid-0.json b/tests/browser/refs/pyramid/pyramid-0.json new file mode 100644 index 00000000..0ac5ab57 --- /dev/null +++ b/tests/browser/refs/pyramid/pyramid-0.json @@ -0,0 +1,12605 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 1438 + }, + "gravity": { + "#": 1442 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 1436 + }, + "constraints": { + "#": 1437 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 197 + }, + { + "#": 218 + }, + { + "#": 239 + }, + { + "#": 260 + }, + { + "#": 281 + }, + { + "#": 302 + }, + { + "#": 323 + }, + { + "#": 344 + }, + { + "#": 365 + }, + { + "#": 386 + }, + { + "#": 407 + }, + { + "#": 428 + }, + { + "#": 449 + }, + { + "#": 470 + }, + { + "#": 491 + }, + { + "#": 512 + }, + { + "#": 533 + }, + { + "#": 554 + }, + { + "#": 575 + }, + { + "#": 596 + }, + { + "#": 617 + }, + { + "#": 638 + }, + { + "#": 659 + }, + { + "#": 680 + }, + { + "#": 701 + }, + { + "#": 722 + }, + { + "#": 743 + }, + { + "#": 764 + }, + { + "#": 785 + }, + { + "#": 806 + }, + { + "#": 827 + }, + { + "#": 848 + }, + { + "#": 869 + }, + { + "#": 890 + }, + { + "#": 911 + }, + { + "#": 932 + }, + { + "#": 953 + }, + { + "#": 974 + }, + { + "#": 995 + }, + { + "#": 1016 + }, + { + "#": 1037 + }, + { + "#": 1058 + }, + { + "#": 1079 + }, + { + "#": 1100 + }, + { + "#": 1121 + }, + { + "#": 1142 + }, + { + "#": 1163 + }, + { + "#": 1184 + }, + { + "#": 1205 + }, + { + "#": 1226 + }, + { + "#": 1247 + }, + { + "#": 1268 + }, + { + "#": 1289 + }, + { + "#": 1310 + }, + { + "#": 1331 + }, + { + "#": 1352 + }, + { + "#": 1373 + }, + { + "#": 1394 + }, + { + "#": 1415 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 420, + "y": 298 + }, + { + "x": 380, + "y": 258 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 278 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 258 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 258 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 298 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 298 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 380, + "y": 338 + }, + { + "x": 340, + "y": 298 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 318 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 318 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 298 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 298 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 338 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 338 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 420, + "y": 338 + }, + { + "x": 380, + "y": 298 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 318 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 318 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 298 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 298 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 338 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 338 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 460, + "y": 338 + }, + { + "x": 420, + "y": 298 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 318 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 318 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 298 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 298 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 338 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 338 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 177 + }, + "bounds": { + "#": 180 + }, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "render": { + "#": 189 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 191 + }, + "vertices": { + "#": 192 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 340, + "y": 378 + }, + { + "x": 300, + "y": 338 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 358 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 190 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 338 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 338 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 378 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 378 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 198 + }, + "bounds": { + "#": 201 + }, + "collisionFilter": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "density": 0.001, + "force": { + "#": 206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 207 + }, + "positionImpulse": { + "#": 208 + }, + "positionPrev": { + "#": 209 + }, + "render": { + "#": 210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 212 + }, + "vertices": { + "#": 213 + } + }, + [ + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 202 + }, + "min": { + "#": 203 + } + }, + { + "x": 380, + "y": 378 + }, + { + "x": 340, + "y": 338 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 358 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 211 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 338 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 338 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 378 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 378 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 219 + }, + "bounds": { + "#": 222 + }, + "collisionFilter": { + "#": 225 + }, + "constraintImpulse": { + "#": 226 + }, + "density": 0.001, + "force": { + "#": 227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 228 + }, + "positionImpulse": { + "#": 229 + }, + "positionPrev": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 223 + }, + "min": { + "#": 224 + } + }, + { + "x": 420, + "y": 378 + }, + { + "x": 380, + "y": 338 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 358 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 338 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 338 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 378 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 378 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 240 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 460, + "y": 378 + }, + { + "x": 420, + "y": 338 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 358 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 338 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 338 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 378 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 378 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 261 + }, + "bounds": { + "#": 264 + }, + "collisionFilter": { + "#": 267 + }, + "constraintImpulse": { + "#": 268 + }, + "density": 0.001, + "force": { + "#": 269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 270 + }, + "positionImpulse": { + "#": 271 + }, + "positionPrev": { + "#": 272 + }, + "render": { + "#": 273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 275 + }, + "vertices": { + "#": 276 + } + }, + [ + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 265 + }, + "min": { + "#": 266 + } + }, + { + "x": 500, + "y": 378 + }, + { + "x": 460, + "y": 338 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 358 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 274 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 338 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 338 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 378 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 378 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 282 + }, + "bounds": { + "#": 285 + }, + "collisionFilter": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "density": 0.001, + "force": { + "#": 290 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 291 + }, + "positionImpulse": { + "#": 292 + }, + "positionPrev": { + "#": 293 + }, + "render": { + "#": 294 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 296 + }, + "vertices": { + "#": 297 + } + }, + [ + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 286 + }, + "min": { + "#": 287 + } + }, + { + "x": 300, + "y": 418 + }, + { + "x": 260, + "y": 378 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 398 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 295 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 378 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 378 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 418 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 303 + }, + "bounds": { + "#": 306 + }, + "collisionFilter": { + "#": 309 + }, + "constraintImpulse": { + "#": 310 + }, + "density": 0.001, + "force": { + "#": 311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 312 + }, + "positionImpulse": { + "#": 313 + }, + "positionPrev": { + "#": 314 + }, + "render": { + "#": 315 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 317 + }, + "vertices": { + "#": 318 + } + }, + [ + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 307 + }, + "min": { + "#": 308 + } + }, + { + "x": 340, + "y": 418 + }, + { + "x": 300, + "y": 378 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 398 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 316 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 378 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 378 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 418 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 324 + }, + "bounds": { + "#": 327 + }, + "collisionFilter": { + "#": 330 + }, + "constraintImpulse": { + "#": 331 + }, + "density": 0.001, + "force": { + "#": 332 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 333 + }, + "positionImpulse": { + "#": 334 + }, + "positionPrev": { + "#": 335 + }, + "render": { + "#": 336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 338 + }, + "vertices": { + "#": 339 + } + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 328 + }, + "min": { + "#": 329 + } + }, + { + "x": 380, + "y": 418 + }, + { + "x": 340, + "y": 378 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 398 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 337 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 378 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 378 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 418 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 345 + }, + "bounds": { + "#": 348 + }, + "collisionFilter": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "density": 0.001, + "force": { + "#": 353 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 354 + }, + "positionImpulse": { + "#": 355 + }, + "positionPrev": { + "#": 356 + }, + "render": { + "#": 357 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 359 + }, + "vertices": { + "#": 360 + } + }, + [ + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 349 + }, + "min": { + "#": 350 + } + }, + { + "x": 420, + "y": 418 + }, + { + "x": 380, + "y": 378 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 398 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 358 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 378 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 378 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 418 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 366 + }, + "bounds": { + "#": 369 + }, + "collisionFilter": { + "#": 372 + }, + "constraintImpulse": { + "#": 373 + }, + "density": 0.001, + "force": { + "#": 374 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 375 + }, + "positionImpulse": { + "#": 376 + }, + "positionPrev": { + "#": 377 + }, + "render": { + "#": 378 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 380 + }, + "vertices": { + "#": 381 + } + }, + [ + { + "#": 367 + }, + { + "#": 368 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 370 + }, + "min": { + "#": 371 + } + }, + { + "x": 460, + "y": 418 + }, + { + "x": 420, + "y": 378 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 398 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 379 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 378 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 378 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 418 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 387 + }, + "bounds": { + "#": 390 + }, + "collisionFilter": { + "#": 393 + }, + "constraintImpulse": { + "#": 394 + }, + "density": 0.001, + "force": { + "#": 395 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 396 + }, + "positionImpulse": { + "#": 397 + }, + "positionPrev": { + "#": 398 + }, + "render": { + "#": 399 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 401 + }, + "vertices": { + "#": 402 + } + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 391 + }, + "min": { + "#": 392 + } + }, + { + "x": 500, + "y": 418 + }, + { + "x": 460, + "y": 378 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 398 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 400 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 378 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 378 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 418 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 408 + }, + "bounds": { + "#": 411 + }, + "collisionFilter": { + "#": 414 + }, + "constraintImpulse": { + "#": 415 + }, + "density": 0.001, + "force": { + "#": 416 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 417 + }, + "positionImpulse": { + "#": 418 + }, + "positionPrev": { + "#": 419 + }, + "render": { + "#": 420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 422 + }, + "vertices": { + "#": 423 + } + }, + [ + { + "#": 409 + }, + { + "#": 410 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 412 + }, + "min": { + "#": 413 + } + }, + { + "x": 540, + "y": 418 + }, + { + "x": 500, + "y": 378 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 398 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 421 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 378 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 378 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 418 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 429 + }, + "bounds": { + "#": 432 + }, + "collisionFilter": { + "#": 435 + }, + "constraintImpulse": { + "#": 436 + }, + "density": 0.001, + "force": { + "#": 437 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 438 + }, + "positionImpulse": { + "#": 439 + }, + "positionPrev": { + "#": 440 + }, + "render": { + "#": 441 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 443 + }, + "vertices": { + "#": 444 + } + }, + [ + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 433 + }, + "min": { + "#": 434 + } + }, + { + "x": 260, + "y": 458 + }, + { + "x": 220, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 438 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 442 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 450 + }, + "bounds": { + "#": 453 + }, + "collisionFilter": { + "#": 456 + }, + "constraintImpulse": { + "#": 457 + }, + "density": 0.001, + "force": { + "#": 458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 459 + }, + "positionImpulse": { + "#": 460 + }, + "positionPrev": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 454 + }, + "min": { + "#": 455 + } + }, + { + "x": 300, + "y": 458 + }, + { + "x": 260, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 438 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 471 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "render": { + "#": 483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 485 + }, + "vertices": { + "#": 486 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 340, + "y": 458 + }, + { + "x": 300, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 438 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 484 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 492 + }, + "bounds": { + "#": 495 + }, + "collisionFilter": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "density": 0.001, + "force": { + "#": 500 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 501 + }, + "positionImpulse": { + "#": 502 + }, + "positionPrev": { + "#": 503 + }, + "render": { + "#": 504 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 506 + }, + "vertices": { + "#": 507 + } + }, + [ + { + "#": 493 + }, + { + "#": 494 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 496 + }, + "min": { + "#": 497 + } + }, + { + "x": 380, + "y": 458 + }, + { + "x": 340, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 438 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 505 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 513 + }, + "bounds": { + "#": 516 + }, + "collisionFilter": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "density": 0.001, + "force": { + "#": 521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 522 + }, + "positionImpulse": { + "#": 523 + }, + "positionPrev": { + "#": 524 + }, + "render": { + "#": 525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 527 + }, + "vertices": { + "#": 528 + } + }, + [ + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 517 + }, + "min": { + "#": 518 + } + }, + { + "x": 420, + "y": 458 + }, + { + "x": 380, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 438 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 526 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 534 + }, + "bounds": { + "#": 537 + }, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "render": { + "#": 546 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 548 + }, + "vertices": { + "#": 549 + } + }, + [ + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 460, + "y": 458 + }, + { + "x": 420, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 438 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 547 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 555 + }, + "bounds": { + "#": 558 + }, + "collisionFilter": { + "#": 561 + }, + "constraintImpulse": { + "#": 562 + }, + "density": 0.001, + "force": { + "#": 563 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 564 + }, + "positionImpulse": { + "#": 565 + }, + "positionPrev": { + "#": 566 + }, + "render": { + "#": 567 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 569 + }, + "vertices": { + "#": 570 + } + }, + [ + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 559 + }, + "min": { + "#": 560 + } + }, + { + "x": 500, + "y": 458 + }, + { + "x": 460, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 438 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 568 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 576 + }, + "bounds": { + "#": 579 + }, + "collisionFilter": { + "#": 582 + }, + "constraintImpulse": { + "#": 583 + }, + "density": 0.001, + "force": { + "#": 584 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 585 + }, + "positionImpulse": { + "#": 586 + }, + "positionPrev": { + "#": 587 + }, + "render": { + "#": 588 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 590 + }, + "vertices": { + "#": 591 + } + }, + [ + { + "#": 577 + }, + { + "#": 578 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 580 + }, + "min": { + "#": 581 + } + }, + { + "x": 540, + "y": 458 + }, + { + "x": 500, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 438 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 589 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 597 + }, + "bounds": { + "#": 600 + }, + "collisionFilter": { + "#": 603 + }, + "constraintImpulse": { + "#": 604 + }, + "density": 0.001, + "force": { + "#": 605 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 606 + }, + "positionImpulse": { + "#": 607 + }, + "positionPrev": { + "#": 608 + }, + "render": { + "#": 609 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 611 + }, + "vertices": { + "#": 612 + } + }, + [ + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 601 + }, + "min": { + "#": 602 + } + }, + { + "x": 580, + "y": 458 + }, + { + "x": 540, + "y": 418 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 438 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 610 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540, + "y": 418 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 418 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 458 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 618 + }, + "bounds": { + "#": 621 + }, + "collisionFilter": { + "#": 624 + }, + "constraintImpulse": { + "#": 625 + }, + "density": 0.001, + "force": { + "#": 626 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 627 + }, + "positionImpulse": { + "#": 628 + }, + "positionPrev": { + "#": 629 + }, + "render": { + "#": 630 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 632 + }, + "vertices": { + "#": 633 + } + }, + [ + { + "#": 619 + }, + { + "#": 620 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 622 + }, + "min": { + "#": 623 + } + }, + { + "x": 220, + "y": 498 + }, + { + "x": 180, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 478 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 631 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 639 + }, + "bounds": { + "#": 642 + }, + "collisionFilter": { + "#": 645 + }, + "constraintImpulse": { + "#": 646 + }, + "density": 0.001, + "force": { + "#": 647 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 648 + }, + "positionImpulse": { + "#": 649 + }, + "positionPrev": { + "#": 650 + }, + "render": { + "#": 651 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 653 + }, + "vertices": { + "#": 654 + } + }, + [ + { + "#": 640 + }, + { + "#": 641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 643 + }, + "min": { + "#": 644 + } + }, + { + "x": 260, + "y": 498 + }, + { + "x": 220, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 478 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 652 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 660 + }, + "bounds": { + "#": 663 + }, + "collisionFilter": { + "#": 666 + }, + "constraintImpulse": { + "#": 667 + }, + "density": 0.001, + "force": { + "#": 668 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 669 + }, + "positionImpulse": { + "#": 670 + }, + "positionPrev": { + "#": 671 + }, + "render": { + "#": 672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 674 + }, + "vertices": { + "#": 675 + } + }, + [ + { + "#": 661 + }, + { + "#": 662 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 664 + }, + "min": { + "#": 665 + } + }, + { + "x": 300, + "y": 498 + }, + { + "x": 260, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 478 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 673 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 681 + }, + "bounds": { + "#": 684 + }, + "collisionFilter": { + "#": 687 + }, + "constraintImpulse": { + "#": 688 + }, + "density": 0.001, + "force": { + "#": 689 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 690 + }, + "positionImpulse": { + "#": 691 + }, + "positionPrev": { + "#": 692 + }, + "render": { + "#": 693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 695 + }, + "vertices": { + "#": 696 + } + }, + [ + { + "#": 682 + }, + { + "#": 683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 685 + }, + "min": { + "#": 686 + } + }, + { + "x": 340, + "y": 498 + }, + { + "x": 300, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 478 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 694 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 702 + }, + "bounds": { + "#": 705 + }, + "collisionFilter": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "density": 0.001, + "force": { + "#": 710 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 711 + }, + "positionImpulse": { + "#": 712 + }, + "positionPrev": { + "#": 713 + }, + "render": { + "#": 714 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 716 + }, + "vertices": { + "#": 717 + } + }, + [ + { + "#": 703 + }, + { + "#": 704 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 706 + }, + "min": { + "#": 707 + } + }, + { + "x": 380, + "y": 498 + }, + { + "x": 340, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 478 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 715 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 723 + }, + "bounds": { + "#": 726 + }, + "collisionFilter": { + "#": 729 + }, + "constraintImpulse": { + "#": 730 + }, + "density": 0.001, + "force": { + "#": 731 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 732 + }, + "positionImpulse": { + "#": 733 + }, + "positionPrev": { + "#": 734 + }, + "render": { + "#": 735 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 737 + }, + "vertices": { + "#": 738 + } + }, + [ + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 727 + }, + "min": { + "#": 728 + } + }, + { + "x": 420, + "y": 498 + }, + { + "x": 380, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 478 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 736 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 744 + }, + "bounds": { + "#": 747 + }, + "collisionFilter": { + "#": 750 + }, + "constraintImpulse": { + "#": 751 + }, + "density": 0.001, + "force": { + "#": 752 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 753 + }, + "positionImpulse": { + "#": 754 + }, + "positionPrev": { + "#": 755 + }, + "render": { + "#": 756 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 758 + }, + "vertices": { + "#": 759 + } + }, + [ + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 748 + }, + "min": { + "#": 749 + } + }, + { + "x": 460, + "y": 498 + }, + { + "x": 420, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 478 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 757 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 765 + }, + "bounds": { + "#": 768 + }, + "collisionFilter": { + "#": 771 + }, + "constraintImpulse": { + "#": 772 + }, + "density": 0.001, + "force": { + "#": 773 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 774 + }, + "positionImpulse": { + "#": 775 + }, + "positionPrev": { + "#": 776 + }, + "render": { + "#": 777 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 779 + }, + "vertices": { + "#": 780 + } + }, + [ + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 769 + }, + "min": { + "#": 770 + } + }, + { + "x": 500, + "y": 498 + }, + { + "x": 460, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 478 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 778 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 786 + }, + "bounds": { + "#": 789 + }, + "collisionFilter": { + "#": 792 + }, + "constraintImpulse": { + "#": 793 + }, + "density": 0.001, + "force": { + "#": 794 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 795 + }, + "positionImpulse": { + "#": 796 + }, + "positionPrev": { + "#": 797 + }, + "render": { + "#": 798 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 800 + }, + "vertices": { + "#": 801 + } + }, + [ + { + "#": 787 + }, + { + "#": 788 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 790 + }, + "min": { + "#": 791 + } + }, + { + "x": 540, + "y": 498 + }, + { + "x": 500, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 478 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 799 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 807 + }, + "bounds": { + "#": 810 + }, + "collisionFilter": { + "#": 813 + }, + "constraintImpulse": { + "#": 814 + }, + "density": 0.001, + "force": { + "#": 815 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 816 + }, + "positionImpulse": { + "#": 817 + }, + "positionPrev": { + "#": 818 + }, + "render": { + "#": 819 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 821 + }, + "vertices": { + "#": 822 + } + }, + [ + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 811 + }, + "min": { + "#": 812 + } + }, + { + "x": 580, + "y": 498 + }, + { + "x": 540, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 478 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 820 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 828 + }, + "bounds": { + "#": 831 + }, + "collisionFilter": { + "#": 834 + }, + "constraintImpulse": { + "#": 835 + }, + "density": 0.001, + "force": { + "#": 836 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 837 + }, + "positionImpulse": { + "#": 838 + }, + "positionPrev": { + "#": 839 + }, + "render": { + "#": 840 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 842 + }, + "vertices": { + "#": 843 + } + }, + [ + { + "#": 829 + }, + { + "#": 830 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 832 + }, + "min": { + "#": 833 + } + }, + { + "x": 620, + "y": 498 + }, + { + "x": 580, + "y": 458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 478 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 841 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 458 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620, + "y": 458 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 849 + }, + "bounds": { + "#": 852 + }, + "collisionFilter": { + "#": 855 + }, + "constraintImpulse": { + "#": 856 + }, + "density": 0.001, + "force": { + "#": 857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 858 + }, + "positionImpulse": { + "#": 859 + }, + "positionPrev": { + "#": 860 + }, + "render": { + "#": 861 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 863 + }, + "vertices": { + "#": 864 + } + }, + [ + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 853 + }, + "min": { + "#": 854 + } + }, + { + "x": 180, + "y": 538 + }, + { + "x": 140, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 518 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 862 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 870 + }, + "bounds": { + "#": 873 + }, + "collisionFilter": { + "#": 876 + }, + "constraintImpulse": { + "#": 877 + }, + "density": 0.001, + "force": { + "#": 878 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 879 + }, + "positionImpulse": { + "#": 880 + }, + "positionPrev": { + "#": 881 + }, + "render": { + "#": 882 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 884 + }, + "vertices": { + "#": 885 + } + }, + [ + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 874 + }, + "min": { + "#": 875 + } + }, + { + "x": 220, + "y": 538 + }, + { + "x": 180, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 518 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 883 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 891 + }, + "bounds": { + "#": 894 + }, + "collisionFilter": { + "#": 897 + }, + "constraintImpulse": { + "#": 898 + }, + "density": 0.001, + "force": { + "#": 899 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 900 + }, + "positionImpulse": { + "#": 901 + }, + "positionPrev": { + "#": 902 + }, + "render": { + "#": 903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 905 + }, + "vertices": { + "#": 906 + } + }, + [ + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 895 + }, + "min": { + "#": 896 + } + }, + { + "x": 260, + "y": 538 + }, + { + "x": 220, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 518 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 904 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 912 + }, + "bounds": { + "#": 915 + }, + "collisionFilter": { + "#": 918 + }, + "constraintImpulse": { + "#": 919 + }, + "density": 0.001, + "force": { + "#": 920 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 921 + }, + "positionImpulse": { + "#": 922 + }, + "positionPrev": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 916 + }, + "min": { + "#": 917 + } + }, + { + "x": 300, + "y": 538 + }, + { + "x": 260, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 518 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 933 + }, + "bounds": { + "#": 936 + }, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "render": { + "#": 945 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 947 + }, + "vertices": { + "#": 948 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 340, + "y": 538 + }, + { + "x": 300, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 518 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 946 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 954 + }, + "bounds": { + "#": 957 + }, + "collisionFilter": { + "#": 960 + }, + "constraintImpulse": { + "#": 961 + }, + "density": 0.001, + "force": { + "#": 962 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 963 + }, + "positionImpulse": { + "#": 964 + }, + "positionPrev": { + "#": 965 + }, + "render": { + "#": 966 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 968 + }, + "vertices": { + "#": 969 + } + }, + [ + { + "#": 955 + }, + { + "#": 956 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 958 + }, + "min": { + "#": 959 + } + }, + { + "x": 380, + "y": 538 + }, + { + "x": 340, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 518 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 967 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 975 + }, + "bounds": { + "#": 978 + }, + "collisionFilter": { + "#": 981 + }, + "constraintImpulse": { + "#": 982 + }, + "density": 0.001, + "force": { + "#": 983 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 984 + }, + "positionImpulse": { + "#": 985 + }, + "positionPrev": { + "#": 986 + }, + "render": { + "#": 987 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 989 + }, + "vertices": { + "#": 990 + } + }, + [ + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 979 + }, + "min": { + "#": 980 + } + }, + { + "x": 420, + "y": 538 + }, + { + "x": 380, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 518 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 988 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 996 + }, + "bounds": { + "#": 999 + }, + "collisionFilter": { + "#": 1002 + }, + "constraintImpulse": { + "#": 1003 + }, + "density": 0.001, + "force": { + "#": 1004 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1005 + }, + "positionImpulse": { + "#": 1006 + }, + "positionPrev": { + "#": 1007 + }, + "render": { + "#": 1008 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1010 + }, + "vertices": { + "#": 1011 + } + }, + [ + { + "#": 997 + }, + { + "#": 998 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1000 + }, + "min": { + "#": 1001 + } + }, + { + "x": 460, + "y": 538 + }, + { + "x": 420, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 518 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1009 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1017 + }, + "bounds": { + "#": 1020 + }, + "collisionFilter": { + "#": 1023 + }, + "constraintImpulse": { + "#": 1024 + }, + "density": 0.001, + "force": { + "#": 1025 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1026 + }, + "positionImpulse": { + "#": 1027 + }, + "positionPrev": { + "#": 1028 + }, + "render": { + "#": 1029 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1031 + }, + "vertices": { + "#": 1032 + } + }, + [ + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1021 + }, + "min": { + "#": 1022 + } + }, + { + "x": 500, + "y": 538 + }, + { + "x": 460, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 518 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1030 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1038 + }, + "bounds": { + "#": 1041 + }, + "collisionFilter": { + "#": 1044 + }, + "constraintImpulse": { + "#": 1045 + }, + "density": 0.001, + "force": { + "#": 1046 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1047 + }, + "positionImpulse": { + "#": 1048 + }, + "positionPrev": { + "#": 1049 + }, + "render": { + "#": 1050 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1052 + }, + "vertices": { + "#": 1053 + } + }, + [ + { + "#": 1039 + }, + { + "#": 1040 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1042 + }, + "min": { + "#": 1043 + } + }, + { + "x": 540, + "y": 538 + }, + { + "x": 500, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 518 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1051 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1059 + }, + "bounds": { + "#": 1062 + }, + "collisionFilter": { + "#": 1065 + }, + "constraintImpulse": { + "#": 1066 + }, + "density": 0.001, + "force": { + "#": 1067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1068 + }, + "positionImpulse": { + "#": 1069 + }, + "positionPrev": { + "#": 1070 + }, + "render": { + "#": 1071 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1073 + }, + "vertices": { + "#": 1074 + } + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1063 + }, + "min": { + "#": 1064 + } + }, + { + "x": 580, + "y": 538 + }, + { + "x": 540, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 518 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1072 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1080 + }, + "bounds": { + "#": 1083 + }, + "collisionFilter": { + "#": 1086 + }, + "constraintImpulse": { + "#": 1087 + }, + "density": 0.001, + "force": { + "#": 1088 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1089 + }, + "positionImpulse": { + "#": 1090 + }, + "positionPrev": { + "#": 1091 + }, + "render": { + "#": 1092 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1094 + }, + "vertices": { + "#": 1095 + } + }, + [ + { + "#": 1081 + }, + { + "#": 1082 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1084 + }, + "min": { + "#": 1085 + } + }, + { + "x": 620, + "y": 538 + }, + { + "x": 580, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 518 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1093 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1101 + }, + "bounds": { + "#": 1104 + }, + "collisionFilter": { + "#": 1107 + }, + "constraintImpulse": { + "#": 1108 + }, + "density": 0.001, + "force": { + "#": 1109 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1110 + }, + "positionImpulse": { + "#": 1111 + }, + "positionPrev": { + "#": 1112 + }, + "render": { + "#": 1113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1115 + }, + "vertices": { + "#": 1116 + } + }, + [ + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1105 + }, + "min": { + "#": 1106 + } + }, + { + "x": 660, + "y": 538 + }, + { + "x": 620, + "y": 498 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640, + "y": 518 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1114 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 620, + "y": 498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 660, + "y": 498 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 660, + "y": 538 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 620, + "y": 538 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1122 + }, + "bounds": { + "#": 1125 + }, + "collisionFilter": { + "#": 1128 + }, + "constraintImpulse": { + "#": 1129 + }, + "density": 0.001, + "force": { + "#": 1130 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1131 + }, + "positionImpulse": { + "#": 1132 + }, + "positionPrev": { + "#": 1133 + }, + "render": { + "#": 1134 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1136 + }, + "vertices": { + "#": 1137 + } + }, + [ + { + "#": 1123 + }, + { + "#": 1124 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1126 + }, + "min": { + "#": 1127 + } + }, + { + "x": 140, + "y": 578 + }, + { + "x": 100, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 558 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1135 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1143 + }, + "bounds": { + "#": 1146 + }, + "collisionFilter": { + "#": 1149 + }, + "constraintImpulse": { + "#": 1150 + }, + "density": 0.001, + "force": { + "#": 1151 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1152 + }, + "positionImpulse": { + "#": 1153 + }, + "positionPrev": { + "#": 1154 + }, + "render": { + "#": 1155 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1157 + }, + "vertices": { + "#": 1158 + } + }, + [ + { + "#": 1144 + }, + { + "#": 1145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1147 + }, + "min": { + "#": 1148 + } + }, + { + "x": 180, + "y": 578 + }, + { + "x": 140, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 558 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1156 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1164 + }, + "bounds": { + "#": 1167 + }, + "collisionFilter": { + "#": 1170 + }, + "constraintImpulse": { + "#": 1171 + }, + "density": 0.001, + "force": { + "#": 1172 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1173 + }, + "positionImpulse": { + "#": 1174 + }, + "positionPrev": { + "#": 1175 + }, + "render": { + "#": 1176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1178 + }, + "vertices": { + "#": 1179 + } + }, + [ + { + "#": 1165 + }, + { + "#": 1166 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1168 + }, + "min": { + "#": 1169 + } + }, + { + "x": 220, + "y": 578 + }, + { + "x": 180, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 558 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1177 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1185 + }, + "bounds": { + "#": 1188 + }, + "collisionFilter": { + "#": 1191 + }, + "constraintImpulse": { + "#": 1192 + }, + "density": 0.001, + "force": { + "#": 1193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1194 + }, + "positionImpulse": { + "#": 1195 + }, + "positionPrev": { + "#": 1196 + }, + "render": { + "#": 1197 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1199 + }, + "vertices": { + "#": 1200 + } + }, + [ + { + "#": 1186 + }, + { + "#": 1187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1189 + }, + "min": { + "#": 1190 + } + }, + { + "x": 260, + "y": 578 + }, + { + "x": 220, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 558 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1198 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1206 + }, + "bounds": { + "#": 1209 + }, + "collisionFilter": { + "#": 1212 + }, + "constraintImpulse": { + "#": 1213 + }, + "density": 0.001, + "force": { + "#": 1214 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1215 + }, + "positionImpulse": { + "#": 1216 + }, + "positionPrev": { + "#": 1217 + }, + "render": { + "#": 1218 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1220 + }, + "vertices": { + "#": 1221 + } + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1210 + }, + "min": { + "#": 1211 + } + }, + { + "x": 300, + "y": 578 + }, + { + "x": 260, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 558 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1219 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1227 + }, + "bounds": { + "#": 1230 + }, + "collisionFilter": { + "#": 1233 + }, + "constraintImpulse": { + "#": 1234 + }, + "density": 0.001, + "force": { + "#": 1235 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1236 + }, + "positionImpulse": { + "#": 1237 + }, + "positionPrev": { + "#": 1238 + }, + "render": { + "#": 1239 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1241 + }, + "vertices": { + "#": 1242 + } + }, + [ + { + "#": 1228 + }, + { + "#": 1229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1231 + }, + "min": { + "#": 1232 + } + }, + { + "x": 340, + "y": 578 + }, + { + "x": 300, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 558 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1240 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1248 + }, + "bounds": { + "#": 1251 + }, + "collisionFilter": { + "#": 1254 + }, + "constraintImpulse": { + "#": 1255 + }, + "density": 0.001, + "force": { + "#": 1256 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1257 + }, + "positionImpulse": { + "#": 1258 + }, + "positionPrev": { + "#": 1259 + }, + "render": { + "#": 1260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1262 + }, + "vertices": { + "#": 1263 + } + }, + [ + { + "#": 1249 + }, + { + "#": 1250 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1252 + }, + "min": { + "#": 1253 + } + }, + { + "x": 380, + "y": 578 + }, + { + "x": 340, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 558 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1261 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1269 + }, + "bounds": { + "#": 1272 + }, + "collisionFilter": { + "#": 1275 + }, + "constraintImpulse": { + "#": 1276 + }, + "density": 0.001, + "force": { + "#": 1277 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1278 + }, + "positionImpulse": { + "#": 1279 + }, + "positionPrev": { + "#": 1280 + }, + "render": { + "#": 1281 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1283 + }, + "vertices": { + "#": 1284 + } + }, + [ + { + "#": 1270 + }, + { + "#": 1271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1273 + }, + "min": { + "#": 1274 + } + }, + { + "x": 420, + "y": 578 + }, + { + "x": 380, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 558 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1282 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1290 + }, + "bounds": { + "#": 1293 + }, + "collisionFilter": { + "#": 1296 + }, + "constraintImpulse": { + "#": 1297 + }, + "density": 0.001, + "force": { + "#": 1298 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1299 + }, + "positionImpulse": { + "#": 1300 + }, + "positionPrev": { + "#": 1301 + }, + "render": { + "#": 1302 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1304 + }, + "vertices": { + "#": 1305 + } + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1294 + }, + "min": { + "#": 1295 + } + }, + { + "x": 460, + "y": 578 + }, + { + "x": 420, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 558 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1303 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1311 + }, + "bounds": { + "#": 1314 + }, + "collisionFilter": { + "#": 1317 + }, + "constraintImpulse": { + "#": 1318 + }, + "density": 0.001, + "force": { + "#": 1319 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1320 + }, + "positionImpulse": { + "#": 1321 + }, + "positionPrev": { + "#": 1322 + }, + "render": { + "#": 1323 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1325 + }, + "vertices": { + "#": 1326 + } + }, + [ + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1315 + }, + "min": { + "#": 1316 + } + }, + { + "x": 500, + "y": 578 + }, + { + "x": 460, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 558 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1324 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1332 + }, + "bounds": { + "#": 1335 + }, + "collisionFilter": { + "#": 1338 + }, + "constraintImpulse": { + "#": 1339 + }, + "density": 0.001, + "force": { + "#": 1340 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1341 + }, + "positionImpulse": { + "#": 1342 + }, + "positionPrev": { + "#": 1343 + }, + "render": { + "#": 1344 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1346 + }, + "vertices": { + "#": 1347 + } + }, + [ + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1336 + }, + "min": { + "#": 1337 + } + }, + { + "x": 540, + "y": 578 + }, + { + "x": 500, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 558 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1345 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1353 + }, + "bounds": { + "#": 1356 + }, + "collisionFilter": { + "#": 1359 + }, + "constraintImpulse": { + "#": 1360 + }, + "density": 0.001, + "force": { + "#": 1361 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1362 + }, + "positionImpulse": { + "#": 1363 + }, + "positionPrev": { + "#": 1364 + }, + "render": { + "#": 1365 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1367 + }, + "vertices": { + "#": 1368 + } + }, + [ + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1357 + }, + "min": { + "#": 1358 + } + }, + { + "x": 580, + "y": 578 + }, + { + "x": 540, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 558 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1366 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1374 + }, + "bounds": { + "#": 1377 + }, + "collisionFilter": { + "#": 1380 + }, + "constraintImpulse": { + "#": 1381 + }, + "density": 0.001, + "force": { + "#": 1382 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1383 + }, + "positionImpulse": { + "#": 1384 + }, + "positionPrev": { + "#": 1385 + }, + "render": { + "#": 1386 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1388 + }, + "vertices": { + "#": 1389 + } + }, + [ + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1378 + }, + "min": { + "#": 1379 + } + }, + { + "x": 620, + "y": 578 + }, + { + "x": 580, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 558 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1387 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1395 + }, + "bounds": { + "#": 1398 + }, + "collisionFilter": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "density": 0.001, + "force": { + "#": 1403 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1404 + }, + "positionImpulse": { + "#": 1405 + }, + "positionPrev": { + "#": 1406 + }, + "render": { + "#": 1407 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1409 + }, + "vertices": { + "#": 1410 + } + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1399 + }, + "min": { + "#": 1400 + } + }, + { + "x": 660, + "y": 578 + }, + { + "x": 620, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640, + "y": 558 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1408 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 620, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 660, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 660, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 620, + "y": 578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1416 + }, + "bounds": { + "#": 1419 + }, + "collisionFilter": { + "#": 1422 + }, + "constraintImpulse": { + "#": 1423 + }, + "density": 0.001, + "force": { + "#": 1424 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1425 + }, + "positionImpulse": { + "#": 1426 + }, + "positionPrev": { + "#": 1427 + }, + "render": { + "#": 1428 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1430 + }, + "vertices": { + "#": 1431 + } + }, + [ + { + "#": 1417 + }, + { + "#": 1418 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1420 + }, + "min": { + "#": 1421 + } + }, + { + "x": 700, + "y": 578 + }, + { + "x": 660, + "y": 538 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 680, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 680, + "y": 558 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1429 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 660, + "y": 538 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 538 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 660, + "y": 578 + }, + [], + [], + [ + { + "#": 1439 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1440 + }, + "pointB": "", + "render": { + "#": 1441 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/pyramid/pyramid-10.json b/tests/browser/refs/pyramid/pyramid-10.json new file mode 100644 index 00000000..ae701b83 --- /dev/null +++ b/tests/browser/refs/pyramid/pyramid-10.json @@ -0,0 +1,13285 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 1506 + }, + "gravity": { + "#": 1510 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1504 + }, + "constraints": { + "#": 1505 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 206 + }, + { + "#": 228 + }, + { + "#": 250 + }, + { + "#": 272 + }, + { + "#": 294 + }, + { + "#": 316 + }, + { + "#": 338 + }, + { + "#": 360 + }, + { + "#": 382 + }, + { + "#": 404 + }, + { + "#": 426 + }, + { + "#": 448 + }, + { + "#": 470 + }, + { + "#": 492 + }, + { + "#": 514 + }, + { + "#": 536 + }, + { + "#": 558 + }, + { + "#": 580 + }, + { + "#": 602 + }, + { + "#": 624 + }, + { + "#": 646 + }, + { + "#": 668 + }, + { + "#": 690 + }, + { + "#": 712 + }, + { + "#": 734 + }, + { + "#": 756 + }, + { + "#": 778 + }, + { + "#": 800 + }, + { + "#": 822 + }, + { + "#": 844 + }, + { + "#": 866 + }, + { + "#": 888 + }, + { + "#": 910 + }, + { + "#": 932 + }, + { + "#": 954 + }, + { + "#": 976 + }, + { + "#": 998 + }, + { + "#": 1020 + }, + { + "#": 1042 + }, + { + "#": 1064 + }, + { + "#": 1086 + }, + { + "#": 1108 + }, + { + "#": 1130 + }, + { + "#": 1152 + }, + { + "#": 1174 + }, + { + "#": 1196 + }, + { + "#": 1218 + }, + { + "#": 1240 + }, + { + "#": 1262 + }, + { + "#": 1284 + }, + { + "#": 1306 + }, + { + "#": 1328 + }, + { + "#": 1350 + }, + { + "#": 1372 + }, + { + "#": 1394 + }, + { + "#": 1416 + }, + { + "#": 1438 + }, + { + "#": 1460 + }, + { + "#": 1482 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 420, + "y": 314.3251697787212 + }, + { + "x": 380, + "y": 271.41789906368564 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 291.41789906368564 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 289.92292678371024 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.6013642529318304 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 271.41789906368564 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 271.41789906368564 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 311.41789906368564 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 311.41789906368564 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5983938345141253, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 380, + "y": 351.0805735008698 + }, + { + "x": 340, + "y": 309.48217966635565 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 329.48217966635565 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 328.7696883254849 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7137259595064052 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 309.48217966635565 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 309.48217966635565 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 349.48217966635565 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 349.48217966635565 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5983938345141253, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 420, + "y": 352.5613781137567 + }, + { + "x": 380, + "y": 310.96298427924256 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 330.96298427924256 + }, + { + "x": 0, + "y": 0.4769796879316552 + }, + { + "x": 400, + "y": 329.5478059789844 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.308786327301732 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 310.96298427924256 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 310.96298427924256 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 350.96298427924256 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 350.96298427924256 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5983938345141253, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 460, + "y": 351.0805735008698 + }, + { + "x": 420, + "y": 309.48217966635565 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 329.48217966635565 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 328.7696883254849 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7137259595064052 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 309.48217966635565 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 309.48217966635565 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 349.48217966635565 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 349.48217966635565 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 185 + }, + "bounds": { + "#": 188 + }, + "collisionFilter": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "density": 0.001, + "force": { + "#": 193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 194 + }, + "positionImpulse": { + "#": 195 + }, + "positionPrev": { + "#": 196 + }, + "region": { + "#": 197 + }, + "render": { + "#": 198 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8429888317353045, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 200 + }, + "vertices": { + "#": 201 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 189 + }, + "min": { + "#": 190 + } + }, + { + "x": 340, + "y": 387.8064238089688 + }, + { + "x": 300, + "y": 346.96343497723353 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 366.96343497723353 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 366.8377847126105 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 199 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.12074020386955908 + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 346.96343497723353 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 346.96343497723353 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 386.96343497723353 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 386.96343497723353 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 207 + }, + "bounds": { + "#": 210 + }, + "collisionFilter": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "density": 0.001, + "force": { + "#": 215 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 216 + }, + "positionImpulse": { + "#": 217 + }, + "positionPrev": { + "#": 218 + }, + "region": { + "#": 219 + }, + "render": { + "#": 220 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5114696619738694, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 222 + }, + "vertices": { + "#": 223 + } + }, + [ + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 211 + }, + "min": { + "#": 212 + } + }, + { + "x": 380, + "y": 390.60095116849095 + }, + { + "x": 340, + "y": 349.0894815065171 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 369.0894815065171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 368.37791612962303 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 221 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.710330758258408 + }, + [ + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 349.0894815065171 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 349.0894815065171 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 389.0894815065171 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 389.0894815065171 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 229 + }, + "bounds": { + "#": 232 + }, + "collisionFilter": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "density": 0.001, + "force": { + "#": 237 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 238 + }, + "positionImpulse": { + "#": 239 + }, + "positionPrev": { + "#": 240 + }, + "region": { + "#": 241 + }, + "render": { + "#": 242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5114696619738694, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 244 + }, + "vertices": { + "#": 245 + } + }, + [ + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 233 + }, + "min": { + "#": 234 + } + }, + { + "x": 420, + "y": 391.3596008887642 + }, + { + "x": 380, + "y": 349.8481312267903 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 369.8481312267903 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 368.6679251809782 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 243 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.0087656704926644 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 349.8481312267903 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 349.8481312267903 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 389.8481312267903 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 389.8481312267903 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 251 + }, + "bounds": { + "#": 254 + }, + "collisionFilter": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "density": 0.001, + "force": { + "#": 259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 260 + }, + "positionImpulse": { + "#": 261 + }, + "positionPrev": { + "#": 262 + }, + "region": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.5114696619738694, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 255 + }, + "min": { + "#": 256 + } + }, + { + "x": 460, + "y": 390.60095116849095 + }, + { + "x": 420, + "y": 349.0894815065171 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 369.0894815065171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 368.37791612962303 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.710330758258408 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 349.0894815065171 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 349.0894815065171 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 389.0894815065171 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 389.0894815065171 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8429888317353045, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 500, + "y": 387.8064238089688 + }, + { + "x": 460, + "y": 346.96343497723353 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 366.96343497723353 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 366.8377847126105 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.12074020386955908 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 346.96343497723353 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 346.96343497723353 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 386.96343497723353 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 386.96343497723353 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 295 + }, + "bounds": { + "#": 298 + }, + "collisionFilter": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "density": 0.001, + "force": { + "#": 303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 304 + }, + "positionImpulse": { + "#": 305 + }, + "positionPrev": { + "#": 306 + }, + "region": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2226378688017378, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 299 + }, + "min": { + "#": 300 + } + }, + { + "x": 300, + "y": 424.3841440239626 + }, + { + "x": 260, + "y": 384.1615061551609 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 404.1615061551609 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 404.52215148450597 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.3822496262951063 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 384.1615061551609 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 384.1615061551609 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 424.1615061551609 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 424.1615061551609 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 317 + }, + "bounds": { + "#": 320 + }, + "collisionFilter": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "density": 0.001, + "force": { + "#": 325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 326 + }, + "positionImpulse": { + "#": 327 + }, + "positionPrev": { + "#": 328 + }, + "region": { + "#": 329 + }, + "render": { + "#": 330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8247838911685217, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 332 + }, + "vertices": { + "#": 333 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 321 + }, + "min": { + "#": 322 + } + }, + { + "x": 340, + "y": 427.45974776739143 + }, + { + "x": 300, + "y": 386.6349638762229 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 406.6349638762229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 406.5056310660348 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 331 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.13424287094153442 + }, + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 386.6349638762229 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 386.6349638762229 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 426.6349638762229 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 426.6349638762229 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 339 + }, + "bounds": { + "#": 342 + }, + "collisionFilter": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "density": 0.001, + "force": { + "#": 347 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 348 + }, + "positionImpulse": { + "#": 349 + }, + "positionPrev": { + "#": 350 + }, + "region": { + "#": 351 + }, + "render": { + "#": 352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2539549868343245, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 354 + }, + "vertices": { + "#": 355 + } + }, + [ + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 343 + }, + "min": { + "#": 344 + } + }, + { + "x": 380, + "y": 429.334062433083 + }, + { + "x": 340, + "y": 388.08010744624863 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 408.08010744624863 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 407.38432852675044 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 353 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.6763764678177608 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 388.08010744624863 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 388.08010744624863 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 428.08010744624863 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 428.08010744624863 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 361 + }, + "bounds": { + "#": 364 + }, + "collisionFilter": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "density": 0.001, + "force": { + "#": 369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 370 + }, + "positionImpulse": { + "#": 371 + }, + "positionPrev": { + "#": 372 + }, + "region": { + "#": 373 + }, + "render": { + "#": 374 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2539549868343245, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 376 + }, + "vertices": { + "#": 377 + } + }, + [ + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 365 + }, + "min": { + "#": 366 + } + }, + { + "x": 420, + "y": 429.61492877065837 + }, + { + "x": 380, + "y": 388.360973783824 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 408.360973783824 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 407.4644735268239 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 375 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7468130390100782 + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 388.360973783824 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 388.360973783824 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 428.360973783824 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 428.360973783824 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 383 + }, + "bounds": { + "#": 386 + }, + "collisionFilter": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "density": 0.001, + "force": { + "#": 391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 392 + }, + "positionImpulse": { + "#": 393 + }, + "positionPrev": { + "#": 394 + }, + "region": { + "#": 395 + }, + "render": { + "#": 396 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2539549868343245, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 398 + }, + "vertices": { + "#": 399 + } + }, + [ + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 387 + }, + "min": { + "#": 388 + } + }, + { + "x": 460, + "y": 429.334062433083 + }, + { + "x": 420, + "y": 388.08010744624863 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 408.08010744624863 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 407.38432852675044 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 397 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.6763764678177608 + }, + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 388.08010744624863 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 388.08010744624863 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 428.08010744624863 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 428.08010744624863 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 405 + }, + "bounds": { + "#": 408 + }, + "collisionFilter": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "density": 0.001, + "force": { + "#": 413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 414 + }, + "positionImpulse": { + "#": 415 + }, + "positionPrev": { + "#": 416 + }, + "region": { + "#": 417 + }, + "render": { + "#": 418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8247838911685217, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 420 + }, + "vertices": { + "#": 421 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 409 + }, + "min": { + "#": 410 + } + }, + { + "x": 500, + "y": 427.45974776739143 + }, + { + "x": 460, + "y": 386.6349638762229 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 406.6349638762229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 406.5056310660348 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,8,8", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 419 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.13424287094153442 + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 386.6349638762229 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 386.6349638762229 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 426.6349638762229 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 426.6349638762229 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 427 + }, + "bounds": { + "#": 430 + }, + "collisionFilter": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "density": 0.001, + "force": { + "#": 435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 436 + }, + "positionImpulse": { + "#": 437 + }, + "positionPrev": { + "#": 438 + }, + "region": { + "#": 439 + }, + "render": { + "#": 440 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2226378688017378, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 442 + }, + "vertices": { + "#": 443 + } + }, + [ + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 431 + }, + "min": { + "#": 432 + } + }, + { + "x": 540, + "y": 424.3841440239626 + }, + { + "x": 500, + "y": 384.1615061551609 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 404.1615061551609 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 404.52215148450597 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 441 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.3822496262951063 + }, + [ + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 384.1615061551609 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 384.1615061551609 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 424.1615061551609 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 424.1615061551609 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 449 + }, + "bounds": { + "#": 452 + }, + "collisionFilter": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "density": 0.001, + "force": { + "#": 457 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 458 + }, + "positionImpulse": { + "#": 459 + }, + "positionPrev": { + "#": 460 + }, + "region": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.08388238887564953, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 453 + }, + "min": { + "#": 454 + } + }, + { + "x": 260, + "y": 461.5209581893605 + }, + { + "x": 220, + "y": 421.4370758004849 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 441.5209581893605 + }, + { + "x": 0, + "y": -0.35032436907423475 + }, + { + "x": 240, + "y": 441.9137065171233 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.428879925662045 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 421.5209581893605 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 421.5209581893605 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 461.5209581893605 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 461.5209581893605 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 471 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "region": { + "#": 483 + }, + "render": { + "#": 484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.23372232762193632, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 486 + }, + "vertices": { + "#": 487 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 300, + "y": 464.11156202375247 + }, + { + "x": 260, + "y": 423.87783969613054 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 443.87783969613054 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 444.2222818027631 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 485 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.3228378096825395 + }, + [ + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 423.87783969613054 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 423.87783969613054 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 463.87783969613054 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 463.87783969613054 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 493 + }, + "bounds": { + "#": 496 + }, + "collisionFilter": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "density": 0.001, + "force": { + "#": 501 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 502 + }, + "positionImpulse": { + "#": 503 + }, + "positionPrev": { + "#": 504 + }, + "region": { + "#": 505 + }, + "render": { + "#": 506 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7672315102664511, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 508 + }, + "vertices": { + "#": 509 + } + }, + [ + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 497 + }, + "min": { + "#": 498 + } + }, + { + "x": 340, + "y": 466.54250252492375 + }, + { + "x": 300, + "y": 425.7752710146573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 445.7752710146573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 445.63628123083913 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 507 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.14531900098677397 + }, + [ + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 425.7752710146573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 425.7752710146573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 465.7752710146573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 465.7752710146573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 515 + }, + "bounds": { + "#": 518 + }, + "collisionFilter": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "density": 0.001, + "force": { + "#": 523 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 524 + }, + "positionImpulse": { + "#": 525 + }, + "positionPrev": { + "#": 526 + }, + "region": { + "#": 527 + }, + "render": { + "#": 528 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9441641028535135, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 530 + }, + "vertices": { + "#": 531 + } + }, + [ + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 519 + }, + "min": { + "#": 520 + } + }, + { + "x": 380, + "y": 467.5609169143824 + }, + { + "x": 340, + "y": 426.6167528115289 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 446.6167528115289 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 445.99269779593175 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 529 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.5542930793029655 + }, + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 426.6167528115289 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 426.6167528115289 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 466.6167528115289 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 466.6167528115289 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 537 + }, + "bounds": { + "#": 540 + }, + "collisionFilter": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "density": 0.001, + "force": { + "#": 545 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 546 + }, + "positionImpulse": { + "#": 547 + }, + "positionPrev": { + "#": 548 + }, + "region": { + "#": 549 + }, + "render": { + "#": 550 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9441641028535135, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 552 + }, + "vertices": { + "#": 553 + } + }, + [ + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 541 + }, + "min": { + "#": 542 + } + }, + { + "x": 420, + "y": 467.6307559604422 + }, + { + "x": 380, + "y": 426.68659185758867 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 446.68659185758867 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 446.02228737273873 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 551 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.5542930793029655 + }, + [ + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 426.68659185758867 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 426.68659185758867 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 466.68659185758867 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 466.68659185758867 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 559 + }, + "bounds": { + "#": 562 + }, + "collisionFilter": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "density": 0.001, + "force": { + "#": 567 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 568 + }, + "positionImpulse": { + "#": 569 + }, + "positionPrev": { + "#": 570 + }, + "region": { + "#": 571 + }, + "render": { + "#": 572 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9441641028535135, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 574 + }, + "vertices": { + "#": 575 + } + }, + [ + { + "#": 560 + }, + { + "#": 561 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 563 + }, + "min": { + "#": 564 + } + }, + { + "x": 460, + "y": 467.5609169143824 + }, + { + "x": 420, + "y": 426.6167528115289 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 446.6167528115289 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 445.99269779593175 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 573 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.5542930793029655 + }, + [ + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 426.6167528115289 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 426.6167528115289 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 466.6167528115289 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 466.6167528115289 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 581 + }, + "bounds": { + "#": 584 + }, + "collisionFilter": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "density": 0.001, + "force": { + "#": 589 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 590 + }, + "positionImpulse": { + "#": 591 + }, + "positionPrev": { + "#": 592 + }, + "region": { + "#": 593 + }, + "render": { + "#": 594 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7672315102664511, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 596 + }, + "vertices": { + "#": 597 + } + }, + [ + { + "#": 582 + }, + { + "#": 583 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 585 + }, + "min": { + "#": 586 + } + }, + { + "x": 500, + "y": 466.54250252492375 + }, + { + "x": 460, + "y": 425.7752710146573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 445.7752710146573 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 445.63628123083913 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 595 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.14531900098677397 + }, + [ + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 425.7752710146573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 425.7752710146573 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 465.7752710146573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 465.7752710146573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 603 + }, + "bounds": { + "#": 606 + }, + "collisionFilter": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "density": 0.001, + "force": { + "#": 611 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 612 + }, + "positionImpulse": { + "#": 613 + }, + "positionPrev": { + "#": 614 + }, + "region": { + "#": 615 + }, + "render": { + "#": 616 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.23372232762193632, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 618 + }, + "vertices": { + "#": 619 + } + }, + [ + { + "#": 604 + }, + { + "#": 605 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 607 + }, + "min": { + "#": 608 + } + }, + { + "x": 540, + "y": 464.11156202375247 + }, + { + "x": 500, + "y": 423.87783969613054 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 443.87783969613054 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 444.2222818027631 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 617 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.3228378096825395 + }, + [ + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 423.87783969613054 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 423.87783969613054 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 463.87783969613054 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 463.87783969613054 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 625 + }, + "bounds": { + "#": 628 + }, + "collisionFilter": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "density": 0.001, + "force": { + "#": 633 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 634 + }, + "positionImpulse": { + "#": 635 + }, + "positionPrev": { + "#": 636 + }, + "region": { + "#": 637 + }, + "render": { + "#": 638 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.08388238887564953, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 640 + }, + "vertices": { + "#": 641 + } + }, + [ + { + "#": 626 + }, + { + "#": 627 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 629 + }, + "min": { + "#": 630 + } + }, + { + "x": 580, + "y": 461.5209581893605 + }, + { + "x": 540, + "y": 421.4370758004849 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 441.5209581893605 + }, + { + "x": 0, + "y": -0.35032436907423475 + }, + { + "x": 560, + "y": 441.9137065171233 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 639 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.428879925662045 + }, + [ + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540, + "y": 421.5209581893605 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 421.5209581893605 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 461.5209581893605 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 461.5209581893605 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 647 + }, + "bounds": { + "#": 650 + }, + "collisionFilter": { + "#": 653 + }, + "constraintImpulse": { + "#": 654 + }, + "density": 0.001, + "force": { + "#": 655 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 656 + }, + "positionImpulse": { + "#": 657 + }, + "positionPrev": { + "#": 658 + }, + "region": { + "#": 659 + }, + "render": { + "#": 660 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.13229554043117972, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 662 + }, + "vertices": { + "#": 663 + } + }, + [ + { + "#": 648 + }, + { + "#": 649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 651 + }, + "min": { + "#": 652 + } + }, + { + "x": 220, + "y": 500.37292420096736 + }, + { + "x": 180, + "y": 460.2406286605362 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 480.2406286605362 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 480.25050128604704 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,9,10", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 661 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.011544733951382113 + }, + [ + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 460.2406286605362 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 460.2406286605362 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 500.2406286605362 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 500.2406286605362 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 669 + }, + "bounds": { + "#": 672 + }, + "collisionFilter": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "density": 0.001, + "force": { + "#": 677 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 678 + }, + "positionImpulse": { + "#": 679 + }, + "positionPrev": { + "#": 680 + }, + "region": { + "#": 681 + }, + "render": { + "#": 682 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.05873834210963924, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 684 + }, + "vertices": { + "#": 685 + } + }, + [ + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 673 + }, + "min": { + "#": 674 + } + }, + { + "x": 260, + "y": 501.3208518365944 + }, + { + "x": 220, + "y": 461.26211349448477 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 481.3208518365944 + }, + { + "x": 0, + "y": -0.3298644913987209 + }, + { + "x": 240, + "y": 481.6865014659328 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 683 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.32951803143913594 + }, + [ + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 461.3208518365944 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 461.3208518365944 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 501.3208518365944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 501.3208518365944 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 691 + }, + "bounds": { + "#": 694 + }, + "collisionFilter": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "density": 0.001, + "force": { + "#": 699 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 700 + }, + "positionImpulse": { + "#": 701 + }, + "positionPrev": { + "#": 702 + }, + "region": { + "#": 703 + }, + "render": { + "#": 704 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2658657757703129, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 706 + }, + "vertices": { + "#": 707 + } + }, + [ + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 695 + }, + "min": { + "#": 696 + } + }, + { + "x": 300, + "y": 503.4050742767637 + }, + { + "x": 260, + "y": 463.1392085009934 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 483.1392085009934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 483.43057615557257 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 705 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.2494074477748427 + }, + [ + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 463.1392085009934 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 463.1392085009934 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 503.1392085009934 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 503.1392085009934 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 713 + }, + "bounds": { + "#": 716 + }, + "collisionFilter": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "density": 0.001, + "force": { + "#": 721 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 722 + }, + "positionImpulse": { + "#": 723 + }, + "positionPrev": { + "#": 724 + }, + "region": { + "#": 725 + }, + "render": { + "#": 726 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6792312254502987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 728 + }, + "vertices": { + "#": 729 + } + }, + [ + { + "#": 714 + }, + { + "#": 715 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 717 + }, + "min": { + "#": 718 + } + }, + { + "x": 340, + "y": 505.1297373970159 + }, + { + "x": 300, + "y": 464.4505061715656 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 484.4505061715656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 484.3070378437815 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 727 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.14100076351394364 + }, + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 464.4505061715656 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 464.4505061715656 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 504.4505061715656 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 504.4505061715656 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 735 + }, + "bounds": { + "#": 738 + }, + "collisionFilter": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "density": 0.001, + "force": { + "#": 743 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 744 + }, + "positionImpulse": { + "#": 745 + }, + "positionPrev": { + "#": 746 + }, + "region": { + "#": 747 + }, + "render": { + "#": 748 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7135235874802892, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 750 + }, + "vertices": { + "#": 751 + } + }, + [ + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 739 + }, + "min": { + "#": 740 + } + }, + { + "x": 380, + "y": 505.5749226432018 + }, + { + "x": 340, + "y": 464.8613990557215 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 484.8613990557215 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 484.39004863408303 + }, + { + "endCol": 7, + "endRow": 10, + "id": "7,7,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 749 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.3607602114193469 + }, + [ + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 464.8613990557215 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 464.8613990557215 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 504.8613990557215 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 504.8613990557215 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 757 + }, + "bounds": { + "#": 760 + }, + "collisionFilter": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "density": 0.001, + "force": { + "#": 765 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 766 + }, + "positionImpulse": { + "#": 767 + }, + "positionPrev": { + "#": 768 + }, + "region": { + "#": 769 + }, + "render": { + "#": 770 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7135235874802892, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 772 + }, + "vertices": { + "#": 773 + } + }, + [ + { + "#": 758 + }, + { + "#": 759 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 761 + }, + "min": { + "#": 762 + } + }, + { + "x": 420, + "y": 505.58528913890103 + }, + { + "x": 380, + "y": 464.87176555142076 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 484.87176555142076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 484.4004151297823 + }, + { + "endCol": 8, + "endRow": 10, + "id": "7,8,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 771 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.3607602114193469 + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 464.87176555142076 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 464.87176555142076 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 504.87176555142076 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 504.87176555142076 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 779 + }, + "bounds": { + "#": 782 + }, + "collisionFilter": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "density": 0.001, + "force": { + "#": 787 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 788 + }, + "positionImpulse": { + "#": 789 + }, + "positionPrev": { + "#": 790 + }, + "region": { + "#": 791 + }, + "render": { + "#": 792 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7135235874802892, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 794 + }, + "vertices": { + "#": 795 + } + }, + [ + { + "#": 780 + }, + { + "#": 781 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 783 + }, + "min": { + "#": 784 + } + }, + { + "x": 460, + "y": 505.5749226432018 + }, + { + "x": 420, + "y": 464.8613990557215 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 484.8613990557215 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 484.39004863408303 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 793 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.3607602114193469 + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 464.8613990557215 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 464.8613990557215 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 504.8613990557215 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 504.8613990557215 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 801 + }, + "bounds": { + "#": 804 + }, + "collisionFilter": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "density": 0.001, + "force": { + "#": 809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 810 + }, + "positionImpulse": { + "#": 811 + }, + "positionPrev": { + "#": 812 + }, + "region": { + "#": 813 + }, + "render": { + "#": 814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6792312254502987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 816 + }, + "vertices": { + "#": 817 + } + }, + [ + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 805 + }, + "min": { + "#": 806 + } + }, + { + "x": 500, + "y": 505.1297373970159 + }, + { + "x": 460, + "y": 464.4505061715656 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 484.4505061715656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 484.3070378437815 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 815 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.14100076351394364 + }, + [ + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 464.4505061715656 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 464.4505061715656 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 504.4505061715656 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 504.4505061715656 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 823 + }, + "bounds": { + "#": 826 + }, + "collisionFilter": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "density": 0.001, + "force": { + "#": 831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 832 + }, + "positionImpulse": { + "#": 833 + }, + "positionPrev": { + "#": 834 + }, + "region": { + "#": 835 + }, + "render": { + "#": 836 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2658657757703129, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 838 + }, + "vertices": { + "#": 839 + } + }, + [ + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 827 + }, + "min": { + "#": 828 + } + }, + { + "x": 540, + "y": 503.4050742767637 + }, + { + "x": 500, + "y": 463.1392085009934 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 483.1392085009934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 483.43057615557257 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 837 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.2494074477748427 + }, + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 463.1392085009934 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 463.1392085009934 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 503.1392085009934 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 503.1392085009934 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 845 + }, + "bounds": { + "#": 848 + }, + "collisionFilter": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "density": 0.001, + "force": { + "#": 853 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 854 + }, + "positionImpulse": { + "#": 855 + }, + "positionPrev": { + "#": 856 + }, + "region": { + "#": 857 + }, + "render": { + "#": 858 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.05873834210963924, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 860 + }, + "vertices": { + "#": 861 + } + }, + [ + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 849 + }, + "min": { + "#": 850 + } + }, + { + "x": 580, + "y": 501.3208518365944 + }, + { + "x": 540, + "y": 461.26211349448477 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 481.3208518365944 + }, + { + "x": 0, + "y": -0.3298644913987209 + }, + { + "x": 560, + "y": 481.6865014659328 + }, + { + "endCol": 12, + "endRow": 10, + "id": "11,12,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 859 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.32951803143913594 + }, + [ + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540, + "y": 461.3208518365944 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 461.3208518365944 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 501.3208518365944 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 501.3208518365944 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 867 + }, + "bounds": { + "#": 870 + }, + "collisionFilter": { + "#": 873 + }, + "constraintImpulse": { + "#": 874 + }, + "density": 0.001, + "force": { + "#": 875 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 876 + }, + "positionImpulse": { + "#": 877 + }, + "positionPrev": { + "#": 878 + }, + "region": { + "#": 879 + }, + "render": { + "#": 880 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.13229554043117972, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 882 + }, + "vertices": { + "#": 883 + } + }, + [ + { + "#": 868 + }, + { + "#": 869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 871 + }, + "min": { + "#": 872 + } + }, + { + "x": 620, + "y": 500.37292420096736 + }, + { + "x": 580, + "y": 460.2406286605362 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 480.2406286605362 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 480.25050128604704 + }, + { + "endCol": 12, + "endRow": 10, + "id": "12,12,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 881 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.011544733951382113 + }, + [ + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 460.2406286605362 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620, + "y": 460.2406286605362 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 500.2406286605362 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 500.2406286605362 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 889 + }, + "bounds": { + "#": 892 + }, + "collisionFilter": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "density": 0.001, + "force": { + "#": 897 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 898 + }, + "positionImpulse": { + "#": 899 + }, + "positionPrev": { + "#": 900 + }, + "region": { + "#": 901 + }, + "render": { + "#": 902 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2916986650262136, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 904 + }, + "vertices": { + "#": 905 + } + }, + [ + { + "#": 890 + }, + { + "#": 891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 893 + }, + "min": { + "#": 894 + } + }, + { + "x": 180, + "y": 540.2475894189695 + }, + { + "x": 140, + "y": 499.9558907539433 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 519.9558907539433 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 519.9522311731891 + }, + { + "endCol": 3, + "endRow": 11, + "id": "2,3,10,11", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 903 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.005195978251322231 + }, + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 499.9558907539433 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 499.9558907539433 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 539.9558907539433 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 539.9558907539433 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 911 + }, + "bounds": { + "#": 914 + }, + "collisionFilter": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "density": 0.001, + "force": { + "#": 919 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 920 + }, + "positionImpulse": { + "#": 921 + }, + "positionPrev": { + "#": 922 + }, + "region": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.1507735843643111, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 912 + }, + { + "#": 913 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 915 + }, + "min": { + "#": 916 + } + }, + { + "x": 220, + "y": 540.2769982699166 + }, + { + "x": 180, + "y": 500.1262246855524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 520.1262246855523 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 520.1348432297328 + }, + { + "endCol": 4, + "endRow": 11, + "id": "3,4,10,11", + "startCol": 3, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.006946435740019297 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 500.1262246855524 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 500.1262246855524 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 540.1262246855523 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 540.1262246855523 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 933 + }, + "bounds": { + "#": 936 + }, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "region": { + "#": 945 + }, + "render": { + "#": 946 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.02318941531173052, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 948 + }, + "vertices": { + "#": 949 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 260, + "y": 540.8650228768364 + }, + { + "x": 220, + "y": 500.8418334615245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 520.8418334615246 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 521.1190065667746 + }, + { + "endCol": 5, + "endRow": 11, + "id": "4,5,10,11", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 947 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.20737987033123773 + }, + [ + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 500.8418334615245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 500.8418334615245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 540.8418334615246 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 540.8418334615246 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 955 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.29912010988201887, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 300, + "y": 542.2926953620454 + }, + { + "x": 260, + "y": 501.9935752521634 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 521.9935752521634 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 522.1992535392487 + }, + { + "endCol": 6, + "endRow": 11, + "id": "5,6,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.14737273949924656 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 501.9935752521634 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 501.9935752521634 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 541.9935752521634 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 541.9935752521634 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 977 + }, + "bounds": { + "#": 980 + }, + "collisionFilter": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "density": 0.001, + "force": { + "#": 985 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 986 + }, + "positionImpulse": { + "#": 987 + }, + "positionPrev": { + "#": 988 + }, + "region": { + "#": 989 + }, + "render": { + "#": 990 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5639265283965865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 992 + }, + "vertices": { + "#": 993 + } + }, + [ + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 981 + }, + "min": { + "#": 982 + } + }, + { + "x": 340, + "y": 543.3152645408715 + }, + { + "x": 300, + "y": 502.7513380124749 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 522.7513380124749 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 522.6271127541844 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 991 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.10185791799233357 + }, + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 502.7513380124749 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 502.7513380124749 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 542.7513380124749 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 542.7513380124749 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 999 + }, + "bounds": { + "#": 1002 + }, + "collisionFilter": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "density": 0.001, + "force": { + "#": 1007 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1008 + }, + "positionImpulse": { + "#": 1009 + }, + "positionPrev": { + "#": 1010 + }, + "region": { + "#": 1011 + }, + "render": { + "#": 1012 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5639265283965865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1014 + }, + "vertices": { + "#": 1015 + } + }, + [ + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1003 + }, + "min": { + "#": 1004 + } + }, + { + "x": 380, + "y": 543.4783047263486 + }, + { + "x": 340, + "y": 502.91437819795203 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 522.914378197952 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 522.6323210901903 + }, + { + "endCol": 7, + "endRow": 11, + "id": "7,7,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1013 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.17711963621820814 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 502.91437819795203 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 502.91437819795203 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 542.914378197952 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 542.914378197952 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1021 + }, + "bounds": { + "#": 1024 + }, + "collisionFilter": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "density": 0.001, + "force": { + "#": 1029 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1030 + }, + "positionImpulse": { + "#": 1031 + }, + "positionPrev": { + "#": 1032 + }, + "region": { + "#": 1033 + }, + "render": { + "#": 1034 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5639265283965865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1036 + }, + "vertices": { + "#": 1037 + } + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1025 + }, + "min": { + "#": 1026 + } + }, + { + "x": 420, + "y": 543.4789963670098 + }, + { + "x": 380, + "y": 502.91506983861325 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 522.9150698386132 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 522.6330127308515 + }, + { + "endCol": 8, + "endRow": 11, + "id": "7,8,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1035 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.17711963621820814 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 502.91506983861325 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 502.91506983861325 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 542.9150698386132 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 542.9150698386132 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1043 + }, + "bounds": { + "#": 1046 + }, + "collisionFilter": { + "#": 1049 + }, + "constraintImpulse": { + "#": 1050 + }, + "density": 0.001, + "force": { + "#": 1051 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1052 + }, + "positionImpulse": { + "#": 1053 + }, + "positionPrev": { + "#": 1054 + }, + "region": { + "#": 1055 + }, + "render": { + "#": 1056 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5639265283965865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1058 + }, + "vertices": { + "#": 1059 + } + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1047 + }, + "min": { + "#": 1048 + } + }, + { + "x": 460, + "y": 543.4783047263486 + }, + { + "x": 420, + "y": 502.91437819795203 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 522.914378197952 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 522.6323210901903 + }, + { + "endCol": 9, + "endRow": 11, + "id": "8,9,10,11", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1057 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.17711963621820814 + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 502.91437819795203 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 502.91437819795203 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 542.914378197952 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 542.914378197952 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1065 + }, + "bounds": { + "#": 1068 + }, + "collisionFilter": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "density": 0.001, + "force": { + "#": 1073 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1074 + }, + "positionImpulse": { + "#": 1075 + }, + "positionPrev": { + "#": 1076 + }, + "region": { + "#": 1077 + }, + "render": { + "#": 1078 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.5639265283965865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1080 + }, + "vertices": { + "#": 1081 + } + }, + [ + { + "#": 1066 + }, + { + "#": 1067 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1069 + }, + "min": { + "#": 1070 + } + }, + { + "x": 500, + "y": 543.3152645408715 + }, + { + "x": 460, + "y": 502.7513380124749 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 522.7513380124749 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 522.6271127541844 + }, + { + "endCol": 10, + "endRow": 11, + "id": "9,10,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1079 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.10185791799233357 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 502.7513380124749 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 502.7513380124749 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 542.7513380124749 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 542.7513380124749 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1087 + }, + "bounds": { + "#": 1090 + }, + "collisionFilter": { + "#": 1093 + }, + "constraintImpulse": { + "#": 1094 + }, + "density": 0.001, + "force": { + "#": 1095 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1096 + }, + "positionImpulse": { + "#": 1097 + }, + "positionPrev": { + "#": 1098 + }, + "region": { + "#": 1099 + }, + "render": { + "#": 1100 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.29912010988201887, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1102 + }, + "vertices": { + "#": 1103 + } + }, + [ + { + "#": 1088 + }, + { + "#": 1089 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1091 + }, + "min": { + "#": 1092 + } + }, + { + "x": 540, + "y": 542.2926953620454 + }, + { + "x": 500, + "y": 501.9935752521634 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 521.9935752521634 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 522.1992535392487 + }, + { + "endCol": 11, + "endRow": 11, + "id": "10,11,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1101 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.14737273949924656 + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 501.9935752521634 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 501.9935752521634 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 541.9935752521634 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 541.9935752521634 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1109 + }, + "bounds": { + "#": 1112 + }, + "collisionFilter": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "density": 0.001, + "force": { + "#": 1117 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1118 + }, + "positionImpulse": { + "#": 1119 + }, + "positionPrev": { + "#": 1120 + }, + "region": { + "#": 1121 + }, + "render": { + "#": 1122 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.02318941531173052, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1124 + }, + "vertices": { + "#": 1125 + } + }, + [ + { + "#": 1110 + }, + { + "#": 1111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1113 + }, + "min": { + "#": 1114 + } + }, + { + "x": 580, + "y": 540.8650228768364 + }, + { + "x": 540, + "y": 500.8418334615245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 520.8418334615246 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 521.1190065667746 + }, + { + "endCol": 12, + "endRow": 11, + "id": "11,12,10,11", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1123 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.20737987033123773 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540, + "y": 500.8418334615245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 500.8418334615245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 540.8418334615246 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 540.8418334615246 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1131 + }, + "bounds": { + "#": 1134 + }, + "collisionFilter": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "density": 0.001, + "force": { + "#": 1139 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1140 + }, + "positionImpulse": { + "#": 1141 + }, + "positionPrev": { + "#": 1142 + }, + "region": { + "#": 1143 + }, + "render": { + "#": 1144 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.1507735843643111, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1146 + }, + "vertices": { + "#": 1147 + } + }, + [ + { + "#": 1132 + }, + { + "#": 1133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1135 + }, + "min": { + "#": 1136 + } + }, + { + "x": 620, + "y": 540.2769982699166 + }, + { + "x": 580, + "y": 500.1262246855524 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 520.1262246855523 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 520.1348432297328 + }, + { + "endCol": 12, + "endRow": 11, + "id": "12,12,10,11", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1145 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.006946435740019297 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 500.1262246855524 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620, + "y": 500.1262246855524 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 540.1262246855523 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 540.1262246855523 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1153 + }, + "bounds": { + "#": 1156 + }, + "collisionFilter": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "density": 0.001, + "force": { + "#": 1161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1162 + }, + "positionImpulse": { + "#": 1163 + }, + "positionPrev": { + "#": 1164 + }, + "region": { + "#": 1165 + }, + "render": { + "#": 1166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2916986650262136, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1168 + }, + "vertices": { + "#": 1169 + } + }, + [ + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1157 + }, + "min": { + "#": 1158 + } + }, + { + "x": 660, + "y": 540.2475894189695 + }, + { + "x": 620, + "y": 499.9558907539433 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640, + "y": 519.9558907539433 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640, + "y": 519.9522311731891 + }, + { + "endCol": 13, + "endRow": 11, + "id": "12,13,10,11", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1167 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.005195978251322231 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 620, + "y": 499.9558907539433 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 660, + "y": 499.9558907539433 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 660, + "y": 539.9558907539433 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 620, + "y": 539.9558907539433 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1175 + }, + "bounds": { + "#": 1178 + }, + "collisionFilter": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "density": 0.001, + "force": { + "#": 1183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1184 + }, + "positionImpulse": { + "#": 1185 + }, + "positionPrev": { + "#": 1186 + }, + "region": { + "#": 1187 + }, + "render": { + "#": 1188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2777777726188249, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1190 + }, + "vertices": { + "#": 1191 + } + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1179 + }, + "min": { + "#": 1180 + } + }, + { + "x": 140, + "y": 580.0777780503969 + }, + { + "x": 100, + "y": 539.800000277778 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 559.800000277778 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 559.8000002771738 + }, + { + "endCol": 2, + "endRow": 12, + "id": "2,2,11,12", + "startCol": 2, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1189 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.215642780356575e-9 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 539.800000277778 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 539.800000277778 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 579.800000277778 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 579.800000277778 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1197 + }, + "bounds": { + "#": 1200 + }, + "collisionFilter": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "density": 0.001, + "force": { + "#": 1205 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1206 + }, + "positionImpulse": { + "#": 1207 + }, + "positionPrev": { + "#": 1208 + }, + "region": { + "#": 1209 + }, + "render": { + "#": 1210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.28731537269902746, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1212 + }, + "vertices": { + "#": 1213 + } + }, + [ + { + "#": 1198 + }, + { + "#": 1199 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1201 + }, + "min": { + "#": 1202 + } + }, + { + "x": 180, + "y": 580.1402608911369 + }, + { + "x": 140, + "y": 539.8529455184379 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 559.8529455184379 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 559.8504382358065 + }, + { + "endCol": 3, + "endRow": 12, + "id": "2,3,11,12", + "startCol": 2, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1211 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.0009708851342793423 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 539.8529455184379 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 539.8529455184379 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 579.8529455184379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 579.8529455184379 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1219 + }, + "bounds": { + "#": 1222 + }, + "collisionFilter": { + "#": 1225 + }, + "constraintImpulse": { + "#": 1226 + }, + "density": 0.001, + "force": { + "#": 1227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1228 + }, + "positionImpulse": { + "#": 1229 + }, + "positionPrev": { + "#": 1230 + }, + "region": { + "#": 1231 + }, + "render": { + "#": 1232 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.21002129091608665, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1234 + }, + "vertices": { + "#": 1235 + } + }, + [ + { + "#": 1220 + }, + { + "#": 1221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1223 + }, + "min": { + "#": 1224 + } + }, + { + "x": 220, + "y": 580.1159317715958 + }, + { + "x": 180, + "y": 539.9059104806797 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 559.9059104806797 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 559.9105082299211 + }, + { + "endCol": 4, + "endRow": 12, + "id": "3,4,11,12", + "startCol": 3, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1233 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.0014661672432794148 + }, + [ + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 539.9059104806797 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 539.9059104806797 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 579.9059104806797 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 579.9059104806797 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1241 + }, + "bounds": { + "#": 1244 + }, + "collisionFilter": { + "#": 1247 + }, + "constraintImpulse": { + "#": 1248 + }, + "density": 0.001, + "force": { + "#": 1249 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1250 + }, + "positionImpulse": { + "#": 1251 + }, + "positionPrev": { + "#": 1252 + }, + "region": { + "#": 1253 + }, + "render": { + "#": 1254 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.15336324593410677, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1256 + }, + "vertices": { + "#": 1257 + } + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1245 + }, + "min": { + "#": 1246 + } + }, + { + "x": 260, + "y": 580.3098240789215 + }, + { + "x": 220, + "y": 540.1564608329874 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 560.1564608329874 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 560.2923129240986 + }, + { + "endCol": 5, + "endRow": 12, + "id": "4,5,11,12", + "startCol": 4, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1255 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.04048171881777307 + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 540.1564608329874 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 540.1564608329874 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 580.1564608329874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 580.1564608329874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1263 + }, + "bounds": { + "#": 1266 + }, + "collisionFilter": { + "#": 1269 + }, + "constraintImpulse": { + "#": 1270 + }, + "density": 0.001, + "force": { + "#": 1271 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1272 + }, + "positionImpulse": { + "#": 1273 + }, + "positionPrev": { + "#": 1274 + }, + "region": { + "#": 1275 + }, + "render": { + "#": 1276 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.3031722114315876, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1278 + }, + "vertices": { + "#": 1279 + } + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1267 + }, + "min": { + "#": 1268 + } + }, + { + "x": 300, + "y": 580.8546257286664 + }, + { + "x": 260, + "y": 540.5514535172348 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 560.5514535172348 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 560.6473466737593 + }, + { + "endCol": 6, + "endRow": 12, + "id": "5,6,11,12", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1277 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.02725371255803566 + }, + [ + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 540.5514535172348 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 540.5514535172348 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 580.5514535172348 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 580.5514535172348 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1285 + }, + "bounds": { + "#": 1288 + }, + "collisionFilter": { + "#": 1291 + }, + "constraintImpulse": { + "#": 1292 + }, + "density": 0.001, + "force": { + "#": 1293 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1294 + }, + "positionImpulse": { + "#": 1295 + }, + "positionPrev": { + "#": 1296 + }, + "region": { + "#": 1297 + }, + "render": { + "#": 1298 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.41483976290000735, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1300 + }, + "vertices": { + "#": 1301 + } + }, + [ + { + "#": 1286 + }, + { + "#": 1287 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1289 + }, + "min": { + "#": 1290 + } + }, + { + "x": 340, + "y": 581.2126963970635 + }, + { + "x": 300, + "y": 540.7978566341635 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 560.7978566341635 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 560.7301109392032 + }, + { + "endCol": 7, + "endRow": 12, + "id": "6,7,11,12", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1299 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.022262730917759654 + }, + [ + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 540.7978566341635 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 540.7978566341635 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 580.7978566341635 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 580.7978566341635 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1307 + }, + "bounds": { + "#": 1310 + }, + "collisionFilter": { + "#": 1313 + }, + "constraintImpulse": { + "#": 1314 + }, + "density": 0.001, + "force": { + "#": 1315 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1316 + }, + "positionImpulse": { + "#": 1317 + }, + "positionPrev": { + "#": 1318 + }, + "region": { + "#": 1319 + }, + "render": { + "#": 1320 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.41483976290000735, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1322 + }, + "vertices": { + "#": 1323 + } + }, + [ + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1311 + }, + "min": { + "#": 1312 + } + }, + { + "x": 380, + "y": 581.2528556530127 + }, + { + "x": 340, + "y": 540.8380158901127 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 560.8380158901127 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 560.724216889097 + }, + { + "endCol": 7, + "endRow": 12, + "id": "7,7,11,12", + "startCol": 7, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1321 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.029371487412731767 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 540.8380158901127 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 540.8380158901127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 580.8380158901127 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 580.8380158901127 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1329 + }, + "bounds": { + "#": 1332 + }, + "collisionFilter": { + "#": 1335 + }, + "constraintImpulse": { + "#": 1336 + }, + "density": 0.001, + "force": { + "#": 1337 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1338 + }, + "positionImpulse": { + "#": 1339 + }, + "positionPrev": { + "#": 1340 + }, + "region": { + "#": 1341 + }, + "render": { + "#": 1342 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.41483976290000735, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1344 + }, + "vertices": { + "#": 1345 + } + }, + [ + { + "#": 1330 + }, + { + "#": 1331 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1333 + }, + "min": { + "#": 1334 + } + }, + { + "x": 420, + "y": 581.2528556530127 + }, + { + "x": 380, + "y": 540.8380158901127 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 560.8380158901127 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 560.724216889097 + }, + { + "endCol": 8, + "endRow": 12, + "id": "7,8,11,12", + "startCol": 7, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1343 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.029371487412731767 + }, + [ + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 540.8380158901127 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 540.8380158901127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 580.8380158901127 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 580.8380158901127 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1351 + }, + "bounds": { + "#": 1354 + }, + "collisionFilter": { + "#": 1357 + }, + "constraintImpulse": { + "#": 1358 + }, + "density": 0.001, + "force": { + "#": 1359 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1360 + }, + "positionImpulse": { + "#": 1361 + }, + "positionPrev": { + "#": 1362 + }, + "region": { + "#": 1363 + }, + "render": { + "#": 1364 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.41483976290000735, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1366 + }, + "vertices": { + "#": 1367 + } + }, + [ + { + "#": 1352 + }, + { + "#": 1353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1355 + }, + "min": { + "#": 1356 + } + }, + { + "x": 460, + "y": 581.2528556530127 + }, + { + "x": 420, + "y": 540.8380158901127 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 560.8380158901127 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 560.724216889097 + }, + { + "endCol": 9, + "endRow": 12, + "id": "8,9,11,12", + "startCol": 8, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1365 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.029371487412731767 + }, + [ + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 540.8380158901127 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 540.8380158901127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 580.8380158901127 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 580.8380158901127 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1373 + }, + "bounds": { + "#": 1376 + }, + "collisionFilter": { + "#": 1379 + }, + "constraintImpulse": { + "#": 1380 + }, + "density": 0.001, + "force": { + "#": 1381 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1382 + }, + "positionImpulse": { + "#": 1383 + }, + "positionPrev": { + "#": 1384 + }, + "region": { + "#": 1385 + }, + "render": { + "#": 1386 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.41483976290000735, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1388 + }, + "vertices": { + "#": 1389 + } + }, + [ + { + "#": 1374 + }, + { + "#": 1375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1377 + }, + "min": { + "#": 1378 + } + }, + { + "x": 500, + "y": 581.2126963970635 + }, + { + "x": 460, + "y": 540.7978566341635 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 560.7978566341635 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 560.7301109392032 + }, + { + "endCol": 10, + "endRow": 12, + "id": "9,10,11,12", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1387 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.022262730917759654 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 540.7978566341635 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 540.7978566341635 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 580.7978566341635 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 580.7978566341635 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1395 + }, + "bounds": { + "#": 1398 + }, + "collisionFilter": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "density": 0.001, + "force": { + "#": 1403 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1404 + }, + "positionImpulse": { + "#": 1405 + }, + "positionPrev": { + "#": 1406 + }, + "region": { + "#": 1407 + }, + "render": { + "#": 1408 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.3031722114315876, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1410 + }, + "vertices": { + "#": 1411 + } + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1399 + }, + "min": { + "#": 1400 + } + }, + { + "x": 540, + "y": 580.8546257286664 + }, + { + "x": 500, + "y": 540.5514535172348 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 560.5514535172348 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 520, + "y": 560.6473466737593 + }, + { + "endCol": 11, + "endRow": 12, + "id": "10,11,11,12", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1409 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.02725371255803566 + }, + [ + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 540.5514535172348 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 540, + "y": 540.5514535172348 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540, + "y": 580.5514535172348 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 580.5514535172348 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1417 + }, + "bounds": { + "#": 1420 + }, + "collisionFilter": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "density": 0.001, + "force": { + "#": 1425 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1426 + }, + "positionImpulse": { + "#": 1427 + }, + "positionPrev": { + "#": 1428 + }, + "region": { + "#": 1429 + }, + "render": { + "#": 1430 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.15336324593410677, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1432 + }, + "vertices": { + "#": 1433 + } + }, + [ + { + "#": 1418 + }, + { + "#": 1419 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1421 + }, + "min": { + "#": 1422 + } + }, + { + "x": 580, + "y": 580.3098240789215 + }, + { + "x": 540, + "y": 540.1564608329874 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 560.1564608329874 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560, + "y": 560.2923129240986 + }, + { + "endCol": 12, + "endRow": 12, + "id": "11,12,11,12", + "startCol": 11, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1431 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.04048171881777307 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 540, + "y": 540.1564608329874 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 540.1564608329874 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 580.1564608329874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 540, + "y": 580.1564608329874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1439 + }, + "bounds": { + "#": 1442 + }, + "collisionFilter": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "density": 0.001, + "force": { + "#": 1447 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1448 + }, + "positionImpulse": { + "#": 1449 + }, + "positionPrev": { + "#": 1450 + }, + "region": { + "#": 1451 + }, + "render": { + "#": 1452 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.21002129091608665, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1454 + }, + "vertices": { + "#": 1455 + } + }, + [ + { + "#": 1440 + }, + { + "#": 1441 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1443 + }, + "min": { + "#": 1444 + } + }, + { + "x": 620, + "y": 580.1159317715958 + }, + { + "x": 580, + "y": 539.9059104806797 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 559.9059104806797 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600, + "y": 559.9105082299211 + }, + { + "endCol": 12, + "endRow": 12, + "id": "12,12,11,12", + "startCol": 12, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1453 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": -0.0014661672432794148 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 539.9059104806797 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 620, + "y": 539.9059104806797 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 620, + "y": 579.9059104806797 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 579.9059104806797 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1461 + }, + "bounds": { + "#": 1464 + }, + "collisionFilter": { + "#": 1467 + }, + "constraintImpulse": { + "#": 1468 + }, + "density": 0.001, + "force": { + "#": 1469 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1470 + }, + "positionImpulse": { + "#": 1471 + }, + "positionPrev": { + "#": 1472 + }, + "region": { + "#": 1473 + }, + "render": { + "#": 1474 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.28731537269902746, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1476 + }, + "vertices": { + "#": 1477 + } + }, + [ + { + "#": 1462 + }, + { + "#": 1463 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1465 + }, + "min": { + "#": 1466 + } + }, + { + "x": 660, + "y": 580.1402608911369 + }, + { + "x": 620, + "y": 539.8529455184379 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640, + "y": 559.8529455184379 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 640, + "y": 559.8504382358065 + }, + { + "endCol": 13, + "endRow": 12, + "id": "12,13,11,12", + "startCol": 12, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1475 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.0009708851342793423 + }, + [ + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 620, + "y": 539.8529455184379 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 660, + "y": 539.8529455184379 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 660, + "y": 579.8529455184379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 620, + "y": 579.8529455184379 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1483 + }, + "bounds": { + "#": 1486 + }, + "collisionFilter": { + "#": 1489 + }, + "constraintImpulse": { + "#": 1490 + }, + "density": 0.001, + "force": { + "#": 1491 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1492 + }, + "positionImpulse": { + "#": 1493 + }, + "positionPrev": { + "#": 1494 + }, + "region": { + "#": 1495 + }, + "render": { + "#": 1496 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.2777777726188249, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1498 + }, + "vertices": { + "#": 1499 + } + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1487 + }, + "min": { + "#": 1488 + } + }, + { + "x": 700, + "y": 580.0777780503969 + }, + { + "x": 660, + "y": 539.800000277778 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 680, + "y": 559.800000277778 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 680, + "y": 559.8000002771738 + }, + { + "endCol": 14, + "endRow": 12, + "id": "13,14,11,12", + "startCol": 13, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1497 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.215642780356575e-9 + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 660, + "y": 539.800000277778 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 539.800000277778 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 579.800000277778 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 660, + "y": 579.800000277778 + }, + [], + [], + [ + { + "#": 1507 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1508 + }, + "pointB": "", + "render": { + "#": 1509 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/raycasting/raycasting-0.json b/tests/browser/refs/raycasting/raycasting-0.json new file mode 100644 index 00000000..d706be90 --- /dev/null +++ b/tests/browser/refs/raycasting/raycasting-0.json @@ -0,0 +1,14451 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 111 + }, + "composites": { + "#": 114 + }, + "constraints": { + "#": 1646 + }, + "gravity": { + "#": 1650 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3234, + "axes": { + "#": 87 + }, + "bounds": { + "#": 93 + }, + "collisionFilter": { + "#": 96 + }, + "constraintImpulse": { + "#": 97 + }, + "density": 0.001, + "force": { + "#": 98 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 99 + }, + "positionImpulse": { + "#": 100 + }, + "positionPrev": { + "#": 101 + }, + "render": { + "#": 102 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 104 + }, + "vertices": { + "#": 105 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + }, + { + "#": 90 + }, + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -0.9603462267536241, + "y": 0.27881019486395536 + }, + { + "x": -0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "x": 0.6050832675335579, + "y": -0.7961621941231025 + }, + { + "max": { + "#": 94 + }, + "min": { + "#": 95 + } + }, + { + "x": 250, + "y": 245.2517006802721 + }, + { + "x": 150, + "y": 145.2517006802721 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 103 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 183.2517006802721 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232, + "y": 245.2517006802721 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 168, + "y": 245.2517006802721 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 183.2517006802721 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 200, + "y": 145.2517006802721 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 115 + } + ], + { + "bodies": { + "#": 116 + }, + "composites": { + "#": 1644 + }, + "constraints": { + "#": 1645 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 117 + }, + { + "#": 138 + }, + { + "#": 159 + }, + { + "#": 180 + }, + { + "#": 201 + }, + { + "#": 225 + }, + { + "#": 250 + }, + { + "#": 304 + }, + { + "#": 325 + }, + { + "#": 346 + }, + { + "#": 367 + }, + { + "#": 388 + }, + { + "#": 409 + }, + { + "#": 438 + }, + { + "#": 459 + }, + { + "#": 484 + }, + { + "#": 505 + }, + { + "#": 526 + }, + { + "#": 580 + }, + { + "#": 601 + }, + { + "#": 622 + }, + { + "#": 676 + }, + { + "#": 697 + }, + { + "#": 718 + }, + { + "#": 739 + }, + { + "#": 763 + }, + { + "#": 787 + }, + { + "#": 808 + }, + { + "#": 832 + }, + { + "#": 853 + }, + { + "#": 877 + }, + { + "#": 898 + }, + { + "#": 919 + }, + { + "#": 940 + }, + { + "#": 967 + }, + { + "#": 988 + }, + { + "#": 1009 + }, + { + "#": 1030 + }, + { + "#": 1051 + }, + { + "#": 1072 + }, + { + "#": 1126 + }, + { + "#": 1147 + }, + { + "#": 1176 + }, + { + "#": 1197 + }, + { + "#": 1226 + }, + { + "#": 1247 + }, + { + "#": 1268 + }, + { + "#": 1289 + }, + { + "#": 1310 + }, + { + "#": 1339 + }, + { + "#": 1360 + }, + { + "#": 1381 + }, + { + "#": 1402 + }, + { + "#": 1423 + }, + { + "#": 1477 + }, + { + "#": 1498 + }, + { + "#": 1552 + }, + { + "#": 1573 + }, + { + "#": 1602 + }, + { + "#": 1623 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1534.906434764454, + "axes": { + "#": 118 + }, + "bounds": { + "#": 121 + }, + "collisionFilter": { + "#": 124 + }, + "constraintImpulse": { + "#": 125 + }, + "density": 0.001, + "force": { + "#": 126 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 127 + }, + "positionImpulse": { + "#": 128 + }, + "positionPrev": { + "#": 129 + }, + "render": { + "#": 130 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 132 + }, + "vertices": { + "#": 133 + } + }, + [ + { + "#": 119 + }, + { + "#": 120 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 122 + }, + "min": { + "#": 123 + } + }, + { + "x": 56.40316358024691, + "y": 62.164094650205755 + }, + { + "x": 19.999999999999996, + "y": 19.999999999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.201581790123456, + "y": 41.08204732510288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.201581790123456, + "y": 41.08204732510288 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 131 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 19.999999999999996, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 56.40316358024691, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.40316358024691, + "y": 62.164094650205755 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 19.999999999999996, + "y": 62.164094650205755 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.52878634164, + "axes": { + "#": 139 + }, + "bounds": { + "#": 142 + }, + "collisionFilter": { + "#": 145 + }, + "constraintImpulse": { + "#": 146 + }, + "density": 0.001, + "force": { + "#": 147 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 148 + }, + "positionImpulse": { + "#": 149 + }, + "positionPrev": { + "#": 150 + }, + "render": { + "#": 151 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 153 + }, + "vertices": { + "#": 154 + } + }, + [ + { + "#": 140 + }, + { + "#": 141 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 143 + }, + "min": { + "#": 144 + } + }, + { + "x": 101.7190072016461, + "y": 69.0011574074074 + }, + { + "x": 56.40316358024691, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.0610853909465, + "y": 44.5005787037037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.0610853909465, + "y": 44.5005787037037 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 152 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.40316358024691, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 101.7190072016461, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 101.7190072016461, + "y": 69.0011574074074 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 56.40316358024691, + "y": 69.0011574074074 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1140.197701571206, + "axes": { + "#": 160 + }, + "bounds": { + "#": 163 + }, + "collisionFilter": { + "#": 166 + }, + "constraintImpulse": { + "#": 167 + }, + "density": 0.001, + "force": { + "#": 168 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 169 + }, + "positionImpulse": { + "#": 170 + }, + "positionPrev": { + "#": 171 + }, + "render": { + "#": 172 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 174 + }, + "vertices": { + "#": 175 + } + }, + [ + { + "#": 161 + }, + { + "#": 162 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 164 + }, + "min": { + "#": 165 + } + }, + { + "x": 140.93981481481484, + "y": 49.07124485596708 + }, + { + "x": 101.7190072016461, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.32941100823047, + "y": 34.53562242798354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.32941100823047, + "y": 34.53562242798354 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 173 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 101.7190072016461, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.93981481481484, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140.93981481481484, + "y": 49.07124485596708 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 101.7190072016461, + "y": 49.07124485596708 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 752.4076041785743, + "axes": { + "#": 181 + }, + "bounds": { + "#": 184 + }, + "collisionFilter": { + "#": 187 + }, + "constraintImpulse": { + "#": 188 + }, + "density": 0.001, + "force": { + "#": 189 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 190 + }, + "positionImpulse": { + "#": 191 + }, + "positionPrev": { + "#": 192 + }, + "render": { + "#": 193 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 195 + }, + "vertices": { + "#": 196 + } + }, + [ + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 185 + }, + "min": { + "#": 186 + } + }, + { + "x": 165.81712962962968, + "y": 50.24472736625515 + }, + { + "x": 140.93981481481484, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.37847222222226, + "y": 35.122363683127574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.37847222222226, + "y": 35.122363683127574 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 194 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140.93981481481484, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 165.81712962962968, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.81712962962968, + "y": 50.24472736625515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.93981481481484, + "y": 50.24472736625515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2027.2541820000001, + "axes": { + "#": 202 + }, + "bounds": { + "#": 206 + }, + "collisionFilter": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "density": 0.001, + "force": { + "#": 211 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 212 + }, + "positionImpulse": { + "#": 213 + }, + "positionPrev": { + "#": 214 + }, + "render": { + "#": 215 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 217 + }, + "vertices": { + "#": 218 + } + }, + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "x": -0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 207 + }, + "min": { + "#": 208 + } + }, + { + "x": 214.19912962962968, + "y": 75.868 + }, + { + "x": 165.81712962962968, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 190.00812962962968, + "y": 47.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 190.00812962962968, + "y": 47.934 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 216 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.19912962962968, + "y": 61.900999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.00812962962968, + "y": 75.868 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.81712962962968, + "y": 61.900999999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 165.81712962962968, + "y": 33.967 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 190.00812962962968, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 214.19912962962968, + "y": 33.967 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4842.27229, + "axes": { + "#": 226 + }, + "bounds": { + "#": 232 + }, + "collisionFilter": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "density": 0.001, + "force": { + "#": 237 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 238 + }, + "positionImpulse": { + "#": 239 + }, + "positionPrev": { + "#": 240 + }, + "render": { + "#": 241 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 243 + }, + "vertices": { + "#": 244 + } + }, + [ + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": 0.30902000749156683, + "y": 0.95105553726894 + }, + { + "x": -0.8090188345853124, + "y": 0.5877827194518592 + }, + { + "x": -0.8090188345853124, + "y": -0.5877827194518592 + }, + { + "x": 0.30902000749156683, + "y": -0.95105553726894 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 233 + }, + "min": { + "#": 234 + } + }, + { + "x": 291.5277437444547, + "y": 105.84 + }, + { + "x": 209.8897437444547, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.0181296296297, + "y": 62.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.0181296296297, + "y": 62.92 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 242 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 291.5277437444547, + "y": 89.446 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 241.0727437444547, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 209.8897437444547, + "y": 62.92 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.0727437444547, + "y": 20 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.5277437444547, + "y": 36.394000000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3079.0178339999993, + "axes": { + "#": 251 + }, + "bounds": { + "#": 265 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "density": 0.001, + "force": { + "#": 270 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 271 + }, + "positionImpulse": { + "#": 272 + }, + "positionPrev": { + "#": 273 + }, + "render": { + "#": 274 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 276 + }, + "vertices": { + "#": 277 + } + }, + [ + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + } + ], + { + "x": -0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": -0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": -0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": -0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": -0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": -0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": 0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": 0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": 0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": 0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 266 + }, + "min": { + "#": 267 + } + }, + { + "x": 353.98774374445475, + "y": 82.918 + }, + { + "x": 291.5277437444547, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.75774374445473, + "y": 51.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.75774374445473, + "y": 51.459 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 275 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + }, + { + "#": 303 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.98774374445475, + "y": 55.251000000000005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.17274374445475, + "y": 62.615 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 348.6477437444547, + "y": 69.33 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 343.6187437444547, + "y": 75.007 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.37774374445473, + "y": 79.315 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 330.2867437444547, + "y": 82.004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.75774374445473, + "y": 82.918 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 315.22874374445473, + "y": 82.004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.1377437444547, + "y": 79.315 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.89674374445474, + "y": 75.007 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 296.86774374445474, + "y": 69.33 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 293.3427437444547, + "y": 62.615 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 291.5277437444547, + "y": 55.251000000000005 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 291.5277437444547, + "y": 47.667 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 293.3427437444547, + "y": 40.303000000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 296.86774374445474, + "y": 33.58800000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 301.89674374445474, + "y": 27.911000000000005 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.1377437444547, + "y": 23.603 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 315.22874374445473, + "y": 20.914 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 322.75774374445473, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 330.2867437444547, + "y": 20.914 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 337.37774374445473, + "y": 23.603 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 343.6187437444547, + "y": 27.911000000000005 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 348.6477437444547, + "y": 33.58800000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 352.17274374445475, + "y": 40.303000000000004 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 353.98774374445475, + "y": 47.667 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1329.4167625219097, + "axes": { + "#": 305 + }, + "bounds": { + "#": 308 + }, + "collisionFilter": { + "#": 311 + }, + "constraintImpulse": { + "#": 312 + }, + "density": 0.001, + "force": { + "#": 313 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 314 + }, + "positionImpulse": { + "#": 315 + }, + "positionPrev": { + "#": 316 + }, + "render": { + "#": 317 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 319 + }, + "vertices": { + "#": 320 + } + }, + [ + { + "#": 306 + }, + { + "#": 307 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 309 + }, + "min": { + "#": 310 + } + }, + { + "x": 402.76539292140944, + "y": 47.25462962962963 + }, + { + "x": 353.98774374445475, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.3765683329321, + "y": 33.62731481481482 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.3765683329321, + "y": 33.62731481481482 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 318 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.98774374445475, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 402.76539292140944, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 402.76539292140944, + "y": 47.25462962962963 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.98774374445475, + "y": 47.25462962962963 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2858.632357296012, + "axes": { + "#": 326 + }, + "bounds": { + "#": 329 + }, + "collisionFilter": { + "#": 332 + }, + "constraintImpulse": { + "#": 333 + }, + "density": 0.001, + "force": { + "#": 334 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 335 + }, + "positionImpulse": { + "#": 336 + }, + "positionPrev": { + "#": 337 + }, + "render": { + "#": 338 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 340 + }, + "vertices": { + "#": 341 + } + }, + [ + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 330 + }, + "min": { + "#": 331 + } + }, + { + "x": 511.6199882574863, + "y": 46.261016803840874 + }, + { + "x": 402.76539292140944, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.19269058944786, + "y": 33.13050840192044 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.19269058944786, + "y": 33.13050840192044 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 339 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 402.76539292140944, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.6199882574863, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 511.6199882574863, + "y": 46.261016803840874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.76539292140944, + "y": 46.261016803840874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.8394636035856, + "axes": { + "#": 347 + }, + "bounds": { + "#": 350 + }, + "collisionFilter": { + "#": 353 + }, + "constraintImpulse": { + "#": 354 + }, + "density": 0.001, + "force": { + "#": 355 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 356 + }, + "positionImpulse": { + "#": 357 + }, + "positionPrev": { + "#": 358 + }, + "render": { + "#": 359 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 361 + }, + "vertices": { + "#": 362 + } + }, + [ + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 351 + }, + "min": { + "#": 352 + } + }, + { + "x": 550.3757752945232, + "y": 43.914866255144034 + }, + { + "x": 511.6199882574862, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9978817760048, + "y": 31.957433127572017 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9978817760048, + "y": 31.957433127572017 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 360 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 511.6199882574862, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550.3757752945232, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.3757752945232, + "y": 43.914866255144034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 511.6199882574862, + "y": 43.914866255144034 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.4501361223834, + "axes": { + "#": 368 + }, + "bounds": { + "#": 371 + }, + "collisionFilter": { + "#": 374 + }, + "constraintImpulse": { + "#": 375 + }, + "density": 0.001, + "force": { + "#": 376 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 377 + }, + "positionImpulse": { + "#": 378 + }, + "positionPrev": { + "#": 379 + }, + "render": { + "#": 380 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 382 + }, + "vertices": { + "#": 383 + } + }, + [ + { + "#": 369 + }, + { + "#": 370 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 372 + }, + "min": { + "#": 373 + } + }, + { + "x": 586.1460942245644, + "y": 56.076003086419746 + }, + { + "x": 550.3757752945232, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.2609347595438, + "y": 38.03800154320987 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.2609347595438, + "y": 38.03800154320987 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 381 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550.3757752945232, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.1460942245644, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.1460942245644, + "y": 56.076003086419746 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550.3757752945232, + "y": 56.076003086419746 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.2925932011974, + "axes": { + "#": 389 + }, + "bounds": { + "#": 392 + }, + "collisionFilter": { + "#": 395 + }, + "constraintImpulse": { + "#": 396 + }, + "density": 0.001, + "force": { + "#": 397 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 398 + }, + "positionImpulse": { + "#": 399 + }, + "positionPrev": { + "#": 400 + }, + "render": { + "#": 401 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 403 + }, + "vertices": { + "#": 404 + } + }, + [ + { + "#": 390 + }, + { + "#": 391 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 393 + }, + "min": { + "#": 394 + } + }, + { + "x": 616.7010067760048, + "y": 57.58127572016461 + }, + { + "x": 586.1460942245644, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.4235505002846, + "y": 38.790637860082306 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.4235505002846, + "y": 38.790637860082306 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 402 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 586.1460942245644, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.7010067760048, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.7010067760048, + "y": 57.58127572016461 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.1460942245644, + "y": 57.58127572016461 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1926.7878890000002, + "axes": { + "#": 410 + }, + "bounds": { + "#": 418 + }, + "collisionFilter": { + "#": 421 + }, + "constraintImpulse": { + "#": 422 + }, + "density": 0.001, + "force": { + "#": 423 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 424 + }, + "positionImpulse": { + "#": 425 + }, + "positionPrev": { + "#": 426 + }, + "render": { + "#": 427 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 429 + }, + "vertices": { + "#": 430 + } + }, + [ + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "x": 0.6234921001781484, + "y": 0.7818296496139309 + }, + { + "x": -0.22251820971292155, + "y": 0.9749285339685962 + }, + { + "x": -0.9009815501548849, + "y": 0.43385740316433524 + }, + { + "x": -0.9009815501548849, + "y": -0.43385740316433524 + }, + { + "x": -0.22251820971292155, + "y": -0.9749285339685962 + }, + { + "x": 0.6234921001781484, + "y": -0.7818296496139309 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 419 + }, + "min": { + "#": 420 + } + }, + { + "x": 665.8303156438957, + "y": 71.74000000000001 + }, + { + "x": 615.3873156438957, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 641.9225067760048, + "y": 45.870000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 641.9225067760048, + "y": 45.870000000000005 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 428 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 665.8303156438957, + "y": 57.383 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 647.8273156438956, + "y": 71.74000000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625.3773156438957, + "y": 66.616 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615.3873156438957, + "y": 45.870000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 625.3773156438957, + "y": 25.124000000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 647.8273156438956, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 665.8303156438957, + "y": 34.357000000000006 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1690.1965440000001, + "axes": { + "#": 439 + }, + "bounds": { + "#": 442 + }, + "collisionFilter": { + "#": 445 + }, + "constraintImpulse": { + "#": 446 + }, + "density": 0.001, + "force": { + "#": 447 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1904.509571566363, + "inverseInertia": 0.0005250695585517853, + "inverseMass": 0.5916471688158889, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.6901965440000002, + "motion": 0, + "parent": null, + "position": { + "#": 448 + }, + "positionImpulse": { + "#": 449 + }, + "positionPrev": { + "#": 450 + }, + "render": { + "#": 451 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 453 + }, + "vertices": { + "#": 454 + } + }, + [ + { + "#": 440 + }, + { + "#": 441 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 443 + }, + "min": { + "#": 444 + } + }, + { + "x": 706.9423156438958, + "y": 61.111999999999995 + }, + { + "x": 665.8303156438957, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 686.3863156438957, + "y": 40.556 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 686.3863156438957, + "y": 40.556 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 452 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 706.9423156438958, + "y": 61.111999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 665.8303156438957, + "y": 61.111999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 665.8303156438957, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 706.9423156438958, + "y": 19.999999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 460 + }, + "bounds": { + "#": 466 + }, + "collisionFilter": { + "#": 469 + }, + "constraintImpulse": { + "#": 470 + }, + "density": 0.001, + "force": { + "#": 471 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 472 + }, + "positionImpulse": { + "#": 473 + }, + "positionPrev": { + "#": 474 + }, + "render": { + "#": 475 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 477 + }, + "vertices": { + "#": 478 + } + }, + [ + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 467 + }, + "min": { + "#": 468 + } + }, + { + "x": 741.8472729237214, + "y": 58.74600000000001 + }, + { + "x": 704.9972729237214, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.3673156438958, + "y": 39.373000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.3673156438958, + "y": 39.373000000000005 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 476 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 741.8472729237214, + "y": 51.346000000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 719.0722729237215, + "y": 58.74600000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 704.9972729237214, + "y": 39.373000000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 719.0722729237215, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 741.8472729237214, + "y": 27.400000000000006 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.454244, + "axes": { + "#": 485 + }, + "bounds": { + "#": 488 + }, + "collisionFilter": { + "#": 491 + }, + "constraintImpulse": { + "#": 492 + }, + "density": 0.001, + "force": { + "#": 493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 494 + }, + "positionImpulse": { + "#": 495 + }, + "positionPrev": { + "#": 496 + }, + "render": { + "#": 497 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 499 + }, + "vertices": { + "#": 500 + } + }, + [ + { + "#": 486 + }, + { + "#": 487 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 489 + }, + "min": { + "#": 490 + } + }, + { + "x": 54.662000000000006, + "y": 140.502 + }, + { + "x": 20.000000000000004, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 37.331, + "y": 123.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 37.331, + "y": 123.171 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 498 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 54.662000000000006, + "y": 140.502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.000000000000004, + "y": 140.502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.000000000000004, + "y": 105.84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 54.662000000000006, + "y": 105.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1990.733346252218, + "axes": { + "#": 506 + }, + "bounds": { + "#": 509 + }, + "collisionFilter": { + "#": 512 + }, + "constraintImpulse": { + "#": 513 + }, + "density": 0.001, + "force": { + "#": 514 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 515 + }, + "positionImpulse": { + "#": 516 + }, + "positionPrev": { + "#": 517 + }, + "render": { + "#": 518 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 520 + }, + "vertices": { + "#": 521 + } + }, + [ + { + "#": 507 + }, + { + "#": 508 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 510 + }, + "min": { + "#": 511 + } + }, + { + "x": 149.48573113854596, + "y": 126.8340414951989 + }, + { + "x": 54.662000000000006, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 102.07386556927298, + "y": 116.33702074759945 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 102.07386556927298, + "y": 116.33702074759945 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 519 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 54.662000000000006, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 149.48573113854596, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 149.48573113854596, + "y": 126.8340414951989 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 54.662000000000006, + "y": 126.8340414951989 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7321.24308, + "axes": { + "#": 527 + }, + "bounds": { + "#": 541 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 544 + }, + "constraintImpulse": { + "#": 545 + }, + "density": 0.001, + "force": { + "#": 546 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 547 + }, + "positionImpulse": { + "#": 548 + }, + "positionPrev": { + "#": 549 + }, + "render": { + "#": 550 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 552 + }, + "vertices": { + "#": 553 + } + }, + [ + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 542 + }, + "min": { + "#": 543 + } + }, + { + "x": 245.79973113854598, + "y": 202.85999999999999 + }, + { + "x": 149.485731138546, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 197.64273113854597, + "y": 154.35 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 197.64273113854597, + "y": 154.35 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 551 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.79973113854598, + "y": 160.197 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.00073113854597, + "y": 171.552 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 237.56573113854597, + "y": 181.90699999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 229.81073113854598, + "y": 190.661 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.18673113854598, + "y": 197.304 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 209.25173113854598, + "y": 201.451 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 197.64273113854597, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 186.03373113854596, + "y": 201.451 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 175.098731138546, + "y": 197.304 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 165.47473113854596, + "y": 190.661 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 157.71973113854597, + "y": 181.90699999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 152.28473113854596, + "y": 171.552 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 149.485731138546, + "y": 160.197 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 149.485731138546, + "y": 148.503 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 152.28473113854596, + "y": 137.148 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 157.71973113854597, + "y": 126.79299999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 165.47473113854596, + "y": 118.03899999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 175.098731138546, + "y": 111.39599999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 186.03373113854596, + "y": 107.249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 197.64273113854597, + "y": 105.84 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 209.25173113854598, + "y": 107.249 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 220.18673113854598, + "y": 111.39599999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 229.81073113854598, + "y": 118.03899999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 237.56573113854597, + "y": 126.79299999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 243.00073113854597, + "y": 137.148 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 245.79973113854598, + "y": 148.503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 581 + }, + "bounds": { + "#": 584 + }, + "collisionFilter": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "density": 0.001, + "force": { + "#": 589 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 590 + }, + "positionImpulse": { + "#": 591 + }, + "positionPrev": { + "#": 592 + }, + "render": { + "#": 593 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 595 + }, + "vertices": { + "#": 596 + } + }, + [ + { + "#": 582 + }, + { + "#": 583 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 585 + }, + "min": { + "#": 586 + } + }, + { + "x": 330.03241289437585, + "y": 129.99646433470508 + }, + { + "x": 245.79973113854598, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.91607201646093, + "y": 117.91823216735254 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.91607201646093, + "y": 117.91823216735254 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 594 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.79973113854598, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330.03241289437585, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 330.03241289437585, + "y": 129.99646433470508 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 245.79973113854598, + "y": 129.99646433470508 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 602 + }, + "bounds": { + "#": 605 + }, + "collisionFilter": { + "#": 608 + }, + "constraintImpulse": { + "#": 609 + }, + "density": 0.001, + "force": { + "#": 610 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 611 + }, + "positionImpulse": { + "#": 612 + }, + "positionPrev": { + "#": 613 + }, + "render": { + "#": 614 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 616 + }, + "vertices": { + "#": 617 + } + }, + [ + { + "#": 603 + }, + { + "#": 604 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 606 + }, + "min": { + "#": 607 + } + }, + { + "x": 379.41898696845, + "y": 126.7050977366255 + }, + { + "x": 330.03241289437585, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 354.7256999314129, + "y": 116.27254886831275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 354.7256999314129, + "y": 116.27254886831275 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 615 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 330.03241289437585, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 379.41898696845, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 379.41898696845, + "y": 126.7050977366255 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 330.03241289437585, + "y": 126.7050977366255 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2157.165332, + "axes": { + "#": 623 + }, + "bounds": { + "#": 637 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 640 + }, + "constraintImpulse": { + "#": 641 + }, + "density": 0.001, + "force": { + "#": 642 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 643 + }, + "positionImpulse": { + "#": 644 + }, + "positionPrev": { + "#": 645 + }, + "render": { + "#": 646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 648 + }, + "vertices": { + "#": 649 + } + }, + [ + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + } + ], + { + "x": -0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": -0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": -0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": -0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": -0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": -0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": 0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": 0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": 0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": 0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 638 + }, + "min": { + "#": 639 + } + }, + { + "x": 431.69898696844996, + "y": 158.504 + }, + { + "x": 379.41898696845, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.55898696845, + "y": 132.172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.55898696845, + "y": 132.172 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 647 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 431.69898696844996, + "y": 135.346 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430.17998696844995, + "y": 141.50900000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 427.22998696844996, + "y": 147.13 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 423.01998696845, + "y": 151.882 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 417.79598696845, + "y": 155.488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 411.86098696845, + "y": 157.739 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.55898696845, + "y": 158.504 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 399.25698696844995, + "y": 157.739 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 393.32198696844995, + "y": 155.488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 388.09798696844996, + "y": 151.882 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 383.88798696845, + "y": 147.13 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 380.93798696845, + "y": 141.50900000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.41898696845, + "y": 135.346 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 379.41898696845, + "y": 128.998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.93798696845, + "y": 122.835 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 383.88798696845, + "y": 117.214 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 388.09798696844996, + "y": 112.46199999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 393.32198696844995, + "y": 108.856 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 399.25698696844995, + "y": 106.60499999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 405.55898696845, + "y": 105.84 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 411.86098696845, + "y": 106.60499999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 417.79598696845, + "y": 108.856 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 423.01998696845, + "y": 112.46199999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 427.22998696844996, + "y": 117.214 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 430.17998696844995, + "y": 122.835 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 431.69898696844996, + "y": 128.998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2399.6281959999997, + "axes": { + "#": 677 + }, + "bounds": { + "#": 680 + }, + "collisionFilter": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "density": 0.001, + "force": { + "#": 685 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 686 + }, + "positionImpulse": { + "#": 687 + }, + "positionPrev": { + "#": 688 + }, + "render": { + "#": 689 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 691 + }, + "vertices": { + "#": 692 + } + }, + [ + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 681 + }, + "min": { + "#": 682 + } + }, + { + "x": 480.68498696844995, + "y": 154.826 + }, + { + "x": 431.69898696844996, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 456.19198696844995, + "y": 130.333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 456.19198696844995, + "y": 130.333 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 690 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.68498696844995, + "y": 154.826 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 431.69898696844996, + "y": 154.826 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.69898696844996, + "y": 105.84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.68498696844995, + "y": 105.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 698 + }, + "bounds": { + "#": 701 + }, + "collisionFilter": { + "#": 704 + }, + "constraintImpulse": { + "#": 705 + }, + "density": 0.001, + "force": { + "#": 706 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 707 + }, + "positionImpulse": { + "#": 708 + }, + "positionPrev": { + "#": 709 + }, + "render": { + "#": 710 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 712 + }, + "vertices": { + "#": 713 + } + }, + [ + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 702 + }, + "min": { + "#": 703 + } + }, + { + "x": 516.0979242112483, + "y": 147.90893004115227 + }, + { + "x": 480.68498696844995, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 498.3914555898491, + "y": 126.87446502057614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 498.3914555898491, + "y": 126.87446502057614 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 711 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.68498696844995, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 516.0979242112483, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 516.0979242112483, + "y": 147.90893004115227 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.68498696844995, + "y": 147.90893004115227 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 719 + }, + "bounds": { + "#": 722 + }, + "collisionFilter": { + "#": 725 + }, + "constraintImpulse": { + "#": 726 + }, + "density": 0.001, + "force": { + "#": 727 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 728 + }, + "positionImpulse": { + "#": 729 + }, + "positionPrev": { + "#": 730 + }, + "render": { + "#": 731 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 733 + }, + "vertices": { + "#": 734 + } + }, + [ + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 723 + }, + "min": { + "#": 724 + } + }, + { + "x": 557.8618131001372, + "y": 148.1101903292181 + }, + { + "x": 516.0979242112483, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.9798686556927, + "y": 126.97509516460906 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.9798686556927, + "y": 126.97509516460906 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 732 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 516.0979242112483, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 557.8618131001372, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 557.8618131001372, + "y": 148.1101903292181 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 516.0979242112483, + "y": 148.1101903292181 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1919.5457599999997, + "axes": { + "#": 740 + }, + "bounds": { + "#": 744 + }, + "collisionFilter": { + "#": 747 + }, + "constraintImpulse": { + "#": 748 + }, + "density": 0.001, + "force": { + "#": 749 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 750 + }, + "positionImpulse": { + "#": 751 + }, + "positionPrev": { + "#": 752 + }, + "render": { + "#": 753 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 755 + }, + "vertices": { + "#": 756 + } + }, + [ + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + } + ], + { + "x": -0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 745 + }, + "min": { + "#": 746 + } + }, + { + "x": 604.9418131001371, + "y": 160.20200000000003 + }, + { + "x": 557.8618131001372, + "y": 105.84000000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.4018131001371, + "y": 133.02100000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.4018131001371, + "y": 133.02100000000002 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 754 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 604.9418131001371, + "y": 146.61200000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 581.4018131001371, + "y": 160.20200000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 557.8618131001372, + "y": 146.61200000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 557.8618131001372, + "y": 119.43000000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 581.4018131001371, + "y": 105.84000000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 604.9418131001371, + "y": 119.43000000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6052.328004, + "axes": { + "#": 764 + }, + "bounds": { + "#": 768 + }, + "collisionFilter": { + "#": 771 + }, + "constraintImpulse": { + "#": 772 + }, + "density": 0.001, + "force": { + "#": 773 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 774 + }, + "positionImpulse": { + "#": 775 + }, + "positionPrev": { + "#": 776 + }, + "render": { + "#": 777 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 779 + }, + "vertices": { + "#": 780 + } + }, + [ + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "x": -0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 769 + }, + "min": { + "#": 770 + } + }, + { + "x": 688.539813100137, + "y": 202.37000000000003 + }, + { + "x": 604.9418131001371, + "y": 105.84000000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 646.7408131001371, + "y": 154.10500000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 646.7408131001371, + "y": 154.10500000000002 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 778 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 688.539813100137, + "y": 178.23800000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 646.7408131001371, + "y": 202.37000000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 604.9418131001371, + "y": 178.23800000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.9418131001371, + "y": 129.97200000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 646.7408131001371, + "y": 105.84000000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 688.539813100137, + "y": 129.97200000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 788 + }, + "bounds": { + "#": 791 + }, + "collisionFilter": { + "#": 794 + }, + "constraintImpulse": { + "#": 795 + }, + "density": 0.001, + "force": { + "#": 796 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 797 + }, + "positionImpulse": { + "#": 798 + }, + "positionPrev": { + "#": 799 + }, + "render": { + "#": 800 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 802 + }, + "vertices": { + "#": 803 + } + }, + [ + { + "#": 789 + }, + { + "#": 790 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 792 + }, + "min": { + "#": 793 + } + }, + { + "x": 733.6911762688612, + "y": 155.00846707818928 + }, + { + "x": 688.539813100137, + "y": 105.83999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 711.1154946844991, + "y": 130.42423353909464 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 711.1154946844991, + "y": 130.42423353909464 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 801 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 688.539813100137, + "y": 105.83999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 733.6911762688612, + "y": 105.83999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 733.6911762688612, + "y": 155.00846707818928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 688.539813100137, + "y": 155.00846707818928 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2601.1074479999997, + "axes": { + "#": 809 + }, + "bounds": { + "#": 813 + }, + "collisionFilter": { + "#": 816 + }, + "constraintImpulse": { + "#": 817 + }, + "density": 0.001, + "force": { + "#": 818 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 819 + }, + "positionImpulse": { + "#": 820 + }, + "positionPrev": { + "#": 821 + }, + "render": { + "#": 822 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 824 + }, + "vertices": { + "#": 825 + } + }, + [ + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + } + ], + { + "x": -0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 814 + }, + "min": { + "#": 815 + } + }, + { + "x": 788.4951762688613, + "y": 169.12199999999999 + }, + { + "x": 733.6911762688612, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 761.0931762688613, + "y": 137.481 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 761.0931762688613, + "y": 137.481 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 823 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 788.4951762688613, + "y": 153.302 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 761.0931762688613, + "y": 169.12199999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 733.6911762688612, + "y": 153.302 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 733.6911762688612, + "y": 121.66 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 761.0931762688613, + "y": 105.84 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 788.4951762688613, + "y": 121.66 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1413.3088360000002, + "axes": { + "#": 833 + }, + "bounds": { + "#": 836 + }, + "collisionFilter": { + "#": 839 + }, + "constraintImpulse": { + "#": 840 + }, + "density": 0.001, + "force": { + "#": 841 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 842 + }, + "positionImpulse": { + "#": 843 + }, + "positionPrev": { + "#": 844 + }, + "render": { + "#": 845 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 847 + }, + "vertices": { + "#": 848 + } + }, + [ + { + "#": 834 + }, + { + "#": 835 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 837 + }, + "min": { + "#": 838 + } + }, + { + "x": 826.0891762688614, + "y": 143.434 + }, + { + "x": 788.4951762688613, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 807.2921762688613, + "y": 124.637 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 807.2921762688613, + "y": 124.637 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 846 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 826.0891762688614, + "y": 143.434 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 788.4951762688613, + "y": 143.434 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 788.4951762688613, + "y": 105.84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 826.0891762688614, + "y": 105.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5460.808751999999, + "axes": { + "#": 854 + }, + "bounds": { + "#": 858 + }, + "collisionFilter": { + "#": 861 + }, + "constraintImpulse": { + "#": 862 + }, + "density": 0.001, + "force": { + "#": 863 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 864 + }, + "positionImpulse": { + "#": 865 + }, + "positionPrev": { + "#": 866 + }, + "render": { + "#": 867 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 869 + }, + "vertices": { + "#": 870 + } + }, + [ + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + } + ], + { + "x": -0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 859 + }, + "min": { + "#": 860 + } + }, + { + "x": 905.4971762688613, + "y": 197.532 + }, + { + "x": 826.0891762688614, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 865.7931762688613, + "y": 151.686 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 865.7931762688613, + "y": 151.686 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 868 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 905.4971762688613, + "y": 174.609 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 865.7931762688613, + "y": 197.532 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 826.0891762688614, + "y": 174.609 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 826.0891762688614, + "y": 128.763 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 865.7931762688613, + "y": 105.84 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 905.4971762688613, + "y": 128.763 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 878 + }, + "bounds": { + "#": 881 + }, + "collisionFilter": { + "#": 884 + }, + "constraintImpulse": { + "#": 885 + }, + "density": 0.001, + "force": { + "#": 886 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 887 + }, + "positionImpulse": { + "#": 888 + }, + "positionPrev": { + "#": 889 + }, + "render": { + "#": 890 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 892 + }, + "vertices": { + "#": 893 + } + }, + [ + { + "#": 879 + }, + { + "#": 880 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 882 + }, + "min": { + "#": 883 + } + }, + { + "x": 40.170524691358025, + "y": 225.2497890946502 + }, + { + "x": 20, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 30.085262345679013, + "y": 214.0548945473251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 30.085262345679013, + "y": 214.0548945473251 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 891 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 40.170524691358025, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 40.170524691358025, + "y": 225.2497890946502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 225.2497890946502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 899 + }, + "bounds": { + "#": 902 + }, + "collisionFilter": { + "#": 905 + }, + "constraintImpulse": { + "#": 906 + }, + "density": 0.001, + "force": { + "#": 907 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 908 + }, + "positionImpulse": { + "#": 909 + }, + "positionPrev": { + "#": 910 + }, + "render": { + "#": 911 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 913 + }, + "vertices": { + "#": 914 + } + }, + [ + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 903 + }, + "min": { + "#": 904 + } + }, + { + "x": 142.0036865569273, + "y": 232.53283950617285 + }, + { + "x": 40.170524691358025, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 91.08710562414267, + "y": 217.69641975308642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 91.08710562414267, + "y": 217.69641975308642 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 912 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 40.170524691358025, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 142.0036865569273, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 142.0036865569273, + "y": 232.53283950617285 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 40.170524691358025, + "y": 232.53283950617285 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 920 + }, + "bounds": { + "#": 923 + }, + "collisionFilter": { + "#": 926 + }, + "constraintImpulse": { + "#": 927 + }, + "density": 0.001, + "force": { + "#": 928 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 929 + }, + "positionImpulse": { + "#": 930 + }, + "positionPrev": { + "#": 931 + }, + "render": { + "#": 932 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 934 + }, + "vertices": { + "#": 935 + } + }, + [ + { + "#": 921 + }, + { + "#": 922 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 924 + }, + "min": { + "#": 925 + } + }, + { + "x": 182.07518861454045, + "y": 224.24027263374484 + }, + { + "x": 142.0036865569273, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.03943758573388, + "y": 213.5501363168724 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.03943758573388, + "y": 213.5501363168724 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 933 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 142.0036865569273, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 182.07518861454045, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 182.07518861454045, + "y": 224.24027263374484 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 142.0036865569273, + "y": 224.24027263374484 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 941 + }, + "bounds": { + "#": 946 + }, + "collisionFilter": { + "#": 949 + }, + "constraintImpulse": { + "#": 950 + }, + "density": 0.001, + "force": { + "#": 951 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 952 + }, + "positionImpulse": { + "#": 953 + }, + "positionPrev": { + "#": 954 + }, + "render": { + "#": 955 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 957 + }, + "vertices": { + "#": 958 + } + }, + [ + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 947 + }, + "min": { + "#": 948 + } + }, + { + "x": 252.32718861454046, + "y": 273.11199999999997 + }, + { + "x": 182.07518861454045, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.20118861454046, + "y": 237.986 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.20118861454046, + "y": 237.986 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 956 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.32718861454046, + "y": 252.536 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 231.75118861454047, + "y": 273.11199999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 202.65118861454044, + "y": 273.11199999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 182.07518861454045, + "y": 252.536 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.07518861454045, + "y": 223.43599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 202.65118861454044, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 231.75118861454047, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.32718861454046, + "y": 223.43599999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 968 + }, + "bounds": { + "#": 971 + }, + "collisionFilter": { + "#": 974 + }, + "constraintImpulse": { + "#": 975 + }, + "density": 0.001, + "force": { + "#": 976 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 977 + }, + "positionImpulse": { + "#": 978 + }, + "positionPrev": { + "#": 979 + }, + "render": { + "#": 980 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 982 + }, + "vertices": { + "#": 983 + } + }, + [ + { + "#": 969 + }, + { + "#": 970 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 972 + }, + "min": { + "#": 973 + } + }, + { + "x": 341.831475308642, + "y": 224.81584705075446 + }, + { + "x": 252.32718861454046, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.0793319615912, + "y": 213.83792352537722 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.0793319615912, + "y": 213.83792352537722 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 981 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.32718861454046, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 341.831475308642, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 341.831475308642, + "y": 224.81584705075446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 252.32718861454046, + "y": 224.81584705075446 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2297.860096, + "axes": { + "#": 989 + }, + "bounds": { + "#": 992 + }, + "collisionFilter": { + "#": 995 + }, + "constraintImpulse": { + "#": 996 + }, + "density": 0.001, + "force": { + "#": 997 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 3520.107347192753, + "inverseInertia": 0.00028408224561602904, + "inverseMass": 0.43518750412209606, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.297860096, + "motion": 0, + "parent": null, + "position": { + "#": 998 + }, + "positionImpulse": { + "#": 999 + }, + "positionPrev": { + "#": 1000 + }, + "render": { + "#": 1001 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1003 + }, + "vertices": { + "#": 1004 + } + }, + [ + { + "#": 990 + }, + { + "#": 991 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 993 + }, + "min": { + "#": 994 + } + }, + { + "x": 389.767475308642, + "y": 250.79599999999996 + }, + { + "x": 341.831475308642, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 365.799475308642, + "y": 226.82799999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 365.799475308642, + "y": 226.82799999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1002 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.767475308642, + "y": 250.79599999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 341.831475308642, + "y": 250.79599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 341.831475308642, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.767475308642, + "y": 202.85999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 942.0065703840771, + "axes": { + "#": 1010 + }, + "bounds": { + "#": 1013 + }, + "collisionFilter": { + "#": 1016 + }, + "constraintImpulse": { + "#": 1017 + }, + "density": 0.001, + "force": { + "#": 1018 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 1019 + }, + "positionImpulse": { + "#": 1020 + }, + "positionPrev": { + "#": 1021 + }, + "render": { + "#": 1022 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1024 + }, + "vertices": { + "#": 1025 + } + }, + [ + { + "#": 1011 + }, + { + "#": 1012 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1014 + }, + "min": { + "#": 1015 + } + }, + { + "x": 410.8274032921811, + "y": 247.58980967078188 + }, + { + "x": 389.767475308642, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.29743930041155, + "y": 225.22490483539093 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.29743930041155, + "y": 225.22490483539093 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1023 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.767475308642, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 410.8274032921811, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 410.8274032921811, + "y": 247.58980967078188 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.767475308642, + "y": 247.58980967078188 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2898.415585731765, + "axes": { + "#": 1031 + }, + "bounds": { + "#": 1034 + }, + "collisionFilter": { + "#": 1037 + }, + "constraintImpulse": { + "#": 1038 + }, + "density": 0.001, + "force": { + "#": 1039 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 1040 + }, + "positionImpulse": { + "#": 1041 + }, + "positionPrev": { + "#": 1042 + }, + "render": { + "#": 1043 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1045 + }, + "vertices": { + "#": 1046 + } + }, + [ + { + "#": 1032 + }, + { + "#": 1033 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1035 + }, + "min": { + "#": 1036 + } + }, + { + "x": 523.0233909465021, + "y": 228.69350480109736 + }, + { + "x": 410.8274032921811, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 466.9253971193416, + "y": 215.77675240054867 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 466.9253971193416, + "y": 215.77675240054867 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1044 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 410.8274032921811, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 523.0233909465021, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 523.0233909465021, + "y": 228.69350480109736 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 410.8274032921811, + "y": 228.69350480109736 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1297.1522559999999, + "axes": { + "#": 1052 + }, + "bounds": { + "#": 1055 + }, + "collisionFilter": { + "#": 1058 + }, + "constraintImpulse": { + "#": 1059 + }, + "density": 0.001, + "force": { + "#": 1060 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1121.7359834972597, + "inverseInertia": 0.0008914753691704523, + "inverseMass": 0.7709195241919234, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.297152256, + "motion": 0, + "parent": null, + "position": { + "#": 1061 + }, + "positionImpulse": { + "#": 1062 + }, + "positionPrev": { + "#": 1063 + }, + "render": { + "#": 1064 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1066 + }, + "vertices": { + "#": 1067 + } + }, + [ + { + "#": 1053 + }, + { + "#": 1054 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1056 + }, + "min": { + "#": 1057 + } + }, + { + "x": 559.0393909465022, + "y": 238.876 + }, + { + "x": 523.0233909465021, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.0313909465021, + "y": 220.868 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.0313909465021, + "y": 220.868 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1065 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 559.0393909465022, + "y": 238.876 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 523.0233909465021, + "y": 238.876 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 523.0233909465021, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.0393909465022, + "y": 202.85999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6661.542482000001, + "axes": { + "#": 1073 + }, + "bounds": { + "#": 1087 + }, + "circleRadius": 46.273148148148145, + "collisionFilter": { + "#": 1090 + }, + "constraintImpulse": { + "#": 1091 + }, + "density": 0.001, + "force": { + "#": 1092 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 28251.272419191544, + "inverseInertia": 0.00003539663577491412, + "inverseMass": 0.15011538284144801, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.661542482000001, + "motion": 0, + "parent": null, + "position": { + "#": 1093 + }, + "positionImpulse": { + "#": 1094 + }, + "positionPrev": { + "#": 1095 + }, + "render": { + "#": 1096 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1098 + }, + "vertices": { + "#": 1099 + } + }, + [ + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + } + ], + { + "x": -0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": -0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": -0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": -0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": -0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": -0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": 0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": 0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": 0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": 0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1088 + }, + "min": { + "#": 1089 + } + }, + { + "x": 650.9113909465023, + "y": 295.40599999999995 + }, + { + "x": 559.0393909465022, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 604.9753909465022, + "y": 249.13299999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 604.9753909465022, + "y": 249.13299999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1097 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650.9113909465023, + "y": 254.71099999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 648.2413909465022, + "y": 265.542 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 643.0573909465022, + "y": 275.419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 635.6603909465022, + "y": 283.769 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 626.4793909465022, + "y": 290.106 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 616.0493909465022, + "y": 294.062 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 604.9753909465022, + "y": 295.40599999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 593.9013909465023, + "y": 294.062 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 583.4713909465022, + "y": 290.106 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 574.2903909465023, + "y": 283.769 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 566.8933909465022, + "y": 275.419 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 561.7093909465023, + "y": 265.542 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 559.0393909465022, + "y": 254.71099999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 559.0393909465022, + "y": 243.55499999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 561.7093909465023, + "y": 232.724 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 566.8933909465022, + "y": 222.84699999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 574.2903909465023, + "y": 214.49699999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 583.4713909465022, + "y": 208.16 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 593.9013909465023, + "y": 204.20399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 604.9753909465022, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 616.0493909465022, + "y": 204.20399999999998 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 626.4793909465022, + "y": 208.16 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 635.6603909465022, + "y": 214.49699999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 643.0573909465022, + "y": 222.84699999999998 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 648.2413909465022, + "y": 232.724 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 650.9113909465023, + "y": 243.55499999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1051.3111283901928, + "axes": { + "#": 1127 + }, + "bounds": { + "#": 1130 + }, + "collisionFilter": { + "#": 1133 + }, + "constraintImpulse": { + "#": 1134 + }, + "density": 0.001, + "force": { + "#": 1135 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 1136 + }, + "positionImpulse": { + "#": 1137 + }, + "positionPrev": { + "#": 1138 + }, + "render": { + "#": 1139 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1141 + }, + "vertices": { + "#": 1142 + } + }, + [ + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1131 + }, + "min": { + "#": 1132 + } + }, + { + "x": 680.4597448559673, + "y": 238.43934670781894 + }, + { + "x": 650.9113909465023, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 665.6855679012348, + "y": 220.64967335390946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 665.6855679012348, + "y": 220.64967335390946 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1140 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650.9113909465023, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680.4597448559673, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 680.4597448559673, + "y": 238.43934670781894 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650.9113909465023, + "y": 238.43934670781894 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6245.524001, + "axes": { + "#": 1148 + }, + "bounds": { + "#": 1156 + }, + "collisionFilter": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "density": 0.001, + "force": { + "#": 1161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 24931.28629116745, + "inverseInertia": 0.00004011024494770155, + "inverseMass": 0.16011466769479796, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.245524001, + "motion": 0, + "parent": null, + "position": { + "#": 1162 + }, + "positionImpulse": { + "#": 1163 + }, + "positionPrev": { + "#": 1164 + }, + "render": { + "#": 1165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1167 + }, + "vertices": { + "#": 1168 + } + }, + [ + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": 0.6235088590146987, + "y": 0.7818162845133048 + }, + { + "x": -0.22254054198130854, + "y": 0.9749234365706189 + }, + { + "x": -0.9009716362849914, + "y": 0.4338779904649981 + }, + { + "x": -0.9009716362849914, + "y": -0.4338779904649981 + }, + { + "x": -0.22254054198130854, + "y": -0.9749234365706189 + }, + { + "x": 0.6235088590146987, + "y": -0.7818162845133048 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1157 + }, + "min": { + "#": 1158 + } + }, + { + "x": 768.9112071911729, + "y": 296.014 + }, + { + "x": 678.0942071911729, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.8682448559673, + "y": 249.43699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.8682448559673, + "y": 249.43699999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1166 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 768.9112071911729, + "y": 270.16499999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 736.4992071911729, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 696.0812071911729, + "y": 286.788 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 678.0942071911729, + "y": 249.43699999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 696.0812071911729, + "y": 212.08599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 736.4992071911729, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 768.9112071911729, + "y": 228.70899999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1694.1455999999998, + "axes": { + "#": 1177 + }, + "bounds": { + "#": 1180 + }, + "collisionFilter": { + "#": 1183 + }, + "constraintImpulse": { + "#": 1184 + }, + "density": 0.001, + "force": { + "#": 1185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1913.4195426662397, + "inverseInertia": 0.0005226245356554463, + "inverseMass": 0.590268038355145, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.6941456, + "motion": 0, + "parent": null, + "position": { + "#": 1186 + }, + "positionImpulse": { + "#": 1187 + }, + "positionPrev": { + "#": 1188 + }, + "render": { + "#": 1189 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1191 + }, + "vertices": { + "#": 1192 + } + }, + [ + { + "#": 1178 + }, + { + "#": 1179 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1181 + }, + "min": { + "#": 1182 + } + }, + { + "x": 810.071207191173, + "y": 244.02 + }, + { + "x": 768.9112071911729, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 789.491207191173, + "y": 223.44 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 789.491207191173, + "y": 223.44 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1190 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 810.071207191173, + "y": 244.02 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 768.9112071911729, + "y": 244.02 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 768.9112071911729, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 810.071207191173, + "y": 202.85999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4695.386625, + "axes": { + "#": 1198 + }, + "bounds": { + "#": 1206 + }, + "collisionFilter": { + "#": 1209 + }, + "constraintImpulse": { + "#": 1210 + }, + "density": 0.001, + "force": { + "#": 1211 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 1212 + }, + "positionImpulse": { + "#": 1213 + }, + "positionPrev": { + "#": 1214 + }, + "render": { + "#": 1215 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1217 + }, + "vertices": { + "#": 1218 + } + }, + [ + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + } + ], + { + "x": 0.6235000959518373, + "y": 0.7818232730918474 + }, + { + "x": -0.2225264190381346, + "y": 0.9749266602314579 + }, + { + "x": -0.9009718651359478, + "y": 0.43387751524301366 + }, + { + "x": -0.9009718651359478, + "y": -0.43387751524301366 + }, + { + "x": -0.2225264190381346, + "y": -0.9749266602314579 + }, + { + "x": 0.6235000959518373, + "y": -0.7818232730918474 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1207 + }, + "min": { + "#": 1208 + } + }, + { + "x": 886.7640821588376, + "y": 283.63 + }, + { + "x": 808.0200821588376, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 849.4432071911731, + "y": 243.24499999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 849.4432071911731, + "y": 243.24499999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1216 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 886.7640821588376, + "y": 261.21799999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 858.6610821588375, + "y": 283.63 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 823.6160821588376, + "y": 275.631 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 808.0200821588376, + "y": 243.24499999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 823.6160821588376, + "y": 210.85899999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 858.6610821588375, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 886.7640821588376, + "y": 225.272 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2533.681298803042, + "axes": { + "#": 1227 + }, + "bounds": { + "#": 1230 + }, + "collisionFilter": { + "#": 1233 + }, + "constraintImpulse": { + "#": 1234 + }, + "density": 0.001, + "force": { + "#": 1235 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 9087.287047208478, + "inverseInertia": 0.00011004384419739331, + "inverseMass": 0.3946826305551604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.533681298803042, + "motion": 0, + "parent": null, + "position": { + "#": 1236 + }, + "positionImpulse": { + "#": 1237 + }, + "positionPrev": { + "#": 1238 + }, + "render": { + "#": 1239 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1241 + }, + "vertices": { + "#": 1242 + } + }, + [ + { + "#": 1228 + }, + { + "#": 1229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1231 + }, + "min": { + "#": 1232 + } + }, + { + "x": 987.3911397720063, + "y": 228.03892661179694 + }, + { + "x": 886.7640821588376, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 937.077610965422, + "y": 215.44946330589846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 937.077610965422, + "y": 215.44946330589846 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1240 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 886.7640821588376, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 987.3911397720063, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 987.3911397720063, + "y": 228.03892661179694 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 886.7640821588376, + "y": 228.03892661179694 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2082.1047164947227, + "axes": { + "#": 1248 + }, + "bounds": { + "#": 1251 + }, + "collisionFilter": { + "#": 1254 + }, + "constraintImpulse": { + "#": 1255 + }, + "density": 0.001, + "force": { + "#": 1256 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2917.86500075833, + "inverseInertia": 0.0003427163353136995, + "inverseMass": 0.4802832403566742, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.082104716494723, + "motion": 0, + "parent": null, + "position": { + "#": 1257 + }, + "positionImpulse": { + "#": 1258 + }, + "positionPrev": { + "#": 1259 + }, + "render": { + "#": 1260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1262 + }, + "vertices": { + "#": 1263 + } + }, + [ + { + "#": 1249 + }, + { + "#": 1250 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1252 + }, + "min": { + "#": 1253 + } + }, + { + "x": 62.57741769547325, + "y": 344.91562037037033 + }, + { + "x": 20, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 41.28870884773663, + "y": 320.4648101851852 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 41.28870884773663, + "y": 320.4648101851852 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1261 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 62.57741769547325, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 62.57741769547325, + "y": 344.91562037037033 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 344.91562037037033 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2570.1808866424026, + "axes": { + "#": 1269 + }, + "bounds": { + "#": 1272 + }, + "collisionFilter": { + "#": 1275 + }, + "constraintImpulse": { + "#": 1276 + }, + "density": 0.001, + "force": { + "#": 1277 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 7426.992944977438, + "inverseInertia": 0.00013464399487227974, + "inverseMass": 0.38907767355875333, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5701808866424027, + "motion": 0, + "parent": null, + "position": { + "#": 1278 + }, + "positionImpulse": { + "#": 1279 + }, + "positionPrev": { + "#": 1280 + }, + "render": { + "#": 1281 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1283 + }, + "vertices": { + "#": 1284 + } + }, + [ + { + "#": 1270 + }, + { + "#": 1271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1273 + }, + "min": { + "#": 1274 + } + }, + { + "x": 151.03540809327845, + "y": 325.0693840877915 + }, + { + "x": 62.577417695473244, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 106.80641289437585, + "y": 310.54169204389575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 106.80641289437585, + "y": 310.54169204389575 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1282 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 62.577417695473244, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.03540809327845, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 151.03540809327845, + "y": 325.0693840877915 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 62.577417695473244, + "y": 325.0693840877915 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2248.277056, + "axes": { + "#": 1290 + }, + "bounds": { + "#": 1293 + }, + "collisionFilter": { + "#": 1296 + }, + "constraintImpulse": { + "#": 1297 + }, + "density": 0.001, + "force": { + "#": 1298 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 3369.8331470240178, + "inverseInertia": 0.00029675059754312303, + "inverseMass": 0.44478503987366225, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.248277056, + "motion": 0, + "parent": null, + "position": { + "#": 1299 + }, + "positionImpulse": { + "#": 1300 + }, + "positionPrev": { + "#": 1301 + }, + "render": { + "#": 1302 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1304 + }, + "vertices": { + "#": 1305 + } + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1294 + }, + "min": { + "#": 1295 + } + }, + { + "x": 198.45140809327845, + "y": 343.42999999999995 + }, + { + "x": 151.03540809327845, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 174.74340809327845, + "y": 319.722 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 174.74340809327845, + "y": 319.722 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1303 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 198.45140809327845, + "y": 343.42999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.03540809327845, + "y": 343.42999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 151.03540809327845, + "y": 296.014 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 198.45140809327845, + "y": 296.014 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4167.4330549999995, + "axes": { + "#": 1311 + }, + "bounds": { + "#": 1319 + }, + "collisionFilter": { + "#": 1322 + }, + "constraintImpulse": { + "#": 1323 + }, + "density": 0.001, + "force": { + "#": 1324 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 11100.542061550868, + "inverseInertia": 0.00009008569081177725, + "inverseMass": 0.23995586415004816, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.167433054999999, + "motion": 0, + "parent": null, + "position": { + "#": 1325 + }, + "positionImpulse": { + "#": 1326 + }, + "positionPrev": { + "#": 1327 + }, + "render": { + "#": 1328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1330 + }, + "vertices": { + "#": 1331 + } + }, + [ + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": 0.6235095584460711, + "y": 0.7818157267069941 + }, + { + "x": -0.22252973145772786, + "y": 0.974925904167774 + }, + { + "x": -0.9009725986708983, + "y": 0.43387599201178284 + }, + { + "x": -0.9009725986708983, + "y": -0.43387599201178284 + }, + { + "x": -0.22252973145772786, + "y": -0.974925904167774 + }, + { + "x": 0.6235095584460711, + "y": -0.7818157267069941 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1320 + }, + "min": { + "#": 1321 + } + }, + { + "x": 270.7041179511755, + "y": 372.10800000000006 + }, + { + "x": 196.5191179511755, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.54390809327845, + "y": 334.06100000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.54390809327845, + "y": 334.06100000000004 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1329 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 270.7041179511755, + "y": 350.99300000000005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 244.2281179511755, + "y": 372.10800000000006 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 211.2121179511755, + "y": 364.57200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 196.5191179511755, + "y": 334.06100000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 211.2121179511755, + "y": 303.55 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 244.2281179511755, + "y": 296.014 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 270.7041179511755, + "y": 317.129 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1687.7661798887366, + "axes": { + "#": 1340 + }, + "bounds": { + "#": 1343 + }, + "collisionFilter": { + "#": 1346 + }, + "constraintImpulse": { + "#": 1347 + }, + "density": 0.001, + "force": { + "#": 1348 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1980.3012000583947, + "inverseInertia": 0.0005049736878261308, + "inverseMass": 0.5924991340127004, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6877661798887367, + "motion": 0, + "parent": null, + "position": { + "#": 1349 + }, + "positionImpulse": { + "#": 1350 + }, + "positionPrev": { + "#": 1351 + }, + "render": { + "#": 1352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1354 + }, + "vertices": { + "#": 1355 + } + }, + [ + { + "#": 1341 + }, + { + "#": 1342 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1344 + }, + "min": { + "#": 1345 + } + }, + { + "x": 306.2144060170191, + "y": 343.54293518518523 + }, + { + "x": 270.7041179511755, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.4592619840973, + "y": 319.7784675925926 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.4592619840973, + "y": 319.7784675925926 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1353 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 270.7041179511755, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.2144060170191, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 306.2144060170191, + "y": 343.54293518518523 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 270.7041179511755, + "y": 343.54293518518523 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 888.874596, + "axes": { + "#": 1361 + }, + "bounds": { + "#": 1364 + }, + "collisionFilter": { + "#": 1367 + }, + "constraintImpulse": { + "#": 1368 + }, + "density": 0.001, + "force": { + "#": 1369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 526.7320316094421, + "inverseInertia": 0.0018984985533241191, + "inverseMass": 1.125018089728374, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.888874596, + "motion": 0, + "parent": null, + "position": { + "#": 1370 + }, + "positionImpulse": { + "#": 1371 + }, + "positionPrev": { + "#": 1372 + }, + "render": { + "#": 1373 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1375 + }, + "vertices": { + "#": 1376 + } + }, + [ + { + "#": 1362 + }, + { + "#": 1363 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1365 + }, + "min": { + "#": 1366 + } + }, + { + "x": 336.02840601701905, + "y": 325.828 + }, + { + "x": 306.2144060170191, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 321.12140601701907, + "y": 310.921 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 321.12140601701907, + "y": 310.921 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1374 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.02840601701905, + "y": 325.828 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.2144060170191, + "y": 325.828 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 306.2144060170191, + "y": 296.014 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 336.02840601701905, + "y": 296.014 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1624.121534624581, + "axes": { + "#": 1382 + }, + "bounds": { + "#": 1385 + }, + "collisionFilter": { + "#": 1388 + }, + "constraintImpulse": { + "#": 1389 + }, + "density": 0.001, + "force": { + "#": 1390 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1766.6812602831346, + "inverseInertia": 0.0005660330601116675, + "inverseMass": 0.6157174686013581, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.624121534624581, + "motion": 0, + "parent": null, + "position": { + "#": 1391 + }, + "positionImpulse": { + "#": 1392 + }, + "positionPrev": { + "#": 1393 + }, + "render": { + "#": 1394 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1396 + }, + "vertices": { + "#": 1397 + } + }, + [ + { + "#": 1383 + }, + { + "#": 1384 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1386 + }, + "min": { + "#": 1387 + } + }, + { + "x": 378.3176292680479, + "y": 334.4190925925926 + }, + { + "x": 336.02840601701905, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.17301764253347, + "y": 315.2165462962963 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.17301764253347, + "y": 315.2165462962963 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1395 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.02840601701905, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 378.3176292680479, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 378.3176292680479, + "y": 334.4190925925926 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 336.02840601701905, + "y": 334.4190925925926 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 925.4335858447538, + "axes": { + "#": 1403 + }, + "bounds": { + "#": 1406 + }, + "collisionFilter": { + "#": 1409 + }, + "constraintImpulse": { + "#": 1410 + }, + "density": 0.001, + "force": { + "#": 1411 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 658.9066011822378, + "inverseInertia": 0.001517665778739746, + "inverseMass": 1.080574570985751, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9254335858447538, + "motion": 0, + "parent": null, + "position": { + "#": 1412 + }, + "positionImpulse": { + "#": 1413 + }, + "positionPrev": { + "#": 1414 + }, + "render": { + "#": 1415 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1417 + }, + "vertices": { + "#": 1418 + } + }, + [ + { + "#": 1404 + }, + { + "#": 1405 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1407 + }, + "min": { + "#": 1408 + } + }, + { + "x": 418.33126095529065, + "y": 319.14195781893005 + }, + { + "x": 378.3176292680479, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 398.32444511166926, + "y": 307.57797890946506 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 398.32444511166926, + "y": 307.57797890946506 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1416 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 378.3176292680479, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 418.33126095529065, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 418.33126095529065, + "y": 319.14195781893005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 378.3176292680479, + "y": 319.14195781893005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5929.347511999999, + "axes": { + "#": 1424 + }, + "bounds": { + "#": 1438 + }, + "circleRadius": 43.65625, + "collisionFilter": { + "#": 1441 + }, + "constraintImpulse": { + "#": 1442 + }, + "density": 0.001, + "force": { + "#": 1443 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 22382.17146584697, + "inverseInertia": 0.00004467841744157413, + "inverseMass": 0.1686526212161066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.929347512, + "motion": 0, + "parent": null, + "position": { + "#": 1444 + }, + "positionImpulse": { + "#": 1445 + }, + "positionPrev": { + "#": 1446 + }, + "render": { + "#": 1447 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1449 + }, + "vertices": { + "#": 1450 + } + }, + [ + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + } + ], + { + "x": -0.9709364586220396, + "y": -0.23933740476259086 + }, + { + "x": -0.885455576089853, + "y": -0.4647240286141727 + }, + { + "x": -0.7484830648246673, + "y": -0.6631539049652597 + }, + { + "x": -0.5681125845628812, + "y": -0.8229508437697133 + }, + { + "x": -0.3546198602355774, + "y": -0.9350105639651882 + }, + { + "x": -0.12047891877198527, + "y": -0.9927158859067047 + }, + { + "x": 0.12047891877198527, + "y": -0.9927158859067047 + }, + { + "x": 0.3546198602355774, + "y": -0.9350105639651882 + }, + { + "x": 0.5681125845628812, + "y": -0.8229508437697133 + }, + { + "x": 0.7484830648246673, + "y": -0.6631539049652597 + }, + { + "x": 0.885455576089853, + "y": -0.4647240286141727 + }, + { + "x": 0.9709364586220396, + "y": -0.23933740476259086 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1439 + }, + "min": { + "#": 1440 + } + }, + { + "x": 505.0072609552907, + "y": 383.326 + }, + { + "x": 418.33126095529065, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.66926095529067, + "y": 339.67 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.66926095529067, + "y": 339.67 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1448 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.0072609552907, + "y": 344.932 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 502.4882609552907, + "y": 355.151 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 497.59726095529066, + "y": 364.47 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 490.6182609552907, + "y": 372.34700000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 481.9572609552907, + "y": 378.326 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 472.11726095529065, + "y": 382.058 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 461.66926095529067, + "y": 383.326 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 451.2212609552907, + "y": 382.058 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 441.38126095529066, + "y": 378.326 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 432.72026095529066, + "y": 372.34700000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 425.74126095529067, + "y": 364.47 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 420.85026095529065, + "y": 355.151 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 418.33126095529065, + "y": 344.932 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 418.33126095529065, + "y": 334.408 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 420.85026095529065, + "y": 324.189 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 425.74126095529067, + "y": 314.87 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 432.72026095529066, + "y": 306.993 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 441.38126095529066, + "y": 301.014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 451.2212609552907, + "y": 297.28200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 461.66926095529067, + "y": 296.014 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 472.11726095529065, + "y": 297.28200000000004 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 481.9572609552907, + "y": 301.014 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 490.6182609552907, + "y": 306.993 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 497.59726095529066, + "y": 314.87 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 502.4882609552907, + "y": 324.189 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 505.0072609552907, + "y": 334.408 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2550.166396822507, + "axes": { + "#": 1478 + }, + "bounds": { + "#": 1481 + }, + "collisionFilter": { + "#": 1484 + }, + "constraintImpulse": { + "#": 1485 + }, + "density": 0.001, + "force": { + "#": 1486 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 10939.165130883785, + "inverseInertia": 0.00009141465441240754, + "inverseMass": 0.392131274745834, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5501663968225072, + "motion": 0, + "parent": null, + "position": { + "#": 1487 + }, + "positionImpulse": { + "#": 1488 + }, + "positionPrev": { + "#": 1489 + }, + "render": { + "#": 1490 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1492 + }, + "vertices": { + "#": 1493 + } + }, + [ + { + "#": 1479 + }, + { + "#": 1480 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1482 + }, + "min": { + "#": 1483 + } + }, + { + "x": 616.1010538222316, + "y": 318.9690754458162 + }, + { + "x": 505.00726095529063, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560.5541573887612, + "y": 307.4915377229081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560.5541573887612, + "y": 307.4915377229081 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1491 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.00726095529063, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.1010538222316, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.1010538222316, + "y": 318.9690754458162 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 505.00726095529063, + "y": 318.9690754458162 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5174.381305999998, + "axes": { + "#": 1499 + }, + "bounds": { + "#": 1513 + }, + "circleRadius": 40.782407407407405, + "collisionFilter": { + "#": 1516 + }, + "constraintImpulse": { + "#": 1517 + }, + "density": 0.001, + "force": { + "#": 1518 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17045.3242729355, + "inverseInertia": 0.000058667115039154525, + "inverseMass": 0.1932598200369272, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.174381305999998, + "motion": 0, + "parent": null, + "position": { + "#": 1519 + }, + "positionImpulse": { + "#": 1520 + }, + "positionPrev": { + "#": 1521 + }, + "render": { + "#": 1522 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1524 + }, + "vertices": { + "#": 1525 + } + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + } + ], + { + "x": -0.9709389264723081, + "y": -0.23932739304309056 + }, + { + "x": -0.8854449940324717, + "y": -0.46474419043473386 + }, + { + "x": -0.748536249103088, + "y": -0.6630938725238529 + }, + { + "x": -0.5680775563568219, + "y": -0.8229750239002773 + }, + { + "x": -0.35456531449559353, + "y": -0.9350312496150279 + }, + { + "x": -0.12052880622175748, + "y": -0.9927098301471373 + }, + { + "x": 0.12052880622175748, + "y": -0.9927098301471373 + }, + { + "x": 0.35456531449559353, + "y": -0.9350312496150279 + }, + { + "x": 0.5680775563568219, + "y": -0.8229750239002773 + }, + { + "x": 0.748536249103088, + "y": -0.6630938725238529 + }, + { + "x": 0.8854449940324717, + "y": -0.46474419043473386 + }, + { + "x": 0.9709389264723081, + "y": -0.23932739304309056 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1514 + }, + "min": { + "#": 1515 + } + }, + { + "x": 697.0710538222316, + "y": 377.578 + }, + { + "x": 616.1010538222316, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 656.5860538222316, + "y": 336.796 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 656.5860538222316, + "y": 336.796 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1523 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 697.0710538222316, + "y": 341.712 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 694.7180538222316, + "y": 351.258 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 690.1490538222316, + "y": 359.96299999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 683.6300538222316, + "y": 367.322 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 675.5390538222316, + "y": 372.907 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 666.3460538222316, + "y": 376.393 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 656.5860538222316, + "y": 377.578 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 646.8260538222316, + "y": 376.393 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.6330538222317, + "y": 372.907 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 629.5420538222317, + "y": 367.322 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 623.0230538222316, + "y": 359.96299999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 618.4540538222317, + "y": 351.258 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 616.1010538222316, + "y": 341.712 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 616.1010538222316, + "y": 331.88 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 618.4540538222317, + "y": 322.334 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 623.0230538222316, + "y": 313.62899999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 629.5420538222317, + "y": 306.27 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 637.6330538222317, + "y": 300.685 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 646.8260538222316, + "y": 297.199 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 656.5860538222316, + "y": 296.014 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 666.3460538222316, + "y": 297.199 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 675.5390538222316, + "y": 300.685 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 683.6300538222316, + "y": 306.27 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 690.1490538222316, + "y": 313.62899999999996 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 694.7180538222316, + "y": 322.334 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 697.0710538222316, + "y": 331.88 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1308.2034644955884, + "axes": { + "#": 1553 + }, + "bounds": { + "#": 1556 + }, + "collisionFilter": { + "#": 1559 + }, + "constraintImpulse": { + "#": 1560 + }, + "density": 0.001, + "force": { + "#": 1561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1149.8579054087725, + "inverseInertia": 0.0008696726745940854, + "inverseMass": 0.7644070873834413, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3082034644955884, + "motion": 0, + "parent": null, + "position": { + "#": 1562 + }, + "positionImpulse": { + "#": 1563 + }, + "positionPrev": { + "#": 1564 + }, + "render": { + "#": 1565 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1567 + }, + "vertices": { + "#": 1568 + } + }, + [ + { + "#": 1554 + }, + { + "#": 1555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1557 + }, + "min": { + "#": 1558 + } + }, + { + "x": 735.5731114354004, + "y": 329.99149485596706 + }, + { + "x": 697.0710538222316, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.322082628816, + "y": 313.00274742798354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.322082628816, + "y": 313.00274742798354 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1566 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 697.0710538222316, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 735.5731114354004, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 735.5731114354004, + "y": 329.99149485596706 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 697.0710538222316, + "y": 329.99149485596706 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3803.7767479999993, + "axes": { + "#": 1574 + }, + "bounds": { + "#": 1582 + }, + "collisionFilter": { + "#": 1585 + }, + "constraintImpulse": { + "#": 1586 + }, + "density": 0.001, + "force": { + "#": 1587 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 9247.768748441516, + "inverseInertia": 0.00010813419184692798, + "inverseMass": 0.2628966067805618, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.8037767479999993, + "motion": 0, + "parent": null, + "position": { + "#": 1588 + }, + "positionImpulse": { + "#": 1589 + }, + "positionPrev": { + "#": 1590 + }, + "render": { + "#": 1591 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1593 + }, + "vertices": { + "#": 1594 + } + }, + [ + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + } + ], + { + "x": 0.623488113338336, + "y": 0.7818328290151305 + }, + { + "x": -0.22254280104331042, + "y": 0.9749229209039029 + }, + { + "x": -0.9009618424321717, + "y": 0.43389832735472317 + }, + { + "x": -0.9009618424321717, + "y": -0.43389832735472317 + }, + { + "x": -0.22254280104331042, + "y": -0.9749229209039029 + }, + { + "x": 0.623488113338336, + "y": -0.7818328290151305 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1583 + }, + "min": { + "#": 1584 + } + }, + { + "x": 804.6017507639486, + "y": 368.712 + }, + { + "x": 733.7267507639486, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 771.0106114354004, + "y": 332.363 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 771.0106114354004, + "y": 332.363 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1592 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 804.6017507639486, + "y": 348.54 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 779.3067507639487, + "y": 368.712 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 747.7647507639487, + "y": 361.512 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 733.7267507639486, + "y": 332.363 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 747.7647507639487, + "y": 303.214 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 779.3067507639487, + "y": 296.014 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 804.6017507639486, + "y": 316.186 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1519.5385669833, + "axes": { + "#": 1603 + }, + "bounds": { + "#": 1606 + }, + "collisionFilter": { + "#": 1609 + }, + "constraintImpulse": { + "#": 1610 + }, + "density": 0.001, + "force": { + "#": 1611 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1623.6987742797708, + "inverseInertia": 0.0006158777821604092, + "inverseMass": 0.6580945174595165, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5195385669833, + "motion": 0, + "parent": null, + "position": { + "#": 1612 + }, + "positionImpulse": { + "#": 1613 + }, + "positionPrev": { + "#": 1614 + }, + "render": { + "#": 1615 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1617 + }, + "vertices": { + "#": 1618 + } + }, + [ + { + "#": 1604 + }, + { + "#": 1605 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1607 + }, + "min": { + "#": 1608 + } + }, + { + "x": 837.6605213400803, + "y": 341.97876337448565 + }, + { + "x": 804.6017507639486, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 821.1311360520144, + "y": 318.99638168724283 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 821.1311360520144, + "y": 318.99638168724283 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1616 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 804.6017507639486, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 837.6605213400803, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 837.6605213400803, + "y": 341.97876337448565 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 804.6017507639486, + "y": 341.97876337448565 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3306.4800040000005, + "axes": { + "#": 1624 + }, + "bounds": { + "#": 1627 + }, + "collisionFilter": { + "#": 1630 + }, + "constraintImpulse": { + "#": 1631 + }, + "density": 0.001, + "force": { + "#": 1632 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 7288.540011234562, + "inverseInertia": 0.00013720168901571494, + "inverseMass": 0.302436427496992, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.3064800040000004, + "motion": 0, + "parent": null, + "position": { + "#": 1633 + }, + "positionImpulse": { + "#": 1634 + }, + "positionPrev": { + "#": 1635 + }, + "render": { + "#": 1636 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1638 + }, + "vertices": { + "#": 1639 + } + }, + [ + { + "#": 1625 + }, + { + "#": 1626 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1628 + }, + "min": { + "#": 1629 + } + }, + { + "x": 895.1625213400803, + "y": 353.51599999999996 + }, + { + "x": 837.6605213400803, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 866.4115213400803, + "y": 324.765 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 866.4115213400803, + "y": 324.765 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1637 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 895.1625213400803, + "y": 353.51599999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 837.6605213400803, + "y": 353.51599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 837.6605213400803, + "y": 296.014 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 895.1625213400803, + "y": 296.014 + }, + [], + [], + [ + { + "#": 1647 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1648 + }, + "pointB": "", + "render": { + "#": 1649 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/raycasting/raycasting-10.json b/tests/browser/refs/raycasting/raycasting-10.json new file mode 100644 index 00000000..eeb4ee31 --- /dev/null +++ b/tests/browser/refs/raycasting/raycasting-10.json @@ -0,0 +1,15101 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 116 + }, + "composites": { + "#": 119 + }, + "constraints": { + "#": 1711 + }, + "gravity": { + "#": 1715 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.023339180146740465, + "anglePrev": 0.01932693965060767, + "angularSpeed": 0.004878912135023763, + "angularVelocity": 0.0039281985151748515, + "area": 3234, + "axes": { + "#": 91 + }, + "bounds": { + "#": 97 + }, + "collisionFilter": { + "#": 100 + }, + "constraintImpulse": { + "#": 101 + }, + "density": 0.001, + "force": { + "#": 102 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 2375.827477589164, + "inverseInertia": 0.0004209059830450043, + "inverseMass": 0.30921459492888065, + "isSleeping": false, + "isStatic": false, + "label": "Body", + "mass": 3.234, + "motion": 0, + "parent": null, + "position": { + "#": 103 + }, + "positionImpulse": { + "#": 104 + }, + "positionPrev": { + "#": 105 + }, + "region": { + "#": 106 + }, + "render": { + "#": 107 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905271886072441, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 109 + }, + "vertices": { + "#": 110 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": 0.9535780693936071, + "y": 0.3011459207287416 + }, + { + "x": -0.023337061328467128, + "y": 0.999727653698022 + }, + { + "x": -0.9665912906266908, + "y": 0.256322603148119 + }, + { + "x": -0.5863383893915982, + "y": -0.810066227617018 + }, + { + "x": 0.6234985612949141, + "y": -0.7818244969704984 + }, + { + "max": { + "#": 98 + }, + "min": { + "#": 99 + } + }, + { + "x": 283.0944719948344, + "y": 276.65262709508045 + }, + { + "x": 183.1193286974157, + "y": 173.0278048498466 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 232.7172332215614, + "y": 227.76119367271514 + }, + { + "x": -0.610628122991593, + "y": 1.025425843939388 + }, + { + "x": 232.73644740178446, + "y": 224.8413987159998 + }, + { + "endCol": 5, + "endRow": 5, + "id": "3,5,3,5", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 108 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.02027085519497973, + "y": 2.916170890645475 + }, + [ + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 283.0944719948344, + "y": 212.18430875679474 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 263.6524764259051, + "y": 273.7473561821597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 199.66990658923174, + "y": 272.2537842571378 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 183.12170662503235, + "y": 209.85060262394802 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 233.99489764041516, + "y": 173.0278048498466 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 120 + } + ], + { + "bodies": { + "#": 121 + }, + "composites": { + "#": 1709 + }, + "constraints": { + "#": 1710 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 122 + }, + { + "#": 144 + }, + { + "#": 166 + }, + { + "#": 188 + }, + { + "#": 210 + }, + { + "#": 235 + }, + { + "#": 261 + }, + { + "#": 316 + }, + { + "#": 338 + }, + { + "#": 360 + }, + { + "#": 382 + }, + { + "#": 404 + }, + { + "#": 426 + }, + { + "#": 456 + }, + { + "#": 478 + }, + { + "#": 504 + }, + { + "#": 526 + }, + { + "#": 548 + }, + { + "#": 603 + }, + { + "#": 625 + }, + { + "#": 647 + }, + { + "#": 702 + }, + { + "#": 724 + }, + { + "#": 746 + }, + { + "#": 768 + }, + { + "#": 793 + }, + { + "#": 818 + }, + { + "#": 840 + }, + { + "#": 865 + }, + { + "#": 887 + }, + { + "#": 912 + }, + { + "#": 934 + }, + { + "#": 956 + }, + { + "#": 978 + }, + { + "#": 1006 + }, + { + "#": 1028 + }, + { + "#": 1050 + }, + { + "#": 1072 + }, + { + "#": 1094 + }, + { + "#": 1116 + }, + { + "#": 1171 + }, + { + "#": 1193 + }, + { + "#": 1223 + }, + { + "#": 1245 + }, + { + "#": 1275 + }, + { + "#": 1297 + }, + { + "#": 1319 + }, + { + "#": 1341 + }, + { + "#": 1363 + }, + { + "#": 1393 + }, + { + "#": 1415 + }, + { + "#": 1437 + }, + { + "#": 1459 + }, + { + "#": 1481 + }, + { + "#": 1536 + }, + { + "#": 1558 + }, + { + "#": 1613 + }, + { + "#": 1635 + }, + { + "#": 1665 + }, + { + "#": 1687 + } + ], + { + "angle": 0.07445967011819259, + "anglePrev": 0.058347711567882335, + "angularSpeed": 0.013964360576911297, + "angularVelocity": 0.01600098811285361, + "area": 1534.906434764454, + "axes": { + "#": 123 + }, + "bounds": { + "#": 126 + }, + "collisionFilter": { + "#": 129 + }, + "constraintImpulse": { + "#": 130 + }, + "density": 0.001, + "force": { + "#": 131 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 132 + }, + "positionImpulse": { + "#": 133 + }, + "positionPrev": { + "#": 134 + }, + "region": { + "#": 135 + }, + "render": { + "#": 136 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2087669783591408, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 138 + }, + "vertices": { + "#": 139 + } + }, + [ + { + "#": 124 + }, + { + "#": 125 + } + ], + { + "x": -0.07439088544462749, + "y": 0.9972291593022962 + }, + { + "x": -0.9972291593022962, + "y": -0.07439088544462749 + }, + { + "max": { + "#": 127 + }, + "min": { + "#": 128 + } + }, + { + "x": 59.87515505790247, + "y": 73.82257465594918 + }, + { + "x": 20.147845203887172, + "y": 27.893385607099926 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.86730547792392, + "y": 50.27104972334358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.56140334476491, + "y": 49.32606648024493 + }, + { + "endCol": 1, + "endRow": 1, + "id": "0,1,0,1", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 137 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3113174228508271, + "y": 0.9340505811102986 + }, + [ + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 23.284469538887052, + "y": 27.893385607099926 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 59.58676575196065, + "y": 30.601449178820122 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.450141416960754, + "y": 72.64871383958726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.147845203887172, + "y": 69.94065026786706 + }, + { + "angle": 0.06898784932673126, + "anglePrev": 0.05330008656898826, + "angularSpeed": 0.01353673657723852, + "angularVelocity": 0.015675700760014386, + "area": 2220.52878634164, + "axes": { + "#": 145 + }, + "bounds": { + "#": 148 + }, + "collisionFilter": { + "#": 151 + }, + "constraintImpulse": { + "#": 152 + }, + "density": 0.001, + "force": { + "#": 153 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 154 + }, + "positionImpulse": { + "#": 155 + }, + "positionPrev": { + "#": 156 + }, + "region": { + "#": 157 + }, + "render": { + "#": 158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9959156495863588, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 160 + }, + "vertices": { + "#": 161 + } + }, + [ + { + "#": 146 + }, + { + "#": 147 + } + ], + { + "x": -0.06893313976696294, + "y": 0.9976212819712039 + }, + { + "x": -0.9976212819712039, + "y": -0.06893313976696294 + }, + { + "max": { + "#": 149 + }, + "min": { + "#": 150 + } + }, + { + "x": 104.6869565506, + "y": 86.1996725438981 + }, + { + "x": 55.938511184147806, + "y": 32.202029606818364 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80.2314380038951, + "y": 58.206210033249484 + }, + { + "x": 0.05801419182161454, + "y": 0.006383165640993591 + }, + { + "x": 80.0633700876166, + "y": 56.34323841717704 + }, + { + "endCol": 2, + "endRow": 1, + "id": "1,2,0,1", + "startCol": 1, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 159 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.16787187771295464, + "y": 1.8624139983194965 + }, + [ + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 59.31631481645557, + "y": 32.202029606818364 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 104.52436482364239, + "y": 35.3257929888301 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 101.14656119133464, + "y": 84.21039045968061 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 55.938511184147806, + "y": 81.0866270776689 + }, + { + "angle": 0.04185054699428338, + "anglePrev": 0.033253364058514236, + "angularSpeed": 0.00902763701597345, + "angularVelocity": 0.008727273043112757, + "area": 1140.197701571206, + "axes": { + "#": 167 + }, + "bounds": { + "#": 170 + }, + "collisionFilter": { + "#": 173 + }, + "constraintImpulse": { + "#": 174 + }, + "density": 0.001, + "force": { + "#": 175 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 176 + }, + "positionImpulse": { + "#": 177 + }, + "positionPrev": { + "#": 178 + }, + "region": { + "#": 179 + }, + "render": { + "#": 180 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.5018674977003648, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 182 + }, + "vertices": { + "#": 183 + } + }, + [ + { + "#": 168 + }, + { + "#": 169 + } + ], + { + "x": -0.04183833141313979, + "y": 0.9991243936690586 + }, + { + "x": -0.9991243936690586, + "y": -0.04183833141313979 + }, + { + "max": { + "#": 171 + }, + "min": { + "#": 172 + } + }, + { + "x": 143.8443143702336, + "y": 68.5576021586481 + }, + { + "x": 103.11385727664315, + "y": 35.39056577804156 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.31523627794039, + "y": 50.73392729660836 + }, + { + "x": 0.052447100650278904, + "y": 0.02617153414764535 + }, + { + "x": 122.92238161526164, + "y": 48.33173004139495 + }, + { + "endCol": 2, + "endRow": 1, + "id": "2,2,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 181 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.39218829039111824, + "y": 2.407765368357296 + }, + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 104.33014965351963, + "y": 35.39056577804156 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 143.51661527923758, + "y": 37.03149892525231 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 142.3003229023611, + "y": 66.07728881517517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 103.11385727664315, + "y": 64.43635566796442 + }, + { + "angle": 0.03280565133427562, + "anglePrev": 0.01940431883749797, + "angularSpeed": 0.011965226105519299, + "angularVelocity": 0.013625552631728634, + "area": 752.4076041785743, + "axes": { + "#": 189 + }, + "bounds": { + "#": 192 + }, + "collisionFilter": { + "#": 195 + }, + "constraintImpulse": { + "#": 196 + }, + "density": 0.001, + "force": { + "#": 197 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 198 + }, + "positionImpulse": { + "#": 199 + }, + "positionPrev": { + "#": 200 + }, + "region": { + "#": 201 + }, + "render": { + "#": 202 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.818300919673157, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 204 + }, + "vertices": { + "#": 205 + } + }, + [ + { + "#": 190 + }, + { + "#": 191 + } + ], + { + "x": -0.03279976735174861, + "y": 0.9994619428781024 + }, + { + "x": -0.9994619428781024, + "y": -0.03279976735174861 + }, + { + "max": { + "#": 193 + }, + "min": { + "#": 194 + } + }, + { + "x": 168.45232049592968, + "y": 70.78947755316544 + }, + { + "x": 142.32628117200844, + "y": 36.93972431142416 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.25425588182608, + "y": 52.46193636820317 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 154.95123611558697, + "y": 49.735048143530584 + }, + { + "endCol": 3, + "endRow": 1, + "id": "2,3,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 203 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3040295861113975, + "y": 2.7184503117999697 + }, + [ + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 143.3183011932387, + "y": 36.93972431142416 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 168.18223059164373, + "y": 37.75569444968629 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.19021057041346, + "y": 67.9841484249822 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 142.32628117200844, + "y": 67.16817828672005 + }, + { + "angle": 0.014263491998978941, + "anglePrev": 0.010214849139354512, + "angularSpeed": 0.004596865390569766, + "angularVelocity": 0.00438512108424886, + "area": 2027.2541820000001, + "axes": { + "#": 211 + }, + "bounds": { + "#": 215 + }, + "collisionFilter": { + "#": 218 + }, + "constraintImpulse": { + "#": 219 + }, + "density": 0.001, + "force": { + "#": 220 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 221 + }, + "positionImpulse": { + "#": 222 + }, + "positionPrev": { + "#": 223 + }, + "region": { + "#": 224 + }, + "render": { + "#": 225 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9118860967597024, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 227 + }, + "vertices": { + "#": 228 + } + }, + [ + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": -0.48760566337162187, + "y": -0.8730639822188984 + }, + { + "x": 0.5123097771744258, + "y": -0.8588007290469023 + }, + { + "x": 0.999898278122601, + "y": 0.0142630083593043 + }, + { + "max": { + "#": 216 + }, + "min": { + "#": 217 + } + }, + { + "x": 216.1827478094875, + "y": 94.59868401268875 + }, + { + "x": 167.18290889750304, + "y": 35.833135482272645 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 191.57065958132125, + "y": 63.76429398334937 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 191.28178909713134, + "y": 60.850998328406696 + }, + { + "endCol": 4, + "endRow": 1, + "id": "3,4,0,1", + "startCol": 3, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 226 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.29463754603040115, + "y": 2.898495140313578 + }, + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.55998738963066, + "y": 78.07490966910768 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 191.17223670581242, + "y": 91.69545248442608 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.18290889750304, + "y": 77.3848367986678 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 167.58133177301184, + "y": 49.453678297591075 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 191.96908245683008, + "y": 35.833135482272645 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.95841026513946, + "y": 50.143751168030924 + }, + { + "angle": -0.003945049221952362, + "anglePrev": -0.0026682771680283423, + "angularSpeed": 0.0008240257332086331, + "angularVelocity": -0.0012562861648907175, + "area": 4842.27229, + "axes": { + "#": 236 + }, + "bounds": { + "#": 242 + }, + "collisionFilter": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "density": 0.001, + "force": { + "#": 247 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 248 + }, + "positionImpulse": { + "#": 249 + }, + "positionPrev": { + "#": 250 + }, + "region": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.995501922552666, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + } + ], + { + "x": 0.31276955396675266, + "y": 0.9498290404654083 + }, + { + "x": -0.8066937133009743, + "y": 0.5909697563502601 + }, + { + "x": -0.8113313647914389, + "y": -0.5845865346598919 + }, + { + "x": 0.3052656516165043, + "y": -0.9522672324212103 + }, + { + "x": 0.9999922183034106, + "y": -0.0039450389888883615 + }, + { + "max": { + "#": 243 + }, + "min": { + "#": 244 + } + }, + { + "x": 291.6583865175033, + "y": 131.59912282595795 + }, + { + "x": 209.75600014088567, + "y": 42.76858512186926 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 254.88403485065413, + "y": 85.63323604041955 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 254.63828504847461, + "y": 82.68635115074385 + }, + { + "endCol": 6, + "endRow": 2, + "id": "4,6,0,2", + "startCol": 4, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2437249149174079, + "y": 2.947237546968296 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 291.49801096295886, + "y": 112.01499777198356 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 241.10807855764395, + "y": 128.60791714103402 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 209.75600014088567, + "y": 85.81126928224216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240.7694364108378, + "y": 42.76858512186926 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.28871875452035, + "y": 58.963410606551015 + }, + { + "angle": -0.0003528163697920424, + "anglePrev": -0.00022804792135504854, + "angularSpeed": 0.0001247684484369939, + "angularVelocity": -0.0001247684484369939, + "area": 3079.0178339999993, + "axes": { + "#": 262 + }, + "bounds": { + "#": 276 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9303315130230945, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": -0.971028118297543, + "y": -0.23896525579157432 + }, + { + "x": -0.8855821844723922, + "y": -0.46448271716513384 + }, + { + "x": -0.7487697261741857, + "y": -0.6628302174501661 + }, + { + "x": -0.5683683545866954, + "y": -0.8227742178170219 + }, + { + "x": -0.3549046033263034, + "y": -0.9349025203398476 + }, + { + "x": -0.12086273506990822, + "y": -0.9926692295379269 + }, + { + "x": 0.12016224513025908, + "y": -0.9927542670999986 + }, + { + "x": 0.35424481719776385, + "y": -0.9351527198744185 + }, + { + "x": 0.567787636709211, + "y": -0.823175072266021 + }, + { + "x": 0.7483018250979903, + "y": -0.6633584088221212 + }, + { + "x": 0.885254209813936, + "y": -0.4651074972591857 + }, + { + "x": 0.9708592548574596, + "y": -0.23965038547354403 + }, + { + "x": 0.9999999377603049, + "y": -0.0003528163624723146 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 353.39690439896094, + "y": 106.7717258057096 + }, + { + "x": 290.82416814690777, + "y": 40.92546596848775 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.0555040828086, + "y": 72.3844640104892 + }, + { + "x": -0.033094734660577094, + "y": 0.15033754430226576 + }, + { + "x": 321.94543970255717, + "y": 69.45620025727023 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,0,2", + "startCol": 6, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11006438025144348, + "y": 2.928263753218976 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.2868400187095, + "y": 76.16544531947626 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 351.4744382713677, + "y": 83.53008522284104 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 347.9518076526367, + "y": 90.24632848257919 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 342.9248109041298, + "y": 95.92510244273133 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 336.68533122545733, + "y": 100.23530410152088 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 329.59528038999764, + "y": 102.92680575498466 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.0666033327556, + "y": 103.84346205249062 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 314.53728132720306, + "y": 102.93211846377075 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 307.44533304534605, + "y": 100.24562045195957 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.2028135008944, + "y": 95.9398226470064 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 296.1718108754081, + "y": 90.26459731382799 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 292.64444193292894, + "y": 83.55084140944527 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 290.82684390620085, + "y": 76.18748222947629 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 290.82416814690777, + "y": 68.60348270150212 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 292.63656989424953, + "y": 61.23884279813735 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 296.15920051298053, + "y": 54.52259953839919 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 301.18619726148745, + "y": 48.843825578247056 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 307.4256769401599, + "y": 44.53362391945747 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 314.5157277756196, + "y": 41.842122265993716 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 322.04440483286163, + "y": 40.92546596848775 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 329.5737268384142, + "y": 41.83680955720761 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 336.6656751202712, + "y": 44.52330756901878 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 342.9081946647228, + "y": 48.82910537397199 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 347.93919729020917, + "y": 54.50433070715038 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 351.4665662326883, + "y": 61.21808661153311 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 353.2841642594164, + "y": 68.5814457915021 + }, + { + "angle": 0.002014009142289523, + "anglePrev": 0.0016318587895234023, + "angularSpeed": 0.0003802943192530492, + "angularVelocity": 0.000350153020848678, + "area": 1329.4167625219097, + "axes": { + "#": 317 + }, + "bounds": { + "#": 320 + }, + "collisionFilter": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "density": 0.001, + "force": { + "#": 325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 326 + }, + "positionImpulse": { + "#": 327 + }, + "positionPrev": { + "#": 328 + }, + "region": { + "#": 329 + }, + "render": { + "#": 330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.891019398798657, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 332 + }, + "vertices": { + "#": 333 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": -0.0020140077807414667, + "y": 0.9999979718842729 + }, + { + "x": -0.9999979718842729, + "y": -0.0020140077807414667 + }, + { + "max": { + "#": 321 + }, + "min": { + "#": 322 + } + }, + { + "x": 401.4978365164123, + "y": 67.10808984780826 + }, + { + "x": 352.66459960159926, + "y": 36.86425763943551 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.081615873226, + "y": 50.54066409896317 + }, + { + "x": 0.0026686088037196913, + "y": 0.0000047603913042024375 + }, + { + "x": 377.0824479848197, + "y": 47.64954637237944 + }, + { + "endCol": 8, + "endRow": 1, + "id": "7,8,0,1", + "startCol": 7, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 331 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0013420808641626536, + "y": 2.8900207943853573 + }, + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 352.72028626617504, + "y": 36.86425763943551 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 401.4978365164123, + "y": 36.96249620440417 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 401.44294548027693, + "y": 64.21707055849082 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 352.6653952300397, + "y": 64.11883199352215 + }, + { + "angle": 0.0002397042586295687, + "anglePrev": 0.00012683434866586022, + "angularSpeed": 0.00007627594922206422, + "angularVelocity": 0.00010697599906221697, + "area": 2858.632357296012, + "axes": { + "#": 339 + }, + "bounds": { + "#": 342 + }, + "collisionFilter": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "density": 0.001, + "force": { + "#": 347 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 348 + }, + "positionImpulse": { + "#": 349 + }, + "positionPrev": { + "#": 350 + }, + "region": { + "#": 351 + }, + "render": { + "#": 352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.904423596344377, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 354 + }, + "vertices": { + "#": 355 + } + }, + [ + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": -0.00023970425633407553, + "y": 0.9999999712709342 + }, + { + "x": -0.9999999712709342, + "y": -0.00023970425633407553 + }, + { + "max": { + "#": 343 + }, + "min": { + "#": 344 + } + }, + { + "x": 510.3041740576686, + "y": 66.89341329274617 + }, + { + "x": 401.4401160311097, + "y": 37.7018824681489 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.8705595742545, + "y": 50.845436947753896 + }, + { + "x": 0.0025353259596692253, + "y": -0.0000015795019659883575 + }, + { + "x": 455.86737232947934, + "y": 47.93829866820848 + }, + { + "endCol": 10, + "endRow": 1, + "id": "8,10,0,1", + "startCol": 8, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 353 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0034244077299945275, + "y": 2.9076484116189363 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 401.44641090861325, + "y": 37.7018824681489 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.3010031173993, + "y": 37.72797537797247 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.2947082398958, + "y": 63.988991427358876 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 401.4401160311097, + "y": 63.96289851753531 + }, + { + "angle": 0.0013197634636950648, + "anglePrev": 0.0006989811101104764, + "angularSpeed": 0.0003819785234120505, + "angularVelocity": -0.0005144863693162366, + "area": 926.8394636035856, + "axes": { + "#": 361 + }, + "bounds": { + "#": 364 + }, + "collisionFilter": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "density": 0.001, + "force": { + "#": 369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 370 + }, + "positionImpulse": { + "#": 371 + }, + "positionPrev": { + "#": 372 + }, + "region": { + "#": 373 + }, + "render": { + "#": 374 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9159836565704227, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 376 + }, + "vertices": { + "#": 377 + } + }, + [ + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": -0.0013197630805731313, + "y": 0.9999991291123261 + }, + { + "x": -0.9999991291123261, + "y": -0.0013197630805731313 + }, + { + "max": { + "#": 365 + }, + "min": { + "#": 366 + } + }, + { + "x": 549.0456050999973, + "y": 64.64694069255583 + }, + { + "x": 510.24532538166636, + "y": 37.76499197131285 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 529.6389830029966, + "y": 49.747988913748756 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 529.6260164851954, + "y": 46.84055345303018 + }, + { + "endCol": 11, + "endRow": 1, + "id": "10,11,0,1", + "startCol": 10, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 375 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.012956809550018988, + "y": 2.94793641393742 + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510.2768873392268, + "y": 37.76499197131285 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 549.0326406243266, + "y": 37.816140428202885 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.0010786667663, + "y": 61.73098585618466 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510.24532538166636, + "y": 61.67983739929464 + }, + { + "angle": -0.0006428344899314241, + "anglePrev": -0.00047952066097481594, + "angularSpeed": 0.00016331382895660814, + "angularVelocity": -0.00016331382895660814, + "area": 1290.4501361223834, + "axes": { + "#": 383 + }, + "bounds": { + "#": 386 + }, + "collisionFilter": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "density": 0.001, + "force": { + "#": 391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 392 + }, + "positionImpulse": { + "#": 393 + }, + "positionPrev": { + "#": 394 + }, + "region": { + "#": 395 + }, + "render": { + "#": 396 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8792453183859594, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 398 + }, + "vertices": { + "#": 399 + } + }, + [ + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "x": 0.0006428344456576799, + "y": 0.9999997933819162 + }, + { + "x": -0.9999997933819162, + "y": 0.0006428344456576799 + }, + { + "max": { + "#": 387 + }, + "min": { + "#": 388 + } + }, + { + "x": 584.8744863650361, + "y": 76.5886212369089 + }, + { + "x": 549.0753194704051, + "y": 37.61039146488355 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.9720706887512, + "y": 55.65988647768632 + }, + { + "x": 0.0037272632879857847, + "y": 0 + }, + { + "x": 566.9664062308123, + "y": 52.78064673126649 + }, + { + "endCol": 12, + "endRow": 1, + "id": "11,12,0,1", + "startCol": 11, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 397 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005664457938929672, + "y": 2.879239746419829 + }, + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.0753194704051, + "y": 37.63338585802394 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 584.8456310096516, + "y": 37.61039146488355 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 584.8688219070972, + "y": 73.68638709734869 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 549.0985103678507, + "y": 73.70938149048908 + }, + { + "angle": -0.0019137993573372758, + "anglePrev": -0.0013956296441222996, + "angularSpeed": 0.000939523336371687, + "angularVelocity": -0.0005368046761495494, + "area": 1148.2925932011974, + "axes": { + "#": 405 + }, + "bounds": { + "#": 408 + }, + "collisionFilter": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "density": 0.001, + "force": { + "#": 413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 414 + }, + "positionImpulse": { + "#": 415 + }, + "positionPrev": { + "#": 416 + }, + "region": { + "#": 417 + }, + "render": { + "#": 418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.899966703635072, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 420 + }, + "vertices": { + "#": 421 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": 0.0019137981890816435, + "y": 0.9999981686865689 + }, + { + "x": -0.9999981686865689, + "y": 0.0019137981890816435 + }, + { + "max": { + "#": 409 + }, + "min": { + "#": 410 + } + }, + { + "x": 615.5454431094741, + "y": 78.3159119685451 + }, + { + "x": 584.9180102696346, + "y": 37.776262505111596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600.2320533228566, + "y": 56.59610392180066 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600.2326651983644, + "y": 53.6745096086202 + }, + { + "endCol": 12, + "endRow": 1, + "id": "12,12,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 419 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0006137060879609635, + "y": 2.9206377981506932 + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 584.918663536239, + "y": 37.834738441420086 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615.4735201320574, + "y": 37.776262505111596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615.5454431094741, + "y": 75.35746940218122 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 584.9905865136558, + "y": 75.4159453384897 + }, + { + "angle": -0.00024045459191298946, + "anglePrev": -0.00014491586335403154, + "angularSpeed": 0.00037326069438534576, + "angularVelocity": -0.00010782137727696065, + "area": 1926.7878890000002, + "axes": { + "#": 427 + }, + "bounds": { + "#": 435 + }, + "collisionFilter": { + "#": 438 + }, + "constraintImpulse": { + "#": 439 + }, + "density": 0.001, + "force": { + "#": 440 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 441 + }, + "positionImpulse": { + "#": 442 + }, + "positionPrev": { + "#": 443 + }, + "region": { + "#": 444 + }, + "render": { + "#": 445 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.92459745768852, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 447 + }, + "vertices": { + "#": 448 + } + }, + [ + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + } + ], + { + "x": 0.6236800766810191, + "y": 0.7816797054747924 + }, + { + "x": -0.22228377723957624, + "y": 0.9749820113089811 + }, + { + "x": -0.9008772011044033, + "y": 0.4340740357707385 + }, + { + "x": -0.9010858471120454, + "y": -0.43364074547298653 + }, + { + "x": -0.22275262932061765, + "y": -0.9748750002593929 + }, + { + "x": 0.6233040876259557, + "y": -0.7819795485489217 + }, + { + "x": 0.9999999710907947, + "y": -0.00024045458959587242 + }, + { + "max": { + "#": 436 + }, + "min": { + "#": 437 + } + }, + { + "x": 665.9304813681198, + "y": 92.41013524153173 + }, + { + "x": 615.4802457155978, + "y": 37.745542693716665 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 642.0154360805955, + "y": 63.616961784228494 + }, + { + "x": 0.006512532585316241, + "y": 0.000025501997583152724 + }, + { + "x": 642.0109919910219, + "y": 60.70525702051552 + }, + { + "endCol": 13, + "endRow": 1, + "id": "12,13,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 446 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0044451805299559055, + "y": 2.9122748104369762 + }, + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 665.9260126110206, + "y": 75.12421270902735 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 647.9264653380159, + "y": 89.48554119795438 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625.4752338977106, + "y": 84.36693955162157 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615.4802457155978, + "y": 63.62334229272202 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 625.465256955879, + "y": 42.87494075112231 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 647.9140242175501, + "y": 37.745542693716665 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 665.9204759036407, + "y": 52.09821337469071 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1690.1965440000001, + "axes": { + "#": 457 + }, + "bounds": { + "#": 460 + }, + "collisionFilter": { + "#": 463 + }, + "constraintImpulse": { + "#": 464 + }, + "density": 0.001, + "force": { + "#": 465 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1904.509571566363, + "inverseInertia": 0.0005250695585517853, + "inverseMass": 0.5916471688158889, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.6901965440000002, + "motion": 0, + "parent": null, + "position": { + "#": 466 + }, + "positionImpulse": { + "#": 467 + }, + "positionPrev": { + "#": 468 + }, + "region": { + "#": 469 + }, + "render": { + "#": 470 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 472 + }, + "vertices": { + "#": 473 + } + }, + [ + { + "#": 458 + }, + { + "#": 459 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 461 + }, + "min": { + "#": 462 + } + }, + { + "x": 710.4548049732069, + "y": 81.75502548206143 + }, + { + "x": 669.3428049732069, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 689.8988049732069, + "y": 58.29175476702577 + }, + { + "x": 0.12553557275601596, + "y": 0 + }, + { + "x": 689.8988049732069, + "y": 55.38448405199012 + }, + { + "endCol": 14, + "endRow": 1, + "id": "13,14,0,1", + "startCol": 13, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 471 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 710.4548049732069, + "y": 78.84775476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 669.3428049732069, + "y": 78.84775476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.3428049732069, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 710.4548049732069, + "y": 37.735754767025774 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 479 + }, + "bounds": { + "#": 485 + }, + "collisionFilter": { + "#": 488 + }, + "constraintImpulse": { + "#": 489 + }, + "density": 0.001, + "force": { + "#": 490 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 491 + }, + "positionImpulse": { + "#": 492 + }, + "positionPrev": { + "#": 493 + }, + "region": { + "#": 494 + }, + "render": { + "#": 495 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 497 + }, + "vertices": { + "#": 498 + } + }, + [ + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 486 + }, + "min": { + "#": 487 + } + }, + { + "x": 749.6424419788154, + "y": 79.38902548206144 + }, + { + "x": 712.7924419788154, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 733.1624846989898, + "y": 57.10875476702578 + }, + { + "x": 0.14650463713809028, + "y": 0 + }, + { + "x": 733.1624846989898, + "y": 54.20148405199013 + }, + { + "endCol": 15, + "endRow": 1, + "id": "14,15,0,1", + "startCol": 14, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 496 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 749.6424419788154, + "y": 69.08175476702579 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 726.8674419788155, + "y": 76.48175476702579 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 712.7924419788154, + "y": 57.10875476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 726.8674419788155, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 749.6424419788154, + "y": 45.13575476702578 + }, + { + "angle": 0.10704805812139541, + "anglePrev": 0.08410097949895996, + "angularSpeed": 0.019942005136677127, + "angularVelocity": 0.02310625514102102, + "area": 1201.454244, + "axes": { + "#": 505 + }, + "bounds": { + "#": 508 + }, + "collisionFilter": { + "#": 511 + }, + "constraintImpulse": { + "#": 512 + }, + "density": 0.001, + "force": { + "#": 513 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 514 + }, + "positionImpulse": { + "#": 515 + }, + "positionPrev": { + "#": 516 + }, + "region": { + "#": 517 + }, + "render": { + "#": 518 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7188528765666578, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 520 + }, + "vertices": { + "#": 521 + } + }, + [ + { + "#": 506 + }, + { + "#": 507 + } + ], + { + "x": 0.1068437261658324, + "y": -0.994275826005541 + }, + { + "x": 0.994275826005541, + "y": 0.1068437261658324 + }, + { + "max": { + "#": 509 + }, + "min": { + "#": 510 + } + }, + { + "x": 57.882519774582875, + "y": 146.93787432532588 + }, + { + "x": 19.393281217998034, + "y": 108.12828332848268 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.47678417668011, + "y": 127.21178628716477 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.13147402332279, + "y": 126.76937473471457 + }, + { + "endCol": 1, + "endRow": 3, + "id": "0,1,2,3", + "startCol": 0, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 519 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3557216607425602, + "y": 0.441976197965289 + }, + [ + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 53.8568698990021, + "y": 146.29528924584687 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 19.393281217998034, + "y": 142.59187200948682 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 23.096698454358123, + "y": 108.12828332848268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 57.56028713536218, + "y": 111.83170056484279 + }, + { + "angle": 0.10515738955647991, + "anglePrev": 0.08400391611034211, + "angularSpeed": 0.019199422570264996, + "angularVelocity": 0.0211052011992085, + "area": 1990.733346252218, + "axes": { + "#": 527 + }, + "bounds": { + "#": 530 + }, + "collisionFilter": { + "#": 533 + }, + "constraintImpulse": { + "#": 534 + }, + "density": 0.001, + "force": { + "#": 535 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 536 + }, + "positionImpulse": { + "#": 537 + }, + "positionPrev": { + "#": 538 + }, + "region": { + "#": 539 + }, + "render": { + "#": 540 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9560347715708564, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 542 + }, + "vertices": { + "#": 543 + } + }, + [ + { + "#": 528 + }, + { + "#": 529 + } + ], + { + "x": -0.10496369027349588, + "y": 0.9944760548772252 + }, + { + "x": -0.9944760548772252, + "y": -0.10496369027349588 + }, + { + "max": { + "#": 531 + }, + "min": { + "#": 532 + } + }, + { + "x": 151.5286357406573, + "y": 136.4219992291863 + }, + { + "x": 54.51448886018513, + "y": 103.70266420717273 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 102.76625992043056, + "y": 119.11822436111161 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 102.24664776099429, + "y": 117.28227136986969 + }, + { + "endCol": 3, + "endRow": 2, + "id": "1,3,2,2", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 541 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.5307644447692894, + "y": 1.83545341120913 + }, + [ + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.718100929276126, + "y": 103.70266420717273 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.01803098067606, + "y": 113.65571295297633 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 148.81441891158502, + "y": 134.53378451505054 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 54.51448886018513, + "y": 124.5807357692469 + }, + { + "angle": 0.0071780137078470835, + "anglePrev": 0.005626174685839978, + "angularSpeed": 0.001407988828982598, + "angularVelocity": 0.0015536982787516295, + "area": 7321.24308, + "axes": { + "#": 549 + }, + "bounds": { + "#": 563 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 566 + }, + "constraintImpulse": { + "#": 567 + }, + "density": 0.001, + "force": { + "#": 568 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 569 + }, + "positionImpulse": { + "#": 570 + }, + "positionPrev": { + "#": 571 + }, + "region": { + "#": 572 + }, + "render": { + "#": 573 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8626605626756256, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 575 + }, + "vertices": { + "#": 576 + } + }, + [ + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + } + ], + { + "x": -0.9691940213701834, + "y": -0.24629849561110215 + }, + { + "x": -0.8820875829864625, + "y": -0.47108544441650935 + }, + { + "x": -0.7437473153258325, + "y": -0.6684608671759453 + }, + { + "x": -0.5621446618087984, + "y": -0.8270389224213524 + }, + { + "x": -0.3478768681894593, + "y": -0.9375402309120888 + }, + { + "x": -0.11335838201743377, + "y": -0.9935541642137028 + }, + { + "x": 0.12760970177574218, + "y": -0.9918244622979946 + }, + { + "x": 0.3612999118168699, + "y": -0.932449662835009 + }, + { + "x": 0.5739593206744592, + "y": -0.8188838124000947 + }, + { + "x": 0.7532667880543396, + "y": -0.6577150948657772 + }, + { + "x": 0.8887593706531006, + "y": -0.4583740623947916 + }, + { + "x": 0.9726298963132817, + "y": -0.23235981751932652 + }, + { + "x": 0.9999742381702178, + "y": 0.007177952068152113 + }, + { + "max": { + "#": 564 + }, + "min": { + "#": 565 + } + }, + { + "x": 241.7203315313517, + "y": 199.72678677736639 + }, + { + "x": 145.03330408729613, + "y": 99.86151291810718 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 193.23103296060185, + "y": 148.3702632117444 + }, + { + "x": -0.769256476772404, + "y": 0.2147790963441877 + }, + { + "x": 193.00620606564442, + "y": 145.48962386915522 + }, + { + "endCol": 5, + "endRow": 4, + "id": "3,5,2,4", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 574 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.22481153198049242, + "y": 2.8797653511964825 + }, + [ + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 241.34482286242255, + "y": 154.56278122007166 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 238.46438932405022, + "y": 165.89739760665577 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 232.95520164592938, + "y": 176.21311867341794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225.13756563651472, + "y": 184.9112281360715 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 215.46613043277577, + "y": 191.4849763895323 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 204.5016451711579, + "y": 195.55337864935902 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 192.8828305057758, + "y": 196.87901350538164 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 181.28424330932177, + "y": 195.3867209582407 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 170.379291982157, + "y": 191.16133688668353 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 160.80322304959563, + "y": 184.44942741181484 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 153.11125862499017, + "y": 175.63998791258422 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 147.75072633420075, + "y": 165.2462425068412 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 145.03330408729613, + "y": 153.87144394457965 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 145.11724305878116, + "y": 142.17774520341715 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 147.99767659715343, + "y": 130.8431288168331 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 153.50686427527427, + "y": 120.52740775007089 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 161.32450028468892, + "y": 111.82929828741734 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 170.99593548842793, + "y": 105.2555500339565 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 181.96042075004576, + "y": 101.18714777412984 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 193.57923541542786, + "y": 99.86151291810718 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 205.17782261188188, + "y": 101.35380546524816 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 216.0827739390467, + "y": 105.57918953680533 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 225.65884287160802, + "y": 112.29109901167398 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 233.35080729621353, + "y": 121.1005385109046 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 238.7113395870029, + "y": 131.49428391664762 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 241.42876183390752, + "y": 142.86908247890915 + }, + { + "angle": -0.0013006844829861548, + "anglePrev": -0.0013050878892966365, + "angularSpeed": 0.0005633073955357284, + "angularVelocity": -0.00011807080712258194, + "area": 2034.763772651268, + "axes": { + "#": 604 + }, + "bounds": { + "#": 607 + }, + "collisionFilter": { + "#": 610 + }, + "constraintImpulse": { + "#": 611 + }, + "density": 0.001, + "force": { + "#": 612 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 613 + }, + "positionImpulse": { + "#": 614 + }, + "positionPrev": { + "#": 615 + }, + "region": { + "#": 616 + }, + "render": { + "#": 617 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.962259843787818, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 619 + }, + "vertices": { + "#": 620 + } + }, + [ + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "x": 0.0013006841162408265, + "y": 0.9999991541100572 + }, + { + "x": -0.9999991541100572, + "y": 0.0013006841162408265 + }, + { + "max": { + "#": 608 + }, + "min": { + "#": 609 + } + }, + { + "x": 325.0044976461376, + "y": 155.59280339586732 + }, + { + "x": 240.73083315110492, + "y": 128.36455520617 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.86284836796307, + "y": 140.4975572122815 + }, + { + "x": 3.6909697845538783, + "y": 1.777890136996868 + }, + { + "x": 282.6260365425739, + "y": 137.54144899964842 + }, + { + "endCol": 6, + "endRow": 3, + "id": "4,6,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 618 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.236867102611086, + "y": 2.95925290368848 + }, + [ + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 240.73083315110492, + "y": 128.47411531739817 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 324.96344365535646, + "y": 128.36455520617 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 324.99486358482113, + "y": 152.52099910716484 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 240.7622530805696, + "y": 152.63055921839302 + }, + { + "angle": 0.00010535303592766992, + "anglePrev": 0.00011209467683956417, + "angularSpeed": 0.000006741640911894256, + "angularVelocity": -0.000006741640911894256, + "area": 1030.4556949326513, + "axes": { + "#": 626 + }, + "bounds": { + "#": 629 + }, + "collisionFilter": { + "#": 632 + }, + "constraintImpulse": { + "#": 633 + }, + "density": 0.001, + "force": { + "#": 634 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 635 + }, + "positionImpulse": { + "#": 636 + }, + "positionPrev": { + "#": 637 + }, + "region": { + "#": 638 + }, + "render": { + "#": 639 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8796990416810497, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 641 + }, + "vertices": { + "#": 642 + } + }, + [ + { + "#": 627 + }, + { + "#": 628 + } + ], + { + "x": -0.00010535303573277975, + "y": 0.9999999944503689 + }, + { + "x": -0.9999999944503689, + "y": -0.00010535303573277975 + }, + { + "max": { + "#": 630 + }, + "min": { + "#": 631 + } + }, + { + "x": 380.2248433029487, + "y": 130.5577505060009 + }, + { + "x": 330.83607130156446, + "y": 109.68744985966585 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355.5304573022566, + "y": 120.12260018283338 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355.4851221887682, + "y": 117.24325801870218 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,2,2", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 640 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04533511348841102, + "y": 2.8793421641312014 + }, + [ + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 330.83826950295185, + "y": 109.68744985966585 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380.2248433029487, + "y": 109.692652885169 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380.22264510156134, + "y": 130.5577505060009 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 330.83607130156446, + "y": 130.55254748049776 + }, + { + "angle": -0.00023787570373766324, + "anglePrev": 0.000030901141015768, + "angularSpeed": 0.00026877684475343124, + "angularVelocity": -0.00026877684475343124, + "area": 2157.165332, + "axes": { + "#": 648 + }, + "bounds": { + "#": 662 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 665 + }, + "constraintImpulse": { + "#": 666 + }, + "density": 0.001, + "force": { + "#": 667 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 668 + }, + "positionImpulse": { + "#": 669 + }, + "positionPrev": { + "#": 670 + }, + "region": { + "#": 671 + }, + "render": { + "#": 672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9249457468256908, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 674 + }, + "vertices": { + "#": 675 + } + }, + [ + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + } + ], + { + "x": -0.9710002924601351, + "y": -0.23907829688688217 + }, + { + "x": -0.8855748647834559, + "y": -0.46449667260784916 + }, + { + "x": -0.7486610142542968, + "y": -0.6629530041682649 + }, + { + "x": -0.5682747036632771, + "y": -0.8228389035384839 + }, + { + "x": -0.354848144668094, + "y": -0.9349239510385918 + }, + { + "x": -0.12074156431117224, + "y": -0.9926839752145145 + }, + { + "x": 0.12026927986631487, + "y": -0.9927413058397632 + }, + { + "x": 0.35440331314122636, + "y": -0.9350926647314276 + }, + { + "x": 0.5678831726000837, + "y": -0.8231091678979547 + }, + { + "x": 0.7483455287156301, + "y": -0.6633091056598903 + }, + { + "x": 0.885353779625791, + "y": -0.4649179335133529 + }, + { + "x": 0.9708864407403744, + "y": -0.2395402245688338 + }, + { + "x": 0.9999999717075749, + "y": -0.00023787570149430307 + }, + { + "max": { + "#": 663 + }, + "min": { + "#": 664 + } + }, + { + "x": 364.5224454428324, + "y": 202.3785692771521 + }, + { + "x": 312.2188074667759, + "y": 146.78970873439243 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.35956174468845, + "y": 173.12170798939633 + }, + { + "x": -3.7969206810292513, + "y": 5.782884893154236 + }, + { + "x": 338.33743232445704, + "y": 170.19684595664438 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,2,4", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 673 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.022129420231426025, + "y": 2.9248620327519586 + }, + [ + { + "#": 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 + }, + { + "#": 701 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.500316022601, + "y": 176.28948982875912 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.9827820935255, + "y": 182.45285098758347 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 360.0341192763062, + "y": 188.07455256187114 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.8252497807509, + "y": 192.82755388412886 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.60210770833015, + "y": 196.43479644477097 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6676433344497, + "y": 198.6872081733731 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 338.36582548766023, + "y": 199.45370724440016 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 332.0636436910474, + "y": 198.6902063587147 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.12810840075883, + "y": 196.44061821468932 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.90325076877895, + "y": 192.83586097937643 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 316.6921205025566, + "y": 188.08486257052533 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 313.74078348670105, + "y": 182.46456446287647 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 312.22031750172897, + "y": 176.30192597043325 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 312.2188074667759, + "y": 169.95392615003354 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 313.7363413958514, + "y": 163.79056499120918 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 316.68500421307067, + "y": 158.16886341692148 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 320.893873708626, + "y": 153.4158620946638 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 326.11701578104675, + "y": 149.80861953402166 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 332.0514801549272, + "y": 147.55620780541952 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 338.35329800171667, + "y": 146.78970873439243 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 344.6554797983295, + "y": 147.55320962007792 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 350.59101508861806, + "y": 149.8027977641033 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 355.81587272059795, + "y": 153.4075549994162 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 360.0270029868203, + "y": 158.1585534082673 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 362.97834000267585, + "y": 163.7788515159162 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 364.4988059876479, + "y": 169.9414900083594 + }, + { + "angle": -0.0008495201470976394, + "anglePrev": -0.0005513761301964651, + "angularSpeed": 0.00029814401690117433, + "angularVelocity": -0.00029814401690117433, + "area": 2399.6281959999997, + "axes": { + "#": 703 + }, + "bounds": { + "#": 706 + }, + "collisionFilter": { + "#": 709 + }, + "constraintImpulse": { + "#": 710 + }, + "density": 0.001, + "force": { + "#": 711 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 712 + }, + "positionImpulse": { + "#": 713 + }, + "positionPrev": { + "#": 714 + }, + "region": { + "#": 715 + }, + "render": { + "#": 716 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.913939010411184, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 718 + }, + "vertices": { + "#": 719 + } + }, + [ + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": -0.0008495200449167256, + "y": -0.9999996391577818 + }, + { + "x": 0.9999996391577818, + "y": -0.0008495200449167256 + }, + { + "max": { + "#": 707 + }, + "min": { + "#": 708 + } + }, + { + "x": 438.87718938822377, + "y": 175.51944056110096 + }, + { + "x": 389.8397282053289, + "y": 123.57792133430448 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 414.36339093187206, + "y": 148.09171979065616 + }, + { + "x": -2.159210721364285, + "y": 0.0006923272542776652 + }, + { + "x": 414.3732552020635, + "y": 145.17779747656306 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 717 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.009864270191451965, + "y": 2.9139223140931025 + }, + [ + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 438.87718938822377, + "y": 172.56390365808755 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.89120706444066, + "y": 172.60551824700786 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.84959247552035, + "y": 123.61953592322476 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 438.83557479930346, + "y": 123.57792133430448 + }, + { + "angle": -0.0013661209211364965, + "anglePrev": -0.0011167764456289206, + "angularSpeed": 0.00024934447550757584, + "angularVelocity": -0.00024934447550757584, + "area": 1489.7843794189994, + "axes": { + "#": 725 + }, + "bounds": { + "#": 728 + }, + "collisionFilter": { + "#": 731 + }, + "constraintImpulse": { + "#": 732 + }, + "density": 0.001, + "force": { + "#": 733 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 734 + }, + "positionImpulse": { + "#": 735 + }, + "positionPrev": { + "#": 736 + }, + "region": { + "#": 737 + }, + "render": { + "#": 738 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.88605352875307, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 740 + }, + "vertices": { + "#": 741 + } + }, + [ + { + "#": 726 + }, + { + "#": 727 + } + ], + { + "x": 0.0013661204962077266, + "y": 0.9999990668569595 + }, + { + "x": -0.9999990668569595, + "y": 0.0013661204962077266 + }, + { + "max": { + "#": 729 + }, + "min": { + "#": 730 + } + }, + { + "x": 479.37860978025986, + "y": 168.46972010825976 + }, + { + "x": 443.8940346876776, + "y": 123.46643238737802 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.6434220677373, + "y": 144.52506694948866 + }, + { + "x": -1.4398076097813277, + "y": -0.00015487256791276994 + }, + { + "x": 461.65762173527435, + "y": 141.6390483528282 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 739 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.014199667537094455, + "y": 2.886018596660438 + }, + [ + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 443.9082343552147, + "y": 123.51481072677635 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 479.32113855267704, + "y": 123.46643238737802 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.37860978025986, + "y": 165.535323172201 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 443.9657055827975, + "y": 165.58370151159932 + }, + { + "angle": -0.0025950897565930947, + "anglePrev": -0.002086388563185361, + "angularSpeed": 0.0005087011934077335, + "angularVelocity": -0.0005087011934077335, + "area": 1765.3675322216507, + "axes": { + "#": 747 + }, + "bounds": { + "#": 750 + }, + "collisionFilter": { + "#": 753 + }, + "constraintImpulse": { + "#": 754 + }, + "density": 0.001, + "force": { + "#": 755 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 756 + }, + "positionImpulse": { + "#": 757 + }, + "positionPrev": { + "#": 758 + }, + "region": { + "#": 759 + }, + "render": { + "#": 760 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.899070271726653, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 762 + }, + "vertices": { + "#": 763 + } + }, + [ + { + "#": 748 + }, + { + "#": 749 + } + ], + { + "x": 0.0025950868438260406, + "y": 0.9999966327564674 + }, + { + "x": -0.9999966327564674, + "y": 0.0025950868438260406 + }, + { + "max": { + "#": 751 + }, + "min": { + "#": 752 + } + }, + { + "x": 525.9769450177212, + "y": 168.72844079384265 + }, + { + "x": 484.0804029855508, + "y": 123.45103363270455 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0402234804643, + "y": 144.64024808960244 + }, + { + "x": -0.9596682566979133, + "y": -0.0002931151503039826 + }, + { + "x": 505.06332243812113, + "y": 141.74126984226004 + }, + { + "endCol": 10, + "endRow": 3, + "id": "10,10,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 761 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.023098957656817447, + "y": 2.898978247342401 + }, + [ + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 484.1035019432076, + "y": 123.55941455130713 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525.8672502029117, + "y": 123.45103363270455 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525.9769450177212, + "y": 165.7210816278977 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 484.2131967580169, + "y": 165.82946254650025 + }, + { + "angle": -0.004080940539773731, + "anglePrev": -0.0034392690628233516, + "angularSpeed": 0.0006416714769503791, + "angularVelocity": -0.0006416714769503791, + "area": 1919.5457599999997, + "axes": { + "#": 769 + }, + "bounds": { + "#": 773 + }, + "collisionFilter": { + "#": 776 + }, + "constraintImpulse": { + "#": 777 + }, + "density": 0.001, + "force": { + "#": 778 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 779 + }, + "positionImpulse": { + "#": 780 + }, + "positionPrev": { + "#": 781 + }, + "region": { + "#": 782 + }, + "render": { + "#": 783 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8854768025288835, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 785 + }, + "vertices": { + "#": 786 + } + }, + [ + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + } + ], + { + "x": -0.5035073053729247, + "y": -0.8639909683764615 + }, + { + "x": 0.4964388213245725, + "y": -0.8680717117161857 + }, + { + "x": 0.999991672973712, + "y": -0.004080929212401057 + }, + { + "max": { + "#": 774 + }, + "min": { + "#": 775 + } + }, + { + "x": 577.4002015858842, + "y": 180.66275383682068 + }, + { + "x": 530.1723292617183, + "y": 123.415971275758 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 553.8049336951572, + "y": 150.5967449388565 + }, + { + "x": -0.6411776574151048, + "y": 0 + }, + { + "x": 553.8422702378689, + "y": 147.71150970399077 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 784 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03733654271178238, + "y": 2.885235234865719 + }, + [ + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 577.4002015858842, + "y": 164.09156669258232 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.9158574320794, + "y": 177.77751860195497 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 530.3205936222819, + "y": 164.28369683990215 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 530.2096658044301, + "y": 137.10192318513066 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.6940099582349, + "y": 123.415971275758 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 577.2892737680324, + "y": 136.90979303781083 + }, + { + "angle": 0.005008128159418267, + "anglePrev": 0.004048259329408996, + "angularSpeed": 0.0009598688300092714, + "angularVelocity": 0.0009598688300092714, + "area": 6052.328004, + "axes": { + "#": 794 + }, + "bounds": { + "#": 798 + }, + "collisionFilter": { + "#": 801 + }, + "constraintImpulse": { + "#": 802 + }, + "density": 0.001, + "force": { + "#": 803 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 804 + }, + "positionImpulse": { + "#": 805 + }, + "positionPrev": { + "#": 806 + }, + "region": { + "#": 807 + }, + "render": { + "#": 808 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7852865788064722, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 810 + }, + "vertices": { + "#": 811 + } + }, + [ + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": -0.4956462353480794, + "y": -0.8685245013154643 + }, + { + "x": 0.5043205911687654, + "y": -0.8635164974238692 + }, + { + "x": 0.9999874593523808, + "y": 0.005008107224343937 + }, + { + "max": { + "#": 799 + }, + "min": { + "#": 800 + } + }, + { + "x": 670.7501021070988, + "y": 210.9161252054058 + }, + { + "x": 586.9114291768682, + "y": 114.38733575412046 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 628.8307656419835, + "y": 162.6517304797631 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 628.9408926765071, + "y": 159.86862190079128 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,2,4", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 809 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.11012703452369578, + "y": 2.7831085789718086 + }, + [ + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 670.5083808038087, + "y": 186.99376171018446 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 628.5890493468007, + "y": 210.9161252054058 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.9114291768682, + "y": 186.5750939624438 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.1531504801583, + "y": 138.3096992493418 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 629.0724819371662, + "y": 114.38733575412046 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670.7501021070988, + "y": 138.72836699708245 + }, + { + "angle": -0.017660925529244538, + "anglePrev": -0.01558000692610701, + "angularSpeed": 0.0020809186031375284, + "angularVelocity": -0.0020809186031375284, + "area": 2220.023313496789, + "axes": { + "#": 819 + }, + "bounds": { + "#": 822 + }, + "collisionFilter": { + "#": 825 + }, + "constraintImpulse": { + "#": 826 + }, + "density": 0.001, + "force": { + "#": 827 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 828 + }, + "positionImpulse": { + "#": 829 + }, + "positionPrev": { + "#": 830 + }, + "region": { + "#": 831 + }, + "render": { + "#": 832 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8500143975633456, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 834 + }, + "vertices": { + "#": 835 + } + }, + [ + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "x": 0.01766000744538066, + "y": 0.999844049908299 + }, + { + "x": -0.999844049908299, + "y": 0.01766000744538066 + }, + { + "max": { + "#": 823 + }, + "min": { + "#": 824 + } + }, + { + "x": 719.3926414151871, + "y": 175.45461658352605 + }, + { + "x": 673.3532248487793, + "y": 122.64655533922108 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 696.3863227630987, + "y": 147.6256416697052 + }, + { + "x": -0.12387817773643622, + "y": -0.0011028472199483706 + }, + { + "x": 696.4131020253301, + "y": 144.77575308636852 + }, + { + "endCol": 14, + "endRow": 3, + "id": "14,14,2,3", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 833 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.026779262231355006, + "y": 2.8498885833366723 + }, + [ + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 673.3800041110106, + "y": 123.44392874894983 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 718.5243259205082, + "y": 122.64655533922108 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 719.3926414151871, + "y": 171.80735459046065 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 674.2483196056895, + "y": 172.60472800018937 + }, + { + "angle": -0.034179723068709846, + "anglePrev": -0.030668757048791438, + "angularSpeed": 0.00351096601991841, + "angularVelocity": -0.00351096601991841, + "area": 2601.1074479999997, + "axes": { + "#": 841 + }, + "bounds": { + "#": 845 + }, + "collisionFilter": { + "#": 848 + }, + "constraintImpulse": { + "#": 849 + }, + "density": 0.001, + "force": { + "#": 850 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 851 + }, + "positionImpulse": { + "#": 852 + }, + "positionPrev": { + "#": 853 + }, + "region": { + "#": 854 + }, + "render": { + "#": 855 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.726177411206227, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 857 + }, + "vertices": { + "#": 858 + } + }, + [ + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + } + ], + { + "x": -0.5292898899918653, + "y": -0.8484410482481378 + }, + { + "x": 0.47009988297143224, + "y": -0.8826132222158498 + }, + { + "x": 0.9994159301305989, + "y": -0.03417306836076663 + }, + { + "max": { + "#": 846 + }, + "min": { + "#": 847 + } + }, + { + "x": 776.4061897177519, + "y": 184.97316085654597 + }, + { + "x": 720.5528948538026, + "y": 121.72812196602136 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 748.4795422857773, + "y": 153.35064141128368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 748.4635428355894, + "y": 150.62451094944498 + }, + { + "endCol": 16, + "endRow": 3, + "id": "15,16,2,3", + "startCol": 15, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 856 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.015999450187907768, + "y": 2.7261304618386792 + }, + [ + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 776.4061897177519, + "y": 168.22599042265813 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 749.5608123417803, + "y": 184.97316085654597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 721.634199082874, + "y": 170.09881126110156 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 720.5528948538026, + "y": 138.47529239990916 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 747.3982722297742, + "y": 121.72812196602136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 775.3248854886805, + "y": 136.60247156146576 + }, + { + "angle": 0.03133881447139186, + "anglePrev": 0.02825356554589312, + "angularSpeed": 0.003085248925498743, + "angularVelocity": 0.003085248925498743, + "area": 1413.3088360000002, + "axes": { + "#": 866 + }, + "bounds": { + "#": 869 + }, + "collisionFilter": { + "#": 872 + }, + "constraintImpulse": { + "#": 873 + }, + "density": 0.001, + "force": { + "#": 874 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 875 + }, + "positionImpulse": { + "#": 876 + }, + "positionPrev": { + "#": 877 + }, + "region": { + "#": 878 + }, + "render": { + "#": 879 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6193177080654597, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 881 + }, + "vertices": { + "#": 882 + } + }, + [ + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "x": 0.031333684970459075, + "y": -0.9995089795425413 + }, + { + "x": 0.9995089795425413, + "y": 0.031333684970459075 + }, + { + "max": { + "#": 870 + }, + "min": { + "#": 871 + } + }, + { + "x": 889.3674148914052, + "y": 136.1800747303695 + }, + { + "x": 850.6139157617032, + "y": 97.42657560066777 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 869.9906653265542, + "y": 116.80332516551864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 869.91527273965, + "y": 114.18509270570435 + }, + { + "endCol": 18, + "endRow": 2, + "id": "17,18,2,2", + "startCol": 17, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 880 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.07539258690411657, + "y": 2.618232459814292 + }, + [ + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 888.1894563386256, + "y": 136.1800747303695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 850.6139157617032, + "y": 135.00211617759007 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 851.7918743144828, + "y": 97.42657560066777 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 889.3674148914052, + "y": 98.60453415344722 + }, + { + "angle": 0.011178114895911875, + "anglePrev": 0.010108145403217257, + "angularSpeed": 0.0010699694926946182, + "angularVelocity": 0.0010699694926946182, + "area": 5460.808751999999, + "axes": { + "#": 888 + }, + "bounds": { + "#": 892 + }, + "collisionFilter": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "density": 0.001, + "force": { + "#": 897 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 898 + }, + "positionImpulse": { + "#": 899 + }, + "positionPrev": { + "#": 900 + }, + "region": { + "#": 901 + }, + "render": { + "#": 902 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7371306875102985, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 904 + }, + "vertices": { + "#": 905 + } + }, + [ + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + } + ], + { + "x": -0.4902865381289931, + "y": -0.8715613062369668 + }, + { + "x": 0.509647222169664, + "y": -0.8603834662141904 + }, + { + "x": 0.9999375255242078, + "y": 0.011177882112652845 + }, + { + "max": { + "#": 893 + }, + "min": { + "#": 894 + } + }, + { + "x": 926.1970364750063, + "y": 229.29263932229605 + }, + { + "x": 846.2815362648438, + "y": 137.60636773193033 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.239286369925, + "y": 183.44950352711322 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.1882546300752, + "y": 180.7128486051257 + }, + { + "endCol": 19, + "endRow": 4, + "id": "17,19,2,4", + "startCol": 17, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 903 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05103173984978298, + "y": 2.736654921987517 + }, + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 925.6845752916697, + "y": 206.81487805610536 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 885.7268251865884, + "y": 229.29263932229605 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 846.2815362648438, + "y": 205.9272647933039 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 846.7939974481803, + "y": 160.0841289981211 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 886.7517475532617, + "y": 137.60636773193033 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 926.1970364750063, + "y": 160.97174226092255 + }, + { + "angle": 0.13538435885699066, + "anglePrev": 0.11973645409326267, + "angularSpeed": 0.015647904763727998, + "angularVelocity": 0.015647904763727998, + "area": 451.6137937679406, + "axes": { + "#": 913 + }, + "bounds": { + "#": 916 + }, + "collisionFilter": { + "#": 919 + }, + "constraintImpulse": { + "#": 920 + }, + "density": 0.001, + "force": { + "#": 921 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 922 + }, + "positionImpulse": { + "#": 923 + }, + "positionPrev": { + "#": 924 + }, + "region": { + "#": 925 + }, + "render": { + "#": 926 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.1403110405369112, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 928 + }, + "vertices": { + "#": 929 + } + }, + [ + { + "#": 914 + }, + { + "#": 915 + } + ], + { + "x": -0.1349711627593934, + "y": 0.9908495270339372 + }, + { + "x": -0.9908495270339372, + "y": -0.1349711627593934 + }, + { + "max": { + "#": 917 + }, + "min": { + "#": 918 + } + }, + { + "x": 43.98142624130361, + "y": 239.87937396873528 + }, + { + "x": 20.8428342127796, + "y": 212.8357038388511 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 32.34679957203009, + "y": 225.28937939179283 + }, + { + "x": 0.04884952581415927, + "y": -0.0008858393927444206 + }, + { + "x": 32.216138262007085, + "y": 223.15306036779214 + }, + { + "endCol": 0, + "endRow": 4, + "id": "0,0,4,4", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 927 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.13066131002300913, + "y": 2.1363190240006915 + }, + [ + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 23.864810080822124, + "y": 212.8357038388511 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 43.8507649312806, + "y": 215.5581430099108 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 40.82878906323807, + "y": 237.74305494473458 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.8428342127796, + "y": 235.02061577367488 + }, + { + "angle": 0.027878914121004517, + "anglePrev": 0.024125571991269974, + "angularSpeed": 0.0037533421297345423, + "angularVelocity": 0.0037533421297345423, + "area": 3021.679068443158, + "axes": { + "#": 935 + }, + "bounds": { + "#": 938 + }, + "collisionFilter": { + "#": 941 + }, + "constraintImpulse": { + "#": 942 + }, + "density": 0.001, + "force": { + "#": 943 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 944 + }, + "positionImpulse": { + "#": 945 + }, + "positionPrev": { + "#": 946 + }, + "region": { + "#": 947 + }, + "render": { + "#": 948 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.701339199492796, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 950 + }, + "vertices": { + "#": 951 + } + }, + [ + { + "#": 936 + }, + { + "#": 937 + } + ], + { + "x": -0.02787530285537599, + "y": 0.999611408243584 + }, + { + "x": -0.999611408243584, + "y": -0.02787530285537599 + }, + { + "max": { + "#": 939 + }, + "min": { + "#": 940 + } + }, + { + "x": 146.46146827798194, + "y": 252.9288518764543 + }, + { + "x": 43.6709649982984, + "y": 217.73291379987148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 94.98132986137443, + "y": 233.98288335640876 + }, + { + "x": 0.09215764938899375, + "y": 0.0033140585017071887 + }, + { + "x": 94.81155630784296, + "y": 231.2868843929005 + }, + { + "endCol": 3, + "endRow": 5, + "id": "0,3,4,5", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 949 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.16977355353147672, + "y": 2.6959989635082713 + }, + [ + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 44.49810438611192, + "y": 217.73291379987148 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 146.29169472445045, + "y": 220.57154402759474 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 145.46455533663698, + "y": 250.23285291294604 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 43.6709649982984, + "y": 247.3942226852228 + }, + { + "angle": 0.017727766920215052, + "anglePrev": 0.014517700617327451, + "angularSpeed": 0.0032100663028876023, + "angularVelocity": 0.0032100663028876023, + "area": 856.7396388354374, + "axes": { + "#": 957 + }, + "bounds": { + "#": 960 + }, + "collisionFilter": { + "#": 963 + }, + "constraintImpulse": { + "#": 964 + }, + "density": 0.001, + "force": { + "#": 965 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 966 + }, + "positionImpulse": { + "#": 967 + }, + "positionPrev": { + "#": 968 + }, + "region": { + "#": 969 + }, + "render": { + "#": 970 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.893484089885084, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 972 + }, + "vertices": { + "#": 973 + } + }, + [ + { + "#": 958 + }, + { + "#": 959 + } + ], + { + "x": -0.01772683837292992, + "y": 0.9998428672552999 + }, + { + "x": -0.9998428672552999, + "y": -0.01772683837292992 + }, + { + "max": { + "#": 961 + }, + "min": { + "#": 962 + } + }, + { + "x": 186.89110565650194, + "y": 248.46504540488775 + }, + { + "x": 146.25709347457726, + "y": 223.4905390543007 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 166.47919854950638, + "y": 234.53416612088034 + }, + { + "x": 0.14113446479345376, + "y": 0.06398403425276543 + }, + { + "x": 166.28939651743994, + "y": 231.64691390345257 + }, + { + "endCol": 3, + "endRow": 5, + "id": "3,3,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 971 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.18980203206644178, + "y": 2.887252217427768 + }, + [ + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 146.63609811192487, + "y": 223.4905390543007 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 186.7013036244355, + "y": 224.20088009463652 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.3222989870879, + "y": 245.57779318745997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 146.25709347457726, + "y": 244.8674521471242 + }, + { + "angle": -0.005266226534492321, + "anglePrev": -0.004557535379146022, + "angularSpeed": 0.000708691155346299, + "angularVelocity": -0.000708691155346299, + "area": 4088.5999519999996, + "axes": { + "#": 979 + }, + "bounds": { + "#": 984 + }, + "collisionFilter": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "density": 0.001, + "force": { + "#": 989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 990 + }, + "positionImpulse": { + "#": 991 + }, + "positionPrev": { + "#": 992 + }, + "region": { + "#": 993 + }, + "render": { + "#": 994 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072570781511606, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 996 + }, + "vertices": { + "#": 997 + } + }, + [ + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "x": -0.7108207433446401, + "y": -0.7033732087810656 + }, + { + "x": -0.005266202193024769, + "y": -0.9999861334610907 + }, + { + "x": 0.7033732087810656, + "y": -0.7108207433446401 + }, + { + "x": 0.9999861334610907, + "y": -0.005266202193024769 + }, + { + "max": { + "#": 985 + }, + "min": { + "#": 986 + } + }, + { + "x": 264.3498124883806, + "y": 348.93455728976517 + }, + { + "x": 193.90921928855053, + "y": 275.6232547702018 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 229.11135545441337, + "y": 310.8253909360646 + }, + { + "x": 0.6476357532824053, + "y": 0.682933178214567 + }, + { + "x": 229.07503458630893, + "y": 307.9183607482268 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,5,7", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 995 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03632086810444406, + "y": 2.9070301878377807 + }, + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 264.3134916202762, + "y": 325.19020855969126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.84613431450447, + "y": 345.8742806181103 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 214.7465378307867, + "y": 346.0275271019274 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 194.06246577236755, + "y": 325.56016979615555 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 193.90921928855053, + "y": 296.460573312438 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 214.37657659432227, + "y": 275.7765012540189 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 243.47617307804003, + "y": 275.6232547702018 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 264.1602451364591, + "y": 296.0906120759737 + }, + { + "angle": -0.002797751919037557, + "anglePrev": -0.0024966286598168213, + "angularSpeed": 0.00041974123157568485, + "angularVelocity": -0.0002864750306091281, + "area": 1965.14242904257, + "axes": { + "#": 1007 + }, + "bounds": { + "#": 1010 + }, + "collisionFilter": { + "#": 1013 + }, + "constraintImpulse": { + "#": 1014 + }, + "density": 0.001, + "force": { + "#": 1015 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 1016 + }, + "positionImpulse": { + "#": 1017 + }, + "positionPrev": { + "#": 1018 + }, + "region": { + "#": 1019 + }, + "render": { + "#": 1020 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9808498463116475, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1022 + }, + "vertices": { + "#": 1023 + } + }, + [ + { + "#": 1008 + }, + { + "#": 1009 + } + ], + { + "x": 0.0027977482691777227, + "y": 0.9999960862946526 + }, + { + "x": -0.9999960862946526, + "y": 0.0027977482691777227 + }, + { + "max": { + "#": 1011 + }, + "min": { + "#": 1012 + } + }, + { + "x": 346.0161787349028, + "y": 253.92192376200677 + }, + { + "x": 256.4506939010848, + "y": 228.7349023329504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 301.2333755679751, + "y": 239.83798812556086 + }, + { + "x": -0.34060644558458747, + "y": 1.2030685450704066 + }, + { + "x": 301.23603168901917, + "y": 236.8553248022503 + }, + { + "endCol": 7, + "endRow": 5, + "id": "5,7,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1021 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.009766503844730323, + "y": 2.9825771068383915 + }, + [ + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 256.4506939010848, + "y": 228.98531279613283 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 345.95463030178087, + "y": 228.7349023329504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 346.0160572348654, + "y": 250.69066345498888 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 256.5121208341693, + "y": 250.9410739181713 + }, + { + "angle": -0.0022164782419674604, + "anglePrev": -0.0012538829898641345, + "angularSpeed": 0.000917478893619339, + "angularVelocity": -0.000998312043686869, + "area": 2297.860096, + "axes": { + "#": 1029 + }, + "bounds": { + "#": 1032 + }, + "collisionFilter": { + "#": 1035 + }, + "constraintImpulse": { + "#": 1036 + }, + "density": 0.001, + "force": { + "#": 1037 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 3520.107347192753, + "inverseInertia": 0.00028408224561602904, + "inverseMass": 0.43518750412209606, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.297860096, + "motion": 0, + "parent": null, + "position": { + "#": 1038 + }, + "positionImpulse": { + "#": 1039 + }, + "positionPrev": { + "#": 1040 + }, + "region": { + "#": 1041 + }, + "render": { + "#": 1042 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9403774959475335, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1044 + }, + "vertices": { + "#": 1045 + } + }, + [ + { + "#": 1030 + }, + { + "#": 1031 + } + ], + { + "x": -0.0022164764271244627, + "y": -0.999997543613107 + }, + { + "x": 0.999997543613107, + "y": -0.0022164764271244627 + }, + { + "max": { + "#": 1033 + }, + "min": { + "#": 1034 + } + }, + { + "x": 393.3091250378776, + "y": 271.63382925072074 + }, + { + "x": 345.2578525029049, + "y": 220.65133469969905 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 369.2789181352291, + "y": 244.6724003320233 + }, + { + "x": 0.012877675525544908, + "y": 0.0022427709255079774 + }, + { + "x": 369.2698296578669, + "y": 241.72602871057725 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1043 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.002916888468575962, + "y": 2.9466318193522625 + }, + [ + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 393.29998376755333, + "y": 268.587216950337 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 345.3641015169154, + "y": 268.6934659643475 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 345.2578525029049, + "y": 220.7575837137097 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 393.1937347535428, + "y": 220.65133469969905 + }, + { + "angle": -0.002530854313370245, + "anglePrev": -0.0018951863589065127, + "angularSpeed": 0.0005607146738714485, + "angularVelocity": -0.0006117827706225252, + "area": 942.0065703840771, + "axes": { + "#": 1051 + }, + "bounds": { + "#": 1054 + }, + "collisionFilter": { + "#": 1057 + }, + "constraintImpulse": { + "#": 1058 + }, + "density": 0.001, + "force": { + "#": 1059 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 1060 + }, + "positionImpulse": { + "#": 1061 + }, + "positionPrev": { + "#": 1062 + }, + "region": { + "#": 1063 + }, + "render": { + "#": 1064 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.912078478202996, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1066 + }, + "vertices": { + "#": 1067 + } + }, + [ + { + "#": 1052 + }, + { + "#": 1053 + } + ], + { + "x": 0.0025308516115898332, + "y": 0.9999967973899316 + }, + { + "x": -0.9999967973899316, + "y": 0.0025308516115898332 + }, + { + "max": { + "#": 1055 + }, + "min": { + "#": 1056 + } + }, + { + "x": 413.734412051393, + "y": 268.2727478641744 + }, + { + "x": 392.54157657998223, + "y": 220.57777052722406 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.1281091038288, + "y": 242.96925351288417 + }, + { + "x": 0.299095663307059, + "y": -0.0007569691657772724 + }, + { + "x": 403.1026675535322, + "y": 240.0523544648693 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1065 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.018766202239305585, + "y": 2.9171074060839146 + }, + [ + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 392.54157657998223, + "y": 220.6310700799012 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 413.6014371167839, + "y": 220.57777052722406 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 413.7146416276754, + "y": 265.3074369458672 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 392.6547810908737, + "y": 265.36073649854427 + }, + { + "angle": -0.00099097424547415, + "anglePrev": -0.0006990703030502522, + "angularSpeed": 0.00024985324868731024, + "angularVelocity": -0.00029701474737232783, + "area": 2898.415585731765, + "axes": { + "#": 1073 + }, + "bounds": { + "#": 1076 + }, + "collisionFilter": { + "#": 1079 + }, + "constraintImpulse": { + "#": 1080 + }, + "density": 0.001, + "force": { + "#": 1081 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 1082 + }, + "positionImpulse": { + "#": 1083 + }, + "positionPrev": { + "#": 1084 + }, + "region": { + "#": 1085 + }, + "render": { + "#": 1086 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.891483792354983, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1088 + }, + "vertices": { + "#": 1089 + } + }, + [ + { + "#": 1074 + }, + { + "#": 1075 + } + ], + { + "x": 0.0009909740832797591, + "y": 0.9999995089850627 + }, + { + "x": -0.9999995089850627, + "y": 0.0009909740832797591 + }, + { + "max": { + "#": 1077 + }, + "min": { + "#": 1078 + } + }, + { + "x": 525.4415017477487, + "y": 249.27389045277542 + }, + { + "x": 413.2037366073625, + "y": 220.43777679067168 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 469.31450305643915, + "y": 233.41011450690874 + }, + { + "x": 0.5483805448941832, + "y": -0.0015162850998601185 + }, + { + "x": 469.2821980696548, + "y": 230.51637228440876 + }, + { + "endCol": 10, + "endRow": 5, + "id": "8,10,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1087 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.034474524431288955, + "y": 2.893674504581611 + }, + [ + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.2037366073625, + "y": 220.54896010668514 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525.3996691717775, + "y": 220.43777679067168 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525.4252695055159, + "y": 246.27126890713234 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 413.2293369411006, + "y": 246.3824522231458 + }, + { + "angle": 0.004779269083705684, + "anglePrev": 0.00442271431990129, + "angularSpeed": 0.0004924293685744214, + "angularVelocity": 0.00031094136004266703, + "area": 1297.1522559999999, + "axes": { + "#": 1095 + }, + "bounds": { + "#": 1098 + }, + "collisionFilter": { + "#": 1101 + }, + "constraintImpulse": { + "#": 1102 + }, + "density": 0.001, + "force": { + "#": 1103 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1121.7359834972597, + "inverseInertia": 0.0008914753691704523, + "inverseMass": 0.7709195241919234, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.297152256, + "motion": 0, + "parent": null, + "position": { + "#": 1104 + }, + "positionImpulse": { + "#": 1105 + }, + "positionPrev": { + "#": 1106 + }, + "region": { + "#": 1107 + }, + "render": { + "#": 1108 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8855618792967968, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1110 + }, + "vertices": { + "#": 1111 + } + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + } + ], + { + "x": 0.004779250889516653, + "y": -0.9999885793152513 + }, + { + "x": 0.9999885793152513, + "y": 0.004779250889516653 + }, + { + "max": { + "#": 1099 + }, + "min": { + "#": 1100 + } + }, + { + "x": 561.4464811993962, + "y": 255.58653552195383 + }, + { + "x": 525.2241935176104, + "y": 216.51346255165456 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 543.318052603938, + "y": 234.607321637982 + }, + { + "x": 0.6474059547439625, + "y": 0.002792643012246443 + }, + { + "x": 543.2687267262419, + "y": 231.72500761825285 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1109 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05350234092395567, + "y": 2.881798255671555 + }, + [ + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 561.2397821902285, + "y": 252.70118072430947 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525.2241935176104, + "y": 252.52905122427268 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525.3963230176474, + "y": 216.51346255165456 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 561.4119116902656, + "y": 216.68559205169134 + }, + { + "angle": -0.0026210659356287434, + "anglePrev": -0.002394154179762311, + "angularSpeed": 0.00023091826499286474, + "angularVelocity": -0.00022771388573928361, + "area": 6661.542482000001, + "axes": { + "#": 1117 + }, + "bounds": { + "#": 1131 + }, + "circleRadius": 46.273148148148145, + "collisionFilter": { + "#": 1134 + }, + "constraintImpulse": { + "#": 1135 + }, + "density": 0.001, + "force": { + "#": 1136 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 28251.272419191544, + "inverseInertia": 0.00003539663577491412, + "inverseMass": 0.15011538284144801, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.661542482000001, + "motion": 0, + "parent": null, + "position": { + "#": 1137 + }, + "positionImpulse": { + "#": 1138 + }, + "positionPrev": { + "#": 1139 + }, + "region": { + "#": 1140 + }, + "render": { + "#": 1141 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9078546719171032, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1143 + }, + "vertices": { + "#": 1144 + } + }, + [ + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + } + ], + { + "x": -0.9715575355354349, + "y": -0.2368036214763449 + }, + { + "x": -0.8866655284096947, + "y": -0.4624113328303675 + }, + { + "x": -0.7502664258189825, + "y": -0.6611356065806843 + }, + { + "x": -0.5702085709035531, + "y": -0.8214999608448732 + }, + { + "x": -0.3570875048827764, + "y": -0.9340709362016318 + }, + { + "x": -0.12308284250747743, + "y": -0.9923963995703929 + }, + { + "x": 0.11787890238760435, + "y": -0.9930279776380389 + }, + { + "x": 0.3521860979225601, + "y": -0.9359299933382204 + }, + { + "x": 0.5658943448672834, + "y": -0.8244777683159372 + }, + { + "x": 0.7467903730405958, + "y": -0.6650595001455795 + }, + { + "x": 0.884229335593446, + "y": -0.4670529756633323 + }, + { + "x": 0.9703028362654489, + "y": -0.24189337720414286 + }, + { + "x": 0.9999965650086471, + "y": -0.0026210629345151154 + }, + { + "max": { + "#": 1132 + }, + "min": { + "#": 1133 + } + }, + { + "x": 633.8026303677968, + "y": 340.70293602887574 + }, + { + "x": 541.8751969409882, + "y": 245.24952008153215 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.852167868511, + "y": 291.52236113417723 + }, + { + "x": -0.28336375143879117, + "y": 0.984885002415048 + }, + { + "x": 587.8790434963497, + "y": 288.6146269757047 + }, + { + "endCol": 13, + "endRow": 7, + "id": "11,13,5,7", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1142 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.026802112027212388, + "y": 2.907734095123317 + }, + [ + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 633.8026303677968, + "y": 296.9799408268356 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 631.1610282718675, + "y": 307.8179018604793 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 626.002934317467, + "y": 317.7084555233222 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 618.627845601601, + "y": 326.07781484367104 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 609.4634868140731, + "y": 332.43885705493267 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 599.0438915660015, + "y": 336.4221811525139 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.9734523136797, + "y": 337.79520218682234 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 576.8959676441899, + "y": 336.48023245438765 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 566.4556345461807, + "y": 332.5515837296204 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 557.2580564070205, + "y": 326.2386694759623 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 549.8391959401483, + "y": 317.90808616066676 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 544.6293255085391, + "y": 308.0447076783288 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 541.9309459473224, + "y": 297.2207431207553 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 541.901705369225, + "y": 286.06478144151885 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 544.5433074651544, + "y": 275.22682040787515 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 549.7014014195549, + "y": 265.33626674503216 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 557.0764901354208, + "y": 256.9669074246833 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 566.2408489229488, + "y": 250.60586521342174 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 576.6604441710203, + "y": 246.62254111584053 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 587.7308834233422, + "y": 245.24952008153215 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 598.808368092832, + "y": 246.56448981396693 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 609.2487011908412, + "y": 250.49313853873417 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 618.4462793300014, + "y": 256.80605279239217 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 625.8651397968736, + "y": 265.13663610768776 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 631.0750102284828, + "y": 275.00001459002567 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 633.7733897896995, + "y": 285.8239791475992 + }, + { + "angle": 0.021202818635086624, + "anglePrev": 0.017120435187225766, + "angularSpeed": 0.004082383447860858, + "angularVelocity": 0.004082383447860858, + "area": 1051.3111283901928, + "axes": { + "#": 1172 + }, + "bounds": { + "#": 1175 + }, + "collisionFilter": { + "#": 1178 + }, + "constraintImpulse": { + "#": 1179 + }, + "density": 0.001, + "force": { + "#": 1180 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 1181 + }, + "positionImpulse": { + "#": 1182 + }, + "positionPrev": { + "#": 1183 + }, + "region": { + "#": 1184 + }, + "render": { + "#": 1185 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.892136320843546, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1187 + }, + "vertices": { + "#": 1188 + } + }, + [ + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "x": -0.021201230015974765, + "y": 0.9997752286618276 + }, + { + "x": -0.9997752286618276, + "y": -0.021201230015974765 + }, + { + "max": { + "#": 1176 + }, + "min": { + "#": 1177 + } + }, + { + "x": 653.6047669689929, + "y": 251.7019629950224 + }, + { + "x": 623.0146856148411, + "y": 212.627002230666 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 638.4567478690996, + "y": 230.72590769980408 + }, + { + "x": -0.49568434966651065, + "y": 0.1106299566858554 + }, + { + "x": 638.7507910234647, + "y": 227.84875787372386 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1186 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.29404315436514367, + "y": 2.87714982608022 + }, + [ + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 624.0630546825768, + "y": 212.627002230666 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 653.6047669689929, + "y": 213.25346367849403 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 652.8504410556224, + "y": 248.82481316894217 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.3087287692063, + "y": 248.19835172111414 + }, + { + "angle": -0.029737821030243354, + "anglePrev": -0.024962294968339908, + "angularSpeed": 0.0047755260619034455, + "angularVelocity": -0.0047755260619034455, + "area": 6245.524001, + "axes": { + "#": 1194 + }, + "bounds": { + "#": 1202 + }, + "collisionFilter": { + "#": 1205 + }, + "constraintImpulse": { + "#": 1206 + }, + "density": 0.001, + "force": { + "#": 1207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 24931.28629116745, + "inverseInertia": 0.00004011024494770155, + "inverseMass": 0.16011466769479796, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.245524001, + "motion": 0, + "parent": null, + "position": { + "#": 1208 + }, + "positionImpulse": { + "#": 1209 + }, + "positionPrev": { + "#": 1210 + }, + "region": { + "#": 1211 + }, + "render": { + "#": 1212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7275651638900396, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1214 + }, + "vertices": { + "#": 1215 + } + }, + [ + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + } + ], + { + "x": 0.6464792692038969, + "y": 0.7629315529518987 + }, + { + "x": -0.19345432297572965, + "y": 0.9811092828640458 + }, + { + "x": -0.8876725995098825, + "y": 0.4604751416519334 + }, + { + "x": -0.9134739683211672, + "y": -0.4068971727593834 + }, + { + "x": -0.2514299744319495, + "y": -0.9678754919705064 + }, + { + "x": 0.599987096881956, + "y": -0.8000096771759467 + }, + { + "x": 0.999557863584797, + "y": -0.029733438176516865 + }, + { + "max": { + "#": 1203 + }, + "min": { + "#": 1204 + } + }, + { + "x": 733.7750552724428, + "y": 323.2194460012919 + }, + { + "x": 642.1936958401824, + "y": 227.38556806801134 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 690.134809091781, + "y": 274.25806974155114 + }, + { + "x": -0.6077757682805036, + "y": 0.7694614092313545 + }, + { + "x": 690.323007320338, + "y": 271.53700503264866 + }, + { + "endCol": 15, + "endRow": 6, + "id": "13,15,4,6", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1213 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.18819822855699045, + "y": 2.7210647089024746 + }, + [ + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 733.7750552724428, + "y": 293.6970898784088 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 702.1459654413571, + "y": 320.4983812923894 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 661.4715150103704, + "y": 312.4782265471746 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 642.3818940687394, + "y": 275.6785561368999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 659.2503677117081, + "y": 237.80925502166312 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 699.376176741462, + "y": 227.38556806801134 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 732.5424258593971, + "y": 252.25941908563752 + }, + { + "angle": -0.17264182097219136, + "anglePrev": -0.1449910286118084, + "angularSpeed": 0.02765079236038295, + "angularVelocity": -0.02765079236038295, + "area": 1694.1455999999998, + "axes": { + "#": 1224 + }, + "bounds": { + "#": 1227 + }, + "collisionFilter": { + "#": 1230 + }, + "constraintImpulse": { + "#": 1231 + }, + "density": 0.001, + "force": { + "#": 1232 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1913.4195426662397, + "inverseInertia": 0.0005226245356554463, + "inverseMass": 0.590268038355145, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.6941456, + "motion": 0, + "parent": null, + "position": { + "#": 1233 + }, + "positionImpulse": { + "#": 1234 + }, + "positionPrev": { + "#": 1235 + }, + "region": { + "#": 1236 + }, + "render": { + "#": 1237 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9403723744940646, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1239 + }, + "vertices": { + "#": 1240 + } + }, + [ + { + "#": 1225 + }, + { + "#": 1226 + } + ], + { + "x": -0.17178549416550587, + "y": -0.9851343786480671 + }, + { + "x": 0.9851343786480671, + "y": -0.17178549416550587 + }, + { + "max": { + "#": 1228 + }, + "min": { + "#": 1229 + } + }, + { + "x": 777.9517542011863, + "y": 259.47852642189383 + }, + { + "x": 729.806989329101, + "y": 209.99197080076962 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 754.142343218683, + "y": 233.80138178327303 + }, + { + "x": -0.23971779890706052, + "y": -0.04200588940050792 + }, + { + "x": 754.6682861257616, + "y": 231.9336481271557 + }, + { + "endCol": 16, + "endRow": 5, + "id": "15,16,4,5", + "startCol": 15, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1238 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.5259429070785814, + "y": 1.867733656117345 + }, + [ + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 777.9517542011863, + "y": 250.54010182592415 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 737.4036231760318, + "y": 257.61079276577647 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 730.3329322361797, + "y": 217.0626617406219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 770.8810632613341, + "y": 209.99197080076962 + }, + { + "angle": 0.011439896323971126, + "anglePrev": 0.010535225931758464, + "angularSpeed": 0.000904670392212662, + "angularVelocity": 0.000904670392212662, + "area": 4695.386625, + "axes": { + "#": 1246 + }, + "bounds": { + "#": 1254 + }, + "collisionFilter": { + "#": 1257 + }, + "constraintImpulse": { + "#": 1258 + }, + "density": 0.001, + "force": { + "#": 1259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 1260 + }, + "positionImpulse": { + "#": 1261 + }, + "positionPrev": { + "#": 1262 + }, + "region": { + "#": 1263 + }, + "render": { + "#": 1264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.78587341892262, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1266 + }, + "vertices": { + "#": 1267 + } + }, + [ + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + } + ], + { + "x": 0.6145155151809749, + "y": 0.7889047354413973 + }, + { + "x": -0.23366467469309415, + "y": 0.9723172423651504 + }, + { + "x": -0.90587631566063, + "y": 0.42354232459710933 + }, + { + "x": -0.8959495046028965, + "y": -0.4441559244249977 + }, + { + "x": -0.21135904139507922, + "y": -0.9774084896401062 + }, + { + "x": 0.632403079389446, + "y": -0.7746394936864154 + }, + { + "x": 0.999934565099682, + "y": 0.011439646800057407 + }, + { + "max": { + "#": 1255 + }, + "min": { + "#": 1256 + } + }, + { + "x": 951.6812026411636, + "y": 338.9742749825948 + }, + { + "x": 872.716236477969, + "y": 255.42376226980636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.1366509922472, + "y": 295.70067044748 + }, + { + "x": 0.9616453007243483, + "y": 0.647346642240987 + }, + { + "x": 914.1161369951993, + "y": 292.91487255779293 + }, + { + "endCol": 19, + "endRow": 6, + "id": "18,19,5,6", + "startCol": 18, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1265 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02051399704780465, + "y": 2.785797889687034 + }, + [ + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 951.2494791002409, + "y": 314.0994320139157 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 922.8919326531617, + "y": 336.18847709290776 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 887.9407315539969, + "y": 327.78909808456746 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 872.716236477969, + "y": 295.2268045277554 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 888.6817003565302, + "y": 263.0213364339306 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 923.8159129252022, + "y": 255.42376226980636 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 951.6606886441158, + "y": 278.15578413684256 + }, + { + "angle": 0.004633469188033407, + "anglePrev": 0.0041472198984108645, + "angularSpeed": 0.00048624928962254265, + "angularVelocity": 0.00048624928962254265, + "area": 2533.681298803042, + "axes": { + "#": 1276 + }, + "bounds": { + "#": 1279 + }, + "collisionFilter": { + "#": 1282 + }, + "constraintImpulse": { + "#": 1283 + }, + "density": 0.001, + "force": { + "#": 1284 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 9087.287047208478, + "inverseInertia": 0.00011004384419739331, + "inverseMass": 0.3946826305551604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.533681298803042, + "motion": 0, + "parent": null, + "position": { + "#": 1285 + }, + "positionImpulse": { + "#": 1286 + }, + "positionPrev": { + "#": 1287 + }, + "region": { + "#": 1288 + }, + "render": { + "#": 1289 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8271124807312877, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1291 + }, + "vertices": { + "#": 1292 + } + }, + [ + { + "#": 1277 + }, + { + "#": 1278 + } + ], + { + "x": -0.0046334526086978505, + "y": 0.9999892655008468 + }, + { + "x": -0.9999892655008468, + "y": -0.0046334526086978505 + }, + { + "max": { + "#": 1280 + }, + "min": { + "#": 1281 + } + }, + { + "x": 1042.6516480672617, + "y": 272.22779913640716 + }, + { + "x": 941.8564573268185, + "y": 243.75626802472547 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 992.2277787244673, + "y": 256.5787215403424 + }, + { + "x": 1.4926784031575835, + "y": 1.002040984954575 + }, + { + "x": 992.1752307793219, + "y": 253.7520974598946 + }, + { + "endCol": 21, + "endRow": 5, + "id": "19,21,5,5", + "startCol": 19, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1290 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.052547945145411175, + "y": 2.8266240804478424 + }, + [ + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 941.973122690012, + "y": 243.75626802472547 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1042.5991001221164, + "y": 244.2225187273288 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1042.4824347589226, + "y": 269.4011750559593 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 941.8564573268185, + "y": 268.934924353356 + }, + { + "angle": 0.06572273477088807, + "anglePrev": 0.056583539642241595, + "angularSpeed": 0.00913919512864647, + "angularVelocity": 0.00913919512864647, + "area": 2082.1047164947227, + "axes": { + "#": 1298 + }, + "bounds": { + "#": 1301 + }, + "collisionFilter": { + "#": 1304 + }, + "constraintImpulse": { + "#": 1305 + }, + "density": 0.001, + "force": { + "#": 1306 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2917.86500075833, + "inverseInertia": 0.0003427163353136995, + "inverseMass": 0.4802832403566742, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.082104716494723, + "motion": 0, + "parent": null, + "position": { + "#": 1307 + }, + "positionImpulse": { + "#": 1308 + }, + "positionPrev": { + "#": 1309 + }, + "region": { + "#": 1310 + }, + "render": { + "#": 1311 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.7720263273942263, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1313 + }, + "vertices": { + "#": 1314 + } + }, + [ + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "x": -0.06567543033887956, + "y": 0.9978410383672358 + }, + { + "x": -0.9978410383672358, + "y": -0.06567543033887956 + }, + { + "max": { + "#": 1302 + }, + "min": { + "#": 1303 + } + }, + { + "x": 67.5323729386238, + "y": 357.7286132369045 + }, + { + "x": 21.598917075571958, + "y": 304.38008255200896 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 44.44748189874154, + "y": 330.17624949104845 + }, + { + "x": 0.13545523216251307, + "y": -0.007330885528246666 + }, + { + "x": 44.211155682028874, + "y": 328.4200526842319 + }, + { + "endCol": 1, + "endRow": 7, + "id": "0,1,6,7", + "startCol": 0, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1312 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.23632621671266782, + "y": 1.7561968068165217 + }, + [ + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 24.810552037664557, + "y": 304.38008255200896 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 67.29604672191113, + "y": 307.17637278187726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 64.08441175981851, + "y": 355.97241643008795 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 21.598917075571958, + "y": 353.17612620021964 + }, + { + "angle": 0.06252258222003251, + "anglePrev": 0.05369864884071713, + "angularSpeed": 0.00882393337931539, + "angularVelocity": 0.00882393337931539, + "area": 2570.1808866424026, + "axes": { + "#": 1320 + }, + "bounds": { + "#": 1323 + }, + "collisionFilter": { + "#": 1326 + }, + "constraintImpulse": { + "#": 1327 + }, + "density": 0.001, + "force": { + "#": 1328 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 7426.992944977438, + "inverseInertia": 0.00013464399487227974, + "inverseMass": 0.38907767355875333, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5701808866424027, + "motion": 0, + "parent": null, + "position": { + "#": 1329 + }, + "positionImpulse": { + "#": 1330 + }, + "positionPrev": { + "#": 1331 + }, + "region": { + "#": 1332 + }, + "render": { + "#": 1333 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.507225899085116, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1335 + }, + "vertices": { + "#": 1336 + } + }, + [ + { + "#": 1321 + }, + { + "#": 1322 + } + ], + { + "x": -0.06248185595494206, + "y": 0.9980460999755603 + }, + { + "x": -0.9980460999755603, + "y": -0.06248185595494206 + }, + { + "max": { + "#": 1324 + }, + "min": { + "#": 1325 + } + }, + { + "x": 157.91585529836496, + "y": 345.07715706036817 + }, + { + "x": 67.50265707561093, + "y": 308.0638641829536 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5529504013579, + "y": 325.3266802760593 + }, + { + "x": 0.34767831527277704, + "y": 0.005532067978716123 + }, + { + "x": 112.24033883009774, + "y": 322.8390195848561 + }, + { + "endCol": 3, + "endRow": 7, + "id": "1,3,6,7", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1334 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3126115712601647, + "y": 2.487660691203167 + }, + [ + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 69.31809139889982, + "y": 308.0638641829536 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 157.6032437271048, + "y": 313.5908835970528 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 155.78780940381597, + "y": 342.589496369165 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 67.50265707561093, + "y": 337.06247695506573 + }, + { + "angle": 0.020446487602864025, + "anglePrev": 0.017284857939625947, + "angularSpeed": 0.003161629663238077, + "angularVelocity": 0.003161629663238077, + "area": 2248.277056, + "axes": { + "#": 1342 + }, + "bounds": { + "#": 1345 + }, + "collisionFilter": { + "#": 1348 + }, + "constraintImpulse": { + "#": 1349 + }, + "density": 0.001, + "force": { + "#": 1350 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 3369.8331470240178, + "inverseInertia": 0.00029675059754312303, + "inverseMass": 0.44478503987366225, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.248277056, + "motion": 0, + "parent": null, + "position": { + "#": 1351 + }, + "positionImpulse": { + "#": 1352 + }, + "positionPrev": { + "#": 1353 + }, + "region": { + "#": 1354 + }, + "render": { + "#": 1355 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.89146369956366, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1357 + }, + "vertices": { + "#": 1358 + } + }, + [ + { + "#": 1343 + }, + { + "#": 1344 + } + ], + { + "x": 0.020445062993442537, + "y": -0.9997909778544682 + }, + { + "x": 0.9997909778544682, + "y": 0.020445062993442537 + }, + { + "max": { + "#": 1346 + }, + "min": { + "#": 1347 + } + }, + { + "x": 202.3388249438265, + "y": 400.7341519903609 + }, + { + "x": 153.87362490830455, + "y": 349.4685674904611 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.06138096472682, + "y": 373.6563235468833 + }, + { + "x": 0.060267898085508656, + "y": 1.1207367753891644 + }, + { + "x": 177.97169304204942, + "y": 370.7662511598279 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1356 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.08968792267739843, + "y": 2.8900723870554144 + }, + [ + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 201.27971391425206, + "y": 397.8440796033055 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 153.87362490830455, + "y": 396.8746564964084 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 154.8430480152016, + "y": 349.4685674904611 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.2491370211491, + "y": 350.4379905973582 + }, + { + "angle": 0.0021466213355913082, + "anglePrev": 0.0019383179344725757, + "angularSpeed": 0.0002083034011187326, + "angularVelocity": 0.0002083034011187326, + "area": 4167.4330549999995, + "axes": { + "#": 1364 + }, + "bounds": { + "#": 1372 + }, + "collisionFilter": { + "#": 1375 + }, + "constraintImpulse": { + "#": 1376 + }, + "density": 0.001, + "force": { + "#": 1377 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 11100.542061550868, + "inverseInertia": 0.00009008569081177725, + "inverseMass": 0.23995586415004816, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.167433054999999, + "motion": 0, + "parent": null, + "position": { + "#": 1378 + }, + "positionImpulse": { + "#": 1379 + }, + "positionPrev": { + "#": 1380 + }, + "region": { + "#": 1381 + }, + "render": { + "#": 1382 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9177753563813362, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1384 + }, + "vertices": { + "#": 1385 + } + }, + [ + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + } + ], + { + "x": 0.621829860855301, + "y": 0.7831523633040233 + }, + { + "x": -0.2246220138905429, + "y": 0.9744459712450748 + }, + { + "x": -0.901901889584581, + "y": 0.4319409468477869 + }, + { + "x": -0.9000391560922489, + "y": -0.4358090378832825 + }, + { + "x": -0.22043642361205187, + "y": -0.9754013446500515 + }, + { + "x": 0.6251863829164003, + "y": -0.7804754875176468 + }, + { + "x": 0.9999976960093057, + "y": 0.002146619686992528 + }, + { + "max": { + "#": 1373 + }, + "min": { + "#": 1374 + } + }, + { + "x": 277.2253055557645, + "y": 433.30636872541737 + }, + { + "x": 202.96744332481234, + "y": 354.29499933704693 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 241.9921435541619, + "y": 392.323269981266 + }, + { + "x": 0.4178077996704079, + "y": 1.2597679032544515 + }, + { + "x": 241.9554569662002, + "y": 389.40572527302754 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1383 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03668658796171968, + "y": 2.9175447082384123 + }, + [ + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 277.1159258387226, + "y": 409.33070656877527 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250.59466096448932, + "y": 430.38882401717893 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 217.5949139590072, + "y": 422.78196858446705 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.96744332481234, + "y": 392.2394985984663 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 217.72590498554683, + "y": 361.7601091785872 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 250.75800584295126, + "y": 354.29499933704693 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 277.1886189678028, + "y": 375.46678459111615 + }, + { + "angle": -0.0011135312929367656, + "anglePrev": -0.001101624394452462, + "angularSpeed": 0.000011906898484303596, + "angularVelocity": -0.000011906898484303596, + "area": 1687.7661798887366, + "axes": { + "#": 1394 + }, + "bounds": { + "#": 1397 + }, + "collisionFilter": { + "#": 1400 + }, + "constraintImpulse": { + "#": 1401 + }, + "density": 0.001, + "force": { + "#": 1402 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1980.3012000583947, + "inverseInertia": 0.0005049736878261308, + "inverseMass": 0.5924991340127004, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6877661798887367, + "motion": 0, + "parent": null, + "position": { + "#": 1403 + }, + "positionImpulse": { + "#": 1404 + }, + "positionPrev": { + "#": 1405 + }, + "region": { + "#": 1406 + }, + "render": { + "#": 1407 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.916518760557076, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1409 + }, + "vertices": { + "#": 1410 + } + }, + [ + { + "#": 1395 + }, + { + "#": 1396 + } + ], + { + "x": 0.0011135310628158986, + "y": 0.9999993800240936 + }, + { + "x": -0.9999993800240936, + "y": 0.0011135310628158986 + }, + { + "max": { + "#": 1398 + }, + "min": { + "#": 1399 + } + }, + { + "x": 311.29962183689594, + "y": 364.255787707329 + }, + { + "x": 275.7287643818249, + "y": 313.77083149574344 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 293.51035987984073, + "y": 337.5550552593442 + }, + { + "x": 0.09976782458861279, + "y": 0.000009331658578481657 + }, + { + "x": 293.5026934208014, + "y": 334.63854657496023 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1408 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.007666459039359665, + "y": 2.9165086843839814 + }, + [ + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275.7287643818249, + "y": 313.8103733045544 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 311.23903043214534, + "y": 313.77083149574344 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.2919553778566, + "y": 361.29973721413404 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275.7816893275361, + "y": 361.339279022945 + }, + { + "angle": 0.004127758098984464, + "anglePrev": 0.0030009694655297537, + "angularSpeed": 0.0011267886334547104, + "angularVelocity": 0.0011267886334547104, + "area": 888.874596, + "axes": { + "#": 1416 + }, + "bounds": { + "#": 1419 + }, + "collisionFilter": { + "#": 1422 + }, + "constraintImpulse": { + "#": 1423 + }, + "density": 0.001, + "force": { + "#": 1424 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 526.7320316094421, + "inverseInertia": 0.0018984985533241191, + "inverseMass": 1.125018089728374, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.888874596, + "motion": 0, + "parent": null, + "position": { + "#": 1425 + }, + "positionImpulse": { + "#": 1426 + }, + "positionPrev": { + "#": 1427 + }, + "region": { + "#": 1428 + }, + "render": { + "#": 1429 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9043861856932027, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1431 + }, + "vertices": { + "#": 1432 + } + }, + [ + { + "#": 1417 + }, + { + "#": 1418 + } + ], + { + "x": 0.004127746377271179, + "y": -0.999991480818634 + }, + { + "x": 0.999991480818634, + "y": 0.004127746377271179 + }, + { + "max": { + "#": 1420 + }, + "min": { + "#": 1421 + } + }, + { + "x": 341.32342423338173, + "y": 346.51426546766976 + }, + { + "x": 311.3734218848053, + "y": 313.67309860085356 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 326.3418272046147, + "y": 328.64150392066296 + }, + { + "x": 0.11868060354094008, + "y": -0.000022560829529150934 + }, + { + "x": 326.328635495657, + "y": 325.73714769346554 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1430 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.013191708957649553, + "y": 2.904356227197395 + }, + [ + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 341.1871678939321, + "y": 343.60990924047235 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 311.3734218848053, + "y": 343.4868446099804 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.49648651529725, + "y": 313.67309860085356 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 341.31023252442407, + "y": 313.79616323134553 + }, + { + "angle": 0.0017656783289908768, + "anglePrev": 0.001377317962994496, + "angularSpeed": 0.0003883603659963808, + "angularVelocity": 0.0003883603659963808, + "area": 1624.121534624581, + "axes": { + "#": 1438 + }, + "bounds": { + "#": 1441 + }, + "collisionFilter": { + "#": 1444 + }, + "constraintImpulse": { + "#": 1445 + }, + "density": 0.001, + "force": { + "#": 1446 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1766.6812602831346, + "inverseInertia": 0.0005660330601116675, + "inverseMass": 0.6157174686013581, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.624121534624581, + "motion": 0, + "parent": null, + "position": { + "#": 1447 + }, + "positionImpulse": { + "#": 1448 + }, + "positionPrev": { + "#": 1449 + }, + "region": { + "#": 1450 + }, + "render": { + "#": 1451 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8965823549127467, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1453 + }, + "vertices": { + "#": 1454 + } + }, + [ + { + "#": 1439 + }, + { + "#": 1440 + } + ], + { + "x": -0.0017656774115386857, + "y": 0.9999984411904242 + }, + { + "x": -0.9999984411904242, + "y": -0.0017656774115386857 + }, + { + "max": { + "#": 1442 + }, + "min": { + "#": 1443 + } + }, + { + "x": 383.8063694683603, + "y": 355.044410356839 + }, + { + "x": 341.432524321004, + "y": 313.6681753157434 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.6110084883346, + "y": 332.9080262420496 + }, + { + "x": 0.14292056151688598, + "y": -0.000008594918407100191 + }, + { + "x": 362.5941316756397, + "y": 330.0114930535663 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1452 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.016876812694956698, + "y": 2.8965331884832826 + }, + [ + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 341.50033532548275, + "y": 313.6681753157434 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 383.78949265566536, + "y": 313.7428444419892 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 383.7216816511866, + "y": 352.14787716835576 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 341.432524321004, + "y": 352.07320804210997 + }, + { + "angle": 0.003395914324394931, + "anglePrev": 0.0026672333595342355, + "angularSpeed": 0.00007789336399907765, + "angularVelocity": 0.0007284987175958193, + "area": 925.4335858447538, + "axes": { + "#": 1460 + }, + "bounds": { + "#": 1463 + }, + "collisionFilter": { + "#": 1466 + }, + "constraintImpulse": { + "#": 1467 + }, + "density": 0.001, + "force": { + "#": 1468 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 658.9066011822378, + "inverseInertia": 0.001517665778739746, + "inverseMass": 1.080574570985751, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9254335858447538, + "motion": 0, + "parent": null, + "position": { + "#": 1469 + }, + "positionImpulse": { + "#": 1470 + }, + "positionPrev": { + "#": 1471 + }, + "region": { + "#": 1472 + }, + "render": { + "#": 1473 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8723783218763717, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1475 + }, + "vertices": { + "#": 1476 + } + }, + [ + { + "#": 1461 + }, + { + "#": 1462 + } + ], + { + "x": -0.0033959077973188664, + "y": 0.9999942338884918 + }, + { + "x": -0.9999942338884918, + "y": -0.0033959077973188664 + }, + { + "max": { + "#": 1464 + }, + "min": { + "#": 1465 + } + }, + { + "x": 424.0717470989504, + "y": 338.59776416768744 + }, + { + "x": 383.97574364885384, + "y": 312.46168165368175 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 404.0217143370908, + "y": 324.0935351858778 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 404.0292158034326, + "y": 321.1991351856734 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,6,6", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1474 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.007498853534173122, + "y": 2.894395023708171 + }, + [ + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 384.0542840611472, + "y": 312.46168165368175 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 424.0676850253278, + "y": 312.59756425752744 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 423.98914461303445, + "y": 335.7253887180738 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 383.97574364885384, + "y": 335.589506114228 + }, + { + "angle": 0.0001472551202538149, + "anglePrev": 0.00011101663345643539, + "angularSpeed": 0.000008282217022694616, + "angularVelocity": 0.000036228427245257354, + "area": 5929.347511999999, + "axes": { + "#": 1482 + }, + "bounds": { + "#": 1496 + }, + "circleRadius": 43.65625, + "collisionFilter": { + "#": 1499 + }, + "constraintImpulse": { + "#": 1500 + }, + "density": 0.001, + "force": { + "#": 1501 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 22382.17146584697, + "inverseInertia": 0.00004467841744157413, + "inverseMass": 0.1686526212161066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.929347512, + "motion": 0, + "parent": null, + "position": { + "#": 1502 + }, + "positionImpulse": { + "#": 1503 + }, + "positionPrev": { + "#": 1504 + }, + "region": { + "#": 1505 + }, + "render": { + "#": 1506 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9141732677084313, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1508 + }, + "vertices": { + "#": 1509 + } + }, + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + } + ], + { + "x": -0.9709012044369201, + "y": -0.2394803775321427 + }, + { + "x": -0.8853871334972413, + "y": -0.4648544114424838 + }, + { + "x": -0.7483854039019182, + "y": -0.6632641157386422 + }, + { + "x": -0.5679913946783601, + "y": -0.8230344923339065 + }, + { + "x": -0.3544821712982387, + "y": -0.9350627734177456 + }, + { + "x": -0.12033273496911982, + "y": -0.9927336162812518 + }, + { + "x": 0.12062509996237736, + "y": -0.9926981340060363 + }, + { + "x": 0.3547575414833142, + "y": -0.9349583342377962 + }, + { + "x": 0.5682337621284088, + "y": -0.8228671773605961 + }, + { + "x": 0.7485807095172572, + "y": -0.6630436798120014 + }, + { + "x": 0.8855239994821836, + "y": -0.4645936357087532 + }, + { + "x": 0.9709716917533044, + "y": -0.23919442680322983 + }, + { + "x": 0.9999999891579648, + "y": 0.00014725511972163319 + }, + { + "max": { + "#": 1497 + }, + "min": { + "#": 1498 + } + }, + { + "x": 503.0816783866637, + "y": 407.31377022122126 + }, + { + "x": 416.3862689867581, + "y": 317.0876526335118 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 459.74290400009585, + "y": 360.7436521601919 + }, + { + "x": -0.17263679928372613, + "y": 0.32863344981911213 + }, + { + "x": 459.7589598265512, + "y": 357.83297114722063 + }, + { + "endCol": 10, + "endRow": 8, + "id": "8,10,6,8", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1507 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.016056234253994717, + "y": 2.910681789686862 + }, + [ + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 503.08012867378375, + "y": 366.01203384551957 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500.55962390102644, + "y": 376.23066279907823 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 495.6672516835941, + "y": 385.5489424732508 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 488.6870918306826, + "y": 393.4249146943676 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 480.02521148622463, + "y": 399.4026392529511 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470.18466203680345, + "y": 403.13319022211056 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 459.73647543058934, + "y": 404.399651686872 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 449.28866226335873, + "y": 403.13011317912884 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 439.44921192615107, + "y": 399.39666422921334 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 430.7890924584148, + "y": 393.41638891744594 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 423.8112524626594, + "y": 385.5383613093681 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 418.9216247861484, + "y": 376.2186411856145 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 416.40412961352797, + "y": 365.9992703607626 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 416.40567932640795, + "y": 355.47527047486426 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 418.92618409916525, + "y": 345.2566415213056 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 423.8185563165976, + "y": 335.938361847133 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 430.7987161695091, + "y": 328.0623896260162 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 439.46059651396706, + "y": 322.08466506743275 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 449.30114596338825, + "y": 318.35411409827327 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 459.74933256960236, + "y": 317.0876526335118 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 470.19714573683297, + "y": 318.357191141255 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 480.03659607404063, + "y": 322.0906400911705 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 488.6967155417769, + "y": 328.0709154029379 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 495.6745555375323, + "y": 335.94894301101573 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 500.5641832140433, + "y": 345.2686631347693 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 503.0816783866637, + "y": 355.48803395962125 + }, + { + "angle": -0.0008617086602994603, + "anglePrev": -0.0007777486545448636, + "angularSpeed": 0.00008651552035154268, + "angularVelocity": -0.0000844716368364265, + "area": 2550.166396822507, + "axes": { + "#": 1537 + }, + "bounds": { + "#": 1540 + }, + "collisionFilter": { + "#": 1543 + }, + "constraintImpulse": { + "#": 1544 + }, + "density": 0.001, + "force": { + "#": 1545 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 10939.165130883785, + "inverseInertia": 0.00009141465441240754, + "inverseMass": 0.392131274745834, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5501663968225072, + "motion": 0, + "parent": null, + "position": { + "#": 1546 + }, + "positionImpulse": { + "#": 1547 + }, + "positionPrev": { + "#": 1548 + }, + "region": { + "#": 1549 + }, + "render": { + "#": 1550 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9104187403242046, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1552 + }, + "vertices": { + "#": 1553 + } + }, + [ + { + "#": 1538 + }, + { + "#": 1539 + } + ], + { + "x": 0.000861708553657012, + "y": 0.9999996287291153 + }, + { + "x": -0.9999996287291153, + "y": 0.000861708553657012 + }, + { + "max": { + "#": 1541 + }, + "min": { + "#": 1542 + } + }, + { + "x": 618.4228748901428, + "y": 363.68100892942795 + }, + { + "x": 507.29249452423596, + "y": 337.7198415609393 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.8661087871869, + "y": 349.2452402583576 + }, + { + "x": 0.4016175714701228, + "y": 0.985533926348082 + }, + { + "x": 562.8819977486963, + "y": 346.3348711112555 + }, + { + "endCol": 12, + "endRow": 7, + "id": "10,12,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1551 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01608099944951391, + "y": 2.9103693125829295 + }, + [ + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 507.3093426842312, + "y": 337.81557203251094 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 618.4030943052813, + "y": 337.7198415609393 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 618.4228748901428, + "y": 360.6749084842043 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 507.3291232690927, + "y": 360.77063895577595 + }, + { + "angle": -0.004729738261435024, + "anglePrev": -0.004206631518666418, + "angularSpeed": 0.0005231067427686056, + "angularVelocity": -0.0005231067427686056, + "area": 5174.381305999998, + "axes": { + "#": 1559 + }, + "bounds": { + "#": 1573 + }, + "circleRadius": 40.782407407407405, + "collisionFilter": { + "#": 1576 + }, + "constraintImpulse": { + "#": 1577 + }, + "density": 0.001, + "force": { + "#": 1578 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17045.3242729355, + "inverseInertia": 0.000058667115039154525, + "inverseMass": 0.1932598200369272, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.174381305999998, + "motion": 0, + "parent": null, + "position": { + "#": 1579 + }, + "positionImpulse": { + "#": 1580 + }, + "positionPrev": { + "#": 1581 + }, + "region": { + "#": 1582 + }, + "render": { + "#": 1583 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8870283504437544, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1585 + }, + "vertices": { + "#": 1586 + } + }, + [ + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + } + ], + { + "x": -0.9720600180423126, + "y": -0.234732446252279 + }, + { + "x": -0.8876332003447669, + "y": -0.4605510847297038 + }, + { + "x": -0.7516641253486183, + "y": -0.6595460883546321 + }, + { + "x": -0.5719636442468733, + "y": -0.8202789706312335 + }, + { + "x": -0.35898378520304075, + "y": -0.9333437962301442 + }, + { + "x": -0.12522269824437132, + "y": -0.9921286589169768 + }, + { + "x": 0.115832217923668, + "y": -0.9932687940788656 + }, + { + "x": 0.3501389120265041, + "y": -0.9366977859933776 + }, + { + "x": 0.5641787603546481, + "y": -0.8256526669033973 + }, + { + "x": 0.7453916278154858, + "y": -0.666626823029632 + }, + { + "x": 0.8832369799771378, + "y": -0.4689268996345435 + }, + { + "x": 0.9697961146273102, + "y": -0.24391698598862036 + }, + { + "x": 0.9999888148088406, + "y": -0.004729720627079677 + }, + { + "max": { + "#": 1574 + }, + "min": { + "#": 1575 + } + }, + { + "x": 654.6666797081068, + "y": 453.3228755775938 + }, + { + "x": 573.6323608862882, + "y": 368.87282024075637 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 614.1588812339684, + "y": 409.6543640862906 + }, + { + "x": -0.8130450456858971, + "y": 1.8377065330412674 + }, + { + "x": 614.1776031075101, + "y": 406.7673964405216 + }, + { + "endCol": 13, + "endRow": 9, + "id": "11,13,7,9", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1584 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.018721873541708192, + "y": 2.8869676457690123 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 654.6666797081068, + "y": 414.37882636030355 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 652.3588559399677, + "y": 423.93584861910426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 647.831079263165, + "y": 432.66236134556027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 641.346958193521, + "y": 440.05211208250654 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 633.2824641826047, + "y": 445.67531778280755 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 624.1060548141731, + "y": 449.2047591129559 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 614.3517687005818, + "y": 450.4359079318248 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 604.5862731491045, + "y": 449.2970832595966 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 595.3768881684609, + "y": 445.85460257289765 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 587.2595631781403, + "y": 440.30793321178396 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 580.7058300803068, + "y": 432.97984857237356 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 576.0957089673865, + "y": 424.2965560330079 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 573.6975853730353, + "y": 414.7617918394782 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 573.6510827598299, + "y": 404.9299018122777 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 575.958906527969, + "y": 395.372879553477 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 580.4866832047718, + "y": 386.64636682702087 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 586.9708042744157, + "y": 379.2566160900746 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 595.035298285332, + "y": 373.6334103897736 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 604.2117076537636, + "y": 370.10396905962534 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 613.9659937673549, + "y": 368.87282024075637 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 623.7314893188322, + "y": 370.01164491298465 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 632.9408742994758, + "y": 373.4541255996836 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 641.0581992897964, + "y": 379.0007949607972 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 647.61193238763, + "y": 386.3288796002076 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 652.2220535005503, + "y": 395.01217213957335 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 654.6201770949015, + "y": 404.54693633310296 + }, + { + "angle": 0.013694963789867126, + "anglePrev": 0.01149399947001169, + "angularSpeed": 0.0022009643198554352, + "angularVelocity": 0.0022009643198554352, + "area": 1308.2034644955884, + "axes": { + "#": 1614 + }, + "bounds": { + "#": 1617 + }, + "collisionFilter": { + "#": 1620 + }, + "constraintImpulse": { + "#": 1621 + }, + "density": 0.001, + "force": { + "#": 1622 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1149.8579054087725, + "inverseInertia": 0.0008696726745940854, + "inverseMass": 0.7644070873834413, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3082034644955884, + "motion": 0, + "parent": null, + "position": { + "#": 1623 + }, + "positionImpulse": { + "#": 1624 + }, + "positionPrev": { + "#": 1625 + }, + "region": { + "#": 1626 + }, + "render": { + "#": 1627 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.766887659352146, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1629 + }, + "vertices": { + "#": 1630 + } + }, + [ + { + "#": 1615 + }, + { + "#": 1616 + } + ], + { + "x": -0.013694535707497619, + "y": 0.9999062254490447 + }, + { + "x": -0.9999062254490447, + "y": -0.013694535707497619 + }, + { + "max": { + "#": 1618 + }, + "min": { + "#": 1619 + } + }, + { + "x": 705.6711980256081, + "y": 358.55088888021436 + }, + { + "x": 666.7001308253062, + "y": 321.28243445358623 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 686.182007383587, + "y": 338.5332226708063 + }, + { + "x": -0.2850622436133901, + "y": 0.842928081476599 + }, + { + "x": 686.1746932998467, + "y": 335.76634467861834 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,6,7", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1628 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.007314083740330943, + "y": 2.7668779921879887 + }, + [ + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 667.1654368418626, + "y": 321.28243445358623 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 705.6638839418678, + "y": 321.8097022563819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 705.1985779253114, + "y": 355.7840108880264 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 666.7001308253062, + "y": 355.2567430852307 + }, + { + "angle": -0.02536740234968998, + "anglePrev": -0.022903849378023824, + "angularSpeed": 0.0024635529716661533, + "angularVelocity": -0.0024635529716661533, + "area": 3803.7767479999993, + "axes": { + "#": 1636 + }, + "bounds": { + "#": 1644 + }, + "collisionFilter": { + "#": 1647 + }, + "constraintImpulse": { + "#": 1648 + }, + "density": 0.001, + "force": { + "#": 1649 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 9247.768748441516, + "inverseInertia": 0.00010813419184692798, + "inverseMass": 0.2628966067805618, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.8037767479999993, + "motion": 0, + "parent": null, + "position": { + "#": 1650 + }, + "positionImpulse": { + "#": 1651 + }, + "positionPrev": { + "#": 1652 + }, + "region": { + "#": 1653 + }, + "render": { + "#": 1654 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7806870432933857, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1656 + }, + "vertices": { + "#": 1657 + } + }, + [ + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "x": 0.6431184561037276, + "y": 0.7657667082204332 + }, + { + "x": -0.1977425915381009, + "y": 0.9802539811149946 + }, + { + "x": -0.8896662782156863, + "y": 0.4566113373601765 + }, + { + "x": -0.9116776641963065, + "y": -0.4109061165346246 + }, + { + "x": -0.24719981080003606, + "y": -0.9689645264613286 + }, + { + "x": 0.6034565743060056, + "y": -0.7973958633745604 + }, + { + "x": 0.9996782647027619, + "y": -0.025364681761754437 + }, + { + "max": { + "#": 1645 + }, + "min": { + "#": 1646 + } + }, + { + "x": 759.5907382982798, + "y": 431.6659065200382 + }, + { + "x": 688.2945687216442, + "y": 356.2108125787605 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.5664338591007, + "y": 392.758546756361 + }, + { + "x": -0.40232965013989697, + "y": 1.0453732706684444 + }, + { + "x": 725.5327857501335, + "y": 389.97806330244464 + }, + { + "endCol": 15, + "endRow": 8, + "id": "14,15,7,8", + "startCol": 14, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1655 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.033648108967198595, + "y": 2.7804834539163585 + }, + [ + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 759.5570901893126, + "y": 408.07831348537417 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 734.7818848441542, + "y": 428.88542306612186 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 703.067407310215, + "y": 422.4877923523912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 688.2945687216442, + "y": 393.70424001714196 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 701.5886970928682, + "y": 364.2085488767497 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 732.937923209438, + "y": 356.2108125787605 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 758.7364412755926, + "y": 375.734722909181 + }, + { + "angle": 0.016883102366961524, + "anglePrev": 0.015469018388628191, + "angularSpeed": 0.0014140839783333336, + "angularVelocity": 0.0014140839783333336, + "area": 1519.5385669833, + "axes": { + "#": 1666 + }, + "bounds": { + "#": 1669 + }, + "collisionFilter": { + "#": 1672 + }, + "constraintImpulse": { + "#": 1673 + }, + "density": 0.001, + "force": { + "#": 1674 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1623.6987742797708, + "inverseInertia": 0.0006158777821604092, + "inverseMass": 0.6580945174595165, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5195385669833, + "motion": 0, + "parent": null, + "position": { + "#": 1675 + }, + "positionImpulse": { + "#": 1676 + }, + "positionPrev": { + "#": 1677 + }, + "region": { + "#": 1678 + }, + "render": { + "#": 1679 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7299753672403977, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1681 + }, + "vertices": { + "#": 1682 + } + }, + [ + { + "#": 1667 + }, + { + "#": 1668 + } + ], + { + "x": -0.016882300320880235, + "y": 0.9998574838125062 + }, + { + "x": -0.9998574838125062, + "y": -0.016882300320880235 + }, + { + "max": { + "#": 1670 + }, + "min": { + "#": 1671 + } + }, + { + "x": 865.5032220133618, + "y": 391.26371704251216 + }, + { + "x": 831.6404369900313, + "y": 342.01761719846934 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 848.5881969605357, + "y": 365.27577757084725 + }, + { + "x": -0.06700131070715622, + "y": 1.2270321192086358 + }, + { + "x": 848.6209318782143, + "y": 362.54599847156027 + }, + { + "endCol": 18, + "endRow": 8, + "id": "17,18,7,8", + "startCol": 17, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1680 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.032734917678600366, + "y": 2.729779099286959 + }, + [ + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 832.449162847176, + "y": 342.01761719846934 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 865.5032220133618, + "y": 342.57572529157454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 864.7272310738955, + "y": 388.53393794322517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 831.6731719077098, + "y": 387.97582985011996 + }, + { + "angle": 0.005622695580706375, + "anglePrev": 0.0051665836263583035, + "angularSpeed": 0.00045611195434807153, + "angularVelocity": 0.00045611195434807153, + "area": 3306.4800040000005, + "axes": { + "#": 1688 + }, + "bounds": { + "#": 1691 + }, + "collisionFilter": { + "#": 1694 + }, + "constraintImpulse": { + "#": 1695 + }, + "density": 0.001, + "force": { + "#": 1696 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 7288.540011234562, + "inverseInertia": 0.00013720168901571494, + "inverseMass": 0.302436427496992, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.3064800040000004, + "motion": 0, + "parent": null, + "position": { + "#": 1697 + }, + "positionImpulse": { + "#": 1698 + }, + "positionPrev": { + "#": 1699 + }, + "region": { + "#": 1700 + }, + "render": { + "#": 1701 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.860446570010434, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1703 + }, + "vertices": { + "#": 1704 + } + }, + [ + { + "#": 1689 + }, + { + "#": 1690 + } + ], + { + "x": 0.005622665954108971, + "y": -0.9999841926888491 + }, + { + "x": 0.9999841926888491, + "y": 0.005622665954108971 + }, + { + "max": { + "#": 1692 + }, + "min": { + "#": 1693 + } + }, + { + "x": 1018.5806250877922, + "y": 419.5421746393976 + }, + { + "x": 960.7443365847234, + "y": 358.8573471659183 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 989.6684222949483, + "y": 387.769549958762 + }, + { + "x": 2.963781537834867, + "y": 1.839518120240474 + }, + { + "x": 989.6803052123292, + "y": 384.9091280709701 + }, + { + "endCol": 21, + "endRow": 8, + "id": "19,21,7,8", + "startCol": 19, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1702 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.011882917380912659, + "y": 2.8604218877918997 + }, + [ + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1018.2573105500987, + "y": 416.6817527516057 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 960.7562195021044, + "y": 416.3584382139125 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 961.0795340397979, + "y": 358.8573471659183 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1018.5806250877922, + "y": 359.1806617036115 + }, + [], + [], + [ + { + "#": 1712 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1713 + }, + "pointB": "", + "render": { + "#": 1714 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/restitution/restitution-0.json b/tests/browser/refs/restitution/restitution-0.json new file mode 100644 index 00000000..780a9adc --- /dev/null +++ b/tests/browser/refs/restitution/restitution-0.json @@ -0,0 +1,2091 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 224 + }, + "composites": { + "#": 227 + }, + "constraints": { + "#": 228 + }, + "events": { + "#": 232 + }, + "gravity": { + "#": 234 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 107 + }, + { + "#": 128 + }, + { + "#": 149 + }, + { + "#": 203 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 87 + }, + "bounds": { + "#": 90 + }, + "collisionFilter": { + "#": 93 + }, + "constraintImpulse": { + "#": 94 + }, + "density": 0.001, + "force": { + "#": 95 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 96 + }, + "positionImpulse": { + "#": 97 + }, + "positionPrev": { + "#": 98 + }, + "render": { + "#": 99 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 101 + }, + "vertices": { + "#": 102 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 125, + "y": 175 + }, + { + "x": 75, + "y": 125 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 150 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 100 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 75, + "y": 125 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 125 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 175 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 175 + }, + { + "angle": -0.47123889803846897, + "anglePrev": -0.47123889803846897, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 108 + }, + "bounds": { + "#": 111 + }, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": 0.001, + "force": { + "#": 116 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "render": { + "#": 120 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 122 + }, + "vertices": { + "#": 123 + } + }, + [ + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 0.45399049973954675, + "y": 0.8910065241883679 + }, + { + "x": -0.8910065241883679, + "y": 0.45399049973954675 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 253.62492559819788, + "y": 183.62492559819788 + }, + { + "x": 186.37507440180212, + "y": 116.37507440180214 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 150 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 121 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 186.37507440180212, + "y": 139.07459938877946 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230.92540061122054, + "y": 116.37507440180214 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 253.62492559819788, + "y": 160.92540061122054 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 209.07459938877946, + "y": 183.62492559819788 + }, + { + "angle": -0.7853981633974483, + "anglePrev": -0.7853981633974483, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 129 + }, + "bounds": { + "#": 132 + }, + "collisionFilter": { + "#": 135 + }, + "constraintImpulse": { + "#": 136 + }, + "density": 0.001, + "force": { + "#": 137 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 138 + }, + "positionImpulse": { + "#": 139 + }, + "positionPrev": { + "#": 140 + }, + "render": { + "#": 141 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 143 + }, + "vertices": { + "#": 144 + } + }, + [ + { + "#": 130 + }, + { + "#": 131 + } + ], + { + "x": 0.7071067811865475, + "y": 0.7071067811865476 + }, + { + "x": -0.7071067811865476, + "y": 0.7071067811865475 + }, + { + "max": { + "#": 133 + }, + "min": { + "#": 134 + } + }, + { + "x": 375.3553390593274, + "y": 185.35533905932738 + }, + { + "x": 304.6446609406726, + "y": 114.64466094067262 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 150 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 142 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.6446609406726, + "y": 150 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 114.64466094067262 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375.3553390593274, + "y": 150 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 185.35533905932738 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1944.4530819999998, + "axes": { + "#": 150 + }, + "bounds": { + "#": 164 + }, + "circleRadius": 25, + "collisionFilter": { + "#": 167 + }, + "constraintImpulse": { + "#": 168 + }, + "density": 0.001, + "force": { + "#": 169 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 2407.040215928269, + "inverseInertia": 0.0004154479818752644, + "inverseMass": 0.5142834297505565, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9444530819999999, + "motion": 0, + "parent": null, + "position": { + "#": 170 + }, + "positionImpulse": { + "#": 171 + }, + "positionPrev": { + "#": 172 + }, + "render": { + "#": 173 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 175 + }, + "vertices": { + "#": 176 + } + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + } + ], + { + "x": -0.9709182366411434, + "y": -0.23941131501592125 + }, + { + "x": -0.8855293211163864, + "y": -0.4645834924350539 + }, + { + "x": -0.748461108518164, + "y": -0.6631786856012194 + }, + { + "x": -0.5679927261836174, + "y": -0.8230335734358 + }, + { + "x": -0.35473926289412316, + "y": -0.9349652696016757 + }, + { + "x": -0.1204602009454297, + "y": -0.9927181573781084 + }, + { + "x": 0.1204602009454297, + "y": -0.9927181573781084 + }, + { + "x": 0.35473926289412316, + "y": -0.9349652696016757 + }, + { + "x": 0.5679927261836174, + "y": -0.8230335734358 + }, + { + "x": 0.748461108518164, + "y": -0.6631786856012194 + }, + { + "x": 0.8855293211163864, + "y": -0.4645834924350539 + }, + { + "x": 0.9709182366411434, + "y": -0.23941131501592125 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 165 + }, + "min": { + "#": 166 + } + }, + { + "x": 484.818, + "y": 175 + }, + { + "x": 435.182, + "y": 125 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 150 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 174 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 484.818, + "y": 153.013 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.375, + "y": 158.865 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480.575, + "y": 164.202 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 476.578, + "y": 168.713 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 471.618, + "y": 172.136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 465.983, + "y": 174.274 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 460, + "y": 175 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 454.017, + "y": 174.274 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 448.382, + "y": 172.136 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 443.422, + "y": 168.713 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 439.425, + "y": 164.202 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 436.625, + "y": 158.865 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 435.182, + "y": 153.013 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 435.182, + "y": 146.987 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 436.625, + "y": 141.135 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 439.425, + "y": 135.798 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 443.422, + "y": 131.287 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 448.382, + "y": 127.864 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 454.017, + "y": 125.726 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 460, + "y": 125 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 465.983, + "y": 125.726 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 471.618, + "y": 127.864 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 476.578, + "y": 131.287 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 480.575, + "y": 135.798 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 483.375, + "y": 141.135 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 484.818, + "y": 146.987 + }, + { + "angle": -1.5707963267948966, + "anglePrev": -1.5707963267948966, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3600, + "axes": { + "#": 204 + }, + "bounds": { + "#": 207 + }, + "collisionFilter": { + "#": 210 + }, + "constraintImpulse": { + "#": 211 + }, + "density": 0.001, + "force": { + "#": 212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 39360, + "inverseInertia": 0.00002540650406504065, + "inverseMass": 0.2777777777777778, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.6, + "motion": 0, + "parent": null, + "position": { + "#": 213 + }, + "positionImpulse": { + "#": 214 + }, + "positionPrev": { + "#": 215 + }, + "render": { + "#": 216 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 218 + }, + "vertices": { + "#": 219 + } + }, + [ + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 1, + "y": 6.123233995736766e-17 + }, + { + "x": -6.123233995736766e-17, + "y": 1 + }, + { + "max": { + "#": 208 + }, + "min": { + "#": 209 + } + }, + { + "x": 710, + "y": 240 + }, + { + "x": 690, + "y": 60 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 700, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 700, + "y": 150 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 217 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 690, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 690, + "y": 60 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 710, + "y": 60 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 710, + "y": 240 + }, + { + "max": { + "#": 225 + }, + "min": { + "#": 226 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [], + [ + { + "#": 229 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 230 + }, + "pointB": "", + "render": { + "#": 231 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 233 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/restitution/restitution-10.json b/tests/browser/refs/restitution/restitution-10.json new file mode 100644 index 00000000..a7d3ec00 --- /dev/null +++ b/tests/browser/refs/restitution/restitution-10.json @@ -0,0 +1,2181 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 233 + }, + "composites": { + "#": 236 + }, + "constraints": { + "#": 237 + }, + "events": { + "#": 241 + }, + "gravity": { + "#": 243 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + }, + { + "#": 156 + }, + { + "#": 211 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 91 + }, + "bounds": { + "#": 94 + }, + "collisionFilter": { + "#": 97 + }, + "constraintImpulse": { + "#": 98 + }, + "density": 0.001, + "force": { + "#": 99 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 100 + }, + "positionImpulse": { + "#": 101 + }, + "positionPrev": { + "#": 102 + }, + "region": { + "#": 103 + }, + "render": { + "#": 104 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 106 + }, + "vertices": { + "#": 107 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 95 + }, + "min": { + "#": 96 + } + }, + { + "x": 125, + "y": 192.73575476702598 + }, + { + "x": 75, + "y": 142.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 167.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 164.8284840519903 + }, + { + "endCol": 2, + "endRow": 4, + "id": "1,2,2,4", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 105 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 75, + "y": 142.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 142.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 192.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75, + "y": 192.73575476702598 + }, + { + "angle": -0.47123889803846897, + "anglePrev": -0.47123889803846897, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 113 + }, + "bounds": { + "#": 116 + }, + "collisionFilter": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "density": 0.001, + "force": { + "#": 121 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 122 + }, + "positionImpulse": { + "#": 123 + }, + "positionPrev": { + "#": 124 + }, + "region": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0.45399049973954675, + "y": 0.8910065241883679 + }, + { + "x": -0.8910065241883679, + "y": 0.45399049973954675 + }, + { + "max": { + "#": 117 + }, + "min": { + "#": 118 + } + }, + { + "x": 253.62492559819788, + "y": 201.36068036522386 + }, + { + "x": 186.37507440180212, + "y": 134.1108291688281 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 167.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220, + "y": 164.8284840519903 + }, + { + "endCol": 5, + "endRow": 4, + "id": "3,5,2,4", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 186.37507440180212, + "y": 156.81035415580544 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230.92540061122054, + "y": 134.1108291688281 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 253.62492559819788, + "y": 178.66115537824652 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 209.07459938877946, + "y": 201.36068036522386 + }, + { + "angle": -0.7853981633974483, + "anglePrev": -0.7853981633974483, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2500, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 4166.666666666667, + "inverseInertia": 0.00023999999999999998, + "inverseMass": 0.4, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "region": { + "#": 147 + }, + "render": { + "#": 148 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 150 + }, + "vertices": { + "#": 151 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0.7071067811865475, + "y": 0.7071067811865476 + }, + { + "x": -0.7071067811865476, + "y": 0.7071067811865475 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 375.3553390593274, + "y": 203.09109382635336 + }, + { + "x": 304.6446609406726, + "y": 132.38041570769857 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 167.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 340, + "y": 164.8284840519903 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,2,4", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 149 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.6446609406726, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 132.38041570769857 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375.3553390593274, + "y": 167.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 203.09109382635336 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1944.4530819999998, + "axes": { + "#": 157 + }, + "bounds": { + "#": 171 + }, + "circleRadius": 25, + "collisionFilter": { + "#": 174 + }, + "constraintImpulse": { + "#": 175 + }, + "density": 0.001, + "force": { + "#": 176 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 2407.040215928269, + "inverseInertia": 0.0004154479818752644, + "inverseMass": 0.5142834297505565, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.9444530819999999, + "motion": 0, + "parent": null, + "position": { + "#": 177 + }, + "positionImpulse": { + "#": 178 + }, + "positionPrev": { + "#": 179 + }, + "region": { + "#": 180 + }, + "render": { + "#": 181 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 183 + }, + "vertices": { + "#": 184 + } + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": -0.9709182366411434, + "y": -0.23941131501592125 + }, + { + "x": -0.8855293211163864, + "y": -0.4645834924350539 + }, + { + "x": -0.748461108518164, + "y": -0.6631786856012194 + }, + { + "x": -0.5679927261836174, + "y": -0.8230335734358 + }, + { + "x": -0.35473926289412316, + "y": -0.9349652696016757 + }, + { + "x": -0.1204602009454297, + "y": -0.9927181573781084 + }, + { + "x": 0.1204602009454297, + "y": -0.9927181573781084 + }, + { + "x": 0.35473926289412316, + "y": -0.9349652696016757 + }, + { + "x": 0.5679927261836174, + "y": -0.8230335734358 + }, + { + "x": 0.748461108518164, + "y": -0.6631786856012194 + }, + { + "x": 0.8855293211163864, + "y": -0.4645834924350539 + }, + { + "x": 0.9709182366411434, + "y": -0.23941131501592125 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 172 + }, + "min": { + "#": 173 + } + }, + { + "x": 484.818, + "y": 192.73575476702598 + }, + { + "x": 435.182, + "y": 142.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 167.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 164.8284840519903 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,2,4", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 182 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 484.818, + "y": 170.74875476702599 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.375, + "y": 176.600754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480.575, + "y": 181.93775476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 476.578, + "y": 186.44875476702597 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 471.618, + "y": 189.87175476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 465.983, + "y": 192.00975476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 460, + "y": 192.73575476702598 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 454.017, + "y": 192.00975476702598 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 448.382, + "y": 189.87175476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 443.422, + "y": 186.44875476702597 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 439.425, + "y": 181.93775476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 436.625, + "y": 176.600754767026 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 435.182, + "y": 170.74875476702599 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 435.182, + "y": 164.72275476702598 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 436.625, + "y": 158.87075476702597 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 439.425, + "y": 153.53375476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 443.422, + "y": 149.022754767026 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 448.382, + "y": 145.59975476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 454.017, + "y": 143.46175476702595 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 460, + "y": 142.73575476702595 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 465.983, + "y": 143.46175476702595 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 471.618, + "y": 145.59975476702598 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 476.578, + "y": 149.022754767026 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 480.575, + "y": 153.53375476702598 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 483.375, + "y": 158.87075476702597 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 484.818, + "y": 164.72275476702598 + }, + { + "angle": -1.5707963267948966, + "anglePrev": -1.5707963267948966, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3600, + "axes": { + "#": 212 + }, + "bounds": { + "#": 215 + }, + "collisionFilter": { + "#": 218 + }, + "constraintImpulse": { + "#": 219 + }, + "density": 0.001, + "force": { + "#": 220 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 39360, + "inverseInertia": 0.00002540650406504065, + "inverseMass": 0.2777777777777778, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.6, + "motion": 0, + "parent": null, + "position": { + "#": 221 + }, + "positionImpulse": { + "#": 222 + }, + "positionPrev": { + "#": 223 + }, + "region": { + "#": 224 + }, + "render": { + "#": 225 + }, + "restitution": 0.9, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 227 + }, + "vertices": { + "#": 228 + } + }, + [ + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 1, + "y": 6.123233995736766e-17 + }, + { + "x": -6.123233995736766e-17, + "y": 1 + }, + { + "max": { + "#": 216 + }, + "min": { + "#": 217 + } + }, + { + "x": 710, + "y": 257.735754767026 + }, + { + "x": 690, + "y": 77.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 700, + "y": 167.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 700, + "y": 164.8284840519903 + }, + { + "endCol": 14, + "endRow": 5, + "id": "14,14,1,5", + "startCol": 14, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 226 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 690, + "y": 257.735754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 690, + "y": 77.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 710, + "y": 77.73575476702595 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 710, + "y": 257.735754767026 + }, + { + "max": { + "#": 234 + }, + "min": { + "#": 235 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [], + [ + { + "#": 238 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 239 + }, + "pointB": "", + "render": { + "#": 240 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 242 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/rounded/rounded-0.json b/tests/browser/refs/rounded/rounded-0.json new file mode 100644 index 00000000..9e64337e --- /dev/null +++ b/tests/browser/refs/rounded/rounded-0.json @@ -0,0 +1,4610 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 513 + }, + "composites": { + "#": 516 + }, + "constraints": { + "#": 517 + }, + "gravity": { + "#": 521 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + }, + { + "#": 131 + }, + { + "#": 167 + }, + { + "#": 228 + }, + { + "#": 285 + }, + { + "#": 324 + }, + { + "#": 411 + }, + { + "#": 476 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 9588.945153381854, + "axes": { + "#": 87 + }, + "bounds": { + "#": 98 + }, + "collisionFilter": { + "#": 101 + }, + "constraintImpulse": { + "#": 102 + }, + "density": 0.001, + "force": { + "#": 103 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": 60085.09562738313, + "inverseInertia": 0.000016643062469293315, + "inverseMass": 0.10428675771988512, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 9.588945153381854, + "motion": 0, + "parent": null, + "position": { + "#": 104 + }, + "positionImpulse": { + "#": 105 + }, + "positionPrev": { + "#": 106 + }, + "render": { + "#": 107 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 109 + }, + "vertices": { + "#": 110 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + }, + { + "#": 90 + }, + { + "#": 91 + }, + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + } + ], + { + "x": 0.985231289707376, + "y": 0.17122881118999972 + }, + { + "x": 0.8696860999134852, + "y": 0.4936051940744458 + }, + { + "x": 0.6521465393303176, + "y": 0.758092930477188 + }, + { + "x": 0.3581250435431537, + "y": 0.9336736331219889 + }, + { + "x": 0.00588602634665757, + "y": 0.9999826771968834 + }, + { + "x": -0.17122881118999983, + "y": 0.9852312897073758 + }, + { + "x": -0.4936051940744458, + "y": 0.8696860999134852 + }, + { + "x": -0.758092930477188, + "y": 0.6521465393303176 + }, + { + "x": -0.933673633121989, + "y": 0.3581250435431532 + }, + { + "x": -0.9999826771968834, + "y": 0.005886026346657681 + }, + { + "max": { + "#": 99 + }, + "min": { + "#": 100 + } + }, + { + "x": 250, + "y": 250 + }, + { + "x": 150, + "y": 150 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 108 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.17277223126166, + "y": 163.25200070064858 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 154.55354945440473, + "y": 157.2953880207824 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 159.74584350469084, + "y": 152.82873695473427 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 166.14071655424794, + "y": 150.3758839362038 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 230, + "y": 150 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 236.74799929935142, + "y": 151.17277223126163 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 242.70461197921762, + "y": 154.55354945440473 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 247.17126304526576, + "y": 159.74584350469084 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.6241160637962, + "y": 166.14071655424794 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 250, + "y": 230 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 248.82722776873837, + "y": 236.74799929935142 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 245.4464505455953, + "y": 242.7046119792176 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 240.25415649530916, + "y": 247.17126304526573 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 233.85928344575208, + "y": 249.6241160637962 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 170, + "y": 250 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 163.25200070064858, + "y": 248.82722776873837 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 157.2953880207824, + "y": 245.44645054559527 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 152.82873695473427, + "y": 240.25415649530916 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 150.37588393620382, + "y": 233.85928344575206 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 8214.487209017081, + "axes": { + "#": 132 + }, + "bounds": { + "#": 143 + }, + "collisionFilter": { + "#": 146 + }, + "constraintImpulse": { + "#": 147 + }, + "density": 0.001, + "force": { + "#": 148 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 47166.24850616326, + "inverseInertia": 0.00002120160139234582, + "inverseMass": 0.12173614427231627, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 8.214487209017081, + "motion": 0, + "parent": null, + "position": { + "#": 149 + }, + "positionImpulse": { + "#": 150 + }, + "positionPrev": { + "#": 151 + }, + "render": { + "#": 152 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 154 + }, + "vertices": { + "#": 155 + } + }, + [ + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": -0.9943512913863447, + "y": -0.10613910362495375 + }, + { + "x": -0.9495437964312047, + "y": -0.3136344666311641 + }, + { + "x": -0.861947923528713, + "y": -0.5069968216118718 + }, + { + "x": -0.7355109211685835, + "y": -0.6775128669196929 + }, + { + "x": -0.5759302982638841, + "y": -0.8174988021652836 + }, + { + "x": -0.39039708279203406, + "y": -0.9206465759168768 + }, + { + "x": -0.18727177942404558, + "y": -0.9823081393490292 + }, + { + "x": -0.017420484163766337, + "y": -0.9998482518519998 + }, + { + "x": -1, + "y": 0 + }, + { + "x": 0, + "y": 1 + }, + { + "max": { + "#": 144 + }, + "min": { + "#": 145 + } + }, + { + "x": 343.5713760285394, + "y": 243.57692903410342 + }, + { + "x": 243.57137602853942, + "y": 143.57692903410342 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 200 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 153 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 243.57137602853942, + "y": 233.57692903410342 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 245.59916770583496, + "y": 214.57980917801237 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 251.59116631357693, + "y": 196.43873824496058 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 261.2773601871621, + "y": 179.97118984950964 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 274.2212696972233, + "y": 165.91922527125413 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 289.8396159109566, + "y": 154.91605466178163 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 307.42860432913255, + "y": 147.45750330521986 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 326.1956393000529, + "y": 143.87966872080258 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 343.5713760285394, + "y": 143.57692903410342 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 343.5713760285394, + "y": 243.57692903410342 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 243.57137602853942, + "y": 243.57692903410342 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 34436.8864958818, + "axes": { + "#": 168 + }, + "bounds": { + "#": 190 + }, + "collisionFilter": { + "#": 193 + }, + "constraintImpulse": { + "#": 194 + }, + "density": 0.001, + "force": { + "#": 195 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 800773.108342094, + "inverseInertia": 0.0000012487931844644255, + "inverseMass": 0.0290386298459237, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 34.4368864958818, + "motion": 0, + "parent": null, + "position": { + "#": 196 + }, + "positionImpulse": { + "#": 197 + }, + "positionPrev": { + "#": 198 + }, + "render": { + "#": 199 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 201 + }, + "vertices": { + "#": 202 + } + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + } + ], + { + "x": -0.9959254456304784, + "y": -0.09018041220649242 + }, + { + "x": -0.9635279640111304, + "y": -0.2676076653770701 + }, + { + "x": -0.8997868917236918, + "y": -0.4363296339720893 + }, + { + "x": -0.8067757275695917, + "y": -0.5908577878005467 + }, + { + "x": -0.6875201272284797, + "y": -0.7261653218487751 + }, + { + "x": -0.5458994785973154, + "y": -0.8378506783831945 + }, + { + "x": -0.38652070519741333, + "y": -0.92228072974214 + }, + { + "x": -0.21456840282797746, + "y": -0.976708964076736 + }, + { + "x": -0.024318602313089417, + "y": -0.9997042590594168 + }, + { + "x": -0.17122881118999983, + "y": 0.9852312897073758 + }, + { + "x": -0.49360519407444736, + "y": 0.8696860999134843 + }, + { + "x": -0.7580929304771871, + "y": 0.6521465393303186 + }, + { + "x": -0.9336736331219894, + "y": 0.35812504354315255 + }, + { + "x": 0.9999965865029864, + "y": -0.0026128494743047972 + }, + { + "x": 0.9905143415437621, + "y": 0.13740938540044337 + }, + { + "x": 0.9157053924984958, + "y": 0.40185026334341956 + }, + { + "x": 0.7717374669752792, + "y": 0.6359412567734382 + }, + { + "x": 0.5694837939147834, + "y": 0.8220025598916494 + }, + { + "x": 0.3242196541358753, + "y": 0.9459818263962652 + }, + { + "x": 0.004995826079271555, + "y": 0.9999875207830274 + }, + { + "x": -0.9999383856500578, + "y": 0.011100671311063171 + }, + { + "max": { + "#": 191 + }, + "min": { + "#": 192 + } + }, + { + "x": 491.60246120324047, + "y": 291.5891376305898 + }, + { + "x": 291.60246120324047, + "y": 91.58913763058976 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 200 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 200 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 291.60246120324047, + "y": 241.58913763058976 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 294.0422132269603, + "y": 214.6452474664223 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 301.2821040989567, + "y": 188.57784277632035 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 313.08661997381006, + "y": 164.23489693822793 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 329.071759631591, + "y": 142.40828663710226 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 348.7175260479059, + "y": 123.80803209498488 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 371.38484191113173, + "y": 109.03920009402026 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 396.336338824607, + "y": 98.58222113770617 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 422.76034392047205, + "y": 92.77726103365143 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 471.60246120324047, + "y": 91.58913763058976 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 478.3504605025919, + "y": 92.7619098618514 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 484.30707318245805, + "y": 96.14268708499448 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 488.7737242485062, + "y": 101.3349811352806 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 491.22657726703665, + "y": 107.72985418483769 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 491.60246120324047, + "y": 251.58913763058976 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 490.09195406755026, + "y": 262.47761498273803 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 485.6745142508282, + "y": 272.54373619802516 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 478.68377047130633, + "y": 281.02725388023066 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 469.6477011471221, + "y": 287.2874473296181 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 459.2487586379142, + "y": 290.8515132023824 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 311.60246120324047, + "y": 291.5891376305898 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 304.85446190388905, + "y": 290.41636539932813 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 298.8978492240228, + "y": 287.035588176185 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 294.4311981579747, + "y": 281.8432941258989 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 291.9783451394443, + "y": 275.4484210763418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 29929.09118210141, + "axes": { + "#": 229 + }, + "bounds": { + "#": 244 + }, + "collisionFilter": { + "#": 247 + }, + "constraintImpulse": { + "#": 248 + }, + "density": 0.001, + "force": { + "#": 249 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 642055.6835937061, + "inverseInertia": 0.0000015574973098950116, + "inverseMass": 0.033412307574445604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 29.92909118210141, + "motion": 0, + "parent": null, + "position": { + "#": 250 + }, + "positionImpulse": { + "#": 251 + }, + "positionPrev": { + "#": 252 + }, + "render": { + "#": 253 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 255 + }, + "vertices": { + "#": 256 + } + }, + [ + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + } + ], + { + "x": 0.9959254456304784, + "y": 0.09018041220649242 + }, + { + "x": 0.9635279640111304, + "y": 0.2676076653770701 + }, + { + "x": 0.8997868917236918, + "y": 0.4363296339720893 + }, + { + "x": 0.8067757275695916, + "y": 0.590857787800547 + }, + { + "x": 0.6875201272284799, + "y": 0.7261653218487749 + }, + { + "x": 0.5458994785973155, + "y": 0.8378506783831944 + }, + { + "x": 0.38652070519741333, + "y": 0.92228072974214 + }, + { + "x": 0.21456840282797746, + "y": 0.976708964076736 + }, + { + "x": 0.024318602313089417, + "y": 0.9997042590594168 + }, + { + "x": -0.17122881118999983, + "y": 0.9852312897073758 + }, + { + "x": -0.49360519407444736, + "y": 0.8696860999134843 + }, + { + "x": -0.7580929304771871, + "y": 0.6521465393303186 + }, + { + "x": -0.9336736331219894, + "y": 0.35812504354315255 + }, + { + "x": -0.9999383856500578, + "y": 0.011100671311063171 + }, + { + "max": { + "#": 245 + }, + "min": { + "#": 246 + } + }, + { + "x": 300, + "y": 300 + }, + { + "x": 99.99999999999997, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 200 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 254 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 99.99999999999997, + "y": 250 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 102.43975202371985, + "y": 223.05610983583253 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 109.67964289571626, + "y": 196.9887051457306 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 121.48415877056959, + "y": 172.64575930763817 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 137.4692984283505, + "y": 150.8191490065125 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 157.11506484466543, + "y": 132.21889446439513 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 179.78238070789126, + "y": 117.4500624634305 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 204.73387762136656, + "y": 106.99308350711641 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 231.15788271723156, + "y": 101.18812340306167 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 280, + "y": 100 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 286.74799929935136, + "y": 101.17277223126163 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 292.7046119792176, + "y": 104.55354945440472 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.17126304526573, + "y": 109.74584350469084 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 299.6241160637962, + "y": 116.14071655424793 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 300, + "y": 150 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 297.5602479762801, + "y": 176.94389016416747 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 290.3203571042837, + "y": 203.0112948542694 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 278.51584122943035, + "y": 227.35424069236183 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 262.5307015716494, + "y": 249.1808509934875 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 242.88493515533455, + "y": 267.78110553560487 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 220.21761929210868, + "y": 282.5499375365695 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 195.26612237863338, + "y": 293.0069164928836 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 168.84211728276838, + "y": 298.8118765969383 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 119.99999999999997, + "y": 300 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 113.25200070064855, + "y": 298.82722776873834 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 107.29538802078237, + "y": 295.44645054559527 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 102.82873695473423, + "y": 290.2541564953092 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 100.37588393620376, + "y": 283.85928344575206 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 9624.853311907824, + "axes": { + "#": 286 + }, + "bounds": { + "#": 299 + }, + "collisionFilter": { + "#": 302 + }, + "constraintImpulse": { + "#": 303 + }, + "density": 0.001, + "force": { + "#": 304 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 129719.99535833277, + "inverseInertia": 0.000007708911777537797, + "inverseMass": 0.1038976873302375, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 9.624853311907824, + "motion": 0, + "parent": null, + "position": { + "#": 305 + }, + "positionImpulse": { + "#": 306 + }, + "positionPrev": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": -0.9871925448059895, + "y": -0.15953331777241575 + }, + { + "x": -0.8866928708824171, + "y": -0.4623589003429014 + }, + { + "x": -0.6959247433902944, + "y": -0.7181147203178283 + }, + { + "x": -0.4343090288149286, + "y": -0.9007639354957732 + }, + { + "x": -0.006600572580279341, + "y": -0.9999782159835345 + }, + { + "x": 0.1595333177724156, + "y": -0.9871925448059895 + }, + { + "x": 0.4623589003429023, + "y": -0.8866928708824167 + }, + { + "x": 0.7181147203178281, + "y": -0.6959247433902946 + }, + { + "x": 0.9007639354957722, + "y": -0.4343090288149308 + }, + { + "x": 0.9994792934199674, + "y": -0.032266732476692324 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 300 + }, + "min": { + "#": 301 + } + }, + { + "x": 399.91236850730274, + "y": 224.24092826775853 + }, + { + "x": 199.91236850730274, + "y": 174.24092826775853 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 200 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.91236850730274, + "y": 199.24092826775853 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 201.18491248127646, + "y": 191.36642317010384 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 204.87299494994193, + "y": 184.29357039325282 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 210.60115614361757, + "y": 178.74241123160428 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 217.78624910158652, + "y": 175.27807321633622 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.91236850730274, + "y": 174.24092826775853 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 382.78687360495746, + "y": 175.51347224173225 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 389.8597263818084, + "y": 179.2015547103977 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 395.41088554345697, + "y": 184.92971590407336 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 398.87522355872505, + "y": 192.1148088620423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 399.91236850730274, + "y": 224.24092826775853 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 199.91236850730274, + "y": 224.24092826775853 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 13710.388476459668, + "axes": { + "#": 325 + }, + "bounds": { + "#": 350 + }, + "collisionFilter": { + "#": 353 + }, + "constraintImpulse": { + "#": 354 + }, + "density": 0.001, + "force": { + "#": 355 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 119782.82093625488, + "inverseInertia": 0.000008348442557820311, + "inverseMass": 0.0729373935477445, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 13.710388476459668, + "motion": 0, + "parent": null, + "position": { + "#": 356 + }, + "positionImpulse": { + "#": 357 + }, + "positionPrev": { + "#": 358 + }, + "render": { + "#": 359 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 361 + }, + "vertices": { + "#": 362 + } + }, + [ + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": -0.9971460300900056, + "y": -0.07549698454734163 + }, + { + "x": -0.9744119195570308, + "y": -0.22476968439979306 + }, + { + "x": -0.9294620175397742, + "y": -0.36891782005060775 + }, + { + "x": -0.8633211448870096, + "y": -0.5046549323953774 + }, + { + "x": -0.7774972591739159, + "y": -0.628886326753133 + }, + { + "x": -0.7074224557631555, + "y": -0.7067909656199818 + }, + { + "x": -0.6517042899773278, + "y": -0.7584731494424489 + }, + { + "x": -0.5300771079435221, + "y": -0.8479494440320317 + }, + { + "x": -0.39636460319936184, + "y": -0.9180931877160469 + }, + { + "x": -0.2536153110353265, + "y": -0.9673051607473491 + }, + { + "x": -0.10508379807319355, + "y": -0.9944633705584698 + }, + { + "x": -0.00044650650719272813, + "y": -0.9999999003159645 + }, + { + "x": 0.07549698454734163, + "y": -0.9971460300900056 + }, + { + "x": 0.22476968439979306, + "y": -0.9744119195570308 + }, + { + "x": 0.36891782005060775, + "y": -0.9294620175397742 + }, + { + "x": 0.5046549323953774, + "y": -0.8633211448870096 + }, + { + "x": 0.628886326753133, + "y": -0.7774972591739159 + }, + { + "x": 0.7067909656199818, + "y": -0.7074224557631555 + }, + { + "x": 0.7584731494424489, + "y": -0.6517042899773278 + }, + { + "x": 0.8479494440320317, + "y": -0.5300771079435221 + }, + { + "x": 0.9180931877160469, + "y": -0.39636460319936184 + }, + { + "x": 0.9673051607473491, + "y": -0.2536153110353265 + }, + { + "x": 0.9944633705584698, + "y": -0.10508379807319355 + }, + { + "x": 0.9999999003159645, + "y": -0.00044650650719272813 + }, + { + "max": { + "#": 351 + }, + "min": { + "#": 352 + } + }, + { + "x": 264.7131110537087, + "y": 164.7131110537087 + }, + { + "x": 135.2868889462913, + "y": 35.2868889462913 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 100 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 360 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 264.7131110537087, + "y": 114.37911699561408 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 264.3711233731642, + "y": 118.89600810112297 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 263.35295736977366, + "y": 123.30991779913552 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 261.6818263921977, + "y": 127.52021257366798 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 259.3958308542301, + "y": 131.43090116176364 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.54708957665514, + "y": 134.95282307545085 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 235.5923204312105, + "y": 155.92631448930513 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 232.1565742926287, + "y": 158.87841701189637 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 228.31551672824793, + "y": 161.27957040553508 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 224.15672069588686, + "y": 163.0750303449064 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.77500332947648, + "y": 164.2238618179986 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 215.2702641862795, + "y": 164.69987241075705 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 185.62088300438592, + "y": 164.7131110537087 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 181.10399189887704, + "y": 164.3711233731642 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 176.69008220086448, + "y": 163.3529573697737 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 172.47978742633202, + "y": 161.6818263921977 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 168.56909883823636, + "y": 159.3958308542301 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 165.04717692454915, + "y": 156.54708957665517 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 144.07368551069487, + "y": 135.5923204312105 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 141.12158298810363, + "y": 132.1565742926287 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 138.72042959446492, + "y": 128.31551672824793 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 136.9249696550936, + "y": 124.15672069588686 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 135.7761381820014, + "y": 119.77500332947649 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 135.30012758924295, + "y": 115.2702641862795 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 135.2868889462913, + "y": 85.62088300438592 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 135.6288766268358, + "y": 81.10399189887704 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 136.6470426302263, + "y": 76.6900822008645 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 138.3181736078023, + "y": 72.47978742633202 + }, + { + "body": null, + "index": 28, + "isInternal": false, + "x": 140.6041691457699, + "y": 68.56909883823636 + }, + { + "body": null, + "index": 29, + "isInternal": false, + "x": 143.45291042334483, + "y": 65.04717692454915 + }, + { + "body": null, + "index": 30, + "isInternal": false, + "x": 164.4076795687895, + "y": 44.07368551069487 + }, + { + "body": null, + "index": 31, + "isInternal": false, + "x": 167.8434257073713, + "y": 41.12158298810361 + }, + { + "body": null, + "index": 32, + "isInternal": false, + "x": 171.68448327175207, + "y": 38.72042959446492 + }, + { + "body": null, + "index": 33, + "isInternal": false, + "x": 175.84327930411314, + "y": 36.9249696550936 + }, + { + "body": null, + "index": 34, + "isInternal": false, + "x": 180.2249966705235, + "y": 35.776138182001404 + }, + { + "body": null, + "index": 35, + "isInternal": false, + "x": 184.7297358137205, + "y": 35.30012758924293 + }, + { + "body": null, + "index": 36, + "isInternal": false, + "x": 214.37911699561408, + "y": 35.2868889462913 + }, + { + "body": null, + "index": 37, + "isInternal": false, + "x": 218.89600810112296, + "y": 35.62887662683579 + }, + { + "body": null, + "index": 38, + "isInternal": false, + "x": 223.30991779913552, + "y": 36.64704263022631 + }, + { + "body": null, + "index": 39, + "isInternal": false, + "x": 227.52021257366798, + "y": 38.31817360780229 + }, + { + "body": null, + "index": 40, + "isInternal": false, + "x": 231.43090116176364, + "y": 40.604169145769895 + }, + { + "body": null, + "index": 41, + "isInternal": false, + "x": 234.95282307545085, + "y": 43.45291042334483 + }, + { + "body": null, + "index": 42, + "isInternal": false, + "x": 255.92631448930513, + "y": 64.40767956878949 + }, + { + "body": null, + "index": 43, + "isInternal": false, + "x": 258.8784170118964, + "y": 67.84342570737128 + }, + { + "body": null, + "index": 44, + "isInternal": false, + "x": 261.2795704055351, + "y": 71.68448327175207 + }, + { + "body": null, + "index": 45, + "isInternal": false, + "x": 263.0750303449064, + "y": 75.84327930411314 + }, + { + "body": null, + "index": 46, + "isInternal": false, + "x": 264.22386181799857, + "y": 80.22499667052351 + }, + { + "body": null, + "index": 47, + "isInternal": false, + "x": 264.69987241075705, + "y": 84.72973581372051 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 13066.632527319482, + "axes": { + "#": 412 + }, + "bounds": { + "#": 438 + }, + "collisionFilter": { + "#": 441 + }, + "constraintImpulse": { + "#": 442 + }, + "density": 0.001, + "force": { + "#": 443 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 110539.49232807996, + "inverseInertia": 0.000009046540552511418, + "inverseMass": 0.07653081219734448, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 13.066632527319483, + "motion": 0, + "parent": null, + "position": { + "#": 444 + }, + "positionImpulse": { + "#": 445 + }, + "positionPrev": { + "#": 446 + }, + "render": { + "#": 447 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 449 + }, + "vertices": { + "#": 450 + } + }, + [ + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + } + ], + { + "x": 0.9852707412573999, + "y": 0.17100165619693286 + }, + { + "x": 0.8700273019605039, + "y": 0.4930035434389151 + }, + { + "x": 0.6530200181063557, + "y": 0.7573406472337101 + }, + { + "x": 0.23762099552753094, + "y": 0.9713579476611622 + }, + { + "x": 0.20247809930910418, + "y": 0.9792867911394355 + }, + { + "x": -0.016665201265837752, + "y": 0.9998611258903753 + }, + { + "x": -0.23500112134456125, + "y": 0.971995099250402 + }, + { + "x": -0.4419519210796343, + "y": 0.8970387391044049 + }, + { + "x": -0.6274914365671667, + "y": 0.7786234629362728 + }, + { + "x": -0.7681066721093087, + "y": 0.6403219036243901 + }, + { + "x": -0.882023374024845, + "y": 0.4712056532702346 + }, + { + "x": -0.9769050115454153, + "y": 0.2136740471312598 + }, + { + "x": -0.9982012270031646, + "y": -0.05995256799651139 + }, + { + "x": -0.9443078818336689, + "y": -0.32906325274452863 + }, + { + "x": -0.7749578855137619, + "y": -0.6320128761979771 + }, + { + "x": -0.7394148631596882, + "y": -0.6732500725128365 + }, + { + "x": -0.5742167013034446, + "y": -0.8187033528355618 + }, + { + "x": -0.38119941156274884, + "y": -0.9244928386008268 + }, + { + "x": -0.16971411983661813, + "y": -0.9854933371302323 + }, + { + "x": 0.049993327032013764, + "y": -0.9987495518158044 + }, + { + "x": 0.2304290041212861, + "y": -0.9730891398323549 + }, + { + "x": 0.46710240428462, + "y": -0.8842032254586767 + }, + { + "x": 0.7377310900533464, + "y": -0.6750946887427728 + }, + { + "x": 0.9220701251363203, + "y": -0.3870228472985681 + }, + { + "x": 0.9999949443705629, + "y": -0.003179816553623718 + }, + { + "max": { + "#": 439 + }, + "min": { + "#": 440 + } + }, + { + "x": 360.9615162474207, + "y": 162.13746754057453 + }, + { + "x": 226.02633839265098, + "y": 37.81506731361663 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 300, + "y": 100 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 448 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 360.9615162474207, + "y": 138.73802057532725 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 360.3766849189788, + "y": 142.10767914647516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 358.6905964701986, + "y": 145.08320133791105 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 356.10046637055416, + "y": 147.3165514304298 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 302.8021447241981, + "y": 160.3547936974005 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 294.18022979370966, + "y": 162.13746754057453 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.377172663021, + "y": 161.99074244541998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 276.8194558282645, + "y": 159.92172681574453 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 268.9216757623128, + "y": 156.0306584368063 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 262.0664569223775, + "y": 150.50604824636642 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 229.78569923558422, + "y": 111.78323520557676 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 227.19921276090196, + "y": 106.94173657024413 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.02633839265098, + "y": 101.57942484525631 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 226.3554229551329, + "y": 96.10021644710444 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 228.16167813613887, + "y": 90.91683304041621 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 258.08058268124955, + "y": 54.231044069395146 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 264.00806470660893, + "y": 47.72102871313383 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 271.21615811226053, + "y": 42.6654641991435 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 279.3556517523082, + "y": 39.30927791358958 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 288.032210850398, + "y": 37.81506731361663 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 296.82548137189656, + "y": 38.255222553799726 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 354.05173740886585, + "y": 51.806487950164524 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 357.0757417282279, + "y": 53.40399364508931 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 359.38458792552325, + "y": 55.92705840963112 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 360.70821888300543, + "y": 59.08056878019159 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3901.768915155755, + "axes": { + "#": 477 + }, + "bounds": { + "#": 489 + }, + "collisionFilter": { + "#": 492 + }, + "constraintImpulse": { + "#": 493 + }, + "density": 0.001, + "force": { + "#": 494 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 10483.195717051358, + "inverseInertia": 0.00009539075936295437, + "inverseMass": 0.2562940096517943, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.9017689151557553, + "motion": 0, + "parent": null, + "position": { + "#": 495 + }, + "positionImpulse": { + "#": 496 + }, + "positionPrev": { + "#": 497 + }, + "render": { + "#": 498 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 500 + }, + "vertices": { + "#": 501 + } + }, + [ + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + } + ], + { + "x": 0.9737949578896212, + "y": 0.22742774674333552 + }, + { + "x": 0.7723230913374028, + "y": 0.635229913170844 + }, + { + "x": 0.41106258187586037, + "y": 0.9116071268817239 + }, + { + "x": -0.0352441120717713, + "y": 0.9993787332959775 + }, + { + "x": -0.5651881595455647, + "y": 0.8249620259802855 + }, + { + "x": -0.5791090852858076, + "y": -0.8152500642989458 + }, + { + "x": -0.28993668690197577, + "y": -0.9570458283636714 + }, + { + "x": 0.1639663617104109, + "y": -0.9864659305964147 + }, + { + "x": 0.5839458325943148, + "y": -0.8117926241323781 + }, + { + "x": 0.8831106947097263, + "y": -0.469164684188084 + }, + { + "x": 0.9998783521980776, + "y": -0.01559746151324524 + }, + { + "max": { + "#": 490 + }, + "min": { + "#": 491 + } + }, + { + "x": 430.247000636594, + "y": 238.62609373415896 + }, + { + "x": 349.3891693516501, + "y": 161.4316201785845 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 200 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 499 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 430.247000636594, + "y": 219.00198452415512 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 428.178065437044, + "y": 227.86070424666946 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 422.39930912438757, + "y": 234.88661226349797 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 414.1063189331125, + "y": 238.62609373415896 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 405.01486079484397, + "y": 238.30547417438086 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 349.3891693516501, + "y": 200.19586284667164 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 400.2470474348495, + "y": 164.06920607459827 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 408.9533984858439, + "y": 161.4316201785845 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 417.9273874392283, + "y": 162.92324018600456 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 425.3123541323998, + "y": 168.23545958308802 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 429.58039681145755, + "y": 176.269214599999 + }, + { + "max": { + "#": 514 + }, + "min": { + "#": 515 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [], + [ + { + "#": 518 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 519 + }, + "pointB": "", + "render": { + "#": 520 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/rounded/rounded-10.json b/tests/browser/refs/rounded/rounded-10.json new file mode 100644 index 00000000..baf06173 --- /dev/null +++ b/tests/browser/refs/rounded/rounded-10.json @@ -0,0 +1,4730 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 525 + }, + "composites": { + "#": 528 + }, + "constraints": { + "#": 529 + }, + "gravity": { + "#": 533 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 136 + }, + { + "#": 173 + }, + { + "#": 235 + }, + { + "#": 293 + }, + { + "#": 333 + }, + { + "#": 421 + }, + { + "#": 487 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0.00009492497495414449, + "anglePrev": 0.00008021639895148107, + "angularSpeed": 0.000014708576002663418, + "angularVelocity": 0.000014708576002663418, + "area": 9588.945153381854, + "axes": { + "#": 91 + }, + "bounds": { + "#": 102 + }, + "collisionFilter": { + "#": 105 + }, + "constraintImpulse": { + "#": 106 + }, + "density": 0.001, + "force": { + "#": 107 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": 60085.09562738313, + "inverseInertia": 0.000016643062469293315, + "inverseMass": 0.10428675771988512, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 9.588945153381854, + "motion": 0, + "parent": null, + "position": { + "#": 108 + }, + "positionImpulse": { + "#": 109 + }, + "positionPrev": { + "#": 110 + }, + "region": { + "#": 111 + }, + "render": { + "#": 112 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9064524803558163, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 114 + }, + "vertices": { + "#": 115 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + } + ], + { + "x": 0.9852150313779499, + "y": 0.1713223334739087 + }, + { + "x": 0.8696392405346086, + "y": 0.4936877467816973 + }, + { + "x": 0.6520745744398222, + "y": 0.758154832055514 + }, + { + "x": 0.3580364129835595, + "y": 0.9337076239261763 + }, + { + "x": 0.005791102989693872, + "y": 0.9999832314224888 + }, + { + "x": -0.17132233347390882, + "y": 0.9852150313779497 + }, + { + "x": -0.4936877467816973, + "y": 0.8696392405346086 + }, + { + "x": -0.758154832055514, + "y": 0.6520745744398222 + }, + { + "x": -0.9337076239261765, + "y": 0.358036412983559 + }, + { + "x": -0.9999832314224888, + "y": 0.005791102989693983 + }, + { + "max": { + "#": 103 + }, + "min": { + "#": 104 + } + }, + { + "x": 230.73976382243328, + "y": 565.8489368155767 + }, + { + "x": 130.74420341487766, + "y": 462.9481805557866 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 180.74135544036452, + "y": 512.9453325812735 + }, + { + "x": -0.42276433366893107, + "y": 6.082134342957824 + }, + { + "x": 180.7400990837826, + "y": 510.0388803724569 + }, + { + "endCol": 4, + "endRow": 11, + "id": "2,4,9,11", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 113 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.001256356581907596, + "y": 2.9064522088165523 + }, + [ + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 130.74420341487766, + "y": 482.9405864676941 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 131.917616194519, + "y": 476.1926985241194 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 135.29895883373902, + "y": 470.2364067912829 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.49167685737183, + "y": 465.77024862374054 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 146.88678271512862, + "y": 463.31800264942433 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 210.74610155394384, + "y": 462.9481805557866 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 217.49398949751844, + "y": 464.12159333542803 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 223.45028123035513, + "y": 467.50293597464804 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 227.9164393978974, + "y": 472.6956539982807 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 230.36868537221366, + "y": 479.09075985603755 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 230.73850746585137, + "y": 542.9500786948528 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 229.56509468621002, + "y": 549.6979666384274 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.18375204699, + "y": 555.6542583712638 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 220.9910340233572, + "y": 560.1204165388062 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 214.5959281656004, + "y": 562.5726625131225 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 150.73660932678519, + "y": 562.9424846067602 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 143.9887213832106, + "y": 561.7690718271189 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 138.0324296503739, + "y": 558.3877291878989 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 133.56627148283164, + "y": 553.195011164266 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 131.1140255085154, + "y": 546.7999053065091 + }, + { + "angle": 0.000003360612129448975, + "anglePrev": 0.000002877703133342372, + "angularSpeed": 4.829089961066029e-7, + "angularVelocity": 4.829089961066029e-7, + "area": 8214.487209017081, + "axes": { + "#": 137 + }, + "bounds": { + "#": 148 + }, + "collisionFilter": { + "#": 151 + }, + "constraintImpulse": { + "#": 152 + }, + "density": 0.001, + "force": { + "#": 153 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 47166.24850616326, + "inverseInertia": 0.00002120160139234582, + "inverseMass": 0.12173614427231627, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 8.214487209017081, + "motion": 0, + "parent": null, + "position": { + "#": 154 + }, + "positionImpulse": { + "#": 155 + }, + "positionPrev": { + "#": 156 + }, + "region": { + "#": 157 + }, + "render": { + "#": 158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072573374631054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 160 + }, + "vertices": { + "#": 161 + } + }, + [ + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + } + ], + { + "x": -0.9943509346883708, + "y": -0.10614244525336518 + }, + { + "x": -0.9495427424220498, + "y": -0.31363765767779284 + }, + { + "x": -0.8619462197041774, + "y": -0.5069997182816555 + }, + { + "x": -0.7355086443064719, + "y": -0.6775153386827901 + }, + { + "x": -0.5759275509642418, + "y": -0.8175007376390134 + }, + { + "x": -0.3903939888537795, + "y": -0.9206478878848499 + }, + { + "x": -0.18726847826634013, + "y": -0.9823087686912958 + }, + { + "x": -0.017417124061505192, + "y": -0.9998483103898441 + }, + { + "x": -0.9999999999943532, + "y": -0.000003360612129442649 + }, + { + "x": -0.000003360612129442649, + "y": 0.9999999999943532 + }, + { + "max": { + "#": 149 + }, + "min": { + "#": 150 + } + }, + { + "x": 360.61507342884715, + "y": 278.5548812681399 + }, + { + "x": 260.6146826804985, + "y": 175.64762393175585 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.04345309679684, + "y": 232.07054847083904 + }, + { + "x": 0.3861770025456471, + "y": 1.0667644409923294 + }, + { + "x": 317.04339840909654, + "y": 229.16329113389028 + }, + { + "endCol": 7, + "endRow": 5, + "id": "5,7,3,5", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 159 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000054687700276758734, + "y": 2.907257336948747 + }, + [ + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260.61471628661985, + "y": 265.6472878700348 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 262.6425718058554, + "y": 246.65017482867228 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 268.63463137866654, + "y": 228.50912403250607 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 278.32088059323985, + "y": 212.04160818868877 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.26483732643055, + "y": 197.98968710997192 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 306.88322051746434, + "y": 186.98656898776528 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.47223400083914, + "y": 179.52807674101345 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 343.2392809953678, + "y": 175.95030522534176 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 360.61501874114686, + "y": 175.64762393175585 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 360.61468267993394, + "y": 275.64762393119116 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 260.6146826804985, + "y": 275.6472878699783 + }, + { + "angle": -1.4346892403423108e-16, + "anglePrev": 0.00004167177201283631, + "angularSpeed": 1.6354825238030628e-17, + "angularVelocity": -0.00003164283753669189, + "area": 34436.8864958818, + "axes": { + "#": 174 + }, + "bounds": { + "#": 196 + }, + "collisionFilter": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "density": 0.001, + "force": { + "#": 201 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 800773.108342094, + "inverseInertia": 0.0000012487931844644255, + "inverseMass": 0.0290386298459237, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 34.4368864958818, + "motion": 0, + "parent": null, + "position": { + "#": 202 + }, + "positionImpulse": { + "#": 203 + }, + "positionPrev": { + "#": 204 + }, + "region": { + "#": 205 + }, + "render": { + "#": 206 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 208 + }, + "vertices": { + "#": 209 + } + }, + [ + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + } + ], + { + "x": -0.9959254456304784, + "y": -0.0901804122064923 + }, + { + "x": -0.9635279640111304, + "y": -0.2676076653770701 + }, + { + "x": -0.8997868917236918, + "y": -0.4363296339720893 + }, + { + "x": -0.8067757275695917, + "y": -0.5908577878005467 + }, + { + "x": -0.6875201272284797, + "y": -0.7261653218487751 + }, + { + "x": -0.5458994785973154, + "y": -0.8378506783831945 + }, + { + "x": -0.38652070519741333, + "y": -0.92228072974214 + }, + { + "x": -0.21456840282797768, + "y": -0.976708964076736 + }, + { + "x": -0.024318602313089563, + "y": -0.9997042590594168 + }, + { + "x": -0.1712288111899996, + "y": 0.9852312897073758 + }, + { + "x": -0.49360519407444736, + "y": 0.8696860999134843 + }, + { + "x": -0.7580929304771871, + "y": 0.6521465393303186 + }, + { + "x": -0.9336736331219894, + "y": 0.35812504354315255 + }, + { + "x": 0.9999965865029864, + "y": -0.0026128494743049404 + }, + { + "x": 0.9905143415437621, + "y": 0.13740938540044315 + }, + { + "x": 0.9157053924984958, + "y": 0.40185026334341956 + }, + { + "x": 0.7717374669752792, + "y": 0.6359412567734382 + }, + { + "x": 0.5694837939147834, + "y": 0.8220025598916494 + }, + { + "x": 0.3242196541358753, + "y": 0.9459818263962652 + }, + { + "x": 0.004995826079271698, + "y": 0.9999875207830274 + }, + { + "x": -0.9999383856500578, + "y": 0.011100671311063317 + }, + { + "max": { + "#": 197 + }, + "min": { + "#": 198 + } + }, + { + "x": 779.8000159637123, + "y": 589.140480707931 + }, + { + "x": 579.8000159637123, + "y": 386.2332099928954 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 688.1975547604719, + "y": 494.6440723623055 + }, + { + "x": -6.837658731425854, + "y": 5.309428294389491 + }, + { + "x": 688.1986386940783, + "y": 491.7480134354833 + }, + { + "endCol": 16, + "endRow": 12, + "id": "12,16,7,12", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 207 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0006376080037853171, + "y": 2.8988618738755463 + }, + [ + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 579.8000159637123, + "y": 536.2332099928954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 582.2397679874322, + "y": 509.28931982872786 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 589.4796588594286, + "y": 483.2219151386259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 601.2841747342819, + "y": 458.87896930053347 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 617.2693143920629, + "y": 437.0523589994079 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 636.9150808083778, + "y": 418.45210445729043 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 659.5823966716035, + "y": 403.6832724563258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 684.5338935850789, + "y": 393.22629350001176 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 710.9578986809439, + "y": 387.4213333959571 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 759.8000159637123, + "y": 386.2332099928954 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 766.5480152630638, + "y": 387.40598222415707 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 772.5046279429299, + "y": 390.7867594473001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 776.9712790089781, + "y": 395.9790534975862 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 779.4241320275086, + "y": 402.3739265471433 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 779.8000159637123, + "y": 546.2332099928954 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 778.2895088280221, + "y": 557.1216873450436 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 773.8720690113001, + "y": 567.1878085603308 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 766.8813252317783, + "y": 575.6713262425363 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 757.8452559075942, + "y": 581.9315196919237 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 747.4463133983862, + "y": 585.495585564688 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 599.8000159637123, + "y": 586.2332099928955 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 593.0520166643608, + "y": 585.0604377616338 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 587.0954039844946, + "y": 581.6796605384906 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 582.6287529184465, + "y": 576.4873664882045 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 580.1758998999161, + "y": 570.0924934386475 + }, + { + "angle": 0.0009116014092614793, + "anglePrev": 0.0007722880821902269, + "angularSpeed": 0.00013931332707125226, + "angularVelocity": 0.00013931332707125226, + "area": 29929.09118210141, + "axes": { + "#": 236 + }, + "bounds": { + "#": 251 + }, + "collisionFilter": { + "#": 254 + }, + "constraintImpulse": { + "#": 255 + }, + "density": 0.001, + "force": { + "#": 256 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 642055.6835937061, + "inverseInertia": 0.0000015574973098950116, + "inverseMass": 0.033412307574445604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 29.92909118210141, + "motion": 0, + "parent": null, + "position": { + "#": 257 + }, + "positionImpulse": { + "#": 258 + }, + "positionPrev": { + "#": 259 + }, + "region": { + "#": 260 + }, + "render": { + "#": 261 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8732381700203216, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 263 + }, + "vertices": { + "#": 264 + } + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + } + ], + { + "x": 0.9958428232354856, + "y": 0.09108826164977256 + }, + { + "x": 0.9632836121659379, + "y": 0.26848590751200174 + }, + { + "x": 0.8993887592004168, + "y": 0.43714969955832567 + }, + { + "x": 0.8062367656299596, + "y": 0.59159300008244 + }, + { + "x": 0.6868578683189296, + "y": 0.7267917643509564 + }, + { + "x": 0.5451354660180441, + "y": 0.8383479729141651 + }, + { + "x": 0.38567979229824, + "y": 0.9226326992973893 + }, + { + "x": 0.21367794452820255, + "y": 0.9769041590771341 + }, + { + "x": 0.02340726052332136, + "y": 0.9997260125428332 + }, + { + "x": -0.17212687815071823, + "y": 0.9850747879313976 + }, + { + "x": -0.4943977959417661, + "y": 0.8692357674232717 + }, + { + "x": -0.7586871131050624, + "y": 0.6514551898698072 + }, + { + "x": -0.9339997124217942, + "y": 0.3572737566572808 + }, + { + "x": -0.9999480895533325, + "y": 0.01018912158335786 + }, + { + "max": { + "#": 252 + }, + "min": { + "#": 253 + } + }, + { + "x": 233.1056970173479, + "y": 461.3027263252698 + }, + { + "x": 33.00588672482467, + "y": 258.5754407347376 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 133.0514252381212, + "y": 358.5024710812438 + }, + { + "x": 0.7872534498523062, + "y": 4.4193191292214244 + }, + { + "x": 133.04269197219097, + "y": 355.629246183724 + }, + { + "endCol": 4, + "endRow": 9, + "id": "0,4,5,9", + "startCol": 0, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 262 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.008733265930218862, + "y": 2.873224897519844 + }, + [ + { + "#": 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 + }, + { + "#": 291 + }, + { + "#": 292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 33.00588672482467, + "y": 408.41129017751683 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 35.470199819649444, + "y": 381.46963528984077 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 42.73385076296946, + "y": 355.4088413247757 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 54.56055279360377, + "y": 331.0766666132017 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 70.56558297537677, + "y": 309.26463745504003 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 90.22829724461278, + "y": 290.6822997473577 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 112.90906697557593, + "y": 275.9341374371921 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 137.8700861169242, + "y": 265.49990864244114 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 164.29937204246815, + "y": 259.7190391073443 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 213.14255212573858, + "y": 258.5754407347376 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 219.88947952056785, + "y": 259.7543639635213 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 225.84300780455655, + "y": 263.1405698376839 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 230.3049237127551, + "y": 268.3369335353701 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 232.75194613762758, + "y": 274.7340399517616 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 233.09696375141766, + "y": 308.5936519849708 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 230.63265065659297, + "y": 335.5353068726469 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 223.3689997132729, + "y": 361.5961008377119 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 211.54229768263863, + "y": 385.9282755492859 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 195.5372675008655, + "y": 407.74030470744765 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 175.87455323162962, + "y": 426.3226424151298 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 153.1937835006664, + "y": 441.07080472529555 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 128.23276435931817, + "y": 451.5050335200464 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 101.8034784337742, + "y": 457.28590305514314 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 52.960298350503855, + "y": 458.42950142775 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 46.21337095567443, + "y": 457.2505781989662 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 40.259842671685824, + "y": 453.8643723248037 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 35.797926763487276, + "y": 448.6680086271175 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 33.35090433861479, + "y": 442.270902210726 + }, + { + "angle": -1.614271289616012e-15, + "anglePrev": -1.4266846428224409e-15, + "angularSpeed": 1.8758664679357106e-16, + "angularVelocity": -1.8758664679357106e-16, + "area": 9624.853311907824, + "axes": { + "#": 294 + }, + "bounds": { + "#": 307 + }, + "collisionFilter": { + "#": 310 + }, + "constraintImpulse": { + "#": 311 + }, + "density": 0.001, + "force": { + "#": 312 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 129719.99535833277, + "inverseInertia": 0.000007708911777537797, + "inverseMass": 0.1038976873302375, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 9.624853311907824, + "motion": 0, + "parent": null, + "position": { + "#": 313 + }, + "positionImpulse": { + "#": 314 + }, + "positionPrev": { + "#": 315 + }, + "region": { + "#": 316 + }, + "render": { + "#": 317 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 319 + }, + "vertices": { + "#": 320 + } + }, + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + } + ], + { + "x": -0.9871925448059895, + "y": -0.15953331777241414 + }, + { + "x": -0.886692870882418, + "y": -0.4623589003429 + }, + { + "x": -0.6959247433902953, + "y": -0.7181147203178274 + }, + { + "x": -0.43430902881493, + "y": -0.9007639354957723 + }, + { + "x": -0.006600572580280955, + "y": -0.9999782159835345 + }, + { + "x": 0.159533317772414, + "y": -0.9871925448059895 + }, + { + "x": 0.4623589003429009, + "y": -0.8866928708824175 + }, + { + "x": 0.7181147203178272, + "y": -0.6959247433902955 + }, + { + "x": 0.9007639354957713, + "y": -0.43430902881493216 + }, + { + "x": 0.9994792934199674, + "y": -0.03226673247669394 + }, + { + "x": 1.614271289616012e-15, + "y": 1 + }, + { + "x": -1, + "y": 1.614271289616012e-15 + }, + { + "max": { + "#": 308 + }, + "min": { + "#": 309 + } + }, + { + "x": 500.5928191816928, + "y": 372.0827206436574 + }, + { + "x": 300.5928191816928, + "y": 319.17544992862184 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.68045067439004, + "y": 344.9345216608633 + }, + { + "x": 2.2242387175552873, + "y": 2.450294782906849 + }, + { + "x": 400.68045067439004, + "y": 342.0272509458277 + }, + { + "endCol": 10, + "endRow": 7, + "id": "6,10,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 318 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035602 + }, + [ + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300.5928191816928, + "y": 344.17544992862184 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 301.8653631556665, + "y": 336.3009448309671 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 305.55344562433197, + "y": 329.2280920541162 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 311.2816068180076, + "y": 323.6769328924677 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 318.4666997759765, + "y": 320.2125948771996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 475.5928191816928, + "y": 319.17544992862184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 483.4673242793475, + "y": 320.44799390259556 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 490.54017705619844, + "y": 324.136076371261 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 496.091336217847, + "y": 329.8642375649367 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 499.55567423311504, + "y": 337.0493305229056 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 500.5928191816928, + "y": 369.1754499286218 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 300.5928191816928, + "y": 369.1754499286218 + }, + { + "angle": -0.0000742614331990991, + "anglePrev": -0.0000639698275061411, + "angularSpeed": 0.000010291605692958008, + "angularVelocity": -0.000010291605692958008, + "area": 13710.388476459668, + "axes": { + "#": 334 + }, + "bounds": { + "#": 359 + }, + "collisionFilter": { + "#": 362 + }, + "constraintImpulse": { + "#": 363 + }, + "density": 0.001, + "force": { + "#": 364 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 119782.82093625488, + "inverseInertia": 0.000008348442557820311, + "inverseMass": 0.0729373935477445, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 13.710388476459668, + "motion": 0, + "parent": null, + "position": { + "#": 365 + }, + "positionImpulse": { + "#": 366 + }, + "positionPrev": { + "#": 367 + }, + "region": { + "#": 368 + }, + "render": { + "#": 369 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.903563565443142, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 371 + }, + "vertices": { + "#": 372 + } + }, + [ + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + } + ], + { + "x": -0.9971516338547646, + "y": -0.07542293484593252 + }, + { + "x": -0.9744286085890947, + "y": -0.22469732255441152 + }, + { + "x": -0.9294894113429186, + "y": -0.3688487958518979 + }, + { + "x": -0.8633586189050214, + "y": -0.5045908195383807 + }, + { + "x": -0.7775439590299612, + "y": -0.6288285869583329 + }, + { + "x": -0.7074749411225538, + "y": -0.7067384294656968 + }, + { + "x": -0.6517606134834002, + "y": -0.7584247508564989 + }, + { + "x": -0.5301400764228343, + "y": -0.8479100774082071 + }, + { + "x": -0.39643278102230145, + "y": -0.9180637505810391 + }, + { + "x": -0.25368714380352464, + "y": -0.9672863242436595 + }, + { + "x": -0.1051576480585314, + "y": -0.9944555641429125 + }, + { + "x": -0.000520767931689704, + "y": -0.9999998644003714 + }, + { + "x": 0.07542293484593252, + "y": -0.9971516338547646 + }, + { + "x": 0.22469732255441152, + "y": -0.9744286085890947 + }, + { + "x": 0.3688487958518979, + "y": -0.9294894113429186 + }, + { + "x": 0.5045908195383807, + "y": -0.8633586189050214 + }, + { + "x": 0.6288285869583329, + "y": -0.7775439590299612 + }, + { + "x": 0.7067384294656968, + "y": -0.7074749411225538 + }, + { + "x": 0.7584247508564989, + "y": -0.6517606134834002 + }, + { + "x": 0.8479100774082071, + "y": -0.5301400764228343 + }, + { + "x": 0.9180637505810391, + "y": -0.39643278102230145 + }, + { + "x": 0.9672863242436595, + "y": -0.25368714380352464 + }, + { + "x": 0.9944555641429125, + "y": -0.1051576480585314 + }, + { + "x": 0.9999998644003714, + "y": -0.000520767931689704 + }, + { + "max": { + "#": 360 + }, + "min": { + "#": 361 + } + }, + { + "x": 233.2847885253335, + "y": 196.06971990805894 + }, + { + "x": 103.85608223764963, + "y": 63.737798985368755 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 168.57026092675494, + "y": 128.45197767447405 + }, + { + "x": -0.2242222182463488, + "y": 1.3816267088675531 + }, + { + "x": 168.56991201728167, + "y": 125.54841412999443 + }, + { + "endCol": 4, + "endRow": 3, + "id": "2,4,1,3", + "startCol": 2, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 370 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0003489094732864828, + "y": 2.9035635444796233 + }, + [ + { + "#": 373 + }, + { + "#": 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 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 233.28443961586024, + "y": 142.82628894207022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.94278736706553, + "y": 147.34320543161962 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 231.92494914974233, + "y": 151.75719072792788 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230.2541308392982, + "y": 155.96760959143228 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 227.96842572097302, + "y": 159.87846793004945 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 225.11994599422184, + "y": 163.4006013856353 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 204.16673442808758, + "y": 184.37564887284535 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 200.73120752634347, + "y": 187.32800653072866 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 196.89032828564618, + "y": 189.729445160186 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 192.73166559818074, + "y": 191.52521393275998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 188.350033557724, + "y": 192.6743707952956 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 183.84532977617715, + "y": 193.15071591512614 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 154.19594965915877, + "y": 193.16615636357932 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 149.67903316960937, + "y": 192.82450411478456 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 145.26504787330109, + "y": 191.80666589746147 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 141.0546290097967, + "y": 190.13584758701728 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 137.14377067117948, + "y": 187.85014246869204 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 133.6216372155937, + "y": 185.0016627419409 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 112.64658972838359, + "y": 164.04845117580666 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 109.69423207050032, + "y": 160.61292427406255 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 107.292793441043, + "y": 156.7720450333652 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 105.497024668469, + "y": 152.61338234589982 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 104.34786780593335, + "y": 148.23175030544311 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 103.8715226861028, + "y": 143.7270465238962 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 103.85608223764963, + "y": 114.0776664068779 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 104.19773448644435, + "y": 109.56074991732852 + }, + { + "body": null, + "index": 26, + "isInternal": false, + "x": 105.2155727037675, + "y": 105.14676462102021 + }, + { + "body": null, + "index": 27, + "isInternal": false, + "x": 106.88639101421167, + "y": 100.9363457575158 + }, + { + "body": null, + "index": 28, + "isInternal": false, + "x": 109.17209613253685, + "y": 97.02548741889859 + }, + { + "body": null, + "index": 29, + "isInternal": false, + "x": 112.02057585928806, + "y": 93.50335396331278 + }, + { + "body": null, + "index": 30, + "isInternal": false, + "x": 132.9737874254223, + "y": 72.5283064761027 + }, + { + "body": null, + "index": 31, + "isInternal": false, + "x": 136.4093143271664, + "y": 69.5759488182194 + }, + { + "body": null, + "index": 32, + "isInternal": false, + "x": 140.2501935678637, + "y": 67.17451018876211 + }, + { + "body": null, + "index": 33, + "isInternal": false, + "x": 144.40885625532914, + "y": 65.3787414161881 + }, + { + "body": null, + "index": 34, + "isInternal": false, + "x": 148.79048829578588, + "y": 64.22958455365247 + }, + { + "body": null, + "index": 35, + "isInternal": false, + "x": 153.29519207733279, + "y": 63.7532394338219 + }, + { + "body": null, + "index": 36, + "isInternal": false, + "x": 182.9445721943511, + "y": 63.737798985368755 + }, + { + "body": null, + "index": 37, + "isInternal": false, + "x": 187.4614886839005, + "y": 64.07945123416349 + }, + { + "body": null, + "index": 38, + "isInternal": false, + "x": 191.8754739802088, + "y": 65.09728945148663 + }, + { + "body": null, + "index": 39, + "isInternal": false, + "x": 196.08589284371322, + "y": 66.76810776193078 + }, + { + "body": null, + "index": 40, + "isInternal": false, + "x": 199.9967511823304, + "y": 69.05381288025598 + }, + { + "body": null, + "index": 41, + "isInternal": false, + "x": 203.5188846379162, + "y": 71.90229260700717 + }, + { + "body": null, + "index": 42, + "isInternal": false, + "x": 224.49393212512626, + "y": 92.8555041731414 + }, + { + "body": null, + "index": 43, + "isInternal": false, + "x": 227.4462897830096, + "y": 96.29103107488551 + }, + { + "body": null, + "index": 44, + "isInternal": false, + "x": 229.84772841246686, + "y": 100.1319103155828 + }, + { + "body": null, + "index": 45, + "isInternal": false, + "x": 231.6434971850409, + "y": 104.29057300304827 + }, + { + "body": null, + "index": 46, + "isInternal": false, + "x": 232.7926540475765, + "y": 108.67220504350496 + }, + { + "body": null, + "index": 47, + "isInternal": false, + "x": 233.26899916740706, + "y": 113.1769088250519 + }, + { + "angle": 0.000017755561033535207, + "anglePrev": 0.000015285713315400413, + "angularSpeed": 0.000002469847718134793, + "angularVelocity": 0.000002469847718134793, + "area": 13066.632527319482, + "axes": { + "#": 422 + }, + "bounds": { + "#": 448 + }, + "collisionFilter": { + "#": 451 + }, + "constraintImpulse": { + "#": 452 + }, + "density": 0.001, + "force": { + "#": 453 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 110539.49232807996, + "inverseInertia": 0.000009046540552511418, + "inverseMass": 0.07653081219734448, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 13.066632527319483, + "motion": 0, + "parent": null, + "position": { + "#": 454 + }, + "positionImpulse": { + "#": 455 + }, + "positionPrev": { + "#": 456 + }, + "region": { + "#": 457 + }, + "render": { + "#": 458 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9069569422297974, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 460 + }, + "vertices": { + "#": 461 + } + }, + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "x": 0.9852677048717484, + "y": 0.1710191502047579 + }, + { + "x": 0.8700185482688567, + "y": 0.493018991184063 + }, + { + "x": 0.6530065709953358, + "y": 0.7573522418511175 + }, + { + "x": 0.2376037484847505, + "y": 0.9713621666021359 + }, + { + "x": 0.20246071149079908, + "y": 0.9792903860973207 + }, + { + "x": -0.016682954358455692, + "y": 0.9998608298327689 + }, + { + "x": -0.23501837962582614, + "y": 0.9719909265204336 + }, + { + "x": -0.44196784843605036, + "y": 0.8970308918586966 + }, + { + "x": -0.627505261364673, + "y": 0.7786123213510391 + }, + { + "x": -0.7681180412628724, + "y": 0.6403082653585602 + }, + { + "x": -0.8820317404065471, + "y": 0.47118999237610887 + }, + { + "x": -0.9769088052940107, + "y": 0.2136567016010228 + }, + { + "x": -0.9982001623543381, + "y": -0.05997029160986995 + }, + { + "x": -0.9443020389821498, + "y": -0.32908001940888787 + }, + { + "x": -0.7749466636484085, + "y": -0.6320266359103865 + }, + { + "x": -0.7394029091103814, + "y": -0.6732632011324435 + }, + { + "x": -0.574202164675582, + "y": -0.8187135482461956 + }, + { + "x": -0.38118299661364036, + "y": -0.9244996068645166 + }, + { + "x": -0.16969662182277145, + "y": -0.9854963503443018 + }, + { + "x": 0.05001106038275687, + "y": -0.998748663998802 + }, + { + "x": 0.230446281828576, + "y": -0.9730850482827204 + }, + { + "x": 0.46711810373532564, + "y": -0.8841949316540519 + }, + { + "x": 0.7377430766220066, + "y": -0.6750815898069624 + }, + { + "x": 0.9220769967987604, + "y": -0.3870064753651784 + }, + { + "x": 0.9999950006723606, + "y": -0.003162061081855418 + }, + { + "max": { + "#": 449 + }, + "min": { + "#": 450 + } + }, + { + "x": 371.42257078353265, + "y": 177.08425007896267 + }, + { + "x": 236.48777579157422, + "y": 49.854783781037135 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 310.461465430837, + "y": 112.03992895242892 + }, + { + "x": -0.08202457871443923, + "y": 0.6540520328413114 + }, + { + "x": 310.4611885006641, + "y": 109.13297202338995 + }, + { + "endCol": 7, + "endRow": 3, + "id": "4,7,1,3", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 459 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00027693017290403077, + "y": 2.9069569290389725 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 371.42229385335975, + "y": 150.77903192757236 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370.8374026948316, + "y": 154.1486801141807 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 369.15126141425134, + "y": 157.12417236770128 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 366.5610916606313, + "y": 159.3574764706549 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 313.2625385213704, + "y": 172.3947723939675 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 304.64059193986674, + "y": 174.17729314992368 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 295.83753741575197, + "y": 174.03041175157418 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.27985731887776, + "y": 171.96124417516128 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.38214634227313, + "y": 168.0700355673204 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 272.52702559597185, + "y": 162.5453036594949 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 240.24695545953725, + "y": 123.8219174618457 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 237.66055494878714, + "y": 118.9803729027578 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 236.48777579157422, + "y": 113.61804035357281 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 236.8169576404234, + "y": 108.13883779936565 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 238.62330485502503, + "y": 102.9554864645686 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 268.5428607721847, + "y": 66.27022872626603 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 274.4704583855847, + "y": 59.76031861679973 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 281.6786415544844, + "y": 54.7048820873487 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 289.8181947842195, + "y": 51.34884032359992 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 298.49478041148905, + "y": 49.854783781037135 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 307.2880431163984, + "y": 50.29509515060226 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 364.51405853402724, + "y": 63.8473766291127 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 367.5380344883027, + "y": 65.44493601667892 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 369.84683588680366, + "y": 67.96804177568261 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 371.17041085173145, + "y": 71.12157564755623 + }, + { + "angle": 8.018227243082391e-18, + "anglePrev": 7.162706756974813e-18, + "angularSpeed": 8.555204861075778e-19, + "angularVelocity": 8.555204861075778e-19, + "area": 3901.768915155755, + "axes": { + "#": 488 + }, + "bounds": { + "#": 500 + }, + "collisionFilter": { + "#": 503 + }, + "constraintImpulse": { + "#": 504 + }, + "density": 0.001, + "force": { + "#": 505 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 10483.195717051358, + "inverseInertia": 0.00009539075936295437, + "inverseMass": 0.2562940096517943, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.9017689151557553, + "motion": 0, + "parent": null, + "position": { + "#": 506 + }, + "positionImpulse": { + "#": 507 + }, + "positionPrev": { + "#": 508 + }, + "region": { + "#": 509 + }, + "render": { + "#": 510 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 512 + }, + "vertices": { + "#": 513 + } + }, + [ + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + } + ], + { + "x": 0.9737949578896212, + "y": 0.22742774674333552 + }, + { + "x": 0.7723230913374028, + "y": 0.635229913170844 + }, + { + "x": 0.41106258187586037, + "y": 0.9116071268817239 + }, + { + "x": -0.0352441120717713, + "y": 0.9993787332959775 + }, + { + "x": -0.5651881595455647, + "y": 0.8249620259802855 + }, + { + "x": -0.5791090852858076, + "y": -0.8152500642989458 + }, + { + "x": -0.28993668690197577, + "y": -0.9570458283636714 + }, + { + "x": 0.1639663617104109, + "y": -0.9864659305964147 + }, + { + "x": 0.5839458325943148, + "y": -0.8117926241323781 + }, + { + "x": 0.8831106947097263, + "y": -0.469164684188084 + }, + { + "x": 0.9998783521980776, + "y": -0.015597461513245228 + }, + { + "max": { + "#": 501 + }, + "min": { + "#": 502 + } + }, + { + "x": 448.7077849138314, + "y": 206.676052317658 + }, + { + "x": 367.8499536288875, + "y": 126.57430804704784 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 418.4607842772374, + "y": 165.14268786846338 + }, + { + "x": 0.32905702519118046, + "y": 0.4632352828875642 + }, + { + "x": 418.4607842772374, + "y": 162.2354171534277 + }, + { + "endCol": 9, + "endRow": 4, + "id": "7,9,2,4", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 511 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 448.7077849138314, + "y": 184.14467239261847 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 446.6388497142814, + "y": 193.00339211513284 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440.86009340162497, + "y": 200.02930013196135 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 432.5671032103499, + "y": 203.7687816026223 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 423.47564507208136, + "y": 203.44816204284422 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.8499536288875, + "y": 165.338550715135 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 418.7078317120869, + "y": 129.2118939430616 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 427.41418276308127, + "y": 126.57430804704784 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 436.3881717164657, + "y": 128.0659280544679 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 443.77313840963717, + "y": 133.37814745155134 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 448.04118108869494, + "y": 141.4119024684623 + }, + { + "max": { + "#": 526 + }, + "min": { + "#": 527 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [], + [ + { + "#": 530 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 531 + }, + "pointB": "", + "render": { + "#": 532 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/sleeping/sleeping-0.json b/tests/browser/refs/sleeping/sleeping-0.json new file mode 100644 index 00000000..88da7b4c --- /dev/null +++ b/tests/browser/refs/sleeping/sleeping-0.json @@ -0,0 +1,9198 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 1094 + }, + "events": { + "#": 1098 + }, + "gravity": { + "#": 1100 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 1092 + }, + "constraints": { + "#": 1093 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 116 + }, + { + "#": 140 + }, + { + "#": 164 + }, + { + "#": 188 + }, + { + "#": 215 + }, + { + "#": 243 + }, + { + "#": 300 + }, + { + "#": 324 + }, + { + "#": 348 + }, + { + "#": 372 + }, + { + "#": 396 + }, + { + "#": 420 + }, + { + "#": 452 + }, + { + "#": 476 + }, + { + "#": 504 + }, + { + "#": 528 + }, + { + "#": 552 + }, + { + "#": 609 + }, + { + "#": 633 + }, + { + "#": 657 + }, + { + "#": 714 + }, + { + "#": 738 + }, + { + "#": 762 + }, + { + "#": 786 + }, + { + "#": 813 + }, + { + "#": 840 + }, + { + "#": 864 + }, + { + "#": 891 + }, + { + "#": 915 + }, + { + "#": 942 + }, + { + "#": 966 + }, + { + "#": 990 + }, + { + "#": 1014 + }, + { + "#": 1044 + }, + { + "#": 1068 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1534.906434764454, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "events": { + "#": 101 + }, + "force": { + "#": 104 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 105 + }, + "positionImpulse": { + "#": 106 + }, + "positionPrev": { + "#": 107 + }, + "render": { + "#": 108 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 110 + }, + "vertices": { + "#": 111 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 86.40316358024691, + "y": 92.16409465020575 + }, + { + "x": 50, + "y": 49.99999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 102 + } + }, + [ + { + "#": 103 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 68.20158179012346, + "y": 71.08204732510288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 68.20158179012346, + "y": 71.08204732510288 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 109 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 50, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 86.40316358024691, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 86.40316358024691, + "y": 92.16409465020575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 50, + "y": 92.16409465020575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.52878634164, + "axes": { + "#": 117 + }, + "bounds": { + "#": 120 + }, + "collisionFilter": { + "#": 123 + }, + "constraintImpulse": { + "#": 124 + }, + "density": 0.001, + "events": { + "#": 125 + }, + "force": { + "#": 128 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 129 + }, + "positionImpulse": { + "#": 130 + }, + "positionPrev": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 121 + }, + "min": { + "#": 122 + } + }, + { + "x": 131.7190072016461, + "y": 99.00115740740739 + }, + { + "x": 86.40316358024691, + "y": 49.99999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 126 + } + }, + [ + { + "#": 127 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 109.0610853909465, + "y": 74.5005787037037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 109.0610853909465, + "y": 74.5005787037037 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 86.40316358024691, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 131.7190072016461, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 131.7190072016461, + "y": 99.00115740740739 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 86.40316358024691, + "y": 99.00115740740739 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1140.197701571206, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "events": { + "#": 149 + }, + "force": { + "#": 152 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 153 + }, + "positionImpulse": { + "#": 154 + }, + "positionPrev": { + "#": 155 + }, + "render": { + "#": 156 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 158 + }, + "vertices": { + "#": 159 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 170.93981481481484, + "y": 79.07124485596708 + }, + { + "x": 131.7190072016461, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 150 + } + }, + [ + { + "#": 151 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 151.32941100823047, + "y": 64.53562242798354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 151.32941100823047, + "y": 64.53562242798354 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 157 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 131.7190072016461, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 170.93981481481484, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170.93981481481484, + "y": 79.07124485596708 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 131.7190072016461, + "y": 79.07124485596708 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 752.4076041785743, + "axes": { + "#": 165 + }, + "bounds": { + "#": 168 + }, + "collisionFilter": { + "#": 171 + }, + "constraintImpulse": { + "#": 172 + }, + "density": 0.001, + "events": { + "#": 173 + }, + "force": { + "#": 176 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 177 + }, + "positionImpulse": { + "#": 178 + }, + "positionPrev": { + "#": 179 + }, + "render": { + "#": 180 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 182 + }, + "vertices": { + "#": 183 + } + }, + [ + { + "#": 166 + }, + { + "#": 167 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 169 + }, + "min": { + "#": 170 + } + }, + { + "x": 195.81712962962968, + "y": 80.24472736625515 + }, + { + "x": 170.93981481481484, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 174 + } + }, + [ + { + "#": 175 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 183.37847222222226, + "y": 65.12236368312757 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 183.37847222222226, + "y": 65.12236368312757 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 181 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170.93981481481484, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195.81712962962968, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.81712962962968, + "y": 80.24472736625515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 170.93981481481484, + "y": 80.24472736625515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2027.2541820000001, + "axes": { + "#": 189 + }, + "bounds": { + "#": 193 + }, + "collisionFilter": { + "#": 196 + }, + "constraintImpulse": { + "#": 197 + }, + "density": 0.001, + "events": { + "#": 198 + }, + "force": { + "#": 201 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 202 + }, + "positionImpulse": { + "#": 203 + }, + "positionPrev": { + "#": 204 + }, + "render": { + "#": 205 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 207 + }, + "vertices": { + "#": 208 + } + }, + [ + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + } + ], + { + "x": -0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 194 + }, + "min": { + "#": 195 + } + }, + { + "x": 244.19912962962968, + "y": 105.868 + }, + { + "x": 195.81712962962968, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 199 + } + }, + [ + { + "#": 200 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 220.00812962962968, + "y": 77.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220.00812962962968, + "y": 77.934 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 206 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 244.19912962962968, + "y": 91.901 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220.00812962962968, + "y": 105.868 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.81712962962968, + "y": 91.901 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195.81712962962968, + "y": 63.967 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.00812962962968, + "y": 50 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 244.19912962962968, + "y": 63.967 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4842.27229, + "axes": { + "#": 216 + }, + "bounds": { + "#": 222 + }, + "collisionFilter": { + "#": 225 + }, + "constraintImpulse": { + "#": 226 + }, + "density": 0.001, + "events": { + "#": 227 + }, + "force": { + "#": 230 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 231 + }, + "positionImpulse": { + "#": 232 + }, + "positionPrev": { + "#": 233 + }, + "render": { + "#": 234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 236 + }, + "vertices": { + "#": 237 + } + }, + [ + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0.30902000749156683, + "y": 0.95105553726894 + }, + { + "x": -0.8090188345853124, + "y": 0.5877827194518592 + }, + { + "x": -0.8090188345853124, + "y": -0.5877827194518592 + }, + { + "x": 0.30902000749156683, + "y": -0.95105553726894 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 223 + }, + "min": { + "#": 224 + } + }, + { + "x": 321.5277437444547, + "y": 135.84 + }, + { + "x": 239.8897437444547, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 228 + } + }, + [ + { + "#": 229 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 285.0181296296297, + "y": 92.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 285.0181296296297, + "y": 92.92 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 235 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 321.5277437444547, + "y": 119.446 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 271.07274374445467, + "y": 135.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.8897437444547, + "y": 92.92 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 271.07274374445467, + "y": 50 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.5277437444547, + "y": 66.394 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3079.0178339999993, + "axes": { + "#": 244 + }, + "bounds": { + "#": 258 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 261 + }, + "constraintImpulse": { + "#": 262 + }, + "density": 0.001, + "events": { + "#": 263 + }, + "force": { + "#": 266 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 267 + }, + "positionImpulse": { + "#": 268 + }, + "positionPrev": { + "#": 269 + }, + "render": { + "#": 270 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 272 + }, + "vertices": { + "#": 273 + } + }, + [ + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + } + ], + { + "x": -0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": -0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": -0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": -0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": -0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": -0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": 0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": 0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": 0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": 0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 259 + }, + "min": { + "#": 260 + } + }, + { + "x": 383.98774374445475, + "y": 112.918 + }, + { + "x": 321.5277437444547, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 264 + } + }, + [ + { + "#": 265 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 352.75774374445473, + "y": 81.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.75774374445473, + "y": 81.459 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 271 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 383.98774374445475, + "y": 85.251 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 382.17274374445475, + "y": 92.61500000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 378.6477437444547, + "y": 99.33 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 373.6187437444547, + "y": 105.007 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 367.37774374445473, + "y": 109.315 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 360.2867437444547, + "y": 112.004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 352.75774374445473, + "y": 112.918 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 345.22874374445473, + "y": 112.004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.1377437444547, + "y": 109.315 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 331.89674374445474, + "y": 105.007 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 326.86774374445474, + "y": 99.33 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 323.3427437444547, + "y": 92.61500000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 321.5277437444547, + "y": 85.251 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 321.5277437444547, + "y": 77.667 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 323.3427437444547, + "y": 70.303 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 326.86774374445474, + "y": 63.58800000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 331.89674374445474, + "y": 57.911 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 338.1377437444547, + "y": 53.603 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 345.22874374445473, + "y": 50.914 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 352.75774374445473, + "y": 50 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 360.2867437444547, + "y": 50.914 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 367.37774374445473, + "y": 53.603 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 373.6187437444547, + "y": 57.911 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 378.6477437444547, + "y": 63.58800000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 382.17274374445475, + "y": 70.303 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 383.98774374445475, + "y": 77.667 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1329.4167625219097, + "axes": { + "#": 301 + }, + "bounds": { + "#": 304 + }, + "collisionFilter": { + "#": 307 + }, + "constraintImpulse": { + "#": 308 + }, + "density": 0.001, + "events": { + "#": 309 + }, + "force": { + "#": 312 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 313 + }, + "positionImpulse": { + "#": 314 + }, + "positionPrev": { + "#": 315 + }, + "render": { + "#": 316 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 318 + }, + "vertices": { + "#": 319 + } + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 305 + }, + "min": { + "#": 306 + } + }, + { + "x": 432.76539292140944, + "y": 77.25462962962963 + }, + { + "x": 383.98774374445475, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 310 + } + }, + [ + { + "#": 311 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 408.3765683329321, + "y": 63.62731481481482 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 408.3765683329321, + "y": 63.62731481481482 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 317 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 383.98774374445475, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 432.76539292140944, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 432.76539292140944, + "y": 77.25462962962963 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 383.98774374445475, + "y": 77.25462962962963 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2858.632357296012, + "axes": { + "#": 325 + }, + "bounds": { + "#": 328 + }, + "collisionFilter": { + "#": 331 + }, + "constraintImpulse": { + "#": 332 + }, + "density": 0.001, + "events": { + "#": 333 + }, + "force": { + "#": 336 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 337 + }, + "positionImpulse": { + "#": 338 + }, + "positionPrev": { + "#": 339 + }, + "render": { + "#": 340 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 342 + }, + "vertices": { + "#": 343 + } + }, + [ + { + "#": 326 + }, + { + "#": 327 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 329 + }, + "min": { + "#": 330 + } + }, + { + "x": 541.6199882574863, + "y": 76.26101680384087 + }, + { + "x": 432.76539292140944, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 334 + } + }, + [ + { + "#": 335 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 487.19269058944786, + "y": 63.13050840192044 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.19269058944786, + "y": 63.13050840192044 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 341 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 432.76539292140944, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 541.6199882574863, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 541.6199882574863, + "y": 76.26101680384087 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 432.76539292140944, + "y": 76.26101680384087 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.8394636035856, + "axes": { + "#": 349 + }, + "bounds": { + "#": 352 + }, + "collisionFilter": { + "#": 355 + }, + "constraintImpulse": { + "#": 356 + }, + "density": 0.001, + "events": { + "#": 357 + }, + "force": { + "#": 360 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 361 + }, + "positionImpulse": { + "#": 362 + }, + "positionPrev": { + "#": 363 + }, + "render": { + "#": 364 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 366 + }, + "vertices": { + "#": 367 + } + }, + [ + { + "#": 350 + }, + { + "#": 351 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 353 + }, + "min": { + "#": 354 + } + }, + { + "x": 580.3757752945232, + "y": 73.91486625514403 + }, + { + "x": 541.6199882574863, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 358 + } + }, + [ + { + "#": 359 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 560.9978817760048, + "y": 61.95743312757202 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560.9978817760048, + "y": 61.95743312757202 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 365 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 541.6199882574863, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.3757752945232, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580.3757752945232, + "y": 73.91486625514403 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 541.6199882574863, + "y": 73.91486625514403 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.4501361223834, + "axes": { + "#": 373 + }, + "bounds": { + "#": 376 + }, + "collisionFilter": { + "#": 379 + }, + "constraintImpulse": { + "#": 380 + }, + "density": 0.001, + "events": { + "#": 381 + }, + "force": { + "#": 384 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 385 + }, + "positionImpulse": { + "#": 386 + }, + "positionPrev": { + "#": 387 + }, + "render": { + "#": 388 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 390 + }, + "vertices": { + "#": 391 + } + }, + [ + { + "#": 374 + }, + { + "#": 375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 377 + }, + "min": { + "#": 378 + } + }, + { + "x": 616.1460942245644, + "y": 86.07600308641975 + }, + { + "x": 580.3757752945232, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 382 + } + }, + [ + { + "#": 383 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 598.2609347595438, + "y": 68.03800154320987 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 598.2609347595438, + "y": 68.03800154320987 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 389 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580.3757752945232, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.1460942245644, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.1460942245644, + "y": 86.07600308641975 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580.3757752945232, + "y": 86.07600308641975 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.2925932011974, + "axes": { + "#": 397 + }, + "bounds": { + "#": 400 + }, + "collisionFilter": { + "#": 403 + }, + "constraintImpulse": { + "#": 404 + }, + "density": 0.001, + "events": { + "#": 405 + }, + "force": { + "#": 408 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 409 + }, + "positionImpulse": { + "#": 410 + }, + "positionPrev": { + "#": 411 + }, + "render": { + "#": 412 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 414 + }, + "vertices": { + "#": 415 + } + }, + [ + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 401 + }, + "min": { + "#": 402 + } + }, + { + "x": 646.7010067760048, + "y": 87.58127572016463 + }, + { + "x": 616.1460942245644, + "y": 50.00000000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 406 + } + }, + [ + { + "#": 407 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 631.4235505002846, + "y": 68.79063786008231 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 631.4235505002846, + "y": 68.79063786008231 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 413 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 616.1460942245644, + "y": 50.00000000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 646.7010067760048, + "y": 50.00000000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 646.7010067760048, + "y": 87.58127572016463 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 616.1460942245644, + "y": 87.58127572016463 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1926.7878890000002, + "axes": { + "#": 421 + }, + "bounds": { + "#": 429 + }, + "collisionFilter": { + "#": 432 + }, + "constraintImpulse": { + "#": 433 + }, + "density": 0.001, + "events": { + "#": 434 + }, + "force": { + "#": 437 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 438 + }, + "positionImpulse": { + "#": 439 + }, + "positionPrev": { + "#": 440 + }, + "render": { + "#": 441 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 443 + }, + "vertices": { + "#": 444 + } + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + } + ], + { + "x": 0.6234921001781484, + "y": 0.7818296496139309 + }, + { + "x": -0.22251820971292155, + "y": 0.9749285339685962 + }, + { + "x": -0.9009815501548849, + "y": 0.43385740316433524 + }, + { + "x": -0.9009815501548849, + "y": -0.43385740316433524 + }, + { + "x": -0.22251820971292155, + "y": -0.9749285339685962 + }, + { + "x": 0.6234921001781484, + "y": -0.7818296496139309 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 430 + }, + "min": { + "#": 431 + } + }, + { + "x": 99.1293088678909, + "y": 187.58 + }, + { + "x": 48.6863088678909, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 435 + } + }, + [ + { + "#": 436 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 75.22149999999999, + "y": 161.71 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 75.22149999999999, + "y": 161.71 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 442 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 99.1293088678909, + "y": 173.223 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 81.1263088678909, + "y": 187.58 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 58.676308867890896, + "y": 182.45600000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 48.6863088678909, + "y": 161.71 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 58.676308867890896, + "y": 140.964 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 81.1263088678909, + "y": 135.84 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 99.1293088678909, + "y": 150.197 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1097.755875, + "axes": { + "#": 453 + }, + "bounds": { + "#": 457 + }, + "collisionFilter": { + "#": 460 + }, + "constraintImpulse": { + "#": 461 + }, + "density": 0.001, + "events": { + "#": 462 + }, + "force": { + "#": 465 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 927.6617490689248, + "inverseInertia": 0.0010779791243992539, + "inverseMass": 0.9109493492804126, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.097755875, + "motion": 0, + "parent": null, + "position": { + "#": 466 + }, + "positionImpulse": { + "#": 467 + }, + "positionPrev": { + "#": 468 + }, + "render": { + "#": 469 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 471 + }, + "vertices": { + "#": 472 + } + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + } + ], + { + "x": -0.49999466010690446, + "y": 0.8660284867512045 + }, + { + "x": -0.49999466010690446, + "y": -0.8660284867512045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 458 + }, + "min": { + "#": 459 + } + }, + { + "x": 135.4668088678909, + "y": 186.19000000000003 + }, + { + "x": 91.8618088678909, + "y": 135.84000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 463 + } + }, + [ + { + "#": 464 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 120.9318088678909, + "y": 161.01500000000001 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120.9318088678909, + "y": 161.01500000000001 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 470 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 135.4668088678909, + "y": 186.19000000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 91.8618088678909, + "y": 161.01500000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 135.4668088678909, + "y": 135.84000000000003 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 477 + }, + "bounds": { + "#": 483 + }, + "collisionFilter": { + "#": 486 + }, + "constraintImpulse": { + "#": 487 + }, + "density": 0.001, + "events": { + "#": 488 + }, + "force": { + "#": 491 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 492 + }, + "positionImpulse": { + "#": 493 + }, + "positionPrev": { + "#": 494 + }, + "render": { + "#": 495 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 497 + }, + "vertices": { + "#": 498 + } + }, + [ + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 484 + }, + "min": { + "#": 485 + } + }, + { + "x": 170.37176614771653, + "y": 174.58599999999998 + }, + { + "x": 133.5217661477165, + "y": 135.83999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 489 + } + }, + [ + { + "#": 490 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 153.89180886789092, + "y": 155.213 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.89180886789092, + "y": 155.213 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 496 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 170.37176614771653, + "y": 167.186 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 147.59676614771652, + "y": 174.58599999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 133.5217661477165, + "y": 155.213 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 147.59676614771652, + "y": 135.83999999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 170.37176614771653, + "y": 143.24 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.454244, + "axes": { + "#": 505 + }, + "bounds": { + "#": 508 + }, + "collisionFilter": { + "#": 511 + }, + "constraintImpulse": { + "#": 512 + }, + "density": 0.001, + "events": { + "#": 513 + }, + "force": { + "#": 516 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 517 + }, + "positionImpulse": { + "#": 518 + }, + "positionPrev": { + "#": 519 + }, + "render": { + "#": 520 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 522 + }, + "vertices": { + "#": 523 + } + }, + [ + { + "#": 506 + }, + { + "#": 507 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 509 + }, + "min": { + "#": 510 + } + }, + { + "x": 205.0337661477165, + "y": 170.50199999999998 + }, + { + "x": 170.37176614771653, + "y": 135.83999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 514 + } + }, + [ + { + "#": 515 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 187.70276614771652, + "y": 153.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.70276614771652, + "y": 153.171 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 521 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 205.0337661477165, + "y": 170.50199999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 170.37176614771653, + "y": 170.50199999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 170.37176614771653, + "y": 135.83999999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 205.0337661477165, + "y": 135.83999999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1990.733346252218, + "axes": { + "#": 529 + }, + "bounds": { + "#": 532 + }, + "collisionFilter": { + "#": 535 + }, + "constraintImpulse": { + "#": 536 + }, + "density": 0.001, + "events": { + "#": 537 + }, + "force": { + "#": 540 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 541 + }, + "positionImpulse": { + "#": 542 + }, + "positionPrev": { + "#": 543 + }, + "render": { + "#": 544 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 546 + }, + "vertices": { + "#": 547 + } + }, + [ + { + "#": 530 + }, + { + "#": 531 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 533 + }, + "min": { + "#": 534 + } + }, + { + "x": 299.85749728626246, + "y": 156.83404149519893 + }, + { + "x": 205.0337661477165, + "y": 135.84000000000003 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 538 + } + }, + [ + { + "#": 539 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 252.44563171698948, + "y": 146.33702074759947 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 252.44563171698948, + "y": 146.33702074759947 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 545 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 205.0337661477165, + "y": 135.84000000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 299.85749728626246, + "y": 135.84000000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 299.85749728626246, + "y": 156.83404149519893 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 205.0337661477165, + "y": 156.83404149519893 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7321.24308, + "axes": { + "#": 553 + }, + "bounds": { + "#": 567 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 570 + }, + "constraintImpulse": { + "#": 571 + }, + "density": 0.001, + "events": { + "#": 572 + }, + "force": { + "#": 575 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 576 + }, + "positionImpulse": { + "#": 577 + }, + "positionPrev": { + "#": 578 + }, + "render": { + "#": 579 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 581 + }, + "vertices": { + "#": 582 + } + }, + [ + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 568 + }, + "min": { + "#": 569 + } + }, + { + "x": 396.1714972862624, + "y": 232.85999999999999 + }, + { + "x": 299.85749728626246, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 573 + } + }, + [ + { + "#": 574 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 348.01449728626244, + "y": 184.35 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.01449728626244, + "y": 184.35 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 580 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.1714972862624, + "y": 190.197 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 393.37249728626244, + "y": 201.552 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 387.93749728626244, + "y": 211.90699999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.18249728626245, + "y": 220.661 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 370.5584972862624, + "y": 227.304 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 359.6234972862624, + "y": 231.451 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.01449728626244, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 336.40549728626246, + "y": 231.451 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 325.47049728626246, + "y": 227.304 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 315.84649728626243, + "y": 220.661 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 308.09149728626244, + "y": 211.90699999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 302.65649728626244, + "y": 201.552 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 299.85749728626246, + "y": 190.197 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 299.85749728626246, + "y": 178.503 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 302.65649728626244, + "y": 167.148 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.09149728626244, + "y": 156.793 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 315.84649728626243, + "y": 148.039 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 325.47049728626246, + "y": 141.396 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 336.40549728626246, + "y": 137.249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 348.01449728626244, + "y": 135.84 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 359.6234972862624, + "y": 137.249 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 370.5584972862624, + "y": 141.396 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 380.18249728626245, + "y": 148.039 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 387.93749728626244, + "y": 156.793 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 393.37249728626244, + "y": 167.148 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 396.1714972862624, + "y": 178.503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 610 + }, + "bounds": { + "#": 613 + }, + "collisionFilter": { + "#": 616 + }, + "constraintImpulse": { + "#": 617 + }, + "density": 0.001, + "events": { + "#": 618 + }, + "force": { + "#": 621 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 622 + }, + "positionImpulse": { + "#": 623 + }, + "positionPrev": { + "#": 624 + }, + "render": { + "#": 625 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 627 + }, + "vertices": { + "#": 628 + } + }, + [ + { + "#": 611 + }, + { + "#": 612 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 614 + }, + "min": { + "#": 615 + } + }, + { + "x": 480.4041790420924, + "y": 159.99646433470505 + }, + { + "x": 396.1714972862624, + "y": 135.83999999999997 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 619 + } + }, + [ + { + "#": 620 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 438.2878381641774, + "y": 147.91823216735253 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.2878381641774, + "y": 147.91823216735253 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 626 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.1714972862624, + "y": 135.83999999999997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480.4041790420924, + "y": 135.83999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480.4041790420924, + "y": 159.99646433470505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.1714972862624, + "y": 159.99646433470505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 634 + }, + "bounds": { + "#": 637 + }, + "collisionFilter": { + "#": 640 + }, + "constraintImpulse": { + "#": 641 + }, + "density": 0.001, + "events": { + "#": 642 + }, + "force": { + "#": 645 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 646 + }, + "positionImpulse": { + "#": 647 + }, + "positionPrev": { + "#": 648 + }, + "render": { + "#": 649 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 651 + }, + "vertices": { + "#": 652 + } + }, + [ + { + "#": 635 + }, + { + "#": 636 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 638 + }, + "min": { + "#": 639 + } + }, + { + "x": 529.7907531161663, + "y": 156.7050977366255 + }, + { + "x": 480.4041790420924, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 643 + } + }, + [ + { + "#": 644 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0974660791294, + "y": 146.27254886831275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0974660791294, + "y": 146.27254886831275 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 650 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.4041790420924, + "y": 135.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 529.7907531161663, + "y": 135.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 529.7907531161663, + "y": 156.7050977366255 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.4041790420924, + "y": 156.7050977366255 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2157.165332, + "axes": { + "#": 658 + }, + "bounds": { + "#": 672 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "density": 0.001, + "events": { + "#": 677 + }, + "force": { + "#": 680 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 681 + }, + "positionImpulse": { + "#": 682 + }, + "positionPrev": { + "#": 683 + }, + "render": { + "#": 684 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 686 + }, + "vertices": { + "#": 687 + } + }, + [ + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": -0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": -0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": -0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": -0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": -0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": -0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": 0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": 0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": 0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": 0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 673 + }, + "min": { + "#": 674 + } + }, + { + "x": 582.0707531161663, + "y": 188.504 + }, + { + "x": 529.7907531161663, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 678 + } + }, + [ + { + "#": 679 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 555.9307531161663, + "y": 162.172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 555.9307531161663, + "y": 162.172 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 685 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 582.0707531161663, + "y": 165.346 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.5517531161663, + "y": 171.509 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 577.6017531161664, + "y": 177.13 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 573.3917531161663, + "y": 181.882 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 568.1677531161663, + "y": 185.488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 562.2327531161664, + "y": 187.739 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 555.9307531161663, + "y": 188.504 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 549.6287531161663, + "y": 187.739 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 543.6937531161664, + "y": 185.488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.4697531161663, + "y": 181.882 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 534.2597531161664, + "y": 177.13 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 531.3097531161663, + "y": 171.509 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 529.7907531161663, + "y": 165.346 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 529.7907531161663, + "y": 158.998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 531.3097531161663, + "y": 152.83499999999998 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 534.2597531161664, + "y": 147.214 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 538.4697531161663, + "y": 142.462 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 543.6937531161664, + "y": 138.856 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 549.6287531161663, + "y": 136.605 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 555.9307531161663, + "y": 135.84 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 562.2327531161664, + "y": 136.605 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 568.1677531161663, + "y": 138.856 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 573.3917531161663, + "y": 142.462 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 577.6017531161664, + "y": 147.214 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 580.5517531161663, + "y": 152.83499999999998 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 582.0707531161663, + "y": 158.998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2399.6281959999997, + "axes": { + "#": 715 + }, + "bounds": { + "#": 718 + }, + "collisionFilter": { + "#": 721 + }, + "constraintImpulse": { + "#": 722 + }, + "density": 0.001, + "events": { + "#": 723 + }, + "force": { + "#": 726 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 727 + }, + "positionImpulse": { + "#": 728 + }, + "positionPrev": { + "#": 729 + }, + "render": { + "#": 730 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 732 + }, + "vertices": { + "#": 733 + } + }, + [ + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 719 + }, + "min": { + "#": 720 + } + }, + { + "x": 631.0567531161664, + "y": 184.826 + }, + { + "x": 582.0707531161663, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 724 + } + }, + [ + { + "#": 725 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 606.5637531161664, + "y": 160.333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 606.5637531161664, + "y": 160.333 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 731 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.0567531161664, + "y": 184.826 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 582.0707531161663, + "y": 184.826 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 582.0707531161663, + "y": 135.84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 631.0567531161664, + "y": 135.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 739 + }, + "bounds": { + "#": 742 + }, + "collisionFilter": { + "#": 745 + }, + "constraintImpulse": { + "#": 746 + }, + "density": 0.001, + "events": { + "#": 747 + }, + "force": { + "#": 750 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 751 + }, + "positionImpulse": { + "#": 752 + }, + "positionPrev": { + "#": 753 + }, + "render": { + "#": 754 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 756 + }, + "vertices": { + "#": 757 + } + }, + [ + { + "#": 740 + }, + { + "#": 741 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 743 + }, + "min": { + "#": 744 + } + }, + { + "x": 666.4696903589647, + "y": 177.90893004115227 + }, + { + "x": 631.0567531161664, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 748 + } + }, + [ + { + "#": 749 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 648.7632217375656, + "y": 156.87446502057614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 648.7632217375656, + "y": 156.87446502057614 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 755 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.0567531161664, + "y": 135.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 666.4696903589647, + "y": 135.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 666.4696903589647, + "y": 177.90893004115227 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 631.0567531161664, + "y": 177.90893004115227 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 763 + }, + "bounds": { + "#": 766 + }, + "collisionFilter": { + "#": 769 + }, + "constraintImpulse": { + "#": 770 + }, + "density": 0.001, + "events": { + "#": 771 + }, + "force": { + "#": 774 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 775 + }, + "positionImpulse": { + "#": 776 + }, + "positionPrev": { + "#": 777 + }, + "render": { + "#": 778 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 780 + }, + "vertices": { + "#": 781 + } + }, + [ + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 767 + }, + "min": { + "#": 768 + } + }, + { + "x": 708.2335792478536, + "y": 178.1101903292181 + }, + { + "x": 666.4696903589647, + "y": 135.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 772 + } + }, + [ + { + "#": 773 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 687.3516348034092, + "y": 156.97509516460906 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.3516348034092, + "y": 156.97509516460906 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 779 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 666.4696903589647, + "y": 135.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 708.2335792478536, + "y": 135.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 708.2335792478536, + "y": 178.1101903292181 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 666.4696903589647, + "y": 178.1101903292181 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1919.5457599999997, + "axes": { + "#": 787 + }, + "bounds": { + "#": 791 + }, + "collisionFilter": { + "#": 794 + }, + "constraintImpulse": { + "#": 795 + }, + "density": 0.001, + "events": { + "#": 796 + }, + "force": { + "#": 799 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 800 + }, + "positionImpulse": { + "#": 801 + }, + "positionPrev": { + "#": 802 + }, + "render": { + "#": 803 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 805 + }, + "vertices": { + "#": 806 + } + }, + [ + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + } + ], + { + "x": -0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 792 + }, + "min": { + "#": 793 + } + }, + { + "x": 97.07999999999998, + "y": 287.222 + }, + { + "x": 49.99999999999999, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 797 + } + }, + [ + { + "#": 798 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 73.53999999999999, + "y": 260.041 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.53999999999999, + "y": 260.041 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 804 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 97.07999999999998, + "y": 273.632 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 73.53999999999999, + "y": 287.222 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 49.99999999999999, + "y": 273.632 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 49.99999999999999, + "y": 246.45 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 73.53999999999999, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 97.07999999999998, + "y": 246.45 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6052.328004, + "axes": { + "#": 814 + }, + "bounds": { + "#": 818 + }, + "collisionFilter": { + "#": 821 + }, + "constraintImpulse": { + "#": 822 + }, + "density": 0.001, + "events": { + "#": 823 + }, + "force": { + "#": 826 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 827 + }, + "positionImpulse": { + "#": 828 + }, + "positionPrev": { + "#": 829 + }, + "render": { + "#": 830 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 832 + }, + "vertices": { + "#": 833 + } + }, + [ + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "x": -0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 819 + }, + "min": { + "#": 820 + } + }, + { + "x": 180.678, + "y": 329.39 + }, + { + "x": 97.07999999999998, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 824 + } + }, + [ + { + "#": 825 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 138.879, + "y": 281.125 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.879, + "y": 281.125 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 831 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.678, + "y": 305.25800000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 138.879, + "y": 329.39 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 97.07999999999998, + "y": 305.25800000000004 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 97.07999999999998, + "y": 256.99199999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 138.879, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 180.678, + "y": 256.99199999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 841 + }, + "bounds": { + "#": 844 + }, + "collisionFilter": { + "#": 847 + }, + "constraintImpulse": { + "#": 848 + }, + "density": 0.001, + "events": { + "#": 849 + }, + "force": { + "#": 852 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 853 + }, + "positionImpulse": { + "#": 854 + }, + "positionPrev": { + "#": 855 + }, + "render": { + "#": 856 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 858 + }, + "vertices": { + "#": 859 + } + }, + [ + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 845 + }, + "min": { + "#": 846 + } + }, + { + "x": 225.82936316872429, + "y": 282.02846707818924 + }, + { + "x": 180.678, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 850 + } + }, + [ + { + "#": 851 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 203.25368158436214, + "y": 257.4442335390946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 203.25368158436214, + "y": 257.4442335390946 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 857 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.678, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225.82936316872429, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.82936316872429, + "y": 282.02846707818924 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180.678, + "y": 282.02846707818924 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2601.1074479999997, + "axes": { + "#": 865 + }, + "bounds": { + "#": 869 + }, + "collisionFilter": { + "#": 872 + }, + "constraintImpulse": { + "#": 873 + }, + "density": 0.001, + "events": { + "#": 874 + }, + "force": { + "#": 877 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 878 + }, + "positionImpulse": { + "#": 879 + }, + "positionPrev": { + "#": 880 + }, + "render": { + "#": 881 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 883 + }, + "vertices": { + "#": 884 + } + }, + [ + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "x": -0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 870 + }, + "min": { + "#": 871 + } + }, + { + "x": 280.63336316872426, + "y": 296.14199999999994 + }, + { + "x": 225.82936316872429, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 875 + } + }, + [ + { + "#": 876 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 253.23136316872427, + "y": 264.501 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.23136316872427, + "y": 264.501 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 882 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280.63336316872426, + "y": 280.322 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 253.23136316872427, + "y": 296.14199999999994 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.82936316872429, + "y": 280.322 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225.82936316872429, + "y": 248.67999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 253.23136316872427, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.63336316872426, + "y": 248.67999999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1413.3088360000002, + "axes": { + "#": 892 + }, + "bounds": { + "#": 895 + }, + "collisionFilter": { + "#": 898 + }, + "constraintImpulse": { + "#": 899 + }, + "density": 0.001, + "events": { + "#": 900 + }, + "force": { + "#": 903 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 904 + }, + "positionImpulse": { + "#": 905 + }, + "positionPrev": { + "#": 906 + }, + "render": { + "#": 907 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 909 + }, + "vertices": { + "#": 910 + } + }, + [ + { + "#": 893 + }, + { + "#": 894 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 896 + }, + "min": { + "#": 897 + } + }, + { + "x": 318.2273631687243, + "y": 270.45399999999995 + }, + { + "x": 280.63336316872426, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 901 + } + }, + [ + { + "#": 902 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 299.4303631687243, + "y": 251.65699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 299.4303631687243, + "y": 251.65699999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 908 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.2273631687243, + "y": 270.45399999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280.63336316872426, + "y": 270.45399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280.63336316872426, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 318.2273631687243, + "y": 232.85999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5460.808751999999, + "axes": { + "#": 916 + }, + "bounds": { + "#": 920 + }, + "collisionFilter": { + "#": 923 + }, + "constraintImpulse": { + "#": 924 + }, + "density": 0.001, + "events": { + "#": 925 + }, + "force": { + "#": 928 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 929 + }, + "positionImpulse": { + "#": 930 + }, + "positionPrev": { + "#": 931 + }, + "render": { + "#": 932 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 934 + }, + "vertices": { + "#": 935 + } + }, + [ + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + } + ], + { + "x": -0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 921 + }, + "min": { + "#": 922 + } + }, + { + "x": 397.6353631687243, + "y": 324.5519999999999 + }, + { + "x": 318.2273631687243, + "y": 232.85999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 926 + } + }, + [ + { + "#": 927 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 357.9313631687243, + "y": 278.70599999999996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.9313631687243, + "y": 278.70599999999996 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 933 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.6353631687243, + "y": 301.62899999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 357.9313631687243, + "y": 324.5519999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 318.2273631687243, + "y": 301.62899999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 318.2273631687243, + "y": 255.78299999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 357.9313631687243, + "y": 232.85999999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 397.6353631687243, + "y": 255.78299999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 943 + }, + "bounds": { + "#": 946 + }, + "collisionFilter": { + "#": 949 + }, + "constraintImpulse": { + "#": 950 + }, + "density": 0.001, + "events": { + "#": 951 + }, + "force": { + "#": 954 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 955 + }, + "positionImpulse": { + "#": 956 + }, + "positionPrev": { + "#": 957 + }, + "render": { + "#": 958 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 960 + }, + "vertices": { + "#": 961 + } + }, + [ + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 947 + }, + "min": { + "#": 948 + } + }, + { + "x": 417.80588786008235, + "y": 255.2497890946502 + }, + { + "x": 397.6353631687243, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 952 + } + }, + [ + { + "#": 953 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 407.7206255144033, + "y": 244.0548945473251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 407.7206255144033, + "y": 244.0548945473251 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 959 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.6353631687243, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 417.80588786008235, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 417.80588786008235, + "y": 255.2497890946502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 397.6353631687243, + "y": 255.2497890946502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 967 + }, + "bounds": { + "#": 970 + }, + "collisionFilter": { + "#": 973 + }, + "constraintImpulse": { + "#": 974 + }, + "density": 0.001, + "events": { + "#": 975 + }, + "force": { + "#": 978 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 979 + }, + "positionImpulse": { + "#": 980 + }, + "positionPrev": { + "#": 981 + }, + "render": { + "#": 982 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 984 + }, + "vertices": { + "#": 985 + } + }, + [ + { + "#": 968 + }, + { + "#": 969 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 971 + }, + "min": { + "#": 972 + } + }, + { + "x": 519.6390497256516, + "y": 262.5328395061729 + }, + { + "x": 417.80588786008235, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 976 + } + }, + [ + { + "#": 977 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 468.722468792867, + "y": 247.69641975308642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 468.722468792867, + "y": 247.69641975308642 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 983 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.80588786008235, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 519.6390497256516, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 519.6390497256516, + "y": 262.5328395061729 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 417.80588786008235, + "y": 262.5328395061729 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 991 + }, + "bounds": { + "#": 994 + }, + "collisionFilter": { + "#": 997 + }, + "constraintImpulse": { + "#": 998 + }, + "density": 0.001, + "events": { + "#": 999 + }, + "force": { + "#": 1002 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 1003 + }, + "positionImpulse": { + "#": 1004 + }, + "positionPrev": { + "#": 1005 + }, + "render": { + "#": 1006 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1008 + }, + "vertices": { + "#": 1009 + } + }, + [ + { + "#": 992 + }, + { + "#": 993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 995 + }, + "min": { + "#": 996 + } + }, + { + "x": 559.7105517832647, + "y": 254.24027263374484 + }, + { + "x": 519.6390497256516, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1000 + } + }, + [ + { + "#": 1001 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 539.6748007544581, + "y": 243.5501363168724 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.6748007544581, + "y": 243.5501363168724 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1007 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 519.6390497256516, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 559.7105517832647, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 559.7105517832647, + "y": 254.24027263374484 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 519.6390497256516, + "y": 254.24027263374484 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 1015 + }, + "bounds": { + "#": 1020 + }, + "collisionFilter": { + "#": 1023 + }, + "constraintImpulse": { + "#": 1024 + }, + "density": 0.001, + "events": { + "#": 1025 + }, + "force": { + "#": 1028 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 1029 + }, + "positionImpulse": { + "#": 1030 + }, + "positionPrev": { + "#": 1031 + }, + "render": { + "#": 1032 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1034 + }, + "vertices": { + "#": 1035 + } + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1021 + }, + "min": { + "#": 1022 + } + }, + { + "x": 629.9625517832646, + "y": 303.11199999999997 + }, + { + "x": 559.7105517832647, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1026 + } + }, + [ + { + "#": 1027 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 594.8365517832647, + "y": 267.986 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 594.8365517832647, + "y": 267.986 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1033 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 629.9625517832646, + "y": 282.536 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 609.3865517832646, + "y": 303.11199999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580.2865517832647, + "y": 303.11199999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.7105517832647, + "y": 282.536 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 559.7105517832647, + "y": 253.43599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 580.2865517832647, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 609.3865517832646, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 629.9625517832646, + "y": 253.43599999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 1045 + }, + "bounds": { + "#": 1048 + }, + "collisionFilter": { + "#": 1051 + }, + "constraintImpulse": { + "#": 1052 + }, + "density": 0.001, + "events": { + "#": 1053 + }, + "force": { + "#": 1056 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 1057 + }, + "positionImpulse": { + "#": 1058 + }, + "positionPrev": { + "#": 1059 + }, + "render": { + "#": 1060 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1062 + }, + "vertices": { + "#": 1063 + } + }, + [ + { + "#": 1046 + }, + { + "#": 1047 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1049 + }, + "min": { + "#": 1050 + } + }, + { + "x": 719.4668384773661, + "y": 254.81584705075446 + }, + { + "x": 629.9625517832646, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1054 + } + }, + [ + { + "#": 1055 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 674.7146951303154, + "y": 243.83792352537722 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 674.7146951303154, + "y": 243.83792352537722 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1061 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 629.9625517832646, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 719.4668384773661, + "y": 232.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 719.4668384773661, + "y": 254.81584705075446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 629.9625517832646, + "y": 254.81584705075446 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1492.5256200000001, + "axes": { + "#": 1069 + }, + "bounds": { + "#": 1073 + }, + "collisionFilter": { + "#": 1076 + }, + "constraintImpulse": { + "#": 1077 + }, + "density": 0.001, + "events": { + "#": 1078 + }, + "force": { + "#": 1081 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1714.8324723309402, + "inverseInertia": 0.0005831473430408735, + "inverseMass": 0.6700052492231255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.49252562, + "motion": 0, + "parent": null, + "position": { + "#": 1082 + }, + "positionImpulse": { + "#": 1083 + }, + "positionPrev": { + "#": 1084 + }, + "render": { + "#": 1085 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1087 + }, + "vertices": { + "#": 1088 + } + }, + [ + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + } + ], + { + "x": -0.5000025921589079, + "y": 0.8660239071956228 + }, + { + "x": -0.5000025921589079, + "y": -0.8660239071956228 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1074 + }, + "min": { + "#": 1075 + } + }, + { + "x": 761.8368384773661, + "y": 291.56999999999994 + }, + { + "x": 710.9928384773661, + "y": 232.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1079 + } + }, + [ + { + "#": 1080 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 744.8888384773661, + "y": 262.215 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 744.8888384773661, + "y": 262.215 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1086 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 761.8368384773661, + "y": 291.56999999999994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 710.9928384773661, + "y": 262.215 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 761.8368384773661, + "y": 232.85999999999999 + }, + [], + [], + [ + { + "#": 1095 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1096 + }, + "pointB": "", + "render": { + "#": 1097 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 1099 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/sleeping/sleeping-10.json b/tests/browser/refs/sleeping/sleeping-10.json new file mode 100644 index 00000000..41cbcbe1 --- /dev/null +++ b/tests/browser/refs/sleeping/sleeping-10.json @@ -0,0 +1,9598 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 1134 + }, + "events": { + "#": 1138 + }, + "gravity": { + "#": 1140 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 11, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 11, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 11, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 11, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1132 + }, + "constraints": { + "#": 1133 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 121 + }, + { + "#": 146 + }, + { + "#": 171 + }, + { + "#": 196 + }, + { + "#": 224 + }, + { + "#": 253 + }, + { + "#": 311 + }, + { + "#": 336 + }, + { + "#": 361 + }, + { + "#": 386 + }, + { + "#": 411 + }, + { + "#": 436 + }, + { + "#": 469 + }, + { + "#": 494 + }, + { + "#": 523 + }, + { + "#": 548 + }, + { + "#": 573 + }, + { + "#": 631 + }, + { + "#": 656 + }, + { + "#": 681 + }, + { + "#": 739 + }, + { + "#": 764 + }, + { + "#": 789 + }, + { + "#": 814 + }, + { + "#": 842 + }, + { + "#": 870 + }, + { + "#": 895 + }, + { + "#": 923 + }, + { + "#": 948 + }, + { + "#": 976 + }, + { + "#": 1001 + }, + { + "#": 1026 + }, + { + "#": 1051 + }, + { + "#": 1082 + }, + { + "#": 1107 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1534.906434764454, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "events": { + "#": 105 + }, + "force": { + "#": 108 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 2.2526572115109698, + "parent": null, + "position": { + "#": 109 + }, + "positionImpulse": { + "#": 110 + }, + "positionPrev": { + "#": 111 + }, + "region": { + "#": 112 + }, + "render": { + "#": 113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 115 + }, + "vertices": { + "#": 116 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 82.40102309415396, + "y": 112.80712013226713 + }, + { + "x": 45.99785951390703, + "y": 67.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 106 + } + }, + [ + { + "#": 107 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 64.1994413040305, + "y": 88.8178020921286 + }, + { + "x": -0.21240689241880487, + "y": 0 + }, + { + "x": 64.1994413040305, + "y": 85.91053137709295 + }, + { + "endCol": 1, + "endRow": 2, + "id": "0,1,1,2", + "startCol": 0, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 114 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 45.99785951390703, + "y": 67.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 82.40102309415396, + "y": 67.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 82.40102309415396, + "y": 109.89984941723148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 45.99785951390703, + "y": 109.89984941723148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.52878634164, + "axes": { + "#": 122 + }, + "bounds": { + "#": 125 + }, + "collisionFilter": { + "#": 128 + }, + "constraintImpulse": { + "#": 129 + }, + "density": 0.001, + "events": { + "#": 130 + }, + "force": { + "#": 133 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 2.2526572115109698, + "parent": null, + "position": { + "#": 134 + }, + "positionImpulse": { + "#": 135 + }, + "positionPrev": { + "#": 136 + }, + "region": { + "#": 137 + }, + "render": { + "#": 138 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 140 + }, + "vertices": { + "#": 141 + } + }, + [ + { + "#": 123 + }, + { + "#": 124 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 126 + }, + "min": { + "#": 127 + } + }, + { + "x": 130.08822378996675, + "y": 119.64418288946877 + }, + { + "x": 84.7723801685676, + "y": 67.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 131 + } + }, + [ + { + "#": 132 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 107.43030197926718, + "y": 92.23633347072942 + }, + { + "x": -0.0402285530991624, + "y": 0 + }, + { + "x": 107.43030197926718, + "y": 89.32906275569377 + }, + { + "endCol": 2, + "endRow": 2, + "id": "1,2,1,2", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 139 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 84.7723801685676, + "y": 67.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 130.08822378996675, + "y": 67.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 130.08822378996675, + "y": 116.73691217443312 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 84.7723801685676, + "y": 116.73691217443312 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1140.197701571206, + "axes": { + "#": 147 + }, + "bounds": { + "#": 150 + }, + "collisionFilter": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "density": 0.001, + "events": { + "#": 155 + }, + "force": { + "#": 158 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 2.2526572115109698, + "parent": null, + "position": { + "#": 159 + }, + "positionImpulse": { + "#": 160 + }, + "positionPrev": { + "#": 161 + }, + "region": { + "#": 162 + }, + "render": { + "#": 163 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 165 + }, + "vertices": { + "#": 166 + } + }, + [ + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 151 + }, + "min": { + "#": 152 + } + }, + { + "x": 169.54388458953156, + "y": 99.71427033802846 + }, + { + "x": 130.3230769763628, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 156 + } + }, + [ + { + "#": 157 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 149.93348078294719, + "y": 82.27137719500926 + }, + { + "x": -0.026009009225921916, + "y": 0 + }, + { + "x": 149.93348078294719, + "y": 79.36410647997361 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,1,2", + "startCol": 2, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 164 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 130.3230769763628, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 169.54388458953156, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 169.54388458953156, + "y": 96.8069996229928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 130.3230769763628, + "y": 96.8069996229928 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 752.4076041785743, + "axes": { + "#": 172 + }, + "bounds": { + "#": 175 + }, + "collisionFilter": { + "#": 178 + }, + "constraintImpulse": { + "#": 179 + }, + "density": 0.001, + "events": { + "#": 180 + }, + "force": { + "#": 183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 2.2526572115109698, + "parent": null, + "position": { + "#": 184 + }, + "positionImpulse": { + "#": 185 + }, + "positionPrev": { + "#": 186 + }, + "region": { + "#": 187 + }, + "render": { + "#": 188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 190 + }, + "vertices": { + "#": 191 + } + }, + [ + { + "#": 173 + }, + { + "#": 174 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 176 + }, + "min": { + "#": 177 + } + }, + { + "x": 194.37119940434638, + "y": 100.88775284831652 + }, + { + "x": 169.49388458953155, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 181 + } + }, + [ + { + "#": 182 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 181.93254199693897, + "y": 82.8581184501533 + }, + { + "x": -0.026009009225915793, + "y": 0 + }, + { + "x": 181.93254199693897, + "y": 79.95084773511765 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,1,2", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 189 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 169.49388458953155, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 194.37119940434638, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 194.37119940434638, + "y": 97.98048213328087 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 169.49388458953155, + "y": 97.98048213328087 + }, + { + "angle": 3.8762187644967887e-16, + "anglePrev": 2.649710854317212e-16, + "angularSpeed": 1.3074381196637362e-16, + "angularVelocity": 1.2762254350449912e-16, + "area": 2027.2541820000001, + "axes": { + "#": 197 + }, + "bounds": { + "#": 201 + }, + "collisionFilter": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "density": 0.001, + "events": { + "#": 206 + }, + "force": { + "#": 209 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 2.2526572115109698, + "parent": null, + "position": { + "#": 210 + }, + "positionImpulse": { + "#": 211 + }, + "positionPrev": { + "#": 212 + }, + "region": { + "#": 213 + }, + "render": { + "#": 214 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 216 + }, + "vertices": { + "#": 217 + } + }, + [ + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": -0.5000085820847088, + "y": -0.8660204488588241 + }, + { + "x": 0.5000085820847092, + "y": -0.8660204488588237 + }, + { + "x": 1, + "y": 3.8762187644967887e-16 + }, + { + "max": { + "#": 202 + }, + "min": { + "#": 203 + } + }, + { + "x": 243.74874325981477, + "y": 125.11162465181849 + }, + { + "x": 195.36674325981477, + "y": 66.33635393678286 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 207 + } + }, + [ + { + "#": 208 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 219.55774325981477, + "y": 94.27035393678284 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 219.55774325981477, + "y": 91.36308322174719 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 215 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 243.74874325981477, + "y": 108.23735393678284 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 219.55774325981477, + "y": 122.20435393678284 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195.36674325981477, + "y": 108.23735393678284 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195.36674325981477, + "y": 80.30335393678284 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 219.55774325981477, + "y": 66.33635393678286 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 243.74874325981477, + "y": 80.30335393678284 + }, + { + "angle": -5.246583236285029e-16, + "anglePrev": -4.472887203722439e-16, + "angularSpeed": 7.552552256704208e-17, + "angularVelocity": -7.623673670241777e-17, + "area": 4842.27229, + "axes": { + "#": 225 + }, + "bounds": { + "#": 231 + }, + "collisionFilter": { + "#": 234 + }, + "constraintImpulse": { + "#": 235 + }, + "density": 0.001, + "events": { + "#": 236 + }, + "force": { + "#": 239 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 2.2526572115109698, + "parent": null, + "position": { + "#": 240 + }, + "positionImpulse": { + "#": 241 + }, + "positionPrev": { + "#": 242 + }, + "region": { + "#": 243 + }, + "render": { + "#": 244 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 246 + }, + "vertices": { + "#": 247 + } + }, + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + } + ], + { + "x": 0.30902000749156733, + "y": 0.95105553726894 + }, + { + "x": -0.8090188345853122, + "y": 0.5877827194518598 + }, + { + "x": -0.8090188345853127, + "y": -0.5877827194518587 + }, + { + "x": 0.30902000749156633, + "y": -0.95105553726894 + }, + { + "x": 1, + "y": -5.246583236285029e-16 + }, + { + "max": { + "#": 232 + }, + "min": { + "#": 233 + } + }, + { + "x": 321.55578938876494, + "y": 159.2340691690158 + }, + { + "x": 239.91778938876496, + "y": 70.48679845398011 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 237 + } + }, + [ + { + "#": 238 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 285.0461752739399, + "y": 113.4067984539801 + }, + { + "x": -0.07479604864768871, + "y": 0.06773793189966067 + }, + { + "x": 285.0461752739399, + "y": 110.49952773894445 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,1,3", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 245 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 321.55578938876494, + "y": 139.93279845398013 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 271.1007893887649, + "y": 156.32679845398016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.91778938876496, + "y": 113.4067984539801 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 271.1007893887649, + "y": 70.48679845398011 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.55578938876494, + "y": 86.8807984539801 + }, + { + "angle": -3.7063810097861765e-14, + "anglePrev": -3.826149409715343e-14, + "angularSpeed": 1.2129725087057634e-15, + "angularVelocity": 1.3311857637445273e-15, + "area": 3079.0178339999993, + "axes": { + "#": 254 + }, + "bounds": { + "#": 268 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 271 + }, + "constraintImpulse": { + "#": 272 + }, + "density": 0.001, + "events": { + "#": 273 + }, + "force": { + "#": 276 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 2.252657211509966, + "parent": null, + "position": { + "#": 277 + }, + "positionImpulse": { + "#": 278 + }, + "positionPrev": { + "#": 279 + }, + "region": { + "#": 280 + }, + "render": { + "#": 281 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035813, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 283 + }, + "vertices": { + "#": 284 + } + }, + [ + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + } + ], + { + "x": -0.9709437470087525, + "y": -0.23930783552696983 + }, + { + "x": -0.8854182522513432, + "y": -0.46479513614083445 + }, + { + "x": -0.748535822224754, + "y": -0.6630943544069062 + }, + { + "x": -0.568078031004987, + "y": -0.8229746962631944 + }, + { + "x": -0.3545747323306915, + "y": -0.9350276783029573 + }, + { + "x": -0.12051249760078153, + "y": -0.9927118101050384 + }, + { + "x": 0.12051249760070792, + "y": -0.9927118101050473 + }, + { + "x": 0.3545747323306221, + "y": -0.9350276783029833 + }, + { + "x": 0.5680780310049262, + "y": -0.8229746962632364 + }, + { + "x": 0.7485358222247045, + "y": -0.6630943544069615 + }, + { + "x": 0.8854182522513088, + "y": -0.46479513614090007 + }, + { + "x": 0.970943747008735, + "y": -0.23930783552704182 + }, + { + "x": 1, + "y": -3.7063810097861765e-14 + }, + { + "max": { + "#": 269 + }, + "min": { + "#": 270 + } + }, + { + "x": 385.6670196756233, + "y": 135.78713498479874 + }, + { + "x": 323.2070196756228, + "y": 69.9618642697629 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 274 + } + }, + [ + { + "#": 275 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 354.43701967562316, + "y": 101.42086426976292 + }, + { + "x": 0.03923072902534478, + "y": 0.1085176250201706 + }, + { + "x": 354.4370196756234, + "y": 98.51359355472711 + }, + { + "endCol": 8, + "endRow": 2, + "id": "6,8,1,2", + "startCol": 6, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 282 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.2737367544323206e-13, + "y": 2.9072707150358212 + }, + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 385.6670196756233, + "y": 105.21286426976177 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 383.85201967562364, + "y": 112.57686426976183 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380.32701967562383, + "y": 119.29186426976196 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375.2980196756239, + "y": 124.96886426976214 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 369.0570196756242, + "y": 129.2768642697624 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.9660196756243, + "y": 131.96586426976262 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 354.43701967562436, + "y": 132.87986426976292 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 346.9080196756243, + "y": 131.96586426976322 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 339.8170196756242, + "y": 129.27686426976345 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 333.5760196756239, + "y": 124.9688642697637 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 328.54701967562386, + "y": 119.29186426976386 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 325.0220196756236, + "y": 112.57686426976402 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 323.20701967562326, + "y": 105.21286426976407 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 323.20701967562303, + "y": 97.62886426976407 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 325.0220196756227, + "y": 90.264864269764 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 328.5470196756225, + "y": 83.54986426976387 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 333.57601967562243, + "y": 77.8728642697637 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 339.81701967562213, + "y": 73.56486426976343 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 346.90801967562203, + "y": 70.87586426976318 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 354.43701967562197, + "y": 69.9618642697629 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 361.966019675622, + "y": 70.87586426976264 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 369.05701967562214, + "y": 73.56486426976237 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 375.2980196756224, + "y": 77.87286426976213 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 380.32701967562247, + "y": 83.54986426976197 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 383.8520196756227, + "y": 90.26486426976182 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 385.66701967562307, + "y": 97.62886426976176 + }, + { + "angle": 3.1270943006816335e-14, + "anglePrev": 1.139144336234155e-15, + "angularSpeed": 3.0189439393504445e-14, + "angularVelocity": 3.063512688957546e-14, + "area": 1329.4167625219097, + "axes": { + "#": 312 + }, + "bounds": { + "#": 315 + }, + "collisionFilter": { + "#": 318 + }, + "constraintImpulse": { + "#": 319 + }, + "density": 0.001, + "events": { + "#": 320 + }, + "force": { + "#": 323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 2.252657211515526, + "parent": null, + "position": { + "#": 324 + }, + "positionImpulse": { + "#": 325 + }, + "positionPrev": { + "#": 326 + }, + "region": { + "#": 327 + }, + "render": { + "#": 328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150365305, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 330 + }, + "vertices": { + "#": 331 + } + }, + [ + { + "#": 313 + }, + { + "#": 314 + } + ], + { + "x": -3.1270943006816335e-14, + "y": 1 + }, + { + "x": -1, + "y": -3.1270943006816335e-14 + }, + { + "max": { + "#": 316 + }, + "min": { + "#": 317 + } + }, + { + "x": 433.5840495877597, + "y": 97.28102533816305 + }, + { + "x": 384.80640041080363, + "y": 67.11912499349533 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 321 + } + }, + [ + { + "#": 322 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 409.19522499928144, + "y": 80.74643980831094 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.19522499928104, + "y": 77.83916909327442 + }, + { + "endCol": 9, + "endRow": 1, + "id": "8,9,1,1", + "startCol": 8, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 329 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 3.979039320256561e-13, + "y": 2.9072707150365034 + }, + [ + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 384.80640041080454, + "y": 67.11912499349533 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 433.58404958775924, + "y": 67.11912499349688 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 433.58404958775833, + "y": 94.37375462312652 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 384.80640041080363, + "y": 94.37375462312498 + }, + { + "angle": 2.724524244792797e-13, + "anglePrev": 2.2058148727003345e-13, + "angularSpeed": 5.187093720924626e-14, + "angularVelocity": 5.187093720924626e-14, + "area": 2858.632357296012, + "axes": { + "#": 337 + }, + "bounds": { + "#": 340 + }, + "collisionFilter": { + "#": 343 + }, + "constraintImpulse": { + "#": 344 + }, + "density": 0.001, + "events": { + "#": 345 + }, + "force": { + "#": 348 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 2.252657211515655, + "parent": null, + "position": { + "#": 349 + }, + "positionImpulse": { + "#": 350 + }, + "positionPrev": { + "#": 351 + }, + "region": { + "#": 352 + }, + "render": { + "#": 353 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150385986, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 355 + }, + "vertices": { + "#": 356 + } + }, + [ + { + "#": 338 + }, + { + "#": 339 + } + ], + { + "x": -2.724524244792797e-13, + "y": 1 + }, + { + "x": -1, + "y": -2.724524244792797e-13 + }, + { + "max": { + "#": 341 + }, + "min": { + "#": 342 + } + }, + { + "x": 542.7594267767965, + "y": 93.99677157089602 + }, + { + "x": 433.90483144071266, + "y": 67.73575476702547 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 346 + } + }, + [ + { + "#": 347 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 488.33212910875466, + "y": 80.86626316896076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 488.33212910875477, + "y": 77.95899245392216 + }, + { + "endCol": 11, + "endRow": 1, + "id": "9,11,1,1", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 354 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.1254996934439987e-13, + "y": 2.9072707150385986 + }, + [ + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 433.9048314407198, + "y": 67.73575476702547 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 542.7594267767965, + "y": 67.73575476705516 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 542.7594267767895, + "y": 93.99677157089602 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 433.90483144071266, + "y": 93.99677157086631 + }, + { + "angle": 4.6274066257391704e-11, + "anglePrev": 3.4965524074084626e-11, + "angularSpeed": 1.1308542183307076e-11, + "angularVelocity": 1.1308542183307076e-11, + "area": 926.8394636035856, + "axes": { + "#": 362 + }, + "bounds": { + "#": 365 + }, + "collisionFilter": { + "#": 368 + }, + "constraintImpulse": { + "#": 369 + }, + "density": 0.001, + "events": { + "#": 370 + }, + "force": { + "#": 373 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 2.2526572120142787, + "parent": null, + "position": { + "#": 374 + }, + "positionImpulse": { + "#": 375 + }, + "positionPrev": { + "#": 376 + }, + "region": { + "#": 377 + }, + "render": { + "#": 378 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707154143185, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 380 + }, + "vertices": { + "#": 381 + } + }, + [ + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": -4.6274066257391704e-11, + "y": 1 + }, + { + "x": -1, + "y": -4.6274066257391704e-11 + }, + { + "max": { + "#": 366 + }, + "min": { + "#": 367 + } + }, + { + "x": 581.6982079649686, + "y": 91.65062102459468 + }, + { + "x": 542.942420926825, + "y": 67.7357547676573 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 371 + } + }, + [ + { + "#": 372 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 562.3203144458968, + "y": 79.693187896126 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.3203144459022, + "y": 76.78591718071169 + }, + { + "endCol": 12, + "endRow": 1, + "id": "11,12,1,1", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 379 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -5.402398528531193e-12, + "y": 2.9072707154143185 + }, + [ + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 542.9424209279316, + "y": 67.7357547676573 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 581.6982079649686, + "y": 67.7357547694507 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 581.6982079638619, + "y": 91.65062102459468 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 542.942420926825, + "y": 91.65062102280133 + }, + { + "angle": 5.778969774103411e-10, + "anglePrev": 3.8934966410839723e-10, + "angularSpeed": 1.8854731330194388e-10, + "angularVelocity": 1.8854731330194388e-10, + "area": 1290.4501361223834, + "axes": { + "#": 387 + }, + "bounds": { + "#": 390 + }, + "collisionFilter": { + "#": 393 + }, + "constraintImpulse": { + "#": 394 + }, + "density": 0.001, + "events": { + "#": 395 + }, + "force": { + "#": 398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 2.2526572195742696, + "parent": null, + "position": { + "#": 399 + }, + "positionImpulse": { + "#": 400 + }, + "positionPrev": { + "#": 401 + }, + "region": { + "#": 402 + }, + "render": { + "#": 403 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707233708694, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 405 + }, + "vertices": { + "#": 406 + } + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": -5.778969774103411e-10, + "y": 1 + }, + { + "x": -1, + "y": -5.778969774103411e-10 + }, + { + "max": { + "#": 391 + }, + "min": { + "#": 392 + } + }, + { + "x": 617.905126771844, + "y": 103.81175788879091 + }, + { + "x": 582.1348078209545, + "y": 67.7357547816996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 396 + } + }, + [ + { + "#": 397 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 600.0199672963993, + "y": 85.77375633524524 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600.0199672964426, + "y": 82.86648561187437 + }, + { + "endCol": 12, + "endRow": 2, + "id": "12,12,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 404 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -4.333173819759395e-11, + "y": 2.9072707233708694 + }, + [ + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 582.1348078418029, + "y": 67.7357547816996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 617.905126771844, + "y": 67.73575480237113 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 617.9051267509957, + "y": 103.81175788879091 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 582.1348078209545, + "y": 103.81175786811932 + }, + { + "angle": 5.956212439516393e-10, + "anglePrev": 3.995224559150968e-10, + "angularSpeed": 1.9609878803654246e-10, + "angularVelocity": 1.9609878803654246e-10, + "area": 1148.2925932011974, + "axes": { + "#": 412 + }, + "bounds": { + "#": 415 + }, + "collisionFilter": { + "#": 418 + }, + "constraintImpulse": { + "#": 419 + }, + "density": 0.001, + "events": { + "#": 420 + }, + "force": { + "#": 423 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 2.2526572020293294, + "parent": null, + "position": { + "#": 424 + }, + "positionImpulse": { + "#": 425 + }, + "positionPrev": { + "#": 426 + }, + "region": { + "#": 427 + }, + "render": { + "#": 428 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270705354363, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 430 + }, + "vertices": { + "#": 431 + } + }, + [ + { + "#": 413 + }, + { + "#": 414 + } + ], + { + "x": -5.956212439516393e-10, + "y": 1 + }, + { + "x": -1, + "y": -5.956212439516393e-10 + }, + { + "max": { + "#": 416 + }, + "min": { + "#": 417 + } + }, + { + "x": 651.7068713667743, + "y": 108.22430117226149 + }, + { + "x": 621.151958792897, + "y": 67.73575472854337 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 421 + } + }, + [ + { + "#": 422 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 636.4294150798091, + "y": 86.52639259772523 + }, + { + "x": 0.4879586224890938, + "y": 1.7661525060908387e-14 + }, + { + "x": 636.4294150797562, + "y": 83.61912189237087 + }, + { + "endCol": 13, + "endRow": 2, + "id": "12,13,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 429 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 5.301103556121234e-11, + "y": 2.907270705354363 + }, + [ + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 621.151958815281, + "y": 67.73575472854337 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 651.7068713667213, + "y": 67.7357547467425 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 651.7068713443373, + "y": 105.31703046690713 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 621.151958792897, + "y": 105.31703044870797 + }, + { + "angle": 0, + "anglePrev": -0.002944761536477951, + "angularSpeed": 0, + "angularVelocity": 0.0022085711523584634, + "area": 1926.7878890000002, + "axes": { + "#": 437 + }, + "bounds": { + "#": 445 + }, + "collisionFilter": { + "#": 448 + }, + "constraintImpulse": { + "#": 449 + }, + "density": 0.001, + "events": { + "#": 450 + }, + "force": { + "#": 453 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 454 + }, + "positionImpulse": { + "#": 455 + }, + "positionPrev": { + "#": 456 + }, + "region": { + "#": 457 + }, + "render": { + "#": 458 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 460 + }, + "vertices": { + "#": 461 + } + }, + [ + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + } + ], + { + "x": 0.6234921001781484, + "y": 0.7818296496139309 + }, + { + "x": -0.22251820971292155, + "y": 0.9749285339685962 + }, + { + "x": -0.9009815501548849, + "y": 0.43385740316433524 + }, + { + "x": -0.9009815501548849, + "y": -0.43385740316433524 + }, + { + "x": -0.22251820971292155, + "y": -0.9749285339685962 + }, + { + "x": 0.6234921001781484, + "y": -0.7818296496139309 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 446 + }, + "min": { + "#": 447 + } + }, + { + "x": 71.60503020064793, + "y": 208.22302548206167 + }, + { + "x": 21.162030200647923, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 451 + } + }, + [ + { + "#": 452 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 47.69722133275702, + "y": 179.445754767026 + }, + { + "x": 1.1736736849064155, + "y": 0 + }, + { + "x": 47.69722133275702, + "y": 176.67515265086743 + }, + { + "endCol": 1, + "endRow": 4, + "id": "0,1,3,4", + "startCol": 0, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 459 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.8047692658778374 + }, + [ + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 71.60503020064793, + "y": 190.958754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 53.60203020064791, + "y": 205.315754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 31.15203020064792, + "y": 200.191754767026 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 21.162030200647923, + "y": 179.445754767026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 31.15203020064792, + "y": 158.69975476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 53.60203020064791, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 71.60503020064793, + "y": 167.93275476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1097.755875, + "axes": { + "#": 470 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "events": { + "#": 479 + }, + "force": { + "#": 482 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 927.6617490689248, + "inverseInertia": 0.0010779791243992539, + "inverseMass": 0.9109493492804126, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.097755875, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 483 + }, + "positionImpulse": { + "#": 484 + }, + "positionPrev": { + "#": 485 + }, + "region": { + "#": 486 + }, + "render": { + "#": 487 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 489 + }, + "vertices": { + "#": 490 + } + }, + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": -0.49999466010690446, + "y": 0.8660284867512045 + }, + { + "x": -0.49999466010690446, + "y": -0.8660284867512045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 135.0581670975326, + "y": 206.8330254820617 + }, + { + "x": 91.45316709753263, + "y": 153.575754767026 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 480 + } + }, + [ + { + "#": 481 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 120.52316709753262, + "y": 178.750754767026 + }, + { + "x": -0.08142826800548551, + "y": 0 + }, + { + "x": 120.52316709753262, + "y": 175.84348405199032 + }, + { + "endCol": 2, + "endRow": 4, + "id": "1,2,3,4", + "startCol": 1, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 488 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 135.0581670975326, + "y": 203.925754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 91.45316709753263, + "y": 178.750754767026 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 135.0581670975326, + "y": 153.575754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 495 + }, + "bounds": { + "#": 501 + }, + "collisionFilter": { + "#": 504 + }, + "constraintImpulse": { + "#": 505 + }, + "density": 0.001, + "events": { + "#": 506 + }, + "force": { + "#": 509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 510 + }, + "positionImpulse": { + "#": 511 + }, + "positionPrev": { + "#": 512 + }, + "region": { + "#": 513 + }, + "render": { + "#": 514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 516 + }, + "vertices": { + "#": 517 + } + }, + [ + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 502 + }, + "min": { + "#": 503 + } + }, + { + "x": 174.72886866010404, + "y": 195.22902548206164 + }, + { + "x": 137.87886866010402, + "y": 153.57575476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 507 + } + }, + [ + { + "#": 508 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 158.24891138027843, + "y": 172.94875476702597 + }, + { + "x": 0.021814475646813734, + "y": 0 + }, + { + "x": 158.24891138027843, + "y": 170.0414840519903 + }, + { + "endCol": 3, + "endRow": 4, + "id": "2,3,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 515 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 174.72886866010404, + "y": 184.921754767026 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.95386866010404, + "y": 192.32175476702596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 137.87886866010402, + "y": 172.94875476702597 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 151.95386866010404, + "y": 153.57575476702596 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 174.72886866010404, + "y": 160.975754767026 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.454244, + "axes": { + "#": 524 + }, + "bounds": { + "#": 527 + }, + "collisionFilter": { + "#": 530 + }, + "constraintImpulse": { + "#": 531 + }, + "density": 0.001, + "events": { + "#": 532 + }, + "force": { + "#": 535 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 536 + }, + "positionImpulse": { + "#": 537 + }, + "positionPrev": { + "#": 538 + }, + "region": { + "#": 539 + }, + "render": { + "#": 540 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 542 + }, + "vertices": { + "#": 543 + } + }, + [ + { + "#": 525 + }, + { + "#": 526 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 528 + }, + "min": { + "#": 529 + } + }, + { + "x": 211.840233827826, + "y": 191.14502548206164 + }, + { + "x": 177.17823382782603, + "y": 153.57575476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 533 + } + }, + [ + { + "#": 534 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 194.50923382782602, + "y": 170.90675476702597 + }, + { + "x": 0.09930741871464581, + "y": 0 + }, + { + "x": 194.50923382782602, + "y": 167.9994840519903 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,3,3", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 541 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 211.840233827826, + "y": 188.23775476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 177.17823382782603, + "y": 188.23775476702596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 177.17823382782603, + "y": 153.57575476702596 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 211.840233827826, + "y": 153.57575476702596 + }, + { + "angle": 3.9974424435108666e-17, + "anglePrev": 1.7538705035440855e-17, + "angularSpeed": 2.2435719399667814e-17, + "angularVelocity": 2.2435719399667814e-17, + "area": 1990.733346252218, + "axes": { + "#": 549 + }, + "bounds": { + "#": 552 + }, + "collisionFilter": { + "#": 555 + }, + "constraintImpulse": { + "#": 556 + }, + "density": 0.001, + "events": { + "#": 557 + }, + "force": { + "#": 560 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 561 + }, + "positionImpulse": { + "#": 562 + }, + "positionPrev": { + "#": 563 + }, + "region": { + "#": 564 + }, + "render": { + "#": 565 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 567 + }, + "vertices": { + "#": 568 + } + }, + [ + { + "#": 550 + }, + { + "#": 551 + } + ], + { + "x": -3.9974424435108666e-17, + "y": 1 + }, + { + "x": -1, + "y": -3.9974424435108666e-17 + }, + { + "max": { + "#": 553 + }, + "min": { + "#": 554 + } + }, + { + "x": 307.34296051071, + "y": 180.32189202809863 + }, + { + "x": 212.51922937216403, + "y": 156.42057981786405 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 558 + } + }, + [ + { + "#": 559 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 259.93109494143704, + "y": 166.9176005654635 + }, + { + "x": 0, + "y": 0.11534049587384015 + }, + { + "x": 259.93109494143704, + "y": 164.0103298504278 + }, + { + "endCol": 6, + "endRow": 3, + "id": "4,6,3,3", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 566 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 212.51922937216403, + "y": 156.42057981786405 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 307.34296051071, + "y": 156.42057981786405 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 307.34296051071, + "y": 177.41462131306295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 212.51922937216403, + "y": 177.41462131306295 + }, + { + "angle": 1.793205365100331e-17, + "anglePrev": 1.441736752030682e-17, + "angularSpeed": 3.514686130696492e-18, + "angularVelocity": 3.514686130696492e-18, + "area": 7321.24308, + "axes": { + "#": 574 + }, + "bounds": { + "#": 588 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 591 + }, + "constraintImpulse": { + "#": 592 + }, + "density": 0.001, + "events": { + "#": 593 + }, + "force": { + "#": 596 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 2.2526572115109373, + "parent": null, + "position": { + "#": 597 + }, + "positionImpulse": { + "#": 598 + }, + "positionPrev": { + "#": 599 + }, + "region": { + "#": 600 + }, + "render": { + "#": 601 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 603 + }, + "vertices": { + "#": 604 + } + }, + [ + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 1.793205365100331e-17 + }, + { + "max": { + "#": 589 + }, + "min": { + "#": 590 + } + }, + { + "x": 401.2838636848368, + "y": 251.4495581463108 + }, + { + "x": 304.9698636848368, + "y": 154.42955814631082 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 594 + } + }, + [ + { + "#": 595 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 353.1268636848368, + "y": 202.93955814631082 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 353.1268636848368, + "y": 200.0322874312752 + }, + { + "endCol": 8, + "endRow": 5, + "id": "6,8,3,5", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 602 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.90727071503563 + }, + [ + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 401.2838636848368, + "y": 208.78655814631082 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 398.4848636848368, + "y": 220.1415581463108 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 393.0498636848368, + "y": 230.4965581463108 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.2948636848368, + "y": 239.25055814631082 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 375.6708636848368, + "y": 245.89355814631082 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 364.7358636848368, + "y": 250.04055814631081 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 353.1268636848368, + "y": 251.4495581463108 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 341.5178636848368, + "y": 250.04055814631081 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 330.5828636848368, + "y": 245.89355814631082 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.9588636848368, + "y": 239.25055814631082 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 313.2038636848368, + "y": 230.4965581463108 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 307.7688636848368, + "y": 220.1415581463108 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 304.9698636848368, + "y": 208.78655814631082 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 304.9698636848368, + "y": 197.0925581463108 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 307.7688636848368, + "y": 185.73755814631082 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 313.2038636848368, + "y": 175.38255814631083 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 320.9588636848368, + "y": 166.6285581463108 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 330.5828636848368, + "y": 159.9855581463108 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 341.5178636848368, + "y": 155.83855814631082 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 353.1268636848368, + "y": 154.42955814631082 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 364.7358636848368, + "y": 155.83855814631082 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 375.6708636848368, + "y": 159.9855581463108 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 385.2948636848368, + "y": 166.6285581463108 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 393.0498636848368, + "y": 175.38255814631083 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 398.4848636848368, + "y": 185.73755814631082 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 401.2838636848368, + "y": 197.0925581463108 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 632 + }, + "bounds": { + "#": 635 + }, + "collisionFilter": { + "#": 638 + }, + "constraintImpulse": { + "#": 639 + }, + "density": 0.001, + "events": { + "#": 640 + }, + "force": { + "#": 643 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 644 + }, + "positionImpulse": { + "#": 645 + }, + "positionPrev": { + "#": 646 + }, + "region": { + "#": 647 + }, + "render": { + "#": 648 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 650 + }, + "vertices": { + "#": 651 + } + }, + [ + { + "#": 633 + }, + { + "#": 634 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 636 + }, + "min": { + "#": 637 + } + }, + { + "x": 480.4041790420924, + "y": 177.73221910173103 + }, + { + "x": 396.1714972862624, + "y": 153.57575476702596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 641 + } + }, + [ + { + "#": 642 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 438.2878381641774, + "y": 165.6539869343785 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 438.2878381641774, + "y": 162.74671621934283 + }, + { + "endCol": 10, + "endRow": 3, + "id": "8,10,3,3", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 649 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 396.1714972862624, + "y": 153.57575476702596 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480.4041790420924, + "y": 153.57575476702596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480.4041790420924, + "y": 177.73221910173103 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 396.1714972862624, + "y": 177.73221910173103 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 657 + }, + "bounds": { + "#": 660 + }, + "collisionFilter": { + "#": 663 + }, + "constraintImpulse": { + "#": 664 + }, + "density": 0.001, + "events": { + "#": 665 + }, + "force": { + "#": 668 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 669 + }, + "positionImpulse": { + "#": 670 + }, + "positionPrev": { + "#": 671 + }, + "region": { + "#": 672 + }, + "render": { + "#": 673 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 675 + }, + "vertices": { + "#": 676 + } + }, + [ + { + "#": 658 + }, + { + "#": 659 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 661 + }, + "min": { + "#": 662 + } + }, + { + "x": 529.7907531161663, + "y": 174.44085250365148 + }, + { + "x": 480.4041790420924, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 666 + } + }, + [ + { + "#": 667 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0974660791294, + "y": 164.00830363533873 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0974660791294, + "y": 161.10103292030306 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,3,3", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 674 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.4041790420924, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 529.7907531161663, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 529.7907531161663, + "y": 174.44085250365148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.4041790420924, + "y": 174.44085250365148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2157.165332, + "axes": { + "#": 682 + }, + "bounds": { + "#": 696 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 699 + }, + "constraintImpulse": { + "#": 700 + }, + "density": 0.001, + "events": { + "#": 701 + }, + "force": { + "#": 704 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 705 + }, + "positionImpulse": { + "#": 706 + }, + "positionPrev": { + "#": 707 + }, + "region": { + "#": 708 + }, + "render": { + "#": 709 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 711 + }, + "vertices": { + "#": 712 + } + }, + [ + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + } + ], + { + "x": -0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": -0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": -0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": -0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": -0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": -0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": 0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": 0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": 0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": 0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 697 + }, + "min": { + "#": 698 + } + }, + { + "x": 582.0707531161663, + "y": 206.23975476702597 + }, + { + "x": 529.7907531161663, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 702 + } + }, + [ + { + "#": 703 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 555.9307531161663, + "y": 179.90775476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 555.9307531161663, + "y": 177.0004840519903 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,3,4", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 710 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 582.0707531161663, + "y": 183.08175476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580.5517531161663, + "y": 189.24475476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 577.6017531161664, + "y": 194.86575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 573.3917531161663, + "y": 199.61775476702599 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 568.1677531161663, + "y": 203.22375476702598 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 562.2327531161664, + "y": 205.47475476702598 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 555.9307531161663, + "y": 206.23975476702597 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 549.6287531161663, + "y": 205.47475476702598 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 543.6937531161664, + "y": 203.22375476702598 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 538.4697531161663, + "y": 199.61775476702599 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 534.2597531161664, + "y": 194.86575476702598 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 531.3097531161663, + "y": 189.24475476702597 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 529.7907531161663, + "y": 183.08175476702598 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 529.7907531161663, + "y": 176.73375476702597 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 531.3097531161663, + "y": 170.57075476702596 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 534.2597531161664, + "y": 164.94975476702598 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 538.4697531161663, + "y": 160.19775476702597 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 543.6937531161664, + "y": 156.59175476702598 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 549.6287531161663, + "y": 154.34075476702597 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 555.9307531161663, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 562.2327531161664, + "y": 154.34075476702597 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 568.1677531161663, + "y": 156.59175476702598 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 573.3917531161663, + "y": 160.19775476702597 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 577.6017531161664, + "y": 164.94975476702598 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 580.5517531161663, + "y": 170.57075476702596 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 582.0707531161663, + "y": 176.73375476702597 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2399.6281959999997, + "axes": { + "#": 740 + }, + "bounds": { + "#": 743 + }, + "collisionFilter": { + "#": 746 + }, + "constraintImpulse": { + "#": 747 + }, + "density": 0.001, + "events": { + "#": 748 + }, + "force": { + "#": 751 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 752 + }, + "positionImpulse": { + "#": 753 + }, + "positionPrev": { + "#": 754 + }, + "region": { + "#": 755 + }, + "render": { + "#": 756 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 758 + }, + "vertices": { + "#": 759 + } + }, + [ + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 744 + }, + "min": { + "#": 745 + } + }, + { + "x": 631.0567531161664, + "y": 202.56175476702597 + }, + { + "x": 582.0707531161663, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 749 + } + }, + [ + { + "#": 750 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 606.5637531161664, + "y": 178.06875476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 606.5637531161664, + "y": 175.1614840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 757 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.0567531161664, + "y": 202.56175476702597 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 582.0707531161663, + "y": 202.56175476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 582.0707531161663, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 631.0567531161664, + "y": 153.57575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 765 + }, + "bounds": { + "#": 768 + }, + "collisionFilter": { + "#": 771 + }, + "constraintImpulse": { + "#": 772 + }, + "density": 0.001, + "events": { + "#": 773 + }, + "force": { + "#": 776 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 777 + }, + "positionImpulse": { + "#": 778 + }, + "positionPrev": { + "#": 779 + }, + "region": { + "#": 780 + }, + "render": { + "#": 781 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 783 + }, + "vertices": { + "#": 784 + } + }, + [ + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 769 + }, + "min": { + "#": 770 + } + }, + { + "x": 666.4696903589647, + "y": 195.64468480817825 + }, + { + "x": 631.0567531161664, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 774 + } + }, + [ + { + "#": 775 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 648.7632217375656, + "y": 174.61021978760212 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 648.7632217375656, + "y": 171.70294907256644 + }, + { + "endCol": 13, + "endRow": 4, + "id": "13,13,3,4", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 782 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 631.0567531161664, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 666.4696903589647, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 666.4696903589647, + "y": 195.64468480817825 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 631.0567531161664, + "y": 195.64468480817825 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 790 + }, + "bounds": { + "#": 793 + }, + "collisionFilter": { + "#": 796 + }, + "constraintImpulse": { + "#": 797 + }, + "density": 0.001, + "events": { + "#": 798 + }, + "force": { + "#": 801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 802 + }, + "positionImpulse": { + "#": 803 + }, + "positionPrev": { + "#": 804 + }, + "region": { + "#": 805 + }, + "render": { + "#": 806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 808 + }, + "vertices": { + "#": 809 + } + }, + [ + { + "#": 791 + }, + { + "#": 792 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 794 + }, + "min": { + "#": 795 + } + }, + { + "x": 708.2335792478536, + "y": 195.8459450962441 + }, + { + "x": 666.4696903589647, + "y": 153.57575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 799 + } + }, + [ + { + "#": 800 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 687.3516348034092, + "y": 174.71084993163504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.3516348034092, + "y": 171.80357921659936 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,3,4", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 807 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 666.4696903589647, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 708.2335792478536, + "y": 153.57575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 708.2335792478536, + "y": 195.8459450962441 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 666.4696903589647, + "y": 195.8459450962441 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1919.5457599999997, + "axes": { + "#": 815 + }, + "bounds": { + "#": 819 + }, + "collisionFilter": { + "#": 822 + }, + "constraintImpulse": { + "#": 823 + }, + "density": 0.001, + "events": { + "#": 824 + }, + "force": { + "#": 827 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 2.2526572115107895, + "parent": null, + "position": { + "#": 828 + }, + "positionImpulse": { + "#": 829 + }, + "positionPrev": { + "#": 830 + }, + "region": { + "#": 831 + }, + "render": { + "#": 832 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 834 + }, + "vertices": { + "#": 835 + } + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + } + ], + { + "x": -0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 820 + }, + "min": { + "#": 821 + } + }, + { + "x": 97.07999999999998, + "y": 304.95775476702494 + }, + { + "x": 49.99999999999999, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 825 + } + }, + [ + { + "#": 826 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 73.53999999999999, + "y": 277.77675476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.53999999999999, + "y": 274.8694840519894 + }, + { + "endCol": 2, + "endRow": 6, + "id": "1,2,5,6", + "startCol": 1, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 833 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 97.07999999999998, + "y": 291.36775476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 73.53999999999999, + "y": 304.95775476702494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 49.99999999999999, + "y": 291.36775476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 49.99999999999999, + "y": 264.18575476702506 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 73.53999999999999, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 97.07999999999998, + "y": 264.18575476702506 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6052.328004, + "axes": { + "#": 843 + }, + "bounds": { + "#": 847 + }, + "collisionFilter": { + "#": 850 + }, + "constraintImpulse": { + "#": 851 + }, + "density": 0.001, + "events": { + "#": 852 + }, + "force": { + "#": 855 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 2.2526572115107895, + "parent": null, + "position": { + "#": 856 + }, + "positionImpulse": { + "#": 857 + }, + "positionPrev": { + "#": 858 + }, + "region": { + "#": 859 + }, + "render": { + "#": 860 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 862 + }, + "vertices": { + "#": 863 + } + }, + [ + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + } + ], + { + "x": -0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 848 + }, + "min": { + "#": 849 + } + }, + { + "x": 180.678, + "y": 347.12575476702494 + }, + { + "x": 97.07999999999998, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 853 + } + }, + [ + { + "#": 854 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 138.879, + "y": 298.86075476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 138.879, + "y": 295.9534840519894 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,5,7", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 861 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.678, + "y": 322.993754767025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 138.879, + "y": 347.12575476702494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 97.07999999999998, + "y": 322.993754767025 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 97.07999999999998, + "y": 274.7277547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 138.879, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 180.678, + "y": 274.7277547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 871 + }, + "bounds": { + "#": 874 + }, + "collisionFilter": { + "#": 877 + }, + "constraintImpulse": { + "#": 878 + }, + "density": 0.001, + "events": { + "#": 879 + }, + "force": { + "#": 882 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 2.2526572115107895, + "parent": null, + "position": { + "#": 883 + }, + "positionImpulse": { + "#": 884 + }, + "positionPrev": { + "#": 885 + }, + "region": { + "#": 886 + }, + "render": { + "#": 887 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 889 + }, + "vertices": { + "#": 890 + } + }, + [ + { + "#": 872 + }, + { + "#": 873 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 875 + }, + "min": { + "#": 876 + } + }, + { + "x": 225.82936316872429, + "y": 299.7642218452142 + }, + { + "x": 180.678, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 880 + } + }, + [ + { + "#": 881 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 203.25368158436214, + "y": 275.1799883061196 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 203.25368158436214, + "y": 272.272717591084 + }, + { + "endCol": 4, + "endRow": 6, + "id": "3,4,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 888 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.678, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225.82936316872429, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.82936316872429, + "y": 299.7642218452142 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180.678, + "y": 299.7642218452142 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2601.1074479999997, + "axes": { + "#": 896 + }, + "bounds": { + "#": 900 + }, + "collisionFilter": { + "#": 903 + }, + "constraintImpulse": { + "#": 904 + }, + "density": 0.001, + "events": { + "#": 905 + }, + "force": { + "#": 908 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 2.2526572115107895, + "parent": null, + "position": { + "#": 909 + }, + "positionImpulse": { + "#": 910 + }, + "positionPrev": { + "#": 911 + }, + "region": { + "#": 912 + }, + "render": { + "#": 913 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 915 + }, + "vertices": { + "#": 916 + } + }, + [ + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + } + ], + { + "x": -0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 901 + }, + "min": { + "#": 902 + } + }, + { + "x": 280.63336316872426, + "y": 313.8777547670249 + }, + { + "x": 225.82936316872429, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 906 + } + }, + [ + { + "#": 907 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 253.23136316872427, + "y": 282.23675476702493 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 253.23136316872427, + "y": 279.32948405198937 + }, + { + "endCol": 5, + "endRow": 6, + "id": "4,5,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 914 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280.63336316872426, + "y": 298.05775476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 253.23136316872427, + "y": 313.8777547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225.82936316872429, + "y": 298.05775476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225.82936316872429, + "y": 266.4157547670251 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 253.23136316872427, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 280.63336316872426, + "y": 266.4157547670251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1413.3088360000002, + "axes": { + "#": 924 + }, + "bounds": { + "#": 927 + }, + "collisionFilter": { + "#": 930 + }, + "constraintImpulse": { + "#": 931 + }, + "density": 0.001, + "events": { + "#": 932 + }, + "force": { + "#": 935 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 2.2526572115110146, + "parent": null, + "position": { + "#": 936 + }, + "positionImpulse": { + "#": 937 + }, + "positionPrev": { + "#": 938 + }, + "region": { + "#": 939 + }, + "render": { + "#": 940 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 942 + }, + "vertices": { + "#": 943 + } + }, + [ + { + "#": 925 + }, + { + "#": 926 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 928 + }, + "min": { + "#": 929 + } + }, + { + "x": 318.2273631687243, + "y": 288.1897547670258 + }, + { + "x": 280.63336316872426, + "y": 250.5957547670259 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 933 + } + }, + [ + { + "#": 934 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 299.4303631687243, + "y": 269.3927547670259 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 299.4303631687243, + "y": 266.4854840519902 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 941 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 318.2273631687243, + "y": 288.1897547670258 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 280.63336316872426, + "y": 288.1897547670258 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280.63336316872426, + "y": 250.5957547670259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 318.2273631687243, + "y": 250.5957547670259 + }, + { + "angle": 4.370865055920414e-16, + "anglePrev": 3.5141746237941473e-16, + "angularSpeed": 8.566904321262666e-17, + "angularVelocity": 8.566904321262666e-17, + "area": 5460.808751999999, + "axes": { + "#": 949 + }, + "bounds": { + "#": 953 + }, + "collisionFilter": { + "#": 956 + }, + "constraintImpulse": { + "#": 957 + }, + "density": 0.001, + "events": { + "#": 958 + }, + "force": { + "#": 961 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 2.2526572115108787, + "parent": null, + "position": { + "#": 962 + }, + "positionImpulse": { + "#": 963 + }, + "positionPrev": { + "#": 964 + }, + "region": { + "#": 965 + }, + "render": { + "#": 966 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035602, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 968 + }, + "vertices": { + "#": 969 + } + }, + [ + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + } + ], + { + "x": -0.4999981172696017, + "y": -0.8660264907766121 + }, + { + "x": 0.49999811726960225, + "y": -0.8660264907766121 + }, + { + "x": 1, + "y": 4.370865055920414e-16 + }, + { + "max": { + "#": 954 + }, + "min": { + "#": 955 + } + }, + { + "x": 398.510305394171, + "y": 352.40382909824996 + }, + { + "x": 319.10230539417097, + "y": 257.8045583832145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 959 + } + }, + [ + { + "#": 960 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 358.806305394171, + "y": 303.6505583832144 + }, + { + "x": 0.06216954385340654, + "y": 0.5122258584770738 + }, + { + "x": 358.806305394171, + "y": 300.74328766817877 + }, + { + "endCol": 8, + "endRow": 7, + "id": "6,8,5,7", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 967 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035602 + }, + [ + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 398.510305394171, + "y": 326.5735583832144 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 358.806305394171, + "y": 349.49655838321434 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 319.10230539417097, + "y": 326.5735583832144 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 319.10230539417097, + "y": 280.7275583832144 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 358.806305394171, + "y": 257.8045583832145 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 398.510305394171, + "y": 280.7275583832144 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 977 + }, + "bounds": { + "#": 980 + }, + "collisionFilter": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "density": 0.001, + "events": { + "#": 985 + }, + "force": { + "#": 988 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 2.2526572115110417, + "parent": null, + "position": { + "#": 989 + }, + "positionImpulse": { + "#": 990 + }, + "positionPrev": { + "#": 991 + }, + "region": { + "#": 992 + }, + "render": { + "#": 993 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035714, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 995 + }, + "vertices": { + "#": 996 + } + }, + [ + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 981 + }, + "min": { + "#": 982 + } + }, + { + "x": 417.80588786008235, + "y": 272.9855438616762 + }, + { + "x": 397.6353631687243, + "y": 250.59575476702602 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 986 + } + }, + [ + { + "#": 987 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 407.7206255144033, + "y": 261.7906493143512 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 407.7206255144033, + "y": 258.88337859931545 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 994 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035714 + }, + [ + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.6353631687243, + "y": 250.59575476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 417.80588786008235, + "y": 250.59575476702602 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 417.80588786008235, + "y": 272.9855438616762 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 397.6353631687243, + "y": 272.9855438616762 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 1002 + }, + "bounds": { + "#": 1005 + }, + "collisionFilter": { + "#": 1008 + }, + "constraintImpulse": { + "#": 1009 + }, + "density": 0.001, + "events": { + "#": 1010 + }, + "force": { + "#": 1013 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 1014 + }, + "positionImpulse": { + "#": 1015 + }, + "positionPrev": { + "#": 1016 + }, + "region": { + "#": 1017 + }, + "render": { + "#": 1018 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1020 + }, + "vertices": { + "#": 1021 + } + }, + [ + { + "#": 1003 + }, + { + "#": 1004 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1006 + }, + "min": { + "#": 1007 + } + }, + { + "x": 519.6390497256516, + "y": 280.26859427319874 + }, + { + "x": 417.80588786008235, + "y": 250.59575476702594 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1011 + } + }, + [ + { + "#": 1012 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 468.722468792867, + "y": 265.43217452011237 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 468.722468792867, + "y": 262.5249038050767 + }, + { + "endCol": 10, + "endRow": 5, + "id": "8,10,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1019 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.80588786008235, + "y": 250.59575476702594 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 519.6390497256516, + "y": 250.59575476702594 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 519.6390497256516, + "y": 280.26859427319874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 417.80588786008235, + "y": 280.26859427319874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 1027 + }, + "bounds": { + "#": 1030 + }, + "collisionFilter": { + "#": 1033 + }, + "constraintImpulse": { + "#": 1034 + }, + "density": 0.001, + "events": { + "#": 1035 + }, + "force": { + "#": 1038 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 2.2526572115110266, + "parent": null, + "position": { + "#": 1039 + }, + "positionImpulse": { + "#": 1040 + }, + "positionPrev": { + "#": 1041 + }, + "region": { + "#": 1042 + }, + "render": { + "#": 1043 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1045 + }, + "vertices": { + "#": 1046 + } + }, + [ + { + "#": 1028 + }, + { + "#": 1029 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1031 + }, + "min": { + "#": 1032 + } + }, + { + "x": 559.7105517832647, + "y": 271.97602740077076 + }, + { + "x": 519.6390497256516, + "y": 250.59575476702597 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1036 + } + }, + [ + { + "#": 1037 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 539.6748007544581, + "y": 261.2858910838984 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 539.6748007544581, + "y": 258.3786203688627 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1044 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 519.6390497256516, + "y": 250.59575476702597 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 559.7105517832647, + "y": 250.59575476702597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 559.7105517832647, + "y": 271.97602740077076 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 519.6390497256516, + "y": 271.97602740077076 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 1052 + }, + "bounds": { + "#": 1057 + }, + "collisionFilter": { + "#": 1060 + }, + "constraintImpulse": { + "#": 1061 + }, + "density": 0.001, + "events": { + "#": 1062 + }, + "force": { + "#": 1065 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 2.2526572115107895, + "parent": null, + "position": { + "#": 1066 + }, + "positionImpulse": { + "#": 1067 + }, + "positionPrev": { + "#": 1068 + }, + "region": { + "#": 1069 + }, + "render": { + "#": 1070 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1072 + }, + "vertices": { + "#": 1073 + } + }, + [ + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1058 + }, + "min": { + "#": 1059 + } + }, + { + "x": 629.9625517832646, + "y": 320.8477547670249 + }, + { + "x": 559.7105517832647, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1063 + } + }, + [ + { + "#": 1064 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 594.8365517832647, + "y": 285.72175476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 594.8365517832647, + "y": 282.8144840519894 + }, + { + "endCol": 13, + "endRow": 6, + "id": "11,13,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1071 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 629.9625517832646, + "y": 300.27175476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 609.3865517832646, + "y": 320.8477547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580.2865517832647, + "y": 320.8477547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.7105517832647, + "y": 300.27175476702496 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 559.7105517832647, + "y": 271.171754767025 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 580.2865517832647, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 609.3865517832646, + "y": 250.59575476702506 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 629.9625517832646, + "y": 271.171754767025 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 1083 + }, + "bounds": { + "#": 1086 + }, + "collisionFilter": { + "#": 1089 + }, + "constraintImpulse": { + "#": 1090 + }, + "density": 0.001, + "events": { + "#": 1091 + }, + "force": { + "#": 1094 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 2.2526572115110417, + "parent": null, + "position": { + "#": 1095 + }, + "positionImpulse": { + "#": 1096 + }, + "positionPrev": { + "#": 1097 + }, + "region": { + "#": 1098 + }, + "render": { + "#": 1099 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035714, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1101 + }, + "vertices": { + "#": 1102 + } + }, + [ + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1087 + }, + "min": { + "#": 1088 + } + }, + { + "x": 719.4668384773661, + "y": 272.55160181778047 + }, + { + "x": 629.9625517832646, + "y": 250.59575476702602 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1092 + } + }, + [ + { + "#": 1093 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 674.7146951303154, + "y": 261.5736782924033 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 674.7146951303154, + "y": 258.6664075773676 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,5,5", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1100 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035714 + }, + [ + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 629.9625517832646, + "y": 250.59575476702602 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 719.4668384773661, + "y": 250.59575476702602 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 719.4668384773661, + "y": 272.55160181778047 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 629.9625517832646, + "y": 272.55160181778047 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1492.5256200000001, + "axes": { + "#": 1108 + }, + "bounds": { + "#": 1112 + }, + "collisionFilter": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "density": 0.001, + "events": { + "#": 1117 + }, + "force": { + "#": 1120 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1714.8324723309402, + "inverseInertia": 0.0005831473430408735, + "inverseMass": 0.6700052492231255, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.49252562, + "motion": 2.2526572115107895, + "parent": null, + "position": { + "#": 1121 + }, + "positionImpulse": { + "#": 1122 + }, + "positionPrev": { + "#": 1123 + }, + "region": { + "#": 1124 + }, + "render": { + "#": 1125 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1127 + }, + "vertices": { + "#": 1128 + } + }, + [ + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + } + ], + { + "x": -0.5000025921589079, + "y": 0.8660239071956228 + }, + { + "x": -0.5000025921589079, + "y": -0.8660239071956228 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1113 + }, + "min": { + "#": 1114 + } + }, + { + "x": 761.8368384773661, + "y": 309.3057547670249 + }, + { + "x": 710.9928384773661, + "y": 250.59575476702506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "sleepStart": { + "#": 1118 + } + }, + [ + { + "#": 1119 + } + ], + {}, + { + "x": 0, + "y": 0 + }, + { + "x": 744.8888384773661, + "y": 279.95075476702493 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 744.8888384773661, + "y": 277.04348405198937 + }, + { + "endCol": 15, + "endRow": 6, + "id": "14,15,5,6", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1126 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 761.8368384773661, + "y": 309.3057547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 710.9928384773661, + "y": 279.95075476702493 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 761.8368384773661, + "y": 250.59575476702506 + }, + [], + [], + [ + { + "#": 1135 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1136 + }, + "pointB": "", + "render": { + "#": 1137 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 1139 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/slingshot/slingshot-0.json b/tests/browser/refs/slingshot/slingshot-0.json new file mode 100644 index 00000000..8e507da7 --- /dev/null +++ b/tests/browser/refs/slingshot/slingshot-0.json @@ -0,0 +1,7069 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 71 + }, + "composites": { + "#": 74 + }, + "constraints": { + "#": 797 + }, + "gravity": { + "#": 805 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40750, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 802.5, + "y": 625 + }, + { + "x": -12.5, + "y": 575 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 395, + "y": 600 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 395, + "y": 600 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -12.5, + "y": 575 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 802.5, + "y": 575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 802.5, + "y": 625 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -12.5, + "y": 625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4000, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 710, + "y": 260 + }, + { + "x": 510, + "y": 240 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 610, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 610, + "y": 250 + }, + { + "fillStyle": "#edc51e", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#b5a91c", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 710, + "y": 240 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 710, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1131.4279840000002, + "axes": { + "#": 45 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": 0.004, + "force": { + "#": 55 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 3267.2544468363367, + "inverseInertia": 0.00030606737744845496, + "inverseMass": 0.22095971068009218, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.525711936, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "render": { + "#": 59 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 61 + }, + "vertices": { + "#": 62 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + }, + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 188.478, + "y": 468.478 + }, + { + "x": 151.522, + "y": 431.522 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170, + "y": 450 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170, + "y": 450 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 60 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/rock.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 63 + }, + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + }, + { + "#": 68 + }, + { + "#": 69 + }, + { + "#": 70 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 188.478, + "y": 457.654 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 177.654, + "y": 468.478 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 162.346, + "y": 468.478 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 151.522, + "y": 457.654 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.522, + "y": 442.346 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 162.346, + "y": 431.522 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 177.654, + "y": 431.522 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 188.478, + "y": 442.346 + }, + { + "max": { + "#": 72 + }, + "min": { + "#": 73 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 75 + }, + { + "#": 604 + } + ], + { + "bodies": { + "#": 76 + }, + "composites": { + "#": 602 + }, + "constraints": { + "#": 603 + }, + "id": 7, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 77 + }, + { + "#": 98 + }, + { + "#": 119 + }, + { + "#": 140 + }, + { + "#": 161 + }, + { + "#": 182 + }, + { + "#": 203 + }, + { + "#": 224 + }, + { + "#": 245 + }, + { + "#": 266 + }, + { + "#": 287 + }, + { + "#": 308 + }, + { + "#": 329 + }, + { + "#": 350 + }, + { + "#": 371 + }, + { + "#": 392 + }, + { + "#": 413 + }, + { + "#": 434 + }, + { + "#": 455 + }, + { + "#": 476 + }, + { + "#": 497 + }, + { + "#": 518 + }, + { + "#": 539 + }, + { + "#": 560 + }, + { + "#": 581 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 78 + }, + "bounds": { + "#": 81 + }, + "collisionFilter": { + "#": 84 + }, + "constraintImpulse": { + "#": 85 + }, + "density": 0.001, + "force": { + "#": 86 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 87 + }, + "positionImpulse": { + "#": 88 + }, + "positionPrev": { + "#": 89 + }, + "render": { + "#": 90 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 92 + }, + "vertices": { + "#": 93 + } + }, + [ + { + "#": 79 + }, + { + "#": 80 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 82 + }, + "min": { + "#": 83 + } + }, + { + "x": 625, + "y": 340 + }, + { + "x": 600, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 320 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 91 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 99 + }, + "bounds": { + "#": 102 + }, + "collisionFilter": { + "#": 105 + }, + "constraintImpulse": { + "#": 106 + }, + "density": 0.001, + "force": { + "#": 107 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 108 + }, + "positionImpulse": { + "#": 109 + }, + "positionPrev": { + "#": 110 + }, + "render": { + "#": 111 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 113 + }, + "vertices": { + "#": 114 + } + }, + [ + { + "#": 100 + }, + { + "#": 101 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 103 + }, + "min": { + "#": 104 + } + }, + { + "x": 600, + "y": 380 + }, + { + "x": 575, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 360 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 112 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 120 + }, + "bounds": { + "#": 123 + }, + "collisionFilter": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "density": 0.001, + "force": { + "#": 128 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 129 + }, + "positionImpulse": { + "#": 130 + }, + "positionPrev": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 124 + }, + "min": { + "#": 125 + } + }, + { + "x": 625, + "y": 380 + }, + { + "x": 600, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 360 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "render": { + "#": 153 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 155 + }, + "vertices": { + "#": 156 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 650, + "y": 380 + }, + { + "x": 625, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 360 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 154 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 162 + }, + "bounds": { + "#": 165 + }, + "collisionFilter": { + "#": 168 + }, + "constraintImpulse": { + "#": 169 + }, + "density": 0.001, + "force": { + "#": 170 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 171 + }, + "positionImpulse": { + "#": 172 + }, + "positionPrev": { + "#": 173 + }, + "render": { + "#": 174 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 176 + }, + "vertices": { + "#": 177 + } + }, + [ + { + "#": 163 + }, + { + "#": 164 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 166 + }, + "min": { + "#": 167 + } + }, + { + "x": 575, + "y": 420 + }, + { + "x": 550, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 400 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 175 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 183 + }, + "bounds": { + "#": 186 + }, + "collisionFilter": { + "#": 189 + }, + "constraintImpulse": { + "#": 190 + }, + "density": 0.001, + "force": { + "#": 191 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 192 + }, + "positionImpulse": { + "#": 193 + }, + "positionPrev": { + "#": 194 + }, + "render": { + "#": 195 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 197 + }, + "vertices": { + "#": 198 + } + }, + [ + { + "#": 184 + }, + { + "#": 185 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 187 + }, + "min": { + "#": 188 + } + }, + { + "x": 600, + "y": 420 + }, + { + "x": 575, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 400 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 196 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 204 + }, + "bounds": { + "#": 207 + }, + "collisionFilter": { + "#": 210 + }, + "constraintImpulse": { + "#": 211 + }, + "density": 0.001, + "force": { + "#": 212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 213 + }, + "positionImpulse": { + "#": 214 + }, + "positionPrev": { + "#": 215 + }, + "render": { + "#": 216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 218 + }, + "vertices": { + "#": 219 + } + }, + [ + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 208 + }, + "min": { + "#": 209 + } + }, + { + "x": 625, + "y": 420 + }, + { + "x": 600, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 400 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 217 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 225 + }, + "bounds": { + "#": 228 + }, + "collisionFilter": { + "#": 231 + }, + "constraintImpulse": { + "#": 232 + }, + "density": 0.001, + "force": { + "#": 233 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 234 + }, + "positionImpulse": { + "#": 235 + }, + "positionPrev": { + "#": 236 + }, + "render": { + "#": 237 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 239 + }, + "vertices": { + "#": 240 + } + }, + [ + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 229 + }, + "min": { + "#": 230 + } + }, + { + "x": 650, + "y": 420 + }, + { + "x": 625, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 400 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 238 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 246 + }, + "bounds": { + "#": 249 + }, + "collisionFilter": { + "#": 252 + }, + "constraintImpulse": { + "#": 253 + }, + "density": 0.001, + "force": { + "#": 254 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 255 + }, + "positionImpulse": { + "#": 256 + }, + "positionPrev": { + "#": 257 + }, + "render": { + "#": 258 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 260 + }, + "vertices": { + "#": 261 + } + }, + [ + { + "#": 247 + }, + { + "#": 248 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 250 + }, + "min": { + "#": 251 + } + }, + { + "x": 675, + "y": 420 + }, + { + "x": 650, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 400 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 259 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 267 + }, + "bounds": { + "#": 270 + }, + "collisionFilter": { + "#": 273 + }, + "constraintImpulse": { + "#": 274 + }, + "density": 0.001, + "force": { + "#": 275 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 276 + }, + "positionImpulse": { + "#": 277 + }, + "positionPrev": { + "#": 278 + }, + "render": { + "#": 279 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 281 + }, + "vertices": { + "#": 282 + } + }, + [ + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 271 + }, + "min": { + "#": 272 + } + }, + { + "x": 550, + "y": 460 + }, + { + "x": 525, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 440 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 280 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 288 + }, + "bounds": { + "#": 291 + }, + "collisionFilter": { + "#": 294 + }, + "constraintImpulse": { + "#": 295 + }, + "density": 0.001, + "force": { + "#": 296 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 297 + }, + "positionImpulse": { + "#": 298 + }, + "positionPrev": { + "#": 299 + }, + "render": { + "#": 300 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 302 + }, + "vertices": { + "#": 303 + } + }, + [ + { + "#": 289 + }, + { + "#": 290 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 292 + }, + "min": { + "#": 293 + } + }, + { + "x": 575, + "y": 460 + }, + { + "x": 550, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 440 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 301 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 309 + }, + "bounds": { + "#": 312 + }, + "collisionFilter": { + "#": 315 + }, + "constraintImpulse": { + "#": 316 + }, + "density": 0.001, + "force": { + "#": 317 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 318 + }, + "positionImpulse": { + "#": 319 + }, + "positionPrev": { + "#": 320 + }, + "render": { + "#": 321 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 323 + }, + "vertices": { + "#": 324 + } + }, + [ + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 313 + }, + "min": { + "#": 314 + } + }, + { + "x": 600, + "y": 460 + }, + { + "x": 575, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 440 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 322 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 330 + }, + "bounds": { + "#": 333 + }, + "collisionFilter": { + "#": 336 + }, + "constraintImpulse": { + "#": 337 + }, + "density": 0.001, + "force": { + "#": 338 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 339 + }, + "positionImpulse": { + "#": 340 + }, + "positionPrev": { + "#": 341 + }, + "render": { + "#": 342 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 344 + }, + "vertices": { + "#": 345 + } + }, + [ + { + "#": 331 + }, + { + "#": 332 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 334 + }, + "min": { + "#": 335 + } + }, + { + "x": 625, + "y": 460 + }, + { + "x": 600, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 440 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 343 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 351 + }, + "bounds": { + "#": 354 + }, + "collisionFilter": { + "#": 357 + }, + "constraintImpulse": { + "#": 358 + }, + "density": 0.001, + "force": { + "#": 359 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 360 + }, + "positionImpulse": { + "#": 361 + }, + "positionPrev": { + "#": 362 + }, + "render": { + "#": 363 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 365 + }, + "vertices": { + "#": 366 + } + }, + [ + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 355 + }, + "min": { + "#": 356 + } + }, + { + "x": 650, + "y": 460 + }, + { + "x": 625, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 440 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 364 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 372 + }, + "bounds": { + "#": 375 + }, + "collisionFilter": { + "#": 378 + }, + "constraintImpulse": { + "#": 379 + }, + "density": 0.001, + "force": { + "#": 380 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 381 + }, + "positionImpulse": { + "#": 382 + }, + "positionPrev": { + "#": 383 + }, + "render": { + "#": 384 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 386 + }, + "vertices": { + "#": 387 + } + }, + [ + { + "#": 373 + }, + { + "#": 374 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 376 + }, + "min": { + "#": 377 + } + }, + { + "x": 675, + "y": 460 + }, + { + "x": 650, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 440 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 385 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 393 + }, + "bounds": { + "#": 396 + }, + "collisionFilter": { + "#": 399 + }, + "constraintImpulse": { + "#": 400 + }, + "density": 0.001, + "force": { + "#": 401 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 402 + }, + "positionImpulse": { + "#": 403 + }, + "positionPrev": { + "#": 404 + }, + "render": { + "#": 405 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 407 + }, + "vertices": { + "#": 408 + } + }, + [ + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 397 + }, + "min": { + "#": 398 + } + }, + { + "x": 700, + "y": 460 + }, + { + "x": 675, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 440 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 406 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 414 + }, + "bounds": { + "#": 417 + }, + "collisionFilter": { + "#": 420 + }, + "constraintImpulse": { + "#": 421 + }, + "density": 0.001, + "force": { + "#": 422 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 423 + }, + "positionImpulse": { + "#": 424 + }, + "positionPrev": { + "#": 425 + }, + "render": { + "#": 426 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 428 + }, + "vertices": { + "#": 429 + } + }, + [ + { + "#": 415 + }, + { + "#": 416 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 418 + }, + "min": { + "#": 419 + } + }, + { + "x": 525, + "y": 500 + }, + { + "x": 500, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 480 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 427 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 435 + }, + "bounds": { + "#": 438 + }, + "collisionFilter": { + "#": 441 + }, + "constraintImpulse": { + "#": 442 + }, + "density": 0.001, + "force": { + "#": 443 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 444 + }, + "positionImpulse": { + "#": 445 + }, + "positionPrev": { + "#": 446 + }, + "render": { + "#": 447 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 449 + }, + "vertices": { + "#": 450 + } + }, + [ + { + "#": 436 + }, + { + "#": 437 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 439 + }, + "min": { + "#": 440 + } + }, + { + "x": 550, + "y": 500 + }, + { + "x": 525, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 480 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 448 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 456 + }, + "bounds": { + "#": 459 + }, + "collisionFilter": { + "#": 462 + }, + "constraintImpulse": { + "#": 463 + }, + "density": 0.001, + "force": { + "#": 464 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 465 + }, + "positionImpulse": { + "#": 466 + }, + "positionPrev": { + "#": 467 + }, + "render": { + "#": 468 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 470 + }, + "vertices": { + "#": 471 + } + }, + [ + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 460 + }, + "min": { + "#": 461 + } + }, + { + "x": 575, + "y": 500 + }, + { + "x": 550, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 480 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 469 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 477 + }, + "bounds": { + "#": 480 + }, + "collisionFilter": { + "#": 483 + }, + "constraintImpulse": { + "#": 484 + }, + "density": 0.001, + "force": { + "#": 485 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 486 + }, + "positionImpulse": { + "#": 487 + }, + "positionPrev": { + "#": 488 + }, + "render": { + "#": 489 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 491 + }, + "vertices": { + "#": 492 + } + }, + [ + { + "#": 478 + }, + { + "#": 479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 481 + }, + "min": { + "#": 482 + } + }, + { + "x": 600, + "y": 500 + }, + { + "x": 575, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 480 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 490 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 498 + }, + "bounds": { + "#": 501 + }, + "collisionFilter": { + "#": 504 + }, + "constraintImpulse": { + "#": 505 + }, + "density": 0.001, + "force": { + "#": 506 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 507 + }, + "positionImpulse": { + "#": 508 + }, + "positionPrev": { + "#": 509 + }, + "render": { + "#": 510 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 512 + }, + "vertices": { + "#": 513 + } + }, + [ + { + "#": 499 + }, + { + "#": 500 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 502 + }, + "min": { + "#": 503 + } + }, + { + "x": 625, + "y": 500 + }, + { + "x": 600, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 480 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 511 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 519 + }, + "bounds": { + "#": 522 + }, + "collisionFilter": { + "#": 525 + }, + "constraintImpulse": { + "#": 526 + }, + "density": 0.001, + "force": { + "#": 527 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 528 + }, + "positionImpulse": { + "#": 529 + }, + "positionPrev": { + "#": 530 + }, + "render": { + "#": 531 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 533 + }, + "vertices": { + "#": 534 + } + }, + [ + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 523 + }, + "min": { + "#": 524 + } + }, + { + "x": 650, + "y": 500 + }, + { + "x": 625, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 480 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 532 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 540 + }, + "bounds": { + "#": 543 + }, + "collisionFilter": { + "#": 546 + }, + "constraintImpulse": { + "#": 547 + }, + "density": 0.001, + "force": { + "#": 548 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 549 + }, + "positionImpulse": { + "#": 550 + }, + "positionPrev": { + "#": 551 + }, + "render": { + "#": 552 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 554 + }, + "vertices": { + "#": 555 + } + }, + [ + { + "#": 541 + }, + { + "#": 542 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 544 + }, + "min": { + "#": 545 + } + }, + { + "x": 675, + "y": 500 + }, + { + "x": 650, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 480 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 553 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 561 + }, + "bounds": { + "#": 564 + }, + "collisionFilter": { + "#": 567 + }, + "constraintImpulse": { + "#": 568 + }, + "density": 0.001, + "force": { + "#": 569 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 570 + }, + "positionImpulse": { + "#": 571 + }, + "positionPrev": { + "#": 572 + }, + "render": { + "#": 573 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 575 + }, + "vertices": { + "#": 576 + } + }, + [ + { + "#": 562 + }, + { + "#": 563 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 565 + }, + "min": { + "#": 566 + } + }, + { + "x": 700, + "y": 500 + }, + { + "x": 675, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 480 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 574 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 582 + }, + "bounds": { + "#": 585 + }, + "collisionFilter": { + "#": 588 + }, + "constraintImpulse": { + "#": 589 + }, + "density": 0.001, + "force": { + "#": 590 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 591 + }, + "positionImpulse": { + "#": 592 + }, + "positionPrev": { + "#": 593 + }, + "render": { + "#": 594 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 596 + }, + "vertices": { + "#": 597 + } + }, + [ + { + "#": 583 + }, + { + "#": 584 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 586 + }, + "min": { + "#": 587 + } + }, + { + "x": 725, + "y": 500 + }, + { + "x": 700, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 480 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 595 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 500 + }, + [], + [], + { + "bodies": { + "#": 605 + }, + "composites": { + "#": 795 + }, + "constraints": { + "#": 796 + }, + "id": 34, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 606 + }, + { + "#": 627 + }, + { + "#": 648 + }, + { + "#": 669 + }, + { + "#": 690 + }, + { + "#": 711 + }, + { + "#": 732 + }, + { + "#": 753 + }, + { + "#": 774 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 607 + }, + "bounds": { + "#": 610 + }, + "collisionFilter": { + "#": 613 + }, + "constraintImpulse": { + "#": 614 + }, + "density": 0.001, + "force": { + "#": 615 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 616 + }, + "positionImpulse": { + "#": 617 + }, + "positionPrev": { + "#": 618 + }, + "render": { + "#": 619 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 621 + }, + "vertices": { + "#": 622 + } + }, + [ + { + "#": 608 + }, + { + "#": 609 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 611 + }, + "min": { + "#": 612 + } + }, + { + "x": 625, + "y": 40 + }, + { + "x": 600, + "y": 0 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 20 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 20 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 620 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 0 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 0 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 40 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 40 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 628 + }, + "bounds": { + "#": 631 + }, + "collisionFilter": { + "#": 634 + }, + "constraintImpulse": { + "#": 635 + }, + "density": 0.001, + "force": { + "#": 636 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 637 + }, + "positionImpulse": { + "#": 638 + }, + "positionPrev": { + "#": 639 + }, + "render": { + "#": 640 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 642 + }, + "vertices": { + "#": 643 + } + }, + [ + { + "#": 629 + }, + { + "#": 630 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 632 + }, + "min": { + "#": 633 + } + }, + { + "x": 600, + "y": 80 + }, + { + "x": 575, + "y": 40 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 60 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 60 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 641 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 40 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 40 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 80 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 80 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 649 + }, + "bounds": { + "#": 652 + }, + "collisionFilter": { + "#": 655 + }, + "constraintImpulse": { + "#": 656 + }, + "density": 0.001, + "force": { + "#": 657 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 658 + }, + "positionImpulse": { + "#": 659 + }, + "positionPrev": { + "#": 660 + }, + "render": { + "#": 661 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 663 + }, + "vertices": { + "#": 664 + } + }, + [ + { + "#": 650 + }, + { + "#": 651 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 653 + }, + "min": { + "#": 654 + } + }, + { + "x": 625, + "y": 80 + }, + { + "x": 600, + "y": 40 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 60 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 60 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 662 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 40 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 40 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 80 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 80 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 670 + }, + "bounds": { + "#": 673 + }, + "collisionFilter": { + "#": 676 + }, + "constraintImpulse": { + "#": 677 + }, + "density": 0.001, + "force": { + "#": 678 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 679 + }, + "positionImpulse": { + "#": 680 + }, + "positionPrev": { + "#": 681 + }, + "render": { + "#": 682 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 684 + }, + "vertices": { + "#": 685 + } + }, + [ + { + "#": 671 + }, + { + "#": 672 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 674 + }, + "min": { + "#": 675 + } + }, + { + "x": 650, + "y": 80 + }, + { + "x": 625, + "y": 40 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 60 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 60 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 683 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 40 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 40 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 80 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 80 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 691 + }, + "bounds": { + "#": 694 + }, + "collisionFilter": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "density": 0.001, + "force": { + "#": 699 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 700 + }, + "positionImpulse": { + "#": 701 + }, + "positionPrev": { + "#": 702 + }, + "render": { + "#": 703 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 705 + }, + "vertices": { + "#": 706 + } + }, + [ + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 695 + }, + "min": { + "#": 696 + } + }, + { + "x": 575, + "y": 120 + }, + { + "x": 550, + "y": 80 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 100 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 704 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 80 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 80 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 712 + }, + "bounds": { + "#": 715 + }, + "collisionFilter": { + "#": 718 + }, + "constraintImpulse": { + "#": 719 + }, + "density": 0.001, + "force": { + "#": 720 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 721 + }, + "positionImpulse": { + "#": 722 + }, + "positionPrev": { + "#": 723 + }, + "render": { + "#": 724 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 726 + }, + "vertices": { + "#": 727 + } + }, + [ + { + "#": 713 + }, + { + "#": 714 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 716 + }, + "min": { + "#": 717 + } + }, + { + "x": 600, + "y": 120 + }, + { + "x": 575, + "y": 80 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 100 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 725 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 80 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 80 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 733 + }, + "bounds": { + "#": 736 + }, + "collisionFilter": { + "#": 739 + }, + "constraintImpulse": { + "#": 740 + }, + "density": 0.001, + "force": { + "#": 741 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 742 + }, + "positionImpulse": { + "#": 743 + }, + "positionPrev": { + "#": 744 + }, + "render": { + "#": 745 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 747 + }, + "vertices": { + "#": 748 + } + }, + [ + { + "#": 734 + }, + { + "#": 735 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 737 + }, + "min": { + "#": 738 + } + }, + { + "x": 625, + "y": 120 + }, + { + "x": 600, + "y": 80 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 100 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 746 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 80 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 80 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 754 + }, + "bounds": { + "#": 757 + }, + "collisionFilter": { + "#": 760 + }, + "constraintImpulse": { + "#": 761 + }, + "density": 0.001, + "force": { + "#": 762 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 763 + }, + "positionImpulse": { + "#": 764 + }, + "positionPrev": { + "#": 765 + }, + "render": { + "#": 766 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 768 + }, + "vertices": { + "#": 769 + } + }, + [ + { + "#": 755 + }, + { + "#": 756 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 758 + }, + "min": { + "#": 759 + } + }, + { + "x": 650, + "y": 120 + }, + { + "x": 625, + "y": 80 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 100 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 767 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 80 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 80 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 775 + }, + "bounds": { + "#": 778 + }, + "collisionFilter": { + "#": 781 + }, + "constraintImpulse": { + "#": 782 + }, + "density": 0.001, + "force": { + "#": 783 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 784 + }, + "positionImpulse": { + "#": 785 + }, + "positionPrev": { + "#": 786 + }, + "render": { + "#": 787 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 789 + }, + "vertices": { + "#": 790 + } + }, + [ + { + "#": 776 + }, + { + "#": 777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 779 + }, + "min": { + "#": 780 + } + }, + { + "x": 675, + "y": 120 + }, + { + "x": 650, + "y": 80 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 100 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 788 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 80 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 80 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 120 + }, + [], + [], + [ + { + "#": 798 + }, + { + "#": 801 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 799 + }, + "pointB": "", + "render": { + "#": 800 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 6, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 802 + }, + "pointB": { + "#": 803 + }, + "render": { + "#": 804 + }, + "stiffness": 0.05, + "type": "constraint" + }, + { + "x": 170, + "y": 450 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 5, + "strokeStyle": "#dfa417", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/slingshot/slingshot-10.json b/tests/browser/refs/slingshot/slingshot-10.json new file mode 100644 index 00000000..279748dc --- /dev/null +++ b/tests/browser/refs/slingshot/slingshot-10.json @@ -0,0 +1,7439 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 74 + }, + "composites": { + "#": 77 + }, + "constraints": { + "#": 834 + }, + "gravity": { + "#": 842 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40750, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 802.5, + "y": 625 + }, + { + "x": -12.5, + "y": 575 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 395, + "y": 600 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 395, + "y": 600 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,11,13", + "startCol": -1, + "startRow": 11 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -12.5, + "y": 575 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 802.5, + "y": 575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 802.5, + "y": 625 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -12.5, + "y": 625 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4000, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 710, + "y": 260 + }, + { + "x": 510, + "y": 240 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 610, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 610, + "y": 250 + }, + { + "endCol": 14, + "endRow": 5, + "id": "10,14,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#edc51e", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#b5a91c", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 240 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 710, + "y": 240 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 710, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1131.4279840000002, + "axes": { + "#": 47 + }, + "bounds": { + "#": 52 + }, + "collisionFilter": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "density": 0.004, + "force": { + "#": 57 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 3267.2544468363367, + "inverseInertia": 0.00030606737744845496, + "inverseMass": 0.22095971068009218, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.525711936, + "motion": 0, + "parent": null, + "position": { + "#": 58 + }, + "positionImpulse": { + "#": 59 + }, + "positionPrev": { + "#": 60 + }, + "region": { + "#": 61 + }, + "render": { + "#": 62 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.9800681428440472, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 64 + }, + "vertices": { + "#": 65 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 53 + }, + "min": { + "#": 54 + } + }, + { + "x": 188.478, + "y": 476.7578830850918 + }, + { + "x": 151.522, + "y": 439.8018830850918 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170, + "y": 458.2798830850918 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 170, + "y": 457.7298679894024 + }, + { + "endCol": 3, + "endRow": 9, + "id": "3,3,9,9", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 63 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/rock.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7623197645378923 + }, + [ + { + "#": 66 + }, + { + "#": 67 + }, + { + "#": 68 + }, + { + "#": 69 + }, + { + "#": 70 + }, + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 188.478, + "y": 465.9338830850918 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 177.654, + "y": 476.7578830850918 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 162.346, + "y": 476.7578830850918 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 151.522, + "y": 465.9338830850918 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.522, + "y": 450.6258830850918 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 162.346, + "y": 439.8018830850918 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 177.654, + "y": 439.8018830850918 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 188.478, + "y": 450.6258830850918 + }, + { + "max": { + "#": 75 + }, + "min": { + "#": 76 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 78 + }, + { + "#": 632 + } + ], + { + "bodies": { + "#": 79 + }, + "composites": { + "#": 630 + }, + "constraints": { + "#": 631 + }, + "id": 7, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 80 + }, + { + "#": 102 + }, + { + "#": 124 + }, + { + "#": 146 + }, + { + "#": 168 + }, + { + "#": 190 + }, + { + "#": 212 + }, + { + "#": 234 + }, + { + "#": 256 + }, + { + "#": 278 + }, + { + "#": 300 + }, + { + "#": 322 + }, + { + "#": 344 + }, + { + "#": 366 + }, + { + "#": 388 + }, + { + "#": 410 + }, + { + "#": 432 + }, + { + "#": 454 + }, + { + "#": 476 + }, + { + "#": 498 + }, + { + "#": 520 + }, + { + "#": 542 + }, + { + "#": 564 + }, + { + "#": 586 + }, + { + "#": 608 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 81 + }, + "bounds": { + "#": 84 + }, + "collisionFilter": { + "#": 87 + }, + "constraintImpulse": { + "#": 88 + }, + "density": 0.001, + "force": { + "#": 89 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 90 + }, + "positionImpulse": { + "#": 91 + }, + "positionPrev": { + "#": 92 + }, + "region": { + "#": 93 + }, + "render": { + "#": 94 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 96 + }, + "vertices": { + "#": 97 + } + }, + [ + { + "#": 82 + }, + { + "#": 83 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 85 + }, + "min": { + "#": 86 + } + }, + { + "x": 625, + "y": 357.73575476702496 + }, + { + "x": 600, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 334.8284840519894 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,6,7", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 95 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 103 + }, + "bounds": { + "#": 106 + }, + "collisionFilter": { + "#": 109 + }, + "constraintImpulse": { + "#": 110 + }, + "density": 0.001, + "force": { + "#": 111 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 112 + }, + "positionImpulse": { + "#": 113 + }, + "positionPrev": { + "#": 114 + }, + "region": { + "#": 115 + }, + "render": { + "#": 116 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 118 + }, + "vertices": { + "#": 119 + } + }, + [ + { + "#": 104 + }, + { + "#": 105 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 107 + }, + "min": { + "#": 108 + } + }, + { + "x": 600, + "y": 397.73575476702496 + }, + { + "x": 575, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 374.8284840519894 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,7,8", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 117 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 125 + }, + "bounds": { + "#": 128 + }, + "collisionFilter": { + "#": 131 + }, + "constraintImpulse": { + "#": 132 + }, + "density": 0.001, + "force": { + "#": 133 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 134 + }, + "positionImpulse": { + "#": 135 + }, + "positionPrev": { + "#": 136 + }, + "region": { + "#": 137 + }, + "render": { + "#": 138 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 140 + }, + "vertices": { + "#": 141 + } + }, + [ + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 129 + }, + "min": { + "#": 130 + } + }, + { + "x": 625, + "y": 397.73575476702496 + }, + { + "x": 600, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 374.8284840519894 + }, + { + "endCol": 13, + "endRow": 8, + "id": "12,13,7,8", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 139 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 147 + }, + "bounds": { + "#": 150 + }, + "collisionFilter": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "density": 0.001, + "force": { + "#": 155 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 156 + }, + "positionImpulse": { + "#": 157 + }, + "positionPrev": { + "#": 158 + }, + "region": { + "#": 159 + }, + "render": { + "#": 160 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 162 + }, + "vertices": { + "#": 163 + } + }, + [ + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 151 + }, + "min": { + "#": 152 + } + }, + { + "x": 650, + "y": 397.73575476702496 + }, + { + "x": 625, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 374.8284840519894 + }, + { + "endCol": 13, + "endRow": 8, + "id": "13,13,7,8", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 161 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 169 + }, + "bounds": { + "#": 172 + }, + "collisionFilter": { + "#": 175 + }, + "constraintImpulse": { + "#": 176 + }, + "density": 0.001, + "force": { + "#": 177 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 178 + }, + "positionImpulse": { + "#": 179 + }, + "positionPrev": { + "#": 180 + }, + "region": { + "#": 181 + }, + "render": { + "#": 182 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 184 + }, + "vertices": { + "#": 185 + } + }, + [ + { + "#": 170 + }, + { + "#": 171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 173 + }, + "min": { + "#": 174 + } + }, + { + "x": 575, + "y": 437.73575476702496 + }, + { + "x": 550, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 414.8284840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "11,11,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 183 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 191 + }, + "bounds": { + "#": 194 + }, + "collisionFilter": { + "#": 197 + }, + "constraintImpulse": { + "#": 198 + }, + "density": 0.001, + "force": { + "#": 199 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 200 + }, + "positionImpulse": { + "#": 201 + }, + "positionPrev": { + "#": 202 + }, + "region": { + "#": 203 + }, + "render": { + "#": 204 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 206 + }, + "vertices": { + "#": 207 + } + }, + [ + { + "#": 192 + }, + { + "#": 193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 195 + }, + "min": { + "#": 196 + } + }, + { + "x": 600, + "y": 437.73575476702496 + }, + { + "x": 575, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 414.8284840519894 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 205 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 213 + }, + "bounds": { + "#": 216 + }, + "collisionFilter": { + "#": 219 + }, + "constraintImpulse": { + "#": 220 + }, + "density": 0.001, + "force": { + "#": 221 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 222 + }, + "positionImpulse": { + "#": 223 + }, + "positionPrev": { + "#": 224 + }, + "region": { + "#": 225 + }, + "render": { + "#": 226 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 228 + }, + "vertices": { + "#": 229 + } + }, + [ + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 217 + }, + "min": { + "#": 218 + } + }, + { + "x": 625, + "y": 437.73575476702496 + }, + { + "x": 600, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 414.8284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "12,13,8,9", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 227 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 235 + }, + "bounds": { + "#": 238 + }, + "collisionFilter": { + "#": 241 + }, + "constraintImpulse": { + "#": 242 + }, + "density": 0.001, + "force": { + "#": 243 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 244 + }, + "positionImpulse": { + "#": 245 + }, + "positionPrev": { + "#": 246 + }, + "region": { + "#": 247 + }, + "render": { + "#": 248 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 250 + }, + "vertices": { + "#": 251 + } + }, + [ + { + "#": 236 + }, + { + "#": 237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 239 + }, + "min": { + "#": 240 + } + }, + { + "x": 650, + "y": 437.73575476702496 + }, + { + "x": 625, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 414.8284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "13,13,8,9", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 249 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 257 + }, + "bounds": { + "#": 260 + }, + "collisionFilter": { + "#": 263 + }, + "constraintImpulse": { + "#": 264 + }, + "density": 0.001, + "force": { + "#": 265 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 266 + }, + "positionImpulse": { + "#": 267 + }, + "positionPrev": { + "#": 268 + }, + "region": { + "#": 269 + }, + "render": { + "#": 270 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 272 + }, + "vertices": { + "#": 273 + } + }, + [ + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 261 + }, + "min": { + "#": 262 + } + }, + { + "x": 675, + "y": 437.73575476702496 + }, + { + "x": 650, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 414.8284840519894 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,8,9", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 271 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 279 + }, + "bounds": { + "#": 282 + }, + "collisionFilter": { + "#": 285 + }, + "constraintImpulse": { + "#": 286 + }, + "density": 0.001, + "force": { + "#": 287 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 288 + }, + "positionImpulse": { + "#": 289 + }, + "positionPrev": { + "#": 290 + }, + "region": { + "#": 291 + }, + "render": { + "#": 292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 294 + }, + "vertices": { + "#": 295 + } + }, + [ + { + "#": 280 + }, + { + "#": 281 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 283 + }, + "min": { + "#": 284 + } + }, + { + "x": 550, + "y": 477.73575476702496 + }, + { + "x": 525, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 454.8284840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,9,9", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 293 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 301 + }, + "bounds": { + "#": 304 + }, + "collisionFilter": { + "#": 307 + }, + "constraintImpulse": { + "#": 308 + }, + "density": 0.001, + "force": { + "#": 309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 310 + }, + "positionImpulse": { + "#": 311 + }, + "positionPrev": { + "#": 312 + }, + "region": { + "#": 313 + }, + "render": { + "#": 314 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 316 + }, + "vertices": { + "#": 317 + } + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 305 + }, + "min": { + "#": 306 + } + }, + { + "x": 575, + "y": 477.73575476702496 + }, + { + "x": 550, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 454.8284840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "11,11,9,9", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 315 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 323 + }, + "bounds": { + "#": 326 + }, + "collisionFilter": { + "#": 329 + }, + "constraintImpulse": { + "#": 330 + }, + "density": 0.001, + "force": { + "#": 331 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 332 + }, + "positionImpulse": { + "#": 333 + }, + "positionPrev": { + "#": 334 + }, + "region": { + "#": 335 + }, + "render": { + "#": 336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 338 + }, + "vertices": { + "#": 339 + } + }, + [ + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 327 + }, + "min": { + "#": 328 + } + }, + { + "x": 600, + "y": 477.73575476702496 + }, + { + "x": 575, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 454.8284840519894 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,9,9", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 337 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 345 + }, + "bounds": { + "#": 348 + }, + "collisionFilter": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "density": 0.001, + "force": { + "#": 353 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 354 + }, + "positionImpulse": { + "#": 355 + }, + "positionPrev": { + "#": 356 + }, + "region": { + "#": 357 + }, + "render": { + "#": 358 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 360 + }, + "vertices": { + "#": 361 + } + }, + [ + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 349 + }, + "min": { + "#": 350 + } + }, + { + "x": 625, + "y": 477.73575476702496 + }, + { + "x": 600, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 454.8284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "12,13,9,9", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 359 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 367 + }, + "bounds": { + "#": 370 + }, + "collisionFilter": { + "#": 373 + }, + "constraintImpulse": { + "#": 374 + }, + "density": 0.001, + "force": { + "#": 375 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 376 + }, + "positionImpulse": { + "#": 377 + }, + "positionPrev": { + "#": 378 + }, + "region": { + "#": 379 + }, + "render": { + "#": 380 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 382 + }, + "vertices": { + "#": 383 + } + }, + [ + { + "#": 368 + }, + { + "#": 369 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 371 + }, + "min": { + "#": 372 + } + }, + { + "x": 650, + "y": 477.73575476702496 + }, + { + "x": 625, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 454.8284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "13,13,9,9", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 381 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 389 + }, + "bounds": { + "#": 392 + }, + "collisionFilter": { + "#": 395 + }, + "constraintImpulse": { + "#": 396 + }, + "density": 0.001, + "force": { + "#": 397 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 398 + }, + "positionImpulse": { + "#": 399 + }, + "positionPrev": { + "#": 400 + }, + "region": { + "#": 401 + }, + "render": { + "#": 402 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 404 + }, + "vertices": { + "#": 405 + } + }, + [ + { + "#": 390 + }, + { + "#": 391 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 393 + }, + "min": { + "#": 394 + } + }, + { + "x": 675, + "y": 477.73575476702496 + }, + { + "x": 650, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 454.8284840519894 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,9,9", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 403 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 411 + }, + "bounds": { + "#": 414 + }, + "collisionFilter": { + "#": 417 + }, + "constraintImpulse": { + "#": 418 + }, + "density": 0.001, + "force": { + "#": 419 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 420 + }, + "positionImpulse": { + "#": 421 + }, + "positionPrev": { + "#": 422 + }, + "region": { + "#": 423 + }, + "render": { + "#": 424 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 426 + }, + "vertices": { + "#": 427 + } + }, + [ + { + "#": 412 + }, + { + "#": 413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 415 + }, + "min": { + "#": 416 + } + }, + { + "x": 700, + "y": 477.73575476702496 + }, + { + "x": 675, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 454.8284840519894 + }, + { + "endCol": 14, + "endRow": 9, + "id": "14,14,9,9", + "startCol": 14, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 425 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 433 + }, + "bounds": { + "#": 436 + }, + "collisionFilter": { + "#": 439 + }, + "constraintImpulse": { + "#": 440 + }, + "density": 0.001, + "force": { + "#": 441 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 442 + }, + "positionImpulse": { + "#": 443 + }, + "positionPrev": { + "#": 444 + }, + "region": { + "#": 445 + }, + "render": { + "#": 446 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 448 + }, + "vertices": { + "#": 449 + } + }, + [ + { + "#": 434 + }, + { + "#": 435 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 437 + }, + "min": { + "#": 438 + } + }, + { + "x": 525, + "y": 517.7357547670249 + }, + { + "x": 500, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 494.8284840519894 + }, + { + "endCol": 10, + "endRow": 10, + "id": "10,10,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 447 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 455 + }, + "bounds": { + "#": 458 + }, + "collisionFilter": { + "#": 461 + }, + "constraintImpulse": { + "#": 462 + }, + "density": 0.001, + "force": { + "#": 463 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 464 + }, + "positionImpulse": { + "#": 465 + }, + "positionPrev": { + "#": 466 + }, + "region": { + "#": 467 + }, + "render": { + "#": 468 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 470 + }, + "vertices": { + "#": 471 + } + }, + [ + { + "#": 456 + }, + { + "#": 457 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 459 + }, + "min": { + "#": 460 + } + }, + { + "x": 550, + "y": 517.7357547670249 + }, + { + "x": 525, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 494.8284840519894 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 469 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 477 + }, + "bounds": { + "#": 480 + }, + "collisionFilter": { + "#": 483 + }, + "constraintImpulse": { + "#": 484 + }, + "density": 0.001, + "force": { + "#": 485 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 486 + }, + "positionImpulse": { + "#": 487 + }, + "positionPrev": { + "#": 488 + }, + "region": { + "#": 489 + }, + "render": { + "#": 490 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 492 + }, + "vertices": { + "#": 493 + } + }, + [ + { + "#": 478 + }, + { + "#": 479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 481 + }, + "min": { + "#": 482 + } + }, + { + "x": 575, + "y": 517.7357547670249 + }, + { + "x": 550, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 494.8284840519894 + }, + { + "endCol": 11, + "endRow": 10, + "id": "11,11,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 491 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 499 + }, + "bounds": { + "#": 502 + }, + "collisionFilter": { + "#": 505 + }, + "constraintImpulse": { + "#": 506 + }, + "density": 0.001, + "force": { + "#": 507 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 508 + }, + "positionImpulse": { + "#": 509 + }, + "positionPrev": { + "#": 510 + }, + "region": { + "#": 511 + }, + "render": { + "#": 512 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 514 + }, + "vertices": { + "#": 515 + } + }, + [ + { + "#": 500 + }, + { + "#": 501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 503 + }, + "min": { + "#": 504 + } + }, + { + "x": 600, + "y": 517.7357547670249 + }, + { + "x": 575, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 494.8284840519894 + }, + { + "endCol": 12, + "endRow": 10, + "id": "11,12,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 513 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 521 + }, + "bounds": { + "#": 524 + }, + "collisionFilter": { + "#": 527 + }, + "constraintImpulse": { + "#": 528 + }, + "density": 0.001, + "force": { + "#": 529 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 530 + }, + "positionImpulse": { + "#": 531 + }, + "positionPrev": { + "#": 532 + }, + "region": { + "#": 533 + }, + "render": { + "#": 534 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 536 + }, + "vertices": { + "#": 537 + } + }, + [ + { + "#": 522 + }, + { + "#": 523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 525 + }, + "min": { + "#": 526 + } + }, + { + "x": 625, + "y": 517.7357547670249 + }, + { + "x": 600, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 494.8284840519894 + }, + { + "endCol": 13, + "endRow": 10, + "id": "12,13,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 535 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 543 + }, + "bounds": { + "#": 546 + }, + "collisionFilter": { + "#": 549 + }, + "constraintImpulse": { + "#": 550 + }, + "density": 0.001, + "force": { + "#": 551 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 552 + }, + "positionImpulse": { + "#": 553 + }, + "positionPrev": { + "#": 554 + }, + "region": { + "#": 555 + }, + "render": { + "#": 556 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 558 + }, + "vertices": { + "#": 559 + } + }, + [ + { + "#": 544 + }, + { + "#": 545 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 547 + }, + "min": { + "#": 548 + } + }, + { + "x": 650, + "y": 517.7357547670249 + }, + { + "x": 625, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 494.8284840519894 + }, + { + "endCol": 13, + "endRow": 10, + "id": "13,13,9,10", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 557 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 565 + }, + "bounds": { + "#": 568 + }, + "collisionFilter": { + "#": 571 + }, + "constraintImpulse": { + "#": 572 + }, + "density": 0.001, + "force": { + "#": 573 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 574 + }, + "positionImpulse": { + "#": 575 + }, + "positionPrev": { + "#": 576 + }, + "region": { + "#": 577 + }, + "render": { + "#": 578 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 580 + }, + "vertices": { + "#": 581 + } + }, + [ + { + "#": 566 + }, + { + "#": 567 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 569 + }, + "min": { + "#": 570 + } + }, + { + "x": 675, + "y": 517.7357547670249 + }, + { + "x": 650, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 494.8284840519894 + }, + { + "endCol": 14, + "endRow": 10, + "id": "13,14,9,10", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 579 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 587 + }, + "bounds": { + "#": 590 + }, + "collisionFilter": { + "#": 593 + }, + "constraintImpulse": { + "#": 594 + }, + "density": 0.001, + "force": { + "#": 595 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 596 + }, + "positionImpulse": { + "#": 597 + }, + "positionPrev": { + "#": 598 + }, + "region": { + "#": 599 + }, + "render": { + "#": 600 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 602 + }, + "vertices": { + "#": 603 + } + }, + [ + { + "#": 588 + }, + { + "#": 589 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 591 + }, + "min": { + "#": 592 + } + }, + { + "x": 700, + "y": 517.7357547670249 + }, + { + "x": 675, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 494.8284840519894 + }, + { + "endCol": 14, + "endRow": 10, + "id": "14,14,9,10", + "startCol": 14, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 601 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 609 + }, + "bounds": { + "#": 612 + }, + "collisionFilter": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "density": 0.001, + "force": { + "#": 617 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 618 + }, + "positionImpulse": { + "#": 619 + }, + "positionPrev": { + "#": 620 + }, + "region": { + "#": 621 + }, + "render": { + "#": 622 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 624 + }, + "vertices": { + "#": 625 + } + }, + [ + { + "#": 610 + }, + { + "#": 611 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 613 + }, + "min": { + "#": 614 + } + }, + { + "x": 725, + "y": 517.7357547670249 + }, + { + "x": 700, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 494.8284840519894 + }, + { + "endCol": 15, + "endRow": 10, + "id": "14,15,9,10", + "startCol": 14, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 623 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 517.7357547670249 + }, + [], + [], + { + "bodies": { + "#": 633 + }, + "composites": { + "#": 832 + }, + "constraints": { + "#": 833 + }, + "id": 34, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 634 + }, + { + "#": 656 + }, + { + "#": 678 + }, + { + "#": 700 + }, + { + "#": 722 + }, + { + "#": 744 + }, + { + "#": 766 + }, + { + "#": 788 + }, + { + "#": 810 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 635 + }, + "bounds": { + "#": 638 + }, + "collisionFilter": { + "#": 641 + }, + "constraintImpulse": { + "#": 642 + }, + "density": 0.001, + "force": { + "#": 643 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 644 + }, + "positionImpulse": { + "#": 645 + }, + "positionPrev": { + "#": 646 + }, + "region": { + "#": 647 + }, + "render": { + "#": 648 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 650 + }, + "vertices": { + "#": 651 + } + }, + [ + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 639 + }, + "min": { + "#": 640 + } + }, + { + "x": 625, + "y": 60.69754545254138 + }, + { + "x": 600, + "y": 17.790274737505737 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 37.79027473750573 + }, + { + "x": 0, + "y": 0.004095995904000823 + }, + { + "x": 612.5, + "y": 34.88300402247009 + }, + { + "endCol": 13, + "endRow": 1, + "id": "12,13,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 649 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356436 + }, + [ + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 17.790274737505737 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 17.790274737505737 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 57.79027473750573 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 57.79027473750573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 657 + }, + "bounds": { + "#": 660 + }, + "collisionFilter": { + "#": 663 + }, + "constraintImpulse": { + "#": 664 + }, + "density": 0.001, + "force": { + "#": 665 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 666 + }, + "positionImpulse": { + "#": 667 + }, + "positionPrev": { + "#": 668 + }, + "region": { + "#": 669 + }, + "render": { + "#": 670 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 672 + }, + "vertices": { + "#": 673 + } + }, + [ + { + "#": 658 + }, + { + "#": 659 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 661 + }, + "min": { + "#": 662 + } + }, + { + "x": 600, + "y": 97.73575476702572 + }, + { + "x": 575, + "y": 57.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 77.73575476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 74.82848405199009 + }, + { + "endCol": 12, + "endRow": 2, + "id": "11,12,1,2", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 671 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 57.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 57.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 97.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 679 + }, + "bounds": { + "#": 682 + }, + "collisionFilter": { + "#": 685 + }, + "constraintImpulse": { + "#": 686 + }, + "density": 0.001, + "force": { + "#": 687 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 688 + }, + "positionImpulse": { + "#": 689 + }, + "positionPrev": { + "#": 690 + }, + "region": { + "#": 691 + }, + "render": { + "#": 692 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 694 + }, + "vertices": { + "#": 695 + } + }, + [ + { + "#": 680 + }, + { + "#": 681 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 683 + }, + "min": { + "#": 684 + } + }, + { + "x": 625, + "y": 100.64754545254137 + }, + { + "x": 600, + "y": 57.740274737505736 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 77.74027473750573 + }, + { + "x": 0, + "y": 0.004095995903997061 + }, + { + "x": 612.5, + "y": 74.83300402247008 + }, + { + "endCol": 13, + "endRow": 2, + "id": "12,13,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 693 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356507 + }, + [ + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 57.740274737505736 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 57.740274737505736 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 97.74027473750571 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 97.74027473750571 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 701 + }, + "bounds": { + "#": 704 + }, + "collisionFilter": { + "#": 707 + }, + "constraintImpulse": { + "#": 708 + }, + "density": 0.001, + "force": { + "#": 709 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 710 + }, + "positionImpulse": { + "#": 711 + }, + "positionPrev": { + "#": 712 + }, + "region": { + "#": 713 + }, + "render": { + "#": 714 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 716 + }, + "vertices": { + "#": 717 + } + }, + [ + { + "#": 702 + }, + { + "#": 703 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 705 + }, + "min": { + "#": 706 + } + }, + { + "x": 650, + "y": 97.73575476702572 + }, + { + "x": 625, + "y": 57.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 77.73575476702574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 74.82848405199009 + }, + { + "endCol": 13, + "endRow": 2, + "id": "13,13,1,2", + "startCol": 13, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 715 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 57.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 57.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 97.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 723 + }, + "bounds": { + "#": 726 + }, + "collisionFilter": { + "#": 729 + }, + "constraintImpulse": { + "#": 730 + }, + "density": 0.001, + "force": { + "#": 731 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 732 + }, + "positionImpulse": { + "#": 733 + }, + "positionPrev": { + "#": 734 + }, + "region": { + "#": 735 + }, + "render": { + "#": 736 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 738 + }, + "vertices": { + "#": 739 + } + }, + [ + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 727 + }, + "min": { + "#": 728 + } + }, + { + "x": 575, + "y": 137.73575476702572 + }, + { + "x": 550, + "y": 97.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 114.82848405199007 + }, + { + "endCol": 11, + "endRow": 2, + "id": "11,11,2,2", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 737 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 745 + }, + "bounds": { + "#": 748 + }, + "collisionFilter": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "density": 0.001, + "force": { + "#": 753 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 754 + }, + "positionImpulse": { + "#": 755 + }, + "positionPrev": { + "#": 756 + }, + "region": { + "#": 757 + }, + "render": { + "#": 758 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 760 + }, + "vertices": { + "#": 761 + } + }, + [ + { + "#": 746 + }, + { + "#": 747 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 749 + }, + "min": { + "#": 750 + } + }, + { + "x": 600, + "y": 137.73575476702572 + }, + { + "x": 575, + "y": 97.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 114.82848405199007 + }, + { + "endCol": 12, + "endRow": 2, + "id": "11,12,2,2", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 759 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 767 + }, + "bounds": { + "#": 770 + }, + "collisionFilter": { + "#": 773 + }, + "constraintImpulse": { + "#": 774 + }, + "density": 0.001, + "force": { + "#": 775 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 776 + }, + "positionImpulse": { + "#": 777 + }, + "positionPrev": { + "#": 778 + }, + "region": { + "#": 779 + }, + "render": { + "#": 780 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 782 + }, + "vertices": { + "#": 783 + } + }, + [ + { + "#": 768 + }, + { + "#": 769 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 771 + }, + "min": { + "#": 772 + } + }, + { + "x": 625, + "y": 137.73575476702572 + }, + { + "x": 600, + "y": 97.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 114.82848405199007 + }, + { + "endCol": 13, + "endRow": 2, + "id": "12,13,2,2", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 781 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 789 + }, + "bounds": { + "#": 792 + }, + "collisionFilter": { + "#": 795 + }, + "constraintImpulse": { + "#": 796 + }, + "density": 0.001, + "force": { + "#": 797 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 798 + }, + "positionImpulse": { + "#": 799 + }, + "positionPrev": { + "#": 800 + }, + "region": { + "#": 801 + }, + "render": { + "#": 802 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 804 + }, + "vertices": { + "#": 805 + } + }, + [ + { + "#": 790 + }, + { + "#": 791 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 793 + }, + "min": { + "#": 794 + } + }, + { + "x": 650, + "y": 137.73575476702572 + }, + { + "x": 625, + "y": 97.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 114.82848405199007 + }, + { + "endCol": 13, + "endRow": 2, + "id": "13,13,2,2", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 803 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/block-2.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1000, + "axes": { + "#": 811 + }, + "bounds": { + "#": 814 + }, + "collisionFilter": { + "#": 817 + }, + "constraintImpulse": { + "#": 818 + }, + "density": 0.001, + "force": { + "#": 819 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 741.6666666666666, + "inverseInertia": 0.0013483146067415732, + "inverseMass": 1, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1, + "motion": 0, + "parent": null, + "position": { + "#": 820 + }, + "positionImpulse": { + "#": 821 + }, + "positionPrev": { + "#": 822 + }, + "region": { + "#": 823 + }, + "render": { + "#": 824 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 826 + }, + "vertices": { + "#": 827 + } + }, + [ + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 815 + }, + "min": { + "#": 816 + } + }, + { + "x": 675, + "y": 137.73575476702572 + }, + { + "x": 650, + "y": 97.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 117.73575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 114.82848405199007 + }, + { + "endCol": 14, + "endRow": 2, + "id": "13,14,2,2", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 825 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/block.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 97.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 137.73575476702572 + }, + [], + [], + [ + { + "#": 835 + }, + { + "#": 838 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 836 + }, + "pointB": "", + "render": { + "#": 837 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 6, + "label": "Constraint", + "length": 0.000001, + "pointA": { + "#": 839 + }, + "pointB": { + "#": 840 + }, + "render": { + "#": 841 + }, + "stiffness": 0.05, + "type": "constraint" + }, + { + "x": 170, + "y": 450 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 5, + "strokeStyle": "#dfa417", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/softBody/softBody-0.json b/tests/browser/refs/softBody/softBody-0.json new file mode 100644 index 00000000..edb4b090 --- /dev/null +++ b/tests/browser/refs/softBody/softBody-0.json @@ -0,0 +1,31055 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 3428 + }, + "gravity": { + "#": 3432 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + }, + { + "#": 1432 + }, + { + "#": 2632 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 1142 + }, + "constraints": { + "#": 1143 + }, + "id": 4, + "isModified": true, + "label": "Soft Body", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 134 + }, + { + "#": 176 + }, + { + "#": 218 + }, + { + "#": 260 + }, + { + "#": 302 + }, + { + "#": 344 + }, + { + "#": 386 + }, + { + "#": 428 + }, + { + "#": 470 + }, + { + "#": 512 + }, + { + "#": 554 + }, + { + "#": 596 + }, + { + "#": 638 + }, + { + "#": 680 + }, + { + "#": 722 + }, + { + "#": 764 + }, + { + "#": 806 + }, + { + "#": 848 + }, + { + "#": 890 + }, + { + "#": 932 + }, + { + "#": 974 + }, + { + "#": 1016 + }, + { + "#": 1058 + }, + { + "#": 1100 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 93 + }, + "bounds": { + "#": 103 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 106 + }, + "constraintImpulse": { + "#": 107 + }, + "density": 0.001, + "force": { + "#": 108 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 5, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 109 + }, + "positionImpulse": { + "#": 110 + }, + "positionPrev": { + "#": 111 + }, + "render": { + "#": 112 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 114 + }, + "vertices": { + "#": 115 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 104 + }, + "min": { + "#": 105 + } + }, + { + "x": 285.45399999999995, + "y": 136 + }, + { + "x": 249.99999999999997, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 118 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 113 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.45399999999995, + "y": 121.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.315, + "y": 127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.29699999999997, + "y": 131.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.883, + "y": 134.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.727, + "y": 136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.57099999999997, + "y": 134.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.157, + "y": 131.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.13899999999998, + "y": 127 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.99999999999997, + "y": 121.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.99999999999997, + "y": 114.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.13899999999998, + "y": 109 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.157, + "y": 104.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.57099999999997, + "y": 101.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.727, + "y": 100 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.883, + "y": 101.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.29699999999997, + "y": 104.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.315, + "y": 109 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.45399999999995, + "y": 114.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 135 + }, + "bounds": { + "#": 145 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 148 + }, + "constraintImpulse": { + "#": 149 + }, + "density": 0.001, + "force": { + "#": 150 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 6, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 151 + }, + "positionImpulse": { + "#": 152 + }, + "positionPrev": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 146 + }, + "min": { + "#": 147 + } + }, + { + "x": 320.9079999999999, + "y": 136 + }, + { + "x": 285.45399999999995, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 118 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9079999999999, + "y": 121.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.76899999999995, + "y": 127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.7509999999999, + "y": 131.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.33699999999993, + "y": 134.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.1809999999999, + "y": 136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.0249999999999, + "y": 134.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.61099999999993, + "y": 131.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.5929999999999, + "y": 127 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.45399999999995, + "y": 121.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.45399999999995, + "y": 114.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5929999999999, + "y": 109 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.61099999999993, + "y": 104.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.0249999999999, + "y": 101.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.1809999999999, + "y": 100 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.33699999999993, + "y": 101.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.7509999999999, + "y": 104.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.76899999999995, + "y": 109 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9079999999999, + "y": 114.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 177 + }, + "bounds": { + "#": 187 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 190 + }, + "constraintImpulse": { + "#": 191 + }, + "density": 0.001, + "force": { + "#": 192 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 7, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 193 + }, + "positionImpulse": { + "#": 194 + }, + "positionPrev": { + "#": 195 + }, + "render": { + "#": 196 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 198 + }, + "vertices": { + "#": 199 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 188 + }, + "min": { + "#": 189 + } + }, + { + "x": 356.36199999999985, + "y": 136 + }, + { + "x": 320.9079999999999, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 118 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 197 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.36199999999985, + "y": 121.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.2229999999999, + "y": 127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.20499999999987, + "y": 131.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.7909999999999, + "y": 134.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.6349999999999, + "y": 136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.47899999999987, + "y": 134.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.0649999999999, + "y": 131.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.04699999999985, + "y": 127 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.9079999999999, + "y": 121.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.9079999999999, + "y": 114.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.04699999999985, + "y": 109 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.0649999999999, + "y": 104.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.47899999999987, + "y": 101.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.6349999999999, + "y": 100 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.7909999999999, + "y": 101.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.20499999999987, + "y": 104.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.2229999999999, + "y": 109 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.36199999999985, + "y": 114.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 219 + }, + "bounds": { + "#": 229 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 232 + }, + "constraintImpulse": { + "#": 233 + }, + "density": 0.001, + "force": { + "#": 234 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 8, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 235 + }, + "positionImpulse": { + "#": 236 + }, + "positionPrev": { + "#": 237 + }, + "render": { + "#": 238 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 240 + }, + "vertices": { + "#": 241 + } + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 230 + }, + "min": { + "#": 231 + } + }, + { + "x": 391.8159999999998, + "y": 136 + }, + { + "x": 356.36199999999985, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 118 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 239 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.8159999999998, + "y": 121.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.67699999999985, + "y": 127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6589999999998, + "y": 131.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.24499999999983, + "y": 134.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.0889999999998, + "y": 136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9329999999998, + "y": 134.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.51899999999983, + "y": 131.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5009999999998, + "y": 127 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.36199999999985, + "y": 121.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.36199999999985, + "y": 114.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5009999999998, + "y": 109 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.51899999999983, + "y": 104.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9329999999998, + "y": 101.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.0889999999998, + "y": 100 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.24499999999983, + "y": 101.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6589999999998, + "y": 104.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.67699999999985, + "y": 109 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.8159999999998, + "y": 114.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 261 + }, + "bounds": { + "#": 271 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 274 + }, + "constraintImpulse": { + "#": 275 + }, + "density": 0.001, + "force": { + "#": 276 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 9, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 277 + }, + "positionImpulse": { + "#": 278 + }, + "positionPrev": { + "#": 279 + }, + "render": { + "#": 280 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 282 + }, + "vertices": { + "#": 283 + } + }, + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 272 + }, + "min": { + "#": 273 + } + }, + { + "x": 427.26999999999975, + "y": 136 + }, + { + "x": 391.8159999999998, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 118 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 281 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.26999999999975, + "y": 121.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.1309999999998, + "y": 127 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.1129999999998, + "y": 131.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.6989999999998, + "y": 134.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.5429999999998, + "y": 136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.3869999999998, + "y": 134.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.9729999999998, + "y": 131.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.95499999999976, + "y": 127 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.8159999999998, + "y": 121.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.8159999999998, + "y": 114.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.95499999999976, + "y": 109 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.9729999999998, + "y": 104.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.3869999999998, + "y": 101.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.5429999999998, + "y": 100 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.6989999999998, + "y": 101.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.1129999999998, + "y": 104.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.1309999999998, + "y": 109 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.26999999999975, + "y": 114.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 303 + }, + "bounds": { + "#": 313 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 316 + }, + "constraintImpulse": { + "#": 317 + }, + "density": 0.001, + "force": { + "#": 318 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 10, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 319 + }, + "positionImpulse": { + "#": 320 + }, + "positionPrev": { + "#": 321 + }, + "render": { + "#": 322 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 324 + }, + "vertices": { + "#": 325 + } + }, + [ + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 314 + }, + "min": { + "#": 315 + } + }, + { + "x": 285.45399999999995, + "y": 172 + }, + { + "x": 249.99999999999997, + "y": 136 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 154 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 323 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.45399999999995, + "y": 157.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.315, + "y": 163 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.29699999999997, + "y": 167.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.883, + "y": 170.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.727, + "y": 172 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.57099999999997, + "y": 170.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.157, + "y": 167.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.13899999999998, + "y": 163 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.99999999999997, + "y": 157.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.99999999999997, + "y": 150.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.13899999999998, + "y": 145 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.157, + "y": 140.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.57099999999997, + "y": 137.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.727, + "y": 136 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.883, + "y": 137.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.29699999999997, + "y": 140.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.315, + "y": 145 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.45399999999995, + "y": 150.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 345 + }, + "bounds": { + "#": 355 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 358 + }, + "constraintImpulse": { + "#": 359 + }, + "density": 0.001, + "force": { + "#": 360 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 11, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 361 + }, + "positionImpulse": { + "#": 362 + }, + "positionPrev": { + "#": 363 + }, + "render": { + "#": 364 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 366 + }, + "vertices": { + "#": 367 + } + }, + [ + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 356 + }, + "min": { + "#": 357 + } + }, + { + "x": 320.9079999999999, + "y": 172 + }, + { + "x": 285.45399999999995, + "y": 136 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 154 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 365 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9079999999999, + "y": 157.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.76899999999995, + "y": 163 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.7509999999999, + "y": 167.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.33699999999993, + "y": 170.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.1809999999999, + "y": 172 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.0249999999999, + "y": 170.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.61099999999993, + "y": 167.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.5929999999999, + "y": 163 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.45399999999995, + "y": 157.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.45399999999995, + "y": 150.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5929999999999, + "y": 145 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.61099999999993, + "y": 140.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.0249999999999, + "y": 137.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.1809999999999, + "y": 136 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.33699999999993, + "y": 137.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.7509999999999, + "y": 140.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.76899999999995, + "y": 145 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9079999999999, + "y": 150.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 387 + }, + "bounds": { + "#": 397 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 400 + }, + "constraintImpulse": { + "#": 401 + }, + "density": 0.001, + "force": { + "#": 402 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 12, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 403 + }, + "positionImpulse": { + "#": 404 + }, + "positionPrev": { + "#": 405 + }, + "render": { + "#": 406 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 408 + }, + "vertices": { + "#": 409 + } + }, + [ + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 398 + }, + "min": { + "#": 399 + } + }, + { + "x": 356.36199999999985, + "y": 172 + }, + { + "x": 320.9079999999999, + "y": 136 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 154 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 407 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.36199999999985, + "y": 157.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.2229999999999, + "y": 163 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.20499999999987, + "y": 167.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.7909999999999, + "y": 170.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.6349999999999, + "y": 172 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.47899999999987, + "y": 170.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.0649999999999, + "y": 167.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.04699999999985, + "y": 163 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.9079999999999, + "y": 157.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.9079999999999, + "y": 150.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.04699999999985, + "y": 145 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.0649999999999, + "y": 140.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.47899999999987, + "y": 137.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.6349999999999, + "y": 136 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.7909999999999, + "y": 137.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.20499999999987, + "y": 140.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.2229999999999, + "y": 145 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.36199999999985, + "y": 150.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 429 + }, + "bounds": { + "#": 439 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 442 + }, + "constraintImpulse": { + "#": 443 + }, + "density": 0.001, + "force": { + "#": 444 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 13, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 445 + }, + "positionImpulse": { + "#": 446 + }, + "positionPrev": { + "#": 447 + }, + "render": { + "#": 448 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 450 + }, + "vertices": { + "#": 451 + } + }, + [ + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 440 + }, + "min": { + "#": 441 + } + }, + { + "x": 391.8159999999998, + "y": 172 + }, + { + "x": 356.36199999999985, + "y": 136 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 154 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 449 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.8159999999998, + "y": 157.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.67699999999985, + "y": 163 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6589999999998, + "y": 167.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.24499999999983, + "y": 170.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.0889999999998, + "y": 172 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9329999999998, + "y": 170.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.51899999999983, + "y": 167.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5009999999998, + "y": 163 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.36199999999985, + "y": 157.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.36199999999985, + "y": 150.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5009999999998, + "y": 145 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.51899999999983, + "y": 140.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9329999999998, + "y": 137.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.0889999999998, + "y": 136 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.24499999999983, + "y": 137.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6589999999998, + "y": 140.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.67699999999985, + "y": 145 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.8159999999998, + "y": 150.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 471 + }, + "bounds": { + "#": 481 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 484 + }, + "constraintImpulse": { + "#": 485 + }, + "density": 0.001, + "force": { + "#": 486 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 14, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 487 + }, + "positionImpulse": { + "#": 488 + }, + "positionPrev": { + "#": 489 + }, + "render": { + "#": 490 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 492 + }, + "vertices": { + "#": 493 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 482 + }, + "min": { + "#": 483 + } + }, + { + "x": 427.26999999999975, + "y": 172 + }, + { + "x": 391.8159999999998, + "y": 136 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 154 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 491 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.26999999999975, + "y": 157.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.1309999999998, + "y": 163 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.1129999999998, + "y": 167.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.6989999999998, + "y": 170.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.5429999999998, + "y": 172 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.3869999999998, + "y": 170.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.9729999999998, + "y": 167.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.95499999999976, + "y": 163 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.8159999999998, + "y": 157.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.8159999999998, + "y": 150.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.95499999999976, + "y": 145 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.9729999999998, + "y": 140.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.3869999999998, + "y": 137.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.5429999999998, + "y": 136 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.6989999999998, + "y": 137.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.1129999999998, + "y": 140.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.1309999999998, + "y": 145 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.26999999999975, + "y": 150.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 513 + }, + "bounds": { + "#": 523 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 526 + }, + "constraintImpulse": { + "#": 527 + }, + "density": 0.001, + "force": { + "#": 528 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 15, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 529 + }, + "positionImpulse": { + "#": 530 + }, + "positionPrev": { + "#": 531 + }, + "render": { + "#": 532 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 534 + }, + "vertices": { + "#": 535 + } + }, + [ + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 524 + }, + "min": { + "#": 525 + } + }, + { + "x": 285.45399999999995, + "y": 208 + }, + { + "x": 249.99999999999997, + "y": 172 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 190 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 533 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.45399999999995, + "y": 193.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.315, + "y": 199 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.29699999999997, + "y": 203.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.883, + "y": 206.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.727, + "y": 208 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.57099999999997, + "y": 206.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.157, + "y": 203.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.13899999999998, + "y": 199 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.99999999999997, + "y": 193.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.99999999999997, + "y": 186.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.13899999999998, + "y": 181 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.157, + "y": 176.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.57099999999997, + "y": 173.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.727, + "y": 172 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.883, + "y": 173.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.29699999999997, + "y": 176.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.315, + "y": 181 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.45399999999995, + "y": 186.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 555 + }, + "bounds": { + "#": 565 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 568 + }, + "constraintImpulse": { + "#": 569 + }, + "density": 0.001, + "force": { + "#": 570 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 16, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 571 + }, + "positionImpulse": { + "#": 572 + }, + "positionPrev": { + "#": 573 + }, + "render": { + "#": 574 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 576 + }, + "vertices": { + "#": 577 + } + }, + [ + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 566 + }, + "min": { + "#": 567 + } + }, + { + "x": 320.9079999999999, + "y": 208 + }, + { + "x": 285.45399999999995, + "y": 172 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 190 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 575 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9079999999999, + "y": 193.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.76899999999995, + "y": 199 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.7509999999999, + "y": 203.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.33699999999993, + "y": 206.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.1809999999999, + "y": 208 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.0249999999999, + "y": 206.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.61099999999993, + "y": 203.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.5929999999999, + "y": 199 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.45399999999995, + "y": 193.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.45399999999995, + "y": 186.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5929999999999, + "y": 181 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.61099999999993, + "y": 176.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.0249999999999, + "y": 173.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.1809999999999, + "y": 172 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.33699999999993, + "y": 173.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.7509999999999, + "y": 176.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.76899999999995, + "y": 181 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9079999999999, + "y": 186.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 597 + }, + "bounds": { + "#": 607 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 610 + }, + "constraintImpulse": { + "#": 611 + }, + "density": 0.001, + "force": { + "#": 612 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 17, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 613 + }, + "positionImpulse": { + "#": 614 + }, + "positionPrev": { + "#": 615 + }, + "render": { + "#": 616 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 618 + }, + "vertices": { + "#": 619 + } + }, + [ + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 608 + }, + "min": { + "#": 609 + } + }, + { + "x": 356.36199999999985, + "y": 208 + }, + { + "x": 320.9079999999999, + "y": 172 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 190 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 617 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.36199999999985, + "y": 193.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.2229999999999, + "y": 199 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.20499999999987, + "y": 203.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.7909999999999, + "y": 206.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.6349999999999, + "y": 208 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.47899999999987, + "y": 206.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.0649999999999, + "y": 203.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.04699999999985, + "y": 199 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.9079999999999, + "y": 193.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.9079999999999, + "y": 186.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.04699999999985, + "y": 181 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.0649999999999, + "y": 176.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.47899999999987, + "y": 173.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.6349999999999, + "y": 172 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.7909999999999, + "y": 173.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.20499999999987, + "y": 176.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.2229999999999, + "y": 181 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.36199999999985, + "y": 186.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 639 + }, + "bounds": { + "#": 649 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 652 + }, + "constraintImpulse": { + "#": 653 + }, + "density": 0.001, + "force": { + "#": 654 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 18, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 655 + }, + "positionImpulse": { + "#": 656 + }, + "positionPrev": { + "#": 657 + }, + "render": { + "#": 658 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 660 + }, + "vertices": { + "#": 661 + } + }, + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 650 + }, + "min": { + "#": 651 + } + }, + { + "x": 391.8159999999998, + "y": 208 + }, + { + "x": 356.36199999999985, + "y": 172 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 190 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 659 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.8159999999998, + "y": 193.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.67699999999985, + "y": 199 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6589999999998, + "y": 203.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.24499999999983, + "y": 206.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.0889999999998, + "y": 208 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9329999999998, + "y": 206.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.51899999999983, + "y": 203.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5009999999998, + "y": 199 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.36199999999985, + "y": 193.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.36199999999985, + "y": 186.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5009999999998, + "y": 181 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.51899999999983, + "y": 176.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9329999999998, + "y": 173.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.0889999999998, + "y": 172 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.24499999999983, + "y": 173.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6589999999998, + "y": 176.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.67699999999985, + "y": 181 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.8159999999998, + "y": 186.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 681 + }, + "bounds": { + "#": 691 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 694 + }, + "constraintImpulse": { + "#": 695 + }, + "density": 0.001, + "force": { + "#": 696 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 19, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 697 + }, + "positionImpulse": { + "#": 698 + }, + "positionPrev": { + "#": 699 + }, + "render": { + "#": 700 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 702 + }, + "vertices": { + "#": 703 + } + }, + [ + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 692 + }, + "min": { + "#": 693 + } + }, + { + "x": 427.26999999999975, + "y": 208 + }, + { + "x": 391.8159999999998, + "y": 172 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 190 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 701 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.26999999999975, + "y": 193.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.1309999999998, + "y": 199 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.1129999999998, + "y": 203.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.6989999999998, + "y": 206.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.5429999999998, + "y": 208 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.3869999999998, + "y": 206.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.9729999999998, + "y": 203.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.95499999999976, + "y": 199 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.8159999999998, + "y": 193.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.8159999999998, + "y": 186.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.95499999999976, + "y": 181 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.9729999999998, + "y": 176.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.3869999999998, + "y": 173.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.5429999999998, + "y": 172 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.6989999999998, + "y": 173.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.1129999999998, + "y": 176.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.1309999999998, + "y": 181 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.26999999999975, + "y": 186.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 723 + }, + "bounds": { + "#": 733 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 736 + }, + "constraintImpulse": { + "#": 737 + }, + "density": 0.001, + "force": { + "#": 738 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 20, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 739 + }, + "positionImpulse": { + "#": 740 + }, + "positionPrev": { + "#": 741 + }, + "render": { + "#": 742 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 744 + }, + "vertices": { + "#": 745 + } + }, + [ + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 734 + }, + "min": { + "#": 735 + } + }, + { + "x": 285.45399999999995, + "y": 244 + }, + { + "x": 249.99999999999997, + "y": 208 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 226 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 743 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.45399999999995, + "y": 229.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.315, + "y": 235 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.29699999999997, + "y": 239.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.883, + "y": 242.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.727, + "y": 244 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.57099999999997, + "y": 242.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.157, + "y": 239.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.13899999999998, + "y": 235 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.99999999999997, + "y": 229.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.99999999999997, + "y": 222.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.13899999999998, + "y": 217 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.157, + "y": 212.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.57099999999997, + "y": 209.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.727, + "y": 208 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.883, + "y": 209.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.29699999999997, + "y": 212.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.315, + "y": 217 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.45399999999995, + "y": 222.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 765 + }, + "bounds": { + "#": 775 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 778 + }, + "constraintImpulse": { + "#": 779 + }, + "density": 0.001, + "force": { + "#": 780 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 21, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 781 + }, + "positionImpulse": { + "#": 782 + }, + "positionPrev": { + "#": 783 + }, + "render": { + "#": 784 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 786 + }, + "vertices": { + "#": 787 + } + }, + [ + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 776 + }, + "min": { + "#": 777 + } + }, + { + "x": 320.9079999999999, + "y": 244 + }, + { + "x": 285.45399999999995, + "y": 208 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 226 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 785 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9079999999999, + "y": 229.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.76899999999995, + "y": 235 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.7509999999999, + "y": 239.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.33699999999993, + "y": 242.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.1809999999999, + "y": 244 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.0249999999999, + "y": 242.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.61099999999993, + "y": 239.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.5929999999999, + "y": 235 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.45399999999995, + "y": 229.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.45399999999995, + "y": 222.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5929999999999, + "y": 217 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.61099999999993, + "y": 212.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.0249999999999, + "y": 209.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.1809999999999, + "y": 208 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.33699999999993, + "y": 209.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.7509999999999, + "y": 212.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.76899999999995, + "y": 217 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9079999999999, + "y": 222.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 807 + }, + "bounds": { + "#": 817 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 820 + }, + "constraintImpulse": { + "#": 821 + }, + "density": 0.001, + "force": { + "#": 822 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 22, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 823 + }, + "positionImpulse": { + "#": 824 + }, + "positionPrev": { + "#": 825 + }, + "render": { + "#": 826 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 828 + }, + "vertices": { + "#": 829 + } + }, + [ + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 818 + }, + "min": { + "#": 819 + } + }, + { + "x": 356.36199999999985, + "y": 244 + }, + { + "x": 320.9079999999999, + "y": 208 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 226 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 827 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.36199999999985, + "y": 229.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.2229999999999, + "y": 235 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.20499999999987, + "y": 239.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.7909999999999, + "y": 242.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.6349999999999, + "y": 244 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.47899999999987, + "y": 242.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.0649999999999, + "y": 239.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.04699999999985, + "y": 235 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.9079999999999, + "y": 229.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.9079999999999, + "y": 222.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.04699999999985, + "y": 217 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.0649999999999, + "y": 212.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.47899999999987, + "y": 209.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.6349999999999, + "y": 208 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.7909999999999, + "y": 209.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.20499999999987, + "y": 212.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.2229999999999, + "y": 217 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.36199999999985, + "y": 222.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 849 + }, + "bounds": { + "#": 859 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 862 + }, + "constraintImpulse": { + "#": 863 + }, + "density": 0.001, + "force": { + "#": 864 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 23, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 865 + }, + "positionImpulse": { + "#": 866 + }, + "positionPrev": { + "#": 867 + }, + "render": { + "#": 868 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 870 + }, + "vertices": { + "#": 871 + } + }, + [ + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 860 + }, + "min": { + "#": 861 + } + }, + { + "x": 391.8159999999998, + "y": 244 + }, + { + "x": 356.36199999999985, + "y": 208 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 226 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 869 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.8159999999998, + "y": 229.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.67699999999985, + "y": 235 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6589999999998, + "y": 239.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.24499999999983, + "y": 242.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.0889999999998, + "y": 244 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9329999999998, + "y": 242.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.51899999999983, + "y": 239.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5009999999998, + "y": 235 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.36199999999985, + "y": 229.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.36199999999985, + "y": 222.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5009999999998, + "y": 217 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.51899999999983, + "y": 212.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9329999999998, + "y": 209.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.0889999999998, + "y": 208 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.24499999999983, + "y": 209.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6589999999998, + "y": 212.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.67699999999985, + "y": 217 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.8159999999998, + "y": 222.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 891 + }, + "bounds": { + "#": 901 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 904 + }, + "constraintImpulse": { + "#": 905 + }, + "density": 0.001, + "force": { + "#": 906 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 24, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 907 + }, + "positionImpulse": { + "#": 908 + }, + "positionPrev": { + "#": 909 + }, + "render": { + "#": 910 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 912 + }, + "vertices": { + "#": 913 + } + }, + [ + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 902 + }, + "min": { + "#": 903 + } + }, + { + "x": 427.26999999999975, + "y": 244 + }, + { + "x": 391.8159999999998, + "y": 208 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 226 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 911 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.26999999999975, + "y": 229.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.1309999999998, + "y": 235 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.1129999999998, + "y": 239.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.6989999999998, + "y": 242.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.5429999999998, + "y": 244 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.3869999999998, + "y": 242.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.9729999999998, + "y": 239.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.95499999999976, + "y": 235 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.8159999999998, + "y": 229.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.8159999999998, + "y": 222.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.95499999999976, + "y": 217 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.9729999999998, + "y": 212.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.3869999999998, + "y": 209.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.5429999999998, + "y": 208 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.6989999999998, + "y": 209.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.1129999999998, + "y": 212.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.1309999999998, + "y": 217 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.26999999999975, + "y": 222.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 933 + }, + "bounds": { + "#": 943 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 946 + }, + "constraintImpulse": { + "#": 947 + }, + "density": 0.001, + "force": { + "#": 948 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 25, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 949 + }, + "positionImpulse": { + "#": 950 + }, + "positionPrev": { + "#": 951 + }, + "render": { + "#": 952 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 954 + }, + "vertices": { + "#": 955 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 944 + }, + "min": { + "#": 945 + } + }, + { + "x": 285.45399999999995, + "y": 280 + }, + { + "x": 249.99999999999997, + "y": 244 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 262 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 953 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.45399999999995, + "y": 265.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.315, + "y": 271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.29699999999997, + "y": 275.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.883, + "y": 278.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.727, + "y": 280 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.57099999999997, + "y": 278.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.157, + "y": 275.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.13899999999998, + "y": 271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.99999999999997, + "y": 265.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.99999999999997, + "y": 258.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.13899999999998, + "y": 253 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.157, + "y": 248.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.57099999999997, + "y": 245.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.727, + "y": 244 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.883, + "y": 245.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.29699999999997, + "y": 248.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.315, + "y": 253 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.45399999999995, + "y": 258.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 975 + }, + "bounds": { + "#": 985 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 988 + }, + "constraintImpulse": { + "#": 989 + }, + "density": 0.001, + "force": { + "#": 990 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 26, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 991 + }, + "positionImpulse": { + "#": 992 + }, + "positionPrev": { + "#": 993 + }, + "render": { + "#": 994 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 996 + }, + "vertices": { + "#": 997 + } + }, + [ + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 986 + }, + "min": { + "#": 987 + } + }, + { + "x": 320.9079999999999, + "y": 280 + }, + { + "x": 285.45399999999995, + "y": 244 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 262 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 995 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9079999999999, + "y": 265.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.76899999999995, + "y": 271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.7509999999999, + "y": 275.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.33699999999993, + "y": 278.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.1809999999999, + "y": 280 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.0249999999999, + "y": 278.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.61099999999993, + "y": 275.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.5929999999999, + "y": 271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.45399999999995, + "y": 265.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.45399999999995, + "y": 258.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5929999999999, + "y": 253 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.61099999999993, + "y": 248.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.0249999999999, + "y": 245.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.1809999999999, + "y": 244 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.33699999999993, + "y": 245.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.7509999999999, + "y": 248.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.76899999999995, + "y": 253 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9079999999999, + "y": 258.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 1017 + }, + "bounds": { + "#": 1027 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 1030 + }, + "constraintImpulse": { + "#": 1031 + }, + "density": 0.001, + "force": { + "#": 1032 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 27, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 1033 + }, + "positionImpulse": { + "#": 1034 + }, + "positionPrev": { + "#": 1035 + }, + "render": { + "#": 1036 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1038 + }, + "vertices": { + "#": 1039 + } + }, + [ + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1028 + }, + "min": { + "#": 1029 + } + }, + { + "x": 356.36199999999985, + "y": 280 + }, + { + "x": 320.9079999999999, + "y": 244 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 262 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1037 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.36199999999985, + "y": 265.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.2229999999999, + "y": 271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.20499999999987, + "y": 275.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.7909999999999, + "y": 278.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.6349999999999, + "y": 280 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.47899999999987, + "y": 278.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.0649999999999, + "y": 275.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.04699999999985, + "y": 271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.9079999999999, + "y": 265.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.9079999999999, + "y": 258.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.04699999999985, + "y": 253 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.0649999999999, + "y": 248.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.47899999999987, + "y": 245.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.6349999999999, + "y": 244 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.7909999999999, + "y": 245.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.20499999999987, + "y": 248.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.2229999999999, + "y": 253 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.36199999999985, + "y": 258.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 1059 + }, + "bounds": { + "#": 1069 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 1072 + }, + "constraintImpulse": { + "#": 1073 + }, + "density": 0.001, + "force": { + "#": 1074 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 28, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 1075 + }, + "positionImpulse": { + "#": 1076 + }, + "positionPrev": { + "#": 1077 + }, + "render": { + "#": 1078 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1080 + }, + "vertices": { + "#": 1081 + } + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1070 + }, + "min": { + "#": 1071 + } + }, + { + "x": 391.8159999999998, + "y": 280 + }, + { + "x": 356.36199999999985, + "y": 244 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.0889999999998, + "y": 262 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1079 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.8159999999998, + "y": 265.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.67699999999985, + "y": 271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6589999999998, + "y": 275.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.24499999999983, + "y": 278.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.0889999999998, + "y": 280 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9329999999998, + "y": 278.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.51899999999983, + "y": 275.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5009999999998, + "y": 271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.36199999999985, + "y": 265.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.36199999999985, + "y": 258.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5009999999998, + "y": 253 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.51899999999983, + "y": 248.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9329999999998, + "y": 245.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.0889999999998, + "y": 244 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.24499999999983, + "y": 245.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6589999999998, + "y": 248.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.67699999999985, + "y": 253 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.8159999999998, + "y": 258.874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 1101 + }, + "bounds": { + "#": 1111 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 1114 + }, + "constraintImpulse": { + "#": 1115 + }, + "density": 0.001, + "force": { + "#": 1116 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 29, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 1117 + }, + "positionImpulse": { + "#": 1118 + }, + "positionPrev": { + "#": 1119 + }, + "render": { + "#": 1120 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1122 + }, + "vertices": { + "#": 1123 + } + }, + [ + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1112 + }, + "min": { + "#": 1113 + } + }, + { + "x": 427.26999999999975, + "y": 280 + }, + { + "x": 391.8159999999998, + "y": 244 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5429999999998, + "y": 262 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1121 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.26999999999975, + "y": 265.126 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.1309999999998, + "y": 271 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.1129999999998, + "y": 275.789 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.6989999999998, + "y": 278.914 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.5429999999998, + "y": 280 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.3869999999998, + "y": 278.914 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.9729999999998, + "y": 275.789 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.95499999999976, + "y": 271 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.8159999999998, + "y": 265.126 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.8159999999998, + "y": 258.874 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.95499999999976, + "y": 253 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.9729999999998, + "y": 248.211 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.3869999999998, + "y": 245.086 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.5429999999998, + "y": 244 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.6989999999998, + "y": 245.086 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.1129999999998, + "y": 248.211 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.1309999999998, + "y": 253 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.26999999999975, + "y": 258.874 + }, + [], + [ + { + "#": 1144 + }, + { + "#": 1148 + }, + { + "#": 1152 + }, + { + "#": 1156 + }, + { + "#": 1160 + }, + { + "#": 1164 + }, + { + "#": 1168 + }, + { + "#": 1172 + }, + { + "#": 1176 + }, + { + "#": 1180 + }, + { + "#": 1184 + }, + { + "#": 1188 + }, + { + "#": 1192 + }, + { + "#": 1196 + }, + { + "#": 1200 + }, + { + "#": 1204 + }, + { + "#": 1208 + }, + { + "#": 1212 + }, + { + "#": 1216 + }, + { + "#": 1220 + }, + { + "#": 1224 + }, + { + "#": 1228 + }, + { + "#": 1232 + }, + { + "#": 1236 + }, + { + "#": 1240 + }, + { + "#": 1244 + }, + { + "#": 1248 + }, + { + "#": 1252 + }, + { + "#": 1256 + }, + { + "#": 1260 + }, + { + "#": 1264 + }, + { + "#": 1268 + }, + { + "#": 1272 + }, + { + "#": 1276 + }, + { + "#": 1280 + }, + { + "#": 1284 + }, + { + "#": 1288 + }, + { + "#": 1292 + }, + { + "#": 1296 + }, + { + "#": 1300 + }, + { + "#": 1304 + }, + { + "#": 1308 + }, + { + "#": 1312 + }, + { + "#": 1316 + }, + { + "#": 1320 + }, + { + "#": 1324 + }, + { + "#": 1328 + }, + { + "#": 1332 + }, + { + "#": 1336 + }, + { + "#": 1340 + }, + { + "#": 1344 + }, + { + "#": 1348 + }, + { + "#": 1352 + }, + { + "#": 1356 + }, + { + "#": 1360 + }, + { + "#": 1364 + }, + { + "#": 1368 + }, + { + "#": 1372 + }, + { + "#": 1376 + }, + { + "#": 1380 + }, + { + "#": 1384 + }, + { + "#": 1388 + }, + { + "#": 1392 + }, + { + "#": 1396 + }, + { + "#": 1400 + }, + { + "#": 1404 + }, + { + "#": 1408 + }, + { + "#": 1412 + }, + { + "#": 1416 + }, + { + "#": 1420 + }, + { + "#": 1424 + }, + { + "#": 1428 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 30, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1145 + }, + "pointB": { + "#": 1146 + }, + "render": { + "#": 1147 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 31, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1149 + }, + "pointB": { + "#": 1150 + }, + "render": { + "#": 1151 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 32, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1153 + }, + "pointB": { + "#": 1154 + }, + "render": { + "#": 1155 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 33, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1157 + }, + "pointB": { + "#": 1158 + }, + "render": { + "#": 1159 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 34, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1161 + }, + "pointB": { + "#": 1162 + }, + "render": { + "#": 1163 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 35, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1165 + }, + "pointB": { + "#": 1166 + }, + "render": { + "#": 1167 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 36, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1169 + }, + "pointB": { + "#": 1170 + }, + "render": { + "#": 1171 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 37, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1173 + }, + "pointB": { + "#": 1174 + }, + "render": { + "#": 1175 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 38, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1177 + }, + "pointB": { + "#": 1178 + }, + "render": { + "#": 1179 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 39, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1181 + }, + "pointB": { + "#": 1182 + }, + "render": { + "#": 1183 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 40, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1185 + }, + "pointB": { + "#": 1186 + }, + "render": { + "#": 1187 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 41, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1189 + }, + "pointB": { + "#": 1190 + }, + "render": { + "#": 1191 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 42, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1193 + }, + "pointB": { + "#": 1194 + }, + "render": { + "#": 1195 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 43, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1197 + }, + "pointB": { + "#": 1198 + }, + "render": { + "#": 1199 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 44, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1201 + }, + "pointB": { + "#": 1202 + }, + "render": { + "#": 1203 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 45, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1205 + }, + "pointB": { + "#": 1206 + }, + "render": { + "#": 1207 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 46, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1209 + }, + "pointB": { + "#": 1210 + }, + "render": { + "#": 1211 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 47, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1213 + }, + "pointB": { + "#": 1214 + }, + "render": { + "#": 1215 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 48, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1217 + }, + "pointB": { + "#": 1218 + }, + "render": { + "#": 1219 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 49, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1221 + }, + "pointB": { + "#": 1222 + }, + "render": { + "#": 1223 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 50, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1225 + }, + "pointB": { + "#": 1226 + }, + "render": { + "#": 1227 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 51, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1229 + }, + "pointB": { + "#": 1230 + }, + "render": { + "#": 1231 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 52, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1233 + }, + "pointB": { + "#": 1234 + }, + "render": { + "#": 1235 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 53, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1237 + }, + "pointB": { + "#": 1238 + }, + "render": { + "#": 1239 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 54, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1241 + }, + "pointB": { + "#": 1242 + }, + "render": { + "#": 1243 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 55, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1245 + }, + "pointB": { + "#": 1246 + }, + "render": { + "#": 1247 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 56, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1249 + }, + "pointB": { + "#": 1250 + }, + "render": { + "#": 1251 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 57, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1253 + }, + "pointB": { + "#": 1254 + }, + "render": { + "#": 1255 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 58, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1257 + }, + "pointB": { + "#": 1258 + }, + "render": { + "#": 1259 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 59, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1261 + }, + "pointB": { + "#": 1262 + }, + "render": { + "#": 1263 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 60, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1265 + }, + "pointB": { + "#": 1266 + }, + "render": { + "#": 1267 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 61, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1269 + }, + "pointB": { + "#": 1270 + }, + "render": { + "#": 1271 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 62, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1273 + }, + "pointB": { + "#": 1274 + }, + "render": { + "#": 1275 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 63, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1277 + }, + "pointB": { + "#": 1278 + }, + "render": { + "#": 1279 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 64, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1281 + }, + "pointB": { + "#": 1282 + }, + "render": { + "#": 1283 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 65, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1285 + }, + "pointB": { + "#": 1286 + }, + "render": { + "#": 1287 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 66, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1289 + }, + "pointB": { + "#": 1290 + }, + "render": { + "#": 1291 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 67, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1293 + }, + "pointB": { + "#": 1294 + }, + "render": { + "#": 1295 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 68, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1297 + }, + "pointB": { + "#": 1298 + }, + "render": { + "#": 1299 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 69, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1301 + }, + "pointB": { + "#": 1302 + }, + "render": { + "#": 1303 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 70, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1305 + }, + "pointB": { + "#": 1306 + }, + "render": { + "#": 1307 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 71, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1309 + }, + "pointB": { + "#": 1310 + }, + "render": { + "#": 1311 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 72, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1313 + }, + "pointB": { + "#": 1314 + }, + "render": { + "#": 1315 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 73, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1317 + }, + "pointB": { + "#": 1318 + }, + "render": { + "#": 1319 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 74, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1321 + }, + "pointB": { + "#": 1322 + }, + "render": { + "#": 1323 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 75, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1325 + }, + "pointB": { + "#": 1326 + }, + "render": { + "#": 1327 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 76, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1329 + }, + "pointB": { + "#": 1330 + }, + "render": { + "#": 1331 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 77, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1333 + }, + "pointB": { + "#": 1334 + }, + "render": { + "#": 1335 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 78, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1337 + }, + "pointB": { + "#": 1338 + }, + "render": { + "#": 1339 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 79, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1341 + }, + "pointB": { + "#": 1342 + }, + "render": { + "#": 1343 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 80, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1345 + }, + "pointB": { + "#": 1346 + }, + "render": { + "#": 1347 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 81, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1349 + }, + "pointB": { + "#": 1350 + }, + "render": { + "#": 1351 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 82, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1353 + }, + "pointB": { + "#": 1354 + }, + "render": { + "#": 1355 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 83, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1357 + }, + "pointB": { + "#": 1358 + }, + "render": { + "#": 1359 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 84, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1361 + }, + "pointB": { + "#": 1362 + }, + "render": { + "#": 1363 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 85, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1365 + }, + "pointB": { + "#": 1366 + }, + "render": { + "#": 1367 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 86, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1369 + }, + "pointB": { + "#": 1370 + }, + "render": { + "#": 1371 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 87, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1373 + }, + "pointB": { + "#": 1374 + }, + "render": { + "#": 1375 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 88, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1377 + }, + "pointB": { + "#": 1378 + }, + "render": { + "#": 1379 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 89, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1381 + }, + "pointB": { + "#": 1382 + }, + "render": { + "#": 1383 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 90, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1385 + }, + "pointB": { + "#": 1386 + }, + "render": { + "#": 1387 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 91, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1389 + }, + "pointB": { + "#": 1390 + }, + "render": { + "#": 1391 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 92, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1393 + }, + "pointB": { + "#": 1394 + }, + "render": { + "#": 1395 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 93, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1397 + }, + "pointB": { + "#": 1398 + }, + "render": { + "#": 1399 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 94, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1401 + }, + "pointB": { + "#": 1402 + }, + "render": { + "#": 1403 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 95, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1405 + }, + "pointB": { + "#": 1406 + }, + "render": { + "#": 1407 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 96, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1409 + }, + "pointB": { + "#": 1410 + }, + "render": { + "#": 1411 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 97, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1413 + }, + "pointB": { + "#": 1414 + }, + "render": { + "#": 1415 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 98, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1417 + }, + "pointB": { + "#": 1418 + }, + "render": { + "#": 1419 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 99, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1421 + }, + "pointB": { + "#": 1422 + }, + "render": { + "#": 1423 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 100, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1425 + }, + "pointB": { + "#": 1426 + }, + "render": { + "#": 1427 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 101, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1429 + }, + "pointB": { + "#": 1430 + }, + "render": { + "#": 1431 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 1433 + }, + "composites": { + "#": 2370 + }, + "constraints": { + "#": 2371 + }, + "id": 102, + "isModified": true, + "label": "Soft Body", + "parent": null, + "type": "composite" + }, + [ + { + "#": 1434 + }, + { + "#": 1473 + }, + { + "#": 1512 + }, + { + "#": 1551 + }, + { + "#": 1590 + }, + { + "#": 1629 + }, + { + "#": 1668 + }, + { + "#": 1707 + }, + { + "#": 1746 + }, + { + "#": 1785 + }, + { + "#": 1824 + }, + { + "#": 1863 + }, + { + "#": 1902 + }, + { + "#": 1941 + }, + { + "#": 1980 + }, + { + "#": 2019 + }, + { + "#": 2058 + }, + { + "#": 2097 + }, + { + "#": 2136 + }, + { + "#": 2175 + }, + { + "#": 2214 + }, + { + "#": 2253 + }, + { + "#": 2292 + }, + { + "#": 2331 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1435 + }, + "bounds": { + "#": 1444 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1447 + }, + "constraintImpulse": { + "#": 1448 + }, + "density": 0.001, + "force": { + "#": 1449 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 103, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1450 + }, + "positionImpulse": { + "#": 1451 + }, + "positionPrev": { + "#": 1452 + }, + "render": { + "#": 1453 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1455 + }, + "vertices": { + "#": 1456 + } + }, + [ + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1445 + }, + "min": { + "#": 1446 + } + }, + { + "x": 279.424, + "y": 329.424 + }, + { + "x": 250, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 314.712 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1454 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 317.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 323.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 329.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 329.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 323.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 317.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 311.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 306.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 302.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 300 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 300 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 302.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 306.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 311.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1474 + }, + "bounds": { + "#": 1483 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1486 + }, + "constraintImpulse": { + "#": 1487 + }, + "density": 0.001, + "force": { + "#": 1488 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 104, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1489 + }, + "positionImpulse": { + "#": 1490 + }, + "positionPrev": { + "#": 1491 + }, + "render": { + "#": 1492 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1494 + }, + "vertices": { + "#": 1495 + } + }, + [ + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1484 + }, + "min": { + "#": 1485 + } + }, + { + "x": 308.84799999999996, + "y": 329.424 + }, + { + "x": 279.424, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 314.712 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1493 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 317.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 323.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 329.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 329.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 323.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 317.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 311.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 306.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 302.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 300 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 300 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 302.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 306.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 311.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1513 + }, + "bounds": { + "#": 1522 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1525 + }, + "constraintImpulse": { + "#": 1526 + }, + "density": 0.001, + "force": { + "#": 1527 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 105, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1528 + }, + "positionImpulse": { + "#": 1529 + }, + "positionPrev": { + "#": 1530 + }, + "render": { + "#": 1531 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1533 + }, + "vertices": { + "#": 1534 + } + }, + [ + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1523 + }, + "min": { + "#": 1524 + } + }, + { + "x": 338.27199999999993, + "y": 329.424 + }, + { + "x": 308.84799999999996, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 314.712 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1532 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 317.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 323.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 329.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 329.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 323.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 317.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 311.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 306.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 302.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 300 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 300 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 302.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 306.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 311.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1552 + }, + "bounds": { + "#": 1561 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1564 + }, + "constraintImpulse": { + "#": 1565 + }, + "density": 0.001, + "force": { + "#": 1566 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 106, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1567 + }, + "positionImpulse": { + "#": 1568 + }, + "positionPrev": { + "#": 1569 + }, + "render": { + "#": 1570 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1572 + }, + "vertices": { + "#": 1573 + } + }, + [ + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1562 + }, + "min": { + "#": 1563 + } + }, + { + "x": 367.6959999999999, + "y": 329.424 + }, + { + "x": 338.27199999999993, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 314.712 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1571 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 317.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 323.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 329.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 329.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 323.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 317.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 311.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 306.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 302.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 300 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 300 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 302.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 306.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 311.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1591 + }, + "bounds": { + "#": 1600 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1603 + }, + "constraintImpulse": { + "#": 1604 + }, + "density": 0.001, + "force": { + "#": 1605 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 107, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1606 + }, + "positionImpulse": { + "#": 1607 + }, + "positionPrev": { + "#": 1608 + }, + "render": { + "#": 1609 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1611 + }, + "vertices": { + "#": 1612 + } + }, + [ + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1601 + }, + "min": { + "#": 1602 + } + }, + { + "x": 397.1199999999999, + "y": 329.424 + }, + { + "x": 367.6959999999999, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 314.712 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1610 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 317.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 323.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 329.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 329.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 323.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 317.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 311.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 306.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 302.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 300 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 300 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 302.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 306.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 311.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1630 + }, + "bounds": { + "#": 1639 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1642 + }, + "constraintImpulse": { + "#": 1643 + }, + "density": 0.001, + "force": { + "#": 1644 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 108, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1645 + }, + "positionImpulse": { + "#": 1646 + }, + "positionPrev": { + "#": 1647 + }, + "render": { + "#": 1648 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1650 + }, + "vertices": { + "#": 1651 + } + }, + [ + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1640 + }, + "min": { + "#": 1641 + } + }, + { + "x": 426.54399999999987, + "y": 329.424 + }, + { + "x": 397.1199999999999, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 314.712 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1649 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 426.54399999999987, + "y": 317.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 424.30399999999986, + "y": 323.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.1659999999999, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 414.75799999999987, + "y": 329.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 408.9059999999999, + "y": 329.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.4979999999999, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 399.3599999999999, + "y": 323.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 397.1199999999999, + "y": 317.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 397.1199999999999, + "y": 311.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 399.3599999999999, + "y": 306.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 403.4979999999999, + "y": 302.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 408.9059999999999, + "y": 300 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 414.75799999999987, + "y": 300 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 420.1659999999999, + "y": 302.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 424.30399999999986, + "y": 306.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 426.54399999999987, + "y": 311.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1669 + }, + "bounds": { + "#": 1678 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1681 + }, + "constraintImpulse": { + "#": 1682 + }, + "density": 0.001, + "force": { + "#": 1683 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 109, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1684 + }, + "positionImpulse": { + "#": 1685 + }, + "positionPrev": { + "#": 1686 + }, + "render": { + "#": 1687 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1689 + }, + "vertices": { + "#": 1690 + } + }, + [ + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1679 + }, + "min": { + "#": 1680 + } + }, + { + "x": 455.96799999999985, + "y": 329.424 + }, + { + "x": 426.54399999999987, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 314.712 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1688 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 455.96799999999985, + "y": 317.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.72799999999984, + "y": 323.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.58999999999986, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 444.18199999999985, + "y": 329.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 438.32999999999987, + "y": 329.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 432.92199999999985, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 428.7839999999999, + "y": 323.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 426.54399999999987, + "y": 317.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 426.54399999999987, + "y": 311.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 428.7839999999999, + "y": 306.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 432.92199999999985, + "y": 302.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 438.32999999999987, + "y": 300 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.18199999999985, + "y": 300 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.58999999999986, + "y": 302.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 453.72799999999984, + "y": 306.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.96799999999985, + "y": 311.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1708 + }, + "bounds": { + "#": 1717 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1720 + }, + "constraintImpulse": { + "#": 1721 + }, + "density": 0.001, + "force": { + "#": 1722 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 110, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1723 + }, + "positionImpulse": { + "#": 1724 + }, + "positionPrev": { + "#": 1725 + }, + "render": { + "#": 1726 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1728 + }, + "vertices": { + "#": 1729 + } + }, + [ + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1718 + }, + "min": { + "#": 1719 + } + }, + { + "x": 485.3919999999998, + "y": 329.424 + }, + { + "x": 455.96799999999985, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 314.712 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1727 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 485.3919999999998, + "y": 317.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.1519999999998, + "y": 323.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.01399999999984, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 473.6059999999998, + "y": 329.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 467.75399999999985, + "y": 329.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.34599999999983, + "y": 327.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 458.20799999999986, + "y": 323.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 455.96799999999985, + "y": 317.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.96799999999985, + "y": 311.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.20799999999986, + "y": 306.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 462.34599999999983, + "y": 302.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 467.75399999999985, + "y": 300 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 473.6059999999998, + "y": 300 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 479.01399999999984, + "y": 302.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 483.1519999999998, + "y": 306.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 485.3919999999998, + "y": 311.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1747 + }, + "bounds": { + "#": 1756 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1759 + }, + "constraintImpulse": { + "#": 1760 + }, + "density": 0.001, + "force": { + "#": 1761 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 111, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1762 + }, + "positionImpulse": { + "#": 1763 + }, + "positionPrev": { + "#": 1764 + }, + "render": { + "#": 1765 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1767 + }, + "vertices": { + "#": 1768 + } + }, + [ + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1757 + }, + "min": { + "#": 1758 + } + }, + { + "x": 279.424, + "y": 358.84799999999996 + }, + { + "x": 250, + "y": 329.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 344.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 344.13599999999997 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1766 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 341.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 331.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 329.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 329.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 331.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 341.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1786 + }, + "bounds": { + "#": 1795 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1798 + }, + "constraintImpulse": { + "#": 1799 + }, + "density": 0.001, + "force": { + "#": 1800 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 112, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1801 + }, + "positionImpulse": { + "#": 1802 + }, + "positionPrev": { + "#": 1803 + }, + "render": { + "#": 1804 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1806 + }, + "vertices": { + "#": 1807 + } + }, + [ + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1796 + }, + "min": { + "#": 1797 + } + }, + { + "x": 308.84799999999996, + "y": 358.84799999999996 + }, + { + "x": 279.424, + "y": 329.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 344.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 344.13599999999997 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1805 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 341.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 331.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 329.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 329.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 331.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 341.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1825 + }, + "bounds": { + "#": 1834 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1837 + }, + "constraintImpulse": { + "#": 1838 + }, + "density": 0.001, + "force": { + "#": 1839 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 113, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1840 + }, + "positionImpulse": { + "#": 1841 + }, + "positionPrev": { + "#": 1842 + }, + "render": { + "#": 1843 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1845 + }, + "vertices": { + "#": 1846 + } + }, + [ + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1835 + }, + "min": { + "#": 1836 + } + }, + { + "x": 338.27199999999993, + "y": 358.84799999999996 + }, + { + "x": 308.84799999999996, + "y": 329.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 344.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 344.13599999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1844 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 341.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 331.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 329.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 329.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 331.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 341.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1864 + }, + "bounds": { + "#": 1873 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1876 + }, + "constraintImpulse": { + "#": 1877 + }, + "density": 0.001, + "force": { + "#": 1878 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 114, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1879 + }, + "positionImpulse": { + "#": 1880 + }, + "positionPrev": { + "#": 1881 + }, + "render": { + "#": 1882 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1884 + }, + "vertices": { + "#": 1885 + } + }, + [ + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1874 + }, + "min": { + "#": 1875 + } + }, + { + "x": 367.6959999999999, + "y": 358.84799999999996 + }, + { + "x": 338.27199999999993, + "y": 329.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 344.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 344.13599999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1883 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 341.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 331.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 329.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 329.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 331.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 341.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1903 + }, + "bounds": { + "#": 1912 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1915 + }, + "constraintImpulse": { + "#": 1916 + }, + "density": 0.001, + "force": { + "#": 1917 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 115, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1918 + }, + "positionImpulse": { + "#": 1919 + }, + "positionPrev": { + "#": 1920 + }, + "render": { + "#": 1921 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1923 + }, + "vertices": { + "#": 1924 + } + }, + [ + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1913 + }, + "min": { + "#": 1914 + } + }, + { + "x": 397.1199999999999, + "y": 358.84799999999996 + }, + { + "x": 367.6959999999999, + "y": 329.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 344.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 344.13599999999997 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1922 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 341.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 331.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 329.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 329.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 331.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 341.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1942 + }, + "bounds": { + "#": 1951 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1954 + }, + "constraintImpulse": { + "#": 1955 + }, + "density": 0.001, + "force": { + "#": 1956 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 116, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1957 + }, + "positionImpulse": { + "#": 1958 + }, + "positionPrev": { + "#": 1959 + }, + "render": { + "#": 1960 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1962 + }, + "vertices": { + "#": 1963 + } + }, + [ + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1952 + }, + "min": { + "#": 1953 + } + }, + { + "x": 426.54399999999987, + "y": 358.84799999999996 + }, + { + "x": 397.1199999999999, + "y": 329.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 344.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 344.13599999999997 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1961 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 426.54399999999987, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 424.30399999999986, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.1659999999999, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 414.75799999999987, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 408.9059999999999, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.4979999999999, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 399.3599999999999, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 397.1199999999999, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 397.1199999999999, + "y": 341.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 399.3599999999999, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 403.4979999999999, + "y": 331.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 408.9059999999999, + "y": 329.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 414.75799999999987, + "y": 329.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 420.1659999999999, + "y": 331.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 424.30399999999986, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 426.54399999999987, + "y": 341.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1981 + }, + "bounds": { + "#": 1990 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1993 + }, + "constraintImpulse": { + "#": 1994 + }, + "density": 0.001, + "force": { + "#": 1995 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 117, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1996 + }, + "positionImpulse": { + "#": 1997 + }, + "positionPrev": { + "#": 1998 + }, + "render": { + "#": 1999 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2001 + }, + "vertices": { + "#": 2002 + } + }, + [ + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1991 + }, + "min": { + "#": 1992 + } + }, + { + "x": 455.96799999999985, + "y": 358.84799999999996 + }, + { + "x": 426.54399999999987, + "y": 329.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 344.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 344.13599999999997 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2000 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 455.96799999999985, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.72799999999984, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.58999999999986, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 444.18199999999985, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 438.32999999999987, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 432.92199999999985, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 428.7839999999999, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 426.54399999999987, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 426.54399999999987, + "y": 341.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 428.7839999999999, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 432.92199999999985, + "y": 331.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 438.32999999999987, + "y": 329.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.18199999999985, + "y": 329.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.58999999999986, + "y": 331.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 453.72799999999984, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.96799999999985, + "y": 341.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2020 + }, + "bounds": { + "#": 2029 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2032 + }, + "constraintImpulse": { + "#": 2033 + }, + "density": 0.001, + "force": { + "#": 2034 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 118, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2035 + }, + "positionImpulse": { + "#": 2036 + }, + "positionPrev": { + "#": 2037 + }, + "render": { + "#": 2038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2040 + }, + "vertices": { + "#": 2041 + } + }, + [ + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2030 + }, + "min": { + "#": 2031 + } + }, + { + "x": 485.3919999999998, + "y": 358.84799999999996 + }, + { + "x": 455.96799999999985, + "y": 329.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 344.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 344.13599999999997 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2039 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 485.3919999999998, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.1519999999998, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.01399999999984, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 473.6059999999998, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 467.75399999999985, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.34599999999983, + "y": 356.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 458.20799999999986, + "y": 352.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 455.96799999999985, + "y": 347.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.96799999999985, + "y": 341.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.20799999999986, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 462.34599999999983, + "y": 331.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 467.75399999999985, + "y": 329.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 473.6059999999998, + "y": 329.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 479.01399999999984, + "y": 331.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 483.1519999999998, + "y": 335.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 485.3919999999998, + "y": 341.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2059 + }, + "bounds": { + "#": 2068 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2071 + }, + "constraintImpulse": { + "#": 2072 + }, + "density": 0.001, + "force": { + "#": 2073 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 119, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2074 + }, + "positionImpulse": { + "#": 2075 + }, + "positionPrev": { + "#": 2076 + }, + "render": { + "#": 2077 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2079 + }, + "vertices": { + "#": 2080 + } + }, + [ + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2069 + }, + "min": { + "#": 2070 + } + }, + { + "x": 279.424, + "y": 388.27199999999993 + }, + { + "x": 250, + "y": 358.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 373.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 373.55999999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2078 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 370.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 370.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2098 + }, + "bounds": { + "#": 2107 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2110 + }, + "constraintImpulse": { + "#": 2111 + }, + "density": 0.001, + "force": { + "#": 2112 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 120, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2113 + }, + "positionImpulse": { + "#": 2114 + }, + "positionPrev": { + "#": 2115 + }, + "render": { + "#": 2116 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2118 + }, + "vertices": { + "#": 2119 + } + }, + [ + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2108 + }, + "min": { + "#": 2109 + } + }, + { + "x": 308.84799999999996, + "y": 388.27199999999993 + }, + { + "x": 279.424, + "y": 358.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 373.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 373.55999999999995 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2117 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 370.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 370.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2137 + }, + "bounds": { + "#": 2146 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2149 + }, + "constraintImpulse": { + "#": 2150 + }, + "density": 0.001, + "force": { + "#": 2151 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 121, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2152 + }, + "positionImpulse": { + "#": 2153 + }, + "positionPrev": { + "#": 2154 + }, + "render": { + "#": 2155 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2157 + }, + "vertices": { + "#": 2158 + } + }, + [ + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2147 + }, + "min": { + "#": 2148 + } + }, + { + "x": 338.27199999999993, + "y": 388.27199999999993 + }, + { + "x": 308.84799999999996, + "y": 358.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 373.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 373.55999999999995 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2156 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 370.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 370.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2176 + }, + "bounds": { + "#": 2185 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2188 + }, + "constraintImpulse": { + "#": 2189 + }, + "density": 0.001, + "force": { + "#": 2190 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 122, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2191 + }, + "positionImpulse": { + "#": 2192 + }, + "positionPrev": { + "#": 2193 + }, + "render": { + "#": 2194 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2196 + }, + "vertices": { + "#": 2197 + } + }, + [ + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2186 + }, + "min": { + "#": 2187 + } + }, + { + "x": 367.6959999999999, + "y": 388.27199999999993 + }, + { + "x": 338.27199999999993, + "y": 358.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 373.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 373.55999999999995 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2195 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 370.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 370.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2215 + }, + "bounds": { + "#": 2224 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2227 + }, + "constraintImpulse": { + "#": 2228 + }, + "density": 0.001, + "force": { + "#": 2229 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 123, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2230 + }, + "positionImpulse": { + "#": 2231 + }, + "positionPrev": { + "#": 2232 + }, + "render": { + "#": 2233 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2235 + }, + "vertices": { + "#": 2236 + } + }, + [ + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2225 + }, + "min": { + "#": 2226 + } + }, + { + "x": 397.1199999999999, + "y": 388.27199999999993 + }, + { + "x": 367.6959999999999, + "y": 358.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 373.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 373.55999999999995 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2234 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2237 + }, + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 370.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 370.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2254 + }, + "bounds": { + "#": 2263 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2266 + }, + "constraintImpulse": { + "#": 2267 + }, + "density": 0.001, + "force": { + "#": 2268 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 124, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2269 + }, + "positionImpulse": { + "#": 2270 + }, + "positionPrev": { + "#": 2271 + }, + "render": { + "#": 2272 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2274 + }, + "vertices": { + "#": 2275 + } + }, + [ + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2264 + }, + "min": { + "#": 2265 + } + }, + { + "x": 426.54399999999987, + "y": 388.27199999999993 + }, + { + "x": 397.1199999999999, + "y": 358.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 373.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 373.55999999999995 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2273 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + }, + { + "#": 2279 + }, + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 426.54399999999987, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 424.30399999999986, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.1659999999999, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 414.75799999999987, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 408.9059999999999, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.4979999999999, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 399.3599999999999, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 397.1199999999999, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 397.1199999999999, + "y": 370.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 399.3599999999999, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 403.4979999999999, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 408.9059999999999, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 414.75799999999987, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 420.1659999999999, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 424.30399999999986, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 426.54399999999987, + "y": 370.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2293 + }, + "bounds": { + "#": 2302 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2305 + }, + "constraintImpulse": { + "#": 2306 + }, + "density": 0.001, + "force": { + "#": 2307 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 125, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2308 + }, + "positionImpulse": { + "#": 2309 + }, + "positionPrev": { + "#": 2310 + }, + "render": { + "#": 2311 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2313 + }, + "vertices": { + "#": 2314 + } + }, + [ + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2303 + }, + "min": { + "#": 2304 + } + }, + { + "x": 455.96799999999985, + "y": 388.27199999999993 + }, + { + "x": 426.54399999999987, + "y": 358.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 373.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 373.55999999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2312 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 455.96799999999985, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.72799999999984, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.58999999999986, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 444.18199999999985, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 438.32999999999987, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 432.92199999999985, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 428.7839999999999, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 426.54399999999987, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 426.54399999999987, + "y": 370.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 428.7839999999999, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 432.92199999999985, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 438.32999999999987, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.18199999999985, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.58999999999986, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 453.72799999999984, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.96799999999985, + "y": 370.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2332 + }, + "bounds": { + "#": 2341 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2344 + }, + "constraintImpulse": { + "#": 2345 + }, + "density": 0.001, + "force": { + "#": 2346 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 126, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2347 + }, + "positionImpulse": { + "#": 2348 + }, + "positionPrev": { + "#": 2349 + }, + "render": { + "#": 2350 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2352 + }, + "vertices": { + "#": 2353 + } + }, + [ + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2342 + }, + "min": { + "#": 2343 + } + }, + { + "x": 485.3919999999998, + "y": 388.27199999999993 + }, + { + "x": 455.96799999999985, + "y": 358.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 373.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 373.55999999999995 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2351 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 485.3919999999998, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.1519999999998, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.01399999999984, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 473.6059999999998, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 467.75399999999985, + "y": 388.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.34599999999983, + "y": 386.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 458.20799999999986, + "y": 381.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 455.96799999999985, + "y": 376.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.96799999999985, + "y": 370.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.20799999999986, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 462.34599999999983, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 467.75399999999985, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 473.6059999999998, + "y": 358.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 479.01399999999984, + "y": 361.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 483.1519999999998, + "y": 365.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 485.3919999999998, + "y": 370.63399999999996 + }, + [], + [ + { + "#": 2372 + }, + { + "#": 2376 + }, + { + "#": 2380 + }, + { + "#": 2384 + }, + { + "#": 2388 + }, + { + "#": 2392 + }, + { + "#": 2396 + }, + { + "#": 2400 + }, + { + "#": 2404 + }, + { + "#": 2408 + }, + { + "#": 2412 + }, + { + "#": 2416 + }, + { + "#": 2420 + }, + { + "#": 2424 + }, + { + "#": 2428 + }, + { + "#": 2432 + }, + { + "#": 2436 + }, + { + "#": 2440 + }, + { + "#": 2444 + }, + { + "#": 2448 + }, + { + "#": 2452 + }, + { + "#": 2456 + }, + { + "#": 2460 + }, + { + "#": 2464 + }, + { + "#": 2468 + }, + { + "#": 2472 + }, + { + "#": 2476 + }, + { + "#": 2480 + }, + { + "#": 2484 + }, + { + "#": 2488 + }, + { + "#": 2492 + }, + { + "#": 2496 + }, + { + "#": 2500 + }, + { + "#": 2504 + }, + { + "#": 2508 + }, + { + "#": 2512 + }, + { + "#": 2516 + }, + { + "#": 2520 + }, + { + "#": 2524 + }, + { + "#": 2528 + }, + { + "#": 2532 + }, + { + "#": 2536 + }, + { + "#": 2540 + }, + { + "#": 2544 + }, + { + "#": 2548 + }, + { + "#": 2552 + }, + { + "#": 2556 + }, + { + "#": 2560 + }, + { + "#": 2564 + }, + { + "#": 2568 + }, + { + "#": 2572 + }, + { + "#": 2576 + }, + { + "#": 2580 + }, + { + "#": 2584 + }, + { + "#": 2588 + }, + { + "#": 2592 + }, + { + "#": 2596 + }, + { + "#": 2600 + }, + { + "#": 2604 + }, + { + "#": 2608 + }, + { + "#": 2612 + }, + { + "#": 2616 + }, + { + "#": 2620 + }, + { + "#": 2624 + }, + { + "#": 2628 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 127, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2373 + }, + "pointB": { + "#": 2374 + }, + "render": { + "#": 2375 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 128, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2377 + }, + "pointB": { + "#": 2378 + }, + "render": { + "#": 2379 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 129, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2381 + }, + "pointB": { + "#": 2382 + }, + "render": { + "#": 2383 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 130, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2385 + }, + "pointB": { + "#": 2386 + }, + "render": { + "#": 2387 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 131, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2389 + }, + "pointB": { + "#": 2390 + }, + "render": { + "#": 2391 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 132, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2393 + }, + "pointB": { + "#": 2394 + }, + "render": { + "#": 2395 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 133, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2397 + }, + "pointB": { + "#": 2398 + }, + "render": { + "#": 2399 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 134, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2401 + }, + "pointB": { + "#": 2402 + }, + "render": { + "#": 2403 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 135, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2405 + }, + "pointB": { + "#": 2406 + }, + "render": { + "#": 2407 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 136, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2409 + }, + "pointB": { + "#": 2410 + }, + "render": { + "#": 2411 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 137, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2413 + }, + "pointB": { + "#": 2414 + }, + "render": { + "#": 2415 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 138, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2417 + }, + "pointB": { + "#": 2418 + }, + "render": { + "#": 2419 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 139, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2421 + }, + "pointB": { + "#": 2422 + }, + "render": { + "#": 2423 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 140, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2425 + }, + "pointB": { + "#": 2426 + }, + "render": { + "#": 2427 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 141, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2429 + }, + "pointB": { + "#": 2430 + }, + "render": { + "#": 2431 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 142, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2433 + }, + "pointB": { + "#": 2434 + }, + "render": { + "#": 2435 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 143, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2437 + }, + "pointB": { + "#": 2438 + }, + "render": { + "#": 2439 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 144, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2441 + }, + "pointB": { + "#": 2442 + }, + "render": { + "#": 2443 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 145, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2445 + }, + "pointB": { + "#": 2446 + }, + "render": { + "#": 2447 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 146, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2449 + }, + "pointB": { + "#": 2450 + }, + "render": { + "#": 2451 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 147, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2453 + }, + "pointB": { + "#": 2454 + }, + "render": { + "#": 2455 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 148, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2457 + }, + "pointB": { + "#": 2458 + }, + "render": { + "#": 2459 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 149, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2461 + }, + "pointB": { + "#": 2462 + }, + "render": { + "#": 2463 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 150, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2465 + }, + "pointB": { + "#": 2466 + }, + "render": { + "#": 2467 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 151, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2469 + }, + "pointB": { + "#": 2470 + }, + "render": { + "#": 2471 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 152, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2473 + }, + "pointB": { + "#": 2474 + }, + "render": { + "#": 2475 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 153, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2477 + }, + "pointB": { + "#": 2478 + }, + "render": { + "#": 2479 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 154, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2481 + }, + "pointB": { + "#": 2482 + }, + "render": { + "#": 2483 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 155, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2485 + }, + "pointB": { + "#": 2486 + }, + "render": { + "#": 2487 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 156, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2489 + }, + "pointB": { + "#": 2490 + }, + "render": { + "#": 2491 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 157, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2493 + }, + "pointB": { + "#": 2494 + }, + "render": { + "#": 2495 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 158, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2497 + }, + "pointB": { + "#": 2498 + }, + "render": { + "#": 2499 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 159, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2501 + }, + "pointB": { + "#": 2502 + }, + "render": { + "#": 2503 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 160, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2505 + }, + "pointB": { + "#": 2506 + }, + "render": { + "#": 2507 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 161, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2509 + }, + "pointB": { + "#": 2510 + }, + "render": { + "#": 2511 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 162, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2513 + }, + "pointB": { + "#": 2514 + }, + "render": { + "#": 2515 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 163, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2517 + }, + "pointB": { + "#": 2518 + }, + "render": { + "#": 2519 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 164, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2521 + }, + "pointB": { + "#": 2522 + }, + "render": { + "#": 2523 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 165, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2525 + }, + "pointB": { + "#": 2526 + }, + "render": { + "#": 2527 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 166, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2529 + }, + "pointB": { + "#": 2530 + }, + "render": { + "#": 2531 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 167, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2533 + }, + "pointB": { + "#": 2534 + }, + "render": { + "#": 2535 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 168, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2537 + }, + "pointB": { + "#": 2538 + }, + "render": { + "#": 2539 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 169, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2541 + }, + "pointB": { + "#": 2542 + }, + "render": { + "#": 2543 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 170, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2545 + }, + "pointB": { + "#": 2546 + }, + "render": { + "#": 2547 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 171, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2549 + }, + "pointB": { + "#": 2550 + }, + "render": { + "#": 2551 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 172, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2553 + }, + "pointB": { + "#": 2554 + }, + "render": { + "#": 2555 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 173, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2557 + }, + "pointB": { + "#": 2558 + }, + "render": { + "#": 2559 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 174, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2561 + }, + "pointB": { + "#": 2562 + }, + "render": { + "#": 2563 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 175, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2565 + }, + "pointB": { + "#": 2566 + }, + "render": { + "#": 2567 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 176, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2569 + }, + "pointB": { + "#": 2570 + }, + "render": { + "#": 2571 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 177, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2573 + }, + "pointB": { + "#": 2574 + }, + "render": { + "#": 2575 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 178, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2577 + }, + "pointB": { + "#": 2578 + }, + "render": { + "#": 2579 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 179, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2581 + }, + "pointB": { + "#": 2582 + }, + "render": { + "#": 2583 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 180, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2585 + }, + "pointB": { + "#": 2586 + }, + "render": { + "#": 2587 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 181, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2589 + }, + "pointB": { + "#": 2590 + }, + "render": { + "#": 2591 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 182, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2593 + }, + "pointB": { + "#": 2594 + }, + "render": { + "#": 2595 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 183, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2597 + }, + "pointB": { + "#": 2598 + }, + "render": { + "#": 2599 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 184, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2601 + }, + "pointB": { + "#": 2602 + }, + "render": { + "#": 2603 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 185, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2605 + }, + "pointB": { + "#": 2606 + }, + "render": { + "#": 2607 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 186, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2609 + }, + "pointB": { + "#": 2610 + }, + "render": { + "#": 2611 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 187, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2613 + }, + "pointB": { + "#": 2614 + }, + "render": { + "#": 2615 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 188, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2617 + }, + "pointB": { + "#": 2618 + }, + "render": { + "#": 2619 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 189, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2621 + }, + "pointB": { + "#": 2622 + }, + "render": { + "#": 2623 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 190, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2625 + }, + "pointB": { + "#": 2626 + }, + "render": { + "#": 2627 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 191, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2629 + }, + "pointB": { + "#": 2630 + }, + "render": { + "#": 2631 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 2633 + }, + "composites": { + "#": 3258 + }, + "constraints": { + "#": 3259 + }, + "id": 192, + "isModified": true, + "label": "Soft Body", + "parent": null, + "type": "composite" + }, + [ + { + "#": 2634 + }, + { + "#": 2673 + }, + { + "#": 2712 + }, + { + "#": 2751 + }, + { + "#": 2790 + }, + { + "#": 2829 + }, + { + "#": 2868 + }, + { + "#": 2907 + }, + { + "#": 2946 + }, + { + "#": 2985 + }, + { + "#": 3024 + }, + { + "#": 3063 + }, + { + "#": 3102 + }, + { + "#": 3141 + }, + { + "#": 3180 + }, + { + "#": 3219 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2635 + }, + "bounds": { + "#": 2644 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2647 + }, + "constraintImpulse": { + "#": 2648 + }, + "density": 0.001, + "force": { + "#": 2649 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 193, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2650 + }, + "positionImpulse": { + "#": 2651 + }, + "positionPrev": { + "#": 2652 + }, + "render": { + "#": 2653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2655 + }, + "vertices": { + "#": 2656 + } + }, + [ + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2645 + }, + "min": { + "#": 2646 + } + }, + { + "x": 279.424, + "y": 429.424 + }, + { + "x": 250, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 414.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 414.712 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2654 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2657 + }, + { + "#": 2658 + }, + { + "#": 2659 + }, + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + }, + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 417.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 423.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 427.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 429.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 429.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 427.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 423.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 417.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 411.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 406.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 402.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 400 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 400 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 402.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 406.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 411.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2674 + }, + "bounds": { + "#": 2683 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2686 + }, + "constraintImpulse": { + "#": 2687 + }, + "density": 0.001, + "force": { + "#": 2688 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 194, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2689 + }, + "positionImpulse": { + "#": 2690 + }, + "positionPrev": { + "#": 2691 + }, + "render": { + "#": 2692 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2694 + }, + "vertices": { + "#": 2695 + } + }, + [ + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2684 + }, + "min": { + "#": 2685 + } + }, + { + "x": 308.84799999999996, + "y": 429.424 + }, + { + "x": 279.424, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 414.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 414.712 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2693 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 417.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 423.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 427.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 429.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 429.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 427.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 423.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 417.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 411.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 406.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 402.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 400 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 400 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 402.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 406.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 411.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2713 + }, + "bounds": { + "#": 2722 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2725 + }, + "constraintImpulse": { + "#": 2726 + }, + "density": 0.001, + "force": { + "#": 2727 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 195, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2728 + }, + "positionImpulse": { + "#": 2729 + }, + "positionPrev": { + "#": 2730 + }, + "render": { + "#": 2731 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2733 + }, + "vertices": { + "#": 2734 + } + }, + [ + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2723 + }, + "min": { + "#": 2724 + } + }, + { + "x": 338.27199999999993, + "y": 429.424 + }, + { + "x": 308.84799999999996, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 414.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 414.712 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2732 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 417.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 423.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 427.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 429.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 429.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 427.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 423.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 417.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 411.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 406.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 402.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 400 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 400 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 402.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 406.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 411.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2752 + }, + "bounds": { + "#": 2761 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2764 + }, + "constraintImpulse": { + "#": 2765 + }, + "density": 0.001, + "force": { + "#": 2766 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 196, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2767 + }, + "positionImpulse": { + "#": 2768 + }, + "positionPrev": { + "#": 2769 + }, + "render": { + "#": 2770 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2772 + }, + "vertices": { + "#": 2773 + } + }, + [ + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2762 + }, + "min": { + "#": 2763 + } + }, + { + "x": 367.6959999999999, + "y": 429.424 + }, + { + "x": 338.27199999999993, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 414.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 414.712 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2771 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 417.638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 423.046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 427.18399999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 429.424 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 429.424 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 427.18399999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 423.046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 417.638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 411.786 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 406.378 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 402.24 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 400 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 400 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 402.24 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 406.378 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 411.786 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2791 + }, + "bounds": { + "#": 2800 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2803 + }, + "constraintImpulse": { + "#": 2804 + }, + "density": 0.001, + "force": { + "#": 2805 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 197, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2806 + }, + "positionImpulse": { + "#": 2807 + }, + "positionPrev": { + "#": 2808 + }, + "render": { + "#": 2809 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2811 + }, + "vertices": { + "#": 2812 + } + }, + [ + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2801 + }, + "min": { + "#": 2802 + } + }, + { + "x": 279.424, + "y": 458.84799999999996 + }, + { + "x": 250, + "y": 429.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 444.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 444.13599999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2810 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 447.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 452.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 456.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 456.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 452.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 447.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 441.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 435.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 431.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 429.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 429.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 431.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 435.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 441.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2830 + }, + "bounds": { + "#": 2839 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2842 + }, + "constraintImpulse": { + "#": 2843 + }, + "density": 0.001, + "force": { + "#": 2844 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 198, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2845 + }, + "positionImpulse": { + "#": 2846 + }, + "positionPrev": { + "#": 2847 + }, + "render": { + "#": 2848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2850 + }, + "vertices": { + "#": 2851 + } + }, + [ + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2840 + }, + "min": { + "#": 2841 + } + }, + { + "x": 308.84799999999996, + "y": 458.84799999999996 + }, + { + "x": 279.424, + "y": 429.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 444.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 444.13599999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2849 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2852 + }, + { + "#": 2853 + }, + { + "#": 2854 + }, + { + "#": 2855 + }, + { + "#": 2856 + }, + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 447.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 452.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 456.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 456.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 452.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 447.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 441.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 435.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 431.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 429.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 429.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 431.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 435.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 441.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2869 + }, + "bounds": { + "#": 2878 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2881 + }, + "constraintImpulse": { + "#": 2882 + }, + "density": 0.001, + "force": { + "#": 2883 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 199, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2884 + }, + "positionImpulse": { + "#": 2885 + }, + "positionPrev": { + "#": 2886 + }, + "render": { + "#": 2887 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2889 + }, + "vertices": { + "#": 2890 + } + }, + [ + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2879 + }, + "min": { + "#": 2880 + } + }, + { + "x": 338.27199999999993, + "y": 458.84799999999996 + }, + { + "x": 308.84799999999996, + "y": 429.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 444.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 444.13599999999997 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2888 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 447.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 452.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 456.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 456.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 452.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 447.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 441.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 435.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 431.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 429.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 429.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 431.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 435.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 441.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2908 + }, + "bounds": { + "#": 2917 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2920 + }, + "constraintImpulse": { + "#": 2921 + }, + "density": 0.001, + "force": { + "#": 2922 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 200, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2923 + }, + "positionImpulse": { + "#": 2924 + }, + "positionPrev": { + "#": 2925 + }, + "render": { + "#": 2926 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2928 + }, + "vertices": { + "#": 2929 + } + }, + [ + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2918 + }, + "min": { + "#": 2919 + } + }, + { + "x": 367.6959999999999, + "y": 458.84799999999996 + }, + { + "x": 338.27199999999993, + "y": 429.424 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 444.13599999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 444.13599999999997 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2927 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 447.06199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 452.46999999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 456.60799999999995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 456.60799999999995 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 452.46999999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 447.06199999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 441.21 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 435.80199999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 431.664 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 429.424 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 429.424 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 431.664 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 435.80199999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 441.21 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2947 + }, + "bounds": { + "#": 2956 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2959 + }, + "constraintImpulse": { + "#": 2960 + }, + "density": 0.001, + "force": { + "#": 2961 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 201, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2962 + }, + "positionImpulse": { + "#": 2963 + }, + "positionPrev": { + "#": 2964 + }, + "render": { + "#": 2965 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2967 + }, + "vertices": { + "#": 2968 + } + }, + [ + { + "#": 2948 + }, + { + "#": 2949 + }, + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2957 + }, + "min": { + "#": 2958 + } + }, + { + "x": 279.424, + "y": 488.27199999999993 + }, + { + "x": 250, + "y": 458.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 473.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 473.55999999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2966 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + }, + { + "#": 2984 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 476.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 481.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 486.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 486.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 481.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 476.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 470.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 465.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 461.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 461.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 465.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 470.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2986 + }, + "bounds": { + "#": 2995 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2998 + }, + "constraintImpulse": { + "#": 2999 + }, + "density": 0.001, + "force": { + "#": 3000 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 202, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3001 + }, + "positionImpulse": { + "#": 3002 + }, + "positionPrev": { + "#": 3003 + }, + "render": { + "#": 3004 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3006 + }, + "vertices": { + "#": 3007 + } + }, + [ + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2996 + }, + "min": { + "#": 2997 + } + }, + { + "x": 308.84799999999996, + "y": 488.27199999999993 + }, + { + "x": 279.424, + "y": 458.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 473.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 473.55999999999995 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3005 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 476.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 481.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 486.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 486.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 481.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 476.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 470.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 465.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 461.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 461.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 465.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 470.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3025 + }, + "bounds": { + "#": 3034 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3037 + }, + "constraintImpulse": { + "#": 3038 + }, + "density": 0.001, + "force": { + "#": 3039 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 203, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3040 + }, + "positionImpulse": { + "#": 3041 + }, + "positionPrev": { + "#": 3042 + }, + "render": { + "#": 3043 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3045 + }, + "vertices": { + "#": 3046 + } + }, + [ + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3035 + }, + "min": { + "#": 3036 + } + }, + { + "x": 338.27199999999993, + "y": 488.27199999999993 + }, + { + "x": 308.84799999999996, + "y": 458.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 473.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 473.55999999999995 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3044 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3047 + }, + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 476.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 481.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 486.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 486.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 481.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 476.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 470.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 465.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 461.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 461.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 465.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 470.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3064 + }, + "bounds": { + "#": 3073 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3076 + }, + "constraintImpulse": { + "#": 3077 + }, + "density": 0.001, + "force": { + "#": 3078 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 204, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3079 + }, + "positionImpulse": { + "#": 3080 + }, + "positionPrev": { + "#": 3081 + }, + "render": { + "#": 3082 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3084 + }, + "vertices": { + "#": 3085 + } + }, + [ + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3074 + }, + "min": { + "#": 3075 + } + }, + { + "x": 367.6959999999999, + "y": 488.27199999999993 + }, + { + "x": 338.27199999999993, + "y": 458.84799999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 473.55999999999995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 473.55999999999995 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3083 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3086 + }, + { + "#": 3087 + }, + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 476.48599999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 481.89399999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 486.0319999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 486.0319999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 481.89399999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 476.48599999999993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 470.63399999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 465.22599999999994 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 461.08799999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 458.84799999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 461.08799999999997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 465.22599999999994 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 470.63399999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3103 + }, + "bounds": { + "#": 3112 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3115 + }, + "constraintImpulse": { + "#": 3116 + }, + "density": 0.001, + "force": { + "#": 3117 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 205, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3118 + }, + "positionImpulse": { + "#": 3119 + }, + "positionPrev": { + "#": 3120 + }, + "render": { + "#": 3121 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3123 + }, + "vertices": { + "#": 3124 + } + }, + [ + { + "#": 3104 + }, + { + "#": 3105 + }, + { + "#": 3106 + }, + { + "#": 3107 + }, + { + "#": 3108 + }, + { + "#": 3109 + }, + { + "#": 3110 + }, + { + "#": 3111 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3113 + }, + "min": { + "#": 3114 + } + }, + { + "x": 279.424, + "y": 517.6959999999999 + }, + { + "x": 250, + "y": 488.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 502.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 502.9839999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3122 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 505.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 511.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 515.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 517.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 517.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 515.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 511.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 505.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 500.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 494.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 490.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 490.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 494.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 500.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3142 + }, + "bounds": { + "#": 3151 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3154 + }, + "constraintImpulse": { + "#": 3155 + }, + "density": 0.001, + "force": { + "#": 3156 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 206, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3157 + }, + "positionImpulse": { + "#": 3158 + }, + "positionPrev": { + "#": 3159 + }, + "render": { + "#": 3160 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3162 + }, + "vertices": { + "#": 3163 + } + }, + [ + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3152 + }, + "min": { + "#": 3153 + } + }, + { + "x": 308.84799999999996, + "y": 517.6959999999999 + }, + { + "x": 279.424, + "y": 488.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 502.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 502.9839999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3161 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 505.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 511.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 515.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 517.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 517.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 515.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 511.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 505.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 500.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 494.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 490.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 490.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 494.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 500.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3181 + }, + "bounds": { + "#": 3190 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3193 + }, + "constraintImpulse": { + "#": 3194 + }, + "density": 0.001, + "force": { + "#": 3195 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 207, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3196 + }, + "positionImpulse": { + "#": 3197 + }, + "positionPrev": { + "#": 3198 + }, + "render": { + "#": 3199 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3201 + }, + "vertices": { + "#": 3202 + } + }, + [ + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3191 + }, + "min": { + "#": 3192 + } + }, + { + "x": 338.27199999999993, + "y": 517.6959999999999 + }, + { + "x": 308.84799999999996, + "y": 488.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 502.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 502.9839999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3200 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 505.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 511.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 515.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 517.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 517.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 515.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 511.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 505.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 500.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 494.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 490.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 490.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 494.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 500.05799999999994 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3220 + }, + "bounds": { + "#": 3229 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3232 + }, + "constraintImpulse": { + "#": 3233 + }, + "density": 0.001, + "force": { + "#": 3234 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 208, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3235 + }, + "positionImpulse": { + "#": 3236 + }, + "positionPrev": { + "#": 3237 + }, + "render": { + "#": 3238 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3240 + }, + "vertices": { + "#": 3241 + } + }, + [ + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3230 + }, + "min": { + "#": 3231 + } + }, + { + "x": 367.6959999999999, + "y": 517.6959999999999 + }, + { + "x": 338.27199999999993, + "y": 488.27199999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 502.9839999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 502.9839999999999 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3239 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + }, + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 505.9099999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 511.3179999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 515.4559999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 517.6959999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 517.6959999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 515.4559999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 511.3179999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 505.9099999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 500.05799999999994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 494.6499999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 490.51199999999994 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 488.27199999999993 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 490.51199999999994 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 494.6499999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 500.05799999999994 + }, + [], + [ + { + "#": 3260 + }, + { + "#": 3264 + }, + { + "#": 3268 + }, + { + "#": 3272 + }, + { + "#": 3276 + }, + { + "#": 3280 + }, + { + "#": 3284 + }, + { + "#": 3288 + }, + { + "#": 3292 + }, + { + "#": 3296 + }, + { + "#": 3300 + }, + { + "#": 3304 + }, + { + "#": 3308 + }, + { + "#": 3312 + }, + { + "#": 3316 + }, + { + "#": 3320 + }, + { + "#": 3324 + }, + { + "#": 3328 + }, + { + "#": 3332 + }, + { + "#": 3336 + }, + { + "#": 3340 + }, + { + "#": 3344 + }, + { + "#": 3348 + }, + { + "#": 3352 + }, + { + "#": 3356 + }, + { + "#": 3360 + }, + { + "#": 3364 + }, + { + "#": 3368 + }, + { + "#": 3372 + }, + { + "#": 3376 + }, + { + "#": 3380 + }, + { + "#": 3384 + }, + { + "#": 3388 + }, + { + "#": 3392 + }, + { + "#": 3396 + }, + { + "#": 3400 + }, + { + "#": 3404 + }, + { + "#": 3408 + }, + { + "#": 3412 + }, + { + "#": 3416 + }, + { + "#": 3420 + }, + { + "#": 3424 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 209, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3261 + }, + "pointB": { + "#": 3262 + }, + "render": { + "#": 3263 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 210, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3265 + }, + "pointB": { + "#": 3266 + }, + "render": { + "#": 3267 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 211, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3269 + }, + "pointB": { + "#": 3270 + }, + "render": { + "#": 3271 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 212, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3273 + }, + "pointB": { + "#": 3274 + }, + "render": { + "#": 3275 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 213, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3277 + }, + "pointB": { + "#": 3278 + }, + "render": { + "#": 3279 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 214, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3281 + }, + "pointB": { + "#": 3282 + }, + "render": { + "#": 3283 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 215, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3285 + }, + "pointB": { + "#": 3286 + }, + "render": { + "#": 3287 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 216, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3289 + }, + "pointB": { + "#": 3290 + }, + "render": { + "#": 3291 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 217, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3293 + }, + "pointB": { + "#": 3294 + }, + "render": { + "#": 3295 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 218, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3297 + }, + "pointB": { + "#": 3298 + }, + "render": { + "#": 3299 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 219, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3301 + }, + "pointB": { + "#": 3302 + }, + "render": { + "#": 3303 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 220, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3305 + }, + "pointB": { + "#": 3306 + }, + "render": { + "#": 3307 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 221, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3309 + }, + "pointB": { + "#": 3310 + }, + "render": { + "#": 3311 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 222, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3313 + }, + "pointB": { + "#": 3314 + }, + "render": { + "#": 3315 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 223, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3317 + }, + "pointB": { + "#": 3318 + }, + "render": { + "#": 3319 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 224, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3321 + }, + "pointB": { + "#": 3322 + }, + "render": { + "#": 3323 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 225, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3325 + }, + "pointB": { + "#": 3326 + }, + "render": { + "#": 3327 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 226, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3329 + }, + "pointB": { + "#": 3330 + }, + "render": { + "#": 3331 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 227, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3333 + }, + "pointB": { + "#": 3334 + }, + "render": { + "#": 3335 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 228, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3337 + }, + "pointB": { + "#": 3338 + }, + "render": { + "#": 3339 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 229, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3341 + }, + "pointB": { + "#": 3342 + }, + "render": { + "#": 3343 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 230, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3345 + }, + "pointB": { + "#": 3346 + }, + "render": { + "#": 3347 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 231, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3349 + }, + "pointB": { + "#": 3350 + }, + "render": { + "#": 3351 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 232, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3353 + }, + "pointB": { + "#": 3354 + }, + "render": { + "#": 3355 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 233, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3357 + }, + "pointB": { + "#": 3358 + }, + "render": { + "#": 3359 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 234, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3361 + }, + "pointB": { + "#": 3362 + }, + "render": { + "#": 3363 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 235, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3365 + }, + "pointB": { + "#": 3366 + }, + "render": { + "#": 3367 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 236, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3369 + }, + "pointB": { + "#": 3370 + }, + "render": { + "#": 3371 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 237, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3373 + }, + "pointB": { + "#": 3374 + }, + "render": { + "#": 3375 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 238, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3377 + }, + "pointB": { + "#": 3378 + }, + "render": { + "#": 3379 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 239, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3381 + }, + "pointB": { + "#": 3382 + }, + "render": { + "#": 3383 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 240, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3385 + }, + "pointB": { + "#": 3386 + }, + "render": { + "#": 3387 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 241, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3389 + }, + "pointB": { + "#": 3390 + }, + "render": { + "#": 3391 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 242, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3393 + }, + "pointB": { + "#": 3394 + }, + "render": { + "#": 3395 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 243, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3397 + }, + "pointB": { + "#": 3398 + }, + "render": { + "#": 3399 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 244, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3401 + }, + "pointB": { + "#": 3402 + }, + "render": { + "#": 3403 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 245, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3405 + }, + "pointB": { + "#": 3406 + }, + "render": { + "#": 3407 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 246, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3409 + }, + "pointB": { + "#": 3410 + }, + "render": { + "#": 3411 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 247, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3413 + }, + "pointB": { + "#": 3414 + }, + "render": { + "#": 3415 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 248, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3417 + }, + "pointB": { + "#": 3418 + }, + "render": { + "#": 3419 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 249, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3421 + }, + "pointB": { + "#": 3422 + }, + "render": { + "#": 3423 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 250, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3425 + }, + "pointB": { + "#": 3426 + }, + "render": { + "#": 3427 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 3429 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 3430 + }, + "pointB": "", + "render": { + "#": 3431 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/softBody/softBody-10.json b/tests/browser/refs/softBody/softBody-10.json new file mode 100644 index 00000000..85c44c9e --- /dev/null +++ b/tests/browser/refs/softBody/softBody-10.json @@ -0,0 +1,31745 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 3497 + }, + "gravity": { + "#": 3501 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + }, + { + "#": 1461 + }, + { + "#": 2685 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1171 + }, + "constraints": { + "#": 1172 + }, + "id": 4, + "isModified": false, + "label": "Soft Body", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 139 + }, + { + "#": 182 + }, + { + "#": 225 + }, + { + "#": 268 + }, + { + "#": 311 + }, + { + "#": 354 + }, + { + "#": 397 + }, + { + "#": 440 + }, + { + "#": 483 + }, + { + "#": 526 + }, + { + "#": 569 + }, + { + "#": 612 + }, + { + "#": 655 + }, + { + "#": 698 + }, + { + "#": 741 + }, + { + "#": 784 + }, + { + "#": 827 + }, + { + "#": 870 + }, + { + "#": 913 + }, + { + "#": 956 + }, + { + "#": 999 + }, + { + "#": 1042 + }, + { + "#": 1085 + }, + { + "#": 1128 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 97 + }, + "bounds": { + "#": 107 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 110 + }, + "constraintImpulse": { + "#": 111 + }, + "density": 0.001, + "force": { + "#": 112 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 5, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 113 + }, + "positionImpulse": { + "#": 114 + }, + "positionPrev": { + "#": 115 + }, + "region": { + "#": 116 + }, + "render": { + "#": 117 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 119 + }, + "vertices": { + "#": 120 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 108 + }, + "min": { + "#": 109 + } + }, + { + "x": 285.45399999999995, + "y": 153.73575476702575 + }, + { + "x": 249.99999999999997, + "y": 117.73575476702575 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 135.73575476702575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.727, + "y": 132.8284840519901 + }, + { + "endCol": 5, + "endRow": 3, + "id": "5,5,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 118 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.45399999999995, + "y": 138.86175476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.315, + "y": 144.73575476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.29699999999997, + "y": 149.52475476702574 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.883, + "y": 152.64975476702574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.727, + "y": 153.73575476702575 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.57099999999997, + "y": 152.64975476702574 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.157, + "y": 149.52475476702574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.13899999999998, + "y": 144.73575476702575 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.99999999999997, + "y": 138.86175476702576 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.99999999999997, + "y": 132.60975476702575 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.13899999999998, + "y": 126.73575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.157, + "y": 121.94675476702575 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.57099999999997, + "y": 118.82175476702575 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.727, + "y": 117.73575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.883, + "y": 118.82175476702575 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.29699999999997, + "y": 121.94675476702575 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.315, + "y": 126.73575476702575 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.45399999999995, + "y": 132.60975476702575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 140 + }, + "bounds": { + "#": 150 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "density": 0.001, + "force": { + "#": 155 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 6, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 156 + }, + "positionImpulse": { + "#": 157 + }, + "positionPrev": { + "#": 158 + }, + "region": { + "#": 159 + }, + "render": { + "#": 160 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 162 + }, + "vertices": { + "#": 163 + } + }, + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 151 + }, + "min": { + "#": 152 + } + }, + { + "x": 320.9079999999999, + "y": 153.73575476702575 + }, + { + "x": 285.45399999999995, + "y": 117.73575476702575 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 135.73575476702575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1809999999999, + "y": 132.8284840519901 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 161 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9079999999999, + "y": 138.86175476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.76899999999995, + "y": 144.73575476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.7509999999999, + "y": 149.52475476702574 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.33699999999993, + "y": 152.64975476702574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.1809999999999, + "y": 153.73575476702575 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.0249999999999, + "y": 152.64975476702574 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.61099999999993, + "y": 149.52475476702574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.5929999999999, + "y": 144.73575476702575 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.45399999999995, + "y": 138.86175476702576 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.45399999999995, + "y": 132.60975476702575 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5929999999999, + "y": 126.73575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.61099999999993, + "y": 121.94675476702575 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.0249999999999, + "y": 118.82175476702575 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.1809999999999, + "y": 117.73575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.33699999999993, + "y": 118.82175476702575 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.7509999999999, + "y": 121.94675476702575 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.76899999999995, + "y": 126.73575476702575 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9079999999999, + "y": 132.60975476702575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 183 + }, + "bounds": { + "#": 193 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 196 + }, + "constraintImpulse": { + "#": 197 + }, + "density": 0.001, + "force": { + "#": 198 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 7, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 199 + }, + "positionImpulse": { + "#": 200 + }, + "positionPrev": { + "#": 201 + }, + "region": { + "#": 202 + }, + "render": { + "#": 203 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 205 + }, + "vertices": { + "#": 206 + } + }, + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 194 + }, + "min": { + "#": 195 + } + }, + { + "x": 356.36199999999985, + "y": 153.73575476702575 + }, + { + "x": 320.9079999999999, + "y": 117.73575476702575 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 135.73575476702575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6349999999999, + "y": 132.8284840519901 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 204 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.36199999999985, + "y": 138.86175476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.2229999999999, + "y": 144.73575476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.20499999999987, + "y": 149.52475476702574 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.7909999999999, + "y": 152.64975476702574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.6349999999999, + "y": 153.73575476702575 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.47899999999987, + "y": 152.64975476702574 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.0649999999999, + "y": 149.52475476702574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.04699999999985, + "y": 144.73575476702575 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.9079999999999, + "y": 138.86175476702576 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.9079999999999, + "y": 132.60975476702575 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.04699999999985, + "y": 126.73575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.0649999999999, + "y": 121.94675476702575 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.47899999999987, + "y": 118.82175476702575 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.6349999999999, + "y": 117.73575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.7909999999999, + "y": 118.82175476702575 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.20499999999987, + "y": 121.94675476702575 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.2229999999999, + "y": 126.73575476702575 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.36199999999985, + "y": 132.60975476702575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 226 + }, + "bounds": { + "#": 236 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 239 + }, + "constraintImpulse": { + "#": 240 + }, + "density": 0.001, + "force": { + "#": 241 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 8, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 242 + }, + "positionImpulse": { + "#": 243 + }, + "positionPrev": { + "#": 244 + }, + "region": { + "#": 245 + }, + "render": { + "#": 246 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 248 + }, + "vertices": { + "#": 249 + } + }, + [ + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 237 + }, + "min": { + "#": 238 + } + }, + { + "x": 391.8409979826192, + "y": 156.6430254820614 + }, + { + "x": 356.3869979826192, + "y": 117.73575476702575 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.1139979826192, + "y": 135.73575476702575 + }, + { + "x": 0.019998386095497162, + "y": 0 + }, + { + "x": 374.11399997500183, + "y": 132.8284840519901 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 247 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000001992382635762624, + "y": 2.9239522800970406 + }, + [ + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.8409979826192, + "y": 138.86175476702576 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.7019979826192, + "y": 144.73575476702575 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6839979826192, + "y": 149.52475476702574 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.2699979826192, + "y": 152.64975476702574 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.1139979826192, + "y": 153.73575476702575 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9579979826192, + "y": 152.64975476702574 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.5439979826192, + "y": 149.52475476702574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5259979826192, + "y": 144.73575476702575 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.3869979826192, + "y": 138.86175476702576 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.3869979826192, + "y": 132.60975476702575 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5259979826192, + "y": 126.73575476702575 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.5439979826192, + "y": 121.94675476702575 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9579979826192, + "y": 118.82175476702575 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.1139979826192, + "y": 117.73575476702575 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.2699979826192, + "y": 118.82175476702575 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6839979826192, + "y": 121.94675476702575 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.7019979826192, + "y": 126.73575476702575 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.8409979826192, + "y": 132.60975476702575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 269 + }, + "bounds": { + "#": 279 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 282 + }, + "constraintImpulse": { + "#": 283 + }, + "density": 0.001, + "force": { + "#": 284 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 9, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 285 + }, + "positionImpulse": { + "#": 286 + }, + "positionPrev": { + "#": 287 + }, + "region": { + "#": 288 + }, + "render": { + "#": 289 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 291 + }, + "vertices": { + "#": 292 + } + }, + [ + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 280 + }, + "min": { + "#": 281 + } + }, + { + "x": 427.2449980326151, + "y": 156.6517534956213 + }, + { + "x": 391.79099803261516, + "y": 117.74448278058567 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.51799803261514, + "y": 135.74448278058566 + }, + { + "x": -0.019998386095497162, + "y": 0 + }, + { + "x": 409.5180000249978, + "y": 132.8284840519901 + }, + { + "endCol": 8, + "endRow": 3, + "id": "8,8,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 290 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000001992382635762624, + "y": 2.899317163534164 + }, + [ + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.2449980326151, + "y": 138.87048278058566 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.10599803261516, + "y": 144.74448278058566 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.08799803261513, + "y": 149.53348278058564 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.67399803261515, + "y": 152.65848278058564 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.51799803261514, + "y": 153.74448278058566 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.36199803261513, + "y": 152.65848278058564 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.94799803261515, + "y": 149.53348278058564 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.9299980326151, + "y": 144.74448278058566 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.79099803261516, + "y": 138.87048278058566 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.79099803261516, + "y": 132.61848278058565 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.9299980326151, + "y": 126.74448278058567 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.94799803261515, + "y": 121.95548278058567 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.36199803261513, + "y": 118.83048278058567 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.51799803261514, + "y": 117.74448278058567 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.67399803261515, + "y": 118.83048278058567 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.08799803261513, + "y": 121.95548278058567 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.10599803261516, + "y": 126.74448278058567 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.2449980326151, + "y": 132.61848278058565 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 312 + }, + "bounds": { + "#": 322 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 325 + }, + "constraintImpulse": { + "#": 326 + }, + "density": 0.001, + "force": { + "#": 327 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 10, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 328 + }, + "positionImpulse": { + "#": 329 + }, + "positionPrev": { + "#": 330 + }, + "region": { + "#": 331 + }, + "render": { + "#": 332 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.915171814505275, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 334 + }, + "vertices": { + "#": 335 + } + }, + [ + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 323 + }, + "min": { + "#": 324 + } + }, + { + "x": 285.4539999898469, + "y": 189.759218910325 + }, + { + "x": 249.99999998984694, + "y": 153.759218910325 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.72699998984695, + "y": 171.759218910325 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.72699999782884, + "y": 168.83646496054544 + }, + { + "endCol": 5, + "endRow": 3, + "id": "5,5,3,3", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 333 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.1494201973837335e-9, + "y": 2.915171814505271 + }, + [ + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.4539999898469, + "y": 174.885218910325 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.31499998984697, + "y": 180.759218910325 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.29699998984694, + "y": 185.54821891032498 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.88299998984695, + "y": 188.67321891032498 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.72699998984695, + "y": 189.759218910325 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.57099998984694, + "y": 188.67321891032498 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.15699998984695, + "y": 185.54821891032498 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.13899998984695, + "y": 180.759218910325 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.99999998984694, + "y": 174.885218910325 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.99999998984694, + "y": 168.63321891032498 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.13899998984695, + "y": 162.759218910325 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.15699998984695, + "y": 157.970218910325 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.57099998984694, + "y": 154.845218910325 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.72699998984695, + "y": 153.759218910325 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.88299998984695, + "y": 154.845218910325 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.29699998984694, + "y": 157.970218910325 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.31499998984697, + "y": 162.759218910325 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.4539999898469, + "y": 168.63321891032498 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 355 + }, + "bounds": { + "#": 365 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 368 + }, + "constraintImpulse": { + "#": 369 + }, + "density": 0.001, + "force": { + "#": 370 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 11, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 371 + }, + "positionImpulse": { + "#": 372 + }, + "positionPrev": { + "#": 373 + }, + "region": { + "#": 374 + }, + "render": { + "#": 375 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.917245722859686, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 377 + }, + "vertices": { + "#": 378 + } + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 366 + }, + "min": { + "#": 367 + } + }, + { + "x": 320.947014116306, + "y": 192.6831553653448 + }, + { + "x": 285.4831163446724, + "y": 153.7659264333513 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.220014116306, + "y": 171.7659264333513 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.22991188793964, + "y": 168.8486975013578 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,3,3", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 376 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.009897771633632146, + "y": 2.900547366932102 + }, + [ + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.947014116306, + "y": 174.8919264333513 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.808014116306, + "y": 180.7659264333513 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.790014116306, + "y": 185.55492643335128 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.376014116306, + "y": 188.67992643335128 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.220014116306, + "y": 189.7659264333513 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.064014116306, + "y": 188.67992643335128 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.650014116306, + "y": 185.55492643335128 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.632014116306, + "y": 180.7659264333513 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.49301411630603, + "y": 174.8919264333513 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.49301411630603, + "y": 168.6399264333513 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.632014116306, + "y": 162.7659264333513 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.650014116306, + "y": 157.9769264333513 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.064014116306, + "y": 154.8519264333513 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.220014116306, + "y": 153.7659264333513 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.376014116306, + "y": 154.8519264333513 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.790014116306, + "y": 157.9769264333513 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.808014116306, + "y": 162.7659264333513 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.947014116306, + "y": 168.6399264333513 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 398 + }, + "bounds": { + "#": 408 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "density": 0.001, + "force": { + "#": 413 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 12, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 414 + }, + "positionImpulse": { + "#": 415 + }, + "positionPrev": { + "#": 416 + }, + "region": { + "#": 417 + }, + "render": { + "#": 418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9073219947338096, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 420 + }, + "vertices": { + "#": 421 + } + }, + [ + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 409 + }, + "min": { + "#": 410 + } + }, + { + "x": 356.36920795216, + "y": 192.64300847894202 + }, + { + "x": 320.8970141330474, + "y": 153.73574341259373 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.62401413304735, + "y": 171.73574341259373 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.60582031393466, + "y": 168.82847834624545 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,3,3", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 419 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.01819381911269602, + "y": 2.9239466314096774 + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.35101413304733, + "y": 174.86174341259374 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.2120141330474, + "y": 180.73574341259373 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.19401413304735, + "y": 185.52474341259372 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.78001413304736, + "y": 188.64974341259372 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.62401413304735, + "y": 189.73574341259373 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.46801413304735, + "y": 188.64974341259372 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.05401413304736, + "y": 185.52474341259372 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.03601413304733, + "y": 180.73574341259373 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.8970141330474, + "y": 174.86174341259374 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.8970141330474, + "y": 168.60974341259373 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.03601413304733, + "y": 162.73574341259373 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.05401413304736, + "y": 157.94674341259375 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.46801413304735, + "y": 154.82174341259375 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.62401413304735, + "y": 153.73574341259373 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.78001413304736, + "y": 154.82174341259375 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.19401413304735, + "y": 157.94674341259375 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.2120141330474, + "y": 162.73574341259373 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.35101413304733, + "y": 168.60974341259373 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 441 + }, + "bounds": { + "#": 451 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 454 + }, + "constraintImpulse": { + "#": 455 + }, + "density": 0.001, + "force": { + "#": 456 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 13, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 457 + }, + "positionImpulse": { + "#": 458 + }, + "positionPrev": { + "#": 459 + }, + "region": { + "#": 460 + }, + "render": { + "#": 461 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9073098565744635, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 463 + }, + "vertices": { + "#": 464 + } + }, + [ + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 452 + }, + "min": { + "#": 453 + } + }, + { + "x": 391.8370062675113, + "y": 192.65082310405614 + }, + { + "x": 356.36655785577426, + "y": 153.74355977716496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.1100062675114, + "y": 171.74355977716496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.1264543595064, + "y": 168.82847658921807 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,3,3", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 462 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01644809199501651, + "y": 2.898401622885501 + }, + [ + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.8370062675113, + "y": 174.86955977716497 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.69800626751135, + "y": 180.74355977716496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6800062675113, + "y": 185.53255977716495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.26600626751133, + "y": 188.65755977716495 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.1100062675113, + "y": 189.74355977716496 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9540062675113, + "y": 188.65755977716495 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.54000626751133, + "y": 185.53255977716495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5220062675113, + "y": 180.74355977716496 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.38300626751135, + "y": 174.86955977716497 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.38300626751135, + "y": 168.61755977716496 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5220062675113, + "y": 162.74355977716496 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.54000626751133, + "y": 157.95455977716497 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9540062675113, + "y": 154.82955977716497 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.1100062675113, + "y": 153.74355977716496 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.26600626751133, + "y": 154.82955977716497 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6800062675113, + "y": 157.95455977716497 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.69800626751135, + "y": 162.74355977716496 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.8370062675113, + "y": 168.61755977716496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 484 + }, + "bounds": { + "#": 494 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 497 + }, + "constraintImpulse": { + "#": 498 + }, + "density": 0.001, + "force": { + "#": 499 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 14, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 500 + }, + "positionImpulse": { + "#": 501 + }, + "positionPrev": { + "#": 502 + }, + "region": { + "#": 503 + }, + "render": { + "#": 504 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.895491174244636, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 506 + }, + "vertices": { + "#": 507 + } + }, + [ + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 495 + }, + "min": { + "#": 496 + } + }, + { + "x": 427.24909641493645, + "y": 192.69341463173373 + }, + { + "x": 391.7871073107053, + "y": 153.797934479092 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5141073107053, + "y": 171.797934479092 + }, + { + "x": -0.009952792306826292, + "y": 0.02181712775255825 + }, + { + "x": 409.5070784028134, + "y": 168.91101224568268 + }, + { + "endCol": 8, + "endRow": 3, + "id": "8,8,3,3", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 505 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.007028907891879044, + "y": 2.903603798470698 + }, + [ + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.2411073107053, + "y": 174.923934479092 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.1021073107053, + "y": 180.797934479092 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.0841073107053, + "y": 185.58693447909198 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.6701073107053, + "y": 188.71193447909198 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.5141073107053, + "y": 189.797934479092 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.3581073107053, + "y": 188.71193447909198 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.9441073107053, + "y": 185.58693447909198 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.9261073107053, + "y": 180.797934479092 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.7871073107053, + "y": 174.923934479092 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.7871073107053, + "y": 168.671934479092 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.9261073107053, + "y": 162.797934479092 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.9441073107053, + "y": 158.008934479092 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.3581073107053, + "y": 154.883934479092 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.5141073107053, + "y": 153.797934479092 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.6701073107053, + "y": 154.883934479092 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.0841073107053, + "y": 158.008934479092 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.1021073107053, + "y": 162.797934479092 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.2411073107053, + "y": 168.671934479092 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 527 + }, + "bounds": { + "#": 537 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 15, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "region": { + "#": 546 + }, + "render": { + "#": 547 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.918070888740444, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 549 + }, + "vertices": { + "#": 550 + } + }, + [ + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 285.4539668429389, + "y": 225.79008530569993 + }, + { + "x": 249.9999668429389, + "y": 189.79008530569993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.72696684293885, + "y": 207.79008530569996 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.7269821457263, + "y": 204.87147656268772 + }, + { + "endCol": 5, + "endRow": 4, + "id": "5,5,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 548 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000009865998833902268, + "y": 2.9104887534494708 + }, + [ + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.4539668429389, + "y": 210.91608530569994 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.31496684293893, + "y": 216.79008530569993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.2969668429389, + "y": 221.57908530569992 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.8829668429389, + "y": 224.70408530569992 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.7269668429389, + "y": 225.79008530569993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.5709668429389, + "y": 224.70408530569992 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.1569668429389, + "y": 221.57908530569992 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.1389668429389, + "y": 216.79008530569993 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.9999668429389, + "y": 210.91608530569994 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.9999668429389, + "y": 204.66408530569993 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.1389668429389, + "y": 198.79008530569993 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.1569668429389, + "y": 194.00108530569995 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.5709668429389, + "y": 190.87608530569995 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.7269668429389, + "y": 189.79008530569993 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.8829668429389, + "y": 190.87608530569995 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.2969668429389, + "y": 194.00108530569995 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.31496684293893, + "y": 198.79008530569993 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.4539668429389, + "y": 204.66408530569993 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 570 + }, + "bounds": { + "#": 580 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 583 + }, + "constraintImpulse": { + "#": 584 + }, + "density": 0.001, + "force": { + "#": 585 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 16, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 586 + }, + "positionImpulse": { + "#": 587 + }, + "positionPrev": { + "#": 588 + }, + "region": { + "#": 589 + }, + "render": { + "#": 590 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8955760672783066, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 592 + }, + "vertices": { + "#": 593 + } + }, + [ + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 581 + }, + "min": { + "#": 582 + } + }, + { + "x": 320.9302721317029, + "y": 228.67043986864962 + }, + { + "x": 285.4559559394942, + "y": 189.77493507436435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.20327213170293, + "y": 207.77493507436435 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.2235883239117, + "y": 204.88547671593494 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 591 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.02031619220878156, + "y": 2.906139923490798 + }, + [ + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9302721317029, + "y": 210.90093507436436 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.791272131703, + "y": 216.77493507436435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.773272131703, + "y": 221.56393507436434 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.359272131703, + "y": 224.68893507436434 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.20327213170293, + "y": 225.77493507436435 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.047272131703, + "y": 224.68893507436434 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.633272131703, + "y": 221.56393507436434 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.61527213170297, + "y": 216.77493507436435 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.47627213170296, + "y": 210.90093507436436 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.47627213170296, + "y": 204.64893507436435 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.61527213170297, + "y": 198.77493507436435 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.633272131703, + "y": 193.98593507436436 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.047272131703, + "y": 190.86093507436436 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.20327213170293, + "y": 189.77493507436435 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.359272131703, + "y": 190.86093507436436 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.773272131703, + "y": 193.98593507436436 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.791272131703, + "y": 198.77493507436435 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9302721317029, + "y": 204.64893507436435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 613 + }, + "bounds": { + "#": 623 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 626 + }, + "constraintImpulse": { + "#": 627 + }, + "density": 0.001, + "force": { + "#": 628 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 17, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 629 + }, + "positionImpulse": { + "#": 630 + }, + "positionPrev": { + "#": 631 + }, + "region": { + "#": 632 + }, + "render": { + "#": 633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9083955414223093, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 635 + }, + "vertices": { + "#": 636 + } + }, + [ + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 624 + }, + "min": { + "#": 625 + } + }, + { + "x": 356.34869030643796, + "y": 228.67477872230032 + }, + { + "x": 320.88027216738897, + "y": 189.76641891948506 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.60727216738894, + "y": 207.76641891948506 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.5928540283399, + "y": 204.85201268081394 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,3,4", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 634 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.014418139049041656, + "y": 2.89772467360973 + }, + [ + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.3342721673889, + "y": 210.89241891948507 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.19527216738896, + "y": 216.76641891948506 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.17727216738894, + "y": 221.55541891948505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.76327216738895, + "y": 224.68041891948505 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.60727216738894, + "y": 225.76641891948506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.45127216738894, + "y": 224.68041891948505 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.03727216738895, + "y": 221.55541891948505 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.0192721673889, + "y": 216.76641891948506 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.88027216738897, + "y": 210.89241891948507 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.88027216738897, + "y": 204.64041891948506 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.0192721673889, + "y": 198.76641891948506 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.03727216738895, + "y": 193.97741891948507 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.45127216738894, + "y": 190.85241891948507 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.60727216738894, + "y": 189.76641891948506 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.76327216738895, + "y": 190.85241891948507 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.17727216738894, + "y": 193.97741891948507 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.19527216738896, + "y": 198.76641891948506 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.3342721673889, + "y": 204.64041891948506 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 656 + }, + "bounds": { + "#": 666 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 669 + }, + "constraintImpulse": { + "#": 670 + }, + "density": 0.001, + "force": { + "#": 671 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 18, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 672 + }, + "positionImpulse": { + "#": 673 + }, + "positionPrev": { + "#": 674 + }, + "region": { + "#": 675 + }, + "render": { + "#": 676 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9116576057903716, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 678 + }, + "vertices": { + "#": 679 + } + }, + [ + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 667 + }, + "min": { + "#": 668 + } + }, + { + "x": 391.84356298319193, + "y": 228.67862599878265 + }, + { + "x": 356.3723402933344, + "y": 189.76701933023847 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.11656298319195, + "y": 207.76701933023847 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.1337859927916, + "y": 204.8659147082914 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,3,4", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 677 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.017223009599661054, + "y": 2.91778618700846 + }, + [ + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.84356298319193, + "y": 210.89301933023847 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.7045629831919, + "y": 216.76701933023847 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6865629831919, + "y": 221.55601933023846 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.2725629831919, + "y": 224.68101933023846 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.11656298319195, + "y": 225.76701933023847 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9605629831919, + "y": 224.68101933023846 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.5465629831919, + "y": 221.55601933023846 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5285629831919, + "y": 216.76701933023847 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.389562983192, + "y": 210.89301933023847 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.389562983192, + "y": 204.64101933023846 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5285629831919, + "y": 198.76701933023847 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.5465629831919, + "y": 193.97801933023848 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9605629831919, + "y": 190.85301933023848 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.11656298319195, + "y": 189.76701933023847 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.2725629831919, + "y": 190.85301933023848 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6865629831919, + "y": 193.97801933023848 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.7045629831919, + "y": 198.76701933023847 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.84356298319193, + "y": 204.64101933023846 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 699 + }, + "bounds": { + "#": 709 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 712 + }, + "constraintImpulse": { + "#": 713 + }, + "density": 0.001, + "force": { + "#": 714 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 19, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 715 + }, + "positionImpulse": { + "#": 716 + }, + "positionPrev": { + "#": 717 + }, + "region": { + "#": 718 + }, + "render": { + "#": 719 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9221903754645773, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 721 + }, + "vertices": { + "#": 722 + } + }, + [ + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 710 + }, + "min": { + "#": 711 + } + }, + { + "x": 427.257285254239, + "y": 228.66871981812696 + }, + { + "x": 391.7935131438747, + "y": 189.7465457821878 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.52051314387467, + "y": 207.7465457821878 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.50977685240576, + "y": 204.82185965503473 + }, + { + "endCol": 8, + "endRow": 4, + "id": "8,8,3,4", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 720 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.010724798734372598, + "y": 2.9246881546237944 + }, + [ + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.24751314387464, + "y": 210.8725457821878 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.1085131438747, + "y": 216.7465457821878 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.09051314387466, + "y": 221.5355457821878 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.6765131438747, + "y": 224.6605457821878 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.52051314387467, + "y": 225.7465457821878 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.36451314387466, + "y": 224.6605457821878 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.9505131438747, + "y": 221.5355457821878 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.93251314387464, + "y": 216.7465457821878 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.7935131438747, + "y": 210.8725457821878 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.7935131438747, + "y": 204.6205457821878 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.93251314387464, + "y": 198.7465457821878 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.9505131438747, + "y": 193.95754578218782 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.36451314387466, + "y": 190.83254578218782 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.52051314387467, + "y": 189.7465457821878 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.6765131438747, + "y": 190.83254578218782 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.09051314387466, + "y": 193.95754578218782 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.1085131438747, + "y": 198.7465457821878 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.24751314387464, + "y": 204.6205457821878 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 742 + }, + "bounds": { + "#": 752 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 755 + }, + "constraintImpulse": { + "#": 756 + }, + "density": 0.001, + "force": { + "#": 757 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 20, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 758 + }, + "positionImpulse": { + "#": 759 + }, + "positionPrev": { + "#": 760 + }, + "region": { + "#": 761 + }, + "render": { + "#": 762 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8843924444727915, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 764 + }, + "vertices": { + "#": 765 + } + }, + [ + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 753 + }, + "min": { + "#": 754 + } + }, + { + "x": 285.4343204640976, + "y": 264.7161432932005 + }, + { + "x": 249.97095672502363, + "y": 225.83992341341528 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.7073204640977, + "y": 243.83992341341525 + }, + { + "x": 0.003589048497185945, + "y": 0.02695337996846093 + }, + { + "x": 267.736278436332, + "y": 240.96845454889925 + }, + { + "endCol": 5, + "endRow": 5, + "id": "5,5,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 763 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.012530080061367244, + "y": 2.8685707665790403 + }, + [ + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.4343204640976, + "y": 246.96592341341528 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.29532046409764, + "y": 252.83992341341528 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.2773204640976, + "y": 257.62892341341524 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.8633204640976, + "y": 260.7539234134153 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.7073204640976, + "y": 261.8399234134153 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.5513204640976, + "y": 260.7539234134153 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.1373204640976, + "y": 257.62892341341524 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.11932046409757, + "y": 252.83992341341528 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 249.98032046409756, + "y": 246.96592341341528 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 249.98032046409756, + "y": 240.71392341341527 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.11932046409757, + "y": 234.83992341341528 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.1373204640976, + "y": 230.0509234134153 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.5513204640976, + "y": 226.9259234134153 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.7073204640976, + "y": 225.83992341341528 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.8633204640976, + "y": 226.9259234134153 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.2773204640976, + "y": 230.0509234134153 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.29532046409764, + "y": 234.83992341341528 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.4343204640976, + "y": 240.71392341341527 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 785 + }, + "bounds": { + "#": 795 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 798 + }, + "constraintImpulse": { + "#": 799 + }, + "density": 0.001, + "force": { + "#": 800 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 21, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 801 + }, + "positionImpulse": { + "#": 802 + }, + "positionPrev": { + "#": 803 + }, + "region": { + "#": 804 + }, + "render": { + "#": 805 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8976465415521, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 807 + }, + "vertices": { + "#": 808 + } + }, + [ + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 796 + }, + "min": { + "#": 797 + } + }, + { + "x": 320.9105144709116, + "y": 264.7263417477857 + }, + { + "x": 285.4482723442234, + "y": 225.82870692829653 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.18351447091175, + "y": 243.82870692829653 + }, + { + "x": 0.004295898915409222, + "y": 0.02701009377549096 + }, + { + "x": 303.205994587333, + "y": 240.93232497637797 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 806 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.006052224248321636, + "y": 2.89928004985552 + }, + [ + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9105144709116, + "y": 246.95470692829656 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.77151447091165, + "y": 252.82870692829653 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.7535144709116, + "y": 257.61770692829646 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.33951447091164, + "y": 260.74270692829646 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.18351447091163, + "y": 261.82870692829647 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.0275144709116, + "y": 260.74270692829646 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.61351447091164, + "y": 257.61770692829646 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.5955144709116, + "y": 252.82870692829653 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.45651447091166, + "y": 246.95470692829656 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.45651447091166, + "y": 240.70270692829655 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5955144709116, + "y": 234.82870692829653 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.61351447091164, + "y": 230.03970692829654 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.0275144709116, + "y": 226.91470692829654 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.18351447091163, + "y": 225.82870692829653 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.33951447091164, + "y": 226.91470692829654 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.7535144709116, + "y": 230.03970692829654 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.77151447091165, + "y": 234.82870692829653 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9105144709116, + "y": 240.70270692829655 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 828 + }, + "bounds": { + "#": 838 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 841 + }, + "constraintImpulse": { + "#": 842 + }, + "density": 0.001, + "force": { + "#": 843 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 22, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 844 + }, + "positionImpulse": { + "#": 845 + }, + "positionPrev": { + "#": 846 + }, + "region": { + "#": 847 + }, + "render": { + "#": 848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.905453418988824, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 850 + }, + "vertices": { + "#": 851 + } + }, + [ + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 839 + }, + "min": { + "#": 840 + } + }, + { + "x": 356.3927784733354, + "y": 264.6872794137878 + }, + { + "x": 320.90689371917375, + "y": 225.7820009534046 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.6338937191737, + "y": 243.7820009534046 + }, + { + "x": -0.009939918379887433, + "y": 0.011294834035636542 + }, + { + "x": 338.61162240238724, + "y": 240.8864999812846 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 849 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03188475416169467, + "y": 2.905278460383073 + }, + [ + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.3608937191737, + "y": 246.9080009534046 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.22189371917375, + "y": 252.7820009534046 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.2038937191737, + "y": 257.5710009534046 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.78989371917373, + "y": 260.69600095340473 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.6338937191737, + "y": 261.7820009534047 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.4778937191737, + "y": 260.69600095340473 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.06389371917373, + "y": 257.5710009534046 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.0458937191737, + "y": 252.7820009534046 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.90689371917375, + "y": 246.9080009534046 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.90689371917375, + "y": 240.6560009534046 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.0458937191737, + "y": 234.7820009534046 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.06389371917373, + "y": 229.99300095340462 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.4778937191737, + "y": 226.86800095340462 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.6338937191737, + "y": 225.7820009534046 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.78989371917373, + "y": 226.86800095340462 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.2038937191737, + "y": 229.99300095340462 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.22189371917375, + "y": 234.7820009534046 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.3608937191737, + "y": 240.6560009534046 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 871 + }, + "bounds": { + "#": 881 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 884 + }, + "constraintImpulse": { + "#": 885 + }, + "density": 0.001, + "force": { + "#": 886 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 23, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 887 + }, + "positionImpulse": { + "#": 888 + }, + "positionPrev": { + "#": 889 + }, + "region": { + "#": 890 + }, + "render": { + "#": 891 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8822617158390025, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 893 + }, + "vertices": { + "#": 894 + } + }, + [ + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 882 + }, + "min": { + "#": 883 + } + }, + { + "x": 391.85195312387805, + "y": 264.71653460242806 + }, + { + "x": 356.39773947503977, + "y": 225.82607133870943 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.1249531238781, + "y": 243.82607133870943 + }, + { + "x": 0.005502879858165539, + "y": 0.03053121436742719 + }, + { + "x": 374.105993783359, + "y": 240.93896761534768 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 892 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0025314483461329473, + "y": 2.8842056254247836 + }, + [ + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.85195312387805, + "y": 246.95207133870943 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.71295312387815, + "y": 252.82607133870943 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.6949531238781, + "y": 257.6150713387094 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.28095312387813, + "y": 260.7400713387094 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.1249531238781, + "y": 261.8260713387094 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.9689531238781, + "y": 260.7400713387094 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.55495312387814, + "y": 257.6150713387094 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.5369531238781, + "y": 252.82607133870943 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.3979531238781, + "y": 246.95207133870943 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.3979531238781, + "y": 240.70007133870942 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.5369531238781, + "y": 234.82607133870943 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.55495312387814, + "y": 230.03707133870944 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.9689531238781, + "y": 226.91207133870944 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.1249531238781, + "y": 225.82607133870943 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.28095312387813, + "y": 226.91207133870944 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.6949531238781, + "y": 230.03707133870944 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.71295312387815, + "y": 234.82607133870943 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.85195312387805, + "y": 240.70007133870942 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 914 + }, + "bounds": { + "#": 924 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 927 + }, + "constraintImpulse": { + "#": 928 + }, + "density": 0.001, + "force": { + "#": 929 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 24, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 930 + }, + "positionImpulse": { + "#": 931 + }, + "positionPrev": { + "#": 932 + }, + "region": { + "#": 933 + }, + "render": { + "#": 934 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.894988772061477, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 936 + }, + "vertices": { + "#": 937 + } + }, + [ + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 925 + }, + "min": { + "#": 926 + } + }, + { + "x": 427.2830388366613, + "y": 264.6687283749501 + }, + { + "x": 391.802136071166, + "y": 225.7737975560118 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.5291360711659, + "y": 243.7737975560118 + }, + { + "x": -0.016115170681860212, + "y": 0.008330682844314664 + }, + { + "x": 409.5022431205944, + "y": 240.8729395409204 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 935 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.026892950571493657, + "y": 2.8841764500299973 + }, + [ + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.25613607116594, + "y": 246.8997975560118 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.117136071166, + "y": 252.7737975560118 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.09913607116596, + "y": 257.5627975560118 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.68513607116597, + "y": 260.68779755601173 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.52913607116596, + "y": 261.77379755601174 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.37313607116596, + "y": 260.68779755601173 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.959136071166, + "y": 257.5627975560118 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.94113607116594, + "y": 252.7737975560118 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.802136071166, + "y": 246.8997975560118 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.802136071166, + "y": 240.6477975560118 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.94113607116594, + "y": 234.7737975560118 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.959136071166, + "y": 229.9847975560118 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.37313607116596, + "y": 226.8597975560118 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.52913607116596, + "y": 225.7737975560118 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.68513607116597, + "y": 226.8597975560118 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.09913607116596, + "y": 229.9847975560118 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.117136071166, + "y": 234.7737975560118 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.25613607116594, + "y": 240.6477975560118 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 957 + }, + "bounds": { + "#": 967 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 970 + }, + "constraintImpulse": { + "#": 971 + }, + "density": 0.001, + "force": { + "#": 972 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 25, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 973 + }, + "positionImpulse": { + "#": 974 + }, + "positionPrev": { + "#": 975 + }, + "region": { + "#": 976 + }, + "render": { + "#": 977 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8974280733100395, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 979 + }, + "vertices": { + "#": 980 + } + }, + [ + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 968 + }, + "min": { + "#": 969 + } + }, + { + "x": 285.49990724917916, + "y": 300.6755420666769 + }, + { + "x": 250.02336175382905, + "y": 261.77814872711883 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.77290724917924, + "y": 279.7781487271188 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.7768904263261, + "y": 276.84716837534165 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 978 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.003983177146835715, + "y": 2.914298786715733 + }, + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 285.49990724917916, + "y": 282.90414872711875 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 283.3609072491792, + "y": 288.7781487271188 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 279.3429072491792, + "y": 293.56714872711876 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 273.9289072491792, + "y": 296.69214872711876 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 267.7729072491792, + "y": 297.7781487271188 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 261.6169072491792, + "y": 296.69214872711876 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.2029072491792, + "y": 293.56714872711876 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.18490724917925, + "y": 288.7781487271188 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250.04590724917924, + "y": 282.90414872711875 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 250.04590724917924, + "y": 276.6521487271188 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 252.18490724917925, + "y": 270.7781487271189 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 256.2029072491792, + "y": 265.98914872711885 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 261.6169072491792, + "y": 262.86414872711885 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 267.7729072491792, + "y": 261.77814872711883 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 273.9289072491792, + "y": 262.86414872711885 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.3429072491792, + "y": 265.98914872711885 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 283.3609072491792, + "y": 270.7781487271189 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 285.49990724917916, + "y": 276.6521487271188 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 1000 + }, + "bounds": { + "#": 1010 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 1013 + }, + "constraintImpulse": { + "#": 1014 + }, + "density": 0.001, + "force": { + "#": 1015 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 26, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 1016 + }, + "positionImpulse": { + "#": 1017 + }, + "positionPrev": { + "#": 1018 + }, + "region": { + "#": 1019 + }, + "render": { + "#": 1020 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.935881707643459, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1022 + }, + "vertices": { + "#": 1023 + } + }, + [ + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1011 + }, + "min": { + "#": 1012 + } + }, + { + "x": 320.9118577764157, + "y": 300.71378165090084 + }, + { + "x": 285.452912673946, + "y": 261.77792999005345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1848577764157, + "y": 279.7779299900532 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 303.1888409535626, + "y": 276.8751732970569 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1021 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.003983177146892558, + "y": 2.912640326574717 + }, + [ + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 320.9118577764157, + "y": 282.90392999005337 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 318.7728577764157, + "y": 288.7779299900534 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 314.7548577764157, + "y": 293.5669299900534 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 309.3408577764157, + "y": 296.6919299900534 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 303.1848577764157, + "y": 297.7779299900534 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 297.0288577764157, + "y": 296.6919299900534 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 291.6148577764157, + "y": 293.5669299900534 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 287.5968577764157, + "y": 288.7779299900534 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 285.4578577764157, + "y": 282.90392999005337 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 285.4578577764157, + "y": 276.6519299900534 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.5968577764157, + "y": 270.7779299900535 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.6148577764157, + "y": 265.98892999005346 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.0288577764157, + "y": 262.86392999005346 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.1848577764157, + "y": 261.77792999005345 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 309.3408577764157, + "y": 262.86392999005346 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 314.7548577764157, + "y": 265.98892999005346 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.7728577764157, + "y": 270.7779299900535 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 320.9118577764157, + "y": 276.6519299900534 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 1043 + }, + "bounds": { + "#": 1053 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 1056 + }, + "constraintImpulse": { + "#": 1057 + }, + "density": 0.001, + "force": { + "#": 1058 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 27, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 1059 + }, + "positionImpulse": { + "#": 1060 + }, + "positionPrev": { + "#": 1061 + }, + "region": { + "#": 1062 + }, + "render": { + "#": 1063 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.918538243526236, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1065 + }, + "vertices": { + "#": 1066 + } + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1054 + }, + "min": { + "#": 1055 + } + }, + { + "x": 356.3294888274248, + "y": 300.71009811744983 + }, + { + "x": 320.8713086261014, + "y": 261.7915421245639 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.60248882742485, + "y": 279.79154212456393 + }, + { + "x": -0.004464363325457572, + "y": 0 + }, + { + "x": 338.5985310526924, + "y": 276.8717676491334 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1064 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.003957774732441521, + "y": 2.909890841852132 + }, + [ + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 356.3294888274248, + "y": 282.9175421245638 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 354.1904888274249, + "y": 288.7915421245638 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350.17248882742484, + "y": 293.5805421245638 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 344.75848882742486, + "y": 296.7055421245638 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 338.60248882742485, + "y": 297.7915421245638 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 332.44648882742484, + "y": 296.7055421245638 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 327.03248882742486, + "y": 293.5805421245638 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 323.0144888274248, + "y": 288.7915421245638 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 320.8754888274249, + "y": 282.9175421245638 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.8754888274249, + "y": 276.66554212456384 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.0144888274248, + "y": 270.7915421245639 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 327.03248882742486, + "y": 266.0025421245639 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 332.44648882742484, + "y": 262.8775421245639 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 338.60248882742485, + "y": 261.7915421245639 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 344.75848882742486, + "y": 262.8775421245639 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 350.17248882742484, + "y": 266.0025421245639 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 354.1904888274249, + "y": 270.7915421245639 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 356.3294888274248, + "y": 276.66554212456384 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 1086 + }, + "bounds": { + "#": 1096 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 1099 + }, + "constraintImpulse": { + "#": 1100 + }, + "density": 0.001, + "force": { + "#": 1101 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 28, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 1102 + }, + "positionImpulse": { + "#": 1103 + }, + "positionPrev": { + "#": 1104 + }, + "region": { + "#": 1105 + }, + "render": { + "#": 1106 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907811588951301, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1108 + }, + "vertices": { + "#": 1109 + } + }, + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1097 + }, + "min": { + "#": 1098 + } + }, + { + "x": 391.7598744878906, + "y": 300.67571808561246 + }, + { + "x": 356.28936869103677, + "y": 261.75790502003576 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.01636869103686, + "y": 279.7579050200358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 374.009398610222, + "y": 276.8376461867289 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1107 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00697008081488093, + "y": 2.903577268245556 + }, + [ + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 391.7433686910367, + "y": 282.8839050200357 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.60436869103677, + "y": 288.7579050200357 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 385.58636869103674, + "y": 293.5469050200357 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380.17236869103675, + "y": 296.6719050200357 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 374.01636869103675, + "y": 297.7579050200357 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 367.86036869103674, + "y": 296.6719050200357 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 362.44636869103675, + "y": 293.5469050200357 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 358.4283686910367, + "y": 288.7579050200357 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 356.28936869103677, + "y": 282.8839050200357 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 356.28936869103677, + "y": 276.63190502003573 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 358.4283686910367, + "y": 270.75790502003576 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 362.44636869103675, + "y": 265.9689050200358 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.86036869103674, + "y": 262.8439050200358 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 374.01636869103675, + "y": 261.75790502003576 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.17236869103675, + "y": 262.8439050200358 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 385.58636869103674, + "y": 265.9689050200358 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 389.60436869103677, + "y": 270.75790502003576 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.7433686910367, + "y": 276.63190502003573 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 997.3206839999999, + "axes": { + "#": 1129 + }, + "bounds": { + "#": 1139 + }, + "circleRadius": 18, + "collisionFilter": { + "#": 1142 + }, + "constraintImpulse": { + "#": 1143 + }, + "density": 0.001, + "force": { + "#": 1144 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 29, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.002686514019998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.997320684, + "motion": 0, + "parent": null, + "position": { + "#": 1145 + }, + "positionImpulse": { + "#": 1146 + }, + "positionPrev": { + "#": 1147 + }, + "region": { + "#": 1148 + }, + "render": { + "#": 1149 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.923291511392375, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1151 + }, + "vertices": { + "#": 1152 + } + }, + [ + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + } + ], + { + "x": -0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": -0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": -0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": -0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.1737305778129289, + "y": -0.9847932200887585 + }, + { + "x": 0.4999070915023843, + "y": -0.8660790378860505 + }, + { + "x": 0.7660797406236453, + "y": -0.6427455414127805 + }, + { + "x": 0.9396392002620254, + "y": -0.34216687935997164 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1140 + }, + "min": { + "#": 1141 + } + }, + { + "x": 427.2378186538534, + "y": 297.7909452074889 + }, + { + "x": 391.7838186538535, + "y": 261.790945207489 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.51081865385345, + "y": 279.7909452074888 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 409.51693847087955, + "y": 276.87686025954423 + }, + { + "endCol": 8, + "endRow": 6, + "id": "8,8,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1150 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.006129631949988834, + "y": 2.9232787876503608 + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 427.2378186538534, + "y": 282.9169452074889 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425.09881865385347, + "y": 288.7909452074889 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 421.08081865385344, + "y": 293.5799452074889 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 415.66681865385345, + "y": 296.7049452074889 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 409.51081865385345, + "y": 297.7909452074889 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.35481865385344, + "y": 296.7049452074889 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 397.94081865385346, + "y": 293.5799452074889 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 393.9228186538534, + "y": 288.7909452074889 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.7838186538535, + "y": 282.9169452074889 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 391.7838186538535, + "y": 276.6649452074889 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 393.9228186538534, + "y": 270.79094520748896 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 397.94081865385346, + "y": 266.00194520748903 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 403.35481865385344, + "y": 262.87694520748903 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 409.51081865385345, + "y": 261.790945207489 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 415.66681865385345, + "y": 262.87694520748903 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 421.08081865385344, + "y": 266.00194520748903 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 425.09881865385347, + "y": 270.79094520748896 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 427.2378186538534, + "y": 276.6649452074889 + }, + [], + [ + { + "#": 1173 + }, + { + "#": 1177 + }, + { + "#": 1181 + }, + { + "#": 1185 + }, + { + "#": 1189 + }, + { + "#": 1193 + }, + { + "#": 1197 + }, + { + "#": 1201 + }, + { + "#": 1205 + }, + { + "#": 1209 + }, + { + "#": 1213 + }, + { + "#": 1217 + }, + { + "#": 1221 + }, + { + "#": 1225 + }, + { + "#": 1229 + }, + { + "#": 1233 + }, + { + "#": 1237 + }, + { + "#": 1241 + }, + { + "#": 1245 + }, + { + "#": 1249 + }, + { + "#": 1253 + }, + { + "#": 1257 + }, + { + "#": 1261 + }, + { + "#": 1265 + }, + { + "#": 1269 + }, + { + "#": 1273 + }, + { + "#": 1277 + }, + { + "#": 1281 + }, + { + "#": 1285 + }, + { + "#": 1289 + }, + { + "#": 1293 + }, + { + "#": 1297 + }, + { + "#": 1301 + }, + { + "#": 1305 + }, + { + "#": 1309 + }, + { + "#": 1313 + }, + { + "#": 1317 + }, + { + "#": 1321 + }, + { + "#": 1325 + }, + { + "#": 1329 + }, + { + "#": 1333 + }, + { + "#": 1337 + }, + { + "#": 1341 + }, + { + "#": 1345 + }, + { + "#": 1349 + }, + { + "#": 1353 + }, + { + "#": 1357 + }, + { + "#": 1361 + }, + { + "#": 1365 + }, + { + "#": 1369 + }, + { + "#": 1373 + }, + { + "#": 1377 + }, + { + "#": 1381 + }, + { + "#": 1385 + }, + { + "#": 1389 + }, + { + "#": 1393 + }, + { + "#": 1397 + }, + { + "#": 1401 + }, + { + "#": 1405 + }, + { + "#": 1409 + }, + { + "#": 1413 + }, + { + "#": 1417 + }, + { + "#": 1421 + }, + { + "#": 1425 + }, + { + "#": 1429 + }, + { + "#": 1433 + }, + { + "#": 1437 + }, + { + "#": 1441 + }, + { + "#": 1445 + }, + { + "#": 1449 + }, + { + "#": 1453 + }, + { + "#": 1457 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 30, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1174 + }, + "pointB": { + "#": 1175 + }, + "render": { + "#": 1176 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 31, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1178 + }, + "pointB": { + "#": 1179 + }, + "render": { + "#": 1180 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 32, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1182 + }, + "pointB": { + "#": 1183 + }, + "render": { + "#": 1184 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 33, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1186 + }, + "pointB": { + "#": 1187 + }, + "render": { + "#": 1188 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 34, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1190 + }, + "pointB": { + "#": 1191 + }, + "render": { + "#": 1192 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 35, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1194 + }, + "pointB": { + "#": 1195 + }, + "render": { + "#": 1196 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 36, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1198 + }, + "pointB": { + "#": 1199 + }, + "render": { + "#": 1200 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 37, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1202 + }, + "pointB": { + "#": 1203 + }, + "render": { + "#": 1204 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 38, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1206 + }, + "pointB": { + "#": 1207 + }, + "render": { + "#": 1208 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 39, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1210 + }, + "pointB": { + "#": 1211 + }, + "render": { + "#": 1212 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 40, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1214 + }, + "pointB": { + "#": 1215 + }, + "render": { + "#": 1216 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 41, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1218 + }, + "pointB": { + "#": 1219 + }, + "render": { + "#": 1220 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 42, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1222 + }, + "pointB": { + "#": 1223 + }, + "render": { + "#": 1224 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 43, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1226 + }, + "pointB": { + "#": 1227 + }, + "render": { + "#": 1228 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 44, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1230 + }, + "pointB": { + "#": 1231 + }, + "render": { + "#": 1232 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 45, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1234 + }, + "pointB": { + "#": 1235 + }, + "render": { + "#": 1236 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 46, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1238 + }, + "pointB": { + "#": 1239 + }, + "render": { + "#": 1240 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 47, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1242 + }, + "pointB": { + "#": 1243 + }, + "render": { + "#": 1244 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 48, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1246 + }, + "pointB": { + "#": 1247 + }, + "render": { + "#": 1248 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 49, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1250 + }, + "pointB": { + "#": 1251 + }, + "render": { + "#": 1252 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 50, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1254 + }, + "pointB": { + "#": 1255 + }, + "render": { + "#": 1256 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 51, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1258 + }, + "pointB": { + "#": 1259 + }, + "render": { + "#": 1260 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 52, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1262 + }, + "pointB": { + "#": 1263 + }, + "render": { + "#": 1264 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 53, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1266 + }, + "pointB": { + "#": 1267 + }, + "render": { + "#": 1268 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 54, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1270 + }, + "pointB": { + "#": 1271 + }, + "render": { + "#": 1272 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 55, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1274 + }, + "pointB": { + "#": 1275 + }, + "render": { + "#": 1276 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 56, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1278 + }, + "pointB": { + "#": 1279 + }, + "render": { + "#": 1280 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 57, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1282 + }, + "pointB": { + "#": 1283 + }, + "render": { + "#": 1284 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 58, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1286 + }, + "pointB": { + "#": 1287 + }, + "render": { + "#": 1288 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 59, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1290 + }, + "pointB": { + "#": 1291 + }, + "render": { + "#": 1292 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 60, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1294 + }, + "pointB": { + "#": 1295 + }, + "render": { + "#": 1296 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 61, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1298 + }, + "pointB": { + "#": 1299 + }, + "render": { + "#": 1300 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 62, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1302 + }, + "pointB": { + "#": 1303 + }, + "render": { + "#": 1304 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 63, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1306 + }, + "pointB": { + "#": 1307 + }, + "render": { + "#": 1308 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 64, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1310 + }, + "pointB": { + "#": 1311 + }, + "render": { + "#": 1312 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 65, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1314 + }, + "pointB": { + "#": 1315 + }, + "render": { + "#": 1316 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 66, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1318 + }, + "pointB": { + "#": 1319 + }, + "render": { + "#": 1320 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 67, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1322 + }, + "pointB": { + "#": 1323 + }, + "render": { + "#": 1324 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 68, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1326 + }, + "pointB": { + "#": 1327 + }, + "render": { + "#": 1328 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 69, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1330 + }, + "pointB": { + "#": 1331 + }, + "render": { + "#": 1332 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 70, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1334 + }, + "pointB": { + "#": 1335 + }, + "render": { + "#": 1336 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 71, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1338 + }, + "pointB": { + "#": 1339 + }, + "render": { + "#": 1340 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 72, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1342 + }, + "pointB": { + "#": 1343 + }, + "render": { + "#": 1344 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 73, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1346 + }, + "pointB": { + "#": 1347 + }, + "render": { + "#": 1348 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 74, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1350 + }, + "pointB": { + "#": 1351 + }, + "render": { + "#": 1352 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 75, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1354 + }, + "pointB": { + "#": 1355 + }, + "render": { + "#": 1356 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 76, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1358 + }, + "pointB": { + "#": 1359 + }, + "render": { + "#": 1360 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 77, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1362 + }, + "pointB": { + "#": 1363 + }, + "render": { + "#": 1364 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 78, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1366 + }, + "pointB": { + "#": 1367 + }, + "render": { + "#": 1368 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 79, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1370 + }, + "pointB": { + "#": 1371 + }, + "render": { + "#": 1372 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 80, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1374 + }, + "pointB": { + "#": 1375 + }, + "render": { + "#": 1376 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 81, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1378 + }, + "pointB": { + "#": 1379 + }, + "render": { + "#": 1380 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 82, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1382 + }, + "pointB": { + "#": 1383 + }, + "render": { + "#": 1384 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 83, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1386 + }, + "pointB": { + "#": 1387 + }, + "render": { + "#": 1388 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 84, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1390 + }, + "pointB": { + "#": 1391 + }, + "render": { + "#": 1392 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 85, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1394 + }, + "pointB": { + "#": 1395 + }, + "render": { + "#": 1396 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 86, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1398 + }, + "pointB": { + "#": 1399 + }, + "render": { + "#": 1400 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 87, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1402 + }, + "pointB": { + "#": 1403 + }, + "render": { + "#": 1404 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 88, + "label": "Constraint", + "length": 35.45399999999995, + "pointA": { + "#": 1406 + }, + "pointB": { + "#": 1407 + }, + "render": { + "#": 1408 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 89, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1410 + }, + "pointB": { + "#": 1411 + }, + "render": { + "#": 1412 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 90, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1414 + }, + "pointB": { + "#": 1415 + }, + "render": { + "#": 1416 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 91, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1418 + }, + "pointB": { + "#": 1419 + }, + "render": { + "#": 1420 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 92, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1422 + }, + "pointB": { + "#": 1423 + }, + "render": { + "#": 1424 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 93, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1426 + }, + "pointB": { + "#": 1427 + }, + "render": { + "#": 1428 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 94, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1430 + }, + "pointB": { + "#": 1431 + }, + "render": { + "#": 1432 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 95, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1434 + }, + "pointB": { + "#": 1435 + }, + "render": { + "#": 1436 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 96, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1438 + }, + "pointB": { + "#": 1439 + }, + "render": { + "#": 1440 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 97, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1442 + }, + "pointB": { + "#": 1443 + }, + "render": { + "#": 1444 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 98, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1446 + }, + "pointB": { + "#": 1447 + }, + "render": { + "#": 1448 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 99, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1450 + }, + "pointB": { + "#": 1451 + }, + "render": { + "#": 1452 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 100, + "label": "Constraint", + "length": 36, + "pointA": { + "#": 1454 + }, + "pointB": { + "#": 1455 + }, + "render": { + "#": 1456 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 101, + "label": "Constraint", + "length": 50.527082995162075, + "pointA": { + "#": 1458 + }, + "pointB": { + "#": 1459 + }, + "render": { + "#": 1460 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 1462 + }, + "composites": { + "#": 2423 + }, + "constraints": { + "#": 2424 + }, + "id": 102, + "isModified": false, + "label": "Soft Body", + "parent": null, + "type": "composite" + }, + [ + { + "#": 1463 + }, + { + "#": 1503 + }, + { + "#": 1543 + }, + { + "#": 1583 + }, + { + "#": 1623 + }, + { + "#": 1663 + }, + { + "#": 1703 + }, + { + "#": 1743 + }, + { + "#": 1783 + }, + { + "#": 1823 + }, + { + "#": 1863 + }, + { + "#": 1903 + }, + { + "#": 1943 + }, + { + "#": 1983 + }, + { + "#": 2023 + }, + { + "#": 2063 + }, + { + "#": 2103 + }, + { + "#": 2143 + }, + { + "#": 2183 + }, + { + "#": 2223 + }, + { + "#": 2263 + }, + { + "#": 2303 + }, + { + "#": 2343 + }, + { + "#": 2383 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1464 + }, + "bounds": { + "#": 1473 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1476 + }, + "constraintImpulse": { + "#": 1477 + }, + "density": 0.001, + "force": { + "#": 1478 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 103, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1479 + }, + "positionImpulse": { + "#": 1480 + }, + "positionPrev": { + "#": 1481 + }, + "region": { + "#": 1482 + }, + "render": { + "#": 1483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1485 + }, + "vertices": { + "#": 1486 + } + }, + [ + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1474 + }, + "min": { + "#": 1475 + } + }, + { + "x": 279.424, + "y": 347.15975476702494 + }, + { + "x": 250, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 332.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 329.5404840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1484 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 329.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 329.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1504 + }, + "bounds": { + "#": 1513 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1516 + }, + "constraintImpulse": { + "#": 1517 + }, + "density": 0.001, + "force": { + "#": 1518 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 104, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1519 + }, + "positionImpulse": { + "#": 1520 + }, + "positionPrev": { + "#": 1521 + }, + "region": { + "#": 1522 + }, + "render": { + "#": 1523 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1525 + }, + "vertices": { + "#": 1526 + } + }, + [ + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1514 + }, + "min": { + "#": 1515 + } + }, + { + "x": 308.84799999999996, + "y": 347.15975476702494 + }, + { + "x": 279.424, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 332.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 329.5404840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1524 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 329.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 329.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1544 + }, + "bounds": { + "#": 1553 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1556 + }, + "constraintImpulse": { + "#": 1557 + }, + "density": 0.001, + "force": { + "#": 1558 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 105, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1559 + }, + "positionImpulse": { + "#": 1560 + }, + "positionPrev": { + "#": 1561 + }, + "region": { + "#": 1562 + }, + "render": { + "#": 1563 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1565 + }, + "vertices": { + "#": 1566 + } + }, + [ + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1554 + }, + "min": { + "#": 1555 + } + }, + { + "x": 338.27199999999993, + "y": 347.15975476702494 + }, + { + "x": 308.84799999999996, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 332.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 329.5404840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1564 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 329.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 329.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1584 + }, + "bounds": { + "#": 1593 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1596 + }, + "constraintImpulse": { + "#": 1597 + }, + "density": 0.001, + "force": { + "#": 1598 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 106, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1599 + }, + "positionImpulse": { + "#": 1600 + }, + "positionPrev": { + "#": 1601 + }, + "region": { + "#": 1602 + }, + "render": { + "#": 1603 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1605 + }, + "vertices": { + "#": 1606 + } + }, + [ + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1594 + }, + "min": { + "#": 1595 + } + }, + { + "x": 367.6959999999999, + "y": 347.15975476702494 + }, + { + "x": 338.27199999999993, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 332.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 329.5404840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1604 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 329.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 329.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1624 + }, + "bounds": { + "#": 1633 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1636 + }, + "constraintImpulse": { + "#": 1637 + }, + "density": 0.001, + "force": { + "#": 1638 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 107, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1639 + }, + "positionImpulse": { + "#": 1640 + }, + "positionPrev": { + "#": 1641 + }, + "region": { + "#": 1642 + }, + "render": { + "#": 1643 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1645 + }, + "vertices": { + "#": 1646 + } + }, + [ + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1634 + }, + "min": { + "#": 1635 + } + }, + { + "x": 397.1199999999999, + "y": 347.15975476702494 + }, + { + "x": 367.6959999999999, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 332.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 329.5404840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1644 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 329.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 329.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1664 + }, + "bounds": { + "#": 1673 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1676 + }, + "constraintImpulse": { + "#": 1677 + }, + "density": 0.001, + "force": { + "#": 1678 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 108, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1679 + }, + "positionImpulse": { + "#": 1680 + }, + "positionPrev": { + "#": 1681 + }, + "region": { + "#": 1682 + }, + "render": { + "#": 1683 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1685 + }, + "vertices": { + "#": 1686 + } + }, + [ + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1674 + }, + "min": { + "#": 1675 + } + }, + { + "x": 426.54399999999987, + "y": 347.15975476702494 + }, + { + "x": 397.1199999999999, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 332.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 329.5404840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "8,8,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1684 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 426.54399999999987, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 424.30399999999986, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.1659999999999, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 414.75799999999987, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 408.9059999999999, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.4979999999999, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 399.3599999999999, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 397.1199999999999, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 397.1199999999999, + "y": 329.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 399.3599999999999, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 403.4979999999999, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 408.9059999999999, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 414.75799999999987, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 420.1659999999999, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 424.30399999999986, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 426.54399999999987, + "y": 329.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1704 + }, + "bounds": { + "#": 1713 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1716 + }, + "constraintImpulse": { + "#": 1717 + }, + "density": 0.001, + "force": { + "#": 1718 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 109, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1719 + }, + "positionImpulse": { + "#": 1720 + }, + "positionPrev": { + "#": 1721 + }, + "region": { + "#": 1722 + }, + "render": { + "#": 1723 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1725 + }, + "vertices": { + "#": 1726 + } + }, + [ + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1714 + }, + "min": { + "#": 1715 + } + }, + { + "x": 455.96799999999985, + "y": 347.15975476702494 + }, + { + "x": 426.54399999999987, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 332.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 329.5404840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1724 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 455.96799999999985, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.72799999999984, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.58999999999986, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 444.18199999999985, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 438.32999999999987, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 432.92199999999985, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 428.7839999999999, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 426.54399999999987, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 426.54399999999987, + "y": 329.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 428.7839999999999, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 432.92199999999985, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 438.32999999999987, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.18199999999985, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.58999999999986, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 453.72799999999984, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.96799999999985, + "y": 329.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1744 + }, + "bounds": { + "#": 1753 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1756 + }, + "constraintImpulse": { + "#": 1757 + }, + "density": 0.001, + "force": { + "#": 1758 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 110, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1759 + }, + "positionImpulse": { + "#": 1760 + }, + "positionPrev": { + "#": 1761 + }, + "region": { + "#": 1762 + }, + "render": { + "#": 1763 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1765 + }, + "vertices": { + "#": 1766 + } + }, + [ + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1754 + }, + "min": { + "#": 1755 + } + }, + { + "x": 485.3919999999998, + "y": 347.15975476702494 + }, + { + "x": 455.96799999999985, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 332.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 329.5404840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1764 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 485.3919999999998, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.1519999999998, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.01399999999984, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 473.6059999999998, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 467.75399999999985, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.34599999999983, + "y": 344.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 458.20799999999986, + "y": 340.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 455.96799999999985, + "y": 335.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.96799999999985, + "y": 329.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.20799999999986, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 462.34599999999983, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 467.75399999999985, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 473.6059999999998, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 479.01399999999984, + "y": 319.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 483.1519999999998, + "y": 324.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 485.3919999999998, + "y": 329.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1784 + }, + "bounds": { + "#": 1793 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1796 + }, + "constraintImpulse": { + "#": 1797 + }, + "density": 0.001, + "force": { + "#": 1798 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 111, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1799 + }, + "positionImpulse": { + "#": 1800 + }, + "positionPrev": { + "#": 1801 + }, + "region": { + "#": 1802 + }, + "render": { + "#": 1803 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1805 + }, + "vertices": { + "#": 1806 + } + }, + [ + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1794 + }, + "min": { + "#": 1795 + } + }, + { + "x": 279.424, + "y": 376.5837547670249 + }, + { + "x": 250, + "y": 347.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 361.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 358.96448405198936 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1804 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 358.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 358.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1824 + }, + "bounds": { + "#": 1833 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1836 + }, + "constraintImpulse": { + "#": 1837 + }, + "density": 0.001, + "force": { + "#": 1838 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 112, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1839 + }, + "positionImpulse": { + "#": 1840 + }, + "positionPrev": { + "#": 1841 + }, + "region": { + "#": 1842 + }, + "render": { + "#": 1843 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1845 + }, + "vertices": { + "#": 1846 + } + }, + [ + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1834 + }, + "min": { + "#": 1835 + } + }, + { + "x": 308.84799999999996, + "y": 376.5837547670249 + }, + { + "x": 279.424, + "y": 347.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 361.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 358.96448405198936 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1844 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 358.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 358.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1864 + }, + "bounds": { + "#": 1873 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1876 + }, + "constraintImpulse": { + "#": 1877 + }, + "density": 0.001, + "force": { + "#": 1878 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 113, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1879 + }, + "positionImpulse": { + "#": 1880 + }, + "positionPrev": { + "#": 1881 + }, + "region": { + "#": 1882 + }, + "render": { + "#": 1883 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1885 + }, + "vertices": { + "#": 1886 + } + }, + [ + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1874 + }, + "min": { + "#": 1875 + } + }, + { + "x": 338.27199999999993, + "y": 376.5837547670249 + }, + { + "x": 308.84799999999996, + "y": 347.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 361.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 358.96448405198936 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,7,7", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1884 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 358.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 358.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1904 + }, + "bounds": { + "#": 1913 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1916 + }, + "constraintImpulse": { + "#": 1917 + }, + "density": 0.001, + "force": { + "#": 1918 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 114, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1919 + }, + "positionImpulse": { + "#": 1920 + }, + "positionPrev": { + "#": 1921 + }, + "region": { + "#": 1922 + }, + "render": { + "#": 1923 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1925 + }, + "vertices": { + "#": 1926 + } + }, + [ + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1914 + }, + "min": { + "#": 1915 + } + }, + { + "x": 367.6959999999999, + "y": 376.5837547670249 + }, + { + "x": 338.27199999999993, + "y": 347.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 361.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 358.96448405198936 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1924 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 358.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 358.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1944 + }, + "bounds": { + "#": 1953 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1956 + }, + "constraintImpulse": { + "#": 1957 + }, + "density": 0.001, + "force": { + "#": 1958 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 115, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1959 + }, + "positionImpulse": { + "#": 1960 + }, + "positionPrev": { + "#": 1961 + }, + "region": { + "#": 1962 + }, + "render": { + "#": 1963 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1965 + }, + "vertices": { + "#": 1966 + } + }, + [ + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1954 + }, + "min": { + "#": 1955 + } + }, + { + "x": 397.1199999999999, + "y": 376.5837547670249 + }, + { + "x": 367.6959999999999, + "y": 347.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 361.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 358.96448405198936 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1964 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 358.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 358.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 1984 + }, + "bounds": { + "#": 1993 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 1996 + }, + "constraintImpulse": { + "#": 1997 + }, + "density": 0.001, + "force": { + "#": 1998 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 116, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 1999 + }, + "positionImpulse": { + "#": 2000 + }, + "positionPrev": { + "#": 2001 + }, + "region": { + "#": 2002 + }, + "render": { + "#": 2003 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2005 + }, + "vertices": { + "#": 2006 + } + }, + [ + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1994 + }, + "min": { + "#": 1995 + } + }, + { + "x": 426.54399999999987, + "y": 376.5837547670249 + }, + { + "x": 397.1199999999999, + "y": 347.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 361.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 358.96448405198936 + }, + { + "endCol": 8, + "endRow": 7, + "id": "8,8,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2004 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 426.54399999999987, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 424.30399999999986, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.1659999999999, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 414.75799999999987, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 408.9059999999999, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.4979999999999, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 399.3599999999999, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 397.1199999999999, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 397.1199999999999, + "y": 358.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 399.3599999999999, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 403.4979999999999, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 408.9059999999999, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 414.75799999999987, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 420.1659999999999, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 424.30399999999986, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 426.54399999999987, + "y": 358.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2024 + }, + "bounds": { + "#": 2033 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2036 + }, + "constraintImpulse": { + "#": 2037 + }, + "density": 0.001, + "force": { + "#": 2038 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 117, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2039 + }, + "positionImpulse": { + "#": 2040 + }, + "positionPrev": { + "#": 2041 + }, + "region": { + "#": 2042 + }, + "render": { + "#": 2043 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2045 + }, + "vertices": { + "#": 2046 + } + }, + [ + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2034 + }, + "min": { + "#": 2035 + } + }, + { + "x": 455.96799999999985, + "y": 376.5837547670249 + }, + { + "x": 426.54399999999987, + "y": 347.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 361.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 358.96448405198936 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2044 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 455.96799999999985, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.72799999999984, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.58999999999986, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 444.18199999999985, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 438.32999999999987, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 432.92199999999985, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 428.7839999999999, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 426.54399999999987, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 426.54399999999987, + "y": 358.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 428.7839999999999, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 432.92199999999985, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 438.32999999999987, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.18199999999985, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.58999999999986, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 453.72799999999984, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.96799999999985, + "y": 358.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2064 + }, + "bounds": { + "#": 2073 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2076 + }, + "constraintImpulse": { + "#": 2077 + }, + "density": 0.001, + "force": { + "#": 2078 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 118, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2079 + }, + "positionImpulse": { + "#": 2080 + }, + "positionPrev": { + "#": 2081 + }, + "region": { + "#": 2082 + }, + "render": { + "#": 2083 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2085 + }, + "vertices": { + "#": 2086 + } + }, + [ + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2074 + }, + "min": { + "#": 2075 + } + }, + { + "x": 485.3919999999998, + "y": 376.5837547670249 + }, + { + "x": 455.96799999999985, + "y": 347.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 361.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 358.96448405198936 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2084 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 485.3919999999998, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.1519999999998, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.01399999999984, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 473.6059999999998, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 467.75399999999985, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.34599999999983, + "y": 374.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 458.20799999999986, + "y": 370.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 455.96799999999985, + "y": 364.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.96799999999985, + "y": 358.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.20799999999986, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 462.34599999999983, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 467.75399999999985, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 473.6059999999998, + "y": 347.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 479.01399999999984, + "y": 349.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 483.1519999999998, + "y": 353.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 485.3919999999998, + "y": 358.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2104 + }, + "bounds": { + "#": 2113 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2116 + }, + "constraintImpulse": { + "#": 2117 + }, + "density": 0.001, + "force": { + "#": 2118 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 119, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2119 + }, + "positionImpulse": { + "#": 2120 + }, + "positionPrev": { + "#": 2121 + }, + "region": { + "#": 2122 + }, + "render": { + "#": 2123 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2125 + }, + "vertices": { + "#": 2126 + } + }, + [ + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2114 + }, + "min": { + "#": 2115 + } + }, + { + "x": 279.424, + "y": 406.0077547670249 + }, + { + "x": 250, + "y": 376.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 391.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 388.38848405198934 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2124 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 388.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 388.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2144 + }, + "bounds": { + "#": 2153 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2156 + }, + "constraintImpulse": { + "#": 2157 + }, + "density": 0.001, + "force": { + "#": 2158 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 120, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2159 + }, + "positionImpulse": { + "#": 2160 + }, + "positionPrev": { + "#": 2161 + }, + "region": { + "#": 2162 + }, + "render": { + "#": 2163 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2165 + }, + "vertices": { + "#": 2166 + } + }, + [ + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2154 + }, + "min": { + "#": 2155 + } + }, + { + "x": 308.84799999999996, + "y": 406.0077547670249 + }, + { + "x": 279.424, + "y": 376.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 391.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 388.38848405198934 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2164 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 388.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 388.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2184 + }, + "bounds": { + "#": 2193 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2196 + }, + "constraintImpulse": { + "#": 2197 + }, + "density": 0.001, + "force": { + "#": 2198 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 121, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2199 + }, + "positionImpulse": { + "#": 2200 + }, + "positionPrev": { + "#": 2201 + }, + "region": { + "#": 2202 + }, + "render": { + "#": 2203 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2205 + }, + "vertices": { + "#": 2206 + } + }, + [ + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2194 + }, + "min": { + "#": 2195 + } + }, + { + "x": 338.27199999999993, + "y": 406.0077547670249 + }, + { + "x": 308.84799999999996, + "y": 376.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 391.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 388.38848405198934 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2204 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 388.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 388.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2224 + }, + "bounds": { + "#": 2233 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2236 + }, + "constraintImpulse": { + "#": 2237 + }, + "density": 0.001, + "force": { + "#": 2238 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 122, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2239 + }, + "positionImpulse": { + "#": 2240 + }, + "positionPrev": { + "#": 2241 + }, + "region": { + "#": 2242 + }, + "render": { + "#": 2243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2245 + }, + "vertices": { + "#": 2246 + } + }, + [ + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2234 + }, + "min": { + "#": 2235 + } + }, + { + "x": 367.6959999999999, + "y": 406.0077547670249 + }, + { + "x": 338.27199999999993, + "y": 376.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 391.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 388.38848405198934 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2244 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 388.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 388.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2264 + }, + "bounds": { + "#": 2273 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2276 + }, + "constraintImpulse": { + "#": 2277 + }, + "density": 0.001, + "force": { + "#": 2278 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 123, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2279 + }, + "positionImpulse": { + "#": 2280 + }, + "positionPrev": { + "#": 2281 + }, + "region": { + "#": 2282 + }, + "render": { + "#": 2283 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2285 + }, + "vertices": { + "#": 2286 + } + }, + [ + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2274 + }, + "min": { + "#": 2275 + } + }, + { + "x": 397.1199999999999, + "y": 406.0077547670249 + }, + { + "x": 367.6959999999999, + "y": 376.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 391.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.4079999999999, + "y": 388.38848405198934 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2284 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + }, + { + "#": 2302 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 397.1199999999999, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.8799999999999, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.7419999999999, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 385.3339999999999, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 379.4819999999999, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.0739999999999, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 369.9359999999999, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 367.6959999999999, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 367.6959999999999, + "y": 388.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 369.9359999999999, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 374.0739999999999, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 379.4819999999999, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 385.3339999999999, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 390.7419999999999, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 394.8799999999999, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 397.1199999999999, + "y": 388.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2304 + }, + "bounds": { + "#": 2313 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2316 + }, + "constraintImpulse": { + "#": 2317 + }, + "density": 0.001, + "force": { + "#": 2318 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 124, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2319 + }, + "positionImpulse": { + "#": 2320 + }, + "positionPrev": { + "#": 2321 + }, + "region": { + "#": 2322 + }, + "render": { + "#": 2323 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2325 + }, + "vertices": { + "#": 2326 + } + }, + [ + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2314 + }, + "min": { + "#": 2315 + } + }, + { + "x": 426.54399999999987, + "y": 406.0077547670249 + }, + { + "x": 397.1199999999999, + "y": 376.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 391.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 411.8319999999999, + "y": 388.38848405198934 + }, + { + "endCol": 8, + "endRow": 8, + "id": "8,8,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2324 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 426.54399999999987, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 424.30399999999986, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420.1659999999999, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 414.75799999999987, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 408.9059999999999, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 403.4979999999999, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 399.3599999999999, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 397.1199999999999, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 397.1199999999999, + "y": 388.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 399.3599999999999, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 403.4979999999999, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 408.9059999999999, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 414.75799999999987, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 420.1659999999999, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 424.30399999999986, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 426.54399999999987, + "y": 388.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2344 + }, + "bounds": { + "#": 2353 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2356 + }, + "constraintImpulse": { + "#": 2357 + }, + "density": 0.001, + "force": { + "#": 2358 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 125, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2359 + }, + "positionImpulse": { + "#": 2360 + }, + "positionPrev": { + "#": 2361 + }, + "region": { + "#": 2362 + }, + "render": { + "#": 2363 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2365 + }, + "vertices": { + "#": 2366 + } + }, + [ + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2354 + }, + "min": { + "#": 2355 + } + }, + { + "x": 455.96799999999985, + "y": 406.0077547670249 + }, + { + "x": 426.54399999999987, + "y": 376.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 391.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 441.25599999999986, + "y": 388.38848405198934 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2364 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 455.96799999999985, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 453.72799999999984, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.58999999999986, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 444.18199999999985, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 438.32999999999987, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 432.92199999999985, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 428.7839999999999, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 426.54399999999987, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 426.54399999999987, + "y": 388.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 428.7839999999999, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 432.92199999999985, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 438.32999999999987, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.18199999999985, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.58999999999986, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 453.72799999999984, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 455.96799999999985, + "y": 388.3697547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2384 + }, + "bounds": { + "#": 2393 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2396 + }, + "constraintImpulse": { + "#": 2397 + }, + "density": 0.001, + "force": { + "#": 2398 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 126, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2399 + }, + "positionImpulse": { + "#": 2400 + }, + "positionPrev": { + "#": 2401 + }, + "region": { + "#": 2402 + }, + "render": { + "#": 2403 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2405 + }, + "vertices": { + "#": 2406 + } + }, + [ + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2394 + }, + "min": { + "#": 2395 + } + }, + { + "x": 485.3919999999998, + "y": 406.0077547670249 + }, + { + "x": 455.96799999999985, + "y": 376.5837547670249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 391.2957547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.67999999999984, + "y": 388.38848405198934 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2404 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 485.3919999999998, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 483.1519999999998, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.01399999999984, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 473.6059999999998, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 467.75399999999985, + "y": 406.0077547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 462.34599999999983, + "y": 403.7677547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 458.20799999999986, + "y": 399.6297547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 455.96799999999985, + "y": 394.2217547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.96799999999985, + "y": 388.3697547670249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 458.20799999999986, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 462.34599999999983, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 467.75399999999985, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 473.6059999999998, + "y": 376.5837547670249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 479.01399999999984, + "y": 378.8237547670249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 483.1519999999998, + "y": 382.9617547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 485.3919999999998, + "y": 388.3697547670249 + }, + [], + [ + { + "#": 2425 + }, + { + "#": 2429 + }, + { + "#": 2433 + }, + { + "#": 2437 + }, + { + "#": 2441 + }, + { + "#": 2445 + }, + { + "#": 2449 + }, + { + "#": 2453 + }, + { + "#": 2457 + }, + { + "#": 2461 + }, + { + "#": 2465 + }, + { + "#": 2469 + }, + { + "#": 2473 + }, + { + "#": 2477 + }, + { + "#": 2481 + }, + { + "#": 2485 + }, + { + "#": 2489 + }, + { + "#": 2493 + }, + { + "#": 2497 + }, + { + "#": 2501 + }, + { + "#": 2505 + }, + { + "#": 2509 + }, + { + "#": 2513 + }, + { + "#": 2517 + }, + { + "#": 2521 + }, + { + "#": 2525 + }, + { + "#": 2529 + }, + { + "#": 2533 + }, + { + "#": 2537 + }, + { + "#": 2541 + }, + { + "#": 2545 + }, + { + "#": 2549 + }, + { + "#": 2553 + }, + { + "#": 2557 + }, + { + "#": 2561 + }, + { + "#": 2565 + }, + { + "#": 2569 + }, + { + "#": 2573 + }, + { + "#": 2577 + }, + { + "#": 2581 + }, + { + "#": 2585 + }, + { + "#": 2589 + }, + { + "#": 2593 + }, + { + "#": 2597 + }, + { + "#": 2601 + }, + { + "#": 2605 + }, + { + "#": 2609 + }, + { + "#": 2613 + }, + { + "#": 2617 + }, + { + "#": 2621 + }, + { + "#": 2625 + }, + { + "#": 2629 + }, + { + "#": 2633 + }, + { + "#": 2637 + }, + { + "#": 2641 + }, + { + "#": 2645 + }, + { + "#": 2649 + }, + { + "#": 2653 + }, + { + "#": 2657 + }, + { + "#": 2661 + }, + { + "#": 2665 + }, + { + "#": 2669 + }, + { + "#": 2673 + }, + { + "#": 2677 + }, + { + "#": 2681 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 127, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2426 + }, + "pointB": { + "#": 2427 + }, + "render": { + "#": 2428 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 128, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2430 + }, + "pointB": { + "#": 2431 + }, + "render": { + "#": 2432 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 129, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2434 + }, + "pointB": { + "#": 2435 + }, + "render": { + "#": 2436 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 130, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2438 + }, + "pointB": { + "#": 2439 + }, + "render": { + "#": 2440 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 131, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2442 + }, + "pointB": { + "#": 2443 + }, + "render": { + "#": 2444 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 132, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2446 + }, + "pointB": { + "#": 2447 + }, + "render": { + "#": 2448 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 133, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2450 + }, + "pointB": { + "#": 2451 + }, + "render": { + "#": 2452 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 134, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2454 + }, + "pointB": { + "#": 2455 + }, + "render": { + "#": 2456 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 135, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2458 + }, + "pointB": { + "#": 2459 + }, + "render": { + "#": 2460 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 136, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2462 + }, + "pointB": { + "#": 2463 + }, + "render": { + "#": 2464 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 137, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2466 + }, + "pointB": { + "#": 2467 + }, + "render": { + "#": 2468 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 138, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2470 + }, + "pointB": { + "#": 2471 + }, + "render": { + "#": 2472 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 139, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2474 + }, + "pointB": { + "#": 2475 + }, + "render": { + "#": 2476 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 140, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2478 + }, + "pointB": { + "#": 2479 + }, + "render": { + "#": 2480 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 141, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2482 + }, + "pointB": { + "#": 2483 + }, + "render": { + "#": 2484 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 142, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2486 + }, + "pointB": { + "#": 2487 + }, + "render": { + "#": 2488 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 143, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2490 + }, + "pointB": { + "#": 2491 + }, + "render": { + "#": 2492 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 144, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2494 + }, + "pointB": { + "#": 2495 + }, + "render": { + "#": 2496 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 145, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2498 + }, + "pointB": { + "#": 2499 + }, + "render": { + "#": 2500 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 146, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2502 + }, + "pointB": { + "#": 2503 + }, + "render": { + "#": 2504 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 147, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2506 + }, + "pointB": { + "#": 2507 + }, + "render": { + "#": 2508 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 148, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2510 + }, + "pointB": { + "#": 2511 + }, + "render": { + "#": 2512 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 149, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2514 + }, + "pointB": { + "#": 2515 + }, + "render": { + "#": 2516 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 150, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2518 + }, + "pointB": { + "#": 2519 + }, + "render": { + "#": 2520 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 151, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2522 + }, + "pointB": { + "#": 2523 + }, + "render": { + "#": 2524 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 152, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2526 + }, + "pointB": { + "#": 2527 + }, + "render": { + "#": 2528 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 153, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2530 + }, + "pointB": { + "#": 2531 + }, + "render": { + "#": 2532 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 154, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2534 + }, + "pointB": { + "#": 2535 + }, + "render": { + "#": 2536 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 155, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2538 + }, + "pointB": { + "#": 2539 + }, + "render": { + "#": 2540 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 156, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2542 + }, + "pointB": { + "#": 2543 + }, + "render": { + "#": 2544 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 157, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2546 + }, + "pointB": { + "#": 2547 + }, + "render": { + "#": 2548 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 158, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2550 + }, + "pointB": { + "#": 2551 + }, + "render": { + "#": 2552 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 159, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2554 + }, + "pointB": { + "#": 2555 + }, + "render": { + "#": 2556 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 160, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2558 + }, + "pointB": { + "#": 2559 + }, + "render": { + "#": 2560 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 161, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2562 + }, + "pointB": { + "#": 2563 + }, + "render": { + "#": 2564 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 162, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2566 + }, + "pointB": { + "#": 2567 + }, + "render": { + "#": 2568 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 163, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2570 + }, + "pointB": { + "#": 2571 + }, + "render": { + "#": 2572 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 164, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2574 + }, + "pointB": { + "#": 2575 + }, + "render": { + "#": 2576 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 165, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2578 + }, + "pointB": { + "#": 2579 + }, + "render": { + "#": 2580 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 166, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2582 + }, + "pointB": { + "#": 2583 + }, + "render": { + "#": 2584 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 167, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2586 + }, + "pointB": { + "#": 2587 + }, + "render": { + "#": 2588 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 168, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2590 + }, + "pointB": { + "#": 2591 + }, + "render": { + "#": 2592 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 169, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2594 + }, + "pointB": { + "#": 2595 + }, + "render": { + "#": 2596 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 170, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2598 + }, + "pointB": { + "#": 2599 + }, + "render": { + "#": 2600 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 171, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2602 + }, + "pointB": { + "#": 2603 + }, + "render": { + "#": 2604 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 172, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2606 + }, + "pointB": { + "#": 2607 + }, + "render": { + "#": 2608 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 173, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2610 + }, + "pointB": { + "#": 2611 + }, + "render": { + "#": 2612 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 174, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2614 + }, + "pointB": { + "#": 2615 + }, + "render": { + "#": 2616 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 175, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2618 + }, + "pointB": { + "#": 2619 + }, + "render": { + "#": 2620 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 176, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2622 + }, + "pointB": { + "#": 2623 + }, + "render": { + "#": 2624 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 177, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2626 + }, + "pointB": { + "#": 2627 + }, + "render": { + "#": 2628 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 178, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2630 + }, + "pointB": { + "#": 2631 + }, + "render": { + "#": 2632 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 179, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2634 + }, + "pointB": { + "#": 2635 + }, + "render": { + "#": 2636 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 180, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2638 + }, + "pointB": { + "#": 2639 + }, + "render": { + "#": 2640 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 181, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2642 + }, + "pointB": { + "#": 2643 + }, + "render": { + "#": 2644 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 182, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2646 + }, + "pointB": { + "#": 2647 + }, + "render": { + "#": 2648 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 183, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2650 + }, + "pointB": { + "#": 2651 + }, + "render": { + "#": 2652 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 184, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2654 + }, + "pointB": { + "#": 2655 + }, + "render": { + "#": 2656 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 185, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2658 + }, + "pointB": { + "#": 2659 + }, + "render": { + "#": 2660 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 186, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2662 + }, + "pointB": { + "#": 2663 + }, + "render": { + "#": 2664 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 187, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2666 + }, + "pointB": { + "#": 2667 + }, + "render": { + "#": 2668 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 188, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2670 + }, + "pointB": { + "#": 2671 + }, + "render": { + "#": 2672 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 189, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2674 + }, + "pointB": { + "#": 2675 + }, + "render": { + "#": 2676 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 190, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 2678 + }, + "pointB": { + "#": 2679 + }, + "render": { + "#": 2680 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 191, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 2682 + }, + "pointB": { + "#": 2683 + }, + "render": { + "#": 2684 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "bodies": { + "#": 2686 + }, + "composites": { + "#": 3327 + }, + "constraints": { + "#": 3328 + }, + "id": 192, + "isModified": false, + "label": "Soft Body", + "parent": null, + "type": "composite" + }, + [ + { + "#": 2687 + }, + { + "#": 2727 + }, + { + "#": 2767 + }, + { + "#": 2807 + }, + { + "#": 2847 + }, + { + "#": 2887 + }, + { + "#": 2927 + }, + { + "#": 2967 + }, + { + "#": 3007 + }, + { + "#": 3047 + }, + { + "#": 3087 + }, + { + "#": 3127 + }, + { + "#": 3167 + }, + { + "#": 3207 + }, + { + "#": 3247 + }, + { + "#": 3287 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2688 + }, + "bounds": { + "#": 2697 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2700 + }, + "constraintImpulse": { + "#": 2701 + }, + "density": 0.001, + "force": { + "#": 2702 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 193, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2703 + }, + "positionImpulse": { + "#": 2704 + }, + "positionPrev": { + "#": 2705 + }, + "region": { + "#": 2706 + }, + "render": { + "#": 2707 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2709 + }, + "vertices": { + "#": 2710 + } + }, + [ + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2698 + }, + "min": { + "#": 2699 + } + }, + { + "x": 279.424, + "y": 447.15975476702494 + }, + { + "x": 250, + "y": 417.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 432.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 429.5404840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "5,5,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2708 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 435.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 440.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 444.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 444.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 440.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 435.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 429.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 424.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 419.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 419.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 424.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 429.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2728 + }, + "bounds": { + "#": 2737 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2740 + }, + "constraintImpulse": { + "#": 2741 + }, + "density": 0.001, + "force": { + "#": 2742 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 194, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2743 + }, + "positionImpulse": { + "#": 2744 + }, + "positionPrev": { + "#": 2745 + }, + "region": { + "#": 2746 + }, + "render": { + "#": 2747 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2749 + }, + "vertices": { + "#": 2750 + } + }, + [ + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2738 + }, + "min": { + "#": 2739 + } + }, + { + "x": 308.84799999999996, + "y": 447.15975476702494 + }, + { + "x": 279.424, + "y": 417.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 432.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 429.5404840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2748 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + }, + { + "#": 2766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 435.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 440.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 444.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 444.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 440.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 435.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 429.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 424.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 419.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 419.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 424.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 429.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2768 + }, + "bounds": { + "#": 2777 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2780 + }, + "constraintImpulse": { + "#": 2781 + }, + "density": 0.001, + "force": { + "#": 2782 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 195, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2783 + }, + "positionImpulse": { + "#": 2784 + }, + "positionPrev": { + "#": 2785 + }, + "region": { + "#": 2786 + }, + "render": { + "#": 2787 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2789 + }, + "vertices": { + "#": 2790 + } + }, + [ + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2778 + }, + "min": { + "#": 2779 + } + }, + { + "x": 338.27199999999993, + "y": 447.15975476702494 + }, + { + "x": 308.84799999999996, + "y": 417.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 432.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 429.5404840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2788 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2791 + }, + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 435.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 440.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 444.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 444.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 440.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 435.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 429.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 424.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 419.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 419.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 424.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 429.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2808 + }, + "bounds": { + "#": 2817 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2820 + }, + "constraintImpulse": { + "#": 2821 + }, + "density": 0.001, + "force": { + "#": 2822 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 196, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2823 + }, + "positionImpulse": { + "#": 2824 + }, + "positionPrev": { + "#": 2825 + }, + "region": { + "#": 2826 + }, + "render": { + "#": 2827 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2829 + }, + "vertices": { + "#": 2830 + } + }, + [ + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2818 + }, + "min": { + "#": 2819 + } + }, + { + "x": 367.6959999999999, + "y": 447.15975476702494 + }, + { + "x": 338.27199999999993, + "y": 417.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 432.44775476702495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 429.5404840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2828 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 435.37375476702493 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 440.78175476702495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 444.9197547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 444.9197547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 440.78175476702495 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 435.37375476702493 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 429.52175476702496 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 424.11375476702494 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 419.97575476702497 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 417.73575476702496 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 419.97575476702497 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 424.11375476702494 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 429.52175476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2848 + }, + "bounds": { + "#": 2857 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2860 + }, + "constraintImpulse": { + "#": 2861 + }, + "density": 0.001, + "force": { + "#": 2862 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 197, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2863 + }, + "positionImpulse": { + "#": 2864 + }, + "positionPrev": { + "#": 2865 + }, + "region": { + "#": 2866 + }, + "render": { + "#": 2867 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2869 + }, + "vertices": { + "#": 2870 + } + }, + [ + { + "#": 2849 + }, + { + "#": 2850 + }, + { + "#": 2851 + }, + { + "#": 2852 + }, + { + "#": 2853 + }, + { + "#": 2854 + }, + { + "#": 2855 + }, + { + "#": 2856 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2858 + }, + "min": { + "#": 2859 + } + }, + { + "x": 279.424, + "y": 476.5837547670249 + }, + { + "x": 250, + "y": 447.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 461.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 458.96448405198936 + }, + { + "endCol": 5, + "endRow": 9, + "id": "5,5,9,9", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2868 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 464.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 470.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 474.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 476.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 476.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 474.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 470.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 464.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 458.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 453.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 449.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 449.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 453.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 458.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2888 + }, + "bounds": { + "#": 2897 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2900 + }, + "constraintImpulse": { + "#": 2901 + }, + "density": 0.001, + "force": { + "#": 2902 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 198, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2903 + }, + "positionImpulse": { + "#": 2904 + }, + "positionPrev": { + "#": 2905 + }, + "region": { + "#": 2906 + }, + "render": { + "#": 2907 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2909 + }, + "vertices": { + "#": 2910 + } + }, + [ + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2898 + }, + "min": { + "#": 2899 + } + }, + { + "x": 308.84799999999996, + "y": 476.5837547670249 + }, + { + "x": 279.424, + "y": 447.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 461.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 458.96448405198936 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,9,9", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2908 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 464.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 470.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 474.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 476.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 476.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 474.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 470.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 464.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 458.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 453.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 449.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 449.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 453.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 458.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2928 + }, + "bounds": { + "#": 2937 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2940 + }, + "constraintImpulse": { + "#": 2941 + }, + "density": 0.001, + "force": { + "#": 2942 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 199, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2943 + }, + "positionImpulse": { + "#": 2944 + }, + "positionPrev": { + "#": 2945 + }, + "region": { + "#": 2946 + }, + "render": { + "#": 2947 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2949 + }, + "vertices": { + "#": 2950 + } + }, + [ + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2938 + }, + "min": { + "#": 2939 + } + }, + { + "x": 338.27199999999993, + "y": 476.5837547670249 + }, + { + "x": 308.84799999999996, + "y": 447.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 461.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 458.96448405198936 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,9,9", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2948 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + }, + { + "#": 2964 + }, + { + "#": 2965 + }, + { + "#": 2966 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 464.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 470.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 474.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 476.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 476.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 474.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 470.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 464.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 458.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 453.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 449.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 449.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 453.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 458.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 2968 + }, + "bounds": { + "#": 2977 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 2980 + }, + "constraintImpulse": { + "#": 2981 + }, + "density": 0.001, + "force": { + "#": 2982 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 200, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 2983 + }, + "positionImpulse": { + "#": 2984 + }, + "positionPrev": { + "#": 2985 + }, + "region": { + "#": 2986 + }, + "render": { + "#": 2987 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2989 + }, + "vertices": { + "#": 2990 + } + }, + [ + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2978 + }, + "min": { + "#": 2979 + } + }, + { + "x": 367.6959999999999, + "y": 476.5837547670249 + }, + { + "x": 338.27199999999993, + "y": 447.15975476702494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 461.8717547670249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 458.96448405198936 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,9,9", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2988 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + }, + { + "#": 3005 + }, + { + "#": 3006 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 464.7977547670249 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 470.2057547670249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 474.3437547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 476.5837547670249 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 476.5837547670249 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 474.3437547670249 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 470.2057547670249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 464.7977547670249 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 458.94575476702494 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 453.5377547670249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 449.39975476702494 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 447.15975476702494 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 449.39975476702494 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 453.5377547670249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 458.94575476702494 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3008 + }, + "bounds": { + "#": 3017 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3020 + }, + "constraintImpulse": { + "#": 3021 + }, + "density": 0.001, + "force": { + "#": 3022 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 201, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3023 + }, + "positionImpulse": { + "#": 3024 + }, + "positionPrev": { + "#": 3025 + }, + "region": { + "#": 3026 + }, + "render": { + "#": 3027 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3029 + }, + "vertices": { + "#": 3030 + } + }, + [ + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3018 + }, + "min": { + "#": 3019 + } + }, + { + "x": 279.424, + "y": 508.94002547606044 + }, + { + "x": 250, + "y": 476.6187547510249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 491.33075475102487 + }, + { + "x": 0, + "y": 0.020799994399968838 + }, + { + "x": 264.712, + "y": 488.43948401998927 + }, + { + "endCol": 5, + "endRow": 10, + "id": "5,5,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3028 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.891270731035604 + }, + [ + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + }, + { + "#": 3038 + }, + { + "#": 3039 + }, + { + "#": 3040 + }, + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + }, + { + "#": 3046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 494.25675475102486 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 499.6647547510249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 503.80275475102485 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 506.04275475102486 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 506.04275475102486 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 503.80275475102485 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 499.6647547510249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 494.25675475102486 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 488.4047547510249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 482.99675475102487 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 478.8587547510249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 476.6187547510249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 476.6187547510249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 478.8587547510249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 482.99675475102487 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 488.4047547510249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3048 + }, + "bounds": { + "#": 3057 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3060 + }, + "constraintImpulse": { + "#": 3061 + }, + "density": 0.001, + "force": { + "#": 3062 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 202, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3063 + }, + "positionImpulse": { + "#": 3064 + }, + "positionPrev": { + "#": 3065 + }, + "region": { + "#": 3066 + }, + "render": { + "#": 3067 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3069 + }, + "vertices": { + "#": 3070 + } + }, + [ + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3058 + }, + "min": { + "#": 3059 + } + }, + { + "x": 308.84799999999996, + "y": 508.94002547606044 + }, + { + "x": 279.424, + "y": 476.6187547510249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 491.33075475102487 + }, + { + "x": 0, + "y": 0.020799994399968838 + }, + { + "x": 294.13599999999997, + "y": 488.43948401998927 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3068 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.891270731035604 + }, + [ + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + }, + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 494.25675475102486 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 499.6647547510249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 503.80275475102485 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 506.04275475102486 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 506.04275475102486 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 503.80275475102485 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 499.6647547510249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 494.25675475102486 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 488.4047547510249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 482.99675475102487 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 478.8587547510249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 476.6187547510249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 476.6187547510249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 478.8587547510249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 482.99675475102487 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 488.4047547510249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3088 + }, + "bounds": { + "#": 3097 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3100 + }, + "constraintImpulse": { + "#": 3101 + }, + "density": 0.001, + "force": { + "#": 3102 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 203, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3103 + }, + "positionImpulse": { + "#": 3104 + }, + "positionPrev": { + "#": 3105 + }, + "region": { + "#": 3106 + }, + "render": { + "#": 3107 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3109 + }, + "vertices": { + "#": 3110 + } + }, + [ + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3098 + }, + "min": { + "#": 3099 + } + }, + { + "x": 338.27199999999993, + "y": 508.94002547606044 + }, + { + "x": 308.84799999999996, + "y": 476.6187547510249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 491.33075475102487 + }, + { + "x": 0, + "y": 0.020799994399968838 + }, + { + "x": 323.55999999999995, + "y": 488.43948401998927 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3108 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.891270731035604 + }, + [ + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 494.25675475102486 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 499.6647547510249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 503.80275475102485 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 506.04275475102486 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 506.04275475102486 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 503.80275475102485 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 499.6647547510249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 494.25675475102486 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 488.4047547510249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 482.99675475102487 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 478.8587547510249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 476.6187547510249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 476.6187547510249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 478.8587547510249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 482.99675475102487 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 488.4047547510249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3128 + }, + "bounds": { + "#": 3137 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3140 + }, + "constraintImpulse": { + "#": 3141 + }, + "density": 0.001, + "force": { + "#": 3142 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 204, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3143 + }, + "positionImpulse": { + "#": 3144 + }, + "positionPrev": { + "#": 3145 + }, + "region": { + "#": 3146 + }, + "render": { + "#": 3147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3149 + }, + "vertices": { + "#": 3150 + } + }, + [ + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3138 + }, + "min": { + "#": 3139 + } + }, + { + "x": 367.6959999999999, + "y": 508.94002547606044 + }, + { + "x": 338.27199999999993, + "y": 476.6187547510249 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 491.33075475102487 + }, + { + "x": 0, + "y": 0.020799994399968838 + }, + { + "x": 352.9839999999999, + "y": 488.43948401998927 + }, + { + "endCol": 7, + "endRow": 10, + "id": "7,7,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.891270731035604 + }, + [ + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 494.25675475102486 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 499.6647547510249 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 503.80275475102485 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 506.04275475102486 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 506.04275475102486 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 503.80275475102485 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 499.6647547510249 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 494.25675475102486 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 488.4047547510249 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 482.99675475102487 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 478.8587547510249 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 476.6187547510249 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 476.6187547510249 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 478.8587547510249 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 482.99675475102487 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 488.4047547510249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3168 + }, + "bounds": { + "#": 3177 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3180 + }, + "constraintImpulse": { + "#": 3181 + }, + "density": 0.001, + "force": { + "#": 3182 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 205, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3183 + }, + "positionImpulse": { + "#": 3184 + }, + "positionPrev": { + "#": 3185 + }, + "region": { + "#": 3186 + }, + "render": { + "#": 3187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3189 + }, + "vertices": { + "#": 3190 + } + }, + [ + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3178 + }, + "min": { + "#": 3179 + } + }, + { + "x": 279.424, + "y": 538.3340254680609 + }, + { + "x": 250, + "y": 505.99275476302483 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 520.704754763025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 264.712, + "y": 517.7814840639894 + }, + { + "endCol": 5, + "endRow": 11, + "id": "5,5,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3188 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9232706990355837 + }, + [ + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 279.424, + "y": 523.630754763025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 277.18399999999997, + "y": 529.0387547630253 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 273.046, + "y": 533.1767547630253 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 267.638, + "y": 535.4167547630253 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 261.786, + "y": 535.4167547630253 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 256.378, + "y": 533.1767547630253 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 252.23999999999998, + "y": 529.0387547630253 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 250, + "y": 523.630754763025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250, + "y": 517.7787547630251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 252.23999999999998, + "y": 512.3707547630249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 256.378, + "y": 508.23275476302484 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 261.786, + "y": 505.99275476302483 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 267.638, + "y": 505.99275476302483 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 273.046, + "y": 508.23275476302484 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 277.18399999999997, + "y": 512.3707547630249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 279.424, + "y": 517.7787547630251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3208 + }, + "bounds": { + "#": 3217 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3220 + }, + "constraintImpulse": { + "#": 3221 + }, + "density": 0.001, + "force": { + "#": 3222 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 206, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3223 + }, + "positionImpulse": { + "#": 3224 + }, + "positionPrev": { + "#": 3225 + }, + "region": { + "#": 3226 + }, + "render": { + "#": 3227 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3229 + }, + "vertices": { + "#": 3230 + } + }, + [ + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3218 + }, + "min": { + "#": 3219 + } + }, + { + "x": 308.84799999999996, + "y": 538.3340254680609 + }, + { + "x": 279.424, + "y": 505.99275476302483 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 520.704754763025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 294.13599999999997, + "y": 517.7814840639894 + }, + { + "endCol": 6, + "endRow": 11, + "id": "5,6,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3228 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9232706990355837 + }, + [ + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 308.84799999999996, + "y": 523.630754763025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.60799999999995, + "y": 529.0387547630253 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.46999999999997, + "y": 533.1767547630253 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 297.06199999999995, + "y": 535.4167547630253 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.21, + "y": 535.4167547630253 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 285.80199999999996, + "y": 533.1767547630253 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 281.664, + "y": 529.0387547630253 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 279.424, + "y": 523.630754763025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.424, + "y": 517.7787547630251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 281.664, + "y": 512.3707547630249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 285.80199999999996, + "y": 508.23275476302484 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 291.21, + "y": 505.99275476302483 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 297.06199999999995, + "y": 505.99275476302483 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 302.46999999999997, + "y": 508.23275476302484 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 306.60799999999995, + "y": 512.3707547630249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 308.84799999999996, + "y": 517.7787547630251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3248 + }, + "bounds": { + "#": 3257 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3260 + }, + "constraintImpulse": { + "#": 3261 + }, + "density": 0.001, + "force": { + "#": 3262 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 207, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3263 + }, + "positionImpulse": { + "#": 3264 + }, + "positionPrev": { + "#": 3265 + }, + "region": { + "#": 3266 + }, + "render": { + "#": 3267 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3269 + }, + "vertices": { + "#": 3270 + } + }, + [ + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3258 + }, + "min": { + "#": 3259 + } + }, + { + "x": 338.27199999999993, + "y": 538.3340254680609 + }, + { + "x": 308.84799999999996, + "y": 505.99275476302483 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 520.704754763025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.55999999999995, + "y": 517.7814840639894 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3268 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9232706990355837 + }, + [ + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 338.27199999999993, + "y": 523.630754763025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 336.0319999999999, + "y": 529.0387547630253 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 331.89399999999995, + "y": 533.1767547630253 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 326.48599999999993, + "y": 535.4167547630253 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 320.63399999999996, + "y": 535.4167547630253 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 315.22599999999994, + "y": 533.1767547630253 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.08799999999997, + "y": 529.0387547630253 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 308.84799999999996, + "y": 523.630754763025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.84799999999996, + "y": 517.7787547630251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 311.08799999999997, + "y": 512.3707547630249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 315.22599999999994, + "y": 508.23275476302484 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 320.63399999999996, + "y": 505.99275476302483 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 326.48599999999993, + "y": 505.99275476302483 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 331.89399999999995, + "y": 508.23275476302484 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 336.0319999999999, + "y": 512.3707547630249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 338.27199999999993, + "y": 517.7787547630251 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 688.846648, + "axes": { + "#": 3288 + }, + "bounds": { + "#": 3297 + }, + "circleRadius": 15, + "collisionFilter": { + "#": 3300 + }, + "constraintImpulse": { + "#": 3301 + }, + "density": 0.001, + "force": { + "#": 3302 + }, + "friction": 0.05, + "frictionAir": 0.01, + "frictionStatic": 0.1, + "id": 208, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 1.451701917841081, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.688846648, + "motion": 0, + "parent": null, + "position": { + "#": 3303 + }, + "positionImpulse": { + "#": 3304 + }, + "positionPrev": { + "#": 3305 + }, + "region": { + "#": 3306 + }, + "render": { + "#": 3307 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3309 + }, + "vertices": { + "#": 3310 + } + }, + [ + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + } + ], + { + "x": -0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826736705093165, + "y": -0.923883575943921 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923883575943921, + "y": -0.3826736705093165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 3298 + }, + "min": { + "#": 3299 + } + }, + { + "x": 367.6959999999999, + "y": 538.3340254680609 + }, + { + "x": 338.27199999999993, + "y": 505.99275476302483 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 520.704754763025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.9839999999999, + "y": 517.7814840639894 + }, + { + "endCol": 7, + "endRow": 11, + "id": "7,7,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3308 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9232706990355837 + }, + [ + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.6959999999999, + "y": 523.630754763025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 365.4559999999999, + "y": 529.0387547630253 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.3179999999999, + "y": 533.1767547630253 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.9099999999999, + "y": 535.4167547630253 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.05799999999994, + "y": 535.4167547630253 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6499999999999, + "y": 533.1767547630253 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 340.51199999999994, + "y": 529.0387547630253 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 338.27199999999993, + "y": 523.630754763025 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 338.27199999999993, + "y": 517.7787547630251 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.51199999999994, + "y": 512.3707547630249 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 344.6499999999999, + "y": 508.23275476302484 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 350.05799999999994, + "y": 505.99275476302483 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 355.9099999999999, + "y": 505.99275476302483 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 361.3179999999999, + "y": 508.23275476302484 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 365.4559999999999, + "y": 512.3707547630249 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.6959999999999, + "y": 517.7787547630251 + }, + [], + [ + { + "#": 3329 + }, + { + "#": 3333 + }, + { + "#": 3337 + }, + { + "#": 3341 + }, + { + "#": 3345 + }, + { + "#": 3349 + }, + { + "#": 3353 + }, + { + "#": 3357 + }, + { + "#": 3361 + }, + { + "#": 3365 + }, + { + "#": 3369 + }, + { + "#": 3373 + }, + { + "#": 3377 + }, + { + "#": 3381 + }, + { + "#": 3385 + }, + { + "#": 3389 + }, + { + "#": 3393 + }, + { + "#": 3397 + }, + { + "#": 3401 + }, + { + "#": 3405 + }, + { + "#": 3409 + }, + { + "#": 3413 + }, + { + "#": 3417 + }, + { + "#": 3421 + }, + { + "#": 3425 + }, + { + "#": 3429 + }, + { + "#": 3433 + }, + { + "#": 3437 + }, + { + "#": 3441 + }, + { + "#": 3445 + }, + { + "#": 3449 + }, + { + "#": 3453 + }, + { + "#": 3457 + }, + { + "#": 3461 + }, + { + "#": 3465 + }, + { + "#": 3469 + }, + { + "#": 3473 + }, + { + "#": 3477 + }, + { + "#": 3481 + }, + { + "#": 3485 + }, + { + "#": 3489 + }, + { + "#": 3493 + } + ], + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 209, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3330 + }, + "pointB": { + "#": 3331 + }, + "render": { + "#": 3332 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 210, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3334 + }, + "pointB": { + "#": 3335 + }, + "render": { + "#": 3336 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 211, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3338 + }, + "pointB": { + "#": 3339 + }, + "render": { + "#": 3340 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 212, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3342 + }, + "pointB": { + "#": 3343 + }, + "render": { + "#": 3344 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 213, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3346 + }, + "pointB": { + "#": 3347 + }, + "render": { + "#": 3348 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 214, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3350 + }, + "pointB": { + "#": 3351 + }, + "render": { + "#": 3352 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 215, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3354 + }, + "pointB": { + "#": 3355 + }, + "render": { + "#": 3356 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 216, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3358 + }, + "pointB": { + "#": 3359 + }, + "render": { + "#": 3360 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 217, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3362 + }, + "pointB": { + "#": 3363 + }, + "render": { + "#": 3364 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 218, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3366 + }, + "pointB": { + "#": 3367 + }, + "render": { + "#": 3368 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 219, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3370 + }, + "pointB": { + "#": 3371 + }, + "render": { + "#": 3372 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 220, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3374 + }, + "pointB": { + "#": 3375 + }, + "render": { + "#": 3376 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 221, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3378 + }, + "pointB": { + "#": 3379 + }, + "render": { + "#": 3380 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 222, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3382 + }, + "pointB": { + "#": 3383 + }, + "render": { + "#": 3384 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 223, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3386 + }, + "pointB": { + "#": 3387 + }, + "render": { + "#": 3388 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 224, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3390 + }, + "pointB": { + "#": 3391 + }, + "render": { + "#": 3392 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 225, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3394 + }, + "pointB": { + "#": 3395 + }, + "render": { + "#": 3396 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 226, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3398 + }, + "pointB": { + "#": 3399 + }, + "render": { + "#": 3400 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 227, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3402 + }, + "pointB": { + "#": 3403 + }, + "render": { + "#": 3404 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 228, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3406 + }, + "pointB": { + "#": 3407 + }, + "render": { + "#": 3408 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 229, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3410 + }, + "pointB": { + "#": 3411 + }, + "render": { + "#": 3412 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 230, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3414 + }, + "pointB": { + "#": 3415 + }, + "render": { + "#": 3416 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 231, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3418 + }, + "pointB": { + "#": 3419 + }, + "render": { + "#": 3420 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 232, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3422 + }, + "pointB": { + "#": 3423 + }, + "render": { + "#": 3424 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 233, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3426 + }, + "pointB": { + "#": 3427 + }, + "render": { + "#": 3428 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 234, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3430 + }, + "pointB": { + "#": 3431 + }, + "render": { + "#": 3432 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 235, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3434 + }, + "pointB": { + "#": 3435 + }, + "render": { + "#": 3436 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 236, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3438 + }, + "pointB": { + "#": 3439 + }, + "render": { + "#": 3440 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 237, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3442 + }, + "pointB": { + "#": 3443 + }, + "render": { + "#": 3444 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 238, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3446 + }, + "pointB": { + "#": 3447 + }, + "render": { + "#": 3448 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 239, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3450 + }, + "pointB": { + "#": 3451 + }, + "render": { + "#": 3452 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 240, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3454 + }, + "pointB": { + "#": 3455 + }, + "render": { + "#": 3456 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 241, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3458 + }, + "pointB": { + "#": 3459 + }, + "render": { + "#": 3460 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 242, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3462 + }, + "pointB": { + "#": 3463 + }, + "render": { + "#": 3464 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 243, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3466 + }, + "pointB": { + "#": 3467 + }, + "render": { + "#": 3468 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 244, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3470 + }, + "pointB": { + "#": 3471 + }, + "render": { + "#": 3472 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 245, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3474 + }, + "pointB": { + "#": 3475 + }, + "render": { + "#": 3476 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 246, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3478 + }, + "pointB": { + "#": 3479 + }, + "render": { + "#": 3480 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 247, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3482 + }, + "pointB": { + "#": 3483 + }, + "render": { + "#": 3484 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 248, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3486 + }, + "pointB": { + "#": 3487 + }, + "render": { + "#": 3488 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 249, + "label": "Constraint", + "length": 29.423999999999978, + "pointA": { + "#": 3490 + }, + "pointB": { + "#": 3491 + }, + "render": { + "#": 3492 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "angleA": 0, + "angleB": 0, + "angularStiffness": 0, + "bodyA": null, + "bodyB": null, + "id": 250, + "label": "Constraint", + "length": 41.611819859265914, + "pointA": { + "#": 3494 + }, + "pointB": { + "#": 3495 + }, + "render": { + "#": 3496 + }, + "stiffness": 0.4, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + [ + { + "#": 3498 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 3499 + }, + "pointB": "", + "render": { + "#": 3500 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/sprites/sprites-0.json b/tests/browser/refs/sprites/sprites-0.json new file mode 100644 index 00000000..859cd2a5 --- /dev/null +++ b/tests/browser/refs/sprites/sprites-0.json @@ -0,0 +1,11829 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 1330 + }, + "gravity": { + "#": 1334 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 41435.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 810.25, + "y": 15.25 + }, + { + "x": -10.25, + "y": -35.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -10 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -10 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -10.25, + "y": -35.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 810.25, + "y": -35.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 810.25, + "y": 15.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -10.25, + "y": 15.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 41435.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 810.25, + "y": 635.25 + }, + { + "x": -10.25, + "y": 584.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 610 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 610 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -10.25, + "y": 584.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 810.25, + "y": 584.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 810.25, + "y": 635.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -10.25, + "y": 635.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 31335.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 835.25, + "y": 610.25 + }, + { + "x": 784.75, + "y": -10.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 810, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 810, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 784.75, + "y": -10.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 835.25, + "y": -10.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 835.25, + "y": 610.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 784.75, + "y": 610.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 31335.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 15.25, + "y": 610.25 + }, + { + "x": -35.25, + "y": -10.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -10, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -10, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -35.25, + "y": -10.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 15.25, + "y": -10.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 15.25, + "y": 610.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -35.25, + "y": 610.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 1328 + }, + "constraints": { + "#": 1329 + }, + "id": 8, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 146 + }, + { + "#": 167 + }, + { + "#": 188 + }, + { + "#": 209 + }, + { + "#": 230 + }, + { + "#": 284 + }, + { + "#": 305 + }, + { + "#": 326 + }, + { + "#": 347 + }, + { + "#": 401 + }, + { + "#": 422 + }, + { + "#": 476 + }, + { + "#": 497 + }, + { + "#": 518 + }, + { + "#": 539 + }, + { + "#": 560 + }, + { + "#": 614 + }, + { + "#": 635 + }, + { + "#": 656 + }, + { + "#": 677 + }, + { + "#": 698 + }, + { + "#": 752 + }, + { + "#": 773 + }, + { + "#": 794 + }, + { + "#": 848 + }, + { + "#": 869 + }, + { + "#": 923 + }, + { + "#": 944 + }, + { + "#": 965 + }, + { + "#": 986 + }, + { + "#": 1007 + }, + { + "#": 1061 + }, + { + "#": 1115 + }, + { + "#": 1136 + }, + { + "#": 1157 + }, + { + "#": 1178 + }, + { + "#": 1232 + }, + { + "#": 1253 + }, + { + "#": 1307 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 93 + }, + "bounds": { + "#": 107 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 110 + }, + "constraintImpulse": { + "#": 111 + }, + "density": 0.0005, + "force": { + "#": 112 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 9, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 113 + }, + "positionImpulse": { + "#": 114 + }, + "positionPrev": { + "#": 115 + }, + "render": { + "#": 116 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 118 + }, + "vertices": { + "#": 119 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 108 + }, + "min": { + "#": 109 + } + }, + { + "x": 111.32999999999998, + "y": 112 + }, + { + "x": 19.999999999999993, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 65.66499999999999, + "y": 66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 65.66499999999999, + "y": 66 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 117 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 111.32999999999998, + "y": 71.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 108.67599999999999, + "y": 82.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 103.52199999999999, + "y": 92.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 96.169, + "y": 100.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 87.04199999999999, + "y": 106.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 76.67399999999999, + "y": 110.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 65.66499999999999, + "y": 112 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 54.65599999999999, + "y": 110.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 44.288, + "y": 106.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 35.16099999999999, + "y": 100.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 27.807999999999993, + "y": 92.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 22.65399999999999, + "y": 82.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 19.999999999999993, + "y": 71.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 19.999999999999993, + "y": 60.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 22.65399999999999, + "y": 49.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 27.807999999999993, + "y": 39.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 35.16099999999999, + "y": 31.569000000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 44.288, + "y": 25.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 54.65599999999999, + "y": 21.337000000000003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 65.66499999999999, + "y": 20 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 76.67399999999999, + "y": 21.337000000000003 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 87.04199999999999, + "y": 25.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 96.169, + "y": 31.569000000000003 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 103.52199999999999, + "y": 39.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 108.67599999999999, + "y": 49.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 111.32999999999998, + "y": 60.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 147 + }, + "bounds": { + "#": 150 + }, + "collisionFilter": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "density": 0.001, + "force": { + "#": 155 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 156 + }, + "positionImpulse": { + "#": 157 + }, + "positionPrev": { + "#": 158 + }, + "render": { + "#": 159 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 161 + }, + "vertices": { + "#": 162 + } + }, + [ + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 151 + }, + "min": { + "#": 152 + } + }, + { + "x": 175.32999999999998, + "y": 84 + }, + { + "x": 111.32999999999998, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 143.32999999999998, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 143.32999999999998, + "y": 52 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 160 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 111.32999999999998, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175.32999999999998, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175.32999999999998, + "y": 84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 111.32999999999998, + "y": 84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 168 + }, + "bounds": { + "#": 171 + }, + "collisionFilter": { + "#": 174 + }, + "constraintImpulse": { + "#": 175 + }, + "density": 0.001, + "force": { + "#": 176 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 177 + }, + "positionImpulse": { + "#": 178 + }, + "positionPrev": { + "#": 179 + }, + "render": { + "#": 180 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 182 + }, + "vertices": { + "#": 183 + } + }, + [ + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 172 + }, + "min": { + "#": 173 + } + }, + { + "x": 239.32999999999998, + "y": 84 + }, + { + "x": 175.32999999999998, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 52 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 181 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.32999999999998, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 239.32999999999998, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.32999999999998, + "y": 84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175.32999999999998, + "y": 84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 189 + }, + "bounds": { + "#": 192 + }, + "collisionFilter": { + "#": 195 + }, + "constraintImpulse": { + "#": 196 + }, + "density": 0.001, + "force": { + "#": 197 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 198 + }, + "positionImpulse": { + "#": 199 + }, + "positionPrev": { + "#": 200 + }, + "render": { + "#": 201 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 203 + }, + "vertices": { + "#": 204 + } + }, + [ + { + "#": 190 + }, + { + "#": 191 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 193 + }, + "min": { + "#": 194 + } + }, + { + "x": 303.33, + "y": 84 + }, + { + "x": 239.32999999999998, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 52 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 202 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 239.32999999999998, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 303.33, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.33, + "y": 84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 239.32999999999998, + "y": 84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 210 + }, + "bounds": { + "#": 213 + }, + "collisionFilter": { + "#": 216 + }, + "constraintImpulse": { + "#": 217 + }, + "density": 0.001, + "force": { + "#": 218 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 219 + }, + "positionImpulse": { + "#": 220 + }, + "positionPrev": { + "#": 221 + }, + "render": { + "#": 222 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 224 + }, + "vertices": { + "#": 225 + } + }, + [ + { + "#": 211 + }, + { + "#": 212 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 214 + }, + "min": { + "#": 215 + } + }, + { + "x": 367.33, + "y": 84 + }, + { + "x": 303.33, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.33, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.33, + "y": 52 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 223 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 303.33, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 367.33, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 367.33, + "y": 84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.33, + "y": 84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 231 + }, + "bounds": { + "#": 245 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 248 + }, + "constraintImpulse": { + "#": 249 + }, + "density": 0.0005, + "force": { + "#": 250 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 14, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 251 + }, + "positionImpulse": { + "#": 252 + }, + "positionPrev": { + "#": 253 + }, + "render": { + "#": 254 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 256 + }, + "vertices": { + "#": 257 + } + }, + [ + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 246 + }, + "min": { + "#": 247 + } + }, + { + "x": 458.66, + "y": 112 + }, + { + "x": 367.33, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.995, + "y": 66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.995, + "y": 66 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 255 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 258 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 458.66, + "y": 71.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 456.00600000000003, + "y": 82.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.85200000000003, + "y": 92.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 443.499, + "y": 100.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 434.372, + "y": 106.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 424.004, + "y": 110.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 412.995, + "y": 112 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 401.986, + "y": 110.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.618, + "y": 106.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 382.491, + "y": 100.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 375.138, + "y": 92.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 369.984, + "y": 82.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.33, + "y": 71.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 367.33, + "y": 60.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 369.984, + "y": 49.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 375.138, + "y": 39.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 382.491, + "y": 31.569000000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.618, + "y": 25.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 401.986, + "y": 21.337000000000003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 412.995, + "y": 20 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 424.004, + "y": 21.337000000000003 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 434.372, + "y": 25.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 443.499, + "y": 31.569000000000003 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 450.85200000000003, + "y": 39.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 456.00600000000003, + "y": 49.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 458.66, + "y": 60.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 285 + }, + "bounds": { + "#": 288 + }, + "collisionFilter": { + "#": 291 + }, + "constraintImpulse": { + "#": 292 + }, + "density": 0.001, + "force": { + "#": 293 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 294 + }, + "positionImpulse": { + "#": 295 + }, + "positionPrev": { + "#": 296 + }, + "render": { + "#": 297 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 299 + }, + "vertices": { + "#": 300 + } + }, + [ + { + "#": 286 + }, + { + "#": 287 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 289 + }, + "min": { + "#": 290 + } + }, + { + "x": 522.6600000000001, + "y": 84 + }, + { + "x": 458.66, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.66, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.66, + "y": 52 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 298 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 458.66, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 522.6600000000001, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 522.6600000000001, + "y": 84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 458.66, + "y": 84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 306 + }, + "bounds": { + "#": 309 + }, + "collisionFilter": { + "#": 312 + }, + "constraintImpulse": { + "#": 313 + }, + "density": 0.001, + "force": { + "#": 314 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 315 + }, + "positionImpulse": { + "#": 316 + }, + "positionPrev": { + "#": 317 + }, + "render": { + "#": 318 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 320 + }, + "vertices": { + "#": 321 + } + }, + [ + { + "#": 307 + }, + { + "#": 308 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 310 + }, + "min": { + "#": 311 + } + }, + { + "x": 586.6600000000001, + "y": 84 + }, + { + "x": 522.6600000000001, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 554.6600000000001, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 554.6600000000001, + "y": 52 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 319 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.6600000000001, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.6600000000001, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.6600000000001, + "y": 84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 522.6600000000001, + "y": 84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 327 + }, + "bounds": { + "#": 330 + }, + "collisionFilter": { + "#": 333 + }, + "constraintImpulse": { + "#": 334 + }, + "density": 0.001, + "force": { + "#": 335 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 336 + }, + "positionImpulse": { + "#": 337 + }, + "positionPrev": { + "#": 338 + }, + "render": { + "#": 339 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 341 + }, + "vertices": { + "#": 342 + } + }, + [ + { + "#": 328 + }, + { + "#": 329 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 331 + }, + "min": { + "#": 332 + } + }, + { + "x": 650.6600000000001, + "y": 84 + }, + { + "x": 586.6600000000001, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6600000000001, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6600000000001, + "y": 52 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 340 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 586.6600000000001, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650.6600000000001, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650.6600000000001, + "y": 84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.6600000000001, + "y": 84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 348 + }, + "bounds": { + "#": 362 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 365 + }, + "constraintImpulse": { + "#": 366 + }, + "density": 0.0005, + "force": { + "#": 367 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 18, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 368 + }, + "positionImpulse": { + "#": 369 + }, + "positionPrev": { + "#": 370 + }, + "render": { + "#": 371 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 373 + }, + "vertices": { + "#": 374 + } + }, + [ + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 363 + }, + "min": { + "#": 364 + } + }, + { + "x": 741.99, + "y": 112 + }, + { + "x": 650.6600000000001, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 696.325, + "y": 66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 696.325, + "y": 66 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 372 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + }, + { + "#": 400 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 741.99, + "y": 71.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 739.336, + "y": 82.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 734.182, + "y": 92.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 726.8290000000001, + "y": 100.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 717.702, + "y": 106.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 707.3340000000001, + "y": 110.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 696.325, + "y": 112 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 685.316, + "y": 110.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 674.9480000000001, + "y": 106.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 665.821, + "y": 100.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 658.4680000000001, + "y": 92.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 653.3140000000001, + "y": 82.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 650.6600000000001, + "y": 71.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 650.6600000000001, + "y": 60.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 653.3140000000001, + "y": 49.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4680000000001, + "y": 39.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 665.821, + "y": 31.569000000000003 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 674.9480000000001, + "y": 25.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 685.316, + "y": 21.337000000000003 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 696.325, + "y": 20 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 707.3340000000001, + "y": 21.337000000000003 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 717.702, + "y": 25.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 726.8290000000001, + "y": 31.569000000000003 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 734.182, + "y": 39.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 739.336, + "y": 49.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 741.99, + "y": 60.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 402 + }, + "bounds": { + "#": 405 + }, + "collisionFilter": { + "#": 408 + }, + "constraintImpulse": { + "#": 409 + }, + "density": 0.001, + "force": { + "#": 410 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 411 + }, + "positionImpulse": { + "#": 412 + }, + "positionPrev": { + "#": 413 + }, + "render": { + "#": 414 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 416 + }, + "vertices": { + "#": 417 + } + }, + [ + { + "#": 403 + }, + { + "#": 404 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 406 + }, + "min": { + "#": 407 + } + }, + { + "x": 84, + "y": 176 + }, + { + "x": 20, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52, + "y": 144 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 415 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 112 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 84, + "y": 112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 84, + "y": 176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 176 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 423 + }, + "bounds": { + "#": 437 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 440 + }, + "constraintImpulse": { + "#": 441 + }, + "density": 0.0005, + "force": { + "#": 442 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 20, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 443 + }, + "positionImpulse": { + "#": 444 + }, + "positionPrev": { + "#": 445 + }, + "render": { + "#": 446 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 448 + }, + "vertices": { + "#": 449 + } + }, + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 438 + }, + "min": { + "#": 439 + } + }, + { + "x": 175.32999999999998, + "y": 204 + }, + { + "x": 84, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.665, + "y": 158 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.665, + "y": 158 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 447 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.32999999999998, + "y": 163.54500000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 172.676, + "y": 174.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.522, + "y": 184.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160.16899999999998, + "y": 192.43099999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.04199999999997, + "y": 198.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 140.67399999999998, + "y": 202.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 129.665, + "y": 204 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.65599999999999, + "y": 202.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.288, + "y": 198.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 99.16099999999999, + "y": 192.43099999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 91.80799999999999, + "y": 184.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.654, + "y": 174.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 84, + "y": 163.54500000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 84, + "y": 152.45499999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 86.654, + "y": 141.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 91.80799999999999, + "y": 131.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 99.16099999999999, + "y": 123.569 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 108.288, + "y": 117.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.65599999999999, + "y": 113.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 129.665, + "y": 112 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.67399999999998, + "y": 113.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 151.04199999999997, + "y": 117.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 160.16899999999998, + "y": 123.569 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 167.522, + "y": 131.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 172.676, + "y": 141.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 175.32999999999998, + "y": 152.45499999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 477 + }, + "bounds": { + "#": 480 + }, + "collisionFilter": { + "#": 483 + }, + "constraintImpulse": { + "#": 484 + }, + "density": 0.001, + "force": { + "#": 485 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 486 + }, + "positionImpulse": { + "#": 487 + }, + "positionPrev": { + "#": 488 + }, + "render": { + "#": 489 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 491 + }, + "vertices": { + "#": 492 + } + }, + [ + { + "#": 478 + }, + { + "#": 479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 481 + }, + "min": { + "#": 482 + } + }, + { + "x": 239.32999999999998, + "y": 176 + }, + { + "x": 175.32999999999998, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 144 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 490 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.32999999999998, + "y": 112 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 239.32999999999998, + "y": 112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.32999999999998, + "y": 176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175.32999999999998, + "y": 176 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 498 + }, + "bounds": { + "#": 501 + }, + "collisionFilter": { + "#": 504 + }, + "constraintImpulse": { + "#": 505 + }, + "density": 0.001, + "force": { + "#": 506 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 507 + }, + "positionImpulse": { + "#": 508 + }, + "positionPrev": { + "#": 509 + }, + "render": { + "#": 510 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 512 + }, + "vertices": { + "#": 513 + } + }, + [ + { + "#": 499 + }, + { + "#": 500 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 502 + }, + "min": { + "#": 503 + } + }, + { + "x": 303.33, + "y": 176 + }, + { + "x": 239.32999999999998, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 144 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 511 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 239.32999999999998, + "y": 112 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 303.33, + "y": 112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.33, + "y": 176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 239.32999999999998, + "y": 176 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 519 + }, + "bounds": { + "#": 522 + }, + "collisionFilter": { + "#": 525 + }, + "constraintImpulse": { + "#": 526 + }, + "density": 0.001, + "force": { + "#": 527 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 528 + }, + "positionImpulse": { + "#": 529 + }, + "positionPrev": { + "#": 530 + }, + "render": { + "#": 531 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 533 + }, + "vertices": { + "#": 534 + } + }, + [ + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 523 + }, + "min": { + "#": 524 + } + }, + { + "x": 367.33, + "y": 176 + }, + { + "x": 303.33, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.33, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.33, + "y": 144 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 532 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 303.33, + "y": 112 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 367.33, + "y": 112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 367.33, + "y": 176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.33, + "y": 176 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 540 + }, + "bounds": { + "#": 543 + }, + "collisionFilter": { + "#": 546 + }, + "constraintImpulse": { + "#": 547 + }, + "density": 0.001, + "force": { + "#": 548 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 549 + }, + "positionImpulse": { + "#": 550 + }, + "positionPrev": { + "#": 551 + }, + "render": { + "#": 552 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 554 + }, + "vertices": { + "#": 555 + } + }, + [ + { + "#": 541 + }, + { + "#": 542 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 544 + }, + "min": { + "#": 545 + } + }, + { + "x": 431.33, + "y": 176 + }, + { + "x": 367.33, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.33, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.33, + "y": 144 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 553 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.33, + "y": 112 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 431.33, + "y": 112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.33, + "y": 176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 367.33, + "y": 176 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 561 + }, + "bounds": { + "#": 575 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 578 + }, + "constraintImpulse": { + "#": 579 + }, + "density": 0.0005, + "force": { + "#": 580 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 25, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 581 + }, + "positionImpulse": { + "#": 582 + }, + "positionPrev": { + "#": 583 + }, + "render": { + "#": 584 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 586 + }, + "vertices": { + "#": 587 + } + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 576 + }, + "min": { + "#": 577 + } + }, + { + "x": 522.6600000000001, + "y": 204 + }, + { + "x": 431.33, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.995, + "y": 158 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.995, + "y": 158 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 585 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.6600000000001, + "y": 163.54500000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520.0060000000001, + "y": 174.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 514.8520000000001, + "y": 184.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 507.499, + "y": 192.43099999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 498.372, + "y": 198.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 488.004, + "y": 202.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 476.995, + "y": 204 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 465.986, + "y": 202.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.618, + "y": 198.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 446.491, + "y": 192.43099999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 439.138, + "y": 184.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 433.984, + "y": 174.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 431.33, + "y": 163.54500000000002 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 431.33, + "y": 152.45499999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 433.984, + "y": 141.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 439.138, + "y": 131.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 446.491, + "y": 123.569 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 455.618, + "y": 117.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 465.986, + "y": 113.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 476.995, + "y": 112 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 488.004, + "y": 113.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 498.372, + "y": 117.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 507.499, + "y": 123.569 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 514.8520000000001, + "y": 131.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 520.0060000000001, + "y": 141.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 522.6600000000001, + "y": 152.45499999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 615 + }, + "bounds": { + "#": 618 + }, + "collisionFilter": { + "#": 621 + }, + "constraintImpulse": { + "#": 622 + }, + "density": 0.001, + "force": { + "#": 623 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 624 + }, + "positionImpulse": { + "#": 625 + }, + "positionPrev": { + "#": 626 + }, + "render": { + "#": 627 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 629 + }, + "vertices": { + "#": 630 + } + }, + [ + { + "#": 616 + }, + { + "#": 617 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 619 + }, + "min": { + "#": 620 + } + }, + { + "x": 586.6600000000001, + "y": 176 + }, + { + "x": 522.6600000000001, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 554.6600000000001, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 554.6600000000001, + "y": 144 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 628 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.6600000000001, + "y": 112 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.6600000000001, + "y": 112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.6600000000001, + "y": 176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 522.6600000000001, + "y": 176 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 636 + }, + "bounds": { + "#": 639 + }, + "collisionFilter": { + "#": 642 + }, + "constraintImpulse": { + "#": 643 + }, + "density": 0.001, + "force": { + "#": 644 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 645 + }, + "positionImpulse": { + "#": 646 + }, + "positionPrev": { + "#": 647 + }, + "render": { + "#": 648 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 650 + }, + "vertices": { + "#": 651 + } + }, + [ + { + "#": 637 + }, + { + "#": 638 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 640 + }, + "min": { + "#": 641 + } + }, + { + "x": 650.6600000000001, + "y": 176 + }, + { + "x": 586.6600000000001, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6600000000001, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6600000000001, + "y": 144 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 649 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 586.6600000000001, + "y": 112 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650.6600000000001, + "y": 112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650.6600000000001, + "y": 176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.6600000000001, + "y": 176 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 657 + }, + "bounds": { + "#": 660 + }, + "collisionFilter": { + "#": 663 + }, + "constraintImpulse": { + "#": 664 + }, + "density": 0.001, + "force": { + "#": 665 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 666 + }, + "positionImpulse": { + "#": 667 + }, + "positionPrev": { + "#": 668 + }, + "render": { + "#": 669 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 671 + }, + "vertices": { + "#": 672 + } + }, + [ + { + "#": 658 + }, + { + "#": 659 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 661 + }, + "min": { + "#": 662 + } + }, + { + "x": 714.6600000000001, + "y": 176 + }, + { + "x": 650.6600000000001, + "y": 112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 682.6600000000001, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 682.6600000000001, + "y": 144 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 670 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650.6600000000001, + "y": 112 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 714.6600000000001, + "y": 112 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 714.6600000000001, + "y": 176 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650.6600000000001, + "y": 176 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 678 + }, + "bounds": { + "#": 681 + }, + "collisionFilter": { + "#": 684 + }, + "constraintImpulse": { + "#": 685 + }, + "density": 0.001, + "force": { + "#": 686 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 687 + }, + "positionImpulse": { + "#": 688 + }, + "positionPrev": { + "#": 689 + }, + "render": { + "#": 690 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 692 + }, + "vertices": { + "#": 693 + } + }, + [ + { + "#": 679 + }, + { + "#": 680 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 682 + }, + "min": { + "#": 683 + } + }, + { + "x": 84, + "y": 268 + }, + { + "x": 20, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52, + "y": 236 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 691 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 204 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 84, + "y": 204 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 84, + "y": 268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 268 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 699 + }, + "bounds": { + "#": 713 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 716 + }, + "constraintImpulse": { + "#": 717 + }, + "density": 0.0005, + "force": { + "#": 718 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 30, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 719 + }, + "positionImpulse": { + "#": 720 + }, + "positionPrev": { + "#": 721 + }, + "render": { + "#": 722 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 724 + }, + "vertices": { + "#": 725 + } + }, + [ + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 714 + }, + "min": { + "#": 715 + } + }, + { + "x": 175.32999999999998, + "y": 296 + }, + { + "x": 84, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.665, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.665, + "y": 250 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 723 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.32999999999998, + "y": 255.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 172.676, + "y": 266.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.522, + "y": 276.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160.16899999999998, + "y": 284.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.04199999999997, + "y": 290.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 140.67399999999998, + "y": 294.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 129.665, + "y": 296 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.65599999999999, + "y": 294.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.288, + "y": 290.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 99.16099999999999, + "y": 284.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 91.80799999999999, + "y": 276.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.654, + "y": 266.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 84, + "y": 255.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 84, + "y": 244.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 86.654, + "y": 233.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 91.80799999999999, + "y": 223.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 99.16099999999999, + "y": 215.56900000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 108.288, + "y": 209.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.65599999999999, + "y": 205.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 129.665, + "y": 204 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.67399999999998, + "y": 205.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 151.04199999999997, + "y": 209.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 160.16899999999998, + "y": 215.56900000000002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 167.522, + "y": 223.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 172.676, + "y": 233.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 175.32999999999998, + "y": 244.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 753 + }, + "bounds": { + "#": 756 + }, + "collisionFilter": { + "#": 759 + }, + "constraintImpulse": { + "#": 760 + }, + "density": 0.001, + "force": { + "#": 761 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 762 + }, + "positionImpulse": { + "#": 763 + }, + "positionPrev": { + "#": 764 + }, + "render": { + "#": 765 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 767 + }, + "vertices": { + "#": 768 + } + }, + [ + { + "#": 754 + }, + { + "#": 755 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 757 + }, + "min": { + "#": 758 + } + }, + { + "x": 239.32999999999998, + "y": 268 + }, + { + "x": 175.32999999999998, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 236 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 766 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.32999999999998, + "y": 204 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 239.32999999999998, + "y": 204 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.32999999999998, + "y": 268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175.32999999999998, + "y": 268 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 774 + }, + "bounds": { + "#": 777 + }, + "collisionFilter": { + "#": 780 + }, + "constraintImpulse": { + "#": 781 + }, + "density": 0.001, + "force": { + "#": 782 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 783 + }, + "positionImpulse": { + "#": 784 + }, + "positionPrev": { + "#": 785 + }, + "render": { + "#": 786 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 788 + }, + "vertices": { + "#": 789 + } + }, + [ + { + "#": 775 + }, + { + "#": 776 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 778 + }, + "min": { + "#": 779 + } + }, + { + "x": 303.33, + "y": 268 + }, + { + "x": 239.32999999999998, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 236 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 787 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 239.32999999999998, + "y": 204 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 303.33, + "y": 204 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.33, + "y": 268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 239.32999999999998, + "y": 268 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 795 + }, + "bounds": { + "#": 809 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 812 + }, + "constraintImpulse": { + "#": 813 + }, + "density": 0.0005, + "force": { + "#": 814 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 33, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 815 + }, + "positionImpulse": { + "#": 816 + }, + "positionPrev": { + "#": 817 + }, + "render": { + "#": 818 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 820 + }, + "vertices": { + "#": 821 + } + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 810 + }, + "min": { + "#": 811 + } + }, + { + "x": 394.66, + "y": 296 + }, + { + "x": 303.33, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.995, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.995, + "y": 250 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 819 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.66, + "y": 255.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 392.00600000000003, + "y": 266.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 386.85200000000003, + "y": 276.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 379.499, + "y": 284.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 370.372, + "y": 290.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 360.004, + "y": 294.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.995, + "y": 296 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 337.986, + "y": 294.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 327.618, + "y": 290.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 318.491, + "y": 284.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 311.138, + "y": 276.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 305.984, + "y": 266.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 303.33, + "y": 255.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.33, + "y": 244.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 305.984, + "y": 233.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 311.138, + "y": 223.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.491, + "y": 215.56900000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 327.618, + "y": 209.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 337.986, + "y": 205.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 348.995, + "y": 204 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 360.004, + "y": 205.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 370.372, + "y": 209.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 379.499, + "y": 215.56900000000002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 386.85200000000003, + "y": 223.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 392.00600000000003, + "y": 233.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 394.66, + "y": 244.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 849 + }, + "bounds": { + "#": 852 + }, + "collisionFilter": { + "#": 855 + }, + "constraintImpulse": { + "#": 856 + }, + "density": 0.001, + "force": { + "#": 857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 858 + }, + "positionImpulse": { + "#": 859 + }, + "positionPrev": { + "#": 860 + }, + "render": { + "#": 861 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 863 + }, + "vertices": { + "#": 864 + } + }, + [ + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 853 + }, + "min": { + "#": 854 + } + }, + { + "x": 458.66, + "y": 268 + }, + { + "x": 394.66, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.66, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.66, + "y": 236 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 862 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.66, + "y": 204 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 458.66, + "y": 204 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 458.66, + "y": 268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 394.66, + "y": 268 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 870 + }, + "bounds": { + "#": 884 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 887 + }, + "constraintImpulse": { + "#": 888 + }, + "density": 0.0005, + "force": { + "#": 889 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 35, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 890 + }, + "positionImpulse": { + "#": 891 + }, + "positionPrev": { + "#": 892 + }, + "render": { + "#": 893 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 895 + }, + "vertices": { + "#": 896 + } + }, + [ + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 885 + }, + "min": { + "#": 886 + } + }, + { + "x": 549.99, + "y": 296 + }, + { + "x": 458.66, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 504.32500000000005, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 504.32500000000005, + "y": 250 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 894 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.99, + "y": 255.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.336, + "y": 266.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 542.182, + "y": 276.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 534.8290000000001, + "y": 284.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 525.702, + "y": 290.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 515.3340000000001, + "y": 294.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 504.32500000000005, + "y": 296 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 493.31600000000003, + "y": 294.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 482.94800000000004, + "y": 290.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.821, + "y": 284.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 466.468, + "y": 276.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 461.314, + "y": 266.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 458.66, + "y": 255.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 458.66, + "y": 244.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 461.314, + "y": 233.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 466.468, + "y": 223.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 473.821, + "y": 215.56900000000002 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 482.94800000000004, + "y": 209.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 493.31600000000003, + "y": 205.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 504.32500000000005, + "y": 204 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 515.3340000000001, + "y": 205.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 525.702, + "y": 209.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 534.8290000000001, + "y": 215.56900000000002 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 542.182, + "y": 223.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 547.336, + "y": 233.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 549.99, + "y": 244.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 924 + }, + "bounds": { + "#": 927 + }, + "collisionFilter": { + "#": 930 + }, + "constraintImpulse": { + "#": 931 + }, + "density": 0.001, + "force": { + "#": 932 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 933 + }, + "positionImpulse": { + "#": 934 + }, + "positionPrev": { + "#": 935 + }, + "render": { + "#": 936 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 938 + }, + "vertices": { + "#": 939 + } + }, + [ + { + "#": 925 + }, + { + "#": 926 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 928 + }, + "min": { + "#": 929 + } + }, + { + "x": 613.99, + "y": 268 + }, + { + "x": 549.99, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.99, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.99, + "y": 236 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 937 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.99, + "y": 204 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.99, + "y": 204 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 613.99, + "y": 268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 549.99, + "y": 268 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 945 + }, + "bounds": { + "#": 948 + }, + "collisionFilter": { + "#": 951 + }, + "constraintImpulse": { + "#": 952 + }, + "density": 0.001, + "force": { + "#": 953 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 954 + }, + "positionImpulse": { + "#": 955 + }, + "positionPrev": { + "#": 956 + }, + "render": { + "#": 957 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 959 + }, + "vertices": { + "#": 960 + } + }, + [ + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 949 + }, + "min": { + "#": 950 + } + }, + { + "x": 677.99, + "y": 268 + }, + { + "x": 613.99, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.99, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 645.99, + "y": 236 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 958 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 613.99, + "y": 204 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 677.99, + "y": 204 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 677.99, + "y": 268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 613.99, + "y": 268 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 966 + }, + "bounds": { + "#": 969 + }, + "collisionFilter": { + "#": 972 + }, + "constraintImpulse": { + "#": 973 + }, + "density": 0.001, + "force": { + "#": 974 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 975 + }, + "positionImpulse": { + "#": 976 + }, + "positionPrev": { + "#": 977 + }, + "render": { + "#": 978 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 980 + }, + "vertices": { + "#": 981 + } + }, + [ + { + "#": 967 + }, + { + "#": 968 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 970 + }, + "min": { + "#": 971 + } + }, + { + "x": 741.99, + "y": 268 + }, + { + "x": 677.99, + "y": 204 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 709.99, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 709.99, + "y": 236 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 979 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 677.99, + "y": 204 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 741.99, + "y": 204 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 741.99, + "y": 268 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 677.99, + "y": 268 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 987 + }, + "bounds": { + "#": 990 + }, + "collisionFilter": { + "#": 993 + }, + "constraintImpulse": { + "#": 994 + }, + "density": 0.001, + "force": { + "#": 995 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 996 + }, + "positionImpulse": { + "#": 997 + }, + "positionPrev": { + "#": 998 + }, + "render": { + "#": 999 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1001 + }, + "vertices": { + "#": 1002 + } + }, + [ + { + "#": 988 + }, + { + "#": 989 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 991 + }, + "min": { + "#": 992 + } + }, + { + "x": 84, + "y": 360 + }, + { + "x": 20, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52, + "y": 328 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1000 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 84, + "y": 296 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 84, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 360 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 1008 + }, + "bounds": { + "#": 1022 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 1025 + }, + "constraintImpulse": { + "#": 1026 + }, + "density": 0.0005, + "force": { + "#": 1027 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 40, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 1028 + }, + "positionImpulse": { + "#": 1029 + }, + "positionPrev": { + "#": 1030 + }, + "render": { + "#": 1031 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1033 + }, + "vertices": { + "#": 1034 + } + }, + [ + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1023 + }, + "min": { + "#": 1024 + } + }, + { + "x": 175.32999999999998, + "y": 388 + }, + { + "x": 84, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.665, + "y": 342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.665, + "y": 342 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1032 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.32999999999998, + "y": 347.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 172.676, + "y": 358.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.522, + "y": 368.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160.16899999999998, + "y": 376.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.04199999999997, + "y": 382.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 140.67399999999998, + "y": 386.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 129.665, + "y": 388 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.65599999999999, + "y": 386.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.288, + "y": 382.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 99.16099999999999, + "y": 376.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 91.80799999999999, + "y": 368.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.654, + "y": 358.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 84, + "y": 347.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 84, + "y": 336.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 86.654, + "y": 325.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 91.80799999999999, + "y": 315.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 99.16099999999999, + "y": 307.569 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 108.288, + "y": 301.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.65599999999999, + "y": 297.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 129.665, + "y": 296 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.67399999999998, + "y": 297.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 151.04199999999997, + "y": 301.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 160.16899999999998, + "y": 307.569 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 167.522, + "y": 315.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 172.676, + "y": 325.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 175.32999999999998, + "y": 336.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 1062 + }, + "bounds": { + "#": 1076 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 1079 + }, + "constraintImpulse": { + "#": 1080 + }, + "density": 0.0005, + "force": { + "#": 1081 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 41, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 1082 + }, + "positionImpulse": { + "#": 1083 + }, + "positionPrev": { + "#": 1084 + }, + "render": { + "#": 1085 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1087 + }, + "vertices": { + "#": 1088 + } + }, + [ + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1077 + }, + "min": { + "#": 1078 + } + }, + { + "x": 266.65999999999997, + "y": 388 + }, + { + "x": 175.32999999999998, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220.99499999999998, + "y": 342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 220.99499999999998, + "y": 342 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1086 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 266.65999999999997, + "y": 347.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 264.006, + "y": 358.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 258.852, + "y": 368.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 251.49899999999997, + "y": 376.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 242.37199999999999, + "y": 382.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 232.004, + "y": 386.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 220.99499999999998, + "y": 388 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 209.98599999999996, + "y": 386.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 199.61799999999997, + "y": 382.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 190.49099999999999, + "y": 376.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 183.13799999999998, + "y": 368.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 177.98399999999998, + "y": 358.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 175.32999999999998, + "y": 347.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 175.32999999999998, + "y": 336.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 177.98399999999998, + "y": 325.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 183.13799999999998, + "y": 315.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 190.49099999999999, + "y": 307.569 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 199.61799999999997, + "y": 301.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 209.98599999999996, + "y": 297.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 220.99499999999998, + "y": 296 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 232.004, + "y": 297.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 242.37199999999999, + "y": 301.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 251.49899999999997, + "y": 307.569 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 258.852, + "y": 315.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 264.006, + "y": 325.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 266.65999999999997, + "y": 336.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 1116 + }, + "bounds": { + "#": 1119 + }, + "collisionFilter": { + "#": 1122 + }, + "constraintImpulse": { + "#": 1123 + }, + "density": 0.001, + "force": { + "#": 1124 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1125 + }, + "positionImpulse": { + "#": 1126 + }, + "positionPrev": { + "#": 1127 + }, + "render": { + "#": 1128 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1130 + }, + "vertices": { + "#": 1131 + } + }, + [ + { + "#": 1117 + }, + { + "#": 1118 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1120 + }, + "min": { + "#": 1121 + } + }, + { + "x": 330.65999999999997, + "y": 360 + }, + { + "x": 266.65999999999997, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.65999999999997, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.65999999999997, + "y": 328 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1129 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 266.65999999999997, + "y": 296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330.65999999999997, + "y": 296 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 330.65999999999997, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 266.65999999999997, + "y": 360 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 1137 + }, + "bounds": { + "#": 1140 + }, + "collisionFilter": { + "#": 1143 + }, + "constraintImpulse": { + "#": 1144 + }, + "density": 0.001, + "force": { + "#": 1145 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1146 + }, + "positionImpulse": { + "#": 1147 + }, + "positionPrev": { + "#": 1148 + }, + "render": { + "#": 1149 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1151 + }, + "vertices": { + "#": 1152 + } + }, + [ + { + "#": 1138 + }, + { + "#": 1139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1141 + }, + "min": { + "#": 1142 + } + }, + { + "x": 394.65999999999997, + "y": 360 + }, + { + "x": 330.65999999999997, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.65999999999997, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.65999999999997, + "y": 328 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1150 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 330.65999999999997, + "y": 296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.65999999999997, + "y": 296 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 394.65999999999997, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 330.65999999999997, + "y": 360 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 1158 + }, + "bounds": { + "#": 1161 + }, + "collisionFilter": { + "#": 1164 + }, + "constraintImpulse": { + "#": 1165 + }, + "density": 0.001, + "force": { + "#": 1166 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1167 + }, + "positionImpulse": { + "#": 1168 + }, + "positionPrev": { + "#": 1169 + }, + "render": { + "#": 1170 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1172 + }, + "vertices": { + "#": 1173 + } + }, + [ + { + "#": 1159 + }, + { + "#": 1160 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1162 + }, + "min": { + "#": 1163 + } + }, + { + "x": 458.65999999999997, + "y": 360 + }, + { + "x": 394.65999999999997, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.65999999999997, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.65999999999997, + "y": 328 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1171 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.65999999999997, + "y": 296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 458.65999999999997, + "y": 296 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 458.65999999999997, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 394.65999999999997, + "y": 360 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 1179 + }, + "bounds": { + "#": 1193 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 1196 + }, + "constraintImpulse": { + "#": 1197 + }, + "density": 0.0005, + "force": { + "#": 1198 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 45, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 1199 + }, + "positionImpulse": { + "#": 1200 + }, + "positionPrev": { + "#": 1201 + }, + "render": { + "#": 1202 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1204 + }, + "vertices": { + "#": 1205 + } + }, + [ + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1194 + }, + "min": { + "#": 1195 + } + }, + { + "x": 549.99, + "y": 388 + }, + { + "x": 458.65999999999997, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 504.325, + "y": 342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 504.325, + "y": 342 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1203 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.99, + "y": 347.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.336, + "y": 358.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 542.182, + "y": 368.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 534.829, + "y": 376.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 525.702, + "y": 382.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 515.3340000000001, + "y": 386.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 504.325, + "y": 388 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 493.316, + "y": 386.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 482.948, + "y": 382.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.82099999999997, + "y": 376.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 466.468, + "y": 368.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 461.31399999999996, + "y": 358.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 458.65999999999997, + "y": 347.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 458.65999999999997, + "y": 336.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 461.31399999999996, + "y": 325.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 466.468, + "y": 315.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 473.82099999999997, + "y": 307.569 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 482.948, + "y": 301.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 493.316, + "y": 297.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 504.325, + "y": 296 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 515.3340000000001, + "y": 297.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 525.702, + "y": 301.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 534.829, + "y": 307.569 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 542.182, + "y": 315.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 547.336, + "y": 325.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 549.99, + "y": 336.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 1233 + }, + "bounds": { + "#": 1236 + }, + "collisionFilter": { + "#": 1239 + }, + "constraintImpulse": { + "#": 1240 + }, + "density": 0.001, + "force": { + "#": 1241 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1242 + }, + "positionImpulse": { + "#": 1243 + }, + "positionPrev": { + "#": 1244 + }, + "render": { + "#": 1245 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1247 + }, + "vertices": { + "#": 1248 + } + }, + [ + { + "#": 1234 + }, + { + "#": 1235 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1237 + }, + "min": { + "#": 1238 + } + }, + { + "x": 613.99, + "y": 360 + }, + { + "x": 549.99, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.99, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.99, + "y": 328 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1246 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.99, + "y": 296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 613.99, + "y": 296 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 613.99, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 549.99, + "y": 360 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 1254 + }, + "bounds": { + "#": 1268 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 1271 + }, + "constraintImpulse": { + "#": 1272 + }, + "density": 0.0005, + "force": { + "#": 1273 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 47, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 1274 + }, + "positionImpulse": { + "#": 1275 + }, + "positionPrev": { + "#": 1276 + }, + "render": { + "#": 1277 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1279 + }, + "vertices": { + "#": 1280 + } + }, + [ + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1269 + }, + "min": { + "#": 1270 + } + }, + { + "x": 705.3199999999999, + "y": 388 + }, + { + "x": 613.99, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 659.655, + "y": 342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 659.655, + "y": 342 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1278 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 705.3199999999999, + "y": 347.545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 702.6659999999999, + "y": 358.312 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 697.512, + "y": 368.131 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 690.159, + "y": 376.431 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 681.0319999999999, + "y": 382.731 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670.664, + "y": 386.663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 659.655, + "y": 388 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 648.646, + "y": 386.663 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 638.278, + "y": 382.731 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 629.151, + "y": 376.431 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 621.798, + "y": 368.131 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 616.644, + "y": 358.312 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 613.99, + "y": 347.545 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 613.99, + "y": 336.455 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 616.644, + "y": 325.688 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 621.798, + "y": 315.869 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 629.151, + "y": 307.569 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 638.278, + "y": 301.269 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 648.646, + "y": 297.337 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 659.655, + "y": 296 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 670.664, + "y": 297.337 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 681.0319999999999, + "y": 301.269 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 690.159, + "y": 307.569 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 697.512, + "y": 315.869 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 702.6659999999999, + "y": 325.688 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 705.3199999999999, + "y": 336.455 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 1308 + }, + "bounds": { + "#": 1311 + }, + "collisionFilter": { + "#": 1314 + }, + "constraintImpulse": { + "#": 1315 + }, + "density": 0.001, + "force": { + "#": 1316 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1317 + }, + "positionImpulse": { + "#": 1318 + }, + "positionPrev": { + "#": 1319 + }, + "render": { + "#": 1320 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1322 + }, + "vertices": { + "#": 1323 + } + }, + [ + { + "#": 1309 + }, + { + "#": 1310 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1312 + }, + "min": { + "#": 1313 + } + }, + { + "x": 769.3199999999999, + "y": 360 + }, + { + "x": 705.3199999999999, + "y": 296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 737.3199999999999, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 737.3199999999999, + "y": 328 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1321 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 705.3199999999999, + "y": 296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 769.3199999999999, + "y": 296 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 769.3199999999999, + "y": 360 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 705.3199999999999, + "y": 360 + }, + [], + [], + [ + { + "#": 1331 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1332 + }, + "pointB": "", + "render": { + "#": 1333 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/sprites/sprites-10.json b/tests/browser/refs/sprites/sprites-10.json new file mode 100644 index 00000000..304d2562 --- /dev/null +++ b/tests/browser/refs/sprites/sprites-10.json @@ -0,0 +1,12269 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 1374 + }, + "gravity": { + "#": 1378 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 41435.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 810.25, + "y": 15.25 + }, + { + "x": -10.25, + "y": -35.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -10 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -10 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -10.25, + "y": -35.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 810.25, + "y": -35.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 810.25, + "y": 15.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -10.25, + "y": 15.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 41435.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 810.25, + "y": 635.25 + }, + { + "x": -10.25, + "y": 584.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 610 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 610 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -10.25, + "y": 584.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 810.25, + "y": 584.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 810.25, + "y": 635.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -10.25, + "y": 635.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 31335.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 835.25, + "y": 610.25 + }, + { + "x": 784.75, + "y": -10.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 810, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 810, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 784.75, + "y": -10.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 835.25, + "y": -10.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 835.25, + "y": 610.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 784.75, + "y": 610.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 31335.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 15.25, + "y": 610.25 + }, + { + "x": -35.25, + "y": -10.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -10, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -10, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": false + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -35.25, + "y": -10.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 15.25, + "y": -10.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 15.25, + "y": 610.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -35.25, + "y": 610.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1372 + }, + "constraints": { + "#": 1373 + }, + "id": 8, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 151 + }, + { + "#": 173 + }, + { + "#": 195 + }, + { + "#": 217 + }, + { + "#": 239 + }, + { + "#": 294 + }, + { + "#": 316 + }, + { + "#": 338 + }, + { + "#": 360 + }, + { + "#": 415 + }, + { + "#": 437 + }, + { + "#": 492 + }, + { + "#": 514 + }, + { + "#": 536 + }, + { + "#": 558 + }, + { + "#": 580 + }, + { + "#": 635 + }, + { + "#": 657 + }, + { + "#": 679 + }, + { + "#": 701 + }, + { + "#": 723 + }, + { + "#": 778 + }, + { + "#": 800 + }, + { + "#": 822 + }, + { + "#": 877 + }, + { + "#": 899 + }, + { + "#": 954 + }, + { + "#": 976 + }, + { + "#": 998 + }, + { + "#": 1020 + }, + { + "#": 1042 + }, + { + "#": 1097 + }, + { + "#": 1152 + }, + { + "#": 1174 + }, + { + "#": 1196 + }, + { + "#": 1218 + }, + { + "#": 1273 + }, + { + "#": 1295 + }, + { + "#": 1350 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 97 + }, + "bounds": { + "#": 111 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 114 + }, + "constraintImpulse": { + "#": 115 + }, + "density": 0.0005, + "force": { + "#": 116 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 9, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 117 + }, + "positionImpulse": { + "#": 118 + }, + "positionPrev": { + "#": 119 + }, + "region": { + "#": 120 + }, + "render": { + "#": 121 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.2856564479203474, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 123 + }, + "vertices": { + "#": 124 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 112 + }, + "min": { + "#": 113 + } + }, + { + "x": 111.32999999999998, + "y": 127.11730824184053 + }, + { + "x": 19.999999999999993, + "y": 35.117308241840526 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 65.66499999999999, + "y": 81.11730824184053 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 65.66499999999999, + "y": 78.83165179392019 + }, + { + "endCol": 2, + "endRow": 2, + "id": "0,2,0,2", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 122 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.2856564479203474 + }, + [ + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 111.32999999999998, + "y": 86.66230824184053 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 108.67599999999999, + "y": 97.42930824184053 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 103.52199999999999, + "y": 107.24830824184053 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 96.169, + "y": 115.54830824184053 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 87.04199999999999, + "y": 121.84830824184053 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 76.67399999999999, + "y": 125.78030824184053 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 65.66499999999999, + "y": 127.11730824184053 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 54.65599999999999, + "y": 125.78030824184053 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 44.288, + "y": 121.84830824184053 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 35.16099999999999, + "y": 115.54830824184053 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 27.807999999999993, + "y": 107.24830824184053 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 22.65399999999999, + "y": 97.42930824184053 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 19.999999999999993, + "y": 86.66230824184053 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 19.999999999999993, + "y": 75.57230824184053 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 22.65399999999999, + "y": 64.80530824184054 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 27.807999999999993, + "y": 54.98630824184053 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 35.16099999999999, + "y": 46.686308241840536 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 44.288, + "y": 40.38630824184053 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 54.65599999999999, + "y": 36.45430824184053 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 65.66499999999999, + "y": 35.117308241840526 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 76.67399999999999, + "y": 36.45430824184053 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 87.04199999999999, + "y": 40.38630824184053 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 96.169, + "y": 46.686308241840536 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 103.52199999999999, + "y": 54.98630824184053 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 108.67599999999999, + "y": 64.80530824184054 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 111.32999999999998, + "y": 75.57230824184053 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 152 + }, + "bounds": { + "#": 155 + }, + "collisionFilter": { + "#": 158 + }, + "constraintImpulse": { + "#": 159 + }, + "density": 0.001, + "force": { + "#": 160 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 161 + }, + "positionImpulse": { + "#": 162 + }, + "positionPrev": { + "#": 163 + }, + "region": { + "#": 164 + }, + "render": { + "#": 165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 167 + }, + "vertices": { + "#": 168 + } + }, + [ + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 156 + }, + "min": { + "#": 157 + } + }, + { + "x": 175.32999999999998, + "y": 101.73575476702578 + }, + { + "x": 111.32999999999998, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 143.32999999999998, + "y": 69.7357547670258 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 143.32999999999998, + "y": 66.82848405199013 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,0,2", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 166 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 111.32999999999998, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175.32999999999998, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175.32999999999998, + "y": 101.73575476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 111.32999999999998, + "y": 101.73575476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 174 + }, + "bounds": { + "#": 177 + }, + "collisionFilter": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "density": 0.001, + "force": { + "#": 182 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 183 + }, + "positionImpulse": { + "#": 184 + }, + "positionPrev": { + "#": 185 + }, + "region": { + "#": 186 + }, + "render": { + "#": 187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 189 + }, + "vertices": { + "#": 190 + } + }, + [ + { + "#": 175 + }, + { + "#": 176 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 178 + }, + "min": { + "#": 179 + } + }, + { + "x": 239.32999999999998, + "y": 101.73575476702578 + }, + { + "x": 175.32999999999998, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 69.7357547670258 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 66.82848405199013 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,0,2", + "startCol": 3, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 188 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.32999999999998, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 239.32999999999998, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.32999999999998, + "y": 101.73575476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175.32999999999998, + "y": 101.73575476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 196 + }, + "bounds": { + "#": 199 + }, + "collisionFilter": { + "#": 202 + }, + "constraintImpulse": { + "#": 203 + }, + "density": 0.001, + "force": { + "#": 204 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 205 + }, + "positionImpulse": { + "#": 206 + }, + "positionPrev": { + "#": 207 + }, + "region": { + "#": 208 + }, + "render": { + "#": 209 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 211 + }, + "vertices": { + "#": 212 + } + }, + [ + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 200 + }, + "min": { + "#": 201 + } + }, + { + "x": 303.33, + "y": 101.73575476702578 + }, + { + "x": 239.32999999999998, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 69.7357547670258 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 66.82848405199013 + }, + { + "endCol": 6, + "endRow": 2, + "id": "4,6,0,2", + "startCol": 4, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 210 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 239.32999999999998, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 303.33, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.33, + "y": 101.73575476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 239.32999999999998, + "y": 101.73575476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 218 + }, + "bounds": { + "#": 221 + }, + "collisionFilter": { + "#": 224 + }, + "constraintImpulse": { + "#": 225 + }, + "density": 0.001, + "force": { + "#": 226 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 227 + }, + "positionImpulse": { + "#": 228 + }, + "positionPrev": { + "#": 229 + }, + "region": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 219 + }, + { + "#": 220 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 222 + }, + "min": { + "#": 223 + } + }, + { + "x": 367.33, + "y": 101.73575476702578 + }, + { + "x": 303.33, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.33, + "y": 69.7357547670258 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.33, + "y": 66.82848405199013 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,0,2", + "startCol": 6, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 303.33, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 367.33, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 367.33, + "y": 101.73575476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.33, + "y": 101.73575476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 240 + }, + "bounds": { + "#": 254 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "density": 0.0005, + "force": { + "#": 259 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 14, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 260 + }, + "positionImpulse": { + "#": 261 + }, + "positionPrev": { + "#": 262 + }, + "region": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.2856564479203474, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 255 + }, + "min": { + "#": 256 + } + }, + { + "x": 458.66, + "y": 127.11730824184053 + }, + { + "x": 367.33, + "y": 35.117308241840526 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.995, + "y": 81.11730824184053 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.995, + "y": 78.83165179392019 + }, + { + "endCol": 9, + "endRow": 2, + "id": "7,9,0,2", + "startCol": 7, + "startRow": 0 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.2856564479203474 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 458.66, + "y": 86.66230824184053 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 456.00600000000003, + "y": 97.42930824184053 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.85200000000003, + "y": 107.24830824184053 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 443.499, + "y": 115.54830824184053 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 434.372, + "y": 121.84830824184053 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 424.004, + "y": 125.78030824184053 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 412.995, + "y": 127.11730824184053 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 401.986, + "y": 125.78030824184053 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 391.618, + "y": 121.84830824184053 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 382.491, + "y": 115.54830824184053 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 375.138, + "y": 107.24830824184053 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 369.984, + "y": 97.42930824184053 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 367.33, + "y": 86.66230824184053 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 367.33, + "y": 75.57230824184053 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 369.984, + "y": 64.80530824184054 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 375.138, + "y": 54.98630824184053 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 382.491, + "y": 46.686308241840536 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 391.618, + "y": 40.38630824184053 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 401.986, + "y": 36.45430824184053 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 412.995, + "y": 35.117308241840526 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 424.004, + "y": 36.45430824184053 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 434.372, + "y": 40.38630824184053 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 443.499, + "y": 46.686308241840536 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 450.85200000000003, + "y": 54.98630824184053 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 456.00600000000003, + "y": 64.80530824184054 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 458.66, + "y": 75.57230824184053 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 295 + }, + "bounds": { + "#": 298 + }, + "collisionFilter": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "density": 0.001, + "force": { + "#": 303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 304 + }, + "positionImpulse": { + "#": 305 + }, + "positionPrev": { + "#": 306 + }, + "region": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 299 + }, + "min": { + "#": 300 + } + }, + { + "x": 522.6600000000001, + "y": 101.73575476702578 + }, + { + "x": 458.66, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.66, + "y": 69.7357547670258 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 490.66, + "y": 66.82848405199013 + }, + { + "endCol": 10, + "endRow": 2, + "id": "9,10,0,2", + "startCol": 9, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 458.66, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 522.6600000000001, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 522.6600000000001, + "y": 101.73575476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 458.66, + "y": 101.73575476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 317 + }, + "bounds": { + "#": 320 + }, + "collisionFilter": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "density": 0.001, + "force": { + "#": 325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 326 + }, + "positionImpulse": { + "#": 327 + }, + "positionPrev": { + "#": 328 + }, + "region": { + "#": 329 + }, + "render": { + "#": 330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 332 + }, + "vertices": { + "#": 333 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 321 + }, + "min": { + "#": 322 + } + }, + { + "x": 586.6600000000001, + "y": 101.73575476702578 + }, + { + "x": 522.6600000000001, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 554.6600000000001, + "y": 69.7357547670258 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 554.6600000000001, + "y": 66.82848405199013 + }, + { + "endCol": 12, + "endRow": 2, + "id": "10,12,0,2", + "startCol": 10, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 331 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.6600000000001, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.6600000000001, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.6600000000001, + "y": 101.73575476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 522.6600000000001, + "y": 101.73575476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 339 + }, + "bounds": { + "#": 342 + }, + "collisionFilter": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "density": 0.001, + "force": { + "#": 347 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 348 + }, + "positionImpulse": { + "#": 349 + }, + "positionPrev": { + "#": 350 + }, + "region": { + "#": 351 + }, + "render": { + "#": 352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 354 + }, + "vertices": { + "#": 355 + } + }, + [ + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 343 + }, + "min": { + "#": 344 + } + }, + { + "x": 650.6600000000001, + "y": 101.73575476702578 + }, + { + "x": 586.6600000000001, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6600000000001, + "y": 69.7357547670258 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6600000000001, + "y": 66.82848405199013 + }, + { + "endCol": 13, + "endRow": 2, + "id": "12,13,0,2", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 353 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356583 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 586.6600000000001, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650.6600000000001, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650.6600000000001, + "y": 101.73575476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.6600000000001, + "y": 101.73575476702578 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 361 + }, + "bounds": { + "#": 375 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 378 + }, + "constraintImpulse": { + "#": 379 + }, + "density": 0.0005, + "force": { + "#": 380 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 18, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 381 + }, + "positionImpulse": { + "#": 382 + }, + "positionPrev": { + "#": 383 + }, + "region": { + "#": 384 + }, + "render": { + "#": 385 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.2856564479203474, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 387 + }, + "vertices": { + "#": 388 + } + }, + [ + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 376 + }, + "min": { + "#": 377 + } + }, + { + "x": 741.99, + "y": 127.11730824184053 + }, + { + "x": 650.6600000000001, + "y": 35.117308241840526 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 696.325, + "y": 81.11730824184053 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 696.325, + "y": 78.83165179392019 + }, + { + "endCol": 15, + "endRow": 2, + "id": "13,15,0,2", + "startCol": 13, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 386 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.2856564479203474 + }, + [ + { + "#": 389 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 741.99, + "y": 86.66230824184053 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 739.336, + "y": 97.42930824184053 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 734.182, + "y": 107.24830824184053 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 726.8290000000001, + "y": 115.54830824184053 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 717.702, + "y": 121.84830824184053 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 707.3340000000001, + "y": 125.78030824184053 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 696.325, + "y": 127.11730824184053 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 685.316, + "y": 125.78030824184053 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 674.9480000000001, + "y": 121.84830824184053 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 665.821, + "y": 115.54830824184053 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 658.4680000000001, + "y": 107.24830824184053 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 653.3140000000001, + "y": 97.42930824184053 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 650.6600000000001, + "y": 86.66230824184053 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 650.6600000000001, + "y": 75.57230824184053 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 653.3140000000001, + "y": 64.80530824184054 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 658.4680000000001, + "y": 54.98630824184053 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 665.821, + "y": 46.686308241840536 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 674.9480000000001, + "y": 40.38630824184053 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 685.316, + "y": 36.45430824184053 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 696.325, + "y": 35.117308241840526 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 707.3340000000001, + "y": 36.45430824184053 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 717.702, + "y": 40.38630824184053 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 726.8290000000001, + "y": 46.686308241840536 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 734.182, + "y": 54.98630824184053 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 739.336, + "y": 64.80530824184054 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 741.99, + "y": 75.57230824184053 + }, + { + "angle": 0.00013133202755472056, + "anglePrev": 0.00009725051946377886, + "angularSpeed": 0.00006533603380862983, + "angularVelocity": 0.000050349987380676815, + "area": 4096, + "axes": { + "#": 416 + }, + "bounds": { + "#": 419 + }, + "collisionFilter": { + "#": 422 + }, + "constraintImpulse": { + "#": 423 + }, + "density": 0.001, + "force": { + "#": 424 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 425 + }, + "positionImpulse": { + "#": 426 + }, + "positionPrev": { + "#": 427 + }, + "region": { + "#": 428 + }, + "render": { + "#": 429 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9012845034050705, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 431 + }, + "vertices": { + "#": 432 + } + }, + [ + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": -0.00013133202717718255, + "y": 0.9999999913759493 + }, + { + "x": -0.9999999913759493, + "y": -0.00013133202717718255 + }, + { + "max": { + "#": 420 + }, + "min": { + "#": 421 + } + }, + { + "x": 84.00176889157186, + "y": 196.6290002592981 + }, + { + "x": 19.973076997203936, + "y": 129.71938198794746 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 51.997566542671805, + "y": 161.72358433684752 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52.03567707873121, + "y": 158.83474576079908 + }, + { + "endCol": 1, + "endRow": 4, + "id": "0,1,2,4", + "startCol": 0, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 430 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03782095449034273, + "y": 2.890386746750039 + }, + [ + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20.001769443511094, + "y": 129.71938198794746 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 84.00176889157186, + "y": 129.72778723768678 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 83.99336364183252, + "y": 193.72778668574756 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 19.993364193771754, + "y": 193.71938143600823 + }, + { + "angle": 0.006055222422243786, + "anglePrev": 0.0040878134596670805, + "angularSpeed": 0.0016292736823353355, + "angularVelocity": 0.0019888684818443877, + "area": 6583.099238, + "axes": { + "#": 438 + }, + "bounds": { + "#": 452 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "density": 0.0005, + "force": { + "#": 457 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 20, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 458 + }, + "positionImpulse": { + "#": 459 + }, + "positionPrev": { + "#": 460 + }, + "region": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.453126168764678, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "x": -0.9694712057737355, + "y": -0.24520518178786424 + }, + { + "x": -0.8826036146830966, + "y": -0.4701179206840897 + }, + { + "x": -0.744488831988794, + "y": -0.6676349144884207 + }, + { + "x": -0.5630763339913782, + "y": -0.8264048899291616 + }, + { + "x": -0.3489316521168905, + "y": -0.9371481751307938 + }, + { + "x": -0.11454703387526786, + "y": -0.9934178260079584 + }, + { + "x": 0.1265690717939189, + "y": -0.9919577965141589 + }, + { + "x": 0.3602550686384621, + "y": -0.9328538393126203 + }, + { + "x": 0.5730429295028509, + "y": -0.8195253510092233 + }, + { + "x": 0.7525193963927301, + "y": -0.6585700859078861 + }, + { + "x": 0.8882320908656192, + "y": -0.4593949855587136 + }, + { + "x": 0.9723695851689941, + "y": -0.23344676017944296 + }, + { + "x": 0.9999816671967241, + "y": 0.006055185419131408 + }, + { + "max": { + "#": 453 + }, + "min": { + "#": 454 + } + }, + { + "x": 175.34080759527893, + "y": 222.30074218534472 + }, + { + "x": 83.92329445161282, + "y": 127.84940160448957 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.64306875959144, + "y": 173.8485582955389 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.67139125134963, + "y": 171.34009733109153 + }, + { + "endCol": 3, + "endRow": 4, + "id": "1,3,2,4", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.02868284668039678, + "y": 2.5065344228703736 + }, + [ + { + "#": 466 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.27365558898074, + "y": 179.66996668230942 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 172.55450806283292, + "y": 190.42069883091415 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.34114668447052, + "y": 200.20831039546852 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 159.93802344659423, + "y": 208.4636344548145 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 150.77304310194916, + "y": 214.70825328083345 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 140.3814241873855, + "y": 218.57740103382542 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 129.3645302303114, + "y": 219.84771498658824 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.36382783904806, + "y": 218.44407796126694 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.01982690262045, + "y": 214.4493698834239 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 98.93114189425646, + "y": 208.09421970276418 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 91.62853473433775, + "y": 199.74984808664448 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.53408508723629, + "y": 189.8998196707896 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 83.94532992390396, + "y": 179.11694659798013 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 84.01248193020214, + "y": 168.0271499087684 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 86.73162945635002, + "y": 157.27641776016367 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 91.94499083471237, + "y": 147.4888061956093 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 99.34811407258866, + "y": 139.23348213626326 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 108.51309441723372, + "y": 132.98886331024434 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.90471333179737, + "y": 129.1197155572524 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 129.92160728887148, + "y": 127.84940160448957 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.9223096801348, + "y": 129.25303862981082 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 151.26631061656246, + "y": 133.24774670765387 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 160.35499562492643, + "y": 139.60289688831364 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 167.65760278484515, + "y": 147.94726850443334 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 172.7520524319466, + "y": 157.7972969202882 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 175.34080759527893, + "y": 168.58016999309768 + }, + { + "angle": 0.005422175440418826, + "anglePrev": 0.003771887191707081, + "angularSpeed": 0.0014283119309548978, + "angularVelocity": 0.0016698755686283453, + "area": 4096, + "axes": { + "#": 493 + }, + "bounds": { + "#": 496 + }, + "collisionFilter": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "density": 0.001, + "force": { + "#": 501 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 502 + }, + "positionImpulse": { + "#": 503 + }, + "positionPrev": { + "#": 504 + }, + "region": { + "#": 505 + }, + "render": { + "#": 506 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7695987446115153, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 508 + }, + "vertices": { + "#": 509 + } + }, + [ + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": -0.005422148871810417, + "y": 0.9999853000427618 + }, + { + "x": -0.9999853000427618, + "y": -0.005422148871810417 + }, + { + "max": { + "#": 497 + }, + "min": { + "#": 498 + } + }, + { + "x": 239.5043947689989, + "y": 196.16430117159177 + }, + { + "x": 175.15211181021516, + "y": 129.04863265003928 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.33135640373257, + "y": 161.22167101530562 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.3407161124738, + "y": 158.48431471752318 + }, + { + "endCol": 4, + "endRow": 4, + "id": "3,4,2,4", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 507 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0077235945285281105, + "y": 2.737410128506127 + }, + [ + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.5053355662621, + "y": 129.04863265003928 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 239.5043947689989, + "y": 129.39565017783517 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.15737724120305, + "y": 193.39470938057192 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175.15831803846623, + "y": 193.04769185277607 + }, + { + "angle": 0.0018683392725996402, + "anglePrev": 0.0011455948319789096, + "angularSpeed": 0.0005756784578758842, + "angularVelocity": 0.0007380667170469974, + "area": 4096, + "axes": { + "#": 515 + }, + "bounds": { + "#": 518 + }, + "collisionFilter": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "density": 0.001, + "force": { + "#": 523 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 524 + }, + "positionImpulse": { + "#": 525 + }, + "positionPrev": { + "#": 526 + }, + "region": { + "#": 527 + }, + "render": { + "#": 528 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.873267897179416, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 530 + }, + "vertices": { + "#": 531 + } + }, + [ + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "x": -0.0018683381856337842, + "y": 0.999998254654689 + }, + { + "x": -0.999998254654689, + "y": -0.0018683381856337842 + }, + { + "max": { + "#": 519 + }, + "min": { + "#": 520 + } + }, + { + "x": 303.4703197824493, + "y": 196.58007605751519 + }, + { + "x": 239.33387217610212, + "y": 129.5873964253809 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.3936031469924, + "y": 161.64712739627123 + }, + { + "x": 0.0002163946032205593, + "y": 0.000010902418154559488 + }, + { + "x": 271.3760201431898, + "y": 158.7851251899351 + }, + { + "endCol": 6, + "endRow": 4, + "id": "4,6,2,4", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 529 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.018923179880630414, + "y": 2.8619720936291912 + }, + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 239.4534458199827, + "y": 129.5873964253809 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 303.4533341178828, + "y": 129.70697006926144 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.33376047400213, + "y": 193.70685836716154 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 239.33387217610212, + "y": 193.58728472328096 + }, + { + "angle": 0.0007907688350522303, + "anglePrev": 0.00045682143132043336, + "angularSpeed": 0.0002792405923834241, + "angularVelocity": 0.00034916733021557694, + "area": 4096, + "axes": { + "#": 537 + }, + "bounds": { + "#": 540 + }, + "collisionFilter": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "density": 0.001, + "force": { + "#": 545 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 546 + }, + "positionImpulse": { + "#": 547 + }, + "positionPrev": { + "#": 548 + }, + "region": { + "#": 549 + }, + "render": { + "#": 550 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9020634180639777, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 552 + }, + "vertices": { + "#": 553 + } + }, + [ + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": -0.0007907687526389178, + "y": 0.9999996873423411 + }, + { + "x": -0.9999996873423411, + "y": -0.0007907687526389178 + }, + { + "max": { + "#": 541 + }, + "min": { + "#": 542 + } + }, + { + "x": 367.4269905719527, + "y": 196.65873536229378 + }, + { + "x": 303.3528100802921, + "y": 129.70617864432043 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.3781046753315, + "y": 161.7314732393598 + }, + { + "x": 0.00212898934654444, + "y": 0.0000010704140344809576 + }, + { + "x": 335.3499503659077, + "y": 158.83530386093534 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,2,4", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 551 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02948554460442665, + "y": 2.896448747982106 + }, + [ + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 303.40341928046104, + "y": 129.70617864432043 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 367.40339927037087, + "y": 129.7567878444893 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 367.35279007020193, + "y": 193.75676783439914 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 303.3528100802921, + "y": 193.70615863423026 + }, + { + "angle": 0.00009970926011133051, + "anglePrev": -0.00015171595419195255, + "angularSpeed": 0.00009970926011133051, + "angularVelocity": 0.00027016835485625294, + "area": 4096, + "axes": { + "#": 559 + }, + "bounds": { + "#": 562 + }, + "collisionFilter": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "density": 0.001, + "force": { + "#": 567 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 568 + }, + "positionImpulse": { + "#": 569 + }, + "positionPrev": { + "#": 570 + }, + "region": { + "#": 571 + }, + "render": { + "#": 572 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9136459895634603, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 574 + }, + "vertices": { + "#": 575 + } + }, + [ + { + "#": 560 + }, + { + "#": 561 + } + ], + { + "x": -0.00009970925994611332, + "y": 0.9999999950290317 + }, + { + "x": -0.9999999950290317, + "y": -0.00009970925994611332 + }, + { + "max": { + "#": 563 + }, + "min": { + "#": 564 + } + }, + { + "x": 431.37587702040247, + "y": 196.65879781435922 + }, + { + "x": 367.347199833095, + "y": 129.73885605989707 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.35039037034227, + "y": 161.74204659714442 + }, + { + "x": 0.0076362927832679854, + "y": 0.000001492149300980684 + }, + { + "x": 399.32362468689496, + "y": 158.8292575325116 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,2,4", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 573 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.027152886871306237, + "y": 2.9143496976624874 + }, + [ + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 367.35358122573155, + "y": 129.73885605989707 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 431.35358090758956, + "y": 129.74523745253362 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.347199514953, + "y": 193.74523713439172 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 367.347199833095, + "y": 193.73885574175517 + }, + { + "angle": 0, + "anglePrev": 0.00007793222963729549, + "angularSpeed": 0, + "angularVelocity": -0.0000584714260717275, + "area": 6583.099238, + "axes": { + "#": 581 + }, + "bounds": { + "#": 595 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 598 + }, + "constraintImpulse": { + "#": 599 + }, + "density": 0.0005, + "force": { + "#": 600 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 25, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 601 + }, + "positionImpulse": { + "#": 602 + }, + "positionPrev": { + "#": 603 + }, + "region": { + "#": 604 + }, + "render": { + "#": 605 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.285656447920374, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 607 + }, + "vertices": { + "#": 608 + } + }, + [ + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 596 + }, + "min": { + "#": 597 + } + }, + { + "x": 522.6299599702508, + "y": 221.40296169449186 + }, + { + "x": 431.29995997025065, + "y": 127.11730524657148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.9649599702507, + "y": 173.1173052465715 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 476.94098804275643, + "y": 170.82387840187545 + }, + { + "endCol": 10, + "endRow": 4, + "id": "8,10,2,4", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 606 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02349009206466235, + "y": 2.291484795014469 + }, + [ + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.6299599702508, + "y": 178.66230524657152 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 519.9759599702508, + "y": 189.42930524657152 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 514.8219599702508, + "y": 199.24830524657148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 507.4689599702507, + "y": 207.5483052465715 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 498.3419599702507, + "y": 213.8483052465715 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 487.9739599702507, + "y": 217.78030524657152 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 476.9649599702507, + "y": 219.1173052465715 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 465.95595997025066, + "y": 217.78030524657152 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 455.58795997025067, + "y": 213.8483052465715 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 446.46095997025066, + "y": 207.5483052465715 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 439.10795997025065, + "y": 199.24830524657148 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 433.95395997025065, + "y": 189.42930524657152 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 431.29995997025065, + "y": 178.66230524657152 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 431.29995997025065, + "y": 167.5723052465715 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 433.95395997025065, + "y": 156.8053052465715 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 439.10795997025065, + "y": 146.98630524657148 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 446.46095997025066, + "y": 138.68630524657146 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 455.58795997025067, + "y": 132.3863052465715 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 465.95595997025066, + "y": 128.4543052465715 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 476.9649599702507, + "y": 127.11730524657148 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 487.9739599702507, + "y": 128.4543052465715 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 498.3419599702507, + "y": 132.3863052465715 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 507.4689599702507, + "y": 138.68630524657146 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 514.8219599702508, + "y": 146.98630524657148 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 519.9759599702508, + "y": 156.8053052465715 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 522.6299599702508, + "y": 167.5723052465715 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 636 + }, + "bounds": { + "#": 639 + }, + "collisionFilter": { + "#": 642 + }, + "constraintImpulse": { + "#": 643 + }, + "density": 0.001, + "force": { + "#": 644 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 645 + }, + "positionImpulse": { + "#": 646 + }, + "positionPrev": { + "#": 647 + }, + "region": { + "#": 648 + }, + "render": { + "#": 649 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 651 + }, + "vertices": { + "#": 652 + } + }, + [ + { + "#": 637 + }, + { + "#": 638 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 640 + }, + "min": { + "#": 641 + } + }, + { + "x": 586.6600000000001, + "y": 193.73575476702598 + }, + { + "x": 522.6600000000001, + "y": 129.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 554.6600000000001, + "y": 161.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 554.6600000000001, + "y": 158.8284840519903 + }, + { + "endCol": 12, + "endRow": 4, + "id": "10,12,2,4", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 650 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 522.6600000000001, + "y": 129.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.6600000000001, + "y": 129.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.6600000000001, + "y": 193.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 522.6600000000001, + "y": 193.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 658 + }, + "bounds": { + "#": 661 + }, + "collisionFilter": { + "#": 664 + }, + "constraintImpulse": { + "#": 665 + }, + "density": 0.001, + "force": { + "#": 666 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 667 + }, + "positionImpulse": { + "#": 668 + }, + "positionPrev": { + "#": 669 + }, + "region": { + "#": 670 + }, + "render": { + "#": 671 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 673 + }, + "vertices": { + "#": 674 + } + }, + [ + { + "#": 659 + }, + { + "#": 660 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 662 + }, + "min": { + "#": 663 + } + }, + { + "x": 650.6600000000001, + "y": 193.73575476702598 + }, + { + "x": 586.6600000000001, + "y": 129.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6600000000001, + "y": 161.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 618.6600000000001, + "y": 158.8284840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,2,4", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 672 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 586.6600000000001, + "y": 129.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650.6600000000001, + "y": 129.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650.6600000000001, + "y": 193.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.6600000000001, + "y": 193.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 680 + }, + "bounds": { + "#": 683 + }, + "collisionFilter": { + "#": 686 + }, + "constraintImpulse": { + "#": 687 + }, + "density": 0.001, + "force": { + "#": 688 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 689 + }, + "positionImpulse": { + "#": 690 + }, + "positionPrev": { + "#": 691 + }, + "region": { + "#": 692 + }, + "render": { + "#": 693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 695 + }, + "vertices": { + "#": 696 + } + }, + [ + { + "#": 681 + }, + { + "#": 682 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 684 + }, + "min": { + "#": 685 + } + }, + { + "x": 714.6600000000001, + "y": 193.73575476702598 + }, + { + "x": 650.6600000000001, + "y": 129.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 682.6600000000001, + "y": 161.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 682.6600000000001, + "y": 158.8284840519903 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,2,4", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 694 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650.6600000000001, + "y": 129.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 714.6600000000001, + "y": 129.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 714.6600000000001, + "y": 193.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650.6600000000001, + "y": 193.73575476702598 + }, + { + "angle": -0.005636347412004273, + "anglePrev": -0.0037195856261464538, + "angularSpeed": 0.001570356217264041, + "angularVelocity": -0.001908455551642357, + "area": 4096, + "axes": { + "#": 702 + }, + "bounds": { + "#": 705 + }, + "collisionFilter": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "density": 0.001, + "force": { + "#": 710 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 711 + }, + "positionImpulse": { + "#": 712 + }, + "positionPrev": { + "#": 713 + }, + "region": { + "#": 714 + }, + "render": { + "#": 715 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.745569115187418, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 717 + }, + "vertices": { + "#": 718 + } + }, + [ + { + "#": 703 + }, + { + "#": 704 + } + ], + { + "x": 0.005636317569083742, + "y": 0.9999841158359767 + }, + { + "x": -0.9999841158359767, + "y": 0.005636317569083742 + }, + { + "max": { + "#": 706 + }, + "min": { + "#": 707 + } + }, + { + "x": 84.0157185860518, + "y": 288.0884875103445 + }, + { + "x": 19.597048568665187, + "y": 220.9838438504233 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 51.83586471708985, + "y": 253.16369771938525 + }, + { + "x": -0.0001756756772250951, + "y": 9.901796341802102e-7 + }, + { + "x": 51.912978587792416, + "y": 250.4584456778597 + }, + { + "endCol": 1, + "endRow": 5, + "id": "0,1,4,5", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 716 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0761425326149876, + "y": 2.706643719571076 + }, + [ + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 19.656010848127906, + "y": 221.34456817484468 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 83.65499426163046, + "y": 220.9838438504233 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 84.0157185860518, + "y": 284.9828272639258 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.016735172549275, + "y": 285.34355158834717 + }, + { + "angle": -0.00454183178626185, + "anglePrev": -0.0031673382270429617, + "angularSpeed": 0.0011497675267672408, + "angularVelocity": -0.00135276589258308, + "area": 6583.099238, + "axes": { + "#": 724 + }, + "bounds": { + "#": 738 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "density": 0.0005, + "force": { + "#": 743 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 30, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 744 + }, + "positionImpulse": { + "#": 745 + }, + "positionPrev": { + "#": 746 + }, + "region": { + "#": 747 + }, + "render": { + "#": 748 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.4526692815753974, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 750 + }, + "vertices": { + "#": 751 + } + }, + [ + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "x": -0.9720151756292814, + "y": -0.23491806730512965 + }, + { + "x": -0.8875358298801186, + "y": -0.4607387010866456 + }, + { + "x": -0.7515218612053417, + "y": -0.6597081871027969 + }, + { + "x": -0.5718020117494628, + "y": -0.8203916499814387 + }, + { + "x": -0.358842884356977, + "y": -0.9333979774706846 + }, + { + "x": -0.12506770778265228, + "y": -0.9921482089234418 + }, + { + "x": 0.11605033136042492, + "y": -0.9932433340280395 + }, + { + "x": 0.3503495232603305, + "y": -0.936619032238433 + }, + { + "x": 0.5643263621147528, + "y": -0.8255517894247029 + }, + { + "x": 0.7454983714606547, + "y": -0.666507447932513 + }, + { + "x": 0.8833140757345419, + "y": -0.4687816587807508 + }, + { + "x": 0.9698411866435266, + "y": -0.24373771290031526 + }, + { + "x": 0.9999896858997427, + "y": -0.004541816171281648 + }, + { + "max": { + "#": 739 + }, + "min": { + "#": 740 + } + }, + { + "x": 175.2190239034741, + "y": 314.24363789330704 + }, + { + "x": 83.80242243359132, + "y": 219.79219925073923 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.5293105261926, + "y": 265.7917248021274 + }, + { + "x": -0.0003745649980599636, + "y": 0.0018250950797043264 + }, + { + "x": 129.58228166853536, + "y": 263.2877178825601 + }, + { + "endCol": 3, + "endRow": 6, + "id": "1,3,4,6", + "startCol": 1, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 749 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.05417987417646941, + "y": 2.502275117244892 + }, + [ + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.2190239034741, + "y": 271.12926557497997 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 172.61395301181236, + "y": 281.908208503181 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.5046022636709, + "y": 291.75051574957735 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160.18937517747176, + "y": 300.0838261168527 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.0910827561438, + "y": 306.4252142942164 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 140.74104811392084, + "y": 310.40426328923803 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 129.7382340700716, + "y": 311.7912503535156 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.72327520978027, + "y": 310.50426499769725 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.33752372518629, + "y": 306.61939510280325 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 99.18200442010026, + "y": 300.36091323783023 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 91.79138318545785, + "y": 292.0943948191699 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.59284025134471, + "y": 282.298904613867 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 83.88996589025061, + "y": 271.54406964590305 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 83.83959714891108, + "y": 260.454184029275 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 86.4446680405728, + "y": 249.67524110107385 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 91.5540187887143, + "y": 239.83293385467744 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 98.86924587491345, + "y": 231.49962348740215 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 107.96753829624133, + "y": 225.1582353100385 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.31757293846438, + "y": 221.17918631501686 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 129.32038698231366, + "y": 219.79219925073923 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.33534584260497, + "y": 221.07918460655753 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 150.72109732719898, + "y": 224.9640545014515 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 159.87661663228496, + "y": 231.22253636642466 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 167.2672378669274, + "y": 239.48905478508505 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 172.46578080104055, + "y": 249.28454499038781 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 175.16865516213457, + "y": 260.03937995835184 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 779 + }, + "bounds": { + "#": 782 + }, + "collisionFilter": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "density": 0.001, + "force": { + "#": 787 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 788 + }, + "positionImpulse": { + "#": 789 + }, + "positionPrev": { + "#": 790 + }, + "region": { + "#": 791 + }, + "render": { + "#": 792 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 794 + }, + "vertices": { + "#": 795 + } + }, + [ + { + "#": 780 + }, + { + "#": 781 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 783 + }, + "min": { + "#": 784 + } + }, + { + "x": 239.32999999999998, + "y": 285.73575476702587 + }, + { + "x": 175.32999999999998, + "y": 221.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 253.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32999999999998, + "y": 250.8284840519903 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 793 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.32999999999998, + "y": 221.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 239.32999999999998, + "y": 221.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 239.32999999999998, + "y": 285.73575476702587 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175.32999999999998, + "y": 285.73575476702587 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 801 + }, + "bounds": { + "#": 804 + }, + "collisionFilter": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "density": 0.001, + "force": { + "#": 809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 810 + }, + "positionImpulse": { + "#": 811 + }, + "positionPrev": { + "#": 812 + }, + "region": { + "#": 813 + }, + "render": { + "#": 814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 816 + }, + "vertices": { + "#": 817 + } + }, + [ + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 805 + }, + "min": { + "#": 806 + } + }, + { + "x": 303.33, + "y": 285.73575476702587 + }, + { + "x": 239.32999999999998, + "y": 221.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 253.73575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 271.33, + "y": 250.8284840519903 + }, + { + "endCol": 6, + "endRow": 5, + "id": "4,6,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 815 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 239.32999999999998, + "y": 221.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 303.33, + "y": 221.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.33, + "y": 285.73575476702587 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 239.32999999999998, + "y": 285.73575476702587 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6583.099238, + "axes": { + "#": 823 + }, + "bounds": { + "#": 837 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 840 + }, + "constraintImpulse": { + "#": 841 + }, + "density": 0.0005, + "force": { + "#": 842 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 33, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 843 + }, + "positionImpulse": { + "#": 844 + }, + "positionPrev": { + "#": 845 + }, + "region": { + "#": 846 + }, + "render": { + "#": 847 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.285656447920374, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 849 + }, + "vertices": { + "#": 850 + } + }, + [ + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 838 + }, + "min": { + "#": 839 + } + }, + { + "x": 394.66, + "y": 311.11730824184065 + }, + { + "x": 303.33, + "y": 219.11730824184065 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.995, + "y": 265.11730824184065 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 348.995, + "y": 262.8316517939203 + }, + { + "endCol": 8, + "endRow": 6, + "id": "6,8,4,6", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 848 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.285656447920374 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.66, + "y": 270.6623082418406 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 392.00600000000003, + "y": 281.42930824184066 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 386.85200000000003, + "y": 291.2483082418406 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 379.499, + "y": 299.54830824184063 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 370.372, + "y": 305.84830824184064 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 360.004, + "y": 309.78030824184066 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 348.995, + "y": 311.11730824184065 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 337.986, + "y": 309.78030824184066 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 327.618, + "y": 305.84830824184064 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 318.491, + "y": 299.54830824184063 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 311.138, + "y": 291.2483082418406 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 305.984, + "y": 281.42930824184066 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 303.33, + "y": 270.6623082418406 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 303.33, + "y": 259.57230824184063 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 305.984, + "y": 248.80530824184063 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 311.138, + "y": 238.98630824184062 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 318.491, + "y": 230.68630824184066 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 327.618, + "y": 224.38630824184065 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 337.986, + "y": 220.45430824184064 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 348.995, + "y": 219.11730824184065 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 360.004, + "y": 220.45430824184064 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 370.372, + "y": 224.38630824184065 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 379.499, + "y": 230.68630824184066 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 386.85200000000003, + "y": 238.98630824184062 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 392.00600000000003, + "y": 248.80530824184063 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 394.66, + "y": 259.57230824184063 + }, + { + "angle": -0.00004189231000865161, + "anglePrev": 0.0001787752336391239, + "angularSpeed": 0.0000786470783063505, + "angularVelocity": -0.00020345755595254305, + "area": 4096, + "axes": { + "#": 878 + }, + "bounds": { + "#": 881 + }, + "collisionFilter": { + "#": 884 + }, + "constraintImpulse": { + "#": 885 + }, + "density": 0.001, + "force": { + "#": 886 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 887 + }, + "positionImpulse": { + "#": 888 + }, + "positionPrev": { + "#": 889 + }, + "region": { + "#": 890 + }, + "render": { + "#": 891 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8889952233145886, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 893 + }, + "vertices": { + "#": 894 + } + }, + [ + { + "#": 879 + }, + { + "#": 880 + } + ], + { + "x": 0.00004189230999639835, + "y": 0.9999999991225172 + }, + { + "x": -0.9999999991225172, + "y": 0.00004189230999639835 + }, + { + "max": { + "#": 882 + }, + "min": { + "#": 883 + } + }, + { + "x": 458.67874908282283, + "y": 288.60155201330423 + }, + { + "x": 394.6557140426182, + "y": 221.7099474397065 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.6774085569824, + "y": 253.71128796554692 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.70383007091993, + "y": 250.8378280018082 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 892 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.026281275285668926, + "y": 2.8750076847791775 + }, + [ + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.676068031142, + "y": 221.71262854754625 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 458.6760679749831, + "y": 221.7099474397065 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 458.67874908282283, + "y": 285.70994738354744 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 394.67874913898174, + "y": 285.7126284913872 + }, + { + "angle": 0.005232610475330177, + "anglePrev": 0.0038173409901055854, + "angularSpeed": 0.0011571446319844868, + "angularVelocity": 0.0014364888534202898, + "area": 6583.099238, + "axes": { + "#": 900 + }, + "bounds": { + "#": 914 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "density": 0.0005, + "force": { + "#": 919 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 35, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 920 + }, + "positionImpulse": { + "#": 921 + }, + "positionPrev": { + "#": 922 + }, + "region": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.484230817441101, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + } + ], + { + "x": -0.9696725864470525, + "y": -0.24440760031775582 + }, + { + "x": -0.8829900406328076, + "y": -0.46939172142600993 + }, + { + "x": -0.7450377844894746, + "y": -0.6670222632588928 + }, + { + "x": -0.5637559539359833, + "y": -0.8259414170519173 + }, + { + "x": -0.3497024432554914, + "y": -0.9368608227379025 + }, + { + "x": -0.11536419239861628, + "y": -0.9933232621418946 + }, + { + "x": 0.12575303272766528, + "y": -0.9920615781088364 + }, + { + "x": 0.3594875701214964, + "y": -0.9331498737759876 + }, + { + "x": 0.572368584348026, + "y": -0.8199964656335031 + }, + { + "x": 0.7519773942219649, + "y": -0.6591888944598077 + }, + { + "x": 0.8878538865757126, + "y": -0.4601255003718026 + }, + { + "x": 0.9721772201001901, + "y": -0.23424656394121823 + }, + { + "x": 0.9999863099250431, + "y": 0.00523258659703184 + }, + { + "max": { + "#": 915 + }, + "min": { + "#": 916 + } + }, + { + "x": 550.0148687206017, + "y": 314.4019043729341 + }, + { + "x": 458.61765475349875, + "y": 219.91895495813458 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 504.3214791851942, + "y": 265.91832521468655 + }, + { + "x": 0.002178510024896612, + "y": 0.015726039853105635 + }, + { + "x": 504.336672103862, + "y": 263.37067205637993 + }, + { + "endCol": 11, + "endRow": 6, + "id": "9,11,4,6", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01536743146095887, + "y": 2.5457271762873575 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.9568393352405, + "y": 271.7021953701743 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.2465364088092, + "y": 282.45516068430874 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 542.0412281996593, + "y": 292.2470575101416 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 534.6448983940252, + "y": 300.5084686732716 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 525.485058047778, + "y": 306.76062460792826 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 515.0966254559755, + "y": 310.6383193207155 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 504.0807802017307, + "y": 311.9176954712385 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 493.07892688404615, + "y": 310.523108229022 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 482.7316433532429, + "y": 306.53691060055866 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 473.6377335981183, + "y": 300.18923903015985 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 466.32826472999466, + "y": 291.85087744853405 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 461.2257140564373, + "y": 282.005043120059 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 458.6280896497866, + "y": 271.2243032362675 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 458.6861190351476, + "y": 260.13445505919873 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 461.39642196157894, + "y": 249.38148974506427 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 466.6017301707289, + "y": 239.58959291923136 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 473.99805997636315, + "y": 231.32818175610151 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 483.1579003226102, + "y": 225.0760258214449 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 493.54633291441263, + "y": 221.19833110865758 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 504.56217816865774, + "y": 219.91895495813458 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 515.5640314863421, + "y": 221.31354220035104 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 525.9113150171454, + "y": 225.29973982881432 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 535.0052247722699, + "y": 231.64741139921324 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 542.3146936403932, + "y": 239.9857729808391 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 547.4172443139508, + "y": 249.8316073093142 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 550.0148687206017, + "y": 260.6123471931057 + }, + { + "angle": 0.005139277041202194, + "anglePrev": 0.003476767827750515, + "angularSpeed": 0.0013118235550222583, + "angularVelocity": 0.0016696510947004626, + "area": 4096, + "axes": { + "#": 955 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.771696882574364, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": -0.005139254417990201, + "y": 0.9999867939448135 + }, + { + "x": -0.9999867939448135, + "y": -0.005139254417990201 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 614.1744920961839, + "y": 288.16564006417707 + }, + { + "x": 549.8389549161384, + "y": 221.0658861528284 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 582.002988463748, + "y": 253.22991970043807 + }, + { + "x": 0.0014748591541326028, + "y": 0.000004527936134154268 + }, + { + "x": 581.9968288640936, + "y": 250.48483231426098 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005920124980093533, + "y": 2.745930702526664 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550.1678671988898, + "y": 221.0658861528284 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 614.1670220113576, + "y": 221.39479843557973 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 613.8381097286062, + "y": 285.39395324804775 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 549.8389549161384, + "y": 285.0650409652963 + }, + { + "angle": 0.002026703637033185, + "anglePrev": 0.0011739813430732624, + "angularSpeed": 0.0006899929076850847, + "angularVelocity": 0.0008497163478935238, + "area": 4096, + "axes": { + "#": 977 + }, + "bounds": { + "#": 980 + }, + "collisionFilter": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "density": 0.001, + "force": { + "#": 985 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 986 + }, + "positionImpulse": { + "#": 987 + }, + "positionPrev": { + "#": 988 + }, + "region": { + "#": 989 + }, + "render": { + "#": 990 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8732307312786243, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 992 + }, + "vertices": { + "#": 993 + } + }, + [ + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "x": -0.002026702249576604, + "y": 0.9999979462368869 + }, + { + "x": -0.9999979462368869, + "y": -0.002026702249576604 + }, + { + "max": { + "#": 981 + }, + "min": { + "#": 982 + } + }, + { + "x": 678.1429379136172, + "y": 288.5831241481147 + }, + { + "x": 613.9861928723948, + "y": 221.58044435650646 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 646.0509816239617, + "y": 253.64523310807328 + }, + { + "x": 0.0021742237911813035, + "y": 0.000014566852469970318 + }, + { + "x": 646.0194195865608, + "y": 250.78050034252647 + }, + { + "endCol": 14, + "endRow": 5, + "id": "12,14,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 991 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03132790006304731, + "y": 2.86470996663914 + }, + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 614.1159018163678, + "y": 221.58044435650646 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 678.1157703755285, + "y": 221.7101533004794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 677.9860614315555, + "y": 285.71002185964005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 613.9861928723948, + "y": 285.5803129156672 + }, + { + "angle": 0.0009467858903132768, + "anglePrev": 0.00045169367470704433, + "angularSpeed": 0.0004088063153362643, + "angularVelocity": 0.0004975719406745232, + "area": 4096, + "axes": { + "#": 999 + }, + "bounds": { + "#": 1002 + }, + "collisionFilter": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "density": 0.001, + "force": { + "#": 1007 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1008 + }, + "positionImpulse": { + "#": 1009 + }, + "positionPrev": { + "#": 1010 + }, + "region": { + "#": 1011 + }, + "render": { + "#": 1012 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90874631328163, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1014 + }, + "vertices": { + "#": 1015 + } + }, + [ + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": -0.0009467857488629154, + "y": 0.9999995517982725 + }, + { + "x": -0.9999995517982725, + "y": -0.0009467857488629154 + }, + { + "max": { + "#": 1003 + }, + "min": { + "#": 1004 + } + }, + { + "x": 742.1017246183952, + "y": 288.6773108883942 + }, + { + "x": 678.0050293755307, + "y": 221.70822336451224 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 710.035312177039, + "y": 253.73850616602058 + }, + { + "x": 0.0023843239121446383, + "y": 0.000002257444912482327 + }, + { + "x": 709.9923754744648, + "y": 250.83053560096118 + }, + { + "endCol": 15, + "endRow": 5, + "id": "14,15,4,5", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1013 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04317083991202253, + "y": 2.90799336396708 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 678.0656236634579, + "y": 221.70822336451224 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 742.0655949785473, + "y": 221.76881765243948 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 742.0050006906201, + "y": 285.7687889675289 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 678.0050293755307, + "y": 285.70819467960166 + }, + { + "angle": -0.00665759411687598, + "anglePrev": -0.004489650141668285, + "angularSpeed": 0.0017936881717797435, + "angularVelocity": -0.002150949445027776, + "area": 4096, + "axes": { + "#": 1021 + }, + "bounds": { + "#": 1024 + }, + "collisionFilter": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "density": 0.001, + "force": { + "#": 1029 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1030 + }, + "positionImpulse": { + "#": 1031 + }, + "positionPrev": { + "#": 1032 + }, + "region": { + "#": 1033 + }, + "render": { + "#": 1034 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7446845265150857, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1036 + }, + "vertices": { + "#": 1037 + } + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "x": 0.006657544935606897, + "y": 0.9999778383021448 + }, + { + "x": -0.9999778383021448, + "y": 0.006657544935606897 + }, + { + "max": { + "#": 1025 + }, + "min": { + "#": 1026 + } + }, + { + "x": 84.23720341637227, + "y": 380.1113404424413 + }, + { + "x": 19.794074876315797, + "y": 312.9420534948691 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 52.024871152764234, + "y": 345.1543857584772 + }, + { + "x": -0.0032431679170073302, + "y": 0.000019055783262819082 + }, + { + "x": 52.05543329680019, + "y": 342.4485204295562 + }, + { + "endCol": 1, + "endRow": 7, + "id": "0,1,6,7", + "startCol": 0, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1035 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03037026374094154, + "y": 2.7074212198690475 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 19.812538889156162, + "y": 313.36813637074795 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 83.81112054049343, + "y": 312.9420534948691 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 84.23720341637227, + "y": 376.94063514620643 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.23862176503502, + "y": 377.36671802208525 + }, + { + "angle": -0.0044716307698911125, + "anglePrev": -0.00306052616559873, + "angularSpeed": 0.0011960774990391221, + "angularVelocity": -0.001395013604137507, + "area": 6583.099238, + "axes": { + "#": 1043 + }, + "bounds": { + "#": 1057 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 1060 + }, + "constraintImpulse": { + "#": 1061 + }, + "density": 0.0005, + "force": { + "#": 1062 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 40, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 1063 + }, + "positionImpulse": { + "#": 1064 + }, + "positionPrev": { + "#": 1065 + }, + "region": { + "#": 1066 + }, + "render": { + "#": 1067 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.445276962209818, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1069 + }, + "vertices": { + "#": 1070 + } + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + } + ], + { + "x": -0.9719986817470724, + "y": -0.23498630317947097 + }, + { + "x": -0.8875034833680785, + "y": -0.4608010058686153 + }, + { + "x": -0.7514755471683188, + "y": -0.6597609430756539 + }, + { + "x": -0.5717444180128867, + "y": -0.8204317890422738 + }, + { + "x": -0.3587773579861124, + "y": -0.9334231663058856 + }, + { + "x": -0.1249980576618744, + "y": -0.9921569863588924 + }, + { + "x": 0.11612005776596127, + "y": -0.9932351847293925 + }, + { + "x": 0.35041527400499856, + "y": -0.9365944350379207 + }, + { + "x": 0.564384315298838, + "y": -0.8255121711063153 + }, + { + "x": 0.745545159123904, + "y": -0.6664551115468416 + }, + { + "x": 0.8833469825068507, + "y": -0.4687196480797897 + }, + { + "x": 0.9698582948889087, + "y": -0.24366962846275866 + }, + { + "x": 0.999990002275788, + "y": -0.0044716158678374425 + }, + { + "max": { + "#": 1058 + }, + "min": { + "#": 1059 + } + }, + { + "x": 175.4270735508661, + "y": 406.16111436484965 + }, + { + "x": 84.04751524229685, + "y": 311.71675735203854 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 129.73685380620788, + "y": 357.7162974567248 + }, + { + "x": 0.0010448954903117759, + "y": 0.0020726942838886382 + }, + { + "x": 129.73823382702886, + "y": 355.2211291047974 + }, + { + "endCol": 3, + "endRow": 8, + "id": "1,3,6,8", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1068 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00015493189354742753, + "y": 2.4968213985152943 + }, + [ + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175.42619237011886, + "y": 363.0570456807393 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 172.82036479212798, + "y": 373.83580570375585 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.71032311660488, + "y": 383.6777542442847 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160.39451104157402, + "y": 392.01055105464985 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.29577347077029, + "y": 398.35130050701315 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 140.94545952076723, + "y": 402.3296229092794 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 129.9425481361284, + "y": 403.7158375614111 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 118.92767965065893, + "y": 402.4280789474573 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 108.54220091347122, + "y": 398.5424799718267 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 99.38712098273274, + "y": 392.28335539551495 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 91.99708008429583, + "y": 384.01631816810226 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.79922481636011, + "y": 374.22046304393905 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 84.09710546227116, + "y": 363.46543835794887 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 84.04751524229685, + "y": 352.37554923271034 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 86.65334282028776, + "y": 341.5967892096938 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 91.76338449581088, + "y": 331.75484066916493 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 99.07919657084172, + "y": 323.4220438587998 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 108.17793414164545, + "y": 317.0812944064365 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 118.52824809164848, + "y": 313.1029720041702 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 129.53115947628734, + "y": 311.71675735203854 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 140.54602796175678, + "y": 313.0045159659923 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 150.93150669894447, + "y": 316.8901149416229 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 160.08658662968304, + "y": 323.1492395179347 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 167.47662752811996, + "y": 331.4162767453474 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 172.67448279605568, + "y": 341.2121318695106 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 175.37660215014455, + "y": 351.96715655550076 + }, + { + "angle": 0.0005016103255016597, + "anglePrev": 0.00003796613248433025, + "angularSpeed": 0.0002684005190026615, + "angularVelocity": 0.00044670840528383945, + "area": 6583.099238, + "axes": { + "#": 1098 + }, + "bounds": { + "#": 1112 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "density": 0.0005, + "force": { + "#": 1117 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 41, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 1118 + }, + "positionImpulse": { + "#": 1119 + }, + "positionPrev": { + "#": 1120 + }, + "region": { + "#": 1121 + }, + "render": { + "#": 1122 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.3856742067366663, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1124 + }, + "vertices": { + "#": 1125 + } + }, + [ + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + } + ], + { + "x": -0.9708180227659665, + "y": -0.23981736107458895 + }, + { + "x": -0.885200842970036, + "y": -0.46520905795689094 + }, + { + "x": -0.7481851173076646, + "y": -0.6634900377845293 + }, + { + "x": -0.5676571592439301, + "y": -0.8232650542559861 + }, + { + "x": -0.35413080183795725, + "y": -0.9351959020385007 + }, + { + "x": -0.12006229631082435, + "y": -0.9927663597264829 + }, + { + "x": 0.12105819943901393, + "y": -0.9926454111859805 + }, + { + "x": 0.3550688313144849, + "y": -0.9348401601498332 + }, + { + "x": 0.5684827899493426, + "y": -0.8226951546784577 + }, + { + "x": 0.7488503675976009, + "y": -0.6627391092646775 + }, + { + "x": 0.8856671047698279, + "y": -0.46432077223470336 + }, + { + "x": 0.9710581239140372, + "y": -0.2388432958668731 + }, + { + "x": 0.9999998741935434, + "y": 0.0005016103044663871 + }, + { + "max": { + "#": 1113 + }, + "min": { + "#": 1114 + } + }, + { + "x": 266.7151508899098, + "y": 405.71360582348825 + }, + { + "x": 175.37416173921412, + "y": 311.32794938825333 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 221.04193742340053, + "y": 357.3279436011564 + }, + { + "x": 0.001722026139674119, + "y": 0.000013671091232242267 + }, + { + "x": 221.03592057462927, + "y": 354.8929240558792 + }, + { + "endCol": 5, + "endRow": 8, + "id": "3,5,6,8", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1123 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.009152239355785241, + "y": 2.4330764173581088 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 266.7041502493103, + "y": 362.8958489381131 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 264.04474974505246, + "y": 373.66151630980687 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 258.88582508187943, + "y": 383.4779297750041 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 251.5286626414073, + "y": 391.7742403902417 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 242.39850364472468, + "y": 398.06966140041226 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 232.02853261736885, + "y": 401.9964602101045 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 221.01886334939505, + "y": 403.32793781405945 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 210.0105353873754, + "y": 401.9854157544208 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 199.6445090234539, + "y": 398.04821555345507 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 190.52067031660758, + "y": 391.74363814878683 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 183.17183460718957, + "y": 383.4399508524117 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 178.02276056717557, + "y": 373.61836678819606 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 175.37416173921412, + "y": 362.85003686900615 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 175.37972459749062, + "y": 351.7600382641997 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 178.03912510174845, + "y": 340.9943708925059 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 183.19804976492156, + "y": 331.1779574273087 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 190.55521220539376, + "y": 322.8816468120711 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 199.68537120207637, + "y": 316.5862258019005 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 210.0553422294322, + "y": 312.6594269922083 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 221.065011497406, + "y": 311.32794938825333 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 232.07333945942565, + "y": 312.670471447892 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 242.43936582334715, + "y": 316.6076716488577 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 251.56320453019347, + "y": 322.91224905352595 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 258.9120402396115, + "y": 331.2159363499011 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 264.06111427962543, + "y": 341.0375204141167 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 266.70971310758694, + "y": 351.80585033330664 + }, + { + "angle": -0.0006244566170450663, + "anglePrev": -0.0001367849531698157, + "angularSpeed": 0.0005012495208579874, + "angularVelocity": -0.0003535799991630816, + "area": 4096, + "axes": { + "#": 1153 + }, + "bounds": { + "#": 1156 + }, + "collisionFilter": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "density": 0.001, + "force": { + "#": 1161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1162 + }, + "positionImpulse": { + "#": 1163 + }, + "positionPrev": { + "#": 1164 + }, + "region": { + "#": 1165 + }, + "render": { + "#": 1166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.858853252729632, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1168 + }, + "vertices": { + "#": 1169 + } + }, + [ + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": 0.0006244565764610001, + "y": 0.999999805026973 + }, + { + "x": -0.999999805026973, + "y": 0.0006244565764610001 + }, + { + "max": { + "#": 1157 + }, + "min": { + "#": 1158 + } + }, + { + "x": 330.67551164333514, + "y": 380.51012858076274 + }, + { + "x": 266.6353051728831, + "y": 313.6113225966727 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.65528154419303, + "y": 345.6312989679826 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 298.654369119938, + "y": 342.79781021875317 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1167 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0032286046316016836, + "y": 2.845831983492076 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 266.6353051728831, + "y": 313.65128781756624 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330.6352926946094, + "y": 313.6113225966727 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 330.675257915503, + "y": 377.611310118399 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 266.67527039377666, + "y": 377.6512753392925 + }, + { + "angle": -0.0011985995859206385, + "anglePrev": -0.0007666178525238818, + "angularSpeed": 0.0002862463975041197, + "angularVelocity": -0.0002769317692148766, + "area": 4096, + "axes": { + "#": 1175 + }, + "bounds": { + "#": 1178 + }, + "collisionFilter": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "density": 0.001, + "force": { + "#": 1183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1184 + }, + "positionImpulse": { + "#": 1185 + }, + "positionPrev": { + "#": 1186 + }, + "region": { + "#": 1187 + }, + "render": { + "#": 1188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8643005282175165, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1190 + }, + "vertices": { + "#": 1191 + } + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0.0011985992989277808, + "y": 0.9999992816796022 + }, + { + "x": -0.9999992816796022, + "y": 0.0011985992989277808 + }, + { + "max": { + "#": 1179 + }, + "min": { + "#": 1180 + } + }, + { + "x": 394.66300276880486, + "y": 380.55108442790936 + }, + { + "x": 330.5797278018543, + "y": 313.6101271454351 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.62467057749194, + "y": 345.64845933674803 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.6254568637828, + "y": 342.7985729310754 + }, + { + "endCol": 8, + "endRow": 7, + "id": "6,8,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1189 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0031024666674284163, + "y": 2.8375431714100046 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 330.586338386179, + "y": 313.6868375005664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 394.58629241367356, + "y": 313.6101271454351 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 394.66300276880486, + "y": 377.61008117292965 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 330.6630487413103, + "y": 377.68679152806095 + }, + { + "angle": -0.004016028592609099, + "anglePrev": -0.003324177353037764, + "angularSpeed": 0.0006620689414419222, + "angularVelocity": -0.0007677640106906903, + "area": 4096, + "axes": { + "#": 1197 + }, + "bounds": { + "#": 1200 + }, + "collisionFilter": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "density": 0.001, + "force": { + "#": 1205 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1206 + }, + "positionImpulse": { + "#": 1207 + }, + "positionPrev": { + "#": 1208 + }, + "region": { + "#": 1209 + }, + "render": { + "#": 1210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7889209129718995, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1212 + }, + "vertices": { + "#": 1213 + } + }, + [ + { + "#": 1198 + }, + { + "#": 1199 + } + ], + { + "x": 0.004016017797207881, + "y": 0.9999919357680106 + }, + { + "x": -0.9999919357680106, + "y": 0.004016017797207881 + }, + { + "max": { + "#": 1201 + }, + "min": { + "#": 1202 + } + }, + { + "x": 458.79955454545154, + "y": 380.18638724030905 + }, + { + "x": 394.53764798515044, + "y": 313.140962522219 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.66590249923746, + "y": 345.2692170363061 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 426.6561732259077, + "y": 342.50932872912625 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1211 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.007201150849368787, + "y": 2.763855138960821 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 394.53764798515044, + "y": 313.39798766124034 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 458.5371318743032, + "y": 313.140962522219 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 458.7941570133245, + "y": 377.14044641137184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 394.7946731241717, + "y": 377.39747155039316 + }, + { + "angle": -0.004862962890422727, + "anglePrev": -0.0037065764631674892, + "angularSpeed": 0.001098116059973211, + "angularVelocity": -0.0011784640754437083, + "area": 6583.099238, + "axes": { + "#": 1219 + }, + "bounds": { + "#": 1233 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 1236 + }, + "constraintImpulse": { + "#": 1237 + }, + "density": 0.0005, + "force": { + "#": 1238 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 45, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 1239 + }, + "positionImpulse": { + "#": 1240 + }, + "positionPrev": { + "#": 1241 + }, + "region": { + "#": 1242 + }, + "render": { + "#": 1243 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.5292952944878024, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1245 + }, + "vertices": { + "#": 1246 + } + }, + [ + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + } + ], + { + "x": -0.9720905650067035, + "y": -0.23460591089089905 + }, + { + "x": -0.8876837416417368, + "y": -0.46045366197363075 + }, + { + "x": -0.7517336752698336, + "y": -0.6594668160455905 + }, + { + "x": -0.5720654355377434, + "y": -0.8202079842716801 + }, + { + "x": -0.35914260897208244, + "y": -0.9332826937325718 + }, + { + "x": -0.1253863109781837, + "y": -0.9921079946353031 + }, + { + "x": 0.11573136405349425, + "y": -0.9932805501842457 + }, + { + "x": 0.3500487276965696, + "y": -0.9367314920712405 + }, + { + "x": 0.5640612226634992, + "y": -0.8257329696017703 + }, + { + "x": 0.7452842967518186, + "y": -0.6667468162767238 + }, + { + "x": 0.8831634898194708, + "y": -0.46906529422873944 + }, + { + "x": 0.9697628648764764, + "y": -0.2440491464983414 + }, + { + "x": 0.9999881758192654, + "y": -0.00486294372355691 + }, + { + "max": { + "#": 1234 + }, + "min": { + "#": 1235 + } + }, + { + "x": 550.0464192383965, + "y": 406.4228349710003 + }, + { + "x": 458.648705062599, + "y": 311.89467117760694 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 504.3401301343329, + "y": 357.8941272652932 + }, + { + "x": 0.001079867332656405, + "y": 0.0000432310380461015 + }, + { + "x": 504.32416320931367, + "y": 355.28353905065376 + }, + { + "endCol": 11, + "endRow": 8, + "id": "9,11,6,8", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1244 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.016838142949211488, + "y": 2.608664652605796 + }, + [ + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550.0315552060669, + "y": 363.2169953750748 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 547.4299459025143, + "y": 373.9967743167632 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 542.3237560887634, + "y": 383.84072182708366 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 535.0112054648698, + "y": 392.1763809115829 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 525.9149499296259, + "y": 398.5206905066092 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 515.5661936174527, + "y": 402.50306301445653 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 504.56382554561645, + "y": 403.8935833529795 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 493.54845396226386, + "y": 402.6101353093617 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 483.16145546064865, + "y": 398.7286008025662 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 474.0039268344878, + "y": 392.47305938226964 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 466.61065134478326, + "y": 384.2089147481691 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 461.40896304218916, + "y": 374.4150944617509 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 458.70263510849327, + "y": 363.6611280253473 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 458.648705062599, + "y": 352.5712591555116 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 461.2503143661517, + "y": 341.7914802138232 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 466.35650417990274, + "y": 331.94753270350276 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 473.66905480379626, + "y": 323.6118736190035 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 482.76531033904024, + "y": 317.26756402397723 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 493.1140666512133, + "y": 313.2851915161299 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 504.1164347230494, + "y": 311.89467117760694 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 515.1318063064023, + "y": 313.17811922122473 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 525.5188048080173, + "y": 317.05965372802024 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 534.6763334341781, + "y": 323.3151951483168 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 542.0696089238828, + "y": 331.5793397824173 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 547.2712972264769, + "y": 341.3731600688355 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 549.9776251601728, + "y": 352.1271265052391 + }, + { + "angle": 0.0018474275374003358, + "anglePrev": 0.0010045903048834486, + "angularSpeed": 0.0007257000159706488, + "angularVelocity": 0.0008613315815437078, + "area": 4096, + "axes": { + "#": 1274 + }, + "bounds": { + "#": 1277 + }, + "collisionFilter": { + "#": 1280 + }, + "constraintImpulse": { + "#": 1281 + }, + "density": 0.001, + "force": { + "#": 1282 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1283 + }, + "positionImpulse": { + "#": 1284 + }, + "positionPrev": { + "#": 1285 + }, + "region": { + "#": 1286 + }, + "render": { + "#": 1287 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8258952802358572, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1289 + }, + "vertices": { + "#": 1290 + } + }, + [ + { + "#": 1275 + }, + { + "#": 1276 + } + ], + { + "x": -0.00184742648652569, + "y": 0.9999982935062324 + }, + { + "x": -0.9999982935062324, + "y": -0.00184742648652569 + }, + { + "max": { + "#": 1278 + }, + "min": { + "#": 1279 + } + }, + { + "x": 614.1086779240422, + "y": 380.41713007759085 + }, + { + "x": 549.9565334264229, + "y": 313.4733134838454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 582.015596466191, + "y": 345.53237652361366 + }, + { + "x": 0.0011113348936818588, + "y": 0.00000205311302161266 + }, + { + "x": 581.9784063038952, + "y": 342.74077330683264 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,6,7", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1288 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.03714027567843914, + "y": 2.793174873101009 + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550.0747687215604, + "y": 313.4733134838454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 614.0746595059592, + "y": 313.591548778983 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 613.9564242108216, + "y": 377.5914395633819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 549.9565334264229, + "y": 377.47320426824433 + }, + { + "angle": 0, + "anglePrev": 0.00004218407164223762, + "angularSpeed": 0, + "angularVelocity": -0.00002079201915170567, + "area": 6583.099238, + "axes": { + "#": 1296 + }, + "bounds": { + "#": 1310 + }, + "circleRadius": 46, + "collisionFilter": { + "#": 1313 + }, + "constraintImpulse": { + "#": 1314 + }, + "density": 0.0005, + "force": { + "#": 1315 + }, + "friction": 0.01, + "frictionAir": 0.06, + "frictionStatic": 0.5, + "id": 47, + "inertia": 13794.920996704102, + "inverseInertia": 0.00007249044776979304, + "inverseMass": 0.3038082714073769, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.291549619, + "motion": 0, + "parent": null, + "position": { + "#": 1316 + }, + "positionImpulse": { + "#": 1317 + }, + "positionPrev": { + "#": 1318 + }, + "region": { + "#": 1319 + }, + "render": { + "#": 1320 + }, + "restitution": 0.3, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.285656447920374, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1322 + }, + "vertices": { + "#": 1323 + } + }, + [ + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "x": -0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": -0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": -0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": -0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": -0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": -0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.12056026304217864, + "y": -0.9927060103450572 + }, + { + "x": 0.3545998611871732, + "y": -0.9350181487254872 + }, + { + "x": 0.568070046063516, + "y": -0.8229802080034457 + }, + { + "x": 0.7485178366210095, + "y": -0.6631146569487087 + }, + { + "x": 0.8854340852632567, + "y": -0.46476497356623164 + }, + { + "x": 0.9709381954902958, + "y": -0.2393303585800354 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1311 + }, + "min": { + "#": 1312 + } + }, + { + "x": 705.2867995579211, + "y": 405.40290335428034 + }, + { + "x": 613.9567995579212, + "y": 311.11724690636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 659.6217995579211, + "y": 357.11724690636 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 659.5887507687196, + "y": 354.82370587618385 + }, + { + "endCol": 14, + "endRow": 8, + "id": "12,14,6,8", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1321 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "texture": "./img/ball.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0331108680422858, + "y": 2.291585263126649 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 705.2867995579211, + "y": 362.66224690636 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 702.6327995579211, + "y": 373.42924690636 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 697.4787995579211, + "y": 383.24824690635995 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 690.1257995579211, + "y": 391.54824690635996 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 680.9987995579211, + "y": 397.84824690636 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670.6307995579211, + "y": 401.78024690636 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 659.6217995579211, + "y": 403.11724690636 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 648.6127995579211, + "y": 401.78024690636 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 638.2447995579212, + "y": 397.84824690636 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 629.1177995579211, + "y": 391.54824690635996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 621.7647995579212, + "y": 383.24824690635995 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 616.6107995579212, + "y": 373.42924690636 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 613.9567995579212, + "y": 362.66224690636 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 613.9567995579212, + "y": 351.57224690635996 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 616.6107995579212, + "y": 340.80524690635997 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 621.7647995579212, + "y": 330.98624690636 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 629.1177995579211, + "y": 322.68624690636 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 638.2447995579212, + "y": 316.38624690636 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 648.6127995579211, + "y": 312.45424690635997 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 659.6217995579211, + "y": 311.11724690636 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 670.6307995579211, + "y": 312.45424690635997 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 680.9987995579211, + "y": 316.38624690636 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 690.1257995579211, + "y": 322.68624690636 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 697.4787995579211, + "y": 330.98624690636 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 702.6327995579211, + "y": 340.80524690635997 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 705.2867995579211, + "y": 351.57224690635996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4096, + "axes": { + "#": 1351 + }, + "bounds": { + "#": 1354 + }, + "collisionFilter": { + "#": 1357 + }, + "constraintImpulse": { + "#": 1358 + }, + "density": 0.001, + "force": { + "#": 1359 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 11184.810666666666, + "inverseInertia": 0.00008940696716308594, + "inverseMass": 0.244140625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 4.096, + "motion": 0, + "parent": null, + "position": { + "#": 1360 + }, + "positionImpulse": { + "#": 1361 + }, + "positionPrev": { + "#": 1362 + }, + "region": { + "#": 1363 + }, + "render": { + "#": 1364 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1366 + }, + "vertices": { + "#": 1367 + } + }, + [ + { + "#": 1352 + }, + { + "#": 1353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1355 + }, + "min": { + "#": 1356 + } + }, + { + "x": 769.3199999999999, + "y": 377.73575476702496 + }, + { + "x": 705.3199999999999, + "y": 313.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 737.3199999999999, + "y": 345.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 737.3199999999999, + "y": 342.8284840519894 + }, + { + "endCol": 16, + "endRow": 7, + "id": "14,16,6,7", + "startCol": 14, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1365 + }, + "strokeStyle": "#ffffff", + "visible": true + }, + { + "texture": "./img/box.png", + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 705.3199999999999, + "y": 313.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 769.3199999999999, + "y": 313.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 769.3199999999999, + "y": 377.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 705.3199999999999, + "y": 377.73575476702496 + }, + [], + [], + [ + { + "#": 1375 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1376 + }, + "pointB": "", + "render": { + "#": 1377 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/stack/stack-0.json b/tests/browser/refs/stack/stack-0.json new file mode 100644 index 00000000..5ede5594 --- /dev/null +++ b/tests/browser/refs/stack/stack-0.json @@ -0,0 +1,10052 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 1144 + }, + "events": { + "#": 1148 + }, + "gravity": { + "#": 1150 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 1142 + }, + "constraints": { + "#": 1143 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 197 + }, + { + "#": 218 + }, + { + "#": 239 + }, + { + "#": 260 + }, + { + "#": 281 + }, + { + "#": 302 + }, + { + "#": 323 + }, + { + "#": 344 + }, + { + "#": 365 + }, + { + "#": 386 + }, + { + "#": 407 + }, + { + "#": 428 + }, + { + "#": 449 + }, + { + "#": 470 + }, + { + "#": 491 + }, + { + "#": 512 + }, + { + "#": 533 + }, + { + "#": 554 + }, + { + "#": 575 + }, + { + "#": 596 + }, + { + "#": 617 + }, + { + "#": 638 + }, + { + "#": 659 + }, + { + "#": 680 + }, + { + "#": 701 + }, + { + "#": 722 + }, + { + "#": 743 + }, + { + "#": 764 + }, + { + "#": 785 + }, + { + "#": 806 + }, + { + "#": 827 + }, + { + "#": 848 + }, + { + "#": 869 + }, + { + "#": 890 + }, + { + "#": 911 + }, + { + "#": 932 + }, + { + "#": 953 + }, + { + "#": 974 + }, + { + "#": 995 + }, + { + "#": 1016 + }, + { + "#": 1037 + }, + { + "#": 1058 + }, + { + "#": 1079 + }, + { + "#": 1100 + }, + { + "#": 1121 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 140, + "y": 340 + }, + { + "x": 100, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 320 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 180, + "y": 340 + }, + { + "x": 140, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 320 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 220, + "y": 340 + }, + { + "x": 180, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 320 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 260, + "y": 340 + }, + { + "x": 220, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 320 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 177 + }, + "bounds": { + "#": 180 + }, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "render": { + "#": 189 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 191 + }, + "vertices": { + "#": 192 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 300, + "y": 340 + }, + { + "x": 260, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 320 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 190 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 198 + }, + "bounds": { + "#": 201 + }, + "collisionFilter": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "density": 0.001, + "force": { + "#": 206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 207 + }, + "positionImpulse": { + "#": 208 + }, + "positionPrev": { + "#": 209 + }, + "render": { + "#": 210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 212 + }, + "vertices": { + "#": 213 + } + }, + [ + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 202 + }, + "min": { + "#": 203 + } + }, + { + "x": 340, + "y": 340 + }, + { + "x": 300, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 320 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 211 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 219 + }, + "bounds": { + "#": 222 + }, + "collisionFilter": { + "#": 225 + }, + "constraintImpulse": { + "#": 226 + }, + "density": 0.001, + "force": { + "#": 227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 228 + }, + "positionImpulse": { + "#": 229 + }, + "positionPrev": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 223 + }, + "min": { + "#": 224 + } + }, + { + "x": 380, + "y": 340 + }, + { + "x": 340, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 320 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 240 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 420, + "y": 340 + }, + { + "x": 380, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 320 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 261 + }, + "bounds": { + "#": 264 + }, + "collisionFilter": { + "#": 267 + }, + "constraintImpulse": { + "#": 268 + }, + "density": 0.001, + "force": { + "#": 269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 270 + }, + "positionImpulse": { + "#": 271 + }, + "positionPrev": { + "#": 272 + }, + "render": { + "#": 273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 275 + }, + "vertices": { + "#": 276 + } + }, + [ + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 265 + }, + "min": { + "#": 266 + } + }, + { + "x": 460, + "y": 340 + }, + { + "x": 420, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 320 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 274 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 282 + }, + "bounds": { + "#": 285 + }, + "collisionFilter": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "density": 0.001, + "force": { + "#": 290 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 291 + }, + "positionImpulse": { + "#": 292 + }, + "positionPrev": { + "#": 293 + }, + "render": { + "#": 294 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 296 + }, + "vertices": { + "#": 297 + } + }, + [ + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 286 + }, + "min": { + "#": 287 + } + }, + { + "x": 500, + "y": 340 + }, + { + "x": 460, + "y": 300 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 320 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 295 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 300 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 300 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 340 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 340 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 303 + }, + "bounds": { + "#": 306 + }, + "collisionFilter": { + "#": 309 + }, + "constraintImpulse": { + "#": 310 + }, + "density": 0.001, + "force": { + "#": 311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 312 + }, + "positionImpulse": { + "#": 313 + }, + "positionPrev": { + "#": 314 + }, + "render": { + "#": 315 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 317 + }, + "vertices": { + "#": 318 + } + }, + [ + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 307 + }, + "min": { + "#": 308 + } + }, + { + "x": 140, + "y": 380 + }, + { + "x": 100, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 360 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 316 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 324 + }, + "bounds": { + "#": 327 + }, + "collisionFilter": { + "#": 330 + }, + "constraintImpulse": { + "#": 331 + }, + "density": 0.001, + "force": { + "#": 332 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 333 + }, + "positionImpulse": { + "#": 334 + }, + "positionPrev": { + "#": 335 + }, + "render": { + "#": 336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 338 + }, + "vertices": { + "#": 339 + } + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 328 + }, + "min": { + "#": 329 + } + }, + { + "x": 180, + "y": 380 + }, + { + "x": 140, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 360 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 337 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 345 + }, + "bounds": { + "#": 348 + }, + "collisionFilter": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "density": 0.001, + "force": { + "#": 353 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 354 + }, + "positionImpulse": { + "#": 355 + }, + "positionPrev": { + "#": 356 + }, + "render": { + "#": 357 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 359 + }, + "vertices": { + "#": 360 + } + }, + [ + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 349 + }, + "min": { + "#": 350 + } + }, + { + "x": 220, + "y": 380 + }, + { + "x": 180, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 360 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 358 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 366 + }, + "bounds": { + "#": 369 + }, + "collisionFilter": { + "#": 372 + }, + "constraintImpulse": { + "#": 373 + }, + "density": 0.001, + "force": { + "#": 374 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 375 + }, + "positionImpulse": { + "#": 376 + }, + "positionPrev": { + "#": 377 + }, + "render": { + "#": 378 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 380 + }, + "vertices": { + "#": 381 + } + }, + [ + { + "#": 367 + }, + { + "#": 368 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 370 + }, + "min": { + "#": 371 + } + }, + { + "x": 260, + "y": 380 + }, + { + "x": 220, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 360 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 379 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 387 + }, + "bounds": { + "#": 390 + }, + "collisionFilter": { + "#": 393 + }, + "constraintImpulse": { + "#": 394 + }, + "density": 0.001, + "force": { + "#": 395 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 396 + }, + "positionImpulse": { + "#": 397 + }, + "positionPrev": { + "#": 398 + }, + "render": { + "#": 399 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 401 + }, + "vertices": { + "#": 402 + } + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 391 + }, + "min": { + "#": 392 + } + }, + { + "x": 300, + "y": 380 + }, + { + "x": 260, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 360 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 400 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 408 + }, + "bounds": { + "#": 411 + }, + "collisionFilter": { + "#": 414 + }, + "constraintImpulse": { + "#": 415 + }, + "density": 0.001, + "force": { + "#": 416 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 417 + }, + "positionImpulse": { + "#": 418 + }, + "positionPrev": { + "#": 419 + }, + "render": { + "#": 420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 422 + }, + "vertices": { + "#": 423 + } + }, + [ + { + "#": 409 + }, + { + "#": 410 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 412 + }, + "min": { + "#": 413 + } + }, + { + "x": 340, + "y": 380 + }, + { + "x": 300, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 360 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 421 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 429 + }, + "bounds": { + "#": 432 + }, + "collisionFilter": { + "#": 435 + }, + "constraintImpulse": { + "#": 436 + }, + "density": 0.001, + "force": { + "#": 437 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 438 + }, + "positionImpulse": { + "#": 439 + }, + "positionPrev": { + "#": 440 + }, + "render": { + "#": 441 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 443 + }, + "vertices": { + "#": 444 + } + }, + [ + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 433 + }, + "min": { + "#": 434 + } + }, + { + "x": 380, + "y": 380 + }, + { + "x": 340, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 360 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 442 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 450 + }, + "bounds": { + "#": 453 + }, + "collisionFilter": { + "#": 456 + }, + "constraintImpulse": { + "#": 457 + }, + "density": 0.001, + "force": { + "#": 458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 459 + }, + "positionImpulse": { + "#": 460 + }, + "positionPrev": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 454 + }, + "min": { + "#": 455 + } + }, + { + "x": 420, + "y": 380 + }, + { + "x": 380, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 360 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 471 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "render": { + "#": 483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 485 + }, + "vertices": { + "#": 486 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 460, + "y": 380 + }, + { + "x": 420, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 360 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 484 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 492 + }, + "bounds": { + "#": 495 + }, + "collisionFilter": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "density": 0.001, + "force": { + "#": 500 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 501 + }, + "positionImpulse": { + "#": 502 + }, + "positionPrev": { + "#": 503 + }, + "render": { + "#": 504 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 506 + }, + "vertices": { + "#": 507 + } + }, + [ + { + "#": 493 + }, + { + "#": 494 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 496 + }, + "min": { + "#": 497 + } + }, + { + "x": 500, + "y": 380 + }, + { + "x": 460, + "y": 340 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 360 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 505 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 340 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 340 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 380 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 380 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 513 + }, + "bounds": { + "#": 516 + }, + "collisionFilter": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "density": 0.001, + "force": { + "#": 521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 522 + }, + "positionImpulse": { + "#": 523 + }, + "positionPrev": { + "#": 524 + }, + "render": { + "#": 525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 527 + }, + "vertices": { + "#": 528 + } + }, + [ + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 517 + }, + "min": { + "#": 518 + } + }, + { + "x": 140, + "y": 420 + }, + { + "x": 100, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 400 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 526 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 534 + }, + "bounds": { + "#": 537 + }, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "render": { + "#": 546 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 548 + }, + "vertices": { + "#": 549 + } + }, + [ + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 180, + "y": 420 + }, + { + "x": 140, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 400 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 547 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 555 + }, + "bounds": { + "#": 558 + }, + "collisionFilter": { + "#": 561 + }, + "constraintImpulse": { + "#": 562 + }, + "density": 0.001, + "force": { + "#": 563 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 564 + }, + "positionImpulse": { + "#": 565 + }, + "positionPrev": { + "#": 566 + }, + "render": { + "#": 567 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 569 + }, + "vertices": { + "#": 570 + } + }, + [ + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 559 + }, + "min": { + "#": 560 + } + }, + { + "x": 220, + "y": 420 + }, + { + "x": 180, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 400 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 568 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 576 + }, + "bounds": { + "#": 579 + }, + "collisionFilter": { + "#": 582 + }, + "constraintImpulse": { + "#": 583 + }, + "density": 0.001, + "force": { + "#": 584 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 585 + }, + "positionImpulse": { + "#": 586 + }, + "positionPrev": { + "#": 587 + }, + "render": { + "#": 588 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 590 + }, + "vertices": { + "#": 591 + } + }, + [ + { + "#": 577 + }, + { + "#": 578 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 580 + }, + "min": { + "#": 581 + } + }, + { + "x": 260, + "y": 420 + }, + { + "x": 220, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 400 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 589 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 597 + }, + "bounds": { + "#": 600 + }, + "collisionFilter": { + "#": 603 + }, + "constraintImpulse": { + "#": 604 + }, + "density": 0.001, + "force": { + "#": 605 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 606 + }, + "positionImpulse": { + "#": 607 + }, + "positionPrev": { + "#": 608 + }, + "render": { + "#": 609 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 611 + }, + "vertices": { + "#": 612 + } + }, + [ + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 601 + }, + "min": { + "#": 602 + } + }, + { + "x": 300, + "y": 420 + }, + { + "x": 260, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 400 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 610 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 618 + }, + "bounds": { + "#": 621 + }, + "collisionFilter": { + "#": 624 + }, + "constraintImpulse": { + "#": 625 + }, + "density": 0.001, + "force": { + "#": 626 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 627 + }, + "positionImpulse": { + "#": 628 + }, + "positionPrev": { + "#": 629 + }, + "render": { + "#": 630 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 632 + }, + "vertices": { + "#": 633 + } + }, + [ + { + "#": 619 + }, + { + "#": 620 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 622 + }, + "min": { + "#": 623 + } + }, + { + "x": 340, + "y": 420 + }, + { + "x": 300, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 400 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 631 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 639 + }, + "bounds": { + "#": 642 + }, + "collisionFilter": { + "#": 645 + }, + "constraintImpulse": { + "#": 646 + }, + "density": 0.001, + "force": { + "#": 647 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 648 + }, + "positionImpulse": { + "#": 649 + }, + "positionPrev": { + "#": 650 + }, + "render": { + "#": 651 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 653 + }, + "vertices": { + "#": 654 + } + }, + [ + { + "#": 640 + }, + { + "#": 641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 643 + }, + "min": { + "#": 644 + } + }, + { + "x": 380, + "y": 420 + }, + { + "x": 340, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 400 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 652 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 660 + }, + "bounds": { + "#": 663 + }, + "collisionFilter": { + "#": 666 + }, + "constraintImpulse": { + "#": 667 + }, + "density": 0.001, + "force": { + "#": 668 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 669 + }, + "positionImpulse": { + "#": 670 + }, + "positionPrev": { + "#": 671 + }, + "render": { + "#": 672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 674 + }, + "vertices": { + "#": 675 + } + }, + [ + { + "#": 661 + }, + { + "#": 662 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 664 + }, + "min": { + "#": 665 + } + }, + { + "x": 420, + "y": 420 + }, + { + "x": 380, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 400 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 673 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 681 + }, + "bounds": { + "#": 684 + }, + "collisionFilter": { + "#": 687 + }, + "constraintImpulse": { + "#": 688 + }, + "density": 0.001, + "force": { + "#": 689 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 690 + }, + "positionImpulse": { + "#": 691 + }, + "positionPrev": { + "#": 692 + }, + "render": { + "#": 693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 695 + }, + "vertices": { + "#": 696 + } + }, + [ + { + "#": 682 + }, + { + "#": 683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 685 + }, + "min": { + "#": 686 + } + }, + { + "x": 460, + "y": 420 + }, + { + "x": 420, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 400 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 694 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 702 + }, + "bounds": { + "#": 705 + }, + "collisionFilter": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "density": 0.001, + "force": { + "#": 710 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 711 + }, + "positionImpulse": { + "#": 712 + }, + "positionPrev": { + "#": 713 + }, + "render": { + "#": 714 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 716 + }, + "vertices": { + "#": 717 + } + }, + [ + { + "#": 703 + }, + { + "#": 704 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 706 + }, + "min": { + "#": 707 + } + }, + { + "x": 500, + "y": 420 + }, + { + "x": 460, + "y": 380 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 400 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 715 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 380 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 380 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 723 + }, + "bounds": { + "#": 726 + }, + "collisionFilter": { + "#": 729 + }, + "constraintImpulse": { + "#": 730 + }, + "density": 0.001, + "force": { + "#": 731 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 732 + }, + "positionImpulse": { + "#": 733 + }, + "positionPrev": { + "#": 734 + }, + "render": { + "#": 735 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 737 + }, + "vertices": { + "#": 738 + } + }, + [ + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 727 + }, + "min": { + "#": 728 + } + }, + { + "x": 140, + "y": 460 + }, + { + "x": 100, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 440 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 736 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 744 + }, + "bounds": { + "#": 747 + }, + "collisionFilter": { + "#": 750 + }, + "constraintImpulse": { + "#": 751 + }, + "density": 0.001, + "force": { + "#": 752 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 753 + }, + "positionImpulse": { + "#": 754 + }, + "positionPrev": { + "#": 755 + }, + "render": { + "#": 756 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 758 + }, + "vertices": { + "#": 759 + } + }, + [ + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 748 + }, + "min": { + "#": 749 + } + }, + { + "x": 180, + "y": 460 + }, + { + "x": 140, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 440 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 757 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 765 + }, + "bounds": { + "#": 768 + }, + "collisionFilter": { + "#": 771 + }, + "constraintImpulse": { + "#": 772 + }, + "density": 0.001, + "force": { + "#": 773 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 774 + }, + "positionImpulse": { + "#": 775 + }, + "positionPrev": { + "#": 776 + }, + "render": { + "#": 777 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 779 + }, + "vertices": { + "#": 780 + } + }, + [ + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 769 + }, + "min": { + "#": 770 + } + }, + { + "x": 220, + "y": 460 + }, + { + "x": 180, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 440 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 778 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 786 + }, + "bounds": { + "#": 789 + }, + "collisionFilter": { + "#": 792 + }, + "constraintImpulse": { + "#": 793 + }, + "density": 0.001, + "force": { + "#": 794 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 795 + }, + "positionImpulse": { + "#": 796 + }, + "positionPrev": { + "#": 797 + }, + "render": { + "#": 798 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 800 + }, + "vertices": { + "#": 801 + } + }, + [ + { + "#": 787 + }, + { + "#": 788 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 790 + }, + "min": { + "#": 791 + } + }, + { + "x": 260, + "y": 460 + }, + { + "x": 220, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 440 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 799 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 807 + }, + "bounds": { + "#": 810 + }, + "collisionFilter": { + "#": 813 + }, + "constraintImpulse": { + "#": 814 + }, + "density": 0.001, + "force": { + "#": 815 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 816 + }, + "positionImpulse": { + "#": 817 + }, + "positionPrev": { + "#": 818 + }, + "render": { + "#": 819 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 821 + }, + "vertices": { + "#": 822 + } + }, + [ + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 811 + }, + "min": { + "#": 812 + } + }, + { + "x": 300, + "y": 460 + }, + { + "x": 260, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 440 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 820 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 828 + }, + "bounds": { + "#": 831 + }, + "collisionFilter": { + "#": 834 + }, + "constraintImpulse": { + "#": 835 + }, + "density": 0.001, + "force": { + "#": 836 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 837 + }, + "positionImpulse": { + "#": 838 + }, + "positionPrev": { + "#": 839 + }, + "render": { + "#": 840 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 842 + }, + "vertices": { + "#": 843 + } + }, + [ + { + "#": 829 + }, + { + "#": 830 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 832 + }, + "min": { + "#": 833 + } + }, + { + "x": 340, + "y": 460 + }, + { + "x": 300, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 440 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 841 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 849 + }, + "bounds": { + "#": 852 + }, + "collisionFilter": { + "#": 855 + }, + "constraintImpulse": { + "#": 856 + }, + "density": 0.001, + "force": { + "#": 857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 858 + }, + "positionImpulse": { + "#": 859 + }, + "positionPrev": { + "#": 860 + }, + "render": { + "#": 861 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 863 + }, + "vertices": { + "#": 864 + } + }, + [ + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 853 + }, + "min": { + "#": 854 + } + }, + { + "x": 380, + "y": 460 + }, + { + "x": 340, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 440 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 862 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 870 + }, + "bounds": { + "#": 873 + }, + "collisionFilter": { + "#": 876 + }, + "constraintImpulse": { + "#": 877 + }, + "density": 0.001, + "force": { + "#": 878 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 879 + }, + "positionImpulse": { + "#": 880 + }, + "positionPrev": { + "#": 881 + }, + "render": { + "#": 882 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 884 + }, + "vertices": { + "#": 885 + } + }, + [ + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 874 + }, + "min": { + "#": 875 + } + }, + { + "x": 420, + "y": 460 + }, + { + "x": 380, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 440 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 883 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 891 + }, + "bounds": { + "#": 894 + }, + "collisionFilter": { + "#": 897 + }, + "constraintImpulse": { + "#": 898 + }, + "density": 0.001, + "force": { + "#": 899 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 900 + }, + "positionImpulse": { + "#": 901 + }, + "positionPrev": { + "#": 902 + }, + "render": { + "#": 903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 905 + }, + "vertices": { + "#": 906 + } + }, + [ + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 895 + }, + "min": { + "#": 896 + } + }, + { + "x": 460, + "y": 460 + }, + { + "x": 420, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 440 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 904 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 912 + }, + "bounds": { + "#": 915 + }, + "collisionFilter": { + "#": 918 + }, + "constraintImpulse": { + "#": 919 + }, + "density": 0.001, + "force": { + "#": 920 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 921 + }, + "positionImpulse": { + "#": 922 + }, + "positionPrev": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 916 + }, + "min": { + "#": 917 + } + }, + { + "x": 500, + "y": 460 + }, + { + "x": 460, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 440 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 460 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 460 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 933 + }, + "bounds": { + "#": 936 + }, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "render": { + "#": 945 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 947 + }, + "vertices": { + "#": 948 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 140, + "y": 500 + }, + { + "x": 100, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 480 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 946 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 954 + }, + "bounds": { + "#": 957 + }, + "collisionFilter": { + "#": 960 + }, + "constraintImpulse": { + "#": 961 + }, + "density": 0.001, + "force": { + "#": 962 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 963 + }, + "positionImpulse": { + "#": 964 + }, + "positionPrev": { + "#": 965 + }, + "render": { + "#": 966 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 968 + }, + "vertices": { + "#": 969 + } + }, + [ + { + "#": 955 + }, + { + "#": 956 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 958 + }, + "min": { + "#": 959 + } + }, + { + "x": 180, + "y": 500 + }, + { + "x": 140, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 480 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 967 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 975 + }, + "bounds": { + "#": 978 + }, + "collisionFilter": { + "#": 981 + }, + "constraintImpulse": { + "#": 982 + }, + "density": 0.001, + "force": { + "#": 983 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 984 + }, + "positionImpulse": { + "#": 985 + }, + "positionPrev": { + "#": 986 + }, + "render": { + "#": 987 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 989 + }, + "vertices": { + "#": 990 + } + }, + [ + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 979 + }, + "min": { + "#": 980 + } + }, + { + "x": 220, + "y": 500 + }, + { + "x": 180, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 480 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 988 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 996 + }, + "bounds": { + "#": 999 + }, + "collisionFilter": { + "#": 1002 + }, + "constraintImpulse": { + "#": 1003 + }, + "density": 0.001, + "force": { + "#": 1004 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1005 + }, + "positionImpulse": { + "#": 1006 + }, + "positionPrev": { + "#": 1007 + }, + "render": { + "#": 1008 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1010 + }, + "vertices": { + "#": 1011 + } + }, + [ + { + "#": 997 + }, + { + "#": 998 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1000 + }, + "min": { + "#": 1001 + } + }, + { + "x": 260, + "y": 500 + }, + { + "x": 220, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 480 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1009 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1017 + }, + "bounds": { + "#": 1020 + }, + "collisionFilter": { + "#": 1023 + }, + "constraintImpulse": { + "#": 1024 + }, + "density": 0.001, + "force": { + "#": 1025 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1026 + }, + "positionImpulse": { + "#": 1027 + }, + "positionPrev": { + "#": 1028 + }, + "render": { + "#": 1029 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1031 + }, + "vertices": { + "#": 1032 + } + }, + [ + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1021 + }, + "min": { + "#": 1022 + } + }, + { + "x": 300, + "y": 500 + }, + { + "x": 260, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 480 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1030 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1038 + }, + "bounds": { + "#": 1041 + }, + "collisionFilter": { + "#": 1044 + }, + "constraintImpulse": { + "#": 1045 + }, + "density": 0.001, + "force": { + "#": 1046 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1047 + }, + "positionImpulse": { + "#": 1048 + }, + "positionPrev": { + "#": 1049 + }, + "render": { + "#": 1050 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1052 + }, + "vertices": { + "#": 1053 + } + }, + [ + { + "#": 1039 + }, + { + "#": 1040 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1042 + }, + "min": { + "#": 1043 + } + }, + { + "x": 340, + "y": 500 + }, + { + "x": 300, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 480 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1051 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1059 + }, + "bounds": { + "#": 1062 + }, + "collisionFilter": { + "#": 1065 + }, + "constraintImpulse": { + "#": 1066 + }, + "density": 0.001, + "force": { + "#": 1067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1068 + }, + "positionImpulse": { + "#": 1069 + }, + "positionPrev": { + "#": 1070 + }, + "render": { + "#": 1071 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1073 + }, + "vertices": { + "#": 1074 + } + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1063 + }, + "min": { + "#": 1064 + } + }, + { + "x": 380, + "y": 500 + }, + { + "x": 340, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 480 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1072 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1080 + }, + "bounds": { + "#": 1083 + }, + "collisionFilter": { + "#": 1086 + }, + "constraintImpulse": { + "#": 1087 + }, + "density": 0.001, + "force": { + "#": 1088 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1089 + }, + "positionImpulse": { + "#": 1090 + }, + "positionPrev": { + "#": 1091 + }, + "render": { + "#": 1092 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1094 + }, + "vertices": { + "#": 1095 + } + }, + [ + { + "#": 1081 + }, + { + "#": 1082 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1084 + }, + "min": { + "#": 1085 + } + }, + { + "x": 420, + "y": 500 + }, + { + "x": 380, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 480 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1093 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1101 + }, + "bounds": { + "#": 1104 + }, + "collisionFilter": { + "#": 1107 + }, + "constraintImpulse": { + "#": 1108 + }, + "density": 0.001, + "force": { + "#": 1109 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1110 + }, + "positionImpulse": { + "#": 1111 + }, + "positionPrev": { + "#": 1112 + }, + "render": { + "#": 1113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1115 + }, + "vertices": { + "#": 1116 + } + }, + [ + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1105 + }, + "min": { + "#": 1106 + } + }, + { + "x": 460, + "y": 500 + }, + { + "x": 420, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 480 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1114 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 500 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1122 + }, + "bounds": { + "#": 1125 + }, + "collisionFilter": { + "#": 1128 + }, + "constraintImpulse": { + "#": 1129 + }, + "density": 0.001, + "force": { + "#": 1130 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1131 + }, + "positionImpulse": { + "#": 1132 + }, + "positionPrev": { + "#": 1133 + }, + "render": { + "#": 1134 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1136 + }, + "vertices": { + "#": 1137 + } + }, + [ + { + "#": 1123 + }, + { + "#": 1124 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1126 + }, + "min": { + "#": 1127 + } + }, + { + "x": 500, + "y": 500 + }, + { + "x": 460, + "y": 460 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 480 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1135 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 460 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 460 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 500 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 500 + }, + [], + [], + [ + { + "#": 1145 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1146 + }, + "pointB": "", + "render": { + "#": 1147 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 1149 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/stack/stack-10.json b/tests/browser/refs/stack/stack-10.json new file mode 100644 index 00000000..36dd7407 --- /dev/null +++ b/tests/browser/refs/stack/stack-10.json @@ -0,0 +1,10592 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 1198 + }, + "events": { + "#": 1202 + }, + "gravity": { + "#": 1204 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1196 + }, + "constraints": { + "#": 1197 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 206 + }, + { + "#": 228 + }, + { + "#": 250 + }, + { + "#": 272 + }, + { + "#": 294 + }, + { + "#": 316 + }, + { + "#": 338 + }, + { + "#": 360 + }, + { + "#": 382 + }, + { + "#": 404 + }, + { + "#": 426 + }, + { + "#": 448 + }, + { + "#": 470 + }, + { + "#": 492 + }, + { + "#": 514 + }, + { + "#": 536 + }, + { + "#": 558 + }, + { + "#": 580 + }, + { + "#": 602 + }, + { + "#": 624 + }, + { + "#": 646 + }, + { + "#": 668 + }, + { + "#": 690 + }, + { + "#": 712 + }, + { + "#": 734 + }, + { + "#": 756 + }, + { + "#": 778 + }, + { + "#": 800 + }, + { + "#": 822 + }, + { + "#": 844 + }, + { + "#": 866 + }, + { + "#": 888 + }, + { + "#": 910 + }, + { + "#": 932 + }, + { + "#": 954 + }, + { + "#": 976 + }, + { + "#": 998 + }, + { + "#": 1020 + }, + { + "#": 1042 + }, + { + "#": 1064 + }, + { + "#": 1086 + }, + { + "#": 1108 + }, + { + "#": 1130 + }, + { + "#": 1152 + }, + { + "#": 1174 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 140, + "y": 357.73575476702496 + }, + { + "x": 100, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 334.8284840519894 + }, + { + "endCol": 2, + "endRow": 7, + "id": "2,2,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 180, + "y": 357.73575476702496 + }, + { + "x": 140, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 334.8284840519894 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 220, + "y": 357.73575476702496 + }, + { + "x": 180, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 334.8284840519894 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 260, + "y": 357.73575476702496 + }, + { + "x": 220, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 334.8284840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 185 + }, + "bounds": { + "#": 188 + }, + "collisionFilter": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "density": 0.001, + "force": { + "#": 193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 194 + }, + "positionImpulse": { + "#": 195 + }, + "positionPrev": { + "#": 196 + }, + "region": { + "#": 197 + }, + "render": { + "#": 198 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 200 + }, + "vertices": { + "#": 201 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 189 + }, + "min": { + "#": 190 + } + }, + { + "x": 300, + "y": 357.73575476702496 + }, + { + "x": 260, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 334.8284840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 199 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 207 + }, + "bounds": { + "#": 210 + }, + "collisionFilter": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "density": 0.001, + "force": { + "#": 215 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 216 + }, + "positionImpulse": { + "#": 217 + }, + "positionPrev": { + "#": 218 + }, + "region": { + "#": 219 + }, + "render": { + "#": 220 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 222 + }, + "vertices": { + "#": 223 + } + }, + [ + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 211 + }, + "min": { + "#": 212 + } + }, + { + "x": 340, + "y": 357.73575476702496 + }, + { + "x": 300, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 334.8284840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 221 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 229 + }, + "bounds": { + "#": 232 + }, + "collisionFilter": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "density": 0.001, + "force": { + "#": 237 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 238 + }, + "positionImpulse": { + "#": 239 + }, + "positionPrev": { + "#": 240 + }, + "region": { + "#": 241 + }, + "render": { + "#": 242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 244 + }, + "vertices": { + "#": 245 + } + }, + [ + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 233 + }, + "min": { + "#": 234 + } + }, + { + "x": 380, + "y": 357.73575476702496 + }, + { + "x": 340, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 334.8284840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 243 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 251 + }, + "bounds": { + "#": 254 + }, + "collisionFilter": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "density": 0.001, + "force": { + "#": 259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 260 + }, + "positionImpulse": { + "#": 261 + }, + "positionPrev": { + "#": 262 + }, + "region": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 255 + }, + "min": { + "#": 256 + } + }, + { + "x": 420, + "y": 357.73575476702496 + }, + { + "x": 380, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 334.8284840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 460, + "y": 357.73575476702496 + }, + { + "x": 420, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 334.8284840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 295 + }, + "bounds": { + "#": 298 + }, + "collisionFilter": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "density": 0.001, + "force": { + "#": 303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 304 + }, + "positionImpulse": { + "#": 305 + }, + "positionPrev": { + "#": 306 + }, + "region": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 299 + }, + "min": { + "#": 300 + } + }, + { + "x": 500, + "y": 357.73575476702496 + }, + { + "x": 460, + "y": 317.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 337.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 334.8284840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 317.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 357.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 317 + }, + "bounds": { + "#": 320 + }, + "collisionFilter": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "density": 0.001, + "force": { + "#": 325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 326 + }, + "positionImpulse": { + "#": 327 + }, + "positionPrev": { + "#": 328 + }, + "region": { + "#": 329 + }, + "render": { + "#": 330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 332 + }, + "vertices": { + "#": 333 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 321 + }, + "min": { + "#": 322 + } + }, + { + "x": 140, + "y": 397.73575476702496 + }, + { + "x": 100, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 374.8284840519894 + }, + { + "endCol": 2, + "endRow": 8, + "id": "2,2,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 331 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 339 + }, + "bounds": { + "#": 342 + }, + "collisionFilter": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "density": 0.001, + "force": { + "#": 347 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 348 + }, + "positionImpulse": { + "#": 349 + }, + "positionPrev": { + "#": 350 + }, + "region": { + "#": 351 + }, + "render": { + "#": 352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 354 + }, + "vertices": { + "#": 355 + } + }, + [ + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 343 + }, + "min": { + "#": 344 + } + }, + { + "x": 180, + "y": 397.73575476702496 + }, + { + "x": 140, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 374.8284840519894 + }, + { + "endCol": 3, + "endRow": 8, + "id": "2,3,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 353 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 361 + }, + "bounds": { + "#": 364 + }, + "collisionFilter": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "density": 0.001, + "force": { + "#": 369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 370 + }, + "positionImpulse": { + "#": 371 + }, + "positionPrev": { + "#": 372 + }, + "region": { + "#": 373 + }, + "render": { + "#": 374 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 376 + }, + "vertices": { + "#": 377 + } + }, + [ + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 365 + }, + "min": { + "#": 366 + } + }, + { + "x": 220, + "y": 397.73575476702496 + }, + { + "x": 180, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 374.8284840519894 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 375 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 383 + }, + "bounds": { + "#": 386 + }, + "collisionFilter": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "density": 0.001, + "force": { + "#": 391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 392 + }, + "positionImpulse": { + "#": 393 + }, + "positionPrev": { + "#": 394 + }, + "region": { + "#": 395 + }, + "render": { + "#": 396 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 398 + }, + "vertices": { + "#": 399 + } + }, + [ + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 387 + }, + "min": { + "#": 388 + } + }, + { + "x": 260, + "y": 397.73575476702496 + }, + { + "x": 220, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 374.8284840519894 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 397 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 405 + }, + "bounds": { + "#": 408 + }, + "collisionFilter": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "density": 0.001, + "force": { + "#": 413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 414 + }, + "positionImpulse": { + "#": 415 + }, + "positionPrev": { + "#": 416 + }, + "region": { + "#": 417 + }, + "render": { + "#": 418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 420 + }, + "vertices": { + "#": 421 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 409 + }, + "min": { + "#": 410 + } + }, + { + "x": 300, + "y": 397.73575476702496 + }, + { + "x": 260, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 374.8284840519894 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 419 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 427 + }, + "bounds": { + "#": 430 + }, + "collisionFilter": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "density": 0.001, + "force": { + "#": 435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 436 + }, + "positionImpulse": { + "#": 437 + }, + "positionPrev": { + "#": 438 + }, + "region": { + "#": 439 + }, + "render": { + "#": 440 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 442 + }, + "vertices": { + "#": 443 + } + }, + [ + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 431 + }, + "min": { + "#": 432 + } + }, + { + "x": 340, + "y": 397.73575476702496 + }, + { + "x": 300, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 374.8284840519894 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 441 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 449 + }, + "bounds": { + "#": 452 + }, + "collisionFilter": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "density": 0.001, + "force": { + "#": 457 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 458 + }, + "positionImpulse": { + "#": 459 + }, + "positionPrev": { + "#": 460 + }, + "region": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 453 + }, + "min": { + "#": 454 + } + }, + { + "x": 380, + "y": 397.73575476702496 + }, + { + "x": 340, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 374.8284840519894 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 471 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "region": { + "#": 483 + }, + "render": { + "#": 484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 486 + }, + "vertices": { + "#": 487 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 420, + "y": 397.73575476702496 + }, + { + "x": 380, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 374.8284840519894 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 485 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 493 + }, + "bounds": { + "#": 496 + }, + "collisionFilter": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "density": 0.001, + "force": { + "#": 501 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 502 + }, + "positionImpulse": { + "#": 503 + }, + "positionPrev": { + "#": 504 + }, + "region": { + "#": 505 + }, + "render": { + "#": 506 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 508 + }, + "vertices": { + "#": 509 + } + }, + [ + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 497 + }, + "min": { + "#": 498 + } + }, + { + "x": 460, + "y": 397.73575476702496 + }, + { + "x": 420, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 374.8284840519894 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 507 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 515 + }, + "bounds": { + "#": 518 + }, + "collisionFilter": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "density": 0.001, + "force": { + "#": 523 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 524 + }, + "positionImpulse": { + "#": 525 + }, + "positionPrev": { + "#": 526 + }, + "region": { + "#": 527 + }, + "render": { + "#": 528 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 530 + }, + "vertices": { + "#": 531 + } + }, + [ + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 519 + }, + "min": { + "#": 520 + } + }, + { + "x": 500, + "y": 397.73575476702496 + }, + { + "x": 460, + "y": 357.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 377.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 374.8284840519894 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 529 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 357.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 397.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 537 + }, + "bounds": { + "#": 540 + }, + "collisionFilter": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "density": 0.001, + "force": { + "#": 545 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 546 + }, + "positionImpulse": { + "#": 547 + }, + "positionPrev": { + "#": 548 + }, + "region": { + "#": 549 + }, + "render": { + "#": 550 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 552 + }, + "vertices": { + "#": 553 + } + }, + [ + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 541 + }, + "min": { + "#": 542 + } + }, + { + "x": 140, + "y": 437.73575476702496 + }, + { + "x": 100, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 414.8284840519894 + }, + { + "endCol": 2, + "endRow": 9, + "id": "2,2,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 551 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 559 + }, + "bounds": { + "#": 562 + }, + "collisionFilter": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "density": 0.001, + "force": { + "#": 567 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 568 + }, + "positionImpulse": { + "#": 569 + }, + "positionPrev": { + "#": 570 + }, + "region": { + "#": 571 + }, + "render": { + "#": 572 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 574 + }, + "vertices": { + "#": 575 + } + }, + [ + { + "#": 560 + }, + { + "#": 561 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 563 + }, + "min": { + "#": 564 + } + }, + { + "x": 180, + "y": 437.73575476702496 + }, + { + "x": 140, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 414.8284840519894 + }, + { + "endCol": 3, + "endRow": 9, + "id": "2,3,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 573 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 581 + }, + "bounds": { + "#": 584 + }, + "collisionFilter": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "density": 0.001, + "force": { + "#": 589 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 590 + }, + "positionImpulse": { + "#": 591 + }, + "positionPrev": { + "#": 592 + }, + "region": { + "#": 593 + }, + "render": { + "#": 594 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 596 + }, + "vertices": { + "#": 597 + } + }, + [ + { + "#": 582 + }, + { + "#": 583 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 585 + }, + "min": { + "#": 586 + } + }, + { + "x": 220, + "y": 437.73575476702496 + }, + { + "x": 180, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 414.8284840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 595 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 603 + }, + "bounds": { + "#": 606 + }, + "collisionFilter": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "density": 0.001, + "force": { + "#": 611 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 612 + }, + "positionImpulse": { + "#": 613 + }, + "positionPrev": { + "#": 614 + }, + "region": { + "#": 615 + }, + "render": { + "#": 616 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 618 + }, + "vertices": { + "#": 619 + } + }, + [ + { + "#": 604 + }, + { + "#": 605 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 607 + }, + "min": { + "#": 608 + } + }, + { + "x": 260, + "y": 437.73575476702496 + }, + { + "x": 220, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 414.8284840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 617 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 625 + }, + "bounds": { + "#": 628 + }, + "collisionFilter": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "density": 0.001, + "force": { + "#": 633 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 634 + }, + "positionImpulse": { + "#": 635 + }, + "positionPrev": { + "#": 636 + }, + "region": { + "#": 637 + }, + "render": { + "#": 638 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 640 + }, + "vertices": { + "#": 641 + } + }, + [ + { + "#": 626 + }, + { + "#": 627 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 629 + }, + "min": { + "#": 630 + } + }, + { + "x": 300, + "y": 437.73575476702496 + }, + { + "x": 260, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 414.8284840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 639 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 647 + }, + "bounds": { + "#": 650 + }, + "collisionFilter": { + "#": 653 + }, + "constraintImpulse": { + "#": 654 + }, + "density": 0.001, + "force": { + "#": 655 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 656 + }, + "positionImpulse": { + "#": 657 + }, + "positionPrev": { + "#": 658 + }, + "region": { + "#": 659 + }, + "render": { + "#": 660 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 662 + }, + "vertices": { + "#": 663 + } + }, + [ + { + "#": 648 + }, + { + "#": 649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 651 + }, + "min": { + "#": 652 + } + }, + { + "x": 340, + "y": 437.73575476702496 + }, + { + "x": 300, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 414.8284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 661 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 669 + }, + "bounds": { + "#": 672 + }, + "collisionFilter": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "density": 0.001, + "force": { + "#": 677 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 678 + }, + "positionImpulse": { + "#": 679 + }, + "positionPrev": { + "#": 680 + }, + "region": { + "#": 681 + }, + "render": { + "#": 682 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 684 + }, + "vertices": { + "#": 685 + } + }, + [ + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 673 + }, + "min": { + "#": 674 + } + }, + { + "x": 380, + "y": 437.73575476702496 + }, + { + "x": 340, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 414.8284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 683 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 691 + }, + "bounds": { + "#": 694 + }, + "collisionFilter": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "density": 0.001, + "force": { + "#": 699 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 700 + }, + "positionImpulse": { + "#": 701 + }, + "positionPrev": { + "#": 702 + }, + "region": { + "#": 703 + }, + "render": { + "#": 704 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 706 + }, + "vertices": { + "#": 707 + } + }, + [ + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 695 + }, + "min": { + "#": 696 + } + }, + { + "x": 420, + "y": 437.73575476702496 + }, + { + "x": 380, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 414.8284840519894 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 705 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 713 + }, + "bounds": { + "#": 716 + }, + "collisionFilter": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "density": 0.001, + "force": { + "#": 721 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 722 + }, + "positionImpulse": { + "#": 723 + }, + "positionPrev": { + "#": 724 + }, + "region": { + "#": 725 + }, + "render": { + "#": 726 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 728 + }, + "vertices": { + "#": 729 + } + }, + [ + { + "#": 714 + }, + { + "#": 715 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 717 + }, + "min": { + "#": 718 + } + }, + { + "x": 460, + "y": 437.73575476702496 + }, + { + "x": 420, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 414.8284840519894 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 727 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 735 + }, + "bounds": { + "#": 738 + }, + "collisionFilter": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "density": 0.001, + "force": { + "#": 743 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 744 + }, + "positionImpulse": { + "#": 745 + }, + "positionPrev": { + "#": 746 + }, + "region": { + "#": 747 + }, + "render": { + "#": 748 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 750 + }, + "vertices": { + "#": 751 + } + }, + [ + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 739 + }, + "min": { + "#": 740 + } + }, + { + "x": 500, + "y": 437.73575476702496 + }, + { + "x": 460, + "y": 397.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 417.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 414.8284840519894 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 749 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 397.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 757 + }, + "bounds": { + "#": 760 + }, + "collisionFilter": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "density": 0.001, + "force": { + "#": 765 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 766 + }, + "positionImpulse": { + "#": 767 + }, + "positionPrev": { + "#": 768 + }, + "region": { + "#": 769 + }, + "render": { + "#": 770 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 772 + }, + "vertices": { + "#": 773 + } + }, + [ + { + "#": 758 + }, + { + "#": 759 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 761 + }, + "min": { + "#": 762 + } + }, + { + "x": 140, + "y": 477.73575476702496 + }, + { + "x": 100, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 454.8284840519894 + }, + { + "endCol": 2, + "endRow": 9, + "id": "2,2,9,9", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 771 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 779 + }, + "bounds": { + "#": 782 + }, + "collisionFilter": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "density": 0.001, + "force": { + "#": 787 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 788 + }, + "positionImpulse": { + "#": 789 + }, + "positionPrev": { + "#": 790 + }, + "region": { + "#": 791 + }, + "render": { + "#": 792 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 794 + }, + "vertices": { + "#": 795 + } + }, + [ + { + "#": 780 + }, + { + "#": 781 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 783 + }, + "min": { + "#": 784 + } + }, + { + "x": 180, + "y": 477.73575476702496 + }, + { + "x": 140, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 454.8284840519894 + }, + { + "endCol": 3, + "endRow": 9, + "id": "2,3,9,9", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 793 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 801 + }, + "bounds": { + "#": 804 + }, + "collisionFilter": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "density": 0.001, + "force": { + "#": 809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 810 + }, + "positionImpulse": { + "#": 811 + }, + "positionPrev": { + "#": 812 + }, + "region": { + "#": 813 + }, + "render": { + "#": 814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 816 + }, + "vertices": { + "#": 817 + } + }, + [ + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 805 + }, + "min": { + "#": 806 + } + }, + { + "x": 220, + "y": 477.73575476702496 + }, + { + "x": 180, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 454.8284840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,9,9", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 815 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 823 + }, + "bounds": { + "#": 826 + }, + "collisionFilter": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "density": 0.001, + "force": { + "#": 831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 832 + }, + "positionImpulse": { + "#": 833 + }, + "positionPrev": { + "#": 834 + }, + "region": { + "#": 835 + }, + "render": { + "#": 836 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 838 + }, + "vertices": { + "#": 839 + } + }, + [ + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 827 + }, + "min": { + "#": 828 + } + }, + { + "x": 260, + "y": 477.73575476702496 + }, + { + "x": 220, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 454.8284840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,9,9", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 837 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 845 + }, + "bounds": { + "#": 848 + }, + "collisionFilter": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "density": 0.001, + "force": { + "#": 853 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 854 + }, + "positionImpulse": { + "#": 855 + }, + "positionPrev": { + "#": 856 + }, + "region": { + "#": 857 + }, + "render": { + "#": 858 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 860 + }, + "vertices": { + "#": 861 + } + }, + [ + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 849 + }, + "min": { + "#": 850 + } + }, + { + "x": 300, + "y": 477.73575476702496 + }, + { + "x": 260, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 454.8284840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,9,9", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 859 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 867 + }, + "bounds": { + "#": 870 + }, + "collisionFilter": { + "#": 873 + }, + "constraintImpulse": { + "#": 874 + }, + "density": 0.001, + "force": { + "#": 875 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 876 + }, + "positionImpulse": { + "#": 877 + }, + "positionPrev": { + "#": 878 + }, + "region": { + "#": 879 + }, + "render": { + "#": 880 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 882 + }, + "vertices": { + "#": 883 + } + }, + [ + { + "#": 868 + }, + { + "#": 869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 871 + }, + "min": { + "#": 872 + } + }, + { + "x": 340, + "y": 477.73575476702496 + }, + { + "x": 300, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 454.8284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,9,9", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 881 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 889 + }, + "bounds": { + "#": 892 + }, + "collisionFilter": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "density": 0.001, + "force": { + "#": 897 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 898 + }, + "positionImpulse": { + "#": 899 + }, + "positionPrev": { + "#": 900 + }, + "region": { + "#": 901 + }, + "render": { + "#": 902 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 904 + }, + "vertices": { + "#": 905 + } + }, + [ + { + "#": 890 + }, + { + "#": 891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 893 + }, + "min": { + "#": 894 + } + }, + { + "x": 380, + "y": 477.73575476702496 + }, + { + "x": 340, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 454.8284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,9,9", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 903 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 911 + }, + "bounds": { + "#": 914 + }, + "collisionFilter": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "density": 0.001, + "force": { + "#": 919 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 920 + }, + "positionImpulse": { + "#": 921 + }, + "positionPrev": { + "#": 922 + }, + "region": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 912 + }, + { + "#": 913 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 915 + }, + "min": { + "#": 916 + } + }, + { + "x": 420, + "y": 477.73575476702496 + }, + { + "x": 380, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 454.8284840519894 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,9,9", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 933 + }, + "bounds": { + "#": 936 + }, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "region": { + "#": 945 + }, + "render": { + "#": 946 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 948 + }, + "vertices": { + "#": 949 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 460, + "y": 477.73575476702496 + }, + { + "x": 420, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 454.8284840519894 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,9,9", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 947 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 955 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 500, + "y": 477.73575476702496 + }, + { + "x": 460, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 457.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 454.8284840519894 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,9,9", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 477.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 977 + }, + "bounds": { + "#": 980 + }, + "collisionFilter": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "density": 0.001, + "force": { + "#": 985 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 986 + }, + "positionImpulse": { + "#": 987 + }, + "positionPrev": { + "#": 988 + }, + "region": { + "#": 989 + }, + "render": { + "#": 990 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 992 + }, + "vertices": { + "#": 993 + } + }, + [ + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 981 + }, + "min": { + "#": 982 + } + }, + { + "x": 140, + "y": 517.7357547670249 + }, + { + "x": 100, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 120, + "y": 494.8284840519894 + }, + { + "endCol": 2, + "endRow": 10, + "id": "2,2,9,10", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 991 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 999 + }, + "bounds": { + "#": 1002 + }, + "collisionFilter": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "density": 0.001, + "force": { + "#": 1007 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1008 + }, + "positionImpulse": { + "#": 1009 + }, + "positionPrev": { + "#": 1010 + }, + "region": { + "#": 1011 + }, + "render": { + "#": 1012 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1014 + }, + "vertices": { + "#": 1015 + } + }, + [ + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1003 + }, + "min": { + "#": 1004 + } + }, + { + "x": 180, + "y": 517.7357547670249 + }, + { + "x": 140, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 160, + "y": 494.8284840519894 + }, + { + "endCol": 3, + "endRow": 10, + "id": "2,3,9,10", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1013 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 180, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1021 + }, + "bounds": { + "#": 1024 + }, + "collisionFilter": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "density": 0.001, + "force": { + "#": 1029 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1030 + }, + "positionImpulse": { + "#": 1031 + }, + "positionPrev": { + "#": 1032 + }, + "region": { + "#": 1033 + }, + "render": { + "#": 1034 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1036 + }, + "vertices": { + "#": 1037 + } + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1025 + }, + "min": { + "#": 1026 + } + }, + { + "x": 220, + "y": 517.7357547670249 + }, + { + "x": 180, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 200, + "y": 494.8284840519894 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,9,10", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1035 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 220, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 220, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1043 + }, + "bounds": { + "#": 1046 + }, + "collisionFilter": { + "#": 1049 + }, + "constraintImpulse": { + "#": 1050 + }, + "density": 0.001, + "force": { + "#": 1051 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1052 + }, + "positionImpulse": { + "#": 1053 + }, + "positionPrev": { + "#": 1054 + }, + "region": { + "#": 1055 + }, + "render": { + "#": 1056 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1058 + }, + "vertices": { + "#": 1059 + } + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1047 + }, + "min": { + "#": 1048 + } + }, + { + "x": 260, + "y": 517.7357547670249 + }, + { + "x": 220, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 240, + "y": 494.8284840519894 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1057 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 220, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 260, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 260, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 220, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1065 + }, + "bounds": { + "#": 1068 + }, + "collisionFilter": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "density": 0.001, + "force": { + "#": 1073 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1074 + }, + "positionImpulse": { + "#": 1075 + }, + "positionPrev": { + "#": 1076 + }, + "region": { + "#": 1077 + }, + "render": { + "#": 1078 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1080 + }, + "vertices": { + "#": 1081 + } + }, + [ + { + "#": 1066 + }, + { + "#": 1067 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1069 + }, + "min": { + "#": 1070 + } + }, + { + "x": 300, + "y": 517.7357547670249 + }, + { + "x": 260, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280, + "y": 494.8284840519894 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1079 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 260, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 260, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1087 + }, + "bounds": { + "#": 1090 + }, + "collisionFilter": { + "#": 1093 + }, + "constraintImpulse": { + "#": 1094 + }, + "density": 0.001, + "force": { + "#": 1095 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1096 + }, + "positionImpulse": { + "#": 1097 + }, + "positionPrev": { + "#": 1098 + }, + "region": { + "#": 1099 + }, + "render": { + "#": 1100 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1102 + }, + "vertices": { + "#": 1103 + } + }, + [ + { + "#": 1088 + }, + { + "#": 1089 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1091 + }, + "min": { + "#": 1092 + } + }, + { + "x": 340, + "y": 517.7357547670249 + }, + { + "x": 300, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 320, + "y": 494.8284840519894 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1101 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 340, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 340, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1109 + }, + "bounds": { + "#": 1112 + }, + "collisionFilter": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "density": 0.001, + "force": { + "#": 1117 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1118 + }, + "positionImpulse": { + "#": 1119 + }, + "positionPrev": { + "#": 1120 + }, + "region": { + "#": 1121 + }, + "render": { + "#": 1122 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1124 + }, + "vertices": { + "#": 1125 + } + }, + [ + { + "#": 1110 + }, + { + "#": 1111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1113 + }, + "min": { + "#": 1114 + } + }, + { + "x": 380, + "y": 517.7357547670249 + }, + { + "x": 340, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 360, + "y": 494.8284840519894 + }, + { + "endCol": 7, + "endRow": 10, + "id": "7,7,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1123 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 340, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1131 + }, + "bounds": { + "#": 1134 + }, + "collisionFilter": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "density": 0.001, + "force": { + "#": 1139 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1140 + }, + "positionImpulse": { + "#": 1141 + }, + "positionPrev": { + "#": 1142 + }, + "region": { + "#": 1143 + }, + "render": { + "#": 1144 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1146 + }, + "vertices": { + "#": 1147 + } + }, + [ + { + "#": 1132 + }, + { + "#": 1133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1135 + }, + "min": { + "#": 1136 + } + }, + { + "x": 420, + "y": 517.7357547670249 + }, + { + "x": 380, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 494.8284840519894 + }, + { + "endCol": 8, + "endRow": 10, + "id": "7,8,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1145 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 380, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 420, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 420, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 380, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1153 + }, + "bounds": { + "#": 1156 + }, + "collisionFilter": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "density": 0.001, + "force": { + "#": 1161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1162 + }, + "positionImpulse": { + "#": 1163 + }, + "positionPrev": { + "#": 1164 + }, + "region": { + "#": 1165 + }, + "render": { + "#": 1166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1168 + }, + "vertices": { + "#": 1169 + } + }, + [ + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1157 + }, + "min": { + "#": 1158 + } + }, + { + "x": 460, + "y": 517.7357547670249 + }, + { + "x": 420, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 440, + "y": 494.8284840519894 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1167 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 420, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 460, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 460, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 420, + "y": 517.7357547670249 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1175 + }, + "bounds": { + "#": 1178 + }, + "collisionFilter": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "density": 0.001, + "force": { + "#": 1183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1184 + }, + "positionImpulse": { + "#": 1185 + }, + "positionPrev": { + "#": 1186 + }, + "region": { + "#": 1187 + }, + "render": { + "#": 1188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1190 + }, + "vertices": { + "#": 1191 + } + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1179 + }, + "min": { + "#": 1180 + } + }, + { + "x": 500, + "y": 517.7357547670249 + }, + { + "x": 460, + "y": 477.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 497.73575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 480, + "y": 494.8284840519894 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1189 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 477.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 517.7357547670249 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 460, + "y": 517.7357547670249 + }, + [], + [], + [ + { + "#": 1199 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1200 + }, + "pointB": "", + "render": { + "#": 1201 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 1203 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/staticFriction/staticFriction-0.json b/tests/browser/refs/staticFriction/staticFriction-0.json new file mode 100644 index 00000000..6db98016 --- /dev/null +++ b/tests/browser/refs/staticFriction/staticFriction-0.json @@ -0,0 +1,2390 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 125 + }, + "composites": { + "#": 128 + }, + "constraints": { + "#": 259 + }, + "events": { + "#": 263 + }, + "gravity": { + "#": 265 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 11907.05753611121, + "axes": { + "#": 87 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 101 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + }, + { + "#": 90 + }, + { + "#": 91 + }, + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0.9735046964338784, + "y": 0.22866701996829908 + }, + { + "x": 0.7698918823074706, + "y": 0.638174341036256 + }, + { + "x": 0.40525277492953526, + "y": 0.9142046753391232 + }, + { + "x": 0.0007482922731533067, + "y": 0.9999997200292978 + }, + { + "x": -0.22866701996829908, + "y": 0.9735046964338784 + }, + { + "x": -0.6381743410362559, + "y": 0.7698918823074709 + }, + { + "x": -0.9142046753391231, + "y": 0.40525277492953543 + }, + { + "x": -0.9999953440410466, + "y": 0.0030515399766088704 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 499.99999999999994, + "y": 530 + }, + { + "x": 299.99999999999994, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 500 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 500 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 299.99999999999994, + "y": 478 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300.83661769633886, + "y": 474.4382653142611 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.1714884928988, + "y": 471.6214831954606 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 306.5162638329129, + "y": 470.1387960854283 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 491.99999999999994, + "y": 470 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 495.5617346857388, + "y": 470.8366176963389 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 498.37851680453934, + "y": 473.1714884928988 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 499.86120391457166, + "y": 476.51626383291295 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 499.99999999999994, + "y": 522 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 499.163382303661, + "y": 525.5617346857389 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 496.82851150710115, + "y": 528.3785168045393 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 493.483736167087, + "y": 529.8612039145718 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 307.99999999999994, + "y": 530 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 304.4382653142611, + "y": 529.1633823036611 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 301.62148319546054, + "y": 526.8285115071012 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 300.1387960854282, + "y": 523.483736167087 + }, + { + "max": { + "#": 126 + }, + "min": { + "#": 127 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 129 + } + ], + { + "bodies": { + "#": 130 + }, + "composites": { + "#": 257 + }, + "constraints": { + "#": 258 + }, + "id": 5, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 131 + }, + { + "#": 152 + }, + { + "#": 173 + }, + { + "#": 194 + }, + { + "#": 215 + }, + { + "#": 236 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5000, + "axes": { + "#": 132 + }, + "bounds": { + "#": 135 + }, + "collisionFilter": { + "#": 138 + }, + "constraintImpulse": { + "#": 139 + }, + "density": 0.001, + "force": { + "#": 140 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 6, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 141 + }, + "positionImpulse": { + "#": 142 + }, + "positionPrev": { + "#": 143 + }, + "render": { + "#": 144 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 146 + }, + "vertices": { + "#": 147 + } + }, + [ + { + "#": 133 + }, + { + "#": 134 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 136 + }, + "min": { + "#": 137 + } + }, + { + "x": 450, + "y": 220 + }, + { + "x": 350, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 195 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 195 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 145 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5000, + "axes": { + "#": 153 + }, + "bounds": { + "#": 156 + }, + "collisionFilter": { + "#": 159 + }, + "constraintImpulse": { + "#": 160 + }, + "density": 0.001, + "force": { + "#": 161 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 7, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 162 + }, + "positionImpulse": { + "#": 163 + }, + "positionPrev": { + "#": 164 + }, + "render": { + "#": 165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 167 + }, + "vertices": { + "#": 168 + } + }, + [ + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 157 + }, + "min": { + "#": 158 + } + }, + { + "x": 450, + "y": 270 + }, + { + "x": 350, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 245 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 166 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5000, + "axes": { + "#": 174 + }, + "bounds": { + "#": 177 + }, + "collisionFilter": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "density": 0.001, + "force": { + "#": 182 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 8, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 183 + }, + "positionImpulse": { + "#": 184 + }, + "positionPrev": { + "#": 185 + }, + "render": { + "#": 186 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 188 + }, + "vertices": { + "#": 189 + } + }, + [ + { + "#": 175 + }, + { + "#": 176 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 178 + }, + "min": { + "#": 179 + } + }, + { + "x": 450, + "y": 320 + }, + { + "x": 350, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 295 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 187 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5000, + "axes": { + "#": 195 + }, + "bounds": { + "#": 198 + }, + "collisionFilter": { + "#": 201 + }, + "constraintImpulse": { + "#": 202 + }, + "density": 0.001, + "force": { + "#": 203 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 9, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 204 + }, + "positionImpulse": { + "#": 205 + }, + "positionPrev": { + "#": 206 + }, + "render": { + "#": 207 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 209 + }, + "vertices": { + "#": 210 + } + }, + [ + { + "#": 196 + }, + { + "#": 197 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 199 + }, + "min": { + "#": 200 + } + }, + { + "x": 450, + "y": 370 + }, + { + "x": 350, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 345 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 208 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5000, + "axes": { + "#": 216 + }, + "bounds": { + "#": 219 + }, + "collisionFilter": { + "#": 222 + }, + "constraintImpulse": { + "#": 223 + }, + "density": 0.001, + "force": { + "#": 224 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 10, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 225 + }, + "positionImpulse": { + "#": 226 + }, + "positionPrev": { + "#": 227 + }, + "render": { + "#": 228 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 230 + }, + "vertices": { + "#": 231 + } + }, + [ + { + "#": 217 + }, + { + "#": 218 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 220 + }, + "min": { + "#": 221 + } + }, + { + "x": 450, + "y": 420 + }, + { + "x": 350, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 395 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 229 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5000, + "axes": { + "#": 237 + }, + "bounds": { + "#": 240 + }, + "collisionFilter": { + "#": 243 + }, + "constraintImpulse": { + "#": 244 + }, + "density": 0.001, + "force": { + "#": 245 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 11, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 246 + }, + "positionImpulse": { + "#": 247 + }, + "positionPrev": { + "#": 248 + }, + "render": { + "#": 249 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 251 + }, + "vertices": { + "#": 252 + } + }, + [ + { + "#": 238 + }, + { + "#": 239 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 241 + }, + "min": { + "#": 242 + } + }, + { + "x": 450, + "y": 470 + }, + { + "x": 350, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 445 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 250 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 470 + }, + [], + [], + [ + { + "#": 260 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 261 + }, + "pointB": "", + "render": { + "#": 262 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 264 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/staticFriction/staticFriction-10.json b/tests/browser/refs/staticFriction/staticFriction-10.json new file mode 100644 index 00000000..370116d2 --- /dev/null +++ b/tests/browser/refs/staticFriction/staticFriction-10.json @@ -0,0 +1,2500 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 130 + }, + "composites": { + "#": 133 + }, + "constraints": { + "#": 270 + }, + "events": { + "#": 274 + }, + "gravity": { + "#": 276 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 11907.05753611121, + "axes": { + "#": 91 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 105 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 4, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 0.9735046964338784, + "y": 0.22866701996829908 + }, + { + "x": 0.7698918823074706, + "y": 0.638174341036256 + }, + { + "x": 0.40525277492953526, + "y": 0.9142046753391232 + }, + { + "x": 0.0007482922731533067, + "y": 0.9999997200292978 + }, + { + "x": -0.22866701996829908, + "y": 0.9735046964338784 + }, + { + "x": -0.6381743410362559, + "y": 0.7698918823074709 + }, + { + "x": -0.9142046753391231, + "y": 0.40525277492953543 + }, + { + "x": -0.9999953440410466, + "y": 0.0030515399766088704 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 499.99999999999994, + "y": 530 + }, + { + "x": 299.99999999999994, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 500 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 500 + }, + { + "endCol": 10, + "endRow": 11, + "id": "6,10,9,11", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 299.99999999999994, + "y": 478 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300.83661769633886, + "y": 474.4382653142611 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 303.1714884928988, + "y": 471.6214831954606 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 306.5162638329129, + "y": 470.1387960854283 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 491.99999999999994, + "y": 470 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 495.5617346857388, + "y": 470.8366176963389 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 498.37851680453934, + "y": 473.1714884928988 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 499.86120391457166, + "y": 476.51626383291295 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 499.99999999999994, + "y": 522 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 499.163382303661, + "y": 525.5617346857389 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 496.82851150710115, + "y": 528.3785168045393 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 493.483736167087, + "y": 529.8612039145718 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 307.99999999999994, + "y": 530 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 304.4382653142611, + "y": 529.1633823036611 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 301.62148319546054, + "y": 526.8285115071012 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 300.1387960854282, + "y": 523.483736167087 + }, + { + "max": { + "#": 131 + }, + "min": { + "#": 132 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 134 + } + ], + { + "bodies": { + "#": 135 + }, + "composites": { + "#": 268 + }, + "constraints": { + "#": 269 + }, + "id": 5, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 136 + }, + { + "#": 158 + }, + { + "#": 180 + }, + { + "#": 202 + }, + { + "#": 224 + }, + { + "#": 246 + } + ], + { + "angle": -0.0012310041134439187, + "anglePrev": -0.0011078552713938746, + "angularSpeed": 0.00017389392595529676, + "angularVelocity": -0.000122985028238402, + "area": 5000, + "axes": { + "#": 137 + }, + "bounds": { + "#": 140 + }, + "collisionFilter": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "density": 0.001, + "force": { + "#": 145 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 6, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 146 + }, + "positionImpulse": { + "#": 147 + }, + "positionPrev": { + "#": 148 + }, + "region": { + "#": 149 + }, + "render": { + "#": 150 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0.8129385467291288, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 152 + }, + "vertices": { + "#": 153 + } + }, + [ + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "x": 0.0012310038025392601, + "y": 0.999999242314532 + }, + { + "x": -0.999999242314532, + "y": 0.0012310038025392601 + }, + { + "max": { + "#": 141 + }, + "min": { + "#": 142 + } + }, + { + "x": 449.99156788988245, + "y": 229.79901368676073 + }, + { + "x": 349.9224952653303, + "y": 178.86304815346904 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.96083067909234, + "y": 203.9245794014593 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.9680789903058, + "y": 203.61982311816936 + }, + { + "endCol": 9, + "endRow": 4, + "id": "7,9,3,4", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 151 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.007267163289156997, + "y": 0.3068033213344279 + }, + [ + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 349.93009346830223, + "y": 178.98614853372294 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 449.93001769975547, + "y": 178.86304815346904 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.99156788988245, + "y": 228.86301026919568 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 349.9916436584292, + "y": 228.98611064944959 + }, + { + "angle": -0.0009076932567600348, + "anglePrev": -0.0007844259108426244, + "angularSpeed": 0.00015843560543930737, + "angularVelocity": -0.00012317607551075706, + "area": 5000, + "axes": { + "#": 159 + }, + "bounds": { + "#": 162 + }, + "collisionFilter": { + "#": 165 + }, + "constraintImpulse": { + "#": 166 + }, + "density": 0.001, + "force": { + "#": 167 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 7, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 168 + }, + "positionImpulse": { + "#": 169 + }, + "positionPrev": { + "#": 170 + }, + "region": { + "#": 171 + }, + "render": { + "#": 172 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0.8017726072628292, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 174 + }, + "vertices": { + "#": 175 + } + }, + [ + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "x": 0.0009076931321175614, + "y": 0.999999588046504 + }, + { + "x": -0.999999588046504, + "y": 0.0009076931321175614 + }, + { + "max": { + "#": 163 + }, + "min": { + "#": 164 + } + }, + { + "x": 450.05003080047663, + "y": 279.0699422677252 + }, + { + "x": 350.0033639859199, + "y": 228.17742203704628 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.02603571654805, + "y": 253.22279639481476 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.02708689788903, + "y": 252.9205040948151 + }, + { + "endCol": 9, + "endRow": 5, + "id": "7,9,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 173 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0010323292652856253, + "y": 0.3002452619551832 + }, + [ + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350.0033639859199, + "y": 228.268191350258 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450.00332279057034, + "y": 228.17742203704628 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.0487074471762, + "y": 278.17740143937147 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350.04874864252577, + "y": 278.2681707525832 + }, + { + "angle": 0.00009803038051582402, + "anglePrev": 0.0001970770303569345, + "angularSpeed": 0.00009920840883729951, + "angularVelocity": -0.0001101984184967639, + "area": 5000, + "axes": { + "#": 181 + }, + "bounds": { + "#": 184 + }, + "collisionFilter": { + "#": 187 + }, + "constraintImpulse": { + "#": 188 + }, + "density": 0.001, + "force": { + "#": 189 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 8, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 190 + }, + "positionImpulse": { + "#": 191 + }, + "positionPrev": { + "#": 192 + }, + "region": { + "#": 193 + }, + "render": { + "#": 194 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0.7239171334899934, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 196 + }, + "vertices": { + "#": 197 + } + }, + [ + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": -0.00009803038035881275, + "y": 0.9999999951950224 + }, + { + "x": -0.9999999951950224, + "y": -0.00009803038035881275 + }, + { + "max": { + "#": 185 + }, + "min": { + "#": 186 + } + }, + { + "x": 450.0498065018296, + "y": 327.8530607266009 + }, + { + "x": 350.0374488591381, + "y": 277.1193791991814 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.0398993783982, + "y": 302.12428059807485 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.034608536642, + "y": 301.8403536295276 + }, + { + "endCol": 9, + "endRow": 6, + "id": "7,9,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 195 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0053461558342746685, + "y": 0.2962249265988248 + }, + [ + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350.042350378156, + "y": 277.1193791991814 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450.0423498976583, + "y": 277.1291822372172 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.0374483786404, + "y": 327.12918199696827 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350.0374488591381, + "y": 327.1193789589325 + }, + { + "angle": 0.00032776365208912766, + "anglePrev": 0.00039081978076447866, + "angularSpeed": 0.000054191075343454996, + "angularVelocity": -0.00005262356130167242, + "area": 5000, + "axes": { + "#": 203 + }, + "bounds": { + "#": 206 + }, + "collisionFilter": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "density": 0.001, + "force": { + "#": 211 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 9, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 212 + }, + "positionImpulse": { + "#": 213 + }, + "positionPrev": { + "#": 214 + }, + "region": { + "#": 215 + }, + "render": { + "#": 216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0.6719183198521658, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 218 + }, + "vertices": { + "#": 219 + } + }, + [ + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "x": -0.0003277636462205735, + "y": 0.9999999462854946 + }, + { + "x": -0.9999999462854946, + "y": -0.0003277636462205735 + }, + { + "max": { + "#": 207 + }, + "min": { + "#": 208 + } + }, + { + "x": 450.0310324642433, + "y": 376.26060451322536 + }, + { + "x": 350.0059466718636, + "y": 325.5559688792622 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.0141380772938, + "y": 350.5723557187106 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.00526577898916, + "y": 350.3031797294095 + }, + { + "endCol": 9, + "endRow": 7, + "id": "7,9,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 217 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.008816984226598379, + "y": 0.25687803124947095 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350.0223348541745, + "y": 325.5559688792622 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450.0223294827241, + "y": 325.5887452438842 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450.0059413004132, + "y": 375.58874255815897 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350.0059466718636, + "y": 375.55596619353696 + }, + { + "angle": 0.00025583510257530393, + "anglePrev": 0.0002688370939082472, + "angularSpeed": 0.000015849130596733338, + "angularVelocity": -0.000004089183982093159, + "area": 5000, + "axes": { + "#": 225 + }, + "bounds": { + "#": 228 + }, + "collisionFilter": { + "#": 231 + }, + "constraintImpulse": { + "#": 232 + }, + "density": 0.001, + "force": { + "#": 233 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 10, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 234 + }, + "positionImpulse": { + "#": 235 + }, + "positionPrev": { + "#": 236 + }, + "region": { + "#": 237 + }, + "render": { + "#": 238 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0.5481861489097851, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 240 + }, + "vertices": { + "#": 241 + } + }, + [ + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "x": -0.0002558350997845012, + "y": 0.9999999672742003 + }, + { + "x": -0.9999999672742003, + "y": -0.0002558350997845012 + }, + { + "max": { + "#": 229 + }, + "min": { + "#": 230 + } + }, + { + "x": 450.00278082938786, + "y": 424.2001716942015 + }, + { + "x": 349.98595247977073, + "y": 373.62641855774046 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.9923467209754, + "y": 398.6392094945848 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.98497459879434, + "y": 398.4177329167247 + }, + { + "endCol": 9, + "endRow": 8, + "id": "7,9,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 239 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.006869415868322903, + "y": 0.19197078132697243 + }, + [ + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 349.99874423476, + "y": 373.62641855774046 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 449.99874096218, + "y": 373.65200206771897 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.98594920719074, + "y": 423.65200043142914 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 349.98595247977073, + "y": 423.62641692145064 + }, + { + "angle": 0.00006934305471347785, + "anglePrev": 0.00006538751847046922, + "angularSpeed": 0.000003399500478712464, + "angularVelocity": 0.0000032941920733172927, + "area": 5000, + "axes": { + "#": 247 + }, + "bounds": { + "#": 250 + }, + "collisionFilter": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "density": 0.001, + "force": { + "#": 255 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "id": 11, + "inertia": 20833.333333333336, + "inverseInertia": 0.000047999999999999994, + "inverseMass": 0.2, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 5, + "motion": 0, + "parent": null, + "position": { + "#": 256 + }, + "positionImpulse": { + "#": 257 + }, + "positionPrev": { + "#": 258 + }, + "region": { + "#": 259 + }, + "render": { + "#": 260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.5, + "speed": 0.3914779024538964, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 262 + }, + "vertices": { + "#": 263 + } + }, + [ + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "x": -0.00006934305465790566, + "y": 0.9999999975957706 + }, + { + "x": -0.9999999975957706, + "y": -0.00006934305465790566 + }, + { + "max": { + "#": 251 + }, + "min": { + "#": 252 + } + }, + { + "x": 449.9799867802248, + "y": 471.8310906564733 + }, + { + "x": 349.9760382076151, + "y": 421.43267886507397 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.97777166377006, + "y": 446.4361459577011 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 399.97405105983216, + "y": 446.3203141937874 + }, + { + "endCol": 9, + "endRow": 9, + "id": "7,9,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 261 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0032014948901633034, + "y": 0.05237421223455385 + }, + [ + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 349.97950536034796, + "y": 421.43267886507397 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 449.979505119925, + "y": 421.43961317053976 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 449.97603796719216, + "y": 471.43961305032826 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 349.9760382076151, + "y": 471.43267874486247 + }, + [], + [], + [ + { + "#": 271 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 272 + }, + "pointB": "", + "render": { + "#": 273 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 275 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/stress/stress-0.json b/tests/browser/refs/stress/stress-0.json new file mode 100644 index 00000000..3cefd416 --- /dev/null +++ b/tests/browser/refs/stress/stress-0.json @@ -0,0 +1,50312 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 5764 + }, + "events": { + "#": 5768 + }, + "gravity": { + "#": 5770 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 5762 + }, + "constraints": { + "#": 5763 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 197 + }, + { + "#": 218 + }, + { + "#": 239 + }, + { + "#": 260 + }, + { + "#": 281 + }, + { + "#": 302 + }, + { + "#": 323 + }, + { + "#": 344 + }, + { + "#": 365 + }, + { + "#": 386 + }, + { + "#": 407 + }, + { + "#": 428 + }, + { + "#": 449 + }, + { + "#": 470 + }, + { + "#": 491 + }, + { + "#": 512 + }, + { + "#": 533 + }, + { + "#": 554 + }, + { + "#": 575 + }, + { + "#": 596 + }, + { + "#": 617 + }, + { + "#": 638 + }, + { + "#": 659 + }, + { + "#": 680 + }, + { + "#": 701 + }, + { + "#": 722 + }, + { + "#": 743 + }, + { + "#": 764 + }, + { + "#": 785 + }, + { + "#": 806 + }, + { + "#": 827 + }, + { + "#": 848 + }, + { + "#": 869 + }, + { + "#": 890 + }, + { + "#": 911 + }, + { + "#": 932 + }, + { + "#": 953 + }, + { + "#": 974 + }, + { + "#": 995 + }, + { + "#": 1016 + }, + { + "#": 1037 + }, + { + "#": 1058 + }, + { + "#": 1079 + }, + { + "#": 1100 + }, + { + "#": 1121 + }, + { + "#": 1142 + }, + { + "#": 1163 + }, + { + "#": 1184 + }, + { + "#": 1205 + }, + { + "#": 1226 + }, + { + "#": 1247 + }, + { + "#": 1268 + }, + { + "#": 1289 + }, + { + "#": 1310 + }, + { + "#": 1331 + }, + { + "#": 1352 + }, + { + "#": 1373 + }, + { + "#": 1394 + }, + { + "#": 1415 + }, + { + "#": 1436 + }, + { + "#": 1457 + }, + { + "#": 1478 + }, + { + "#": 1499 + }, + { + "#": 1520 + }, + { + "#": 1541 + }, + { + "#": 1562 + }, + { + "#": 1583 + }, + { + "#": 1604 + }, + { + "#": 1625 + }, + { + "#": 1646 + }, + { + "#": 1667 + }, + { + "#": 1688 + }, + { + "#": 1709 + }, + { + "#": 1730 + }, + { + "#": 1751 + }, + { + "#": 1772 + }, + { + "#": 1793 + }, + { + "#": 1814 + }, + { + "#": 1835 + }, + { + "#": 1856 + }, + { + "#": 1877 + }, + { + "#": 1898 + }, + { + "#": 1919 + }, + { + "#": 1940 + }, + { + "#": 1961 + }, + { + "#": 1982 + }, + { + "#": 2003 + }, + { + "#": 2024 + }, + { + "#": 2045 + }, + { + "#": 2066 + }, + { + "#": 2087 + }, + { + "#": 2108 + }, + { + "#": 2129 + }, + { + "#": 2150 + }, + { + "#": 2171 + }, + { + "#": 2192 + }, + { + "#": 2213 + }, + { + "#": 2234 + }, + { + "#": 2255 + }, + { + "#": 2276 + }, + { + "#": 2297 + }, + { + "#": 2318 + }, + { + "#": 2339 + }, + { + "#": 2360 + }, + { + "#": 2381 + }, + { + "#": 2402 + }, + { + "#": 2423 + }, + { + "#": 2444 + }, + { + "#": 2465 + }, + { + "#": 2486 + }, + { + "#": 2507 + }, + { + "#": 2528 + }, + { + "#": 2549 + }, + { + "#": 2570 + }, + { + "#": 2591 + }, + { + "#": 2612 + }, + { + "#": 2633 + }, + { + "#": 2654 + }, + { + "#": 2675 + }, + { + "#": 2696 + }, + { + "#": 2717 + }, + { + "#": 2738 + }, + { + "#": 2759 + }, + { + "#": 2780 + }, + { + "#": 2801 + }, + { + "#": 2822 + }, + { + "#": 2843 + }, + { + "#": 2864 + }, + { + "#": 2885 + }, + { + "#": 2906 + }, + { + "#": 2927 + }, + { + "#": 2948 + }, + { + "#": 2969 + }, + { + "#": 2990 + }, + { + "#": 3011 + }, + { + "#": 3032 + }, + { + "#": 3053 + }, + { + "#": 3074 + }, + { + "#": 3095 + }, + { + "#": 3116 + }, + { + "#": 3137 + }, + { + "#": 3158 + }, + { + "#": 3179 + }, + { + "#": 3200 + }, + { + "#": 3221 + }, + { + "#": 3242 + }, + { + "#": 3263 + }, + { + "#": 3284 + }, + { + "#": 3305 + }, + { + "#": 3326 + }, + { + "#": 3347 + }, + { + "#": 3368 + }, + { + "#": 3389 + }, + { + "#": 3410 + }, + { + "#": 3431 + }, + { + "#": 3452 + }, + { + "#": 3473 + }, + { + "#": 3494 + }, + { + "#": 3515 + }, + { + "#": 3536 + }, + { + "#": 3557 + }, + { + "#": 3578 + }, + { + "#": 3599 + }, + { + "#": 3620 + }, + { + "#": 3641 + }, + { + "#": 3662 + }, + { + "#": 3683 + }, + { + "#": 3704 + }, + { + "#": 3725 + }, + { + "#": 3746 + }, + { + "#": 3767 + }, + { + "#": 3788 + }, + { + "#": 3809 + }, + { + "#": 3830 + }, + { + "#": 3851 + }, + { + "#": 3872 + }, + { + "#": 3893 + }, + { + "#": 3914 + }, + { + "#": 3935 + }, + { + "#": 3956 + }, + { + "#": 3977 + }, + { + "#": 3998 + }, + { + "#": 4019 + }, + { + "#": 4040 + }, + { + "#": 4061 + }, + { + "#": 4082 + }, + { + "#": 4103 + }, + { + "#": 4124 + }, + { + "#": 4145 + }, + { + "#": 4166 + }, + { + "#": 4187 + }, + { + "#": 4208 + }, + { + "#": 4229 + }, + { + "#": 4250 + }, + { + "#": 4271 + }, + { + "#": 4292 + }, + { + "#": 4313 + }, + { + "#": 4334 + }, + { + "#": 4355 + }, + { + "#": 4376 + }, + { + "#": 4397 + }, + { + "#": 4418 + }, + { + "#": 4439 + }, + { + "#": 4460 + }, + { + "#": 4481 + }, + { + "#": 4502 + }, + { + "#": 4523 + }, + { + "#": 4544 + }, + { + "#": 4565 + }, + { + "#": 4586 + }, + { + "#": 4607 + }, + { + "#": 4628 + }, + { + "#": 4649 + }, + { + "#": 4670 + }, + { + "#": 4691 + }, + { + "#": 4712 + }, + { + "#": 4733 + }, + { + "#": 4754 + }, + { + "#": 4775 + }, + { + "#": 4796 + }, + { + "#": 4817 + }, + { + "#": 4838 + }, + { + "#": 4859 + }, + { + "#": 4880 + }, + { + "#": 4901 + }, + { + "#": 4922 + }, + { + "#": 4943 + }, + { + "#": 4964 + }, + { + "#": 4985 + }, + { + "#": 5006 + }, + { + "#": 5027 + }, + { + "#": 5048 + }, + { + "#": 5069 + }, + { + "#": 5090 + }, + { + "#": 5111 + }, + { + "#": 5132 + }, + { + "#": 5153 + }, + { + "#": 5174 + }, + { + "#": 5195 + }, + { + "#": 5216 + }, + { + "#": 5237 + }, + { + "#": 5258 + }, + { + "#": 5279 + }, + { + "#": 5300 + }, + { + "#": 5321 + }, + { + "#": 5342 + }, + { + "#": 5363 + }, + { + "#": 5384 + }, + { + "#": 5405 + }, + { + "#": 5426 + }, + { + "#": 5447 + }, + { + "#": 5468 + }, + { + "#": 5489 + }, + { + "#": 5510 + }, + { + "#": 5531 + }, + { + "#": 5552 + }, + { + "#": 5573 + }, + { + "#": 5594 + }, + { + "#": 5615 + }, + { + "#": 5636 + }, + { + "#": 5657 + }, + { + "#": 5678 + }, + { + "#": 5699 + }, + { + "#": 5720 + }, + { + "#": 5741 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 125, + "y": 85 + }, + { + "x": 90, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 67.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 160, + "y": 85 + }, + { + "x": 125, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 67.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 195, + "y": 85 + }, + { + "x": 160, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 67.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 230, + "y": 85 + }, + { + "x": 195, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 67.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 177 + }, + "bounds": { + "#": 180 + }, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "render": { + "#": 189 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 191 + }, + "vertices": { + "#": 192 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 265, + "y": 85 + }, + { + "x": 230, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 67.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 190 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 198 + }, + "bounds": { + "#": 201 + }, + "collisionFilter": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "density": 0.001, + "force": { + "#": 206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 207 + }, + "positionImpulse": { + "#": 208 + }, + "positionPrev": { + "#": 209 + }, + "render": { + "#": 210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 212 + }, + "vertices": { + "#": 213 + } + }, + [ + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 202 + }, + "min": { + "#": 203 + } + }, + { + "x": 300, + "y": 85 + }, + { + "x": 265, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 67.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 211 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 219 + }, + "bounds": { + "#": 222 + }, + "collisionFilter": { + "#": 225 + }, + "constraintImpulse": { + "#": 226 + }, + "density": 0.001, + "force": { + "#": 227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 228 + }, + "positionImpulse": { + "#": 229 + }, + "positionPrev": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 223 + }, + "min": { + "#": 224 + } + }, + { + "x": 335, + "y": 85 + }, + { + "x": 300, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 67.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 240 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 370, + "y": 85 + }, + { + "x": 335, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 67.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 261 + }, + "bounds": { + "#": 264 + }, + "collisionFilter": { + "#": 267 + }, + "constraintImpulse": { + "#": 268 + }, + "density": 0.001, + "force": { + "#": 269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 270 + }, + "positionImpulse": { + "#": 271 + }, + "positionPrev": { + "#": 272 + }, + "render": { + "#": 273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 275 + }, + "vertices": { + "#": 276 + } + }, + [ + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 265 + }, + "min": { + "#": 266 + } + }, + { + "x": 405, + "y": 85 + }, + { + "x": 370, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 67.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 274 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 282 + }, + "bounds": { + "#": 285 + }, + "collisionFilter": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "density": 0.001, + "force": { + "#": 290 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 291 + }, + "positionImpulse": { + "#": 292 + }, + "positionPrev": { + "#": 293 + }, + "render": { + "#": 294 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 296 + }, + "vertices": { + "#": 297 + } + }, + [ + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 286 + }, + "min": { + "#": 287 + } + }, + { + "x": 440, + "y": 85 + }, + { + "x": 405, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 67.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 295 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 303 + }, + "bounds": { + "#": 306 + }, + "collisionFilter": { + "#": 309 + }, + "constraintImpulse": { + "#": 310 + }, + "density": 0.001, + "force": { + "#": 311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 312 + }, + "positionImpulse": { + "#": 313 + }, + "positionPrev": { + "#": 314 + }, + "render": { + "#": 315 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 317 + }, + "vertices": { + "#": 318 + } + }, + [ + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 307 + }, + "min": { + "#": 308 + } + }, + { + "x": 475, + "y": 85 + }, + { + "x": 440, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 67.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 316 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 324 + }, + "bounds": { + "#": 327 + }, + "collisionFilter": { + "#": 330 + }, + "constraintImpulse": { + "#": 331 + }, + "density": 0.001, + "force": { + "#": 332 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 333 + }, + "positionImpulse": { + "#": 334 + }, + "positionPrev": { + "#": 335 + }, + "render": { + "#": 336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 338 + }, + "vertices": { + "#": 339 + } + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 328 + }, + "min": { + "#": 329 + } + }, + { + "x": 510, + "y": 85 + }, + { + "x": 475, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 67.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 337 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 345 + }, + "bounds": { + "#": 348 + }, + "collisionFilter": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "density": 0.001, + "force": { + "#": 353 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 354 + }, + "positionImpulse": { + "#": 355 + }, + "positionPrev": { + "#": 356 + }, + "render": { + "#": 357 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 359 + }, + "vertices": { + "#": 360 + } + }, + [ + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 349 + }, + "min": { + "#": 350 + } + }, + { + "x": 545, + "y": 85 + }, + { + "x": 510, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 67.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 358 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 366 + }, + "bounds": { + "#": 369 + }, + "collisionFilter": { + "#": 372 + }, + "constraintImpulse": { + "#": 373 + }, + "density": 0.001, + "force": { + "#": 374 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 375 + }, + "positionImpulse": { + "#": 376 + }, + "positionPrev": { + "#": 377 + }, + "render": { + "#": 378 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 380 + }, + "vertices": { + "#": 381 + } + }, + [ + { + "#": 367 + }, + { + "#": 368 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 370 + }, + "min": { + "#": 371 + } + }, + { + "x": 580, + "y": 85 + }, + { + "x": 545, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 67.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 379 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 387 + }, + "bounds": { + "#": 390 + }, + "collisionFilter": { + "#": 393 + }, + "constraintImpulse": { + "#": 394 + }, + "density": 0.001, + "force": { + "#": 395 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 396 + }, + "positionImpulse": { + "#": 397 + }, + "positionPrev": { + "#": 398 + }, + "render": { + "#": 399 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 401 + }, + "vertices": { + "#": 402 + } + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 391 + }, + "min": { + "#": 392 + } + }, + { + "x": 615, + "y": 85 + }, + { + "x": 580, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 67.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 400 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 408 + }, + "bounds": { + "#": 411 + }, + "collisionFilter": { + "#": 414 + }, + "constraintImpulse": { + "#": 415 + }, + "density": 0.001, + "force": { + "#": 416 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 417 + }, + "positionImpulse": { + "#": 418 + }, + "positionPrev": { + "#": 419 + }, + "render": { + "#": 420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 422 + }, + "vertices": { + "#": 423 + } + }, + [ + { + "#": 409 + }, + { + "#": 410 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 412 + }, + "min": { + "#": 413 + } + }, + { + "x": 650, + "y": 85 + }, + { + "x": 615, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 67.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 421 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 429 + }, + "bounds": { + "#": 432 + }, + "collisionFilter": { + "#": 435 + }, + "constraintImpulse": { + "#": 436 + }, + "density": 0.001, + "force": { + "#": 437 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 438 + }, + "positionImpulse": { + "#": 439 + }, + "positionPrev": { + "#": 440 + }, + "render": { + "#": 441 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 443 + }, + "vertices": { + "#": 444 + } + }, + [ + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 433 + }, + "min": { + "#": 434 + } + }, + { + "x": 685, + "y": 85 + }, + { + "x": 650, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 67.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 442 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 450 + }, + "bounds": { + "#": 453 + }, + "collisionFilter": { + "#": 456 + }, + "constraintImpulse": { + "#": 457 + }, + "density": 0.001, + "force": { + "#": 458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 459 + }, + "positionImpulse": { + "#": 460 + }, + "positionPrev": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 454 + }, + "min": { + "#": 455 + } + }, + { + "x": 720, + "y": 85 + }, + { + "x": 685, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 67.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 85 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 85 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 471 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "render": { + "#": 483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 485 + }, + "vertices": { + "#": 486 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 125, + "y": 120 + }, + { + "x": 90, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 102.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 484 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 492 + }, + "bounds": { + "#": 495 + }, + "collisionFilter": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "density": 0.001, + "force": { + "#": 500 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 501 + }, + "positionImpulse": { + "#": 502 + }, + "positionPrev": { + "#": 503 + }, + "render": { + "#": 504 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 506 + }, + "vertices": { + "#": 507 + } + }, + [ + { + "#": 493 + }, + { + "#": 494 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 496 + }, + "min": { + "#": 497 + } + }, + { + "x": 160, + "y": 120 + }, + { + "x": 125, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 102.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 505 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 513 + }, + "bounds": { + "#": 516 + }, + "collisionFilter": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "density": 0.001, + "force": { + "#": 521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 522 + }, + "positionImpulse": { + "#": 523 + }, + "positionPrev": { + "#": 524 + }, + "render": { + "#": 525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 527 + }, + "vertices": { + "#": 528 + } + }, + [ + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 517 + }, + "min": { + "#": 518 + } + }, + { + "x": 195, + "y": 120 + }, + { + "x": 160, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 102.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 526 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 534 + }, + "bounds": { + "#": 537 + }, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "render": { + "#": 546 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 548 + }, + "vertices": { + "#": 549 + } + }, + [ + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 230, + "y": 120 + }, + { + "x": 195, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 102.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 547 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 555 + }, + "bounds": { + "#": 558 + }, + "collisionFilter": { + "#": 561 + }, + "constraintImpulse": { + "#": 562 + }, + "density": 0.001, + "force": { + "#": 563 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 564 + }, + "positionImpulse": { + "#": 565 + }, + "positionPrev": { + "#": 566 + }, + "render": { + "#": 567 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 569 + }, + "vertices": { + "#": 570 + } + }, + [ + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 559 + }, + "min": { + "#": 560 + } + }, + { + "x": 265, + "y": 120 + }, + { + "x": 230, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 102.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 568 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 576 + }, + "bounds": { + "#": 579 + }, + "collisionFilter": { + "#": 582 + }, + "constraintImpulse": { + "#": 583 + }, + "density": 0.001, + "force": { + "#": 584 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 585 + }, + "positionImpulse": { + "#": 586 + }, + "positionPrev": { + "#": 587 + }, + "render": { + "#": 588 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 590 + }, + "vertices": { + "#": 591 + } + }, + [ + { + "#": 577 + }, + { + "#": 578 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 580 + }, + "min": { + "#": 581 + } + }, + { + "x": 300, + "y": 120 + }, + { + "x": 265, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 102.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 589 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 597 + }, + "bounds": { + "#": 600 + }, + "collisionFilter": { + "#": 603 + }, + "constraintImpulse": { + "#": 604 + }, + "density": 0.001, + "force": { + "#": 605 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 606 + }, + "positionImpulse": { + "#": 607 + }, + "positionPrev": { + "#": 608 + }, + "render": { + "#": 609 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 611 + }, + "vertices": { + "#": 612 + } + }, + [ + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 601 + }, + "min": { + "#": 602 + } + }, + { + "x": 335, + "y": 120 + }, + { + "x": 300, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 102.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 610 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 618 + }, + "bounds": { + "#": 621 + }, + "collisionFilter": { + "#": 624 + }, + "constraintImpulse": { + "#": 625 + }, + "density": 0.001, + "force": { + "#": 626 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 627 + }, + "positionImpulse": { + "#": 628 + }, + "positionPrev": { + "#": 629 + }, + "render": { + "#": 630 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 632 + }, + "vertices": { + "#": 633 + } + }, + [ + { + "#": 619 + }, + { + "#": 620 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 622 + }, + "min": { + "#": 623 + } + }, + { + "x": 370, + "y": 120 + }, + { + "x": 335, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 102.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 631 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 639 + }, + "bounds": { + "#": 642 + }, + "collisionFilter": { + "#": 645 + }, + "constraintImpulse": { + "#": 646 + }, + "density": 0.001, + "force": { + "#": 647 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 648 + }, + "positionImpulse": { + "#": 649 + }, + "positionPrev": { + "#": 650 + }, + "render": { + "#": 651 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 653 + }, + "vertices": { + "#": 654 + } + }, + [ + { + "#": 640 + }, + { + "#": 641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 643 + }, + "min": { + "#": 644 + } + }, + { + "x": 405, + "y": 120 + }, + { + "x": 370, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 102.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 652 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 660 + }, + "bounds": { + "#": 663 + }, + "collisionFilter": { + "#": 666 + }, + "constraintImpulse": { + "#": 667 + }, + "density": 0.001, + "force": { + "#": 668 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 669 + }, + "positionImpulse": { + "#": 670 + }, + "positionPrev": { + "#": 671 + }, + "render": { + "#": 672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 674 + }, + "vertices": { + "#": 675 + } + }, + [ + { + "#": 661 + }, + { + "#": 662 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 664 + }, + "min": { + "#": 665 + } + }, + { + "x": 440, + "y": 120 + }, + { + "x": 405, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 102.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 673 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 681 + }, + "bounds": { + "#": 684 + }, + "collisionFilter": { + "#": 687 + }, + "constraintImpulse": { + "#": 688 + }, + "density": 0.001, + "force": { + "#": 689 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 690 + }, + "positionImpulse": { + "#": 691 + }, + "positionPrev": { + "#": 692 + }, + "render": { + "#": 693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 695 + }, + "vertices": { + "#": 696 + } + }, + [ + { + "#": 682 + }, + { + "#": 683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 685 + }, + "min": { + "#": 686 + } + }, + { + "x": 475, + "y": 120 + }, + { + "x": 440, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 102.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 694 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 702 + }, + "bounds": { + "#": 705 + }, + "collisionFilter": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "density": 0.001, + "force": { + "#": 710 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 711 + }, + "positionImpulse": { + "#": 712 + }, + "positionPrev": { + "#": 713 + }, + "render": { + "#": 714 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 716 + }, + "vertices": { + "#": 717 + } + }, + [ + { + "#": 703 + }, + { + "#": 704 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 706 + }, + "min": { + "#": 707 + } + }, + { + "x": 510, + "y": 120 + }, + { + "x": 475, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 102.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 715 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 723 + }, + "bounds": { + "#": 726 + }, + "collisionFilter": { + "#": 729 + }, + "constraintImpulse": { + "#": 730 + }, + "density": 0.001, + "force": { + "#": 731 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 732 + }, + "positionImpulse": { + "#": 733 + }, + "positionPrev": { + "#": 734 + }, + "render": { + "#": 735 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 737 + }, + "vertices": { + "#": 738 + } + }, + [ + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 727 + }, + "min": { + "#": 728 + } + }, + { + "x": 545, + "y": 120 + }, + { + "x": 510, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 102.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 736 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 744 + }, + "bounds": { + "#": 747 + }, + "collisionFilter": { + "#": 750 + }, + "constraintImpulse": { + "#": 751 + }, + "density": 0.001, + "force": { + "#": 752 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 753 + }, + "positionImpulse": { + "#": 754 + }, + "positionPrev": { + "#": 755 + }, + "render": { + "#": 756 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 758 + }, + "vertices": { + "#": 759 + } + }, + [ + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 748 + }, + "min": { + "#": 749 + } + }, + { + "x": 580, + "y": 120 + }, + { + "x": 545, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 102.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 757 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 765 + }, + "bounds": { + "#": 768 + }, + "collisionFilter": { + "#": 771 + }, + "constraintImpulse": { + "#": 772 + }, + "density": 0.001, + "force": { + "#": 773 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 774 + }, + "positionImpulse": { + "#": 775 + }, + "positionPrev": { + "#": 776 + }, + "render": { + "#": 777 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 779 + }, + "vertices": { + "#": 780 + } + }, + [ + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 769 + }, + "min": { + "#": 770 + } + }, + { + "x": 615, + "y": 120 + }, + { + "x": 580, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 102.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 778 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 786 + }, + "bounds": { + "#": 789 + }, + "collisionFilter": { + "#": 792 + }, + "constraintImpulse": { + "#": 793 + }, + "density": 0.001, + "force": { + "#": 794 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 795 + }, + "positionImpulse": { + "#": 796 + }, + "positionPrev": { + "#": 797 + }, + "render": { + "#": 798 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 800 + }, + "vertices": { + "#": 801 + } + }, + [ + { + "#": 787 + }, + { + "#": 788 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 790 + }, + "min": { + "#": 791 + } + }, + { + "x": 650, + "y": 120 + }, + { + "x": 615, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 102.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 799 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 807 + }, + "bounds": { + "#": 810 + }, + "collisionFilter": { + "#": 813 + }, + "constraintImpulse": { + "#": 814 + }, + "density": 0.001, + "force": { + "#": 815 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 816 + }, + "positionImpulse": { + "#": 817 + }, + "positionPrev": { + "#": 818 + }, + "render": { + "#": 819 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 821 + }, + "vertices": { + "#": 822 + } + }, + [ + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 811 + }, + "min": { + "#": 812 + } + }, + { + "x": 685, + "y": 120 + }, + { + "x": 650, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 102.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 820 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 828 + }, + "bounds": { + "#": 831 + }, + "collisionFilter": { + "#": 834 + }, + "constraintImpulse": { + "#": 835 + }, + "density": 0.001, + "force": { + "#": 836 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 837 + }, + "positionImpulse": { + "#": 838 + }, + "positionPrev": { + "#": 839 + }, + "render": { + "#": 840 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 842 + }, + "vertices": { + "#": 843 + } + }, + [ + { + "#": 829 + }, + { + "#": 830 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 832 + }, + "min": { + "#": 833 + } + }, + { + "x": 720, + "y": 120 + }, + { + "x": 685, + "y": 85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 102.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 841 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 85 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 85 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 120 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 120 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 849 + }, + "bounds": { + "#": 852 + }, + "collisionFilter": { + "#": 855 + }, + "constraintImpulse": { + "#": 856 + }, + "density": 0.001, + "force": { + "#": 857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 858 + }, + "positionImpulse": { + "#": 859 + }, + "positionPrev": { + "#": 860 + }, + "render": { + "#": 861 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 863 + }, + "vertices": { + "#": 864 + } + }, + [ + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 853 + }, + "min": { + "#": 854 + } + }, + { + "x": 125, + "y": 155 + }, + { + "x": 90, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 137.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 862 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 870 + }, + "bounds": { + "#": 873 + }, + "collisionFilter": { + "#": 876 + }, + "constraintImpulse": { + "#": 877 + }, + "density": 0.001, + "force": { + "#": 878 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 879 + }, + "positionImpulse": { + "#": 880 + }, + "positionPrev": { + "#": 881 + }, + "render": { + "#": 882 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 884 + }, + "vertices": { + "#": 885 + } + }, + [ + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 874 + }, + "min": { + "#": 875 + } + }, + { + "x": 160, + "y": 155 + }, + { + "x": 125, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 137.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 883 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 891 + }, + "bounds": { + "#": 894 + }, + "collisionFilter": { + "#": 897 + }, + "constraintImpulse": { + "#": 898 + }, + "density": 0.001, + "force": { + "#": 899 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 900 + }, + "positionImpulse": { + "#": 901 + }, + "positionPrev": { + "#": 902 + }, + "render": { + "#": 903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 905 + }, + "vertices": { + "#": 906 + } + }, + [ + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 895 + }, + "min": { + "#": 896 + } + }, + { + "x": 195, + "y": 155 + }, + { + "x": 160, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 137.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 904 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 912 + }, + "bounds": { + "#": 915 + }, + "collisionFilter": { + "#": 918 + }, + "constraintImpulse": { + "#": 919 + }, + "density": 0.001, + "force": { + "#": 920 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 921 + }, + "positionImpulse": { + "#": 922 + }, + "positionPrev": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 916 + }, + "min": { + "#": 917 + } + }, + { + "x": 230, + "y": 155 + }, + { + "x": 195, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 137.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 933 + }, + "bounds": { + "#": 936 + }, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "render": { + "#": 945 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 947 + }, + "vertices": { + "#": 948 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 265, + "y": 155 + }, + { + "x": 230, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 137.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 946 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 954 + }, + "bounds": { + "#": 957 + }, + "collisionFilter": { + "#": 960 + }, + "constraintImpulse": { + "#": 961 + }, + "density": 0.001, + "force": { + "#": 962 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 963 + }, + "positionImpulse": { + "#": 964 + }, + "positionPrev": { + "#": 965 + }, + "render": { + "#": 966 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 968 + }, + "vertices": { + "#": 969 + } + }, + [ + { + "#": 955 + }, + { + "#": 956 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 958 + }, + "min": { + "#": 959 + } + }, + { + "x": 300, + "y": 155 + }, + { + "x": 265, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 137.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 967 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 975 + }, + "bounds": { + "#": 978 + }, + "collisionFilter": { + "#": 981 + }, + "constraintImpulse": { + "#": 982 + }, + "density": 0.001, + "force": { + "#": 983 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 984 + }, + "positionImpulse": { + "#": 985 + }, + "positionPrev": { + "#": 986 + }, + "render": { + "#": 987 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 989 + }, + "vertices": { + "#": 990 + } + }, + [ + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 979 + }, + "min": { + "#": 980 + } + }, + { + "x": 335, + "y": 155 + }, + { + "x": 300, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 137.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 988 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 996 + }, + "bounds": { + "#": 999 + }, + "collisionFilter": { + "#": 1002 + }, + "constraintImpulse": { + "#": 1003 + }, + "density": 0.001, + "force": { + "#": 1004 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1005 + }, + "positionImpulse": { + "#": 1006 + }, + "positionPrev": { + "#": 1007 + }, + "render": { + "#": 1008 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1010 + }, + "vertices": { + "#": 1011 + } + }, + [ + { + "#": 997 + }, + { + "#": 998 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1000 + }, + "min": { + "#": 1001 + } + }, + { + "x": 370, + "y": 155 + }, + { + "x": 335, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 137.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1009 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1017 + }, + "bounds": { + "#": 1020 + }, + "collisionFilter": { + "#": 1023 + }, + "constraintImpulse": { + "#": 1024 + }, + "density": 0.001, + "force": { + "#": 1025 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1026 + }, + "positionImpulse": { + "#": 1027 + }, + "positionPrev": { + "#": 1028 + }, + "render": { + "#": 1029 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1031 + }, + "vertices": { + "#": 1032 + } + }, + [ + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1021 + }, + "min": { + "#": 1022 + } + }, + { + "x": 405, + "y": 155 + }, + { + "x": 370, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 137.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1030 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1038 + }, + "bounds": { + "#": 1041 + }, + "collisionFilter": { + "#": 1044 + }, + "constraintImpulse": { + "#": 1045 + }, + "density": 0.001, + "force": { + "#": 1046 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1047 + }, + "positionImpulse": { + "#": 1048 + }, + "positionPrev": { + "#": 1049 + }, + "render": { + "#": 1050 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1052 + }, + "vertices": { + "#": 1053 + } + }, + [ + { + "#": 1039 + }, + { + "#": 1040 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1042 + }, + "min": { + "#": 1043 + } + }, + { + "x": 440, + "y": 155 + }, + { + "x": 405, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 137.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1051 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1059 + }, + "bounds": { + "#": 1062 + }, + "collisionFilter": { + "#": 1065 + }, + "constraintImpulse": { + "#": 1066 + }, + "density": 0.001, + "force": { + "#": 1067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1068 + }, + "positionImpulse": { + "#": 1069 + }, + "positionPrev": { + "#": 1070 + }, + "render": { + "#": 1071 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1073 + }, + "vertices": { + "#": 1074 + } + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1063 + }, + "min": { + "#": 1064 + } + }, + { + "x": 475, + "y": 155 + }, + { + "x": 440, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 137.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1072 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1080 + }, + "bounds": { + "#": 1083 + }, + "collisionFilter": { + "#": 1086 + }, + "constraintImpulse": { + "#": 1087 + }, + "density": 0.001, + "force": { + "#": 1088 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1089 + }, + "positionImpulse": { + "#": 1090 + }, + "positionPrev": { + "#": 1091 + }, + "render": { + "#": 1092 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1094 + }, + "vertices": { + "#": 1095 + } + }, + [ + { + "#": 1081 + }, + { + "#": 1082 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1084 + }, + "min": { + "#": 1085 + } + }, + { + "x": 510, + "y": 155 + }, + { + "x": 475, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 137.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1093 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1101 + }, + "bounds": { + "#": 1104 + }, + "collisionFilter": { + "#": 1107 + }, + "constraintImpulse": { + "#": 1108 + }, + "density": 0.001, + "force": { + "#": 1109 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1110 + }, + "positionImpulse": { + "#": 1111 + }, + "positionPrev": { + "#": 1112 + }, + "render": { + "#": 1113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1115 + }, + "vertices": { + "#": 1116 + } + }, + [ + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1105 + }, + "min": { + "#": 1106 + } + }, + { + "x": 545, + "y": 155 + }, + { + "x": 510, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 137.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1114 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1122 + }, + "bounds": { + "#": 1125 + }, + "collisionFilter": { + "#": 1128 + }, + "constraintImpulse": { + "#": 1129 + }, + "density": 0.001, + "force": { + "#": 1130 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1131 + }, + "positionImpulse": { + "#": 1132 + }, + "positionPrev": { + "#": 1133 + }, + "render": { + "#": 1134 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1136 + }, + "vertices": { + "#": 1137 + } + }, + [ + { + "#": 1123 + }, + { + "#": 1124 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1126 + }, + "min": { + "#": 1127 + } + }, + { + "x": 580, + "y": 155 + }, + { + "x": 545, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 137.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1135 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1143 + }, + "bounds": { + "#": 1146 + }, + "collisionFilter": { + "#": 1149 + }, + "constraintImpulse": { + "#": 1150 + }, + "density": 0.001, + "force": { + "#": 1151 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1152 + }, + "positionImpulse": { + "#": 1153 + }, + "positionPrev": { + "#": 1154 + }, + "render": { + "#": 1155 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1157 + }, + "vertices": { + "#": 1158 + } + }, + [ + { + "#": 1144 + }, + { + "#": 1145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1147 + }, + "min": { + "#": 1148 + } + }, + { + "x": 615, + "y": 155 + }, + { + "x": 580, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 137.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1156 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1164 + }, + "bounds": { + "#": 1167 + }, + "collisionFilter": { + "#": 1170 + }, + "constraintImpulse": { + "#": 1171 + }, + "density": 0.001, + "force": { + "#": 1172 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1173 + }, + "positionImpulse": { + "#": 1174 + }, + "positionPrev": { + "#": 1175 + }, + "render": { + "#": 1176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1178 + }, + "vertices": { + "#": 1179 + } + }, + [ + { + "#": 1165 + }, + { + "#": 1166 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1168 + }, + "min": { + "#": 1169 + } + }, + { + "x": 650, + "y": 155 + }, + { + "x": 615, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 137.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1177 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1185 + }, + "bounds": { + "#": 1188 + }, + "collisionFilter": { + "#": 1191 + }, + "constraintImpulse": { + "#": 1192 + }, + "density": 0.001, + "force": { + "#": 1193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1194 + }, + "positionImpulse": { + "#": 1195 + }, + "positionPrev": { + "#": 1196 + }, + "render": { + "#": 1197 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1199 + }, + "vertices": { + "#": 1200 + } + }, + [ + { + "#": 1186 + }, + { + "#": 1187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1189 + }, + "min": { + "#": 1190 + } + }, + { + "x": 685, + "y": 155 + }, + { + "x": 650, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 137.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1198 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1206 + }, + "bounds": { + "#": 1209 + }, + "collisionFilter": { + "#": 1212 + }, + "constraintImpulse": { + "#": 1213 + }, + "density": 0.001, + "force": { + "#": 1214 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1215 + }, + "positionImpulse": { + "#": 1216 + }, + "positionPrev": { + "#": 1217 + }, + "render": { + "#": 1218 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1220 + }, + "vertices": { + "#": 1221 + } + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1210 + }, + "min": { + "#": 1211 + } + }, + { + "x": 720, + "y": 155 + }, + { + "x": 685, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 137.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1219 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 155 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 155 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1227 + }, + "bounds": { + "#": 1230 + }, + "collisionFilter": { + "#": 1233 + }, + "constraintImpulse": { + "#": 1234 + }, + "density": 0.001, + "force": { + "#": 1235 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1236 + }, + "positionImpulse": { + "#": 1237 + }, + "positionPrev": { + "#": 1238 + }, + "render": { + "#": 1239 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1241 + }, + "vertices": { + "#": 1242 + } + }, + [ + { + "#": 1228 + }, + { + "#": 1229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1231 + }, + "min": { + "#": 1232 + } + }, + { + "x": 125, + "y": 190 + }, + { + "x": 90, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 172.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1240 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1248 + }, + "bounds": { + "#": 1251 + }, + "collisionFilter": { + "#": 1254 + }, + "constraintImpulse": { + "#": 1255 + }, + "density": 0.001, + "force": { + "#": 1256 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1257 + }, + "positionImpulse": { + "#": 1258 + }, + "positionPrev": { + "#": 1259 + }, + "render": { + "#": 1260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1262 + }, + "vertices": { + "#": 1263 + } + }, + [ + { + "#": 1249 + }, + { + "#": 1250 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1252 + }, + "min": { + "#": 1253 + } + }, + { + "x": 160, + "y": 190 + }, + { + "x": 125, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 172.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1261 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1269 + }, + "bounds": { + "#": 1272 + }, + "collisionFilter": { + "#": 1275 + }, + "constraintImpulse": { + "#": 1276 + }, + "density": 0.001, + "force": { + "#": 1277 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1278 + }, + "positionImpulse": { + "#": 1279 + }, + "positionPrev": { + "#": 1280 + }, + "render": { + "#": 1281 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1283 + }, + "vertices": { + "#": 1284 + } + }, + [ + { + "#": 1270 + }, + { + "#": 1271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1273 + }, + "min": { + "#": 1274 + } + }, + { + "x": 195, + "y": 190 + }, + { + "x": 160, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 172.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1282 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1290 + }, + "bounds": { + "#": 1293 + }, + "collisionFilter": { + "#": 1296 + }, + "constraintImpulse": { + "#": 1297 + }, + "density": 0.001, + "force": { + "#": 1298 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1299 + }, + "positionImpulse": { + "#": 1300 + }, + "positionPrev": { + "#": 1301 + }, + "render": { + "#": 1302 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1304 + }, + "vertices": { + "#": 1305 + } + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1294 + }, + "min": { + "#": 1295 + } + }, + { + "x": 230, + "y": 190 + }, + { + "x": 195, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 172.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1303 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1311 + }, + "bounds": { + "#": 1314 + }, + "collisionFilter": { + "#": 1317 + }, + "constraintImpulse": { + "#": 1318 + }, + "density": 0.001, + "force": { + "#": 1319 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1320 + }, + "positionImpulse": { + "#": 1321 + }, + "positionPrev": { + "#": 1322 + }, + "render": { + "#": 1323 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1325 + }, + "vertices": { + "#": 1326 + } + }, + [ + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1315 + }, + "min": { + "#": 1316 + } + }, + { + "x": 265, + "y": 190 + }, + { + "x": 230, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 172.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1324 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1332 + }, + "bounds": { + "#": 1335 + }, + "collisionFilter": { + "#": 1338 + }, + "constraintImpulse": { + "#": 1339 + }, + "density": 0.001, + "force": { + "#": 1340 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1341 + }, + "positionImpulse": { + "#": 1342 + }, + "positionPrev": { + "#": 1343 + }, + "render": { + "#": 1344 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1346 + }, + "vertices": { + "#": 1347 + } + }, + [ + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1336 + }, + "min": { + "#": 1337 + } + }, + { + "x": 300, + "y": 190 + }, + { + "x": 265, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 172.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1345 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1353 + }, + "bounds": { + "#": 1356 + }, + "collisionFilter": { + "#": 1359 + }, + "constraintImpulse": { + "#": 1360 + }, + "density": 0.001, + "force": { + "#": 1361 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1362 + }, + "positionImpulse": { + "#": 1363 + }, + "positionPrev": { + "#": 1364 + }, + "render": { + "#": 1365 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1367 + }, + "vertices": { + "#": 1368 + } + }, + [ + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1357 + }, + "min": { + "#": 1358 + } + }, + { + "x": 335, + "y": 190 + }, + { + "x": 300, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 172.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1366 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1374 + }, + "bounds": { + "#": 1377 + }, + "collisionFilter": { + "#": 1380 + }, + "constraintImpulse": { + "#": 1381 + }, + "density": 0.001, + "force": { + "#": 1382 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1383 + }, + "positionImpulse": { + "#": 1384 + }, + "positionPrev": { + "#": 1385 + }, + "render": { + "#": 1386 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1388 + }, + "vertices": { + "#": 1389 + } + }, + [ + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1378 + }, + "min": { + "#": 1379 + } + }, + { + "x": 370, + "y": 190 + }, + { + "x": 335, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 172.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1387 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1395 + }, + "bounds": { + "#": 1398 + }, + "collisionFilter": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "density": 0.001, + "force": { + "#": 1403 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1404 + }, + "positionImpulse": { + "#": 1405 + }, + "positionPrev": { + "#": 1406 + }, + "render": { + "#": 1407 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1409 + }, + "vertices": { + "#": 1410 + } + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1399 + }, + "min": { + "#": 1400 + } + }, + { + "x": 405, + "y": 190 + }, + { + "x": 370, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 172.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1408 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1416 + }, + "bounds": { + "#": 1419 + }, + "collisionFilter": { + "#": 1422 + }, + "constraintImpulse": { + "#": 1423 + }, + "density": 0.001, + "force": { + "#": 1424 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1425 + }, + "positionImpulse": { + "#": 1426 + }, + "positionPrev": { + "#": 1427 + }, + "render": { + "#": 1428 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1430 + }, + "vertices": { + "#": 1431 + } + }, + [ + { + "#": 1417 + }, + { + "#": 1418 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1420 + }, + "min": { + "#": 1421 + } + }, + { + "x": 440, + "y": 190 + }, + { + "x": 405, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 172.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1429 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1437 + }, + "bounds": { + "#": 1440 + }, + "collisionFilter": { + "#": 1443 + }, + "constraintImpulse": { + "#": 1444 + }, + "density": 0.001, + "force": { + "#": 1445 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1446 + }, + "positionImpulse": { + "#": 1447 + }, + "positionPrev": { + "#": 1448 + }, + "render": { + "#": 1449 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1451 + }, + "vertices": { + "#": 1452 + } + }, + [ + { + "#": 1438 + }, + { + "#": 1439 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1441 + }, + "min": { + "#": 1442 + } + }, + { + "x": 475, + "y": 190 + }, + { + "x": 440, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 172.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1450 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1458 + }, + "bounds": { + "#": 1461 + }, + "collisionFilter": { + "#": 1464 + }, + "constraintImpulse": { + "#": 1465 + }, + "density": 0.001, + "force": { + "#": 1466 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1467 + }, + "positionImpulse": { + "#": 1468 + }, + "positionPrev": { + "#": 1469 + }, + "render": { + "#": 1470 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1472 + }, + "vertices": { + "#": 1473 + } + }, + [ + { + "#": 1459 + }, + { + "#": 1460 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1462 + }, + "min": { + "#": 1463 + } + }, + { + "x": 510, + "y": 190 + }, + { + "x": 475, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 172.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1471 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1479 + }, + "bounds": { + "#": 1482 + }, + "collisionFilter": { + "#": 1485 + }, + "constraintImpulse": { + "#": 1486 + }, + "density": 0.001, + "force": { + "#": 1487 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1488 + }, + "positionImpulse": { + "#": 1489 + }, + "positionPrev": { + "#": 1490 + }, + "render": { + "#": 1491 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1493 + }, + "vertices": { + "#": 1494 + } + }, + [ + { + "#": 1480 + }, + { + "#": 1481 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1483 + }, + "min": { + "#": 1484 + } + }, + { + "x": 545, + "y": 190 + }, + { + "x": 510, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 172.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1492 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1500 + }, + "bounds": { + "#": 1503 + }, + "collisionFilter": { + "#": 1506 + }, + "constraintImpulse": { + "#": 1507 + }, + "density": 0.001, + "force": { + "#": 1508 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1509 + }, + "positionImpulse": { + "#": 1510 + }, + "positionPrev": { + "#": 1511 + }, + "render": { + "#": 1512 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1514 + }, + "vertices": { + "#": 1515 + } + }, + [ + { + "#": 1501 + }, + { + "#": 1502 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1504 + }, + "min": { + "#": 1505 + } + }, + { + "x": 580, + "y": 190 + }, + { + "x": 545, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 172.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1513 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1521 + }, + "bounds": { + "#": 1524 + }, + "collisionFilter": { + "#": 1527 + }, + "constraintImpulse": { + "#": 1528 + }, + "density": 0.001, + "force": { + "#": 1529 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1530 + }, + "positionImpulse": { + "#": 1531 + }, + "positionPrev": { + "#": 1532 + }, + "render": { + "#": 1533 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1535 + }, + "vertices": { + "#": 1536 + } + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1525 + }, + "min": { + "#": 1526 + } + }, + { + "x": 615, + "y": 190 + }, + { + "x": 580, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 172.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1534 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1542 + }, + "bounds": { + "#": 1545 + }, + "collisionFilter": { + "#": 1548 + }, + "constraintImpulse": { + "#": 1549 + }, + "density": 0.001, + "force": { + "#": 1550 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1551 + }, + "positionImpulse": { + "#": 1552 + }, + "positionPrev": { + "#": 1553 + }, + "render": { + "#": 1554 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1556 + }, + "vertices": { + "#": 1557 + } + }, + [ + { + "#": 1543 + }, + { + "#": 1544 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1546 + }, + "min": { + "#": 1547 + } + }, + { + "x": 650, + "y": 190 + }, + { + "x": 615, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 172.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1555 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1563 + }, + "bounds": { + "#": 1566 + }, + "collisionFilter": { + "#": 1569 + }, + "constraintImpulse": { + "#": 1570 + }, + "density": 0.001, + "force": { + "#": 1571 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1572 + }, + "positionImpulse": { + "#": 1573 + }, + "positionPrev": { + "#": 1574 + }, + "render": { + "#": 1575 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1577 + }, + "vertices": { + "#": 1578 + } + }, + [ + { + "#": 1564 + }, + { + "#": 1565 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1567 + }, + "min": { + "#": 1568 + } + }, + { + "x": 685, + "y": 190 + }, + { + "x": 650, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 172.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1576 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1584 + }, + "bounds": { + "#": 1587 + }, + "collisionFilter": { + "#": 1590 + }, + "constraintImpulse": { + "#": 1591 + }, + "density": 0.001, + "force": { + "#": 1592 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1593 + }, + "positionImpulse": { + "#": 1594 + }, + "positionPrev": { + "#": 1595 + }, + "render": { + "#": 1596 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1598 + }, + "vertices": { + "#": 1599 + } + }, + [ + { + "#": 1585 + }, + { + "#": 1586 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1588 + }, + "min": { + "#": 1589 + } + }, + { + "x": 720, + "y": 190 + }, + { + "x": 685, + "y": 155 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 172.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1597 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 155 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 190 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 190 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1605 + }, + "bounds": { + "#": 1608 + }, + "collisionFilter": { + "#": 1611 + }, + "constraintImpulse": { + "#": 1612 + }, + "density": 0.001, + "force": { + "#": 1613 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1614 + }, + "positionImpulse": { + "#": 1615 + }, + "positionPrev": { + "#": 1616 + }, + "render": { + "#": 1617 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1619 + }, + "vertices": { + "#": 1620 + } + }, + [ + { + "#": 1606 + }, + { + "#": 1607 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1609 + }, + "min": { + "#": 1610 + } + }, + { + "x": 125, + "y": 225 + }, + { + "x": 90, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1618 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1626 + }, + "bounds": { + "#": 1629 + }, + "collisionFilter": { + "#": 1632 + }, + "constraintImpulse": { + "#": 1633 + }, + "density": 0.001, + "force": { + "#": 1634 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1635 + }, + "positionImpulse": { + "#": 1636 + }, + "positionPrev": { + "#": 1637 + }, + "render": { + "#": 1638 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1640 + }, + "vertices": { + "#": 1641 + } + }, + [ + { + "#": 1627 + }, + { + "#": 1628 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1630 + }, + "min": { + "#": 1631 + } + }, + { + "x": 160, + "y": 225 + }, + { + "x": 125, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1639 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1647 + }, + "bounds": { + "#": 1650 + }, + "collisionFilter": { + "#": 1653 + }, + "constraintImpulse": { + "#": 1654 + }, + "density": 0.001, + "force": { + "#": 1655 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1656 + }, + "positionImpulse": { + "#": 1657 + }, + "positionPrev": { + "#": 1658 + }, + "render": { + "#": 1659 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1661 + }, + "vertices": { + "#": 1662 + } + }, + [ + { + "#": 1648 + }, + { + "#": 1649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1651 + }, + "min": { + "#": 1652 + } + }, + { + "x": 195, + "y": 225 + }, + { + "x": 160, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 207.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1660 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1668 + }, + "bounds": { + "#": 1671 + }, + "collisionFilter": { + "#": 1674 + }, + "constraintImpulse": { + "#": 1675 + }, + "density": 0.001, + "force": { + "#": 1676 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1677 + }, + "positionImpulse": { + "#": 1678 + }, + "positionPrev": { + "#": 1679 + }, + "render": { + "#": 1680 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1682 + }, + "vertices": { + "#": 1683 + } + }, + [ + { + "#": 1669 + }, + { + "#": 1670 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1672 + }, + "min": { + "#": 1673 + } + }, + { + "x": 230, + "y": 225 + }, + { + "x": 195, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1681 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1689 + }, + "bounds": { + "#": 1692 + }, + "collisionFilter": { + "#": 1695 + }, + "constraintImpulse": { + "#": 1696 + }, + "density": 0.001, + "force": { + "#": 1697 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1698 + }, + "positionImpulse": { + "#": 1699 + }, + "positionPrev": { + "#": 1700 + }, + "render": { + "#": 1701 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1703 + }, + "vertices": { + "#": 1704 + } + }, + [ + { + "#": 1690 + }, + { + "#": 1691 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1693 + }, + "min": { + "#": 1694 + } + }, + { + "x": 265, + "y": 225 + }, + { + "x": 230, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1702 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1710 + }, + "bounds": { + "#": 1713 + }, + "collisionFilter": { + "#": 1716 + }, + "constraintImpulse": { + "#": 1717 + }, + "density": 0.001, + "force": { + "#": 1718 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1719 + }, + "positionImpulse": { + "#": 1720 + }, + "positionPrev": { + "#": 1721 + }, + "render": { + "#": 1722 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1724 + }, + "vertices": { + "#": 1725 + } + }, + [ + { + "#": 1711 + }, + { + "#": 1712 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1714 + }, + "min": { + "#": 1715 + } + }, + { + "x": 300, + "y": 225 + }, + { + "x": 265, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 207.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1723 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1731 + }, + "bounds": { + "#": 1734 + }, + "collisionFilter": { + "#": 1737 + }, + "constraintImpulse": { + "#": 1738 + }, + "density": 0.001, + "force": { + "#": 1739 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1740 + }, + "positionImpulse": { + "#": 1741 + }, + "positionPrev": { + "#": 1742 + }, + "render": { + "#": 1743 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1745 + }, + "vertices": { + "#": 1746 + } + }, + [ + { + "#": 1732 + }, + { + "#": 1733 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1735 + }, + "min": { + "#": 1736 + } + }, + { + "x": 335, + "y": 225 + }, + { + "x": 300, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 207.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1744 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1752 + }, + "bounds": { + "#": 1755 + }, + "collisionFilter": { + "#": 1758 + }, + "constraintImpulse": { + "#": 1759 + }, + "density": 0.001, + "force": { + "#": 1760 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1761 + }, + "positionImpulse": { + "#": 1762 + }, + "positionPrev": { + "#": 1763 + }, + "render": { + "#": 1764 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1766 + }, + "vertices": { + "#": 1767 + } + }, + [ + { + "#": 1753 + }, + { + "#": 1754 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1756 + }, + "min": { + "#": 1757 + } + }, + { + "x": 370, + "y": 225 + }, + { + "x": 335, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1765 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1773 + }, + "bounds": { + "#": 1776 + }, + "collisionFilter": { + "#": 1779 + }, + "constraintImpulse": { + "#": 1780 + }, + "density": 0.001, + "force": { + "#": 1781 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1782 + }, + "positionImpulse": { + "#": 1783 + }, + "positionPrev": { + "#": 1784 + }, + "render": { + "#": 1785 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1787 + }, + "vertices": { + "#": 1788 + } + }, + [ + { + "#": 1774 + }, + { + "#": 1775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1777 + }, + "min": { + "#": 1778 + } + }, + { + "x": 405, + "y": 225 + }, + { + "x": 370, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 207.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1786 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1794 + }, + "bounds": { + "#": 1797 + }, + "collisionFilter": { + "#": 1800 + }, + "constraintImpulse": { + "#": 1801 + }, + "density": 0.001, + "force": { + "#": 1802 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1803 + }, + "positionImpulse": { + "#": 1804 + }, + "positionPrev": { + "#": 1805 + }, + "render": { + "#": 1806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1808 + }, + "vertices": { + "#": 1809 + } + }, + [ + { + "#": 1795 + }, + { + "#": 1796 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1798 + }, + "min": { + "#": 1799 + } + }, + { + "x": 440, + "y": 225 + }, + { + "x": 405, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1807 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1815 + }, + "bounds": { + "#": 1818 + }, + "collisionFilter": { + "#": 1821 + }, + "constraintImpulse": { + "#": 1822 + }, + "density": 0.001, + "force": { + "#": 1823 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1824 + }, + "positionImpulse": { + "#": 1825 + }, + "positionPrev": { + "#": 1826 + }, + "render": { + "#": 1827 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1829 + }, + "vertices": { + "#": 1830 + } + }, + [ + { + "#": 1816 + }, + { + "#": 1817 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1819 + }, + "min": { + "#": 1820 + } + }, + { + "x": 475, + "y": 225 + }, + { + "x": 440, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1828 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1836 + }, + "bounds": { + "#": 1839 + }, + "collisionFilter": { + "#": 1842 + }, + "constraintImpulse": { + "#": 1843 + }, + "density": 0.001, + "force": { + "#": 1844 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1845 + }, + "positionImpulse": { + "#": 1846 + }, + "positionPrev": { + "#": 1847 + }, + "render": { + "#": 1848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1850 + }, + "vertices": { + "#": 1851 + } + }, + [ + { + "#": 1837 + }, + { + "#": 1838 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1840 + }, + "min": { + "#": 1841 + } + }, + { + "x": 510, + "y": 225 + }, + { + "x": 475, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 207.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1849 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1857 + }, + "bounds": { + "#": 1860 + }, + "collisionFilter": { + "#": 1863 + }, + "constraintImpulse": { + "#": 1864 + }, + "density": 0.001, + "force": { + "#": 1865 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1866 + }, + "positionImpulse": { + "#": 1867 + }, + "positionPrev": { + "#": 1868 + }, + "render": { + "#": 1869 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1871 + }, + "vertices": { + "#": 1872 + } + }, + [ + { + "#": 1858 + }, + { + "#": 1859 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1861 + }, + "min": { + "#": 1862 + } + }, + { + "x": 545, + "y": 225 + }, + { + "x": 510, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1870 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1878 + }, + "bounds": { + "#": 1881 + }, + "collisionFilter": { + "#": 1884 + }, + "constraintImpulse": { + "#": 1885 + }, + "density": 0.001, + "force": { + "#": 1886 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1887 + }, + "positionImpulse": { + "#": 1888 + }, + "positionPrev": { + "#": 1889 + }, + "render": { + "#": 1890 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1892 + }, + "vertices": { + "#": 1893 + } + }, + [ + { + "#": 1879 + }, + { + "#": 1880 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1882 + }, + "min": { + "#": 1883 + } + }, + { + "x": 580, + "y": 225 + }, + { + "x": 545, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 207.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1891 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1899 + }, + "bounds": { + "#": 1902 + }, + "collisionFilter": { + "#": 1905 + }, + "constraintImpulse": { + "#": 1906 + }, + "density": 0.001, + "force": { + "#": 1907 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1908 + }, + "positionImpulse": { + "#": 1909 + }, + "positionPrev": { + "#": 1910 + }, + "render": { + "#": 1911 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1913 + }, + "vertices": { + "#": 1914 + } + }, + [ + { + "#": 1900 + }, + { + "#": 1901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1903 + }, + "min": { + "#": 1904 + } + }, + { + "x": 615, + "y": 225 + }, + { + "x": 580, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1912 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1920 + }, + "bounds": { + "#": 1923 + }, + "collisionFilter": { + "#": 1926 + }, + "constraintImpulse": { + "#": 1927 + }, + "density": 0.001, + "force": { + "#": 1928 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1929 + }, + "positionImpulse": { + "#": 1930 + }, + "positionPrev": { + "#": 1931 + }, + "render": { + "#": 1932 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1934 + }, + "vertices": { + "#": 1935 + } + }, + [ + { + "#": 1921 + }, + { + "#": 1922 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1924 + }, + "min": { + "#": 1925 + } + }, + { + "x": 650, + "y": 225 + }, + { + "x": 615, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1933 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1941 + }, + "bounds": { + "#": 1944 + }, + "collisionFilter": { + "#": 1947 + }, + "constraintImpulse": { + "#": 1948 + }, + "density": 0.001, + "force": { + "#": 1949 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1950 + }, + "positionImpulse": { + "#": 1951 + }, + "positionPrev": { + "#": 1952 + }, + "render": { + "#": 1953 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1955 + }, + "vertices": { + "#": 1956 + } + }, + [ + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1945 + }, + "min": { + "#": 1946 + } + }, + { + "x": 685, + "y": 225 + }, + { + "x": 650, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 207.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1954 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1962 + }, + "bounds": { + "#": 1965 + }, + "collisionFilter": { + "#": 1968 + }, + "constraintImpulse": { + "#": 1969 + }, + "density": 0.001, + "force": { + "#": 1970 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1971 + }, + "positionImpulse": { + "#": 1972 + }, + "positionPrev": { + "#": 1973 + }, + "render": { + "#": 1974 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1976 + }, + "vertices": { + "#": 1977 + } + }, + [ + { + "#": 1963 + }, + { + "#": 1964 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1966 + }, + "min": { + "#": 1967 + } + }, + { + "x": 720, + "y": 225 + }, + { + "x": 685, + "y": 190 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 207.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1975 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 190 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 190 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 225 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 225 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1983 + }, + "bounds": { + "#": 1986 + }, + "collisionFilter": { + "#": 1989 + }, + "constraintImpulse": { + "#": 1990 + }, + "density": 0.001, + "force": { + "#": 1991 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1992 + }, + "positionImpulse": { + "#": 1993 + }, + "positionPrev": { + "#": 1994 + }, + "render": { + "#": 1995 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1997 + }, + "vertices": { + "#": 1998 + } + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1987 + }, + "min": { + "#": 1988 + } + }, + { + "x": 125, + "y": 260 + }, + { + "x": 90, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 242.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1996 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2004 + }, + "bounds": { + "#": 2007 + }, + "collisionFilter": { + "#": 2010 + }, + "constraintImpulse": { + "#": 2011 + }, + "density": 0.001, + "force": { + "#": 2012 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2013 + }, + "positionImpulse": { + "#": 2014 + }, + "positionPrev": { + "#": 2015 + }, + "render": { + "#": 2016 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2018 + }, + "vertices": { + "#": 2019 + } + }, + [ + { + "#": 2005 + }, + { + "#": 2006 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2008 + }, + "min": { + "#": 2009 + } + }, + { + "x": 160, + "y": 260 + }, + { + "x": 125, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 242.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2017 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2025 + }, + "bounds": { + "#": 2028 + }, + "collisionFilter": { + "#": 2031 + }, + "constraintImpulse": { + "#": 2032 + }, + "density": 0.001, + "force": { + "#": 2033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2034 + }, + "positionImpulse": { + "#": 2035 + }, + "positionPrev": { + "#": 2036 + }, + "render": { + "#": 2037 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2039 + }, + "vertices": { + "#": 2040 + } + }, + [ + { + "#": 2026 + }, + { + "#": 2027 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2029 + }, + "min": { + "#": 2030 + } + }, + { + "x": 195, + "y": 260 + }, + { + "x": 160, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 242.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2038 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2046 + }, + "bounds": { + "#": 2049 + }, + "collisionFilter": { + "#": 2052 + }, + "constraintImpulse": { + "#": 2053 + }, + "density": 0.001, + "force": { + "#": 2054 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2055 + }, + "positionImpulse": { + "#": 2056 + }, + "positionPrev": { + "#": 2057 + }, + "render": { + "#": 2058 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2060 + }, + "vertices": { + "#": 2061 + } + }, + [ + { + "#": 2047 + }, + { + "#": 2048 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2050 + }, + "min": { + "#": 2051 + } + }, + { + "x": 230, + "y": 260 + }, + { + "x": 195, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 242.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2059 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2067 + }, + "bounds": { + "#": 2070 + }, + "collisionFilter": { + "#": 2073 + }, + "constraintImpulse": { + "#": 2074 + }, + "density": 0.001, + "force": { + "#": 2075 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2076 + }, + "positionImpulse": { + "#": 2077 + }, + "positionPrev": { + "#": 2078 + }, + "render": { + "#": 2079 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2081 + }, + "vertices": { + "#": 2082 + } + }, + [ + { + "#": 2068 + }, + { + "#": 2069 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2071 + }, + "min": { + "#": 2072 + } + }, + { + "x": 265, + "y": 260 + }, + { + "x": 230, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 242.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2080 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2088 + }, + "bounds": { + "#": 2091 + }, + "collisionFilter": { + "#": 2094 + }, + "constraintImpulse": { + "#": 2095 + }, + "density": 0.001, + "force": { + "#": 2096 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2097 + }, + "positionImpulse": { + "#": 2098 + }, + "positionPrev": { + "#": 2099 + }, + "render": { + "#": 2100 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2102 + }, + "vertices": { + "#": 2103 + } + }, + [ + { + "#": 2089 + }, + { + "#": 2090 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2092 + }, + "min": { + "#": 2093 + } + }, + { + "x": 300, + "y": 260 + }, + { + "x": 265, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 242.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2101 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2109 + }, + "bounds": { + "#": 2112 + }, + "collisionFilter": { + "#": 2115 + }, + "constraintImpulse": { + "#": 2116 + }, + "density": 0.001, + "force": { + "#": 2117 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2118 + }, + "positionImpulse": { + "#": 2119 + }, + "positionPrev": { + "#": 2120 + }, + "render": { + "#": 2121 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2123 + }, + "vertices": { + "#": 2124 + } + }, + [ + { + "#": 2110 + }, + { + "#": 2111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2113 + }, + "min": { + "#": 2114 + } + }, + { + "x": 335, + "y": 260 + }, + { + "x": 300, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 242.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2122 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2130 + }, + "bounds": { + "#": 2133 + }, + "collisionFilter": { + "#": 2136 + }, + "constraintImpulse": { + "#": 2137 + }, + "density": 0.001, + "force": { + "#": 2138 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2139 + }, + "positionImpulse": { + "#": 2140 + }, + "positionPrev": { + "#": 2141 + }, + "render": { + "#": 2142 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2144 + }, + "vertices": { + "#": 2145 + } + }, + [ + { + "#": 2131 + }, + { + "#": 2132 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2134 + }, + "min": { + "#": 2135 + } + }, + { + "x": 370, + "y": 260 + }, + { + "x": 335, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 242.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2143 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2151 + }, + "bounds": { + "#": 2154 + }, + "collisionFilter": { + "#": 2157 + }, + "constraintImpulse": { + "#": 2158 + }, + "density": 0.001, + "force": { + "#": 2159 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2160 + }, + "positionImpulse": { + "#": 2161 + }, + "positionPrev": { + "#": 2162 + }, + "render": { + "#": 2163 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2165 + }, + "vertices": { + "#": 2166 + } + }, + [ + { + "#": 2152 + }, + { + "#": 2153 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2155 + }, + "min": { + "#": 2156 + } + }, + { + "x": 405, + "y": 260 + }, + { + "x": 370, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 242.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2164 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2172 + }, + "bounds": { + "#": 2175 + }, + "collisionFilter": { + "#": 2178 + }, + "constraintImpulse": { + "#": 2179 + }, + "density": 0.001, + "force": { + "#": 2180 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2181 + }, + "positionImpulse": { + "#": 2182 + }, + "positionPrev": { + "#": 2183 + }, + "render": { + "#": 2184 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2186 + }, + "vertices": { + "#": 2187 + } + }, + [ + { + "#": 2173 + }, + { + "#": 2174 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2176 + }, + "min": { + "#": 2177 + } + }, + { + "x": 440, + "y": 260 + }, + { + "x": 405, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 242.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2185 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2193 + }, + "bounds": { + "#": 2196 + }, + "collisionFilter": { + "#": 2199 + }, + "constraintImpulse": { + "#": 2200 + }, + "density": 0.001, + "force": { + "#": 2201 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2202 + }, + "positionImpulse": { + "#": 2203 + }, + "positionPrev": { + "#": 2204 + }, + "render": { + "#": 2205 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2207 + }, + "vertices": { + "#": 2208 + } + }, + [ + { + "#": 2194 + }, + { + "#": 2195 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2197 + }, + "min": { + "#": 2198 + } + }, + { + "x": 475, + "y": 260 + }, + { + "x": 440, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 242.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2206 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2214 + }, + "bounds": { + "#": 2217 + }, + "collisionFilter": { + "#": 2220 + }, + "constraintImpulse": { + "#": 2221 + }, + "density": 0.001, + "force": { + "#": 2222 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2223 + }, + "positionImpulse": { + "#": 2224 + }, + "positionPrev": { + "#": 2225 + }, + "render": { + "#": 2226 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2228 + }, + "vertices": { + "#": 2229 + } + }, + [ + { + "#": 2215 + }, + { + "#": 2216 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2218 + }, + "min": { + "#": 2219 + } + }, + { + "x": 510, + "y": 260 + }, + { + "x": 475, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 242.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2227 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2235 + }, + "bounds": { + "#": 2238 + }, + "collisionFilter": { + "#": 2241 + }, + "constraintImpulse": { + "#": 2242 + }, + "density": 0.001, + "force": { + "#": 2243 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2244 + }, + "positionImpulse": { + "#": 2245 + }, + "positionPrev": { + "#": 2246 + }, + "render": { + "#": 2247 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2249 + }, + "vertices": { + "#": 2250 + } + }, + [ + { + "#": 2236 + }, + { + "#": 2237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2239 + }, + "min": { + "#": 2240 + } + }, + { + "x": 545, + "y": 260 + }, + { + "x": 510, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 242.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2248 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2256 + }, + "bounds": { + "#": 2259 + }, + "collisionFilter": { + "#": 2262 + }, + "constraintImpulse": { + "#": 2263 + }, + "density": 0.001, + "force": { + "#": 2264 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 108, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2265 + }, + "positionImpulse": { + "#": 2266 + }, + "positionPrev": { + "#": 2267 + }, + "render": { + "#": 2268 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2270 + }, + "vertices": { + "#": 2271 + } + }, + [ + { + "#": 2257 + }, + { + "#": 2258 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2260 + }, + "min": { + "#": 2261 + } + }, + { + "x": 580, + "y": 260 + }, + { + "x": 545, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 242.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2269 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2277 + }, + "bounds": { + "#": 2280 + }, + "collisionFilter": { + "#": 2283 + }, + "constraintImpulse": { + "#": 2284 + }, + "density": 0.001, + "force": { + "#": 2285 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2286 + }, + "positionImpulse": { + "#": 2287 + }, + "positionPrev": { + "#": 2288 + }, + "render": { + "#": 2289 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2291 + }, + "vertices": { + "#": 2292 + } + }, + [ + { + "#": 2278 + }, + { + "#": 2279 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2281 + }, + "min": { + "#": 2282 + } + }, + { + "x": 615, + "y": 260 + }, + { + "x": 580, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 242.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2290 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2298 + }, + "bounds": { + "#": 2301 + }, + "collisionFilter": { + "#": 2304 + }, + "constraintImpulse": { + "#": 2305 + }, + "density": 0.001, + "force": { + "#": 2306 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 110, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2307 + }, + "positionImpulse": { + "#": 2308 + }, + "positionPrev": { + "#": 2309 + }, + "render": { + "#": 2310 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2312 + }, + "vertices": { + "#": 2313 + } + }, + [ + { + "#": 2299 + }, + { + "#": 2300 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2302 + }, + "min": { + "#": 2303 + } + }, + { + "x": 650, + "y": 260 + }, + { + "x": 615, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 242.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2311 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2319 + }, + "bounds": { + "#": 2322 + }, + "collisionFilter": { + "#": 2325 + }, + "constraintImpulse": { + "#": 2326 + }, + "density": 0.001, + "force": { + "#": 2327 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 111, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2328 + }, + "positionImpulse": { + "#": 2329 + }, + "positionPrev": { + "#": 2330 + }, + "render": { + "#": 2331 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2333 + }, + "vertices": { + "#": 2334 + } + }, + [ + { + "#": 2320 + }, + { + "#": 2321 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2323 + }, + "min": { + "#": 2324 + } + }, + { + "x": 685, + "y": 260 + }, + { + "x": 650, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 242.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2332 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2340 + }, + "bounds": { + "#": 2343 + }, + "collisionFilter": { + "#": 2346 + }, + "constraintImpulse": { + "#": 2347 + }, + "density": 0.001, + "force": { + "#": 2348 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2349 + }, + "positionImpulse": { + "#": 2350 + }, + "positionPrev": { + "#": 2351 + }, + "render": { + "#": 2352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2354 + }, + "vertices": { + "#": 2355 + } + }, + [ + { + "#": 2341 + }, + { + "#": 2342 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2344 + }, + "min": { + "#": 2345 + } + }, + { + "x": 720, + "y": 260 + }, + { + "x": 685, + "y": 225 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 242.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2353 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 225 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 225 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 260 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 260 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2361 + }, + "bounds": { + "#": 2364 + }, + "collisionFilter": { + "#": 2367 + }, + "constraintImpulse": { + "#": 2368 + }, + "density": 0.001, + "force": { + "#": 2369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 113, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2370 + }, + "positionImpulse": { + "#": 2371 + }, + "positionPrev": { + "#": 2372 + }, + "render": { + "#": 2373 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2375 + }, + "vertices": { + "#": 2376 + } + }, + [ + { + "#": 2362 + }, + { + "#": 2363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2365 + }, + "min": { + "#": 2366 + } + }, + { + "x": 125, + "y": 295 + }, + { + "x": 90, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2374 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2382 + }, + "bounds": { + "#": 2385 + }, + "collisionFilter": { + "#": 2388 + }, + "constraintImpulse": { + "#": 2389 + }, + "density": 0.001, + "force": { + "#": 2390 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 114, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2391 + }, + "positionImpulse": { + "#": 2392 + }, + "positionPrev": { + "#": 2393 + }, + "render": { + "#": 2394 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2396 + }, + "vertices": { + "#": 2397 + } + }, + [ + { + "#": 2383 + }, + { + "#": 2384 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2386 + }, + "min": { + "#": 2387 + } + }, + { + "x": 160, + "y": 295 + }, + { + "x": 125, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2395 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2403 + }, + "bounds": { + "#": 2406 + }, + "collisionFilter": { + "#": 2409 + }, + "constraintImpulse": { + "#": 2410 + }, + "density": 0.001, + "force": { + "#": 2411 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2412 + }, + "positionImpulse": { + "#": 2413 + }, + "positionPrev": { + "#": 2414 + }, + "render": { + "#": 2415 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2417 + }, + "vertices": { + "#": 2418 + } + }, + [ + { + "#": 2404 + }, + { + "#": 2405 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2407 + }, + "min": { + "#": 2408 + } + }, + { + "x": 195, + "y": 295 + }, + { + "x": 160, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2416 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2424 + }, + "bounds": { + "#": 2427 + }, + "collisionFilter": { + "#": 2430 + }, + "constraintImpulse": { + "#": 2431 + }, + "density": 0.001, + "force": { + "#": 2432 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 116, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2433 + }, + "positionImpulse": { + "#": 2434 + }, + "positionPrev": { + "#": 2435 + }, + "render": { + "#": 2436 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2438 + }, + "vertices": { + "#": 2439 + } + }, + [ + { + "#": 2425 + }, + { + "#": 2426 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2428 + }, + "min": { + "#": 2429 + } + }, + { + "x": 230, + "y": 295 + }, + { + "x": 195, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2437 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2445 + }, + "bounds": { + "#": 2448 + }, + "collisionFilter": { + "#": 2451 + }, + "constraintImpulse": { + "#": 2452 + }, + "density": 0.001, + "force": { + "#": 2453 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 117, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2454 + }, + "positionImpulse": { + "#": 2455 + }, + "positionPrev": { + "#": 2456 + }, + "render": { + "#": 2457 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2459 + }, + "vertices": { + "#": 2460 + } + }, + [ + { + "#": 2446 + }, + { + "#": 2447 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2449 + }, + "min": { + "#": 2450 + } + }, + { + "x": 265, + "y": 295 + }, + { + "x": 230, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 277.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2458 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2466 + }, + "bounds": { + "#": 2469 + }, + "collisionFilter": { + "#": 2472 + }, + "constraintImpulse": { + "#": 2473 + }, + "density": 0.001, + "force": { + "#": 2474 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2475 + }, + "positionImpulse": { + "#": 2476 + }, + "positionPrev": { + "#": 2477 + }, + "render": { + "#": 2478 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2480 + }, + "vertices": { + "#": 2481 + } + }, + [ + { + "#": 2467 + }, + { + "#": 2468 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2470 + }, + "min": { + "#": 2471 + } + }, + { + "x": 300, + "y": 295 + }, + { + "x": 265, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2479 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2487 + }, + "bounds": { + "#": 2490 + }, + "collisionFilter": { + "#": 2493 + }, + "constraintImpulse": { + "#": 2494 + }, + "density": 0.001, + "force": { + "#": 2495 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 119, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2496 + }, + "positionImpulse": { + "#": 2497 + }, + "positionPrev": { + "#": 2498 + }, + "render": { + "#": 2499 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2501 + }, + "vertices": { + "#": 2502 + } + }, + [ + { + "#": 2488 + }, + { + "#": 2489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2491 + }, + "min": { + "#": 2492 + } + }, + { + "x": 335, + "y": 295 + }, + { + "x": 300, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2500 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2508 + }, + "bounds": { + "#": 2511 + }, + "collisionFilter": { + "#": 2514 + }, + "constraintImpulse": { + "#": 2515 + }, + "density": 0.001, + "force": { + "#": 2516 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 120, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2517 + }, + "positionImpulse": { + "#": 2518 + }, + "positionPrev": { + "#": 2519 + }, + "render": { + "#": 2520 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2522 + }, + "vertices": { + "#": 2523 + } + }, + [ + { + "#": 2509 + }, + { + "#": 2510 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2512 + }, + "min": { + "#": 2513 + } + }, + { + "x": 370, + "y": 295 + }, + { + "x": 335, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2521 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2529 + }, + "bounds": { + "#": 2532 + }, + "collisionFilter": { + "#": 2535 + }, + "constraintImpulse": { + "#": 2536 + }, + "density": 0.001, + "force": { + "#": 2537 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2538 + }, + "positionImpulse": { + "#": 2539 + }, + "positionPrev": { + "#": 2540 + }, + "render": { + "#": 2541 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2543 + }, + "vertices": { + "#": 2544 + } + }, + [ + { + "#": 2530 + }, + { + "#": 2531 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2533 + }, + "min": { + "#": 2534 + } + }, + { + "x": 405, + "y": 295 + }, + { + "x": 370, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 277.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2542 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2550 + }, + "bounds": { + "#": 2553 + }, + "collisionFilter": { + "#": 2556 + }, + "constraintImpulse": { + "#": 2557 + }, + "density": 0.001, + "force": { + "#": 2558 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 122, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2559 + }, + "positionImpulse": { + "#": 2560 + }, + "positionPrev": { + "#": 2561 + }, + "render": { + "#": 2562 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2564 + }, + "vertices": { + "#": 2565 + } + }, + [ + { + "#": 2551 + }, + { + "#": 2552 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2554 + }, + "min": { + "#": 2555 + } + }, + { + "x": 440, + "y": 295 + }, + { + "x": 405, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 277.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2563 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2571 + }, + "bounds": { + "#": 2574 + }, + "collisionFilter": { + "#": 2577 + }, + "constraintImpulse": { + "#": 2578 + }, + "density": 0.001, + "force": { + "#": 2579 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 123, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2580 + }, + "positionImpulse": { + "#": 2581 + }, + "positionPrev": { + "#": 2582 + }, + "render": { + "#": 2583 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2585 + }, + "vertices": { + "#": 2586 + } + }, + [ + { + "#": 2572 + }, + { + "#": 2573 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2575 + }, + "min": { + "#": 2576 + } + }, + { + "x": 475, + "y": 295 + }, + { + "x": 440, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 277.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2584 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2592 + }, + "bounds": { + "#": 2595 + }, + "collisionFilter": { + "#": 2598 + }, + "constraintImpulse": { + "#": 2599 + }, + "density": 0.001, + "force": { + "#": 2600 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2601 + }, + "positionImpulse": { + "#": 2602 + }, + "positionPrev": { + "#": 2603 + }, + "render": { + "#": 2604 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2606 + }, + "vertices": { + "#": 2607 + } + }, + [ + { + "#": 2593 + }, + { + "#": 2594 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2596 + }, + "min": { + "#": 2597 + } + }, + { + "x": 510, + "y": 295 + }, + { + "x": 475, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 277.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2605 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2613 + }, + "bounds": { + "#": 2616 + }, + "collisionFilter": { + "#": 2619 + }, + "constraintImpulse": { + "#": 2620 + }, + "density": 0.001, + "force": { + "#": 2621 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 125, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2622 + }, + "positionImpulse": { + "#": 2623 + }, + "positionPrev": { + "#": 2624 + }, + "render": { + "#": 2625 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2627 + }, + "vertices": { + "#": 2628 + } + }, + [ + { + "#": 2614 + }, + { + "#": 2615 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2617 + }, + "min": { + "#": 2618 + } + }, + { + "x": 545, + "y": 295 + }, + { + "x": 510, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 277.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2626 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2634 + }, + "bounds": { + "#": 2637 + }, + "collisionFilter": { + "#": 2640 + }, + "constraintImpulse": { + "#": 2641 + }, + "density": 0.001, + "force": { + "#": 2642 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 126, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2643 + }, + "positionImpulse": { + "#": 2644 + }, + "positionPrev": { + "#": 2645 + }, + "render": { + "#": 2646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2648 + }, + "vertices": { + "#": 2649 + } + }, + [ + { + "#": 2635 + }, + { + "#": 2636 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2638 + }, + "min": { + "#": 2639 + } + }, + { + "x": 580, + "y": 295 + }, + { + "x": 545, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 277.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2647 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2655 + }, + "bounds": { + "#": 2658 + }, + "collisionFilter": { + "#": 2661 + }, + "constraintImpulse": { + "#": 2662 + }, + "density": 0.001, + "force": { + "#": 2663 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2664 + }, + "positionImpulse": { + "#": 2665 + }, + "positionPrev": { + "#": 2666 + }, + "render": { + "#": 2667 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2669 + }, + "vertices": { + "#": 2670 + } + }, + [ + { + "#": 2656 + }, + { + "#": 2657 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2659 + }, + "min": { + "#": 2660 + } + }, + { + "x": 615, + "y": 295 + }, + { + "x": 580, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 277.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2668 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2676 + }, + "bounds": { + "#": 2679 + }, + "collisionFilter": { + "#": 2682 + }, + "constraintImpulse": { + "#": 2683 + }, + "density": 0.001, + "force": { + "#": 2684 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 128, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2685 + }, + "positionImpulse": { + "#": 2686 + }, + "positionPrev": { + "#": 2687 + }, + "render": { + "#": 2688 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2690 + }, + "vertices": { + "#": 2691 + } + }, + [ + { + "#": 2677 + }, + { + "#": 2678 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2680 + }, + "min": { + "#": 2681 + } + }, + { + "x": 650, + "y": 295 + }, + { + "x": 615, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2689 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2697 + }, + "bounds": { + "#": 2700 + }, + "collisionFilter": { + "#": 2703 + }, + "constraintImpulse": { + "#": 2704 + }, + "density": 0.001, + "force": { + "#": 2705 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 129, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2706 + }, + "positionImpulse": { + "#": 2707 + }, + "positionPrev": { + "#": 2708 + }, + "render": { + "#": 2709 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2711 + }, + "vertices": { + "#": 2712 + } + }, + [ + { + "#": 2698 + }, + { + "#": 2699 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2701 + }, + "min": { + "#": 2702 + } + }, + { + "x": 685, + "y": 295 + }, + { + "x": 650, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 277.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2710 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2718 + }, + "bounds": { + "#": 2721 + }, + "collisionFilter": { + "#": 2724 + }, + "constraintImpulse": { + "#": 2725 + }, + "density": 0.001, + "force": { + "#": 2726 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2727 + }, + "positionImpulse": { + "#": 2728 + }, + "positionPrev": { + "#": 2729 + }, + "render": { + "#": 2730 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2732 + }, + "vertices": { + "#": 2733 + } + }, + [ + { + "#": 2719 + }, + { + "#": 2720 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2722 + }, + "min": { + "#": 2723 + } + }, + { + "x": 720, + "y": 295 + }, + { + "x": 685, + "y": 260 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 277.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2731 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 260 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 260 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2739 + }, + "bounds": { + "#": 2742 + }, + "collisionFilter": { + "#": 2745 + }, + "constraintImpulse": { + "#": 2746 + }, + "density": 0.001, + "force": { + "#": 2747 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 131, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2748 + }, + "positionImpulse": { + "#": 2749 + }, + "positionPrev": { + "#": 2750 + }, + "render": { + "#": 2751 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2753 + }, + "vertices": { + "#": 2754 + } + }, + [ + { + "#": 2740 + }, + { + "#": 2741 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2743 + }, + "min": { + "#": 2744 + } + }, + { + "x": 125, + "y": 330 + }, + { + "x": 90, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 312.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2752 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2760 + }, + "bounds": { + "#": 2763 + }, + "collisionFilter": { + "#": 2766 + }, + "constraintImpulse": { + "#": 2767 + }, + "density": 0.001, + "force": { + "#": 2768 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 132, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2769 + }, + "positionImpulse": { + "#": 2770 + }, + "positionPrev": { + "#": 2771 + }, + "render": { + "#": 2772 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2774 + }, + "vertices": { + "#": 2775 + } + }, + [ + { + "#": 2761 + }, + { + "#": 2762 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2764 + }, + "min": { + "#": 2765 + } + }, + { + "x": 160, + "y": 330 + }, + { + "x": 125, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 312.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2773 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2781 + }, + "bounds": { + "#": 2784 + }, + "collisionFilter": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "density": 0.001, + "force": { + "#": 2789 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2790 + }, + "positionImpulse": { + "#": 2791 + }, + "positionPrev": { + "#": 2792 + }, + "render": { + "#": 2793 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2795 + }, + "vertices": { + "#": 2796 + } + }, + [ + { + "#": 2782 + }, + { + "#": 2783 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2785 + }, + "min": { + "#": 2786 + } + }, + { + "x": 195, + "y": 330 + }, + { + "x": 160, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 312.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2794 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2802 + }, + "bounds": { + "#": 2805 + }, + "collisionFilter": { + "#": 2808 + }, + "constraintImpulse": { + "#": 2809 + }, + "density": 0.001, + "force": { + "#": 2810 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 134, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2811 + }, + "positionImpulse": { + "#": 2812 + }, + "positionPrev": { + "#": 2813 + }, + "render": { + "#": 2814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2816 + }, + "vertices": { + "#": 2817 + } + }, + [ + { + "#": 2803 + }, + { + "#": 2804 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2806 + }, + "min": { + "#": 2807 + } + }, + { + "x": 230, + "y": 330 + }, + { + "x": 195, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 312.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2815 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2823 + }, + "bounds": { + "#": 2826 + }, + "collisionFilter": { + "#": 2829 + }, + "constraintImpulse": { + "#": 2830 + }, + "density": 0.001, + "force": { + "#": 2831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 135, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2832 + }, + "positionImpulse": { + "#": 2833 + }, + "positionPrev": { + "#": 2834 + }, + "render": { + "#": 2835 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2837 + }, + "vertices": { + "#": 2838 + } + }, + [ + { + "#": 2824 + }, + { + "#": 2825 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2827 + }, + "min": { + "#": 2828 + } + }, + { + "x": 265, + "y": 330 + }, + { + "x": 230, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 312.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2836 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2844 + }, + "bounds": { + "#": 2847 + }, + "collisionFilter": { + "#": 2850 + }, + "constraintImpulse": { + "#": 2851 + }, + "density": 0.001, + "force": { + "#": 2852 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2853 + }, + "positionImpulse": { + "#": 2854 + }, + "positionPrev": { + "#": 2855 + }, + "render": { + "#": 2856 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2858 + }, + "vertices": { + "#": 2859 + } + }, + [ + { + "#": 2845 + }, + { + "#": 2846 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2848 + }, + "min": { + "#": 2849 + } + }, + { + "x": 300, + "y": 330 + }, + { + "x": 265, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 312.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2857 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2865 + }, + "bounds": { + "#": 2868 + }, + "collisionFilter": { + "#": 2871 + }, + "constraintImpulse": { + "#": 2872 + }, + "density": 0.001, + "force": { + "#": 2873 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 137, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2874 + }, + "positionImpulse": { + "#": 2875 + }, + "positionPrev": { + "#": 2876 + }, + "render": { + "#": 2877 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2879 + }, + "vertices": { + "#": 2880 + } + }, + [ + { + "#": 2866 + }, + { + "#": 2867 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2869 + }, + "min": { + "#": 2870 + } + }, + { + "x": 335, + "y": 330 + }, + { + "x": 300, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 312.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2878 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2886 + }, + "bounds": { + "#": 2889 + }, + "collisionFilter": { + "#": 2892 + }, + "constraintImpulse": { + "#": 2893 + }, + "density": 0.001, + "force": { + "#": 2894 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 138, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2895 + }, + "positionImpulse": { + "#": 2896 + }, + "positionPrev": { + "#": 2897 + }, + "render": { + "#": 2898 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2900 + }, + "vertices": { + "#": 2901 + } + }, + [ + { + "#": 2887 + }, + { + "#": 2888 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2890 + }, + "min": { + "#": 2891 + } + }, + { + "x": 370, + "y": 330 + }, + { + "x": 335, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 312.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2899 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2907 + }, + "bounds": { + "#": 2910 + }, + "collisionFilter": { + "#": 2913 + }, + "constraintImpulse": { + "#": 2914 + }, + "density": 0.001, + "force": { + "#": 2915 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2916 + }, + "positionImpulse": { + "#": 2917 + }, + "positionPrev": { + "#": 2918 + }, + "render": { + "#": 2919 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2921 + }, + "vertices": { + "#": 2922 + } + }, + [ + { + "#": 2908 + }, + { + "#": 2909 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2911 + }, + "min": { + "#": 2912 + } + }, + { + "x": 405, + "y": 330 + }, + { + "x": 370, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 312.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2920 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2928 + }, + "bounds": { + "#": 2931 + }, + "collisionFilter": { + "#": 2934 + }, + "constraintImpulse": { + "#": 2935 + }, + "density": 0.001, + "force": { + "#": 2936 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 140, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2937 + }, + "positionImpulse": { + "#": 2938 + }, + "positionPrev": { + "#": 2939 + }, + "render": { + "#": 2940 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2942 + }, + "vertices": { + "#": 2943 + } + }, + [ + { + "#": 2929 + }, + { + "#": 2930 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2932 + }, + "min": { + "#": 2933 + } + }, + { + "x": 440, + "y": 330 + }, + { + "x": 405, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 312.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2941 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2944 + }, + { + "#": 2945 + }, + { + "#": 2946 + }, + { + "#": 2947 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2949 + }, + "bounds": { + "#": 2952 + }, + "collisionFilter": { + "#": 2955 + }, + "constraintImpulse": { + "#": 2956 + }, + "density": 0.001, + "force": { + "#": 2957 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 141, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2958 + }, + "positionImpulse": { + "#": 2959 + }, + "positionPrev": { + "#": 2960 + }, + "render": { + "#": 2961 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2963 + }, + "vertices": { + "#": 2964 + } + }, + [ + { + "#": 2950 + }, + { + "#": 2951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2953 + }, + "min": { + "#": 2954 + } + }, + { + "x": 475, + "y": 330 + }, + { + "x": 440, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 312.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2962 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2970 + }, + "bounds": { + "#": 2973 + }, + "collisionFilter": { + "#": 2976 + }, + "constraintImpulse": { + "#": 2977 + }, + "density": 0.001, + "force": { + "#": 2978 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2979 + }, + "positionImpulse": { + "#": 2980 + }, + "positionPrev": { + "#": 2981 + }, + "render": { + "#": 2982 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2984 + }, + "vertices": { + "#": 2985 + } + }, + [ + { + "#": 2971 + }, + { + "#": 2972 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2974 + }, + "min": { + "#": 2975 + } + }, + { + "x": 510, + "y": 330 + }, + { + "x": 475, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 312.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2983 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2991 + }, + "bounds": { + "#": 2994 + }, + "collisionFilter": { + "#": 2997 + }, + "constraintImpulse": { + "#": 2998 + }, + "density": 0.001, + "force": { + "#": 2999 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 143, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3000 + }, + "positionImpulse": { + "#": 3001 + }, + "positionPrev": { + "#": 3002 + }, + "render": { + "#": 3003 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3005 + }, + "vertices": { + "#": 3006 + } + }, + [ + { + "#": 2992 + }, + { + "#": 2993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2995 + }, + "min": { + "#": 2996 + } + }, + { + "x": 545, + "y": 330 + }, + { + "x": 510, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 312.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3004 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3012 + }, + "bounds": { + "#": 3015 + }, + "collisionFilter": { + "#": 3018 + }, + "constraintImpulse": { + "#": 3019 + }, + "density": 0.001, + "force": { + "#": 3020 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 144, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3021 + }, + "positionImpulse": { + "#": 3022 + }, + "positionPrev": { + "#": 3023 + }, + "render": { + "#": 3024 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3026 + }, + "vertices": { + "#": 3027 + } + }, + [ + { + "#": 3013 + }, + { + "#": 3014 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3016 + }, + "min": { + "#": 3017 + } + }, + { + "x": 580, + "y": 330 + }, + { + "x": 545, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 312.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3025 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3033 + }, + "bounds": { + "#": 3036 + }, + "collisionFilter": { + "#": 3039 + }, + "constraintImpulse": { + "#": 3040 + }, + "density": 0.001, + "force": { + "#": 3041 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3042 + }, + "positionImpulse": { + "#": 3043 + }, + "positionPrev": { + "#": 3044 + }, + "render": { + "#": 3045 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3047 + }, + "vertices": { + "#": 3048 + } + }, + [ + { + "#": 3034 + }, + { + "#": 3035 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3037 + }, + "min": { + "#": 3038 + } + }, + { + "x": 615, + "y": 330 + }, + { + "x": 580, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 312.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3046 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3054 + }, + "bounds": { + "#": 3057 + }, + "collisionFilter": { + "#": 3060 + }, + "constraintImpulse": { + "#": 3061 + }, + "density": 0.001, + "force": { + "#": 3062 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 146, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3063 + }, + "positionImpulse": { + "#": 3064 + }, + "positionPrev": { + "#": 3065 + }, + "render": { + "#": 3066 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3068 + }, + "vertices": { + "#": 3069 + } + }, + [ + { + "#": 3055 + }, + { + "#": 3056 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3058 + }, + "min": { + "#": 3059 + } + }, + { + "x": 650, + "y": 330 + }, + { + "x": 615, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 312.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3067 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3075 + }, + "bounds": { + "#": 3078 + }, + "collisionFilter": { + "#": 3081 + }, + "constraintImpulse": { + "#": 3082 + }, + "density": 0.001, + "force": { + "#": 3083 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 147, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3084 + }, + "positionImpulse": { + "#": 3085 + }, + "positionPrev": { + "#": 3086 + }, + "render": { + "#": 3087 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3089 + }, + "vertices": { + "#": 3090 + } + }, + [ + { + "#": 3076 + }, + { + "#": 3077 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3079 + }, + "min": { + "#": 3080 + } + }, + { + "x": 685, + "y": 330 + }, + { + "x": 650, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 312.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3088 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3096 + }, + "bounds": { + "#": 3099 + }, + "collisionFilter": { + "#": 3102 + }, + "constraintImpulse": { + "#": 3103 + }, + "density": 0.001, + "force": { + "#": 3104 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3105 + }, + "positionImpulse": { + "#": 3106 + }, + "positionPrev": { + "#": 3107 + }, + "render": { + "#": 3108 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3110 + }, + "vertices": { + "#": 3111 + } + }, + [ + { + "#": 3097 + }, + { + "#": 3098 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3100 + }, + "min": { + "#": 3101 + } + }, + { + "x": 720, + "y": 330 + }, + { + "x": 685, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 312.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3109 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 330 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 330 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3117 + }, + "bounds": { + "#": 3120 + }, + "collisionFilter": { + "#": 3123 + }, + "constraintImpulse": { + "#": 3124 + }, + "density": 0.001, + "force": { + "#": 3125 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 149, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3126 + }, + "positionImpulse": { + "#": 3127 + }, + "positionPrev": { + "#": 3128 + }, + "render": { + "#": 3129 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3131 + }, + "vertices": { + "#": 3132 + } + }, + [ + { + "#": 3118 + }, + { + "#": 3119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3121 + }, + "min": { + "#": 3122 + } + }, + { + "x": 125, + "y": 365 + }, + { + "x": 90, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 347.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3130 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3138 + }, + "bounds": { + "#": 3141 + }, + "collisionFilter": { + "#": 3144 + }, + "constraintImpulse": { + "#": 3145 + }, + "density": 0.001, + "force": { + "#": 3146 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 150, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3147 + }, + "positionImpulse": { + "#": 3148 + }, + "positionPrev": { + "#": 3149 + }, + "render": { + "#": 3150 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3152 + }, + "vertices": { + "#": 3153 + } + }, + [ + { + "#": 3139 + }, + { + "#": 3140 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3142 + }, + "min": { + "#": 3143 + } + }, + { + "x": 160, + "y": 365 + }, + { + "x": 125, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 347.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3151 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3159 + }, + "bounds": { + "#": 3162 + }, + "collisionFilter": { + "#": 3165 + }, + "constraintImpulse": { + "#": 3166 + }, + "density": 0.001, + "force": { + "#": 3167 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3168 + }, + "positionImpulse": { + "#": 3169 + }, + "positionPrev": { + "#": 3170 + }, + "render": { + "#": 3171 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3173 + }, + "vertices": { + "#": 3174 + } + }, + [ + { + "#": 3160 + }, + { + "#": 3161 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3163 + }, + "min": { + "#": 3164 + } + }, + { + "x": 195, + "y": 365 + }, + { + "x": 160, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 347.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3172 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + }, + { + "#": 3178 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3180 + }, + "bounds": { + "#": 3183 + }, + "collisionFilter": { + "#": 3186 + }, + "constraintImpulse": { + "#": 3187 + }, + "density": 0.001, + "force": { + "#": 3188 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 152, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3189 + }, + "positionImpulse": { + "#": 3190 + }, + "positionPrev": { + "#": 3191 + }, + "render": { + "#": 3192 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3194 + }, + "vertices": { + "#": 3195 + } + }, + [ + { + "#": 3181 + }, + { + "#": 3182 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3184 + }, + "min": { + "#": 3185 + } + }, + { + "x": 230, + "y": 365 + }, + { + "x": 195, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 347.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3193 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3201 + }, + "bounds": { + "#": 3204 + }, + "collisionFilter": { + "#": 3207 + }, + "constraintImpulse": { + "#": 3208 + }, + "density": 0.001, + "force": { + "#": 3209 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 153, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3210 + }, + "positionImpulse": { + "#": 3211 + }, + "positionPrev": { + "#": 3212 + }, + "render": { + "#": 3213 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3215 + }, + "vertices": { + "#": 3216 + } + }, + [ + { + "#": 3202 + }, + { + "#": 3203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3205 + }, + "min": { + "#": 3206 + } + }, + { + "x": 265, + "y": 365 + }, + { + "x": 230, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 347.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3214 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3222 + }, + "bounds": { + "#": 3225 + }, + "collisionFilter": { + "#": 3228 + }, + "constraintImpulse": { + "#": 3229 + }, + "density": 0.001, + "force": { + "#": 3230 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3231 + }, + "positionImpulse": { + "#": 3232 + }, + "positionPrev": { + "#": 3233 + }, + "render": { + "#": 3234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3236 + }, + "vertices": { + "#": 3237 + } + }, + [ + { + "#": 3223 + }, + { + "#": 3224 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3226 + }, + "min": { + "#": 3227 + } + }, + { + "x": 300, + "y": 365 + }, + { + "x": 265, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 347.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3235 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3243 + }, + "bounds": { + "#": 3246 + }, + "collisionFilter": { + "#": 3249 + }, + "constraintImpulse": { + "#": 3250 + }, + "density": 0.001, + "force": { + "#": 3251 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 155, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3252 + }, + "positionImpulse": { + "#": 3253 + }, + "positionPrev": { + "#": 3254 + }, + "render": { + "#": 3255 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3257 + }, + "vertices": { + "#": 3258 + } + }, + [ + { + "#": 3244 + }, + { + "#": 3245 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3247 + }, + "min": { + "#": 3248 + } + }, + { + "x": 335, + "y": 365 + }, + { + "x": 300, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 347.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3256 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3264 + }, + "bounds": { + "#": 3267 + }, + "collisionFilter": { + "#": 3270 + }, + "constraintImpulse": { + "#": 3271 + }, + "density": 0.001, + "force": { + "#": 3272 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 156, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3273 + }, + "positionImpulse": { + "#": 3274 + }, + "positionPrev": { + "#": 3275 + }, + "render": { + "#": 3276 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3278 + }, + "vertices": { + "#": 3279 + } + }, + [ + { + "#": 3265 + }, + { + "#": 3266 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3268 + }, + "min": { + "#": 3269 + } + }, + { + "x": 370, + "y": 365 + }, + { + "x": 335, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 347.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3277 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3285 + }, + "bounds": { + "#": 3288 + }, + "collisionFilter": { + "#": 3291 + }, + "constraintImpulse": { + "#": 3292 + }, + "density": 0.001, + "force": { + "#": 3293 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3294 + }, + "positionImpulse": { + "#": 3295 + }, + "positionPrev": { + "#": 3296 + }, + "render": { + "#": 3297 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3299 + }, + "vertices": { + "#": 3300 + } + }, + [ + { + "#": 3286 + }, + { + "#": 3287 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3289 + }, + "min": { + "#": 3290 + } + }, + { + "x": 405, + "y": 365 + }, + { + "x": 370, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 347.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3298 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3306 + }, + "bounds": { + "#": 3309 + }, + "collisionFilter": { + "#": 3312 + }, + "constraintImpulse": { + "#": 3313 + }, + "density": 0.001, + "force": { + "#": 3314 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 158, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3315 + }, + "positionImpulse": { + "#": 3316 + }, + "positionPrev": { + "#": 3317 + }, + "render": { + "#": 3318 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3320 + }, + "vertices": { + "#": 3321 + } + }, + [ + { + "#": 3307 + }, + { + "#": 3308 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3310 + }, + "min": { + "#": 3311 + } + }, + { + "x": 440, + "y": 365 + }, + { + "x": 405, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 347.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3319 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3327 + }, + "bounds": { + "#": 3330 + }, + "collisionFilter": { + "#": 3333 + }, + "constraintImpulse": { + "#": 3334 + }, + "density": 0.001, + "force": { + "#": 3335 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 159, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3336 + }, + "positionImpulse": { + "#": 3337 + }, + "positionPrev": { + "#": 3338 + }, + "render": { + "#": 3339 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3341 + }, + "vertices": { + "#": 3342 + } + }, + [ + { + "#": 3328 + }, + { + "#": 3329 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3331 + }, + "min": { + "#": 3332 + } + }, + { + "x": 475, + "y": 365 + }, + { + "x": 440, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 347.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3340 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3348 + }, + "bounds": { + "#": 3351 + }, + "collisionFilter": { + "#": 3354 + }, + "constraintImpulse": { + "#": 3355 + }, + "density": 0.001, + "force": { + "#": 3356 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 160, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3357 + }, + "positionImpulse": { + "#": 3358 + }, + "positionPrev": { + "#": 3359 + }, + "render": { + "#": 3360 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3362 + }, + "vertices": { + "#": 3363 + } + }, + [ + { + "#": 3349 + }, + { + "#": 3350 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3352 + }, + "min": { + "#": 3353 + } + }, + { + "x": 510, + "y": 365 + }, + { + "x": 475, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 347.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3361 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + }, + { + "#": 3367 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3369 + }, + "bounds": { + "#": 3372 + }, + "collisionFilter": { + "#": 3375 + }, + "constraintImpulse": { + "#": 3376 + }, + "density": 0.001, + "force": { + "#": 3377 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 161, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3378 + }, + "positionImpulse": { + "#": 3379 + }, + "positionPrev": { + "#": 3380 + }, + "render": { + "#": 3381 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3383 + }, + "vertices": { + "#": 3384 + } + }, + [ + { + "#": 3370 + }, + { + "#": 3371 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3373 + }, + "min": { + "#": 3374 + } + }, + { + "x": 545, + "y": 365 + }, + { + "x": 510, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 347.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3382 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3390 + }, + "bounds": { + "#": 3393 + }, + "collisionFilter": { + "#": 3396 + }, + "constraintImpulse": { + "#": 3397 + }, + "density": 0.001, + "force": { + "#": 3398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 162, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3399 + }, + "positionImpulse": { + "#": 3400 + }, + "positionPrev": { + "#": 3401 + }, + "render": { + "#": 3402 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3404 + }, + "vertices": { + "#": 3405 + } + }, + [ + { + "#": 3391 + }, + { + "#": 3392 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3394 + }, + "min": { + "#": 3395 + } + }, + { + "x": 580, + "y": 365 + }, + { + "x": 545, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 347.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3403 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3406 + }, + { + "#": 3407 + }, + { + "#": 3408 + }, + { + "#": 3409 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3411 + }, + "bounds": { + "#": 3414 + }, + "collisionFilter": { + "#": 3417 + }, + "constraintImpulse": { + "#": 3418 + }, + "density": 0.001, + "force": { + "#": 3419 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 163, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3420 + }, + "positionImpulse": { + "#": 3421 + }, + "positionPrev": { + "#": 3422 + }, + "render": { + "#": 3423 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3425 + }, + "vertices": { + "#": 3426 + } + }, + [ + { + "#": 3412 + }, + { + "#": 3413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3415 + }, + "min": { + "#": 3416 + } + }, + { + "x": 615, + "y": 365 + }, + { + "x": 580, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 347.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3424 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3432 + }, + "bounds": { + "#": 3435 + }, + "collisionFilter": { + "#": 3438 + }, + "constraintImpulse": { + "#": 3439 + }, + "density": 0.001, + "force": { + "#": 3440 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 164, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3441 + }, + "positionImpulse": { + "#": 3442 + }, + "positionPrev": { + "#": 3443 + }, + "render": { + "#": 3444 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3446 + }, + "vertices": { + "#": 3447 + } + }, + [ + { + "#": 3433 + }, + { + "#": 3434 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3436 + }, + "min": { + "#": 3437 + } + }, + { + "x": 650, + "y": 365 + }, + { + "x": 615, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 347.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3445 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3453 + }, + "bounds": { + "#": 3456 + }, + "collisionFilter": { + "#": 3459 + }, + "constraintImpulse": { + "#": 3460 + }, + "density": 0.001, + "force": { + "#": 3461 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 165, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3462 + }, + "positionImpulse": { + "#": 3463 + }, + "positionPrev": { + "#": 3464 + }, + "render": { + "#": 3465 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3467 + }, + "vertices": { + "#": 3468 + } + }, + [ + { + "#": 3454 + }, + { + "#": 3455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3457 + }, + "min": { + "#": 3458 + } + }, + { + "x": 685, + "y": 365 + }, + { + "x": 650, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 347.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3466 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3474 + }, + "bounds": { + "#": 3477 + }, + "collisionFilter": { + "#": 3480 + }, + "constraintImpulse": { + "#": 3481 + }, + "density": 0.001, + "force": { + "#": 3482 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 166, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3483 + }, + "positionImpulse": { + "#": 3484 + }, + "positionPrev": { + "#": 3485 + }, + "render": { + "#": 3486 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3488 + }, + "vertices": { + "#": 3489 + } + }, + [ + { + "#": 3475 + }, + { + "#": 3476 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3478 + }, + "min": { + "#": 3479 + } + }, + { + "x": 720, + "y": 365 + }, + { + "x": 685, + "y": 330 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 347.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3487 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 330 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 330 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 365 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 365 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3495 + }, + "bounds": { + "#": 3498 + }, + "collisionFilter": { + "#": 3501 + }, + "constraintImpulse": { + "#": 3502 + }, + "density": 0.001, + "force": { + "#": 3503 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 167, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3504 + }, + "positionImpulse": { + "#": 3505 + }, + "positionPrev": { + "#": 3506 + }, + "render": { + "#": 3507 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3509 + }, + "vertices": { + "#": 3510 + } + }, + [ + { + "#": 3496 + }, + { + "#": 3497 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3499 + }, + "min": { + "#": 3500 + } + }, + { + "x": 125, + "y": 400 + }, + { + "x": 90, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 382.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3508 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3511 + }, + { + "#": 3512 + }, + { + "#": 3513 + }, + { + "#": 3514 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3516 + }, + "bounds": { + "#": 3519 + }, + "collisionFilter": { + "#": 3522 + }, + "constraintImpulse": { + "#": 3523 + }, + "density": 0.001, + "force": { + "#": 3524 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 168, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3525 + }, + "positionImpulse": { + "#": 3526 + }, + "positionPrev": { + "#": 3527 + }, + "render": { + "#": 3528 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3530 + }, + "vertices": { + "#": 3531 + } + }, + [ + { + "#": 3517 + }, + { + "#": 3518 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3520 + }, + "min": { + "#": 3521 + } + }, + { + "x": 160, + "y": 400 + }, + { + "x": 125, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 382.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3529 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3532 + }, + { + "#": 3533 + }, + { + "#": 3534 + }, + { + "#": 3535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3537 + }, + "bounds": { + "#": 3540 + }, + "collisionFilter": { + "#": 3543 + }, + "constraintImpulse": { + "#": 3544 + }, + "density": 0.001, + "force": { + "#": 3545 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 169, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3546 + }, + "positionImpulse": { + "#": 3547 + }, + "positionPrev": { + "#": 3548 + }, + "render": { + "#": 3549 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3551 + }, + "vertices": { + "#": 3552 + } + }, + [ + { + "#": 3538 + }, + { + "#": 3539 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3541 + }, + "min": { + "#": 3542 + } + }, + { + "x": 195, + "y": 400 + }, + { + "x": 160, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3550 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3558 + }, + "bounds": { + "#": 3561 + }, + "collisionFilter": { + "#": 3564 + }, + "constraintImpulse": { + "#": 3565 + }, + "density": 0.001, + "force": { + "#": 3566 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 170, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3567 + }, + "positionImpulse": { + "#": 3568 + }, + "positionPrev": { + "#": 3569 + }, + "render": { + "#": 3570 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3572 + }, + "vertices": { + "#": 3573 + } + }, + [ + { + "#": 3559 + }, + { + "#": 3560 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3562 + }, + "min": { + "#": 3563 + } + }, + { + "x": 230, + "y": 400 + }, + { + "x": 195, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 382.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3571 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3579 + }, + "bounds": { + "#": 3582 + }, + "collisionFilter": { + "#": 3585 + }, + "constraintImpulse": { + "#": 3586 + }, + "density": 0.001, + "force": { + "#": 3587 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 171, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3588 + }, + "positionImpulse": { + "#": 3589 + }, + "positionPrev": { + "#": 3590 + }, + "render": { + "#": 3591 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3593 + }, + "vertices": { + "#": 3594 + } + }, + [ + { + "#": 3580 + }, + { + "#": 3581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3583 + }, + "min": { + "#": 3584 + } + }, + { + "x": 265, + "y": 400 + }, + { + "x": 230, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 382.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3592 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3600 + }, + "bounds": { + "#": 3603 + }, + "collisionFilter": { + "#": 3606 + }, + "constraintImpulse": { + "#": 3607 + }, + "density": 0.001, + "force": { + "#": 3608 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 172, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3609 + }, + "positionImpulse": { + "#": 3610 + }, + "positionPrev": { + "#": 3611 + }, + "render": { + "#": 3612 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3614 + }, + "vertices": { + "#": 3615 + } + }, + [ + { + "#": 3601 + }, + { + "#": 3602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3604 + }, + "min": { + "#": 3605 + } + }, + { + "x": 300, + "y": 400 + }, + { + "x": 265, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 382.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3613 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3621 + }, + "bounds": { + "#": 3624 + }, + "collisionFilter": { + "#": 3627 + }, + "constraintImpulse": { + "#": 3628 + }, + "density": 0.001, + "force": { + "#": 3629 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 173, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3630 + }, + "positionImpulse": { + "#": 3631 + }, + "positionPrev": { + "#": 3632 + }, + "render": { + "#": 3633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3635 + }, + "vertices": { + "#": 3636 + } + }, + [ + { + "#": 3622 + }, + { + "#": 3623 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3625 + }, + "min": { + "#": 3626 + } + }, + { + "x": 335, + "y": 400 + }, + { + "x": 300, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 382.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3634 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3642 + }, + "bounds": { + "#": 3645 + }, + "collisionFilter": { + "#": 3648 + }, + "constraintImpulse": { + "#": 3649 + }, + "density": 0.001, + "force": { + "#": 3650 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 174, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3651 + }, + "positionImpulse": { + "#": 3652 + }, + "positionPrev": { + "#": 3653 + }, + "render": { + "#": 3654 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3656 + }, + "vertices": { + "#": 3657 + } + }, + [ + { + "#": 3643 + }, + { + "#": 3644 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3646 + }, + "min": { + "#": 3647 + } + }, + { + "x": 370, + "y": 400 + }, + { + "x": 335, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 382.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3655 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3658 + }, + { + "#": 3659 + }, + { + "#": 3660 + }, + { + "#": 3661 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3663 + }, + "bounds": { + "#": 3666 + }, + "collisionFilter": { + "#": 3669 + }, + "constraintImpulse": { + "#": 3670 + }, + "density": 0.001, + "force": { + "#": 3671 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 175, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3672 + }, + "positionImpulse": { + "#": 3673 + }, + "positionPrev": { + "#": 3674 + }, + "render": { + "#": 3675 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3677 + }, + "vertices": { + "#": 3678 + } + }, + [ + { + "#": 3664 + }, + { + "#": 3665 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3667 + }, + "min": { + "#": 3668 + } + }, + { + "x": 405, + "y": 400 + }, + { + "x": 370, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 382.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3676 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3684 + }, + "bounds": { + "#": 3687 + }, + "collisionFilter": { + "#": 3690 + }, + "constraintImpulse": { + "#": 3691 + }, + "density": 0.001, + "force": { + "#": 3692 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 176, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3693 + }, + "positionImpulse": { + "#": 3694 + }, + "positionPrev": { + "#": 3695 + }, + "render": { + "#": 3696 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3698 + }, + "vertices": { + "#": 3699 + } + }, + [ + { + "#": 3685 + }, + { + "#": 3686 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3688 + }, + "min": { + "#": 3689 + } + }, + { + "x": 440, + "y": 400 + }, + { + "x": 405, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3697 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3705 + }, + "bounds": { + "#": 3708 + }, + "collisionFilter": { + "#": 3711 + }, + "constraintImpulse": { + "#": 3712 + }, + "density": 0.001, + "force": { + "#": 3713 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 177, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3714 + }, + "positionImpulse": { + "#": 3715 + }, + "positionPrev": { + "#": 3716 + }, + "render": { + "#": 3717 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3719 + }, + "vertices": { + "#": 3720 + } + }, + [ + { + "#": 3706 + }, + { + "#": 3707 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3709 + }, + "min": { + "#": 3710 + } + }, + { + "x": 475, + "y": 400 + }, + { + "x": 440, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 382.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3718 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3726 + }, + "bounds": { + "#": 3729 + }, + "collisionFilter": { + "#": 3732 + }, + "constraintImpulse": { + "#": 3733 + }, + "density": 0.001, + "force": { + "#": 3734 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 178, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3735 + }, + "positionImpulse": { + "#": 3736 + }, + "positionPrev": { + "#": 3737 + }, + "render": { + "#": 3738 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3740 + }, + "vertices": { + "#": 3741 + } + }, + [ + { + "#": 3727 + }, + { + "#": 3728 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3730 + }, + "min": { + "#": 3731 + } + }, + { + "x": 510, + "y": 400 + }, + { + "x": 475, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3739 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3747 + }, + "bounds": { + "#": 3750 + }, + "collisionFilter": { + "#": 3753 + }, + "constraintImpulse": { + "#": 3754 + }, + "density": 0.001, + "force": { + "#": 3755 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 179, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3756 + }, + "positionImpulse": { + "#": 3757 + }, + "positionPrev": { + "#": 3758 + }, + "render": { + "#": 3759 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3761 + }, + "vertices": { + "#": 3762 + } + }, + [ + { + "#": 3748 + }, + { + "#": 3749 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3751 + }, + "min": { + "#": 3752 + } + }, + { + "x": 545, + "y": 400 + }, + { + "x": 510, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 382.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3760 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3768 + }, + "bounds": { + "#": 3771 + }, + "collisionFilter": { + "#": 3774 + }, + "constraintImpulse": { + "#": 3775 + }, + "density": 0.001, + "force": { + "#": 3776 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 180, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3777 + }, + "positionImpulse": { + "#": 3778 + }, + "positionPrev": { + "#": 3779 + }, + "render": { + "#": 3780 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3782 + }, + "vertices": { + "#": 3783 + } + }, + [ + { + "#": 3769 + }, + { + "#": 3770 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3772 + }, + "min": { + "#": 3773 + } + }, + { + "x": 580, + "y": 400 + }, + { + "x": 545, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 382.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3781 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3789 + }, + "bounds": { + "#": 3792 + }, + "collisionFilter": { + "#": 3795 + }, + "constraintImpulse": { + "#": 3796 + }, + "density": 0.001, + "force": { + "#": 3797 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 181, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3798 + }, + "positionImpulse": { + "#": 3799 + }, + "positionPrev": { + "#": 3800 + }, + "render": { + "#": 3801 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3803 + }, + "vertices": { + "#": 3804 + } + }, + [ + { + "#": 3790 + }, + { + "#": 3791 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3793 + }, + "min": { + "#": 3794 + } + }, + { + "x": 615, + "y": 400 + }, + { + "x": 580, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 382.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3802 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3810 + }, + "bounds": { + "#": 3813 + }, + "collisionFilter": { + "#": 3816 + }, + "constraintImpulse": { + "#": 3817 + }, + "density": 0.001, + "force": { + "#": 3818 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 182, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3819 + }, + "positionImpulse": { + "#": 3820 + }, + "positionPrev": { + "#": 3821 + }, + "render": { + "#": 3822 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3824 + }, + "vertices": { + "#": 3825 + } + }, + [ + { + "#": 3811 + }, + { + "#": 3812 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3814 + }, + "min": { + "#": 3815 + } + }, + { + "x": 650, + "y": 400 + }, + { + "x": 615, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 382.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3823 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3831 + }, + "bounds": { + "#": 3834 + }, + "collisionFilter": { + "#": 3837 + }, + "constraintImpulse": { + "#": 3838 + }, + "density": 0.001, + "force": { + "#": 3839 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 183, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3840 + }, + "positionImpulse": { + "#": 3841 + }, + "positionPrev": { + "#": 3842 + }, + "render": { + "#": 3843 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3845 + }, + "vertices": { + "#": 3846 + } + }, + [ + { + "#": 3832 + }, + { + "#": 3833 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3835 + }, + "min": { + "#": 3836 + } + }, + { + "x": 685, + "y": 400 + }, + { + "x": 650, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 382.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3844 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3852 + }, + "bounds": { + "#": 3855 + }, + "collisionFilter": { + "#": 3858 + }, + "constraintImpulse": { + "#": 3859 + }, + "density": 0.001, + "force": { + "#": 3860 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 184, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3861 + }, + "positionImpulse": { + "#": 3862 + }, + "positionPrev": { + "#": 3863 + }, + "render": { + "#": 3864 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3866 + }, + "vertices": { + "#": 3867 + } + }, + [ + { + "#": 3853 + }, + { + "#": 3854 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3856 + }, + "min": { + "#": 3857 + } + }, + { + "x": 720, + "y": 400 + }, + { + "x": 685, + "y": 365 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 382.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3865 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 365 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 400 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 400 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3873 + }, + "bounds": { + "#": 3876 + }, + "collisionFilter": { + "#": 3879 + }, + "constraintImpulse": { + "#": 3880 + }, + "density": 0.001, + "force": { + "#": 3881 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 185, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3882 + }, + "positionImpulse": { + "#": 3883 + }, + "positionPrev": { + "#": 3884 + }, + "render": { + "#": 3885 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3887 + }, + "vertices": { + "#": 3888 + } + }, + [ + { + "#": 3874 + }, + { + "#": 3875 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3877 + }, + "min": { + "#": 3878 + } + }, + { + "x": 125, + "y": 435 + }, + { + "x": 90, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 417.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3886 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3894 + }, + "bounds": { + "#": 3897 + }, + "collisionFilter": { + "#": 3900 + }, + "constraintImpulse": { + "#": 3901 + }, + "density": 0.001, + "force": { + "#": 3902 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 186, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3903 + }, + "positionImpulse": { + "#": 3904 + }, + "positionPrev": { + "#": 3905 + }, + "render": { + "#": 3906 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3908 + }, + "vertices": { + "#": 3909 + } + }, + [ + { + "#": 3895 + }, + { + "#": 3896 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3898 + }, + "min": { + "#": 3899 + } + }, + { + "x": 160, + "y": 435 + }, + { + "x": 125, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 417.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3907 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3915 + }, + "bounds": { + "#": 3918 + }, + "collisionFilter": { + "#": 3921 + }, + "constraintImpulse": { + "#": 3922 + }, + "density": 0.001, + "force": { + "#": 3923 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 187, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3924 + }, + "positionImpulse": { + "#": 3925 + }, + "positionPrev": { + "#": 3926 + }, + "render": { + "#": 3927 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3929 + }, + "vertices": { + "#": 3930 + } + }, + [ + { + "#": 3916 + }, + { + "#": 3917 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3919 + }, + "min": { + "#": 3920 + } + }, + { + "x": 195, + "y": 435 + }, + { + "x": 160, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 417.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3928 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3931 + }, + { + "#": 3932 + }, + { + "#": 3933 + }, + { + "#": 3934 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3936 + }, + "bounds": { + "#": 3939 + }, + "collisionFilter": { + "#": 3942 + }, + "constraintImpulse": { + "#": 3943 + }, + "density": 0.001, + "force": { + "#": 3944 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 188, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3945 + }, + "positionImpulse": { + "#": 3946 + }, + "positionPrev": { + "#": 3947 + }, + "render": { + "#": 3948 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3950 + }, + "vertices": { + "#": 3951 + } + }, + [ + { + "#": 3937 + }, + { + "#": 3938 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3940 + }, + "min": { + "#": 3941 + } + }, + { + "x": 230, + "y": 435 + }, + { + "x": 195, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 417.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3949 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3957 + }, + "bounds": { + "#": 3960 + }, + "collisionFilter": { + "#": 3963 + }, + "constraintImpulse": { + "#": 3964 + }, + "density": 0.001, + "force": { + "#": 3965 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 189, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3966 + }, + "positionImpulse": { + "#": 3967 + }, + "positionPrev": { + "#": 3968 + }, + "render": { + "#": 3969 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3971 + }, + "vertices": { + "#": 3972 + } + }, + [ + { + "#": 3958 + }, + { + "#": 3959 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3961 + }, + "min": { + "#": 3962 + } + }, + { + "x": 265, + "y": 435 + }, + { + "x": 230, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 417.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3970 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3973 + }, + { + "#": 3974 + }, + { + "#": 3975 + }, + { + "#": 3976 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3978 + }, + "bounds": { + "#": 3981 + }, + "collisionFilter": { + "#": 3984 + }, + "constraintImpulse": { + "#": 3985 + }, + "density": 0.001, + "force": { + "#": 3986 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 190, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3987 + }, + "positionImpulse": { + "#": 3988 + }, + "positionPrev": { + "#": 3989 + }, + "render": { + "#": 3990 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3992 + }, + "vertices": { + "#": 3993 + } + }, + [ + { + "#": 3979 + }, + { + "#": 3980 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3982 + }, + "min": { + "#": 3983 + } + }, + { + "x": 300, + "y": 435 + }, + { + "x": 265, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 417.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3991 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3999 + }, + "bounds": { + "#": 4002 + }, + "collisionFilter": { + "#": 4005 + }, + "constraintImpulse": { + "#": 4006 + }, + "density": 0.001, + "force": { + "#": 4007 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 191, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4008 + }, + "positionImpulse": { + "#": 4009 + }, + "positionPrev": { + "#": 4010 + }, + "render": { + "#": 4011 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4013 + }, + "vertices": { + "#": 4014 + } + }, + [ + { + "#": 4000 + }, + { + "#": 4001 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4003 + }, + "min": { + "#": 4004 + } + }, + { + "x": 335, + "y": 435 + }, + { + "x": 300, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 417.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4012 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4020 + }, + "bounds": { + "#": 4023 + }, + "collisionFilter": { + "#": 4026 + }, + "constraintImpulse": { + "#": 4027 + }, + "density": 0.001, + "force": { + "#": 4028 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 192, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4029 + }, + "positionImpulse": { + "#": 4030 + }, + "positionPrev": { + "#": 4031 + }, + "render": { + "#": 4032 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4034 + }, + "vertices": { + "#": 4035 + } + }, + [ + { + "#": 4021 + }, + { + "#": 4022 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4024 + }, + "min": { + "#": 4025 + } + }, + { + "x": 370, + "y": 435 + }, + { + "x": 335, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 417.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4033 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4041 + }, + "bounds": { + "#": 4044 + }, + "collisionFilter": { + "#": 4047 + }, + "constraintImpulse": { + "#": 4048 + }, + "density": 0.001, + "force": { + "#": 4049 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 193, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4050 + }, + "positionImpulse": { + "#": 4051 + }, + "positionPrev": { + "#": 4052 + }, + "render": { + "#": 4053 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4055 + }, + "vertices": { + "#": 4056 + } + }, + [ + { + "#": 4042 + }, + { + "#": 4043 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4045 + }, + "min": { + "#": 4046 + } + }, + { + "x": 405, + "y": 435 + }, + { + "x": 370, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 417.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4054 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4062 + }, + "bounds": { + "#": 4065 + }, + "collisionFilter": { + "#": 4068 + }, + "constraintImpulse": { + "#": 4069 + }, + "density": 0.001, + "force": { + "#": 4070 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 194, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4071 + }, + "positionImpulse": { + "#": 4072 + }, + "positionPrev": { + "#": 4073 + }, + "render": { + "#": 4074 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4076 + }, + "vertices": { + "#": 4077 + } + }, + [ + { + "#": 4063 + }, + { + "#": 4064 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4066 + }, + "min": { + "#": 4067 + } + }, + { + "x": 440, + "y": 435 + }, + { + "x": 405, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 417.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4075 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4078 + }, + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4083 + }, + "bounds": { + "#": 4086 + }, + "collisionFilter": { + "#": 4089 + }, + "constraintImpulse": { + "#": 4090 + }, + "density": 0.001, + "force": { + "#": 4091 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 195, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4092 + }, + "positionImpulse": { + "#": 4093 + }, + "positionPrev": { + "#": 4094 + }, + "render": { + "#": 4095 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4097 + }, + "vertices": { + "#": 4098 + } + }, + [ + { + "#": 4084 + }, + { + "#": 4085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4087 + }, + "min": { + "#": 4088 + } + }, + { + "x": 475, + "y": 435 + }, + { + "x": 440, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 417.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4096 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4104 + }, + "bounds": { + "#": 4107 + }, + "collisionFilter": { + "#": 4110 + }, + "constraintImpulse": { + "#": 4111 + }, + "density": 0.001, + "force": { + "#": 4112 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 196, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4113 + }, + "positionImpulse": { + "#": 4114 + }, + "positionPrev": { + "#": 4115 + }, + "render": { + "#": 4116 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4118 + }, + "vertices": { + "#": 4119 + } + }, + [ + { + "#": 4105 + }, + { + "#": 4106 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4108 + }, + "min": { + "#": 4109 + } + }, + { + "x": 510, + "y": 435 + }, + { + "x": 475, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 417.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4117 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4120 + }, + { + "#": 4121 + }, + { + "#": 4122 + }, + { + "#": 4123 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4125 + }, + "bounds": { + "#": 4128 + }, + "collisionFilter": { + "#": 4131 + }, + "constraintImpulse": { + "#": 4132 + }, + "density": 0.001, + "force": { + "#": 4133 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 197, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4134 + }, + "positionImpulse": { + "#": 4135 + }, + "positionPrev": { + "#": 4136 + }, + "render": { + "#": 4137 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4139 + }, + "vertices": { + "#": 4140 + } + }, + [ + { + "#": 4126 + }, + { + "#": 4127 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4129 + }, + "min": { + "#": 4130 + } + }, + { + "x": 545, + "y": 435 + }, + { + "x": 510, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 417.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4138 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + }, + { + "#": 4144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4146 + }, + "bounds": { + "#": 4149 + }, + "collisionFilter": { + "#": 4152 + }, + "constraintImpulse": { + "#": 4153 + }, + "density": 0.001, + "force": { + "#": 4154 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 198, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4155 + }, + "positionImpulse": { + "#": 4156 + }, + "positionPrev": { + "#": 4157 + }, + "render": { + "#": 4158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4160 + }, + "vertices": { + "#": 4161 + } + }, + [ + { + "#": 4147 + }, + { + "#": 4148 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4150 + }, + "min": { + "#": 4151 + } + }, + { + "x": 580, + "y": 435 + }, + { + "x": 545, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 417.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4159 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4162 + }, + { + "#": 4163 + }, + { + "#": 4164 + }, + { + "#": 4165 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4167 + }, + "bounds": { + "#": 4170 + }, + "collisionFilter": { + "#": 4173 + }, + "constraintImpulse": { + "#": 4174 + }, + "density": 0.001, + "force": { + "#": 4175 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 199, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4176 + }, + "positionImpulse": { + "#": 4177 + }, + "positionPrev": { + "#": 4178 + }, + "render": { + "#": 4179 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4181 + }, + "vertices": { + "#": 4182 + } + }, + [ + { + "#": 4168 + }, + { + "#": 4169 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4171 + }, + "min": { + "#": 4172 + } + }, + { + "x": 615, + "y": 435 + }, + { + "x": 580, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 417.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4180 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4188 + }, + "bounds": { + "#": 4191 + }, + "collisionFilter": { + "#": 4194 + }, + "constraintImpulse": { + "#": 4195 + }, + "density": 0.001, + "force": { + "#": 4196 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 200, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4197 + }, + "positionImpulse": { + "#": 4198 + }, + "positionPrev": { + "#": 4199 + }, + "render": { + "#": 4200 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4202 + }, + "vertices": { + "#": 4203 + } + }, + [ + { + "#": 4189 + }, + { + "#": 4190 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4192 + }, + "min": { + "#": 4193 + } + }, + { + "x": 650, + "y": 435 + }, + { + "x": 615, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 417.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4201 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4209 + }, + "bounds": { + "#": 4212 + }, + "collisionFilter": { + "#": 4215 + }, + "constraintImpulse": { + "#": 4216 + }, + "density": 0.001, + "force": { + "#": 4217 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 201, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4218 + }, + "positionImpulse": { + "#": 4219 + }, + "positionPrev": { + "#": 4220 + }, + "render": { + "#": 4221 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4223 + }, + "vertices": { + "#": 4224 + } + }, + [ + { + "#": 4210 + }, + { + "#": 4211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4213 + }, + "min": { + "#": 4214 + } + }, + { + "x": 685, + "y": 435 + }, + { + "x": 650, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 417.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4222 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4230 + }, + "bounds": { + "#": 4233 + }, + "collisionFilter": { + "#": 4236 + }, + "constraintImpulse": { + "#": 4237 + }, + "density": 0.001, + "force": { + "#": 4238 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 202, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4239 + }, + "positionImpulse": { + "#": 4240 + }, + "positionPrev": { + "#": 4241 + }, + "render": { + "#": 4242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4244 + }, + "vertices": { + "#": 4245 + } + }, + [ + { + "#": 4231 + }, + { + "#": 4232 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4234 + }, + "min": { + "#": 4235 + } + }, + { + "x": 720, + "y": 435 + }, + { + "x": 685, + "y": 400 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 417.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4243 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 400 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 400 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 435 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4251 + }, + "bounds": { + "#": 4254 + }, + "collisionFilter": { + "#": 4257 + }, + "constraintImpulse": { + "#": 4258 + }, + "density": 0.001, + "force": { + "#": 4259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 203, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4260 + }, + "positionImpulse": { + "#": 4261 + }, + "positionPrev": { + "#": 4262 + }, + "render": { + "#": 4263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4265 + }, + "vertices": { + "#": 4266 + } + }, + [ + { + "#": 4252 + }, + { + "#": 4253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4255 + }, + "min": { + "#": 4256 + } + }, + { + "x": 125, + "y": 470 + }, + { + "x": 90, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 452.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4264 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4272 + }, + "bounds": { + "#": 4275 + }, + "collisionFilter": { + "#": 4278 + }, + "constraintImpulse": { + "#": 4279 + }, + "density": 0.001, + "force": { + "#": 4280 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 204, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4281 + }, + "positionImpulse": { + "#": 4282 + }, + "positionPrev": { + "#": 4283 + }, + "render": { + "#": 4284 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4286 + }, + "vertices": { + "#": 4287 + } + }, + [ + { + "#": 4273 + }, + { + "#": 4274 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4276 + }, + "min": { + "#": 4277 + } + }, + { + "x": 160, + "y": 470 + }, + { + "x": 125, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 452.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4285 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4293 + }, + "bounds": { + "#": 4296 + }, + "collisionFilter": { + "#": 4299 + }, + "constraintImpulse": { + "#": 4300 + }, + "density": 0.001, + "force": { + "#": 4301 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 205, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4302 + }, + "positionImpulse": { + "#": 4303 + }, + "positionPrev": { + "#": 4304 + }, + "render": { + "#": 4305 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4307 + }, + "vertices": { + "#": 4308 + } + }, + [ + { + "#": 4294 + }, + { + "#": 4295 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4297 + }, + "min": { + "#": 4298 + } + }, + { + "x": 195, + "y": 470 + }, + { + "x": 160, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 452.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4306 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4314 + }, + "bounds": { + "#": 4317 + }, + "collisionFilter": { + "#": 4320 + }, + "constraintImpulse": { + "#": 4321 + }, + "density": 0.001, + "force": { + "#": 4322 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 206, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4323 + }, + "positionImpulse": { + "#": 4324 + }, + "positionPrev": { + "#": 4325 + }, + "render": { + "#": 4326 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4328 + }, + "vertices": { + "#": 4329 + } + }, + [ + { + "#": 4315 + }, + { + "#": 4316 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4318 + }, + "min": { + "#": 4319 + } + }, + { + "x": 230, + "y": 470 + }, + { + "x": 195, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 452.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4327 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4335 + }, + "bounds": { + "#": 4338 + }, + "collisionFilter": { + "#": 4341 + }, + "constraintImpulse": { + "#": 4342 + }, + "density": 0.001, + "force": { + "#": 4343 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 207, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4344 + }, + "positionImpulse": { + "#": 4345 + }, + "positionPrev": { + "#": 4346 + }, + "render": { + "#": 4347 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4349 + }, + "vertices": { + "#": 4350 + } + }, + [ + { + "#": 4336 + }, + { + "#": 4337 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4339 + }, + "min": { + "#": 4340 + } + }, + { + "x": 265, + "y": 470 + }, + { + "x": 230, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 452.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4348 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4351 + }, + { + "#": 4352 + }, + { + "#": 4353 + }, + { + "#": 4354 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4356 + }, + "bounds": { + "#": 4359 + }, + "collisionFilter": { + "#": 4362 + }, + "constraintImpulse": { + "#": 4363 + }, + "density": 0.001, + "force": { + "#": 4364 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 208, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4365 + }, + "positionImpulse": { + "#": 4366 + }, + "positionPrev": { + "#": 4367 + }, + "render": { + "#": 4368 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4370 + }, + "vertices": { + "#": 4371 + } + }, + [ + { + "#": 4357 + }, + { + "#": 4358 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4360 + }, + "min": { + "#": 4361 + } + }, + { + "x": 300, + "y": 470 + }, + { + "x": 265, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 452.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4369 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4372 + }, + { + "#": 4373 + }, + { + "#": 4374 + }, + { + "#": 4375 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4377 + }, + "bounds": { + "#": 4380 + }, + "collisionFilter": { + "#": 4383 + }, + "constraintImpulse": { + "#": 4384 + }, + "density": 0.001, + "force": { + "#": 4385 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 209, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4386 + }, + "positionImpulse": { + "#": 4387 + }, + "positionPrev": { + "#": 4388 + }, + "render": { + "#": 4389 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4391 + }, + "vertices": { + "#": 4392 + } + }, + [ + { + "#": 4378 + }, + { + "#": 4379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4381 + }, + "min": { + "#": 4382 + } + }, + { + "x": 335, + "y": 470 + }, + { + "x": 300, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 452.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4390 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4398 + }, + "bounds": { + "#": 4401 + }, + "collisionFilter": { + "#": 4404 + }, + "constraintImpulse": { + "#": 4405 + }, + "density": 0.001, + "force": { + "#": 4406 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 210, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4407 + }, + "positionImpulse": { + "#": 4408 + }, + "positionPrev": { + "#": 4409 + }, + "render": { + "#": 4410 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4412 + }, + "vertices": { + "#": 4413 + } + }, + [ + { + "#": 4399 + }, + { + "#": 4400 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4402 + }, + "min": { + "#": 4403 + } + }, + { + "x": 370, + "y": 470 + }, + { + "x": 335, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 452.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4411 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4419 + }, + "bounds": { + "#": 4422 + }, + "collisionFilter": { + "#": 4425 + }, + "constraintImpulse": { + "#": 4426 + }, + "density": 0.001, + "force": { + "#": 4427 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 211, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4428 + }, + "positionImpulse": { + "#": 4429 + }, + "positionPrev": { + "#": 4430 + }, + "render": { + "#": 4431 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4433 + }, + "vertices": { + "#": 4434 + } + }, + [ + { + "#": 4420 + }, + { + "#": 4421 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4423 + }, + "min": { + "#": 4424 + } + }, + { + "x": 405, + "y": 470 + }, + { + "x": 370, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 452.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4432 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4435 + }, + { + "#": 4436 + }, + { + "#": 4437 + }, + { + "#": 4438 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4440 + }, + "bounds": { + "#": 4443 + }, + "collisionFilter": { + "#": 4446 + }, + "constraintImpulse": { + "#": 4447 + }, + "density": 0.001, + "force": { + "#": 4448 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 212, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4449 + }, + "positionImpulse": { + "#": 4450 + }, + "positionPrev": { + "#": 4451 + }, + "render": { + "#": 4452 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4454 + }, + "vertices": { + "#": 4455 + } + }, + [ + { + "#": 4441 + }, + { + "#": 4442 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4444 + }, + "min": { + "#": 4445 + } + }, + { + "x": 440, + "y": 470 + }, + { + "x": 405, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 452.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4453 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4456 + }, + { + "#": 4457 + }, + { + "#": 4458 + }, + { + "#": 4459 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4461 + }, + "bounds": { + "#": 4464 + }, + "collisionFilter": { + "#": 4467 + }, + "constraintImpulse": { + "#": 4468 + }, + "density": 0.001, + "force": { + "#": 4469 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 213, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4470 + }, + "positionImpulse": { + "#": 4471 + }, + "positionPrev": { + "#": 4472 + }, + "render": { + "#": 4473 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4475 + }, + "vertices": { + "#": 4476 + } + }, + [ + { + "#": 4462 + }, + { + "#": 4463 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4465 + }, + "min": { + "#": 4466 + } + }, + { + "x": 475, + "y": 470 + }, + { + "x": 440, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 452.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4474 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + }, + { + "#": 4480 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4482 + }, + "bounds": { + "#": 4485 + }, + "collisionFilter": { + "#": 4488 + }, + "constraintImpulse": { + "#": 4489 + }, + "density": 0.001, + "force": { + "#": 4490 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 214, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4491 + }, + "positionImpulse": { + "#": 4492 + }, + "positionPrev": { + "#": 4493 + }, + "render": { + "#": 4494 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4496 + }, + "vertices": { + "#": 4497 + } + }, + [ + { + "#": 4483 + }, + { + "#": 4484 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4486 + }, + "min": { + "#": 4487 + } + }, + { + "x": 510, + "y": 470 + }, + { + "x": 475, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 452.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4495 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + }, + { + "#": 4501 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4503 + }, + "bounds": { + "#": 4506 + }, + "collisionFilter": { + "#": 4509 + }, + "constraintImpulse": { + "#": 4510 + }, + "density": 0.001, + "force": { + "#": 4511 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 215, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4512 + }, + "positionImpulse": { + "#": 4513 + }, + "positionPrev": { + "#": 4514 + }, + "render": { + "#": 4515 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4517 + }, + "vertices": { + "#": 4518 + } + }, + [ + { + "#": 4504 + }, + { + "#": 4505 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4507 + }, + "min": { + "#": 4508 + } + }, + { + "x": 545, + "y": 470 + }, + { + "x": 510, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 452.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4516 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4524 + }, + "bounds": { + "#": 4527 + }, + "collisionFilter": { + "#": 4530 + }, + "constraintImpulse": { + "#": 4531 + }, + "density": 0.001, + "force": { + "#": 4532 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 216, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4533 + }, + "positionImpulse": { + "#": 4534 + }, + "positionPrev": { + "#": 4535 + }, + "render": { + "#": 4536 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4538 + }, + "vertices": { + "#": 4539 + } + }, + [ + { + "#": 4525 + }, + { + "#": 4526 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4528 + }, + "min": { + "#": 4529 + } + }, + { + "x": 580, + "y": 470 + }, + { + "x": 545, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 452.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4537 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4545 + }, + "bounds": { + "#": 4548 + }, + "collisionFilter": { + "#": 4551 + }, + "constraintImpulse": { + "#": 4552 + }, + "density": 0.001, + "force": { + "#": 4553 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 217, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4554 + }, + "positionImpulse": { + "#": 4555 + }, + "positionPrev": { + "#": 4556 + }, + "render": { + "#": 4557 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4559 + }, + "vertices": { + "#": 4560 + } + }, + [ + { + "#": 4546 + }, + { + "#": 4547 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4549 + }, + "min": { + "#": 4550 + } + }, + { + "x": 615, + "y": 470 + }, + { + "x": 580, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 452.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4558 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4561 + }, + { + "#": 4562 + }, + { + "#": 4563 + }, + { + "#": 4564 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4566 + }, + "bounds": { + "#": 4569 + }, + "collisionFilter": { + "#": 4572 + }, + "constraintImpulse": { + "#": 4573 + }, + "density": 0.001, + "force": { + "#": 4574 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 218, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4575 + }, + "positionImpulse": { + "#": 4576 + }, + "positionPrev": { + "#": 4577 + }, + "render": { + "#": 4578 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4580 + }, + "vertices": { + "#": 4581 + } + }, + [ + { + "#": 4567 + }, + { + "#": 4568 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4570 + }, + "min": { + "#": 4571 + } + }, + { + "x": 650, + "y": 470 + }, + { + "x": 615, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 452.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4579 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4582 + }, + { + "#": 4583 + }, + { + "#": 4584 + }, + { + "#": 4585 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4587 + }, + "bounds": { + "#": 4590 + }, + "collisionFilter": { + "#": 4593 + }, + "constraintImpulse": { + "#": 4594 + }, + "density": 0.001, + "force": { + "#": 4595 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 219, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4596 + }, + "positionImpulse": { + "#": 4597 + }, + "positionPrev": { + "#": 4598 + }, + "render": { + "#": 4599 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4601 + }, + "vertices": { + "#": 4602 + } + }, + [ + { + "#": 4588 + }, + { + "#": 4589 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4591 + }, + "min": { + "#": 4592 + } + }, + { + "x": 685, + "y": 470 + }, + { + "x": 650, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 452.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4600 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + }, + { + "#": 4606 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4608 + }, + "bounds": { + "#": 4611 + }, + "collisionFilter": { + "#": 4614 + }, + "constraintImpulse": { + "#": 4615 + }, + "density": 0.001, + "force": { + "#": 4616 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 220, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4617 + }, + "positionImpulse": { + "#": 4618 + }, + "positionPrev": { + "#": 4619 + }, + "render": { + "#": 4620 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4622 + }, + "vertices": { + "#": 4623 + } + }, + [ + { + "#": 4609 + }, + { + "#": 4610 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4612 + }, + "min": { + "#": 4613 + } + }, + { + "x": 720, + "y": 470 + }, + { + "x": 685, + "y": 435 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 452.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4621 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4624 + }, + { + "#": 4625 + }, + { + "#": 4626 + }, + { + "#": 4627 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 435 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 435 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4629 + }, + "bounds": { + "#": 4632 + }, + "collisionFilter": { + "#": 4635 + }, + "constraintImpulse": { + "#": 4636 + }, + "density": 0.001, + "force": { + "#": 4637 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 221, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4638 + }, + "positionImpulse": { + "#": 4639 + }, + "positionPrev": { + "#": 4640 + }, + "render": { + "#": 4641 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4643 + }, + "vertices": { + "#": 4644 + } + }, + [ + { + "#": 4630 + }, + { + "#": 4631 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4633 + }, + "min": { + "#": 4634 + } + }, + { + "x": 125, + "y": 505 + }, + { + "x": 90, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 487.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4642 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4645 + }, + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4650 + }, + "bounds": { + "#": 4653 + }, + "collisionFilter": { + "#": 4656 + }, + "constraintImpulse": { + "#": 4657 + }, + "density": 0.001, + "force": { + "#": 4658 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 222, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4659 + }, + "positionImpulse": { + "#": 4660 + }, + "positionPrev": { + "#": 4661 + }, + "render": { + "#": 4662 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4664 + }, + "vertices": { + "#": 4665 + } + }, + [ + { + "#": 4651 + }, + { + "#": 4652 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4654 + }, + "min": { + "#": 4655 + } + }, + { + "x": 160, + "y": 505 + }, + { + "x": 125, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 487.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4663 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4666 + }, + { + "#": 4667 + }, + { + "#": 4668 + }, + { + "#": 4669 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4671 + }, + "bounds": { + "#": 4674 + }, + "collisionFilter": { + "#": 4677 + }, + "constraintImpulse": { + "#": 4678 + }, + "density": 0.001, + "force": { + "#": 4679 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 223, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4680 + }, + "positionImpulse": { + "#": 4681 + }, + "positionPrev": { + "#": 4682 + }, + "render": { + "#": 4683 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4685 + }, + "vertices": { + "#": 4686 + } + }, + [ + { + "#": 4672 + }, + { + "#": 4673 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4675 + }, + "min": { + "#": 4676 + } + }, + { + "x": 195, + "y": 505 + }, + { + "x": 160, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 487.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4684 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + }, + { + "#": 4690 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4692 + }, + "bounds": { + "#": 4695 + }, + "collisionFilter": { + "#": 4698 + }, + "constraintImpulse": { + "#": 4699 + }, + "density": 0.001, + "force": { + "#": 4700 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 224, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4701 + }, + "positionImpulse": { + "#": 4702 + }, + "positionPrev": { + "#": 4703 + }, + "render": { + "#": 4704 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4706 + }, + "vertices": { + "#": 4707 + } + }, + [ + { + "#": 4693 + }, + { + "#": 4694 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4696 + }, + "min": { + "#": 4697 + } + }, + { + "x": 230, + "y": 505 + }, + { + "x": 195, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 487.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4705 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4708 + }, + { + "#": 4709 + }, + { + "#": 4710 + }, + { + "#": 4711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4713 + }, + "bounds": { + "#": 4716 + }, + "collisionFilter": { + "#": 4719 + }, + "constraintImpulse": { + "#": 4720 + }, + "density": 0.001, + "force": { + "#": 4721 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 225, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4722 + }, + "positionImpulse": { + "#": 4723 + }, + "positionPrev": { + "#": 4724 + }, + "render": { + "#": 4725 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4727 + }, + "vertices": { + "#": 4728 + } + }, + [ + { + "#": 4714 + }, + { + "#": 4715 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4717 + }, + "min": { + "#": 4718 + } + }, + { + "x": 265, + "y": 505 + }, + { + "x": 230, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 487.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4726 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4734 + }, + "bounds": { + "#": 4737 + }, + "collisionFilter": { + "#": 4740 + }, + "constraintImpulse": { + "#": 4741 + }, + "density": 0.001, + "force": { + "#": 4742 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 226, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4743 + }, + "positionImpulse": { + "#": 4744 + }, + "positionPrev": { + "#": 4745 + }, + "render": { + "#": 4746 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4748 + }, + "vertices": { + "#": 4749 + } + }, + [ + { + "#": 4735 + }, + { + "#": 4736 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4738 + }, + "min": { + "#": 4739 + } + }, + { + "x": 300, + "y": 505 + }, + { + "x": 265, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 487.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4747 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4750 + }, + { + "#": 4751 + }, + { + "#": 4752 + }, + { + "#": 4753 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4755 + }, + "bounds": { + "#": 4758 + }, + "collisionFilter": { + "#": 4761 + }, + "constraintImpulse": { + "#": 4762 + }, + "density": 0.001, + "force": { + "#": 4763 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 227, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4764 + }, + "positionImpulse": { + "#": 4765 + }, + "positionPrev": { + "#": 4766 + }, + "render": { + "#": 4767 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4769 + }, + "vertices": { + "#": 4770 + } + }, + [ + { + "#": 4756 + }, + { + "#": 4757 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4759 + }, + "min": { + "#": 4760 + } + }, + { + "x": 335, + "y": 505 + }, + { + "x": 300, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 487.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4768 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + }, + { + "#": 4774 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4776 + }, + "bounds": { + "#": 4779 + }, + "collisionFilter": { + "#": 4782 + }, + "constraintImpulse": { + "#": 4783 + }, + "density": 0.001, + "force": { + "#": 4784 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 228, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4785 + }, + "positionImpulse": { + "#": 4786 + }, + "positionPrev": { + "#": 4787 + }, + "render": { + "#": 4788 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4790 + }, + "vertices": { + "#": 4791 + } + }, + [ + { + "#": 4777 + }, + { + "#": 4778 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4780 + }, + "min": { + "#": 4781 + } + }, + { + "x": 370, + "y": 505 + }, + { + "x": 335, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 487.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4789 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4792 + }, + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4797 + }, + "bounds": { + "#": 4800 + }, + "collisionFilter": { + "#": 4803 + }, + "constraintImpulse": { + "#": 4804 + }, + "density": 0.001, + "force": { + "#": 4805 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 229, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4806 + }, + "positionImpulse": { + "#": 4807 + }, + "positionPrev": { + "#": 4808 + }, + "render": { + "#": 4809 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4811 + }, + "vertices": { + "#": 4812 + } + }, + [ + { + "#": 4798 + }, + { + "#": 4799 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4801 + }, + "min": { + "#": 4802 + } + }, + { + "x": 405, + "y": 505 + }, + { + "x": 370, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 487.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4810 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4813 + }, + { + "#": 4814 + }, + { + "#": 4815 + }, + { + "#": 4816 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4818 + }, + "bounds": { + "#": 4821 + }, + "collisionFilter": { + "#": 4824 + }, + "constraintImpulse": { + "#": 4825 + }, + "density": 0.001, + "force": { + "#": 4826 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 230, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4827 + }, + "positionImpulse": { + "#": 4828 + }, + "positionPrev": { + "#": 4829 + }, + "render": { + "#": 4830 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4832 + }, + "vertices": { + "#": 4833 + } + }, + [ + { + "#": 4819 + }, + { + "#": 4820 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4822 + }, + "min": { + "#": 4823 + } + }, + { + "x": 440, + "y": 505 + }, + { + "x": 405, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 487.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4831 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4834 + }, + { + "#": 4835 + }, + { + "#": 4836 + }, + { + "#": 4837 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4839 + }, + "bounds": { + "#": 4842 + }, + "collisionFilter": { + "#": 4845 + }, + "constraintImpulse": { + "#": 4846 + }, + "density": 0.001, + "force": { + "#": 4847 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 231, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4848 + }, + "positionImpulse": { + "#": 4849 + }, + "positionPrev": { + "#": 4850 + }, + "render": { + "#": 4851 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4853 + }, + "vertices": { + "#": 4854 + } + }, + [ + { + "#": 4840 + }, + { + "#": 4841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4843 + }, + "min": { + "#": 4844 + } + }, + { + "x": 475, + "y": 505 + }, + { + "x": 440, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 487.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4852 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4855 + }, + { + "#": 4856 + }, + { + "#": 4857 + }, + { + "#": 4858 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4860 + }, + "bounds": { + "#": 4863 + }, + "collisionFilter": { + "#": 4866 + }, + "constraintImpulse": { + "#": 4867 + }, + "density": 0.001, + "force": { + "#": 4868 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 232, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4869 + }, + "positionImpulse": { + "#": 4870 + }, + "positionPrev": { + "#": 4871 + }, + "render": { + "#": 4872 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4874 + }, + "vertices": { + "#": 4875 + } + }, + [ + { + "#": 4861 + }, + { + "#": 4862 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4864 + }, + "min": { + "#": 4865 + } + }, + { + "x": 510, + "y": 505 + }, + { + "x": 475, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 487.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4873 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4876 + }, + { + "#": 4877 + }, + { + "#": 4878 + }, + { + "#": 4879 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4881 + }, + "bounds": { + "#": 4884 + }, + "collisionFilter": { + "#": 4887 + }, + "constraintImpulse": { + "#": 4888 + }, + "density": 0.001, + "force": { + "#": 4889 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 233, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4890 + }, + "positionImpulse": { + "#": 4891 + }, + "positionPrev": { + "#": 4892 + }, + "render": { + "#": 4893 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4895 + }, + "vertices": { + "#": 4896 + } + }, + [ + { + "#": 4882 + }, + { + "#": 4883 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4885 + }, + "min": { + "#": 4886 + } + }, + { + "x": 545, + "y": 505 + }, + { + "x": 510, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 487.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4894 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4897 + }, + { + "#": 4898 + }, + { + "#": 4899 + }, + { + "#": 4900 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4902 + }, + "bounds": { + "#": 4905 + }, + "collisionFilter": { + "#": 4908 + }, + "constraintImpulse": { + "#": 4909 + }, + "density": 0.001, + "force": { + "#": 4910 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 234, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4911 + }, + "positionImpulse": { + "#": 4912 + }, + "positionPrev": { + "#": 4913 + }, + "render": { + "#": 4914 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4916 + }, + "vertices": { + "#": 4917 + } + }, + [ + { + "#": 4903 + }, + { + "#": 4904 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4906 + }, + "min": { + "#": 4907 + } + }, + { + "x": 580, + "y": 505 + }, + { + "x": 545, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 487.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4915 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4918 + }, + { + "#": 4919 + }, + { + "#": 4920 + }, + { + "#": 4921 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4923 + }, + "bounds": { + "#": 4926 + }, + "collisionFilter": { + "#": 4929 + }, + "constraintImpulse": { + "#": 4930 + }, + "density": 0.001, + "force": { + "#": 4931 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 235, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4932 + }, + "positionImpulse": { + "#": 4933 + }, + "positionPrev": { + "#": 4934 + }, + "render": { + "#": 4935 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4937 + }, + "vertices": { + "#": 4938 + } + }, + [ + { + "#": 4924 + }, + { + "#": 4925 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4927 + }, + "min": { + "#": 4928 + } + }, + { + "x": 615, + "y": 505 + }, + { + "x": 580, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 487.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4936 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4939 + }, + { + "#": 4940 + }, + { + "#": 4941 + }, + { + "#": 4942 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4944 + }, + "bounds": { + "#": 4947 + }, + "collisionFilter": { + "#": 4950 + }, + "constraintImpulse": { + "#": 4951 + }, + "density": 0.001, + "force": { + "#": 4952 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 236, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4953 + }, + "positionImpulse": { + "#": 4954 + }, + "positionPrev": { + "#": 4955 + }, + "render": { + "#": 4956 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4958 + }, + "vertices": { + "#": 4959 + } + }, + [ + { + "#": 4945 + }, + { + "#": 4946 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4948 + }, + "min": { + "#": 4949 + } + }, + { + "x": 650, + "y": 505 + }, + { + "x": 615, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 487.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4957 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4960 + }, + { + "#": 4961 + }, + { + "#": 4962 + }, + { + "#": 4963 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4965 + }, + "bounds": { + "#": 4968 + }, + "collisionFilter": { + "#": 4971 + }, + "constraintImpulse": { + "#": 4972 + }, + "density": 0.001, + "force": { + "#": 4973 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 237, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4974 + }, + "positionImpulse": { + "#": 4975 + }, + "positionPrev": { + "#": 4976 + }, + "render": { + "#": 4977 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4979 + }, + "vertices": { + "#": 4980 + } + }, + [ + { + "#": 4966 + }, + { + "#": 4967 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4969 + }, + "min": { + "#": 4970 + } + }, + { + "x": 685, + "y": 505 + }, + { + "x": 650, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 487.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4978 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4986 + }, + "bounds": { + "#": 4989 + }, + "collisionFilter": { + "#": 4992 + }, + "constraintImpulse": { + "#": 4993 + }, + "density": 0.001, + "force": { + "#": 4994 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 238, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4995 + }, + "positionImpulse": { + "#": 4996 + }, + "positionPrev": { + "#": 4997 + }, + "render": { + "#": 4998 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5000 + }, + "vertices": { + "#": 5001 + } + }, + [ + { + "#": 4987 + }, + { + "#": 4988 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4990 + }, + "min": { + "#": 4991 + } + }, + { + "x": 720, + "y": 505 + }, + { + "x": 685, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 487.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4999 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5002 + }, + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 505 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 505 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5007 + }, + "bounds": { + "#": 5010 + }, + "collisionFilter": { + "#": 5013 + }, + "constraintImpulse": { + "#": 5014 + }, + "density": 0.001, + "force": { + "#": 5015 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 239, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5016 + }, + "positionImpulse": { + "#": 5017 + }, + "positionPrev": { + "#": 5018 + }, + "render": { + "#": 5019 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5021 + }, + "vertices": { + "#": 5022 + } + }, + [ + { + "#": 5008 + }, + { + "#": 5009 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5011 + }, + "min": { + "#": 5012 + } + }, + { + "x": 125, + "y": 540 + }, + { + "x": 90, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 522.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5020 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5023 + }, + { + "#": 5024 + }, + { + "#": 5025 + }, + { + "#": 5026 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5028 + }, + "bounds": { + "#": 5031 + }, + "collisionFilter": { + "#": 5034 + }, + "constraintImpulse": { + "#": 5035 + }, + "density": 0.001, + "force": { + "#": 5036 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 240, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5037 + }, + "positionImpulse": { + "#": 5038 + }, + "positionPrev": { + "#": 5039 + }, + "render": { + "#": 5040 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5042 + }, + "vertices": { + "#": 5043 + } + }, + [ + { + "#": 5029 + }, + { + "#": 5030 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5032 + }, + "min": { + "#": 5033 + } + }, + { + "x": 160, + "y": 540 + }, + { + "x": 125, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 522.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5041 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5044 + }, + { + "#": 5045 + }, + { + "#": 5046 + }, + { + "#": 5047 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5049 + }, + "bounds": { + "#": 5052 + }, + "collisionFilter": { + "#": 5055 + }, + "constraintImpulse": { + "#": 5056 + }, + "density": 0.001, + "force": { + "#": 5057 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 241, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5058 + }, + "positionImpulse": { + "#": 5059 + }, + "positionPrev": { + "#": 5060 + }, + "render": { + "#": 5061 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5063 + }, + "vertices": { + "#": 5064 + } + }, + [ + { + "#": 5050 + }, + { + "#": 5051 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5053 + }, + "min": { + "#": 5054 + } + }, + { + "x": 195, + "y": 540 + }, + { + "x": 160, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 522.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5062 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5065 + }, + { + "#": 5066 + }, + { + "#": 5067 + }, + { + "#": 5068 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5070 + }, + "bounds": { + "#": 5073 + }, + "collisionFilter": { + "#": 5076 + }, + "constraintImpulse": { + "#": 5077 + }, + "density": 0.001, + "force": { + "#": 5078 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 242, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5079 + }, + "positionImpulse": { + "#": 5080 + }, + "positionPrev": { + "#": 5081 + }, + "render": { + "#": 5082 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5084 + }, + "vertices": { + "#": 5085 + } + }, + [ + { + "#": 5071 + }, + { + "#": 5072 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5074 + }, + "min": { + "#": 5075 + } + }, + { + "x": 230, + "y": 540 + }, + { + "x": 195, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 522.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5083 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + }, + { + "#": 5088 + }, + { + "#": 5089 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5091 + }, + "bounds": { + "#": 5094 + }, + "collisionFilter": { + "#": 5097 + }, + "constraintImpulse": { + "#": 5098 + }, + "density": 0.001, + "force": { + "#": 5099 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 243, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5100 + }, + "positionImpulse": { + "#": 5101 + }, + "positionPrev": { + "#": 5102 + }, + "render": { + "#": 5103 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5105 + }, + "vertices": { + "#": 5106 + } + }, + [ + { + "#": 5092 + }, + { + "#": 5093 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5095 + }, + "min": { + "#": 5096 + } + }, + { + "x": 265, + "y": 540 + }, + { + "x": 230, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 522.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5104 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5107 + }, + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5112 + }, + "bounds": { + "#": 5115 + }, + "collisionFilter": { + "#": 5118 + }, + "constraintImpulse": { + "#": 5119 + }, + "density": 0.001, + "force": { + "#": 5120 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 244, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5121 + }, + "positionImpulse": { + "#": 5122 + }, + "positionPrev": { + "#": 5123 + }, + "render": { + "#": 5124 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5126 + }, + "vertices": { + "#": 5127 + } + }, + [ + { + "#": 5113 + }, + { + "#": 5114 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5116 + }, + "min": { + "#": 5117 + } + }, + { + "x": 300, + "y": 540 + }, + { + "x": 265, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 522.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5125 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5128 + }, + { + "#": 5129 + }, + { + "#": 5130 + }, + { + "#": 5131 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5133 + }, + "bounds": { + "#": 5136 + }, + "collisionFilter": { + "#": 5139 + }, + "constraintImpulse": { + "#": 5140 + }, + "density": 0.001, + "force": { + "#": 5141 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 245, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5142 + }, + "positionImpulse": { + "#": 5143 + }, + "positionPrev": { + "#": 5144 + }, + "render": { + "#": 5145 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5147 + }, + "vertices": { + "#": 5148 + } + }, + [ + { + "#": 5134 + }, + { + "#": 5135 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5137 + }, + "min": { + "#": 5138 + } + }, + { + "x": 335, + "y": 540 + }, + { + "x": 300, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 522.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5146 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5149 + }, + { + "#": 5150 + }, + { + "#": 5151 + }, + { + "#": 5152 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5154 + }, + "bounds": { + "#": 5157 + }, + "collisionFilter": { + "#": 5160 + }, + "constraintImpulse": { + "#": 5161 + }, + "density": 0.001, + "force": { + "#": 5162 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 246, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5163 + }, + "positionImpulse": { + "#": 5164 + }, + "positionPrev": { + "#": 5165 + }, + "render": { + "#": 5166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5168 + }, + "vertices": { + "#": 5169 + } + }, + [ + { + "#": 5155 + }, + { + "#": 5156 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5158 + }, + "min": { + "#": 5159 + } + }, + { + "x": 370, + "y": 540 + }, + { + "x": 335, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 522.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5167 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5170 + }, + { + "#": 5171 + }, + { + "#": 5172 + }, + { + "#": 5173 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5175 + }, + "bounds": { + "#": 5178 + }, + "collisionFilter": { + "#": 5181 + }, + "constraintImpulse": { + "#": 5182 + }, + "density": 0.001, + "force": { + "#": 5183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 247, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5184 + }, + "positionImpulse": { + "#": 5185 + }, + "positionPrev": { + "#": 5186 + }, + "render": { + "#": 5187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5189 + }, + "vertices": { + "#": 5190 + } + }, + [ + { + "#": 5176 + }, + { + "#": 5177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5179 + }, + "min": { + "#": 5180 + } + }, + { + "x": 405, + "y": 540 + }, + { + "x": 370, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 522.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5188 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5191 + }, + { + "#": 5192 + }, + { + "#": 5193 + }, + { + "#": 5194 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5196 + }, + "bounds": { + "#": 5199 + }, + "collisionFilter": { + "#": 5202 + }, + "constraintImpulse": { + "#": 5203 + }, + "density": 0.001, + "force": { + "#": 5204 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 248, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5205 + }, + "positionImpulse": { + "#": 5206 + }, + "positionPrev": { + "#": 5207 + }, + "render": { + "#": 5208 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5210 + }, + "vertices": { + "#": 5211 + } + }, + [ + { + "#": 5197 + }, + { + "#": 5198 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5200 + }, + "min": { + "#": 5201 + } + }, + { + "x": 440, + "y": 540 + }, + { + "x": 405, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 522.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5209 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5212 + }, + { + "#": 5213 + }, + { + "#": 5214 + }, + { + "#": 5215 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5217 + }, + "bounds": { + "#": 5220 + }, + "collisionFilter": { + "#": 5223 + }, + "constraintImpulse": { + "#": 5224 + }, + "density": 0.001, + "force": { + "#": 5225 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 249, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5226 + }, + "positionImpulse": { + "#": 5227 + }, + "positionPrev": { + "#": 5228 + }, + "render": { + "#": 5229 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5231 + }, + "vertices": { + "#": 5232 + } + }, + [ + { + "#": 5218 + }, + { + "#": 5219 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5221 + }, + "min": { + "#": 5222 + } + }, + { + "x": 475, + "y": 540 + }, + { + "x": 440, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 522.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5230 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5233 + }, + { + "#": 5234 + }, + { + "#": 5235 + }, + { + "#": 5236 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5238 + }, + "bounds": { + "#": 5241 + }, + "collisionFilter": { + "#": 5244 + }, + "constraintImpulse": { + "#": 5245 + }, + "density": 0.001, + "force": { + "#": 5246 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 250, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5247 + }, + "positionImpulse": { + "#": 5248 + }, + "positionPrev": { + "#": 5249 + }, + "render": { + "#": 5250 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5252 + }, + "vertices": { + "#": 5253 + } + }, + [ + { + "#": 5239 + }, + { + "#": 5240 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5242 + }, + "min": { + "#": 5243 + } + }, + { + "x": 510, + "y": 540 + }, + { + "x": 475, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 522.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5251 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + }, + { + "#": 5257 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5259 + }, + "bounds": { + "#": 5262 + }, + "collisionFilter": { + "#": 5265 + }, + "constraintImpulse": { + "#": 5266 + }, + "density": 0.001, + "force": { + "#": 5267 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 251, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5268 + }, + "positionImpulse": { + "#": 5269 + }, + "positionPrev": { + "#": 5270 + }, + "render": { + "#": 5271 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5273 + }, + "vertices": { + "#": 5274 + } + }, + [ + { + "#": 5260 + }, + { + "#": 5261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5263 + }, + "min": { + "#": 5264 + } + }, + { + "x": 545, + "y": 540 + }, + { + "x": 510, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 522.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5272 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5275 + }, + { + "#": 5276 + }, + { + "#": 5277 + }, + { + "#": 5278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5280 + }, + "bounds": { + "#": 5283 + }, + "collisionFilter": { + "#": 5286 + }, + "constraintImpulse": { + "#": 5287 + }, + "density": 0.001, + "force": { + "#": 5288 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 252, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5289 + }, + "positionImpulse": { + "#": 5290 + }, + "positionPrev": { + "#": 5291 + }, + "render": { + "#": 5292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5294 + }, + "vertices": { + "#": 5295 + } + }, + [ + { + "#": 5281 + }, + { + "#": 5282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5284 + }, + "min": { + "#": 5285 + } + }, + { + "x": 580, + "y": 540 + }, + { + "x": 545, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 522.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5293 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5296 + }, + { + "#": 5297 + }, + { + "#": 5298 + }, + { + "#": 5299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5301 + }, + "bounds": { + "#": 5304 + }, + "collisionFilter": { + "#": 5307 + }, + "constraintImpulse": { + "#": 5308 + }, + "density": 0.001, + "force": { + "#": 5309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 253, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5310 + }, + "positionImpulse": { + "#": 5311 + }, + "positionPrev": { + "#": 5312 + }, + "render": { + "#": 5313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5315 + }, + "vertices": { + "#": 5316 + } + }, + [ + { + "#": 5302 + }, + { + "#": 5303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5305 + }, + "min": { + "#": 5306 + } + }, + { + "x": 615, + "y": 540 + }, + { + "x": 580, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 522.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5314 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5317 + }, + { + "#": 5318 + }, + { + "#": 5319 + }, + { + "#": 5320 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5322 + }, + "bounds": { + "#": 5325 + }, + "collisionFilter": { + "#": 5328 + }, + "constraintImpulse": { + "#": 5329 + }, + "density": 0.001, + "force": { + "#": 5330 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 254, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5331 + }, + "positionImpulse": { + "#": 5332 + }, + "positionPrev": { + "#": 5333 + }, + "render": { + "#": 5334 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5336 + }, + "vertices": { + "#": 5337 + } + }, + [ + { + "#": 5323 + }, + { + "#": 5324 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5326 + }, + "min": { + "#": 5327 + } + }, + { + "x": 650, + "y": 540 + }, + { + "x": 615, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 522.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5335 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5338 + }, + { + "#": 5339 + }, + { + "#": 5340 + }, + { + "#": 5341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5343 + }, + "bounds": { + "#": 5346 + }, + "collisionFilter": { + "#": 5349 + }, + "constraintImpulse": { + "#": 5350 + }, + "density": 0.001, + "force": { + "#": 5351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 255, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5352 + }, + "positionImpulse": { + "#": 5353 + }, + "positionPrev": { + "#": 5354 + }, + "render": { + "#": 5355 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5357 + }, + "vertices": { + "#": 5358 + } + }, + [ + { + "#": 5344 + }, + { + "#": 5345 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5347 + }, + "min": { + "#": 5348 + } + }, + { + "x": 685, + "y": 540 + }, + { + "x": 650, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 522.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5356 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5359 + }, + { + "#": 5360 + }, + { + "#": 5361 + }, + { + "#": 5362 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5364 + }, + "bounds": { + "#": 5367 + }, + "collisionFilter": { + "#": 5370 + }, + "constraintImpulse": { + "#": 5371 + }, + "density": 0.001, + "force": { + "#": 5372 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 256, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5373 + }, + "positionImpulse": { + "#": 5374 + }, + "positionPrev": { + "#": 5375 + }, + "render": { + "#": 5376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5378 + }, + "vertices": { + "#": 5379 + } + }, + [ + { + "#": 5365 + }, + { + "#": 5366 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5368 + }, + "min": { + "#": 5369 + } + }, + { + "x": 720, + "y": 540 + }, + { + "x": 685, + "y": 505 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 522.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5377 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5380 + }, + { + "#": 5381 + }, + { + "#": 5382 + }, + { + "#": 5383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 505 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 505 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 540 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 540 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5385 + }, + "bounds": { + "#": 5388 + }, + "collisionFilter": { + "#": 5391 + }, + "constraintImpulse": { + "#": 5392 + }, + "density": 0.001, + "force": { + "#": 5393 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 257, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5394 + }, + "positionImpulse": { + "#": 5395 + }, + "positionPrev": { + "#": 5396 + }, + "render": { + "#": 5397 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5399 + }, + "vertices": { + "#": 5400 + } + }, + [ + { + "#": 5386 + }, + { + "#": 5387 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5389 + }, + "min": { + "#": 5390 + } + }, + { + "x": 125, + "y": 575 + }, + { + "x": 90, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5398 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5401 + }, + { + "#": 5402 + }, + { + "#": 5403 + }, + { + "#": 5404 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5406 + }, + "bounds": { + "#": 5409 + }, + "collisionFilter": { + "#": 5412 + }, + "constraintImpulse": { + "#": 5413 + }, + "density": 0.001, + "force": { + "#": 5414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 258, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5415 + }, + "positionImpulse": { + "#": 5416 + }, + "positionPrev": { + "#": 5417 + }, + "render": { + "#": 5418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5420 + }, + "vertices": { + "#": 5421 + } + }, + [ + { + "#": 5407 + }, + { + "#": 5408 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5410 + }, + "min": { + "#": 5411 + } + }, + { + "x": 160, + "y": 575 + }, + { + "x": 125, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 557.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5419 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5422 + }, + { + "#": 5423 + }, + { + "#": 5424 + }, + { + "#": 5425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5427 + }, + "bounds": { + "#": 5430 + }, + "collisionFilter": { + "#": 5433 + }, + "constraintImpulse": { + "#": 5434 + }, + "density": 0.001, + "force": { + "#": 5435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 259, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5436 + }, + "positionImpulse": { + "#": 5437 + }, + "positionPrev": { + "#": 5438 + }, + "render": { + "#": 5439 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5441 + }, + "vertices": { + "#": 5442 + } + }, + [ + { + "#": 5428 + }, + { + "#": 5429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5431 + }, + "min": { + "#": 5432 + } + }, + { + "x": 195, + "y": 575 + }, + { + "x": 160, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 557.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5440 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5443 + }, + { + "#": 5444 + }, + { + "#": 5445 + }, + { + "#": 5446 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5448 + }, + "bounds": { + "#": 5451 + }, + "collisionFilter": { + "#": 5454 + }, + "constraintImpulse": { + "#": 5455 + }, + "density": 0.001, + "force": { + "#": 5456 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 260, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5457 + }, + "positionImpulse": { + "#": 5458 + }, + "positionPrev": { + "#": 5459 + }, + "render": { + "#": 5460 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5462 + }, + "vertices": { + "#": 5463 + } + }, + [ + { + "#": 5449 + }, + { + "#": 5450 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5452 + }, + "min": { + "#": 5453 + } + }, + { + "x": 230, + "y": 575 + }, + { + "x": 195, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5461 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5464 + }, + { + "#": 5465 + }, + { + "#": 5466 + }, + { + "#": 5467 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5469 + }, + "bounds": { + "#": 5472 + }, + "collisionFilter": { + "#": 5475 + }, + "constraintImpulse": { + "#": 5476 + }, + "density": 0.001, + "force": { + "#": 5477 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 261, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5478 + }, + "positionImpulse": { + "#": 5479 + }, + "positionPrev": { + "#": 5480 + }, + "render": { + "#": 5481 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5483 + }, + "vertices": { + "#": 5484 + } + }, + [ + { + "#": 5470 + }, + { + "#": 5471 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5473 + }, + "min": { + "#": 5474 + } + }, + { + "x": 265, + "y": 575 + }, + { + "x": 230, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5482 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5485 + }, + { + "#": 5486 + }, + { + "#": 5487 + }, + { + "#": 5488 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5490 + }, + "bounds": { + "#": 5493 + }, + "collisionFilter": { + "#": 5496 + }, + "constraintImpulse": { + "#": 5497 + }, + "density": 0.001, + "force": { + "#": 5498 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 262, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5499 + }, + "positionImpulse": { + "#": 5500 + }, + "positionPrev": { + "#": 5501 + }, + "render": { + "#": 5502 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5504 + }, + "vertices": { + "#": 5505 + } + }, + [ + { + "#": 5491 + }, + { + "#": 5492 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5494 + }, + "min": { + "#": 5495 + } + }, + { + "x": 300, + "y": 575 + }, + { + "x": 265, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5503 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5506 + }, + { + "#": 5507 + }, + { + "#": 5508 + }, + { + "#": 5509 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5511 + }, + "bounds": { + "#": 5514 + }, + "collisionFilter": { + "#": 5517 + }, + "constraintImpulse": { + "#": 5518 + }, + "density": 0.001, + "force": { + "#": 5519 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 263, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5520 + }, + "positionImpulse": { + "#": 5521 + }, + "positionPrev": { + "#": 5522 + }, + "render": { + "#": 5523 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5525 + }, + "vertices": { + "#": 5526 + } + }, + [ + { + "#": 5512 + }, + { + "#": 5513 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5515 + }, + "min": { + "#": 5516 + } + }, + { + "x": 335, + "y": 575 + }, + { + "x": 300, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5524 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + }, + { + "#": 5530 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5532 + }, + "bounds": { + "#": 5535 + }, + "collisionFilter": { + "#": 5538 + }, + "constraintImpulse": { + "#": 5539 + }, + "density": 0.001, + "force": { + "#": 5540 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 264, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5541 + }, + "positionImpulse": { + "#": 5542 + }, + "positionPrev": { + "#": 5543 + }, + "render": { + "#": 5544 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5546 + }, + "vertices": { + "#": 5547 + } + }, + [ + { + "#": 5533 + }, + { + "#": 5534 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5536 + }, + "min": { + "#": 5537 + } + }, + { + "x": 370, + "y": 575 + }, + { + "x": 335, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5545 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5553 + }, + "bounds": { + "#": 5556 + }, + "collisionFilter": { + "#": 5559 + }, + "constraintImpulse": { + "#": 5560 + }, + "density": 0.001, + "force": { + "#": 5561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 265, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5562 + }, + "positionImpulse": { + "#": 5563 + }, + "positionPrev": { + "#": 5564 + }, + "render": { + "#": 5565 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5567 + }, + "vertices": { + "#": 5568 + } + }, + [ + { + "#": 5554 + }, + { + "#": 5555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5557 + }, + "min": { + "#": 5558 + } + }, + { + "x": 405, + "y": 575 + }, + { + "x": 370, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5566 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5569 + }, + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5574 + }, + "bounds": { + "#": 5577 + }, + "collisionFilter": { + "#": 5580 + }, + "constraintImpulse": { + "#": 5581 + }, + "density": 0.001, + "force": { + "#": 5582 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 266, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5583 + }, + "positionImpulse": { + "#": 5584 + }, + "positionPrev": { + "#": 5585 + }, + "render": { + "#": 5586 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5588 + }, + "vertices": { + "#": 5589 + } + }, + [ + { + "#": 5575 + }, + { + "#": 5576 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5578 + }, + "min": { + "#": 5579 + } + }, + { + "x": 440, + "y": 575 + }, + { + "x": 405, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5587 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5590 + }, + { + "#": 5591 + }, + { + "#": 5592 + }, + { + "#": 5593 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5595 + }, + "bounds": { + "#": 5598 + }, + "collisionFilter": { + "#": 5601 + }, + "constraintImpulse": { + "#": 5602 + }, + "density": 0.001, + "force": { + "#": 5603 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 267, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5604 + }, + "positionImpulse": { + "#": 5605 + }, + "positionPrev": { + "#": 5606 + }, + "render": { + "#": 5607 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5609 + }, + "vertices": { + "#": 5610 + } + }, + [ + { + "#": 5596 + }, + { + "#": 5597 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5599 + }, + "min": { + "#": 5600 + } + }, + { + "x": 475, + "y": 575 + }, + { + "x": 440, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5608 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5611 + }, + { + "#": 5612 + }, + { + "#": 5613 + }, + { + "#": 5614 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5616 + }, + "bounds": { + "#": 5619 + }, + "collisionFilter": { + "#": 5622 + }, + "constraintImpulse": { + "#": 5623 + }, + "density": 0.001, + "force": { + "#": 5624 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 268, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5625 + }, + "positionImpulse": { + "#": 5626 + }, + "positionPrev": { + "#": 5627 + }, + "render": { + "#": 5628 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5630 + }, + "vertices": { + "#": 5631 + } + }, + [ + { + "#": 5617 + }, + { + "#": 5618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5620 + }, + "min": { + "#": 5621 + } + }, + { + "x": 510, + "y": 575 + }, + { + "x": 475, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 557.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5629 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5632 + }, + { + "#": 5633 + }, + { + "#": 5634 + }, + { + "#": 5635 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5637 + }, + "bounds": { + "#": 5640 + }, + "collisionFilter": { + "#": 5643 + }, + "constraintImpulse": { + "#": 5644 + }, + "density": 0.001, + "force": { + "#": 5645 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 269, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5646 + }, + "positionImpulse": { + "#": 5647 + }, + "positionPrev": { + "#": 5648 + }, + "render": { + "#": 5649 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5651 + }, + "vertices": { + "#": 5652 + } + }, + [ + { + "#": 5638 + }, + { + "#": 5639 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5641 + }, + "min": { + "#": 5642 + } + }, + { + "x": 545, + "y": 575 + }, + { + "x": 510, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5650 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5653 + }, + { + "#": 5654 + }, + { + "#": 5655 + }, + { + "#": 5656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5658 + }, + "bounds": { + "#": 5661 + }, + "collisionFilter": { + "#": 5664 + }, + "constraintImpulse": { + "#": 5665 + }, + "density": 0.001, + "force": { + "#": 5666 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 270, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5667 + }, + "positionImpulse": { + "#": 5668 + }, + "positionPrev": { + "#": 5669 + }, + "render": { + "#": 5670 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5672 + }, + "vertices": { + "#": 5673 + } + }, + [ + { + "#": 5659 + }, + { + "#": 5660 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5662 + }, + "min": { + "#": 5663 + } + }, + { + "x": 580, + "y": 575 + }, + { + "x": 545, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5671 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5674 + }, + { + "#": 5675 + }, + { + "#": 5676 + }, + { + "#": 5677 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5679 + }, + "bounds": { + "#": 5682 + }, + "collisionFilter": { + "#": 5685 + }, + "constraintImpulse": { + "#": 5686 + }, + "density": 0.001, + "force": { + "#": 5687 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 271, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5688 + }, + "positionImpulse": { + "#": 5689 + }, + "positionPrev": { + "#": 5690 + }, + "render": { + "#": 5691 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5693 + }, + "vertices": { + "#": 5694 + } + }, + [ + { + "#": 5680 + }, + { + "#": 5681 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5683 + }, + "min": { + "#": 5684 + } + }, + { + "x": 615, + "y": 575 + }, + { + "x": 580, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 557.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5692 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5695 + }, + { + "#": 5696 + }, + { + "#": 5697 + }, + { + "#": 5698 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5700 + }, + "bounds": { + "#": 5703 + }, + "collisionFilter": { + "#": 5706 + }, + "constraintImpulse": { + "#": 5707 + }, + "density": 0.001, + "force": { + "#": 5708 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 272, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5709 + }, + "positionImpulse": { + "#": 5710 + }, + "positionPrev": { + "#": 5711 + }, + "render": { + "#": 5712 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5714 + }, + "vertices": { + "#": 5715 + } + }, + [ + { + "#": 5701 + }, + { + "#": 5702 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5704 + }, + "min": { + "#": 5705 + } + }, + { + "x": 650, + "y": 575 + }, + { + "x": 615, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5713 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5716 + }, + { + "#": 5717 + }, + { + "#": 5718 + }, + { + "#": 5719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5721 + }, + "bounds": { + "#": 5724 + }, + "collisionFilter": { + "#": 5727 + }, + "constraintImpulse": { + "#": 5728 + }, + "density": 0.001, + "force": { + "#": 5729 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 273, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5730 + }, + "positionImpulse": { + "#": 5731 + }, + "positionPrev": { + "#": 5732 + }, + "render": { + "#": 5733 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5735 + }, + "vertices": { + "#": 5736 + } + }, + [ + { + "#": 5722 + }, + { + "#": 5723 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5725 + }, + "min": { + "#": 5726 + } + }, + { + "x": 685, + "y": 575 + }, + { + "x": 650, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5734 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5737 + }, + { + "#": 5738 + }, + { + "#": 5739 + }, + { + "#": 5740 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 575 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5742 + }, + "bounds": { + "#": 5745 + }, + "collisionFilter": { + "#": 5748 + }, + "constraintImpulse": { + "#": 5749 + }, + "density": 0.001, + "force": { + "#": 5750 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 274, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5751 + }, + "positionImpulse": { + "#": 5752 + }, + "positionPrev": { + "#": 5753 + }, + "render": { + "#": 5754 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5756 + }, + "vertices": { + "#": 5757 + } + }, + [ + { + "#": 5743 + }, + { + "#": 5744 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5746 + }, + "min": { + "#": 5747 + } + }, + { + "x": 720, + "y": 575 + }, + { + "x": 685, + "y": 540 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5755 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5758 + }, + { + "#": 5759 + }, + { + "#": 5760 + }, + { + "#": 5761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 540 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 540 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 575 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 575 + }, + [], + [], + [ + { + "#": 5765 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 5766 + }, + "pointB": "", + "render": { + "#": 5767 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 5769 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/stress/stress-10.json b/tests/browser/refs/stress/stress-10.json new file mode 100644 index 00000000..c317dd0a --- /dev/null +++ b/tests/browser/refs/stress/stress-10.json @@ -0,0 +1,53052 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 6038 + }, + "events": { + "#": 6042 + }, + "gravity": { + "#": 6044 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 6036 + }, + "constraints": { + "#": 6037 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 206 + }, + { + "#": 228 + }, + { + "#": 250 + }, + { + "#": 272 + }, + { + "#": 294 + }, + { + "#": 316 + }, + { + "#": 338 + }, + { + "#": 360 + }, + { + "#": 382 + }, + { + "#": 404 + }, + { + "#": 426 + }, + { + "#": 448 + }, + { + "#": 470 + }, + { + "#": 492 + }, + { + "#": 514 + }, + { + "#": 536 + }, + { + "#": 558 + }, + { + "#": 580 + }, + { + "#": 602 + }, + { + "#": 624 + }, + { + "#": 646 + }, + { + "#": 668 + }, + { + "#": 690 + }, + { + "#": 712 + }, + { + "#": 734 + }, + { + "#": 756 + }, + { + "#": 778 + }, + { + "#": 800 + }, + { + "#": 822 + }, + { + "#": 844 + }, + { + "#": 866 + }, + { + "#": 888 + }, + { + "#": 910 + }, + { + "#": 932 + }, + { + "#": 954 + }, + { + "#": 976 + }, + { + "#": 998 + }, + { + "#": 1020 + }, + { + "#": 1042 + }, + { + "#": 1064 + }, + { + "#": 1086 + }, + { + "#": 1108 + }, + { + "#": 1130 + }, + { + "#": 1152 + }, + { + "#": 1174 + }, + { + "#": 1196 + }, + { + "#": 1218 + }, + { + "#": 1240 + }, + { + "#": 1262 + }, + { + "#": 1284 + }, + { + "#": 1306 + }, + { + "#": 1328 + }, + { + "#": 1350 + }, + { + "#": 1372 + }, + { + "#": 1394 + }, + { + "#": 1416 + }, + { + "#": 1438 + }, + { + "#": 1460 + }, + { + "#": 1482 + }, + { + "#": 1504 + }, + { + "#": 1526 + }, + { + "#": 1548 + }, + { + "#": 1570 + }, + { + "#": 1592 + }, + { + "#": 1614 + }, + { + "#": 1636 + }, + { + "#": 1658 + }, + { + "#": 1680 + }, + { + "#": 1702 + }, + { + "#": 1724 + }, + { + "#": 1746 + }, + { + "#": 1768 + }, + { + "#": 1790 + }, + { + "#": 1812 + }, + { + "#": 1834 + }, + { + "#": 1856 + }, + { + "#": 1878 + }, + { + "#": 1900 + }, + { + "#": 1922 + }, + { + "#": 1944 + }, + { + "#": 1966 + }, + { + "#": 1988 + }, + { + "#": 2010 + }, + { + "#": 2032 + }, + { + "#": 2054 + }, + { + "#": 2076 + }, + { + "#": 2098 + }, + { + "#": 2120 + }, + { + "#": 2142 + }, + { + "#": 2164 + }, + { + "#": 2186 + }, + { + "#": 2208 + }, + { + "#": 2230 + }, + { + "#": 2252 + }, + { + "#": 2274 + }, + { + "#": 2296 + }, + { + "#": 2318 + }, + { + "#": 2340 + }, + { + "#": 2362 + }, + { + "#": 2384 + }, + { + "#": 2406 + }, + { + "#": 2428 + }, + { + "#": 2450 + }, + { + "#": 2472 + }, + { + "#": 2494 + }, + { + "#": 2516 + }, + { + "#": 2538 + }, + { + "#": 2560 + }, + { + "#": 2582 + }, + { + "#": 2604 + }, + { + "#": 2626 + }, + { + "#": 2648 + }, + { + "#": 2670 + }, + { + "#": 2692 + }, + { + "#": 2714 + }, + { + "#": 2736 + }, + { + "#": 2758 + }, + { + "#": 2780 + }, + { + "#": 2802 + }, + { + "#": 2824 + }, + { + "#": 2846 + }, + { + "#": 2868 + }, + { + "#": 2890 + }, + { + "#": 2912 + }, + { + "#": 2934 + }, + { + "#": 2956 + }, + { + "#": 2978 + }, + { + "#": 3000 + }, + { + "#": 3022 + }, + { + "#": 3044 + }, + { + "#": 3066 + }, + { + "#": 3088 + }, + { + "#": 3110 + }, + { + "#": 3132 + }, + { + "#": 3154 + }, + { + "#": 3176 + }, + { + "#": 3198 + }, + { + "#": 3220 + }, + { + "#": 3242 + }, + { + "#": 3264 + }, + { + "#": 3286 + }, + { + "#": 3308 + }, + { + "#": 3330 + }, + { + "#": 3352 + }, + { + "#": 3374 + }, + { + "#": 3396 + }, + { + "#": 3418 + }, + { + "#": 3440 + }, + { + "#": 3462 + }, + { + "#": 3484 + }, + { + "#": 3506 + }, + { + "#": 3528 + }, + { + "#": 3550 + }, + { + "#": 3572 + }, + { + "#": 3594 + }, + { + "#": 3616 + }, + { + "#": 3638 + }, + { + "#": 3660 + }, + { + "#": 3682 + }, + { + "#": 3704 + }, + { + "#": 3726 + }, + { + "#": 3748 + }, + { + "#": 3770 + }, + { + "#": 3792 + }, + { + "#": 3814 + }, + { + "#": 3836 + }, + { + "#": 3858 + }, + { + "#": 3880 + }, + { + "#": 3902 + }, + { + "#": 3924 + }, + { + "#": 3946 + }, + { + "#": 3968 + }, + { + "#": 3990 + }, + { + "#": 4012 + }, + { + "#": 4034 + }, + { + "#": 4056 + }, + { + "#": 4078 + }, + { + "#": 4100 + }, + { + "#": 4122 + }, + { + "#": 4144 + }, + { + "#": 4166 + }, + { + "#": 4188 + }, + { + "#": 4210 + }, + { + "#": 4232 + }, + { + "#": 4254 + }, + { + "#": 4276 + }, + { + "#": 4298 + }, + { + "#": 4320 + }, + { + "#": 4342 + }, + { + "#": 4364 + }, + { + "#": 4386 + }, + { + "#": 4408 + }, + { + "#": 4430 + }, + { + "#": 4452 + }, + { + "#": 4474 + }, + { + "#": 4496 + }, + { + "#": 4518 + }, + { + "#": 4540 + }, + { + "#": 4562 + }, + { + "#": 4584 + }, + { + "#": 4606 + }, + { + "#": 4628 + }, + { + "#": 4650 + }, + { + "#": 4672 + }, + { + "#": 4694 + }, + { + "#": 4716 + }, + { + "#": 4738 + }, + { + "#": 4760 + }, + { + "#": 4782 + }, + { + "#": 4804 + }, + { + "#": 4826 + }, + { + "#": 4848 + }, + { + "#": 4870 + }, + { + "#": 4892 + }, + { + "#": 4914 + }, + { + "#": 4936 + }, + { + "#": 4958 + }, + { + "#": 4980 + }, + { + "#": 5002 + }, + { + "#": 5024 + }, + { + "#": 5046 + }, + { + "#": 5068 + }, + { + "#": 5090 + }, + { + "#": 5112 + }, + { + "#": 5134 + }, + { + "#": 5156 + }, + { + "#": 5178 + }, + { + "#": 5200 + }, + { + "#": 5222 + }, + { + "#": 5244 + }, + { + "#": 5266 + }, + { + "#": 5288 + }, + { + "#": 5310 + }, + { + "#": 5332 + }, + { + "#": 5354 + }, + { + "#": 5376 + }, + { + "#": 5398 + }, + { + "#": 5420 + }, + { + "#": 5442 + }, + { + "#": 5464 + }, + { + "#": 5486 + }, + { + "#": 5508 + }, + { + "#": 5530 + }, + { + "#": 5552 + }, + { + "#": 5574 + }, + { + "#": 5596 + }, + { + "#": 5618 + }, + { + "#": 5640 + }, + { + "#": 5662 + }, + { + "#": 5684 + }, + { + "#": 5706 + }, + { + "#": 5728 + }, + { + "#": 5750 + }, + { + "#": 5772 + }, + { + "#": 5794 + }, + { + "#": 5816 + }, + { + "#": 5838 + }, + { + "#": 5860 + }, + { + "#": 5882 + }, + { + "#": 5904 + }, + { + "#": 5926 + }, + { + "#": 5948 + }, + { + "#": 5970 + }, + { + "#": 5992 + }, + { + "#": 6014 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 125, + "y": 102.73575476702572 + }, + { + "x": 90, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 82.32848405199007 + }, + { + "endCol": 2, + "endRow": 2, + "id": "1,2,1,2", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 160, + "y": 102.73575476702572 + }, + { + "x": 125, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 82.32848405199007 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,1,2", + "startCol": 2, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 195, + "y": 102.73575476702572 + }, + { + "x": 160, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 82.32848405199007 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,1,2", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 230, + "y": 102.73575476702572 + }, + { + "x": 195, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 82.32848405199007 + }, + { + "endCol": 4, + "endRow": 2, + "id": "4,4,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 185 + }, + "bounds": { + "#": 188 + }, + "collisionFilter": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "density": 0.001, + "force": { + "#": 193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 194 + }, + "positionImpulse": { + "#": 195 + }, + "positionPrev": { + "#": 196 + }, + "region": { + "#": 197 + }, + "render": { + "#": 198 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 200 + }, + "vertices": { + "#": 201 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 189 + }, + "min": { + "#": 190 + } + }, + { + "x": 265, + "y": 102.73575476702572 + }, + { + "x": 230, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 82.32848405199007 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 199 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 207 + }, + "bounds": { + "#": 210 + }, + "collisionFilter": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "density": 0.001, + "force": { + "#": 215 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 216 + }, + "positionImpulse": { + "#": 217 + }, + "positionPrev": { + "#": 218 + }, + "region": { + "#": 219 + }, + "render": { + "#": 220 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 222 + }, + "vertices": { + "#": 223 + } + }, + [ + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 211 + }, + "min": { + "#": 212 + } + }, + { + "x": 300, + "y": 102.73575476702572 + }, + { + "x": 265, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 82.32848405199007 + }, + { + "endCol": 6, + "endRow": 2, + "id": "5,6,1,2", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 221 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 229 + }, + "bounds": { + "#": 232 + }, + "collisionFilter": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "density": 0.001, + "force": { + "#": 237 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 238 + }, + "positionImpulse": { + "#": 239 + }, + "positionPrev": { + "#": 240 + }, + "region": { + "#": 241 + }, + "render": { + "#": 242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 244 + }, + "vertices": { + "#": 245 + } + }, + [ + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 233 + }, + "min": { + "#": 234 + } + }, + { + "x": 335, + "y": 102.73575476702572 + }, + { + "x": 300, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 82.32848405199007 + }, + { + "endCol": 6, + "endRow": 2, + "id": "6,6,1,2", + "startCol": 6, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 243 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 251 + }, + "bounds": { + "#": 254 + }, + "collisionFilter": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "density": 0.001, + "force": { + "#": 259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 260 + }, + "positionImpulse": { + "#": 261 + }, + "positionPrev": { + "#": 262 + }, + "region": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 255 + }, + "min": { + "#": 256 + } + }, + { + "x": 370, + "y": 102.73575476702572 + }, + { + "x": 335, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 82.32848405199007 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,1,2", + "startCol": 6, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 405, + "y": 102.73575476702572 + }, + { + "x": 370, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 82.32848405199007 + }, + { + "endCol": 8, + "endRow": 2, + "id": "7,8,1,2", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 295 + }, + "bounds": { + "#": 298 + }, + "collisionFilter": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "density": 0.001, + "force": { + "#": 303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 304 + }, + "positionImpulse": { + "#": 305 + }, + "positionPrev": { + "#": 306 + }, + "region": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 299 + }, + "min": { + "#": 300 + } + }, + { + "x": 440, + "y": 102.73575476702572 + }, + { + "x": 405, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 82.32848405199007 + }, + { + "endCol": 9, + "endRow": 2, + "id": "8,9,1,2", + "startCol": 8, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 317 + }, + "bounds": { + "#": 320 + }, + "collisionFilter": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "density": 0.001, + "force": { + "#": 325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 326 + }, + "positionImpulse": { + "#": 327 + }, + "positionPrev": { + "#": 328 + }, + "region": { + "#": 329 + }, + "render": { + "#": 330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 332 + }, + "vertices": { + "#": 333 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 321 + }, + "min": { + "#": 322 + } + }, + { + "x": 475, + "y": 102.73575476702572 + }, + { + "x": 440, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 82.32848405199007 + }, + { + "endCol": 9, + "endRow": 2, + "id": "9,9,1,2", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 331 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 339 + }, + "bounds": { + "#": 342 + }, + "collisionFilter": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "density": 0.001, + "force": { + "#": 347 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 348 + }, + "positionImpulse": { + "#": 349 + }, + "positionPrev": { + "#": 350 + }, + "region": { + "#": 351 + }, + "render": { + "#": 352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 354 + }, + "vertices": { + "#": 355 + } + }, + [ + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 343 + }, + "min": { + "#": 344 + } + }, + { + "x": 510, + "y": 102.73575476702572 + }, + { + "x": 475, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 82.32848405199007 + }, + { + "endCol": 10, + "endRow": 2, + "id": "9,10,1,2", + "startCol": 9, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 353 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 361 + }, + "bounds": { + "#": 364 + }, + "collisionFilter": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "density": 0.001, + "force": { + "#": 369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 370 + }, + "positionImpulse": { + "#": 371 + }, + "positionPrev": { + "#": 372 + }, + "region": { + "#": 373 + }, + "render": { + "#": 374 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 376 + }, + "vertices": { + "#": 377 + } + }, + [ + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 365 + }, + "min": { + "#": 366 + } + }, + { + "x": 545, + "y": 102.73575476702572 + }, + { + "x": 510, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 82.32848405199007 + }, + { + "endCol": 11, + "endRow": 2, + "id": "10,11,1,2", + "startCol": 10, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 375 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 383 + }, + "bounds": { + "#": 386 + }, + "collisionFilter": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "density": 0.001, + "force": { + "#": 391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 392 + }, + "positionImpulse": { + "#": 393 + }, + "positionPrev": { + "#": 394 + }, + "region": { + "#": 395 + }, + "render": { + "#": 396 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 398 + }, + "vertices": { + "#": 399 + } + }, + [ + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 387 + }, + "min": { + "#": 388 + } + }, + { + "x": 580, + "y": 102.73575476702572 + }, + { + "x": 545, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 82.32848405199007 + }, + { + "endCol": 12, + "endRow": 2, + "id": "11,12,1,2", + "startCol": 11, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 397 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 405 + }, + "bounds": { + "#": 408 + }, + "collisionFilter": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "density": 0.001, + "force": { + "#": 413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 414 + }, + "positionImpulse": { + "#": 415 + }, + "positionPrev": { + "#": 416 + }, + "region": { + "#": 417 + }, + "render": { + "#": 418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 420 + }, + "vertices": { + "#": 421 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 409 + }, + "min": { + "#": 410 + } + }, + { + "x": 615, + "y": 102.73575476702572 + }, + { + "x": 580, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 82.32848405199007 + }, + { + "endCol": 12, + "endRow": 2, + "id": "12,12,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 419 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 427 + }, + "bounds": { + "#": 430 + }, + "collisionFilter": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "density": 0.001, + "force": { + "#": 435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 436 + }, + "positionImpulse": { + "#": 437 + }, + "positionPrev": { + "#": 438 + }, + "region": { + "#": 439 + }, + "render": { + "#": 440 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 442 + }, + "vertices": { + "#": 443 + } + }, + [ + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 431 + }, + "min": { + "#": 432 + } + }, + { + "x": 650, + "y": 102.73575476702572 + }, + { + "x": 615, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 82.32848405199007 + }, + { + "endCol": 13, + "endRow": 2, + "id": "12,13,1,2", + "startCol": 12, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 441 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 449 + }, + "bounds": { + "#": 452 + }, + "collisionFilter": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "density": 0.001, + "force": { + "#": 457 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 458 + }, + "positionImpulse": { + "#": 459 + }, + "positionPrev": { + "#": 460 + }, + "region": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 453 + }, + "min": { + "#": 454 + } + }, + { + "x": 685, + "y": 102.73575476702572 + }, + { + "x": 650, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 82.32848405199007 + }, + { + "endCol": 14, + "endRow": 2, + "id": "13,14,1,2", + "startCol": 13, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 471 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "region": { + "#": 483 + }, + "render": { + "#": 484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 486 + }, + "vertices": { + "#": 487 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 720, + "y": 102.73575476702572 + }, + { + "x": 685, + "y": 67.73575476702574 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 85.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 82.32848405199007 + }, + { + "endCol": 15, + "endRow": 2, + "id": "14,15,1,2", + "startCol": 14, + "startRow": 1 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 485 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 67.73575476702574 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 102.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 493 + }, + "bounds": { + "#": 496 + }, + "collisionFilter": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "density": 0.001, + "force": { + "#": 501 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 502 + }, + "positionImpulse": { + "#": 503 + }, + "positionPrev": { + "#": 504 + }, + "region": { + "#": 505 + }, + "render": { + "#": 506 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 508 + }, + "vertices": { + "#": 509 + } + }, + [ + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 497 + }, + "min": { + "#": 498 + } + }, + { + "x": 125, + "y": 137.73575476702572 + }, + { + "x": 90, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 117.32848405199007 + }, + { + "endCol": 2, + "endRow": 2, + "id": "1,2,2,2", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 507 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 515 + }, + "bounds": { + "#": 518 + }, + "collisionFilter": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "density": 0.001, + "force": { + "#": 523 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 524 + }, + "positionImpulse": { + "#": 525 + }, + "positionPrev": { + "#": 526 + }, + "region": { + "#": 527 + }, + "render": { + "#": 528 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 530 + }, + "vertices": { + "#": 531 + } + }, + [ + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 519 + }, + "min": { + "#": 520 + } + }, + { + "x": 160, + "y": 137.73575476702572 + }, + { + "x": 125, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 117.32848405199007 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,2,2", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 529 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 537 + }, + "bounds": { + "#": 540 + }, + "collisionFilter": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "density": 0.001, + "force": { + "#": 545 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 546 + }, + "positionImpulse": { + "#": 547 + }, + "positionPrev": { + "#": 548 + }, + "region": { + "#": 549 + }, + "render": { + "#": 550 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 552 + }, + "vertices": { + "#": 553 + } + }, + [ + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 541 + }, + "min": { + "#": 542 + } + }, + { + "x": 195, + "y": 137.73575476702572 + }, + { + "x": 160, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 117.32848405199007 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,2,2", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 551 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 559 + }, + "bounds": { + "#": 562 + }, + "collisionFilter": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "density": 0.001, + "force": { + "#": 567 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 568 + }, + "positionImpulse": { + "#": 569 + }, + "positionPrev": { + "#": 570 + }, + "region": { + "#": 571 + }, + "render": { + "#": 572 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 574 + }, + "vertices": { + "#": 575 + } + }, + [ + { + "#": 560 + }, + { + "#": 561 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 563 + }, + "min": { + "#": 564 + } + }, + { + "x": 230, + "y": 137.73575476702572 + }, + { + "x": 195, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 117.32848405199007 + }, + { + "endCol": 4, + "endRow": 2, + "id": "4,4,2,2", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 573 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 581 + }, + "bounds": { + "#": 584 + }, + "collisionFilter": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "density": 0.001, + "force": { + "#": 589 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 590 + }, + "positionImpulse": { + "#": 591 + }, + "positionPrev": { + "#": 592 + }, + "region": { + "#": 593 + }, + "render": { + "#": 594 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 596 + }, + "vertices": { + "#": 597 + } + }, + [ + { + "#": 582 + }, + { + "#": 583 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 585 + }, + "min": { + "#": 586 + } + }, + { + "x": 265, + "y": 137.73575476702572 + }, + { + "x": 230, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 117.32848405199007 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,2,2", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 595 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 603 + }, + "bounds": { + "#": 606 + }, + "collisionFilter": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "density": 0.001, + "force": { + "#": 611 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 612 + }, + "positionImpulse": { + "#": 613 + }, + "positionPrev": { + "#": 614 + }, + "region": { + "#": 615 + }, + "render": { + "#": 616 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 618 + }, + "vertices": { + "#": 619 + } + }, + [ + { + "#": 604 + }, + { + "#": 605 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 607 + }, + "min": { + "#": 608 + } + }, + { + "x": 300, + "y": 137.73575476702572 + }, + { + "x": 265, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 117.32848405199007 + }, + { + "endCol": 6, + "endRow": 2, + "id": "5,6,2,2", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 617 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 625 + }, + "bounds": { + "#": 628 + }, + "collisionFilter": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "density": 0.001, + "force": { + "#": 633 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 634 + }, + "positionImpulse": { + "#": 635 + }, + "positionPrev": { + "#": 636 + }, + "region": { + "#": 637 + }, + "render": { + "#": 638 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 640 + }, + "vertices": { + "#": 641 + } + }, + [ + { + "#": 626 + }, + { + "#": 627 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 629 + }, + "min": { + "#": 630 + } + }, + { + "x": 335, + "y": 137.73575476702572 + }, + { + "x": 300, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 117.32848405199007 + }, + { + "endCol": 6, + "endRow": 2, + "id": "6,6,2,2", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 639 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 647 + }, + "bounds": { + "#": 650 + }, + "collisionFilter": { + "#": 653 + }, + "constraintImpulse": { + "#": 654 + }, + "density": 0.001, + "force": { + "#": 655 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 656 + }, + "positionImpulse": { + "#": 657 + }, + "positionPrev": { + "#": 658 + }, + "region": { + "#": 659 + }, + "render": { + "#": 660 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 662 + }, + "vertices": { + "#": 663 + } + }, + [ + { + "#": 648 + }, + { + "#": 649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 651 + }, + "min": { + "#": 652 + } + }, + { + "x": 370, + "y": 137.73575476702572 + }, + { + "x": 335, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 117.32848405199007 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,2,2", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 661 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 669 + }, + "bounds": { + "#": 672 + }, + "collisionFilter": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "density": 0.001, + "force": { + "#": 677 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 678 + }, + "positionImpulse": { + "#": 679 + }, + "positionPrev": { + "#": 680 + }, + "region": { + "#": 681 + }, + "render": { + "#": 682 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 684 + }, + "vertices": { + "#": 685 + } + }, + [ + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 673 + }, + "min": { + "#": 674 + } + }, + { + "x": 405, + "y": 137.73575476702572 + }, + { + "x": 370, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 117.32848405199007 + }, + { + "endCol": 8, + "endRow": 2, + "id": "7,8,2,2", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 683 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 691 + }, + "bounds": { + "#": 694 + }, + "collisionFilter": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "density": 0.001, + "force": { + "#": 699 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 700 + }, + "positionImpulse": { + "#": 701 + }, + "positionPrev": { + "#": 702 + }, + "region": { + "#": 703 + }, + "render": { + "#": 704 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 706 + }, + "vertices": { + "#": 707 + } + }, + [ + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 695 + }, + "min": { + "#": 696 + } + }, + { + "x": 440, + "y": 137.73575476702572 + }, + { + "x": 405, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 117.32848405199007 + }, + { + "endCol": 9, + "endRow": 2, + "id": "8,9,2,2", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 705 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 713 + }, + "bounds": { + "#": 716 + }, + "collisionFilter": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "density": 0.001, + "force": { + "#": 721 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 722 + }, + "positionImpulse": { + "#": 723 + }, + "positionPrev": { + "#": 724 + }, + "region": { + "#": 725 + }, + "render": { + "#": 726 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 728 + }, + "vertices": { + "#": 729 + } + }, + [ + { + "#": 714 + }, + { + "#": 715 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 717 + }, + "min": { + "#": 718 + } + }, + { + "x": 475, + "y": 137.73575476702572 + }, + { + "x": 440, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 117.32848405199007 + }, + { + "endCol": 9, + "endRow": 2, + "id": "9,9,2,2", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 727 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 735 + }, + "bounds": { + "#": 738 + }, + "collisionFilter": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "density": 0.001, + "force": { + "#": 743 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 744 + }, + "positionImpulse": { + "#": 745 + }, + "positionPrev": { + "#": 746 + }, + "region": { + "#": 747 + }, + "render": { + "#": 748 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 750 + }, + "vertices": { + "#": 751 + } + }, + [ + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 739 + }, + "min": { + "#": 740 + } + }, + { + "x": 510, + "y": 137.73575476702572 + }, + { + "x": 475, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 117.32848405199007 + }, + { + "endCol": 10, + "endRow": 2, + "id": "9,10,2,2", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 749 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 757 + }, + "bounds": { + "#": 760 + }, + "collisionFilter": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "density": 0.001, + "force": { + "#": 765 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 766 + }, + "positionImpulse": { + "#": 767 + }, + "positionPrev": { + "#": 768 + }, + "region": { + "#": 769 + }, + "render": { + "#": 770 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 772 + }, + "vertices": { + "#": 773 + } + }, + [ + { + "#": 758 + }, + { + "#": 759 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 761 + }, + "min": { + "#": 762 + } + }, + { + "x": 545, + "y": 137.73575476702572 + }, + { + "x": 510, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 117.32848405199007 + }, + { + "endCol": 11, + "endRow": 2, + "id": "10,11,2,2", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 771 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 779 + }, + "bounds": { + "#": 782 + }, + "collisionFilter": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "density": 0.001, + "force": { + "#": 787 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 788 + }, + "positionImpulse": { + "#": 789 + }, + "positionPrev": { + "#": 790 + }, + "region": { + "#": 791 + }, + "render": { + "#": 792 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 794 + }, + "vertices": { + "#": 795 + } + }, + [ + { + "#": 780 + }, + { + "#": 781 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 783 + }, + "min": { + "#": 784 + } + }, + { + "x": 580, + "y": 137.73575476702572 + }, + { + "x": 545, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 117.32848405199007 + }, + { + "endCol": 12, + "endRow": 2, + "id": "11,12,2,2", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 793 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 801 + }, + "bounds": { + "#": 804 + }, + "collisionFilter": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "density": 0.001, + "force": { + "#": 809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 810 + }, + "positionImpulse": { + "#": 811 + }, + "positionPrev": { + "#": 812 + }, + "region": { + "#": 813 + }, + "render": { + "#": 814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 816 + }, + "vertices": { + "#": 817 + } + }, + [ + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 805 + }, + "min": { + "#": 806 + } + }, + { + "x": 615, + "y": 137.73575476702572 + }, + { + "x": 580, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 117.32848405199007 + }, + { + "endCol": 12, + "endRow": 2, + "id": "12,12,2,2", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 815 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 823 + }, + "bounds": { + "#": 826 + }, + "collisionFilter": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "density": 0.001, + "force": { + "#": 831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 832 + }, + "positionImpulse": { + "#": 833 + }, + "positionPrev": { + "#": 834 + }, + "region": { + "#": 835 + }, + "render": { + "#": 836 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 838 + }, + "vertices": { + "#": 839 + } + }, + [ + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 827 + }, + "min": { + "#": 828 + } + }, + { + "x": 650, + "y": 137.73575476702572 + }, + { + "x": 615, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 117.32848405199007 + }, + { + "endCol": 13, + "endRow": 2, + "id": "12,13,2,2", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 837 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 845 + }, + "bounds": { + "#": 848 + }, + "collisionFilter": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "density": 0.001, + "force": { + "#": 853 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 854 + }, + "positionImpulse": { + "#": 855 + }, + "positionPrev": { + "#": 856 + }, + "region": { + "#": 857 + }, + "render": { + "#": 858 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 860 + }, + "vertices": { + "#": 861 + } + }, + [ + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 849 + }, + "min": { + "#": 850 + } + }, + { + "x": 685, + "y": 137.73575476702572 + }, + { + "x": 650, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 117.32848405199007 + }, + { + "endCol": 14, + "endRow": 2, + "id": "13,14,2,2", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 859 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 867 + }, + "bounds": { + "#": 870 + }, + "collisionFilter": { + "#": 873 + }, + "constraintImpulse": { + "#": 874 + }, + "density": 0.001, + "force": { + "#": 875 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 876 + }, + "positionImpulse": { + "#": 877 + }, + "positionPrev": { + "#": 878 + }, + "region": { + "#": 879 + }, + "render": { + "#": 880 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035644, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 882 + }, + "vertices": { + "#": 883 + } + }, + [ + { + "#": 868 + }, + { + "#": 869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 871 + }, + "min": { + "#": 872 + } + }, + { + "x": 720, + "y": 137.73575476702572 + }, + { + "x": 685, + "y": 102.73575476702572 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 120.23575476702572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 117.32848405199007 + }, + { + "endCol": 15, + "endRow": 2, + "id": "14,15,2,2", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 881 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035644 + }, + [ + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 102.73575476702572 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 137.73575476702572 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 137.73575476702572 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 889 + }, + "bounds": { + "#": 892 + }, + "collisionFilter": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "density": 0.001, + "force": { + "#": 897 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 898 + }, + "positionImpulse": { + "#": 899 + }, + "positionPrev": { + "#": 900 + }, + "region": { + "#": 901 + }, + "render": { + "#": 902 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 904 + }, + "vertices": { + "#": 905 + } + }, + [ + { + "#": 890 + }, + { + "#": 891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 893 + }, + "min": { + "#": 894 + } + }, + { + "x": 125, + "y": 172.73575476702598 + }, + { + "x": 90, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 152.3284840519903 + }, + { + "endCol": 2, + "endRow": 3, + "id": "1,2,2,3", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 903 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 911 + }, + "bounds": { + "#": 914 + }, + "collisionFilter": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "density": 0.001, + "force": { + "#": 919 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 920 + }, + "positionImpulse": { + "#": 921 + }, + "positionPrev": { + "#": 922 + }, + "region": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 912 + }, + { + "#": 913 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 915 + }, + "min": { + "#": 916 + } + }, + { + "x": 160, + "y": 172.73575476702598 + }, + { + "x": 125, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 152.3284840519903 + }, + { + "endCol": 3, + "endRow": 3, + "id": "2,3,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 933 + }, + "bounds": { + "#": 936 + }, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "region": { + "#": 945 + }, + "render": { + "#": 946 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 948 + }, + "vertices": { + "#": 949 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 195, + "y": 172.73575476702598 + }, + { + "x": 160, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 152.3284840519903 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 947 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 955 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 230, + "y": 172.73575476702598 + }, + { + "x": 195, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 152.3284840519903 + }, + { + "endCol": 4, + "endRow": 3, + "id": "4,4,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 977 + }, + "bounds": { + "#": 980 + }, + "collisionFilter": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "density": 0.001, + "force": { + "#": 985 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 986 + }, + "positionImpulse": { + "#": 987 + }, + "positionPrev": { + "#": 988 + }, + "region": { + "#": 989 + }, + "render": { + "#": 990 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 992 + }, + "vertices": { + "#": 993 + } + }, + [ + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 981 + }, + "min": { + "#": 982 + } + }, + { + "x": 265, + "y": 172.73575476702598 + }, + { + "x": 230, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 152.3284840519903 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 991 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 999 + }, + "bounds": { + "#": 1002 + }, + "collisionFilter": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "density": 0.001, + "force": { + "#": 1007 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1008 + }, + "positionImpulse": { + "#": 1009 + }, + "positionPrev": { + "#": 1010 + }, + "region": { + "#": 1011 + }, + "render": { + "#": 1012 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1014 + }, + "vertices": { + "#": 1015 + } + }, + [ + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1003 + }, + "min": { + "#": 1004 + } + }, + { + "x": 300, + "y": 172.73575476702598 + }, + { + "x": 265, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 152.3284840519903 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1013 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1021 + }, + "bounds": { + "#": 1024 + }, + "collisionFilter": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "density": 0.001, + "force": { + "#": 1029 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1030 + }, + "positionImpulse": { + "#": 1031 + }, + "positionPrev": { + "#": 1032 + }, + "region": { + "#": 1033 + }, + "render": { + "#": 1034 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1036 + }, + "vertices": { + "#": 1037 + } + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1025 + }, + "min": { + "#": 1026 + } + }, + { + "x": 335, + "y": 172.73575476702598 + }, + { + "x": 300, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 152.3284840519903 + }, + { + "endCol": 6, + "endRow": 3, + "id": "6,6,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1035 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1043 + }, + "bounds": { + "#": 1046 + }, + "collisionFilter": { + "#": 1049 + }, + "constraintImpulse": { + "#": 1050 + }, + "density": 0.001, + "force": { + "#": 1051 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1052 + }, + "positionImpulse": { + "#": 1053 + }, + "positionPrev": { + "#": 1054 + }, + "region": { + "#": 1055 + }, + "render": { + "#": 1056 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1058 + }, + "vertices": { + "#": 1059 + } + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1047 + }, + "min": { + "#": 1048 + } + }, + { + "x": 370, + "y": 172.73575476702598 + }, + { + "x": 335, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 152.3284840519903 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1057 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1065 + }, + "bounds": { + "#": 1068 + }, + "collisionFilter": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "density": 0.001, + "force": { + "#": 1073 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1074 + }, + "positionImpulse": { + "#": 1075 + }, + "positionPrev": { + "#": 1076 + }, + "region": { + "#": 1077 + }, + "render": { + "#": 1078 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1080 + }, + "vertices": { + "#": 1081 + } + }, + [ + { + "#": 1066 + }, + { + "#": 1067 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1069 + }, + "min": { + "#": 1070 + } + }, + { + "x": 405, + "y": 172.73575476702598 + }, + { + "x": 370, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 152.3284840519903 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1079 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1087 + }, + "bounds": { + "#": 1090 + }, + "collisionFilter": { + "#": 1093 + }, + "constraintImpulse": { + "#": 1094 + }, + "density": 0.001, + "force": { + "#": 1095 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1096 + }, + "positionImpulse": { + "#": 1097 + }, + "positionPrev": { + "#": 1098 + }, + "region": { + "#": 1099 + }, + "render": { + "#": 1100 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1102 + }, + "vertices": { + "#": 1103 + } + }, + [ + { + "#": 1088 + }, + { + "#": 1089 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1091 + }, + "min": { + "#": 1092 + } + }, + { + "x": 440, + "y": 172.73575476702598 + }, + { + "x": 405, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 152.3284840519903 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1101 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1109 + }, + "bounds": { + "#": 1112 + }, + "collisionFilter": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "density": 0.001, + "force": { + "#": 1117 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1118 + }, + "positionImpulse": { + "#": 1119 + }, + "positionPrev": { + "#": 1120 + }, + "region": { + "#": 1121 + }, + "render": { + "#": 1122 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1124 + }, + "vertices": { + "#": 1125 + } + }, + [ + { + "#": 1110 + }, + { + "#": 1111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1113 + }, + "min": { + "#": 1114 + } + }, + { + "x": 475, + "y": 172.73575476702598 + }, + { + "x": 440, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 152.3284840519903 + }, + { + "endCol": 9, + "endRow": 3, + "id": "9,9,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1123 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1131 + }, + "bounds": { + "#": 1134 + }, + "collisionFilter": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "density": 0.001, + "force": { + "#": 1139 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1140 + }, + "positionImpulse": { + "#": 1141 + }, + "positionPrev": { + "#": 1142 + }, + "region": { + "#": 1143 + }, + "render": { + "#": 1144 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1146 + }, + "vertices": { + "#": 1147 + } + }, + [ + { + "#": 1132 + }, + { + "#": 1133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1135 + }, + "min": { + "#": 1136 + } + }, + { + "x": 510, + "y": 172.73575476702598 + }, + { + "x": 475, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 152.3284840519903 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1145 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1153 + }, + "bounds": { + "#": 1156 + }, + "collisionFilter": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "density": 0.001, + "force": { + "#": 1161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1162 + }, + "positionImpulse": { + "#": 1163 + }, + "positionPrev": { + "#": 1164 + }, + "region": { + "#": 1165 + }, + "render": { + "#": 1166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1168 + }, + "vertices": { + "#": 1169 + } + }, + [ + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1157 + }, + "min": { + "#": 1158 + } + }, + { + "x": 545, + "y": 172.73575476702598 + }, + { + "x": 510, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 152.3284840519903 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1167 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1175 + }, + "bounds": { + "#": 1178 + }, + "collisionFilter": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "density": 0.001, + "force": { + "#": 1183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1184 + }, + "positionImpulse": { + "#": 1185 + }, + "positionPrev": { + "#": 1186 + }, + "region": { + "#": 1187 + }, + "render": { + "#": 1188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1190 + }, + "vertices": { + "#": 1191 + } + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1179 + }, + "min": { + "#": 1180 + } + }, + { + "x": 580, + "y": 172.73575476702598 + }, + { + "x": 545, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 152.3284840519903 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1189 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1197 + }, + "bounds": { + "#": 1200 + }, + "collisionFilter": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "density": 0.001, + "force": { + "#": 1205 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1206 + }, + "positionImpulse": { + "#": 1207 + }, + "positionPrev": { + "#": 1208 + }, + "region": { + "#": 1209 + }, + "render": { + "#": 1210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1212 + }, + "vertices": { + "#": 1213 + } + }, + [ + { + "#": 1198 + }, + { + "#": 1199 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1201 + }, + "min": { + "#": 1202 + } + }, + { + "x": 615, + "y": 172.73575476702598 + }, + { + "x": 580, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 152.3284840519903 + }, + { + "endCol": 12, + "endRow": 3, + "id": "12,12,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1211 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1219 + }, + "bounds": { + "#": 1222 + }, + "collisionFilter": { + "#": 1225 + }, + "constraintImpulse": { + "#": 1226 + }, + "density": 0.001, + "force": { + "#": 1227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1228 + }, + "positionImpulse": { + "#": 1229 + }, + "positionPrev": { + "#": 1230 + }, + "region": { + "#": 1231 + }, + "render": { + "#": 1232 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1234 + }, + "vertices": { + "#": 1235 + } + }, + [ + { + "#": 1220 + }, + { + "#": 1221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1223 + }, + "min": { + "#": 1224 + } + }, + { + "x": 650, + "y": 172.73575476702598 + }, + { + "x": 615, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 152.3284840519903 + }, + { + "endCol": 13, + "endRow": 3, + "id": "12,13,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1233 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1241 + }, + "bounds": { + "#": 1244 + }, + "collisionFilter": { + "#": 1247 + }, + "constraintImpulse": { + "#": 1248 + }, + "density": 0.001, + "force": { + "#": 1249 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1250 + }, + "positionImpulse": { + "#": 1251 + }, + "positionPrev": { + "#": 1252 + }, + "region": { + "#": 1253 + }, + "render": { + "#": 1254 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1256 + }, + "vertices": { + "#": 1257 + } + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1245 + }, + "min": { + "#": 1246 + } + }, + { + "x": 685, + "y": 172.73575476702598 + }, + { + "x": 650, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 152.3284840519903 + }, + { + "endCol": 14, + "endRow": 3, + "id": "13,14,2,3", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1255 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1263 + }, + "bounds": { + "#": 1266 + }, + "collisionFilter": { + "#": 1269 + }, + "constraintImpulse": { + "#": 1270 + }, + "density": 0.001, + "force": { + "#": 1271 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1272 + }, + "positionImpulse": { + "#": 1273 + }, + "positionPrev": { + "#": 1274 + }, + "region": { + "#": 1275 + }, + "render": { + "#": 1276 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1278 + }, + "vertices": { + "#": 1279 + } + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1267 + }, + "min": { + "#": 1268 + } + }, + { + "x": 720, + "y": 172.73575476702598 + }, + { + "x": 685, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 155.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 152.3284840519903 + }, + { + "endCol": 15, + "endRow": 3, + "id": "14,15,2,3", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1277 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 172.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1285 + }, + "bounds": { + "#": 1288 + }, + "collisionFilter": { + "#": 1291 + }, + "constraintImpulse": { + "#": 1292 + }, + "density": 0.001, + "force": { + "#": 1293 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1294 + }, + "positionImpulse": { + "#": 1295 + }, + "positionPrev": { + "#": 1296 + }, + "region": { + "#": 1297 + }, + "render": { + "#": 1298 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1300 + }, + "vertices": { + "#": 1301 + } + }, + [ + { + "#": 1286 + }, + { + "#": 1287 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1289 + }, + "min": { + "#": 1290 + } + }, + { + "x": 125, + "y": 207.73575476702598 + }, + { + "x": 90, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 187.3284840519903 + }, + { + "endCol": 2, + "endRow": 4, + "id": "1,2,3,4", + "startCol": 1, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1299 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1307 + }, + "bounds": { + "#": 1310 + }, + "collisionFilter": { + "#": 1313 + }, + "constraintImpulse": { + "#": 1314 + }, + "density": 0.001, + "force": { + "#": 1315 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1316 + }, + "positionImpulse": { + "#": 1317 + }, + "positionPrev": { + "#": 1318 + }, + "region": { + "#": 1319 + }, + "render": { + "#": 1320 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1322 + }, + "vertices": { + "#": 1323 + } + }, + [ + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1311 + }, + "min": { + "#": 1312 + } + }, + { + "x": 160, + "y": 207.73575476702598 + }, + { + "x": 125, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 187.3284840519903 + }, + { + "endCol": 3, + "endRow": 4, + "id": "2,3,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1321 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1329 + }, + "bounds": { + "#": 1332 + }, + "collisionFilter": { + "#": 1335 + }, + "constraintImpulse": { + "#": 1336 + }, + "density": 0.001, + "force": { + "#": 1337 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1338 + }, + "positionImpulse": { + "#": 1339 + }, + "positionPrev": { + "#": 1340 + }, + "region": { + "#": 1341 + }, + "render": { + "#": 1342 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1344 + }, + "vertices": { + "#": 1345 + } + }, + [ + { + "#": 1330 + }, + { + "#": 1331 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1333 + }, + "min": { + "#": 1334 + } + }, + { + "x": 195, + "y": 207.73575476702598 + }, + { + "x": 160, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 187.3284840519903 + }, + { + "endCol": 4, + "endRow": 4, + "id": "3,4,3,4", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1343 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1351 + }, + "bounds": { + "#": 1354 + }, + "collisionFilter": { + "#": 1357 + }, + "constraintImpulse": { + "#": 1358 + }, + "density": 0.001, + "force": { + "#": 1359 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1360 + }, + "positionImpulse": { + "#": 1361 + }, + "positionPrev": { + "#": 1362 + }, + "region": { + "#": 1363 + }, + "render": { + "#": 1364 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1366 + }, + "vertices": { + "#": 1367 + } + }, + [ + { + "#": 1352 + }, + { + "#": 1353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1355 + }, + "min": { + "#": 1356 + } + }, + { + "x": 230, + "y": 207.73575476702598 + }, + { + "x": 195, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 187.3284840519903 + }, + { + "endCol": 4, + "endRow": 4, + "id": "4,4,3,4", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1365 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1373 + }, + "bounds": { + "#": 1376 + }, + "collisionFilter": { + "#": 1379 + }, + "constraintImpulse": { + "#": 1380 + }, + "density": 0.001, + "force": { + "#": 1381 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1382 + }, + "positionImpulse": { + "#": 1383 + }, + "positionPrev": { + "#": 1384 + }, + "region": { + "#": 1385 + }, + "render": { + "#": 1386 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1388 + }, + "vertices": { + "#": 1389 + } + }, + [ + { + "#": 1374 + }, + { + "#": 1375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1377 + }, + "min": { + "#": 1378 + } + }, + { + "x": 265, + "y": 207.73575476702598 + }, + { + "x": 230, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 187.3284840519903 + }, + { + "endCol": 5, + "endRow": 4, + "id": "4,5,3,4", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1387 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1395 + }, + "bounds": { + "#": 1398 + }, + "collisionFilter": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "density": 0.001, + "force": { + "#": 1403 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1404 + }, + "positionImpulse": { + "#": 1405 + }, + "positionPrev": { + "#": 1406 + }, + "region": { + "#": 1407 + }, + "render": { + "#": 1408 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1410 + }, + "vertices": { + "#": 1411 + } + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1399 + }, + "min": { + "#": 1400 + } + }, + { + "x": 300, + "y": 207.73575476702598 + }, + { + "x": 265, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 187.3284840519903 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1409 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1417 + }, + "bounds": { + "#": 1420 + }, + "collisionFilter": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "density": 0.001, + "force": { + "#": 1425 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1426 + }, + "positionImpulse": { + "#": 1427 + }, + "positionPrev": { + "#": 1428 + }, + "region": { + "#": 1429 + }, + "render": { + "#": 1430 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1432 + }, + "vertices": { + "#": 1433 + } + }, + [ + { + "#": 1418 + }, + { + "#": 1419 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1421 + }, + "min": { + "#": 1422 + } + }, + { + "x": 335, + "y": 207.73575476702598 + }, + { + "x": 300, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 187.3284840519903 + }, + { + "endCol": 6, + "endRow": 4, + "id": "6,6,3,4", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1431 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1439 + }, + "bounds": { + "#": 1442 + }, + "collisionFilter": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "density": 0.001, + "force": { + "#": 1447 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1448 + }, + "positionImpulse": { + "#": 1449 + }, + "positionPrev": { + "#": 1450 + }, + "region": { + "#": 1451 + }, + "render": { + "#": 1452 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1454 + }, + "vertices": { + "#": 1455 + } + }, + [ + { + "#": 1440 + }, + { + "#": 1441 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1443 + }, + "min": { + "#": 1444 + } + }, + { + "x": 370, + "y": 207.73575476702598 + }, + { + "x": 335, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 187.3284840519903 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,3,4", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1453 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1461 + }, + "bounds": { + "#": 1464 + }, + "collisionFilter": { + "#": 1467 + }, + "constraintImpulse": { + "#": 1468 + }, + "density": 0.001, + "force": { + "#": 1469 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1470 + }, + "positionImpulse": { + "#": 1471 + }, + "positionPrev": { + "#": 1472 + }, + "region": { + "#": 1473 + }, + "render": { + "#": 1474 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1476 + }, + "vertices": { + "#": 1477 + } + }, + [ + { + "#": 1462 + }, + { + "#": 1463 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1465 + }, + "min": { + "#": 1466 + } + }, + { + "x": 405, + "y": 207.73575476702598 + }, + { + "x": 370, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 187.3284840519903 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,3,4", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1475 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1483 + }, + "bounds": { + "#": 1486 + }, + "collisionFilter": { + "#": 1489 + }, + "constraintImpulse": { + "#": 1490 + }, + "density": 0.001, + "force": { + "#": 1491 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1492 + }, + "positionImpulse": { + "#": 1493 + }, + "positionPrev": { + "#": 1494 + }, + "region": { + "#": 1495 + }, + "render": { + "#": 1496 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1498 + }, + "vertices": { + "#": 1499 + } + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1487 + }, + "min": { + "#": 1488 + } + }, + { + "x": 440, + "y": 207.73575476702598 + }, + { + "x": 405, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 187.3284840519903 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,3,4", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1497 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1505 + }, + "bounds": { + "#": 1508 + }, + "collisionFilter": { + "#": 1511 + }, + "constraintImpulse": { + "#": 1512 + }, + "density": 0.001, + "force": { + "#": 1513 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1514 + }, + "positionImpulse": { + "#": 1515 + }, + "positionPrev": { + "#": 1516 + }, + "region": { + "#": 1517 + }, + "render": { + "#": 1518 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1520 + }, + "vertices": { + "#": 1521 + } + }, + [ + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1509 + }, + "min": { + "#": 1510 + } + }, + { + "x": 475, + "y": 207.73575476702598 + }, + { + "x": 440, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 187.3284840519903 + }, + { + "endCol": 9, + "endRow": 4, + "id": "9,9,3,4", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1519 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1527 + }, + "bounds": { + "#": 1530 + }, + "collisionFilter": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "density": 0.001, + "force": { + "#": 1535 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1536 + }, + "positionImpulse": { + "#": 1537 + }, + "positionPrev": { + "#": 1538 + }, + "region": { + "#": 1539 + }, + "render": { + "#": 1540 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1542 + }, + "vertices": { + "#": 1543 + } + }, + [ + { + "#": 1528 + }, + { + "#": 1529 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1531 + }, + "min": { + "#": 1532 + } + }, + { + "x": 510, + "y": 207.73575476702598 + }, + { + "x": 475, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 187.3284840519903 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,3,4", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1541 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1549 + }, + "bounds": { + "#": 1552 + }, + "collisionFilter": { + "#": 1555 + }, + "constraintImpulse": { + "#": 1556 + }, + "density": 0.001, + "force": { + "#": 1557 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1558 + }, + "positionImpulse": { + "#": 1559 + }, + "positionPrev": { + "#": 1560 + }, + "region": { + "#": 1561 + }, + "render": { + "#": 1562 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1564 + }, + "vertices": { + "#": 1565 + } + }, + [ + { + "#": 1550 + }, + { + "#": 1551 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1553 + }, + "min": { + "#": 1554 + } + }, + { + "x": 545, + "y": 207.73575476702598 + }, + { + "x": 510, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 187.3284840519903 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,3,4", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1563 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1571 + }, + "bounds": { + "#": 1574 + }, + "collisionFilter": { + "#": 1577 + }, + "constraintImpulse": { + "#": 1578 + }, + "density": 0.001, + "force": { + "#": 1579 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1580 + }, + "positionImpulse": { + "#": 1581 + }, + "positionPrev": { + "#": 1582 + }, + "region": { + "#": 1583 + }, + "render": { + "#": 1584 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1586 + }, + "vertices": { + "#": 1587 + } + }, + [ + { + "#": 1572 + }, + { + "#": 1573 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1575 + }, + "min": { + "#": 1576 + } + }, + { + "x": 580, + "y": 207.73575476702598 + }, + { + "x": 545, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 187.3284840519903 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,3,4", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1585 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1593 + }, + "bounds": { + "#": 1596 + }, + "collisionFilter": { + "#": 1599 + }, + "constraintImpulse": { + "#": 1600 + }, + "density": 0.001, + "force": { + "#": 1601 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1602 + }, + "positionImpulse": { + "#": 1603 + }, + "positionPrev": { + "#": 1604 + }, + "region": { + "#": 1605 + }, + "render": { + "#": 1606 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1608 + }, + "vertices": { + "#": 1609 + } + }, + [ + { + "#": 1594 + }, + { + "#": 1595 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1597 + }, + "min": { + "#": 1598 + } + }, + { + "x": 615, + "y": 207.73575476702598 + }, + { + "x": 580, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 187.3284840519903 + }, + { + "endCol": 12, + "endRow": 4, + "id": "12,12,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1607 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1615 + }, + "bounds": { + "#": 1618 + }, + "collisionFilter": { + "#": 1621 + }, + "constraintImpulse": { + "#": 1622 + }, + "density": 0.001, + "force": { + "#": 1623 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1624 + }, + "positionImpulse": { + "#": 1625 + }, + "positionPrev": { + "#": 1626 + }, + "region": { + "#": 1627 + }, + "render": { + "#": 1628 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1630 + }, + "vertices": { + "#": 1631 + } + }, + [ + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1619 + }, + "min": { + "#": 1620 + } + }, + { + "x": 650, + "y": 207.73575476702598 + }, + { + "x": 615, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 187.3284840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1629 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1637 + }, + "bounds": { + "#": 1640 + }, + "collisionFilter": { + "#": 1643 + }, + "constraintImpulse": { + "#": 1644 + }, + "density": 0.001, + "force": { + "#": 1645 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1646 + }, + "positionImpulse": { + "#": 1647 + }, + "positionPrev": { + "#": 1648 + }, + "region": { + "#": 1649 + }, + "render": { + "#": 1650 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1652 + }, + "vertices": { + "#": 1653 + } + }, + [ + { + "#": 1638 + }, + { + "#": 1639 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1641 + }, + "min": { + "#": 1642 + } + }, + { + "x": 685, + "y": 207.73575476702598 + }, + { + "x": 650, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 187.3284840519903 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,3,4", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1651 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1659 + }, + "bounds": { + "#": 1662 + }, + "collisionFilter": { + "#": 1665 + }, + "constraintImpulse": { + "#": 1666 + }, + "density": 0.001, + "force": { + "#": 1667 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1668 + }, + "positionImpulse": { + "#": 1669 + }, + "positionPrev": { + "#": 1670 + }, + "region": { + "#": 1671 + }, + "render": { + "#": 1672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1674 + }, + "vertices": { + "#": 1675 + } + }, + [ + { + "#": 1660 + }, + { + "#": 1661 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1663 + }, + "min": { + "#": 1664 + } + }, + { + "x": 720, + "y": 207.73575476702598 + }, + { + "x": 685, + "y": 172.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 190.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 187.3284840519903 + }, + { + "endCol": 15, + "endRow": 4, + "id": "14,15,3,4", + "startCol": 14, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1673 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 172.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 207.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1681 + }, + "bounds": { + "#": 1684 + }, + "collisionFilter": { + "#": 1687 + }, + "constraintImpulse": { + "#": 1688 + }, + "density": 0.001, + "force": { + "#": 1689 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1690 + }, + "positionImpulse": { + "#": 1691 + }, + "positionPrev": { + "#": 1692 + }, + "region": { + "#": 1693 + }, + "render": { + "#": 1694 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1696 + }, + "vertices": { + "#": 1697 + } + }, + [ + { + "#": 1682 + }, + { + "#": 1683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1685 + }, + "min": { + "#": 1686 + } + }, + { + "x": 125, + "y": 242.73575476702598 + }, + { + "x": 90, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 222.3284840519903 + }, + { + "endCol": 2, + "endRow": 5, + "id": "1,2,4,5", + "startCol": 1, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1695 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1703 + }, + "bounds": { + "#": 1706 + }, + "collisionFilter": { + "#": 1709 + }, + "constraintImpulse": { + "#": 1710 + }, + "density": 0.001, + "force": { + "#": 1711 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1712 + }, + "positionImpulse": { + "#": 1713 + }, + "positionPrev": { + "#": 1714 + }, + "region": { + "#": 1715 + }, + "render": { + "#": 1716 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1718 + }, + "vertices": { + "#": 1719 + } + }, + [ + { + "#": 1704 + }, + { + "#": 1705 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1707 + }, + "min": { + "#": 1708 + } + }, + { + "x": 160, + "y": 242.73575476702598 + }, + { + "x": 125, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 222.3284840519903 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1717 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1725 + }, + "bounds": { + "#": 1728 + }, + "collisionFilter": { + "#": 1731 + }, + "constraintImpulse": { + "#": 1732 + }, + "density": 0.001, + "force": { + "#": 1733 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1734 + }, + "positionImpulse": { + "#": 1735 + }, + "positionPrev": { + "#": 1736 + }, + "region": { + "#": 1737 + }, + "render": { + "#": 1738 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1740 + }, + "vertices": { + "#": 1741 + } + }, + [ + { + "#": 1726 + }, + { + "#": 1727 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1729 + }, + "min": { + "#": 1730 + } + }, + { + "x": 195, + "y": 242.73575476702598 + }, + { + "x": 160, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 222.3284840519903 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1739 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1747 + }, + "bounds": { + "#": 1750 + }, + "collisionFilter": { + "#": 1753 + }, + "constraintImpulse": { + "#": 1754 + }, + "density": 0.001, + "force": { + "#": 1755 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1756 + }, + "positionImpulse": { + "#": 1757 + }, + "positionPrev": { + "#": 1758 + }, + "region": { + "#": 1759 + }, + "render": { + "#": 1760 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1762 + }, + "vertices": { + "#": 1763 + } + }, + [ + { + "#": 1748 + }, + { + "#": 1749 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1751 + }, + "min": { + "#": 1752 + } + }, + { + "x": 230, + "y": 242.73575476702598 + }, + { + "x": 195, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 222.3284840519903 + }, + { + "endCol": 4, + "endRow": 5, + "id": "4,4,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1761 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1769 + }, + "bounds": { + "#": 1772 + }, + "collisionFilter": { + "#": 1775 + }, + "constraintImpulse": { + "#": 1776 + }, + "density": 0.001, + "force": { + "#": 1777 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1778 + }, + "positionImpulse": { + "#": 1779 + }, + "positionPrev": { + "#": 1780 + }, + "region": { + "#": 1781 + }, + "render": { + "#": 1782 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1784 + }, + "vertices": { + "#": 1785 + } + }, + [ + { + "#": 1770 + }, + { + "#": 1771 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1773 + }, + "min": { + "#": 1774 + } + }, + { + "x": 265, + "y": 242.73575476702598 + }, + { + "x": 230, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 222.3284840519903 + }, + { + "endCol": 5, + "endRow": 5, + "id": "4,5,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1783 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1791 + }, + "bounds": { + "#": 1794 + }, + "collisionFilter": { + "#": 1797 + }, + "constraintImpulse": { + "#": 1798 + }, + "density": 0.001, + "force": { + "#": 1799 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1800 + }, + "positionImpulse": { + "#": 1801 + }, + "positionPrev": { + "#": 1802 + }, + "region": { + "#": 1803 + }, + "render": { + "#": 1804 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1806 + }, + "vertices": { + "#": 1807 + } + }, + [ + { + "#": 1792 + }, + { + "#": 1793 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1795 + }, + "min": { + "#": 1796 + } + }, + { + "x": 300, + "y": 242.73575476702598 + }, + { + "x": 265, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 222.3284840519903 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1805 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1813 + }, + "bounds": { + "#": 1816 + }, + "collisionFilter": { + "#": 1819 + }, + "constraintImpulse": { + "#": 1820 + }, + "density": 0.001, + "force": { + "#": 1821 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1822 + }, + "positionImpulse": { + "#": 1823 + }, + "positionPrev": { + "#": 1824 + }, + "region": { + "#": 1825 + }, + "render": { + "#": 1826 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1828 + }, + "vertices": { + "#": 1829 + } + }, + [ + { + "#": 1814 + }, + { + "#": 1815 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1817 + }, + "min": { + "#": 1818 + } + }, + { + "x": 335, + "y": 242.73575476702598 + }, + { + "x": 300, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 222.3284840519903 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1827 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1835 + }, + "bounds": { + "#": 1838 + }, + "collisionFilter": { + "#": 1841 + }, + "constraintImpulse": { + "#": 1842 + }, + "density": 0.001, + "force": { + "#": 1843 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1844 + }, + "positionImpulse": { + "#": 1845 + }, + "positionPrev": { + "#": 1846 + }, + "region": { + "#": 1847 + }, + "render": { + "#": 1848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1850 + }, + "vertices": { + "#": 1851 + } + }, + [ + { + "#": 1836 + }, + { + "#": 1837 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1839 + }, + "min": { + "#": 1840 + } + }, + { + "x": 370, + "y": 242.73575476702598 + }, + { + "x": 335, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 222.3284840519903 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1849 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1857 + }, + "bounds": { + "#": 1860 + }, + "collisionFilter": { + "#": 1863 + }, + "constraintImpulse": { + "#": 1864 + }, + "density": 0.001, + "force": { + "#": 1865 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1866 + }, + "positionImpulse": { + "#": 1867 + }, + "positionPrev": { + "#": 1868 + }, + "region": { + "#": 1869 + }, + "render": { + "#": 1870 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1872 + }, + "vertices": { + "#": 1873 + } + }, + [ + { + "#": 1858 + }, + { + "#": 1859 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1861 + }, + "min": { + "#": 1862 + } + }, + { + "x": 405, + "y": 242.73575476702598 + }, + { + "x": 370, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 222.3284840519903 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1871 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1879 + }, + "bounds": { + "#": 1882 + }, + "collisionFilter": { + "#": 1885 + }, + "constraintImpulse": { + "#": 1886 + }, + "density": 0.001, + "force": { + "#": 1887 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1888 + }, + "positionImpulse": { + "#": 1889 + }, + "positionPrev": { + "#": 1890 + }, + "region": { + "#": 1891 + }, + "render": { + "#": 1892 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1894 + }, + "vertices": { + "#": 1895 + } + }, + [ + { + "#": 1880 + }, + { + "#": 1881 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1883 + }, + "min": { + "#": 1884 + } + }, + { + "x": 440, + "y": 242.73575476702598 + }, + { + "x": 405, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 222.3284840519903 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1893 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1901 + }, + "bounds": { + "#": 1904 + }, + "collisionFilter": { + "#": 1907 + }, + "constraintImpulse": { + "#": 1908 + }, + "density": 0.001, + "force": { + "#": 1909 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1910 + }, + "positionImpulse": { + "#": 1911 + }, + "positionPrev": { + "#": 1912 + }, + "region": { + "#": 1913 + }, + "render": { + "#": 1914 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1916 + }, + "vertices": { + "#": 1917 + } + }, + [ + { + "#": 1902 + }, + { + "#": 1903 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1905 + }, + "min": { + "#": 1906 + } + }, + { + "x": 475, + "y": 242.73575476702598 + }, + { + "x": 440, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 222.3284840519903 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1915 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1923 + }, + "bounds": { + "#": 1926 + }, + "collisionFilter": { + "#": 1929 + }, + "constraintImpulse": { + "#": 1930 + }, + "density": 0.001, + "force": { + "#": 1931 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1932 + }, + "positionImpulse": { + "#": 1933 + }, + "positionPrev": { + "#": 1934 + }, + "region": { + "#": 1935 + }, + "render": { + "#": 1936 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1938 + }, + "vertices": { + "#": 1939 + } + }, + [ + { + "#": 1924 + }, + { + "#": 1925 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1927 + }, + "min": { + "#": 1928 + } + }, + { + "x": 510, + "y": 242.73575476702598 + }, + { + "x": 475, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 222.3284840519903 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1937 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1945 + }, + "bounds": { + "#": 1948 + }, + "collisionFilter": { + "#": 1951 + }, + "constraintImpulse": { + "#": 1952 + }, + "density": 0.001, + "force": { + "#": 1953 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1954 + }, + "positionImpulse": { + "#": 1955 + }, + "positionPrev": { + "#": 1956 + }, + "region": { + "#": 1957 + }, + "render": { + "#": 1958 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1960 + }, + "vertices": { + "#": 1961 + } + }, + [ + { + "#": 1946 + }, + { + "#": 1947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1949 + }, + "min": { + "#": 1950 + } + }, + { + "x": 545, + "y": 242.73575476702598 + }, + { + "x": 510, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 222.3284840519903 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1959 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1967 + }, + "bounds": { + "#": 1970 + }, + "collisionFilter": { + "#": 1973 + }, + "constraintImpulse": { + "#": 1974 + }, + "density": 0.001, + "force": { + "#": 1975 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1976 + }, + "positionImpulse": { + "#": 1977 + }, + "positionPrev": { + "#": 1978 + }, + "region": { + "#": 1979 + }, + "render": { + "#": 1980 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1982 + }, + "vertices": { + "#": 1983 + } + }, + [ + { + "#": 1968 + }, + { + "#": 1969 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1971 + }, + "min": { + "#": 1972 + } + }, + { + "x": 580, + "y": 242.73575476702598 + }, + { + "x": 545, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 222.3284840519903 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1981 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 1989 + }, + "bounds": { + "#": 1992 + }, + "collisionFilter": { + "#": 1995 + }, + "constraintImpulse": { + "#": 1996 + }, + "density": 0.001, + "force": { + "#": 1997 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 1998 + }, + "positionImpulse": { + "#": 1999 + }, + "positionPrev": { + "#": 2000 + }, + "region": { + "#": 2001 + }, + "render": { + "#": 2002 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2004 + }, + "vertices": { + "#": 2005 + } + }, + [ + { + "#": 1990 + }, + { + "#": 1991 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1993 + }, + "min": { + "#": 1994 + } + }, + { + "x": 615, + "y": 242.73575476702598 + }, + { + "x": 580, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 222.3284840519903 + }, + { + "endCol": 12, + "endRow": 5, + "id": "12,12,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2003 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2011 + }, + "bounds": { + "#": 2014 + }, + "collisionFilter": { + "#": 2017 + }, + "constraintImpulse": { + "#": 2018 + }, + "density": 0.001, + "force": { + "#": 2019 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2020 + }, + "positionImpulse": { + "#": 2021 + }, + "positionPrev": { + "#": 2022 + }, + "region": { + "#": 2023 + }, + "render": { + "#": 2024 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2026 + }, + "vertices": { + "#": 2027 + } + }, + [ + { + "#": 2012 + }, + { + "#": 2013 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2015 + }, + "min": { + "#": 2016 + } + }, + { + "x": 650, + "y": 242.73575476702598 + }, + { + "x": 615, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 222.3284840519903 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2025 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2033 + }, + "bounds": { + "#": 2036 + }, + "collisionFilter": { + "#": 2039 + }, + "constraintImpulse": { + "#": 2040 + }, + "density": 0.001, + "force": { + "#": 2041 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2042 + }, + "positionImpulse": { + "#": 2043 + }, + "positionPrev": { + "#": 2044 + }, + "region": { + "#": 2045 + }, + "render": { + "#": 2046 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2048 + }, + "vertices": { + "#": 2049 + } + }, + [ + { + "#": 2034 + }, + { + "#": 2035 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2037 + }, + "min": { + "#": 2038 + } + }, + { + "x": 685, + "y": 242.73575476702598 + }, + { + "x": 650, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 222.3284840519903 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,4,5", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2047 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2055 + }, + "bounds": { + "#": 2058 + }, + "collisionFilter": { + "#": 2061 + }, + "constraintImpulse": { + "#": 2062 + }, + "density": 0.001, + "force": { + "#": 2063 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2064 + }, + "positionImpulse": { + "#": 2065 + }, + "positionPrev": { + "#": 2066 + }, + "region": { + "#": 2067 + }, + "render": { + "#": 2068 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2070 + }, + "vertices": { + "#": 2071 + } + }, + [ + { + "#": 2056 + }, + { + "#": 2057 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2059 + }, + "min": { + "#": 2060 + } + }, + { + "x": 720, + "y": 242.73575476702598 + }, + { + "x": 685, + "y": 207.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 222.3284840519903 + }, + { + "endCol": 15, + "endRow": 5, + "id": "14,15,4,5", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2069 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + }, + { + "#": 2075 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 207.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 242.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 242.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2077 + }, + "bounds": { + "#": 2080 + }, + "collisionFilter": { + "#": 2083 + }, + "constraintImpulse": { + "#": 2084 + }, + "density": 0.001, + "force": { + "#": 2085 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2086 + }, + "positionImpulse": { + "#": 2087 + }, + "positionPrev": { + "#": 2088 + }, + "region": { + "#": 2089 + }, + "render": { + "#": 2090 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2092 + }, + "vertices": { + "#": 2093 + } + }, + [ + { + "#": 2078 + }, + { + "#": 2079 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2081 + }, + "min": { + "#": 2082 + } + }, + { + "x": 125, + "y": 280.7328489595171 + }, + { + "x": 90, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 107.5, + "y": 257.418307529446 + }, + { + "endCol": 2, + "endRow": 5, + "id": "1,2,5,5", + "startCol": 1, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2091 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2099 + }, + "bounds": { + "#": 2102 + }, + "collisionFilter": { + "#": 2105 + }, + "constraintImpulse": { + "#": 2106 + }, + "density": 0.001, + "force": { + "#": 2107 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2108 + }, + "positionImpulse": { + "#": 2109 + }, + "positionPrev": { + "#": 2110 + }, + "region": { + "#": 2111 + }, + "render": { + "#": 2112 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2114 + }, + "vertices": { + "#": 2115 + } + }, + [ + { + "#": 2100 + }, + { + "#": 2101 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2103 + }, + "min": { + "#": 2104 + } + }, + { + "x": 160, + "y": 280.7328489595171 + }, + { + "x": 125, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 142.5, + "y": 257.418307529446 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,5,5", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2113 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2121 + }, + "bounds": { + "#": 2124 + }, + "collisionFilter": { + "#": 2127 + }, + "constraintImpulse": { + "#": 2128 + }, + "density": 0.001, + "force": { + "#": 2129 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2130 + }, + "positionImpulse": { + "#": 2131 + }, + "positionPrev": { + "#": 2132 + }, + "region": { + "#": 2133 + }, + "render": { + "#": 2134 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2136 + }, + "vertices": { + "#": 2137 + } + }, + [ + { + "#": 2122 + }, + { + "#": 2123 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2125 + }, + "min": { + "#": 2126 + } + }, + { + "x": 195, + "y": 280.7328489595171 + }, + { + "x": 160, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 177.5, + "y": 257.418307529446 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,5,5", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2135 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2143 + }, + "bounds": { + "#": 2146 + }, + "collisionFilter": { + "#": 2149 + }, + "constraintImpulse": { + "#": 2150 + }, + "density": 0.001, + "force": { + "#": 2151 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2152 + }, + "positionImpulse": { + "#": 2153 + }, + "positionPrev": { + "#": 2154 + }, + "region": { + "#": 2155 + }, + "render": { + "#": 2156 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2158 + }, + "vertices": { + "#": 2159 + } + }, + [ + { + "#": 2144 + }, + { + "#": 2145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2147 + }, + "min": { + "#": 2148 + } + }, + { + "x": 230, + "y": 280.7328489595171 + }, + { + "x": 195, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 212.5, + "y": 257.418307529446 + }, + { + "endCol": 4, + "endRow": 5, + "id": "4,4,5,5", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2157 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2165 + }, + "bounds": { + "#": 2168 + }, + "collisionFilter": { + "#": 2171 + }, + "constraintImpulse": { + "#": 2172 + }, + "density": 0.001, + "force": { + "#": 2173 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2174 + }, + "positionImpulse": { + "#": 2175 + }, + "positionPrev": { + "#": 2176 + }, + "region": { + "#": 2177 + }, + "render": { + "#": 2178 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2180 + }, + "vertices": { + "#": 2181 + } + }, + [ + { + "#": 2166 + }, + { + "#": 2167 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2169 + }, + "min": { + "#": 2170 + } + }, + { + "x": 265, + "y": 280.7328489595171 + }, + { + "x": 230, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 247.5, + "y": 257.418307529446 + }, + { + "endCol": 5, + "endRow": 5, + "id": "4,5,5,5", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2179 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2187 + }, + "bounds": { + "#": 2190 + }, + "collisionFilter": { + "#": 2193 + }, + "constraintImpulse": { + "#": 2194 + }, + "density": 0.001, + "force": { + "#": 2195 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2196 + }, + "positionImpulse": { + "#": 2197 + }, + "positionPrev": { + "#": 2198 + }, + "region": { + "#": 2199 + }, + "render": { + "#": 2200 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2202 + }, + "vertices": { + "#": 2203 + } + }, + [ + { + "#": 2188 + }, + { + "#": 2189 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2191 + }, + "min": { + "#": 2192 + } + }, + { + "x": 300, + "y": 280.7328489595171 + }, + { + "x": 265, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 282.5, + "y": 257.418307529446 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,5,5", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2201 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2209 + }, + "bounds": { + "#": 2212 + }, + "collisionFilter": { + "#": 2215 + }, + "constraintImpulse": { + "#": 2216 + }, + "density": 0.001, + "force": { + "#": 2217 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2218 + }, + "positionImpulse": { + "#": 2219 + }, + "positionPrev": { + "#": 2220 + }, + "region": { + "#": 2221 + }, + "render": { + "#": 2222 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2224 + }, + "vertices": { + "#": 2225 + } + }, + [ + { + "#": 2210 + }, + { + "#": 2211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2213 + }, + "min": { + "#": 2214 + } + }, + { + "x": 335, + "y": 280.7328489595171 + }, + { + "x": 300, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 317.5, + "y": 257.418307529446 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,5,5", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2223 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2231 + }, + "bounds": { + "#": 2234 + }, + "collisionFilter": { + "#": 2237 + }, + "constraintImpulse": { + "#": 2238 + }, + "density": 0.001, + "force": { + "#": 2239 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2240 + }, + "positionImpulse": { + "#": 2241 + }, + "positionPrev": { + "#": 2242 + }, + "region": { + "#": 2243 + }, + "render": { + "#": 2244 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2246 + }, + "vertices": { + "#": 2247 + } + }, + [ + { + "#": 2232 + }, + { + "#": 2233 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2235 + }, + "min": { + "#": 2236 + } + }, + { + "x": 370, + "y": 280.7328489595171 + }, + { + "x": 335, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 352.5, + "y": 257.418307529446 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,5,5", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2245 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2253 + }, + "bounds": { + "#": 2256 + }, + "collisionFilter": { + "#": 2259 + }, + "constraintImpulse": { + "#": 2260 + }, + "density": 0.001, + "force": { + "#": 2261 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2262 + }, + "positionImpulse": { + "#": 2263 + }, + "positionPrev": { + "#": 2264 + }, + "region": { + "#": 2265 + }, + "render": { + "#": 2266 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2268 + }, + "vertices": { + "#": 2269 + } + }, + [ + { + "#": 2254 + }, + { + "#": 2255 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2257 + }, + "min": { + "#": 2258 + } + }, + { + "x": 405, + "y": 280.7328489595171 + }, + { + "x": 370, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 387.5, + "y": 257.418307529446 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,5,5", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2267 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2275 + }, + "bounds": { + "#": 2278 + }, + "collisionFilter": { + "#": 2281 + }, + "constraintImpulse": { + "#": 2282 + }, + "density": 0.001, + "force": { + "#": 2283 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2284 + }, + "positionImpulse": { + "#": 2285 + }, + "positionPrev": { + "#": 2286 + }, + "region": { + "#": 2287 + }, + "render": { + "#": 2288 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2290 + }, + "vertices": { + "#": 2291 + } + }, + [ + { + "#": 2276 + }, + { + "#": 2277 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2279 + }, + "min": { + "#": 2280 + } + }, + { + "x": 440, + "y": 280.7328489595171 + }, + { + "x": 405, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 422.5, + "y": 257.418307529446 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2289 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2297 + }, + "bounds": { + "#": 2300 + }, + "collisionFilter": { + "#": 2303 + }, + "constraintImpulse": { + "#": 2304 + }, + "density": 0.001, + "force": { + "#": 2305 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2306 + }, + "positionImpulse": { + "#": 2307 + }, + "positionPrev": { + "#": 2308 + }, + "region": { + "#": 2309 + }, + "render": { + "#": 2310 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2312 + }, + "vertices": { + "#": 2313 + } + }, + [ + { + "#": 2298 + }, + { + "#": 2299 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2301 + }, + "min": { + "#": 2302 + } + }, + { + "x": 475, + "y": 280.7328489595171 + }, + { + "x": 440, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 457.5, + "y": 257.418307529446 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,5,5", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2311 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2319 + }, + "bounds": { + "#": 2322 + }, + "collisionFilter": { + "#": 2325 + }, + "constraintImpulse": { + "#": 2326 + }, + "density": 0.001, + "force": { + "#": 2327 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2328 + }, + "positionImpulse": { + "#": 2329 + }, + "positionPrev": { + "#": 2330 + }, + "region": { + "#": 2331 + }, + "render": { + "#": 2332 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2334 + }, + "vertices": { + "#": 2335 + } + }, + [ + { + "#": 2320 + }, + { + "#": 2321 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2323 + }, + "min": { + "#": 2324 + } + }, + { + "x": 510, + "y": 280.7328489595171 + }, + { + "x": 475, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 492.5, + "y": 257.418307529446 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,5,5", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2333 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2341 + }, + "bounds": { + "#": 2344 + }, + "collisionFilter": { + "#": 2347 + }, + "constraintImpulse": { + "#": 2348 + }, + "density": 0.001, + "force": { + "#": 2349 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2350 + }, + "positionImpulse": { + "#": 2351 + }, + "positionPrev": { + "#": 2352 + }, + "region": { + "#": 2353 + }, + "render": { + "#": 2354 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2356 + }, + "vertices": { + "#": 2357 + } + }, + [ + { + "#": 2342 + }, + { + "#": 2343 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2345 + }, + "min": { + "#": 2346 + } + }, + { + "x": 545, + "y": 280.7328489595171 + }, + { + "x": 510, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 527.5, + "y": 257.418307529446 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2355 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2363 + }, + "bounds": { + "#": 2366 + }, + "collisionFilter": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "density": 0.001, + "force": { + "#": 2371 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 108, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2372 + }, + "positionImpulse": { + "#": 2373 + }, + "positionPrev": { + "#": 2374 + }, + "region": { + "#": 2375 + }, + "render": { + "#": 2376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2378 + }, + "vertices": { + "#": 2379 + } + }, + [ + { + "#": 2364 + }, + { + "#": 2365 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2367 + }, + "min": { + "#": 2368 + } + }, + { + "x": 580, + "y": 280.7328489595171 + }, + { + "x": 545, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 562.5, + "y": 257.418307529446 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,5,5", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2377 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2385 + }, + "bounds": { + "#": 2388 + }, + "collisionFilter": { + "#": 2391 + }, + "constraintImpulse": { + "#": 2392 + }, + "density": 0.001, + "force": { + "#": 2393 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2394 + }, + "positionImpulse": { + "#": 2395 + }, + "positionPrev": { + "#": 2396 + }, + "region": { + "#": 2397 + }, + "render": { + "#": 2398 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2400 + }, + "vertices": { + "#": 2401 + } + }, + [ + { + "#": 2386 + }, + { + "#": 2387 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2389 + }, + "min": { + "#": 2390 + } + }, + { + "x": 615, + "y": 280.7328489595171 + }, + { + "x": 580, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 597.5, + "y": 257.418307529446 + }, + { + "endCol": 12, + "endRow": 5, + "id": "12,12,5,5", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2399 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2407 + }, + "bounds": { + "#": 2410 + }, + "collisionFilter": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "density": 0.001, + "force": { + "#": 2415 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 110, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2416 + }, + "positionImpulse": { + "#": 2417 + }, + "positionPrev": { + "#": 2418 + }, + "region": { + "#": 2419 + }, + "render": { + "#": 2420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2422 + }, + "vertices": { + "#": 2423 + } + }, + [ + { + "#": 2408 + }, + { + "#": 2409 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2411 + }, + "min": { + "#": 2412 + } + }, + { + "x": 650, + "y": 280.7328489595171 + }, + { + "x": 615, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 632.5, + "y": 257.418307529446 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,5,5", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2421 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2429 + }, + "bounds": { + "#": 2432 + }, + "collisionFilter": { + "#": 2435 + }, + "constraintImpulse": { + "#": 2436 + }, + "density": 0.001, + "force": { + "#": 2437 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 111, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2438 + }, + "positionImpulse": { + "#": 2439 + }, + "positionPrev": { + "#": 2440 + }, + "region": { + "#": 2441 + }, + "render": { + "#": 2442 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2444 + }, + "vertices": { + "#": 2445 + } + }, + [ + { + "#": 2430 + }, + { + "#": 2431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2433 + }, + "min": { + "#": 2434 + } + }, + { + "x": 685, + "y": 280.7328489595171 + }, + { + "x": 650, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 667.5, + "y": 257.418307529446 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,5,5", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2443 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2451 + }, + "bounds": { + "#": 2454 + }, + "collisionFilter": { + "#": 2457 + }, + "constraintImpulse": { + "#": 2458 + }, + "density": 0.001, + "force": { + "#": 2459 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2460 + }, + "positionImpulse": { + "#": 2461 + }, + "positionPrev": { + "#": 2462 + }, + "region": { + "#": 2463 + }, + "render": { + "#": 2464 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2466 + }, + "vertices": { + "#": 2467 + } + }, + [ + { + "#": 2452 + }, + { + "#": 2453 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2455 + }, + "min": { + "#": 2456 + } + }, + { + "x": 720, + "y": 280.7328489595171 + }, + { + "x": 685, + "y": 242.8255782444816 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 260.3255782444816 + }, + { + "x": 0, + "y": 0.004360634609635663 + }, + { + "x": 702.5, + "y": 257.418307529446 + }, + { + "endCol": 15, + "endRow": 5, + "id": "14,15,5,5", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2465 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 242.8255782444816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 277.8255782444815 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 277.8255782444815 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2473 + }, + "bounds": { + "#": 2476 + }, + "collisionFilter": { + "#": 2479 + }, + "constraintImpulse": { + "#": 2480 + }, + "density": 0.001, + "force": { + "#": 2481 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 113, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2482 + }, + "positionImpulse": { + "#": 2483 + }, + "positionPrev": { + "#": 2484 + }, + "region": { + "#": 2485 + }, + "render": { + "#": 2486 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2488 + }, + "vertices": { + "#": 2489 + } + }, + [ + { + "#": 2474 + }, + { + "#": 2475 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2477 + }, + "min": { + "#": 2478 + } + }, + { + "x": 125, + "y": 315.682851035186 + }, + { + "x": 90, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 107.5, + "y": 292.36830960511463 + }, + { + "endCol": 2, + "endRow": 6, + "id": "1,2,5,6", + "startCol": 1, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2487 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2495 + }, + "bounds": { + "#": 2498 + }, + "collisionFilter": { + "#": 2501 + }, + "constraintImpulse": { + "#": 2502 + }, + "density": 0.001, + "force": { + "#": 2503 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 114, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2504 + }, + "positionImpulse": { + "#": 2505 + }, + "positionPrev": { + "#": 2506 + }, + "region": { + "#": 2507 + }, + "render": { + "#": 2508 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2510 + }, + "vertices": { + "#": 2511 + } + }, + [ + { + "#": 2496 + }, + { + "#": 2497 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2499 + }, + "min": { + "#": 2500 + } + }, + { + "x": 160, + "y": 315.682851035186 + }, + { + "x": 125, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 142.5, + "y": 292.36830960511463 + }, + { + "endCol": 3, + "endRow": 6, + "id": "2,3,5,6", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2509 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2517 + }, + "bounds": { + "#": 2520 + }, + "collisionFilter": { + "#": 2523 + }, + "constraintImpulse": { + "#": 2524 + }, + "density": 0.001, + "force": { + "#": 2525 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2526 + }, + "positionImpulse": { + "#": 2527 + }, + "positionPrev": { + "#": 2528 + }, + "region": { + "#": 2529 + }, + "render": { + "#": 2530 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2532 + }, + "vertices": { + "#": 2533 + } + }, + [ + { + "#": 2518 + }, + { + "#": 2519 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2521 + }, + "min": { + "#": 2522 + } + }, + { + "x": 195, + "y": 315.682851035186 + }, + { + "x": 160, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 177.5, + "y": 292.36830960511463 + }, + { + "endCol": 4, + "endRow": 6, + "id": "3,4,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2531 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2539 + }, + "bounds": { + "#": 2542 + }, + "collisionFilter": { + "#": 2545 + }, + "constraintImpulse": { + "#": 2546 + }, + "density": 0.001, + "force": { + "#": 2547 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 116, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2548 + }, + "positionImpulse": { + "#": 2549 + }, + "positionPrev": { + "#": 2550 + }, + "region": { + "#": 2551 + }, + "render": { + "#": 2552 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2554 + }, + "vertices": { + "#": 2555 + } + }, + [ + { + "#": 2540 + }, + { + "#": 2541 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2543 + }, + "min": { + "#": 2544 + } + }, + { + "x": 230, + "y": 315.682851035186 + }, + { + "x": 195, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 212.5, + "y": 292.36830960511463 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2553 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2561 + }, + "bounds": { + "#": 2564 + }, + "collisionFilter": { + "#": 2567 + }, + "constraintImpulse": { + "#": 2568 + }, + "density": 0.001, + "force": { + "#": 2569 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 117, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2570 + }, + "positionImpulse": { + "#": 2571 + }, + "positionPrev": { + "#": 2572 + }, + "region": { + "#": 2573 + }, + "render": { + "#": 2574 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2576 + }, + "vertices": { + "#": 2577 + } + }, + [ + { + "#": 2562 + }, + { + "#": 2563 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2565 + }, + "min": { + "#": 2566 + } + }, + { + "x": 265, + "y": 315.682851035186 + }, + { + "x": 230, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 247.5, + "y": 292.36830960511463 + }, + { + "endCol": 5, + "endRow": 6, + "id": "4,5,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2575 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2583 + }, + "bounds": { + "#": 2586 + }, + "collisionFilter": { + "#": 2589 + }, + "constraintImpulse": { + "#": 2590 + }, + "density": 0.001, + "force": { + "#": 2591 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2592 + }, + "positionImpulse": { + "#": 2593 + }, + "positionPrev": { + "#": 2594 + }, + "region": { + "#": 2595 + }, + "render": { + "#": 2596 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2598 + }, + "vertices": { + "#": 2599 + } + }, + [ + { + "#": 2584 + }, + { + "#": 2585 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2587 + }, + "min": { + "#": 2588 + } + }, + { + "x": 300, + "y": 315.682851035186 + }, + { + "x": 265, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 282.5, + "y": 292.36830960511463 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2597 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2605 + }, + "bounds": { + "#": 2608 + }, + "collisionFilter": { + "#": 2611 + }, + "constraintImpulse": { + "#": 2612 + }, + "density": 0.001, + "force": { + "#": 2613 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 119, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2614 + }, + "positionImpulse": { + "#": 2615 + }, + "positionPrev": { + "#": 2616 + }, + "region": { + "#": 2617 + }, + "render": { + "#": 2618 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2620 + }, + "vertices": { + "#": 2621 + } + }, + [ + { + "#": 2606 + }, + { + "#": 2607 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2609 + }, + "min": { + "#": 2610 + } + }, + { + "x": 335, + "y": 315.682851035186 + }, + { + "x": 300, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 317.5, + "y": 292.36830960511463 + }, + { + "endCol": 6, + "endRow": 6, + "id": "6,6,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2619 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2627 + }, + "bounds": { + "#": 2630 + }, + "collisionFilter": { + "#": 2633 + }, + "constraintImpulse": { + "#": 2634 + }, + "density": 0.001, + "force": { + "#": 2635 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 120, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2636 + }, + "positionImpulse": { + "#": 2637 + }, + "positionPrev": { + "#": 2638 + }, + "region": { + "#": 2639 + }, + "render": { + "#": 2640 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2642 + }, + "vertices": { + "#": 2643 + } + }, + [ + { + "#": 2628 + }, + { + "#": 2629 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2631 + }, + "min": { + "#": 2632 + } + }, + { + "x": 370, + "y": 315.682851035186 + }, + { + "x": 335, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 352.5, + "y": 292.36830960511463 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2641 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2649 + }, + "bounds": { + "#": 2652 + }, + "collisionFilter": { + "#": 2655 + }, + "constraintImpulse": { + "#": 2656 + }, + "density": 0.001, + "force": { + "#": 2657 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2658 + }, + "positionImpulse": { + "#": 2659 + }, + "positionPrev": { + "#": 2660 + }, + "region": { + "#": 2661 + }, + "render": { + "#": 2662 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2664 + }, + "vertices": { + "#": 2665 + } + }, + [ + { + "#": 2650 + }, + { + "#": 2651 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2653 + }, + "min": { + "#": 2654 + } + }, + { + "x": 405, + "y": 315.682851035186 + }, + { + "x": 370, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 387.5, + "y": 292.36830960511463 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2663 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2671 + }, + "bounds": { + "#": 2674 + }, + "collisionFilter": { + "#": 2677 + }, + "constraintImpulse": { + "#": 2678 + }, + "density": 0.001, + "force": { + "#": 2679 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 122, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2680 + }, + "positionImpulse": { + "#": 2681 + }, + "positionPrev": { + "#": 2682 + }, + "region": { + "#": 2683 + }, + "render": { + "#": 2684 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2686 + }, + "vertices": { + "#": 2687 + } + }, + [ + { + "#": 2672 + }, + { + "#": 2673 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2675 + }, + "min": { + "#": 2676 + } + }, + { + "x": 440, + "y": 315.682851035186 + }, + { + "x": 405, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 422.5, + "y": 292.36830960511463 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2685 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2693 + }, + "bounds": { + "#": 2696 + }, + "collisionFilter": { + "#": 2699 + }, + "constraintImpulse": { + "#": 2700 + }, + "density": 0.001, + "force": { + "#": 2701 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 123, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2702 + }, + "positionImpulse": { + "#": 2703 + }, + "positionPrev": { + "#": 2704 + }, + "region": { + "#": 2705 + }, + "render": { + "#": 2706 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2708 + }, + "vertices": { + "#": 2709 + } + }, + [ + { + "#": 2694 + }, + { + "#": 2695 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2697 + }, + "min": { + "#": 2698 + } + }, + { + "x": 475, + "y": 315.682851035186 + }, + { + "x": 440, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 457.5, + "y": 292.36830960511463 + }, + { + "endCol": 9, + "endRow": 6, + "id": "9,9,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2707 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2715 + }, + "bounds": { + "#": 2718 + }, + "collisionFilter": { + "#": 2721 + }, + "constraintImpulse": { + "#": 2722 + }, + "density": 0.001, + "force": { + "#": 2723 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2724 + }, + "positionImpulse": { + "#": 2725 + }, + "positionPrev": { + "#": 2726 + }, + "region": { + "#": 2727 + }, + "render": { + "#": 2728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2730 + }, + "vertices": { + "#": 2731 + } + }, + [ + { + "#": 2716 + }, + { + "#": 2717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2719 + }, + "min": { + "#": 2720 + } + }, + { + "x": 510, + "y": 315.682851035186 + }, + { + "x": 475, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 492.5, + "y": 292.36830960511463 + }, + { + "endCol": 10, + "endRow": 6, + "id": "9,10,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2729 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2737 + }, + "bounds": { + "#": 2740 + }, + "collisionFilter": { + "#": 2743 + }, + "constraintImpulse": { + "#": 2744 + }, + "density": 0.001, + "force": { + "#": 2745 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 125, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2746 + }, + "positionImpulse": { + "#": 2747 + }, + "positionPrev": { + "#": 2748 + }, + "region": { + "#": 2749 + }, + "render": { + "#": 2750 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2752 + }, + "vertices": { + "#": 2753 + } + }, + [ + { + "#": 2738 + }, + { + "#": 2739 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2741 + }, + "min": { + "#": 2742 + } + }, + { + "x": 545, + "y": 315.682851035186 + }, + { + "x": 510, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 527.5, + "y": 292.36830960511463 + }, + { + "endCol": 11, + "endRow": 6, + "id": "10,11,5,6", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2751 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2759 + }, + "bounds": { + "#": 2762 + }, + "collisionFilter": { + "#": 2765 + }, + "constraintImpulse": { + "#": 2766 + }, + "density": 0.001, + "force": { + "#": 2767 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 126, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2768 + }, + "positionImpulse": { + "#": 2769 + }, + "positionPrev": { + "#": 2770 + }, + "region": { + "#": 2771 + }, + "render": { + "#": 2772 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2774 + }, + "vertices": { + "#": 2775 + } + }, + [ + { + "#": 2760 + }, + { + "#": 2761 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2763 + }, + "min": { + "#": 2764 + } + }, + { + "x": 580, + "y": 315.682851035186 + }, + { + "x": 545, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 562.5, + "y": 292.36830960511463 + }, + { + "endCol": 12, + "endRow": 6, + "id": "11,12,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2773 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2781 + }, + "bounds": { + "#": 2784 + }, + "collisionFilter": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "density": 0.001, + "force": { + "#": 2789 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2790 + }, + "positionImpulse": { + "#": 2791 + }, + "positionPrev": { + "#": 2792 + }, + "region": { + "#": 2793 + }, + "render": { + "#": 2794 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2796 + }, + "vertices": { + "#": 2797 + } + }, + [ + { + "#": 2782 + }, + { + "#": 2783 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2785 + }, + "min": { + "#": 2786 + } + }, + { + "x": 615, + "y": 315.682851035186 + }, + { + "x": 580, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 597.5, + "y": 292.36830960511463 + }, + { + "endCol": 12, + "endRow": 6, + "id": "12,12,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2795 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2803 + }, + "bounds": { + "#": 2806 + }, + "collisionFilter": { + "#": 2809 + }, + "constraintImpulse": { + "#": 2810 + }, + "density": 0.001, + "force": { + "#": 2811 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 128, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2812 + }, + "positionImpulse": { + "#": 2813 + }, + "positionPrev": { + "#": 2814 + }, + "region": { + "#": 2815 + }, + "render": { + "#": 2816 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2818 + }, + "vertices": { + "#": 2819 + } + }, + [ + { + "#": 2804 + }, + { + "#": 2805 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2807 + }, + "min": { + "#": 2808 + } + }, + { + "x": 650, + "y": 315.682851035186 + }, + { + "x": 615, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 632.5, + "y": 292.36830960511463 + }, + { + "endCol": 13, + "endRow": 6, + "id": "12,13,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2817 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2825 + }, + "bounds": { + "#": 2828 + }, + "collisionFilter": { + "#": 2831 + }, + "constraintImpulse": { + "#": 2832 + }, + "density": 0.001, + "force": { + "#": 2833 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 129, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2834 + }, + "positionImpulse": { + "#": 2835 + }, + "positionPrev": { + "#": 2836 + }, + "region": { + "#": 2837 + }, + "render": { + "#": 2838 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2840 + }, + "vertices": { + "#": 2841 + } + }, + [ + { + "#": 2826 + }, + { + "#": 2827 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2829 + }, + "min": { + "#": 2830 + } + }, + { + "x": 685, + "y": 315.682851035186 + }, + { + "x": 650, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 667.5, + "y": 292.36830960511463 + }, + { + "endCol": 14, + "endRow": 6, + "id": "13,14,5,6", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2839 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2847 + }, + "bounds": { + "#": 2850 + }, + "collisionFilter": { + "#": 2853 + }, + "constraintImpulse": { + "#": 2854 + }, + "density": 0.001, + "force": { + "#": 2855 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2856 + }, + "positionImpulse": { + "#": 2857 + }, + "positionPrev": { + "#": 2858 + }, + "region": { + "#": 2859 + }, + "render": { + "#": 2860 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2862 + }, + "vertices": { + "#": 2863 + } + }, + [ + { + "#": 2848 + }, + { + "#": 2849 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2851 + }, + "min": { + "#": 2852 + } + }, + { + "x": 720, + "y": 315.682851035186 + }, + { + "x": 685, + "y": 277.7755803201503 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 295.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191933044 + }, + { + "x": 702.5, + "y": 292.36830960511463 + }, + { + "endCol": 15, + "endRow": 6, + "id": "14,15,5,6", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2861 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 277.7755803201503 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 312.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 312.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2869 + }, + "bounds": { + "#": 2872 + }, + "collisionFilter": { + "#": 2875 + }, + "constraintImpulse": { + "#": 2876 + }, + "density": 0.001, + "force": { + "#": 2877 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 131, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2878 + }, + "positionImpulse": { + "#": 2879 + }, + "positionPrev": { + "#": 2880 + }, + "region": { + "#": 2881 + }, + "render": { + "#": 2882 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2884 + }, + "vertices": { + "#": 2885 + } + }, + [ + { + "#": 2870 + }, + { + "#": 2871 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2873 + }, + "min": { + "#": 2874 + } + }, + { + "x": 125, + "y": 350.6328531108548 + }, + { + "x": 90, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 107.5, + "y": 327.31831168078344 + }, + { + "endCol": 2, + "endRow": 7, + "id": "1,2,6,7", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2883 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2891 + }, + "bounds": { + "#": 2894 + }, + "collisionFilter": { + "#": 2897 + }, + "constraintImpulse": { + "#": 2898 + }, + "density": 0.001, + "force": { + "#": 2899 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 132, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2900 + }, + "positionImpulse": { + "#": 2901 + }, + "positionPrev": { + "#": 2902 + }, + "region": { + "#": 2903 + }, + "render": { + "#": 2904 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2906 + }, + "vertices": { + "#": 2907 + } + }, + [ + { + "#": 2892 + }, + { + "#": 2893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2895 + }, + "min": { + "#": 2896 + } + }, + { + "x": 160, + "y": 350.6328531108548 + }, + { + "x": 125, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 142.5, + "y": 327.31831168078344 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2905 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2913 + }, + "bounds": { + "#": 2916 + }, + "collisionFilter": { + "#": 2919 + }, + "constraintImpulse": { + "#": 2920 + }, + "density": 0.001, + "force": { + "#": 2921 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2922 + }, + "positionImpulse": { + "#": 2923 + }, + "positionPrev": { + "#": 2924 + }, + "region": { + "#": 2925 + }, + "render": { + "#": 2926 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2928 + }, + "vertices": { + "#": 2929 + } + }, + [ + { + "#": 2914 + }, + { + "#": 2915 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2917 + }, + "min": { + "#": 2918 + } + }, + { + "x": 195, + "y": 350.6328531108548 + }, + { + "x": 160, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 177.5, + "y": 327.31831168078344 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2927 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2935 + }, + "bounds": { + "#": 2938 + }, + "collisionFilter": { + "#": 2941 + }, + "constraintImpulse": { + "#": 2942 + }, + "density": 0.001, + "force": { + "#": 2943 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 134, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2944 + }, + "positionImpulse": { + "#": 2945 + }, + "positionPrev": { + "#": 2946 + }, + "region": { + "#": 2947 + }, + "render": { + "#": 2948 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2950 + }, + "vertices": { + "#": 2951 + } + }, + [ + { + "#": 2936 + }, + { + "#": 2937 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2939 + }, + "min": { + "#": 2940 + } + }, + { + "x": 230, + "y": 350.6328531108548 + }, + { + "x": 195, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 212.5, + "y": 327.31831168078344 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2949 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2957 + }, + "bounds": { + "#": 2960 + }, + "collisionFilter": { + "#": 2963 + }, + "constraintImpulse": { + "#": 2964 + }, + "density": 0.001, + "force": { + "#": 2965 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 135, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2966 + }, + "positionImpulse": { + "#": 2967 + }, + "positionPrev": { + "#": 2968 + }, + "region": { + "#": 2969 + }, + "render": { + "#": 2970 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2972 + }, + "vertices": { + "#": 2973 + } + }, + [ + { + "#": 2958 + }, + { + "#": 2959 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2961 + }, + "min": { + "#": 2962 + } + }, + { + "x": 265, + "y": 350.6328531108548 + }, + { + "x": 230, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 247.5, + "y": 327.31831168078344 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2971 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 2979 + }, + "bounds": { + "#": 2982 + }, + "collisionFilter": { + "#": 2985 + }, + "constraintImpulse": { + "#": 2986 + }, + "density": 0.001, + "force": { + "#": 2987 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 2988 + }, + "positionImpulse": { + "#": 2989 + }, + "positionPrev": { + "#": 2990 + }, + "region": { + "#": 2991 + }, + "render": { + "#": 2992 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2994 + }, + "vertices": { + "#": 2995 + } + }, + [ + { + "#": 2980 + }, + { + "#": 2981 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2983 + }, + "min": { + "#": 2984 + } + }, + { + "x": 300, + "y": 350.6328531108548 + }, + { + "x": 265, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 282.5, + "y": 327.31831168078344 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2993 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3001 + }, + "bounds": { + "#": 3004 + }, + "collisionFilter": { + "#": 3007 + }, + "constraintImpulse": { + "#": 3008 + }, + "density": 0.001, + "force": { + "#": 3009 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 137, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3010 + }, + "positionImpulse": { + "#": 3011 + }, + "positionPrev": { + "#": 3012 + }, + "region": { + "#": 3013 + }, + "render": { + "#": 3014 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3016 + }, + "vertices": { + "#": 3017 + } + }, + [ + { + "#": 3002 + }, + { + "#": 3003 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3005 + }, + "min": { + "#": 3006 + } + }, + { + "x": 335, + "y": 350.6328531108548 + }, + { + "x": 300, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 317.5, + "y": 327.31831168078344 + }, + { + "endCol": 6, + "endRow": 7, + "id": "6,6,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3015 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3023 + }, + "bounds": { + "#": 3026 + }, + "collisionFilter": { + "#": 3029 + }, + "constraintImpulse": { + "#": 3030 + }, + "density": 0.001, + "force": { + "#": 3031 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 138, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3032 + }, + "positionImpulse": { + "#": 3033 + }, + "positionPrev": { + "#": 3034 + }, + "region": { + "#": 3035 + }, + "render": { + "#": 3036 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3038 + }, + "vertices": { + "#": 3039 + } + }, + [ + { + "#": 3024 + }, + { + "#": 3025 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3027 + }, + "min": { + "#": 3028 + } + }, + { + "x": 370, + "y": 350.6328531108548 + }, + { + "x": 335, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 352.5, + "y": 327.31831168078344 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3037 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3040 + }, + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3045 + }, + "bounds": { + "#": 3048 + }, + "collisionFilter": { + "#": 3051 + }, + "constraintImpulse": { + "#": 3052 + }, + "density": 0.001, + "force": { + "#": 3053 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3054 + }, + "positionImpulse": { + "#": 3055 + }, + "positionPrev": { + "#": 3056 + }, + "region": { + "#": 3057 + }, + "render": { + "#": 3058 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3060 + }, + "vertices": { + "#": 3061 + } + }, + [ + { + "#": 3046 + }, + { + "#": 3047 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3049 + }, + "min": { + "#": 3050 + } + }, + { + "x": 405, + "y": 350.6328531108548 + }, + { + "x": 370, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 387.5, + "y": 327.31831168078344 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3059 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3062 + }, + { + "#": 3063 + }, + { + "#": 3064 + }, + { + "#": 3065 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3067 + }, + "bounds": { + "#": 3070 + }, + "collisionFilter": { + "#": 3073 + }, + "constraintImpulse": { + "#": 3074 + }, + "density": 0.001, + "force": { + "#": 3075 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 140, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3076 + }, + "positionImpulse": { + "#": 3077 + }, + "positionPrev": { + "#": 3078 + }, + "region": { + "#": 3079 + }, + "render": { + "#": 3080 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3082 + }, + "vertices": { + "#": 3083 + } + }, + [ + { + "#": 3068 + }, + { + "#": 3069 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3071 + }, + "min": { + "#": 3072 + } + }, + { + "x": 440, + "y": 350.6328531108548 + }, + { + "x": 405, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 422.5, + "y": 327.31831168078344 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3081 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + }, + { + "#": 3087 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3089 + }, + "bounds": { + "#": 3092 + }, + "collisionFilter": { + "#": 3095 + }, + "constraintImpulse": { + "#": 3096 + }, + "density": 0.001, + "force": { + "#": 3097 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 141, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3098 + }, + "positionImpulse": { + "#": 3099 + }, + "positionPrev": { + "#": 3100 + }, + "region": { + "#": 3101 + }, + "render": { + "#": 3102 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3104 + }, + "vertices": { + "#": 3105 + } + }, + [ + { + "#": 3090 + }, + { + "#": 3091 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3093 + }, + "min": { + "#": 3094 + } + }, + { + "x": 475, + "y": 350.6328531108548 + }, + { + "x": 440, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 457.5, + "y": 327.31831168078344 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3103 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3106 + }, + { + "#": 3107 + }, + { + "#": 3108 + }, + { + "#": 3109 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3111 + }, + "bounds": { + "#": 3114 + }, + "collisionFilter": { + "#": 3117 + }, + "constraintImpulse": { + "#": 3118 + }, + "density": 0.001, + "force": { + "#": 3119 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3120 + }, + "positionImpulse": { + "#": 3121 + }, + "positionPrev": { + "#": 3122 + }, + "region": { + "#": 3123 + }, + "render": { + "#": 3124 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3126 + }, + "vertices": { + "#": 3127 + } + }, + [ + { + "#": 3112 + }, + { + "#": 3113 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3115 + }, + "min": { + "#": 3116 + } + }, + { + "x": 510, + "y": 350.6328531108548 + }, + { + "x": 475, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 492.5, + "y": 327.31831168078344 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3125 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3133 + }, + "bounds": { + "#": 3136 + }, + "collisionFilter": { + "#": 3139 + }, + "constraintImpulse": { + "#": 3140 + }, + "density": 0.001, + "force": { + "#": 3141 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 143, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3142 + }, + "positionImpulse": { + "#": 3143 + }, + "positionPrev": { + "#": 3144 + }, + "region": { + "#": 3145 + }, + "render": { + "#": 3146 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3148 + }, + "vertices": { + "#": 3149 + } + }, + [ + { + "#": 3134 + }, + { + "#": 3135 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3137 + }, + "min": { + "#": 3138 + } + }, + { + "x": 545, + "y": 350.6328531108548 + }, + { + "x": 510, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 527.5, + "y": 327.31831168078344 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3147 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3155 + }, + "bounds": { + "#": 3158 + }, + "collisionFilter": { + "#": 3161 + }, + "constraintImpulse": { + "#": 3162 + }, + "density": 0.001, + "force": { + "#": 3163 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 144, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3164 + }, + "positionImpulse": { + "#": 3165 + }, + "positionPrev": { + "#": 3166 + }, + "region": { + "#": 3167 + }, + "render": { + "#": 3168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3170 + }, + "vertices": { + "#": 3171 + } + }, + [ + { + "#": 3156 + }, + { + "#": 3157 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3159 + }, + "min": { + "#": 3160 + } + }, + { + "x": 580, + "y": 350.6328531108548 + }, + { + "x": 545, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 562.5, + "y": 327.31831168078344 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,6,7", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3169 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3177 + }, + "bounds": { + "#": 3180 + }, + "collisionFilter": { + "#": 3183 + }, + "constraintImpulse": { + "#": 3184 + }, + "density": 0.001, + "force": { + "#": 3185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3186 + }, + "positionImpulse": { + "#": 3187 + }, + "positionPrev": { + "#": 3188 + }, + "region": { + "#": 3189 + }, + "render": { + "#": 3190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3192 + }, + "vertices": { + "#": 3193 + } + }, + [ + { + "#": 3178 + }, + { + "#": 3179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3181 + }, + "min": { + "#": 3182 + } + }, + { + "x": 615, + "y": 350.6328531108548 + }, + { + "x": 580, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 597.5, + "y": 327.31831168078344 + }, + { + "endCol": 12, + "endRow": 7, + "id": "12,12,6,7", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3191 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3199 + }, + "bounds": { + "#": 3202 + }, + "collisionFilter": { + "#": 3205 + }, + "constraintImpulse": { + "#": 3206 + }, + "density": 0.001, + "force": { + "#": 3207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 146, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3208 + }, + "positionImpulse": { + "#": 3209 + }, + "positionPrev": { + "#": 3210 + }, + "region": { + "#": 3211 + }, + "render": { + "#": 3212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3214 + }, + "vertices": { + "#": 3215 + } + }, + [ + { + "#": 3200 + }, + { + "#": 3201 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3203 + }, + "min": { + "#": 3204 + } + }, + { + "x": 650, + "y": 350.6328531108548 + }, + { + "x": 615, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 632.5, + "y": 327.31831168078344 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,6,7", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3213 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3221 + }, + "bounds": { + "#": 3224 + }, + "collisionFilter": { + "#": 3227 + }, + "constraintImpulse": { + "#": 3228 + }, + "density": 0.001, + "force": { + "#": 3229 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 147, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3230 + }, + "positionImpulse": { + "#": 3231 + }, + "positionPrev": { + "#": 3232 + }, + "region": { + "#": 3233 + }, + "render": { + "#": 3234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3236 + }, + "vertices": { + "#": 3237 + } + }, + [ + { + "#": 3222 + }, + { + "#": 3223 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3225 + }, + "min": { + "#": 3226 + } + }, + { + "x": 685, + "y": 350.6328531108548 + }, + { + "x": 650, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 667.5, + "y": 327.31831168078344 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,6,7", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3235 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3243 + }, + "bounds": { + "#": 3246 + }, + "collisionFilter": { + "#": 3249 + }, + "constraintImpulse": { + "#": 3250 + }, + "density": 0.001, + "force": { + "#": 3251 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3252 + }, + "positionImpulse": { + "#": 3253 + }, + "positionPrev": { + "#": 3254 + }, + "region": { + "#": 3255 + }, + "render": { + "#": 3256 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3258 + }, + "vertices": { + "#": 3259 + } + }, + [ + { + "#": 3244 + }, + { + "#": 3245 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3247 + }, + "min": { + "#": 3248 + } + }, + { + "x": 720, + "y": 350.6328531108548 + }, + { + "x": 685, + "y": 312.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 330.2255823958191 + }, + { + "x": 0, + "y": 0.004395227774355194 + }, + { + "x": 702.5, + "y": 327.31831168078344 + }, + { + "endCol": 15, + "endRow": 7, + "id": "14,15,6,7", + "startCol": 14, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3257 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 347.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 347.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3265 + }, + "bounds": { + "#": 3268 + }, + "collisionFilter": { + "#": 3271 + }, + "constraintImpulse": { + "#": 3272 + }, + "density": 0.001, + "force": { + "#": 3273 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 149, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3274 + }, + "positionImpulse": { + "#": 3275 + }, + "positionPrev": { + "#": 3276 + }, + "region": { + "#": 3277 + }, + "render": { + "#": 3278 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3280 + }, + "vertices": { + "#": 3281 + } + }, + [ + { + "#": 3266 + }, + { + "#": 3267 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3269 + }, + "min": { + "#": 3270 + } + }, + { + "x": 125, + "y": 382.73575476702496 + }, + { + "x": 90, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 362.3284840519894 + }, + { + "endCol": 2, + "endRow": 7, + "id": "1,2,7,7", + "startCol": 1, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3279 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3287 + }, + "bounds": { + "#": 3290 + }, + "collisionFilter": { + "#": 3293 + }, + "constraintImpulse": { + "#": 3294 + }, + "density": 0.001, + "force": { + "#": 3295 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 150, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3296 + }, + "positionImpulse": { + "#": 3297 + }, + "positionPrev": { + "#": 3298 + }, + "region": { + "#": 3299 + }, + "render": { + "#": 3300 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3302 + }, + "vertices": { + "#": 3303 + } + }, + [ + { + "#": 3288 + }, + { + "#": 3289 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3291 + }, + "min": { + "#": 3292 + } + }, + { + "x": 160, + "y": 382.73575476702496 + }, + { + "x": 125, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 362.3284840519894 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,7,7", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3301 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3309 + }, + "bounds": { + "#": 3312 + }, + "collisionFilter": { + "#": 3315 + }, + "constraintImpulse": { + "#": 3316 + }, + "density": 0.001, + "force": { + "#": 3317 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3318 + }, + "positionImpulse": { + "#": 3319 + }, + "positionPrev": { + "#": 3320 + }, + "region": { + "#": 3321 + }, + "render": { + "#": 3322 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3324 + }, + "vertices": { + "#": 3325 + } + }, + [ + { + "#": 3310 + }, + { + "#": 3311 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3313 + }, + "min": { + "#": 3314 + } + }, + { + "x": 195, + "y": 382.73575476702496 + }, + { + "x": 160, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 362.3284840519894 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,7,7", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3323 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3331 + }, + "bounds": { + "#": 3334 + }, + "collisionFilter": { + "#": 3337 + }, + "constraintImpulse": { + "#": 3338 + }, + "density": 0.001, + "force": { + "#": 3339 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 152, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3340 + }, + "positionImpulse": { + "#": 3341 + }, + "positionPrev": { + "#": 3342 + }, + "region": { + "#": 3343 + }, + "render": { + "#": 3344 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3346 + }, + "vertices": { + "#": 3347 + } + }, + [ + { + "#": 3332 + }, + { + "#": 3333 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3335 + }, + "min": { + "#": 3336 + } + }, + { + "x": 230, + "y": 382.73575476702496 + }, + { + "x": 195, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 362.3284840519894 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3345 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3353 + }, + "bounds": { + "#": 3356 + }, + "collisionFilter": { + "#": 3359 + }, + "constraintImpulse": { + "#": 3360 + }, + "density": 0.001, + "force": { + "#": 3361 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 153, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3362 + }, + "positionImpulse": { + "#": 3363 + }, + "positionPrev": { + "#": 3364 + }, + "region": { + "#": 3365 + }, + "render": { + "#": 3366 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3368 + }, + "vertices": { + "#": 3369 + } + }, + [ + { + "#": 3354 + }, + { + "#": 3355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3357 + }, + "min": { + "#": 3358 + } + }, + { + "x": 265, + "y": 382.73575476702496 + }, + { + "x": 230, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 362.3284840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3367 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3375 + }, + "bounds": { + "#": 3378 + }, + "collisionFilter": { + "#": 3381 + }, + "constraintImpulse": { + "#": 3382 + }, + "density": 0.001, + "force": { + "#": 3383 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3384 + }, + "positionImpulse": { + "#": 3385 + }, + "positionPrev": { + "#": 3386 + }, + "region": { + "#": 3387 + }, + "render": { + "#": 3388 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3390 + }, + "vertices": { + "#": 3391 + } + }, + [ + { + "#": 3376 + }, + { + "#": 3377 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3379 + }, + "min": { + "#": 3380 + } + }, + { + "x": 300, + "y": 382.73575476702496 + }, + { + "x": 265, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 362.3284840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3389 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + }, + { + "#": 3395 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3397 + }, + "bounds": { + "#": 3400 + }, + "collisionFilter": { + "#": 3403 + }, + "constraintImpulse": { + "#": 3404 + }, + "density": 0.001, + "force": { + "#": 3405 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 155, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3406 + }, + "positionImpulse": { + "#": 3407 + }, + "positionPrev": { + "#": 3408 + }, + "region": { + "#": 3409 + }, + "render": { + "#": 3410 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3412 + }, + "vertices": { + "#": 3413 + } + }, + [ + { + "#": 3398 + }, + { + "#": 3399 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3401 + }, + "min": { + "#": 3402 + } + }, + { + "x": 335, + "y": 382.73575476702496 + }, + { + "x": 300, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 362.3284840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "6,6,7,7", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3411 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + }, + { + "#": 3417 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3419 + }, + "bounds": { + "#": 3422 + }, + "collisionFilter": { + "#": 3425 + }, + "constraintImpulse": { + "#": 3426 + }, + "density": 0.001, + "force": { + "#": 3427 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 156, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3428 + }, + "positionImpulse": { + "#": 3429 + }, + "positionPrev": { + "#": 3430 + }, + "region": { + "#": 3431 + }, + "render": { + "#": 3432 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3434 + }, + "vertices": { + "#": 3435 + } + }, + [ + { + "#": 3420 + }, + { + "#": 3421 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3423 + }, + "min": { + "#": 3424 + } + }, + { + "x": 370, + "y": 382.73575476702496 + }, + { + "x": 335, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 362.3284840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,7,7", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3433 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3441 + }, + "bounds": { + "#": 3444 + }, + "collisionFilter": { + "#": 3447 + }, + "constraintImpulse": { + "#": 3448 + }, + "density": 0.001, + "force": { + "#": 3449 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3450 + }, + "positionImpulse": { + "#": 3451 + }, + "positionPrev": { + "#": 3452 + }, + "region": { + "#": 3453 + }, + "render": { + "#": 3454 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3456 + }, + "vertices": { + "#": 3457 + } + }, + [ + { + "#": 3442 + }, + { + "#": 3443 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3445 + }, + "min": { + "#": 3446 + } + }, + { + "x": 405, + "y": 382.73575476702496 + }, + { + "x": 370, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 362.3284840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3455 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3463 + }, + "bounds": { + "#": 3466 + }, + "collisionFilter": { + "#": 3469 + }, + "constraintImpulse": { + "#": 3470 + }, + "density": 0.001, + "force": { + "#": 3471 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 158, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3472 + }, + "positionImpulse": { + "#": 3473 + }, + "positionPrev": { + "#": 3474 + }, + "region": { + "#": 3475 + }, + "render": { + "#": 3476 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3478 + }, + "vertices": { + "#": 3479 + } + }, + [ + { + "#": 3464 + }, + { + "#": 3465 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3467 + }, + "min": { + "#": 3468 + } + }, + { + "x": 440, + "y": 382.73575476702496 + }, + { + "x": 405, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 362.3284840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3477 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3485 + }, + "bounds": { + "#": 3488 + }, + "collisionFilter": { + "#": 3491 + }, + "constraintImpulse": { + "#": 3492 + }, + "density": 0.001, + "force": { + "#": 3493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 159, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3494 + }, + "positionImpulse": { + "#": 3495 + }, + "positionPrev": { + "#": 3496 + }, + "region": { + "#": 3497 + }, + "render": { + "#": 3498 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3500 + }, + "vertices": { + "#": 3501 + } + }, + [ + { + "#": 3486 + }, + { + "#": 3487 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3489 + }, + "min": { + "#": 3490 + } + }, + { + "x": 475, + "y": 382.73575476702496 + }, + { + "x": 440, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 362.3284840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3499 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3507 + }, + "bounds": { + "#": 3510 + }, + "collisionFilter": { + "#": 3513 + }, + "constraintImpulse": { + "#": 3514 + }, + "density": 0.001, + "force": { + "#": 3515 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 160, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3516 + }, + "positionImpulse": { + "#": 3517 + }, + "positionPrev": { + "#": 3518 + }, + "region": { + "#": 3519 + }, + "render": { + "#": 3520 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3522 + }, + "vertices": { + "#": 3523 + } + }, + [ + { + "#": 3508 + }, + { + "#": 3509 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3511 + }, + "min": { + "#": 3512 + } + }, + { + "x": 510, + "y": 382.73575476702496 + }, + { + "x": 475, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 362.3284840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3521 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3529 + }, + "bounds": { + "#": 3532 + }, + "collisionFilter": { + "#": 3535 + }, + "constraintImpulse": { + "#": 3536 + }, + "density": 0.001, + "force": { + "#": 3537 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 161, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3538 + }, + "positionImpulse": { + "#": 3539 + }, + "positionPrev": { + "#": 3540 + }, + "region": { + "#": 3541 + }, + "render": { + "#": 3542 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3544 + }, + "vertices": { + "#": 3545 + } + }, + [ + { + "#": 3530 + }, + { + "#": 3531 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3533 + }, + "min": { + "#": 3534 + } + }, + { + "x": 545, + "y": 382.73575476702496 + }, + { + "x": 510, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 362.3284840519894 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3543 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3551 + }, + "bounds": { + "#": 3554 + }, + "collisionFilter": { + "#": 3557 + }, + "constraintImpulse": { + "#": 3558 + }, + "density": 0.001, + "force": { + "#": 3559 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 162, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3560 + }, + "positionImpulse": { + "#": 3561 + }, + "positionPrev": { + "#": 3562 + }, + "region": { + "#": 3563 + }, + "render": { + "#": 3564 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3566 + }, + "vertices": { + "#": 3567 + } + }, + [ + { + "#": 3552 + }, + { + "#": 3553 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3555 + }, + "min": { + "#": 3556 + } + }, + { + "x": 580, + "y": 382.73575476702496 + }, + { + "x": 545, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 362.3284840519894 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,7,7", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3565 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3568 + }, + { + "#": 3569 + }, + { + "#": 3570 + }, + { + "#": 3571 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3573 + }, + "bounds": { + "#": 3576 + }, + "collisionFilter": { + "#": 3579 + }, + "constraintImpulse": { + "#": 3580 + }, + "density": 0.001, + "force": { + "#": 3581 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 163, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3582 + }, + "positionImpulse": { + "#": 3583 + }, + "positionPrev": { + "#": 3584 + }, + "region": { + "#": 3585 + }, + "render": { + "#": 3586 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3588 + }, + "vertices": { + "#": 3589 + } + }, + [ + { + "#": 3574 + }, + { + "#": 3575 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3577 + }, + "min": { + "#": 3578 + } + }, + { + "x": 615, + "y": 382.73575476702496 + }, + { + "x": 580, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 362.3284840519894 + }, + { + "endCol": 12, + "endRow": 7, + "id": "12,12,7,7", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3587 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3595 + }, + "bounds": { + "#": 3598 + }, + "collisionFilter": { + "#": 3601 + }, + "constraintImpulse": { + "#": 3602 + }, + "density": 0.001, + "force": { + "#": 3603 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 164, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3604 + }, + "positionImpulse": { + "#": 3605 + }, + "positionPrev": { + "#": 3606 + }, + "region": { + "#": 3607 + }, + "render": { + "#": 3608 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3610 + }, + "vertices": { + "#": 3611 + } + }, + [ + { + "#": 3596 + }, + { + "#": 3597 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3599 + }, + "min": { + "#": 3600 + } + }, + { + "x": 650, + "y": 382.73575476702496 + }, + { + "x": 615, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 362.3284840519894 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,7,7", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3609 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3617 + }, + "bounds": { + "#": 3620 + }, + "collisionFilter": { + "#": 3623 + }, + "constraintImpulse": { + "#": 3624 + }, + "density": 0.001, + "force": { + "#": 3625 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 165, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3626 + }, + "positionImpulse": { + "#": 3627 + }, + "positionPrev": { + "#": 3628 + }, + "region": { + "#": 3629 + }, + "render": { + "#": 3630 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3632 + }, + "vertices": { + "#": 3633 + } + }, + [ + { + "#": 3618 + }, + { + "#": 3619 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3621 + }, + "min": { + "#": 3622 + } + }, + { + "x": 685, + "y": 382.73575476702496 + }, + { + "x": 650, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 362.3284840519894 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,7,7", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3631 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3639 + }, + "bounds": { + "#": 3642 + }, + "collisionFilter": { + "#": 3645 + }, + "constraintImpulse": { + "#": 3646 + }, + "density": 0.001, + "force": { + "#": 3647 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 166, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3648 + }, + "positionImpulse": { + "#": 3649 + }, + "positionPrev": { + "#": 3650 + }, + "region": { + "#": 3651 + }, + "render": { + "#": 3652 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3654 + }, + "vertices": { + "#": 3655 + } + }, + [ + { + "#": 3640 + }, + { + "#": 3641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3643 + }, + "min": { + "#": 3644 + } + }, + { + "x": 720, + "y": 382.73575476702496 + }, + { + "x": 685, + "y": 347.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 365.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 362.3284840519894 + }, + { + "endCol": 15, + "endRow": 7, + "id": "14,15,7,7", + "startCol": 14, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3653 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3656 + }, + { + "#": 3657 + }, + { + "#": 3658 + }, + { + "#": 3659 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 347.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 382.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 382.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3661 + }, + "bounds": { + "#": 3664 + }, + "collisionFilter": { + "#": 3667 + }, + "constraintImpulse": { + "#": 3668 + }, + "density": 0.001, + "force": { + "#": 3669 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 167, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3670 + }, + "positionImpulse": { + "#": 3671 + }, + "positionPrev": { + "#": 3672 + }, + "region": { + "#": 3673 + }, + "render": { + "#": 3674 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3676 + }, + "vertices": { + "#": 3677 + } + }, + [ + { + "#": 3662 + }, + { + "#": 3663 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3665 + }, + "min": { + "#": 3666 + } + }, + { + "x": 125, + "y": 416.0291113384372 + }, + { + "x": 90, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 394.20488174721464 + }, + { + "endCol": 2, + "endRow": 8, + "id": "1,2,7,8", + "startCol": 1, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3675 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3683 + }, + "bounds": { + "#": 3686 + }, + "collisionFilter": { + "#": 3689 + }, + "constraintImpulse": { + "#": 3690 + }, + "density": 0.001, + "force": { + "#": 3691 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 168, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3692 + }, + "positionImpulse": { + "#": 3693 + }, + "positionPrev": { + "#": 3694 + }, + "region": { + "#": 3695 + }, + "render": { + "#": 3696 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3698 + }, + "vertices": { + "#": 3699 + } + }, + [ + { + "#": 3684 + }, + { + "#": 3685 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3687 + }, + "min": { + "#": 3688 + } + }, + { + "x": 160, + "y": 416.0291113384372 + }, + { + "x": 125, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 394.20488174721464 + }, + { + "endCol": 3, + "endRow": 8, + "id": "2,3,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3697 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3705 + }, + "bounds": { + "#": 3708 + }, + "collisionFilter": { + "#": 3711 + }, + "constraintImpulse": { + "#": 3712 + }, + "density": 0.001, + "force": { + "#": 3713 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 169, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3714 + }, + "positionImpulse": { + "#": 3715 + }, + "positionPrev": { + "#": 3716 + }, + "region": { + "#": 3717 + }, + "render": { + "#": 3718 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3720 + }, + "vertices": { + "#": 3721 + } + }, + [ + { + "#": 3706 + }, + { + "#": 3707 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3709 + }, + "min": { + "#": 3710 + } + }, + { + "x": 195, + "y": 416.0291113384372 + }, + { + "x": 160, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 394.20488174721464 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3719 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3727 + }, + "bounds": { + "#": 3730 + }, + "collisionFilter": { + "#": 3733 + }, + "constraintImpulse": { + "#": 3734 + }, + "density": 0.001, + "force": { + "#": 3735 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 170, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3736 + }, + "positionImpulse": { + "#": 3737 + }, + "positionPrev": { + "#": 3738 + }, + "region": { + "#": 3739 + }, + "render": { + "#": 3740 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3742 + }, + "vertices": { + "#": 3743 + } + }, + [ + { + "#": 3728 + }, + { + "#": 3729 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3731 + }, + "min": { + "#": 3732 + } + }, + { + "x": 230, + "y": 416.0291113384372 + }, + { + "x": 195, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 394.20488174721464 + }, + { + "endCol": 4, + "endRow": 8, + "id": "4,4,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3741 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3749 + }, + "bounds": { + "#": 3752 + }, + "collisionFilter": { + "#": 3755 + }, + "constraintImpulse": { + "#": 3756 + }, + "density": 0.001, + "force": { + "#": 3757 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 171, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3758 + }, + "positionImpulse": { + "#": 3759 + }, + "positionPrev": { + "#": 3760 + }, + "region": { + "#": 3761 + }, + "render": { + "#": 3762 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3764 + }, + "vertices": { + "#": 3765 + } + }, + [ + { + "#": 3750 + }, + { + "#": 3751 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3753 + }, + "min": { + "#": 3754 + } + }, + { + "x": 265, + "y": 416.0291113384372 + }, + { + "x": 230, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 394.20488174721464 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3763 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3771 + }, + "bounds": { + "#": 3774 + }, + "collisionFilter": { + "#": 3777 + }, + "constraintImpulse": { + "#": 3778 + }, + "density": 0.001, + "force": { + "#": 3779 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 172, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3780 + }, + "positionImpulse": { + "#": 3781 + }, + "positionPrev": { + "#": 3782 + }, + "region": { + "#": 3783 + }, + "render": { + "#": 3784 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3786 + }, + "vertices": { + "#": 3787 + } + }, + [ + { + "#": 3772 + }, + { + "#": 3773 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3775 + }, + "min": { + "#": 3776 + } + }, + { + "x": 300, + "y": 416.0291113384372 + }, + { + "x": 265, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 394.20488174721464 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3785 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3793 + }, + "bounds": { + "#": 3796 + }, + "collisionFilter": { + "#": 3799 + }, + "constraintImpulse": { + "#": 3800 + }, + "density": 0.001, + "force": { + "#": 3801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 173, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3802 + }, + "positionImpulse": { + "#": 3803 + }, + "positionPrev": { + "#": 3804 + }, + "region": { + "#": 3805 + }, + "render": { + "#": 3806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3808 + }, + "vertices": { + "#": 3809 + } + }, + [ + { + "#": 3794 + }, + { + "#": 3795 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3797 + }, + "min": { + "#": 3798 + } + }, + { + "x": 335, + "y": 416.0291113384372 + }, + { + "x": 300, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 394.20488174721464 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3807 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3815 + }, + "bounds": { + "#": 3818 + }, + "collisionFilter": { + "#": 3821 + }, + "constraintImpulse": { + "#": 3822 + }, + "density": 0.001, + "force": { + "#": 3823 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 174, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3824 + }, + "positionImpulse": { + "#": 3825 + }, + "positionPrev": { + "#": 3826 + }, + "region": { + "#": 3827 + }, + "render": { + "#": 3828 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3830 + }, + "vertices": { + "#": 3831 + } + }, + [ + { + "#": 3816 + }, + { + "#": 3817 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3819 + }, + "min": { + "#": 3820 + } + }, + { + "x": 370, + "y": 416.0291113384372 + }, + { + "x": 335, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 394.20488174721464 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3829 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3837 + }, + "bounds": { + "#": 3840 + }, + "collisionFilter": { + "#": 3843 + }, + "constraintImpulse": { + "#": 3844 + }, + "density": 0.001, + "force": { + "#": 3845 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 175, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3846 + }, + "positionImpulse": { + "#": 3847 + }, + "positionPrev": { + "#": 3848 + }, + "region": { + "#": 3849 + }, + "render": { + "#": 3850 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3852 + }, + "vertices": { + "#": 3853 + } + }, + [ + { + "#": 3838 + }, + { + "#": 3839 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3841 + }, + "min": { + "#": 3842 + } + }, + { + "x": 405, + "y": 416.0291113384372 + }, + { + "x": 370, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 394.20488174721464 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3851 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3859 + }, + "bounds": { + "#": 3862 + }, + "collisionFilter": { + "#": 3865 + }, + "constraintImpulse": { + "#": 3866 + }, + "density": 0.001, + "force": { + "#": 3867 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 176, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3868 + }, + "positionImpulse": { + "#": 3869 + }, + "positionPrev": { + "#": 3870 + }, + "region": { + "#": 3871 + }, + "render": { + "#": 3872 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3874 + }, + "vertices": { + "#": 3875 + } + }, + [ + { + "#": 3860 + }, + { + "#": 3861 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3863 + }, + "min": { + "#": 3864 + } + }, + { + "x": 440, + "y": 416.0291113384372 + }, + { + "x": 405, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 394.20488174721464 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3873 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3881 + }, + "bounds": { + "#": 3884 + }, + "collisionFilter": { + "#": 3887 + }, + "constraintImpulse": { + "#": 3888 + }, + "density": 0.001, + "force": { + "#": 3889 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 177, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3890 + }, + "positionImpulse": { + "#": 3891 + }, + "positionPrev": { + "#": 3892 + }, + "region": { + "#": 3893 + }, + "render": { + "#": 3894 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3896 + }, + "vertices": { + "#": 3897 + } + }, + [ + { + "#": 3882 + }, + { + "#": 3883 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3885 + }, + "min": { + "#": 3886 + } + }, + { + "x": 475, + "y": 416.0291113384372 + }, + { + "x": 440, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 394.20488174721464 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3895 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3903 + }, + "bounds": { + "#": 3906 + }, + "collisionFilter": { + "#": 3909 + }, + "constraintImpulse": { + "#": 3910 + }, + "density": 0.001, + "force": { + "#": 3911 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 178, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3912 + }, + "positionImpulse": { + "#": 3913 + }, + "positionPrev": { + "#": 3914 + }, + "region": { + "#": 3915 + }, + "render": { + "#": 3916 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3918 + }, + "vertices": { + "#": 3919 + } + }, + [ + { + "#": 3904 + }, + { + "#": 3905 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3907 + }, + "min": { + "#": 3908 + } + }, + { + "x": 510, + "y": 416.0291113384372 + }, + { + "x": 475, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 394.20488174721464 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3917 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3925 + }, + "bounds": { + "#": 3928 + }, + "collisionFilter": { + "#": 3931 + }, + "constraintImpulse": { + "#": 3932 + }, + "density": 0.001, + "force": { + "#": 3933 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 179, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3934 + }, + "positionImpulse": { + "#": 3935 + }, + "positionPrev": { + "#": 3936 + }, + "region": { + "#": 3937 + }, + "render": { + "#": 3938 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3940 + }, + "vertices": { + "#": 3941 + } + }, + [ + { + "#": 3926 + }, + { + "#": 3927 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3929 + }, + "min": { + "#": 3930 + } + }, + { + "x": 545, + "y": 416.0291113384372 + }, + { + "x": 510, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 394.20488174721464 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3939 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3947 + }, + "bounds": { + "#": 3950 + }, + "collisionFilter": { + "#": 3953 + }, + "constraintImpulse": { + "#": 3954 + }, + "density": 0.001, + "force": { + "#": 3955 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 180, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3956 + }, + "positionImpulse": { + "#": 3957 + }, + "positionPrev": { + "#": 3958 + }, + "region": { + "#": 3959 + }, + "render": { + "#": 3960 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3962 + }, + "vertices": { + "#": 3963 + } + }, + [ + { + "#": 3948 + }, + { + "#": 3949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3951 + }, + "min": { + "#": 3952 + } + }, + { + "x": 580, + "y": 416.0291113384372 + }, + { + "x": 545, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 394.20488174721464 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,7,8", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3961 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3964 + }, + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3969 + }, + "bounds": { + "#": 3972 + }, + "collisionFilter": { + "#": 3975 + }, + "constraintImpulse": { + "#": 3976 + }, + "density": 0.001, + "force": { + "#": 3977 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 181, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 3978 + }, + "positionImpulse": { + "#": 3979 + }, + "positionPrev": { + "#": 3980 + }, + "region": { + "#": 3981 + }, + "render": { + "#": 3982 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3984 + }, + "vertices": { + "#": 3985 + } + }, + [ + { + "#": 3970 + }, + { + "#": 3971 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3973 + }, + "min": { + "#": 3974 + } + }, + { + "x": 615, + "y": 416.0291113384372 + }, + { + "x": 580, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 394.20488174721464 + }, + { + "endCol": 12, + "endRow": 8, + "id": "12,12,7,8", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3983 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 3991 + }, + "bounds": { + "#": 3994 + }, + "collisionFilter": { + "#": 3997 + }, + "constraintImpulse": { + "#": 3998 + }, + "density": 0.001, + "force": { + "#": 3999 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 182, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4000 + }, + "positionImpulse": { + "#": 4001 + }, + "positionPrev": { + "#": 4002 + }, + "region": { + "#": 4003 + }, + "render": { + "#": 4004 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4006 + }, + "vertices": { + "#": 4007 + } + }, + [ + { + "#": 3992 + }, + { + "#": 3993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3995 + }, + "min": { + "#": 3996 + } + }, + { + "x": 650, + "y": 416.0291113384372 + }, + { + "x": 615, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 394.20488174721464 + }, + { + "endCol": 13, + "endRow": 8, + "id": "12,13,7,8", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4005 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 4008 + }, + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4013 + }, + "bounds": { + "#": 4016 + }, + "collisionFilter": { + "#": 4019 + }, + "constraintImpulse": { + "#": 4020 + }, + "density": 0.001, + "force": { + "#": 4021 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 183, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4022 + }, + "positionImpulse": { + "#": 4023 + }, + "positionPrev": { + "#": 4024 + }, + "region": { + "#": 4025 + }, + "render": { + "#": 4026 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4028 + }, + "vertices": { + "#": 4029 + } + }, + [ + { + "#": 4014 + }, + { + "#": 4015 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4017 + }, + "min": { + "#": 4018 + } + }, + { + "x": 685, + "y": 416.0291113384372 + }, + { + "x": 650, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 394.20488174721464 + }, + { + "endCol": 14, + "endRow": 8, + "id": "13,14,7,8", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4027 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 4030 + }, + { + "#": 4031 + }, + { + "#": 4032 + }, + { + "#": 4033 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4035 + }, + "bounds": { + "#": 4038 + }, + "collisionFilter": { + "#": 4041 + }, + "constraintImpulse": { + "#": 4042 + }, + "density": 0.001, + "force": { + "#": 4043 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 184, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4044 + }, + "positionImpulse": { + "#": 4045 + }, + "positionPrev": { + "#": 4046 + }, + "region": { + "#": 4047 + }, + "render": { + "#": 4048 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4050 + }, + "vertices": { + "#": 4051 + } + }, + [ + { + "#": 4036 + }, + { + "#": 4037 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4039 + }, + "min": { + "#": 4040 + } + }, + { + "x": 720, + "y": 416.0291113384372 + }, + { + "x": 685, + "y": 378.1218406234016 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 395.6218406234016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 394.20488174721464 + }, + { + "endCol": 15, + "endRow": 8, + "id": "14,15,7,8", + "startCol": 14, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4049 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.5519112366897616 + }, + [ + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 378.1218406234016 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 413.1218406234016 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 413.1218406234016 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4057 + }, + "bounds": { + "#": 4060 + }, + "collisionFilter": { + "#": 4063 + }, + "constraintImpulse": { + "#": 4064 + }, + "density": 0.001, + "force": { + "#": 4065 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 185, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4066 + }, + "positionImpulse": { + "#": 4067 + }, + "positionPrev": { + "#": 4068 + }, + "region": { + "#": 4069 + }, + "render": { + "#": 4070 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4072 + }, + "vertices": { + "#": 4073 + } + }, + [ + { + "#": 4058 + }, + { + "#": 4059 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4061 + }, + "min": { + "#": 4062 + } + }, + { + "x": 125, + "y": 449.09389892965584 + }, + { + "x": 90, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 107.5, + "y": 428.8142962779328 + }, + { + "endCol": 2, + "endRow": 9, + "id": "1,2,8,9", + "startCol": 1, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4071 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4074 + }, + { + "#": 4075 + }, + { + "#": 4076 + }, + { + "#": 4077 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4079 + }, + "bounds": { + "#": 4082 + }, + "collisionFilter": { + "#": 4085 + }, + "constraintImpulse": { + "#": 4086 + }, + "density": 0.001, + "force": { + "#": 4087 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 186, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4088 + }, + "positionImpulse": { + "#": 4089 + }, + "positionPrev": { + "#": 4090 + }, + "region": { + "#": 4091 + }, + "render": { + "#": 4092 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4094 + }, + "vertices": { + "#": 4095 + } + }, + [ + { + "#": 4080 + }, + { + "#": 4081 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4083 + }, + "min": { + "#": 4084 + } + }, + { + "x": 160, + "y": 449.09389892965584 + }, + { + "x": 125, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 142.5, + "y": 428.8142962779328 + }, + { + "endCol": 3, + "endRow": 9, + "id": "2,3,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4093 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4101 + }, + "bounds": { + "#": 4104 + }, + "collisionFilter": { + "#": 4107 + }, + "constraintImpulse": { + "#": 4108 + }, + "density": 0.001, + "force": { + "#": 4109 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 187, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4110 + }, + "positionImpulse": { + "#": 4111 + }, + "positionPrev": { + "#": 4112 + }, + "region": { + "#": 4113 + }, + "render": { + "#": 4114 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4116 + }, + "vertices": { + "#": 4117 + } + }, + [ + { + "#": 4102 + }, + { + "#": 4103 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4105 + }, + "min": { + "#": 4106 + } + }, + { + "x": 195, + "y": 449.09389892965584 + }, + { + "x": 160, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 177.5, + "y": 428.8142962779328 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4115 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4118 + }, + { + "#": 4119 + }, + { + "#": 4120 + }, + { + "#": 4121 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4123 + }, + "bounds": { + "#": 4126 + }, + "collisionFilter": { + "#": 4129 + }, + "constraintImpulse": { + "#": 4130 + }, + "density": 0.001, + "force": { + "#": 4131 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 188, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4132 + }, + "positionImpulse": { + "#": 4133 + }, + "positionPrev": { + "#": 4134 + }, + "region": { + "#": 4135 + }, + "render": { + "#": 4136 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4138 + }, + "vertices": { + "#": 4139 + } + }, + [ + { + "#": 4124 + }, + { + "#": 4125 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4127 + }, + "min": { + "#": 4128 + } + }, + { + "x": 230, + "y": 449.09389892965584 + }, + { + "x": 195, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 212.5, + "y": 428.8142962779328 + }, + { + "endCol": 4, + "endRow": 9, + "id": "4,4,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4137 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4145 + }, + "bounds": { + "#": 4148 + }, + "collisionFilter": { + "#": 4151 + }, + "constraintImpulse": { + "#": 4152 + }, + "density": 0.001, + "force": { + "#": 4153 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 189, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4154 + }, + "positionImpulse": { + "#": 4155 + }, + "positionPrev": { + "#": 4156 + }, + "region": { + "#": 4157 + }, + "render": { + "#": 4158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4160 + }, + "vertices": { + "#": 4161 + } + }, + [ + { + "#": 4146 + }, + { + "#": 4147 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4149 + }, + "min": { + "#": 4150 + } + }, + { + "x": 265, + "y": 449.09389892965584 + }, + { + "x": 230, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 247.5, + "y": 428.8142962779328 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4159 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4162 + }, + { + "#": 4163 + }, + { + "#": 4164 + }, + { + "#": 4165 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4167 + }, + "bounds": { + "#": 4170 + }, + "collisionFilter": { + "#": 4173 + }, + "constraintImpulse": { + "#": 4174 + }, + "density": 0.001, + "force": { + "#": 4175 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 190, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4176 + }, + "positionImpulse": { + "#": 4177 + }, + "positionPrev": { + "#": 4178 + }, + "region": { + "#": 4179 + }, + "render": { + "#": 4180 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4182 + }, + "vertices": { + "#": 4183 + } + }, + [ + { + "#": 4168 + }, + { + "#": 4169 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4171 + }, + "min": { + "#": 4172 + } + }, + { + "x": 300, + "y": 449.09389892965584 + }, + { + "x": 265, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 282.5, + "y": 428.8142962779328 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4181 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + }, + { + "#": 4187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4189 + }, + "bounds": { + "#": 4192 + }, + "collisionFilter": { + "#": 4195 + }, + "constraintImpulse": { + "#": 4196 + }, + "density": 0.001, + "force": { + "#": 4197 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 191, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4198 + }, + "positionImpulse": { + "#": 4199 + }, + "positionPrev": { + "#": 4200 + }, + "region": { + "#": 4201 + }, + "render": { + "#": 4202 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4204 + }, + "vertices": { + "#": 4205 + } + }, + [ + { + "#": 4190 + }, + { + "#": 4191 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4193 + }, + "min": { + "#": 4194 + } + }, + { + "x": 335, + "y": 449.09389892965584 + }, + { + "x": 300, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 317.5, + "y": 428.8142962779328 + }, + { + "endCol": 6, + "endRow": 9, + "id": "6,6,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4203 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4206 + }, + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4211 + }, + "bounds": { + "#": 4214 + }, + "collisionFilter": { + "#": 4217 + }, + "constraintImpulse": { + "#": 4218 + }, + "density": 0.001, + "force": { + "#": 4219 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 192, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4220 + }, + "positionImpulse": { + "#": 4221 + }, + "positionPrev": { + "#": 4222 + }, + "region": { + "#": 4223 + }, + "render": { + "#": 4224 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4226 + }, + "vertices": { + "#": 4227 + } + }, + [ + { + "#": 4212 + }, + { + "#": 4213 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4215 + }, + "min": { + "#": 4216 + } + }, + { + "x": 370, + "y": 449.09389892965584 + }, + { + "x": 335, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 352.5, + "y": 428.8142962779328 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4225 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4233 + }, + "bounds": { + "#": 4236 + }, + "collisionFilter": { + "#": 4239 + }, + "constraintImpulse": { + "#": 4240 + }, + "density": 0.001, + "force": { + "#": 4241 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 193, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4242 + }, + "positionImpulse": { + "#": 4243 + }, + "positionPrev": { + "#": 4244 + }, + "region": { + "#": 4245 + }, + "render": { + "#": 4246 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4248 + }, + "vertices": { + "#": 4249 + } + }, + [ + { + "#": 4234 + }, + { + "#": 4235 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4237 + }, + "min": { + "#": 4238 + } + }, + { + "x": 405, + "y": 449.09389892965584 + }, + { + "x": 370, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 387.5, + "y": 428.8142962779328 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4247 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4250 + }, + { + "#": 4251 + }, + { + "#": 4252 + }, + { + "#": 4253 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4255 + }, + "bounds": { + "#": 4258 + }, + "collisionFilter": { + "#": 4261 + }, + "constraintImpulse": { + "#": 4262 + }, + "density": 0.001, + "force": { + "#": 4263 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 194, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4264 + }, + "positionImpulse": { + "#": 4265 + }, + "positionPrev": { + "#": 4266 + }, + "region": { + "#": 4267 + }, + "render": { + "#": 4268 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4270 + }, + "vertices": { + "#": 4271 + } + }, + [ + { + "#": 4256 + }, + { + "#": 4257 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4259 + }, + "min": { + "#": 4260 + } + }, + { + "x": 440, + "y": 449.09389892965584 + }, + { + "x": 405, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 422.5, + "y": 428.8142962779328 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4269 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4277 + }, + "bounds": { + "#": 4280 + }, + "collisionFilter": { + "#": 4283 + }, + "constraintImpulse": { + "#": 4284 + }, + "density": 0.001, + "force": { + "#": 4285 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 195, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4286 + }, + "positionImpulse": { + "#": 4287 + }, + "positionPrev": { + "#": 4288 + }, + "region": { + "#": 4289 + }, + "render": { + "#": 4290 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4292 + }, + "vertices": { + "#": 4293 + } + }, + [ + { + "#": 4278 + }, + { + "#": 4279 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4281 + }, + "min": { + "#": 4282 + } + }, + { + "x": 475, + "y": 449.09389892965584 + }, + { + "x": 440, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 457.5, + "y": 428.8142962779328 + }, + { + "endCol": 9, + "endRow": 9, + "id": "9,9,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4291 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4294 + }, + { + "#": 4295 + }, + { + "#": 4296 + }, + { + "#": 4297 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4299 + }, + "bounds": { + "#": 4302 + }, + "collisionFilter": { + "#": 4305 + }, + "constraintImpulse": { + "#": 4306 + }, + "density": 0.001, + "force": { + "#": 4307 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 196, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4308 + }, + "positionImpulse": { + "#": 4309 + }, + "positionPrev": { + "#": 4310 + }, + "region": { + "#": 4311 + }, + "render": { + "#": 4312 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4314 + }, + "vertices": { + "#": 4315 + } + }, + [ + { + "#": 4300 + }, + { + "#": 4301 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4303 + }, + "min": { + "#": 4304 + } + }, + { + "x": 510, + "y": 449.09389892965584 + }, + { + "x": 475, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 492.5, + "y": 428.8142962779328 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4313 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4316 + }, + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4321 + }, + "bounds": { + "#": 4324 + }, + "collisionFilter": { + "#": 4327 + }, + "constraintImpulse": { + "#": 4328 + }, + "density": 0.001, + "force": { + "#": 4329 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 197, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4330 + }, + "positionImpulse": { + "#": 4331 + }, + "positionPrev": { + "#": 4332 + }, + "region": { + "#": 4333 + }, + "render": { + "#": 4334 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4336 + }, + "vertices": { + "#": 4337 + } + }, + [ + { + "#": 4322 + }, + { + "#": 4323 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4325 + }, + "min": { + "#": 4326 + } + }, + { + "x": 545, + "y": 449.09389892965584 + }, + { + "x": 510, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 527.5, + "y": 428.8142962779328 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4335 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + }, + { + "#": 4341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4343 + }, + "bounds": { + "#": 4346 + }, + "collisionFilter": { + "#": 4349 + }, + "constraintImpulse": { + "#": 4350 + }, + "density": 0.001, + "force": { + "#": 4351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 198, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4352 + }, + "positionImpulse": { + "#": 4353 + }, + "positionPrev": { + "#": 4354 + }, + "region": { + "#": 4355 + }, + "render": { + "#": 4356 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4358 + }, + "vertices": { + "#": 4359 + } + }, + [ + { + "#": 4344 + }, + { + "#": 4345 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4347 + }, + "min": { + "#": 4348 + } + }, + { + "x": 580, + "y": 449.09389892965584 + }, + { + "x": 545, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 562.5, + "y": 428.8142962779328 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4357 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4365 + }, + "bounds": { + "#": 4368 + }, + "collisionFilter": { + "#": 4371 + }, + "constraintImpulse": { + "#": 4372 + }, + "density": 0.001, + "force": { + "#": 4373 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 199, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4374 + }, + "positionImpulse": { + "#": 4375 + }, + "positionPrev": { + "#": 4376 + }, + "region": { + "#": 4377 + }, + "render": { + "#": 4378 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4380 + }, + "vertices": { + "#": 4381 + } + }, + [ + { + "#": 4366 + }, + { + "#": 4367 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4369 + }, + "min": { + "#": 4370 + } + }, + { + "x": 615, + "y": 449.09389892965584 + }, + { + "x": 580, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 597.5, + "y": 428.8142962779328 + }, + { + "endCol": 12, + "endRow": 9, + "id": "12,12,8,9", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4379 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4387 + }, + "bounds": { + "#": 4390 + }, + "collisionFilter": { + "#": 4393 + }, + "constraintImpulse": { + "#": 4394 + }, + "density": 0.001, + "force": { + "#": 4395 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 200, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4396 + }, + "positionImpulse": { + "#": 4397 + }, + "positionPrev": { + "#": 4398 + }, + "region": { + "#": 4399 + }, + "render": { + "#": 4400 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4402 + }, + "vertices": { + "#": 4403 + } + }, + [ + { + "#": 4388 + }, + { + "#": 4389 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4391 + }, + "min": { + "#": 4392 + } + }, + { + "x": 650, + "y": 449.09389892965584 + }, + { + "x": 615, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 632.5, + "y": 428.8142962779328 + }, + { + "endCol": 13, + "endRow": 9, + "id": "12,13,8,9", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4401 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4404 + }, + { + "#": 4405 + }, + { + "#": 4406 + }, + { + "#": 4407 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4409 + }, + "bounds": { + "#": 4412 + }, + "collisionFilter": { + "#": 4415 + }, + "constraintImpulse": { + "#": 4416 + }, + "density": 0.001, + "force": { + "#": 4417 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 201, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4418 + }, + "positionImpulse": { + "#": 4419 + }, + "positionPrev": { + "#": 4420 + }, + "region": { + "#": 4421 + }, + "render": { + "#": 4422 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4424 + }, + "vertices": { + "#": 4425 + } + }, + [ + { + "#": 4410 + }, + { + "#": 4411 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4413 + }, + "min": { + "#": 4414 + } + }, + { + "x": 685, + "y": 449.09389892965584 + }, + { + "x": 650, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 667.5, + "y": 428.8142962779328 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,8,9", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4423 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + }, + { + "#": 4429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4431 + }, + "bounds": { + "#": 4434 + }, + "collisionFilter": { + "#": 4437 + }, + "constraintImpulse": { + "#": 4438 + }, + "density": 0.001, + "force": { + "#": 4439 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 202, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4440 + }, + "positionImpulse": { + "#": 4441 + }, + "positionPrev": { + "#": 4442 + }, + "region": { + "#": 4443 + }, + "render": { + "#": 4444 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.463858045913225, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4446 + }, + "vertices": { + "#": 4447 + } + }, + [ + { + "#": 4432 + }, + { + "#": 4433 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4435 + }, + "min": { + "#": 4436 + } + }, + { + "x": 720, + "y": 449.09389892965584 + }, + { + "x": 685, + "y": 412.6300408837426 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 430.1300408837426 + }, + { + "x": 0, + "y": 0.4703692436827212 + }, + { + "x": 702.5, + "y": 428.8142962779328 + }, + { + "endCol": 15, + "endRow": 9, + "id": "14,15,8,9", + "startCol": 14, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4445 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1807922453070319 + }, + [ + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 412.6300408837426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 447.6300408837426 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 447.6300408837426 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4453 + }, + "bounds": { + "#": 4456 + }, + "collisionFilter": { + "#": 4459 + }, + "constraintImpulse": { + "#": 4460 + }, + "density": 0.001, + "force": { + "#": 4461 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 203, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4462 + }, + "positionImpulse": { + "#": 4463 + }, + "positionPrev": { + "#": 4464 + }, + "region": { + "#": 4465 + }, + "render": { + "#": 4466 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4468 + }, + "vertices": { + "#": 4469 + } + }, + [ + { + "#": 4454 + }, + { + "#": 4455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4457 + }, + "min": { + "#": 4458 + } + }, + { + "x": 125, + "y": 482.7769050672776 + }, + { + "x": 90, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 462.896587184877 + }, + { + "endCol": 2, + "endRow": 10, + "id": "1,2,9,10", + "startCol": 1, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4467 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4470 + }, + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4475 + }, + "bounds": { + "#": 4478 + }, + "collisionFilter": { + "#": 4481 + }, + "constraintImpulse": { + "#": 4482 + }, + "density": 0.001, + "force": { + "#": 4483 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 204, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4484 + }, + "positionImpulse": { + "#": 4485 + }, + "positionPrev": { + "#": 4486 + }, + "region": { + "#": 4487 + }, + "render": { + "#": 4488 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4490 + }, + "vertices": { + "#": 4491 + } + }, + [ + { + "#": 4476 + }, + { + "#": 4477 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4479 + }, + "min": { + "#": 4480 + } + }, + { + "x": 160, + "y": 482.7769050672776 + }, + { + "x": 125, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 462.896587184877 + }, + { + "endCol": 3, + "endRow": 10, + "id": "2,3,9,10", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4489 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + }, + { + "#": 4495 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4497 + }, + "bounds": { + "#": 4500 + }, + "collisionFilter": { + "#": 4503 + }, + "constraintImpulse": { + "#": 4504 + }, + "density": 0.001, + "force": { + "#": 4505 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 205, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4506 + }, + "positionImpulse": { + "#": 4507 + }, + "positionPrev": { + "#": 4508 + }, + "region": { + "#": 4509 + }, + "render": { + "#": 4510 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4512 + }, + "vertices": { + "#": 4513 + } + }, + [ + { + "#": 4498 + }, + { + "#": 4499 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4501 + }, + "min": { + "#": 4502 + } + }, + { + "x": 195, + "y": 482.7769050672776 + }, + { + "x": 160, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 462.896587184877 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,9,10", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4511 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4514 + }, + { + "#": 4515 + }, + { + "#": 4516 + }, + { + "#": 4517 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4519 + }, + "bounds": { + "#": 4522 + }, + "collisionFilter": { + "#": 4525 + }, + "constraintImpulse": { + "#": 4526 + }, + "density": 0.001, + "force": { + "#": 4527 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 206, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4528 + }, + "positionImpulse": { + "#": 4529 + }, + "positionPrev": { + "#": 4530 + }, + "region": { + "#": 4531 + }, + "render": { + "#": 4532 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4534 + }, + "vertices": { + "#": 4535 + } + }, + [ + { + "#": 4520 + }, + { + "#": 4521 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4523 + }, + "min": { + "#": 4524 + } + }, + { + "x": 230, + "y": 482.7769050672776 + }, + { + "x": 195, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 462.896587184877 + }, + { + "endCol": 4, + "endRow": 10, + "id": "4,4,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4533 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4541 + }, + "bounds": { + "#": 4544 + }, + "collisionFilter": { + "#": 4547 + }, + "constraintImpulse": { + "#": 4548 + }, + "density": 0.001, + "force": { + "#": 4549 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 207, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4550 + }, + "positionImpulse": { + "#": 4551 + }, + "positionPrev": { + "#": 4552 + }, + "region": { + "#": 4553 + }, + "render": { + "#": 4554 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4556 + }, + "vertices": { + "#": 4557 + } + }, + [ + { + "#": 4542 + }, + { + "#": 4543 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4545 + }, + "min": { + "#": 4546 + } + }, + { + "x": 265, + "y": 482.7769050672776 + }, + { + "x": 230, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 462.896587184877 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4555 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4558 + }, + { + "#": 4559 + }, + { + "#": 4560 + }, + { + "#": 4561 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4563 + }, + "bounds": { + "#": 4566 + }, + "collisionFilter": { + "#": 4569 + }, + "constraintImpulse": { + "#": 4570 + }, + "density": 0.001, + "force": { + "#": 4571 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 208, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4572 + }, + "positionImpulse": { + "#": 4573 + }, + "positionPrev": { + "#": 4574 + }, + "region": { + "#": 4575 + }, + "render": { + "#": 4576 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4578 + }, + "vertices": { + "#": 4579 + } + }, + [ + { + "#": 4564 + }, + { + "#": 4565 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4567 + }, + "min": { + "#": 4568 + } + }, + { + "x": 300, + "y": 482.7769050672776 + }, + { + "x": 265, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 462.896587184877 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4577 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4585 + }, + "bounds": { + "#": 4588 + }, + "collisionFilter": { + "#": 4591 + }, + "constraintImpulse": { + "#": 4592 + }, + "density": 0.001, + "force": { + "#": 4593 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 209, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4594 + }, + "positionImpulse": { + "#": 4595 + }, + "positionPrev": { + "#": 4596 + }, + "region": { + "#": 4597 + }, + "render": { + "#": 4598 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4600 + }, + "vertices": { + "#": 4601 + } + }, + [ + { + "#": 4586 + }, + { + "#": 4587 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4589 + }, + "min": { + "#": 4590 + } + }, + { + "x": 335, + "y": 482.7769050672776 + }, + { + "x": 300, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 462.896587184877 + }, + { + "endCol": 6, + "endRow": 10, + "id": "6,6,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4599 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4607 + }, + "bounds": { + "#": 4610 + }, + "collisionFilter": { + "#": 4613 + }, + "constraintImpulse": { + "#": 4614 + }, + "density": 0.001, + "force": { + "#": 4615 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 210, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4616 + }, + "positionImpulse": { + "#": 4617 + }, + "positionPrev": { + "#": 4618 + }, + "region": { + "#": 4619 + }, + "render": { + "#": 4620 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4622 + }, + "vertices": { + "#": 4623 + } + }, + [ + { + "#": 4608 + }, + { + "#": 4609 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4611 + }, + "min": { + "#": 4612 + } + }, + { + "x": 370, + "y": 482.7769050672776 + }, + { + "x": 335, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 462.896587184877 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4621 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4624 + }, + { + "#": 4625 + }, + { + "#": 4626 + }, + { + "#": 4627 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4629 + }, + "bounds": { + "#": 4632 + }, + "collisionFilter": { + "#": 4635 + }, + "constraintImpulse": { + "#": 4636 + }, + "density": 0.001, + "force": { + "#": 4637 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 211, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4638 + }, + "positionImpulse": { + "#": 4639 + }, + "positionPrev": { + "#": 4640 + }, + "region": { + "#": 4641 + }, + "render": { + "#": 4642 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4644 + }, + "vertices": { + "#": 4645 + } + }, + [ + { + "#": 4630 + }, + { + "#": 4631 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4633 + }, + "min": { + "#": 4634 + } + }, + { + "x": 405, + "y": 482.7769050672776 + }, + { + "x": 370, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 462.896587184877 + }, + { + "endCol": 8, + "endRow": 10, + "id": "7,8,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4643 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + }, + { + "#": 4649 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4651 + }, + "bounds": { + "#": 4654 + }, + "collisionFilter": { + "#": 4657 + }, + "constraintImpulse": { + "#": 4658 + }, + "density": 0.001, + "force": { + "#": 4659 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 212, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4660 + }, + "positionImpulse": { + "#": 4661 + }, + "positionPrev": { + "#": 4662 + }, + "region": { + "#": 4663 + }, + "render": { + "#": 4664 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4666 + }, + "vertices": { + "#": 4667 + } + }, + [ + { + "#": 4652 + }, + { + "#": 4653 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4655 + }, + "min": { + "#": 4656 + } + }, + { + "x": 440, + "y": 482.7769050672776 + }, + { + "x": 405, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 462.896587184877 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4665 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4668 + }, + { + "#": 4669 + }, + { + "#": 4670 + }, + { + "#": 4671 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4673 + }, + "bounds": { + "#": 4676 + }, + "collisionFilter": { + "#": 4679 + }, + "constraintImpulse": { + "#": 4680 + }, + "density": 0.001, + "force": { + "#": 4681 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 213, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4682 + }, + "positionImpulse": { + "#": 4683 + }, + "positionPrev": { + "#": 4684 + }, + "region": { + "#": 4685 + }, + "render": { + "#": 4686 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4688 + }, + "vertices": { + "#": 4689 + } + }, + [ + { + "#": 4674 + }, + { + "#": 4675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4677 + }, + "min": { + "#": 4678 + } + }, + { + "x": 475, + "y": 482.7769050672776 + }, + { + "x": 440, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 462.896587184877 + }, + { + "endCol": 9, + "endRow": 10, + "id": "9,9,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4687 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4695 + }, + "bounds": { + "#": 4698 + }, + "collisionFilter": { + "#": 4701 + }, + "constraintImpulse": { + "#": 4702 + }, + "density": 0.001, + "force": { + "#": 4703 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 214, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4704 + }, + "positionImpulse": { + "#": 4705 + }, + "positionPrev": { + "#": 4706 + }, + "region": { + "#": 4707 + }, + "render": { + "#": 4708 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4710 + }, + "vertices": { + "#": 4711 + } + }, + [ + { + "#": 4696 + }, + { + "#": 4697 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4699 + }, + "min": { + "#": 4700 + } + }, + { + "x": 510, + "y": 482.7769050672776 + }, + { + "x": 475, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 462.896587184877 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4709 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4712 + }, + { + "#": 4713 + }, + { + "#": 4714 + }, + { + "#": 4715 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4717 + }, + "bounds": { + "#": 4720 + }, + "collisionFilter": { + "#": 4723 + }, + "constraintImpulse": { + "#": 4724 + }, + "density": 0.001, + "force": { + "#": 4725 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 215, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4726 + }, + "positionImpulse": { + "#": 4727 + }, + "positionPrev": { + "#": 4728 + }, + "region": { + "#": 4729 + }, + "render": { + "#": 4730 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4732 + }, + "vertices": { + "#": 4733 + } + }, + [ + { + "#": 4718 + }, + { + "#": 4719 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4721 + }, + "min": { + "#": 4722 + } + }, + { + "x": 545, + "y": 482.7769050672776 + }, + { + "x": 510, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 462.896587184877 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4731 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4734 + }, + { + "#": 4735 + }, + { + "#": 4736 + }, + { + "#": 4737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4739 + }, + "bounds": { + "#": 4742 + }, + "collisionFilter": { + "#": 4745 + }, + "constraintImpulse": { + "#": 4746 + }, + "density": 0.001, + "force": { + "#": 4747 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 216, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4748 + }, + "positionImpulse": { + "#": 4749 + }, + "positionPrev": { + "#": 4750 + }, + "region": { + "#": 4751 + }, + "render": { + "#": 4752 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4754 + }, + "vertices": { + "#": 4755 + } + }, + [ + { + "#": 4740 + }, + { + "#": 4741 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4743 + }, + "min": { + "#": 4744 + } + }, + { + "x": 580, + "y": 482.7769050672776 + }, + { + "x": 545, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 462.896587184877 + }, + { + "endCol": 12, + "endRow": 10, + "id": "11,12,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4753 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4756 + }, + { + "#": 4757 + }, + { + "#": 4758 + }, + { + "#": 4759 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4761 + }, + "bounds": { + "#": 4764 + }, + "collisionFilter": { + "#": 4767 + }, + "constraintImpulse": { + "#": 4768 + }, + "density": 0.001, + "force": { + "#": 4769 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 217, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4770 + }, + "positionImpulse": { + "#": 4771 + }, + "positionPrev": { + "#": 4772 + }, + "region": { + "#": 4773 + }, + "render": { + "#": 4774 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4776 + }, + "vertices": { + "#": 4777 + } + }, + [ + { + "#": 4762 + }, + { + "#": 4763 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4765 + }, + "min": { + "#": 4766 + } + }, + { + "x": 615, + "y": 482.7769050672776 + }, + { + "x": 580, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 462.896587184877 + }, + { + "endCol": 12, + "endRow": 10, + "id": "12,12,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4775 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4778 + }, + { + "#": 4779 + }, + { + "#": 4780 + }, + { + "#": 4781 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4783 + }, + "bounds": { + "#": 4786 + }, + "collisionFilter": { + "#": 4789 + }, + "constraintImpulse": { + "#": 4790 + }, + "density": 0.001, + "force": { + "#": 4791 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 218, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4792 + }, + "positionImpulse": { + "#": 4793 + }, + "positionPrev": { + "#": 4794 + }, + "region": { + "#": 4795 + }, + "render": { + "#": 4796 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4798 + }, + "vertices": { + "#": 4799 + } + }, + [ + { + "#": 4784 + }, + { + "#": 4785 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4787 + }, + "min": { + "#": 4788 + } + }, + { + "x": 650, + "y": 482.7769050672776 + }, + { + "x": 615, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 462.896587184877 + }, + { + "endCol": 13, + "endRow": 10, + "id": "12,13,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4797 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4800 + }, + { + "#": 4801 + }, + { + "#": 4802 + }, + { + "#": 4803 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4805 + }, + "bounds": { + "#": 4808 + }, + "collisionFilter": { + "#": 4811 + }, + "constraintImpulse": { + "#": 4812 + }, + "density": 0.001, + "force": { + "#": 4813 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 219, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4814 + }, + "positionImpulse": { + "#": 4815 + }, + "positionPrev": { + "#": 4816 + }, + "region": { + "#": 4817 + }, + "render": { + "#": 4818 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4820 + }, + "vertices": { + "#": 4821 + } + }, + [ + { + "#": 4806 + }, + { + "#": 4807 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4809 + }, + "min": { + "#": 4810 + } + }, + { + "x": 685, + "y": 482.7769050672776 + }, + { + "x": 650, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 462.896587184877 + }, + { + "endCol": 14, + "endRow": 10, + "id": "13,14,9,10", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4819 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + }, + { + "#": 4825 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4827 + }, + "bounds": { + "#": 4830 + }, + "collisionFilter": { + "#": 4833 + }, + "constraintImpulse": { + "#": 4834 + }, + "density": 0.001, + "force": { + "#": 4835 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 220, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4836 + }, + "positionImpulse": { + "#": 4837 + }, + "positionPrev": { + "#": 4838 + }, + "region": { + "#": 4839 + }, + "render": { + "#": 4840 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.3660979772754054, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4842 + }, + "vertices": { + "#": 4843 + } + }, + [ + { + "#": 4828 + }, + { + "#": 4829 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4831 + }, + "min": { + "#": 4832 + } + }, + { + "x": 720, + "y": 482.7769050672776 + }, + { + "x": 685, + "y": 446.4108070900022 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 463.9108070900022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 462.896587184877 + }, + { + "endCol": 15, + "endRow": 10, + "id": "14,15,9,10", + "startCol": 14, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4841 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.7921234515495712 + }, + [ + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + }, + { + "#": 4847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 446.4108070900022 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 481.4108070900022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 481.4108070900022 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4849 + }, + "bounds": { + "#": 4852 + }, + "collisionFilter": { + "#": 4855 + }, + "constraintImpulse": { + "#": 4856 + }, + "density": 0.001, + "force": { + "#": 4857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 221, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4858 + }, + "positionImpulse": { + "#": 4859 + }, + "positionPrev": { + "#": 4860 + }, + "region": { + "#": 4861 + }, + "render": { + "#": 4862 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4864 + }, + "vertices": { + "#": 4865 + } + }, + [ + { + "#": 4850 + }, + { + "#": 4851 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4853 + }, + "min": { + "#": 4854 + } + }, + { + "x": 125, + "y": 515.8348440892721 + }, + { + "x": 90, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 496.61616829952084 + }, + { + "endCol": 2, + "endRow": 10, + "id": "1,2,10,10", + "startCol": 1, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4863 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 4866 + }, + { + "#": 4867 + }, + { + "#": 4868 + }, + { + "#": 4869 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4871 + }, + "bounds": { + "#": 4874 + }, + "collisionFilter": { + "#": 4877 + }, + "constraintImpulse": { + "#": 4878 + }, + "density": 0.001, + "force": { + "#": 4879 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 222, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4880 + }, + "positionImpulse": { + "#": 4881 + }, + "positionPrev": { + "#": 4882 + }, + "region": { + "#": 4883 + }, + "render": { + "#": 4884 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4886 + }, + "vertices": { + "#": 4887 + } + }, + [ + { + "#": 4872 + }, + { + "#": 4873 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4875 + }, + "min": { + "#": 4876 + } + }, + { + "x": 160, + "y": 515.8348440892721 + }, + { + "x": 125, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 496.61616829952084 + }, + { + "endCol": 3, + "endRow": 10, + "id": "2,3,10,10", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4885 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 4888 + }, + { + "#": 4889 + }, + { + "#": 4890 + }, + { + "#": 4891 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4893 + }, + "bounds": { + "#": 4896 + }, + "collisionFilter": { + "#": 4899 + }, + "constraintImpulse": { + "#": 4900 + }, + "density": 0.001, + "force": { + "#": 4901 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 223, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4902 + }, + "positionImpulse": { + "#": 4903 + }, + "positionPrev": { + "#": 4904 + }, + "region": { + "#": 4905 + }, + "render": { + "#": 4906 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4908 + }, + "vertices": { + "#": 4909 + } + }, + [ + { + "#": 4894 + }, + { + "#": 4895 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4897 + }, + "min": { + "#": 4898 + } + }, + { + "x": 195, + "y": 515.8348440892721 + }, + { + "x": 160, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 496.61616829952084 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,10,10", + "startCol": 3, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4907 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 4910 + }, + { + "#": 4911 + }, + { + "#": 4912 + }, + { + "#": 4913 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4915 + }, + "bounds": { + "#": 4918 + }, + "collisionFilter": { + "#": 4921 + }, + "constraintImpulse": { + "#": 4922 + }, + "density": 0.001, + "force": { + "#": 4923 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 224, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4924 + }, + "positionImpulse": { + "#": 4925 + }, + "positionPrev": { + "#": 4926 + }, + "region": { + "#": 4927 + }, + "render": { + "#": 4928 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4930 + }, + "vertices": { + "#": 4931 + } + }, + [ + { + "#": 4916 + }, + { + "#": 4917 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4919 + }, + "min": { + "#": 4920 + } + }, + { + "x": 230, + "y": 515.8348440892721 + }, + { + "x": 195, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 496.61616829952084 + }, + { + "endCol": 4, + "endRow": 10, + "id": "4,4,10,10", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4929 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 4932 + }, + { + "#": 4933 + }, + { + "#": 4934 + }, + { + "#": 4935 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4937 + }, + "bounds": { + "#": 4940 + }, + "collisionFilter": { + "#": 4943 + }, + "constraintImpulse": { + "#": 4944 + }, + "density": 0.001, + "force": { + "#": 4945 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 225, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4946 + }, + "positionImpulse": { + "#": 4947 + }, + "positionPrev": { + "#": 4948 + }, + "region": { + "#": 4949 + }, + "render": { + "#": 4950 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4952 + }, + "vertices": { + "#": 4953 + } + }, + [ + { + "#": 4938 + }, + { + "#": 4939 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4941 + }, + "min": { + "#": 4942 + } + }, + { + "x": 265, + "y": 515.8348440892721 + }, + { + "x": 230, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 496.61616829952084 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,10,10", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4951 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4959 + }, + "bounds": { + "#": 4962 + }, + "collisionFilter": { + "#": 4965 + }, + "constraintImpulse": { + "#": 4966 + }, + "density": 0.001, + "force": { + "#": 4967 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 226, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4968 + }, + "positionImpulse": { + "#": 4969 + }, + "positionPrev": { + "#": 4970 + }, + "region": { + "#": 4971 + }, + "render": { + "#": 4972 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4974 + }, + "vertices": { + "#": 4975 + } + }, + [ + { + "#": 4960 + }, + { + "#": 4961 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4963 + }, + "min": { + "#": 4964 + } + }, + { + "x": 300, + "y": 515.8348440892721 + }, + { + "x": 265, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 496.61616829952084 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,10,10", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4973 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 4976 + }, + { + "#": 4977 + }, + { + "#": 4978 + }, + { + "#": 4979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 4981 + }, + "bounds": { + "#": 4984 + }, + "collisionFilter": { + "#": 4987 + }, + "constraintImpulse": { + "#": 4988 + }, + "density": 0.001, + "force": { + "#": 4989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 227, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 4990 + }, + "positionImpulse": { + "#": 4991 + }, + "positionPrev": { + "#": 4992 + }, + "region": { + "#": 4993 + }, + "render": { + "#": 4994 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4996 + }, + "vertices": { + "#": 4997 + } + }, + [ + { + "#": 4982 + }, + { + "#": 4983 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4985 + }, + "min": { + "#": 4986 + } + }, + { + "x": 335, + "y": 515.8348440892721 + }, + { + "x": 300, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 496.61616829952084 + }, + { + "endCol": 6, + "endRow": 10, + "id": "6,6,10,10", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4995 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 4998 + }, + { + "#": 4999 + }, + { + "#": 5000 + }, + { + "#": 5001 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5003 + }, + "bounds": { + "#": 5006 + }, + "collisionFilter": { + "#": 5009 + }, + "constraintImpulse": { + "#": 5010 + }, + "density": 0.001, + "force": { + "#": 5011 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 228, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5012 + }, + "positionImpulse": { + "#": 5013 + }, + "positionPrev": { + "#": 5014 + }, + "region": { + "#": 5015 + }, + "render": { + "#": 5016 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5018 + }, + "vertices": { + "#": 5019 + } + }, + [ + { + "#": 5004 + }, + { + "#": 5005 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5007 + }, + "min": { + "#": 5008 + } + }, + { + "x": 370, + "y": 515.8348440892721 + }, + { + "x": 335, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 496.61616829952084 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,10,10", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5017 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5020 + }, + { + "#": 5021 + }, + { + "#": 5022 + }, + { + "#": 5023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5025 + }, + "bounds": { + "#": 5028 + }, + "collisionFilter": { + "#": 5031 + }, + "constraintImpulse": { + "#": 5032 + }, + "density": 0.001, + "force": { + "#": 5033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 229, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5034 + }, + "positionImpulse": { + "#": 5035 + }, + "positionPrev": { + "#": 5036 + }, + "region": { + "#": 5037 + }, + "render": { + "#": 5038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5040 + }, + "vertices": { + "#": 5041 + } + }, + [ + { + "#": 5026 + }, + { + "#": 5027 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5029 + }, + "min": { + "#": 5030 + } + }, + { + "x": 405, + "y": 515.8348440892721 + }, + { + "x": 370, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 496.61616829952084 + }, + { + "endCol": 8, + "endRow": 10, + "id": "7,8,10,10", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5039 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5042 + }, + { + "#": 5043 + }, + { + "#": 5044 + }, + { + "#": 5045 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5047 + }, + "bounds": { + "#": 5050 + }, + "collisionFilter": { + "#": 5053 + }, + "constraintImpulse": { + "#": 5054 + }, + "density": 0.001, + "force": { + "#": 5055 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 230, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5056 + }, + "positionImpulse": { + "#": 5057 + }, + "positionPrev": { + "#": 5058 + }, + "region": { + "#": 5059 + }, + "render": { + "#": 5060 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5062 + }, + "vertices": { + "#": 5063 + } + }, + [ + { + "#": 5048 + }, + { + "#": 5049 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5051 + }, + "min": { + "#": 5052 + } + }, + { + "x": 440, + "y": 515.8348440892721 + }, + { + "x": 405, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 496.61616829952084 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,10,10", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5061 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5064 + }, + { + "#": 5065 + }, + { + "#": 5066 + }, + { + "#": 5067 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5069 + }, + "bounds": { + "#": 5072 + }, + "collisionFilter": { + "#": 5075 + }, + "constraintImpulse": { + "#": 5076 + }, + "density": 0.001, + "force": { + "#": 5077 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 231, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5078 + }, + "positionImpulse": { + "#": 5079 + }, + "positionPrev": { + "#": 5080 + }, + "region": { + "#": 5081 + }, + "render": { + "#": 5082 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5084 + }, + "vertices": { + "#": 5085 + } + }, + [ + { + "#": 5070 + }, + { + "#": 5071 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5073 + }, + "min": { + "#": 5074 + } + }, + { + "x": 475, + "y": 515.8348440892721 + }, + { + "x": 440, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 496.61616829952084 + }, + { + "endCol": 9, + "endRow": 10, + "id": "9,9,10,10", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5083 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + }, + { + "#": 5088 + }, + { + "#": 5089 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5091 + }, + "bounds": { + "#": 5094 + }, + "collisionFilter": { + "#": 5097 + }, + "constraintImpulse": { + "#": 5098 + }, + "density": 0.001, + "force": { + "#": 5099 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 232, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5100 + }, + "positionImpulse": { + "#": 5101 + }, + "positionPrev": { + "#": 5102 + }, + "region": { + "#": 5103 + }, + "render": { + "#": 5104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5106 + }, + "vertices": { + "#": 5107 + } + }, + [ + { + "#": 5092 + }, + { + "#": 5093 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5095 + }, + "min": { + "#": 5096 + } + }, + { + "x": 510, + "y": 515.8348440892721 + }, + { + "x": 475, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 496.61616829952084 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,10,10", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5105 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5113 + }, + "bounds": { + "#": 5116 + }, + "collisionFilter": { + "#": 5119 + }, + "constraintImpulse": { + "#": 5120 + }, + "density": 0.001, + "force": { + "#": 5121 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 233, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5122 + }, + "positionImpulse": { + "#": 5123 + }, + "positionPrev": { + "#": 5124 + }, + "region": { + "#": 5125 + }, + "render": { + "#": 5126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5128 + }, + "vertices": { + "#": 5129 + } + }, + [ + { + "#": 5114 + }, + { + "#": 5115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5117 + }, + "min": { + "#": 5118 + } + }, + { + "x": 545, + "y": 515.8348440892721 + }, + { + "x": 510, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 496.61616829952084 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,10,10", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5127 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5130 + }, + { + "#": 5131 + }, + { + "#": 5132 + }, + { + "#": 5133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5135 + }, + "bounds": { + "#": 5138 + }, + "collisionFilter": { + "#": 5141 + }, + "constraintImpulse": { + "#": 5142 + }, + "density": 0.001, + "force": { + "#": 5143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 234, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5144 + }, + "positionImpulse": { + "#": 5145 + }, + "positionPrev": { + "#": 5146 + }, + "region": { + "#": 5147 + }, + "render": { + "#": 5148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5150 + }, + "vertices": { + "#": 5151 + } + }, + [ + { + "#": 5136 + }, + { + "#": 5137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5139 + }, + "min": { + "#": 5140 + } + }, + { + "x": 580, + "y": 515.8348440892721 + }, + { + "x": 545, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 496.61616829952084 + }, + { + "endCol": 12, + "endRow": 10, + "id": "11,12,10,10", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5149 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5152 + }, + { + "#": 5153 + }, + { + "#": 5154 + }, + { + "#": 5155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5157 + }, + "bounds": { + "#": 5160 + }, + "collisionFilter": { + "#": 5163 + }, + "constraintImpulse": { + "#": 5164 + }, + "density": 0.001, + "force": { + "#": 5165 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 235, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5166 + }, + "positionImpulse": { + "#": 5167 + }, + "positionPrev": { + "#": 5168 + }, + "region": { + "#": 5169 + }, + "render": { + "#": 5170 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5172 + }, + "vertices": { + "#": 5173 + } + }, + [ + { + "#": 5158 + }, + { + "#": 5159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5161 + }, + "min": { + "#": 5162 + } + }, + { + "x": 615, + "y": 515.8348440892721 + }, + { + "x": 580, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 496.61616829952084 + }, + { + "endCol": 12, + "endRow": 10, + "id": "12,12,10,10", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5171 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5174 + }, + { + "#": 5175 + }, + { + "#": 5176 + }, + { + "#": 5177 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5179 + }, + "bounds": { + "#": 5182 + }, + "collisionFilter": { + "#": 5185 + }, + "constraintImpulse": { + "#": 5186 + }, + "density": 0.001, + "force": { + "#": 5187 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 236, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5188 + }, + "positionImpulse": { + "#": 5189 + }, + "positionPrev": { + "#": 5190 + }, + "region": { + "#": 5191 + }, + "render": { + "#": 5192 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5194 + }, + "vertices": { + "#": 5195 + } + }, + [ + { + "#": 5180 + }, + { + "#": 5181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5183 + }, + "min": { + "#": 5184 + } + }, + { + "x": 650, + "y": 515.8348440892721 + }, + { + "x": 615, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 496.61616829952084 + }, + { + "endCol": 13, + "endRow": 10, + "id": "12,13,10,10", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5193 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5196 + }, + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5201 + }, + "bounds": { + "#": 5204 + }, + "collisionFilter": { + "#": 5207 + }, + "constraintImpulse": { + "#": 5208 + }, + "density": 0.001, + "force": { + "#": 5209 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 237, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5210 + }, + "positionImpulse": { + "#": 5211 + }, + "positionPrev": { + "#": 5212 + }, + "region": { + "#": 5213 + }, + "render": { + "#": 5214 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5216 + }, + "vertices": { + "#": 5217 + } + }, + [ + { + "#": 5202 + }, + { + "#": 5203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5205 + }, + "min": { + "#": 5206 + } + }, + { + "x": 685, + "y": 515.8348440892721 + }, + { + "x": 650, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 496.61616829952084 + }, + { + "endCol": 14, + "endRow": 10, + "id": "13,14,10,10", + "startCol": 13, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5215 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5218 + }, + { + "#": 5219 + }, + { + "#": 5220 + }, + { + "#": 5221 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5223 + }, + "bounds": { + "#": 5226 + }, + "collisionFilter": { + "#": 5229 + }, + "constraintImpulse": { + "#": 5230 + }, + "density": 0.001, + "force": { + "#": 5231 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 238, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5232 + }, + "positionImpulse": { + "#": 5233 + }, + "positionPrev": { + "#": 5234 + }, + "region": { + "#": 5235 + }, + "render": { + "#": 5236 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0748899418055369, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5238 + }, + "vertices": { + "#": 5239 + } + }, + [ + { + "#": 5224 + }, + { + "#": 5225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5227 + }, + "min": { + "#": 5228 + } + }, + { + "x": 720, + "y": 515.8348440892721 + }, + { + "x": 685, + "y": 479.7599541474664 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 497.2599541474664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 496.61616829952084 + }, + { + "endCol": 15, + "endRow": 10, + "id": "14,15,10,10", + "startCol": 14, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5237 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.4460023764733023 + }, + [ + { + "#": 5240 + }, + { + "#": 5241 + }, + { + "#": 5242 + }, + { + "#": 5243 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 479.7599541474664 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 514.7599541474666 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 514.7599541474666 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5245 + }, + "bounds": { + "#": 5248 + }, + "collisionFilter": { + "#": 5251 + }, + "constraintImpulse": { + "#": 5252 + }, + "density": 0.001, + "force": { + "#": 5253 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 239, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5254 + }, + "positionImpulse": { + "#": 5255 + }, + "positionPrev": { + "#": 5256 + }, + "region": { + "#": 5257 + }, + "render": { + "#": 5258 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5260 + }, + "vertices": { + "#": 5261 + } + }, + [ + { + "#": 5246 + }, + { + "#": 5247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5249 + }, + "min": { + "#": 5250 + } + }, + { + "x": 125, + "y": 548.5869582674079 + }, + { + "x": 90, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 530.018285328639 + }, + { + "endCol": 2, + "endRow": 11, + "id": "1,2,10,11", + "startCol": 1, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5259 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5262 + }, + { + "#": 5263 + }, + { + "#": 5264 + }, + { + "#": 5265 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5267 + }, + "bounds": { + "#": 5270 + }, + "collisionFilter": { + "#": 5273 + }, + "constraintImpulse": { + "#": 5274 + }, + "density": 0.001, + "force": { + "#": 5275 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 240, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5276 + }, + "positionImpulse": { + "#": 5277 + }, + "positionPrev": { + "#": 5278 + }, + "region": { + "#": 5279 + }, + "render": { + "#": 5280 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5282 + }, + "vertices": { + "#": 5283 + } + }, + [ + { + "#": 5268 + }, + { + "#": 5269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5271 + }, + "min": { + "#": 5272 + } + }, + { + "x": 160, + "y": 548.5869582674079 + }, + { + "x": 125, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 530.018285328639 + }, + { + "endCol": 3, + "endRow": 11, + "id": "2,3,10,11", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5281 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5284 + }, + { + "#": 5285 + }, + { + "#": 5286 + }, + { + "#": 5287 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5289 + }, + "bounds": { + "#": 5292 + }, + "collisionFilter": { + "#": 5295 + }, + "constraintImpulse": { + "#": 5296 + }, + "density": 0.001, + "force": { + "#": 5297 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 241, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5298 + }, + "positionImpulse": { + "#": 5299 + }, + "positionPrev": { + "#": 5300 + }, + "region": { + "#": 5301 + }, + "render": { + "#": 5302 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5304 + }, + "vertices": { + "#": 5305 + } + }, + [ + { + "#": 5290 + }, + { + "#": 5291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5293 + }, + "min": { + "#": 5294 + } + }, + { + "x": 195, + "y": 548.5869582674079 + }, + { + "x": 160, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 530.018285328639 + }, + { + "endCol": 4, + "endRow": 11, + "id": "3,4,10,11", + "startCol": 3, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5303 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5306 + }, + { + "#": 5307 + }, + { + "#": 5308 + }, + { + "#": 5309 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5311 + }, + "bounds": { + "#": 5314 + }, + "collisionFilter": { + "#": 5317 + }, + "constraintImpulse": { + "#": 5318 + }, + "density": 0.001, + "force": { + "#": 5319 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 242, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5320 + }, + "positionImpulse": { + "#": 5321 + }, + "positionPrev": { + "#": 5322 + }, + "region": { + "#": 5323 + }, + "render": { + "#": 5324 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5326 + }, + "vertices": { + "#": 5327 + } + }, + [ + { + "#": 5312 + }, + { + "#": 5313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5315 + }, + "min": { + "#": 5316 + } + }, + { + "x": 230, + "y": 548.5869582674079 + }, + { + "x": 195, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 530.018285328639 + }, + { + "endCol": 4, + "endRow": 11, + "id": "4,4,10,11", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5325 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5328 + }, + { + "#": 5329 + }, + { + "#": 5330 + }, + { + "#": 5331 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5333 + }, + "bounds": { + "#": 5336 + }, + "collisionFilter": { + "#": 5339 + }, + "constraintImpulse": { + "#": 5340 + }, + "density": 0.001, + "force": { + "#": 5341 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 243, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5342 + }, + "positionImpulse": { + "#": 5343 + }, + "positionPrev": { + "#": 5344 + }, + "region": { + "#": 5345 + }, + "render": { + "#": 5346 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5348 + }, + "vertices": { + "#": 5349 + } + }, + [ + { + "#": 5334 + }, + { + "#": 5335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5337 + }, + "min": { + "#": 5338 + } + }, + { + "x": 265, + "y": 548.5869582674079 + }, + { + "x": 230, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 530.018285328639 + }, + { + "endCol": 5, + "endRow": 11, + "id": "4,5,10,11", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5347 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5350 + }, + { + "#": 5351 + }, + { + "#": 5352 + }, + { + "#": 5353 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5355 + }, + "bounds": { + "#": 5358 + }, + "collisionFilter": { + "#": 5361 + }, + "constraintImpulse": { + "#": 5362 + }, + "density": 0.001, + "force": { + "#": 5363 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 244, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5364 + }, + "positionImpulse": { + "#": 5365 + }, + "positionPrev": { + "#": 5366 + }, + "region": { + "#": 5367 + }, + "render": { + "#": 5368 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5370 + }, + "vertices": { + "#": 5371 + } + }, + [ + { + "#": 5356 + }, + { + "#": 5357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5359 + }, + "min": { + "#": 5360 + } + }, + { + "x": 300, + "y": 548.5869582674079 + }, + { + "x": 265, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 530.018285328639 + }, + { + "endCol": 6, + "endRow": 11, + "id": "5,6,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5369 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5372 + }, + { + "#": 5373 + }, + { + "#": 5374 + }, + { + "#": 5375 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5377 + }, + "bounds": { + "#": 5380 + }, + "collisionFilter": { + "#": 5383 + }, + "constraintImpulse": { + "#": 5384 + }, + "density": 0.001, + "force": { + "#": 5385 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 245, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5386 + }, + "positionImpulse": { + "#": 5387 + }, + "positionPrev": { + "#": 5388 + }, + "region": { + "#": 5389 + }, + "render": { + "#": 5390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5392 + }, + "vertices": { + "#": 5393 + } + }, + [ + { + "#": 5378 + }, + { + "#": 5379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5381 + }, + "min": { + "#": 5382 + } + }, + { + "x": 335, + "y": 548.5869582674079 + }, + { + "x": 300, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 530.018285328639 + }, + { + "endCol": 6, + "endRow": 11, + "id": "6,6,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5391 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5394 + }, + { + "#": 5395 + }, + { + "#": 5396 + }, + { + "#": 5397 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5399 + }, + "bounds": { + "#": 5402 + }, + "collisionFilter": { + "#": 5405 + }, + "constraintImpulse": { + "#": 5406 + }, + "density": 0.001, + "force": { + "#": 5407 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 246, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5408 + }, + "positionImpulse": { + "#": 5409 + }, + "positionPrev": { + "#": 5410 + }, + "region": { + "#": 5411 + }, + "render": { + "#": 5412 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5414 + }, + "vertices": { + "#": 5415 + } + }, + [ + { + "#": 5400 + }, + { + "#": 5401 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5403 + }, + "min": { + "#": 5404 + } + }, + { + "x": 370, + "y": 548.5869582674079 + }, + { + "x": 335, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 530.018285328639 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5413 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5416 + }, + { + "#": 5417 + }, + { + "#": 5418 + }, + { + "#": 5419 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5421 + }, + "bounds": { + "#": 5424 + }, + "collisionFilter": { + "#": 5427 + }, + "constraintImpulse": { + "#": 5428 + }, + "density": 0.001, + "force": { + "#": 5429 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 247, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5430 + }, + "positionImpulse": { + "#": 5431 + }, + "positionPrev": { + "#": 5432 + }, + "region": { + "#": 5433 + }, + "render": { + "#": 5434 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5436 + }, + "vertices": { + "#": 5437 + } + }, + [ + { + "#": 5422 + }, + { + "#": 5423 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5425 + }, + "min": { + "#": 5426 + } + }, + { + "x": 405, + "y": 548.5869582674079 + }, + { + "x": 370, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 530.018285328639 + }, + { + "endCol": 8, + "endRow": 11, + "id": "7,8,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5435 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + }, + { + "#": 5441 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5443 + }, + "bounds": { + "#": 5446 + }, + "collisionFilter": { + "#": 5449 + }, + "constraintImpulse": { + "#": 5450 + }, + "density": 0.001, + "force": { + "#": 5451 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 248, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5452 + }, + "positionImpulse": { + "#": 5453 + }, + "positionPrev": { + "#": 5454 + }, + "region": { + "#": 5455 + }, + "render": { + "#": 5456 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5458 + }, + "vertices": { + "#": 5459 + } + }, + [ + { + "#": 5444 + }, + { + "#": 5445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5447 + }, + "min": { + "#": 5448 + } + }, + { + "x": 440, + "y": 548.5869582674079 + }, + { + "x": 405, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 530.018285328639 + }, + { + "endCol": 9, + "endRow": 11, + "id": "8,9,10,11", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5457 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5460 + }, + { + "#": 5461 + }, + { + "#": 5462 + }, + { + "#": 5463 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5465 + }, + "bounds": { + "#": 5468 + }, + "collisionFilter": { + "#": 5471 + }, + "constraintImpulse": { + "#": 5472 + }, + "density": 0.001, + "force": { + "#": 5473 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 249, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5474 + }, + "positionImpulse": { + "#": 5475 + }, + "positionPrev": { + "#": 5476 + }, + "region": { + "#": 5477 + }, + "render": { + "#": 5478 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5480 + }, + "vertices": { + "#": 5481 + } + }, + [ + { + "#": 5466 + }, + { + "#": 5467 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5469 + }, + "min": { + "#": 5470 + } + }, + { + "x": 475, + "y": 548.5869582674079 + }, + { + "x": 440, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 530.018285328639 + }, + { + "endCol": 9, + "endRow": 11, + "id": "9,9,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5479 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5482 + }, + { + "#": 5483 + }, + { + "#": 5484 + }, + { + "#": 5485 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5487 + }, + "bounds": { + "#": 5490 + }, + "collisionFilter": { + "#": 5493 + }, + "constraintImpulse": { + "#": 5494 + }, + "density": 0.001, + "force": { + "#": 5495 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 250, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5496 + }, + "positionImpulse": { + "#": 5497 + }, + "positionPrev": { + "#": 5498 + }, + "region": { + "#": 5499 + }, + "render": { + "#": 5500 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5502 + }, + "vertices": { + "#": 5503 + } + }, + [ + { + "#": 5488 + }, + { + "#": 5489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5491 + }, + "min": { + "#": 5492 + } + }, + { + "x": 510, + "y": 548.5869582674079 + }, + { + "x": 475, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 530.018285328639 + }, + { + "endCol": 10, + "endRow": 11, + "id": "9,10,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5501 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5504 + }, + { + "#": 5505 + }, + { + "#": 5506 + }, + { + "#": 5507 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5509 + }, + "bounds": { + "#": 5512 + }, + "collisionFilter": { + "#": 5515 + }, + "constraintImpulse": { + "#": 5516 + }, + "density": 0.001, + "force": { + "#": 5517 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 251, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5518 + }, + "positionImpulse": { + "#": 5519 + }, + "positionPrev": { + "#": 5520 + }, + "region": { + "#": 5521 + }, + "render": { + "#": 5522 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5524 + }, + "vertices": { + "#": 5525 + } + }, + [ + { + "#": 5510 + }, + { + "#": 5511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5513 + }, + "min": { + "#": 5514 + } + }, + { + "x": 545, + "y": 548.5869582674079 + }, + { + "x": 510, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 530.018285328639 + }, + { + "endCol": 11, + "endRow": 11, + "id": "10,11,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5523 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5526 + }, + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5531 + }, + "bounds": { + "#": 5534 + }, + "collisionFilter": { + "#": 5537 + }, + "constraintImpulse": { + "#": 5538 + }, + "density": 0.001, + "force": { + "#": 5539 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 252, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5540 + }, + "positionImpulse": { + "#": 5541 + }, + "positionPrev": { + "#": 5542 + }, + "region": { + "#": 5543 + }, + "render": { + "#": 5544 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5546 + }, + "vertices": { + "#": 5547 + } + }, + [ + { + "#": 5532 + }, + { + "#": 5533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5535 + }, + "min": { + "#": 5536 + } + }, + { + "x": 580, + "y": 548.5869582674079 + }, + { + "x": 545, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 530.018285328639 + }, + { + "endCol": 12, + "endRow": 11, + "id": "11,12,10,11", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5545 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5553 + }, + "bounds": { + "#": 5556 + }, + "collisionFilter": { + "#": 5559 + }, + "constraintImpulse": { + "#": 5560 + }, + "density": 0.001, + "force": { + "#": 5561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 253, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5562 + }, + "positionImpulse": { + "#": 5563 + }, + "positionPrev": { + "#": 5564 + }, + "region": { + "#": 5565 + }, + "render": { + "#": 5566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5568 + }, + "vertices": { + "#": 5569 + } + }, + [ + { + "#": 5554 + }, + { + "#": 5555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5557 + }, + "min": { + "#": 5558 + } + }, + { + "x": 615, + "y": 548.5869582674079 + }, + { + "x": 580, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 530.018285328639 + }, + { + "endCol": 12, + "endRow": 11, + "id": "12,12,10,11", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5567 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + }, + { + "#": 5573 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5575 + }, + "bounds": { + "#": 5578 + }, + "collisionFilter": { + "#": 5581 + }, + "constraintImpulse": { + "#": 5582 + }, + "density": 0.001, + "force": { + "#": 5583 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 254, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5584 + }, + "positionImpulse": { + "#": 5585 + }, + "positionPrev": { + "#": 5586 + }, + "region": { + "#": 5587 + }, + "render": { + "#": 5588 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5590 + }, + "vertices": { + "#": 5591 + } + }, + [ + { + "#": 5576 + }, + { + "#": 5577 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5579 + }, + "min": { + "#": 5580 + } + }, + { + "x": 650, + "y": 548.5869582674079 + }, + { + "x": 615, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 530.018285328639 + }, + { + "endCol": 13, + "endRow": 11, + "id": "12,13,10,11", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5589 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5597 + }, + "bounds": { + "#": 5600 + }, + "collisionFilter": { + "#": 5603 + }, + "constraintImpulse": { + "#": 5604 + }, + "density": 0.001, + "force": { + "#": 5605 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 255, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5606 + }, + "positionImpulse": { + "#": 5607 + }, + "positionPrev": { + "#": 5608 + }, + "region": { + "#": 5609 + }, + "render": { + "#": 5610 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5612 + }, + "vertices": { + "#": 5613 + } + }, + [ + { + "#": 5598 + }, + { + "#": 5599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5601 + }, + "min": { + "#": 5602 + } + }, + { + "x": 685, + "y": 548.5869582674079 + }, + { + "x": 650, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 530.018285328639 + }, + { + "endCol": 14, + "endRow": 11, + "id": "13,14,10,11", + "startCol": 13, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5611 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5614 + }, + { + "#": 5615 + }, + { + "#": 5616 + }, + { + "#": 5617 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5619 + }, + "bounds": { + "#": 5622 + }, + "collisionFilter": { + "#": 5625 + }, + "constraintImpulse": { + "#": 5626 + }, + "density": 0.001, + "force": { + "#": 5627 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 256, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5628 + }, + "positionImpulse": { + "#": 5629 + }, + "positionPrev": { + "#": 5630 + }, + "region": { + "#": 5631 + }, + "render": { + "#": 5632 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.7171607385380987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5634 + }, + "vertices": { + "#": 5635 + } + }, + [ + { + "#": 5620 + }, + { + "#": 5621 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5623 + }, + "min": { + "#": 5624 + } + }, + { + "x": 720, + "y": 548.5869582674079 + }, + { + "x": 685, + "y": 512.8697975288695 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 530.3697975288698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 530.018285328639 + }, + { + "endCol": 15, + "endRow": 11, + "id": "14,15,10,11", + "startCol": 14, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5633 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2255252985740981 + }, + [ + { + "#": 5636 + }, + { + "#": 5637 + }, + { + "#": 5638 + }, + { + "#": 5639 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 512.8697975288695 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 547.8697975288698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 547.8697975288698 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5641 + }, + "bounds": { + "#": 5644 + }, + "collisionFilter": { + "#": 5647 + }, + "constraintImpulse": { + "#": 5648 + }, + "density": 0.001, + "force": { + "#": 5649 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 257, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5650 + }, + "positionImpulse": { + "#": 5651 + }, + "positionPrev": { + "#": 5652 + }, + "region": { + "#": 5653 + }, + "render": { + "#": 5654 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5656 + }, + "vertices": { + "#": 5657 + } + }, + [ + { + "#": 5642 + }, + { + "#": 5643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5645 + }, + "min": { + "#": 5646 + } + }, + { + "x": 125, + "y": 581.2616777730284 + }, + { + "x": 90, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.5, + "y": 563.1792150231743 + }, + { + "endCol": 2, + "endRow": 12, + "id": "1,2,11,12", + "startCol": 1, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5655 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5658 + }, + { + "#": 5659 + }, + { + "#": 5660 + }, + { + "#": 5661 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 90, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5663 + }, + "bounds": { + "#": 5666 + }, + "collisionFilter": { + "#": 5669 + }, + "constraintImpulse": { + "#": 5670 + }, + "density": 0.001, + "force": { + "#": 5671 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 258, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5672 + }, + "positionImpulse": { + "#": 5673 + }, + "positionPrev": { + "#": 5674 + }, + "region": { + "#": 5675 + }, + "render": { + "#": 5676 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5678 + }, + "vertices": { + "#": 5679 + } + }, + [ + { + "#": 5664 + }, + { + "#": 5665 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5667 + }, + "min": { + "#": 5668 + } + }, + { + "x": 160, + "y": 581.2616777730284 + }, + { + "x": 125, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.5, + "y": 563.1792150231743 + }, + { + "endCol": 3, + "endRow": 12, + "id": "2,3,11,12", + "startCol": 2, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5677 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5680 + }, + { + "#": 5681 + }, + { + "#": 5682 + }, + { + "#": 5683 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5685 + }, + "bounds": { + "#": 5688 + }, + "collisionFilter": { + "#": 5691 + }, + "constraintImpulse": { + "#": 5692 + }, + "density": 0.001, + "force": { + "#": 5693 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 259, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5694 + }, + "positionImpulse": { + "#": 5695 + }, + "positionPrev": { + "#": 5696 + }, + "region": { + "#": 5697 + }, + "render": { + "#": 5698 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5700 + }, + "vertices": { + "#": 5701 + } + }, + [ + { + "#": 5686 + }, + { + "#": 5687 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5689 + }, + "min": { + "#": 5690 + } + }, + { + "x": 195, + "y": 581.2616777730284 + }, + { + "x": 160, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 177.5, + "y": 563.1792150231743 + }, + { + "endCol": 4, + "endRow": 12, + "id": "3,4,11,12", + "startCol": 3, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5699 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5702 + }, + { + "#": 5703 + }, + { + "#": 5704 + }, + { + "#": 5705 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 195, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 195, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5707 + }, + "bounds": { + "#": 5710 + }, + "collisionFilter": { + "#": 5713 + }, + "constraintImpulse": { + "#": 5714 + }, + "density": 0.001, + "force": { + "#": 5715 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 260, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5716 + }, + "positionImpulse": { + "#": 5717 + }, + "positionPrev": { + "#": 5718 + }, + "region": { + "#": 5719 + }, + "render": { + "#": 5720 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5722 + }, + "vertices": { + "#": 5723 + } + }, + [ + { + "#": 5708 + }, + { + "#": 5709 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5711 + }, + "min": { + "#": 5712 + } + }, + { + "x": 230, + "y": 581.2616777730284 + }, + { + "x": 195, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 563.1792150231743 + }, + { + "endCol": 4, + "endRow": 12, + "id": "4,4,11,12", + "startCol": 4, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5721 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5724 + }, + { + "#": 5725 + }, + { + "#": 5726 + }, + { + "#": 5727 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 195, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 230, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 230, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 195, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5729 + }, + "bounds": { + "#": 5732 + }, + "collisionFilter": { + "#": 5735 + }, + "constraintImpulse": { + "#": 5736 + }, + "density": 0.001, + "force": { + "#": 5737 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 261, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5738 + }, + "positionImpulse": { + "#": 5739 + }, + "positionPrev": { + "#": 5740 + }, + "region": { + "#": 5741 + }, + "render": { + "#": 5742 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5744 + }, + "vertices": { + "#": 5745 + } + }, + [ + { + "#": 5730 + }, + { + "#": 5731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5733 + }, + "min": { + "#": 5734 + } + }, + { + "x": 265, + "y": 581.2616777730284 + }, + { + "x": 230, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 247.5, + "y": 563.1792150231743 + }, + { + "endCol": 5, + "endRow": 12, + "id": "4,5,11,12", + "startCol": 4, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5743 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5746 + }, + { + "#": 5747 + }, + { + "#": 5748 + }, + { + "#": 5749 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 230, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 265, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 265, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 230, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5751 + }, + "bounds": { + "#": 5754 + }, + "collisionFilter": { + "#": 5757 + }, + "constraintImpulse": { + "#": 5758 + }, + "density": 0.001, + "force": { + "#": 5759 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 262, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5760 + }, + "positionImpulse": { + "#": 5761 + }, + "positionPrev": { + "#": 5762 + }, + "region": { + "#": 5763 + }, + "render": { + "#": 5764 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5766 + }, + "vertices": { + "#": 5767 + } + }, + [ + { + "#": 5752 + }, + { + "#": 5753 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5755 + }, + "min": { + "#": 5756 + } + }, + { + "x": 300, + "y": 581.2616777730284 + }, + { + "x": 265, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 282.5, + "y": 563.1792150231743 + }, + { + "endCol": 6, + "endRow": 12, + "id": "5,6,11,12", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5765 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5768 + }, + { + "#": 5769 + }, + { + "#": 5770 + }, + { + "#": 5771 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 265, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 265, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5773 + }, + "bounds": { + "#": 5776 + }, + "collisionFilter": { + "#": 5779 + }, + "constraintImpulse": { + "#": 5780 + }, + "density": 0.001, + "force": { + "#": 5781 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 263, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5782 + }, + "positionImpulse": { + "#": 5783 + }, + "positionPrev": { + "#": 5784 + }, + "region": { + "#": 5785 + }, + "render": { + "#": 5786 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5788 + }, + "vertices": { + "#": 5789 + } + }, + [ + { + "#": 5774 + }, + { + "#": 5775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5777 + }, + "min": { + "#": 5778 + } + }, + { + "x": 335, + "y": 581.2616777730284 + }, + { + "x": 300, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 317.5, + "y": 563.1792150231743 + }, + { + "endCol": 6, + "endRow": 12, + "id": "6,6,11,12", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5787 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5790 + }, + { + "#": 5791 + }, + { + "#": 5792 + }, + { + "#": 5793 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 335, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 335, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5795 + }, + "bounds": { + "#": 5798 + }, + "collisionFilter": { + "#": 5801 + }, + "constraintImpulse": { + "#": 5802 + }, + "density": 0.001, + "force": { + "#": 5803 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 264, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5804 + }, + "positionImpulse": { + "#": 5805 + }, + "positionPrev": { + "#": 5806 + }, + "region": { + "#": 5807 + }, + "render": { + "#": 5808 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5810 + }, + "vertices": { + "#": 5811 + } + }, + [ + { + "#": 5796 + }, + { + "#": 5797 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5799 + }, + "min": { + "#": 5800 + } + }, + { + "x": 370, + "y": 581.2616777730284 + }, + { + "x": 335, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 352.5, + "y": 563.1792150231743 + }, + { + "endCol": 7, + "endRow": 12, + "id": "6,7,11,12", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5809 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5812 + }, + { + "#": 5813 + }, + { + "#": 5814 + }, + { + "#": 5815 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 370, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 335, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5817 + }, + "bounds": { + "#": 5820 + }, + "collisionFilter": { + "#": 5823 + }, + "constraintImpulse": { + "#": 5824 + }, + "density": 0.001, + "force": { + "#": 5825 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 265, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5826 + }, + "positionImpulse": { + "#": 5827 + }, + "positionPrev": { + "#": 5828 + }, + "region": { + "#": 5829 + }, + "render": { + "#": 5830 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5832 + }, + "vertices": { + "#": 5833 + } + }, + [ + { + "#": 5818 + }, + { + "#": 5819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5821 + }, + "min": { + "#": 5822 + } + }, + { + "x": 405, + "y": 581.2616777730284 + }, + { + "x": 370, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 563.1792150231743 + }, + { + "endCol": 8, + "endRow": 12, + "id": "7,8,11,12", + "startCol": 7, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5831 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5834 + }, + { + "#": 5835 + }, + { + "#": 5836 + }, + { + "#": 5837 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 370, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 405, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 405, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 370, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5839 + }, + "bounds": { + "#": 5842 + }, + "collisionFilter": { + "#": 5845 + }, + "constraintImpulse": { + "#": 5846 + }, + "density": 0.001, + "force": { + "#": 5847 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 266, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5848 + }, + "positionImpulse": { + "#": 5849 + }, + "positionPrev": { + "#": 5850 + }, + "region": { + "#": 5851 + }, + "render": { + "#": 5852 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5854 + }, + "vertices": { + "#": 5855 + } + }, + [ + { + "#": 5840 + }, + { + "#": 5841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5843 + }, + "min": { + "#": 5844 + } + }, + { + "x": 440, + "y": 581.2616777730284 + }, + { + "x": 405, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 422.5, + "y": 563.1792150231743 + }, + { + "endCol": 9, + "endRow": 12, + "id": "8,9,11,12", + "startCol": 8, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5853 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5856 + }, + { + "#": 5857 + }, + { + "#": 5858 + }, + { + "#": 5859 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 405, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 405, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5861 + }, + "bounds": { + "#": 5864 + }, + "collisionFilter": { + "#": 5867 + }, + "constraintImpulse": { + "#": 5868 + }, + "density": 0.001, + "force": { + "#": 5869 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 267, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5870 + }, + "positionImpulse": { + "#": 5871 + }, + "positionPrev": { + "#": 5872 + }, + "region": { + "#": 5873 + }, + "render": { + "#": 5874 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5876 + }, + "vertices": { + "#": 5877 + } + }, + [ + { + "#": 5862 + }, + { + "#": 5863 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5865 + }, + "min": { + "#": 5866 + } + }, + { + "x": 475, + "y": 581.2616777730284 + }, + { + "x": 440, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.5, + "y": 563.1792150231743 + }, + { + "endCol": 9, + "endRow": 12, + "id": "9,9,11,12", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5875 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5878 + }, + { + "#": 5879 + }, + { + "#": 5880 + }, + { + "#": 5881 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5883 + }, + "bounds": { + "#": 5886 + }, + "collisionFilter": { + "#": 5889 + }, + "constraintImpulse": { + "#": 5890 + }, + "density": 0.001, + "force": { + "#": 5891 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 268, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5892 + }, + "positionImpulse": { + "#": 5893 + }, + "positionPrev": { + "#": 5894 + }, + "region": { + "#": 5895 + }, + "render": { + "#": 5896 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5898 + }, + "vertices": { + "#": 5899 + } + }, + [ + { + "#": 5884 + }, + { + "#": 5885 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5887 + }, + "min": { + "#": 5888 + } + }, + { + "x": 510, + "y": 581.2616777730284 + }, + { + "x": 475, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 492.5, + "y": 563.1792150231743 + }, + { + "endCol": 10, + "endRow": 12, + "id": "9,10,11,12", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5897 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5900 + }, + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5905 + }, + "bounds": { + "#": 5908 + }, + "collisionFilter": { + "#": 5911 + }, + "constraintImpulse": { + "#": 5912 + }, + "density": 0.001, + "force": { + "#": 5913 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 269, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5914 + }, + "positionImpulse": { + "#": 5915 + }, + "positionPrev": { + "#": 5916 + }, + "region": { + "#": 5917 + }, + "render": { + "#": 5918 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5920 + }, + "vertices": { + "#": 5921 + } + }, + [ + { + "#": 5906 + }, + { + "#": 5907 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5909 + }, + "min": { + "#": 5910 + } + }, + { + "x": 545, + "y": 581.2616777730284 + }, + { + "x": 510, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 527.5, + "y": 563.1792150231743 + }, + { + "endCol": 11, + "endRow": 12, + "id": "10,11,11,12", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5919 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5922 + }, + { + "#": 5923 + }, + { + "#": 5924 + }, + { + "#": 5925 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 545, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5927 + }, + "bounds": { + "#": 5930 + }, + "collisionFilter": { + "#": 5933 + }, + "constraintImpulse": { + "#": 5934 + }, + "density": 0.001, + "force": { + "#": 5935 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 270, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5936 + }, + "positionImpulse": { + "#": 5937 + }, + "positionPrev": { + "#": 5938 + }, + "region": { + "#": 5939 + }, + "render": { + "#": 5940 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5942 + }, + "vertices": { + "#": 5943 + } + }, + [ + { + "#": 5928 + }, + { + "#": 5929 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5931 + }, + "min": { + "#": 5932 + } + }, + { + "x": 580, + "y": 581.2616777730284 + }, + { + "x": 545, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 563.1792150231743 + }, + { + "endCol": 12, + "endRow": 12, + "id": "11,12,11,12", + "startCol": 11, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5941 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + }, + { + "#": 5947 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 545, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 580, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 580, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 545, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5949 + }, + "bounds": { + "#": 5952 + }, + "collisionFilter": { + "#": 5955 + }, + "constraintImpulse": { + "#": 5956 + }, + "density": 0.001, + "force": { + "#": 5957 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 271, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5958 + }, + "positionImpulse": { + "#": 5959 + }, + "positionPrev": { + "#": 5960 + }, + "region": { + "#": 5961 + }, + "render": { + "#": 5962 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5964 + }, + "vertices": { + "#": 5965 + } + }, + [ + { + "#": 5950 + }, + { + "#": 5951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5953 + }, + "min": { + "#": 5954 + } + }, + { + "x": 615, + "y": 581.2616777730284 + }, + { + "x": 580, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 597.5, + "y": 563.1792150231743 + }, + { + "endCol": 12, + "endRow": 12, + "id": "12,12,11,12", + "startCol": 12, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5963 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5966 + }, + { + "#": 5967 + }, + { + "#": 5968 + }, + { + "#": 5969 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 580, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 580, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5971 + }, + "bounds": { + "#": 5974 + }, + "collisionFilter": { + "#": 5977 + }, + "constraintImpulse": { + "#": 5978 + }, + "density": 0.001, + "force": { + "#": 5979 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 272, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 5980 + }, + "positionImpulse": { + "#": 5981 + }, + "positionPrev": { + "#": 5982 + }, + "region": { + "#": 5983 + }, + "render": { + "#": 5984 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5986 + }, + "vertices": { + "#": 5987 + } + }, + [ + { + "#": 5972 + }, + { + "#": 5973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5975 + }, + "min": { + "#": 5976 + } + }, + { + "x": 650, + "y": 581.2616777730284 + }, + { + "x": 615, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 632.5, + "y": 563.1792150231743 + }, + { + "endCol": 13, + "endRow": 12, + "id": "12,13,11,12", + "startCol": 12, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5985 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 5988 + }, + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 615, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 5993 + }, + "bounds": { + "#": 5996 + }, + "collisionFilter": { + "#": 5999 + }, + "constraintImpulse": { + "#": 6000 + }, + "density": 0.001, + "force": { + "#": 6001 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 273, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 6002 + }, + "positionImpulse": { + "#": 6003 + }, + "positionPrev": { + "#": 6004 + }, + "region": { + "#": 6005 + }, + "render": { + "#": 6006 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6008 + }, + "vertices": { + "#": 6009 + } + }, + [ + { + "#": 5994 + }, + { + "#": 5995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5997 + }, + "min": { + "#": 5998 + } + }, + { + "x": 685, + "y": 581.2616777730284 + }, + { + "x": 650, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 667.5, + "y": 563.1792150231743 + }, + { + "endCol": 14, + "endRow": 12, + "id": "13,14,11,12", + "startCol": 13, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6007 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 6010 + }, + { + "#": 6011 + }, + { + "#": 6012 + }, + { + "#": 6013 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 685, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 685, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 580.8265268231005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1225, + "axes": { + "#": 6015 + }, + "bounds": { + "#": 6018 + }, + "collisionFilter": { + "#": 6021 + }, + "constraintImpulse": { + "#": 6022 + }, + "density": 0.001, + "force": { + "#": 6023 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 274, + "inertia": 1000.4166666666667, + "inverseInertia": 0.0009995835068721366, + "inverseMass": 0.8163265306122448, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.225, + "motion": 0, + "parent": null, + "position": { + "#": 6024 + }, + "positionImpulse": { + "#": 6025 + }, + "positionPrev": { + "#": 6026 + }, + "region": { + "#": 6027 + }, + "render": { + "#": 6028 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.4351509499278468, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6030 + }, + "vertices": { + "#": 6031 + } + }, + [ + { + "#": 6016 + }, + { + "#": 6017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6019 + }, + "min": { + "#": 6020 + } + }, + { + "x": 720, + "y": 581.2616777730284 + }, + { + "x": 685, + "y": 545.8265268231005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 563.3265268231005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 702.5, + "y": 563.1792150231743 + }, + { + "endCol": 15, + "endRow": 12, + "id": "14,15,11,12", + "startCol": 14, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6029 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.04302713506240252 + }, + [ + { + "#": 6032 + }, + { + "#": 6033 + }, + { + "#": 6034 + }, + { + "#": 6035 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 685, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 720, + "y": 545.8265268231005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 720, + "y": 580.8265268231005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 685, + "y": 580.8265268231005 + }, + [], + [], + [ + { + "#": 6039 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 6040 + }, + "pointB": "", + "render": { + "#": 6041 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 6043 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/stress2/stress2-0.json b/tests/browser/refs/stress2/stress2-0.json new file mode 100644 index 00000000..ddd72afc --- /dev/null +++ b/tests/browser/refs/stress2/stress2-0.json @@ -0,0 +1,83252 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 9544 + }, + "events": { + "#": 9548 + }, + "gravity": { + "#": 9550 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 9542 + }, + "constraints": { + "#": 9543 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 197 + }, + { + "#": 218 + }, + { + "#": 239 + }, + { + "#": 260 + }, + { + "#": 281 + }, + { + "#": 302 + }, + { + "#": 323 + }, + { + "#": 344 + }, + { + "#": 365 + }, + { + "#": 386 + }, + { + "#": 407 + }, + { + "#": 428 + }, + { + "#": 449 + }, + { + "#": 470 + }, + { + "#": 491 + }, + { + "#": 512 + }, + { + "#": 533 + }, + { + "#": 554 + }, + { + "#": 575 + }, + { + "#": 596 + }, + { + "#": 617 + }, + { + "#": 638 + }, + { + "#": 659 + }, + { + "#": 680 + }, + { + "#": 701 + }, + { + "#": 722 + }, + { + "#": 743 + }, + { + "#": 764 + }, + { + "#": 785 + }, + { + "#": 806 + }, + { + "#": 827 + }, + { + "#": 848 + }, + { + "#": 869 + }, + { + "#": 890 + }, + { + "#": 911 + }, + { + "#": 932 + }, + { + "#": 953 + }, + { + "#": 974 + }, + { + "#": 995 + }, + { + "#": 1016 + }, + { + "#": 1037 + }, + { + "#": 1058 + }, + { + "#": 1079 + }, + { + "#": 1100 + }, + { + "#": 1121 + }, + { + "#": 1142 + }, + { + "#": 1163 + }, + { + "#": 1184 + }, + { + "#": 1205 + }, + { + "#": 1226 + }, + { + "#": 1247 + }, + { + "#": 1268 + }, + { + "#": 1289 + }, + { + "#": 1310 + }, + { + "#": 1331 + }, + { + "#": 1352 + }, + { + "#": 1373 + }, + { + "#": 1394 + }, + { + "#": 1415 + }, + { + "#": 1436 + }, + { + "#": 1457 + }, + { + "#": 1478 + }, + { + "#": 1499 + }, + { + "#": 1520 + }, + { + "#": 1541 + }, + { + "#": 1562 + }, + { + "#": 1583 + }, + { + "#": 1604 + }, + { + "#": 1625 + }, + { + "#": 1646 + }, + { + "#": 1667 + }, + { + "#": 1688 + }, + { + "#": 1709 + }, + { + "#": 1730 + }, + { + "#": 1751 + }, + { + "#": 1772 + }, + { + "#": 1793 + }, + { + "#": 1814 + }, + { + "#": 1835 + }, + { + "#": 1856 + }, + { + "#": 1877 + }, + { + "#": 1898 + }, + { + "#": 1919 + }, + { + "#": 1940 + }, + { + "#": 1961 + }, + { + "#": 1982 + }, + { + "#": 2003 + }, + { + "#": 2024 + }, + { + "#": 2045 + }, + { + "#": 2066 + }, + { + "#": 2087 + }, + { + "#": 2108 + }, + { + "#": 2129 + }, + { + "#": 2150 + }, + { + "#": 2171 + }, + { + "#": 2192 + }, + { + "#": 2213 + }, + { + "#": 2234 + }, + { + "#": 2255 + }, + { + "#": 2276 + }, + { + "#": 2297 + }, + { + "#": 2318 + }, + { + "#": 2339 + }, + { + "#": 2360 + }, + { + "#": 2381 + }, + { + "#": 2402 + }, + { + "#": 2423 + }, + { + "#": 2444 + }, + { + "#": 2465 + }, + { + "#": 2486 + }, + { + "#": 2507 + }, + { + "#": 2528 + }, + { + "#": 2549 + }, + { + "#": 2570 + }, + { + "#": 2591 + }, + { + "#": 2612 + }, + { + "#": 2633 + }, + { + "#": 2654 + }, + { + "#": 2675 + }, + { + "#": 2696 + }, + { + "#": 2717 + }, + { + "#": 2738 + }, + { + "#": 2759 + }, + { + "#": 2780 + }, + { + "#": 2801 + }, + { + "#": 2822 + }, + { + "#": 2843 + }, + { + "#": 2864 + }, + { + "#": 2885 + }, + { + "#": 2906 + }, + { + "#": 2927 + }, + { + "#": 2948 + }, + { + "#": 2969 + }, + { + "#": 2990 + }, + { + "#": 3011 + }, + { + "#": 3032 + }, + { + "#": 3053 + }, + { + "#": 3074 + }, + { + "#": 3095 + }, + { + "#": 3116 + }, + { + "#": 3137 + }, + { + "#": 3158 + }, + { + "#": 3179 + }, + { + "#": 3200 + }, + { + "#": 3221 + }, + { + "#": 3242 + }, + { + "#": 3263 + }, + { + "#": 3284 + }, + { + "#": 3305 + }, + { + "#": 3326 + }, + { + "#": 3347 + }, + { + "#": 3368 + }, + { + "#": 3389 + }, + { + "#": 3410 + }, + { + "#": 3431 + }, + { + "#": 3452 + }, + { + "#": 3473 + }, + { + "#": 3494 + }, + { + "#": 3515 + }, + { + "#": 3536 + }, + { + "#": 3557 + }, + { + "#": 3578 + }, + { + "#": 3599 + }, + { + "#": 3620 + }, + { + "#": 3641 + }, + { + "#": 3662 + }, + { + "#": 3683 + }, + { + "#": 3704 + }, + { + "#": 3725 + }, + { + "#": 3746 + }, + { + "#": 3767 + }, + { + "#": 3788 + }, + { + "#": 3809 + }, + { + "#": 3830 + }, + { + "#": 3851 + }, + { + "#": 3872 + }, + { + "#": 3893 + }, + { + "#": 3914 + }, + { + "#": 3935 + }, + { + "#": 3956 + }, + { + "#": 3977 + }, + { + "#": 3998 + }, + { + "#": 4019 + }, + { + "#": 4040 + }, + { + "#": 4061 + }, + { + "#": 4082 + }, + { + "#": 4103 + }, + { + "#": 4124 + }, + { + "#": 4145 + }, + { + "#": 4166 + }, + { + "#": 4187 + }, + { + "#": 4208 + }, + { + "#": 4229 + }, + { + "#": 4250 + }, + { + "#": 4271 + }, + { + "#": 4292 + }, + { + "#": 4313 + }, + { + "#": 4334 + }, + { + "#": 4355 + }, + { + "#": 4376 + }, + { + "#": 4397 + }, + { + "#": 4418 + }, + { + "#": 4439 + }, + { + "#": 4460 + }, + { + "#": 4481 + }, + { + "#": 4502 + }, + { + "#": 4523 + }, + { + "#": 4544 + }, + { + "#": 4565 + }, + { + "#": 4586 + }, + { + "#": 4607 + }, + { + "#": 4628 + }, + { + "#": 4649 + }, + { + "#": 4670 + }, + { + "#": 4691 + }, + { + "#": 4712 + }, + { + "#": 4733 + }, + { + "#": 4754 + }, + { + "#": 4775 + }, + { + "#": 4796 + }, + { + "#": 4817 + }, + { + "#": 4838 + }, + { + "#": 4859 + }, + { + "#": 4880 + }, + { + "#": 4901 + }, + { + "#": 4922 + }, + { + "#": 4943 + }, + { + "#": 4964 + }, + { + "#": 4985 + }, + { + "#": 5006 + }, + { + "#": 5027 + }, + { + "#": 5048 + }, + { + "#": 5069 + }, + { + "#": 5090 + }, + { + "#": 5111 + }, + { + "#": 5132 + }, + { + "#": 5153 + }, + { + "#": 5174 + }, + { + "#": 5195 + }, + { + "#": 5216 + }, + { + "#": 5237 + }, + { + "#": 5258 + }, + { + "#": 5279 + }, + { + "#": 5300 + }, + { + "#": 5321 + }, + { + "#": 5342 + }, + { + "#": 5363 + }, + { + "#": 5384 + }, + { + "#": 5405 + }, + { + "#": 5426 + }, + { + "#": 5447 + }, + { + "#": 5468 + }, + { + "#": 5489 + }, + { + "#": 5510 + }, + { + "#": 5531 + }, + { + "#": 5552 + }, + { + "#": 5573 + }, + { + "#": 5594 + }, + { + "#": 5615 + }, + { + "#": 5636 + }, + { + "#": 5657 + }, + { + "#": 5678 + }, + { + "#": 5699 + }, + { + "#": 5720 + }, + { + "#": 5741 + }, + { + "#": 5762 + }, + { + "#": 5783 + }, + { + "#": 5804 + }, + { + "#": 5825 + }, + { + "#": 5846 + }, + { + "#": 5867 + }, + { + "#": 5888 + }, + { + "#": 5909 + }, + { + "#": 5930 + }, + { + "#": 5951 + }, + { + "#": 5972 + }, + { + "#": 5993 + }, + { + "#": 6014 + }, + { + "#": 6035 + }, + { + "#": 6056 + }, + { + "#": 6077 + }, + { + "#": 6098 + }, + { + "#": 6119 + }, + { + "#": 6140 + }, + { + "#": 6161 + }, + { + "#": 6182 + }, + { + "#": 6203 + }, + { + "#": 6224 + }, + { + "#": 6245 + }, + { + "#": 6266 + }, + { + "#": 6287 + }, + { + "#": 6308 + }, + { + "#": 6329 + }, + { + "#": 6350 + }, + { + "#": 6371 + }, + { + "#": 6392 + }, + { + "#": 6413 + }, + { + "#": 6434 + }, + { + "#": 6455 + }, + { + "#": 6476 + }, + { + "#": 6497 + }, + { + "#": 6518 + }, + { + "#": 6539 + }, + { + "#": 6560 + }, + { + "#": 6581 + }, + { + "#": 6602 + }, + { + "#": 6623 + }, + { + "#": 6644 + }, + { + "#": 6665 + }, + { + "#": 6686 + }, + { + "#": 6707 + }, + { + "#": 6728 + }, + { + "#": 6749 + }, + { + "#": 6770 + }, + { + "#": 6791 + }, + { + "#": 6812 + }, + { + "#": 6833 + }, + { + "#": 6854 + }, + { + "#": 6875 + }, + { + "#": 6896 + }, + { + "#": 6917 + }, + { + "#": 6938 + }, + { + "#": 6959 + }, + { + "#": 6980 + }, + { + "#": 7001 + }, + { + "#": 7022 + }, + { + "#": 7043 + }, + { + "#": 7064 + }, + { + "#": 7085 + }, + { + "#": 7106 + }, + { + "#": 7127 + }, + { + "#": 7148 + }, + { + "#": 7169 + }, + { + "#": 7190 + }, + { + "#": 7211 + }, + { + "#": 7232 + }, + { + "#": 7253 + }, + { + "#": 7274 + }, + { + "#": 7295 + }, + { + "#": 7316 + }, + { + "#": 7337 + }, + { + "#": 7358 + }, + { + "#": 7379 + }, + { + "#": 7400 + }, + { + "#": 7421 + }, + { + "#": 7442 + }, + { + "#": 7463 + }, + { + "#": 7484 + }, + { + "#": 7505 + }, + { + "#": 7526 + }, + { + "#": 7547 + }, + { + "#": 7568 + }, + { + "#": 7589 + }, + { + "#": 7610 + }, + { + "#": 7631 + }, + { + "#": 7652 + }, + { + "#": 7673 + }, + { + "#": 7694 + }, + { + "#": 7715 + }, + { + "#": 7736 + }, + { + "#": 7757 + }, + { + "#": 7778 + }, + { + "#": 7799 + }, + { + "#": 7820 + }, + { + "#": 7841 + }, + { + "#": 7862 + }, + { + "#": 7883 + }, + { + "#": 7904 + }, + { + "#": 7925 + }, + { + "#": 7946 + }, + { + "#": 7967 + }, + { + "#": 7988 + }, + { + "#": 8009 + }, + { + "#": 8030 + }, + { + "#": 8051 + }, + { + "#": 8072 + }, + { + "#": 8093 + }, + { + "#": 8114 + }, + { + "#": 8135 + }, + { + "#": 8156 + }, + { + "#": 8177 + }, + { + "#": 8198 + }, + { + "#": 8219 + }, + { + "#": 8240 + }, + { + "#": 8261 + }, + { + "#": 8282 + }, + { + "#": 8303 + }, + { + "#": 8324 + }, + { + "#": 8345 + }, + { + "#": 8366 + }, + { + "#": 8387 + }, + { + "#": 8408 + }, + { + "#": 8429 + }, + { + "#": 8450 + }, + { + "#": 8471 + }, + { + "#": 8492 + }, + { + "#": 8513 + }, + { + "#": 8534 + }, + { + "#": 8555 + }, + { + "#": 8576 + }, + { + "#": 8597 + }, + { + "#": 8618 + }, + { + "#": 8639 + }, + { + "#": 8660 + }, + { + "#": 8681 + }, + { + "#": 8702 + }, + { + "#": 8723 + }, + { + "#": 8744 + }, + { + "#": 8765 + }, + { + "#": 8786 + }, + { + "#": 8807 + }, + { + "#": 8828 + }, + { + "#": 8849 + }, + { + "#": 8870 + }, + { + "#": 8891 + }, + { + "#": 8912 + }, + { + "#": 8933 + }, + { + "#": 8954 + }, + { + "#": 8975 + }, + { + "#": 8996 + }, + { + "#": 9017 + }, + { + "#": 9038 + }, + { + "#": 9059 + }, + { + "#": 9080 + }, + { + "#": 9101 + }, + { + "#": 9122 + }, + { + "#": 9143 + }, + { + "#": 9164 + }, + { + "#": 9185 + }, + { + "#": 9206 + }, + { + "#": 9227 + }, + { + "#": 9248 + }, + { + "#": 9269 + }, + { + "#": 9290 + }, + { + "#": 9311 + }, + { + "#": 9332 + }, + { + "#": 9353 + }, + { + "#": 9374 + }, + { + "#": 9395 + }, + { + "#": 9416 + }, + { + "#": 9437 + }, + { + "#": 9458 + }, + { + "#": 9479 + }, + { + "#": 9500 + }, + { + "#": 9521 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 125, + "y": 145 + }, + { + "x": 100, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 132.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 150, + "y": 145 + }, + { + "x": 125, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 132.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 175, + "y": 145 + }, + { + "x": 150, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 132.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 200, + "y": 145 + }, + { + "x": 175, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 132.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 177 + }, + "bounds": { + "#": 180 + }, + "collisionFilter": { + "#": 183 + }, + "constraintImpulse": { + "#": 184 + }, + "density": 0.001, + "force": { + "#": 185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 186 + }, + "positionImpulse": { + "#": 187 + }, + "positionPrev": { + "#": 188 + }, + "render": { + "#": 189 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 191 + }, + "vertices": { + "#": 192 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 181 + }, + "min": { + "#": 182 + } + }, + { + "x": 225, + "y": 145 + }, + { + "x": 200, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 132.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 190 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 198 + }, + "bounds": { + "#": 201 + }, + "collisionFilter": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "density": 0.001, + "force": { + "#": 206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 207 + }, + "positionImpulse": { + "#": 208 + }, + "positionPrev": { + "#": 209 + }, + "render": { + "#": 210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 212 + }, + "vertices": { + "#": 213 + } + }, + [ + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 202 + }, + "min": { + "#": 203 + } + }, + { + "x": 250, + "y": 145 + }, + { + "x": 225, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 132.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 211 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 219 + }, + "bounds": { + "#": 222 + }, + "collisionFilter": { + "#": 225 + }, + "constraintImpulse": { + "#": 226 + }, + "density": 0.001, + "force": { + "#": 227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 228 + }, + "positionImpulse": { + "#": 229 + }, + "positionPrev": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 223 + }, + "min": { + "#": 224 + } + }, + { + "x": 275, + "y": 145 + }, + { + "x": 250, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 132.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 240 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "render": { + "#": 252 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 254 + }, + "vertices": { + "#": 255 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 300, + "y": 145 + }, + { + "x": 275, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 132.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 253 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 261 + }, + "bounds": { + "#": 264 + }, + "collisionFilter": { + "#": 267 + }, + "constraintImpulse": { + "#": 268 + }, + "density": 0.001, + "force": { + "#": 269 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 270 + }, + "positionImpulse": { + "#": 271 + }, + "positionPrev": { + "#": 272 + }, + "render": { + "#": 273 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 275 + }, + "vertices": { + "#": 276 + } + }, + [ + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 265 + }, + "min": { + "#": 266 + } + }, + { + "x": 325, + "y": 145 + }, + { + "x": 300, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 132.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 274 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 282 + }, + "bounds": { + "#": 285 + }, + "collisionFilter": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "density": 0.001, + "force": { + "#": 290 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 291 + }, + "positionImpulse": { + "#": 292 + }, + "positionPrev": { + "#": 293 + }, + "render": { + "#": 294 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 296 + }, + "vertices": { + "#": 297 + } + }, + [ + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 286 + }, + "min": { + "#": 287 + } + }, + { + "x": 350, + "y": 145 + }, + { + "x": 325, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 132.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 295 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 303 + }, + "bounds": { + "#": 306 + }, + "collisionFilter": { + "#": 309 + }, + "constraintImpulse": { + "#": 310 + }, + "density": 0.001, + "force": { + "#": 311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 312 + }, + "positionImpulse": { + "#": 313 + }, + "positionPrev": { + "#": 314 + }, + "render": { + "#": 315 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 317 + }, + "vertices": { + "#": 318 + } + }, + [ + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 307 + }, + "min": { + "#": 308 + } + }, + { + "x": 375, + "y": 145 + }, + { + "x": 350, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 132.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 316 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 324 + }, + "bounds": { + "#": 327 + }, + "collisionFilter": { + "#": 330 + }, + "constraintImpulse": { + "#": 331 + }, + "density": 0.001, + "force": { + "#": 332 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 333 + }, + "positionImpulse": { + "#": 334 + }, + "positionPrev": { + "#": 335 + }, + "render": { + "#": 336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 338 + }, + "vertices": { + "#": 339 + } + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 328 + }, + "min": { + "#": 329 + } + }, + { + "x": 400, + "y": 145 + }, + { + "x": 375, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 132.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 337 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 345 + }, + "bounds": { + "#": 348 + }, + "collisionFilter": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "density": 0.001, + "force": { + "#": 353 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 354 + }, + "positionImpulse": { + "#": 355 + }, + "positionPrev": { + "#": 356 + }, + "render": { + "#": 357 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 359 + }, + "vertices": { + "#": 360 + } + }, + [ + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 349 + }, + "min": { + "#": 350 + } + }, + { + "x": 425, + "y": 145 + }, + { + "x": 400, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 132.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 358 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 366 + }, + "bounds": { + "#": 369 + }, + "collisionFilter": { + "#": 372 + }, + "constraintImpulse": { + "#": 373 + }, + "density": 0.001, + "force": { + "#": 374 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 375 + }, + "positionImpulse": { + "#": 376 + }, + "positionPrev": { + "#": 377 + }, + "render": { + "#": 378 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 380 + }, + "vertices": { + "#": 381 + } + }, + [ + { + "#": 367 + }, + { + "#": 368 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 370 + }, + "min": { + "#": 371 + } + }, + { + "x": 450, + "y": 145 + }, + { + "x": 425, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 132.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 379 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 387 + }, + "bounds": { + "#": 390 + }, + "collisionFilter": { + "#": 393 + }, + "constraintImpulse": { + "#": 394 + }, + "density": 0.001, + "force": { + "#": 395 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 396 + }, + "positionImpulse": { + "#": 397 + }, + "positionPrev": { + "#": 398 + }, + "render": { + "#": 399 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 401 + }, + "vertices": { + "#": 402 + } + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 391 + }, + "min": { + "#": 392 + } + }, + { + "x": 475, + "y": 145 + }, + { + "x": 450, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 132.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 400 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 408 + }, + "bounds": { + "#": 411 + }, + "collisionFilter": { + "#": 414 + }, + "constraintImpulse": { + "#": 415 + }, + "density": 0.001, + "force": { + "#": 416 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 417 + }, + "positionImpulse": { + "#": 418 + }, + "positionPrev": { + "#": 419 + }, + "render": { + "#": 420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 422 + }, + "vertices": { + "#": 423 + } + }, + [ + { + "#": 409 + }, + { + "#": 410 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 412 + }, + "min": { + "#": 413 + } + }, + { + "x": 500, + "y": 145 + }, + { + "x": 475, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 132.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 421 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 429 + }, + "bounds": { + "#": 432 + }, + "collisionFilter": { + "#": 435 + }, + "constraintImpulse": { + "#": 436 + }, + "density": 0.001, + "force": { + "#": 437 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 438 + }, + "positionImpulse": { + "#": 439 + }, + "positionPrev": { + "#": 440 + }, + "render": { + "#": 441 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 443 + }, + "vertices": { + "#": 444 + } + }, + [ + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 433 + }, + "min": { + "#": 434 + } + }, + { + "x": 525, + "y": 145 + }, + { + "x": 500, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 132.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 442 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 450 + }, + "bounds": { + "#": 453 + }, + "collisionFilter": { + "#": 456 + }, + "constraintImpulse": { + "#": 457 + }, + "density": 0.001, + "force": { + "#": 458 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 459 + }, + "positionImpulse": { + "#": 460 + }, + "positionPrev": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 454 + }, + "min": { + "#": 455 + } + }, + { + "x": 550, + "y": 145 + }, + { + "x": 525, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 132.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 471 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "render": { + "#": 483 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 485 + }, + "vertices": { + "#": 486 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 575, + "y": 145 + }, + { + "x": 550, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 132.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 484 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 492 + }, + "bounds": { + "#": 495 + }, + "collisionFilter": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "density": 0.001, + "force": { + "#": 500 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 501 + }, + "positionImpulse": { + "#": 502 + }, + "positionPrev": { + "#": 503 + }, + "render": { + "#": 504 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 506 + }, + "vertices": { + "#": 507 + } + }, + [ + { + "#": 493 + }, + { + "#": 494 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 496 + }, + "min": { + "#": 497 + } + }, + { + "x": 600, + "y": 145 + }, + { + "x": 575, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 132.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 505 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 513 + }, + "bounds": { + "#": 516 + }, + "collisionFilter": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "density": 0.001, + "force": { + "#": 521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 522 + }, + "positionImpulse": { + "#": 523 + }, + "positionPrev": { + "#": 524 + }, + "render": { + "#": 525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 527 + }, + "vertices": { + "#": 528 + } + }, + [ + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 517 + }, + "min": { + "#": 518 + } + }, + { + "x": 625, + "y": 145 + }, + { + "x": 600, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 132.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 526 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 534 + }, + "bounds": { + "#": 537 + }, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "render": { + "#": 546 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 548 + }, + "vertices": { + "#": 549 + } + }, + [ + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 650, + "y": 145 + }, + { + "x": 625, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 132.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 547 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 555 + }, + "bounds": { + "#": 558 + }, + "collisionFilter": { + "#": 561 + }, + "constraintImpulse": { + "#": 562 + }, + "density": 0.001, + "force": { + "#": 563 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 564 + }, + "positionImpulse": { + "#": 565 + }, + "positionPrev": { + "#": 566 + }, + "render": { + "#": 567 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 569 + }, + "vertices": { + "#": 570 + } + }, + [ + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 559 + }, + "min": { + "#": 560 + } + }, + { + "x": 675, + "y": 145 + }, + { + "x": 650, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 132.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 568 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 576 + }, + "bounds": { + "#": 579 + }, + "collisionFilter": { + "#": 582 + }, + "constraintImpulse": { + "#": 583 + }, + "density": 0.001, + "force": { + "#": 584 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 585 + }, + "positionImpulse": { + "#": 586 + }, + "positionPrev": { + "#": 587 + }, + "render": { + "#": 588 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 590 + }, + "vertices": { + "#": 591 + } + }, + [ + { + "#": 577 + }, + { + "#": 578 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 580 + }, + "min": { + "#": 581 + } + }, + { + "x": 700, + "y": 145 + }, + { + "x": 675, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 132.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 589 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 597 + }, + "bounds": { + "#": 600 + }, + "collisionFilter": { + "#": 603 + }, + "constraintImpulse": { + "#": 604 + }, + "density": 0.001, + "force": { + "#": 605 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 606 + }, + "positionImpulse": { + "#": 607 + }, + "positionPrev": { + "#": 608 + }, + "render": { + "#": 609 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 611 + }, + "vertices": { + "#": 612 + } + }, + [ + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 601 + }, + "min": { + "#": 602 + } + }, + { + "x": 725, + "y": 145 + }, + { + "x": 700, + "y": 120 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 132.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 610 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 120 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 120 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 145 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 145 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 618 + }, + "bounds": { + "#": 621 + }, + "collisionFilter": { + "#": 624 + }, + "constraintImpulse": { + "#": 625 + }, + "density": 0.001, + "force": { + "#": 626 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 627 + }, + "positionImpulse": { + "#": 628 + }, + "positionPrev": { + "#": 629 + }, + "render": { + "#": 630 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 632 + }, + "vertices": { + "#": 633 + } + }, + [ + { + "#": 619 + }, + { + "#": 620 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 622 + }, + "min": { + "#": 623 + } + }, + { + "x": 125, + "y": 170 + }, + { + "x": 100, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 157.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 631 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 639 + }, + "bounds": { + "#": 642 + }, + "collisionFilter": { + "#": 645 + }, + "constraintImpulse": { + "#": 646 + }, + "density": 0.001, + "force": { + "#": 647 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 648 + }, + "positionImpulse": { + "#": 649 + }, + "positionPrev": { + "#": 650 + }, + "render": { + "#": 651 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 653 + }, + "vertices": { + "#": 654 + } + }, + [ + { + "#": 640 + }, + { + "#": 641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 643 + }, + "min": { + "#": 644 + } + }, + { + "x": 150, + "y": 170 + }, + { + "x": 125, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 157.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 652 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 660 + }, + "bounds": { + "#": 663 + }, + "collisionFilter": { + "#": 666 + }, + "constraintImpulse": { + "#": 667 + }, + "density": 0.001, + "force": { + "#": 668 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 669 + }, + "positionImpulse": { + "#": 670 + }, + "positionPrev": { + "#": 671 + }, + "render": { + "#": 672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 674 + }, + "vertices": { + "#": 675 + } + }, + [ + { + "#": 661 + }, + { + "#": 662 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 664 + }, + "min": { + "#": 665 + } + }, + { + "x": 175, + "y": 170 + }, + { + "x": 150, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 157.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 673 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 681 + }, + "bounds": { + "#": 684 + }, + "collisionFilter": { + "#": 687 + }, + "constraintImpulse": { + "#": 688 + }, + "density": 0.001, + "force": { + "#": 689 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 690 + }, + "positionImpulse": { + "#": 691 + }, + "positionPrev": { + "#": 692 + }, + "render": { + "#": 693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 695 + }, + "vertices": { + "#": 696 + } + }, + [ + { + "#": 682 + }, + { + "#": 683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 685 + }, + "min": { + "#": 686 + } + }, + { + "x": 200, + "y": 170 + }, + { + "x": 175, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 157.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 694 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 702 + }, + "bounds": { + "#": 705 + }, + "collisionFilter": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "density": 0.001, + "force": { + "#": 710 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 711 + }, + "positionImpulse": { + "#": 712 + }, + "positionPrev": { + "#": 713 + }, + "render": { + "#": 714 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 716 + }, + "vertices": { + "#": 717 + } + }, + [ + { + "#": 703 + }, + { + "#": 704 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 706 + }, + "min": { + "#": 707 + } + }, + { + "x": 225, + "y": 170 + }, + { + "x": 200, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 157.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 715 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 723 + }, + "bounds": { + "#": 726 + }, + "collisionFilter": { + "#": 729 + }, + "constraintImpulse": { + "#": 730 + }, + "density": 0.001, + "force": { + "#": 731 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 732 + }, + "positionImpulse": { + "#": 733 + }, + "positionPrev": { + "#": 734 + }, + "render": { + "#": 735 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 737 + }, + "vertices": { + "#": 738 + } + }, + [ + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 727 + }, + "min": { + "#": 728 + } + }, + { + "x": 250, + "y": 170 + }, + { + "x": 225, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 157.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 736 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 744 + }, + "bounds": { + "#": 747 + }, + "collisionFilter": { + "#": 750 + }, + "constraintImpulse": { + "#": 751 + }, + "density": 0.001, + "force": { + "#": 752 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 753 + }, + "positionImpulse": { + "#": 754 + }, + "positionPrev": { + "#": 755 + }, + "render": { + "#": 756 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 758 + }, + "vertices": { + "#": 759 + } + }, + [ + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 748 + }, + "min": { + "#": 749 + } + }, + { + "x": 275, + "y": 170 + }, + { + "x": 250, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 157.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 757 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 765 + }, + "bounds": { + "#": 768 + }, + "collisionFilter": { + "#": 771 + }, + "constraintImpulse": { + "#": 772 + }, + "density": 0.001, + "force": { + "#": 773 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 774 + }, + "positionImpulse": { + "#": 775 + }, + "positionPrev": { + "#": 776 + }, + "render": { + "#": 777 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 779 + }, + "vertices": { + "#": 780 + } + }, + [ + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 769 + }, + "min": { + "#": 770 + } + }, + { + "x": 300, + "y": 170 + }, + { + "x": 275, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 157.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 778 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 786 + }, + "bounds": { + "#": 789 + }, + "collisionFilter": { + "#": 792 + }, + "constraintImpulse": { + "#": 793 + }, + "density": 0.001, + "force": { + "#": 794 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 795 + }, + "positionImpulse": { + "#": 796 + }, + "positionPrev": { + "#": 797 + }, + "render": { + "#": 798 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 800 + }, + "vertices": { + "#": 801 + } + }, + [ + { + "#": 787 + }, + { + "#": 788 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 790 + }, + "min": { + "#": 791 + } + }, + { + "x": 325, + "y": 170 + }, + { + "x": 300, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 157.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 799 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 807 + }, + "bounds": { + "#": 810 + }, + "collisionFilter": { + "#": 813 + }, + "constraintImpulse": { + "#": 814 + }, + "density": 0.001, + "force": { + "#": 815 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 816 + }, + "positionImpulse": { + "#": 817 + }, + "positionPrev": { + "#": 818 + }, + "render": { + "#": 819 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 821 + }, + "vertices": { + "#": 822 + } + }, + [ + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 811 + }, + "min": { + "#": 812 + } + }, + { + "x": 350, + "y": 170 + }, + { + "x": 325, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 157.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 820 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 828 + }, + "bounds": { + "#": 831 + }, + "collisionFilter": { + "#": 834 + }, + "constraintImpulse": { + "#": 835 + }, + "density": 0.001, + "force": { + "#": 836 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 837 + }, + "positionImpulse": { + "#": 838 + }, + "positionPrev": { + "#": 839 + }, + "render": { + "#": 840 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 842 + }, + "vertices": { + "#": 843 + } + }, + [ + { + "#": 829 + }, + { + "#": 830 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 832 + }, + "min": { + "#": 833 + } + }, + { + "x": 375, + "y": 170 + }, + { + "x": 350, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 157.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 841 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 849 + }, + "bounds": { + "#": 852 + }, + "collisionFilter": { + "#": 855 + }, + "constraintImpulse": { + "#": 856 + }, + "density": 0.001, + "force": { + "#": 857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 858 + }, + "positionImpulse": { + "#": 859 + }, + "positionPrev": { + "#": 860 + }, + "render": { + "#": 861 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 863 + }, + "vertices": { + "#": 864 + } + }, + [ + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 853 + }, + "min": { + "#": 854 + } + }, + { + "x": 400, + "y": 170 + }, + { + "x": 375, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 157.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 862 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 870 + }, + "bounds": { + "#": 873 + }, + "collisionFilter": { + "#": 876 + }, + "constraintImpulse": { + "#": 877 + }, + "density": 0.001, + "force": { + "#": 878 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 879 + }, + "positionImpulse": { + "#": 880 + }, + "positionPrev": { + "#": 881 + }, + "render": { + "#": 882 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 884 + }, + "vertices": { + "#": 885 + } + }, + [ + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 874 + }, + "min": { + "#": 875 + } + }, + { + "x": 425, + "y": 170 + }, + { + "x": 400, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 157.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 883 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 891 + }, + "bounds": { + "#": 894 + }, + "collisionFilter": { + "#": 897 + }, + "constraintImpulse": { + "#": 898 + }, + "density": 0.001, + "force": { + "#": 899 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 900 + }, + "positionImpulse": { + "#": 901 + }, + "positionPrev": { + "#": 902 + }, + "render": { + "#": 903 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 905 + }, + "vertices": { + "#": 906 + } + }, + [ + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 895 + }, + "min": { + "#": 896 + } + }, + { + "x": 450, + "y": 170 + }, + { + "x": 425, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 157.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 904 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 912 + }, + "bounds": { + "#": 915 + }, + "collisionFilter": { + "#": 918 + }, + "constraintImpulse": { + "#": 919 + }, + "density": 0.001, + "force": { + "#": 920 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 921 + }, + "positionImpulse": { + "#": 922 + }, + "positionPrev": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 916 + }, + "min": { + "#": 917 + } + }, + { + "x": 475, + "y": 170 + }, + { + "x": 450, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 157.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 933 + }, + "bounds": { + "#": 936 + }, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "render": { + "#": 945 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 947 + }, + "vertices": { + "#": 948 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 500, + "y": 170 + }, + { + "x": 475, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 157.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 946 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 954 + }, + "bounds": { + "#": 957 + }, + "collisionFilter": { + "#": 960 + }, + "constraintImpulse": { + "#": 961 + }, + "density": 0.001, + "force": { + "#": 962 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 963 + }, + "positionImpulse": { + "#": 964 + }, + "positionPrev": { + "#": 965 + }, + "render": { + "#": 966 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 968 + }, + "vertices": { + "#": 969 + } + }, + [ + { + "#": 955 + }, + { + "#": 956 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 958 + }, + "min": { + "#": 959 + } + }, + { + "x": 525, + "y": 170 + }, + { + "x": 500, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 157.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 967 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 975 + }, + "bounds": { + "#": 978 + }, + "collisionFilter": { + "#": 981 + }, + "constraintImpulse": { + "#": 982 + }, + "density": 0.001, + "force": { + "#": 983 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 984 + }, + "positionImpulse": { + "#": 985 + }, + "positionPrev": { + "#": 986 + }, + "render": { + "#": 987 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 989 + }, + "vertices": { + "#": 990 + } + }, + [ + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 979 + }, + "min": { + "#": 980 + } + }, + { + "x": 550, + "y": 170 + }, + { + "x": 525, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 157.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 988 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 996 + }, + "bounds": { + "#": 999 + }, + "collisionFilter": { + "#": 1002 + }, + "constraintImpulse": { + "#": 1003 + }, + "density": 0.001, + "force": { + "#": 1004 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1005 + }, + "positionImpulse": { + "#": 1006 + }, + "positionPrev": { + "#": 1007 + }, + "render": { + "#": 1008 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1010 + }, + "vertices": { + "#": 1011 + } + }, + [ + { + "#": 997 + }, + { + "#": 998 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1000 + }, + "min": { + "#": 1001 + } + }, + { + "x": 575, + "y": 170 + }, + { + "x": 550, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 157.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1009 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1017 + }, + "bounds": { + "#": 1020 + }, + "collisionFilter": { + "#": 1023 + }, + "constraintImpulse": { + "#": 1024 + }, + "density": 0.001, + "force": { + "#": 1025 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1026 + }, + "positionImpulse": { + "#": 1027 + }, + "positionPrev": { + "#": 1028 + }, + "render": { + "#": 1029 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1031 + }, + "vertices": { + "#": 1032 + } + }, + [ + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1021 + }, + "min": { + "#": 1022 + } + }, + { + "x": 600, + "y": 170 + }, + { + "x": 575, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 157.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1030 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1038 + }, + "bounds": { + "#": 1041 + }, + "collisionFilter": { + "#": 1044 + }, + "constraintImpulse": { + "#": 1045 + }, + "density": 0.001, + "force": { + "#": 1046 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1047 + }, + "positionImpulse": { + "#": 1048 + }, + "positionPrev": { + "#": 1049 + }, + "render": { + "#": 1050 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1052 + }, + "vertices": { + "#": 1053 + } + }, + [ + { + "#": 1039 + }, + { + "#": 1040 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1042 + }, + "min": { + "#": 1043 + } + }, + { + "x": 625, + "y": 170 + }, + { + "x": 600, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 157.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1051 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1059 + }, + "bounds": { + "#": 1062 + }, + "collisionFilter": { + "#": 1065 + }, + "constraintImpulse": { + "#": 1066 + }, + "density": 0.001, + "force": { + "#": 1067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1068 + }, + "positionImpulse": { + "#": 1069 + }, + "positionPrev": { + "#": 1070 + }, + "render": { + "#": 1071 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1073 + }, + "vertices": { + "#": 1074 + } + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1063 + }, + "min": { + "#": 1064 + } + }, + { + "x": 650, + "y": 170 + }, + { + "x": 625, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 157.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1072 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1080 + }, + "bounds": { + "#": 1083 + }, + "collisionFilter": { + "#": 1086 + }, + "constraintImpulse": { + "#": 1087 + }, + "density": 0.001, + "force": { + "#": 1088 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1089 + }, + "positionImpulse": { + "#": 1090 + }, + "positionPrev": { + "#": 1091 + }, + "render": { + "#": 1092 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1094 + }, + "vertices": { + "#": 1095 + } + }, + [ + { + "#": 1081 + }, + { + "#": 1082 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1084 + }, + "min": { + "#": 1085 + } + }, + { + "x": 675, + "y": 170 + }, + { + "x": 650, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 157.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1093 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1101 + }, + "bounds": { + "#": 1104 + }, + "collisionFilter": { + "#": 1107 + }, + "constraintImpulse": { + "#": 1108 + }, + "density": 0.001, + "force": { + "#": 1109 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1110 + }, + "positionImpulse": { + "#": 1111 + }, + "positionPrev": { + "#": 1112 + }, + "render": { + "#": 1113 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1115 + }, + "vertices": { + "#": 1116 + } + }, + [ + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1105 + }, + "min": { + "#": 1106 + } + }, + { + "x": 700, + "y": 170 + }, + { + "x": 675, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 157.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1114 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1122 + }, + "bounds": { + "#": 1125 + }, + "collisionFilter": { + "#": 1128 + }, + "constraintImpulse": { + "#": 1129 + }, + "density": 0.001, + "force": { + "#": 1130 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1131 + }, + "positionImpulse": { + "#": 1132 + }, + "positionPrev": { + "#": 1133 + }, + "render": { + "#": 1134 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1136 + }, + "vertices": { + "#": 1137 + } + }, + [ + { + "#": 1123 + }, + { + "#": 1124 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1126 + }, + "min": { + "#": 1127 + } + }, + { + "x": 725, + "y": 170 + }, + { + "x": 700, + "y": 145 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 157.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1135 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 145 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 145 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 170 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 170 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1143 + }, + "bounds": { + "#": 1146 + }, + "collisionFilter": { + "#": 1149 + }, + "constraintImpulse": { + "#": 1150 + }, + "density": 0.001, + "force": { + "#": 1151 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1152 + }, + "positionImpulse": { + "#": 1153 + }, + "positionPrev": { + "#": 1154 + }, + "render": { + "#": 1155 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1157 + }, + "vertices": { + "#": 1158 + } + }, + [ + { + "#": 1144 + }, + { + "#": 1145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1147 + }, + "min": { + "#": 1148 + } + }, + { + "x": 125, + "y": 195 + }, + { + "x": 100, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 182.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1156 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1164 + }, + "bounds": { + "#": 1167 + }, + "collisionFilter": { + "#": 1170 + }, + "constraintImpulse": { + "#": 1171 + }, + "density": 0.001, + "force": { + "#": 1172 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1173 + }, + "positionImpulse": { + "#": 1174 + }, + "positionPrev": { + "#": 1175 + }, + "render": { + "#": 1176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1178 + }, + "vertices": { + "#": 1179 + } + }, + [ + { + "#": 1165 + }, + { + "#": 1166 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1168 + }, + "min": { + "#": 1169 + } + }, + { + "x": 150, + "y": 195 + }, + { + "x": 125, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1177 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1185 + }, + "bounds": { + "#": 1188 + }, + "collisionFilter": { + "#": 1191 + }, + "constraintImpulse": { + "#": 1192 + }, + "density": 0.001, + "force": { + "#": 1193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1194 + }, + "positionImpulse": { + "#": 1195 + }, + "positionPrev": { + "#": 1196 + }, + "render": { + "#": 1197 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1199 + }, + "vertices": { + "#": 1200 + } + }, + [ + { + "#": 1186 + }, + { + "#": 1187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1189 + }, + "min": { + "#": 1190 + } + }, + { + "x": 175, + "y": 195 + }, + { + "x": 150, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1198 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1206 + }, + "bounds": { + "#": 1209 + }, + "collisionFilter": { + "#": 1212 + }, + "constraintImpulse": { + "#": 1213 + }, + "density": 0.001, + "force": { + "#": 1214 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1215 + }, + "positionImpulse": { + "#": 1216 + }, + "positionPrev": { + "#": 1217 + }, + "render": { + "#": 1218 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1220 + }, + "vertices": { + "#": 1221 + } + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1210 + }, + "min": { + "#": 1211 + } + }, + { + "x": 200, + "y": 195 + }, + { + "x": 175, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1219 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1227 + }, + "bounds": { + "#": 1230 + }, + "collisionFilter": { + "#": 1233 + }, + "constraintImpulse": { + "#": 1234 + }, + "density": 0.001, + "force": { + "#": 1235 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1236 + }, + "positionImpulse": { + "#": 1237 + }, + "positionPrev": { + "#": 1238 + }, + "render": { + "#": 1239 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1241 + }, + "vertices": { + "#": 1242 + } + }, + [ + { + "#": 1228 + }, + { + "#": 1229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1231 + }, + "min": { + "#": 1232 + } + }, + { + "x": 225, + "y": 195 + }, + { + "x": 200, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1240 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1248 + }, + "bounds": { + "#": 1251 + }, + "collisionFilter": { + "#": 1254 + }, + "constraintImpulse": { + "#": 1255 + }, + "density": 0.001, + "force": { + "#": 1256 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1257 + }, + "positionImpulse": { + "#": 1258 + }, + "positionPrev": { + "#": 1259 + }, + "render": { + "#": 1260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1262 + }, + "vertices": { + "#": 1263 + } + }, + [ + { + "#": 1249 + }, + { + "#": 1250 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1252 + }, + "min": { + "#": 1253 + } + }, + { + "x": 250, + "y": 195 + }, + { + "x": 225, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 182.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1261 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1269 + }, + "bounds": { + "#": 1272 + }, + "collisionFilter": { + "#": 1275 + }, + "constraintImpulse": { + "#": 1276 + }, + "density": 0.001, + "force": { + "#": 1277 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1278 + }, + "positionImpulse": { + "#": 1279 + }, + "positionPrev": { + "#": 1280 + }, + "render": { + "#": 1281 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1283 + }, + "vertices": { + "#": 1284 + } + }, + [ + { + "#": 1270 + }, + { + "#": 1271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1273 + }, + "min": { + "#": 1274 + } + }, + { + "x": 275, + "y": 195 + }, + { + "x": 250, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 182.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1282 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1290 + }, + "bounds": { + "#": 1293 + }, + "collisionFilter": { + "#": 1296 + }, + "constraintImpulse": { + "#": 1297 + }, + "density": 0.001, + "force": { + "#": 1298 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1299 + }, + "positionImpulse": { + "#": 1300 + }, + "positionPrev": { + "#": 1301 + }, + "render": { + "#": 1302 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1304 + }, + "vertices": { + "#": 1305 + } + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1294 + }, + "min": { + "#": 1295 + } + }, + { + "x": 300, + "y": 195 + }, + { + "x": 275, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 182.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1303 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1311 + }, + "bounds": { + "#": 1314 + }, + "collisionFilter": { + "#": 1317 + }, + "constraintImpulse": { + "#": 1318 + }, + "density": 0.001, + "force": { + "#": 1319 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1320 + }, + "positionImpulse": { + "#": 1321 + }, + "positionPrev": { + "#": 1322 + }, + "render": { + "#": 1323 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1325 + }, + "vertices": { + "#": 1326 + } + }, + [ + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1315 + }, + "min": { + "#": 1316 + } + }, + { + "x": 325, + "y": 195 + }, + { + "x": 300, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 182.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1324 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1332 + }, + "bounds": { + "#": 1335 + }, + "collisionFilter": { + "#": 1338 + }, + "constraintImpulse": { + "#": 1339 + }, + "density": 0.001, + "force": { + "#": 1340 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1341 + }, + "positionImpulse": { + "#": 1342 + }, + "positionPrev": { + "#": 1343 + }, + "render": { + "#": 1344 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1346 + }, + "vertices": { + "#": 1347 + } + }, + [ + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1336 + }, + "min": { + "#": 1337 + } + }, + { + "x": 350, + "y": 195 + }, + { + "x": 325, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1345 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1353 + }, + "bounds": { + "#": 1356 + }, + "collisionFilter": { + "#": 1359 + }, + "constraintImpulse": { + "#": 1360 + }, + "density": 0.001, + "force": { + "#": 1361 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1362 + }, + "positionImpulse": { + "#": 1363 + }, + "positionPrev": { + "#": 1364 + }, + "render": { + "#": 1365 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1367 + }, + "vertices": { + "#": 1368 + } + }, + [ + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1357 + }, + "min": { + "#": 1358 + } + }, + { + "x": 375, + "y": 195 + }, + { + "x": 350, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 182.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1366 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1374 + }, + "bounds": { + "#": 1377 + }, + "collisionFilter": { + "#": 1380 + }, + "constraintImpulse": { + "#": 1381 + }, + "density": 0.001, + "force": { + "#": 1382 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1383 + }, + "positionImpulse": { + "#": 1384 + }, + "positionPrev": { + "#": 1385 + }, + "render": { + "#": 1386 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1388 + }, + "vertices": { + "#": 1389 + } + }, + [ + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1378 + }, + "min": { + "#": 1379 + } + }, + { + "x": 400, + "y": 195 + }, + { + "x": 375, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 182.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1387 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1395 + }, + "bounds": { + "#": 1398 + }, + "collisionFilter": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "density": 0.001, + "force": { + "#": 1403 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1404 + }, + "positionImpulse": { + "#": 1405 + }, + "positionPrev": { + "#": 1406 + }, + "render": { + "#": 1407 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1409 + }, + "vertices": { + "#": 1410 + } + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1399 + }, + "min": { + "#": 1400 + } + }, + { + "x": 425, + "y": 195 + }, + { + "x": 400, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1408 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1416 + }, + "bounds": { + "#": 1419 + }, + "collisionFilter": { + "#": 1422 + }, + "constraintImpulse": { + "#": 1423 + }, + "density": 0.001, + "force": { + "#": 1424 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1425 + }, + "positionImpulse": { + "#": 1426 + }, + "positionPrev": { + "#": 1427 + }, + "render": { + "#": 1428 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1430 + }, + "vertices": { + "#": 1431 + } + }, + [ + { + "#": 1417 + }, + { + "#": 1418 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1420 + }, + "min": { + "#": 1421 + } + }, + { + "x": 450, + "y": 195 + }, + { + "x": 425, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1429 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1437 + }, + "bounds": { + "#": 1440 + }, + "collisionFilter": { + "#": 1443 + }, + "constraintImpulse": { + "#": 1444 + }, + "density": 0.001, + "force": { + "#": 1445 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1446 + }, + "positionImpulse": { + "#": 1447 + }, + "positionPrev": { + "#": 1448 + }, + "render": { + "#": 1449 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1451 + }, + "vertices": { + "#": 1452 + } + }, + [ + { + "#": 1438 + }, + { + "#": 1439 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1441 + }, + "min": { + "#": 1442 + } + }, + { + "x": 475, + "y": 195 + }, + { + "x": 450, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1450 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1458 + }, + "bounds": { + "#": 1461 + }, + "collisionFilter": { + "#": 1464 + }, + "constraintImpulse": { + "#": 1465 + }, + "density": 0.001, + "force": { + "#": 1466 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1467 + }, + "positionImpulse": { + "#": 1468 + }, + "positionPrev": { + "#": 1469 + }, + "render": { + "#": 1470 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1472 + }, + "vertices": { + "#": 1473 + } + }, + [ + { + "#": 1459 + }, + { + "#": 1460 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1462 + }, + "min": { + "#": 1463 + } + }, + { + "x": 500, + "y": 195 + }, + { + "x": 475, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 182.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1471 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1479 + }, + "bounds": { + "#": 1482 + }, + "collisionFilter": { + "#": 1485 + }, + "constraintImpulse": { + "#": 1486 + }, + "density": 0.001, + "force": { + "#": 1487 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1488 + }, + "positionImpulse": { + "#": 1489 + }, + "positionPrev": { + "#": 1490 + }, + "render": { + "#": 1491 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1493 + }, + "vertices": { + "#": 1494 + } + }, + [ + { + "#": 1480 + }, + { + "#": 1481 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1483 + }, + "min": { + "#": 1484 + } + }, + { + "x": 525, + "y": 195 + }, + { + "x": 500, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 182.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1492 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1500 + }, + "bounds": { + "#": 1503 + }, + "collisionFilter": { + "#": 1506 + }, + "constraintImpulse": { + "#": 1507 + }, + "density": 0.001, + "force": { + "#": 1508 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1509 + }, + "positionImpulse": { + "#": 1510 + }, + "positionPrev": { + "#": 1511 + }, + "render": { + "#": 1512 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1514 + }, + "vertices": { + "#": 1515 + } + }, + [ + { + "#": 1501 + }, + { + "#": 1502 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1504 + }, + "min": { + "#": 1505 + } + }, + { + "x": 550, + "y": 195 + }, + { + "x": 525, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 182.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1513 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1521 + }, + "bounds": { + "#": 1524 + }, + "collisionFilter": { + "#": 1527 + }, + "constraintImpulse": { + "#": 1528 + }, + "density": 0.001, + "force": { + "#": 1529 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1530 + }, + "positionImpulse": { + "#": 1531 + }, + "positionPrev": { + "#": 1532 + }, + "render": { + "#": 1533 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1535 + }, + "vertices": { + "#": 1536 + } + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1525 + }, + "min": { + "#": 1526 + } + }, + { + "x": 575, + "y": 195 + }, + { + "x": 550, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 182.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1534 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1542 + }, + "bounds": { + "#": 1545 + }, + "collisionFilter": { + "#": 1548 + }, + "constraintImpulse": { + "#": 1549 + }, + "density": 0.001, + "force": { + "#": 1550 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1551 + }, + "positionImpulse": { + "#": 1552 + }, + "positionPrev": { + "#": 1553 + }, + "render": { + "#": 1554 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1556 + }, + "vertices": { + "#": 1557 + } + }, + [ + { + "#": 1543 + }, + { + "#": 1544 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1546 + }, + "min": { + "#": 1547 + } + }, + { + "x": 600, + "y": 195 + }, + { + "x": 575, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 182.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1555 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1563 + }, + "bounds": { + "#": 1566 + }, + "collisionFilter": { + "#": 1569 + }, + "constraintImpulse": { + "#": 1570 + }, + "density": 0.001, + "force": { + "#": 1571 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1572 + }, + "positionImpulse": { + "#": 1573 + }, + "positionPrev": { + "#": 1574 + }, + "render": { + "#": 1575 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1577 + }, + "vertices": { + "#": 1578 + } + }, + [ + { + "#": 1564 + }, + { + "#": 1565 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1567 + }, + "min": { + "#": 1568 + } + }, + { + "x": 625, + "y": 195 + }, + { + "x": 600, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 182.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1576 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1584 + }, + "bounds": { + "#": 1587 + }, + "collisionFilter": { + "#": 1590 + }, + "constraintImpulse": { + "#": 1591 + }, + "density": 0.001, + "force": { + "#": 1592 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1593 + }, + "positionImpulse": { + "#": 1594 + }, + "positionPrev": { + "#": 1595 + }, + "render": { + "#": 1596 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1598 + }, + "vertices": { + "#": 1599 + } + }, + [ + { + "#": 1585 + }, + { + "#": 1586 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1588 + }, + "min": { + "#": 1589 + } + }, + { + "x": 650, + "y": 195 + }, + { + "x": 625, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 182.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1597 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1605 + }, + "bounds": { + "#": 1608 + }, + "collisionFilter": { + "#": 1611 + }, + "constraintImpulse": { + "#": 1612 + }, + "density": 0.001, + "force": { + "#": 1613 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1614 + }, + "positionImpulse": { + "#": 1615 + }, + "positionPrev": { + "#": 1616 + }, + "render": { + "#": 1617 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1619 + }, + "vertices": { + "#": 1620 + } + }, + [ + { + "#": 1606 + }, + { + "#": 1607 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1609 + }, + "min": { + "#": 1610 + } + }, + { + "x": 675, + "y": 195 + }, + { + "x": 650, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 182.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1618 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1626 + }, + "bounds": { + "#": 1629 + }, + "collisionFilter": { + "#": 1632 + }, + "constraintImpulse": { + "#": 1633 + }, + "density": 0.001, + "force": { + "#": 1634 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1635 + }, + "positionImpulse": { + "#": 1636 + }, + "positionPrev": { + "#": 1637 + }, + "render": { + "#": 1638 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1640 + }, + "vertices": { + "#": 1641 + } + }, + [ + { + "#": 1627 + }, + { + "#": 1628 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1630 + }, + "min": { + "#": 1631 + } + }, + { + "x": 700, + "y": 195 + }, + { + "x": 675, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 182.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1639 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1647 + }, + "bounds": { + "#": 1650 + }, + "collisionFilter": { + "#": 1653 + }, + "constraintImpulse": { + "#": 1654 + }, + "density": 0.001, + "force": { + "#": 1655 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1656 + }, + "positionImpulse": { + "#": 1657 + }, + "positionPrev": { + "#": 1658 + }, + "render": { + "#": 1659 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1661 + }, + "vertices": { + "#": 1662 + } + }, + [ + { + "#": 1648 + }, + { + "#": 1649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1651 + }, + "min": { + "#": 1652 + } + }, + { + "x": 725, + "y": 195 + }, + { + "x": 700, + "y": 170 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 182.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1660 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 170 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 170 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 195 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 195 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1668 + }, + "bounds": { + "#": 1671 + }, + "collisionFilter": { + "#": 1674 + }, + "constraintImpulse": { + "#": 1675 + }, + "density": 0.001, + "force": { + "#": 1676 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1677 + }, + "positionImpulse": { + "#": 1678 + }, + "positionPrev": { + "#": 1679 + }, + "render": { + "#": 1680 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1682 + }, + "vertices": { + "#": 1683 + } + }, + [ + { + "#": 1669 + }, + { + "#": 1670 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1672 + }, + "min": { + "#": 1673 + } + }, + { + "x": 125, + "y": 220 + }, + { + "x": 100, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1681 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1689 + }, + "bounds": { + "#": 1692 + }, + "collisionFilter": { + "#": 1695 + }, + "constraintImpulse": { + "#": 1696 + }, + "density": 0.001, + "force": { + "#": 1697 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1698 + }, + "positionImpulse": { + "#": 1699 + }, + "positionPrev": { + "#": 1700 + }, + "render": { + "#": 1701 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1703 + }, + "vertices": { + "#": 1704 + } + }, + [ + { + "#": 1690 + }, + { + "#": 1691 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1693 + }, + "min": { + "#": 1694 + } + }, + { + "x": 150, + "y": 220 + }, + { + "x": 125, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1702 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1710 + }, + "bounds": { + "#": 1713 + }, + "collisionFilter": { + "#": 1716 + }, + "constraintImpulse": { + "#": 1717 + }, + "density": 0.001, + "force": { + "#": 1718 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1719 + }, + "positionImpulse": { + "#": 1720 + }, + "positionPrev": { + "#": 1721 + }, + "render": { + "#": 1722 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1724 + }, + "vertices": { + "#": 1725 + } + }, + [ + { + "#": 1711 + }, + { + "#": 1712 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1714 + }, + "min": { + "#": 1715 + } + }, + { + "x": 175, + "y": 220 + }, + { + "x": 150, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 207.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1723 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1731 + }, + "bounds": { + "#": 1734 + }, + "collisionFilter": { + "#": 1737 + }, + "constraintImpulse": { + "#": 1738 + }, + "density": 0.001, + "force": { + "#": 1739 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1740 + }, + "positionImpulse": { + "#": 1741 + }, + "positionPrev": { + "#": 1742 + }, + "render": { + "#": 1743 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1745 + }, + "vertices": { + "#": 1746 + } + }, + [ + { + "#": 1732 + }, + { + "#": 1733 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1735 + }, + "min": { + "#": 1736 + } + }, + { + "x": 200, + "y": 220 + }, + { + "x": 175, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 207.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1744 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1752 + }, + "bounds": { + "#": 1755 + }, + "collisionFilter": { + "#": 1758 + }, + "constraintImpulse": { + "#": 1759 + }, + "density": 0.001, + "force": { + "#": 1760 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1761 + }, + "positionImpulse": { + "#": 1762 + }, + "positionPrev": { + "#": 1763 + }, + "render": { + "#": 1764 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1766 + }, + "vertices": { + "#": 1767 + } + }, + [ + { + "#": 1753 + }, + { + "#": 1754 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1756 + }, + "min": { + "#": 1757 + } + }, + { + "x": 225, + "y": 220 + }, + { + "x": 200, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1765 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1773 + }, + "bounds": { + "#": 1776 + }, + "collisionFilter": { + "#": 1779 + }, + "constraintImpulse": { + "#": 1780 + }, + "density": 0.001, + "force": { + "#": 1781 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1782 + }, + "positionImpulse": { + "#": 1783 + }, + "positionPrev": { + "#": 1784 + }, + "render": { + "#": 1785 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1787 + }, + "vertices": { + "#": 1788 + } + }, + [ + { + "#": 1774 + }, + { + "#": 1775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1777 + }, + "min": { + "#": 1778 + } + }, + { + "x": 250, + "y": 220 + }, + { + "x": 225, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 207.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1786 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1794 + }, + "bounds": { + "#": 1797 + }, + "collisionFilter": { + "#": 1800 + }, + "constraintImpulse": { + "#": 1801 + }, + "density": 0.001, + "force": { + "#": 1802 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1803 + }, + "positionImpulse": { + "#": 1804 + }, + "positionPrev": { + "#": 1805 + }, + "render": { + "#": 1806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1808 + }, + "vertices": { + "#": 1809 + } + }, + [ + { + "#": 1795 + }, + { + "#": 1796 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1798 + }, + "min": { + "#": 1799 + } + }, + { + "x": 275, + "y": 220 + }, + { + "x": 250, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1807 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1815 + }, + "bounds": { + "#": 1818 + }, + "collisionFilter": { + "#": 1821 + }, + "constraintImpulse": { + "#": 1822 + }, + "density": 0.001, + "force": { + "#": 1823 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1824 + }, + "positionImpulse": { + "#": 1825 + }, + "positionPrev": { + "#": 1826 + }, + "render": { + "#": 1827 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1829 + }, + "vertices": { + "#": 1830 + } + }, + [ + { + "#": 1816 + }, + { + "#": 1817 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1819 + }, + "min": { + "#": 1820 + } + }, + { + "x": 300, + "y": 220 + }, + { + "x": 275, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1828 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1836 + }, + "bounds": { + "#": 1839 + }, + "collisionFilter": { + "#": 1842 + }, + "constraintImpulse": { + "#": 1843 + }, + "density": 0.001, + "force": { + "#": 1844 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1845 + }, + "positionImpulse": { + "#": 1846 + }, + "positionPrev": { + "#": 1847 + }, + "render": { + "#": 1848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1850 + }, + "vertices": { + "#": 1851 + } + }, + [ + { + "#": 1837 + }, + { + "#": 1838 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1840 + }, + "min": { + "#": 1841 + } + }, + { + "x": 325, + "y": 220 + }, + { + "x": 300, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 207.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1849 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1857 + }, + "bounds": { + "#": 1860 + }, + "collisionFilter": { + "#": 1863 + }, + "constraintImpulse": { + "#": 1864 + }, + "density": 0.001, + "force": { + "#": 1865 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1866 + }, + "positionImpulse": { + "#": 1867 + }, + "positionPrev": { + "#": 1868 + }, + "render": { + "#": 1869 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1871 + }, + "vertices": { + "#": 1872 + } + }, + [ + { + "#": 1858 + }, + { + "#": 1859 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1861 + }, + "min": { + "#": 1862 + } + }, + { + "x": 350, + "y": 220 + }, + { + "x": 325, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1870 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1878 + }, + "bounds": { + "#": 1881 + }, + "collisionFilter": { + "#": 1884 + }, + "constraintImpulse": { + "#": 1885 + }, + "density": 0.001, + "force": { + "#": 1886 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1887 + }, + "positionImpulse": { + "#": 1888 + }, + "positionPrev": { + "#": 1889 + }, + "render": { + "#": 1890 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1892 + }, + "vertices": { + "#": 1893 + } + }, + [ + { + "#": 1879 + }, + { + "#": 1880 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1882 + }, + "min": { + "#": 1883 + } + }, + { + "x": 375, + "y": 220 + }, + { + "x": 350, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 207.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1891 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1899 + }, + "bounds": { + "#": 1902 + }, + "collisionFilter": { + "#": 1905 + }, + "constraintImpulse": { + "#": 1906 + }, + "density": 0.001, + "force": { + "#": 1907 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1908 + }, + "positionImpulse": { + "#": 1909 + }, + "positionPrev": { + "#": 1910 + }, + "render": { + "#": 1911 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1913 + }, + "vertices": { + "#": 1914 + } + }, + [ + { + "#": 1900 + }, + { + "#": 1901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1903 + }, + "min": { + "#": 1904 + } + }, + { + "x": 400, + "y": 220 + }, + { + "x": 375, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1912 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1920 + }, + "bounds": { + "#": 1923 + }, + "collisionFilter": { + "#": 1926 + }, + "constraintImpulse": { + "#": 1927 + }, + "density": 0.001, + "force": { + "#": 1928 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1929 + }, + "positionImpulse": { + "#": 1930 + }, + "positionPrev": { + "#": 1931 + }, + "render": { + "#": 1932 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1934 + }, + "vertices": { + "#": 1935 + } + }, + [ + { + "#": 1921 + }, + { + "#": 1922 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1924 + }, + "min": { + "#": 1925 + } + }, + { + "x": 425, + "y": 220 + }, + { + "x": 400, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1933 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1941 + }, + "bounds": { + "#": 1944 + }, + "collisionFilter": { + "#": 1947 + }, + "constraintImpulse": { + "#": 1948 + }, + "density": 0.001, + "force": { + "#": 1949 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1950 + }, + "positionImpulse": { + "#": 1951 + }, + "positionPrev": { + "#": 1952 + }, + "render": { + "#": 1953 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1955 + }, + "vertices": { + "#": 1956 + } + }, + [ + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1945 + }, + "min": { + "#": 1946 + } + }, + { + "x": 450, + "y": 220 + }, + { + "x": 425, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 207.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1954 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1962 + }, + "bounds": { + "#": 1965 + }, + "collisionFilter": { + "#": 1968 + }, + "constraintImpulse": { + "#": 1969 + }, + "density": 0.001, + "force": { + "#": 1970 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1971 + }, + "positionImpulse": { + "#": 1972 + }, + "positionPrev": { + "#": 1973 + }, + "render": { + "#": 1974 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1976 + }, + "vertices": { + "#": 1977 + } + }, + [ + { + "#": 1963 + }, + { + "#": 1964 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1966 + }, + "min": { + "#": 1967 + } + }, + { + "x": 475, + "y": 220 + }, + { + "x": 450, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 207.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1975 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1983 + }, + "bounds": { + "#": 1986 + }, + "collisionFilter": { + "#": 1989 + }, + "constraintImpulse": { + "#": 1990 + }, + "density": 0.001, + "force": { + "#": 1991 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1992 + }, + "positionImpulse": { + "#": 1993 + }, + "positionPrev": { + "#": 1994 + }, + "render": { + "#": 1995 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1997 + }, + "vertices": { + "#": 1998 + } + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1987 + }, + "min": { + "#": 1988 + } + }, + { + "x": 500, + "y": 220 + }, + { + "x": 475, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1996 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2004 + }, + "bounds": { + "#": 2007 + }, + "collisionFilter": { + "#": 2010 + }, + "constraintImpulse": { + "#": 2011 + }, + "density": 0.001, + "force": { + "#": 2012 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2013 + }, + "positionImpulse": { + "#": 2014 + }, + "positionPrev": { + "#": 2015 + }, + "render": { + "#": 2016 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2018 + }, + "vertices": { + "#": 2019 + } + }, + [ + { + "#": 2005 + }, + { + "#": 2006 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2008 + }, + "min": { + "#": 2009 + } + }, + { + "x": 525, + "y": 220 + }, + { + "x": 500, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 207.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2017 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2025 + }, + "bounds": { + "#": 2028 + }, + "collisionFilter": { + "#": 2031 + }, + "constraintImpulse": { + "#": 2032 + }, + "density": 0.001, + "force": { + "#": 2033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2034 + }, + "positionImpulse": { + "#": 2035 + }, + "positionPrev": { + "#": 2036 + }, + "render": { + "#": 2037 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2039 + }, + "vertices": { + "#": 2040 + } + }, + [ + { + "#": 2026 + }, + { + "#": 2027 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2029 + }, + "min": { + "#": 2030 + } + }, + { + "x": 550, + "y": 220 + }, + { + "x": 525, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 207.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2038 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2046 + }, + "bounds": { + "#": 2049 + }, + "collisionFilter": { + "#": 2052 + }, + "constraintImpulse": { + "#": 2053 + }, + "density": 0.001, + "force": { + "#": 2054 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2055 + }, + "positionImpulse": { + "#": 2056 + }, + "positionPrev": { + "#": 2057 + }, + "render": { + "#": 2058 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2060 + }, + "vertices": { + "#": 2061 + } + }, + [ + { + "#": 2047 + }, + { + "#": 2048 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2050 + }, + "min": { + "#": 2051 + } + }, + { + "x": 575, + "y": 220 + }, + { + "x": 550, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 207.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2059 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2067 + }, + "bounds": { + "#": 2070 + }, + "collisionFilter": { + "#": 2073 + }, + "constraintImpulse": { + "#": 2074 + }, + "density": 0.001, + "force": { + "#": 2075 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2076 + }, + "positionImpulse": { + "#": 2077 + }, + "positionPrev": { + "#": 2078 + }, + "render": { + "#": 2079 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2081 + }, + "vertices": { + "#": 2082 + } + }, + [ + { + "#": 2068 + }, + { + "#": 2069 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2071 + }, + "min": { + "#": 2072 + } + }, + { + "x": 600, + "y": 220 + }, + { + "x": 575, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2080 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2088 + }, + "bounds": { + "#": 2091 + }, + "collisionFilter": { + "#": 2094 + }, + "constraintImpulse": { + "#": 2095 + }, + "density": 0.001, + "force": { + "#": 2096 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2097 + }, + "positionImpulse": { + "#": 2098 + }, + "positionPrev": { + "#": 2099 + }, + "render": { + "#": 2100 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2102 + }, + "vertices": { + "#": 2103 + } + }, + [ + { + "#": 2089 + }, + { + "#": 2090 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2092 + }, + "min": { + "#": 2093 + } + }, + { + "x": 625, + "y": 220 + }, + { + "x": 600, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2101 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2109 + }, + "bounds": { + "#": 2112 + }, + "collisionFilter": { + "#": 2115 + }, + "constraintImpulse": { + "#": 2116 + }, + "density": 0.001, + "force": { + "#": 2117 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2118 + }, + "positionImpulse": { + "#": 2119 + }, + "positionPrev": { + "#": 2120 + }, + "render": { + "#": 2121 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2123 + }, + "vertices": { + "#": 2124 + } + }, + [ + { + "#": 2110 + }, + { + "#": 2111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2113 + }, + "min": { + "#": 2114 + } + }, + { + "x": 650, + "y": 220 + }, + { + "x": 625, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 207.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2122 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2130 + }, + "bounds": { + "#": 2133 + }, + "collisionFilter": { + "#": 2136 + }, + "constraintImpulse": { + "#": 2137 + }, + "density": 0.001, + "force": { + "#": 2138 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2139 + }, + "positionImpulse": { + "#": 2140 + }, + "positionPrev": { + "#": 2141 + }, + "render": { + "#": 2142 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2144 + }, + "vertices": { + "#": 2145 + } + }, + [ + { + "#": 2131 + }, + { + "#": 2132 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2134 + }, + "min": { + "#": 2135 + } + }, + { + "x": 675, + "y": 220 + }, + { + "x": 650, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 207.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2143 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2151 + }, + "bounds": { + "#": 2154 + }, + "collisionFilter": { + "#": 2157 + }, + "constraintImpulse": { + "#": 2158 + }, + "density": 0.001, + "force": { + "#": 2159 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2160 + }, + "positionImpulse": { + "#": 2161 + }, + "positionPrev": { + "#": 2162 + }, + "render": { + "#": 2163 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2165 + }, + "vertices": { + "#": 2166 + } + }, + [ + { + "#": 2152 + }, + { + "#": 2153 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2155 + }, + "min": { + "#": 2156 + } + }, + { + "x": 700, + "y": 220 + }, + { + "x": 675, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 207.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2164 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2172 + }, + "bounds": { + "#": 2175 + }, + "collisionFilter": { + "#": 2178 + }, + "constraintImpulse": { + "#": 2179 + }, + "density": 0.001, + "force": { + "#": 2180 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2181 + }, + "positionImpulse": { + "#": 2182 + }, + "positionPrev": { + "#": 2183 + }, + "render": { + "#": 2184 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2186 + }, + "vertices": { + "#": 2187 + } + }, + [ + { + "#": 2173 + }, + { + "#": 2174 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2176 + }, + "min": { + "#": 2177 + } + }, + { + "x": 725, + "y": 220 + }, + { + "x": 700, + "y": 195 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 207.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2185 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 195 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 195 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 220 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 220 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2193 + }, + "bounds": { + "#": 2196 + }, + "collisionFilter": { + "#": 2199 + }, + "constraintImpulse": { + "#": 2200 + }, + "density": 0.001, + "force": { + "#": 2201 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2202 + }, + "positionImpulse": { + "#": 2203 + }, + "positionPrev": { + "#": 2204 + }, + "render": { + "#": 2205 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2207 + }, + "vertices": { + "#": 2208 + } + }, + [ + { + "#": 2194 + }, + { + "#": 2195 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2197 + }, + "min": { + "#": 2198 + } + }, + { + "x": 125, + "y": 245 + }, + { + "x": 100, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 232.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2206 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2214 + }, + "bounds": { + "#": 2217 + }, + "collisionFilter": { + "#": 2220 + }, + "constraintImpulse": { + "#": 2221 + }, + "density": 0.001, + "force": { + "#": 2222 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2223 + }, + "positionImpulse": { + "#": 2224 + }, + "positionPrev": { + "#": 2225 + }, + "render": { + "#": 2226 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2228 + }, + "vertices": { + "#": 2229 + } + }, + [ + { + "#": 2215 + }, + { + "#": 2216 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2218 + }, + "min": { + "#": 2219 + } + }, + { + "x": 150, + "y": 245 + }, + { + "x": 125, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 232.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2227 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2235 + }, + "bounds": { + "#": 2238 + }, + "collisionFilter": { + "#": 2241 + }, + "constraintImpulse": { + "#": 2242 + }, + "density": 0.001, + "force": { + "#": 2243 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2244 + }, + "positionImpulse": { + "#": 2245 + }, + "positionPrev": { + "#": 2246 + }, + "render": { + "#": 2247 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2249 + }, + "vertices": { + "#": 2250 + } + }, + [ + { + "#": 2236 + }, + { + "#": 2237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2239 + }, + "min": { + "#": 2240 + } + }, + { + "x": 175, + "y": 245 + }, + { + "x": 150, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 232.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2248 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2256 + }, + "bounds": { + "#": 2259 + }, + "collisionFilter": { + "#": 2262 + }, + "constraintImpulse": { + "#": 2263 + }, + "density": 0.001, + "force": { + "#": 2264 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 108, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2265 + }, + "positionImpulse": { + "#": 2266 + }, + "positionPrev": { + "#": 2267 + }, + "render": { + "#": 2268 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2270 + }, + "vertices": { + "#": 2271 + } + }, + [ + { + "#": 2257 + }, + { + "#": 2258 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2260 + }, + "min": { + "#": 2261 + } + }, + { + "x": 200, + "y": 245 + }, + { + "x": 175, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2269 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2277 + }, + "bounds": { + "#": 2280 + }, + "collisionFilter": { + "#": 2283 + }, + "constraintImpulse": { + "#": 2284 + }, + "density": 0.001, + "force": { + "#": 2285 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2286 + }, + "positionImpulse": { + "#": 2287 + }, + "positionPrev": { + "#": 2288 + }, + "render": { + "#": 2289 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2291 + }, + "vertices": { + "#": 2292 + } + }, + [ + { + "#": 2278 + }, + { + "#": 2279 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2281 + }, + "min": { + "#": 2282 + } + }, + { + "x": 225, + "y": 245 + }, + { + "x": 200, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 232.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2290 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2298 + }, + "bounds": { + "#": 2301 + }, + "collisionFilter": { + "#": 2304 + }, + "constraintImpulse": { + "#": 2305 + }, + "density": 0.001, + "force": { + "#": 2306 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 110, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2307 + }, + "positionImpulse": { + "#": 2308 + }, + "positionPrev": { + "#": 2309 + }, + "render": { + "#": 2310 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2312 + }, + "vertices": { + "#": 2313 + } + }, + [ + { + "#": 2299 + }, + { + "#": 2300 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2302 + }, + "min": { + "#": 2303 + } + }, + { + "x": 250, + "y": 245 + }, + { + "x": 225, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 232.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2311 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2319 + }, + "bounds": { + "#": 2322 + }, + "collisionFilter": { + "#": 2325 + }, + "constraintImpulse": { + "#": 2326 + }, + "density": 0.001, + "force": { + "#": 2327 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 111, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2328 + }, + "positionImpulse": { + "#": 2329 + }, + "positionPrev": { + "#": 2330 + }, + "render": { + "#": 2331 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2333 + }, + "vertices": { + "#": 2334 + } + }, + [ + { + "#": 2320 + }, + { + "#": 2321 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2323 + }, + "min": { + "#": 2324 + } + }, + { + "x": 275, + "y": 245 + }, + { + "x": 250, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2332 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2340 + }, + "bounds": { + "#": 2343 + }, + "collisionFilter": { + "#": 2346 + }, + "constraintImpulse": { + "#": 2347 + }, + "density": 0.001, + "force": { + "#": 2348 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2349 + }, + "positionImpulse": { + "#": 2350 + }, + "positionPrev": { + "#": 2351 + }, + "render": { + "#": 2352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2354 + }, + "vertices": { + "#": 2355 + } + }, + [ + { + "#": 2341 + }, + { + "#": 2342 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2344 + }, + "min": { + "#": 2345 + } + }, + { + "x": 300, + "y": 245 + }, + { + "x": 275, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2353 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2361 + }, + "bounds": { + "#": 2364 + }, + "collisionFilter": { + "#": 2367 + }, + "constraintImpulse": { + "#": 2368 + }, + "density": 0.001, + "force": { + "#": 2369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 113, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2370 + }, + "positionImpulse": { + "#": 2371 + }, + "positionPrev": { + "#": 2372 + }, + "render": { + "#": 2373 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2375 + }, + "vertices": { + "#": 2376 + } + }, + [ + { + "#": 2362 + }, + { + "#": 2363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2365 + }, + "min": { + "#": 2366 + } + }, + { + "x": 325, + "y": 245 + }, + { + "x": 300, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2374 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2382 + }, + "bounds": { + "#": 2385 + }, + "collisionFilter": { + "#": 2388 + }, + "constraintImpulse": { + "#": 2389 + }, + "density": 0.001, + "force": { + "#": 2390 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 114, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2391 + }, + "positionImpulse": { + "#": 2392 + }, + "positionPrev": { + "#": 2393 + }, + "render": { + "#": 2394 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2396 + }, + "vertices": { + "#": 2397 + } + }, + [ + { + "#": 2383 + }, + { + "#": 2384 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2386 + }, + "min": { + "#": 2387 + } + }, + { + "x": 350, + "y": 245 + }, + { + "x": 325, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2395 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2403 + }, + "bounds": { + "#": 2406 + }, + "collisionFilter": { + "#": 2409 + }, + "constraintImpulse": { + "#": 2410 + }, + "density": 0.001, + "force": { + "#": 2411 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2412 + }, + "positionImpulse": { + "#": 2413 + }, + "positionPrev": { + "#": 2414 + }, + "render": { + "#": 2415 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2417 + }, + "vertices": { + "#": 2418 + } + }, + [ + { + "#": 2404 + }, + { + "#": 2405 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2407 + }, + "min": { + "#": 2408 + } + }, + { + "x": 375, + "y": 245 + }, + { + "x": 350, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2416 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2424 + }, + "bounds": { + "#": 2427 + }, + "collisionFilter": { + "#": 2430 + }, + "constraintImpulse": { + "#": 2431 + }, + "density": 0.001, + "force": { + "#": 2432 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 116, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2433 + }, + "positionImpulse": { + "#": 2434 + }, + "positionPrev": { + "#": 2435 + }, + "render": { + "#": 2436 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2438 + }, + "vertices": { + "#": 2439 + } + }, + [ + { + "#": 2425 + }, + { + "#": 2426 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2428 + }, + "min": { + "#": 2429 + } + }, + { + "x": 400, + "y": 245 + }, + { + "x": 375, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2437 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2445 + }, + "bounds": { + "#": 2448 + }, + "collisionFilter": { + "#": 2451 + }, + "constraintImpulse": { + "#": 2452 + }, + "density": 0.001, + "force": { + "#": 2453 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 117, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2454 + }, + "positionImpulse": { + "#": 2455 + }, + "positionPrev": { + "#": 2456 + }, + "render": { + "#": 2457 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2459 + }, + "vertices": { + "#": 2460 + } + }, + [ + { + "#": 2446 + }, + { + "#": 2447 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2449 + }, + "min": { + "#": 2450 + } + }, + { + "x": 425, + "y": 245 + }, + { + "x": 400, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 232.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2458 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2466 + }, + "bounds": { + "#": 2469 + }, + "collisionFilter": { + "#": 2472 + }, + "constraintImpulse": { + "#": 2473 + }, + "density": 0.001, + "force": { + "#": 2474 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2475 + }, + "positionImpulse": { + "#": 2476 + }, + "positionPrev": { + "#": 2477 + }, + "render": { + "#": 2478 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2480 + }, + "vertices": { + "#": 2481 + } + }, + [ + { + "#": 2467 + }, + { + "#": 2468 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2470 + }, + "min": { + "#": 2471 + } + }, + { + "x": 450, + "y": 245 + }, + { + "x": 425, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2479 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2487 + }, + "bounds": { + "#": 2490 + }, + "collisionFilter": { + "#": 2493 + }, + "constraintImpulse": { + "#": 2494 + }, + "density": 0.001, + "force": { + "#": 2495 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 119, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2496 + }, + "positionImpulse": { + "#": 2497 + }, + "positionPrev": { + "#": 2498 + }, + "render": { + "#": 2499 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2501 + }, + "vertices": { + "#": 2502 + } + }, + [ + { + "#": 2488 + }, + { + "#": 2489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2491 + }, + "min": { + "#": 2492 + } + }, + { + "x": 475, + "y": 245 + }, + { + "x": 450, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2500 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2508 + }, + "bounds": { + "#": 2511 + }, + "collisionFilter": { + "#": 2514 + }, + "constraintImpulse": { + "#": 2515 + }, + "density": 0.001, + "force": { + "#": 2516 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 120, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2517 + }, + "positionImpulse": { + "#": 2518 + }, + "positionPrev": { + "#": 2519 + }, + "render": { + "#": 2520 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2522 + }, + "vertices": { + "#": 2523 + } + }, + [ + { + "#": 2509 + }, + { + "#": 2510 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2512 + }, + "min": { + "#": 2513 + } + }, + { + "x": 500, + "y": 245 + }, + { + "x": 475, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2521 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2529 + }, + "bounds": { + "#": 2532 + }, + "collisionFilter": { + "#": 2535 + }, + "constraintImpulse": { + "#": 2536 + }, + "density": 0.001, + "force": { + "#": 2537 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2538 + }, + "positionImpulse": { + "#": 2539 + }, + "positionPrev": { + "#": 2540 + }, + "render": { + "#": 2541 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2543 + }, + "vertices": { + "#": 2544 + } + }, + [ + { + "#": 2530 + }, + { + "#": 2531 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2533 + }, + "min": { + "#": 2534 + } + }, + { + "x": 525, + "y": 245 + }, + { + "x": 500, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 232.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2542 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2550 + }, + "bounds": { + "#": 2553 + }, + "collisionFilter": { + "#": 2556 + }, + "constraintImpulse": { + "#": 2557 + }, + "density": 0.001, + "force": { + "#": 2558 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 122, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2559 + }, + "positionImpulse": { + "#": 2560 + }, + "positionPrev": { + "#": 2561 + }, + "render": { + "#": 2562 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2564 + }, + "vertices": { + "#": 2565 + } + }, + [ + { + "#": 2551 + }, + { + "#": 2552 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2554 + }, + "min": { + "#": 2555 + } + }, + { + "x": 550, + "y": 245 + }, + { + "x": 525, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 232.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2563 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2571 + }, + "bounds": { + "#": 2574 + }, + "collisionFilter": { + "#": 2577 + }, + "constraintImpulse": { + "#": 2578 + }, + "density": 0.001, + "force": { + "#": 2579 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 123, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2580 + }, + "positionImpulse": { + "#": 2581 + }, + "positionPrev": { + "#": 2582 + }, + "render": { + "#": 2583 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2585 + }, + "vertices": { + "#": 2586 + } + }, + [ + { + "#": 2572 + }, + { + "#": 2573 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2575 + }, + "min": { + "#": 2576 + } + }, + { + "x": 575, + "y": 245 + }, + { + "x": 550, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 232.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2584 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2592 + }, + "bounds": { + "#": 2595 + }, + "collisionFilter": { + "#": 2598 + }, + "constraintImpulse": { + "#": 2599 + }, + "density": 0.001, + "force": { + "#": 2600 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2601 + }, + "positionImpulse": { + "#": 2602 + }, + "positionPrev": { + "#": 2603 + }, + "render": { + "#": 2604 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2606 + }, + "vertices": { + "#": 2607 + } + }, + [ + { + "#": 2593 + }, + { + "#": 2594 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2596 + }, + "min": { + "#": 2597 + } + }, + { + "x": 600, + "y": 245 + }, + { + "x": 575, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 232.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2605 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2613 + }, + "bounds": { + "#": 2616 + }, + "collisionFilter": { + "#": 2619 + }, + "constraintImpulse": { + "#": 2620 + }, + "density": 0.001, + "force": { + "#": 2621 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 125, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2622 + }, + "positionImpulse": { + "#": 2623 + }, + "positionPrev": { + "#": 2624 + }, + "render": { + "#": 2625 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2627 + }, + "vertices": { + "#": 2628 + } + }, + [ + { + "#": 2614 + }, + { + "#": 2615 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2617 + }, + "min": { + "#": 2618 + } + }, + { + "x": 625, + "y": 245 + }, + { + "x": 600, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 232.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2626 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2634 + }, + "bounds": { + "#": 2637 + }, + "collisionFilter": { + "#": 2640 + }, + "constraintImpulse": { + "#": 2641 + }, + "density": 0.001, + "force": { + "#": 2642 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 126, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2643 + }, + "positionImpulse": { + "#": 2644 + }, + "positionPrev": { + "#": 2645 + }, + "render": { + "#": 2646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2648 + }, + "vertices": { + "#": 2649 + } + }, + [ + { + "#": 2635 + }, + { + "#": 2636 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2638 + }, + "min": { + "#": 2639 + } + }, + { + "x": 650, + "y": 245 + }, + { + "x": 625, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 232.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2647 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2655 + }, + "bounds": { + "#": 2658 + }, + "collisionFilter": { + "#": 2661 + }, + "constraintImpulse": { + "#": 2662 + }, + "density": 0.001, + "force": { + "#": 2663 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2664 + }, + "positionImpulse": { + "#": 2665 + }, + "positionPrev": { + "#": 2666 + }, + "render": { + "#": 2667 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2669 + }, + "vertices": { + "#": 2670 + } + }, + [ + { + "#": 2656 + }, + { + "#": 2657 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2659 + }, + "min": { + "#": 2660 + } + }, + { + "x": 675, + "y": 245 + }, + { + "x": 650, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 232.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2668 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2676 + }, + "bounds": { + "#": 2679 + }, + "collisionFilter": { + "#": 2682 + }, + "constraintImpulse": { + "#": 2683 + }, + "density": 0.001, + "force": { + "#": 2684 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 128, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2685 + }, + "positionImpulse": { + "#": 2686 + }, + "positionPrev": { + "#": 2687 + }, + "render": { + "#": 2688 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2690 + }, + "vertices": { + "#": 2691 + } + }, + [ + { + "#": 2677 + }, + { + "#": 2678 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2680 + }, + "min": { + "#": 2681 + } + }, + { + "x": 700, + "y": 245 + }, + { + "x": 675, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2689 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2697 + }, + "bounds": { + "#": 2700 + }, + "collisionFilter": { + "#": 2703 + }, + "constraintImpulse": { + "#": 2704 + }, + "density": 0.001, + "force": { + "#": 2705 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 129, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2706 + }, + "positionImpulse": { + "#": 2707 + }, + "positionPrev": { + "#": 2708 + }, + "render": { + "#": 2709 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2711 + }, + "vertices": { + "#": 2712 + } + }, + [ + { + "#": 2698 + }, + { + "#": 2699 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2701 + }, + "min": { + "#": 2702 + } + }, + { + "x": 725, + "y": 245 + }, + { + "x": 700, + "y": 220 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 232.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2710 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 220 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 220 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 245 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 245 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2718 + }, + "bounds": { + "#": 2721 + }, + "collisionFilter": { + "#": 2724 + }, + "constraintImpulse": { + "#": 2725 + }, + "density": 0.001, + "force": { + "#": 2726 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2727 + }, + "positionImpulse": { + "#": 2728 + }, + "positionPrev": { + "#": 2729 + }, + "render": { + "#": 2730 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2732 + }, + "vertices": { + "#": 2733 + } + }, + [ + { + "#": 2719 + }, + { + "#": 2720 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2722 + }, + "min": { + "#": 2723 + } + }, + { + "x": 125, + "y": 270 + }, + { + "x": 100, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 257.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2731 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2739 + }, + "bounds": { + "#": 2742 + }, + "collisionFilter": { + "#": 2745 + }, + "constraintImpulse": { + "#": 2746 + }, + "density": 0.001, + "force": { + "#": 2747 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 131, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2748 + }, + "positionImpulse": { + "#": 2749 + }, + "positionPrev": { + "#": 2750 + }, + "render": { + "#": 2751 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2753 + }, + "vertices": { + "#": 2754 + } + }, + [ + { + "#": 2740 + }, + { + "#": 2741 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2743 + }, + "min": { + "#": 2744 + } + }, + { + "x": 150, + "y": 270 + }, + { + "x": 125, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 257.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2752 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2760 + }, + "bounds": { + "#": 2763 + }, + "collisionFilter": { + "#": 2766 + }, + "constraintImpulse": { + "#": 2767 + }, + "density": 0.001, + "force": { + "#": 2768 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 132, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2769 + }, + "positionImpulse": { + "#": 2770 + }, + "positionPrev": { + "#": 2771 + }, + "render": { + "#": 2772 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2774 + }, + "vertices": { + "#": 2775 + } + }, + [ + { + "#": 2761 + }, + { + "#": 2762 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2764 + }, + "min": { + "#": 2765 + } + }, + { + "x": 175, + "y": 270 + }, + { + "x": 150, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 257.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2773 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2781 + }, + "bounds": { + "#": 2784 + }, + "collisionFilter": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "density": 0.001, + "force": { + "#": 2789 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2790 + }, + "positionImpulse": { + "#": 2791 + }, + "positionPrev": { + "#": 2792 + }, + "render": { + "#": 2793 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2795 + }, + "vertices": { + "#": 2796 + } + }, + [ + { + "#": 2782 + }, + { + "#": 2783 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2785 + }, + "min": { + "#": 2786 + } + }, + { + "x": 200, + "y": 270 + }, + { + "x": 175, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 257.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2794 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2802 + }, + "bounds": { + "#": 2805 + }, + "collisionFilter": { + "#": 2808 + }, + "constraintImpulse": { + "#": 2809 + }, + "density": 0.001, + "force": { + "#": 2810 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 134, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2811 + }, + "positionImpulse": { + "#": 2812 + }, + "positionPrev": { + "#": 2813 + }, + "render": { + "#": 2814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2816 + }, + "vertices": { + "#": 2817 + } + }, + [ + { + "#": 2803 + }, + { + "#": 2804 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2806 + }, + "min": { + "#": 2807 + } + }, + { + "x": 225, + "y": 270 + }, + { + "x": 200, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 257.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2815 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2823 + }, + "bounds": { + "#": 2826 + }, + "collisionFilter": { + "#": 2829 + }, + "constraintImpulse": { + "#": 2830 + }, + "density": 0.001, + "force": { + "#": 2831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 135, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2832 + }, + "positionImpulse": { + "#": 2833 + }, + "positionPrev": { + "#": 2834 + }, + "render": { + "#": 2835 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2837 + }, + "vertices": { + "#": 2838 + } + }, + [ + { + "#": 2824 + }, + { + "#": 2825 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2827 + }, + "min": { + "#": 2828 + } + }, + { + "x": 250, + "y": 270 + }, + { + "x": 225, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2836 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2844 + }, + "bounds": { + "#": 2847 + }, + "collisionFilter": { + "#": 2850 + }, + "constraintImpulse": { + "#": 2851 + }, + "density": 0.001, + "force": { + "#": 2852 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2853 + }, + "positionImpulse": { + "#": 2854 + }, + "positionPrev": { + "#": 2855 + }, + "render": { + "#": 2856 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2858 + }, + "vertices": { + "#": 2859 + } + }, + [ + { + "#": 2845 + }, + { + "#": 2846 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2848 + }, + "min": { + "#": 2849 + } + }, + { + "x": 275, + "y": 270 + }, + { + "x": 250, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 257.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2857 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2865 + }, + "bounds": { + "#": 2868 + }, + "collisionFilter": { + "#": 2871 + }, + "constraintImpulse": { + "#": 2872 + }, + "density": 0.001, + "force": { + "#": 2873 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 137, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2874 + }, + "positionImpulse": { + "#": 2875 + }, + "positionPrev": { + "#": 2876 + }, + "render": { + "#": 2877 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2879 + }, + "vertices": { + "#": 2880 + } + }, + [ + { + "#": 2866 + }, + { + "#": 2867 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2869 + }, + "min": { + "#": 2870 + } + }, + { + "x": 300, + "y": 270 + }, + { + "x": 275, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 257.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2878 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2886 + }, + "bounds": { + "#": 2889 + }, + "collisionFilter": { + "#": 2892 + }, + "constraintImpulse": { + "#": 2893 + }, + "density": 0.001, + "force": { + "#": 2894 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 138, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2895 + }, + "positionImpulse": { + "#": 2896 + }, + "positionPrev": { + "#": 2897 + }, + "render": { + "#": 2898 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2900 + }, + "vertices": { + "#": 2901 + } + }, + [ + { + "#": 2887 + }, + { + "#": 2888 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2890 + }, + "min": { + "#": 2891 + } + }, + { + "x": 325, + "y": 270 + }, + { + "x": 300, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 257.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2899 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2907 + }, + "bounds": { + "#": 2910 + }, + "collisionFilter": { + "#": 2913 + }, + "constraintImpulse": { + "#": 2914 + }, + "density": 0.001, + "force": { + "#": 2915 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2916 + }, + "positionImpulse": { + "#": 2917 + }, + "positionPrev": { + "#": 2918 + }, + "render": { + "#": 2919 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2921 + }, + "vertices": { + "#": 2922 + } + }, + [ + { + "#": 2908 + }, + { + "#": 2909 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2911 + }, + "min": { + "#": 2912 + } + }, + { + "x": 350, + "y": 270 + }, + { + "x": 325, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 257.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2920 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2928 + }, + "bounds": { + "#": 2931 + }, + "collisionFilter": { + "#": 2934 + }, + "constraintImpulse": { + "#": 2935 + }, + "density": 0.001, + "force": { + "#": 2936 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 140, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2937 + }, + "positionImpulse": { + "#": 2938 + }, + "positionPrev": { + "#": 2939 + }, + "render": { + "#": 2940 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2942 + }, + "vertices": { + "#": 2943 + } + }, + [ + { + "#": 2929 + }, + { + "#": 2930 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2932 + }, + "min": { + "#": 2933 + } + }, + { + "x": 375, + "y": 270 + }, + { + "x": 350, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2941 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2944 + }, + { + "#": 2945 + }, + { + "#": 2946 + }, + { + "#": 2947 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2949 + }, + "bounds": { + "#": 2952 + }, + "collisionFilter": { + "#": 2955 + }, + "constraintImpulse": { + "#": 2956 + }, + "density": 0.001, + "force": { + "#": 2957 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 141, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2958 + }, + "positionImpulse": { + "#": 2959 + }, + "positionPrev": { + "#": 2960 + }, + "render": { + "#": 2961 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2963 + }, + "vertices": { + "#": 2964 + } + }, + [ + { + "#": 2950 + }, + { + "#": 2951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2953 + }, + "min": { + "#": 2954 + } + }, + { + "x": 400, + "y": 270 + }, + { + "x": 375, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 257.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2962 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2970 + }, + "bounds": { + "#": 2973 + }, + "collisionFilter": { + "#": 2976 + }, + "constraintImpulse": { + "#": 2977 + }, + "density": 0.001, + "force": { + "#": 2978 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2979 + }, + "positionImpulse": { + "#": 2980 + }, + "positionPrev": { + "#": 2981 + }, + "render": { + "#": 2982 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2984 + }, + "vertices": { + "#": 2985 + } + }, + [ + { + "#": 2971 + }, + { + "#": 2972 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2974 + }, + "min": { + "#": 2975 + } + }, + { + "x": 425, + "y": 270 + }, + { + "x": 400, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2983 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2991 + }, + "bounds": { + "#": 2994 + }, + "collisionFilter": { + "#": 2997 + }, + "constraintImpulse": { + "#": 2998 + }, + "density": 0.001, + "force": { + "#": 2999 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 143, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3000 + }, + "positionImpulse": { + "#": 3001 + }, + "positionPrev": { + "#": 3002 + }, + "render": { + "#": 3003 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3005 + }, + "vertices": { + "#": 3006 + } + }, + [ + { + "#": 2992 + }, + { + "#": 2993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2995 + }, + "min": { + "#": 2996 + } + }, + { + "x": 450, + "y": 270 + }, + { + "x": 425, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3004 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3012 + }, + "bounds": { + "#": 3015 + }, + "collisionFilter": { + "#": 3018 + }, + "constraintImpulse": { + "#": 3019 + }, + "density": 0.001, + "force": { + "#": 3020 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 144, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3021 + }, + "positionImpulse": { + "#": 3022 + }, + "positionPrev": { + "#": 3023 + }, + "render": { + "#": 3024 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3026 + }, + "vertices": { + "#": 3027 + } + }, + [ + { + "#": 3013 + }, + { + "#": 3014 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3016 + }, + "min": { + "#": 3017 + } + }, + { + "x": 475, + "y": 270 + }, + { + "x": 450, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3025 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3033 + }, + "bounds": { + "#": 3036 + }, + "collisionFilter": { + "#": 3039 + }, + "constraintImpulse": { + "#": 3040 + }, + "density": 0.001, + "force": { + "#": 3041 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3042 + }, + "positionImpulse": { + "#": 3043 + }, + "positionPrev": { + "#": 3044 + }, + "render": { + "#": 3045 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3047 + }, + "vertices": { + "#": 3048 + } + }, + [ + { + "#": 3034 + }, + { + "#": 3035 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3037 + }, + "min": { + "#": 3038 + } + }, + { + "x": 500, + "y": 270 + }, + { + "x": 475, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 257.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3046 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3054 + }, + "bounds": { + "#": 3057 + }, + "collisionFilter": { + "#": 3060 + }, + "constraintImpulse": { + "#": 3061 + }, + "density": 0.001, + "force": { + "#": 3062 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 146, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3063 + }, + "positionImpulse": { + "#": 3064 + }, + "positionPrev": { + "#": 3065 + }, + "render": { + "#": 3066 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3068 + }, + "vertices": { + "#": 3069 + } + }, + [ + { + "#": 3055 + }, + { + "#": 3056 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3058 + }, + "min": { + "#": 3059 + } + }, + { + "x": 525, + "y": 270 + }, + { + "x": 500, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 257.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3067 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3075 + }, + "bounds": { + "#": 3078 + }, + "collisionFilter": { + "#": 3081 + }, + "constraintImpulse": { + "#": 3082 + }, + "density": 0.001, + "force": { + "#": 3083 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 147, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3084 + }, + "positionImpulse": { + "#": 3085 + }, + "positionPrev": { + "#": 3086 + }, + "render": { + "#": 3087 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3089 + }, + "vertices": { + "#": 3090 + } + }, + [ + { + "#": 3076 + }, + { + "#": 3077 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3079 + }, + "min": { + "#": 3080 + } + }, + { + "x": 550, + "y": 270 + }, + { + "x": 525, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 257.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3088 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3096 + }, + "bounds": { + "#": 3099 + }, + "collisionFilter": { + "#": 3102 + }, + "constraintImpulse": { + "#": 3103 + }, + "density": 0.001, + "force": { + "#": 3104 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3105 + }, + "positionImpulse": { + "#": 3106 + }, + "positionPrev": { + "#": 3107 + }, + "render": { + "#": 3108 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3110 + }, + "vertices": { + "#": 3111 + } + }, + [ + { + "#": 3097 + }, + { + "#": 3098 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3100 + }, + "min": { + "#": 3101 + } + }, + { + "x": 575, + "y": 270 + }, + { + "x": 550, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 257.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3109 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3117 + }, + "bounds": { + "#": 3120 + }, + "collisionFilter": { + "#": 3123 + }, + "constraintImpulse": { + "#": 3124 + }, + "density": 0.001, + "force": { + "#": 3125 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 149, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3126 + }, + "positionImpulse": { + "#": 3127 + }, + "positionPrev": { + "#": 3128 + }, + "render": { + "#": 3129 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3131 + }, + "vertices": { + "#": 3132 + } + }, + [ + { + "#": 3118 + }, + { + "#": 3119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3121 + }, + "min": { + "#": 3122 + } + }, + { + "x": 600, + "y": 270 + }, + { + "x": 575, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 257.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3130 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3138 + }, + "bounds": { + "#": 3141 + }, + "collisionFilter": { + "#": 3144 + }, + "constraintImpulse": { + "#": 3145 + }, + "density": 0.001, + "force": { + "#": 3146 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 150, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3147 + }, + "positionImpulse": { + "#": 3148 + }, + "positionPrev": { + "#": 3149 + }, + "render": { + "#": 3150 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3152 + }, + "vertices": { + "#": 3153 + } + }, + [ + { + "#": 3139 + }, + { + "#": 3140 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3142 + }, + "min": { + "#": 3143 + } + }, + { + "x": 625, + "y": 270 + }, + { + "x": 600, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3151 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3159 + }, + "bounds": { + "#": 3162 + }, + "collisionFilter": { + "#": 3165 + }, + "constraintImpulse": { + "#": 3166 + }, + "density": 0.001, + "force": { + "#": 3167 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3168 + }, + "positionImpulse": { + "#": 3169 + }, + "positionPrev": { + "#": 3170 + }, + "render": { + "#": 3171 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3173 + }, + "vertices": { + "#": 3174 + } + }, + [ + { + "#": 3160 + }, + { + "#": 3161 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3163 + }, + "min": { + "#": 3164 + } + }, + { + "x": 650, + "y": 270 + }, + { + "x": 625, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3172 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + }, + { + "#": 3178 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3180 + }, + "bounds": { + "#": 3183 + }, + "collisionFilter": { + "#": 3186 + }, + "constraintImpulse": { + "#": 3187 + }, + "density": 0.001, + "force": { + "#": 3188 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 152, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3189 + }, + "positionImpulse": { + "#": 3190 + }, + "positionPrev": { + "#": 3191 + }, + "render": { + "#": 3192 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3194 + }, + "vertices": { + "#": 3195 + } + }, + [ + { + "#": 3181 + }, + { + "#": 3182 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3184 + }, + "min": { + "#": 3185 + } + }, + { + "x": 675, + "y": 270 + }, + { + "x": 650, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 257.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3193 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3201 + }, + "bounds": { + "#": 3204 + }, + "collisionFilter": { + "#": 3207 + }, + "constraintImpulse": { + "#": 3208 + }, + "density": 0.001, + "force": { + "#": 3209 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 153, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3210 + }, + "positionImpulse": { + "#": 3211 + }, + "positionPrev": { + "#": 3212 + }, + "render": { + "#": 3213 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3215 + }, + "vertices": { + "#": 3216 + } + }, + [ + { + "#": 3202 + }, + { + "#": 3203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3205 + }, + "min": { + "#": 3206 + } + }, + { + "x": 700, + "y": 270 + }, + { + "x": 675, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3214 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3222 + }, + "bounds": { + "#": 3225 + }, + "collisionFilter": { + "#": 3228 + }, + "constraintImpulse": { + "#": 3229 + }, + "density": 0.001, + "force": { + "#": 3230 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3231 + }, + "positionImpulse": { + "#": 3232 + }, + "positionPrev": { + "#": 3233 + }, + "render": { + "#": 3234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3236 + }, + "vertices": { + "#": 3237 + } + }, + [ + { + "#": 3223 + }, + { + "#": 3224 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3226 + }, + "min": { + "#": 3227 + } + }, + { + "x": 725, + "y": 270 + }, + { + "x": 700, + "y": 245 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 257.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3235 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 245 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 245 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 270 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 270 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3243 + }, + "bounds": { + "#": 3246 + }, + "collisionFilter": { + "#": 3249 + }, + "constraintImpulse": { + "#": 3250 + }, + "density": 0.001, + "force": { + "#": 3251 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 155, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3252 + }, + "positionImpulse": { + "#": 3253 + }, + "positionPrev": { + "#": 3254 + }, + "render": { + "#": 3255 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3257 + }, + "vertices": { + "#": 3258 + } + }, + [ + { + "#": 3244 + }, + { + "#": 3245 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3247 + }, + "min": { + "#": 3248 + } + }, + { + "x": 125, + "y": 295 + }, + { + "x": 100, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 282.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3256 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3264 + }, + "bounds": { + "#": 3267 + }, + "collisionFilter": { + "#": 3270 + }, + "constraintImpulse": { + "#": 3271 + }, + "density": 0.001, + "force": { + "#": 3272 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 156, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3273 + }, + "positionImpulse": { + "#": 3274 + }, + "positionPrev": { + "#": 3275 + }, + "render": { + "#": 3276 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3278 + }, + "vertices": { + "#": 3279 + } + }, + [ + { + "#": 3265 + }, + { + "#": 3266 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3268 + }, + "min": { + "#": 3269 + } + }, + { + "x": 150, + "y": 295 + }, + { + "x": 125, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 282.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3277 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3285 + }, + "bounds": { + "#": 3288 + }, + "collisionFilter": { + "#": 3291 + }, + "constraintImpulse": { + "#": 3292 + }, + "density": 0.001, + "force": { + "#": 3293 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3294 + }, + "positionImpulse": { + "#": 3295 + }, + "positionPrev": { + "#": 3296 + }, + "render": { + "#": 3297 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3299 + }, + "vertices": { + "#": 3300 + } + }, + [ + { + "#": 3286 + }, + { + "#": 3287 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3289 + }, + "min": { + "#": 3290 + } + }, + { + "x": 175, + "y": 295 + }, + { + "x": 150, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 282.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3298 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3306 + }, + "bounds": { + "#": 3309 + }, + "collisionFilter": { + "#": 3312 + }, + "constraintImpulse": { + "#": 3313 + }, + "density": 0.001, + "force": { + "#": 3314 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 158, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3315 + }, + "positionImpulse": { + "#": 3316 + }, + "positionPrev": { + "#": 3317 + }, + "render": { + "#": 3318 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3320 + }, + "vertices": { + "#": 3321 + } + }, + [ + { + "#": 3307 + }, + { + "#": 3308 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3310 + }, + "min": { + "#": 3311 + } + }, + { + "x": 200, + "y": 295 + }, + { + "x": 175, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 282.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3319 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3327 + }, + "bounds": { + "#": 3330 + }, + "collisionFilter": { + "#": 3333 + }, + "constraintImpulse": { + "#": 3334 + }, + "density": 0.001, + "force": { + "#": 3335 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 159, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3336 + }, + "positionImpulse": { + "#": 3337 + }, + "positionPrev": { + "#": 3338 + }, + "render": { + "#": 3339 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3341 + }, + "vertices": { + "#": 3342 + } + }, + [ + { + "#": 3328 + }, + { + "#": 3329 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3331 + }, + "min": { + "#": 3332 + } + }, + { + "x": 225, + "y": 295 + }, + { + "x": 200, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 282.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3340 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3348 + }, + "bounds": { + "#": 3351 + }, + "collisionFilter": { + "#": 3354 + }, + "constraintImpulse": { + "#": 3355 + }, + "density": 0.001, + "force": { + "#": 3356 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 160, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3357 + }, + "positionImpulse": { + "#": 3358 + }, + "positionPrev": { + "#": 3359 + }, + "render": { + "#": 3360 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3362 + }, + "vertices": { + "#": 3363 + } + }, + [ + { + "#": 3349 + }, + { + "#": 3350 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3352 + }, + "min": { + "#": 3353 + } + }, + { + "x": 250, + "y": 295 + }, + { + "x": 225, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 282.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3361 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + }, + { + "#": 3367 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3369 + }, + "bounds": { + "#": 3372 + }, + "collisionFilter": { + "#": 3375 + }, + "constraintImpulse": { + "#": 3376 + }, + "density": 0.001, + "force": { + "#": 3377 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 161, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3378 + }, + "positionImpulse": { + "#": 3379 + }, + "positionPrev": { + "#": 3380 + }, + "render": { + "#": 3381 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3383 + }, + "vertices": { + "#": 3384 + } + }, + [ + { + "#": 3370 + }, + { + "#": 3371 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3373 + }, + "min": { + "#": 3374 + } + }, + { + "x": 275, + "y": 295 + }, + { + "x": 250, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 282.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3382 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3390 + }, + "bounds": { + "#": 3393 + }, + "collisionFilter": { + "#": 3396 + }, + "constraintImpulse": { + "#": 3397 + }, + "density": 0.001, + "force": { + "#": 3398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 162, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3399 + }, + "positionImpulse": { + "#": 3400 + }, + "positionPrev": { + "#": 3401 + }, + "render": { + "#": 3402 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3404 + }, + "vertices": { + "#": 3405 + } + }, + [ + { + "#": 3391 + }, + { + "#": 3392 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3394 + }, + "min": { + "#": 3395 + } + }, + { + "x": 300, + "y": 295 + }, + { + "x": 275, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 282.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3403 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3406 + }, + { + "#": 3407 + }, + { + "#": 3408 + }, + { + "#": 3409 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3411 + }, + "bounds": { + "#": 3414 + }, + "collisionFilter": { + "#": 3417 + }, + "constraintImpulse": { + "#": 3418 + }, + "density": 0.001, + "force": { + "#": 3419 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 163, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3420 + }, + "positionImpulse": { + "#": 3421 + }, + "positionPrev": { + "#": 3422 + }, + "render": { + "#": 3423 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3425 + }, + "vertices": { + "#": 3426 + } + }, + [ + { + "#": 3412 + }, + { + "#": 3413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3415 + }, + "min": { + "#": 3416 + } + }, + { + "x": 325, + "y": 295 + }, + { + "x": 300, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 282.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3424 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3432 + }, + "bounds": { + "#": 3435 + }, + "collisionFilter": { + "#": 3438 + }, + "constraintImpulse": { + "#": 3439 + }, + "density": 0.001, + "force": { + "#": 3440 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 164, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3441 + }, + "positionImpulse": { + "#": 3442 + }, + "positionPrev": { + "#": 3443 + }, + "render": { + "#": 3444 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3446 + }, + "vertices": { + "#": 3447 + } + }, + [ + { + "#": 3433 + }, + { + "#": 3434 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3436 + }, + "min": { + "#": 3437 + } + }, + { + "x": 350, + "y": 295 + }, + { + "x": 325, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 282.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3445 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3453 + }, + "bounds": { + "#": 3456 + }, + "collisionFilter": { + "#": 3459 + }, + "constraintImpulse": { + "#": 3460 + }, + "density": 0.001, + "force": { + "#": 3461 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 165, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3462 + }, + "positionImpulse": { + "#": 3463 + }, + "positionPrev": { + "#": 3464 + }, + "render": { + "#": 3465 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3467 + }, + "vertices": { + "#": 3468 + } + }, + [ + { + "#": 3454 + }, + { + "#": 3455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3457 + }, + "min": { + "#": 3458 + } + }, + { + "x": 375, + "y": 295 + }, + { + "x": 350, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 282.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3466 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3474 + }, + "bounds": { + "#": 3477 + }, + "collisionFilter": { + "#": 3480 + }, + "constraintImpulse": { + "#": 3481 + }, + "density": 0.001, + "force": { + "#": 3482 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 166, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3483 + }, + "positionImpulse": { + "#": 3484 + }, + "positionPrev": { + "#": 3485 + }, + "render": { + "#": 3486 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3488 + }, + "vertices": { + "#": 3489 + } + }, + [ + { + "#": 3475 + }, + { + "#": 3476 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3478 + }, + "min": { + "#": 3479 + } + }, + { + "x": 400, + "y": 295 + }, + { + "x": 375, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 282.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3487 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3495 + }, + "bounds": { + "#": 3498 + }, + "collisionFilter": { + "#": 3501 + }, + "constraintImpulse": { + "#": 3502 + }, + "density": 0.001, + "force": { + "#": 3503 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 167, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3504 + }, + "positionImpulse": { + "#": 3505 + }, + "positionPrev": { + "#": 3506 + }, + "render": { + "#": 3507 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3509 + }, + "vertices": { + "#": 3510 + } + }, + [ + { + "#": 3496 + }, + { + "#": 3497 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3499 + }, + "min": { + "#": 3500 + } + }, + { + "x": 425, + "y": 295 + }, + { + "x": 400, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 282.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3508 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3511 + }, + { + "#": 3512 + }, + { + "#": 3513 + }, + { + "#": 3514 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3516 + }, + "bounds": { + "#": 3519 + }, + "collisionFilter": { + "#": 3522 + }, + "constraintImpulse": { + "#": 3523 + }, + "density": 0.001, + "force": { + "#": 3524 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 168, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3525 + }, + "positionImpulse": { + "#": 3526 + }, + "positionPrev": { + "#": 3527 + }, + "render": { + "#": 3528 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3530 + }, + "vertices": { + "#": 3531 + } + }, + [ + { + "#": 3517 + }, + { + "#": 3518 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3520 + }, + "min": { + "#": 3521 + } + }, + { + "x": 450, + "y": 295 + }, + { + "x": 425, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 282.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3529 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3532 + }, + { + "#": 3533 + }, + { + "#": 3534 + }, + { + "#": 3535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3537 + }, + "bounds": { + "#": 3540 + }, + "collisionFilter": { + "#": 3543 + }, + "constraintImpulse": { + "#": 3544 + }, + "density": 0.001, + "force": { + "#": 3545 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 169, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3546 + }, + "positionImpulse": { + "#": 3547 + }, + "positionPrev": { + "#": 3548 + }, + "render": { + "#": 3549 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3551 + }, + "vertices": { + "#": 3552 + } + }, + [ + { + "#": 3538 + }, + { + "#": 3539 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3541 + }, + "min": { + "#": 3542 + } + }, + { + "x": 475, + "y": 295 + }, + { + "x": 450, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 282.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3550 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3558 + }, + "bounds": { + "#": 3561 + }, + "collisionFilter": { + "#": 3564 + }, + "constraintImpulse": { + "#": 3565 + }, + "density": 0.001, + "force": { + "#": 3566 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 170, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3567 + }, + "positionImpulse": { + "#": 3568 + }, + "positionPrev": { + "#": 3569 + }, + "render": { + "#": 3570 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3572 + }, + "vertices": { + "#": 3573 + } + }, + [ + { + "#": 3559 + }, + { + "#": 3560 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3562 + }, + "min": { + "#": 3563 + } + }, + { + "x": 500, + "y": 295 + }, + { + "x": 475, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 282.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3571 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3579 + }, + "bounds": { + "#": 3582 + }, + "collisionFilter": { + "#": 3585 + }, + "constraintImpulse": { + "#": 3586 + }, + "density": 0.001, + "force": { + "#": 3587 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 171, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3588 + }, + "positionImpulse": { + "#": 3589 + }, + "positionPrev": { + "#": 3590 + }, + "render": { + "#": 3591 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3593 + }, + "vertices": { + "#": 3594 + } + }, + [ + { + "#": 3580 + }, + { + "#": 3581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3583 + }, + "min": { + "#": 3584 + } + }, + { + "x": 525, + "y": 295 + }, + { + "x": 500, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 282.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3592 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3600 + }, + "bounds": { + "#": 3603 + }, + "collisionFilter": { + "#": 3606 + }, + "constraintImpulse": { + "#": 3607 + }, + "density": 0.001, + "force": { + "#": 3608 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 172, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3609 + }, + "positionImpulse": { + "#": 3610 + }, + "positionPrev": { + "#": 3611 + }, + "render": { + "#": 3612 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3614 + }, + "vertices": { + "#": 3615 + } + }, + [ + { + "#": 3601 + }, + { + "#": 3602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3604 + }, + "min": { + "#": 3605 + } + }, + { + "x": 550, + "y": 295 + }, + { + "x": 525, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 282.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3613 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3621 + }, + "bounds": { + "#": 3624 + }, + "collisionFilter": { + "#": 3627 + }, + "constraintImpulse": { + "#": 3628 + }, + "density": 0.001, + "force": { + "#": 3629 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 173, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3630 + }, + "positionImpulse": { + "#": 3631 + }, + "positionPrev": { + "#": 3632 + }, + "render": { + "#": 3633 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3635 + }, + "vertices": { + "#": 3636 + } + }, + [ + { + "#": 3622 + }, + { + "#": 3623 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3625 + }, + "min": { + "#": 3626 + } + }, + { + "x": 575, + "y": 295 + }, + { + "x": 550, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 282.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3634 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3642 + }, + "bounds": { + "#": 3645 + }, + "collisionFilter": { + "#": 3648 + }, + "constraintImpulse": { + "#": 3649 + }, + "density": 0.001, + "force": { + "#": 3650 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 174, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3651 + }, + "positionImpulse": { + "#": 3652 + }, + "positionPrev": { + "#": 3653 + }, + "render": { + "#": 3654 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3656 + }, + "vertices": { + "#": 3657 + } + }, + [ + { + "#": 3643 + }, + { + "#": 3644 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3646 + }, + "min": { + "#": 3647 + } + }, + { + "x": 600, + "y": 295 + }, + { + "x": 575, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 282.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3655 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3658 + }, + { + "#": 3659 + }, + { + "#": 3660 + }, + { + "#": 3661 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3663 + }, + "bounds": { + "#": 3666 + }, + "collisionFilter": { + "#": 3669 + }, + "constraintImpulse": { + "#": 3670 + }, + "density": 0.001, + "force": { + "#": 3671 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 175, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3672 + }, + "positionImpulse": { + "#": 3673 + }, + "positionPrev": { + "#": 3674 + }, + "render": { + "#": 3675 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3677 + }, + "vertices": { + "#": 3678 + } + }, + [ + { + "#": 3664 + }, + { + "#": 3665 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3667 + }, + "min": { + "#": 3668 + } + }, + { + "x": 625, + "y": 295 + }, + { + "x": 600, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 282.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3676 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3684 + }, + "bounds": { + "#": 3687 + }, + "collisionFilter": { + "#": 3690 + }, + "constraintImpulse": { + "#": 3691 + }, + "density": 0.001, + "force": { + "#": 3692 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 176, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3693 + }, + "positionImpulse": { + "#": 3694 + }, + "positionPrev": { + "#": 3695 + }, + "render": { + "#": 3696 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3698 + }, + "vertices": { + "#": 3699 + } + }, + [ + { + "#": 3685 + }, + { + "#": 3686 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3688 + }, + "min": { + "#": 3689 + } + }, + { + "x": 650, + "y": 295 + }, + { + "x": 625, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 282.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3697 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3705 + }, + "bounds": { + "#": 3708 + }, + "collisionFilter": { + "#": 3711 + }, + "constraintImpulse": { + "#": 3712 + }, + "density": 0.001, + "force": { + "#": 3713 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 177, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3714 + }, + "positionImpulse": { + "#": 3715 + }, + "positionPrev": { + "#": 3716 + }, + "render": { + "#": 3717 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3719 + }, + "vertices": { + "#": 3720 + } + }, + [ + { + "#": 3706 + }, + { + "#": 3707 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3709 + }, + "min": { + "#": 3710 + } + }, + { + "x": 675, + "y": 295 + }, + { + "x": 650, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 282.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3718 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3726 + }, + "bounds": { + "#": 3729 + }, + "collisionFilter": { + "#": 3732 + }, + "constraintImpulse": { + "#": 3733 + }, + "density": 0.001, + "force": { + "#": 3734 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 178, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3735 + }, + "positionImpulse": { + "#": 3736 + }, + "positionPrev": { + "#": 3737 + }, + "render": { + "#": 3738 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3740 + }, + "vertices": { + "#": 3741 + } + }, + [ + { + "#": 3727 + }, + { + "#": 3728 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3730 + }, + "min": { + "#": 3731 + } + }, + { + "x": 700, + "y": 295 + }, + { + "x": 675, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 282.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3739 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3747 + }, + "bounds": { + "#": 3750 + }, + "collisionFilter": { + "#": 3753 + }, + "constraintImpulse": { + "#": 3754 + }, + "density": 0.001, + "force": { + "#": 3755 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 179, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3756 + }, + "positionImpulse": { + "#": 3757 + }, + "positionPrev": { + "#": 3758 + }, + "render": { + "#": 3759 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3761 + }, + "vertices": { + "#": 3762 + } + }, + [ + { + "#": 3748 + }, + { + "#": 3749 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3751 + }, + "min": { + "#": 3752 + } + }, + { + "x": 725, + "y": 295 + }, + { + "x": 700, + "y": 270 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 282.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3760 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 270 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 270 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 295 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 295 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3768 + }, + "bounds": { + "#": 3771 + }, + "collisionFilter": { + "#": 3774 + }, + "constraintImpulse": { + "#": 3775 + }, + "density": 0.001, + "force": { + "#": 3776 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 180, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3777 + }, + "positionImpulse": { + "#": 3778 + }, + "positionPrev": { + "#": 3779 + }, + "render": { + "#": 3780 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3782 + }, + "vertices": { + "#": 3783 + } + }, + [ + { + "#": 3769 + }, + { + "#": 3770 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3772 + }, + "min": { + "#": 3773 + } + }, + { + "x": 125, + "y": 320 + }, + { + "x": 100, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 307.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3781 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3789 + }, + "bounds": { + "#": 3792 + }, + "collisionFilter": { + "#": 3795 + }, + "constraintImpulse": { + "#": 3796 + }, + "density": 0.001, + "force": { + "#": 3797 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 181, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3798 + }, + "positionImpulse": { + "#": 3799 + }, + "positionPrev": { + "#": 3800 + }, + "render": { + "#": 3801 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3803 + }, + "vertices": { + "#": 3804 + } + }, + [ + { + "#": 3790 + }, + { + "#": 3791 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3793 + }, + "min": { + "#": 3794 + } + }, + { + "x": 150, + "y": 320 + }, + { + "x": 125, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 307.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3802 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3810 + }, + "bounds": { + "#": 3813 + }, + "collisionFilter": { + "#": 3816 + }, + "constraintImpulse": { + "#": 3817 + }, + "density": 0.001, + "force": { + "#": 3818 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 182, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3819 + }, + "positionImpulse": { + "#": 3820 + }, + "positionPrev": { + "#": 3821 + }, + "render": { + "#": 3822 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3824 + }, + "vertices": { + "#": 3825 + } + }, + [ + { + "#": 3811 + }, + { + "#": 3812 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3814 + }, + "min": { + "#": 3815 + } + }, + { + "x": 175, + "y": 320 + }, + { + "x": 150, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 307.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3823 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3831 + }, + "bounds": { + "#": 3834 + }, + "collisionFilter": { + "#": 3837 + }, + "constraintImpulse": { + "#": 3838 + }, + "density": 0.001, + "force": { + "#": 3839 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 183, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3840 + }, + "positionImpulse": { + "#": 3841 + }, + "positionPrev": { + "#": 3842 + }, + "render": { + "#": 3843 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3845 + }, + "vertices": { + "#": 3846 + } + }, + [ + { + "#": 3832 + }, + { + "#": 3833 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3835 + }, + "min": { + "#": 3836 + } + }, + { + "x": 200, + "y": 320 + }, + { + "x": 175, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 307.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3844 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3852 + }, + "bounds": { + "#": 3855 + }, + "collisionFilter": { + "#": 3858 + }, + "constraintImpulse": { + "#": 3859 + }, + "density": 0.001, + "force": { + "#": 3860 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 184, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3861 + }, + "positionImpulse": { + "#": 3862 + }, + "positionPrev": { + "#": 3863 + }, + "render": { + "#": 3864 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3866 + }, + "vertices": { + "#": 3867 + } + }, + [ + { + "#": 3853 + }, + { + "#": 3854 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3856 + }, + "min": { + "#": 3857 + } + }, + { + "x": 225, + "y": 320 + }, + { + "x": 200, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 307.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3865 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3873 + }, + "bounds": { + "#": 3876 + }, + "collisionFilter": { + "#": 3879 + }, + "constraintImpulse": { + "#": 3880 + }, + "density": 0.001, + "force": { + "#": 3881 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 185, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3882 + }, + "positionImpulse": { + "#": 3883 + }, + "positionPrev": { + "#": 3884 + }, + "render": { + "#": 3885 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3887 + }, + "vertices": { + "#": 3888 + } + }, + [ + { + "#": 3874 + }, + { + "#": 3875 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3877 + }, + "min": { + "#": 3878 + } + }, + { + "x": 250, + "y": 320 + }, + { + "x": 225, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 307.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3886 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3894 + }, + "bounds": { + "#": 3897 + }, + "collisionFilter": { + "#": 3900 + }, + "constraintImpulse": { + "#": 3901 + }, + "density": 0.001, + "force": { + "#": 3902 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 186, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3903 + }, + "positionImpulse": { + "#": 3904 + }, + "positionPrev": { + "#": 3905 + }, + "render": { + "#": 3906 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3908 + }, + "vertices": { + "#": 3909 + } + }, + [ + { + "#": 3895 + }, + { + "#": 3896 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3898 + }, + "min": { + "#": 3899 + } + }, + { + "x": 275, + "y": 320 + }, + { + "x": 250, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 307.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3907 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3915 + }, + "bounds": { + "#": 3918 + }, + "collisionFilter": { + "#": 3921 + }, + "constraintImpulse": { + "#": 3922 + }, + "density": 0.001, + "force": { + "#": 3923 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 187, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3924 + }, + "positionImpulse": { + "#": 3925 + }, + "positionPrev": { + "#": 3926 + }, + "render": { + "#": 3927 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3929 + }, + "vertices": { + "#": 3930 + } + }, + [ + { + "#": 3916 + }, + { + "#": 3917 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3919 + }, + "min": { + "#": 3920 + } + }, + { + "x": 300, + "y": 320 + }, + { + "x": 275, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 307.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3928 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3931 + }, + { + "#": 3932 + }, + { + "#": 3933 + }, + { + "#": 3934 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3936 + }, + "bounds": { + "#": 3939 + }, + "collisionFilter": { + "#": 3942 + }, + "constraintImpulse": { + "#": 3943 + }, + "density": 0.001, + "force": { + "#": 3944 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 188, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3945 + }, + "positionImpulse": { + "#": 3946 + }, + "positionPrev": { + "#": 3947 + }, + "render": { + "#": 3948 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3950 + }, + "vertices": { + "#": 3951 + } + }, + [ + { + "#": 3937 + }, + { + "#": 3938 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3940 + }, + "min": { + "#": 3941 + } + }, + { + "x": 325, + "y": 320 + }, + { + "x": 300, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 307.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3949 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3957 + }, + "bounds": { + "#": 3960 + }, + "collisionFilter": { + "#": 3963 + }, + "constraintImpulse": { + "#": 3964 + }, + "density": 0.001, + "force": { + "#": 3965 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 189, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3966 + }, + "positionImpulse": { + "#": 3967 + }, + "positionPrev": { + "#": 3968 + }, + "render": { + "#": 3969 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3971 + }, + "vertices": { + "#": 3972 + } + }, + [ + { + "#": 3958 + }, + { + "#": 3959 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3961 + }, + "min": { + "#": 3962 + } + }, + { + "x": 350, + "y": 320 + }, + { + "x": 325, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 307.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3970 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3973 + }, + { + "#": 3974 + }, + { + "#": 3975 + }, + { + "#": 3976 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3978 + }, + "bounds": { + "#": 3981 + }, + "collisionFilter": { + "#": 3984 + }, + "constraintImpulse": { + "#": 3985 + }, + "density": 0.001, + "force": { + "#": 3986 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 190, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3987 + }, + "positionImpulse": { + "#": 3988 + }, + "positionPrev": { + "#": 3989 + }, + "render": { + "#": 3990 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3992 + }, + "vertices": { + "#": 3993 + } + }, + [ + { + "#": 3979 + }, + { + "#": 3980 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3982 + }, + "min": { + "#": 3983 + } + }, + { + "x": 375, + "y": 320 + }, + { + "x": 350, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 307.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3991 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3999 + }, + "bounds": { + "#": 4002 + }, + "collisionFilter": { + "#": 4005 + }, + "constraintImpulse": { + "#": 4006 + }, + "density": 0.001, + "force": { + "#": 4007 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 191, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4008 + }, + "positionImpulse": { + "#": 4009 + }, + "positionPrev": { + "#": 4010 + }, + "render": { + "#": 4011 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4013 + }, + "vertices": { + "#": 4014 + } + }, + [ + { + "#": 4000 + }, + { + "#": 4001 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4003 + }, + "min": { + "#": 4004 + } + }, + { + "x": 400, + "y": 320 + }, + { + "x": 375, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 307.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4012 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4020 + }, + "bounds": { + "#": 4023 + }, + "collisionFilter": { + "#": 4026 + }, + "constraintImpulse": { + "#": 4027 + }, + "density": 0.001, + "force": { + "#": 4028 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 192, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4029 + }, + "positionImpulse": { + "#": 4030 + }, + "positionPrev": { + "#": 4031 + }, + "render": { + "#": 4032 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4034 + }, + "vertices": { + "#": 4035 + } + }, + [ + { + "#": 4021 + }, + { + "#": 4022 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4024 + }, + "min": { + "#": 4025 + } + }, + { + "x": 425, + "y": 320 + }, + { + "x": 400, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 307.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4033 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4041 + }, + "bounds": { + "#": 4044 + }, + "collisionFilter": { + "#": 4047 + }, + "constraintImpulse": { + "#": 4048 + }, + "density": 0.001, + "force": { + "#": 4049 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 193, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4050 + }, + "positionImpulse": { + "#": 4051 + }, + "positionPrev": { + "#": 4052 + }, + "render": { + "#": 4053 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4055 + }, + "vertices": { + "#": 4056 + } + }, + [ + { + "#": 4042 + }, + { + "#": 4043 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4045 + }, + "min": { + "#": 4046 + } + }, + { + "x": 450, + "y": 320 + }, + { + "x": 425, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 307.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4054 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4062 + }, + "bounds": { + "#": 4065 + }, + "collisionFilter": { + "#": 4068 + }, + "constraintImpulse": { + "#": 4069 + }, + "density": 0.001, + "force": { + "#": 4070 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 194, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4071 + }, + "positionImpulse": { + "#": 4072 + }, + "positionPrev": { + "#": 4073 + }, + "render": { + "#": 4074 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4076 + }, + "vertices": { + "#": 4077 + } + }, + [ + { + "#": 4063 + }, + { + "#": 4064 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4066 + }, + "min": { + "#": 4067 + } + }, + { + "x": 475, + "y": 320 + }, + { + "x": 450, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 307.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4075 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4078 + }, + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4083 + }, + "bounds": { + "#": 4086 + }, + "collisionFilter": { + "#": 4089 + }, + "constraintImpulse": { + "#": 4090 + }, + "density": 0.001, + "force": { + "#": 4091 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 195, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4092 + }, + "positionImpulse": { + "#": 4093 + }, + "positionPrev": { + "#": 4094 + }, + "render": { + "#": 4095 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4097 + }, + "vertices": { + "#": 4098 + } + }, + [ + { + "#": 4084 + }, + { + "#": 4085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4087 + }, + "min": { + "#": 4088 + } + }, + { + "x": 500, + "y": 320 + }, + { + "x": 475, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 307.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4096 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4104 + }, + "bounds": { + "#": 4107 + }, + "collisionFilter": { + "#": 4110 + }, + "constraintImpulse": { + "#": 4111 + }, + "density": 0.001, + "force": { + "#": 4112 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 196, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4113 + }, + "positionImpulse": { + "#": 4114 + }, + "positionPrev": { + "#": 4115 + }, + "render": { + "#": 4116 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4118 + }, + "vertices": { + "#": 4119 + } + }, + [ + { + "#": 4105 + }, + { + "#": 4106 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4108 + }, + "min": { + "#": 4109 + } + }, + { + "x": 525, + "y": 320 + }, + { + "x": 500, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 307.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4117 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4120 + }, + { + "#": 4121 + }, + { + "#": 4122 + }, + { + "#": 4123 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4125 + }, + "bounds": { + "#": 4128 + }, + "collisionFilter": { + "#": 4131 + }, + "constraintImpulse": { + "#": 4132 + }, + "density": 0.001, + "force": { + "#": 4133 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 197, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4134 + }, + "positionImpulse": { + "#": 4135 + }, + "positionPrev": { + "#": 4136 + }, + "render": { + "#": 4137 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4139 + }, + "vertices": { + "#": 4140 + } + }, + [ + { + "#": 4126 + }, + { + "#": 4127 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4129 + }, + "min": { + "#": 4130 + } + }, + { + "x": 550, + "y": 320 + }, + { + "x": 525, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 307.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4138 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + }, + { + "#": 4144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4146 + }, + "bounds": { + "#": 4149 + }, + "collisionFilter": { + "#": 4152 + }, + "constraintImpulse": { + "#": 4153 + }, + "density": 0.001, + "force": { + "#": 4154 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 198, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4155 + }, + "positionImpulse": { + "#": 4156 + }, + "positionPrev": { + "#": 4157 + }, + "render": { + "#": 4158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4160 + }, + "vertices": { + "#": 4161 + } + }, + [ + { + "#": 4147 + }, + { + "#": 4148 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4150 + }, + "min": { + "#": 4151 + } + }, + { + "x": 575, + "y": 320 + }, + { + "x": 550, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 307.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4159 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4162 + }, + { + "#": 4163 + }, + { + "#": 4164 + }, + { + "#": 4165 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4167 + }, + "bounds": { + "#": 4170 + }, + "collisionFilter": { + "#": 4173 + }, + "constraintImpulse": { + "#": 4174 + }, + "density": 0.001, + "force": { + "#": 4175 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 199, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4176 + }, + "positionImpulse": { + "#": 4177 + }, + "positionPrev": { + "#": 4178 + }, + "render": { + "#": 4179 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4181 + }, + "vertices": { + "#": 4182 + } + }, + [ + { + "#": 4168 + }, + { + "#": 4169 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4171 + }, + "min": { + "#": 4172 + } + }, + { + "x": 600, + "y": 320 + }, + { + "x": 575, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 307.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4180 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4188 + }, + "bounds": { + "#": 4191 + }, + "collisionFilter": { + "#": 4194 + }, + "constraintImpulse": { + "#": 4195 + }, + "density": 0.001, + "force": { + "#": 4196 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 200, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4197 + }, + "positionImpulse": { + "#": 4198 + }, + "positionPrev": { + "#": 4199 + }, + "render": { + "#": 4200 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4202 + }, + "vertices": { + "#": 4203 + } + }, + [ + { + "#": 4189 + }, + { + "#": 4190 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4192 + }, + "min": { + "#": 4193 + } + }, + { + "x": 625, + "y": 320 + }, + { + "x": 600, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 307.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4201 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4209 + }, + "bounds": { + "#": 4212 + }, + "collisionFilter": { + "#": 4215 + }, + "constraintImpulse": { + "#": 4216 + }, + "density": 0.001, + "force": { + "#": 4217 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 201, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4218 + }, + "positionImpulse": { + "#": 4219 + }, + "positionPrev": { + "#": 4220 + }, + "render": { + "#": 4221 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4223 + }, + "vertices": { + "#": 4224 + } + }, + [ + { + "#": 4210 + }, + { + "#": 4211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4213 + }, + "min": { + "#": 4214 + } + }, + { + "x": 650, + "y": 320 + }, + { + "x": 625, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 307.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4222 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4230 + }, + "bounds": { + "#": 4233 + }, + "collisionFilter": { + "#": 4236 + }, + "constraintImpulse": { + "#": 4237 + }, + "density": 0.001, + "force": { + "#": 4238 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 202, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4239 + }, + "positionImpulse": { + "#": 4240 + }, + "positionPrev": { + "#": 4241 + }, + "render": { + "#": 4242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4244 + }, + "vertices": { + "#": 4245 + } + }, + [ + { + "#": 4231 + }, + { + "#": 4232 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4234 + }, + "min": { + "#": 4235 + } + }, + { + "x": 675, + "y": 320 + }, + { + "x": 650, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 307.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4243 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4251 + }, + "bounds": { + "#": 4254 + }, + "collisionFilter": { + "#": 4257 + }, + "constraintImpulse": { + "#": 4258 + }, + "density": 0.001, + "force": { + "#": 4259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 203, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4260 + }, + "positionImpulse": { + "#": 4261 + }, + "positionPrev": { + "#": 4262 + }, + "render": { + "#": 4263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4265 + }, + "vertices": { + "#": 4266 + } + }, + [ + { + "#": 4252 + }, + { + "#": 4253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4255 + }, + "min": { + "#": 4256 + } + }, + { + "x": 700, + "y": 320 + }, + { + "x": 675, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 307.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4264 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4272 + }, + "bounds": { + "#": 4275 + }, + "collisionFilter": { + "#": 4278 + }, + "constraintImpulse": { + "#": 4279 + }, + "density": 0.001, + "force": { + "#": 4280 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 204, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4281 + }, + "positionImpulse": { + "#": 4282 + }, + "positionPrev": { + "#": 4283 + }, + "render": { + "#": 4284 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4286 + }, + "vertices": { + "#": 4287 + } + }, + [ + { + "#": 4273 + }, + { + "#": 4274 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4276 + }, + "min": { + "#": 4277 + } + }, + { + "x": 725, + "y": 320 + }, + { + "x": 700, + "y": 295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 307.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4285 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 295 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 295 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 320 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 320 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4293 + }, + "bounds": { + "#": 4296 + }, + "collisionFilter": { + "#": 4299 + }, + "constraintImpulse": { + "#": 4300 + }, + "density": 0.001, + "force": { + "#": 4301 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 205, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4302 + }, + "positionImpulse": { + "#": 4303 + }, + "positionPrev": { + "#": 4304 + }, + "render": { + "#": 4305 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4307 + }, + "vertices": { + "#": 4308 + } + }, + [ + { + "#": 4294 + }, + { + "#": 4295 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4297 + }, + "min": { + "#": 4298 + } + }, + { + "x": 125, + "y": 345 + }, + { + "x": 100, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 332.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4306 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4314 + }, + "bounds": { + "#": 4317 + }, + "collisionFilter": { + "#": 4320 + }, + "constraintImpulse": { + "#": 4321 + }, + "density": 0.001, + "force": { + "#": 4322 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 206, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4323 + }, + "positionImpulse": { + "#": 4324 + }, + "positionPrev": { + "#": 4325 + }, + "render": { + "#": 4326 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4328 + }, + "vertices": { + "#": 4329 + } + }, + [ + { + "#": 4315 + }, + { + "#": 4316 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4318 + }, + "min": { + "#": 4319 + } + }, + { + "x": 150, + "y": 345 + }, + { + "x": 125, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 332.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4327 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4335 + }, + "bounds": { + "#": 4338 + }, + "collisionFilter": { + "#": 4341 + }, + "constraintImpulse": { + "#": 4342 + }, + "density": 0.001, + "force": { + "#": 4343 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 207, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4344 + }, + "positionImpulse": { + "#": 4345 + }, + "positionPrev": { + "#": 4346 + }, + "render": { + "#": 4347 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4349 + }, + "vertices": { + "#": 4350 + } + }, + [ + { + "#": 4336 + }, + { + "#": 4337 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4339 + }, + "min": { + "#": 4340 + } + }, + { + "x": 175, + "y": 345 + }, + { + "x": 150, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 332.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4348 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4351 + }, + { + "#": 4352 + }, + { + "#": 4353 + }, + { + "#": 4354 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4356 + }, + "bounds": { + "#": 4359 + }, + "collisionFilter": { + "#": 4362 + }, + "constraintImpulse": { + "#": 4363 + }, + "density": 0.001, + "force": { + "#": 4364 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 208, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4365 + }, + "positionImpulse": { + "#": 4366 + }, + "positionPrev": { + "#": 4367 + }, + "render": { + "#": 4368 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4370 + }, + "vertices": { + "#": 4371 + } + }, + [ + { + "#": 4357 + }, + { + "#": 4358 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4360 + }, + "min": { + "#": 4361 + } + }, + { + "x": 200, + "y": 345 + }, + { + "x": 175, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 332.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4369 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4372 + }, + { + "#": 4373 + }, + { + "#": 4374 + }, + { + "#": 4375 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4377 + }, + "bounds": { + "#": 4380 + }, + "collisionFilter": { + "#": 4383 + }, + "constraintImpulse": { + "#": 4384 + }, + "density": 0.001, + "force": { + "#": 4385 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 209, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4386 + }, + "positionImpulse": { + "#": 4387 + }, + "positionPrev": { + "#": 4388 + }, + "render": { + "#": 4389 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4391 + }, + "vertices": { + "#": 4392 + } + }, + [ + { + "#": 4378 + }, + { + "#": 4379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4381 + }, + "min": { + "#": 4382 + } + }, + { + "x": 225, + "y": 345 + }, + { + "x": 200, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 332.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4390 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4398 + }, + "bounds": { + "#": 4401 + }, + "collisionFilter": { + "#": 4404 + }, + "constraintImpulse": { + "#": 4405 + }, + "density": 0.001, + "force": { + "#": 4406 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 210, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4407 + }, + "positionImpulse": { + "#": 4408 + }, + "positionPrev": { + "#": 4409 + }, + "render": { + "#": 4410 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4412 + }, + "vertices": { + "#": 4413 + } + }, + [ + { + "#": 4399 + }, + { + "#": 4400 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4402 + }, + "min": { + "#": 4403 + } + }, + { + "x": 250, + "y": 345 + }, + { + "x": 225, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 332.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4411 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4419 + }, + "bounds": { + "#": 4422 + }, + "collisionFilter": { + "#": 4425 + }, + "constraintImpulse": { + "#": 4426 + }, + "density": 0.001, + "force": { + "#": 4427 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 211, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4428 + }, + "positionImpulse": { + "#": 4429 + }, + "positionPrev": { + "#": 4430 + }, + "render": { + "#": 4431 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4433 + }, + "vertices": { + "#": 4434 + } + }, + [ + { + "#": 4420 + }, + { + "#": 4421 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4423 + }, + "min": { + "#": 4424 + } + }, + { + "x": 275, + "y": 345 + }, + { + "x": 250, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 332.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4432 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4435 + }, + { + "#": 4436 + }, + { + "#": 4437 + }, + { + "#": 4438 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4440 + }, + "bounds": { + "#": 4443 + }, + "collisionFilter": { + "#": 4446 + }, + "constraintImpulse": { + "#": 4447 + }, + "density": 0.001, + "force": { + "#": 4448 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 212, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4449 + }, + "positionImpulse": { + "#": 4450 + }, + "positionPrev": { + "#": 4451 + }, + "render": { + "#": 4452 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4454 + }, + "vertices": { + "#": 4455 + } + }, + [ + { + "#": 4441 + }, + { + "#": 4442 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4444 + }, + "min": { + "#": 4445 + } + }, + { + "x": 300, + "y": 345 + }, + { + "x": 275, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 332.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4453 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4456 + }, + { + "#": 4457 + }, + { + "#": 4458 + }, + { + "#": 4459 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4461 + }, + "bounds": { + "#": 4464 + }, + "collisionFilter": { + "#": 4467 + }, + "constraintImpulse": { + "#": 4468 + }, + "density": 0.001, + "force": { + "#": 4469 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 213, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4470 + }, + "positionImpulse": { + "#": 4471 + }, + "positionPrev": { + "#": 4472 + }, + "render": { + "#": 4473 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4475 + }, + "vertices": { + "#": 4476 + } + }, + [ + { + "#": 4462 + }, + { + "#": 4463 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4465 + }, + "min": { + "#": 4466 + } + }, + { + "x": 325, + "y": 345 + }, + { + "x": 300, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 332.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4474 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + }, + { + "#": 4480 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4482 + }, + "bounds": { + "#": 4485 + }, + "collisionFilter": { + "#": 4488 + }, + "constraintImpulse": { + "#": 4489 + }, + "density": 0.001, + "force": { + "#": 4490 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 214, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4491 + }, + "positionImpulse": { + "#": 4492 + }, + "positionPrev": { + "#": 4493 + }, + "render": { + "#": 4494 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4496 + }, + "vertices": { + "#": 4497 + } + }, + [ + { + "#": 4483 + }, + { + "#": 4484 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4486 + }, + "min": { + "#": 4487 + } + }, + { + "x": 350, + "y": 345 + }, + { + "x": 325, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 332.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4495 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + }, + { + "#": 4501 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4503 + }, + "bounds": { + "#": 4506 + }, + "collisionFilter": { + "#": 4509 + }, + "constraintImpulse": { + "#": 4510 + }, + "density": 0.001, + "force": { + "#": 4511 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 215, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4512 + }, + "positionImpulse": { + "#": 4513 + }, + "positionPrev": { + "#": 4514 + }, + "render": { + "#": 4515 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4517 + }, + "vertices": { + "#": 4518 + } + }, + [ + { + "#": 4504 + }, + { + "#": 4505 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4507 + }, + "min": { + "#": 4508 + } + }, + { + "x": 375, + "y": 345 + }, + { + "x": 350, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 332.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4516 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4524 + }, + "bounds": { + "#": 4527 + }, + "collisionFilter": { + "#": 4530 + }, + "constraintImpulse": { + "#": 4531 + }, + "density": 0.001, + "force": { + "#": 4532 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 216, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4533 + }, + "positionImpulse": { + "#": 4534 + }, + "positionPrev": { + "#": 4535 + }, + "render": { + "#": 4536 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4538 + }, + "vertices": { + "#": 4539 + } + }, + [ + { + "#": 4525 + }, + { + "#": 4526 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4528 + }, + "min": { + "#": 4529 + } + }, + { + "x": 400, + "y": 345 + }, + { + "x": 375, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 332.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4537 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4545 + }, + "bounds": { + "#": 4548 + }, + "collisionFilter": { + "#": 4551 + }, + "constraintImpulse": { + "#": 4552 + }, + "density": 0.001, + "force": { + "#": 4553 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 217, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4554 + }, + "positionImpulse": { + "#": 4555 + }, + "positionPrev": { + "#": 4556 + }, + "render": { + "#": 4557 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4559 + }, + "vertices": { + "#": 4560 + } + }, + [ + { + "#": 4546 + }, + { + "#": 4547 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4549 + }, + "min": { + "#": 4550 + } + }, + { + "x": 425, + "y": 345 + }, + { + "x": 400, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 332.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4558 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4561 + }, + { + "#": 4562 + }, + { + "#": 4563 + }, + { + "#": 4564 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4566 + }, + "bounds": { + "#": 4569 + }, + "collisionFilter": { + "#": 4572 + }, + "constraintImpulse": { + "#": 4573 + }, + "density": 0.001, + "force": { + "#": 4574 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 218, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4575 + }, + "positionImpulse": { + "#": 4576 + }, + "positionPrev": { + "#": 4577 + }, + "render": { + "#": 4578 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4580 + }, + "vertices": { + "#": 4581 + } + }, + [ + { + "#": 4567 + }, + { + "#": 4568 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4570 + }, + "min": { + "#": 4571 + } + }, + { + "x": 450, + "y": 345 + }, + { + "x": 425, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 332.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4579 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4582 + }, + { + "#": 4583 + }, + { + "#": 4584 + }, + { + "#": 4585 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4587 + }, + "bounds": { + "#": 4590 + }, + "collisionFilter": { + "#": 4593 + }, + "constraintImpulse": { + "#": 4594 + }, + "density": 0.001, + "force": { + "#": 4595 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 219, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4596 + }, + "positionImpulse": { + "#": 4597 + }, + "positionPrev": { + "#": 4598 + }, + "render": { + "#": 4599 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4601 + }, + "vertices": { + "#": 4602 + } + }, + [ + { + "#": 4588 + }, + { + "#": 4589 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4591 + }, + "min": { + "#": 4592 + } + }, + { + "x": 475, + "y": 345 + }, + { + "x": 450, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 332.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4600 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + }, + { + "#": 4606 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4608 + }, + "bounds": { + "#": 4611 + }, + "collisionFilter": { + "#": 4614 + }, + "constraintImpulse": { + "#": 4615 + }, + "density": 0.001, + "force": { + "#": 4616 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 220, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4617 + }, + "positionImpulse": { + "#": 4618 + }, + "positionPrev": { + "#": 4619 + }, + "render": { + "#": 4620 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4622 + }, + "vertices": { + "#": 4623 + } + }, + [ + { + "#": 4609 + }, + { + "#": 4610 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4612 + }, + "min": { + "#": 4613 + } + }, + { + "x": 500, + "y": 345 + }, + { + "x": 475, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 332.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4621 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4624 + }, + { + "#": 4625 + }, + { + "#": 4626 + }, + { + "#": 4627 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4629 + }, + "bounds": { + "#": 4632 + }, + "collisionFilter": { + "#": 4635 + }, + "constraintImpulse": { + "#": 4636 + }, + "density": 0.001, + "force": { + "#": 4637 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 221, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4638 + }, + "positionImpulse": { + "#": 4639 + }, + "positionPrev": { + "#": 4640 + }, + "render": { + "#": 4641 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4643 + }, + "vertices": { + "#": 4644 + } + }, + [ + { + "#": 4630 + }, + { + "#": 4631 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4633 + }, + "min": { + "#": 4634 + } + }, + { + "x": 525, + "y": 345 + }, + { + "x": 500, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 332.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4642 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4645 + }, + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4650 + }, + "bounds": { + "#": 4653 + }, + "collisionFilter": { + "#": 4656 + }, + "constraintImpulse": { + "#": 4657 + }, + "density": 0.001, + "force": { + "#": 4658 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 222, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4659 + }, + "positionImpulse": { + "#": 4660 + }, + "positionPrev": { + "#": 4661 + }, + "render": { + "#": 4662 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4664 + }, + "vertices": { + "#": 4665 + } + }, + [ + { + "#": 4651 + }, + { + "#": 4652 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4654 + }, + "min": { + "#": 4655 + } + }, + { + "x": 550, + "y": 345 + }, + { + "x": 525, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 332.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4663 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4666 + }, + { + "#": 4667 + }, + { + "#": 4668 + }, + { + "#": 4669 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4671 + }, + "bounds": { + "#": 4674 + }, + "collisionFilter": { + "#": 4677 + }, + "constraintImpulse": { + "#": 4678 + }, + "density": 0.001, + "force": { + "#": 4679 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 223, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4680 + }, + "positionImpulse": { + "#": 4681 + }, + "positionPrev": { + "#": 4682 + }, + "render": { + "#": 4683 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4685 + }, + "vertices": { + "#": 4686 + } + }, + [ + { + "#": 4672 + }, + { + "#": 4673 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4675 + }, + "min": { + "#": 4676 + } + }, + { + "x": 575, + "y": 345 + }, + { + "x": 550, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 332.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4684 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + }, + { + "#": 4690 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4692 + }, + "bounds": { + "#": 4695 + }, + "collisionFilter": { + "#": 4698 + }, + "constraintImpulse": { + "#": 4699 + }, + "density": 0.001, + "force": { + "#": 4700 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 224, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4701 + }, + "positionImpulse": { + "#": 4702 + }, + "positionPrev": { + "#": 4703 + }, + "render": { + "#": 4704 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4706 + }, + "vertices": { + "#": 4707 + } + }, + [ + { + "#": 4693 + }, + { + "#": 4694 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4696 + }, + "min": { + "#": 4697 + } + }, + { + "x": 600, + "y": 345 + }, + { + "x": 575, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 332.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4705 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4708 + }, + { + "#": 4709 + }, + { + "#": 4710 + }, + { + "#": 4711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4713 + }, + "bounds": { + "#": 4716 + }, + "collisionFilter": { + "#": 4719 + }, + "constraintImpulse": { + "#": 4720 + }, + "density": 0.001, + "force": { + "#": 4721 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 225, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4722 + }, + "positionImpulse": { + "#": 4723 + }, + "positionPrev": { + "#": 4724 + }, + "render": { + "#": 4725 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4727 + }, + "vertices": { + "#": 4728 + } + }, + [ + { + "#": 4714 + }, + { + "#": 4715 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4717 + }, + "min": { + "#": 4718 + } + }, + { + "x": 625, + "y": 345 + }, + { + "x": 600, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 332.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4726 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4734 + }, + "bounds": { + "#": 4737 + }, + "collisionFilter": { + "#": 4740 + }, + "constraintImpulse": { + "#": 4741 + }, + "density": 0.001, + "force": { + "#": 4742 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 226, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4743 + }, + "positionImpulse": { + "#": 4744 + }, + "positionPrev": { + "#": 4745 + }, + "render": { + "#": 4746 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4748 + }, + "vertices": { + "#": 4749 + } + }, + [ + { + "#": 4735 + }, + { + "#": 4736 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4738 + }, + "min": { + "#": 4739 + } + }, + { + "x": 650, + "y": 345 + }, + { + "x": 625, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 332.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4747 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4750 + }, + { + "#": 4751 + }, + { + "#": 4752 + }, + { + "#": 4753 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4755 + }, + "bounds": { + "#": 4758 + }, + "collisionFilter": { + "#": 4761 + }, + "constraintImpulse": { + "#": 4762 + }, + "density": 0.001, + "force": { + "#": 4763 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 227, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4764 + }, + "positionImpulse": { + "#": 4765 + }, + "positionPrev": { + "#": 4766 + }, + "render": { + "#": 4767 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4769 + }, + "vertices": { + "#": 4770 + } + }, + [ + { + "#": 4756 + }, + { + "#": 4757 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4759 + }, + "min": { + "#": 4760 + } + }, + { + "x": 675, + "y": 345 + }, + { + "x": 650, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 332.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4768 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + }, + { + "#": 4774 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4776 + }, + "bounds": { + "#": 4779 + }, + "collisionFilter": { + "#": 4782 + }, + "constraintImpulse": { + "#": 4783 + }, + "density": 0.001, + "force": { + "#": 4784 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 228, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4785 + }, + "positionImpulse": { + "#": 4786 + }, + "positionPrev": { + "#": 4787 + }, + "render": { + "#": 4788 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4790 + }, + "vertices": { + "#": 4791 + } + }, + [ + { + "#": 4777 + }, + { + "#": 4778 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4780 + }, + "min": { + "#": 4781 + } + }, + { + "x": 700, + "y": 345 + }, + { + "x": 675, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 332.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4789 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4792 + }, + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4797 + }, + "bounds": { + "#": 4800 + }, + "collisionFilter": { + "#": 4803 + }, + "constraintImpulse": { + "#": 4804 + }, + "density": 0.001, + "force": { + "#": 4805 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 229, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4806 + }, + "positionImpulse": { + "#": 4807 + }, + "positionPrev": { + "#": 4808 + }, + "render": { + "#": 4809 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4811 + }, + "vertices": { + "#": 4812 + } + }, + [ + { + "#": 4798 + }, + { + "#": 4799 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4801 + }, + "min": { + "#": 4802 + } + }, + { + "x": 725, + "y": 345 + }, + { + "x": 700, + "y": 320 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 332.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4810 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4813 + }, + { + "#": 4814 + }, + { + "#": 4815 + }, + { + "#": 4816 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 320 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 320 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 345 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 345 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4818 + }, + "bounds": { + "#": 4821 + }, + "collisionFilter": { + "#": 4824 + }, + "constraintImpulse": { + "#": 4825 + }, + "density": 0.001, + "force": { + "#": 4826 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 230, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4827 + }, + "positionImpulse": { + "#": 4828 + }, + "positionPrev": { + "#": 4829 + }, + "render": { + "#": 4830 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4832 + }, + "vertices": { + "#": 4833 + } + }, + [ + { + "#": 4819 + }, + { + "#": 4820 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4822 + }, + "min": { + "#": 4823 + } + }, + { + "x": 125, + "y": 370 + }, + { + "x": 100, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 357.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4831 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4834 + }, + { + "#": 4835 + }, + { + "#": 4836 + }, + { + "#": 4837 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4839 + }, + "bounds": { + "#": 4842 + }, + "collisionFilter": { + "#": 4845 + }, + "constraintImpulse": { + "#": 4846 + }, + "density": 0.001, + "force": { + "#": 4847 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 231, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4848 + }, + "positionImpulse": { + "#": 4849 + }, + "positionPrev": { + "#": 4850 + }, + "render": { + "#": 4851 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4853 + }, + "vertices": { + "#": 4854 + } + }, + [ + { + "#": 4840 + }, + { + "#": 4841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4843 + }, + "min": { + "#": 4844 + } + }, + { + "x": 150, + "y": 370 + }, + { + "x": 125, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 357.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4852 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4855 + }, + { + "#": 4856 + }, + { + "#": 4857 + }, + { + "#": 4858 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4860 + }, + "bounds": { + "#": 4863 + }, + "collisionFilter": { + "#": 4866 + }, + "constraintImpulse": { + "#": 4867 + }, + "density": 0.001, + "force": { + "#": 4868 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 232, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4869 + }, + "positionImpulse": { + "#": 4870 + }, + "positionPrev": { + "#": 4871 + }, + "render": { + "#": 4872 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4874 + }, + "vertices": { + "#": 4875 + } + }, + [ + { + "#": 4861 + }, + { + "#": 4862 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4864 + }, + "min": { + "#": 4865 + } + }, + { + "x": 175, + "y": 370 + }, + { + "x": 150, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 357.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4873 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4876 + }, + { + "#": 4877 + }, + { + "#": 4878 + }, + { + "#": 4879 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4881 + }, + "bounds": { + "#": 4884 + }, + "collisionFilter": { + "#": 4887 + }, + "constraintImpulse": { + "#": 4888 + }, + "density": 0.001, + "force": { + "#": 4889 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 233, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4890 + }, + "positionImpulse": { + "#": 4891 + }, + "positionPrev": { + "#": 4892 + }, + "render": { + "#": 4893 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4895 + }, + "vertices": { + "#": 4896 + } + }, + [ + { + "#": 4882 + }, + { + "#": 4883 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4885 + }, + "min": { + "#": 4886 + } + }, + { + "x": 200, + "y": 370 + }, + { + "x": 175, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 357.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4894 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4897 + }, + { + "#": 4898 + }, + { + "#": 4899 + }, + { + "#": 4900 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4902 + }, + "bounds": { + "#": 4905 + }, + "collisionFilter": { + "#": 4908 + }, + "constraintImpulse": { + "#": 4909 + }, + "density": 0.001, + "force": { + "#": 4910 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 234, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4911 + }, + "positionImpulse": { + "#": 4912 + }, + "positionPrev": { + "#": 4913 + }, + "render": { + "#": 4914 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4916 + }, + "vertices": { + "#": 4917 + } + }, + [ + { + "#": 4903 + }, + { + "#": 4904 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4906 + }, + "min": { + "#": 4907 + } + }, + { + "x": 225, + "y": 370 + }, + { + "x": 200, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 357.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4915 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4918 + }, + { + "#": 4919 + }, + { + "#": 4920 + }, + { + "#": 4921 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4923 + }, + "bounds": { + "#": 4926 + }, + "collisionFilter": { + "#": 4929 + }, + "constraintImpulse": { + "#": 4930 + }, + "density": 0.001, + "force": { + "#": 4931 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 235, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4932 + }, + "positionImpulse": { + "#": 4933 + }, + "positionPrev": { + "#": 4934 + }, + "render": { + "#": 4935 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4937 + }, + "vertices": { + "#": 4938 + } + }, + [ + { + "#": 4924 + }, + { + "#": 4925 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4927 + }, + "min": { + "#": 4928 + } + }, + { + "x": 250, + "y": 370 + }, + { + "x": 225, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 357.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4936 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4939 + }, + { + "#": 4940 + }, + { + "#": 4941 + }, + { + "#": 4942 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4944 + }, + "bounds": { + "#": 4947 + }, + "collisionFilter": { + "#": 4950 + }, + "constraintImpulse": { + "#": 4951 + }, + "density": 0.001, + "force": { + "#": 4952 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 236, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4953 + }, + "positionImpulse": { + "#": 4954 + }, + "positionPrev": { + "#": 4955 + }, + "render": { + "#": 4956 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4958 + }, + "vertices": { + "#": 4959 + } + }, + [ + { + "#": 4945 + }, + { + "#": 4946 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4948 + }, + "min": { + "#": 4949 + } + }, + { + "x": 275, + "y": 370 + }, + { + "x": 250, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 357.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4957 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4960 + }, + { + "#": 4961 + }, + { + "#": 4962 + }, + { + "#": 4963 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4965 + }, + "bounds": { + "#": 4968 + }, + "collisionFilter": { + "#": 4971 + }, + "constraintImpulse": { + "#": 4972 + }, + "density": 0.001, + "force": { + "#": 4973 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 237, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4974 + }, + "positionImpulse": { + "#": 4975 + }, + "positionPrev": { + "#": 4976 + }, + "render": { + "#": 4977 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4979 + }, + "vertices": { + "#": 4980 + } + }, + [ + { + "#": 4966 + }, + { + "#": 4967 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4969 + }, + "min": { + "#": 4970 + } + }, + { + "x": 300, + "y": 370 + }, + { + "x": 275, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 357.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4978 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4986 + }, + "bounds": { + "#": 4989 + }, + "collisionFilter": { + "#": 4992 + }, + "constraintImpulse": { + "#": 4993 + }, + "density": 0.001, + "force": { + "#": 4994 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 238, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4995 + }, + "positionImpulse": { + "#": 4996 + }, + "positionPrev": { + "#": 4997 + }, + "render": { + "#": 4998 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5000 + }, + "vertices": { + "#": 5001 + } + }, + [ + { + "#": 4987 + }, + { + "#": 4988 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4990 + }, + "min": { + "#": 4991 + } + }, + { + "x": 325, + "y": 370 + }, + { + "x": 300, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 357.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4999 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5002 + }, + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5007 + }, + "bounds": { + "#": 5010 + }, + "collisionFilter": { + "#": 5013 + }, + "constraintImpulse": { + "#": 5014 + }, + "density": 0.001, + "force": { + "#": 5015 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 239, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5016 + }, + "positionImpulse": { + "#": 5017 + }, + "positionPrev": { + "#": 5018 + }, + "render": { + "#": 5019 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5021 + }, + "vertices": { + "#": 5022 + } + }, + [ + { + "#": 5008 + }, + { + "#": 5009 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5011 + }, + "min": { + "#": 5012 + } + }, + { + "x": 350, + "y": 370 + }, + { + "x": 325, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 357.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5020 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5023 + }, + { + "#": 5024 + }, + { + "#": 5025 + }, + { + "#": 5026 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5028 + }, + "bounds": { + "#": 5031 + }, + "collisionFilter": { + "#": 5034 + }, + "constraintImpulse": { + "#": 5035 + }, + "density": 0.001, + "force": { + "#": 5036 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 240, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5037 + }, + "positionImpulse": { + "#": 5038 + }, + "positionPrev": { + "#": 5039 + }, + "render": { + "#": 5040 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5042 + }, + "vertices": { + "#": 5043 + } + }, + [ + { + "#": 5029 + }, + { + "#": 5030 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5032 + }, + "min": { + "#": 5033 + } + }, + { + "x": 375, + "y": 370 + }, + { + "x": 350, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 357.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5041 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5044 + }, + { + "#": 5045 + }, + { + "#": 5046 + }, + { + "#": 5047 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5049 + }, + "bounds": { + "#": 5052 + }, + "collisionFilter": { + "#": 5055 + }, + "constraintImpulse": { + "#": 5056 + }, + "density": 0.001, + "force": { + "#": 5057 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 241, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5058 + }, + "positionImpulse": { + "#": 5059 + }, + "positionPrev": { + "#": 5060 + }, + "render": { + "#": 5061 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5063 + }, + "vertices": { + "#": 5064 + } + }, + [ + { + "#": 5050 + }, + { + "#": 5051 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5053 + }, + "min": { + "#": 5054 + } + }, + { + "x": 400, + "y": 370 + }, + { + "x": 375, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 357.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5062 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5065 + }, + { + "#": 5066 + }, + { + "#": 5067 + }, + { + "#": 5068 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5070 + }, + "bounds": { + "#": 5073 + }, + "collisionFilter": { + "#": 5076 + }, + "constraintImpulse": { + "#": 5077 + }, + "density": 0.001, + "force": { + "#": 5078 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 242, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5079 + }, + "positionImpulse": { + "#": 5080 + }, + "positionPrev": { + "#": 5081 + }, + "render": { + "#": 5082 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5084 + }, + "vertices": { + "#": 5085 + } + }, + [ + { + "#": 5071 + }, + { + "#": 5072 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5074 + }, + "min": { + "#": 5075 + } + }, + { + "x": 425, + "y": 370 + }, + { + "x": 400, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 357.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5083 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + }, + { + "#": 5088 + }, + { + "#": 5089 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5091 + }, + "bounds": { + "#": 5094 + }, + "collisionFilter": { + "#": 5097 + }, + "constraintImpulse": { + "#": 5098 + }, + "density": 0.001, + "force": { + "#": 5099 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 243, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5100 + }, + "positionImpulse": { + "#": 5101 + }, + "positionPrev": { + "#": 5102 + }, + "render": { + "#": 5103 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5105 + }, + "vertices": { + "#": 5106 + } + }, + [ + { + "#": 5092 + }, + { + "#": 5093 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5095 + }, + "min": { + "#": 5096 + } + }, + { + "x": 450, + "y": 370 + }, + { + "x": 425, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 357.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5104 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5107 + }, + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5112 + }, + "bounds": { + "#": 5115 + }, + "collisionFilter": { + "#": 5118 + }, + "constraintImpulse": { + "#": 5119 + }, + "density": 0.001, + "force": { + "#": 5120 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 244, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5121 + }, + "positionImpulse": { + "#": 5122 + }, + "positionPrev": { + "#": 5123 + }, + "render": { + "#": 5124 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5126 + }, + "vertices": { + "#": 5127 + } + }, + [ + { + "#": 5113 + }, + { + "#": 5114 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5116 + }, + "min": { + "#": 5117 + } + }, + { + "x": 475, + "y": 370 + }, + { + "x": 450, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 357.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5125 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5128 + }, + { + "#": 5129 + }, + { + "#": 5130 + }, + { + "#": 5131 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5133 + }, + "bounds": { + "#": 5136 + }, + "collisionFilter": { + "#": 5139 + }, + "constraintImpulse": { + "#": 5140 + }, + "density": 0.001, + "force": { + "#": 5141 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 245, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5142 + }, + "positionImpulse": { + "#": 5143 + }, + "positionPrev": { + "#": 5144 + }, + "render": { + "#": 5145 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5147 + }, + "vertices": { + "#": 5148 + } + }, + [ + { + "#": 5134 + }, + { + "#": 5135 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5137 + }, + "min": { + "#": 5138 + } + }, + { + "x": 500, + "y": 370 + }, + { + "x": 475, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 357.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5146 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5149 + }, + { + "#": 5150 + }, + { + "#": 5151 + }, + { + "#": 5152 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5154 + }, + "bounds": { + "#": 5157 + }, + "collisionFilter": { + "#": 5160 + }, + "constraintImpulse": { + "#": 5161 + }, + "density": 0.001, + "force": { + "#": 5162 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 246, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5163 + }, + "positionImpulse": { + "#": 5164 + }, + "positionPrev": { + "#": 5165 + }, + "render": { + "#": 5166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5168 + }, + "vertices": { + "#": 5169 + } + }, + [ + { + "#": 5155 + }, + { + "#": 5156 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5158 + }, + "min": { + "#": 5159 + } + }, + { + "x": 525, + "y": 370 + }, + { + "x": 500, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 357.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5167 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5170 + }, + { + "#": 5171 + }, + { + "#": 5172 + }, + { + "#": 5173 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5175 + }, + "bounds": { + "#": 5178 + }, + "collisionFilter": { + "#": 5181 + }, + "constraintImpulse": { + "#": 5182 + }, + "density": 0.001, + "force": { + "#": 5183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 247, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5184 + }, + "positionImpulse": { + "#": 5185 + }, + "positionPrev": { + "#": 5186 + }, + "render": { + "#": 5187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5189 + }, + "vertices": { + "#": 5190 + } + }, + [ + { + "#": 5176 + }, + { + "#": 5177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5179 + }, + "min": { + "#": 5180 + } + }, + { + "x": 550, + "y": 370 + }, + { + "x": 525, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 357.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5188 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5191 + }, + { + "#": 5192 + }, + { + "#": 5193 + }, + { + "#": 5194 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5196 + }, + "bounds": { + "#": 5199 + }, + "collisionFilter": { + "#": 5202 + }, + "constraintImpulse": { + "#": 5203 + }, + "density": 0.001, + "force": { + "#": 5204 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 248, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5205 + }, + "positionImpulse": { + "#": 5206 + }, + "positionPrev": { + "#": 5207 + }, + "render": { + "#": 5208 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5210 + }, + "vertices": { + "#": 5211 + } + }, + [ + { + "#": 5197 + }, + { + "#": 5198 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5200 + }, + "min": { + "#": 5201 + } + }, + { + "x": 575, + "y": 370 + }, + { + "x": 550, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 357.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5209 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5212 + }, + { + "#": 5213 + }, + { + "#": 5214 + }, + { + "#": 5215 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5217 + }, + "bounds": { + "#": 5220 + }, + "collisionFilter": { + "#": 5223 + }, + "constraintImpulse": { + "#": 5224 + }, + "density": 0.001, + "force": { + "#": 5225 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 249, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5226 + }, + "positionImpulse": { + "#": 5227 + }, + "positionPrev": { + "#": 5228 + }, + "render": { + "#": 5229 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5231 + }, + "vertices": { + "#": 5232 + } + }, + [ + { + "#": 5218 + }, + { + "#": 5219 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5221 + }, + "min": { + "#": 5222 + } + }, + { + "x": 600, + "y": 370 + }, + { + "x": 575, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 357.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5230 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5233 + }, + { + "#": 5234 + }, + { + "#": 5235 + }, + { + "#": 5236 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5238 + }, + "bounds": { + "#": 5241 + }, + "collisionFilter": { + "#": 5244 + }, + "constraintImpulse": { + "#": 5245 + }, + "density": 0.001, + "force": { + "#": 5246 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 250, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5247 + }, + "positionImpulse": { + "#": 5248 + }, + "positionPrev": { + "#": 5249 + }, + "render": { + "#": 5250 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5252 + }, + "vertices": { + "#": 5253 + } + }, + [ + { + "#": 5239 + }, + { + "#": 5240 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5242 + }, + "min": { + "#": 5243 + } + }, + { + "x": 625, + "y": 370 + }, + { + "x": 600, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 357.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5251 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + }, + { + "#": 5257 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5259 + }, + "bounds": { + "#": 5262 + }, + "collisionFilter": { + "#": 5265 + }, + "constraintImpulse": { + "#": 5266 + }, + "density": 0.001, + "force": { + "#": 5267 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 251, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5268 + }, + "positionImpulse": { + "#": 5269 + }, + "positionPrev": { + "#": 5270 + }, + "render": { + "#": 5271 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5273 + }, + "vertices": { + "#": 5274 + } + }, + [ + { + "#": 5260 + }, + { + "#": 5261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5263 + }, + "min": { + "#": 5264 + } + }, + { + "x": 650, + "y": 370 + }, + { + "x": 625, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 357.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5272 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5275 + }, + { + "#": 5276 + }, + { + "#": 5277 + }, + { + "#": 5278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5280 + }, + "bounds": { + "#": 5283 + }, + "collisionFilter": { + "#": 5286 + }, + "constraintImpulse": { + "#": 5287 + }, + "density": 0.001, + "force": { + "#": 5288 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 252, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5289 + }, + "positionImpulse": { + "#": 5290 + }, + "positionPrev": { + "#": 5291 + }, + "render": { + "#": 5292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5294 + }, + "vertices": { + "#": 5295 + } + }, + [ + { + "#": 5281 + }, + { + "#": 5282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5284 + }, + "min": { + "#": 5285 + } + }, + { + "x": 675, + "y": 370 + }, + { + "x": 650, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 357.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5293 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5296 + }, + { + "#": 5297 + }, + { + "#": 5298 + }, + { + "#": 5299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5301 + }, + "bounds": { + "#": 5304 + }, + "collisionFilter": { + "#": 5307 + }, + "constraintImpulse": { + "#": 5308 + }, + "density": 0.001, + "force": { + "#": 5309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 253, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5310 + }, + "positionImpulse": { + "#": 5311 + }, + "positionPrev": { + "#": 5312 + }, + "render": { + "#": 5313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5315 + }, + "vertices": { + "#": 5316 + } + }, + [ + { + "#": 5302 + }, + { + "#": 5303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5305 + }, + "min": { + "#": 5306 + } + }, + { + "x": 700, + "y": 370 + }, + { + "x": 675, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 357.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5314 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5317 + }, + { + "#": 5318 + }, + { + "#": 5319 + }, + { + "#": 5320 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5322 + }, + "bounds": { + "#": 5325 + }, + "collisionFilter": { + "#": 5328 + }, + "constraintImpulse": { + "#": 5329 + }, + "density": 0.001, + "force": { + "#": 5330 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 254, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5331 + }, + "positionImpulse": { + "#": 5332 + }, + "positionPrev": { + "#": 5333 + }, + "render": { + "#": 5334 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5336 + }, + "vertices": { + "#": 5337 + } + }, + [ + { + "#": 5323 + }, + { + "#": 5324 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5326 + }, + "min": { + "#": 5327 + } + }, + { + "x": 725, + "y": 370 + }, + { + "x": 700, + "y": 345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 357.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5335 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5338 + }, + { + "#": 5339 + }, + { + "#": 5340 + }, + { + "#": 5341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 345 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 345 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 370 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 370 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5343 + }, + "bounds": { + "#": 5346 + }, + "collisionFilter": { + "#": 5349 + }, + "constraintImpulse": { + "#": 5350 + }, + "density": 0.001, + "force": { + "#": 5351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 255, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5352 + }, + "positionImpulse": { + "#": 5353 + }, + "positionPrev": { + "#": 5354 + }, + "render": { + "#": 5355 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5357 + }, + "vertices": { + "#": 5358 + } + }, + [ + { + "#": 5344 + }, + { + "#": 5345 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5347 + }, + "min": { + "#": 5348 + } + }, + { + "x": 125, + "y": 395 + }, + { + "x": 100, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 382.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5356 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5359 + }, + { + "#": 5360 + }, + { + "#": 5361 + }, + { + "#": 5362 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5364 + }, + "bounds": { + "#": 5367 + }, + "collisionFilter": { + "#": 5370 + }, + "constraintImpulse": { + "#": 5371 + }, + "density": 0.001, + "force": { + "#": 5372 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 256, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5373 + }, + "positionImpulse": { + "#": 5374 + }, + "positionPrev": { + "#": 5375 + }, + "render": { + "#": 5376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5378 + }, + "vertices": { + "#": 5379 + } + }, + [ + { + "#": 5365 + }, + { + "#": 5366 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5368 + }, + "min": { + "#": 5369 + } + }, + { + "x": 150, + "y": 395 + }, + { + "x": 125, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5377 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5380 + }, + { + "#": 5381 + }, + { + "#": 5382 + }, + { + "#": 5383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5385 + }, + "bounds": { + "#": 5388 + }, + "collisionFilter": { + "#": 5391 + }, + "constraintImpulse": { + "#": 5392 + }, + "density": 0.001, + "force": { + "#": 5393 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 257, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5394 + }, + "positionImpulse": { + "#": 5395 + }, + "positionPrev": { + "#": 5396 + }, + "render": { + "#": 5397 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5399 + }, + "vertices": { + "#": 5400 + } + }, + [ + { + "#": 5386 + }, + { + "#": 5387 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5389 + }, + "min": { + "#": 5390 + } + }, + { + "x": 175, + "y": 395 + }, + { + "x": 150, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5398 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5401 + }, + { + "#": 5402 + }, + { + "#": 5403 + }, + { + "#": 5404 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5406 + }, + "bounds": { + "#": 5409 + }, + "collisionFilter": { + "#": 5412 + }, + "constraintImpulse": { + "#": 5413 + }, + "density": 0.001, + "force": { + "#": 5414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 258, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5415 + }, + "positionImpulse": { + "#": 5416 + }, + "positionPrev": { + "#": 5417 + }, + "render": { + "#": 5418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5420 + }, + "vertices": { + "#": 5421 + } + }, + [ + { + "#": 5407 + }, + { + "#": 5408 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5410 + }, + "min": { + "#": 5411 + } + }, + { + "x": 200, + "y": 395 + }, + { + "x": 175, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 382.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5419 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5422 + }, + { + "#": 5423 + }, + { + "#": 5424 + }, + { + "#": 5425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5427 + }, + "bounds": { + "#": 5430 + }, + "collisionFilter": { + "#": 5433 + }, + "constraintImpulse": { + "#": 5434 + }, + "density": 0.001, + "force": { + "#": 5435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 259, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5436 + }, + "positionImpulse": { + "#": 5437 + }, + "positionPrev": { + "#": 5438 + }, + "render": { + "#": 5439 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5441 + }, + "vertices": { + "#": 5442 + } + }, + [ + { + "#": 5428 + }, + { + "#": 5429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5431 + }, + "min": { + "#": 5432 + } + }, + { + "x": 225, + "y": 395 + }, + { + "x": 200, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 382.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5440 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5443 + }, + { + "#": 5444 + }, + { + "#": 5445 + }, + { + "#": 5446 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5448 + }, + "bounds": { + "#": 5451 + }, + "collisionFilter": { + "#": 5454 + }, + "constraintImpulse": { + "#": 5455 + }, + "density": 0.001, + "force": { + "#": 5456 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 260, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5457 + }, + "positionImpulse": { + "#": 5458 + }, + "positionPrev": { + "#": 5459 + }, + "render": { + "#": 5460 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5462 + }, + "vertices": { + "#": 5463 + } + }, + [ + { + "#": 5449 + }, + { + "#": 5450 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5452 + }, + "min": { + "#": 5453 + } + }, + { + "x": 250, + "y": 395 + }, + { + "x": 225, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5461 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5464 + }, + { + "#": 5465 + }, + { + "#": 5466 + }, + { + "#": 5467 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5469 + }, + "bounds": { + "#": 5472 + }, + "collisionFilter": { + "#": 5475 + }, + "constraintImpulse": { + "#": 5476 + }, + "density": 0.001, + "force": { + "#": 5477 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 261, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5478 + }, + "positionImpulse": { + "#": 5479 + }, + "positionPrev": { + "#": 5480 + }, + "render": { + "#": 5481 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5483 + }, + "vertices": { + "#": 5484 + } + }, + [ + { + "#": 5470 + }, + { + "#": 5471 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5473 + }, + "min": { + "#": 5474 + } + }, + { + "x": 275, + "y": 395 + }, + { + "x": 250, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5482 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5485 + }, + { + "#": 5486 + }, + { + "#": 5487 + }, + { + "#": 5488 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5490 + }, + "bounds": { + "#": 5493 + }, + "collisionFilter": { + "#": 5496 + }, + "constraintImpulse": { + "#": 5497 + }, + "density": 0.001, + "force": { + "#": 5498 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 262, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5499 + }, + "positionImpulse": { + "#": 5500 + }, + "positionPrev": { + "#": 5501 + }, + "render": { + "#": 5502 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5504 + }, + "vertices": { + "#": 5505 + } + }, + [ + { + "#": 5491 + }, + { + "#": 5492 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5494 + }, + "min": { + "#": 5495 + } + }, + { + "x": 300, + "y": 395 + }, + { + "x": 275, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5503 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5506 + }, + { + "#": 5507 + }, + { + "#": 5508 + }, + { + "#": 5509 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5511 + }, + "bounds": { + "#": 5514 + }, + "collisionFilter": { + "#": 5517 + }, + "constraintImpulse": { + "#": 5518 + }, + "density": 0.001, + "force": { + "#": 5519 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 263, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5520 + }, + "positionImpulse": { + "#": 5521 + }, + "positionPrev": { + "#": 5522 + }, + "render": { + "#": 5523 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5525 + }, + "vertices": { + "#": 5526 + } + }, + [ + { + "#": 5512 + }, + { + "#": 5513 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5515 + }, + "min": { + "#": 5516 + } + }, + { + "x": 325, + "y": 395 + }, + { + "x": 300, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 382.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5524 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + }, + { + "#": 5530 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5532 + }, + "bounds": { + "#": 5535 + }, + "collisionFilter": { + "#": 5538 + }, + "constraintImpulse": { + "#": 5539 + }, + "density": 0.001, + "force": { + "#": 5540 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 264, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5541 + }, + "positionImpulse": { + "#": 5542 + }, + "positionPrev": { + "#": 5543 + }, + "render": { + "#": 5544 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5546 + }, + "vertices": { + "#": 5547 + } + }, + [ + { + "#": 5533 + }, + { + "#": 5534 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5536 + }, + "min": { + "#": 5537 + } + }, + { + "x": 350, + "y": 395 + }, + { + "x": 325, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5545 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5553 + }, + "bounds": { + "#": 5556 + }, + "collisionFilter": { + "#": 5559 + }, + "constraintImpulse": { + "#": 5560 + }, + "density": 0.001, + "force": { + "#": 5561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 265, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5562 + }, + "positionImpulse": { + "#": 5563 + }, + "positionPrev": { + "#": 5564 + }, + "render": { + "#": 5565 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5567 + }, + "vertices": { + "#": 5568 + } + }, + [ + { + "#": 5554 + }, + { + "#": 5555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5557 + }, + "min": { + "#": 5558 + } + }, + { + "x": 375, + "y": 395 + }, + { + "x": 350, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5566 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5569 + }, + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5574 + }, + "bounds": { + "#": 5577 + }, + "collisionFilter": { + "#": 5580 + }, + "constraintImpulse": { + "#": 5581 + }, + "density": 0.001, + "force": { + "#": 5582 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 266, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5583 + }, + "positionImpulse": { + "#": 5584 + }, + "positionPrev": { + "#": 5585 + }, + "render": { + "#": 5586 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5588 + }, + "vertices": { + "#": 5589 + } + }, + [ + { + "#": 5575 + }, + { + "#": 5576 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5578 + }, + "min": { + "#": 5579 + } + }, + { + "x": 400, + "y": 395 + }, + { + "x": 375, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5587 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5590 + }, + { + "#": 5591 + }, + { + "#": 5592 + }, + { + "#": 5593 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5595 + }, + "bounds": { + "#": 5598 + }, + "collisionFilter": { + "#": 5601 + }, + "constraintImpulse": { + "#": 5602 + }, + "density": 0.001, + "force": { + "#": 5603 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 267, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5604 + }, + "positionImpulse": { + "#": 5605 + }, + "positionPrev": { + "#": 5606 + }, + "render": { + "#": 5607 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5609 + }, + "vertices": { + "#": 5610 + } + }, + [ + { + "#": 5596 + }, + { + "#": 5597 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5599 + }, + "min": { + "#": 5600 + } + }, + { + "x": 425, + "y": 395 + }, + { + "x": 400, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5608 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5611 + }, + { + "#": 5612 + }, + { + "#": 5613 + }, + { + "#": 5614 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5616 + }, + "bounds": { + "#": 5619 + }, + "collisionFilter": { + "#": 5622 + }, + "constraintImpulse": { + "#": 5623 + }, + "density": 0.001, + "force": { + "#": 5624 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 268, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5625 + }, + "positionImpulse": { + "#": 5626 + }, + "positionPrev": { + "#": 5627 + }, + "render": { + "#": 5628 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5630 + }, + "vertices": { + "#": 5631 + } + }, + [ + { + "#": 5617 + }, + { + "#": 5618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5620 + }, + "min": { + "#": 5621 + } + }, + { + "x": 450, + "y": 395 + }, + { + "x": 425, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 382.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5629 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5632 + }, + { + "#": 5633 + }, + { + "#": 5634 + }, + { + "#": 5635 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5637 + }, + "bounds": { + "#": 5640 + }, + "collisionFilter": { + "#": 5643 + }, + "constraintImpulse": { + "#": 5644 + }, + "density": 0.001, + "force": { + "#": 5645 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 269, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5646 + }, + "positionImpulse": { + "#": 5647 + }, + "positionPrev": { + "#": 5648 + }, + "render": { + "#": 5649 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5651 + }, + "vertices": { + "#": 5652 + } + }, + [ + { + "#": 5638 + }, + { + "#": 5639 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5641 + }, + "min": { + "#": 5642 + } + }, + { + "x": 475, + "y": 395 + }, + { + "x": 450, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5650 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5653 + }, + { + "#": 5654 + }, + { + "#": 5655 + }, + { + "#": 5656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5658 + }, + "bounds": { + "#": 5661 + }, + "collisionFilter": { + "#": 5664 + }, + "constraintImpulse": { + "#": 5665 + }, + "density": 0.001, + "force": { + "#": 5666 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 270, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5667 + }, + "positionImpulse": { + "#": 5668 + }, + "positionPrev": { + "#": 5669 + }, + "render": { + "#": 5670 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5672 + }, + "vertices": { + "#": 5673 + } + }, + [ + { + "#": 5659 + }, + { + "#": 5660 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5662 + }, + "min": { + "#": 5663 + } + }, + { + "x": 500, + "y": 395 + }, + { + "x": 475, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 382.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5671 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5674 + }, + { + "#": 5675 + }, + { + "#": 5676 + }, + { + "#": 5677 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5679 + }, + "bounds": { + "#": 5682 + }, + "collisionFilter": { + "#": 5685 + }, + "constraintImpulse": { + "#": 5686 + }, + "density": 0.001, + "force": { + "#": 5687 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 271, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5688 + }, + "positionImpulse": { + "#": 5689 + }, + "positionPrev": { + "#": 5690 + }, + "render": { + "#": 5691 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5693 + }, + "vertices": { + "#": 5694 + } + }, + [ + { + "#": 5680 + }, + { + "#": 5681 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5683 + }, + "min": { + "#": 5684 + } + }, + { + "x": 525, + "y": 395 + }, + { + "x": 500, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 382.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5692 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5695 + }, + { + "#": 5696 + }, + { + "#": 5697 + }, + { + "#": 5698 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5700 + }, + "bounds": { + "#": 5703 + }, + "collisionFilter": { + "#": 5706 + }, + "constraintImpulse": { + "#": 5707 + }, + "density": 0.001, + "force": { + "#": 5708 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 272, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5709 + }, + "positionImpulse": { + "#": 5710 + }, + "positionPrev": { + "#": 5711 + }, + "render": { + "#": 5712 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5714 + }, + "vertices": { + "#": 5715 + } + }, + [ + { + "#": 5701 + }, + { + "#": 5702 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5704 + }, + "min": { + "#": 5705 + } + }, + { + "x": 550, + "y": 395 + }, + { + "x": 525, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5713 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5716 + }, + { + "#": 5717 + }, + { + "#": 5718 + }, + { + "#": 5719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5721 + }, + "bounds": { + "#": 5724 + }, + "collisionFilter": { + "#": 5727 + }, + "constraintImpulse": { + "#": 5728 + }, + "density": 0.001, + "force": { + "#": 5729 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 273, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5730 + }, + "positionImpulse": { + "#": 5731 + }, + "positionPrev": { + "#": 5732 + }, + "render": { + "#": 5733 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5735 + }, + "vertices": { + "#": 5736 + } + }, + [ + { + "#": 5722 + }, + { + "#": 5723 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5725 + }, + "min": { + "#": 5726 + } + }, + { + "x": 575, + "y": 395 + }, + { + "x": 550, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5734 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5737 + }, + { + "#": 5738 + }, + { + "#": 5739 + }, + { + "#": 5740 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5742 + }, + "bounds": { + "#": 5745 + }, + "collisionFilter": { + "#": 5748 + }, + "constraintImpulse": { + "#": 5749 + }, + "density": 0.001, + "force": { + "#": 5750 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 274, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5751 + }, + "positionImpulse": { + "#": 5752 + }, + "positionPrev": { + "#": 5753 + }, + "render": { + "#": 5754 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5756 + }, + "vertices": { + "#": 5757 + } + }, + [ + { + "#": 5743 + }, + { + "#": 5744 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5746 + }, + "min": { + "#": 5747 + } + }, + { + "x": 600, + "y": 395 + }, + { + "x": 575, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5755 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5758 + }, + { + "#": 5759 + }, + { + "#": 5760 + }, + { + "#": 5761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5763 + }, + "bounds": { + "#": 5766 + }, + "collisionFilter": { + "#": 5769 + }, + "constraintImpulse": { + "#": 5770 + }, + "density": 0.001, + "force": { + "#": 5771 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 275, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5772 + }, + "positionImpulse": { + "#": 5773 + }, + "positionPrev": { + "#": 5774 + }, + "render": { + "#": 5775 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5777 + }, + "vertices": { + "#": 5778 + } + }, + [ + { + "#": 5764 + }, + { + "#": 5765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5767 + }, + "min": { + "#": 5768 + } + }, + { + "x": 625, + "y": 395 + }, + { + "x": 600, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5776 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5779 + }, + { + "#": 5780 + }, + { + "#": 5781 + }, + { + "#": 5782 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5784 + }, + "bounds": { + "#": 5787 + }, + "collisionFilter": { + "#": 5790 + }, + "constraintImpulse": { + "#": 5791 + }, + "density": 0.001, + "force": { + "#": 5792 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 276, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5793 + }, + "positionImpulse": { + "#": 5794 + }, + "positionPrev": { + "#": 5795 + }, + "render": { + "#": 5796 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5798 + }, + "vertices": { + "#": 5799 + } + }, + [ + { + "#": 5785 + }, + { + "#": 5786 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5788 + }, + "min": { + "#": 5789 + } + }, + { + "x": 650, + "y": 395 + }, + { + "x": 625, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5797 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5800 + }, + { + "#": 5801 + }, + { + "#": 5802 + }, + { + "#": 5803 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5805 + }, + "bounds": { + "#": 5808 + }, + "collisionFilter": { + "#": 5811 + }, + "constraintImpulse": { + "#": 5812 + }, + "density": 0.001, + "force": { + "#": 5813 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 277, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5814 + }, + "positionImpulse": { + "#": 5815 + }, + "positionPrev": { + "#": 5816 + }, + "render": { + "#": 5817 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5819 + }, + "vertices": { + "#": 5820 + } + }, + [ + { + "#": 5806 + }, + { + "#": 5807 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5809 + }, + "min": { + "#": 5810 + } + }, + { + "x": 675, + "y": 395 + }, + { + "x": 650, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 382.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5818 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5821 + }, + { + "#": 5822 + }, + { + "#": 5823 + }, + { + "#": 5824 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5826 + }, + "bounds": { + "#": 5829 + }, + "collisionFilter": { + "#": 5832 + }, + "constraintImpulse": { + "#": 5833 + }, + "density": 0.001, + "force": { + "#": 5834 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 278, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5835 + }, + "positionImpulse": { + "#": 5836 + }, + "positionPrev": { + "#": 5837 + }, + "render": { + "#": 5838 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5840 + }, + "vertices": { + "#": 5841 + } + }, + [ + { + "#": 5827 + }, + { + "#": 5828 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5830 + }, + "min": { + "#": 5831 + } + }, + { + "x": 700, + "y": 395 + }, + { + "x": 675, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 382.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5839 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5842 + }, + { + "#": 5843 + }, + { + "#": 5844 + }, + { + "#": 5845 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5847 + }, + "bounds": { + "#": 5850 + }, + "collisionFilter": { + "#": 5853 + }, + "constraintImpulse": { + "#": 5854 + }, + "density": 0.001, + "force": { + "#": 5855 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 279, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5856 + }, + "positionImpulse": { + "#": 5857 + }, + "positionPrev": { + "#": 5858 + }, + "render": { + "#": 5859 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5861 + }, + "vertices": { + "#": 5862 + } + }, + [ + { + "#": 5848 + }, + { + "#": 5849 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5851 + }, + "min": { + "#": 5852 + } + }, + { + "x": 725, + "y": 395 + }, + { + "x": 700, + "y": 370 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 382.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5860 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5863 + }, + { + "#": 5864 + }, + { + "#": 5865 + }, + { + "#": 5866 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 370 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 370 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 395 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 395 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5868 + }, + "bounds": { + "#": 5871 + }, + "collisionFilter": { + "#": 5874 + }, + "constraintImpulse": { + "#": 5875 + }, + "density": 0.001, + "force": { + "#": 5876 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 280, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5877 + }, + "positionImpulse": { + "#": 5878 + }, + "positionPrev": { + "#": 5879 + }, + "render": { + "#": 5880 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5882 + }, + "vertices": { + "#": 5883 + } + }, + [ + { + "#": 5869 + }, + { + "#": 5870 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5872 + }, + "min": { + "#": 5873 + } + }, + { + "x": 125, + "y": 420 + }, + { + "x": 100, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 407.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5881 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5884 + }, + { + "#": 5885 + }, + { + "#": 5886 + }, + { + "#": 5887 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5889 + }, + "bounds": { + "#": 5892 + }, + "collisionFilter": { + "#": 5895 + }, + "constraintImpulse": { + "#": 5896 + }, + "density": 0.001, + "force": { + "#": 5897 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 281, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5898 + }, + "positionImpulse": { + "#": 5899 + }, + "positionPrev": { + "#": 5900 + }, + "render": { + "#": 5901 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5903 + }, + "vertices": { + "#": 5904 + } + }, + [ + { + "#": 5890 + }, + { + "#": 5891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5893 + }, + "min": { + "#": 5894 + } + }, + { + "x": 150, + "y": 420 + }, + { + "x": 125, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 407.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5902 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5905 + }, + { + "#": 5906 + }, + { + "#": 5907 + }, + { + "#": 5908 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5910 + }, + "bounds": { + "#": 5913 + }, + "collisionFilter": { + "#": 5916 + }, + "constraintImpulse": { + "#": 5917 + }, + "density": 0.001, + "force": { + "#": 5918 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 282, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5919 + }, + "positionImpulse": { + "#": 5920 + }, + "positionPrev": { + "#": 5921 + }, + "render": { + "#": 5922 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5924 + }, + "vertices": { + "#": 5925 + } + }, + [ + { + "#": 5911 + }, + { + "#": 5912 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5914 + }, + "min": { + "#": 5915 + } + }, + { + "x": 175, + "y": 420 + }, + { + "x": 150, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 407.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5923 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5926 + }, + { + "#": 5927 + }, + { + "#": 5928 + }, + { + "#": 5929 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5931 + }, + "bounds": { + "#": 5934 + }, + "collisionFilter": { + "#": 5937 + }, + "constraintImpulse": { + "#": 5938 + }, + "density": 0.001, + "force": { + "#": 5939 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 283, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5940 + }, + "positionImpulse": { + "#": 5941 + }, + "positionPrev": { + "#": 5942 + }, + "render": { + "#": 5943 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5945 + }, + "vertices": { + "#": 5946 + } + }, + [ + { + "#": 5932 + }, + { + "#": 5933 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5935 + }, + "min": { + "#": 5936 + } + }, + { + "x": 200, + "y": 420 + }, + { + "x": 175, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 407.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5944 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5947 + }, + { + "#": 5948 + }, + { + "#": 5949 + }, + { + "#": 5950 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5952 + }, + "bounds": { + "#": 5955 + }, + "collisionFilter": { + "#": 5958 + }, + "constraintImpulse": { + "#": 5959 + }, + "density": 0.001, + "force": { + "#": 5960 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 284, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5961 + }, + "positionImpulse": { + "#": 5962 + }, + "positionPrev": { + "#": 5963 + }, + "render": { + "#": 5964 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5966 + }, + "vertices": { + "#": 5967 + } + }, + [ + { + "#": 5953 + }, + { + "#": 5954 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5956 + }, + "min": { + "#": 5957 + } + }, + { + "x": 225, + "y": 420 + }, + { + "x": 200, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 407.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5965 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5968 + }, + { + "#": 5969 + }, + { + "#": 5970 + }, + { + "#": 5971 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5973 + }, + "bounds": { + "#": 5976 + }, + "collisionFilter": { + "#": 5979 + }, + "constraintImpulse": { + "#": 5980 + }, + "density": 0.001, + "force": { + "#": 5981 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 285, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5982 + }, + "positionImpulse": { + "#": 5983 + }, + "positionPrev": { + "#": 5984 + }, + "render": { + "#": 5985 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5987 + }, + "vertices": { + "#": 5988 + } + }, + [ + { + "#": 5974 + }, + { + "#": 5975 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5977 + }, + "min": { + "#": 5978 + } + }, + { + "x": 250, + "y": 420 + }, + { + "x": 225, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 407.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5986 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + }, + { + "#": 5992 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5994 + }, + "bounds": { + "#": 5997 + }, + "collisionFilter": { + "#": 6000 + }, + "constraintImpulse": { + "#": 6001 + }, + "density": 0.001, + "force": { + "#": 6002 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 286, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6003 + }, + "positionImpulse": { + "#": 6004 + }, + "positionPrev": { + "#": 6005 + }, + "render": { + "#": 6006 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6008 + }, + "vertices": { + "#": 6009 + } + }, + [ + { + "#": 5995 + }, + { + "#": 5996 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5998 + }, + "min": { + "#": 5999 + } + }, + { + "x": 275, + "y": 420 + }, + { + "x": 250, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 407.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6007 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6010 + }, + { + "#": 6011 + }, + { + "#": 6012 + }, + { + "#": 6013 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6015 + }, + "bounds": { + "#": 6018 + }, + "collisionFilter": { + "#": 6021 + }, + "constraintImpulse": { + "#": 6022 + }, + "density": 0.001, + "force": { + "#": 6023 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 287, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6024 + }, + "positionImpulse": { + "#": 6025 + }, + "positionPrev": { + "#": 6026 + }, + "render": { + "#": 6027 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6029 + }, + "vertices": { + "#": 6030 + } + }, + [ + { + "#": 6016 + }, + { + "#": 6017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6019 + }, + "min": { + "#": 6020 + } + }, + { + "x": 300, + "y": 420 + }, + { + "x": 275, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 407.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6028 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6031 + }, + { + "#": 6032 + }, + { + "#": 6033 + }, + { + "#": 6034 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6036 + }, + "bounds": { + "#": 6039 + }, + "collisionFilter": { + "#": 6042 + }, + "constraintImpulse": { + "#": 6043 + }, + "density": 0.001, + "force": { + "#": 6044 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 288, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6045 + }, + "positionImpulse": { + "#": 6046 + }, + "positionPrev": { + "#": 6047 + }, + "render": { + "#": 6048 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6050 + }, + "vertices": { + "#": 6051 + } + }, + [ + { + "#": 6037 + }, + { + "#": 6038 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6040 + }, + "min": { + "#": 6041 + } + }, + { + "x": 325, + "y": 420 + }, + { + "x": 300, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 407.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6049 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6052 + }, + { + "#": 6053 + }, + { + "#": 6054 + }, + { + "#": 6055 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6057 + }, + "bounds": { + "#": 6060 + }, + "collisionFilter": { + "#": 6063 + }, + "constraintImpulse": { + "#": 6064 + }, + "density": 0.001, + "force": { + "#": 6065 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 289, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6066 + }, + "positionImpulse": { + "#": 6067 + }, + "positionPrev": { + "#": 6068 + }, + "render": { + "#": 6069 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6071 + }, + "vertices": { + "#": 6072 + } + }, + [ + { + "#": 6058 + }, + { + "#": 6059 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6061 + }, + "min": { + "#": 6062 + } + }, + { + "x": 350, + "y": 420 + }, + { + "x": 325, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 407.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6070 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6073 + }, + { + "#": 6074 + }, + { + "#": 6075 + }, + { + "#": 6076 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6078 + }, + "bounds": { + "#": 6081 + }, + "collisionFilter": { + "#": 6084 + }, + "constraintImpulse": { + "#": 6085 + }, + "density": 0.001, + "force": { + "#": 6086 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 290, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6087 + }, + "positionImpulse": { + "#": 6088 + }, + "positionPrev": { + "#": 6089 + }, + "render": { + "#": 6090 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6092 + }, + "vertices": { + "#": 6093 + } + }, + [ + { + "#": 6079 + }, + { + "#": 6080 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6082 + }, + "min": { + "#": 6083 + } + }, + { + "x": 375, + "y": 420 + }, + { + "x": 350, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 407.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6091 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6094 + }, + { + "#": 6095 + }, + { + "#": 6096 + }, + { + "#": 6097 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6099 + }, + "bounds": { + "#": 6102 + }, + "collisionFilter": { + "#": 6105 + }, + "constraintImpulse": { + "#": 6106 + }, + "density": 0.001, + "force": { + "#": 6107 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 291, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6108 + }, + "positionImpulse": { + "#": 6109 + }, + "positionPrev": { + "#": 6110 + }, + "render": { + "#": 6111 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6113 + }, + "vertices": { + "#": 6114 + } + }, + [ + { + "#": 6100 + }, + { + "#": 6101 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6103 + }, + "min": { + "#": 6104 + } + }, + { + "x": 400, + "y": 420 + }, + { + "x": 375, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 407.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6112 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6115 + }, + { + "#": 6116 + }, + { + "#": 6117 + }, + { + "#": 6118 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6120 + }, + "bounds": { + "#": 6123 + }, + "collisionFilter": { + "#": 6126 + }, + "constraintImpulse": { + "#": 6127 + }, + "density": 0.001, + "force": { + "#": 6128 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 292, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6129 + }, + "positionImpulse": { + "#": 6130 + }, + "positionPrev": { + "#": 6131 + }, + "render": { + "#": 6132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6134 + }, + "vertices": { + "#": 6135 + } + }, + [ + { + "#": 6121 + }, + { + "#": 6122 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6124 + }, + "min": { + "#": 6125 + } + }, + { + "x": 425, + "y": 420 + }, + { + "x": 400, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 407.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6133 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6136 + }, + { + "#": 6137 + }, + { + "#": 6138 + }, + { + "#": 6139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6141 + }, + "bounds": { + "#": 6144 + }, + "collisionFilter": { + "#": 6147 + }, + "constraintImpulse": { + "#": 6148 + }, + "density": 0.001, + "force": { + "#": 6149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 293, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6150 + }, + "positionImpulse": { + "#": 6151 + }, + "positionPrev": { + "#": 6152 + }, + "render": { + "#": 6153 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6155 + }, + "vertices": { + "#": 6156 + } + }, + [ + { + "#": 6142 + }, + { + "#": 6143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6145 + }, + "min": { + "#": 6146 + } + }, + { + "x": 450, + "y": 420 + }, + { + "x": 425, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 407.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6154 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6157 + }, + { + "#": 6158 + }, + { + "#": 6159 + }, + { + "#": 6160 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6162 + }, + "bounds": { + "#": 6165 + }, + "collisionFilter": { + "#": 6168 + }, + "constraintImpulse": { + "#": 6169 + }, + "density": 0.001, + "force": { + "#": 6170 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 294, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6171 + }, + "positionImpulse": { + "#": 6172 + }, + "positionPrev": { + "#": 6173 + }, + "render": { + "#": 6174 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6176 + }, + "vertices": { + "#": 6177 + } + }, + [ + { + "#": 6163 + }, + { + "#": 6164 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6166 + }, + "min": { + "#": 6167 + } + }, + { + "x": 475, + "y": 420 + }, + { + "x": 450, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 407.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6175 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6178 + }, + { + "#": 6179 + }, + { + "#": 6180 + }, + { + "#": 6181 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6183 + }, + "bounds": { + "#": 6186 + }, + "collisionFilter": { + "#": 6189 + }, + "constraintImpulse": { + "#": 6190 + }, + "density": 0.001, + "force": { + "#": 6191 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 295, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6192 + }, + "positionImpulse": { + "#": 6193 + }, + "positionPrev": { + "#": 6194 + }, + "render": { + "#": 6195 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6197 + }, + "vertices": { + "#": 6198 + } + }, + [ + { + "#": 6184 + }, + { + "#": 6185 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6187 + }, + "min": { + "#": 6188 + } + }, + { + "x": 500, + "y": 420 + }, + { + "x": 475, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 407.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6196 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6199 + }, + { + "#": 6200 + }, + { + "#": 6201 + }, + { + "#": 6202 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6204 + }, + "bounds": { + "#": 6207 + }, + "collisionFilter": { + "#": 6210 + }, + "constraintImpulse": { + "#": 6211 + }, + "density": 0.001, + "force": { + "#": 6212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 296, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6213 + }, + "positionImpulse": { + "#": 6214 + }, + "positionPrev": { + "#": 6215 + }, + "render": { + "#": 6216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6218 + }, + "vertices": { + "#": 6219 + } + }, + [ + { + "#": 6205 + }, + { + "#": 6206 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6208 + }, + "min": { + "#": 6209 + } + }, + { + "x": 525, + "y": 420 + }, + { + "x": 500, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 407.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6217 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + }, + { + "#": 6223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6225 + }, + "bounds": { + "#": 6228 + }, + "collisionFilter": { + "#": 6231 + }, + "constraintImpulse": { + "#": 6232 + }, + "density": 0.001, + "force": { + "#": 6233 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 297, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6234 + }, + "positionImpulse": { + "#": 6235 + }, + "positionPrev": { + "#": 6236 + }, + "render": { + "#": 6237 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6239 + }, + "vertices": { + "#": 6240 + } + }, + [ + { + "#": 6226 + }, + { + "#": 6227 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6229 + }, + "min": { + "#": 6230 + } + }, + { + "x": 550, + "y": 420 + }, + { + "x": 525, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 407.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6238 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6241 + }, + { + "#": 6242 + }, + { + "#": 6243 + }, + { + "#": 6244 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6246 + }, + "bounds": { + "#": 6249 + }, + "collisionFilter": { + "#": 6252 + }, + "constraintImpulse": { + "#": 6253 + }, + "density": 0.001, + "force": { + "#": 6254 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 298, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6255 + }, + "positionImpulse": { + "#": 6256 + }, + "positionPrev": { + "#": 6257 + }, + "render": { + "#": 6258 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6260 + }, + "vertices": { + "#": 6261 + } + }, + [ + { + "#": 6247 + }, + { + "#": 6248 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6250 + }, + "min": { + "#": 6251 + } + }, + { + "x": 575, + "y": 420 + }, + { + "x": 550, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 407.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6259 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6262 + }, + { + "#": 6263 + }, + { + "#": 6264 + }, + { + "#": 6265 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6267 + }, + "bounds": { + "#": 6270 + }, + "collisionFilter": { + "#": 6273 + }, + "constraintImpulse": { + "#": 6274 + }, + "density": 0.001, + "force": { + "#": 6275 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 299, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6276 + }, + "positionImpulse": { + "#": 6277 + }, + "positionPrev": { + "#": 6278 + }, + "render": { + "#": 6279 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6281 + }, + "vertices": { + "#": 6282 + } + }, + [ + { + "#": 6268 + }, + { + "#": 6269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6271 + }, + "min": { + "#": 6272 + } + }, + { + "x": 600, + "y": 420 + }, + { + "x": 575, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 407.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6280 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6283 + }, + { + "#": 6284 + }, + { + "#": 6285 + }, + { + "#": 6286 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6288 + }, + "bounds": { + "#": 6291 + }, + "collisionFilter": { + "#": 6294 + }, + "constraintImpulse": { + "#": 6295 + }, + "density": 0.001, + "force": { + "#": 6296 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 300, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6297 + }, + "positionImpulse": { + "#": 6298 + }, + "positionPrev": { + "#": 6299 + }, + "render": { + "#": 6300 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6302 + }, + "vertices": { + "#": 6303 + } + }, + [ + { + "#": 6289 + }, + { + "#": 6290 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6292 + }, + "min": { + "#": 6293 + } + }, + { + "x": 625, + "y": 420 + }, + { + "x": 600, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 407.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6301 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6304 + }, + { + "#": 6305 + }, + { + "#": 6306 + }, + { + "#": 6307 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6309 + }, + "bounds": { + "#": 6312 + }, + "collisionFilter": { + "#": 6315 + }, + "constraintImpulse": { + "#": 6316 + }, + "density": 0.001, + "force": { + "#": 6317 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 301, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6318 + }, + "positionImpulse": { + "#": 6319 + }, + "positionPrev": { + "#": 6320 + }, + "render": { + "#": 6321 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6323 + }, + "vertices": { + "#": 6324 + } + }, + [ + { + "#": 6310 + }, + { + "#": 6311 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6313 + }, + "min": { + "#": 6314 + } + }, + { + "x": 650, + "y": 420 + }, + { + "x": 625, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 407.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6322 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6325 + }, + { + "#": 6326 + }, + { + "#": 6327 + }, + { + "#": 6328 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6330 + }, + "bounds": { + "#": 6333 + }, + "collisionFilter": { + "#": 6336 + }, + "constraintImpulse": { + "#": 6337 + }, + "density": 0.001, + "force": { + "#": 6338 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 302, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6339 + }, + "positionImpulse": { + "#": 6340 + }, + "positionPrev": { + "#": 6341 + }, + "render": { + "#": 6342 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6344 + }, + "vertices": { + "#": 6345 + } + }, + [ + { + "#": 6331 + }, + { + "#": 6332 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6334 + }, + "min": { + "#": 6335 + } + }, + { + "x": 675, + "y": 420 + }, + { + "x": 650, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 407.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6343 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6346 + }, + { + "#": 6347 + }, + { + "#": 6348 + }, + { + "#": 6349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6351 + }, + "bounds": { + "#": 6354 + }, + "collisionFilter": { + "#": 6357 + }, + "constraintImpulse": { + "#": 6358 + }, + "density": 0.001, + "force": { + "#": 6359 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 303, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6360 + }, + "positionImpulse": { + "#": 6361 + }, + "positionPrev": { + "#": 6362 + }, + "render": { + "#": 6363 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6365 + }, + "vertices": { + "#": 6366 + } + }, + [ + { + "#": 6352 + }, + { + "#": 6353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6355 + }, + "min": { + "#": 6356 + } + }, + { + "x": 700, + "y": 420 + }, + { + "x": 675, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 407.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6364 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6367 + }, + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6372 + }, + "bounds": { + "#": 6375 + }, + "collisionFilter": { + "#": 6378 + }, + "constraintImpulse": { + "#": 6379 + }, + "density": 0.001, + "force": { + "#": 6380 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 304, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6381 + }, + "positionImpulse": { + "#": 6382 + }, + "positionPrev": { + "#": 6383 + }, + "render": { + "#": 6384 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6386 + }, + "vertices": { + "#": 6387 + } + }, + [ + { + "#": 6373 + }, + { + "#": 6374 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6376 + }, + "min": { + "#": 6377 + } + }, + { + "x": 725, + "y": 420 + }, + { + "x": 700, + "y": 395 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 407.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6385 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6388 + }, + { + "#": 6389 + }, + { + "#": 6390 + }, + { + "#": 6391 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 395 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 395 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 420 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 420 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6393 + }, + "bounds": { + "#": 6396 + }, + "collisionFilter": { + "#": 6399 + }, + "constraintImpulse": { + "#": 6400 + }, + "density": 0.001, + "force": { + "#": 6401 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 305, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6402 + }, + "positionImpulse": { + "#": 6403 + }, + "positionPrev": { + "#": 6404 + }, + "render": { + "#": 6405 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6407 + }, + "vertices": { + "#": 6408 + } + }, + [ + { + "#": 6394 + }, + { + "#": 6395 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6397 + }, + "min": { + "#": 6398 + } + }, + { + "x": 125, + "y": 445 + }, + { + "x": 100, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 432.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6406 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6409 + }, + { + "#": 6410 + }, + { + "#": 6411 + }, + { + "#": 6412 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6414 + }, + "bounds": { + "#": 6417 + }, + "collisionFilter": { + "#": 6420 + }, + "constraintImpulse": { + "#": 6421 + }, + "density": 0.001, + "force": { + "#": 6422 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 306, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6423 + }, + "positionImpulse": { + "#": 6424 + }, + "positionPrev": { + "#": 6425 + }, + "render": { + "#": 6426 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6428 + }, + "vertices": { + "#": 6429 + } + }, + [ + { + "#": 6415 + }, + { + "#": 6416 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6418 + }, + "min": { + "#": 6419 + } + }, + { + "x": 150, + "y": 445 + }, + { + "x": 125, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 432.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6427 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6430 + }, + { + "#": 6431 + }, + { + "#": 6432 + }, + { + "#": 6433 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6435 + }, + "bounds": { + "#": 6438 + }, + "collisionFilter": { + "#": 6441 + }, + "constraintImpulse": { + "#": 6442 + }, + "density": 0.001, + "force": { + "#": 6443 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 307, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6444 + }, + "positionImpulse": { + "#": 6445 + }, + "positionPrev": { + "#": 6446 + }, + "render": { + "#": 6447 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6449 + }, + "vertices": { + "#": 6450 + } + }, + [ + { + "#": 6436 + }, + { + "#": 6437 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6439 + }, + "min": { + "#": 6440 + } + }, + { + "x": 175, + "y": 445 + }, + { + "x": 150, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 432.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6448 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6451 + }, + { + "#": 6452 + }, + { + "#": 6453 + }, + { + "#": 6454 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6456 + }, + "bounds": { + "#": 6459 + }, + "collisionFilter": { + "#": 6462 + }, + "constraintImpulse": { + "#": 6463 + }, + "density": 0.001, + "force": { + "#": 6464 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 308, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6465 + }, + "positionImpulse": { + "#": 6466 + }, + "positionPrev": { + "#": 6467 + }, + "render": { + "#": 6468 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6470 + }, + "vertices": { + "#": 6471 + } + }, + [ + { + "#": 6457 + }, + { + "#": 6458 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6460 + }, + "min": { + "#": 6461 + } + }, + { + "x": 200, + "y": 445 + }, + { + "x": 175, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 432.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6469 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6472 + }, + { + "#": 6473 + }, + { + "#": 6474 + }, + { + "#": 6475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6477 + }, + "bounds": { + "#": 6480 + }, + "collisionFilter": { + "#": 6483 + }, + "constraintImpulse": { + "#": 6484 + }, + "density": 0.001, + "force": { + "#": 6485 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 309, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6486 + }, + "positionImpulse": { + "#": 6487 + }, + "positionPrev": { + "#": 6488 + }, + "render": { + "#": 6489 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6491 + }, + "vertices": { + "#": 6492 + } + }, + [ + { + "#": 6478 + }, + { + "#": 6479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6481 + }, + "min": { + "#": 6482 + } + }, + { + "x": 225, + "y": 445 + }, + { + "x": 200, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6490 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6493 + }, + { + "#": 6494 + }, + { + "#": 6495 + }, + { + "#": 6496 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6498 + }, + "bounds": { + "#": 6501 + }, + "collisionFilter": { + "#": 6504 + }, + "constraintImpulse": { + "#": 6505 + }, + "density": 0.001, + "force": { + "#": 6506 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 310, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6507 + }, + "positionImpulse": { + "#": 6508 + }, + "positionPrev": { + "#": 6509 + }, + "render": { + "#": 6510 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6512 + }, + "vertices": { + "#": 6513 + } + }, + [ + { + "#": 6499 + }, + { + "#": 6500 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6502 + }, + "min": { + "#": 6503 + } + }, + { + "x": 250, + "y": 445 + }, + { + "x": 225, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 432.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6511 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6514 + }, + { + "#": 6515 + }, + { + "#": 6516 + }, + { + "#": 6517 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6519 + }, + "bounds": { + "#": 6522 + }, + "collisionFilter": { + "#": 6525 + }, + "constraintImpulse": { + "#": 6526 + }, + "density": 0.001, + "force": { + "#": 6527 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 311, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6528 + }, + "positionImpulse": { + "#": 6529 + }, + "positionPrev": { + "#": 6530 + }, + "render": { + "#": 6531 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6533 + }, + "vertices": { + "#": 6534 + } + }, + [ + { + "#": 6520 + }, + { + "#": 6521 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6523 + }, + "min": { + "#": 6524 + } + }, + { + "x": 275, + "y": 445 + }, + { + "x": 250, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 432.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6532 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6535 + }, + { + "#": 6536 + }, + { + "#": 6537 + }, + { + "#": 6538 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6540 + }, + "bounds": { + "#": 6543 + }, + "collisionFilter": { + "#": 6546 + }, + "constraintImpulse": { + "#": 6547 + }, + "density": 0.001, + "force": { + "#": 6548 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 312, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6549 + }, + "positionImpulse": { + "#": 6550 + }, + "positionPrev": { + "#": 6551 + }, + "render": { + "#": 6552 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6554 + }, + "vertices": { + "#": 6555 + } + }, + [ + { + "#": 6541 + }, + { + "#": 6542 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6544 + }, + "min": { + "#": 6545 + } + }, + { + "x": 300, + "y": 445 + }, + { + "x": 275, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 432.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6553 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6556 + }, + { + "#": 6557 + }, + { + "#": 6558 + }, + { + "#": 6559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6561 + }, + "bounds": { + "#": 6564 + }, + "collisionFilter": { + "#": 6567 + }, + "constraintImpulse": { + "#": 6568 + }, + "density": 0.001, + "force": { + "#": 6569 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 313, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6570 + }, + "positionImpulse": { + "#": 6571 + }, + "positionPrev": { + "#": 6572 + }, + "render": { + "#": 6573 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6575 + }, + "vertices": { + "#": 6576 + } + }, + [ + { + "#": 6562 + }, + { + "#": 6563 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6565 + }, + "min": { + "#": 6566 + } + }, + { + "x": 325, + "y": 445 + }, + { + "x": 300, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 432.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6574 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6577 + }, + { + "#": 6578 + }, + { + "#": 6579 + }, + { + "#": 6580 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6582 + }, + "bounds": { + "#": 6585 + }, + "collisionFilter": { + "#": 6588 + }, + "constraintImpulse": { + "#": 6589 + }, + "density": 0.001, + "force": { + "#": 6590 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 314, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6591 + }, + "positionImpulse": { + "#": 6592 + }, + "positionPrev": { + "#": 6593 + }, + "render": { + "#": 6594 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6596 + }, + "vertices": { + "#": 6597 + } + }, + [ + { + "#": 6583 + }, + { + "#": 6584 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6586 + }, + "min": { + "#": 6587 + } + }, + { + "x": 350, + "y": 445 + }, + { + "x": 325, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6595 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6598 + }, + { + "#": 6599 + }, + { + "#": 6600 + }, + { + "#": 6601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6603 + }, + "bounds": { + "#": 6606 + }, + "collisionFilter": { + "#": 6609 + }, + "constraintImpulse": { + "#": 6610 + }, + "density": 0.001, + "force": { + "#": 6611 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 315, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6612 + }, + "positionImpulse": { + "#": 6613 + }, + "positionPrev": { + "#": 6614 + }, + "render": { + "#": 6615 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6617 + }, + "vertices": { + "#": 6618 + } + }, + [ + { + "#": 6604 + }, + { + "#": 6605 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6607 + }, + "min": { + "#": 6608 + } + }, + { + "x": 375, + "y": 445 + }, + { + "x": 350, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 432.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6616 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6619 + }, + { + "#": 6620 + }, + { + "#": 6621 + }, + { + "#": 6622 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6624 + }, + "bounds": { + "#": 6627 + }, + "collisionFilter": { + "#": 6630 + }, + "constraintImpulse": { + "#": 6631 + }, + "density": 0.001, + "force": { + "#": 6632 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 316, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6633 + }, + "positionImpulse": { + "#": 6634 + }, + "positionPrev": { + "#": 6635 + }, + "render": { + "#": 6636 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6638 + }, + "vertices": { + "#": 6639 + } + }, + [ + { + "#": 6625 + }, + { + "#": 6626 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6628 + }, + "min": { + "#": 6629 + } + }, + { + "x": 400, + "y": 445 + }, + { + "x": 375, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 432.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6637 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6640 + }, + { + "#": 6641 + }, + { + "#": 6642 + }, + { + "#": 6643 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6645 + }, + "bounds": { + "#": 6648 + }, + "collisionFilter": { + "#": 6651 + }, + "constraintImpulse": { + "#": 6652 + }, + "density": 0.001, + "force": { + "#": 6653 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 317, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6654 + }, + "positionImpulse": { + "#": 6655 + }, + "positionPrev": { + "#": 6656 + }, + "render": { + "#": 6657 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6659 + }, + "vertices": { + "#": 6660 + } + }, + [ + { + "#": 6646 + }, + { + "#": 6647 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6649 + }, + "min": { + "#": 6650 + } + }, + { + "x": 425, + "y": 445 + }, + { + "x": 400, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 432.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6658 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6661 + }, + { + "#": 6662 + }, + { + "#": 6663 + }, + { + "#": 6664 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6666 + }, + "bounds": { + "#": 6669 + }, + "collisionFilter": { + "#": 6672 + }, + "constraintImpulse": { + "#": 6673 + }, + "density": 0.001, + "force": { + "#": 6674 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 318, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6675 + }, + "positionImpulse": { + "#": 6676 + }, + "positionPrev": { + "#": 6677 + }, + "render": { + "#": 6678 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6680 + }, + "vertices": { + "#": 6681 + } + }, + [ + { + "#": 6667 + }, + { + "#": 6668 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6670 + }, + "min": { + "#": 6671 + } + }, + { + "x": 450, + "y": 445 + }, + { + "x": 425, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 432.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6679 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6682 + }, + { + "#": 6683 + }, + { + "#": 6684 + }, + { + "#": 6685 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6687 + }, + "bounds": { + "#": 6690 + }, + "collisionFilter": { + "#": 6693 + }, + "constraintImpulse": { + "#": 6694 + }, + "density": 0.001, + "force": { + "#": 6695 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 319, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6696 + }, + "positionImpulse": { + "#": 6697 + }, + "positionPrev": { + "#": 6698 + }, + "render": { + "#": 6699 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6701 + }, + "vertices": { + "#": 6702 + } + }, + [ + { + "#": 6688 + }, + { + "#": 6689 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6691 + }, + "min": { + "#": 6692 + } + }, + { + "x": 475, + "y": 445 + }, + { + "x": 450, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 432.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6700 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6703 + }, + { + "#": 6704 + }, + { + "#": 6705 + }, + { + "#": 6706 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6708 + }, + "bounds": { + "#": 6711 + }, + "collisionFilter": { + "#": 6714 + }, + "constraintImpulse": { + "#": 6715 + }, + "density": 0.001, + "force": { + "#": 6716 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 320, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6717 + }, + "positionImpulse": { + "#": 6718 + }, + "positionPrev": { + "#": 6719 + }, + "render": { + "#": 6720 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6722 + }, + "vertices": { + "#": 6723 + } + }, + [ + { + "#": 6709 + }, + { + "#": 6710 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6712 + }, + "min": { + "#": 6713 + } + }, + { + "x": 500, + "y": 445 + }, + { + "x": 475, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6721 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6724 + }, + { + "#": 6725 + }, + { + "#": 6726 + }, + { + "#": 6727 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6729 + }, + "bounds": { + "#": 6732 + }, + "collisionFilter": { + "#": 6735 + }, + "constraintImpulse": { + "#": 6736 + }, + "density": 0.001, + "force": { + "#": 6737 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 321, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6738 + }, + "positionImpulse": { + "#": 6739 + }, + "positionPrev": { + "#": 6740 + }, + "render": { + "#": 6741 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6743 + }, + "vertices": { + "#": 6744 + } + }, + [ + { + "#": 6730 + }, + { + "#": 6731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6733 + }, + "min": { + "#": 6734 + } + }, + { + "x": 525, + "y": 445 + }, + { + "x": 500, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6742 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6745 + }, + { + "#": 6746 + }, + { + "#": 6747 + }, + { + "#": 6748 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6750 + }, + "bounds": { + "#": 6753 + }, + "collisionFilter": { + "#": 6756 + }, + "constraintImpulse": { + "#": 6757 + }, + "density": 0.001, + "force": { + "#": 6758 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 322, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6759 + }, + "positionImpulse": { + "#": 6760 + }, + "positionPrev": { + "#": 6761 + }, + "render": { + "#": 6762 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6764 + }, + "vertices": { + "#": 6765 + } + }, + [ + { + "#": 6751 + }, + { + "#": 6752 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6754 + }, + "min": { + "#": 6755 + } + }, + { + "x": 550, + "y": 445 + }, + { + "x": 525, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6763 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6766 + }, + { + "#": 6767 + }, + { + "#": 6768 + }, + { + "#": 6769 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6771 + }, + "bounds": { + "#": 6774 + }, + "collisionFilter": { + "#": 6777 + }, + "constraintImpulse": { + "#": 6778 + }, + "density": 0.001, + "force": { + "#": 6779 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 323, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6780 + }, + "positionImpulse": { + "#": 6781 + }, + "positionPrev": { + "#": 6782 + }, + "render": { + "#": 6783 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6785 + }, + "vertices": { + "#": 6786 + } + }, + [ + { + "#": 6772 + }, + { + "#": 6773 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6775 + }, + "min": { + "#": 6776 + } + }, + { + "x": 575, + "y": 445 + }, + { + "x": 550, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6784 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6787 + }, + { + "#": 6788 + }, + { + "#": 6789 + }, + { + "#": 6790 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6792 + }, + "bounds": { + "#": 6795 + }, + "collisionFilter": { + "#": 6798 + }, + "constraintImpulse": { + "#": 6799 + }, + "density": 0.001, + "force": { + "#": 6800 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 324, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6801 + }, + "positionImpulse": { + "#": 6802 + }, + "positionPrev": { + "#": 6803 + }, + "render": { + "#": 6804 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6806 + }, + "vertices": { + "#": 6807 + } + }, + [ + { + "#": 6793 + }, + { + "#": 6794 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6796 + }, + "min": { + "#": 6797 + } + }, + { + "x": 600, + "y": 445 + }, + { + "x": 575, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 432.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6805 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6808 + }, + { + "#": 6809 + }, + { + "#": 6810 + }, + { + "#": 6811 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6813 + }, + "bounds": { + "#": 6816 + }, + "collisionFilter": { + "#": 6819 + }, + "constraintImpulse": { + "#": 6820 + }, + "density": 0.001, + "force": { + "#": 6821 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 325, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6822 + }, + "positionImpulse": { + "#": 6823 + }, + "positionPrev": { + "#": 6824 + }, + "render": { + "#": 6825 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6827 + }, + "vertices": { + "#": 6828 + } + }, + [ + { + "#": 6814 + }, + { + "#": 6815 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6817 + }, + "min": { + "#": 6818 + } + }, + { + "x": 625, + "y": 445 + }, + { + "x": 600, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6826 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + }, + { + "#": 6832 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6834 + }, + "bounds": { + "#": 6837 + }, + "collisionFilter": { + "#": 6840 + }, + "constraintImpulse": { + "#": 6841 + }, + "density": 0.001, + "force": { + "#": 6842 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 326, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6843 + }, + "positionImpulse": { + "#": 6844 + }, + "positionPrev": { + "#": 6845 + }, + "render": { + "#": 6846 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6848 + }, + "vertices": { + "#": 6849 + } + }, + [ + { + "#": 6835 + }, + { + "#": 6836 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6838 + }, + "min": { + "#": 6839 + } + }, + { + "x": 650, + "y": 445 + }, + { + "x": 625, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 432.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6847 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6850 + }, + { + "#": 6851 + }, + { + "#": 6852 + }, + { + "#": 6853 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6855 + }, + "bounds": { + "#": 6858 + }, + "collisionFilter": { + "#": 6861 + }, + "constraintImpulse": { + "#": 6862 + }, + "density": 0.001, + "force": { + "#": 6863 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 327, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6864 + }, + "positionImpulse": { + "#": 6865 + }, + "positionPrev": { + "#": 6866 + }, + "render": { + "#": 6867 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6869 + }, + "vertices": { + "#": 6870 + } + }, + [ + { + "#": 6856 + }, + { + "#": 6857 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6859 + }, + "min": { + "#": 6860 + } + }, + { + "x": 675, + "y": 445 + }, + { + "x": 650, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6868 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6871 + }, + { + "#": 6872 + }, + { + "#": 6873 + }, + { + "#": 6874 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6876 + }, + "bounds": { + "#": 6879 + }, + "collisionFilter": { + "#": 6882 + }, + "constraintImpulse": { + "#": 6883 + }, + "density": 0.001, + "force": { + "#": 6884 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 328, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6885 + }, + "positionImpulse": { + "#": 6886 + }, + "positionPrev": { + "#": 6887 + }, + "render": { + "#": 6888 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6890 + }, + "vertices": { + "#": 6891 + } + }, + [ + { + "#": 6877 + }, + { + "#": 6878 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6880 + }, + "min": { + "#": 6881 + } + }, + { + "x": 700, + "y": 445 + }, + { + "x": 675, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 432.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6889 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6892 + }, + { + "#": 6893 + }, + { + "#": 6894 + }, + { + "#": 6895 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6897 + }, + "bounds": { + "#": 6900 + }, + "collisionFilter": { + "#": 6903 + }, + "constraintImpulse": { + "#": 6904 + }, + "density": 0.001, + "force": { + "#": 6905 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 329, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6906 + }, + "positionImpulse": { + "#": 6907 + }, + "positionPrev": { + "#": 6908 + }, + "render": { + "#": 6909 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6911 + }, + "vertices": { + "#": 6912 + } + }, + [ + { + "#": 6898 + }, + { + "#": 6899 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6901 + }, + "min": { + "#": 6902 + } + }, + { + "x": 725, + "y": 445 + }, + { + "x": 700, + "y": 420 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 432.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6910 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6913 + }, + { + "#": 6914 + }, + { + "#": 6915 + }, + { + "#": 6916 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 420 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 420 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 445 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 445 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6918 + }, + "bounds": { + "#": 6921 + }, + "collisionFilter": { + "#": 6924 + }, + "constraintImpulse": { + "#": 6925 + }, + "density": 0.001, + "force": { + "#": 6926 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 330, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6927 + }, + "positionImpulse": { + "#": 6928 + }, + "positionPrev": { + "#": 6929 + }, + "render": { + "#": 6930 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6932 + }, + "vertices": { + "#": 6933 + } + }, + [ + { + "#": 6919 + }, + { + "#": 6920 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6922 + }, + "min": { + "#": 6923 + } + }, + { + "x": 125, + "y": 470 + }, + { + "x": 100, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 457.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6931 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6934 + }, + { + "#": 6935 + }, + { + "#": 6936 + }, + { + "#": 6937 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6939 + }, + "bounds": { + "#": 6942 + }, + "collisionFilter": { + "#": 6945 + }, + "constraintImpulse": { + "#": 6946 + }, + "density": 0.001, + "force": { + "#": 6947 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 331, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6948 + }, + "positionImpulse": { + "#": 6949 + }, + "positionPrev": { + "#": 6950 + }, + "render": { + "#": 6951 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6953 + }, + "vertices": { + "#": 6954 + } + }, + [ + { + "#": 6940 + }, + { + "#": 6941 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6943 + }, + "min": { + "#": 6944 + } + }, + { + "x": 150, + "y": 470 + }, + { + "x": 125, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6952 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6960 + }, + "bounds": { + "#": 6963 + }, + "collisionFilter": { + "#": 6966 + }, + "constraintImpulse": { + "#": 6967 + }, + "density": 0.001, + "force": { + "#": 6968 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 332, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6969 + }, + "positionImpulse": { + "#": 6970 + }, + "positionPrev": { + "#": 6971 + }, + "render": { + "#": 6972 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6974 + }, + "vertices": { + "#": 6975 + } + }, + [ + { + "#": 6961 + }, + { + "#": 6962 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6964 + }, + "min": { + "#": 6965 + } + }, + { + "x": 175, + "y": 470 + }, + { + "x": 150, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 457.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6973 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6976 + }, + { + "#": 6977 + }, + { + "#": 6978 + }, + { + "#": 6979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6981 + }, + "bounds": { + "#": 6984 + }, + "collisionFilter": { + "#": 6987 + }, + "constraintImpulse": { + "#": 6988 + }, + "density": 0.001, + "force": { + "#": 6989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 333, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6990 + }, + "positionImpulse": { + "#": 6991 + }, + "positionPrev": { + "#": 6992 + }, + "render": { + "#": 6993 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6995 + }, + "vertices": { + "#": 6996 + } + }, + [ + { + "#": 6982 + }, + { + "#": 6983 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6985 + }, + "min": { + "#": 6986 + } + }, + { + "x": 200, + "y": 470 + }, + { + "x": 175, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 457.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6994 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 6997 + }, + { + "#": 6998 + }, + { + "#": 6999 + }, + { + "#": 7000 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7002 + }, + "bounds": { + "#": 7005 + }, + "collisionFilter": { + "#": 7008 + }, + "constraintImpulse": { + "#": 7009 + }, + "density": 0.001, + "force": { + "#": 7010 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 334, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7011 + }, + "positionImpulse": { + "#": 7012 + }, + "positionPrev": { + "#": 7013 + }, + "render": { + "#": 7014 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7016 + }, + "vertices": { + "#": 7017 + } + }, + [ + { + "#": 7003 + }, + { + "#": 7004 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7006 + }, + "min": { + "#": 7007 + } + }, + { + "x": 225, + "y": 470 + }, + { + "x": 200, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 457.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7015 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7018 + }, + { + "#": 7019 + }, + { + "#": 7020 + }, + { + "#": 7021 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7023 + }, + "bounds": { + "#": 7026 + }, + "collisionFilter": { + "#": 7029 + }, + "constraintImpulse": { + "#": 7030 + }, + "density": 0.001, + "force": { + "#": 7031 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 335, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7032 + }, + "positionImpulse": { + "#": 7033 + }, + "positionPrev": { + "#": 7034 + }, + "render": { + "#": 7035 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7037 + }, + "vertices": { + "#": 7038 + } + }, + [ + { + "#": 7024 + }, + { + "#": 7025 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7027 + }, + "min": { + "#": 7028 + } + }, + { + "x": 250, + "y": 470 + }, + { + "x": 225, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 457.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7036 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7039 + }, + { + "#": 7040 + }, + { + "#": 7041 + }, + { + "#": 7042 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7044 + }, + "bounds": { + "#": 7047 + }, + "collisionFilter": { + "#": 7050 + }, + "constraintImpulse": { + "#": 7051 + }, + "density": 0.001, + "force": { + "#": 7052 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 336, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7053 + }, + "positionImpulse": { + "#": 7054 + }, + "positionPrev": { + "#": 7055 + }, + "render": { + "#": 7056 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7058 + }, + "vertices": { + "#": 7059 + } + }, + [ + { + "#": 7045 + }, + { + "#": 7046 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7048 + }, + "min": { + "#": 7049 + } + }, + { + "x": 275, + "y": 470 + }, + { + "x": 250, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 457.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7057 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7060 + }, + { + "#": 7061 + }, + { + "#": 7062 + }, + { + "#": 7063 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7065 + }, + "bounds": { + "#": 7068 + }, + "collisionFilter": { + "#": 7071 + }, + "constraintImpulse": { + "#": 7072 + }, + "density": 0.001, + "force": { + "#": 7073 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 337, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7074 + }, + "positionImpulse": { + "#": 7075 + }, + "positionPrev": { + "#": 7076 + }, + "render": { + "#": 7077 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7079 + }, + "vertices": { + "#": 7080 + } + }, + [ + { + "#": 7066 + }, + { + "#": 7067 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7069 + }, + "min": { + "#": 7070 + } + }, + { + "x": 300, + "y": 470 + }, + { + "x": 275, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7078 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7081 + }, + { + "#": 7082 + }, + { + "#": 7083 + }, + { + "#": 7084 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7086 + }, + "bounds": { + "#": 7089 + }, + "collisionFilter": { + "#": 7092 + }, + "constraintImpulse": { + "#": 7093 + }, + "density": 0.001, + "force": { + "#": 7094 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 338, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7095 + }, + "positionImpulse": { + "#": 7096 + }, + "positionPrev": { + "#": 7097 + }, + "render": { + "#": 7098 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7100 + }, + "vertices": { + "#": 7101 + } + }, + [ + { + "#": 7087 + }, + { + "#": 7088 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7090 + }, + "min": { + "#": 7091 + } + }, + { + "x": 325, + "y": 470 + }, + { + "x": 300, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7099 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7102 + }, + { + "#": 7103 + }, + { + "#": 7104 + }, + { + "#": 7105 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7107 + }, + "bounds": { + "#": 7110 + }, + "collisionFilter": { + "#": 7113 + }, + "constraintImpulse": { + "#": 7114 + }, + "density": 0.001, + "force": { + "#": 7115 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 339, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7116 + }, + "positionImpulse": { + "#": 7117 + }, + "positionPrev": { + "#": 7118 + }, + "render": { + "#": 7119 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7121 + }, + "vertices": { + "#": 7122 + } + }, + [ + { + "#": 7108 + }, + { + "#": 7109 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7111 + }, + "min": { + "#": 7112 + } + }, + { + "x": 350, + "y": 470 + }, + { + "x": 325, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7120 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7123 + }, + { + "#": 7124 + }, + { + "#": 7125 + }, + { + "#": 7126 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7128 + }, + "bounds": { + "#": 7131 + }, + "collisionFilter": { + "#": 7134 + }, + "constraintImpulse": { + "#": 7135 + }, + "density": 0.001, + "force": { + "#": 7136 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 340, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7137 + }, + "positionImpulse": { + "#": 7138 + }, + "positionPrev": { + "#": 7139 + }, + "render": { + "#": 7140 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7142 + }, + "vertices": { + "#": 7143 + } + }, + [ + { + "#": 7129 + }, + { + "#": 7130 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7132 + }, + "min": { + "#": 7133 + } + }, + { + "x": 375, + "y": 470 + }, + { + "x": 350, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7141 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7144 + }, + { + "#": 7145 + }, + { + "#": 7146 + }, + { + "#": 7147 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7149 + }, + "bounds": { + "#": 7152 + }, + "collisionFilter": { + "#": 7155 + }, + "constraintImpulse": { + "#": 7156 + }, + "density": 0.001, + "force": { + "#": 7157 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 341, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7158 + }, + "positionImpulse": { + "#": 7159 + }, + "positionPrev": { + "#": 7160 + }, + "render": { + "#": 7161 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7163 + }, + "vertices": { + "#": 7164 + } + }, + [ + { + "#": 7150 + }, + { + "#": 7151 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7153 + }, + "min": { + "#": 7154 + } + }, + { + "x": 400, + "y": 470 + }, + { + "x": 375, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 457.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7162 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7165 + }, + { + "#": 7166 + }, + { + "#": 7167 + }, + { + "#": 7168 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7170 + }, + "bounds": { + "#": 7173 + }, + "collisionFilter": { + "#": 7176 + }, + "constraintImpulse": { + "#": 7177 + }, + "density": 0.001, + "force": { + "#": 7178 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 342, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7179 + }, + "positionImpulse": { + "#": 7180 + }, + "positionPrev": { + "#": 7181 + }, + "render": { + "#": 7182 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7184 + }, + "vertices": { + "#": 7185 + } + }, + [ + { + "#": 7171 + }, + { + "#": 7172 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7174 + }, + "min": { + "#": 7175 + } + }, + { + "x": 425, + "y": 470 + }, + { + "x": 400, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 457.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7183 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7186 + }, + { + "#": 7187 + }, + { + "#": 7188 + }, + { + "#": 7189 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7191 + }, + "bounds": { + "#": 7194 + }, + "collisionFilter": { + "#": 7197 + }, + "constraintImpulse": { + "#": 7198 + }, + "density": 0.001, + "force": { + "#": 7199 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 343, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7200 + }, + "positionImpulse": { + "#": 7201 + }, + "positionPrev": { + "#": 7202 + }, + "render": { + "#": 7203 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7205 + }, + "vertices": { + "#": 7206 + } + }, + [ + { + "#": 7192 + }, + { + "#": 7193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7195 + }, + "min": { + "#": 7196 + } + }, + { + "x": 450, + "y": 470 + }, + { + "x": 425, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 457.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7204 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7207 + }, + { + "#": 7208 + }, + { + "#": 7209 + }, + { + "#": 7210 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7212 + }, + "bounds": { + "#": 7215 + }, + "collisionFilter": { + "#": 7218 + }, + "constraintImpulse": { + "#": 7219 + }, + "density": 0.001, + "force": { + "#": 7220 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 344, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7221 + }, + "positionImpulse": { + "#": 7222 + }, + "positionPrev": { + "#": 7223 + }, + "render": { + "#": 7224 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7226 + }, + "vertices": { + "#": 7227 + } + }, + [ + { + "#": 7213 + }, + { + "#": 7214 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7216 + }, + "min": { + "#": 7217 + } + }, + { + "x": 475, + "y": 470 + }, + { + "x": 450, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7225 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7228 + }, + { + "#": 7229 + }, + { + "#": 7230 + }, + { + "#": 7231 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7233 + }, + "bounds": { + "#": 7236 + }, + "collisionFilter": { + "#": 7239 + }, + "constraintImpulse": { + "#": 7240 + }, + "density": 0.001, + "force": { + "#": 7241 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 345, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7242 + }, + "positionImpulse": { + "#": 7243 + }, + "positionPrev": { + "#": 7244 + }, + "render": { + "#": 7245 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7247 + }, + "vertices": { + "#": 7248 + } + }, + [ + { + "#": 7234 + }, + { + "#": 7235 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7237 + }, + "min": { + "#": 7238 + } + }, + { + "x": 500, + "y": 470 + }, + { + "x": 475, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7246 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7249 + }, + { + "#": 7250 + }, + { + "#": 7251 + }, + { + "#": 7252 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7254 + }, + "bounds": { + "#": 7257 + }, + "collisionFilter": { + "#": 7260 + }, + "constraintImpulse": { + "#": 7261 + }, + "density": 0.001, + "force": { + "#": 7262 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 346, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7263 + }, + "positionImpulse": { + "#": 7264 + }, + "positionPrev": { + "#": 7265 + }, + "render": { + "#": 7266 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7268 + }, + "vertices": { + "#": 7269 + } + }, + [ + { + "#": 7255 + }, + { + "#": 7256 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7258 + }, + "min": { + "#": 7259 + } + }, + { + "x": 525, + "y": 470 + }, + { + "x": 500, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7267 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7270 + }, + { + "#": 7271 + }, + { + "#": 7272 + }, + { + "#": 7273 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7275 + }, + "bounds": { + "#": 7278 + }, + "collisionFilter": { + "#": 7281 + }, + "constraintImpulse": { + "#": 7282 + }, + "density": 0.001, + "force": { + "#": 7283 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 347, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7284 + }, + "positionImpulse": { + "#": 7285 + }, + "positionPrev": { + "#": 7286 + }, + "render": { + "#": 7287 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7289 + }, + "vertices": { + "#": 7290 + } + }, + [ + { + "#": 7276 + }, + { + "#": 7277 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7279 + }, + "min": { + "#": 7280 + } + }, + { + "x": 550, + "y": 470 + }, + { + "x": 525, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 457.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7288 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7291 + }, + { + "#": 7292 + }, + { + "#": 7293 + }, + { + "#": 7294 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7296 + }, + "bounds": { + "#": 7299 + }, + "collisionFilter": { + "#": 7302 + }, + "constraintImpulse": { + "#": 7303 + }, + "density": 0.001, + "force": { + "#": 7304 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 348, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7305 + }, + "positionImpulse": { + "#": 7306 + }, + "positionPrev": { + "#": 7307 + }, + "render": { + "#": 7308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7310 + }, + "vertices": { + "#": 7311 + } + }, + [ + { + "#": 7297 + }, + { + "#": 7298 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7300 + }, + "min": { + "#": 7301 + } + }, + { + "x": 575, + "y": 470 + }, + { + "x": 550, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 457.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7309 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7312 + }, + { + "#": 7313 + }, + { + "#": 7314 + }, + { + "#": 7315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7317 + }, + "bounds": { + "#": 7320 + }, + "collisionFilter": { + "#": 7323 + }, + "constraintImpulse": { + "#": 7324 + }, + "density": 0.001, + "force": { + "#": 7325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 349, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7326 + }, + "positionImpulse": { + "#": 7327 + }, + "positionPrev": { + "#": 7328 + }, + "render": { + "#": 7329 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7331 + }, + "vertices": { + "#": 7332 + } + }, + [ + { + "#": 7318 + }, + { + "#": 7319 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7321 + }, + "min": { + "#": 7322 + } + }, + { + "x": 600, + "y": 470 + }, + { + "x": 575, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 457.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7330 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7333 + }, + { + "#": 7334 + }, + { + "#": 7335 + }, + { + "#": 7336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7338 + }, + "bounds": { + "#": 7341 + }, + "collisionFilter": { + "#": 7344 + }, + "constraintImpulse": { + "#": 7345 + }, + "density": 0.001, + "force": { + "#": 7346 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 350, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7347 + }, + "positionImpulse": { + "#": 7348 + }, + "positionPrev": { + "#": 7349 + }, + "render": { + "#": 7350 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7352 + }, + "vertices": { + "#": 7353 + } + }, + [ + { + "#": 7339 + }, + { + "#": 7340 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7342 + }, + "min": { + "#": 7343 + } + }, + { + "x": 625, + "y": 470 + }, + { + "x": 600, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 457.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7351 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7354 + }, + { + "#": 7355 + }, + { + "#": 7356 + }, + { + "#": 7357 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7359 + }, + "bounds": { + "#": 7362 + }, + "collisionFilter": { + "#": 7365 + }, + "constraintImpulse": { + "#": 7366 + }, + "density": 0.001, + "force": { + "#": 7367 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 351, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7368 + }, + "positionImpulse": { + "#": 7369 + }, + "positionPrev": { + "#": 7370 + }, + "render": { + "#": 7371 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7373 + }, + "vertices": { + "#": 7374 + } + }, + [ + { + "#": 7360 + }, + { + "#": 7361 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7363 + }, + "min": { + "#": 7364 + } + }, + { + "x": 650, + "y": 470 + }, + { + "x": 625, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 457.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7372 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7375 + }, + { + "#": 7376 + }, + { + "#": 7377 + }, + { + "#": 7378 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7380 + }, + "bounds": { + "#": 7383 + }, + "collisionFilter": { + "#": 7386 + }, + "constraintImpulse": { + "#": 7387 + }, + "density": 0.001, + "force": { + "#": 7388 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 352, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7389 + }, + "positionImpulse": { + "#": 7390 + }, + "positionPrev": { + "#": 7391 + }, + "render": { + "#": 7392 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7394 + }, + "vertices": { + "#": 7395 + } + }, + [ + { + "#": 7381 + }, + { + "#": 7382 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7384 + }, + "min": { + "#": 7385 + } + }, + { + "x": 675, + "y": 470 + }, + { + "x": 650, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 457.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7393 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7396 + }, + { + "#": 7397 + }, + { + "#": 7398 + }, + { + "#": 7399 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7401 + }, + "bounds": { + "#": 7404 + }, + "collisionFilter": { + "#": 7407 + }, + "constraintImpulse": { + "#": 7408 + }, + "density": 0.001, + "force": { + "#": 7409 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 353, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7410 + }, + "positionImpulse": { + "#": 7411 + }, + "positionPrev": { + "#": 7412 + }, + "render": { + "#": 7413 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7415 + }, + "vertices": { + "#": 7416 + } + }, + [ + { + "#": 7402 + }, + { + "#": 7403 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7405 + }, + "min": { + "#": 7406 + } + }, + { + "x": 700, + "y": 470 + }, + { + "x": 675, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 457.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7414 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7417 + }, + { + "#": 7418 + }, + { + "#": 7419 + }, + { + "#": 7420 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7422 + }, + "bounds": { + "#": 7425 + }, + "collisionFilter": { + "#": 7428 + }, + "constraintImpulse": { + "#": 7429 + }, + "density": 0.001, + "force": { + "#": 7430 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 354, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7431 + }, + "positionImpulse": { + "#": 7432 + }, + "positionPrev": { + "#": 7433 + }, + "render": { + "#": 7434 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7436 + }, + "vertices": { + "#": 7437 + } + }, + [ + { + "#": 7423 + }, + { + "#": 7424 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7426 + }, + "min": { + "#": 7427 + } + }, + { + "x": 725, + "y": 470 + }, + { + "x": 700, + "y": 445 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 457.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7435 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7438 + }, + { + "#": 7439 + }, + { + "#": 7440 + }, + { + "#": 7441 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 445 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 445 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 470 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 470 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7443 + }, + "bounds": { + "#": 7446 + }, + "collisionFilter": { + "#": 7449 + }, + "constraintImpulse": { + "#": 7450 + }, + "density": 0.001, + "force": { + "#": 7451 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 355, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7452 + }, + "positionImpulse": { + "#": 7453 + }, + "positionPrev": { + "#": 7454 + }, + "render": { + "#": 7455 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7457 + }, + "vertices": { + "#": 7458 + } + }, + [ + { + "#": 7444 + }, + { + "#": 7445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7447 + }, + "min": { + "#": 7448 + } + }, + { + "x": 125, + "y": 495 + }, + { + "x": 100, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 482.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7456 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7459 + }, + { + "#": 7460 + }, + { + "#": 7461 + }, + { + "#": 7462 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7464 + }, + "bounds": { + "#": 7467 + }, + "collisionFilter": { + "#": 7470 + }, + "constraintImpulse": { + "#": 7471 + }, + "density": 0.001, + "force": { + "#": 7472 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 356, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7473 + }, + "positionImpulse": { + "#": 7474 + }, + "positionPrev": { + "#": 7475 + }, + "render": { + "#": 7476 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7478 + }, + "vertices": { + "#": 7479 + } + }, + [ + { + "#": 7465 + }, + { + "#": 7466 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7468 + }, + "min": { + "#": 7469 + } + }, + { + "x": 150, + "y": 495 + }, + { + "x": 125, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 482.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7477 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7480 + }, + { + "#": 7481 + }, + { + "#": 7482 + }, + { + "#": 7483 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7485 + }, + "bounds": { + "#": 7488 + }, + "collisionFilter": { + "#": 7491 + }, + "constraintImpulse": { + "#": 7492 + }, + "density": 0.001, + "force": { + "#": 7493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 357, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7494 + }, + "positionImpulse": { + "#": 7495 + }, + "positionPrev": { + "#": 7496 + }, + "render": { + "#": 7497 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7499 + }, + "vertices": { + "#": 7500 + } + }, + [ + { + "#": 7486 + }, + { + "#": 7487 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7489 + }, + "min": { + "#": 7490 + } + }, + { + "x": 175, + "y": 495 + }, + { + "x": 150, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 482.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7498 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7501 + }, + { + "#": 7502 + }, + { + "#": 7503 + }, + { + "#": 7504 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7506 + }, + "bounds": { + "#": 7509 + }, + "collisionFilter": { + "#": 7512 + }, + "constraintImpulse": { + "#": 7513 + }, + "density": 0.001, + "force": { + "#": 7514 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 358, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7515 + }, + "positionImpulse": { + "#": 7516 + }, + "positionPrev": { + "#": 7517 + }, + "render": { + "#": 7518 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7520 + }, + "vertices": { + "#": 7521 + } + }, + [ + { + "#": 7507 + }, + { + "#": 7508 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7510 + }, + "min": { + "#": 7511 + } + }, + { + "x": 200, + "y": 495 + }, + { + "x": 175, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 482.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7519 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7522 + }, + { + "#": 7523 + }, + { + "#": 7524 + }, + { + "#": 7525 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7527 + }, + "bounds": { + "#": 7530 + }, + "collisionFilter": { + "#": 7533 + }, + "constraintImpulse": { + "#": 7534 + }, + "density": 0.001, + "force": { + "#": 7535 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 359, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7536 + }, + "positionImpulse": { + "#": 7537 + }, + "positionPrev": { + "#": 7538 + }, + "render": { + "#": 7539 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7541 + }, + "vertices": { + "#": 7542 + } + }, + [ + { + "#": 7528 + }, + { + "#": 7529 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7531 + }, + "min": { + "#": 7532 + } + }, + { + "x": 225, + "y": 495 + }, + { + "x": 200, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 482.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7540 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7543 + }, + { + "#": 7544 + }, + { + "#": 7545 + }, + { + "#": 7546 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7548 + }, + "bounds": { + "#": 7551 + }, + "collisionFilter": { + "#": 7554 + }, + "constraintImpulse": { + "#": 7555 + }, + "density": 0.001, + "force": { + "#": 7556 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 360, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7557 + }, + "positionImpulse": { + "#": 7558 + }, + "positionPrev": { + "#": 7559 + }, + "render": { + "#": 7560 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7562 + }, + "vertices": { + "#": 7563 + } + }, + [ + { + "#": 7549 + }, + { + "#": 7550 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7552 + }, + "min": { + "#": 7553 + } + }, + { + "x": 250, + "y": 495 + }, + { + "x": 225, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 482.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7561 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7564 + }, + { + "#": 7565 + }, + { + "#": 7566 + }, + { + "#": 7567 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7569 + }, + "bounds": { + "#": 7572 + }, + "collisionFilter": { + "#": 7575 + }, + "constraintImpulse": { + "#": 7576 + }, + "density": 0.001, + "force": { + "#": 7577 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 361, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7578 + }, + "positionImpulse": { + "#": 7579 + }, + "positionPrev": { + "#": 7580 + }, + "render": { + "#": 7581 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7583 + }, + "vertices": { + "#": 7584 + } + }, + [ + { + "#": 7570 + }, + { + "#": 7571 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7573 + }, + "min": { + "#": 7574 + } + }, + { + "x": 275, + "y": 495 + }, + { + "x": 250, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 482.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7582 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7585 + }, + { + "#": 7586 + }, + { + "#": 7587 + }, + { + "#": 7588 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7590 + }, + "bounds": { + "#": 7593 + }, + "collisionFilter": { + "#": 7596 + }, + "constraintImpulse": { + "#": 7597 + }, + "density": 0.001, + "force": { + "#": 7598 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 362, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7599 + }, + "positionImpulse": { + "#": 7600 + }, + "positionPrev": { + "#": 7601 + }, + "render": { + "#": 7602 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7604 + }, + "vertices": { + "#": 7605 + } + }, + [ + { + "#": 7591 + }, + { + "#": 7592 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7594 + }, + "min": { + "#": 7595 + } + }, + { + "x": 300, + "y": 495 + }, + { + "x": 275, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 482.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7603 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7606 + }, + { + "#": 7607 + }, + { + "#": 7608 + }, + { + "#": 7609 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7611 + }, + "bounds": { + "#": 7614 + }, + "collisionFilter": { + "#": 7617 + }, + "constraintImpulse": { + "#": 7618 + }, + "density": 0.001, + "force": { + "#": 7619 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 363, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7620 + }, + "positionImpulse": { + "#": 7621 + }, + "positionPrev": { + "#": 7622 + }, + "render": { + "#": 7623 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7625 + }, + "vertices": { + "#": 7626 + } + }, + [ + { + "#": 7612 + }, + { + "#": 7613 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7615 + }, + "min": { + "#": 7616 + } + }, + { + "x": 325, + "y": 495 + }, + { + "x": 300, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 482.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7624 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7627 + }, + { + "#": 7628 + }, + { + "#": 7629 + }, + { + "#": 7630 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7632 + }, + "bounds": { + "#": 7635 + }, + "collisionFilter": { + "#": 7638 + }, + "constraintImpulse": { + "#": 7639 + }, + "density": 0.001, + "force": { + "#": 7640 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 364, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7641 + }, + "positionImpulse": { + "#": 7642 + }, + "positionPrev": { + "#": 7643 + }, + "render": { + "#": 7644 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7646 + }, + "vertices": { + "#": 7647 + } + }, + [ + { + "#": 7633 + }, + { + "#": 7634 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7636 + }, + "min": { + "#": 7637 + } + }, + { + "x": 350, + "y": 495 + }, + { + "x": 325, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 482.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7645 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7648 + }, + { + "#": 7649 + }, + { + "#": 7650 + }, + { + "#": 7651 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7653 + }, + "bounds": { + "#": 7656 + }, + "collisionFilter": { + "#": 7659 + }, + "constraintImpulse": { + "#": 7660 + }, + "density": 0.001, + "force": { + "#": 7661 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 365, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7662 + }, + "positionImpulse": { + "#": 7663 + }, + "positionPrev": { + "#": 7664 + }, + "render": { + "#": 7665 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7667 + }, + "vertices": { + "#": 7668 + } + }, + [ + { + "#": 7654 + }, + { + "#": 7655 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7657 + }, + "min": { + "#": 7658 + } + }, + { + "x": 375, + "y": 495 + }, + { + "x": 350, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 482.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7666 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7669 + }, + { + "#": 7670 + }, + { + "#": 7671 + }, + { + "#": 7672 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7674 + }, + "bounds": { + "#": 7677 + }, + "collisionFilter": { + "#": 7680 + }, + "constraintImpulse": { + "#": 7681 + }, + "density": 0.001, + "force": { + "#": 7682 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 366, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7683 + }, + "positionImpulse": { + "#": 7684 + }, + "positionPrev": { + "#": 7685 + }, + "render": { + "#": 7686 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7688 + }, + "vertices": { + "#": 7689 + } + }, + [ + { + "#": 7675 + }, + { + "#": 7676 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7678 + }, + "min": { + "#": 7679 + } + }, + { + "x": 400, + "y": 495 + }, + { + "x": 375, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 482.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7687 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7690 + }, + { + "#": 7691 + }, + { + "#": 7692 + }, + { + "#": 7693 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7695 + }, + "bounds": { + "#": 7698 + }, + "collisionFilter": { + "#": 7701 + }, + "constraintImpulse": { + "#": 7702 + }, + "density": 0.001, + "force": { + "#": 7703 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 367, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7704 + }, + "positionImpulse": { + "#": 7705 + }, + "positionPrev": { + "#": 7706 + }, + "render": { + "#": 7707 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7709 + }, + "vertices": { + "#": 7710 + } + }, + [ + { + "#": 7696 + }, + { + "#": 7697 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7699 + }, + "min": { + "#": 7700 + } + }, + { + "x": 425, + "y": 495 + }, + { + "x": 400, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 482.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7708 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7711 + }, + { + "#": 7712 + }, + { + "#": 7713 + }, + { + "#": 7714 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7716 + }, + "bounds": { + "#": 7719 + }, + "collisionFilter": { + "#": 7722 + }, + "constraintImpulse": { + "#": 7723 + }, + "density": 0.001, + "force": { + "#": 7724 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 368, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7725 + }, + "positionImpulse": { + "#": 7726 + }, + "positionPrev": { + "#": 7727 + }, + "render": { + "#": 7728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7730 + }, + "vertices": { + "#": 7731 + } + }, + [ + { + "#": 7717 + }, + { + "#": 7718 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7720 + }, + "min": { + "#": 7721 + } + }, + { + "x": 450, + "y": 495 + }, + { + "x": 425, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 482.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7729 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7732 + }, + { + "#": 7733 + }, + { + "#": 7734 + }, + { + "#": 7735 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7737 + }, + "bounds": { + "#": 7740 + }, + "collisionFilter": { + "#": 7743 + }, + "constraintImpulse": { + "#": 7744 + }, + "density": 0.001, + "force": { + "#": 7745 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 369, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7746 + }, + "positionImpulse": { + "#": 7747 + }, + "positionPrev": { + "#": 7748 + }, + "render": { + "#": 7749 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7751 + }, + "vertices": { + "#": 7752 + } + }, + [ + { + "#": 7738 + }, + { + "#": 7739 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7741 + }, + "min": { + "#": 7742 + } + }, + { + "x": 475, + "y": 495 + }, + { + "x": 450, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 482.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7750 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7753 + }, + { + "#": 7754 + }, + { + "#": 7755 + }, + { + "#": 7756 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7758 + }, + "bounds": { + "#": 7761 + }, + "collisionFilter": { + "#": 7764 + }, + "constraintImpulse": { + "#": 7765 + }, + "density": 0.001, + "force": { + "#": 7766 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 370, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7767 + }, + "positionImpulse": { + "#": 7768 + }, + "positionPrev": { + "#": 7769 + }, + "render": { + "#": 7770 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7772 + }, + "vertices": { + "#": 7773 + } + }, + [ + { + "#": 7759 + }, + { + "#": 7760 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7762 + }, + "min": { + "#": 7763 + } + }, + { + "x": 500, + "y": 495 + }, + { + "x": 475, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 482.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7771 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7774 + }, + { + "#": 7775 + }, + { + "#": 7776 + }, + { + "#": 7777 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7779 + }, + "bounds": { + "#": 7782 + }, + "collisionFilter": { + "#": 7785 + }, + "constraintImpulse": { + "#": 7786 + }, + "density": 0.001, + "force": { + "#": 7787 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 371, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7788 + }, + "positionImpulse": { + "#": 7789 + }, + "positionPrev": { + "#": 7790 + }, + "render": { + "#": 7791 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7793 + }, + "vertices": { + "#": 7794 + } + }, + [ + { + "#": 7780 + }, + { + "#": 7781 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7783 + }, + "min": { + "#": 7784 + } + }, + { + "x": 525, + "y": 495 + }, + { + "x": 500, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 482.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7792 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7795 + }, + { + "#": 7796 + }, + { + "#": 7797 + }, + { + "#": 7798 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7800 + }, + "bounds": { + "#": 7803 + }, + "collisionFilter": { + "#": 7806 + }, + "constraintImpulse": { + "#": 7807 + }, + "density": 0.001, + "force": { + "#": 7808 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 372, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7809 + }, + "positionImpulse": { + "#": 7810 + }, + "positionPrev": { + "#": 7811 + }, + "render": { + "#": 7812 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7814 + }, + "vertices": { + "#": 7815 + } + }, + [ + { + "#": 7801 + }, + { + "#": 7802 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7804 + }, + "min": { + "#": 7805 + } + }, + { + "x": 550, + "y": 495 + }, + { + "x": 525, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 482.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7813 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7816 + }, + { + "#": 7817 + }, + { + "#": 7818 + }, + { + "#": 7819 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7821 + }, + "bounds": { + "#": 7824 + }, + "collisionFilter": { + "#": 7827 + }, + "constraintImpulse": { + "#": 7828 + }, + "density": 0.001, + "force": { + "#": 7829 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 373, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7830 + }, + "positionImpulse": { + "#": 7831 + }, + "positionPrev": { + "#": 7832 + }, + "render": { + "#": 7833 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7835 + }, + "vertices": { + "#": 7836 + } + }, + [ + { + "#": 7822 + }, + { + "#": 7823 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7825 + }, + "min": { + "#": 7826 + } + }, + { + "x": 575, + "y": 495 + }, + { + "x": 550, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 482.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7834 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7837 + }, + { + "#": 7838 + }, + { + "#": 7839 + }, + { + "#": 7840 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7842 + }, + "bounds": { + "#": 7845 + }, + "collisionFilter": { + "#": 7848 + }, + "constraintImpulse": { + "#": 7849 + }, + "density": 0.001, + "force": { + "#": 7850 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 374, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7851 + }, + "positionImpulse": { + "#": 7852 + }, + "positionPrev": { + "#": 7853 + }, + "render": { + "#": 7854 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7856 + }, + "vertices": { + "#": 7857 + } + }, + [ + { + "#": 7843 + }, + { + "#": 7844 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7846 + }, + "min": { + "#": 7847 + } + }, + { + "x": 600, + "y": 495 + }, + { + "x": 575, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 482.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7855 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7858 + }, + { + "#": 7859 + }, + { + "#": 7860 + }, + { + "#": 7861 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7863 + }, + "bounds": { + "#": 7866 + }, + "collisionFilter": { + "#": 7869 + }, + "constraintImpulse": { + "#": 7870 + }, + "density": 0.001, + "force": { + "#": 7871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 375, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7872 + }, + "positionImpulse": { + "#": 7873 + }, + "positionPrev": { + "#": 7874 + }, + "render": { + "#": 7875 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7877 + }, + "vertices": { + "#": 7878 + } + }, + [ + { + "#": 7864 + }, + { + "#": 7865 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7867 + }, + "min": { + "#": 7868 + } + }, + { + "x": 625, + "y": 495 + }, + { + "x": 600, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 482.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7876 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7879 + }, + { + "#": 7880 + }, + { + "#": 7881 + }, + { + "#": 7882 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7884 + }, + "bounds": { + "#": 7887 + }, + "collisionFilter": { + "#": 7890 + }, + "constraintImpulse": { + "#": 7891 + }, + "density": 0.001, + "force": { + "#": 7892 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 376, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7893 + }, + "positionImpulse": { + "#": 7894 + }, + "positionPrev": { + "#": 7895 + }, + "render": { + "#": 7896 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7898 + }, + "vertices": { + "#": 7899 + } + }, + [ + { + "#": 7885 + }, + { + "#": 7886 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7888 + }, + "min": { + "#": 7889 + } + }, + { + "x": 650, + "y": 495 + }, + { + "x": 625, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 482.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7897 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7900 + }, + { + "#": 7901 + }, + { + "#": 7902 + }, + { + "#": 7903 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7905 + }, + "bounds": { + "#": 7908 + }, + "collisionFilter": { + "#": 7911 + }, + "constraintImpulse": { + "#": 7912 + }, + "density": 0.001, + "force": { + "#": 7913 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 377, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7914 + }, + "positionImpulse": { + "#": 7915 + }, + "positionPrev": { + "#": 7916 + }, + "render": { + "#": 7917 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7919 + }, + "vertices": { + "#": 7920 + } + }, + [ + { + "#": 7906 + }, + { + "#": 7907 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7909 + }, + "min": { + "#": 7910 + } + }, + { + "x": 675, + "y": 495 + }, + { + "x": 650, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 482.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7918 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7921 + }, + { + "#": 7922 + }, + { + "#": 7923 + }, + { + "#": 7924 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7926 + }, + "bounds": { + "#": 7929 + }, + "collisionFilter": { + "#": 7932 + }, + "constraintImpulse": { + "#": 7933 + }, + "density": 0.001, + "force": { + "#": 7934 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 378, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7935 + }, + "positionImpulse": { + "#": 7936 + }, + "positionPrev": { + "#": 7937 + }, + "render": { + "#": 7938 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7940 + }, + "vertices": { + "#": 7941 + } + }, + [ + { + "#": 7927 + }, + { + "#": 7928 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7930 + }, + "min": { + "#": 7931 + } + }, + { + "x": 700, + "y": 495 + }, + { + "x": 675, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 482.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7939 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7942 + }, + { + "#": 7943 + }, + { + "#": 7944 + }, + { + "#": 7945 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7947 + }, + "bounds": { + "#": 7950 + }, + "collisionFilter": { + "#": 7953 + }, + "constraintImpulse": { + "#": 7954 + }, + "density": 0.001, + "force": { + "#": 7955 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 379, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7956 + }, + "positionImpulse": { + "#": 7957 + }, + "positionPrev": { + "#": 7958 + }, + "render": { + "#": 7959 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7961 + }, + "vertices": { + "#": 7962 + } + }, + [ + { + "#": 7948 + }, + { + "#": 7949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7951 + }, + "min": { + "#": 7952 + } + }, + { + "x": 725, + "y": 495 + }, + { + "x": 700, + "y": 470 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 482.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7960 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7963 + }, + { + "#": 7964 + }, + { + "#": 7965 + }, + { + "#": 7966 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 470 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 470 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 495 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 495 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7968 + }, + "bounds": { + "#": 7971 + }, + "collisionFilter": { + "#": 7974 + }, + "constraintImpulse": { + "#": 7975 + }, + "density": 0.001, + "force": { + "#": 7976 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 380, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7977 + }, + "positionImpulse": { + "#": 7978 + }, + "positionPrev": { + "#": 7979 + }, + "render": { + "#": 7980 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7982 + }, + "vertices": { + "#": 7983 + } + }, + [ + { + "#": 7969 + }, + { + "#": 7970 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7972 + }, + "min": { + "#": 7973 + } + }, + { + "x": 125, + "y": 520 + }, + { + "x": 100, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 507.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7981 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 7984 + }, + { + "#": 7985 + }, + { + "#": 7986 + }, + { + "#": 7987 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7989 + }, + "bounds": { + "#": 7992 + }, + "collisionFilter": { + "#": 7995 + }, + "constraintImpulse": { + "#": 7996 + }, + "density": 0.001, + "force": { + "#": 7997 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 381, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7998 + }, + "positionImpulse": { + "#": 7999 + }, + "positionPrev": { + "#": 8000 + }, + "render": { + "#": 8001 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8003 + }, + "vertices": { + "#": 8004 + } + }, + [ + { + "#": 7990 + }, + { + "#": 7991 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7993 + }, + "min": { + "#": 7994 + } + }, + { + "x": 150, + "y": 520 + }, + { + "x": 125, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 507.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8002 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8005 + }, + { + "#": 8006 + }, + { + "#": 8007 + }, + { + "#": 8008 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8010 + }, + "bounds": { + "#": 8013 + }, + "collisionFilter": { + "#": 8016 + }, + "constraintImpulse": { + "#": 8017 + }, + "density": 0.001, + "force": { + "#": 8018 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 382, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8019 + }, + "positionImpulse": { + "#": 8020 + }, + "positionPrev": { + "#": 8021 + }, + "render": { + "#": 8022 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8024 + }, + "vertices": { + "#": 8025 + } + }, + [ + { + "#": 8011 + }, + { + "#": 8012 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8014 + }, + "min": { + "#": 8015 + } + }, + { + "x": 175, + "y": 520 + }, + { + "x": 150, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 507.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8023 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8026 + }, + { + "#": 8027 + }, + { + "#": 8028 + }, + { + "#": 8029 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8031 + }, + "bounds": { + "#": 8034 + }, + "collisionFilter": { + "#": 8037 + }, + "constraintImpulse": { + "#": 8038 + }, + "density": 0.001, + "force": { + "#": 8039 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 383, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8040 + }, + "positionImpulse": { + "#": 8041 + }, + "positionPrev": { + "#": 8042 + }, + "render": { + "#": 8043 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8045 + }, + "vertices": { + "#": 8046 + } + }, + [ + { + "#": 8032 + }, + { + "#": 8033 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8035 + }, + "min": { + "#": 8036 + } + }, + { + "x": 200, + "y": 520 + }, + { + "x": 175, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 507.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8044 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8047 + }, + { + "#": 8048 + }, + { + "#": 8049 + }, + { + "#": 8050 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8052 + }, + "bounds": { + "#": 8055 + }, + "collisionFilter": { + "#": 8058 + }, + "constraintImpulse": { + "#": 8059 + }, + "density": 0.001, + "force": { + "#": 8060 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 384, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8061 + }, + "positionImpulse": { + "#": 8062 + }, + "positionPrev": { + "#": 8063 + }, + "render": { + "#": 8064 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8066 + }, + "vertices": { + "#": 8067 + } + }, + [ + { + "#": 8053 + }, + { + "#": 8054 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8056 + }, + "min": { + "#": 8057 + } + }, + { + "x": 225, + "y": 520 + }, + { + "x": 200, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 507.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8065 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8068 + }, + { + "#": 8069 + }, + { + "#": 8070 + }, + { + "#": 8071 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8073 + }, + "bounds": { + "#": 8076 + }, + "collisionFilter": { + "#": 8079 + }, + "constraintImpulse": { + "#": 8080 + }, + "density": 0.001, + "force": { + "#": 8081 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 385, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8082 + }, + "positionImpulse": { + "#": 8083 + }, + "positionPrev": { + "#": 8084 + }, + "render": { + "#": 8085 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8087 + }, + "vertices": { + "#": 8088 + } + }, + [ + { + "#": 8074 + }, + { + "#": 8075 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8077 + }, + "min": { + "#": 8078 + } + }, + { + "x": 250, + "y": 520 + }, + { + "x": 225, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 507.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8086 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8089 + }, + { + "#": 8090 + }, + { + "#": 8091 + }, + { + "#": 8092 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8094 + }, + "bounds": { + "#": 8097 + }, + "collisionFilter": { + "#": 8100 + }, + "constraintImpulse": { + "#": 8101 + }, + "density": 0.001, + "force": { + "#": 8102 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 386, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8103 + }, + "positionImpulse": { + "#": 8104 + }, + "positionPrev": { + "#": 8105 + }, + "render": { + "#": 8106 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8108 + }, + "vertices": { + "#": 8109 + } + }, + [ + { + "#": 8095 + }, + { + "#": 8096 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8098 + }, + "min": { + "#": 8099 + } + }, + { + "x": 275, + "y": 520 + }, + { + "x": 250, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 507.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8107 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8110 + }, + { + "#": 8111 + }, + { + "#": 8112 + }, + { + "#": 8113 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8115 + }, + "bounds": { + "#": 8118 + }, + "collisionFilter": { + "#": 8121 + }, + "constraintImpulse": { + "#": 8122 + }, + "density": 0.001, + "force": { + "#": 8123 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 387, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8124 + }, + "positionImpulse": { + "#": 8125 + }, + "positionPrev": { + "#": 8126 + }, + "render": { + "#": 8127 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8129 + }, + "vertices": { + "#": 8130 + } + }, + [ + { + "#": 8116 + }, + { + "#": 8117 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8119 + }, + "min": { + "#": 8120 + } + }, + { + "x": 300, + "y": 520 + }, + { + "x": 275, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 507.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8128 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8131 + }, + { + "#": 8132 + }, + { + "#": 8133 + }, + { + "#": 8134 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8136 + }, + "bounds": { + "#": 8139 + }, + "collisionFilter": { + "#": 8142 + }, + "constraintImpulse": { + "#": 8143 + }, + "density": 0.001, + "force": { + "#": 8144 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 388, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8145 + }, + "positionImpulse": { + "#": 8146 + }, + "positionPrev": { + "#": 8147 + }, + "render": { + "#": 8148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8150 + }, + "vertices": { + "#": 8151 + } + }, + [ + { + "#": 8137 + }, + { + "#": 8138 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8140 + }, + "min": { + "#": 8141 + } + }, + { + "x": 325, + "y": 520 + }, + { + "x": 300, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 507.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8149 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8152 + }, + { + "#": 8153 + }, + { + "#": 8154 + }, + { + "#": 8155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8157 + }, + "bounds": { + "#": 8160 + }, + "collisionFilter": { + "#": 8163 + }, + "constraintImpulse": { + "#": 8164 + }, + "density": 0.001, + "force": { + "#": 8165 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 389, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8166 + }, + "positionImpulse": { + "#": 8167 + }, + "positionPrev": { + "#": 8168 + }, + "render": { + "#": 8169 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8171 + }, + "vertices": { + "#": 8172 + } + }, + [ + { + "#": 8158 + }, + { + "#": 8159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8161 + }, + "min": { + "#": 8162 + } + }, + { + "x": 350, + "y": 520 + }, + { + "x": 325, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 507.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8170 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8173 + }, + { + "#": 8174 + }, + { + "#": 8175 + }, + { + "#": 8176 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8178 + }, + "bounds": { + "#": 8181 + }, + "collisionFilter": { + "#": 8184 + }, + "constraintImpulse": { + "#": 8185 + }, + "density": 0.001, + "force": { + "#": 8186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 390, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8187 + }, + "positionImpulse": { + "#": 8188 + }, + "positionPrev": { + "#": 8189 + }, + "render": { + "#": 8190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8192 + }, + "vertices": { + "#": 8193 + } + }, + [ + { + "#": 8179 + }, + { + "#": 8180 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8182 + }, + "min": { + "#": 8183 + } + }, + { + "x": 375, + "y": 520 + }, + { + "x": 350, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 507.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8191 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8194 + }, + { + "#": 8195 + }, + { + "#": 8196 + }, + { + "#": 8197 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8199 + }, + "bounds": { + "#": 8202 + }, + "collisionFilter": { + "#": 8205 + }, + "constraintImpulse": { + "#": 8206 + }, + "density": 0.001, + "force": { + "#": 8207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 391, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8208 + }, + "positionImpulse": { + "#": 8209 + }, + "positionPrev": { + "#": 8210 + }, + "render": { + "#": 8211 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8213 + }, + "vertices": { + "#": 8214 + } + }, + [ + { + "#": 8200 + }, + { + "#": 8201 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8203 + }, + "min": { + "#": 8204 + } + }, + { + "x": 400, + "y": 520 + }, + { + "x": 375, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 507.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8212 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8215 + }, + { + "#": 8216 + }, + { + "#": 8217 + }, + { + "#": 8218 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8220 + }, + "bounds": { + "#": 8223 + }, + "collisionFilter": { + "#": 8226 + }, + "constraintImpulse": { + "#": 8227 + }, + "density": 0.001, + "force": { + "#": 8228 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 392, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8229 + }, + "positionImpulse": { + "#": 8230 + }, + "positionPrev": { + "#": 8231 + }, + "render": { + "#": 8232 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8234 + }, + "vertices": { + "#": 8235 + } + }, + [ + { + "#": 8221 + }, + { + "#": 8222 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8224 + }, + "min": { + "#": 8225 + } + }, + { + "x": 425, + "y": 520 + }, + { + "x": 400, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 507.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8233 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8236 + }, + { + "#": 8237 + }, + { + "#": 8238 + }, + { + "#": 8239 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8241 + }, + "bounds": { + "#": 8244 + }, + "collisionFilter": { + "#": 8247 + }, + "constraintImpulse": { + "#": 8248 + }, + "density": 0.001, + "force": { + "#": 8249 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 393, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8250 + }, + "positionImpulse": { + "#": 8251 + }, + "positionPrev": { + "#": 8252 + }, + "render": { + "#": 8253 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8255 + }, + "vertices": { + "#": 8256 + } + }, + [ + { + "#": 8242 + }, + { + "#": 8243 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8245 + }, + "min": { + "#": 8246 + } + }, + { + "x": 450, + "y": 520 + }, + { + "x": 425, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 507.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8254 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8257 + }, + { + "#": 8258 + }, + { + "#": 8259 + }, + { + "#": 8260 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8262 + }, + "bounds": { + "#": 8265 + }, + "collisionFilter": { + "#": 8268 + }, + "constraintImpulse": { + "#": 8269 + }, + "density": 0.001, + "force": { + "#": 8270 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 394, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8271 + }, + "positionImpulse": { + "#": 8272 + }, + "positionPrev": { + "#": 8273 + }, + "render": { + "#": 8274 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8276 + }, + "vertices": { + "#": 8277 + } + }, + [ + { + "#": 8263 + }, + { + "#": 8264 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8266 + }, + "min": { + "#": 8267 + } + }, + { + "x": 475, + "y": 520 + }, + { + "x": 450, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 507.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8275 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8278 + }, + { + "#": 8279 + }, + { + "#": 8280 + }, + { + "#": 8281 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8283 + }, + "bounds": { + "#": 8286 + }, + "collisionFilter": { + "#": 8289 + }, + "constraintImpulse": { + "#": 8290 + }, + "density": 0.001, + "force": { + "#": 8291 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 395, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8292 + }, + "positionImpulse": { + "#": 8293 + }, + "positionPrev": { + "#": 8294 + }, + "render": { + "#": 8295 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8297 + }, + "vertices": { + "#": 8298 + } + }, + [ + { + "#": 8284 + }, + { + "#": 8285 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8287 + }, + "min": { + "#": 8288 + } + }, + { + "x": 500, + "y": 520 + }, + { + "x": 475, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 507.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8296 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8299 + }, + { + "#": 8300 + }, + { + "#": 8301 + }, + { + "#": 8302 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8304 + }, + "bounds": { + "#": 8307 + }, + "collisionFilter": { + "#": 8310 + }, + "constraintImpulse": { + "#": 8311 + }, + "density": 0.001, + "force": { + "#": 8312 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 396, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8313 + }, + "positionImpulse": { + "#": 8314 + }, + "positionPrev": { + "#": 8315 + }, + "render": { + "#": 8316 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8318 + }, + "vertices": { + "#": 8319 + } + }, + [ + { + "#": 8305 + }, + { + "#": 8306 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8308 + }, + "min": { + "#": 8309 + } + }, + { + "x": 525, + "y": 520 + }, + { + "x": 500, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 507.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8317 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8320 + }, + { + "#": 8321 + }, + { + "#": 8322 + }, + { + "#": 8323 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8325 + }, + "bounds": { + "#": 8328 + }, + "collisionFilter": { + "#": 8331 + }, + "constraintImpulse": { + "#": 8332 + }, + "density": 0.001, + "force": { + "#": 8333 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 397, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8334 + }, + "positionImpulse": { + "#": 8335 + }, + "positionPrev": { + "#": 8336 + }, + "render": { + "#": 8337 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8339 + }, + "vertices": { + "#": 8340 + } + }, + [ + { + "#": 8326 + }, + { + "#": 8327 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8329 + }, + "min": { + "#": 8330 + } + }, + { + "x": 550, + "y": 520 + }, + { + "x": 525, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 507.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8338 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8341 + }, + { + "#": 8342 + }, + { + "#": 8343 + }, + { + "#": 8344 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8346 + }, + "bounds": { + "#": 8349 + }, + "collisionFilter": { + "#": 8352 + }, + "constraintImpulse": { + "#": 8353 + }, + "density": 0.001, + "force": { + "#": 8354 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 398, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8355 + }, + "positionImpulse": { + "#": 8356 + }, + "positionPrev": { + "#": 8357 + }, + "render": { + "#": 8358 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8360 + }, + "vertices": { + "#": 8361 + } + }, + [ + { + "#": 8347 + }, + { + "#": 8348 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8350 + }, + "min": { + "#": 8351 + } + }, + { + "x": 575, + "y": 520 + }, + { + "x": 550, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 507.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8359 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8362 + }, + { + "#": 8363 + }, + { + "#": 8364 + }, + { + "#": 8365 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8367 + }, + "bounds": { + "#": 8370 + }, + "collisionFilter": { + "#": 8373 + }, + "constraintImpulse": { + "#": 8374 + }, + "density": 0.001, + "force": { + "#": 8375 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 399, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8376 + }, + "positionImpulse": { + "#": 8377 + }, + "positionPrev": { + "#": 8378 + }, + "render": { + "#": 8379 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8381 + }, + "vertices": { + "#": 8382 + } + }, + [ + { + "#": 8368 + }, + { + "#": 8369 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8371 + }, + "min": { + "#": 8372 + } + }, + { + "x": 600, + "y": 520 + }, + { + "x": 575, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 507.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8380 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8383 + }, + { + "#": 8384 + }, + { + "#": 8385 + }, + { + "#": 8386 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8388 + }, + "bounds": { + "#": 8391 + }, + "collisionFilter": { + "#": 8394 + }, + "constraintImpulse": { + "#": 8395 + }, + "density": 0.001, + "force": { + "#": 8396 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 400, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8397 + }, + "positionImpulse": { + "#": 8398 + }, + "positionPrev": { + "#": 8399 + }, + "render": { + "#": 8400 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8402 + }, + "vertices": { + "#": 8403 + } + }, + [ + { + "#": 8389 + }, + { + "#": 8390 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8392 + }, + "min": { + "#": 8393 + } + }, + { + "x": 625, + "y": 520 + }, + { + "x": 600, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 507.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8401 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8404 + }, + { + "#": 8405 + }, + { + "#": 8406 + }, + { + "#": 8407 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8409 + }, + "bounds": { + "#": 8412 + }, + "collisionFilter": { + "#": 8415 + }, + "constraintImpulse": { + "#": 8416 + }, + "density": 0.001, + "force": { + "#": 8417 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 401, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8418 + }, + "positionImpulse": { + "#": 8419 + }, + "positionPrev": { + "#": 8420 + }, + "render": { + "#": 8421 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8423 + }, + "vertices": { + "#": 8424 + } + }, + [ + { + "#": 8410 + }, + { + "#": 8411 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8413 + }, + "min": { + "#": 8414 + } + }, + { + "x": 650, + "y": 520 + }, + { + "x": 625, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 507.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8422 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8425 + }, + { + "#": 8426 + }, + { + "#": 8427 + }, + { + "#": 8428 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8430 + }, + "bounds": { + "#": 8433 + }, + "collisionFilter": { + "#": 8436 + }, + "constraintImpulse": { + "#": 8437 + }, + "density": 0.001, + "force": { + "#": 8438 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 402, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8439 + }, + "positionImpulse": { + "#": 8440 + }, + "positionPrev": { + "#": 8441 + }, + "render": { + "#": 8442 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8444 + }, + "vertices": { + "#": 8445 + } + }, + [ + { + "#": 8431 + }, + { + "#": 8432 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8434 + }, + "min": { + "#": 8435 + } + }, + { + "x": 675, + "y": 520 + }, + { + "x": 650, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 507.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8443 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8446 + }, + { + "#": 8447 + }, + { + "#": 8448 + }, + { + "#": 8449 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8451 + }, + "bounds": { + "#": 8454 + }, + "collisionFilter": { + "#": 8457 + }, + "constraintImpulse": { + "#": 8458 + }, + "density": 0.001, + "force": { + "#": 8459 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 403, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8460 + }, + "positionImpulse": { + "#": 8461 + }, + "positionPrev": { + "#": 8462 + }, + "render": { + "#": 8463 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8465 + }, + "vertices": { + "#": 8466 + } + }, + [ + { + "#": 8452 + }, + { + "#": 8453 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8455 + }, + "min": { + "#": 8456 + } + }, + { + "x": 700, + "y": 520 + }, + { + "x": 675, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 507.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8464 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8467 + }, + { + "#": 8468 + }, + { + "#": 8469 + }, + { + "#": 8470 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8472 + }, + "bounds": { + "#": 8475 + }, + "collisionFilter": { + "#": 8478 + }, + "constraintImpulse": { + "#": 8479 + }, + "density": 0.001, + "force": { + "#": 8480 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 404, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8481 + }, + "positionImpulse": { + "#": 8482 + }, + "positionPrev": { + "#": 8483 + }, + "render": { + "#": 8484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8486 + }, + "vertices": { + "#": 8487 + } + }, + [ + { + "#": 8473 + }, + { + "#": 8474 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8476 + }, + "min": { + "#": 8477 + } + }, + { + "x": 725, + "y": 520 + }, + { + "x": 700, + "y": 495 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 507.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8485 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8488 + }, + { + "#": 8489 + }, + { + "#": 8490 + }, + { + "#": 8491 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 495 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 520 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 520 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8493 + }, + "bounds": { + "#": 8496 + }, + "collisionFilter": { + "#": 8499 + }, + "constraintImpulse": { + "#": 8500 + }, + "density": 0.001, + "force": { + "#": 8501 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 405, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8502 + }, + "positionImpulse": { + "#": 8503 + }, + "positionPrev": { + "#": 8504 + }, + "render": { + "#": 8505 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8507 + }, + "vertices": { + "#": 8508 + } + }, + [ + { + "#": 8494 + }, + { + "#": 8495 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8497 + }, + "min": { + "#": 8498 + } + }, + { + "x": 125, + "y": 545 + }, + { + "x": 100, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 532.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8506 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8509 + }, + { + "#": 8510 + }, + { + "#": 8511 + }, + { + "#": 8512 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8514 + }, + "bounds": { + "#": 8517 + }, + "collisionFilter": { + "#": 8520 + }, + "constraintImpulse": { + "#": 8521 + }, + "density": 0.001, + "force": { + "#": 8522 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 406, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8523 + }, + "positionImpulse": { + "#": 8524 + }, + "positionPrev": { + "#": 8525 + }, + "render": { + "#": 8526 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8528 + }, + "vertices": { + "#": 8529 + } + }, + [ + { + "#": 8515 + }, + { + "#": 8516 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8518 + }, + "min": { + "#": 8519 + } + }, + { + "x": 150, + "y": 545 + }, + { + "x": 125, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 532.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8527 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8530 + }, + { + "#": 8531 + }, + { + "#": 8532 + }, + { + "#": 8533 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8535 + }, + "bounds": { + "#": 8538 + }, + "collisionFilter": { + "#": 8541 + }, + "constraintImpulse": { + "#": 8542 + }, + "density": 0.001, + "force": { + "#": 8543 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 407, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8544 + }, + "positionImpulse": { + "#": 8545 + }, + "positionPrev": { + "#": 8546 + }, + "render": { + "#": 8547 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8549 + }, + "vertices": { + "#": 8550 + } + }, + [ + { + "#": 8536 + }, + { + "#": 8537 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8539 + }, + "min": { + "#": 8540 + } + }, + { + "x": 175, + "y": 545 + }, + { + "x": 150, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 532.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8548 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8551 + }, + { + "#": 8552 + }, + { + "#": 8553 + }, + { + "#": 8554 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8556 + }, + "bounds": { + "#": 8559 + }, + "collisionFilter": { + "#": 8562 + }, + "constraintImpulse": { + "#": 8563 + }, + "density": 0.001, + "force": { + "#": 8564 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 408, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8565 + }, + "positionImpulse": { + "#": 8566 + }, + "positionPrev": { + "#": 8567 + }, + "render": { + "#": 8568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8570 + }, + "vertices": { + "#": 8571 + } + }, + [ + { + "#": 8557 + }, + { + "#": 8558 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8560 + }, + "min": { + "#": 8561 + } + }, + { + "x": 200, + "y": 545 + }, + { + "x": 175, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 532.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8569 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8572 + }, + { + "#": 8573 + }, + { + "#": 8574 + }, + { + "#": 8575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8577 + }, + "bounds": { + "#": 8580 + }, + "collisionFilter": { + "#": 8583 + }, + "constraintImpulse": { + "#": 8584 + }, + "density": 0.001, + "force": { + "#": 8585 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 409, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8586 + }, + "positionImpulse": { + "#": 8587 + }, + "positionPrev": { + "#": 8588 + }, + "render": { + "#": 8589 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8591 + }, + "vertices": { + "#": 8592 + } + }, + [ + { + "#": 8578 + }, + { + "#": 8579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8581 + }, + "min": { + "#": 8582 + } + }, + { + "x": 225, + "y": 545 + }, + { + "x": 200, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 532.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8590 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8593 + }, + { + "#": 8594 + }, + { + "#": 8595 + }, + { + "#": 8596 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8598 + }, + "bounds": { + "#": 8601 + }, + "collisionFilter": { + "#": 8604 + }, + "constraintImpulse": { + "#": 8605 + }, + "density": 0.001, + "force": { + "#": 8606 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 410, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8607 + }, + "positionImpulse": { + "#": 8608 + }, + "positionPrev": { + "#": 8609 + }, + "render": { + "#": 8610 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8612 + }, + "vertices": { + "#": 8613 + } + }, + [ + { + "#": 8599 + }, + { + "#": 8600 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8602 + }, + "min": { + "#": 8603 + } + }, + { + "x": 250, + "y": 545 + }, + { + "x": 225, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 532.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8611 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8614 + }, + { + "#": 8615 + }, + { + "#": 8616 + }, + { + "#": 8617 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8619 + }, + "bounds": { + "#": 8622 + }, + "collisionFilter": { + "#": 8625 + }, + "constraintImpulse": { + "#": 8626 + }, + "density": 0.001, + "force": { + "#": 8627 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 411, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8628 + }, + "positionImpulse": { + "#": 8629 + }, + "positionPrev": { + "#": 8630 + }, + "render": { + "#": 8631 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8633 + }, + "vertices": { + "#": 8634 + } + }, + [ + { + "#": 8620 + }, + { + "#": 8621 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8623 + }, + "min": { + "#": 8624 + } + }, + { + "x": 275, + "y": 545 + }, + { + "x": 250, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 532.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8632 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8635 + }, + { + "#": 8636 + }, + { + "#": 8637 + }, + { + "#": 8638 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8640 + }, + "bounds": { + "#": 8643 + }, + "collisionFilter": { + "#": 8646 + }, + "constraintImpulse": { + "#": 8647 + }, + "density": 0.001, + "force": { + "#": 8648 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 412, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8649 + }, + "positionImpulse": { + "#": 8650 + }, + "positionPrev": { + "#": 8651 + }, + "render": { + "#": 8652 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8654 + }, + "vertices": { + "#": 8655 + } + }, + [ + { + "#": 8641 + }, + { + "#": 8642 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8644 + }, + "min": { + "#": 8645 + } + }, + { + "x": 300, + "y": 545 + }, + { + "x": 275, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 532.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8653 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8656 + }, + { + "#": 8657 + }, + { + "#": 8658 + }, + { + "#": 8659 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8661 + }, + "bounds": { + "#": 8664 + }, + "collisionFilter": { + "#": 8667 + }, + "constraintImpulse": { + "#": 8668 + }, + "density": 0.001, + "force": { + "#": 8669 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 413, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8670 + }, + "positionImpulse": { + "#": 8671 + }, + "positionPrev": { + "#": 8672 + }, + "render": { + "#": 8673 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8675 + }, + "vertices": { + "#": 8676 + } + }, + [ + { + "#": 8662 + }, + { + "#": 8663 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8665 + }, + "min": { + "#": 8666 + } + }, + { + "x": 325, + "y": 545 + }, + { + "x": 300, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 532.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8674 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8677 + }, + { + "#": 8678 + }, + { + "#": 8679 + }, + { + "#": 8680 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8682 + }, + "bounds": { + "#": 8685 + }, + "collisionFilter": { + "#": 8688 + }, + "constraintImpulse": { + "#": 8689 + }, + "density": 0.001, + "force": { + "#": 8690 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 414, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8691 + }, + "positionImpulse": { + "#": 8692 + }, + "positionPrev": { + "#": 8693 + }, + "render": { + "#": 8694 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8696 + }, + "vertices": { + "#": 8697 + } + }, + [ + { + "#": 8683 + }, + { + "#": 8684 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8686 + }, + "min": { + "#": 8687 + } + }, + { + "x": 350, + "y": 545 + }, + { + "x": 325, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 532.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8695 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8698 + }, + { + "#": 8699 + }, + { + "#": 8700 + }, + { + "#": 8701 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8703 + }, + "bounds": { + "#": 8706 + }, + "collisionFilter": { + "#": 8709 + }, + "constraintImpulse": { + "#": 8710 + }, + "density": 0.001, + "force": { + "#": 8711 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 415, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8712 + }, + "positionImpulse": { + "#": 8713 + }, + "positionPrev": { + "#": 8714 + }, + "render": { + "#": 8715 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8717 + }, + "vertices": { + "#": 8718 + } + }, + [ + { + "#": 8704 + }, + { + "#": 8705 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8707 + }, + "min": { + "#": 8708 + } + }, + { + "x": 375, + "y": 545 + }, + { + "x": 350, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 532.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8716 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8719 + }, + { + "#": 8720 + }, + { + "#": 8721 + }, + { + "#": 8722 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8724 + }, + "bounds": { + "#": 8727 + }, + "collisionFilter": { + "#": 8730 + }, + "constraintImpulse": { + "#": 8731 + }, + "density": 0.001, + "force": { + "#": 8732 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 416, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8733 + }, + "positionImpulse": { + "#": 8734 + }, + "positionPrev": { + "#": 8735 + }, + "render": { + "#": 8736 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8738 + }, + "vertices": { + "#": 8739 + } + }, + [ + { + "#": 8725 + }, + { + "#": 8726 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8728 + }, + "min": { + "#": 8729 + } + }, + { + "x": 400, + "y": 545 + }, + { + "x": 375, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 532.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8737 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8740 + }, + { + "#": 8741 + }, + { + "#": 8742 + }, + { + "#": 8743 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8745 + }, + "bounds": { + "#": 8748 + }, + "collisionFilter": { + "#": 8751 + }, + "constraintImpulse": { + "#": 8752 + }, + "density": 0.001, + "force": { + "#": 8753 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 417, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8754 + }, + "positionImpulse": { + "#": 8755 + }, + "positionPrev": { + "#": 8756 + }, + "render": { + "#": 8757 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8759 + }, + "vertices": { + "#": 8760 + } + }, + [ + { + "#": 8746 + }, + { + "#": 8747 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8749 + }, + "min": { + "#": 8750 + } + }, + { + "x": 425, + "y": 545 + }, + { + "x": 400, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 532.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8758 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8761 + }, + { + "#": 8762 + }, + { + "#": 8763 + }, + { + "#": 8764 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8766 + }, + "bounds": { + "#": 8769 + }, + "collisionFilter": { + "#": 8772 + }, + "constraintImpulse": { + "#": 8773 + }, + "density": 0.001, + "force": { + "#": 8774 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 418, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8775 + }, + "positionImpulse": { + "#": 8776 + }, + "positionPrev": { + "#": 8777 + }, + "render": { + "#": 8778 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8780 + }, + "vertices": { + "#": 8781 + } + }, + [ + { + "#": 8767 + }, + { + "#": 8768 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8770 + }, + "min": { + "#": 8771 + } + }, + { + "x": 450, + "y": 545 + }, + { + "x": 425, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 532.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8779 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8782 + }, + { + "#": 8783 + }, + { + "#": 8784 + }, + { + "#": 8785 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8787 + }, + "bounds": { + "#": 8790 + }, + "collisionFilter": { + "#": 8793 + }, + "constraintImpulse": { + "#": 8794 + }, + "density": 0.001, + "force": { + "#": 8795 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 419, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8796 + }, + "positionImpulse": { + "#": 8797 + }, + "positionPrev": { + "#": 8798 + }, + "render": { + "#": 8799 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8801 + }, + "vertices": { + "#": 8802 + } + }, + [ + { + "#": 8788 + }, + { + "#": 8789 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8791 + }, + "min": { + "#": 8792 + } + }, + { + "x": 475, + "y": 545 + }, + { + "x": 450, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 532.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8800 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8803 + }, + { + "#": 8804 + }, + { + "#": 8805 + }, + { + "#": 8806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8808 + }, + "bounds": { + "#": 8811 + }, + "collisionFilter": { + "#": 8814 + }, + "constraintImpulse": { + "#": 8815 + }, + "density": 0.001, + "force": { + "#": 8816 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 420, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8817 + }, + "positionImpulse": { + "#": 8818 + }, + "positionPrev": { + "#": 8819 + }, + "render": { + "#": 8820 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8822 + }, + "vertices": { + "#": 8823 + } + }, + [ + { + "#": 8809 + }, + { + "#": 8810 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8812 + }, + "min": { + "#": 8813 + } + }, + { + "x": 500, + "y": 545 + }, + { + "x": 475, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 532.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8821 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8824 + }, + { + "#": 8825 + }, + { + "#": 8826 + }, + { + "#": 8827 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8829 + }, + "bounds": { + "#": 8832 + }, + "collisionFilter": { + "#": 8835 + }, + "constraintImpulse": { + "#": 8836 + }, + "density": 0.001, + "force": { + "#": 8837 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 421, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8838 + }, + "positionImpulse": { + "#": 8839 + }, + "positionPrev": { + "#": 8840 + }, + "render": { + "#": 8841 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8843 + }, + "vertices": { + "#": 8844 + } + }, + [ + { + "#": 8830 + }, + { + "#": 8831 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8833 + }, + "min": { + "#": 8834 + } + }, + { + "x": 525, + "y": 545 + }, + { + "x": 500, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 532.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8842 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8845 + }, + { + "#": 8846 + }, + { + "#": 8847 + }, + { + "#": 8848 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8850 + }, + "bounds": { + "#": 8853 + }, + "collisionFilter": { + "#": 8856 + }, + "constraintImpulse": { + "#": 8857 + }, + "density": 0.001, + "force": { + "#": 8858 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 422, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8859 + }, + "positionImpulse": { + "#": 8860 + }, + "positionPrev": { + "#": 8861 + }, + "render": { + "#": 8862 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8864 + }, + "vertices": { + "#": 8865 + } + }, + [ + { + "#": 8851 + }, + { + "#": 8852 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8854 + }, + "min": { + "#": 8855 + } + }, + { + "x": 550, + "y": 545 + }, + { + "x": 525, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 532.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8863 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8866 + }, + { + "#": 8867 + }, + { + "#": 8868 + }, + { + "#": 8869 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8871 + }, + "bounds": { + "#": 8874 + }, + "collisionFilter": { + "#": 8877 + }, + "constraintImpulse": { + "#": 8878 + }, + "density": 0.001, + "force": { + "#": 8879 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 423, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8880 + }, + "positionImpulse": { + "#": 8881 + }, + "positionPrev": { + "#": 8882 + }, + "render": { + "#": 8883 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8885 + }, + "vertices": { + "#": 8886 + } + }, + [ + { + "#": 8872 + }, + { + "#": 8873 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8875 + }, + "min": { + "#": 8876 + } + }, + { + "x": 575, + "y": 545 + }, + { + "x": 550, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 532.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8884 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8887 + }, + { + "#": 8888 + }, + { + "#": 8889 + }, + { + "#": 8890 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8892 + }, + "bounds": { + "#": 8895 + }, + "collisionFilter": { + "#": 8898 + }, + "constraintImpulse": { + "#": 8899 + }, + "density": 0.001, + "force": { + "#": 8900 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 424, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8901 + }, + "positionImpulse": { + "#": 8902 + }, + "positionPrev": { + "#": 8903 + }, + "render": { + "#": 8904 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8906 + }, + "vertices": { + "#": 8907 + } + }, + [ + { + "#": 8893 + }, + { + "#": 8894 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8896 + }, + "min": { + "#": 8897 + } + }, + { + "x": 600, + "y": 545 + }, + { + "x": 575, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 532.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8905 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8908 + }, + { + "#": 8909 + }, + { + "#": 8910 + }, + { + "#": 8911 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8913 + }, + "bounds": { + "#": 8916 + }, + "collisionFilter": { + "#": 8919 + }, + "constraintImpulse": { + "#": 8920 + }, + "density": 0.001, + "force": { + "#": 8921 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 425, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8922 + }, + "positionImpulse": { + "#": 8923 + }, + "positionPrev": { + "#": 8924 + }, + "render": { + "#": 8925 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8927 + }, + "vertices": { + "#": 8928 + } + }, + [ + { + "#": 8914 + }, + { + "#": 8915 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8917 + }, + "min": { + "#": 8918 + } + }, + { + "x": 625, + "y": 545 + }, + { + "x": 600, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 532.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8926 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8929 + }, + { + "#": 8930 + }, + { + "#": 8931 + }, + { + "#": 8932 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8934 + }, + "bounds": { + "#": 8937 + }, + "collisionFilter": { + "#": 8940 + }, + "constraintImpulse": { + "#": 8941 + }, + "density": 0.001, + "force": { + "#": 8942 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 426, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8943 + }, + "positionImpulse": { + "#": 8944 + }, + "positionPrev": { + "#": 8945 + }, + "render": { + "#": 8946 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8948 + }, + "vertices": { + "#": 8949 + } + }, + [ + { + "#": 8935 + }, + { + "#": 8936 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8938 + }, + "min": { + "#": 8939 + } + }, + { + "x": 650, + "y": 545 + }, + { + "x": 625, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 532.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8947 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8950 + }, + { + "#": 8951 + }, + { + "#": 8952 + }, + { + "#": 8953 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8955 + }, + "bounds": { + "#": 8958 + }, + "collisionFilter": { + "#": 8961 + }, + "constraintImpulse": { + "#": 8962 + }, + "density": 0.001, + "force": { + "#": 8963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 427, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8964 + }, + "positionImpulse": { + "#": 8965 + }, + "positionPrev": { + "#": 8966 + }, + "render": { + "#": 8967 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8969 + }, + "vertices": { + "#": 8970 + } + }, + [ + { + "#": 8956 + }, + { + "#": 8957 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8959 + }, + "min": { + "#": 8960 + } + }, + { + "x": 675, + "y": 545 + }, + { + "x": 650, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 532.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8968 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8971 + }, + { + "#": 8972 + }, + { + "#": 8973 + }, + { + "#": 8974 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8976 + }, + "bounds": { + "#": 8979 + }, + "collisionFilter": { + "#": 8982 + }, + "constraintImpulse": { + "#": 8983 + }, + "density": 0.001, + "force": { + "#": 8984 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 428, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8985 + }, + "positionImpulse": { + "#": 8986 + }, + "positionPrev": { + "#": 8987 + }, + "render": { + "#": 8988 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8990 + }, + "vertices": { + "#": 8991 + } + }, + [ + { + "#": 8977 + }, + { + "#": 8978 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8980 + }, + "min": { + "#": 8981 + } + }, + { + "x": 700, + "y": 545 + }, + { + "x": 675, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 532.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8989 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 8992 + }, + { + "#": 8993 + }, + { + "#": 8994 + }, + { + "#": 8995 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8997 + }, + "bounds": { + "#": 9000 + }, + "collisionFilter": { + "#": 9003 + }, + "constraintImpulse": { + "#": 9004 + }, + "density": 0.001, + "force": { + "#": 9005 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 429, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9006 + }, + "positionImpulse": { + "#": 9007 + }, + "positionPrev": { + "#": 9008 + }, + "render": { + "#": 9009 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9011 + }, + "vertices": { + "#": 9012 + } + }, + [ + { + "#": 8998 + }, + { + "#": 8999 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9001 + }, + "min": { + "#": 9002 + } + }, + { + "x": 725, + "y": 545 + }, + { + "x": 700, + "y": 520 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 532.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9010 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9013 + }, + { + "#": 9014 + }, + { + "#": 9015 + }, + { + "#": 9016 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 520 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 520 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 545 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 545 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9018 + }, + "bounds": { + "#": 9021 + }, + "collisionFilter": { + "#": 9024 + }, + "constraintImpulse": { + "#": 9025 + }, + "density": 0.001, + "force": { + "#": 9026 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 430, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9027 + }, + "positionImpulse": { + "#": 9028 + }, + "positionPrev": { + "#": 9029 + }, + "render": { + "#": 9030 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9032 + }, + "vertices": { + "#": 9033 + } + }, + [ + { + "#": 9019 + }, + { + "#": 9020 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9022 + }, + "min": { + "#": 9023 + } + }, + { + "x": 125, + "y": 570 + }, + { + "x": 100, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9031 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9034 + }, + { + "#": 9035 + }, + { + "#": 9036 + }, + { + "#": 9037 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9039 + }, + "bounds": { + "#": 9042 + }, + "collisionFilter": { + "#": 9045 + }, + "constraintImpulse": { + "#": 9046 + }, + "density": 0.001, + "force": { + "#": 9047 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 431, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9048 + }, + "positionImpulse": { + "#": 9049 + }, + "positionPrev": { + "#": 9050 + }, + "render": { + "#": 9051 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9053 + }, + "vertices": { + "#": 9054 + } + }, + [ + { + "#": 9040 + }, + { + "#": 9041 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9043 + }, + "min": { + "#": 9044 + } + }, + { + "x": 150, + "y": 570 + }, + { + "x": 125, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9052 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9055 + }, + { + "#": 9056 + }, + { + "#": 9057 + }, + { + "#": 9058 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9060 + }, + "bounds": { + "#": 9063 + }, + "collisionFilter": { + "#": 9066 + }, + "constraintImpulse": { + "#": 9067 + }, + "density": 0.001, + "force": { + "#": 9068 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 432, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9069 + }, + "positionImpulse": { + "#": 9070 + }, + "positionPrev": { + "#": 9071 + }, + "render": { + "#": 9072 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9074 + }, + "vertices": { + "#": 9075 + } + }, + [ + { + "#": 9061 + }, + { + "#": 9062 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9064 + }, + "min": { + "#": 9065 + } + }, + { + "x": 175, + "y": 570 + }, + { + "x": 150, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 557.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9073 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9076 + }, + { + "#": 9077 + }, + { + "#": 9078 + }, + { + "#": 9079 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9081 + }, + "bounds": { + "#": 9084 + }, + "collisionFilter": { + "#": 9087 + }, + "constraintImpulse": { + "#": 9088 + }, + "density": 0.001, + "force": { + "#": 9089 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 433, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9090 + }, + "positionImpulse": { + "#": 9091 + }, + "positionPrev": { + "#": 9092 + }, + "render": { + "#": 9093 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9095 + }, + "vertices": { + "#": 9096 + } + }, + [ + { + "#": 9082 + }, + { + "#": 9083 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9085 + }, + "min": { + "#": 9086 + } + }, + { + "x": 200, + "y": 570 + }, + { + "x": 175, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 557.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9094 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9097 + }, + { + "#": 9098 + }, + { + "#": 9099 + }, + { + "#": 9100 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9102 + }, + "bounds": { + "#": 9105 + }, + "collisionFilter": { + "#": 9108 + }, + "constraintImpulse": { + "#": 9109 + }, + "density": 0.001, + "force": { + "#": 9110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 434, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9111 + }, + "positionImpulse": { + "#": 9112 + }, + "positionPrev": { + "#": 9113 + }, + "render": { + "#": 9114 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9116 + }, + "vertices": { + "#": 9117 + } + }, + [ + { + "#": 9103 + }, + { + "#": 9104 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9106 + }, + "min": { + "#": 9107 + } + }, + { + "x": 225, + "y": 570 + }, + { + "x": 200, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9115 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9118 + }, + { + "#": 9119 + }, + { + "#": 9120 + }, + { + "#": 9121 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9123 + }, + "bounds": { + "#": 9126 + }, + "collisionFilter": { + "#": 9129 + }, + "constraintImpulse": { + "#": 9130 + }, + "density": 0.001, + "force": { + "#": 9131 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 435, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9132 + }, + "positionImpulse": { + "#": 9133 + }, + "positionPrev": { + "#": 9134 + }, + "render": { + "#": 9135 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9137 + }, + "vertices": { + "#": 9138 + } + }, + [ + { + "#": 9124 + }, + { + "#": 9125 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9127 + }, + "min": { + "#": 9128 + } + }, + { + "x": 250, + "y": 570 + }, + { + "x": 225, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9136 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9139 + }, + { + "#": 9140 + }, + { + "#": 9141 + }, + { + "#": 9142 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9144 + }, + "bounds": { + "#": 9147 + }, + "collisionFilter": { + "#": 9150 + }, + "constraintImpulse": { + "#": 9151 + }, + "density": 0.001, + "force": { + "#": 9152 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 436, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9153 + }, + "positionImpulse": { + "#": 9154 + }, + "positionPrev": { + "#": 9155 + }, + "render": { + "#": 9156 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9158 + }, + "vertices": { + "#": 9159 + } + }, + [ + { + "#": 9145 + }, + { + "#": 9146 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9148 + }, + "min": { + "#": 9149 + } + }, + { + "x": 275, + "y": 570 + }, + { + "x": 250, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9157 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9160 + }, + { + "#": 9161 + }, + { + "#": 9162 + }, + { + "#": 9163 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9165 + }, + "bounds": { + "#": 9168 + }, + "collisionFilter": { + "#": 9171 + }, + "constraintImpulse": { + "#": 9172 + }, + "density": 0.001, + "force": { + "#": 9173 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 437, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9174 + }, + "positionImpulse": { + "#": 9175 + }, + "positionPrev": { + "#": 9176 + }, + "render": { + "#": 9177 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9179 + }, + "vertices": { + "#": 9180 + } + }, + [ + { + "#": 9166 + }, + { + "#": 9167 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9169 + }, + "min": { + "#": 9170 + } + }, + { + "x": 300, + "y": 570 + }, + { + "x": 275, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 557.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9178 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9181 + }, + { + "#": 9182 + }, + { + "#": 9183 + }, + { + "#": 9184 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9186 + }, + "bounds": { + "#": 9189 + }, + "collisionFilter": { + "#": 9192 + }, + "constraintImpulse": { + "#": 9193 + }, + "density": 0.001, + "force": { + "#": 9194 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 438, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9195 + }, + "positionImpulse": { + "#": 9196 + }, + "positionPrev": { + "#": 9197 + }, + "render": { + "#": 9198 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9200 + }, + "vertices": { + "#": 9201 + } + }, + [ + { + "#": 9187 + }, + { + "#": 9188 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9190 + }, + "min": { + "#": 9191 + } + }, + { + "x": 325, + "y": 570 + }, + { + "x": 300, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9199 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9202 + }, + { + "#": 9203 + }, + { + "#": 9204 + }, + { + "#": 9205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9207 + }, + "bounds": { + "#": 9210 + }, + "collisionFilter": { + "#": 9213 + }, + "constraintImpulse": { + "#": 9214 + }, + "density": 0.001, + "force": { + "#": 9215 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 439, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9216 + }, + "positionImpulse": { + "#": 9217 + }, + "positionPrev": { + "#": 9218 + }, + "render": { + "#": 9219 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9221 + }, + "vertices": { + "#": 9222 + } + }, + [ + { + "#": 9208 + }, + { + "#": 9209 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9211 + }, + "min": { + "#": 9212 + } + }, + { + "x": 350, + "y": 570 + }, + { + "x": 325, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 557.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9220 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9223 + }, + { + "#": 9224 + }, + { + "#": 9225 + }, + { + "#": 9226 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9228 + }, + "bounds": { + "#": 9231 + }, + "collisionFilter": { + "#": 9234 + }, + "constraintImpulse": { + "#": 9235 + }, + "density": 0.001, + "force": { + "#": 9236 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 440, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9237 + }, + "positionImpulse": { + "#": 9238 + }, + "positionPrev": { + "#": 9239 + }, + "render": { + "#": 9240 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9242 + }, + "vertices": { + "#": 9243 + } + }, + [ + { + "#": 9229 + }, + { + "#": 9230 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9232 + }, + "min": { + "#": 9233 + } + }, + { + "x": 375, + "y": 570 + }, + { + "x": 350, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9241 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9244 + }, + { + "#": 9245 + }, + { + "#": 9246 + }, + { + "#": 9247 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9249 + }, + "bounds": { + "#": 9252 + }, + "collisionFilter": { + "#": 9255 + }, + "constraintImpulse": { + "#": 9256 + }, + "density": 0.001, + "force": { + "#": 9257 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 441, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9258 + }, + "positionImpulse": { + "#": 9259 + }, + "positionPrev": { + "#": 9260 + }, + "render": { + "#": 9261 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9263 + }, + "vertices": { + "#": 9264 + } + }, + [ + { + "#": 9250 + }, + { + "#": 9251 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9253 + }, + "min": { + "#": 9254 + } + }, + { + "x": 400, + "y": 570 + }, + { + "x": 375, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9262 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9265 + }, + { + "#": 9266 + }, + { + "#": 9267 + }, + { + "#": 9268 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9270 + }, + "bounds": { + "#": 9273 + }, + "collisionFilter": { + "#": 9276 + }, + "constraintImpulse": { + "#": 9277 + }, + "density": 0.001, + "force": { + "#": 9278 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 442, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9279 + }, + "positionImpulse": { + "#": 9280 + }, + "positionPrev": { + "#": 9281 + }, + "render": { + "#": 9282 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9284 + }, + "vertices": { + "#": 9285 + } + }, + [ + { + "#": 9271 + }, + { + "#": 9272 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9274 + }, + "min": { + "#": 9275 + } + }, + { + "x": 425, + "y": 570 + }, + { + "x": 400, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 557.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9283 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9286 + }, + { + "#": 9287 + }, + { + "#": 9288 + }, + { + "#": 9289 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9291 + }, + "bounds": { + "#": 9294 + }, + "collisionFilter": { + "#": 9297 + }, + "constraintImpulse": { + "#": 9298 + }, + "density": 0.001, + "force": { + "#": 9299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 443, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9300 + }, + "positionImpulse": { + "#": 9301 + }, + "positionPrev": { + "#": 9302 + }, + "render": { + "#": 9303 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9305 + }, + "vertices": { + "#": 9306 + } + }, + [ + { + "#": 9292 + }, + { + "#": 9293 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9295 + }, + "min": { + "#": 9296 + } + }, + { + "x": 450, + "y": 570 + }, + { + "x": 425, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9304 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9307 + }, + { + "#": 9308 + }, + { + "#": 9309 + }, + { + "#": 9310 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9312 + }, + "bounds": { + "#": 9315 + }, + "collisionFilter": { + "#": 9318 + }, + "constraintImpulse": { + "#": 9319 + }, + "density": 0.001, + "force": { + "#": 9320 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 444, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9321 + }, + "positionImpulse": { + "#": 9322 + }, + "positionPrev": { + "#": 9323 + }, + "render": { + "#": 9324 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9326 + }, + "vertices": { + "#": 9327 + } + }, + [ + { + "#": 9313 + }, + { + "#": 9314 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9316 + }, + "min": { + "#": 9317 + } + }, + { + "x": 475, + "y": 570 + }, + { + "x": 450, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 557.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9325 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9328 + }, + { + "#": 9329 + }, + { + "#": 9330 + }, + { + "#": 9331 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9333 + }, + "bounds": { + "#": 9336 + }, + "collisionFilter": { + "#": 9339 + }, + "constraintImpulse": { + "#": 9340 + }, + "density": 0.001, + "force": { + "#": 9341 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 445, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9342 + }, + "positionImpulse": { + "#": 9343 + }, + "positionPrev": { + "#": 9344 + }, + "render": { + "#": 9345 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9347 + }, + "vertices": { + "#": 9348 + } + }, + [ + { + "#": 9334 + }, + { + "#": 9335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9337 + }, + "min": { + "#": 9338 + } + }, + { + "x": 500, + "y": 570 + }, + { + "x": 475, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9346 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9349 + }, + { + "#": 9350 + }, + { + "#": 9351 + }, + { + "#": 9352 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9354 + }, + "bounds": { + "#": 9357 + }, + "collisionFilter": { + "#": 9360 + }, + "constraintImpulse": { + "#": 9361 + }, + "density": 0.001, + "force": { + "#": 9362 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 446, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9363 + }, + "positionImpulse": { + "#": 9364 + }, + "positionPrev": { + "#": 9365 + }, + "render": { + "#": 9366 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9368 + }, + "vertices": { + "#": 9369 + } + }, + [ + { + "#": 9355 + }, + { + "#": 9356 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9358 + }, + "min": { + "#": 9359 + } + }, + { + "x": 525, + "y": 570 + }, + { + "x": 500, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 557.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9367 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9370 + }, + { + "#": 9371 + }, + { + "#": 9372 + }, + { + "#": 9373 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9375 + }, + "bounds": { + "#": 9378 + }, + "collisionFilter": { + "#": 9381 + }, + "constraintImpulse": { + "#": 9382 + }, + "density": 0.001, + "force": { + "#": 9383 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 447, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9384 + }, + "positionImpulse": { + "#": 9385 + }, + "positionPrev": { + "#": 9386 + }, + "render": { + "#": 9387 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9389 + }, + "vertices": { + "#": 9390 + } + }, + [ + { + "#": 9376 + }, + { + "#": 9377 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9379 + }, + "min": { + "#": 9380 + } + }, + { + "x": 550, + "y": 570 + }, + { + "x": 525, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 557.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9388 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9391 + }, + { + "#": 9392 + }, + { + "#": 9393 + }, + { + "#": 9394 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9396 + }, + "bounds": { + "#": 9399 + }, + "collisionFilter": { + "#": 9402 + }, + "constraintImpulse": { + "#": 9403 + }, + "density": 0.001, + "force": { + "#": 9404 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 448, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9405 + }, + "positionImpulse": { + "#": 9406 + }, + "positionPrev": { + "#": 9407 + }, + "render": { + "#": 9408 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9410 + }, + "vertices": { + "#": 9411 + } + }, + [ + { + "#": 9397 + }, + { + "#": 9398 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9400 + }, + "min": { + "#": 9401 + } + }, + { + "x": 575, + "y": 570 + }, + { + "x": 550, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 557.5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9409 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9412 + }, + { + "#": 9413 + }, + { + "#": 9414 + }, + { + "#": 9415 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9417 + }, + "bounds": { + "#": 9420 + }, + "collisionFilter": { + "#": 9423 + }, + "constraintImpulse": { + "#": 9424 + }, + "density": 0.001, + "force": { + "#": 9425 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 449, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9426 + }, + "positionImpulse": { + "#": 9427 + }, + "positionPrev": { + "#": 9428 + }, + "render": { + "#": 9429 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9431 + }, + "vertices": { + "#": 9432 + } + }, + [ + { + "#": 9418 + }, + { + "#": 9419 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9421 + }, + "min": { + "#": 9422 + } + }, + { + "x": 600, + "y": 570 + }, + { + "x": 575, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9430 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9433 + }, + { + "#": 9434 + }, + { + "#": 9435 + }, + { + "#": 9436 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9438 + }, + "bounds": { + "#": 9441 + }, + "collisionFilter": { + "#": 9444 + }, + "constraintImpulse": { + "#": 9445 + }, + "density": 0.001, + "force": { + "#": 9446 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 450, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9447 + }, + "positionImpulse": { + "#": 9448 + }, + "positionPrev": { + "#": 9449 + }, + "render": { + "#": 9450 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9452 + }, + "vertices": { + "#": 9453 + } + }, + [ + { + "#": 9439 + }, + { + "#": 9440 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9442 + }, + "min": { + "#": 9443 + } + }, + { + "x": 625, + "y": 570 + }, + { + "x": 600, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9451 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9454 + }, + { + "#": 9455 + }, + { + "#": 9456 + }, + { + "#": 9457 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9459 + }, + "bounds": { + "#": 9462 + }, + "collisionFilter": { + "#": 9465 + }, + "constraintImpulse": { + "#": 9466 + }, + "density": 0.001, + "force": { + "#": 9467 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 451, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9468 + }, + "positionImpulse": { + "#": 9469 + }, + "positionPrev": { + "#": 9470 + }, + "render": { + "#": 9471 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9473 + }, + "vertices": { + "#": 9474 + } + }, + [ + { + "#": 9460 + }, + { + "#": 9461 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9463 + }, + "min": { + "#": 9464 + } + }, + { + "x": 650, + "y": 570 + }, + { + "x": 625, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9472 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9475 + }, + { + "#": 9476 + }, + { + "#": 9477 + }, + { + "#": 9478 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9480 + }, + "bounds": { + "#": 9483 + }, + "collisionFilter": { + "#": 9486 + }, + "constraintImpulse": { + "#": 9487 + }, + "density": 0.001, + "force": { + "#": 9488 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 452, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9489 + }, + "positionImpulse": { + "#": 9490 + }, + "positionPrev": { + "#": 9491 + }, + "render": { + "#": 9492 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9494 + }, + "vertices": { + "#": 9495 + } + }, + [ + { + "#": 9481 + }, + { + "#": 9482 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9484 + }, + "min": { + "#": 9485 + } + }, + { + "x": 675, + "y": 570 + }, + { + "x": 650, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 557.5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9493 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9496 + }, + { + "#": 9497 + }, + { + "#": 9498 + }, + { + "#": 9499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9501 + }, + "bounds": { + "#": 9504 + }, + "collisionFilter": { + "#": 9507 + }, + "constraintImpulse": { + "#": 9508 + }, + "density": 0.001, + "force": { + "#": 9509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 453, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9510 + }, + "positionImpulse": { + "#": 9511 + }, + "positionPrev": { + "#": 9512 + }, + "render": { + "#": 9513 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9515 + }, + "vertices": { + "#": 9516 + } + }, + [ + { + "#": 9502 + }, + { + "#": 9503 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9505 + }, + "min": { + "#": 9506 + } + }, + { + "x": 700, + "y": 570 + }, + { + "x": 675, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 557.5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9514 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9517 + }, + { + "#": 9518 + }, + { + "#": 9519 + }, + { + "#": 9520 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 570 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9522 + }, + "bounds": { + "#": 9525 + }, + "collisionFilter": { + "#": 9528 + }, + "constraintImpulse": { + "#": 9529 + }, + "density": 0.001, + "force": { + "#": 9530 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 454, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9531 + }, + "positionImpulse": { + "#": 9532 + }, + "positionPrev": { + "#": 9533 + }, + "render": { + "#": 9534 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9536 + }, + "vertices": { + "#": 9537 + } + }, + [ + { + "#": 9523 + }, + { + "#": 9524 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9526 + }, + "min": { + "#": 9527 + } + }, + { + "x": 725, + "y": 570 + }, + { + "x": 700, + "y": 545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 557.5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9535 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 9538 + }, + { + "#": 9539 + }, + { + "#": 9540 + }, + { + "#": 9541 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 545 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 545 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 570 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 570 + }, + [], + [], + [ + { + "#": 9545 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 9546 + }, + "pointB": "", + "render": { + "#": 9547 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 9549 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/stress2/stress2-10.json b/tests/browser/refs/stress2/stress2-10.json new file mode 100644 index 00000000..ee035c96 --- /dev/null +++ b/tests/browser/refs/stress2/stress2-10.json @@ -0,0 +1,87792 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 9998 + }, + "events": { + "#": 10002 + }, + "gravity": { + "#": 10004 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 9996 + }, + "constraints": { + "#": 9997 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 206 + }, + { + "#": 228 + }, + { + "#": 250 + }, + { + "#": 272 + }, + { + "#": 294 + }, + { + "#": 316 + }, + { + "#": 338 + }, + { + "#": 360 + }, + { + "#": 382 + }, + { + "#": 404 + }, + { + "#": 426 + }, + { + "#": 448 + }, + { + "#": 470 + }, + { + "#": 492 + }, + { + "#": 514 + }, + { + "#": 536 + }, + { + "#": 558 + }, + { + "#": 580 + }, + { + "#": 602 + }, + { + "#": 624 + }, + { + "#": 646 + }, + { + "#": 668 + }, + { + "#": 690 + }, + { + "#": 712 + }, + { + "#": 734 + }, + { + "#": 756 + }, + { + "#": 778 + }, + { + "#": 800 + }, + { + "#": 822 + }, + { + "#": 844 + }, + { + "#": 866 + }, + { + "#": 888 + }, + { + "#": 910 + }, + { + "#": 932 + }, + { + "#": 954 + }, + { + "#": 976 + }, + { + "#": 998 + }, + { + "#": 1020 + }, + { + "#": 1042 + }, + { + "#": 1064 + }, + { + "#": 1086 + }, + { + "#": 1108 + }, + { + "#": 1130 + }, + { + "#": 1152 + }, + { + "#": 1174 + }, + { + "#": 1196 + }, + { + "#": 1218 + }, + { + "#": 1240 + }, + { + "#": 1262 + }, + { + "#": 1284 + }, + { + "#": 1306 + }, + { + "#": 1328 + }, + { + "#": 1350 + }, + { + "#": 1372 + }, + { + "#": 1394 + }, + { + "#": 1416 + }, + { + "#": 1438 + }, + { + "#": 1460 + }, + { + "#": 1482 + }, + { + "#": 1504 + }, + { + "#": 1526 + }, + { + "#": 1548 + }, + { + "#": 1570 + }, + { + "#": 1592 + }, + { + "#": 1614 + }, + { + "#": 1636 + }, + { + "#": 1658 + }, + { + "#": 1680 + }, + { + "#": 1702 + }, + { + "#": 1724 + }, + { + "#": 1746 + }, + { + "#": 1768 + }, + { + "#": 1790 + }, + { + "#": 1812 + }, + { + "#": 1834 + }, + { + "#": 1856 + }, + { + "#": 1878 + }, + { + "#": 1900 + }, + { + "#": 1922 + }, + { + "#": 1944 + }, + { + "#": 1966 + }, + { + "#": 1988 + }, + { + "#": 2010 + }, + { + "#": 2032 + }, + { + "#": 2054 + }, + { + "#": 2076 + }, + { + "#": 2098 + }, + { + "#": 2120 + }, + { + "#": 2142 + }, + { + "#": 2164 + }, + { + "#": 2186 + }, + { + "#": 2208 + }, + { + "#": 2230 + }, + { + "#": 2252 + }, + { + "#": 2274 + }, + { + "#": 2296 + }, + { + "#": 2318 + }, + { + "#": 2340 + }, + { + "#": 2362 + }, + { + "#": 2384 + }, + { + "#": 2406 + }, + { + "#": 2428 + }, + { + "#": 2450 + }, + { + "#": 2472 + }, + { + "#": 2494 + }, + { + "#": 2516 + }, + { + "#": 2538 + }, + { + "#": 2560 + }, + { + "#": 2582 + }, + { + "#": 2604 + }, + { + "#": 2626 + }, + { + "#": 2648 + }, + { + "#": 2670 + }, + { + "#": 2692 + }, + { + "#": 2714 + }, + { + "#": 2736 + }, + { + "#": 2758 + }, + { + "#": 2780 + }, + { + "#": 2802 + }, + { + "#": 2824 + }, + { + "#": 2846 + }, + { + "#": 2868 + }, + { + "#": 2890 + }, + { + "#": 2912 + }, + { + "#": 2934 + }, + { + "#": 2956 + }, + { + "#": 2978 + }, + { + "#": 3000 + }, + { + "#": 3022 + }, + { + "#": 3044 + }, + { + "#": 3066 + }, + { + "#": 3088 + }, + { + "#": 3110 + }, + { + "#": 3132 + }, + { + "#": 3154 + }, + { + "#": 3176 + }, + { + "#": 3198 + }, + { + "#": 3220 + }, + { + "#": 3242 + }, + { + "#": 3264 + }, + { + "#": 3286 + }, + { + "#": 3308 + }, + { + "#": 3330 + }, + { + "#": 3352 + }, + { + "#": 3374 + }, + { + "#": 3396 + }, + { + "#": 3418 + }, + { + "#": 3440 + }, + { + "#": 3462 + }, + { + "#": 3484 + }, + { + "#": 3506 + }, + { + "#": 3528 + }, + { + "#": 3550 + }, + { + "#": 3572 + }, + { + "#": 3594 + }, + { + "#": 3616 + }, + { + "#": 3638 + }, + { + "#": 3660 + }, + { + "#": 3682 + }, + { + "#": 3704 + }, + { + "#": 3726 + }, + { + "#": 3748 + }, + { + "#": 3770 + }, + { + "#": 3792 + }, + { + "#": 3814 + }, + { + "#": 3836 + }, + { + "#": 3858 + }, + { + "#": 3880 + }, + { + "#": 3902 + }, + { + "#": 3924 + }, + { + "#": 3946 + }, + { + "#": 3968 + }, + { + "#": 3990 + }, + { + "#": 4012 + }, + { + "#": 4034 + }, + { + "#": 4056 + }, + { + "#": 4078 + }, + { + "#": 4100 + }, + { + "#": 4122 + }, + { + "#": 4144 + }, + { + "#": 4166 + }, + { + "#": 4188 + }, + { + "#": 4210 + }, + { + "#": 4232 + }, + { + "#": 4254 + }, + { + "#": 4276 + }, + { + "#": 4298 + }, + { + "#": 4320 + }, + { + "#": 4342 + }, + { + "#": 4364 + }, + { + "#": 4386 + }, + { + "#": 4408 + }, + { + "#": 4430 + }, + { + "#": 4452 + }, + { + "#": 4474 + }, + { + "#": 4496 + }, + { + "#": 4518 + }, + { + "#": 4540 + }, + { + "#": 4562 + }, + { + "#": 4584 + }, + { + "#": 4606 + }, + { + "#": 4628 + }, + { + "#": 4650 + }, + { + "#": 4672 + }, + { + "#": 4694 + }, + { + "#": 4716 + }, + { + "#": 4738 + }, + { + "#": 4760 + }, + { + "#": 4782 + }, + { + "#": 4804 + }, + { + "#": 4826 + }, + { + "#": 4848 + }, + { + "#": 4870 + }, + { + "#": 4892 + }, + { + "#": 4914 + }, + { + "#": 4936 + }, + { + "#": 4958 + }, + { + "#": 4980 + }, + { + "#": 5002 + }, + { + "#": 5024 + }, + { + "#": 5046 + }, + { + "#": 5068 + }, + { + "#": 5090 + }, + { + "#": 5112 + }, + { + "#": 5134 + }, + { + "#": 5156 + }, + { + "#": 5178 + }, + { + "#": 5200 + }, + { + "#": 5222 + }, + { + "#": 5244 + }, + { + "#": 5266 + }, + { + "#": 5288 + }, + { + "#": 5310 + }, + { + "#": 5332 + }, + { + "#": 5354 + }, + { + "#": 5376 + }, + { + "#": 5398 + }, + { + "#": 5420 + }, + { + "#": 5442 + }, + { + "#": 5464 + }, + { + "#": 5486 + }, + { + "#": 5508 + }, + { + "#": 5530 + }, + { + "#": 5552 + }, + { + "#": 5574 + }, + { + "#": 5596 + }, + { + "#": 5618 + }, + { + "#": 5640 + }, + { + "#": 5662 + }, + { + "#": 5684 + }, + { + "#": 5706 + }, + { + "#": 5728 + }, + { + "#": 5750 + }, + { + "#": 5772 + }, + { + "#": 5794 + }, + { + "#": 5816 + }, + { + "#": 5838 + }, + { + "#": 5860 + }, + { + "#": 5882 + }, + { + "#": 5904 + }, + { + "#": 5926 + }, + { + "#": 5948 + }, + { + "#": 5970 + }, + { + "#": 5992 + }, + { + "#": 6014 + }, + { + "#": 6036 + }, + { + "#": 6058 + }, + { + "#": 6080 + }, + { + "#": 6102 + }, + { + "#": 6124 + }, + { + "#": 6146 + }, + { + "#": 6168 + }, + { + "#": 6190 + }, + { + "#": 6212 + }, + { + "#": 6234 + }, + { + "#": 6256 + }, + { + "#": 6278 + }, + { + "#": 6300 + }, + { + "#": 6322 + }, + { + "#": 6344 + }, + { + "#": 6366 + }, + { + "#": 6388 + }, + { + "#": 6410 + }, + { + "#": 6432 + }, + { + "#": 6454 + }, + { + "#": 6476 + }, + { + "#": 6498 + }, + { + "#": 6520 + }, + { + "#": 6542 + }, + { + "#": 6564 + }, + { + "#": 6586 + }, + { + "#": 6608 + }, + { + "#": 6630 + }, + { + "#": 6652 + }, + { + "#": 6674 + }, + { + "#": 6696 + }, + { + "#": 6718 + }, + { + "#": 6740 + }, + { + "#": 6762 + }, + { + "#": 6784 + }, + { + "#": 6806 + }, + { + "#": 6828 + }, + { + "#": 6850 + }, + { + "#": 6872 + }, + { + "#": 6894 + }, + { + "#": 6916 + }, + { + "#": 6938 + }, + { + "#": 6960 + }, + { + "#": 6982 + }, + { + "#": 7004 + }, + { + "#": 7026 + }, + { + "#": 7048 + }, + { + "#": 7070 + }, + { + "#": 7092 + }, + { + "#": 7114 + }, + { + "#": 7136 + }, + { + "#": 7158 + }, + { + "#": 7180 + }, + { + "#": 7202 + }, + { + "#": 7224 + }, + { + "#": 7246 + }, + { + "#": 7268 + }, + { + "#": 7290 + }, + { + "#": 7312 + }, + { + "#": 7334 + }, + { + "#": 7356 + }, + { + "#": 7378 + }, + { + "#": 7400 + }, + { + "#": 7422 + }, + { + "#": 7444 + }, + { + "#": 7466 + }, + { + "#": 7488 + }, + { + "#": 7510 + }, + { + "#": 7532 + }, + { + "#": 7554 + }, + { + "#": 7576 + }, + { + "#": 7598 + }, + { + "#": 7620 + }, + { + "#": 7642 + }, + { + "#": 7664 + }, + { + "#": 7686 + }, + { + "#": 7708 + }, + { + "#": 7730 + }, + { + "#": 7752 + }, + { + "#": 7774 + }, + { + "#": 7796 + }, + { + "#": 7818 + }, + { + "#": 7840 + }, + { + "#": 7862 + }, + { + "#": 7884 + }, + { + "#": 7906 + }, + { + "#": 7928 + }, + { + "#": 7950 + }, + { + "#": 7972 + }, + { + "#": 7994 + }, + { + "#": 8016 + }, + { + "#": 8038 + }, + { + "#": 8060 + }, + { + "#": 8082 + }, + { + "#": 8104 + }, + { + "#": 8126 + }, + { + "#": 8148 + }, + { + "#": 8170 + }, + { + "#": 8192 + }, + { + "#": 8214 + }, + { + "#": 8236 + }, + { + "#": 8258 + }, + { + "#": 8280 + }, + { + "#": 8302 + }, + { + "#": 8324 + }, + { + "#": 8346 + }, + { + "#": 8368 + }, + { + "#": 8390 + }, + { + "#": 8412 + }, + { + "#": 8434 + }, + { + "#": 8456 + }, + { + "#": 8478 + }, + { + "#": 8500 + }, + { + "#": 8522 + }, + { + "#": 8544 + }, + { + "#": 8566 + }, + { + "#": 8588 + }, + { + "#": 8610 + }, + { + "#": 8632 + }, + { + "#": 8654 + }, + { + "#": 8676 + }, + { + "#": 8698 + }, + { + "#": 8720 + }, + { + "#": 8742 + }, + { + "#": 8764 + }, + { + "#": 8786 + }, + { + "#": 8808 + }, + { + "#": 8830 + }, + { + "#": 8852 + }, + { + "#": 8874 + }, + { + "#": 8896 + }, + { + "#": 8918 + }, + { + "#": 8940 + }, + { + "#": 8962 + }, + { + "#": 8984 + }, + { + "#": 9006 + }, + { + "#": 9028 + }, + { + "#": 9050 + }, + { + "#": 9072 + }, + { + "#": 9094 + }, + { + "#": 9116 + }, + { + "#": 9138 + }, + { + "#": 9160 + }, + { + "#": 9182 + }, + { + "#": 9204 + }, + { + "#": 9226 + }, + { + "#": 9248 + }, + { + "#": 9270 + }, + { + "#": 9292 + }, + { + "#": 9314 + }, + { + "#": 9336 + }, + { + "#": 9358 + }, + { + "#": 9380 + }, + { + "#": 9402 + }, + { + "#": 9424 + }, + { + "#": 9446 + }, + { + "#": 9468 + }, + { + "#": 9490 + }, + { + "#": 9512 + }, + { + "#": 9534 + }, + { + "#": 9556 + }, + { + "#": 9578 + }, + { + "#": 9600 + }, + { + "#": 9622 + }, + { + "#": 9644 + }, + { + "#": 9666 + }, + { + "#": 9688 + }, + { + "#": 9710 + }, + { + "#": 9732 + }, + { + "#": 9754 + }, + { + "#": 9776 + }, + { + "#": 9798 + }, + { + "#": 9820 + }, + { + "#": 9842 + }, + { + "#": 9864 + }, + { + "#": 9886 + }, + { + "#": 9908 + }, + { + "#": 9930 + }, + { + "#": 9952 + }, + { + "#": 9974 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 125, + "y": 162.73575476702598 + }, + { + "x": 100, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 147.3284840519903 + }, + { + "endCol": 2, + "endRow": 3, + "id": "2,2,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 150, + "y": 162.73575476702598 + }, + { + "x": 125, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 147.3284840519903 + }, + { + "endCol": 3, + "endRow": 3, + "id": "2,3,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 175, + "y": 162.73575476702598 + }, + { + "x": 150, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 147.3284840519903 + }, + { + "endCol": 3, + "endRow": 3, + "id": "3,3,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 200, + "y": 162.73575476702598 + }, + { + "x": 175, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 147.3284840519903 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 185 + }, + "bounds": { + "#": 188 + }, + "collisionFilter": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "density": 0.001, + "force": { + "#": 193 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 194 + }, + "positionImpulse": { + "#": 195 + }, + "positionPrev": { + "#": 196 + }, + "region": { + "#": 197 + }, + "render": { + "#": 198 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 200 + }, + "vertices": { + "#": 201 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 189 + }, + "min": { + "#": 190 + } + }, + { + "x": 225, + "y": 162.73575476702598 + }, + { + "x": 200, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 147.3284840519903 + }, + { + "endCol": 4, + "endRow": 3, + "id": "4,4,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 199 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 207 + }, + "bounds": { + "#": 210 + }, + "collisionFilter": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "density": 0.001, + "force": { + "#": 215 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 216 + }, + "positionImpulse": { + "#": 217 + }, + "positionPrev": { + "#": 218 + }, + "region": { + "#": 219 + }, + "render": { + "#": 220 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 222 + }, + "vertices": { + "#": 223 + } + }, + [ + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 211 + }, + "min": { + "#": 212 + } + }, + { + "x": 250, + "y": 162.73575476702598 + }, + { + "x": 225, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 147.3284840519903 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 221 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 229 + }, + "bounds": { + "#": 232 + }, + "collisionFilter": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "density": 0.001, + "force": { + "#": 237 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 238 + }, + "positionImpulse": { + "#": 239 + }, + "positionPrev": { + "#": 240 + }, + "region": { + "#": 241 + }, + "render": { + "#": 242 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 244 + }, + "vertices": { + "#": 245 + } + }, + [ + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 233 + }, + "min": { + "#": 234 + } + }, + { + "x": 275, + "y": 162.73575476702598 + }, + { + "x": 250, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 147.3284840519903 + }, + { + "endCol": 5, + "endRow": 3, + "id": "5,5,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 243 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 251 + }, + "bounds": { + "#": 254 + }, + "collisionFilter": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "density": 0.001, + "force": { + "#": 259 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 260 + }, + "positionImpulse": { + "#": 261 + }, + "positionPrev": { + "#": 262 + }, + "region": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 255 + }, + "min": { + "#": 256 + } + }, + { + "x": 300, + "y": 162.73575476702598 + }, + { + "x": 275, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 147.3284840519903 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,2,3", + "startCol": 5, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "region": { + "#": 285 + }, + "render": { + "#": 286 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 288 + }, + "vertices": { + "#": 289 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 325, + "y": 162.73575476702598 + }, + { + "x": 300, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 147.3284840519903 + }, + { + "endCol": 6, + "endRow": 3, + "id": "6,6,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 287 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 295 + }, + "bounds": { + "#": 298 + }, + "collisionFilter": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "density": 0.001, + "force": { + "#": 303 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 304 + }, + "positionImpulse": { + "#": 305 + }, + "positionPrev": { + "#": 306 + }, + "region": { + "#": 307 + }, + "render": { + "#": 308 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 310 + }, + "vertices": { + "#": 311 + } + }, + [ + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 299 + }, + "min": { + "#": 300 + } + }, + { + "x": 350, + "y": 162.73575476702598 + }, + { + "x": 325, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 147.3284840519903 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,2,3", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 309 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 317 + }, + "bounds": { + "#": 320 + }, + "collisionFilter": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "density": 0.001, + "force": { + "#": 325 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 326 + }, + "positionImpulse": { + "#": 327 + }, + "positionPrev": { + "#": 328 + }, + "region": { + "#": 329 + }, + "render": { + "#": 330 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 332 + }, + "vertices": { + "#": 333 + } + }, + [ + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 321 + }, + "min": { + "#": 322 + } + }, + { + "x": 375, + "y": 162.73575476702598 + }, + { + "x": 350, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 147.3284840519903 + }, + { + "endCol": 7, + "endRow": 3, + "id": "7,7,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 331 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 339 + }, + "bounds": { + "#": 342 + }, + "collisionFilter": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "density": 0.001, + "force": { + "#": 347 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 348 + }, + "positionImpulse": { + "#": 349 + }, + "positionPrev": { + "#": 350 + }, + "region": { + "#": 351 + }, + "render": { + "#": 352 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 354 + }, + "vertices": { + "#": 355 + } + }, + [ + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 343 + }, + "min": { + "#": 344 + } + }, + { + "x": 400, + "y": 162.73575476702598 + }, + { + "x": 375, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 147.3284840519903 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 353 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 361 + }, + "bounds": { + "#": 364 + }, + "collisionFilter": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "density": 0.001, + "force": { + "#": 369 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 370 + }, + "positionImpulse": { + "#": 371 + }, + "positionPrev": { + "#": 372 + }, + "region": { + "#": 373 + }, + "render": { + "#": 374 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 376 + }, + "vertices": { + "#": 377 + } + }, + [ + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 365 + }, + "min": { + "#": 366 + } + }, + { + "x": 425, + "y": 162.73575476702598 + }, + { + "x": 400, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 147.3284840519903 + }, + { + "endCol": 8, + "endRow": 3, + "id": "8,8,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 375 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 383 + }, + "bounds": { + "#": 386 + }, + "collisionFilter": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "density": 0.001, + "force": { + "#": 391 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 392 + }, + "positionImpulse": { + "#": 393 + }, + "positionPrev": { + "#": 394 + }, + "region": { + "#": 395 + }, + "render": { + "#": 396 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 398 + }, + "vertices": { + "#": 399 + } + }, + [ + { + "#": 384 + }, + { + "#": 385 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 387 + }, + "min": { + "#": 388 + } + }, + { + "x": 450, + "y": 162.73575476702598 + }, + { + "x": 425, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 147.3284840519903 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 397 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 405 + }, + "bounds": { + "#": 408 + }, + "collisionFilter": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "density": 0.001, + "force": { + "#": 413 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 414 + }, + "positionImpulse": { + "#": 415 + }, + "positionPrev": { + "#": 416 + }, + "region": { + "#": 417 + }, + "render": { + "#": 418 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 420 + }, + "vertices": { + "#": 421 + } + }, + [ + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 409 + }, + "min": { + "#": 410 + } + }, + { + "x": 475, + "y": 162.73575476702598 + }, + { + "x": 450, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 147.3284840519903 + }, + { + "endCol": 9, + "endRow": 3, + "id": "9,9,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 419 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 427 + }, + "bounds": { + "#": 430 + }, + "collisionFilter": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "density": 0.001, + "force": { + "#": 435 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 436 + }, + "positionImpulse": { + "#": 437 + }, + "positionPrev": { + "#": 438 + }, + "region": { + "#": 439 + }, + "render": { + "#": 440 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 442 + }, + "vertices": { + "#": 443 + } + }, + [ + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 431 + }, + "min": { + "#": 432 + } + }, + { + "x": 500, + "y": 162.73575476702598 + }, + { + "x": 475, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 147.3284840519903 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 441 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 449 + }, + "bounds": { + "#": 452 + }, + "collisionFilter": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "density": 0.001, + "force": { + "#": 457 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 458 + }, + "positionImpulse": { + "#": 459 + }, + "positionPrev": { + "#": 460 + }, + "region": { + "#": 461 + }, + "render": { + "#": 462 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 464 + }, + "vertices": { + "#": 465 + } + }, + [ + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 453 + }, + "min": { + "#": 454 + } + }, + { + "x": 525, + "y": 162.73575476702598 + }, + { + "x": 500, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 147.3284840519903 + }, + { + "endCol": 10, + "endRow": 3, + "id": "10,10,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 463 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 471 + }, + "bounds": { + "#": 474 + }, + "collisionFilter": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "density": 0.001, + "force": { + "#": 479 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 480 + }, + "positionImpulse": { + "#": 481 + }, + "positionPrev": { + "#": 482 + }, + "region": { + "#": 483 + }, + "render": { + "#": 484 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 486 + }, + "vertices": { + "#": 487 + } + }, + [ + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 475 + }, + "min": { + "#": 476 + } + }, + { + "x": 550, + "y": 162.73575476702598 + }, + { + "x": 525, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 147.3284840519903 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 485 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 493 + }, + "bounds": { + "#": 496 + }, + "collisionFilter": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "density": 0.001, + "force": { + "#": 501 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 502 + }, + "positionImpulse": { + "#": 503 + }, + "positionPrev": { + "#": 504 + }, + "region": { + "#": 505 + }, + "render": { + "#": 506 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 508 + }, + "vertices": { + "#": 509 + } + }, + [ + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 497 + }, + "min": { + "#": 498 + } + }, + { + "x": 575, + "y": 162.73575476702598 + }, + { + "x": 550, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 147.3284840519903 + }, + { + "endCol": 11, + "endRow": 3, + "id": "11,11,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 507 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 515 + }, + "bounds": { + "#": 518 + }, + "collisionFilter": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "density": 0.001, + "force": { + "#": 523 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 524 + }, + "positionImpulse": { + "#": 525 + }, + "positionPrev": { + "#": 526 + }, + "region": { + "#": 527 + }, + "render": { + "#": 528 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 530 + }, + "vertices": { + "#": 531 + } + }, + [ + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 519 + }, + "min": { + "#": 520 + } + }, + { + "x": 600, + "y": 162.73575476702598 + }, + { + "x": 575, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 147.3284840519903 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 529 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 537 + }, + "bounds": { + "#": 540 + }, + "collisionFilter": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "density": 0.001, + "force": { + "#": 545 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 546 + }, + "positionImpulse": { + "#": 547 + }, + "positionPrev": { + "#": 548 + }, + "region": { + "#": 549 + }, + "render": { + "#": 550 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 552 + }, + "vertices": { + "#": 553 + } + }, + [ + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 541 + }, + "min": { + "#": 542 + } + }, + { + "x": 625, + "y": 162.73575476702598 + }, + { + "x": 600, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 147.3284840519903 + }, + { + "endCol": 13, + "endRow": 3, + "id": "12,13,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 551 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 559 + }, + "bounds": { + "#": 562 + }, + "collisionFilter": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "density": 0.001, + "force": { + "#": 567 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 568 + }, + "positionImpulse": { + "#": 569 + }, + "positionPrev": { + "#": 570 + }, + "region": { + "#": 571 + }, + "render": { + "#": 572 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 574 + }, + "vertices": { + "#": 575 + } + }, + [ + { + "#": 560 + }, + { + "#": 561 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 563 + }, + "min": { + "#": 564 + } + }, + { + "x": 650, + "y": 162.73575476702598 + }, + { + "x": 625, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 147.3284840519903 + }, + { + "endCol": 13, + "endRow": 3, + "id": "13,13,2,3", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 573 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 581 + }, + "bounds": { + "#": 584 + }, + "collisionFilter": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "density": 0.001, + "force": { + "#": 589 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 590 + }, + "positionImpulse": { + "#": 591 + }, + "positionPrev": { + "#": 592 + }, + "region": { + "#": 593 + }, + "render": { + "#": 594 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 596 + }, + "vertices": { + "#": 597 + } + }, + [ + { + "#": 582 + }, + { + "#": 583 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 585 + }, + "min": { + "#": 586 + } + }, + { + "x": 675, + "y": 162.73575476702598 + }, + { + "x": 650, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 147.3284840519903 + }, + { + "endCol": 14, + "endRow": 3, + "id": "13,14,2,3", + "startCol": 13, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 595 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 603 + }, + "bounds": { + "#": 606 + }, + "collisionFilter": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "density": 0.001, + "force": { + "#": 611 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 612 + }, + "positionImpulse": { + "#": 613 + }, + "positionPrev": { + "#": 614 + }, + "region": { + "#": 615 + }, + "render": { + "#": 616 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 618 + }, + "vertices": { + "#": 619 + } + }, + [ + { + "#": 604 + }, + { + "#": 605 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 607 + }, + "min": { + "#": 608 + } + }, + { + "x": 700, + "y": 162.73575476702598 + }, + { + "x": 675, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 147.3284840519903 + }, + { + "endCol": 14, + "endRow": 3, + "id": "14,14,2,3", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 617 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 625 + }, + "bounds": { + "#": 628 + }, + "collisionFilter": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "density": 0.001, + "force": { + "#": 633 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 634 + }, + "positionImpulse": { + "#": 635 + }, + "positionPrev": { + "#": 636 + }, + "region": { + "#": 637 + }, + "render": { + "#": 638 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 640 + }, + "vertices": { + "#": 641 + } + }, + [ + { + "#": 626 + }, + { + "#": 627 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 629 + }, + "min": { + "#": 630 + } + }, + { + "x": 725, + "y": 162.73575476702598 + }, + { + "x": 700, + "y": 137.73575476702595 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 150.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 147.3284840519903 + }, + { + "endCol": 15, + "endRow": 3, + "id": "14,15,2,3", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 639 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 137.73575476702595 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 162.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 647 + }, + "bounds": { + "#": 650 + }, + "collisionFilter": { + "#": 653 + }, + "constraintImpulse": { + "#": 654 + }, + "density": 0.001, + "force": { + "#": 655 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 656 + }, + "positionImpulse": { + "#": 657 + }, + "positionPrev": { + "#": 658 + }, + "region": { + "#": 659 + }, + "render": { + "#": 660 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 662 + }, + "vertices": { + "#": 663 + } + }, + [ + { + "#": 648 + }, + { + "#": 649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 651 + }, + "min": { + "#": 652 + } + }, + { + "x": 125, + "y": 187.73575476702598 + }, + { + "x": 100, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 172.3284840519903 + }, + { + "endCol": 2, + "endRow": 3, + "id": "2,2,3,3", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 661 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 669 + }, + "bounds": { + "#": 672 + }, + "collisionFilter": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "density": 0.001, + "force": { + "#": 677 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 678 + }, + "positionImpulse": { + "#": 679 + }, + "positionPrev": { + "#": 680 + }, + "region": { + "#": 681 + }, + "render": { + "#": 682 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 684 + }, + "vertices": { + "#": 685 + } + }, + [ + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 673 + }, + "min": { + "#": 674 + } + }, + { + "x": 150, + "y": 187.73575476702598 + }, + { + "x": 125, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 172.3284840519903 + }, + { + "endCol": 3, + "endRow": 3, + "id": "2,3,3,3", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 683 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 691 + }, + "bounds": { + "#": 694 + }, + "collisionFilter": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "density": 0.001, + "force": { + "#": 699 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 700 + }, + "positionImpulse": { + "#": 701 + }, + "positionPrev": { + "#": 702 + }, + "region": { + "#": 703 + }, + "render": { + "#": 704 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 706 + }, + "vertices": { + "#": 707 + } + }, + [ + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 695 + }, + "min": { + "#": 696 + } + }, + { + "x": 175, + "y": 187.73575476702598 + }, + { + "x": 150, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 172.3284840519903 + }, + { + "endCol": 3, + "endRow": 3, + "id": "3,3,3,3", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 705 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 713 + }, + "bounds": { + "#": 716 + }, + "collisionFilter": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "density": 0.001, + "force": { + "#": 721 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 722 + }, + "positionImpulse": { + "#": 723 + }, + "positionPrev": { + "#": 724 + }, + "region": { + "#": 725 + }, + "render": { + "#": 726 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 728 + }, + "vertices": { + "#": 729 + } + }, + [ + { + "#": 714 + }, + { + "#": 715 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 717 + }, + "min": { + "#": 718 + } + }, + { + "x": 200, + "y": 187.73575476702598 + }, + { + "x": 175, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 172.3284840519903 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,3,3", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 727 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 735 + }, + "bounds": { + "#": 738 + }, + "collisionFilter": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "density": 0.001, + "force": { + "#": 743 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 744 + }, + "positionImpulse": { + "#": 745 + }, + "positionPrev": { + "#": 746 + }, + "region": { + "#": 747 + }, + "render": { + "#": 748 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 750 + }, + "vertices": { + "#": 751 + } + }, + [ + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 739 + }, + "min": { + "#": 740 + } + }, + { + "x": 225, + "y": 187.73575476702598 + }, + { + "x": 200, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 172.3284840519903 + }, + { + "endCol": 4, + "endRow": 3, + "id": "4,4,3,3", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 749 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 757 + }, + "bounds": { + "#": 760 + }, + "collisionFilter": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "density": 0.001, + "force": { + "#": 765 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 766 + }, + "positionImpulse": { + "#": 767 + }, + "positionPrev": { + "#": 768 + }, + "region": { + "#": 769 + }, + "render": { + "#": 770 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 772 + }, + "vertices": { + "#": 773 + } + }, + [ + { + "#": 758 + }, + { + "#": 759 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 761 + }, + "min": { + "#": 762 + } + }, + { + "x": 250, + "y": 187.73575476702598 + }, + { + "x": 225, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 172.3284840519903 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,3,3", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 771 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 779 + }, + "bounds": { + "#": 782 + }, + "collisionFilter": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "density": 0.001, + "force": { + "#": 787 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 788 + }, + "positionImpulse": { + "#": 789 + }, + "positionPrev": { + "#": 790 + }, + "region": { + "#": 791 + }, + "render": { + "#": 792 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 794 + }, + "vertices": { + "#": 795 + } + }, + [ + { + "#": 780 + }, + { + "#": 781 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 783 + }, + "min": { + "#": 784 + } + }, + { + "x": 275, + "y": 187.73575476702598 + }, + { + "x": 250, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 172.3284840519903 + }, + { + "endCol": 5, + "endRow": 3, + "id": "5,5,3,3", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 793 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 801 + }, + "bounds": { + "#": 804 + }, + "collisionFilter": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "density": 0.001, + "force": { + "#": 809 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 810 + }, + "positionImpulse": { + "#": 811 + }, + "positionPrev": { + "#": 812 + }, + "region": { + "#": 813 + }, + "render": { + "#": 814 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 816 + }, + "vertices": { + "#": 817 + } + }, + [ + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 805 + }, + "min": { + "#": 806 + } + }, + { + "x": 300, + "y": 187.73575476702598 + }, + { + "x": 275, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 172.3284840519903 + }, + { + "endCol": 6, + "endRow": 3, + "id": "5,6,3,3", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 815 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 823 + }, + "bounds": { + "#": 826 + }, + "collisionFilter": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "density": 0.001, + "force": { + "#": 831 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 832 + }, + "positionImpulse": { + "#": 833 + }, + "positionPrev": { + "#": 834 + }, + "region": { + "#": 835 + }, + "render": { + "#": 836 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 838 + }, + "vertices": { + "#": 839 + } + }, + [ + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 827 + }, + "min": { + "#": 828 + } + }, + { + "x": 325, + "y": 187.73575476702598 + }, + { + "x": 300, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 172.3284840519903 + }, + { + "endCol": 6, + "endRow": 3, + "id": "6,6,3,3", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 837 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 845 + }, + "bounds": { + "#": 848 + }, + "collisionFilter": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "density": 0.001, + "force": { + "#": 853 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 854 + }, + "positionImpulse": { + "#": 855 + }, + "positionPrev": { + "#": 856 + }, + "region": { + "#": 857 + }, + "render": { + "#": 858 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 860 + }, + "vertices": { + "#": 861 + } + }, + [ + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 849 + }, + "min": { + "#": 850 + } + }, + { + "x": 350, + "y": 187.73575476702598 + }, + { + "x": 325, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 172.3284840519903 + }, + { + "endCol": 7, + "endRow": 3, + "id": "6,7,3,3", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 859 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 867 + }, + "bounds": { + "#": 870 + }, + "collisionFilter": { + "#": 873 + }, + "constraintImpulse": { + "#": 874 + }, + "density": 0.001, + "force": { + "#": 875 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 876 + }, + "positionImpulse": { + "#": 877 + }, + "positionPrev": { + "#": 878 + }, + "region": { + "#": 879 + }, + "render": { + "#": 880 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 882 + }, + "vertices": { + "#": 883 + } + }, + [ + { + "#": 868 + }, + { + "#": 869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 871 + }, + "min": { + "#": 872 + } + }, + { + "x": 375, + "y": 187.73575476702598 + }, + { + "x": 350, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 172.3284840519903 + }, + { + "endCol": 7, + "endRow": 3, + "id": "7,7,3,3", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 881 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 889 + }, + "bounds": { + "#": 892 + }, + "collisionFilter": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "density": 0.001, + "force": { + "#": 897 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 898 + }, + "positionImpulse": { + "#": 899 + }, + "positionPrev": { + "#": 900 + }, + "region": { + "#": 901 + }, + "render": { + "#": 902 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 904 + }, + "vertices": { + "#": 905 + } + }, + [ + { + "#": 890 + }, + { + "#": 891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 893 + }, + "min": { + "#": 894 + } + }, + { + "x": 400, + "y": 187.73575476702598 + }, + { + "x": 375, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 172.3284840519903 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,3,3", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 903 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 911 + }, + "bounds": { + "#": 914 + }, + "collisionFilter": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "density": 0.001, + "force": { + "#": 919 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 920 + }, + "positionImpulse": { + "#": 921 + }, + "positionPrev": { + "#": 922 + }, + "region": { + "#": 923 + }, + "render": { + "#": 924 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 926 + }, + "vertices": { + "#": 927 + } + }, + [ + { + "#": 912 + }, + { + "#": 913 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 915 + }, + "min": { + "#": 916 + } + }, + { + "x": 425, + "y": 187.73575476702598 + }, + { + "x": 400, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 172.3284840519903 + }, + { + "endCol": 8, + "endRow": 3, + "id": "8,8,3,3", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 925 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 933 + }, + "bounds": { + "#": 936 + }, + "collisionFilter": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "density": 0.001, + "force": { + "#": 941 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 942 + }, + "positionImpulse": { + "#": 943 + }, + "positionPrev": { + "#": 944 + }, + "region": { + "#": 945 + }, + "render": { + "#": 946 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 948 + }, + "vertices": { + "#": 949 + } + }, + [ + { + "#": 934 + }, + { + "#": 935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 937 + }, + "min": { + "#": 938 + } + }, + { + "x": 450, + "y": 187.73575476702598 + }, + { + "x": 425, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 172.3284840519903 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,3,3", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 947 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 955 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 475, + "y": 187.73575476702598 + }, + { + "x": 450, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 172.3284840519903 + }, + { + "endCol": 9, + "endRow": 3, + "id": "9,9,3,3", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 977 + }, + "bounds": { + "#": 980 + }, + "collisionFilter": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "density": 0.001, + "force": { + "#": 985 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 986 + }, + "positionImpulse": { + "#": 987 + }, + "positionPrev": { + "#": 988 + }, + "region": { + "#": 989 + }, + "render": { + "#": 990 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 992 + }, + "vertices": { + "#": 993 + } + }, + [ + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 981 + }, + "min": { + "#": 982 + } + }, + { + "x": 500, + "y": 187.73575476702598 + }, + { + "x": 475, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 172.3284840519903 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,3,3", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 991 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 999 + }, + "bounds": { + "#": 1002 + }, + "collisionFilter": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "density": 0.001, + "force": { + "#": 1007 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1008 + }, + "positionImpulse": { + "#": 1009 + }, + "positionPrev": { + "#": 1010 + }, + "region": { + "#": 1011 + }, + "render": { + "#": 1012 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1014 + }, + "vertices": { + "#": 1015 + } + }, + [ + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1003 + }, + "min": { + "#": 1004 + } + }, + { + "x": 525, + "y": 187.73575476702598 + }, + { + "x": 500, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 172.3284840519903 + }, + { + "endCol": 10, + "endRow": 3, + "id": "10,10,3,3", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1013 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1021 + }, + "bounds": { + "#": 1024 + }, + "collisionFilter": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "density": 0.001, + "force": { + "#": 1029 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1030 + }, + "positionImpulse": { + "#": 1031 + }, + "positionPrev": { + "#": 1032 + }, + "region": { + "#": 1033 + }, + "render": { + "#": 1034 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1036 + }, + "vertices": { + "#": 1037 + } + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1025 + }, + "min": { + "#": 1026 + } + }, + { + "x": 550, + "y": 187.73575476702598 + }, + { + "x": 525, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 172.3284840519903 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,3,3", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1035 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1043 + }, + "bounds": { + "#": 1046 + }, + "collisionFilter": { + "#": 1049 + }, + "constraintImpulse": { + "#": 1050 + }, + "density": 0.001, + "force": { + "#": 1051 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1052 + }, + "positionImpulse": { + "#": 1053 + }, + "positionPrev": { + "#": 1054 + }, + "region": { + "#": 1055 + }, + "render": { + "#": 1056 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1058 + }, + "vertices": { + "#": 1059 + } + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1047 + }, + "min": { + "#": 1048 + } + }, + { + "x": 575, + "y": 187.73575476702598 + }, + { + "x": 550, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 172.3284840519903 + }, + { + "endCol": 11, + "endRow": 3, + "id": "11,11,3,3", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1057 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1065 + }, + "bounds": { + "#": 1068 + }, + "collisionFilter": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "density": 0.001, + "force": { + "#": 1073 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1074 + }, + "positionImpulse": { + "#": 1075 + }, + "positionPrev": { + "#": 1076 + }, + "region": { + "#": 1077 + }, + "render": { + "#": 1078 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1080 + }, + "vertices": { + "#": 1081 + } + }, + [ + { + "#": 1066 + }, + { + "#": 1067 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1069 + }, + "min": { + "#": 1070 + } + }, + { + "x": 600, + "y": 187.73575476702598 + }, + { + "x": 575, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 172.3284840519903 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,3,3", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1079 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1087 + }, + "bounds": { + "#": 1090 + }, + "collisionFilter": { + "#": 1093 + }, + "constraintImpulse": { + "#": 1094 + }, + "density": 0.001, + "force": { + "#": 1095 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1096 + }, + "positionImpulse": { + "#": 1097 + }, + "positionPrev": { + "#": 1098 + }, + "region": { + "#": 1099 + }, + "render": { + "#": 1100 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1102 + }, + "vertices": { + "#": 1103 + } + }, + [ + { + "#": 1088 + }, + { + "#": 1089 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1091 + }, + "min": { + "#": 1092 + } + }, + { + "x": 625, + "y": 187.73575476702598 + }, + { + "x": 600, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 172.3284840519903 + }, + { + "endCol": 13, + "endRow": 3, + "id": "12,13,3,3", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1101 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1109 + }, + "bounds": { + "#": 1112 + }, + "collisionFilter": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "density": 0.001, + "force": { + "#": 1117 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1118 + }, + "positionImpulse": { + "#": 1119 + }, + "positionPrev": { + "#": 1120 + }, + "region": { + "#": 1121 + }, + "render": { + "#": 1122 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1124 + }, + "vertices": { + "#": 1125 + } + }, + [ + { + "#": 1110 + }, + { + "#": 1111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1113 + }, + "min": { + "#": 1114 + } + }, + { + "x": 650, + "y": 187.73575476702598 + }, + { + "x": 625, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 172.3284840519903 + }, + { + "endCol": 13, + "endRow": 3, + "id": "13,13,3,3", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1123 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1131 + }, + "bounds": { + "#": 1134 + }, + "collisionFilter": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "density": 0.001, + "force": { + "#": 1139 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1140 + }, + "positionImpulse": { + "#": 1141 + }, + "positionPrev": { + "#": 1142 + }, + "region": { + "#": 1143 + }, + "render": { + "#": 1144 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1146 + }, + "vertices": { + "#": 1147 + } + }, + [ + { + "#": 1132 + }, + { + "#": 1133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1135 + }, + "min": { + "#": 1136 + } + }, + { + "x": 675, + "y": 187.73575476702598 + }, + { + "x": 650, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 172.3284840519903 + }, + { + "endCol": 14, + "endRow": 3, + "id": "13,14,3,3", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1145 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1153 + }, + "bounds": { + "#": 1156 + }, + "collisionFilter": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "density": 0.001, + "force": { + "#": 1161 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1162 + }, + "positionImpulse": { + "#": 1163 + }, + "positionPrev": { + "#": 1164 + }, + "region": { + "#": 1165 + }, + "render": { + "#": 1166 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1168 + }, + "vertices": { + "#": 1169 + } + }, + [ + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1157 + }, + "min": { + "#": 1158 + } + }, + { + "x": 700, + "y": 187.73575476702598 + }, + { + "x": 675, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 172.3284840519903 + }, + { + "endCol": 14, + "endRow": 3, + "id": "14,14,3,3", + "startCol": 14, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1167 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1175 + }, + "bounds": { + "#": 1178 + }, + "collisionFilter": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "density": 0.001, + "force": { + "#": 1183 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1184 + }, + "positionImpulse": { + "#": 1185 + }, + "positionPrev": { + "#": 1186 + }, + "region": { + "#": 1187 + }, + "render": { + "#": 1188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1190 + }, + "vertices": { + "#": 1191 + } + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1179 + }, + "min": { + "#": 1180 + } + }, + { + "x": 725, + "y": 187.73575476702598 + }, + { + "x": 700, + "y": 162.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 175.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 172.3284840519903 + }, + { + "endCol": 15, + "endRow": 3, + "id": "14,15,3,3", + "startCol": 14, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1189 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 162.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 187.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1197 + }, + "bounds": { + "#": 1200 + }, + "collisionFilter": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "density": 0.001, + "force": { + "#": 1205 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1206 + }, + "positionImpulse": { + "#": 1207 + }, + "positionPrev": { + "#": 1208 + }, + "region": { + "#": 1209 + }, + "render": { + "#": 1210 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1212 + }, + "vertices": { + "#": 1213 + } + }, + [ + { + "#": 1198 + }, + { + "#": 1199 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1201 + }, + "min": { + "#": 1202 + } + }, + { + "x": 125, + "y": 212.73575476702598 + }, + { + "x": 100, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 197.3284840519903 + }, + { + "endCol": 2, + "endRow": 4, + "id": "2,2,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1211 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1219 + }, + "bounds": { + "#": 1222 + }, + "collisionFilter": { + "#": 1225 + }, + "constraintImpulse": { + "#": 1226 + }, + "density": 0.001, + "force": { + "#": 1227 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1228 + }, + "positionImpulse": { + "#": 1229 + }, + "positionPrev": { + "#": 1230 + }, + "region": { + "#": 1231 + }, + "render": { + "#": 1232 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1234 + }, + "vertices": { + "#": 1235 + } + }, + [ + { + "#": 1220 + }, + { + "#": 1221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1223 + }, + "min": { + "#": 1224 + } + }, + { + "x": 150, + "y": 212.73575476702598 + }, + { + "x": 125, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 197.3284840519903 + }, + { + "endCol": 3, + "endRow": 4, + "id": "2,3,3,4", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1233 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1241 + }, + "bounds": { + "#": 1244 + }, + "collisionFilter": { + "#": 1247 + }, + "constraintImpulse": { + "#": 1248 + }, + "density": 0.001, + "force": { + "#": 1249 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1250 + }, + "positionImpulse": { + "#": 1251 + }, + "positionPrev": { + "#": 1252 + }, + "region": { + "#": 1253 + }, + "render": { + "#": 1254 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1256 + }, + "vertices": { + "#": 1257 + } + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1245 + }, + "min": { + "#": 1246 + } + }, + { + "x": 175, + "y": 212.73575476702598 + }, + { + "x": 150, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 197.3284840519903 + }, + { + "endCol": 3, + "endRow": 4, + "id": "3,3,3,4", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1255 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1263 + }, + "bounds": { + "#": 1266 + }, + "collisionFilter": { + "#": 1269 + }, + "constraintImpulse": { + "#": 1270 + }, + "density": 0.001, + "force": { + "#": 1271 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1272 + }, + "positionImpulse": { + "#": 1273 + }, + "positionPrev": { + "#": 1274 + }, + "region": { + "#": 1275 + }, + "render": { + "#": 1276 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1278 + }, + "vertices": { + "#": 1279 + } + }, + [ + { + "#": 1264 + }, + { + "#": 1265 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1267 + }, + "min": { + "#": 1268 + } + }, + { + "x": 200, + "y": 212.73575476702598 + }, + { + "x": 175, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 197.3284840519903 + }, + { + "endCol": 4, + "endRow": 4, + "id": "3,4,3,4", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1277 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1285 + }, + "bounds": { + "#": 1288 + }, + "collisionFilter": { + "#": 1291 + }, + "constraintImpulse": { + "#": 1292 + }, + "density": 0.001, + "force": { + "#": 1293 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1294 + }, + "positionImpulse": { + "#": 1295 + }, + "positionPrev": { + "#": 1296 + }, + "region": { + "#": 1297 + }, + "render": { + "#": 1298 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1300 + }, + "vertices": { + "#": 1301 + } + }, + [ + { + "#": 1286 + }, + { + "#": 1287 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1289 + }, + "min": { + "#": 1290 + } + }, + { + "x": 225, + "y": 212.73575476702598 + }, + { + "x": 200, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 197.3284840519903 + }, + { + "endCol": 4, + "endRow": 4, + "id": "4,4,3,4", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1299 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1307 + }, + "bounds": { + "#": 1310 + }, + "collisionFilter": { + "#": 1313 + }, + "constraintImpulse": { + "#": 1314 + }, + "density": 0.001, + "force": { + "#": 1315 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1316 + }, + "positionImpulse": { + "#": 1317 + }, + "positionPrev": { + "#": 1318 + }, + "region": { + "#": 1319 + }, + "render": { + "#": 1320 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1322 + }, + "vertices": { + "#": 1323 + } + }, + [ + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1311 + }, + "min": { + "#": 1312 + } + }, + { + "x": 250, + "y": 212.73575476702598 + }, + { + "x": 225, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 197.3284840519903 + }, + { + "endCol": 5, + "endRow": 4, + "id": "4,5,3,4", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1321 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1329 + }, + "bounds": { + "#": 1332 + }, + "collisionFilter": { + "#": 1335 + }, + "constraintImpulse": { + "#": 1336 + }, + "density": 0.001, + "force": { + "#": 1337 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1338 + }, + "positionImpulse": { + "#": 1339 + }, + "positionPrev": { + "#": 1340 + }, + "region": { + "#": 1341 + }, + "render": { + "#": 1342 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1344 + }, + "vertices": { + "#": 1345 + } + }, + [ + { + "#": 1330 + }, + { + "#": 1331 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1333 + }, + "min": { + "#": 1334 + } + }, + { + "x": 275, + "y": 212.73575476702598 + }, + { + "x": 250, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 197.3284840519903 + }, + { + "endCol": 5, + "endRow": 4, + "id": "5,5,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1343 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1351 + }, + "bounds": { + "#": 1354 + }, + "collisionFilter": { + "#": 1357 + }, + "constraintImpulse": { + "#": 1358 + }, + "density": 0.001, + "force": { + "#": 1359 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1360 + }, + "positionImpulse": { + "#": 1361 + }, + "positionPrev": { + "#": 1362 + }, + "region": { + "#": 1363 + }, + "render": { + "#": 1364 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1366 + }, + "vertices": { + "#": 1367 + } + }, + [ + { + "#": 1352 + }, + { + "#": 1353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1355 + }, + "min": { + "#": 1356 + } + }, + { + "x": 300, + "y": 212.73575476702598 + }, + { + "x": 275, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 197.3284840519903 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,3,4", + "startCol": 5, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1365 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1373 + }, + "bounds": { + "#": 1376 + }, + "collisionFilter": { + "#": 1379 + }, + "constraintImpulse": { + "#": 1380 + }, + "density": 0.001, + "force": { + "#": 1381 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1382 + }, + "positionImpulse": { + "#": 1383 + }, + "positionPrev": { + "#": 1384 + }, + "region": { + "#": 1385 + }, + "render": { + "#": 1386 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1388 + }, + "vertices": { + "#": 1389 + } + }, + [ + { + "#": 1374 + }, + { + "#": 1375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1377 + }, + "min": { + "#": 1378 + } + }, + { + "x": 325, + "y": 212.73575476702598 + }, + { + "x": 300, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 197.3284840519903 + }, + { + "endCol": 6, + "endRow": 4, + "id": "6,6,3,4", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1387 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1395 + }, + "bounds": { + "#": 1398 + }, + "collisionFilter": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "density": 0.001, + "force": { + "#": 1403 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1404 + }, + "positionImpulse": { + "#": 1405 + }, + "positionPrev": { + "#": 1406 + }, + "region": { + "#": 1407 + }, + "render": { + "#": 1408 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1410 + }, + "vertices": { + "#": 1411 + } + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1399 + }, + "min": { + "#": 1400 + } + }, + { + "x": 350, + "y": 212.73575476702598 + }, + { + "x": 325, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 197.3284840519903 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,3,4", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1409 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1417 + }, + "bounds": { + "#": 1420 + }, + "collisionFilter": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "density": 0.001, + "force": { + "#": 1425 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 65, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1426 + }, + "positionImpulse": { + "#": 1427 + }, + "positionPrev": { + "#": 1428 + }, + "region": { + "#": 1429 + }, + "render": { + "#": 1430 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1432 + }, + "vertices": { + "#": 1433 + } + }, + [ + { + "#": 1418 + }, + { + "#": 1419 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1421 + }, + "min": { + "#": 1422 + } + }, + { + "x": 375, + "y": 212.73575476702598 + }, + { + "x": 350, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 197.3284840519903 + }, + { + "endCol": 7, + "endRow": 4, + "id": "7,7,3,4", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1431 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1439 + }, + "bounds": { + "#": 1442 + }, + "collisionFilter": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "density": 0.001, + "force": { + "#": 1447 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 66, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1448 + }, + "positionImpulse": { + "#": 1449 + }, + "positionPrev": { + "#": 1450 + }, + "region": { + "#": 1451 + }, + "render": { + "#": 1452 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1454 + }, + "vertices": { + "#": 1455 + } + }, + [ + { + "#": 1440 + }, + { + "#": 1441 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1443 + }, + "min": { + "#": 1444 + } + }, + { + "x": 400, + "y": 212.73575476702598 + }, + { + "x": 375, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 197.3284840519903 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,3,4", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1453 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1461 + }, + "bounds": { + "#": 1464 + }, + "collisionFilter": { + "#": 1467 + }, + "constraintImpulse": { + "#": 1468 + }, + "density": 0.001, + "force": { + "#": 1469 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 67, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1470 + }, + "positionImpulse": { + "#": 1471 + }, + "positionPrev": { + "#": 1472 + }, + "region": { + "#": 1473 + }, + "render": { + "#": 1474 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1476 + }, + "vertices": { + "#": 1477 + } + }, + [ + { + "#": 1462 + }, + { + "#": 1463 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1465 + }, + "min": { + "#": 1466 + } + }, + { + "x": 425, + "y": 212.73575476702598 + }, + { + "x": 400, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 197.3284840519903 + }, + { + "endCol": 8, + "endRow": 4, + "id": "8,8,3,4", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1475 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1483 + }, + "bounds": { + "#": 1486 + }, + "collisionFilter": { + "#": 1489 + }, + "constraintImpulse": { + "#": 1490 + }, + "density": 0.001, + "force": { + "#": 1491 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 68, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1492 + }, + "positionImpulse": { + "#": 1493 + }, + "positionPrev": { + "#": 1494 + }, + "region": { + "#": 1495 + }, + "render": { + "#": 1496 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1498 + }, + "vertices": { + "#": 1499 + } + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1487 + }, + "min": { + "#": 1488 + } + }, + { + "x": 450, + "y": 212.73575476702598 + }, + { + "x": 425, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 197.3284840519903 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,3,4", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1497 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1505 + }, + "bounds": { + "#": 1508 + }, + "collisionFilter": { + "#": 1511 + }, + "constraintImpulse": { + "#": 1512 + }, + "density": 0.001, + "force": { + "#": 1513 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 69, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1514 + }, + "positionImpulse": { + "#": 1515 + }, + "positionPrev": { + "#": 1516 + }, + "region": { + "#": 1517 + }, + "render": { + "#": 1518 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1520 + }, + "vertices": { + "#": 1521 + } + }, + [ + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1509 + }, + "min": { + "#": 1510 + } + }, + { + "x": 475, + "y": 212.73575476702598 + }, + { + "x": 450, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 197.3284840519903 + }, + { + "endCol": 9, + "endRow": 4, + "id": "9,9,3,4", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1519 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1527 + }, + "bounds": { + "#": 1530 + }, + "collisionFilter": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "density": 0.001, + "force": { + "#": 1535 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 70, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1536 + }, + "positionImpulse": { + "#": 1537 + }, + "positionPrev": { + "#": 1538 + }, + "region": { + "#": 1539 + }, + "render": { + "#": 1540 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1542 + }, + "vertices": { + "#": 1543 + } + }, + [ + { + "#": 1528 + }, + { + "#": 1529 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1531 + }, + "min": { + "#": 1532 + } + }, + { + "x": 500, + "y": 212.73575476702598 + }, + { + "x": 475, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 197.3284840519903 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,3,4", + "startCol": 9, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1541 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1549 + }, + "bounds": { + "#": 1552 + }, + "collisionFilter": { + "#": 1555 + }, + "constraintImpulse": { + "#": 1556 + }, + "density": 0.001, + "force": { + "#": 1557 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 71, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1558 + }, + "positionImpulse": { + "#": 1559 + }, + "positionPrev": { + "#": 1560 + }, + "region": { + "#": 1561 + }, + "render": { + "#": 1562 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1564 + }, + "vertices": { + "#": 1565 + } + }, + [ + { + "#": 1550 + }, + { + "#": 1551 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1553 + }, + "min": { + "#": 1554 + } + }, + { + "x": 525, + "y": 212.73575476702598 + }, + { + "x": 500, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 197.3284840519903 + }, + { + "endCol": 10, + "endRow": 4, + "id": "10,10,3,4", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1563 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1571 + }, + "bounds": { + "#": 1574 + }, + "collisionFilter": { + "#": 1577 + }, + "constraintImpulse": { + "#": 1578 + }, + "density": 0.001, + "force": { + "#": 1579 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 72, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1580 + }, + "positionImpulse": { + "#": 1581 + }, + "positionPrev": { + "#": 1582 + }, + "region": { + "#": 1583 + }, + "render": { + "#": 1584 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1586 + }, + "vertices": { + "#": 1587 + } + }, + [ + { + "#": 1572 + }, + { + "#": 1573 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1575 + }, + "min": { + "#": 1576 + } + }, + { + "x": 550, + "y": 212.73575476702598 + }, + { + "x": 525, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 197.3284840519903 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,3,4", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1585 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1593 + }, + "bounds": { + "#": 1596 + }, + "collisionFilter": { + "#": 1599 + }, + "constraintImpulse": { + "#": 1600 + }, + "density": 0.001, + "force": { + "#": 1601 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 73, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1602 + }, + "positionImpulse": { + "#": 1603 + }, + "positionPrev": { + "#": 1604 + }, + "region": { + "#": 1605 + }, + "render": { + "#": 1606 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1608 + }, + "vertices": { + "#": 1609 + } + }, + [ + { + "#": 1594 + }, + { + "#": 1595 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1597 + }, + "min": { + "#": 1598 + } + }, + { + "x": 575, + "y": 212.73575476702598 + }, + { + "x": 550, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 197.3284840519903 + }, + { + "endCol": 11, + "endRow": 4, + "id": "11,11,3,4", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1607 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1615 + }, + "bounds": { + "#": 1618 + }, + "collisionFilter": { + "#": 1621 + }, + "constraintImpulse": { + "#": 1622 + }, + "density": 0.001, + "force": { + "#": 1623 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 74, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1624 + }, + "positionImpulse": { + "#": 1625 + }, + "positionPrev": { + "#": 1626 + }, + "region": { + "#": 1627 + }, + "render": { + "#": 1628 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1630 + }, + "vertices": { + "#": 1631 + } + }, + [ + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1619 + }, + "min": { + "#": 1620 + } + }, + { + "x": 600, + "y": 212.73575476702598 + }, + { + "x": 575, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 197.3284840519903 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,3,4", + "startCol": 11, + "startRow": 3 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1629 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1637 + }, + "bounds": { + "#": 1640 + }, + "collisionFilter": { + "#": 1643 + }, + "constraintImpulse": { + "#": 1644 + }, + "density": 0.001, + "force": { + "#": 1645 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 75, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1646 + }, + "positionImpulse": { + "#": 1647 + }, + "positionPrev": { + "#": 1648 + }, + "region": { + "#": 1649 + }, + "render": { + "#": 1650 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1652 + }, + "vertices": { + "#": 1653 + } + }, + [ + { + "#": 1638 + }, + { + "#": 1639 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1641 + }, + "min": { + "#": 1642 + } + }, + { + "x": 625, + "y": 212.73575476702598 + }, + { + "x": 600, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 197.3284840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,3,4", + "startCol": 12, + "startRow": 3 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1651 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1659 + }, + "bounds": { + "#": 1662 + }, + "collisionFilter": { + "#": 1665 + }, + "constraintImpulse": { + "#": 1666 + }, + "density": 0.001, + "force": { + "#": 1667 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 76, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1668 + }, + "positionImpulse": { + "#": 1669 + }, + "positionPrev": { + "#": 1670 + }, + "region": { + "#": 1671 + }, + "render": { + "#": 1672 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1674 + }, + "vertices": { + "#": 1675 + } + }, + [ + { + "#": 1660 + }, + { + "#": 1661 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1663 + }, + "min": { + "#": 1664 + } + }, + { + "x": 650, + "y": 212.73575476702598 + }, + { + "x": 625, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 197.3284840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "13,13,3,4", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1673 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1681 + }, + "bounds": { + "#": 1684 + }, + "collisionFilter": { + "#": 1687 + }, + "constraintImpulse": { + "#": 1688 + }, + "density": 0.001, + "force": { + "#": 1689 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 77, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1690 + }, + "positionImpulse": { + "#": 1691 + }, + "positionPrev": { + "#": 1692 + }, + "region": { + "#": 1693 + }, + "render": { + "#": 1694 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1696 + }, + "vertices": { + "#": 1697 + } + }, + [ + { + "#": 1682 + }, + { + "#": 1683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1685 + }, + "min": { + "#": 1686 + } + }, + { + "x": 675, + "y": 212.73575476702598 + }, + { + "x": 650, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 197.3284840519903 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,3,4", + "startCol": 13, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1695 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1703 + }, + "bounds": { + "#": 1706 + }, + "collisionFilter": { + "#": 1709 + }, + "constraintImpulse": { + "#": 1710 + }, + "density": 0.001, + "force": { + "#": 1711 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 78, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1712 + }, + "positionImpulse": { + "#": 1713 + }, + "positionPrev": { + "#": 1714 + }, + "region": { + "#": 1715 + }, + "render": { + "#": 1716 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1718 + }, + "vertices": { + "#": 1719 + } + }, + [ + { + "#": 1704 + }, + { + "#": 1705 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1707 + }, + "min": { + "#": 1708 + } + }, + { + "x": 700, + "y": 212.73575476702598 + }, + { + "x": 675, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 197.3284840519903 + }, + { + "endCol": 14, + "endRow": 4, + "id": "14,14,3,4", + "startCol": 14, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1717 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1725 + }, + "bounds": { + "#": 1728 + }, + "collisionFilter": { + "#": 1731 + }, + "constraintImpulse": { + "#": 1732 + }, + "density": 0.001, + "force": { + "#": 1733 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 79, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1734 + }, + "positionImpulse": { + "#": 1735 + }, + "positionPrev": { + "#": 1736 + }, + "region": { + "#": 1737 + }, + "render": { + "#": 1738 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1740 + }, + "vertices": { + "#": 1741 + } + }, + [ + { + "#": 1726 + }, + { + "#": 1727 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1729 + }, + "min": { + "#": 1730 + } + }, + { + "x": 725, + "y": 212.73575476702598 + }, + { + "x": 700, + "y": 187.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 200.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 197.3284840519903 + }, + { + "endCol": 15, + "endRow": 4, + "id": "14,15,3,4", + "startCol": 14, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1739 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 187.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 212.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1747 + }, + "bounds": { + "#": 1750 + }, + "collisionFilter": { + "#": 1753 + }, + "constraintImpulse": { + "#": 1754 + }, + "density": 0.001, + "force": { + "#": 1755 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 80, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1756 + }, + "positionImpulse": { + "#": 1757 + }, + "positionPrev": { + "#": 1758 + }, + "region": { + "#": 1759 + }, + "render": { + "#": 1760 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1762 + }, + "vertices": { + "#": 1763 + } + }, + [ + { + "#": 1748 + }, + { + "#": 1749 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1751 + }, + "min": { + "#": 1752 + } + }, + { + "x": 125, + "y": 237.73575476702598 + }, + { + "x": 100, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 222.3284840519903 + }, + { + "endCol": 2, + "endRow": 4, + "id": "2,2,4,4", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1761 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1769 + }, + "bounds": { + "#": 1772 + }, + "collisionFilter": { + "#": 1775 + }, + "constraintImpulse": { + "#": 1776 + }, + "density": 0.001, + "force": { + "#": 1777 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 81, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1778 + }, + "positionImpulse": { + "#": 1779 + }, + "positionPrev": { + "#": 1780 + }, + "region": { + "#": 1781 + }, + "render": { + "#": 1782 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1784 + }, + "vertices": { + "#": 1785 + } + }, + [ + { + "#": 1770 + }, + { + "#": 1771 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1773 + }, + "min": { + "#": 1774 + } + }, + { + "x": 150, + "y": 237.73575476702598 + }, + { + "x": 125, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 222.3284840519903 + }, + { + "endCol": 3, + "endRow": 4, + "id": "2,3,4,4", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1783 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1791 + }, + "bounds": { + "#": 1794 + }, + "collisionFilter": { + "#": 1797 + }, + "constraintImpulse": { + "#": 1798 + }, + "density": 0.001, + "force": { + "#": 1799 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 82, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1800 + }, + "positionImpulse": { + "#": 1801 + }, + "positionPrev": { + "#": 1802 + }, + "region": { + "#": 1803 + }, + "render": { + "#": 1804 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1806 + }, + "vertices": { + "#": 1807 + } + }, + [ + { + "#": 1792 + }, + { + "#": 1793 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1795 + }, + "min": { + "#": 1796 + } + }, + { + "x": 175, + "y": 237.73575476702598 + }, + { + "x": 150, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 222.3284840519903 + }, + { + "endCol": 3, + "endRow": 4, + "id": "3,3,4,4", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1805 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1813 + }, + "bounds": { + "#": 1816 + }, + "collisionFilter": { + "#": 1819 + }, + "constraintImpulse": { + "#": 1820 + }, + "density": 0.001, + "force": { + "#": 1821 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 83, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1822 + }, + "positionImpulse": { + "#": 1823 + }, + "positionPrev": { + "#": 1824 + }, + "region": { + "#": 1825 + }, + "render": { + "#": 1826 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1828 + }, + "vertices": { + "#": 1829 + } + }, + [ + { + "#": 1814 + }, + { + "#": 1815 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1817 + }, + "min": { + "#": 1818 + } + }, + { + "x": 200, + "y": 237.73575476702598 + }, + { + "x": 175, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 222.3284840519903 + }, + { + "endCol": 4, + "endRow": 4, + "id": "3,4,4,4", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1827 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1835 + }, + "bounds": { + "#": 1838 + }, + "collisionFilter": { + "#": 1841 + }, + "constraintImpulse": { + "#": 1842 + }, + "density": 0.001, + "force": { + "#": 1843 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 84, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1844 + }, + "positionImpulse": { + "#": 1845 + }, + "positionPrev": { + "#": 1846 + }, + "region": { + "#": 1847 + }, + "render": { + "#": 1848 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1850 + }, + "vertices": { + "#": 1851 + } + }, + [ + { + "#": 1836 + }, + { + "#": 1837 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1839 + }, + "min": { + "#": 1840 + } + }, + { + "x": 225, + "y": 237.73575476702598 + }, + { + "x": 200, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 222.3284840519903 + }, + { + "endCol": 4, + "endRow": 4, + "id": "4,4,4,4", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1849 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1857 + }, + "bounds": { + "#": 1860 + }, + "collisionFilter": { + "#": 1863 + }, + "constraintImpulse": { + "#": 1864 + }, + "density": 0.001, + "force": { + "#": 1865 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 85, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1866 + }, + "positionImpulse": { + "#": 1867 + }, + "positionPrev": { + "#": 1868 + }, + "region": { + "#": 1869 + }, + "render": { + "#": 1870 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1872 + }, + "vertices": { + "#": 1873 + } + }, + [ + { + "#": 1858 + }, + { + "#": 1859 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1861 + }, + "min": { + "#": 1862 + } + }, + { + "x": 250, + "y": 237.73575476702598 + }, + { + "x": 225, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 222.3284840519903 + }, + { + "endCol": 5, + "endRow": 4, + "id": "4,5,4,4", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1871 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1879 + }, + "bounds": { + "#": 1882 + }, + "collisionFilter": { + "#": 1885 + }, + "constraintImpulse": { + "#": 1886 + }, + "density": 0.001, + "force": { + "#": 1887 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 86, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1888 + }, + "positionImpulse": { + "#": 1889 + }, + "positionPrev": { + "#": 1890 + }, + "region": { + "#": 1891 + }, + "render": { + "#": 1892 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1894 + }, + "vertices": { + "#": 1895 + } + }, + [ + { + "#": 1880 + }, + { + "#": 1881 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1883 + }, + "min": { + "#": 1884 + } + }, + { + "x": 275, + "y": 237.73575476702598 + }, + { + "x": 250, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 222.3284840519903 + }, + { + "endCol": 5, + "endRow": 4, + "id": "5,5,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1893 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1901 + }, + "bounds": { + "#": 1904 + }, + "collisionFilter": { + "#": 1907 + }, + "constraintImpulse": { + "#": 1908 + }, + "density": 0.001, + "force": { + "#": 1909 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 87, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1910 + }, + "positionImpulse": { + "#": 1911 + }, + "positionPrev": { + "#": 1912 + }, + "region": { + "#": 1913 + }, + "render": { + "#": 1914 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1916 + }, + "vertices": { + "#": 1917 + } + }, + [ + { + "#": 1902 + }, + { + "#": 1903 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1905 + }, + "min": { + "#": 1906 + } + }, + { + "x": 300, + "y": 237.73575476702598 + }, + { + "x": 275, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 222.3284840519903 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1915 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1923 + }, + "bounds": { + "#": 1926 + }, + "collisionFilter": { + "#": 1929 + }, + "constraintImpulse": { + "#": 1930 + }, + "density": 0.001, + "force": { + "#": 1931 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 88, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1932 + }, + "positionImpulse": { + "#": 1933 + }, + "positionPrev": { + "#": 1934 + }, + "region": { + "#": 1935 + }, + "render": { + "#": 1936 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1938 + }, + "vertices": { + "#": 1939 + } + }, + [ + { + "#": 1924 + }, + { + "#": 1925 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1927 + }, + "min": { + "#": 1928 + } + }, + { + "x": 325, + "y": 237.73575476702598 + }, + { + "x": 300, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 222.3284840519903 + }, + { + "endCol": 6, + "endRow": 4, + "id": "6,6,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1937 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1945 + }, + "bounds": { + "#": 1948 + }, + "collisionFilter": { + "#": 1951 + }, + "constraintImpulse": { + "#": 1952 + }, + "density": 0.001, + "force": { + "#": 1953 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 89, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1954 + }, + "positionImpulse": { + "#": 1955 + }, + "positionPrev": { + "#": 1956 + }, + "region": { + "#": 1957 + }, + "render": { + "#": 1958 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1960 + }, + "vertices": { + "#": 1961 + } + }, + [ + { + "#": 1946 + }, + { + "#": 1947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1949 + }, + "min": { + "#": 1950 + } + }, + { + "x": 350, + "y": 237.73575476702598 + }, + { + "x": 325, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 222.3284840519903 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1959 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1967 + }, + "bounds": { + "#": 1970 + }, + "collisionFilter": { + "#": 1973 + }, + "constraintImpulse": { + "#": 1974 + }, + "density": 0.001, + "force": { + "#": 1975 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 90, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1976 + }, + "positionImpulse": { + "#": 1977 + }, + "positionPrev": { + "#": 1978 + }, + "region": { + "#": 1979 + }, + "render": { + "#": 1980 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1982 + }, + "vertices": { + "#": 1983 + } + }, + [ + { + "#": 1968 + }, + { + "#": 1969 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1971 + }, + "min": { + "#": 1972 + } + }, + { + "x": 375, + "y": 237.73575476702598 + }, + { + "x": 350, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 222.3284840519903 + }, + { + "endCol": 7, + "endRow": 4, + "id": "7,7,4,4", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1981 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 1989 + }, + "bounds": { + "#": 1992 + }, + "collisionFilter": { + "#": 1995 + }, + "constraintImpulse": { + "#": 1996 + }, + "density": 0.001, + "force": { + "#": 1997 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 91, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 1998 + }, + "positionImpulse": { + "#": 1999 + }, + "positionPrev": { + "#": 2000 + }, + "region": { + "#": 2001 + }, + "render": { + "#": 2002 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2004 + }, + "vertices": { + "#": 2005 + } + }, + [ + { + "#": 1990 + }, + { + "#": 1991 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1993 + }, + "min": { + "#": 1994 + } + }, + { + "x": 400, + "y": 237.73575476702598 + }, + { + "x": 375, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 222.3284840519903 + }, + { + "endCol": 8, + "endRow": 4, + "id": "7,8,4,4", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2003 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2011 + }, + "bounds": { + "#": 2014 + }, + "collisionFilter": { + "#": 2017 + }, + "constraintImpulse": { + "#": 2018 + }, + "density": 0.001, + "force": { + "#": 2019 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 92, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2020 + }, + "positionImpulse": { + "#": 2021 + }, + "positionPrev": { + "#": 2022 + }, + "region": { + "#": 2023 + }, + "render": { + "#": 2024 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2026 + }, + "vertices": { + "#": 2027 + } + }, + [ + { + "#": 2012 + }, + { + "#": 2013 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2015 + }, + "min": { + "#": 2016 + } + }, + { + "x": 425, + "y": 237.73575476702598 + }, + { + "x": 400, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 222.3284840519903 + }, + { + "endCol": 8, + "endRow": 4, + "id": "8,8,4,4", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2025 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2033 + }, + "bounds": { + "#": 2036 + }, + "collisionFilter": { + "#": 2039 + }, + "constraintImpulse": { + "#": 2040 + }, + "density": 0.001, + "force": { + "#": 2041 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 93, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2042 + }, + "positionImpulse": { + "#": 2043 + }, + "positionPrev": { + "#": 2044 + }, + "region": { + "#": 2045 + }, + "render": { + "#": 2046 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2048 + }, + "vertices": { + "#": 2049 + } + }, + [ + { + "#": 2034 + }, + { + "#": 2035 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2037 + }, + "min": { + "#": 2038 + } + }, + { + "x": 450, + "y": 237.73575476702598 + }, + { + "x": 425, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 222.3284840519903 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,4,4", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2047 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2055 + }, + "bounds": { + "#": 2058 + }, + "collisionFilter": { + "#": 2061 + }, + "constraintImpulse": { + "#": 2062 + }, + "density": 0.001, + "force": { + "#": 2063 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 94, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2064 + }, + "positionImpulse": { + "#": 2065 + }, + "positionPrev": { + "#": 2066 + }, + "region": { + "#": 2067 + }, + "render": { + "#": 2068 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2070 + }, + "vertices": { + "#": 2071 + } + }, + [ + { + "#": 2056 + }, + { + "#": 2057 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2059 + }, + "min": { + "#": 2060 + } + }, + { + "x": 475, + "y": 237.73575476702598 + }, + { + "x": 450, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 222.3284840519903 + }, + { + "endCol": 9, + "endRow": 4, + "id": "9,9,4,4", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2069 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + }, + { + "#": 2075 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2077 + }, + "bounds": { + "#": 2080 + }, + "collisionFilter": { + "#": 2083 + }, + "constraintImpulse": { + "#": 2084 + }, + "density": 0.001, + "force": { + "#": 2085 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 95, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2086 + }, + "positionImpulse": { + "#": 2087 + }, + "positionPrev": { + "#": 2088 + }, + "region": { + "#": 2089 + }, + "render": { + "#": 2090 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2092 + }, + "vertices": { + "#": 2093 + } + }, + [ + { + "#": 2078 + }, + { + "#": 2079 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2081 + }, + "min": { + "#": 2082 + } + }, + { + "x": 500, + "y": 237.73575476702598 + }, + { + "x": 475, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 222.3284840519903 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,4,4", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2091 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2099 + }, + "bounds": { + "#": 2102 + }, + "collisionFilter": { + "#": 2105 + }, + "constraintImpulse": { + "#": 2106 + }, + "density": 0.001, + "force": { + "#": 2107 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 96, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2108 + }, + "positionImpulse": { + "#": 2109 + }, + "positionPrev": { + "#": 2110 + }, + "region": { + "#": 2111 + }, + "render": { + "#": 2112 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2114 + }, + "vertices": { + "#": 2115 + } + }, + [ + { + "#": 2100 + }, + { + "#": 2101 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2103 + }, + "min": { + "#": 2104 + } + }, + { + "x": 525, + "y": 237.73575476702598 + }, + { + "x": 500, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 222.3284840519903 + }, + { + "endCol": 10, + "endRow": 4, + "id": "10,10,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2113 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2121 + }, + "bounds": { + "#": 2124 + }, + "collisionFilter": { + "#": 2127 + }, + "constraintImpulse": { + "#": 2128 + }, + "density": 0.001, + "force": { + "#": 2129 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 97, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2130 + }, + "positionImpulse": { + "#": 2131 + }, + "positionPrev": { + "#": 2132 + }, + "region": { + "#": 2133 + }, + "render": { + "#": 2134 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2136 + }, + "vertices": { + "#": 2137 + } + }, + [ + { + "#": 2122 + }, + { + "#": 2123 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2125 + }, + "min": { + "#": 2126 + } + }, + { + "x": 550, + "y": 237.73575476702598 + }, + { + "x": 525, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 222.3284840519903 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2135 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2143 + }, + "bounds": { + "#": 2146 + }, + "collisionFilter": { + "#": 2149 + }, + "constraintImpulse": { + "#": 2150 + }, + "density": 0.001, + "force": { + "#": 2151 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 98, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2152 + }, + "positionImpulse": { + "#": 2153 + }, + "positionPrev": { + "#": 2154 + }, + "region": { + "#": 2155 + }, + "render": { + "#": 2156 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2158 + }, + "vertices": { + "#": 2159 + } + }, + [ + { + "#": 2144 + }, + { + "#": 2145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2147 + }, + "min": { + "#": 2148 + } + }, + { + "x": 575, + "y": 237.73575476702598 + }, + { + "x": 550, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 222.3284840519903 + }, + { + "endCol": 11, + "endRow": 4, + "id": "11,11,4,4", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2157 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2165 + }, + "bounds": { + "#": 2168 + }, + "collisionFilter": { + "#": 2171 + }, + "constraintImpulse": { + "#": 2172 + }, + "density": 0.001, + "force": { + "#": 2173 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 99, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2174 + }, + "positionImpulse": { + "#": 2175 + }, + "positionPrev": { + "#": 2176 + }, + "region": { + "#": 2177 + }, + "render": { + "#": 2178 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2180 + }, + "vertices": { + "#": 2181 + } + }, + [ + { + "#": 2166 + }, + { + "#": 2167 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2169 + }, + "min": { + "#": 2170 + } + }, + { + "x": 600, + "y": 237.73575476702598 + }, + { + "x": 575, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 222.3284840519903 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,4,4", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2179 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2187 + }, + "bounds": { + "#": 2190 + }, + "collisionFilter": { + "#": 2193 + }, + "constraintImpulse": { + "#": 2194 + }, + "density": 0.001, + "force": { + "#": 2195 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 100, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2196 + }, + "positionImpulse": { + "#": 2197 + }, + "positionPrev": { + "#": 2198 + }, + "region": { + "#": 2199 + }, + "render": { + "#": 2200 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2202 + }, + "vertices": { + "#": 2203 + } + }, + [ + { + "#": 2188 + }, + { + "#": 2189 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2191 + }, + "min": { + "#": 2192 + } + }, + { + "x": 625, + "y": 237.73575476702598 + }, + { + "x": 600, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 222.3284840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,4,4", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2201 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2209 + }, + "bounds": { + "#": 2212 + }, + "collisionFilter": { + "#": 2215 + }, + "constraintImpulse": { + "#": 2216 + }, + "density": 0.001, + "force": { + "#": 2217 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 101, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2218 + }, + "positionImpulse": { + "#": 2219 + }, + "positionPrev": { + "#": 2220 + }, + "region": { + "#": 2221 + }, + "render": { + "#": 2222 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2224 + }, + "vertices": { + "#": 2225 + } + }, + [ + { + "#": 2210 + }, + { + "#": 2211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2213 + }, + "min": { + "#": 2214 + } + }, + { + "x": 650, + "y": 237.73575476702598 + }, + { + "x": 625, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 222.3284840519903 + }, + { + "endCol": 13, + "endRow": 4, + "id": "13,13,4,4", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2223 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2231 + }, + "bounds": { + "#": 2234 + }, + "collisionFilter": { + "#": 2237 + }, + "constraintImpulse": { + "#": 2238 + }, + "density": 0.001, + "force": { + "#": 2239 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 102, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2240 + }, + "positionImpulse": { + "#": 2241 + }, + "positionPrev": { + "#": 2242 + }, + "region": { + "#": 2243 + }, + "render": { + "#": 2244 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2246 + }, + "vertices": { + "#": 2247 + } + }, + [ + { + "#": 2232 + }, + { + "#": 2233 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2235 + }, + "min": { + "#": 2236 + } + }, + { + "x": 675, + "y": 237.73575476702598 + }, + { + "x": 650, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 222.3284840519903 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,4,4", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2245 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2253 + }, + "bounds": { + "#": 2256 + }, + "collisionFilter": { + "#": 2259 + }, + "constraintImpulse": { + "#": 2260 + }, + "density": 0.001, + "force": { + "#": 2261 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 103, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2262 + }, + "positionImpulse": { + "#": 2263 + }, + "positionPrev": { + "#": 2264 + }, + "region": { + "#": 2265 + }, + "render": { + "#": 2266 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2268 + }, + "vertices": { + "#": 2269 + } + }, + [ + { + "#": 2254 + }, + { + "#": 2255 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2257 + }, + "min": { + "#": 2258 + } + }, + { + "x": 700, + "y": 237.73575476702598 + }, + { + "x": 675, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 222.3284840519903 + }, + { + "endCol": 14, + "endRow": 4, + "id": "14,14,4,4", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2267 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2275 + }, + "bounds": { + "#": 2278 + }, + "collisionFilter": { + "#": 2281 + }, + "constraintImpulse": { + "#": 2282 + }, + "density": 0.001, + "force": { + "#": 2283 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 104, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2284 + }, + "positionImpulse": { + "#": 2285 + }, + "positionPrev": { + "#": 2286 + }, + "region": { + "#": 2287 + }, + "render": { + "#": 2288 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2290 + }, + "vertices": { + "#": 2291 + } + }, + [ + { + "#": 2276 + }, + { + "#": 2277 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2279 + }, + "min": { + "#": 2280 + } + }, + { + "x": 725, + "y": 237.73575476702598 + }, + { + "x": 700, + "y": 212.73575476702598 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 225.23575476702598 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 222.3284840519903 + }, + { + "endCol": 15, + "endRow": 4, + "id": "14,15,4,4", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2289 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356862 + }, + [ + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 212.73575476702598 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 237.73575476702598 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 237.73575476702598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2297 + }, + "bounds": { + "#": 2300 + }, + "collisionFilter": { + "#": 2303 + }, + "constraintImpulse": { + "#": 2304 + }, + "density": 0.001, + "force": { + "#": 2305 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 105, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2306 + }, + "positionImpulse": { + "#": 2307 + }, + "positionPrev": { + "#": 2308 + }, + "region": { + "#": 2309 + }, + "render": { + "#": 2310 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2312 + }, + "vertices": { + "#": 2313 + } + }, + [ + { + "#": 2298 + }, + { + "#": 2299 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2301 + }, + "min": { + "#": 2302 + } + }, + { + "x": 125, + "y": 265.73284895951724 + }, + { + "x": 100, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 112.5, + "y": 247.418307529446 + }, + { + "endCol": 2, + "endRow": 5, + "id": "2,2,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2311 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2319 + }, + "bounds": { + "#": 2322 + }, + "collisionFilter": { + "#": 2325 + }, + "constraintImpulse": { + "#": 2326 + }, + "density": 0.001, + "force": { + "#": 2327 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 106, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2328 + }, + "positionImpulse": { + "#": 2329 + }, + "positionPrev": { + "#": 2330 + }, + "region": { + "#": 2331 + }, + "render": { + "#": 2332 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2334 + }, + "vertices": { + "#": 2335 + } + }, + [ + { + "#": 2320 + }, + { + "#": 2321 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2323 + }, + "min": { + "#": 2324 + } + }, + { + "x": 150, + "y": 265.73284895951724 + }, + { + "x": 125, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 137.5, + "y": 247.418307529446 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2333 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2341 + }, + "bounds": { + "#": 2344 + }, + "collisionFilter": { + "#": 2347 + }, + "constraintImpulse": { + "#": 2348 + }, + "density": 0.001, + "force": { + "#": 2349 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 107, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2350 + }, + "positionImpulse": { + "#": 2351 + }, + "positionPrev": { + "#": 2352 + }, + "region": { + "#": 2353 + }, + "render": { + "#": 2354 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2356 + }, + "vertices": { + "#": 2357 + } + }, + [ + { + "#": 2342 + }, + { + "#": 2343 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2345 + }, + "min": { + "#": 2346 + } + }, + { + "x": 175, + "y": 265.73284895951724 + }, + { + "x": 150, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 162.5, + "y": 247.418307529446 + }, + { + "endCol": 3, + "endRow": 5, + "id": "3,3,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2355 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2363 + }, + "bounds": { + "#": 2366 + }, + "collisionFilter": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "density": 0.001, + "force": { + "#": 2371 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 108, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2372 + }, + "positionImpulse": { + "#": 2373 + }, + "positionPrev": { + "#": 2374 + }, + "region": { + "#": 2375 + }, + "render": { + "#": 2376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2378 + }, + "vertices": { + "#": 2379 + } + }, + [ + { + "#": 2364 + }, + { + "#": 2365 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2367 + }, + "min": { + "#": 2368 + } + }, + { + "x": 200, + "y": 265.73284895951724 + }, + { + "x": 175, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 187.5, + "y": 247.418307529446 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,4,5", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2377 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2385 + }, + "bounds": { + "#": 2388 + }, + "collisionFilter": { + "#": 2391 + }, + "constraintImpulse": { + "#": 2392 + }, + "density": 0.001, + "force": { + "#": 2393 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 109, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2394 + }, + "positionImpulse": { + "#": 2395 + }, + "positionPrev": { + "#": 2396 + }, + "region": { + "#": 2397 + }, + "render": { + "#": 2398 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2400 + }, + "vertices": { + "#": 2401 + } + }, + [ + { + "#": 2386 + }, + { + "#": 2387 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2389 + }, + "min": { + "#": 2390 + } + }, + { + "x": 225, + "y": 265.73284895951724 + }, + { + "x": 200, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 212.5, + "y": 247.418307529446 + }, + { + "endCol": 4, + "endRow": 5, + "id": "4,4,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2399 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2407 + }, + "bounds": { + "#": 2410 + }, + "collisionFilter": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "density": 0.001, + "force": { + "#": 2415 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 110, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2416 + }, + "positionImpulse": { + "#": 2417 + }, + "positionPrev": { + "#": 2418 + }, + "region": { + "#": 2419 + }, + "render": { + "#": 2420 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2422 + }, + "vertices": { + "#": 2423 + } + }, + [ + { + "#": 2408 + }, + { + "#": 2409 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2411 + }, + "min": { + "#": 2412 + } + }, + { + "x": 250, + "y": 265.73284895951724 + }, + { + "x": 225, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 237.5, + "y": 247.418307529446 + }, + { + "endCol": 5, + "endRow": 5, + "id": "4,5,4,5", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2421 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2429 + }, + "bounds": { + "#": 2432 + }, + "collisionFilter": { + "#": 2435 + }, + "constraintImpulse": { + "#": 2436 + }, + "density": 0.001, + "force": { + "#": 2437 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 111, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2438 + }, + "positionImpulse": { + "#": 2439 + }, + "positionPrev": { + "#": 2440 + }, + "region": { + "#": 2441 + }, + "render": { + "#": 2442 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2444 + }, + "vertices": { + "#": 2445 + } + }, + [ + { + "#": 2430 + }, + { + "#": 2431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2433 + }, + "min": { + "#": 2434 + } + }, + { + "x": 275, + "y": 265.73284895951724 + }, + { + "x": 250, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 262.5, + "y": 247.418307529446 + }, + { + "endCol": 5, + "endRow": 5, + "id": "5,5,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2443 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2451 + }, + "bounds": { + "#": 2454 + }, + "collisionFilter": { + "#": 2457 + }, + "constraintImpulse": { + "#": 2458 + }, + "density": 0.001, + "force": { + "#": 2459 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 112, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2460 + }, + "positionImpulse": { + "#": 2461 + }, + "positionPrev": { + "#": 2462 + }, + "region": { + "#": 2463 + }, + "render": { + "#": 2464 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2466 + }, + "vertices": { + "#": 2467 + } + }, + [ + { + "#": 2452 + }, + { + "#": 2453 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2455 + }, + "min": { + "#": 2456 + } + }, + { + "x": 300, + "y": 265.73284895951724 + }, + { + "x": 275, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 287.5, + "y": 247.418307529446 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2465 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2473 + }, + "bounds": { + "#": 2476 + }, + "collisionFilter": { + "#": 2479 + }, + "constraintImpulse": { + "#": 2480 + }, + "density": 0.001, + "force": { + "#": 2481 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 113, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2482 + }, + "positionImpulse": { + "#": 2483 + }, + "positionPrev": { + "#": 2484 + }, + "region": { + "#": 2485 + }, + "render": { + "#": 2486 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2488 + }, + "vertices": { + "#": 2489 + } + }, + [ + { + "#": 2474 + }, + { + "#": 2475 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2477 + }, + "min": { + "#": 2478 + } + }, + { + "x": 325, + "y": 265.73284895951724 + }, + { + "x": 300, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 312.5, + "y": 247.418307529446 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2487 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2495 + }, + "bounds": { + "#": 2498 + }, + "collisionFilter": { + "#": 2501 + }, + "constraintImpulse": { + "#": 2502 + }, + "density": 0.001, + "force": { + "#": 2503 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 114, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2504 + }, + "positionImpulse": { + "#": 2505 + }, + "positionPrev": { + "#": 2506 + }, + "region": { + "#": 2507 + }, + "render": { + "#": 2508 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2510 + }, + "vertices": { + "#": 2511 + } + }, + [ + { + "#": 2496 + }, + { + "#": 2497 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2499 + }, + "min": { + "#": 2500 + } + }, + { + "x": 350, + "y": 265.73284895951724 + }, + { + "x": 325, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 337.5, + "y": 247.418307529446 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,4,5", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2509 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2517 + }, + "bounds": { + "#": 2520 + }, + "collisionFilter": { + "#": 2523 + }, + "constraintImpulse": { + "#": 2524 + }, + "density": 0.001, + "force": { + "#": 2525 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 115, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2526 + }, + "positionImpulse": { + "#": 2527 + }, + "positionPrev": { + "#": 2528 + }, + "region": { + "#": 2529 + }, + "render": { + "#": 2530 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2532 + }, + "vertices": { + "#": 2533 + } + }, + [ + { + "#": 2518 + }, + { + "#": 2519 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2521 + }, + "min": { + "#": 2522 + } + }, + { + "x": 375, + "y": 265.73284895951724 + }, + { + "x": 350, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 362.5, + "y": 247.418307529446 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2531 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2539 + }, + "bounds": { + "#": 2542 + }, + "collisionFilter": { + "#": 2545 + }, + "constraintImpulse": { + "#": 2546 + }, + "density": 0.001, + "force": { + "#": 2547 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 116, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2548 + }, + "positionImpulse": { + "#": 2549 + }, + "positionPrev": { + "#": 2550 + }, + "region": { + "#": 2551 + }, + "render": { + "#": 2552 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2554 + }, + "vertices": { + "#": 2555 + } + }, + [ + { + "#": 2540 + }, + { + "#": 2541 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2543 + }, + "min": { + "#": 2544 + } + }, + { + "x": 400, + "y": 265.73284895951724 + }, + { + "x": 375, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 387.5, + "y": 247.418307529446 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2553 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2561 + }, + "bounds": { + "#": 2564 + }, + "collisionFilter": { + "#": 2567 + }, + "constraintImpulse": { + "#": 2568 + }, + "density": 0.001, + "force": { + "#": 2569 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 117, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2570 + }, + "positionImpulse": { + "#": 2571 + }, + "positionPrev": { + "#": 2572 + }, + "region": { + "#": 2573 + }, + "render": { + "#": 2574 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2576 + }, + "vertices": { + "#": 2577 + } + }, + [ + { + "#": 2562 + }, + { + "#": 2563 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2565 + }, + "min": { + "#": 2566 + } + }, + { + "x": 425, + "y": 265.73284895951724 + }, + { + "x": 400, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 412.5, + "y": 247.418307529446 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2575 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2583 + }, + "bounds": { + "#": 2586 + }, + "collisionFilter": { + "#": 2589 + }, + "constraintImpulse": { + "#": 2590 + }, + "density": 0.001, + "force": { + "#": 2591 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 118, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2592 + }, + "positionImpulse": { + "#": 2593 + }, + "positionPrev": { + "#": 2594 + }, + "region": { + "#": 2595 + }, + "render": { + "#": 2596 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2598 + }, + "vertices": { + "#": 2599 + } + }, + [ + { + "#": 2584 + }, + { + "#": 2585 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2587 + }, + "min": { + "#": 2588 + } + }, + { + "x": 450, + "y": 265.73284895951724 + }, + { + "x": 425, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 437.5, + "y": 247.418307529446 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2597 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2605 + }, + "bounds": { + "#": 2608 + }, + "collisionFilter": { + "#": 2611 + }, + "constraintImpulse": { + "#": 2612 + }, + "density": 0.001, + "force": { + "#": 2613 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 119, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2614 + }, + "positionImpulse": { + "#": 2615 + }, + "positionPrev": { + "#": 2616 + }, + "region": { + "#": 2617 + }, + "render": { + "#": 2618 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2620 + }, + "vertices": { + "#": 2621 + } + }, + [ + { + "#": 2606 + }, + { + "#": 2607 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2609 + }, + "min": { + "#": 2610 + } + }, + { + "x": 475, + "y": 265.73284895951724 + }, + { + "x": 450, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 462.5, + "y": 247.418307529446 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2619 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2627 + }, + "bounds": { + "#": 2630 + }, + "collisionFilter": { + "#": 2633 + }, + "constraintImpulse": { + "#": 2634 + }, + "density": 0.001, + "force": { + "#": 2635 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 120, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2636 + }, + "positionImpulse": { + "#": 2637 + }, + "positionPrev": { + "#": 2638 + }, + "region": { + "#": 2639 + }, + "render": { + "#": 2640 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2642 + }, + "vertices": { + "#": 2643 + } + }, + [ + { + "#": 2628 + }, + { + "#": 2629 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2631 + }, + "min": { + "#": 2632 + } + }, + { + "x": 500, + "y": 265.73284895951724 + }, + { + "x": 475, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 487.5, + "y": 247.418307529446 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2641 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2649 + }, + "bounds": { + "#": 2652 + }, + "collisionFilter": { + "#": 2655 + }, + "constraintImpulse": { + "#": 2656 + }, + "density": 0.001, + "force": { + "#": 2657 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 121, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2658 + }, + "positionImpulse": { + "#": 2659 + }, + "positionPrev": { + "#": 2660 + }, + "region": { + "#": 2661 + }, + "render": { + "#": 2662 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2664 + }, + "vertices": { + "#": 2665 + } + }, + [ + { + "#": 2650 + }, + { + "#": 2651 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2653 + }, + "min": { + "#": 2654 + } + }, + { + "x": 525, + "y": 265.73284895951724 + }, + { + "x": 500, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 512.5, + "y": 247.418307529446 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2663 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2671 + }, + "bounds": { + "#": 2674 + }, + "collisionFilter": { + "#": 2677 + }, + "constraintImpulse": { + "#": 2678 + }, + "density": 0.001, + "force": { + "#": 2679 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 122, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2680 + }, + "positionImpulse": { + "#": 2681 + }, + "positionPrev": { + "#": 2682 + }, + "region": { + "#": 2683 + }, + "render": { + "#": 2684 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2686 + }, + "vertices": { + "#": 2687 + } + }, + [ + { + "#": 2672 + }, + { + "#": 2673 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2675 + }, + "min": { + "#": 2676 + } + }, + { + "x": 550, + "y": 265.73284895951724 + }, + { + "x": 525, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 537.5, + "y": 247.418307529446 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2685 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2693 + }, + "bounds": { + "#": 2696 + }, + "collisionFilter": { + "#": 2699 + }, + "constraintImpulse": { + "#": 2700 + }, + "density": 0.001, + "force": { + "#": 2701 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 123, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2702 + }, + "positionImpulse": { + "#": 2703 + }, + "positionPrev": { + "#": 2704 + }, + "region": { + "#": 2705 + }, + "render": { + "#": 2706 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2708 + }, + "vertices": { + "#": 2709 + } + }, + [ + { + "#": 2694 + }, + { + "#": 2695 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2697 + }, + "min": { + "#": 2698 + } + }, + { + "x": 575, + "y": 265.73284895951724 + }, + { + "x": 550, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 562.5, + "y": 247.418307529446 + }, + { + "endCol": 11, + "endRow": 5, + "id": "11,11,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2707 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2715 + }, + "bounds": { + "#": 2718 + }, + "collisionFilter": { + "#": 2721 + }, + "constraintImpulse": { + "#": 2722 + }, + "density": 0.001, + "force": { + "#": 2723 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 124, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2724 + }, + "positionImpulse": { + "#": 2725 + }, + "positionPrev": { + "#": 2726 + }, + "region": { + "#": 2727 + }, + "render": { + "#": 2728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2730 + }, + "vertices": { + "#": 2731 + } + }, + [ + { + "#": 2716 + }, + { + "#": 2717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2719 + }, + "min": { + "#": 2720 + } + }, + { + "x": 600, + "y": 265.73284895951724 + }, + { + "x": 575, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 587.5, + "y": 247.418307529446 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2729 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2737 + }, + "bounds": { + "#": 2740 + }, + "collisionFilter": { + "#": 2743 + }, + "constraintImpulse": { + "#": 2744 + }, + "density": 0.001, + "force": { + "#": 2745 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 125, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2746 + }, + "positionImpulse": { + "#": 2747 + }, + "positionPrev": { + "#": 2748 + }, + "region": { + "#": 2749 + }, + "render": { + "#": 2750 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2752 + }, + "vertices": { + "#": 2753 + } + }, + [ + { + "#": 2738 + }, + { + "#": 2739 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2741 + }, + "min": { + "#": 2742 + } + }, + { + "x": 625, + "y": 265.73284895951724 + }, + { + "x": 600, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 612.5, + "y": 247.418307529446 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2751 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2759 + }, + "bounds": { + "#": 2762 + }, + "collisionFilter": { + "#": 2765 + }, + "constraintImpulse": { + "#": 2766 + }, + "density": 0.001, + "force": { + "#": 2767 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 126, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2768 + }, + "positionImpulse": { + "#": 2769 + }, + "positionPrev": { + "#": 2770 + }, + "region": { + "#": 2771 + }, + "render": { + "#": 2772 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2774 + }, + "vertices": { + "#": 2775 + } + }, + [ + { + "#": 2760 + }, + { + "#": 2761 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2763 + }, + "min": { + "#": 2764 + } + }, + { + "x": 650, + "y": 265.73284895951724 + }, + { + "x": 625, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 637.5, + "y": 247.418307529446 + }, + { + "endCol": 13, + "endRow": 5, + "id": "13,13,4,5", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2773 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2781 + }, + "bounds": { + "#": 2784 + }, + "collisionFilter": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "density": 0.001, + "force": { + "#": 2789 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 127, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2790 + }, + "positionImpulse": { + "#": 2791 + }, + "positionPrev": { + "#": 2792 + }, + "region": { + "#": 2793 + }, + "render": { + "#": 2794 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2796 + }, + "vertices": { + "#": 2797 + } + }, + [ + { + "#": 2782 + }, + { + "#": 2783 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2785 + }, + "min": { + "#": 2786 + } + }, + { + "x": 675, + "y": 265.73284895951724 + }, + { + "x": 650, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 662.5, + "y": 247.418307529446 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,4,5", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2795 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2803 + }, + "bounds": { + "#": 2806 + }, + "collisionFilter": { + "#": 2809 + }, + "constraintImpulse": { + "#": 2810 + }, + "density": 0.001, + "force": { + "#": 2811 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 128, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2812 + }, + "positionImpulse": { + "#": 2813 + }, + "positionPrev": { + "#": 2814 + }, + "region": { + "#": 2815 + }, + "render": { + "#": 2816 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2818 + }, + "vertices": { + "#": 2819 + } + }, + [ + { + "#": 2804 + }, + { + "#": 2805 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2807 + }, + "min": { + "#": 2808 + } + }, + { + "x": 700, + "y": 265.73284895951724 + }, + { + "x": 675, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 687.5, + "y": 247.418307529446 + }, + { + "endCol": 14, + "endRow": 5, + "id": "14,14,4,5", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2817 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2825 + }, + "bounds": { + "#": 2828 + }, + "collisionFilter": { + "#": 2831 + }, + "constraintImpulse": { + "#": 2832 + }, + "density": 0.001, + "force": { + "#": 2833 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 129, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2834 + }, + "positionImpulse": { + "#": 2835 + }, + "positionPrev": { + "#": 2836 + }, + "region": { + "#": 2837 + }, + "render": { + "#": 2838 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.90727071503563, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2840 + }, + "vertices": { + "#": 2841 + } + }, + [ + { + "#": 2826 + }, + { + "#": 2827 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2829 + }, + "min": { + "#": 2830 + } + }, + { + "x": 725, + "y": 265.73284895951724 + }, + { + "x": 700, + "y": 237.82557824448162 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 250.32557824448162 + }, + { + "x": 0, + "y": 0.0043606346096298765 + }, + { + "x": 712.5, + "y": 247.418307529446 + }, + { + "endCol": 15, + "endRow": 5, + "id": "14,15,4,5", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2839 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150356223 + }, + [ + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 237.82557824448162 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 262.8255782444816 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 262.8255782444816 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2847 + }, + "bounds": { + "#": 2850 + }, + "collisionFilter": { + "#": 2853 + }, + "constraintImpulse": { + "#": 2854 + }, + "density": 0.001, + "force": { + "#": 2855 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 130, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2856 + }, + "positionImpulse": { + "#": 2857 + }, + "positionPrev": { + "#": 2858 + }, + "region": { + "#": 2859 + }, + "render": { + "#": 2860 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2862 + }, + "vertices": { + "#": 2863 + } + }, + [ + { + "#": 2848 + }, + { + "#": 2849 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2851 + }, + "min": { + "#": 2852 + } + }, + { + "x": 125, + "y": 290.682851035186 + }, + { + "x": 100, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 112.5, + "y": 272.36830960511463 + }, + { + "endCol": 2, + "endRow": 5, + "id": "2,2,5,5", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2861 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2869 + }, + "bounds": { + "#": 2872 + }, + "collisionFilter": { + "#": 2875 + }, + "constraintImpulse": { + "#": 2876 + }, + "density": 0.001, + "force": { + "#": 2877 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 131, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2878 + }, + "positionImpulse": { + "#": 2879 + }, + "positionPrev": { + "#": 2880 + }, + "region": { + "#": 2881 + }, + "render": { + "#": 2882 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2884 + }, + "vertices": { + "#": 2885 + } + }, + [ + { + "#": 2870 + }, + { + "#": 2871 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2873 + }, + "min": { + "#": 2874 + } + }, + { + "x": 150, + "y": 290.682851035186 + }, + { + "x": 125, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 137.5, + "y": 272.36830960511463 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,5,5", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2883 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2891 + }, + "bounds": { + "#": 2894 + }, + "collisionFilter": { + "#": 2897 + }, + "constraintImpulse": { + "#": 2898 + }, + "density": 0.001, + "force": { + "#": 2899 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 132, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2900 + }, + "positionImpulse": { + "#": 2901 + }, + "positionPrev": { + "#": 2902 + }, + "region": { + "#": 2903 + }, + "render": { + "#": 2904 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2906 + }, + "vertices": { + "#": 2907 + } + }, + [ + { + "#": 2892 + }, + { + "#": 2893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2895 + }, + "min": { + "#": 2896 + } + }, + { + "x": 175, + "y": 290.682851035186 + }, + { + "x": 150, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 162.5, + "y": 272.36830960511463 + }, + { + "endCol": 3, + "endRow": 5, + "id": "3,3,5,5", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2905 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2913 + }, + "bounds": { + "#": 2916 + }, + "collisionFilter": { + "#": 2919 + }, + "constraintImpulse": { + "#": 2920 + }, + "density": 0.001, + "force": { + "#": 2921 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 133, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2922 + }, + "positionImpulse": { + "#": 2923 + }, + "positionPrev": { + "#": 2924 + }, + "region": { + "#": 2925 + }, + "render": { + "#": 2926 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2928 + }, + "vertices": { + "#": 2929 + } + }, + [ + { + "#": 2914 + }, + { + "#": 2915 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2917 + }, + "min": { + "#": 2918 + } + }, + { + "x": 200, + "y": 290.682851035186 + }, + { + "x": 175, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 187.5, + "y": 272.36830960511463 + }, + { + "endCol": 4, + "endRow": 5, + "id": "3,4,5,5", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2927 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2935 + }, + "bounds": { + "#": 2938 + }, + "collisionFilter": { + "#": 2941 + }, + "constraintImpulse": { + "#": 2942 + }, + "density": 0.001, + "force": { + "#": 2943 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 134, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2944 + }, + "positionImpulse": { + "#": 2945 + }, + "positionPrev": { + "#": 2946 + }, + "region": { + "#": 2947 + }, + "render": { + "#": 2948 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2950 + }, + "vertices": { + "#": 2951 + } + }, + [ + { + "#": 2936 + }, + { + "#": 2937 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2939 + }, + "min": { + "#": 2940 + } + }, + { + "x": 225, + "y": 290.682851035186 + }, + { + "x": 200, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 212.5, + "y": 272.36830960511463 + }, + { + "endCol": 4, + "endRow": 5, + "id": "4,4,5,5", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2949 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2957 + }, + "bounds": { + "#": 2960 + }, + "collisionFilter": { + "#": 2963 + }, + "constraintImpulse": { + "#": 2964 + }, + "density": 0.001, + "force": { + "#": 2965 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 135, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2966 + }, + "positionImpulse": { + "#": 2967 + }, + "positionPrev": { + "#": 2968 + }, + "region": { + "#": 2969 + }, + "render": { + "#": 2970 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2972 + }, + "vertices": { + "#": 2973 + } + }, + [ + { + "#": 2958 + }, + { + "#": 2959 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2961 + }, + "min": { + "#": 2962 + } + }, + { + "x": 250, + "y": 290.682851035186 + }, + { + "x": 225, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 237.5, + "y": 272.36830960511463 + }, + { + "endCol": 5, + "endRow": 5, + "id": "4,5,5,5", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2971 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 2979 + }, + "bounds": { + "#": 2982 + }, + "collisionFilter": { + "#": 2985 + }, + "constraintImpulse": { + "#": 2986 + }, + "density": 0.001, + "force": { + "#": 2987 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 136, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 2988 + }, + "positionImpulse": { + "#": 2989 + }, + "positionPrev": { + "#": 2990 + }, + "region": { + "#": 2991 + }, + "render": { + "#": 2992 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2994 + }, + "vertices": { + "#": 2995 + } + }, + [ + { + "#": 2980 + }, + { + "#": 2981 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2983 + }, + "min": { + "#": 2984 + } + }, + { + "x": 275, + "y": 290.682851035186 + }, + { + "x": 250, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 262.5, + "y": 272.36830960511463 + }, + { + "endCol": 5, + "endRow": 5, + "id": "5,5,5,5", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2993 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3001 + }, + "bounds": { + "#": 3004 + }, + "collisionFilter": { + "#": 3007 + }, + "constraintImpulse": { + "#": 3008 + }, + "density": 0.001, + "force": { + "#": 3009 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 137, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3010 + }, + "positionImpulse": { + "#": 3011 + }, + "positionPrev": { + "#": 3012 + }, + "region": { + "#": 3013 + }, + "render": { + "#": 3014 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3016 + }, + "vertices": { + "#": 3017 + } + }, + [ + { + "#": 3002 + }, + { + "#": 3003 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3005 + }, + "min": { + "#": 3006 + } + }, + { + "x": 300, + "y": 290.682851035186 + }, + { + "x": 275, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 287.5, + "y": 272.36830960511463 + }, + { + "endCol": 6, + "endRow": 5, + "id": "5,6,5,5", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3015 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3023 + }, + "bounds": { + "#": 3026 + }, + "collisionFilter": { + "#": 3029 + }, + "constraintImpulse": { + "#": 3030 + }, + "density": 0.001, + "force": { + "#": 3031 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 138, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3032 + }, + "positionImpulse": { + "#": 3033 + }, + "positionPrev": { + "#": 3034 + }, + "region": { + "#": 3035 + }, + "render": { + "#": 3036 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3038 + }, + "vertices": { + "#": 3039 + } + }, + [ + { + "#": 3024 + }, + { + "#": 3025 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3027 + }, + "min": { + "#": 3028 + } + }, + { + "x": 325, + "y": 290.682851035186 + }, + { + "x": 300, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 312.5, + "y": 272.36830960511463 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,5,5", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3037 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3040 + }, + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3045 + }, + "bounds": { + "#": 3048 + }, + "collisionFilter": { + "#": 3051 + }, + "constraintImpulse": { + "#": 3052 + }, + "density": 0.001, + "force": { + "#": 3053 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 139, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3054 + }, + "positionImpulse": { + "#": 3055 + }, + "positionPrev": { + "#": 3056 + }, + "region": { + "#": 3057 + }, + "render": { + "#": 3058 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3060 + }, + "vertices": { + "#": 3061 + } + }, + [ + { + "#": 3046 + }, + { + "#": 3047 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3049 + }, + "min": { + "#": 3050 + } + }, + { + "x": 350, + "y": 290.682851035186 + }, + { + "x": 325, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 337.5, + "y": 272.36830960511463 + }, + { + "endCol": 7, + "endRow": 5, + "id": "6,7,5,5", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3059 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3062 + }, + { + "#": 3063 + }, + { + "#": 3064 + }, + { + "#": 3065 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3067 + }, + "bounds": { + "#": 3070 + }, + "collisionFilter": { + "#": 3073 + }, + "constraintImpulse": { + "#": 3074 + }, + "density": 0.001, + "force": { + "#": 3075 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 140, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3076 + }, + "positionImpulse": { + "#": 3077 + }, + "positionPrev": { + "#": 3078 + }, + "region": { + "#": 3079 + }, + "render": { + "#": 3080 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3082 + }, + "vertices": { + "#": 3083 + } + }, + [ + { + "#": 3068 + }, + { + "#": 3069 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3071 + }, + "min": { + "#": 3072 + } + }, + { + "x": 375, + "y": 290.682851035186 + }, + { + "x": 350, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 362.5, + "y": 272.36830960511463 + }, + { + "endCol": 7, + "endRow": 5, + "id": "7,7,5,5", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3081 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + }, + { + "#": 3087 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3089 + }, + "bounds": { + "#": 3092 + }, + "collisionFilter": { + "#": 3095 + }, + "constraintImpulse": { + "#": 3096 + }, + "density": 0.001, + "force": { + "#": 3097 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 141, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3098 + }, + "positionImpulse": { + "#": 3099 + }, + "positionPrev": { + "#": 3100 + }, + "region": { + "#": 3101 + }, + "render": { + "#": 3102 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3104 + }, + "vertices": { + "#": 3105 + } + }, + [ + { + "#": 3090 + }, + { + "#": 3091 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3093 + }, + "min": { + "#": 3094 + } + }, + { + "x": 400, + "y": 290.682851035186 + }, + { + "x": 375, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 387.5, + "y": 272.36830960511463 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,5,5", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3103 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3106 + }, + { + "#": 3107 + }, + { + "#": 3108 + }, + { + "#": 3109 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3111 + }, + "bounds": { + "#": 3114 + }, + "collisionFilter": { + "#": 3117 + }, + "constraintImpulse": { + "#": 3118 + }, + "density": 0.001, + "force": { + "#": 3119 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 142, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3120 + }, + "positionImpulse": { + "#": 3121 + }, + "positionPrev": { + "#": 3122 + }, + "region": { + "#": 3123 + }, + "render": { + "#": 3124 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3126 + }, + "vertices": { + "#": 3127 + } + }, + [ + { + "#": 3112 + }, + { + "#": 3113 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3115 + }, + "min": { + "#": 3116 + } + }, + { + "x": 425, + "y": 290.682851035186 + }, + { + "x": 400, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 412.5, + "y": 272.36830960511463 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3125 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3133 + }, + "bounds": { + "#": 3136 + }, + "collisionFilter": { + "#": 3139 + }, + "constraintImpulse": { + "#": 3140 + }, + "density": 0.001, + "force": { + "#": 3141 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 143, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3142 + }, + "positionImpulse": { + "#": 3143 + }, + "positionPrev": { + "#": 3144 + }, + "region": { + "#": 3145 + }, + "render": { + "#": 3146 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3148 + }, + "vertices": { + "#": 3149 + } + }, + [ + { + "#": 3134 + }, + { + "#": 3135 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3137 + }, + "min": { + "#": 3138 + } + }, + { + "x": 450, + "y": 290.682851035186 + }, + { + "x": 425, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 437.5, + "y": 272.36830960511463 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3147 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3155 + }, + "bounds": { + "#": 3158 + }, + "collisionFilter": { + "#": 3161 + }, + "constraintImpulse": { + "#": 3162 + }, + "density": 0.001, + "force": { + "#": 3163 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 144, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3164 + }, + "positionImpulse": { + "#": 3165 + }, + "positionPrev": { + "#": 3166 + }, + "region": { + "#": 3167 + }, + "render": { + "#": 3168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3170 + }, + "vertices": { + "#": 3171 + } + }, + [ + { + "#": 3156 + }, + { + "#": 3157 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3159 + }, + "min": { + "#": 3160 + } + }, + { + "x": 475, + "y": 290.682851035186 + }, + { + "x": 450, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 462.5, + "y": 272.36830960511463 + }, + { + "endCol": 9, + "endRow": 5, + "id": "9,9,5,5", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3169 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3177 + }, + "bounds": { + "#": 3180 + }, + "collisionFilter": { + "#": 3183 + }, + "constraintImpulse": { + "#": 3184 + }, + "density": 0.001, + "force": { + "#": 3185 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 145, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3186 + }, + "positionImpulse": { + "#": 3187 + }, + "positionPrev": { + "#": 3188 + }, + "region": { + "#": 3189 + }, + "render": { + "#": 3190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3192 + }, + "vertices": { + "#": 3193 + } + }, + [ + { + "#": 3178 + }, + { + "#": 3179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3181 + }, + "min": { + "#": 3182 + } + }, + { + "x": 500, + "y": 290.682851035186 + }, + { + "x": 475, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 487.5, + "y": 272.36830960511463 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,5,5", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3191 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3199 + }, + "bounds": { + "#": 3202 + }, + "collisionFilter": { + "#": 3205 + }, + "constraintImpulse": { + "#": 3206 + }, + "density": 0.001, + "force": { + "#": 3207 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 146, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3208 + }, + "positionImpulse": { + "#": 3209 + }, + "positionPrev": { + "#": 3210 + }, + "region": { + "#": 3211 + }, + "render": { + "#": 3212 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3214 + }, + "vertices": { + "#": 3215 + } + }, + [ + { + "#": 3200 + }, + { + "#": 3201 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3203 + }, + "min": { + "#": 3204 + } + }, + { + "x": 525, + "y": 290.682851035186 + }, + { + "x": 500, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 512.5, + "y": 272.36830960511463 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3213 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3221 + }, + "bounds": { + "#": 3224 + }, + "collisionFilter": { + "#": 3227 + }, + "constraintImpulse": { + "#": 3228 + }, + "density": 0.001, + "force": { + "#": 3229 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 147, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3230 + }, + "positionImpulse": { + "#": 3231 + }, + "positionPrev": { + "#": 3232 + }, + "region": { + "#": 3233 + }, + "render": { + "#": 3234 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3236 + }, + "vertices": { + "#": 3237 + } + }, + [ + { + "#": 3222 + }, + { + "#": 3223 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3225 + }, + "min": { + "#": 3226 + } + }, + { + "x": 550, + "y": 290.682851035186 + }, + { + "x": 525, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 537.5, + "y": 272.36830960511463 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,5,5", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3235 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3243 + }, + "bounds": { + "#": 3246 + }, + "collisionFilter": { + "#": 3249 + }, + "constraintImpulse": { + "#": 3250 + }, + "density": 0.001, + "force": { + "#": 3251 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 148, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3252 + }, + "positionImpulse": { + "#": 3253 + }, + "positionPrev": { + "#": 3254 + }, + "region": { + "#": 3255 + }, + "render": { + "#": 3256 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3258 + }, + "vertices": { + "#": 3259 + } + }, + [ + { + "#": 3244 + }, + { + "#": 3245 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3247 + }, + "min": { + "#": 3248 + } + }, + { + "x": 575, + "y": 290.682851035186 + }, + { + "x": 550, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 562.5, + "y": 272.36830960511463 + }, + { + "endCol": 11, + "endRow": 5, + "id": "11,11,5,5", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3257 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3265 + }, + "bounds": { + "#": 3268 + }, + "collisionFilter": { + "#": 3271 + }, + "constraintImpulse": { + "#": 3272 + }, + "density": 0.001, + "force": { + "#": 3273 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 149, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3274 + }, + "positionImpulse": { + "#": 3275 + }, + "positionPrev": { + "#": 3276 + }, + "region": { + "#": 3277 + }, + "render": { + "#": 3278 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3280 + }, + "vertices": { + "#": 3281 + } + }, + [ + { + "#": 3266 + }, + { + "#": 3267 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3269 + }, + "min": { + "#": 3270 + } + }, + { + "x": 600, + "y": 290.682851035186 + }, + { + "x": 575, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 587.5, + "y": 272.36830960511463 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,5,5", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3279 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3287 + }, + "bounds": { + "#": 3290 + }, + "collisionFilter": { + "#": 3293 + }, + "constraintImpulse": { + "#": 3294 + }, + "density": 0.001, + "force": { + "#": 3295 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 150, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3296 + }, + "positionImpulse": { + "#": 3297 + }, + "positionPrev": { + "#": 3298 + }, + "region": { + "#": 3299 + }, + "render": { + "#": 3300 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3302 + }, + "vertices": { + "#": 3303 + } + }, + [ + { + "#": 3288 + }, + { + "#": 3289 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3291 + }, + "min": { + "#": 3292 + } + }, + { + "x": 625, + "y": 290.682851035186 + }, + { + "x": 600, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 612.5, + "y": 272.36830960511463 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,5,5", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3301 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3309 + }, + "bounds": { + "#": 3312 + }, + "collisionFilter": { + "#": 3315 + }, + "constraintImpulse": { + "#": 3316 + }, + "density": 0.001, + "force": { + "#": 3317 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 151, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3318 + }, + "positionImpulse": { + "#": 3319 + }, + "positionPrev": { + "#": 3320 + }, + "region": { + "#": 3321 + }, + "render": { + "#": 3322 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3324 + }, + "vertices": { + "#": 3325 + } + }, + [ + { + "#": 3310 + }, + { + "#": 3311 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3313 + }, + "min": { + "#": 3314 + } + }, + { + "x": 650, + "y": 290.682851035186 + }, + { + "x": 625, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 637.5, + "y": 272.36830960511463 + }, + { + "endCol": 13, + "endRow": 5, + "id": "13,13,5,5", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3323 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3331 + }, + "bounds": { + "#": 3334 + }, + "collisionFilter": { + "#": 3337 + }, + "constraintImpulse": { + "#": 3338 + }, + "density": 0.001, + "force": { + "#": 3339 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 152, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3340 + }, + "positionImpulse": { + "#": 3341 + }, + "positionPrev": { + "#": 3342 + }, + "region": { + "#": 3343 + }, + "render": { + "#": 3344 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3346 + }, + "vertices": { + "#": 3347 + } + }, + [ + { + "#": 3332 + }, + { + "#": 3333 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3335 + }, + "min": { + "#": 3336 + } + }, + { + "x": 675, + "y": 290.682851035186 + }, + { + "x": 650, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 662.5, + "y": 272.36830960511463 + }, + { + "endCol": 14, + "endRow": 5, + "id": "13,14,5,5", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3345 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3353 + }, + "bounds": { + "#": 3356 + }, + "collisionFilter": { + "#": 3359 + }, + "constraintImpulse": { + "#": 3360 + }, + "density": 0.001, + "force": { + "#": 3361 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 153, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3362 + }, + "positionImpulse": { + "#": 3363 + }, + "positionPrev": { + "#": 3364 + }, + "region": { + "#": 3365 + }, + "render": { + "#": 3366 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3368 + }, + "vertices": { + "#": 3369 + } + }, + [ + { + "#": 3354 + }, + { + "#": 3355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3357 + }, + "min": { + "#": 3358 + } + }, + { + "x": 700, + "y": 290.682851035186 + }, + { + "x": 675, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 687.5, + "y": 272.36830960511463 + }, + { + "endCol": 14, + "endRow": 5, + "id": "14,14,5,5", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3367 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3375 + }, + "bounds": { + "#": 3378 + }, + "collisionFilter": { + "#": 3381 + }, + "constraintImpulse": { + "#": 3382 + }, + "density": 0.001, + "force": { + "#": 3383 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 154, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3384 + }, + "positionImpulse": { + "#": 3385 + }, + "positionPrev": { + "#": 3386 + }, + "region": { + "#": 3387 + }, + "render": { + "#": 3388 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3390 + }, + "vertices": { + "#": 3391 + } + }, + [ + { + "#": 3376 + }, + { + "#": 3377 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3379 + }, + "min": { + "#": 3380 + } + }, + { + "x": 725, + "y": 290.682851035186 + }, + { + "x": 700, + "y": 262.7755803201504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 275.2755803201503 + }, + { + "x": 0, + "y": 0.004377931191944888 + }, + { + "x": 712.5, + "y": 272.36830960511463 + }, + { + "endCol": 15, + "endRow": 5, + "id": "14,15,5,5", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3389 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + }, + { + "#": 3395 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 262.7755803201504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 287.7755803201503 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 287.7755803201503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3397 + }, + "bounds": { + "#": 3400 + }, + "collisionFilter": { + "#": 3403 + }, + "constraintImpulse": { + "#": 3404 + }, + "density": 0.001, + "force": { + "#": 3405 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 155, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3406 + }, + "positionImpulse": { + "#": 3407 + }, + "positionPrev": { + "#": 3408 + }, + "region": { + "#": 3409 + }, + "render": { + "#": 3410 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3412 + }, + "vertices": { + "#": 3413 + } + }, + [ + { + "#": 3398 + }, + { + "#": 3399 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3401 + }, + "min": { + "#": 3402 + } + }, + { + "x": 125, + "y": 315.6328531108548 + }, + { + "x": 100, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 112.5, + "y": 297.31831168078344 + }, + { + "endCol": 2, + "endRow": 6, + "id": "2,2,5,6", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3411 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + }, + { + "#": 3417 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3419 + }, + "bounds": { + "#": 3422 + }, + "collisionFilter": { + "#": 3425 + }, + "constraintImpulse": { + "#": 3426 + }, + "density": 0.001, + "force": { + "#": 3427 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 156, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3428 + }, + "positionImpulse": { + "#": 3429 + }, + "positionPrev": { + "#": 3430 + }, + "region": { + "#": 3431 + }, + "render": { + "#": 3432 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3434 + }, + "vertices": { + "#": 3435 + } + }, + [ + { + "#": 3420 + }, + { + "#": 3421 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3423 + }, + "min": { + "#": 3424 + } + }, + { + "x": 150, + "y": 315.6328531108548 + }, + { + "x": 125, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 137.5, + "y": 297.31831168078344 + }, + { + "endCol": 3, + "endRow": 6, + "id": "2,3,5,6", + "startCol": 2, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3433 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3441 + }, + "bounds": { + "#": 3444 + }, + "collisionFilter": { + "#": 3447 + }, + "constraintImpulse": { + "#": 3448 + }, + "density": 0.001, + "force": { + "#": 3449 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 157, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3450 + }, + "positionImpulse": { + "#": 3451 + }, + "positionPrev": { + "#": 3452 + }, + "region": { + "#": 3453 + }, + "render": { + "#": 3454 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3456 + }, + "vertices": { + "#": 3457 + } + }, + [ + { + "#": 3442 + }, + { + "#": 3443 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3445 + }, + "min": { + "#": 3446 + } + }, + { + "x": 175, + "y": 315.6328531108548 + }, + { + "x": 150, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 162.5, + "y": 297.31831168078344 + }, + { + "endCol": 3, + "endRow": 6, + "id": "3,3,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3455 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3463 + }, + "bounds": { + "#": 3466 + }, + "collisionFilter": { + "#": 3469 + }, + "constraintImpulse": { + "#": 3470 + }, + "density": 0.001, + "force": { + "#": 3471 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 158, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3472 + }, + "positionImpulse": { + "#": 3473 + }, + "positionPrev": { + "#": 3474 + }, + "region": { + "#": 3475 + }, + "render": { + "#": 3476 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3478 + }, + "vertices": { + "#": 3479 + } + }, + [ + { + "#": 3464 + }, + { + "#": 3465 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3467 + }, + "min": { + "#": 3468 + } + }, + { + "x": 200, + "y": 315.6328531108548 + }, + { + "x": 175, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 187.5, + "y": 297.31831168078344 + }, + { + "endCol": 4, + "endRow": 6, + "id": "3,4,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3477 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3485 + }, + "bounds": { + "#": 3488 + }, + "collisionFilter": { + "#": 3491 + }, + "constraintImpulse": { + "#": 3492 + }, + "density": 0.001, + "force": { + "#": 3493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 159, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3494 + }, + "positionImpulse": { + "#": 3495 + }, + "positionPrev": { + "#": 3496 + }, + "region": { + "#": 3497 + }, + "render": { + "#": 3498 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3500 + }, + "vertices": { + "#": 3501 + } + }, + [ + { + "#": 3486 + }, + { + "#": 3487 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3489 + }, + "min": { + "#": 3490 + } + }, + { + "x": 225, + "y": 315.6328531108548 + }, + { + "x": 200, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 212.5, + "y": 297.31831168078344 + }, + { + "endCol": 4, + "endRow": 6, + "id": "4,4,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3499 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3507 + }, + "bounds": { + "#": 3510 + }, + "collisionFilter": { + "#": 3513 + }, + "constraintImpulse": { + "#": 3514 + }, + "density": 0.001, + "force": { + "#": 3515 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 160, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3516 + }, + "positionImpulse": { + "#": 3517 + }, + "positionPrev": { + "#": 3518 + }, + "region": { + "#": 3519 + }, + "render": { + "#": 3520 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3522 + }, + "vertices": { + "#": 3523 + } + }, + [ + { + "#": 3508 + }, + { + "#": 3509 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3511 + }, + "min": { + "#": 3512 + } + }, + { + "x": 250, + "y": 315.6328531108548 + }, + { + "x": 225, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 237.5, + "y": 297.31831168078344 + }, + { + "endCol": 5, + "endRow": 6, + "id": "4,5,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3521 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3529 + }, + "bounds": { + "#": 3532 + }, + "collisionFilter": { + "#": 3535 + }, + "constraintImpulse": { + "#": 3536 + }, + "density": 0.001, + "force": { + "#": 3537 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 161, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3538 + }, + "positionImpulse": { + "#": 3539 + }, + "positionPrev": { + "#": 3540 + }, + "region": { + "#": 3541 + }, + "render": { + "#": 3542 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3544 + }, + "vertices": { + "#": 3545 + } + }, + [ + { + "#": 3530 + }, + { + "#": 3531 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3533 + }, + "min": { + "#": 3534 + } + }, + { + "x": 275, + "y": 315.6328531108548 + }, + { + "x": 250, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 262.5, + "y": 297.31831168078344 + }, + { + "endCol": 5, + "endRow": 6, + "id": "5,5,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3543 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3551 + }, + "bounds": { + "#": 3554 + }, + "collisionFilter": { + "#": 3557 + }, + "constraintImpulse": { + "#": 3558 + }, + "density": 0.001, + "force": { + "#": 3559 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 162, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3560 + }, + "positionImpulse": { + "#": 3561 + }, + "positionPrev": { + "#": 3562 + }, + "region": { + "#": 3563 + }, + "render": { + "#": 3564 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3566 + }, + "vertices": { + "#": 3567 + } + }, + [ + { + "#": 3552 + }, + { + "#": 3553 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3555 + }, + "min": { + "#": 3556 + } + }, + { + "x": 300, + "y": 315.6328531108548 + }, + { + "x": 275, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 287.5, + "y": 297.31831168078344 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,5,6", + "startCol": 5, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3565 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3568 + }, + { + "#": 3569 + }, + { + "#": 3570 + }, + { + "#": 3571 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3573 + }, + "bounds": { + "#": 3576 + }, + "collisionFilter": { + "#": 3579 + }, + "constraintImpulse": { + "#": 3580 + }, + "density": 0.001, + "force": { + "#": 3581 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 163, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3582 + }, + "positionImpulse": { + "#": 3583 + }, + "positionPrev": { + "#": 3584 + }, + "region": { + "#": 3585 + }, + "render": { + "#": 3586 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3588 + }, + "vertices": { + "#": 3589 + } + }, + [ + { + "#": 3574 + }, + { + "#": 3575 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3577 + }, + "min": { + "#": 3578 + } + }, + { + "x": 325, + "y": 315.6328531108548 + }, + { + "x": 300, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 312.5, + "y": 297.31831168078344 + }, + { + "endCol": 6, + "endRow": 6, + "id": "6,6,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3587 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3595 + }, + "bounds": { + "#": 3598 + }, + "collisionFilter": { + "#": 3601 + }, + "constraintImpulse": { + "#": 3602 + }, + "density": 0.001, + "force": { + "#": 3603 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 164, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3604 + }, + "positionImpulse": { + "#": 3605 + }, + "positionPrev": { + "#": 3606 + }, + "region": { + "#": 3607 + }, + "render": { + "#": 3608 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3610 + }, + "vertices": { + "#": 3611 + } + }, + [ + { + "#": 3596 + }, + { + "#": 3597 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3599 + }, + "min": { + "#": 3600 + } + }, + { + "x": 350, + "y": 315.6328531108548 + }, + { + "x": 325, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 337.5, + "y": 297.31831168078344 + }, + { + "endCol": 7, + "endRow": 6, + "id": "6,7,5,6", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3609 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3617 + }, + "bounds": { + "#": 3620 + }, + "collisionFilter": { + "#": 3623 + }, + "constraintImpulse": { + "#": 3624 + }, + "density": 0.001, + "force": { + "#": 3625 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 165, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3626 + }, + "positionImpulse": { + "#": 3627 + }, + "positionPrev": { + "#": 3628 + }, + "region": { + "#": 3629 + }, + "render": { + "#": 3630 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3632 + }, + "vertices": { + "#": 3633 + } + }, + [ + { + "#": 3618 + }, + { + "#": 3619 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3621 + }, + "min": { + "#": 3622 + } + }, + { + "x": 375, + "y": 315.6328531108548 + }, + { + "x": 350, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 362.5, + "y": 297.31831168078344 + }, + { + "endCol": 7, + "endRow": 6, + "id": "7,7,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3631 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3639 + }, + "bounds": { + "#": 3642 + }, + "collisionFilter": { + "#": 3645 + }, + "constraintImpulse": { + "#": 3646 + }, + "density": 0.001, + "force": { + "#": 3647 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 166, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3648 + }, + "positionImpulse": { + "#": 3649 + }, + "positionPrev": { + "#": 3650 + }, + "region": { + "#": 3651 + }, + "render": { + "#": 3652 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3654 + }, + "vertices": { + "#": 3655 + } + }, + [ + { + "#": 3640 + }, + { + "#": 3641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3643 + }, + "min": { + "#": 3644 + } + }, + { + "x": 400, + "y": 315.6328531108548 + }, + { + "x": 375, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 387.5, + "y": 297.31831168078344 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,5,6", + "startCol": 7, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3653 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3656 + }, + { + "#": 3657 + }, + { + "#": 3658 + }, + { + "#": 3659 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3661 + }, + "bounds": { + "#": 3664 + }, + "collisionFilter": { + "#": 3667 + }, + "constraintImpulse": { + "#": 3668 + }, + "density": 0.001, + "force": { + "#": 3669 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 167, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3670 + }, + "positionImpulse": { + "#": 3671 + }, + "positionPrev": { + "#": 3672 + }, + "region": { + "#": 3673 + }, + "render": { + "#": 3674 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3676 + }, + "vertices": { + "#": 3677 + } + }, + [ + { + "#": 3662 + }, + { + "#": 3663 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3665 + }, + "min": { + "#": 3666 + } + }, + { + "x": 425, + "y": 315.6328531108548 + }, + { + "x": 400, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 412.5, + "y": 297.31831168078344 + }, + { + "endCol": 8, + "endRow": 6, + "id": "8,8,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3675 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3683 + }, + "bounds": { + "#": 3686 + }, + "collisionFilter": { + "#": 3689 + }, + "constraintImpulse": { + "#": 3690 + }, + "density": 0.001, + "force": { + "#": 3691 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 168, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3692 + }, + "positionImpulse": { + "#": 3693 + }, + "positionPrev": { + "#": 3694 + }, + "region": { + "#": 3695 + }, + "render": { + "#": 3696 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3698 + }, + "vertices": { + "#": 3699 + } + }, + [ + { + "#": 3684 + }, + { + "#": 3685 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3687 + }, + "min": { + "#": 3688 + } + }, + { + "x": 450, + "y": 315.6328531108548 + }, + { + "x": 425, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 437.5, + "y": 297.31831168078344 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3697 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3705 + }, + "bounds": { + "#": 3708 + }, + "collisionFilter": { + "#": 3711 + }, + "constraintImpulse": { + "#": 3712 + }, + "density": 0.001, + "force": { + "#": 3713 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 169, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3714 + }, + "positionImpulse": { + "#": 3715 + }, + "positionPrev": { + "#": 3716 + }, + "region": { + "#": 3717 + }, + "render": { + "#": 3718 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3720 + }, + "vertices": { + "#": 3721 + } + }, + [ + { + "#": 3706 + }, + { + "#": 3707 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3709 + }, + "min": { + "#": 3710 + } + }, + { + "x": 475, + "y": 315.6328531108548 + }, + { + "x": 450, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 462.5, + "y": 297.31831168078344 + }, + { + "endCol": 9, + "endRow": 6, + "id": "9,9,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3719 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3727 + }, + "bounds": { + "#": 3730 + }, + "collisionFilter": { + "#": 3733 + }, + "constraintImpulse": { + "#": 3734 + }, + "density": 0.001, + "force": { + "#": 3735 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 170, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3736 + }, + "positionImpulse": { + "#": 3737 + }, + "positionPrev": { + "#": 3738 + }, + "region": { + "#": 3739 + }, + "render": { + "#": 3740 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3742 + }, + "vertices": { + "#": 3743 + } + }, + [ + { + "#": 3728 + }, + { + "#": 3729 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3731 + }, + "min": { + "#": 3732 + } + }, + { + "x": 500, + "y": 315.6328531108548 + }, + { + "x": 475, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 487.5, + "y": 297.31831168078344 + }, + { + "endCol": 10, + "endRow": 6, + "id": "9,10,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3741 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3749 + }, + "bounds": { + "#": 3752 + }, + "collisionFilter": { + "#": 3755 + }, + "constraintImpulse": { + "#": 3756 + }, + "density": 0.001, + "force": { + "#": 3757 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 171, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3758 + }, + "positionImpulse": { + "#": 3759 + }, + "positionPrev": { + "#": 3760 + }, + "region": { + "#": 3761 + }, + "render": { + "#": 3762 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3764 + }, + "vertices": { + "#": 3765 + } + }, + [ + { + "#": 3750 + }, + { + "#": 3751 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3753 + }, + "min": { + "#": 3754 + } + }, + { + "x": 525, + "y": 315.6328531108548 + }, + { + "x": 500, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 512.5, + "y": 297.31831168078344 + }, + { + "endCol": 10, + "endRow": 6, + "id": "10,10,5,6", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3763 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3771 + }, + "bounds": { + "#": 3774 + }, + "collisionFilter": { + "#": 3777 + }, + "constraintImpulse": { + "#": 3778 + }, + "density": 0.001, + "force": { + "#": 3779 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 172, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3780 + }, + "positionImpulse": { + "#": 3781 + }, + "positionPrev": { + "#": 3782 + }, + "region": { + "#": 3783 + }, + "render": { + "#": 3784 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3786 + }, + "vertices": { + "#": 3787 + } + }, + [ + { + "#": 3772 + }, + { + "#": 3773 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3775 + }, + "min": { + "#": 3776 + } + }, + { + "x": 550, + "y": 315.6328531108548 + }, + { + "x": 525, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 537.5, + "y": 297.31831168078344 + }, + { + "endCol": 11, + "endRow": 6, + "id": "10,11,5,6", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3785 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3793 + }, + "bounds": { + "#": 3796 + }, + "collisionFilter": { + "#": 3799 + }, + "constraintImpulse": { + "#": 3800 + }, + "density": 0.001, + "force": { + "#": 3801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 173, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3802 + }, + "positionImpulse": { + "#": 3803 + }, + "positionPrev": { + "#": 3804 + }, + "region": { + "#": 3805 + }, + "render": { + "#": 3806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3808 + }, + "vertices": { + "#": 3809 + } + }, + [ + { + "#": 3794 + }, + { + "#": 3795 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3797 + }, + "min": { + "#": 3798 + } + }, + { + "x": 575, + "y": 315.6328531108548 + }, + { + "x": 550, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 562.5, + "y": 297.31831168078344 + }, + { + "endCol": 11, + "endRow": 6, + "id": "11,11,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3807 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3815 + }, + "bounds": { + "#": 3818 + }, + "collisionFilter": { + "#": 3821 + }, + "constraintImpulse": { + "#": 3822 + }, + "density": 0.001, + "force": { + "#": 3823 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 174, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3824 + }, + "positionImpulse": { + "#": 3825 + }, + "positionPrev": { + "#": 3826 + }, + "region": { + "#": 3827 + }, + "render": { + "#": 3828 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3830 + }, + "vertices": { + "#": 3831 + } + }, + [ + { + "#": 3816 + }, + { + "#": 3817 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3819 + }, + "min": { + "#": 3820 + } + }, + { + "x": 600, + "y": 315.6328531108548 + }, + { + "x": 575, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 587.5, + "y": 297.31831168078344 + }, + { + "endCol": 12, + "endRow": 6, + "id": "11,12,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3829 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3837 + }, + "bounds": { + "#": 3840 + }, + "collisionFilter": { + "#": 3843 + }, + "constraintImpulse": { + "#": 3844 + }, + "density": 0.001, + "force": { + "#": 3845 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 175, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3846 + }, + "positionImpulse": { + "#": 3847 + }, + "positionPrev": { + "#": 3848 + }, + "region": { + "#": 3849 + }, + "render": { + "#": 3850 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3852 + }, + "vertices": { + "#": 3853 + } + }, + [ + { + "#": 3838 + }, + { + "#": 3839 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3841 + }, + "min": { + "#": 3842 + } + }, + { + "x": 625, + "y": 315.6328531108548 + }, + { + "x": 600, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 612.5, + "y": 297.31831168078344 + }, + { + "endCol": 13, + "endRow": 6, + "id": "12,13,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3851 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3859 + }, + "bounds": { + "#": 3862 + }, + "collisionFilter": { + "#": 3865 + }, + "constraintImpulse": { + "#": 3866 + }, + "density": 0.001, + "force": { + "#": 3867 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 176, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3868 + }, + "positionImpulse": { + "#": 3869 + }, + "positionPrev": { + "#": 3870 + }, + "region": { + "#": 3871 + }, + "render": { + "#": 3872 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3874 + }, + "vertices": { + "#": 3875 + } + }, + [ + { + "#": 3860 + }, + { + "#": 3861 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3863 + }, + "min": { + "#": 3864 + } + }, + { + "x": 650, + "y": 315.6328531108548 + }, + { + "x": 625, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 637.5, + "y": 297.31831168078344 + }, + { + "endCol": 13, + "endRow": 6, + "id": "13,13,5,6", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 3873 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3881 + }, + "bounds": { + "#": 3884 + }, + "collisionFilter": { + "#": 3887 + }, + "constraintImpulse": { + "#": 3888 + }, + "density": 0.001, + "force": { + "#": 3889 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 177, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3890 + }, + "positionImpulse": { + "#": 3891 + }, + "positionPrev": { + "#": 3892 + }, + "region": { + "#": 3893 + }, + "render": { + "#": 3894 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3896 + }, + "vertices": { + "#": 3897 + } + }, + [ + { + "#": 3882 + }, + { + "#": 3883 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3885 + }, + "min": { + "#": 3886 + } + }, + { + "x": 675, + "y": 315.6328531108548 + }, + { + "x": 650, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 662.5, + "y": 297.31831168078344 + }, + { + "endCol": 14, + "endRow": 6, + "id": "13,14,5,6", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 3895 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3903 + }, + "bounds": { + "#": 3906 + }, + "collisionFilter": { + "#": 3909 + }, + "constraintImpulse": { + "#": 3910 + }, + "density": 0.001, + "force": { + "#": 3911 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 178, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3912 + }, + "positionImpulse": { + "#": 3913 + }, + "positionPrev": { + "#": 3914 + }, + "region": { + "#": 3915 + }, + "render": { + "#": 3916 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3918 + }, + "vertices": { + "#": 3919 + } + }, + [ + { + "#": 3904 + }, + { + "#": 3905 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3907 + }, + "min": { + "#": 3908 + } + }, + { + "x": 700, + "y": 315.6328531108548 + }, + { + "x": 675, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 687.5, + "y": 297.31831168078344 + }, + { + "endCol": 14, + "endRow": 6, + "id": "14,14,5,6", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 3917 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3925 + }, + "bounds": { + "#": 3928 + }, + "collisionFilter": { + "#": 3931 + }, + "constraintImpulse": { + "#": 3932 + }, + "density": 0.001, + "force": { + "#": 3933 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 179, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3934 + }, + "positionImpulse": { + "#": 3935 + }, + "positionPrev": { + "#": 3936 + }, + "region": { + "#": 3937 + }, + "render": { + "#": 3938 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356583, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3940 + }, + "vertices": { + "#": 3941 + } + }, + [ + { + "#": 3926 + }, + { + "#": 3927 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3929 + }, + "min": { + "#": 3930 + } + }, + { + "x": 725, + "y": 315.6328531108548 + }, + { + "x": 700, + "y": 287.7255823958191 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 300.2255823958191 + }, + { + "x": 0, + "y": 0.0043952277743691094 + }, + { + "x": 712.5, + "y": 297.31831168078344 + }, + { + "endCol": 15, + "endRow": 6, + "id": "14,15,5,6", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 3939 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035679 + }, + [ + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 287.7255823958191 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 312.7255823958191 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 312.7255823958191 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3947 + }, + "bounds": { + "#": 3950 + }, + "collisionFilter": { + "#": 3953 + }, + "constraintImpulse": { + "#": 3954 + }, + "density": 0.001, + "force": { + "#": 3955 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 180, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3956 + }, + "positionImpulse": { + "#": 3957 + }, + "positionPrev": { + "#": 3958 + }, + "region": { + "#": 3959 + }, + "render": { + "#": 3960 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3962 + }, + "vertices": { + "#": 3963 + } + }, + [ + { + "#": 3948 + }, + { + "#": 3949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3951 + }, + "min": { + "#": 3952 + } + }, + { + "x": 125, + "y": 337.73575476702496 + }, + { + "x": 100, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 322.3284840519894 + }, + { + "endCol": 2, + "endRow": 7, + "id": "2,2,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3961 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3964 + }, + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3969 + }, + "bounds": { + "#": 3972 + }, + "collisionFilter": { + "#": 3975 + }, + "constraintImpulse": { + "#": 3976 + }, + "density": 0.001, + "force": { + "#": 3977 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 181, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 3978 + }, + "positionImpulse": { + "#": 3979 + }, + "positionPrev": { + "#": 3980 + }, + "region": { + "#": 3981 + }, + "render": { + "#": 3982 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 3984 + }, + "vertices": { + "#": 3985 + } + }, + [ + { + "#": 3970 + }, + { + "#": 3971 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3973 + }, + "min": { + "#": 3974 + } + }, + { + "x": 150, + "y": 337.73575476702496 + }, + { + "x": 125, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 322.3284840519894 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 3983 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 3991 + }, + "bounds": { + "#": 3994 + }, + "collisionFilter": { + "#": 3997 + }, + "constraintImpulse": { + "#": 3998 + }, + "density": 0.001, + "force": { + "#": 3999 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 182, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4000 + }, + "positionImpulse": { + "#": 4001 + }, + "positionPrev": { + "#": 4002 + }, + "region": { + "#": 4003 + }, + "render": { + "#": 4004 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4006 + }, + "vertices": { + "#": 4007 + } + }, + [ + { + "#": 3992 + }, + { + "#": 3993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 3995 + }, + "min": { + "#": 3996 + } + }, + { + "x": 175, + "y": 337.73575476702496 + }, + { + "x": 150, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 322.3284840519894 + }, + { + "endCol": 3, + "endRow": 7, + "id": "3,3,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4005 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4008 + }, + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4013 + }, + "bounds": { + "#": 4016 + }, + "collisionFilter": { + "#": 4019 + }, + "constraintImpulse": { + "#": 4020 + }, + "density": 0.001, + "force": { + "#": 4021 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 183, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4022 + }, + "positionImpulse": { + "#": 4023 + }, + "positionPrev": { + "#": 4024 + }, + "region": { + "#": 4025 + }, + "render": { + "#": 4026 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4028 + }, + "vertices": { + "#": 4029 + } + }, + [ + { + "#": 4014 + }, + { + "#": 4015 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4017 + }, + "min": { + "#": 4018 + } + }, + { + "x": 200, + "y": 337.73575476702496 + }, + { + "x": 175, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 322.3284840519894 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4027 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4030 + }, + { + "#": 4031 + }, + { + "#": 4032 + }, + { + "#": 4033 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4035 + }, + "bounds": { + "#": 4038 + }, + "collisionFilter": { + "#": 4041 + }, + "constraintImpulse": { + "#": 4042 + }, + "density": 0.001, + "force": { + "#": 4043 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 184, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4044 + }, + "positionImpulse": { + "#": 4045 + }, + "positionPrev": { + "#": 4046 + }, + "region": { + "#": 4047 + }, + "render": { + "#": 4048 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4050 + }, + "vertices": { + "#": 4051 + } + }, + [ + { + "#": 4036 + }, + { + "#": 4037 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4039 + }, + "min": { + "#": 4040 + } + }, + { + "x": 225, + "y": 337.73575476702496 + }, + { + "x": 200, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 322.3284840519894 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4049 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4057 + }, + "bounds": { + "#": 4060 + }, + "collisionFilter": { + "#": 4063 + }, + "constraintImpulse": { + "#": 4064 + }, + "density": 0.001, + "force": { + "#": 4065 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 185, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4066 + }, + "positionImpulse": { + "#": 4067 + }, + "positionPrev": { + "#": 4068 + }, + "region": { + "#": 4069 + }, + "render": { + "#": 4070 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4072 + }, + "vertices": { + "#": 4073 + } + }, + [ + { + "#": 4058 + }, + { + "#": 4059 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4061 + }, + "min": { + "#": 4062 + } + }, + { + "x": 250, + "y": 337.73575476702496 + }, + { + "x": 225, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 322.3284840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,6,7", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4071 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4074 + }, + { + "#": 4075 + }, + { + "#": 4076 + }, + { + "#": 4077 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4079 + }, + "bounds": { + "#": 4082 + }, + "collisionFilter": { + "#": 4085 + }, + "constraintImpulse": { + "#": 4086 + }, + "density": 0.001, + "force": { + "#": 4087 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 186, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4088 + }, + "positionImpulse": { + "#": 4089 + }, + "positionPrev": { + "#": 4090 + }, + "region": { + "#": 4091 + }, + "render": { + "#": 4092 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4094 + }, + "vertices": { + "#": 4095 + } + }, + [ + { + "#": 4080 + }, + { + "#": 4081 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4083 + }, + "min": { + "#": 4084 + } + }, + { + "x": 275, + "y": 337.73575476702496 + }, + { + "x": 250, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 322.3284840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4093 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4101 + }, + "bounds": { + "#": 4104 + }, + "collisionFilter": { + "#": 4107 + }, + "constraintImpulse": { + "#": 4108 + }, + "density": 0.001, + "force": { + "#": 4109 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 187, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4110 + }, + "positionImpulse": { + "#": 4111 + }, + "positionPrev": { + "#": 4112 + }, + "region": { + "#": 4113 + }, + "render": { + "#": 4114 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4116 + }, + "vertices": { + "#": 4117 + } + }, + [ + { + "#": 4102 + }, + { + "#": 4103 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4105 + }, + "min": { + "#": 4106 + } + }, + { + "x": 300, + "y": 337.73575476702496 + }, + { + "x": 275, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 322.3284840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4115 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4118 + }, + { + "#": 4119 + }, + { + "#": 4120 + }, + { + "#": 4121 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4123 + }, + "bounds": { + "#": 4126 + }, + "collisionFilter": { + "#": 4129 + }, + "constraintImpulse": { + "#": 4130 + }, + "density": 0.001, + "force": { + "#": 4131 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 188, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4132 + }, + "positionImpulse": { + "#": 4133 + }, + "positionPrev": { + "#": 4134 + }, + "region": { + "#": 4135 + }, + "render": { + "#": 4136 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4138 + }, + "vertices": { + "#": 4139 + } + }, + [ + { + "#": 4124 + }, + { + "#": 4125 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4127 + }, + "min": { + "#": 4128 + } + }, + { + "x": 325, + "y": 337.73575476702496 + }, + { + "x": 300, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 322.3284840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "6,6,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4137 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4145 + }, + "bounds": { + "#": 4148 + }, + "collisionFilter": { + "#": 4151 + }, + "constraintImpulse": { + "#": 4152 + }, + "density": 0.001, + "force": { + "#": 4153 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 189, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4154 + }, + "positionImpulse": { + "#": 4155 + }, + "positionPrev": { + "#": 4156 + }, + "region": { + "#": 4157 + }, + "render": { + "#": 4158 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4160 + }, + "vertices": { + "#": 4161 + } + }, + [ + { + "#": 4146 + }, + { + "#": 4147 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4149 + }, + "min": { + "#": 4150 + } + }, + { + "x": 350, + "y": 337.73575476702496 + }, + { + "x": 325, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 322.3284840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4159 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4162 + }, + { + "#": 4163 + }, + { + "#": 4164 + }, + { + "#": 4165 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4167 + }, + "bounds": { + "#": 4170 + }, + "collisionFilter": { + "#": 4173 + }, + "constraintImpulse": { + "#": 4174 + }, + "density": 0.001, + "force": { + "#": 4175 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 190, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4176 + }, + "positionImpulse": { + "#": 4177 + }, + "positionPrev": { + "#": 4178 + }, + "region": { + "#": 4179 + }, + "render": { + "#": 4180 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4182 + }, + "vertices": { + "#": 4183 + } + }, + [ + { + "#": 4168 + }, + { + "#": 4169 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4171 + }, + "min": { + "#": 4172 + } + }, + { + "x": 375, + "y": 337.73575476702496 + }, + { + "x": 350, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 322.3284840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4181 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + }, + { + "#": 4187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4189 + }, + "bounds": { + "#": 4192 + }, + "collisionFilter": { + "#": 4195 + }, + "constraintImpulse": { + "#": 4196 + }, + "density": 0.001, + "force": { + "#": 4197 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 191, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4198 + }, + "positionImpulse": { + "#": 4199 + }, + "positionPrev": { + "#": 4200 + }, + "region": { + "#": 4201 + }, + "render": { + "#": 4202 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4204 + }, + "vertices": { + "#": 4205 + } + }, + [ + { + "#": 4190 + }, + { + "#": 4191 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4193 + }, + "min": { + "#": 4194 + } + }, + { + "x": 400, + "y": 337.73575476702496 + }, + { + "x": 375, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 322.3284840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4203 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4206 + }, + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4211 + }, + "bounds": { + "#": 4214 + }, + "collisionFilter": { + "#": 4217 + }, + "constraintImpulse": { + "#": 4218 + }, + "density": 0.001, + "force": { + "#": 4219 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 192, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4220 + }, + "positionImpulse": { + "#": 4221 + }, + "positionPrev": { + "#": 4222 + }, + "region": { + "#": 4223 + }, + "render": { + "#": 4224 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4226 + }, + "vertices": { + "#": 4227 + } + }, + [ + { + "#": 4212 + }, + { + "#": 4213 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4215 + }, + "min": { + "#": 4216 + } + }, + { + "x": 425, + "y": 337.73575476702496 + }, + { + "x": 400, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 322.3284840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "8,8,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4225 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4233 + }, + "bounds": { + "#": 4236 + }, + "collisionFilter": { + "#": 4239 + }, + "constraintImpulse": { + "#": 4240 + }, + "density": 0.001, + "force": { + "#": 4241 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 193, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4242 + }, + "positionImpulse": { + "#": 4243 + }, + "positionPrev": { + "#": 4244 + }, + "region": { + "#": 4245 + }, + "render": { + "#": 4246 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4248 + }, + "vertices": { + "#": 4249 + } + }, + [ + { + "#": 4234 + }, + { + "#": 4235 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4237 + }, + "min": { + "#": 4238 + } + }, + { + "x": 450, + "y": 337.73575476702496 + }, + { + "x": 425, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 322.3284840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4247 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4250 + }, + { + "#": 4251 + }, + { + "#": 4252 + }, + { + "#": 4253 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4255 + }, + "bounds": { + "#": 4258 + }, + "collisionFilter": { + "#": 4261 + }, + "constraintImpulse": { + "#": 4262 + }, + "density": 0.001, + "force": { + "#": 4263 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 194, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4264 + }, + "positionImpulse": { + "#": 4265 + }, + "positionPrev": { + "#": 4266 + }, + "region": { + "#": 4267 + }, + "render": { + "#": 4268 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4270 + }, + "vertices": { + "#": 4271 + } + }, + [ + { + "#": 4256 + }, + { + "#": 4257 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4259 + }, + "min": { + "#": 4260 + } + }, + { + "x": 475, + "y": 337.73575476702496 + }, + { + "x": 450, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 322.3284840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4269 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4277 + }, + "bounds": { + "#": 4280 + }, + "collisionFilter": { + "#": 4283 + }, + "constraintImpulse": { + "#": 4284 + }, + "density": 0.001, + "force": { + "#": 4285 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 195, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4286 + }, + "positionImpulse": { + "#": 4287 + }, + "positionPrev": { + "#": 4288 + }, + "region": { + "#": 4289 + }, + "render": { + "#": 4290 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4292 + }, + "vertices": { + "#": 4293 + } + }, + [ + { + "#": 4278 + }, + { + "#": 4279 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4281 + }, + "min": { + "#": 4282 + } + }, + { + "x": 500, + "y": 337.73575476702496 + }, + { + "x": 475, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 322.3284840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4291 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4294 + }, + { + "#": 4295 + }, + { + "#": 4296 + }, + { + "#": 4297 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4299 + }, + "bounds": { + "#": 4302 + }, + "collisionFilter": { + "#": 4305 + }, + "constraintImpulse": { + "#": 4306 + }, + "density": 0.001, + "force": { + "#": 4307 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 196, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4308 + }, + "positionImpulse": { + "#": 4309 + }, + "positionPrev": { + "#": 4310 + }, + "region": { + "#": 4311 + }, + "render": { + "#": 4312 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4314 + }, + "vertices": { + "#": 4315 + } + }, + [ + { + "#": 4300 + }, + { + "#": 4301 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4303 + }, + "min": { + "#": 4304 + } + }, + { + "x": 525, + "y": 337.73575476702496 + }, + { + "x": 500, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 322.3284840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "10,10,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4313 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4316 + }, + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4321 + }, + "bounds": { + "#": 4324 + }, + "collisionFilter": { + "#": 4327 + }, + "constraintImpulse": { + "#": 4328 + }, + "density": 0.001, + "force": { + "#": 4329 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 197, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4330 + }, + "positionImpulse": { + "#": 4331 + }, + "positionPrev": { + "#": 4332 + }, + "region": { + "#": 4333 + }, + "render": { + "#": 4334 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4336 + }, + "vertices": { + "#": 4337 + } + }, + [ + { + "#": 4322 + }, + { + "#": 4323 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4325 + }, + "min": { + "#": 4326 + } + }, + { + "x": 550, + "y": 337.73575476702496 + }, + { + "x": 525, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 322.3284840519894 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4335 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + }, + { + "#": 4341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4343 + }, + "bounds": { + "#": 4346 + }, + "collisionFilter": { + "#": 4349 + }, + "constraintImpulse": { + "#": 4350 + }, + "density": 0.001, + "force": { + "#": 4351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 198, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4352 + }, + "positionImpulse": { + "#": 4353 + }, + "positionPrev": { + "#": 4354 + }, + "region": { + "#": 4355 + }, + "render": { + "#": 4356 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4358 + }, + "vertices": { + "#": 4359 + } + }, + [ + { + "#": 4344 + }, + { + "#": 4345 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4347 + }, + "min": { + "#": 4348 + } + }, + { + "x": 575, + "y": 337.73575476702496 + }, + { + "x": 550, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 322.3284840519894 + }, + { + "endCol": 11, + "endRow": 7, + "id": "11,11,6,7", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4357 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4365 + }, + "bounds": { + "#": 4368 + }, + "collisionFilter": { + "#": 4371 + }, + "constraintImpulse": { + "#": 4372 + }, + "density": 0.001, + "force": { + "#": 4373 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 199, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4374 + }, + "positionImpulse": { + "#": 4375 + }, + "positionPrev": { + "#": 4376 + }, + "region": { + "#": 4377 + }, + "render": { + "#": 4378 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4380 + }, + "vertices": { + "#": 4381 + } + }, + [ + { + "#": 4366 + }, + { + "#": 4367 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4369 + }, + "min": { + "#": 4370 + } + }, + { + "x": 600, + "y": 337.73575476702496 + }, + { + "x": 575, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 322.3284840519894 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,6,7", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4379 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4387 + }, + "bounds": { + "#": 4390 + }, + "collisionFilter": { + "#": 4393 + }, + "constraintImpulse": { + "#": 4394 + }, + "density": 0.001, + "force": { + "#": 4395 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 200, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4396 + }, + "positionImpulse": { + "#": 4397 + }, + "positionPrev": { + "#": 4398 + }, + "region": { + "#": 4399 + }, + "render": { + "#": 4400 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4402 + }, + "vertices": { + "#": 4403 + } + }, + [ + { + "#": 4388 + }, + { + "#": 4389 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4391 + }, + "min": { + "#": 4392 + } + }, + { + "x": 625, + "y": 337.73575476702496 + }, + { + "x": 600, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 322.3284840519894 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,6,7", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4401 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4404 + }, + { + "#": 4405 + }, + { + "#": 4406 + }, + { + "#": 4407 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4409 + }, + "bounds": { + "#": 4412 + }, + "collisionFilter": { + "#": 4415 + }, + "constraintImpulse": { + "#": 4416 + }, + "density": 0.001, + "force": { + "#": 4417 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 201, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4418 + }, + "positionImpulse": { + "#": 4419 + }, + "positionPrev": { + "#": 4420 + }, + "region": { + "#": 4421 + }, + "render": { + "#": 4422 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4424 + }, + "vertices": { + "#": 4425 + } + }, + [ + { + "#": 4410 + }, + { + "#": 4411 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4413 + }, + "min": { + "#": 4414 + } + }, + { + "x": 650, + "y": 337.73575476702496 + }, + { + "x": 625, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 322.3284840519894 + }, + { + "endCol": 13, + "endRow": 7, + "id": "13,13,6,7", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4423 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + }, + { + "#": 4429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4431 + }, + "bounds": { + "#": 4434 + }, + "collisionFilter": { + "#": 4437 + }, + "constraintImpulse": { + "#": 4438 + }, + "density": 0.001, + "force": { + "#": 4439 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 202, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4440 + }, + "positionImpulse": { + "#": 4441 + }, + "positionPrev": { + "#": 4442 + }, + "region": { + "#": 4443 + }, + "render": { + "#": 4444 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4446 + }, + "vertices": { + "#": 4447 + } + }, + [ + { + "#": 4432 + }, + { + "#": 4433 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4435 + }, + "min": { + "#": 4436 + } + }, + { + "x": 675, + "y": 337.73575476702496 + }, + { + "x": 650, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 322.3284840519894 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,6,7", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4445 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4453 + }, + "bounds": { + "#": 4456 + }, + "collisionFilter": { + "#": 4459 + }, + "constraintImpulse": { + "#": 4460 + }, + "density": 0.001, + "force": { + "#": 4461 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 203, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4462 + }, + "positionImpulse": { + "#": 4463 + }, + "positionPrev": { + "#": 4464 + }, + "region": { + "#": 4465 + }, + "render": { + "#": 4466 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4468 + }, + "vertices": { + "#": 4469 + } + }, + [ + { + "#": 4454 + }, + { + "#": 4455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4457 + }, + "min": { + "#": 4458 + } + }, + { + "x": 700, + "y": 337.73575476702496 + }, + { + "x": 675, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 322.3284840519894 + }, + { + "endCol": 14, + "endRow": 7, + "id": "14,14,6,7", + "startCol": 14, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4467 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4470 + }, + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4475 + }, + "bounds": { + "#": 4478 + }, + "collisionFilter": { + "#": 4481 + }, + "constraintImpulse": { + "#": 4482 + }, + "density": 0.001, + "force": { + "#": 4483 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 204, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4484 + }, + "positionImpulse": { + "#": 4485 + }, + "positionPrev": { + "#": 4486 + }, + "region": { + "#": 4487 + }, + "render": { + "#": 4488 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4490 + }, + "vertices": { + "#": 4491 + } + }, + [ + { + "#": 4476 + }, + { + "#": 4477 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4479 + }, + "min": { + "#": 4480 + } + }, + { + "x": 725, + "y": 337.73575476702496 + }, + { + "x": 700, + "y": 312.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 325.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 322.3284840519894 + }, + { + "endCol": 15, + "endRow": 7, + "id": "14,15,6,7", + "startCol": 14, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4489 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + }, + { + "#": 4495 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 312.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 337.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4497 + }, + "bounds": { + "#": 4500 + }, + "collisionFilter": { + "#": 4503 + }, + "constraintImpulse": { + "#": 4504 + }, + "density": 0.001, + "force": { + "#": 4505 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 205, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4506 + }, + "positionImpulse": { + "#": 4507 + }, + "positionPrev": { + "#": 4508 + }, + "region": { + "#": 4509 + }, + "render": { + "#": 4510 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4512 + }, + "vertices": { + "#": 4513 + } + }, + [ + { + "#": 4498 + }, + { + "#": 4499 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4501 + }, + "min": { + "#": 4502 + } + }, + { + "x": 125, + "y": 362.73575476702496 + }, + { + "x": 100, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 347.3284840519894 + }, + { + "endCol": 2, + "endRow": 7, + "id": "2,2,7,7", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4511 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4514 + }, + { + "#": 4515 + }, + { + "#": 4516 + }, + { + "#": 4517 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4519 + }, + "bounds": { + "#": 4522 + }, + "collisionFilter": { + "#": 4525 + }, + "constraintImpulse": { + "#": 4526 + }, + "density": 0.001, + "force": { + "#": 4527 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 206, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4528 + }, + "positionImpulse": { + "#": 4529 + }, + "positionPrev": { + "#": 4530 + }, + "region": { + "#": 4531 + }, + "render": { + "#": 4532 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4534 + }, + "vertices": { + "#": 4535 + } + }, + [ + { + "#": 4520 + }, + { + "#": 4521 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4523 + }, + "min": { + "#": 4524 + } + }, + { + "x": 150, + "y": 362.73575476702496 + }, + { + "x": 125, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 347.3284840519894 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,7,7", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4533 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4541 + }, + "bounds": { + "#": 4544 + }, + "collisionFilter": { + "#": 4547 + }, + "constraintImpulse": { + "#": 4548 + }, + "density": 0.001, + "force": { + "#": 4549 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 207, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4550 + }, + "positionImpulse": { + "#": 4551 + }, + "positionPrev": { + "#": 4552 + }, + "region": { + "#": 4553 + }, + "render": { + "#": 4554 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4556 + }, + "vertices": { + "#": 4557 + } + }, + [ + { + "#": 4542 + }, + { + "#": 4543 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4545 + }, + "min": { + "#": 4546 + } + }, + { + "x": 175, + "y": 362.73575476702496 + }, + { + "x": 150, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 347.3284840519894 + }, + { + "endCol": 3, + "endRow": 7, + "id": "3,3,7,7", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4555 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4558 + }, + { + "#": 4559 + }, + { + "#": 4560 + }, + { + "#": 4561 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4563 + }, + "bounds": { + "#": 4566 + }, + "collisionFilter": { + "#": 4569 + }, + "constraintImpulse": { + "#": 4570 + }, + "density": 0.001, + "force": { + "#": 4571 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 208, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4572 + }, + "positionImpulse": { + "#": 4573 + }, + "positionPrev": { + "#": 4574 + }, + "region": { + "#": 4575 + }, + "render": { + "#": 4576 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4578 + }, + "vertices": { + "#": 4579 + } + }, + [ + { + "#": 4564 + }, + { + "#": 4565 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4567 + }, + "min": { + "#": 4568 + } + }, + { + "x": 200, + "y": 362.73575476702496 + }, + { + "x": 175, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 347.3284840519894 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,7,7", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4577 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4585 + }, + "bounds": { + "#": 4588 + }, + "collisionFilter": { + "#": 4591 + }, + "constraintImpulse": { + "#": 4592 + }, + "density": 0.001, + "force": { + "#": 4593 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 209, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4594 + }, + "positionImpulse": { + "#": 4595 + }, + "positionPrev": { + "#": 4596 + }, + "region": { + "#": 4597 + }, + "render": { + "#": 4598 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4600 + }, + "vertices": { + "#": 4601 + } + }, + [ + { + "#": 4586 + }, + { + "#": 4587 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4589 + }, + "min": { + "#": 4590 + } + }, + { + "x": 225, + "y": 362.73575476702496 + }, + { + "x": 200, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 347.3284840519894 + }, + { + "endCol": 4, + "endRow": 7, + "id": "4,4,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4599 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4607 + }, + "bounds": { + "#": 4610 + }, + "collisionFilter": { + "#": 4613 + }, + "constraintImpulse": { + "#": 4614 + }, + "density": 0.001, + "force": { + "#": 4615 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 210, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4616 + }, + "positionImpulse": { + "#": 4617 + }, + "positionPrev": { + "#": 4618 + }, + "region": { + "#": 4619 + }, + "render": { + "#": 4620 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4622 + }, + "vertices": { + "#": 4623 + } + }, + [ + { + "#": 4608 + }, + { + "#": 4609 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4611 + }, + "min": { + "#": 4612 + } + }, + { + "x": 250, + "y": 362.73575476702496 + }, + { + "x": 225, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 347.3284840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "4,5,7,7", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4621 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4624 + }, + { + "#": 4625 + }, + { + "#": 4626 + }, + { + "#": 4627 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4629 + }, + "bounds": { + "#": 4632 + }, + "collisionFilter": { + "#": 4635 + }, + "constraintImpulse": { + "#": 4636 + }, + "density": 0.001, + "force": { + "#": 4637 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 211, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4638 + }, + "positionImpulse": { + "#": 4639 + }, + "positionPrev": { + "#": 4640 + }, + "region": { + "#": 4641 + }, + "render": { + "#": 4642 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4644 + }, + "vertices": { + "#": 4645 + } + }, + [ + { + "#": 4630 + }, + { + "#": 4631 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4633 + }, + "min": { + "#": 4634 + } + }, + { + "x": 275, + "y": 362.73575476702496 + }, + { + "x": 250, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 347.3284840519894 + }, + { + "endCol": 5, + "endRow": 7, + "id": "5,5,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4643 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + }, + { + "#": 4649 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4651 + }, + "bounds": { + "#": 4654 + }, + "collisionFilter": { + "#": 4657 + }, + "constraintImpulse": { + "#": 4658 + }, + "density": 0.001, + "force": { + "#": 4659 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 212, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4660 + }, + "positionImpulse": { + "#": 4661 + }, + "positionPrev": { + "#": 4662 + }, + "region": { + "#": 4663 + }, + "render": { + "#": 4664 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4666 + }, + "vertices": { + "#": 4667 + } + }, + [ + { + "#": 4652 + }, + { + "#": 4653 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4655 + }, + "min": { + "#": 4656 + } + }, + { + "x": 300, + "y": 362.73575476702496 + }, + { + "x": 275, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 347.3284840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,7,7", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4665 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4668 + }, + { + "#": 4669 + }, + { + "#": 4670 + }, + { + "#": 4671 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4673 + }, + "bounds": { + "#": 4676 + }, + "collisionFilter": { + "#": 4679 + }, + "constraintImpulse": { + "#": 4680 + }, + "density": 0.001, + "force": { + "#": 4681 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 213, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4682 + }, + "positionImpulse": { + "#": 4683 + }, + "positionPrev": { + "#": 4684 + }, + "region": { + "#": 4685 + }, + "render": { + "#": 4686 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4688 + }, + "vertices": { + "#": 4689 + } + }, + [ + { + "#": 4674 + }, + { + "#": 4675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4677 + }, + "min": { + "#": 4678 + } + }, + { + "x": 325, + "y": 362.73575476702496 + }, + { + "x": 300, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 347.3284840519894 + }, + { + "endCol": 6, + "endRow": 7, + "id": "6,6,7,7", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4687 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4695 + }, + "bounds": { + "#": 4698 + }, + "collisionFilter": { + "#": 4701 + }, + "constraintImpulse": { + "#": 4702 + }, + "density": 0.001, + "force": { + "#": 4703 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 214, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4704 + }, + "positionImpulse": { + "#": 4705 + }, + "positionPrev": { + "#": 4706 + }, + "region": { + "#": 4707 + }, + "render": { + "#": 4708 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4710 + }, + "vertices": { + "#": 4711 + } + }, + [ + { + "#": 4696 + }, + { + "#": 4697 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4699 + }, + "min": { + "#": 4700 + } + }, + { + "x": 350, + "y": 362.73575476702496 + }, + { + "x": 325, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 347.3284840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,7,7", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4709 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4712 + }, + { + "#": 4713 + }, + { + "#": 4714 + }, + { + "#": 4715 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4717 + }, + "bounds": { + "#": 4720 + }, + "collisionFilter": { + "#": 4723 + }, + "constraintImpulse": { + "#": 4724 + }, + "density": 0.001, + "force": { + "#": 4725 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 215, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4726 + }, + "positionImpulse": { + "#": 4727 + }, + "positionPrev": { + "#": 4728 + }, + "region": { + "#": 4729 + }, + "render": { + "#": 4730 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4732 + }, + "vertices": { + "#": 4733 + } + }, + [ + { + "#": 4718 + }, + { + "#": 4719 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4721 + }, + "min": { + "#": 4722 + } + }, + { + "x": 375, + "y": 362.73575476702496 + }, + { + "x": 350, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 347.3284840519894 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4731 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4734 + }, + { + "#": 4735 + }, + { + "#": 4736 + }, + { + "#": 4737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4739 + }, + "bounds": { + "#": 4742 + }, + "collisionFilter": { + "#": 4745 + }, + "constraintImpulse": { + "#": 4746 + }, + "density": 0.001, + "force": { + "#": 4747 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 216, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4748 + }, + "positionImpulse": { + "#": 4749 + }, + "positionPrev": { + "#": 4750 + }, + "region": { + "#": 4751 + }, + "render": { + "#": 4752 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4754 + }, + "vertices": { + "#": 4755 + } + }, + [ + { + "#": 4740 + }, + { + "#": 4741 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4743 + }, + "min": { + "#": 4744 + } + }, + { + "x": 400, + "y": 362.73575476702496 + }, + { + "x": 375, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 347.3284840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "7,8,7,7", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4753 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4756 + }, + { + "#": 4757 + }, + { + "#": 4758 + }, + { + "#": 4759 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4761 + }, + "bounds": { + "#": 4764 + }, + "collisionFilter": { + "#": 4767 + }, + "constraintImpulse": { + "#": 4768 + }, + "density": 0.001, + "force": { + "#": 4769 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 217, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4770 + }, + "positionImpulse": { + "#": 4771 + }, + "positionPrev": { + "#": 4772 + }, + "region": { + "#": 4773 + }, + "render": { + "#": 4774 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4776 + }, + "vertices": { + "#": 4777 + } + }, + [ + { + "#": 4762 + }, + { + "#": 4763 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4765 + }, + "min": { + "#": 4766 + } + }, + { + "x": 425, + "y": 362.73575476702496 + }, + { + "x": 400, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 347.3284840519894 + }, + { + "endCol": 8, + "endRow": 7, + "id": "8,8,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4775 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4778 + }, + { + "#": 4779 + }, + { + "#": 4780 + }, + { + "#": 4781 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4783 + }, + "bounds": { + "#": 4786 + }, + "collisionFilter": { + "#": 4789 + }, + "constraintImpulse": { + "#": 4790 + }, + "density": 0.001, + "force": { + "#": 4791 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 218, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4792 + }, + "positionImpulse": { + "#": 4793 + }, + "positionPrev": { + "#": 4794 + }, + "region": { + "#": 4795 + }, + "render": { + "#": 4796 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4798 + }, + "vertices": { + "#": 4799 + } + }, + [ + { + "#": 4784 + }, + { + "#": 4785 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4787 + }, + "min": { + "#": 4788 + } + }, + { + "x": 450, + "y": 362.73575476702496 + }, + { + "x": 425, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 347.3284840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,7,7", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4797 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4800 + }, + { + "#": 4801 + }, + { + "#": 4802 + }, + { + "#": 4803 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4805 + }, + "bounds": { + "#": 4808 + }, + "collisionFilter": { + "#": 4811 + }, + "constraintImpulse": { + "#": 4812 + }, + "density": 0.001, + "force": { + "#": 4813 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 219, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4814 + }, + "positionImpulse": { + "#": 4815 + }, + "positionPrev": { + "#": 4816 + }, + "region": { + "#": 4817 + }, + "render": { + "#": 4818 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4820 + }, + "vertices": { + "#": 4821 + } + }, + [ + { + "#": 4806 + }, + { + "#": 4807 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4809 + }, + "min": { + "#": 4810 + } + }, + { + "x": 475, + "y": 362.73575476702496 + }, + { + "x": 450, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 347.3284840519894 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4819 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + }, + { + "#": 4825 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4827 + }, + "bounds": { + "#": 4830 + }, + "collisionFilter": { + "#": 4833 + }, + "constraintImpulse": { + "#": 4834 + }, + "density": 0.001, + "force": { + "#": 4835 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 220, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4836 + }, + "positionImpulse": { + "#": 4837 + }, + "positionPrev": { + "#": 4838 + }, + "region": { + "#": 4839 + }, + "render": { + "#": 4840 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4842 + }, + "vertices": { + "#": 4843 + } + }, + [ + { + "#": 4828 + }, + { + "#": 4829 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4831 + }, + "min": { + "#": 4832 + } + }, + { + "x": 500, + "y": 362.73575476702496 + }, + { + "x": 475, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 347.3284840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 4841 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + }, + { + "#": 4847 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4849 + }, + "bounds": { + "#": 4852 + }, + "collisionFilter": { + "#": 4855 + }, + "constraintImpulse": { + "#": 4856 + }, + "density": 0.001, + "force": { + "#": 4857 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 221, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4858 + }, + "positionImpulse": { + "#": 4859 + }, + "positionPrev": { + "#": 4860 + }, + "region": { + "#": 4861 + }, + "render": { + "#": 4862 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4864 + }, + "vertices": { + "#": 4865 + } + }, + [ + { + "#": 4850 + }, + { + "#": 4851 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4853 + }, + "min": { + "#": 4854 + } + }, + { + "x": 525, + "y": 362.73575476702496 + }, + { + "x": 500, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 347.3284840519894 + }, + { + "endCol": 10, + "endRow": 7, + "id": "10,10,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 4863 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4866 + }, + { + "#": 4867 + }, + { + "#": 4868 + }, + { + "#": 4869 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4871 + }, + "bounds": { + "#": 4874 + }, + "collisionFilter": { + "#": 4877 + }, + "constraintImpulse": { + "#": 4878 + }, + "density": 0.001, + "force": { + "#": 4879 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 222, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4880 + }, + "positionImpulse": { + "#": 4881 + }, + "positionPrev": { + "#": 4882 + }, + "region": { + "#": 4883 + }, + "render": { + "#": 4884 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4886 + }, + "vertices": { + "#": 4887 + } + }, + [ + { + "#": 4872 + }, + { + "#": 4873 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4875 + }, + "min": { + "#": 4876 + } + }, + { + "x": 550, + "y": 362.73575476702496 + }, + { + "x": 525, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 347.3284840519894 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4885 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4888 + }, + { + "#": 4889 + }, + { + "#": 4890 + }, + { + "#": 4891 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4893 + }, + "bounds": { + "#": 4896 + }, + "collisionFilter": { + "#": 4899 + }, + "constraintImpulse": { + "#": 4900 + }, + "density": 0.001, + "force": { + "#": 4901 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 223, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4902 + }, + "positionImpulse": { + "#": 4903 + }, + "positionPrev": { + "#": 4904 + }, + "region": { + "#": 4905 + }, + "render": { + "#": 4906 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4908 + }, + "vertices": { + "#": 4909 + } + }, + [ + { + "#": 4894 + }, + { + "#": 4895 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4897 + }, + "min": { + "#": 4898 + } + }, + { + "x": 575, + "y": 362.73575476702496 + }, + { + "x": 550, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 347.3284840519894 + }, + { + "endCol": 11, + "endRow": 7, + "id": "11,11,7,7", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 4907 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4910 + }, + { + "#": 4911 + }, + { + "#": 4912 + }, + { + "#": 4913 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4915 + }, + "bounds": { + "#": 4918 + }, + "collisionFilter": { + "#": 4921 + }, + "constraintImpulse": { + "#": 4922 + }, + "density": 0.001, + "force": { + "#": 4923 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 224, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4924 + }, + "positionImpulse": { + "#": 4925 + }, + "positionPrev": { + "#": 4926 + }, + "region": { + "#": 4927 + }, + "render": { + "#": 4928 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4930 + }, + "vertices": { + "#": 4931 + } + }, + [ + { + "#": 4916 + }, + { + "#": 4917 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4919 + }, + "min": { + "#": 4920 + } + }, + { + "x": 600, + "y": 362.73575476702496 + }, + { + "x": 575, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 347.3284840519894 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,7,7", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4929 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4932 + }, + { + "#": 4933 + }, + { + "#": 4934 + }, + { + "#": 4935 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4937 + }, + "bounds": { + "#": 4940 + }, + "collisionFilter": { + "#": 4943 + }, + "constraintImpulse": { + "#": 4944 + }, + "density": 0.001, + "force": { + "#": 4945 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 225, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4946 + }, + "positionImpulse": { + "#": 4947 + }, + "positionPrev": { + "#": 4948 + }, + "region": { + "#": 4949 + }, + "render": { + "#": 4950 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4952 + }, + "vertices": { + "#": 4953 + } + }, + [ + { + "#": 4938 + }, + { + "#": 4939 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4941 + }, + "min": { + "#": 4942 + } + }, + { + "x": 625, + "y": 362.73575476702496 + }, + { + "x": 600, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 347.3284840519894 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,7,7", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 4951 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4959 + }, + "bounds": { + "#": 4962 + }, + "collisionFilter": { + "#": 4965 + }, + "constraintImpulse": { + "#": 4966 + }, + "density": 0.001, + "force": { + "#": 4967 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 226, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4968 + }, + "positionImpulse": { + "#": 4969 + }, + "positionPrev": { + "#": 4970 + }, + "region": { + "#": 4971 + }, + "render": { + "#": 4972 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4974 + }, + "vertices": { + "#": 4975 + } + }, + [ + { + "#": 4960 + }, + { + "#": 4961 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4963 + }, + "min": { + "#": 4964 + } + }, + { + "x": 650, + "y": 362.73575476702496 + }, + { + "x": 625, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 347.3284840519894 + }, + { + "endCol": 13, + "endRow": 7, + "id": "13,13,7,7", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4973 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4976 + }, + { + "#": 4977 + }, + { + "#": 4978 + }, + { + "#": 4979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 4981 + }, + "bounds": { + "#": 4984 + }, + "collisionFilter": { + "#": 4987 + }, + "constraintImpulse": { + "#": 4988 + }, + "density": 0.001, + "force": { + "#": 4989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 227, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 4990 + }, + "positionImpulse": { + "#": 4991 + }, + "positionPrev": { + "#": 4992 + }, + "region": { + "#": 4993 + }, + "render": { + "#": 4994 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 4996 + }, + "vertices": { + "#": 4997 + } + }, + [ + { + "#": 4982 + }, + { + "#": 4983 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 4985 + }, + "min": { + "#": 4986 + } + }, + { + "x": 675, + "y": 362.73575476702496 + }, + { + "x": 650, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 347.3284840519894 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,7,7", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 4995 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 4998 + }, + { + "#": 4999 + }, + { + "#": 5000 + }, + { + "#": 5001 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5003 + }, + "bounds": { + "#": 5006 + }, + "collisionFilter": { + "#": 5009 + }, + "constraintImpulse": { + "#": 5010 + }, + "density": 0.001, + "force": { + "#": 5011 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 228, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5012 + }, + "positionImpulse": { + "#": 5013 + }, + "positionPrev": { + "#": 5014 + }, + "region": { + "#": 5015 + }, + "render": { + "#": 5016 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5018 + }, + "vertices": { + "#": 5019 + } + }, + [ + { + "#": 5004 + }, + { + "#": 5005 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5007 + }, + "min": { + "#": 5008 + } + }, + { + "x": 700, + "y": 362.73575476702496 + }, + { + "x": 675, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 347.3284840519894 + }, + { + "endCol": 14, + "endRow": 7, + "id": "14,14,7,7", + "startCol": 14, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5017 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5020 + }, + { + "#": 5021 + }, + { + "#": 5022 + }, + { + "#": 5023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5025 + }, + "bounds": { + "#": 5028 + }, + "collisionFilter": { + "#": 5031 + }, + "constraintImpulse": { + "#": 5032 + }, + "density": 0.001, + "force": { + "#": 5033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 229, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5034 + }, + "positionImpulse": { + "#": 5035 + }, + "positionPrev": { + "#": 5036 + }, + "region": { + "#": 5037 + }, + "render": { + "#": 5038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5040 + }, + "vertices": { + "#": 5041 + } + }, + [ + { + "#": 5026 + }, + { + "#": 5027 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5029 + }, + "min": { + "#": 5030 + } + }, + { + "x": 725, + "y": 362.73575476702496 + }, + { + "x": 700, + "y": 337.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 350.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 347.3284840519894 + }, + { + "endCol": 15, + "endRow": 7, + "id": "14,15,7,7", + "startCol": 14, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5039 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5042 + }, + { + "#": 5043 + }, + { + "#": 5044 + }, + { + "#": 5045 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 337.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 362.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5047 + }, + "bounds": { + "#": 5050 + }, + "collisionFilter": { + "#": 5053 + }, + "constraintImpulse": { + "#": 5054 + }, + "density": 0.001, + "force": { + "#": 5055 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 230, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5056 + }, + "positionImpulse": { + "#": 5057 + }, + "positionPrev": { + "#": 5058 + }, + "region": { + "#": 5059 + }, + "render": { + "#": 5060 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5062 + }, + "vertices": { + "#": 5063 + } + }, + [ + { + "#": 5048 + }, + { + "#": 5049 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5051 + }, + "min": { + "#": 5052 + } + }, + { + "x": 125, + "y": 387.73575476702496 + }, + { + "x": 100, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 372.3284840519894 + }, + { + "endCol": 2, + "endRow": 8, + "id": "2,2,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5061 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5064 + }, + { + "#": 5065 + }, + { + "#": 5066 + }, + { + "#": 5067 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5069 + }, + "bounds": { + "#": 5072 + }, + "collisionFilter": { + "#": 5075 + }, + "constraintImpulse": { + "#": 5076 + }, + "density": 0.001, + "force": { + "#": 5077 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 231, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5078 + }, + "positionImpulse": { + "#": 5079 + }, + "positionPrev": { + "#": 5080 + }, + "region": { + "#": 5081 + }, + "render": { + "#": 5082 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5084 + }, + "vertices": { + "#": 5085 + } + }, + [ + { + "#": 5070 + }, + { + "#": 5071 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5073 + }, + "min": { + "#": 5074 + } + }, + { + "x": 150, + "y": 387.73575476702496 + }, + { + "x": 125, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 372.3284840519894 + }, + { + "endCol": 3, + "endRow": 8, + "id": "2,3,7,8", + "startCol": 2, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5083 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + }, + { + "#": 5088 + }, + { + "#": 5089 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5091 + }, + "bounds": { + "#": 5094 + }, + "collisionFilter": { + "#": 5097 + }, + "constraintImpulse": { + "#": 5098 + }, + "density": 0.001, + "force": { + "#": 5099 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 232, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5100 + }, + "positionImpulse": { + "#": 5101 + }, + "positionPrev": { + "#": 5102 + }, + "region": { + "#": 5103 + }, + "render": { + "#": 5104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5106 + }, + "vertices": { + "#": 5107 + } + }, + [ + { + "#": 5092 + }, + { + "#": 5093 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5095 + }, + "min": { + "#": 5096 + } + }, + { + "x": 175, + "y": 387.73575476702496 + }, + { + "x": 150, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 372.3284840519894 + }, + { + "endCol": 3, + "endRow": 8, + "id": "3,3,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5105 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5113 + }, + "bounds": { + "#": 5116 + }, + "collisionFilter": { + "#": 5119 + }, + "constraintImpulse": { + "#": 5120 + }, + "density": 0.001, + "force": { + "#": 5121 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 233, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5122 + }, + "positionImpulse": { + "#": 5123 + }, + "positionPrev": { + "#": 5124 + }, + "region": { + "#": 5125 + }, + "render": { + "#": 5126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5128 + }, + "vertices": { + "#": 5129 + } + }, + [ + { + "#": 5114 + }, + { + "#": 5115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5117 + }, + "min": { + "#": 5118 + } + }, + { + "x": 200, + "y": 387.73575476702496 + }, + { + "x": 175, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 372.3284840519894 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,7,8", + "startCol": 3, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5127 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5130 + }, + { + "#": 5131 + }, + { + "#": 5132 + }, + { + "#": 5133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5135 + }, + "bounds": { + "#": 5138 + }, + "collisionFilter": { + "#": 5141 + }, + "constraintImpulse": { + "#": 5142 + }, + "density": 0.001, + "force": { + "#": 5143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 234, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5144 + }, + "positionImpulse": { + "#": 5145 + }, + "positionPrev": { + "#": 5146 + }, + "region": { + "#": 5147 + }, + "render": { + "#": 5148 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5150 + }, + "vertices": { + "#": 5151 + } + }, + [ + { + "#": 5136 + }, + { + "#": 5137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5139 + }, + "min": { + "#": 5140 + } + }, + { + "x": 225, + "y": 387.73575476702496 + }, + { + "x": 200, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 372.3284840519894 + }, + { + "endCol": 4, + "endRow": 8, + "id": "4,4,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5149 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5152 + }, + { + "#": 5153 + }, + { + "#": 5154 + }, + { + "#": 5155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5157 + }, + "bounds": { + "#": 5160 + }, + "collisionFilter": { + "#": 5163 + }, + "constraintImpulse": { + "#": 5164 + }, + "density": 0.001, + "force": { + "#": 5165 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 235, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5166 + }, + "positionImpulse": { + "#": 5167 + }, + "positionPrev": { + "#": 5168 + }, + "region": { + "#": 5169 + }, + "render": { + "#": 5170 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5172 + }, + "vertices": { + "#": 5173 + } + }, + [ + { + "#": 5158 + }, + { + "#": 5159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5161 + }, + "min": { + "#": 5162 + } + }, + { + "x": 250, + "y": 387.73575476702496 + }, + { + "x": 225, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 372.3284840519894 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,7,8", + "startCol": 4, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5171 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5174 + }, + { + "#": 5175 + }, + { + "#": 5176 + }, + { + "#": 5177 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5179 + }, + "bounds": { + "#": 5182 + }, + "collisionFilter": { + "#": 5185 + }, + "constraintImpulse": { + "#": 5186 + }, + "density": 0.001, + "force": { + "#": 5187 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 236, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5188 + }, + "positionImpulse": { + "#": 5189 + }, + "positionPrev": { + "#": 5190 + }, + "region": { + "#": 5191 + }, + "render": { + "#": 5192 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5194 + }, + "vertices": { + "#": 5195 + } + }, + [ + { + "#": 5180 + }, + { + "#": 5181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5183 + }, + "min": { + "#": 5184 + } + }, + { + "x": 275, + "y": 387.73575476702496 + }, + { + "x": 250, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 372.3284840519894 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5193 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5196 + }, + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5201 + }, + "bounds": { + "#": 5204 + }, + "collisionFilter": { + "#": 5207 + }, + "constraintImpulse": { + "#": 5208 + }, + "density": 0.001, + "force": { + "#": 5209 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 237, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5210 + }, + "positionImpulse": { + "#": 5211 + }, + "positionPrev": { + "#": 5212 + }, + "region": { + "#": 5213 + }, + "render": { + "#": 5214 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5216 + }, + "vertices": { + "#": 5217 + } + }, + [ + { + "#": 5202 + }, + { + "#": 5203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5205 + }, + "min": { + "#": 5206 + } + }, + { + "x": 300, + "y": 387.73575476702496 + }, + { + "x": 275, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 372.3284840519894 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,7,8", + "startCol": 5, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5215 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5218 + }, + { + "#": 5219 + }, + { + "#": 5220 + }, + { + "#": 5221 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5223 + }, + "bounds": { + "#": 5226 + }, + "collisionFilter": { + "#": 5229 + }, + "constraintImpulse": { + "#": 5230 + }, + "density": 0.001, + "force": { + "#": 5231 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 238, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5232 + }, + "positionImpulse": { + "#": 5233 + }, + "positionPrev": { + "#": 5234 + }, + "region": { + "#": 5235 + }, + "render": { + "#": 5236 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5238 + }, + "vertices": { + "#": 5239 + } + }, + [ + { + "#": 5224 + }, + { + "#": 5225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5227 + }, + "min": { + "#": 5228 + } + }, + { + "x": 325, + "y": 387.73575476702496 + }, + { + "x": 300, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 372.3284840519894 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5237 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5240 + }, + { + "#": 5241 + }, + { + "#": 5242 + }, + { + "#": 5243 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5245 + }, + "bounds": { + "#": 5248 + }, + "collisionFilter": { + "#": 5251 + }, + "constraintImpulse": { + "#": 5252 + }, + "density": 0.001, + "force": { + "#": 5253 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 239, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5254 + }, + "positionImpulse": { + "#": 5255 + }, + "positionPrev": { + "#": 5256 + }, + "region": { + "#": 5257 + }, + "render": { + "#": 5258 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5260 + }, + "vertices": { + "#": 5261 + } + }, + [ + { + "#": 5246 + }, + { + "#": 5247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5249 + }, + "min": { + "#": 5250 + } + }, + { + "x": 350, + "y": 387.73575476702496 + }, + { + "x": 325, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 372.3284840519894 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,7,8", + "startCol": 6, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5259 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5262 + }, + { + "#": 5263 + }, + { + "#": 5264 + }, + { + "#": 5265 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5267 + }, + "bounds": { + "#": 5270 + }, + "collisionFilter": { + "#": 5273 + }, + "constraintImpulse": { + "#": 5274 + }, + "density": 0.001, + "force": { + "#": 5275 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 240, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5276 + }, + "positionImpulse": { + "#": 5277 + }, + "positionPrev": { + "#": 5278 + }, + "region": { + "#": 5279 + }, + "render": { + "#": 5280 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5282 + }, + "vertices": { + "#": 5283 + } + }, + [ + { + "#": 5268 + }, + { + "#": 5269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5271 + }, + "min": { + "#": 5272 + } + }, + { + "x": 375, + "y": 387.73575476702496 + }, + { + "x": 350, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 372.3284840519894 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5281 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5284 + }, + { + "#": 5285 + }, + { + "#": 5286 + }, + { + "#": 5287 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5289 + }, + "bounds": { + "#": 5292 + }, + "collisionFilter": { + "#": 5295 + }, + "constraintImpulse": { + "#": 5296 + }, + "density": 0.001, + "force": { + "#": 5297 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 241, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5298 + }, + "positionImpulse": { + "#": 5299 + }, + "positionPrev": { + "#": 5300 + }, + "region": { + "#": 5301 + }, + "render": { + "#": 5302 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5304 + }, + "vertices": { + "#": 5305 + } + }, + [ + { + "#": 5290 + }, + { + "#": 5291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5293 + }, + "min": { + "#": 5294 + } + }, + { + "x": 400, + "y": 387.73575476702496 + }, + { + "x": 375, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 372.3284840519894 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,7,8", + "startCol": 7, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5303 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5306 + }, + { + "#": 5307 + }, + { + "#": 5308 + }, + { + "#": 5309 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5311 + }, + "bounds": { + "#": 5314 + }, + "collisionFilter": { + "#": 5317 + }, + "constraintImpulse": { + "#": 5318 + }, + "density": 0.001, + "force": { + "#": 5319 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 242, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5320 + }, + "positionImpulse": { + "#": 5321 + }, + "positionPrev": { + "#": 5322 + }, + "region": { + "#": 5323 + }, + "render": { + "#": 5324 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5326 + }, + "vertices": { + "#": 5327 + } + }, + [ + { + "#": 5312 + }, + { + "#": 5313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5315 + }, + "min": { + "#": 5316 + } + }, + { + "x": 425, + "y": 387.73575476702496 + }, + { + "x": 400, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 372.3284840519894 + }, + { + "endCol": 8, + "endRow": 8, + "id": "8,8,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5325 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5328 + }, + { + "#": 5329 + }, + { + "#": 5330 + }, + { + "#": 5331 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5333 + }, + "bounds": { + "#": 5336 + }, + "collisionFilter": { + "#": 5339 + }, + "constraintImpulse": { + "#": 5340 + }, + "density": 0.001, + "force": { + "#": 5341 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 243, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5342 + }, + "positionImpulse": { + "#": 5343 + }, + "positionPrev": { + "#": 5344 + }, + "region": { + "#": 5345 + }, + "render": { + "#": 5346 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5348 + }, + "vertices": { + "#": 5349 + } + }, + [ + { + "#": 5334 + }, + { + "#": 5335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5337 + }, + "min": { + "#": 5338 + } + }, + { + "x": 450, + "y": 387.73575476702496 + }, + { + "x": 425, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 372.3284840519894 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5347 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5350 + }, + { + "#": 5351 + }, + { + "#": 5352 + }, + { + "#": 5353 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5355 + }, + "bounds": { + "#": 5358 + }, + "collisionFilter": { + "#": 5361 + }, + "constraintImpulse": { + "#": 5362 + }, + "density": 0.001, + "force": { + "#": 5363 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 244, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5364 + }, + "positionImpulse": { + "#": 5365 + }, + "positionPrev": { + "#": 5366 + }, + "region": { + "#": 5367 + }, + "render": { + "#": 5368 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5370 + }, + "vertices": { + "#": 5371 + } + }, + [ + { + "#": 5356 + }, + { + "#": 5357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5359 + }, + "min": { + "#": 5360 + } + }, + { + "x": 475, + "y": 387.73575476702496 + }, + { + "x": 450, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 372.3284840519894 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5369 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5372 + }, + { + "#": 5373 + }, + { + "#": 5374 + }, + { + "#": 5375 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5377 + }, + "bounds": { + "#": 5380 + }, + "collisionFilter": { + "#": 5383 + }, + "constraintImpulse": { + "#": 5384 + }, + "density": 0.001, + "force": { + "#": 5385 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 245, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5386 + }, + "positionImpulse": { + "#": 5387 + }, + "positionPrev": { + "#": 5388 + }, + "region": { + "#": 5389 + }, + "render": { + "#": 5390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5392 + }, + "vertices": { + "#": 5393 + } + }, + [ + { + "#": 5378 + }, + { + "#": 5379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5381 + }, + "min": { + "#": 5382 + } + }, + { + "x": 500, + "y": 387.73575476702496 + }, + { + "x": 475, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 372.3284840519894 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5391 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5394 + }, + { + "#": 5395 + }, + { + "#": 5396 + }, + { + "#": 5397 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5399 + }, + "bounds": { + "#": 5402 + }, + "collisionFilter": { + "#": 5405 + }, + "constraintImpulse": { + "#": 5406 + }, + "density": 0.001, + "force": { + "#": 5407 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 246, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5408 + }, + "positionImpulse": { + "#": 5409 + }, + "positionPrev": { + "#": 5410 + }, + "region": { + "#": 5411 + }, + "render": { + "#": 5412 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5414 + }, + "vertices": { + "#": 5415 + } + }, + [ + { + "#": 5400 + }, + { + "#": 5401 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5403 + }, + "min": { + "#": 5404 + } + }, + { + "x": 525, + "y": 387.73575476702496 + }, + { + "x": 500, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 372.3284840519894 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5413 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5416 + }, + { + "#": 5417 + }, + { + "#": 5418 + }, + { + "#": 5419 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5421 + }, + "bounds": { + "#": 5424 + }, + "collisionFilter": { + "#": 5427 + }, + "constraintImpulse": { + "#": 5428 + }, + "density": 0.001, + "force": { + "#": 5429 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 247, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5430 + }, + "positionImpulse": { + "#": 5431 + }, + "positionPrev": { + "#": 5432 + }, + "region": { + "#": 5433 + }, + "render": { + "#": 5434 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5436 + }, + "vertices": { + "#": 5437 + } + }, + [ + { + "#": 5422 + }, + { + "#": 5423 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5425 + }, + "min": { + "#": 5426 + } + }, + { + "x": 550, + "y": 387.73575476702496 + }, + { + "x": 525, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 372.3284840519894 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5435 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + }, + { + "#": 5441 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5443 + }, + "bounds": { + "#": 5446 + }, + "collisionFilter": { + "#": 5449 + }, + "constraintImpulse": { + "#": 5450 + }, + "density": 0.001, + "force": { + "#": 5451 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 248, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5452 + }, + "positionImpulse": { + "#": 5453 + }, + "positionPrev": { + "#": 5454 + }, + "region": { + "#": 5455 + }, + "render": { + "#": 5456 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5458 + }, + "vertices": { + "#": 5459 + } + }, + [ + { + "#": 5444 + }, + { + "#": 5445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5447 + }, + "min": { + "#": 5448 + } + }, + { + "x": 575, + "y": 387.73575476702496 + }, + { + "x": 550, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 372.3284840519894 + }, + { + "endCol": 11, + "endRow": 8, + "id": "11,11,7,8", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5457 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5460 + }, + { + "#": 5461 + }, + { + "#": 5462 + }, + { + "#": 5463 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5465 + }, + "bounds": { + "#": 5468 + }, + "collisionFilter": { + "#": 5471 + }, + "constraintImpulse": { + "#": 5472 + }, + "density": 0.001, + "force": { + "#": 5473 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 249, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5474 + }, + "positionImpulse": { + "#": 5475 + }, + "positionPrev": { + "#": 5476 + }, + "region": { + "#": 5477 + }, + "render": { + "#": 5478 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5480 + }, + "vertices": { + "#": 5481 + } + }, + [ + { + "#": 5466 + }, + { + "#": 5467 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5469 + }, + "min": { + "#": 5470 + } + }, + { + "x": 600, + "y": 387.73575476702496 + }, + { + "x": 575, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 372.3284840519894 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,7,8", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5479 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5482 + }, + { + "#": 5483 + }, + { + "#": 5484 + }, + { + "#": 5485 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5487 + }, + "bounds": { + "#": 5490 + }, + "collisionFilter": { + "#": 5493 + }, + "constraintImpulse": { + "#": 5494 + }, + "density": 0.001, + "force": { + "#": 5495 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 250, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5496 + }, + "positionImpulse": { + "#": 5497 + }, + "positionPrev": { + "#": 5498 + }, + "region": { + "#": 5499 + }, + "render": { + "#": 5500 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5502 + }, + "vertices": { + "#": 5503 + } + }, + [ + { + "#": 5488 + }, + { + "#": 5489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5491 + }, + "min": { + "#": 5492 + } + }, + { + "x": 625, + "y": 387.73575476702496 + }, + { + "x": 600, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 372.3284840519894 + }, + { + "endCol": 13, + "endRow": 8, + "id": "12,13,7,8", + "startCol": 12, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5501 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5504 + }, + { + "#": 5505 + }, + { + "#": 5506 + }, + { + "#": 5507 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5509 + }, + "bounds": { + "#": 5512 + }, + "collisionFilter": { + "#": 5515 + }, + "constraintImpulse": { + "#": 5516 + }, + "density": 0.001, + "force": { + "#": 5517 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 251, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5518 + }, + "positionImpulse": { + "#": 5519 + }, + "positionPrev": { + "#": 5520 + }, + "region": { + "#": 5521 + }, + "render": { + "#": 5522 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5524 + }, + "vertices": { + "#": 5525 + } + }, + [ + { + "#": 5510 + }, + { + "#": 5511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5513 + }, + "min": { + "#": 5514 + } + }, + { + "x": 650, + "y": 387.73575476702496 + }, + { + "x": 625, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 372.3284840519894 + }, + { + "endCol": 13, + "endRow": 8, + "id": "13,13,7,8", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5523 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5526 + }, + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5531 + }, + "bounds": { + "#": 5534 + }, + "collisionFilter": { + "#": 5537 + }, + "constraintImpulse": { + "#": 5538 + }, + "density": 0.001, + "force": { + "#": 5539 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 252, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5540 + }, + "positionImpulse": { + "#": 5541 + }, + "positionPrev": { + "#": 5542 + }, + "region": { + "#": 5543 + }, + "render": { + "#": 5544 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5546 + }, + "vertices": { + "#": 5547 + } + }, + [ + { + "#": 5532 + }, + { + "#": 5533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5535 + }, + "min": { + "#": 5536 + } + }, + { + "x": 675, + "y": 387.73575476702496 + }, + { + "x": 650, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 372.3284840519894 + }, + { + "endCol": 14, + "endRow": 8, + "id": "13,14,7,8", + "startCol": 13, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5545 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5553 + }, + "bounds": { + "#": 5556 + }, + "collisionFilter": { + "#": 5559 + }, + "constraintImpulse": { + "#": 5560 + }, + "density": 0.001, + "force": { + "#": 5561 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 253, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5562 + }, + "positionImpulse": { + "#": 5563 + }, + "positionPrev": { + "#": 5564 + }, + "region": { + "#": 5565 + }, + "render": { + "#": 5566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5568 + }, + "vertices": { + "#": 5569 + } + }, + [ + { + "#": 5554 + }, + { + "#": 5555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5557 + }, + "min": { + "#": 5558 + } + }, + { + "x": 700, + "y": 387.73575476702496 + }, + { + "x": 675, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 372.3284840519894 + }, + { + "endCol": 14, + "endRow": 8, + "id": "14,14,7,8", + "startCol": 14, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5567 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + }, + { + "#": 5573 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5575 + }, + "bounds": { + "#": 5578 + }, + "collisionFilter": { + "#": 5581 + }, + "constraintImpulse": { + "#": 5582 + }, + "density": 0.001, + "force": { + "#": 5583 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 254, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5584 + }, + "positionImpulse": { + "#": 5585 + }, + "positionPrev": { + "#": 5586 + }, + "region": { + "#": 5587 + }, + "render": { + "#": 5588 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5590 + }, + "vertices": { + "#": 5591 + } + }, + [ + { + "#": 5576 + }, + { + "#": 5577 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5579 + }, + "min": { + "#": 5580 + } + }, + { + "x": 725, + "y": 387.73575476702496 + }, + { + "x": 700, + "y": 362.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 375.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 372.3284840519894 + }, + { + "endCol": 15, + "endRow": 8, + "id": "14,15,7,8", + "startCol": 14, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5589 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 362.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 387.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5597 + }, + "bounds": { + "#": 5600 + }, + "collisionFilter": { + "#": 5603 + }, + "constraintImpulse": { + "#": 5604 + }, + "density": 0.001, + "force": { + "#": 5605 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 255, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5606 + }, + "positionImpulse": { + "#": 5607 + }, + "positionPrev": { + "#": 5608 + }, + "region": { + "#": 5609 + }, + "render": { + "#": 5610 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5612 + }, + "vertices": { + "#": 5613 + } + }, + [ + { + "#": 5598 + }, + { + "#": 5599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5601 + }, + "min": { + "#": 5602 + } + }, + { + "x": 125, + "y": 412.73575476702496 + }, + { + "x": 100, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 397.3284840519894 + }, + { + "endCol": 2, + "endRow": 8, + "id": "2,2,8,8", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5611 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5614 + }, + { + "#": 5615 + }, + { + "#": 5616 + }, + { + "#": 5617 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5619 + }, + "bounds": { + "#": 5622 + }, + "collisionFilter": { + "#": 5625 + }, + "constraintImpulse": { + "#": 5626 + }, + "density": 0.001, + "force": { + "#": 5627 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 256, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5628 + }, + "positionImpulse": { + "#": 5629 + }, + "positionPrev": { + "#": 5630 + }, + "region": { + "#": 5631 + }, + "render": { + "#": 5632 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5634 + }, + "vertices": { + "#": 5635 + } + }, + [ + { + "#": 5620 + }, + { + "#": 5621 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5623 + }, + "min": { + "#": 5624 + } + }, + { + "x": 150, + "y": 412.73575476702496 + }, + { + "x": 125, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 397.3284840519894 + }, + { + "endCol": 3, + "endRow": 8, + "id": "2,3,8,8", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5633 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5636 + }, + { + "#": 5637 + }, + { + "#": 5638 + }, + { + "#": 5639 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5641 + }, + "bounds": { + "#": 5644 + }, + "collisionFilter": { + "#": 5647 + }, + "constraintImpulse": { + "#": 5648 + }, + "density": 0.001, + "force": { + "#": 5649 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 257, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5650 + }, + "positionImpulse": { + "#": 5651 + }, + "positionPrev": { + "#": 5652 + }, + "region": { + "#": 5653 + }, + "render": { + "#": 5654 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5656 + }, + "vertices": { + "#": 5657 + } + }, + [ + { + "#": 5642 + }, + { + "#": 5643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5645 + }, + "min": { + "#": 5646 + } + }, + { + "x": 175, + "y": 412.73575476702496 + }, + { + "x": 150, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 397.3284840519894 + }, + { + "endCol": 3, + "endRow": 8, + "id": "3,3,8,8", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5655 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5658 + }, + { + "#": 5659 + }, + { + "#": 5660 + }, + { + "#": 5661 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5663 + }, + "bounds": { + "#": 5666 + }, + "collisionFilter": { + "#": 5669 + }, + "constraintImpulse": { + "#": 5670 + }, + "density": 0.001, + "force": { + "#": 5671 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 258, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5672 + }, + "positionImpulse": { + "#": 5673 + }, + "positionPrev": { + "#": 5674 + }, + "region": { + "#": 5675 + }, + "render": { + "#": 5676 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5678 + }, + "vertices": { + "#": 5679 + } + }, + [ + { + "#": 5664 + }, + { + "#": 5665 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5667 + }, + "min": { + "#": 5668 + } + }, + { + "x": 200, + "y": 412.73575476702496 + }, + { + "x": 175, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 397.3284840519894 + }, + { + "endCol": 4, + "endRow": 8, + "id": "3,4,8,8", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5677 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5680 + }, + { + "#": 5681 + }, + { + "#": 5682 + }, + { + "#": 5683 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5685 + }, + "bounds": { + "#": 5688 + }, + "collisionFilter": { + "#": 5691 + }, + "constraintImpulse": { + "#": 5692 + }, + "density": 0.001, + "force": { + "#": 5693 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 259, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5694 + }, + "positionImpulse": { + "#": 5695 + }, + "positionPrev": { + "#": 5696 + }, + "region": { + "#": 5697 + }, + "render": { + "#": 5698 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5700 + }, + "vertices": { + "#": 5701 + } + }, + [ + { + "#": 5686 + }, + { + "#": 5687 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5689 + }, + "min": { + "#": 5690 + } + }, + { + "x": 225, + "y": 412.73575476702496 + }, + { + "x": 200, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 397.3284840519894 + }, + { + "endCol": 4, + "endRow": 8, + "id": "4,4,8,8", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5699 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5702 + }, + { + "#": 5703 + }, + { + "#": 5704 + }, + { + "#": 5705 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5707 + }, + "bounds": { + "#": 5710 + }, + "collisionFilter": { + "#": 5713 + }, + "constraintImpulse": { + "#": 5714 + }, + "density": 0.001, + "force": { + "#": 5715 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 260, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5716 + }, + "positionImpulse": { + "#": 5717 + }, + "positionPrev": { + "#": 5718 + }, + "region": { + "#": 5719 + }, + "render": { + "#": 5720 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5722 + }, + "vertices": { + "#": 5723 + } + }, + [ + { + "#": 5708 + }, + { + "#": 5709 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5711 + }, + "min": { + "#": 5712 + } + }, + { + "x": 250, + "y": 412.73575476702496 + }, + { + "x": 225, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 397.3284840519894 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,8,8", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5721 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5724 + }, + { + "#": 5725 + }, + { + "#": 5726 + }, + { + "#": 5727 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5729 + }, + "bounds": { + "#": 5732 + }, + "collisionFilter": { + "#": 5735 + }, + "constraintImpulse": { + "#": 5736 + }, + "density": 0.001, + "force": { + "#": 5737 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 261, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5738 + }, + "positionImpulse": { + "#": 5739 + }, + "positionPrev": { + "#": 5740 + }, + "region": { + "#": 5741 + }, + "render": { + "#": 5742 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5744 + }, + "vertices": { + "#": 5745 + } + }, + [ + { + "#": 5730 + }, + { + "#": 5731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5733 + }, + "min": { + "#": 5734 + } + }, + { + "x": 275, + "y": 412.73575476702496 + }, + { + "x": 250, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 397.3284840519894 + }, + { + "endCol": 5, + "endRow": 8, + "id": "5,5,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5743 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5746 + }, + { + "#": 5747 + }, + { + "#": 5748 + }, + { + "#": 5749 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5751 + }, + "bounds": { + "#": 5754 + }, + "collisionFilter": { + "#": 5757 + }, + "constraintImpulse": { + "#": 5758 + }, + "density": 0.001, + "force": { + "#": 5759 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 262, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5760 + }, + "positionImpulse": { + "#": 5761 + }, + "positionPrev": { + "#": 5762 + }, + "region": { + "#": 5763 + }, + "render": { + "#": 5764 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5766 + }, + "vertices": { + "#": 5767 + } + }, + [ + { + "#": 5752 + }, + { + "#": 5753 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5755 + }, + "min": { + "#": 5756 + } + }, + { + "x": 300, + "y": 412.73575476702496 + }, + { + "x": 275, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 397.3284840519894 + }, + { + "endCol": 6, + "endRow": 8, + "id": "5,6,8,8", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5765 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5768 + }, + { + "#": 5769 + }, + { + "#": 5770 + }, + { + "#": 5771 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5773 + }, + "bounds": { + "#": 5776 + }, + "collisionFilter": { + "#": 5779 + }, + "constraintImpulse": { + "#": 5780 + }, + "density": 0.001, + "force": { + "#": 5781 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 263, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5782 + }, + "positionImpulse": { + "#": 5783 + }, + "positionPrev": { + "#": 5784 + }, + "region": { + "#": 5785 + }, + "render": { + "#": 5786 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5788 + }, + "vertices": { + "#": 5789 + } + }, + [ + { + "#": 5774 + }, + { + "#": 5775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5777 + }, + "min": { + "#": 5778 + } + }, + { + "x": 325, + "y": 412.73575476702496 + }, + { + "x": 300, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 397.3284840519894 + }, + { + "endCol": 6, + "endRow": 8, + "id": "6,6,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5787 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5790 + }, + { + "#": 5791 + }, + { + "#": 5792 + }, + { + "#": 5793 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5795 + }, + "bounds": { + "#": 5798 + }, + "collisionFilter": { + "#": 5801 + }, + "constraintImpulse": { + "#": 5802 + }, + "density": 0.001, + "force": { + "#": 5803 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 264, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5804 + }, + "positionImpulse": { + "#": 5805 + }, + "positionPrev": { + "#": 5806 + }, + "region": { + "#": 5807 + }, + "render": { + "#": 5808 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5810 + }, + "vertices": { + "#": 5811 + } + }, + [ + { + "#": 5796 + }, + { + "#": 5797 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5799 + }, + "min": { + "#": 5800 + } + }, + { + "x": 350, + "y": 412.73575476702496 + }, + { + "x": 325, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 397.3284840519894 + }, + { + "endCol": 7, + "endRow": 8, + "id": "6,7,8,8", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5809 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5812 + }, + { + "#": 5813 + }, + { + "#": 5814 + }, + { + "#": 5815 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5817 + }, + "bounds": { + "#": 5820 + }, + "collisionFilter": { + "#": 5823 + }, + "constraintImpulse": { + "#": 5824 + }, + "density": 0.001, + "force": { + "#": 5825 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 265, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5826 + }, + "positionImpulse": { + "#": 5827 + }, + "positionPrev": { + "#": 5828 + }, + "region": { + "#": 5829 + }, + "render": { + "#": 5830 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5832 + }, + "vertices": { + "#": 5833 + } + }, + [ + { + "#": 5818 + }, + { + "#": 5819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5821 + }, + "min": { + "#": 5822 + } + }, + { + "x": 375, + "y": 412.73575476702496 + }, + { + "x": 350, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 397.3284840519894 + }, + { + "endCol": 7, + "endRow": 8, + "id": "7,7,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5831 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5834 + }, + { + "#": 5835 + }, + { + "#": 5836 + }, + { + "#": 5837 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5839 + }, + "bounds": { + "#": 5842 + }, + "collisionFilter": { + "#": 5845 + }, + "constraintImpulse": { + "#": 5846 + }, + "density": 0.001, + "force": { + "#": 5847 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 266, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5848 + }, + "positionImpulse": { + "#": 5849 + }, + "positionPrev": { + "#": 5850 + }, + "region": { + "#": 5851 + }, + "render": { + "#": 5852 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5854 + }, + "vertices": { + "#": 5855 + } + }, + [ + { + "#": 5840 + }, + { + "#": 5841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5843 + }, + "min": { + "#": 5844 + } + }, + { + "x": 400, + "y": 412.73575476702496 + }, + { + "x": 375, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 397.3284840519894 + }, + { + "endCol": 8, + "endRow": 8, + "id": "7,8,8,8", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 5853 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5856 + }, + { + "#": 5857 + }, + { + "#": 5858 + }, + { + "#": 5859 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5861 + }, + "bounds": { + "#": 5864 + }, + "collisionFilter": { + "#": 5867 + }, + "constraintImpulse": { + "#": 5868 + }, + "density": 0.001, + "force": { + "#": 5869 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 267, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5870 + }, + "positionImpulse": { + "#": 5871 + }, + "positionPrev": { + "#": 5872 + }, + "region": { + "#": 5873 + }, + "render": { + "#": 5874 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5876 + }, + "vertices": { + "#": 5877 + } + }, + [ + { + "#": 5862 + }, + { + "#": 5863 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5865 + }, + "min": { + "#": 5866 + } + }, + { + "x": 425, + "y": 412.73575476702496 + }, + { + "x": 400, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 397.3284840519894 + }, + { + "endCol": 8, + "endRow": 8, + "id": "8,8,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5875 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5878 + }, + { + "#": 5879 + }, + { + "#": 5880 + }, + { + "#": 5881 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5883 + }, + "bounds": { + "#": 5886 + }, + "collisionFilter": { + "#": 5889 + }, + "constraintImpulse": { + "#": 5890 + }, + "density": 0.001, + "force": { + "#": 5891 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 268, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5892 + }, + "positionImpulse": { + "#": 5893 + }, + "positionPrev": { + "#": 5894 + }, + "region": { + "#": 5895 + }, + "render": { + "#": 5896 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5898 + }, + "vertices": { + "#": 5899 + } + }, + [ + { + "#": 5884 + }, + { + "#": 5885 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5887 + }, + "min": { + "#": 5888 + } + }, + { + "x": 450, + "y": 412.73575476702496 + }, + { + "x": 425, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 397.3284840519894 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 5897 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5900 + }, + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5905 + }, + "bounds": { + "#": 5908 + }, + "collisionFilter": { + "#": 5911 + }, + "constraintImpulse": { + "#": 5912 + }, + "density": 0.001, + "force": { + "#": 5913 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 269, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5914 + }, + "positionImpulse": { + "#": 5915 + }, + "positionPrev": { + "#": 5916 + }, + "region": { + "#": 5917 + }, + "render": { + "#": 5918 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5920 + }, + "vertices": { + "#": 5921 + } + }, + [ + { + "#": 5906 + }, + { + "#": 5907 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5909 + }, + "min": { + "#": 5910 + } + }, + { + "x": 475, + "y": 412.73575476702496 + }, + { + "x": 450, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 397.3284840519894 + }, + { + "endCol": 9, + "endRow": 8, + "id": "9,9,8,8", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5919 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5922 + }, + { + "#": 5923 + }, + { + "#": 5924 + }, + { + "#": 5925 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5927 + }, + "bounds": { + "#": 5930 + }, + "collisionFilter": { + "#": 5933 + }, + "constraintImpulse": { + "#": 5934 + }, + "density": 0.001, + "force": { + "#": 5935 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 270, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5936 + }, + "positionImpulse": { + "#": 5937 + }, + "positionPrev": { + "#": 5938 + }, + "region": { + "#": 5939 + }, + "render": { + "#": 5940 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5942 + }, + "vertices": { + "#": 5943 + } + }, + [ + { + "#": 5928 + }, + { + "#": 5929 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5931 + }, + "min": { + "#": 5932 + } + }, + { + "x": 500, + "y": 412.73575476702496 + }, + { + "x": 475, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 397.3284840519894 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,8,8", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 5941 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + }, + { + "#": 5947 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5949 + }, + "bounds": { + "#": 5952 + }, + "collisionFilter": { + "#": 5955 + }, + "constraintImpulse": { + "#": 5956 + }, + "density": 0.001, + "force": { + "#": 5957 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 271, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5958 + }, + "positionImpulse": { + "#": 5959 + }, + "positionPrev": { + "#": 5960 + }, + "region": { + "#": 5961 + }, + "render": { + "#": 5962 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5964 + }, + "vertices": { + "#": 5965 + } + }, + [ + { + "#": 5950 + }, + { + "#": 5951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5953 + }, + "min": { + "#": 5954 + } + }, + { + "x": 525, + "y": 412.73575476702496 + }, + { + "x": 500, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 397.3284840519894 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 5963 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5966 + }, + { + "#": 5967 + }, + { + "#": 5968 + }, + { + "#": 5969 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5971 + }, + "bounds": { + "#": 5974 + }, + "collisionFilter": { + "#": 5977 + }, + "constraintImpulse": { + "#": 5978 + }, + "density": 0.001, + "force": { + "#": 5979 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 272, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 5980 + }, + "positionImpulse": { + "#": 5981 + }, + "positionPrev": { + "#": 5982 + }, + "region": { + "#": 5983 + }, + "render": { + "#": 5984 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 5986 + }, + "vertices": { + "#": 5987 + } + }, + [ + { + "#": 5972 + }, + { + "#": 5973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5975 + }, + "min": { + "#": 5976 + } + }, + { + "x": 550, + "y": 412.73575476702496 + }, + { + "x": 525, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 397.3284840519894 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 5985 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 5988 + }, + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 5993 + }, + "bounds": { + "#": 5996 + }, + "collisionFilter": { + "#": 5999 + }, + "constraintImpulse": { + "#": 6000 + }, + "density": 0.001, + "force": { + "#": 6001 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 273, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6002 + }, + "positionImpulse": { + "#": 6003 + }, + "positionPrev": { + "#": 6004 + }, + "region": { + "#": 6005 + }, + "render": { + "#": 6006 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6008 + }, + "vertices": { + "#": 6009 + } + }, + [ + { + "#": 5994 + }, + { + "#": 5995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 5997 + }, + "min": { + "#": 5998 + } + }, + { + "x": 575, + "y": 412.73575476702496 + }, + { + "x": 550, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 397.3284840519894 + }, + { + "endCol": 11, + "endRow": 8, + "id": "11,11,8,8", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6007 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6010 + }, + { + "#": 6011 + }, + { + "#": 6012 + }, + { + "#": 6013 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6015 + }, + "bounds": { + "#": 6018 + }, + "collisionFilter": { + "#": 6021 + }, + "constraintImpulse": { + "#": 6022 + }, + "density": 0.001, + "force": { + "#": 6023 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 274, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6024 + }, + "positionImpulse": { + "#": 6025 + }, + "positionPrev": { + "#": 6026 + }, + "region": { + "#": 6027 + }, + "render": { + "#": 6028 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6030 + }, + "vertices": { + "#": 6031 + } + }, + [ + { + "#": 6016 + }, + { + "#": 6017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6019 + }, + "min": { + "#": 6020 + } + }, + { + "x": 600, + "y": 412.73575476702496 + }, + { + "x": 575, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 397.3284840519894 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,8,8", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6029 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6032 + }, + { + "#": 6033 + }, + { + "#": 6034 + }, + { + "#": 6035 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6037 + }, + "bounds": { + "#": 6040 + }, + "collisionFilter": { + "#": 6043 + }, + "constraintImpulse": { + "#": 6044 + }, + "density": 0.001, + "force": { + "#": 6045 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 275, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6046 + }, + "positionImpulse": { + "#": 6047 + }, + "positionPrev": { + "#": 6048 + }, + "region": { + "#": 6049 + }, + "render": { + "#": 6050 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6052 + }, + "vertices": { + "#": 6053 + } + }, + [ + { + "#": 6038 + }, + { + "#": 6039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6041 + }, + "min": { + "#": 6042 + } + }, + { + "x": 625, + "y": 412.73575476702496 + }, + { + "x": 600, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 397.3284840519894 + }, + { + "endCol": 13, + "endRow": 8, + "id": "12,13,8,8", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6051 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6054 + }, + { + "#": 6055 + }, + { + "#": 6056 + }, + { + "#": 6057 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6059 + }, + "bounds": { + "#": 6062 + }, + "collisionFilter": { + "#": 6065 + }, + "constraintImpulse": { + "#": 6066 + }, + "density": 0.001, + "force": { + "#": 6067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 276, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6068 + }, + "positionImpulse": { + "#": 6069 + }, + "positionPrev": { + "#": 6070 + }, + "region": { + "#": 6071 + }, + "render": { + "#": 6072 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6074 + }, + "vertices": { + "#": 6075 + } + }, + [ + { + "#": 6060 + }, + { + "#": 6061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6063 + }, + "min": { + "#": 6064 + } + }, + { + "x": 650, + "y": 412.73575476702496 + }, + { + "x": 625, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 397.3284840519894 + }, + { + "endCol": 13, + "endRow": 8, + "id": "13,13,8,8", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6073 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6076 + }, + { + "#": 6077 + }, + { + "#": 6078 + }, + { + "#": 6079 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6081 + }, + "bounds": { + "#": 6084 + }, + "collisionFilter": { + "#": 6087 + }, + "constraintImpulse": { + "#": 6088 + }, + "density": 0.001, + "force": { + "#": 6089 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 277, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6090 + }, + "positionImpulse": { + "#": 6091 + }, + "positionPrev": { + "#": 6092 + }, + "region": { + "#": 6093 + }, + "render": { + "#": 6094 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6096 + }, + "vertices": { + "#": 6097 + } + }, + [ + { + "#": 6082 + }, + { + "#": 6083 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6085 + }, + "min": { + "#": 6086 + } + }, + { + "x": 675, + "y": 412.73575476702496 + }, + { + "x": 650, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 397.3284840519894 + }, + { + "endCol": 14, + "endRow": 8, + "id": "13,14,8,8", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6095 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6098 + }, + { + "#": 6099 + }, + { + "#": 6100 + }, + { + "#": 6101 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6103 + }, + "bounds": { + "#": 6106 + }, + "collisionFilter": { + "#": 6109 + }, + "constraintImpulse": { + "#": 6110 + }, + "density": 0.001, + "force": { + "#": 6111 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 278, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6112 + }, + "positionImpulse": { + "#": 6113 + }, + "positionPrev": { + "#": 6114 + }, + "region": { + "#": 6115 + }, + "render": { + "#": 6116 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6118 + }, + "vertices": { + "#": 6119 + } + }, + [ + { + "#": 6104 + }, + { + "#": 6105 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6107 + }, + "min": { + "#": 6108 + } + }, + { + "x": 700, + "y": 412.73575476702496 + }, + { + "x": 675, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 397.3284840519894 + }, + { + "endCol": 14, + "endRow": 8, + "id": "14,14,8,8", + "startCol": 14, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6117 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6120 + }, + { + "#": 6121 + }, + { + "#": 6122 + }, + { + "#": 6123 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6125 + }, + "bounds": { + "#": 6128 + }, + "collisionFilter": { + "#": 6131 + }, + "constraintImpulse": { + "#": 6132 + }, + "density": 0.001, + "force": { + "#": 6133 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 279, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6134 + }, + "positionImpulse": { + "#": 6135 + }, + "positionPrev": { + "#": 6136 + }, + "region": { + "#": 6137 + }, + "render": { + "#": 6138 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6140 + }, + "vertices": { + "#": 6141 + } + }, + [ + { + "#": 6126 + }, + { + "#": 6127 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6129 + }, + "min": { + "#": 6130 + } + }, + { + "x": 725, + "y": 412.73575476702496 + }, + { + "x": 700, + "y": 387.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 400.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 397.3284840519894 + }, + { + "endCol": 15, + "endRow": 8, + "id": "14,15,8,8", + "startCol": 14, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6139 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6142 + }, + { + "#": 6143 + }, + { + "#": 6144 + }, + { + "#": 6145 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 387.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 412.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6147 + }, + "bounds": { + "#": 6150 + }, + "collisionFilter": { + "#": 6153 + }, + "constraintImpulse": { + "#": 6154 + }, + "density": 0.001, + "force": { + "#": 6155 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 280, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6156 + }, + "positionImpulse": { + "#": 6157 + }, + "positionPrev": { + "#": 6158 + }, + "region": { + "#": 6159 + }, + "render": { + "#": 6160 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6162 + }, + "vertices": { + "#": 6163 + } + }, + [ + { + "#": 6148 + }, + { + "#": 6149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6151 + }, + "min": { + "#": 6152 + } + }, + { + "x": 125, + "y": 437.73575476702496 + }, + { + "x": 100, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 422.3284840519894 + }, + { + "endCol": 2, + "endRow": 9, + "id": "2,2,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6161 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6164 + }, + { + "#": 6165 + }, + { + "#": 6166 + }, + { + "#": 6167 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6169 + }, + "bounds": { + "#": 6172 + }, + "collisionFilter": { + "#": 6175 + }, + "constraintImpulse": { + "#": 6176 + }, + "density": 0.001, + "force": { + "#": 6177 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 281, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6178 + }, + "positionImpulse": { + "#": 6179 + }, + "positionPrev": { + "#": 6180 + }, + "region": { + "#": 6181 + }, + "render": { + "#": 6182 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6184 + }, + "vertices": { + "#": 6185 + } + }, + [ + { + "#": 6170 + }, + { + "#": 6171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6173 + }, + "min": { + "#": 6174 + } + }, + { + "x": 150, + "y": 437.73575476702496 + }, + { + "x": 125, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 422.3284840519894 + }, + { + "endCol": 3, + "endRow": 9, + "id": "2,3,8,9", + "startCol": 2, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6183 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6186 + }, + { + "#": 6187 + }, + { + "#": 6188 + }, + { + "#": 6189 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6191 + }, + "bounds": { + "#": 6194 + }, + "collisionFilter": { + "#": 6197 + }, + "constraintImpulse": { + "#": 6198 + }, + "density": 0.001, + "force": { + "#": 6199 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 282, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6200 + }, + "positionImpulse": { + "#": 6201 + }, + "positionPrev": { + "#": 6202 + }, + "region": { + "#": 6203 + }, + "render": { + "#": 6204 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6206 + }, + "vertices": { + "#": 6207 + } + }, + [ + { + "#": 6192 + }, + { + "#": 6193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6195 + }, + "min": { + "#": 6196 + } + }, + { + "x": 175, + "y": 437.73575476702496 + }, + { + "x": 150, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 422.3284840519894 + }, + { + "endCol": 3, + "endRow": 9, + "id": "3,3,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6205 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6208 + }, + { + "#": 6209 + }, + { + "#": 6210 + }, + { + "#": 6211 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6213 + }, + "bounds": { + "#": 6216 + }, + "collisionFilter": { + "#": 6219 + }, + "constraintImpulse": { + "#": 6220 + }, + "density": 0.001, + "force": { + "#": 6221 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 283, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6222 + }, + "positionImpulse": { + "#": 6223 + }, + "positionPrev": { + "#": 6224 + }, + "region": { + "#": 6225 + }, + "render": { + "#": 6226 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6228 + }, + "vertices": { + "#": 6229 + } + }, + [ + { + "#": 6214 + }, + { + "#": 6215 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6217 + }, + "min": { + "#": 6218 + } + }, + { + "x": 200, + "y": 437.73575476702496 + }, + { + "x": 175, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 422.3284840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,8,9", + "startCol": 3, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6227 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6230 + }, + { + "#": 6231 + }, + { + "#": 6232 + }, + { + "#": 6233 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6235 + }, + "bounds": { + "#": 6238 + }, + "collisionFilter": { + "#": 6241 + }, + "constraintImpulse": { + "#": 6242 + }, + "density": 0.001, + "force": { + "#": 6243 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 284, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6244 + }, + "positionImpulse": { + "#": 6245 + }, + "positionPrev": { + "#": 6246 + }, + "region": { + "#": 6247 + }, + "render": { + "#": 6248 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6250 + }, + "vertices": { + "#": 6251 + } + }, + [ + { + "#": 6236 + }, + { + "#": 6237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6239 + }, + "min": { + "#": 6240 + } + }, + { + "x": 225, + "y": 437.73575476702496 + }, + { + "x": 200, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 422.3284840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "4,4,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6249 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6252 + }, + { + "#": 6253 + }, + { + "#": 6254 + }, + { + "#": 6255 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6257 + }, + "bounds": { + "#": 6260 + }, + "collisionFilter": { + "#": 6263 + }, + "constraintImpulse": { + "#": 6264 + }, + "density": 0.001, + "force": { + "#": 6265 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 285, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6266 + }, + "positionImpulse": { + "#": 6267 + }, + "positionPrev": { + "#": 6268 + }, + "region": { + "#": 6269 + }, + "render": { + "#": 6270 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6272 + }, + "vertices": { + "#": 6273 + } + }, + [ + { + "#": 6258 + }, + { + "#": 6259 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6261 + }, + "min": { + "#": 6262 + } + }, + { + "x": 250, + "y": 437.73575476702496 + }, + { + "x": 225, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 422.3284840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,8,9", + "startCol": 4, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6271 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6274 + }, + { + "#": 6275 + }, + { + "#": 6276 + }, + { + "#": 6277 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6279 + }, + "bounds": { + "#": 6282 + }, + "collisionFilter": { + "#": 6285 + }, + "constraintImpulse": { + "#": 6286 + }, + "density": 0.001, + "force": { + "#": 6287 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 286, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6288 + }, + "positionImpulse": { + "#": 6289 + }, + "positionPrev": { + "#": 6290 + }, + "region": { + "#": 6291 + }, + "render": { + "#": 6292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6294 + }, + "vertices": { + "#": 6295 + } + }, + [ + { + "#": 6280 + }, + { + "#": 6281 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6283 + }, + "min": { + "#": 6284 + } + }, + { + "x": 275, + "y": 437.73575476702496 + }, + { + "x": 250, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 422.3284840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "5,5,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6293 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6296 + }, + { + "#": 6297 + }, + { + "#": 6298 + }, + { + "#": 6299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6301 + }, + "bounds": { + "#": 6304 + }, + "collisionFilter": { + "#": 6307 + }, + "constraintImpulse": { + "#": 6308 + }, + "density": 0.001, + "force": { + "#": 6309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 287, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6310 + }, + "positionImpulse": { + "#": 6311 + }, + "positionPrev": { + "#": 6312 + }, + "region": { + "#": 6313 + }, + "render": { + "#": 6314 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6316 + }, + "vertices": { + "#": 6317 + } + }, + [ + { + "#": 6302 + }, + { + "#": 6303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6305 + }, + "min": { + "#": 6306 + } + }, + { + "x": 300, + "y": 437.73575476702496 + }, + { + "x": 275, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 422.3284840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,8,9", + "startCol": 5, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6315 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6318 + }, + { + "#": 6319 + }, + { + "#": 6320 + }, + { + "#": 6321 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6323 + }, + "bounds": { + "#": 6326 + }, + "collisionFilter": { + "#": 6329 + }, + "constraintImpulse": { + "#": 6330 + }, + "density": 0.001, + "force": { + "#": 6331 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 288, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6332 + }, + "positionImpulse": { + "#": 6333 + }, + "positionPrev": { + "#": 6334 + }, + "region": { + "#": 6335 + }, + "render": { + "#": 6336 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6338 + }, + "vertices": { + "#": 6339 + } + }, + [ + { + "#": 6324 + }, + { + "#": 6325 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6327 + }, + "min": { + "#": 6328 + } + }, + { + "x": 325, + "y": 437.73575476702496 + }, + { + "x": 300, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 422.3284840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "6,6,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6337 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6340 + }, + { + "#": 6341 + }, + { + "#": 6342 + }, + { + "#": 6343 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6345 + }, + "bounds": { + "#": 6348 + }, + "collisionFilter": { + "#": 6351 + }, + "constraintImpulse": { + "#": 6352 + }, + "density": 0.001, + "force": { + "#": 6353 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 289, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6354 + }, + "positionImpulse": { + "#": 6355 + }, + "positionPrev": { + "#": 6356 + }, + "region": { + "#": 6357 + }, + "render": { + "#": 6358 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6360 + }, + "vertices": { + "#": 6361 + } + }, + [ + { + "#": 6346 + }, + { + "#": 6347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6349 + }, + "min": { + "#": 6350 + } + }, + { + "x": 350, + "y": 437.73575476702496 + }, + { + "x": 325, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 422.3284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,8,9", + "startCol": 6, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6359 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6362 + }, + { + "#": 6363 + }, + { + "#": 6364 + }, + { + "#": 6365 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6367 + }, + "bounds": { + "#": 6370 + }, + "collisionFilter": { + "#": 6373 + }, + "constraintImpulse": { + "#": 6374 + }, + "density": 0.001, + "force": { + "#": 6375 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 290, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6376 + }, + "positionImpulse": { + "#": 6377 + }, + "positionPrev": { + "#": 6378 + }, + "region": { + "#": 6379 + }, + "render": { + "#": 6380 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6382 + }, + "vertices": { + "#": 6383 + } + }, + [ + { + "#": 6368 + }, + { + "#": 6369 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6371 + }, + "min": { + "#": 6372 + } + }, + { + "x": 375, + "y": 437.73575476702496 + }, + { + "x": 350, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 422.3284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6381 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6384 + }, + { + "#": 6385 + }, + { + "#": 6386 + }, + { + "#": 6387 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6389 + }, + "bounds": { + "#": 6392 + }, + "collisionFilter": { + "#": 6395 + }, + "constraintImpulse": { + "#": 6396 + }, + "density": 0.001, + "force": { + "#": 6397 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 291, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6398 + }, + "positionImpulse": { + "#": 6399 + }, + "positionPrev": { + "#": 6400 + }, + "region": { + "#": 6401 + }, + "render": { + "#": 6402 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6404 + }, + "vertices": { + "#": 6405 + } + }, + [ + { + "#": 6390 + }, + { + "#": 6391 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6393 + }, + "min": { + "#": 6394 + } + }, + { + "x": 400, + "y": 437.73575476702496 + }, + { + "x": 375, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 422.3284840519894 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,8,9", + "startCol": 7, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6403 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6406 + }, + { + "#": 6407 + }, + { + "#": 6408 + }, + { + "#": 6409 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6411 + }, + "bounds": { + "#": 6414 + }, + "collisionFilter": { + "#": 6417 + }, + "constraintImpulse": { + "#": 6418 + }, + "density": 0.001, + "force": { + "#": 6419 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 292, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6420 + }, + "positionImpulse": { + "#": 6421 + }, + "positionPrev": { + "#": 6422 + }, + "region": { + "#": 6423 + }, + "render": { + "#": 6424 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6426 + }, + "vertices": { + "#": 6427 + } + }, + [ + { + "#": 6412 + }, + { + "#": 6413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6415 + }, + "min": { + "#": 6416 + } + }, + { + "x": 425, + "y": 437.73575476702496 + }, + { + "x": 400, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 422.3284840519894 + }, + { + "endCol": 8, + "endRow": 9, + "id": "8,8,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6425 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6428 + }, + { + "#": 6429 + }, + { + "#": 6430 + }, + { + "#": 6431 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6433 + }, + "bounds": { + "#": 6436 + }, + "collisionFilter": { + "#": 6439 + }, + "constraintImpulse": { + "#": 6440 + }, + "density": 0.001, + "force": { + "#": 6441 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 293, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6442 + }, + "positionImpulse": { + "#": 6443 + }, + "positionPrev": { + "#": 6444 + }, + "region": { + "#": 6445 + }, + "render": { + "#": 6446 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6448 + }, + "vertices": { + "#": 6449 + } + }, + [ + { + "#": 6434 + }, + { + "#": 6435 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6437 + }, + "min": { + "#": 6438 + } + }, + { + "x": 450, + "y": 437.73575476702496 + }, + { + "x": 425, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 422.3284840519894 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6447 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6450 + }, + { + "#": 6451 + }, + { + "#": 6452 + }, + { + "#": 6453 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6455 + }, + "bounds": { + "#": 6458 + }, + "collisionFilter": { + "#": 6461 + }, + "constraintImpulse": { + "#": 6462 + }, + "density": 0.001, + "force": { + "#": 6463 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 294, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6464 + }, + "positionImpulse": { + "#": 6465 + }, + "positionPrev": { + "#": 6466 + }, + "region": { + "#": 6467 + }, + "render": { + "#": 6468 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6470 + }, + "vertices": { + "#": 6471 + } + }, + [ + { + "#": 6456 + }, + { + "#": 6457 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6459 + }, + "min": { + "#": 6460 + } + }, + { + "x": 475, + "y": 437.73575476702496 + }, + { + "x": 450, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 422.3284840519894 + }, + { + "endCol": 9, + "endRow": 9, + "id": "9,9,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6469 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6472 + }, + { + "#": 6473 + }, + { + "#": 6474 + }, + { + "#": 6475 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6477 + }, + "bounds": { + "#": 6480 + }, + "collisionFilter": { + "#": 6483 + }, + "constraintImpulse": { + "#": 6484 + }, + "density": 0.001, + "force": { + "#": 6485 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 295, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6486 + }, + "positionImpulse": { + "#": 6487 + }, + "positionPrev": { + "#": 6488 + }, + "region": { + "#": 6489 + }, + "render": { + "#": 6490 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6492 + }, + "vertices": { + "#": 6493 + } + }, + [ + { + "#": 6478 + }, + { + "#": 6479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6481 + }, + "min": { + "#": 6482 + } + }, + { + "x": 500, + "y": 437.73575476702496 + }, + { + "x": 475, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 422.3284840519894 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6491 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6494 + }, + { + "#": 6495 + }, + { + "#": 6496 + }, + { + "#": 6497 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6499 + }, + "bounds": { + "#": 6502 + }, + "collisionFilter": { + "#": 6505 + }, + "constraintImpulse": { + "#": 6506 + }, + "density": 0.001, + "force": { + "#": 6507 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 296, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6508 + }, + "positionImpulse": { + "#": 6509 + }, + "positionPrev": { + "#": 6510 + }, + "region": { + "#": 6511 + }, + "render": { + "#": 6512 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6514 + }, + "vertices": { + "#": 6515 + } + }, + [ + { + "#": 6500 + }, + { + "#": 6501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6503 + }, + "min": { + "#": 6504 + } + }, + { + "x": 525, + "y": 437.73575476702496 + }, + { + "x": 500, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 422.3284840519894 + }, + { + "endCol": 10, + "endRow": 9, + "id": "10,10,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6513 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6516 + }, + { + "#": 6517 + }, + { + "#": 6518 + }, + { + "#": 6519 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6521 + }, + "bounds": { + "#": 6524 + }, + "collisionFilter": { + "#": 6527 + }, + "constraintImpulse": { + "#": 6528 + }, + "density": 0.001, + "force": { + "#": 6529 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 297, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6530 + }, + "positionImpulse": { + "#": 6531 + }, + "positionPrev": { + "#": 6532 + }, + "region": { + "#": 6533 + }, + "render": { + "#": 6534 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6536 + }, + "vertices": { + "#": 6537 + } + }, + [ + { + "#": 6522 + }, + { + "#": 6523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6525 + }, + "min": { + "#": 6526 + } + }, + { + "x": 550, + "y": 437.73575476702496 + }, + { + "x": 525, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 422.3284840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6535 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6538 + }, + { + "#": 6539 + }, + { + "#": 6540 + }, + { + "#": 6541 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6543 + }, + "bounds": { + "#": 6546 + }, + "collisionFilter": { + "#": 6549 + }, + "constraintImpulse": { + "#": 6550 + }, + "density": 0.001, + "force": { + "#": 6551 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 298, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6552 + }, + "positionImpulse": { + "#": 6553 + }, + "positionPrev": { + "#": 6554 + }, + "region": { + "#": 6555 + }, + "render": { + "#": 6556 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6558 + }, + "vertices": { + "#": 6559 + } + }, + [ + { + "#": 6544 + }, + { + "#": 6545 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6547 + }, + "min": { + "#": 6548 + } + }, + { + "x": 575, + "y": 437.73575476702496 + }, + { + "x": 550, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 422.3284840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "11,11,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6557 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6560 + }, + { + "#": 6561 + }, + { + "#": 6562 + }, + { + "#": 6563 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6565 + }, + "bounds": { + "#": 6568 + }, + "collisionFilter": { + "#": 6571 + }, + "constraintImpulse": { + "#": 6572 + }, + "density": 0.001, + "force": { + "#": 6573 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 299, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6574 + }, + "positionImpulse": { + "#": 6575 + }, + "positionPrev": { + "#": 6576 + }, + "region": { + "#": 6577 + }, + "render": { + "#": 6578 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6580 + }, + "vertices": { + "#": 6581 + } + }, + [ + { + "#": 6566 + }, + { + "#": 6567 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6569 + }, + "min": { + "#": 6570 + } + }, + { + "x": 600, + "y": 437.73575476702496 + }, + { + "x": 575, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 422.3284840519894 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6579 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6582 + }, + { + "#": 6583 + }, + { + "#": 6584 + }, + { + "#": 6585 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6587 + }, + "bounds": { + "#": 6590 + }, + "collisionFilter": { + "#": 6593 + }, + "constraintImpulse": { + "#": 6594 + }, + "density": 0.001, + "force": { + "#": 6595 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 300, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6596 + }, + "positionImpulse": { + "#": 6597 + }, + "positionPrev": { + "#": 6598 + }, + "region": { + "#": 6599 + }, + "render": { + "#": 6600 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6602 + }, + "vertices": { + "#": 6603 + } + }, + [ + { + "#": 6588 + }, + { + "#": 6589 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6591 + }, + "min": { + "#": 6592 + } + }, + { + "x": 625, + "y": 437.73575476702496 + }, + { + "x": 600, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 422.3284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "12,13,8,9", + "startCol": 12, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6601 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6604 + }, + { + "#": 6605 + }, + { + "#": 6606 + }, + { + "#": 6607 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6609 + }, + "bounds": { + "#": 6612 + }, + "collisionFilter": { + "#": 6615 + }, + "constraintImpulse": { + "#": 6616 + }, + "density": 0.001, + "force": { + "#": 6617 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 301, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6618 + }, + "positionImpulse": { + "#": 6619 + }, + "positionPrev": { + "#": 6620 + }, + "region": { + "#": 6621 + }, + "render": { + "#": 6622 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6624 + }, + "vertices": { + "#": 6625 + } + }, + [ + { + "#": 6610 + }, + { + "#": 6611 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6613 + }, + "min": { + "#": 6614 + } + }, + { + "x": 650, + "y": 437.73575476702496 + }, + { + "x": 625, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 422.3284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "13,13,8,9", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6623 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6626 + }, + { + "#": 6627 + }, + { + "#": 6628 + }, + { + "#": 6629 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6631 + }, + "bounds": { + "#": 6634 + }, + "collisionFilter": { + "#": 6637 + }, + "constraintImpulse": { + "#": 6638 + }, + "density": 0.001, + "force": { + "#": 6639 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 302, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6640 + }, + "positionImpulse": { + "#": 6641 + }, + "positionPrev": { + "#": 6642 + }, + "region": { + "#": 6643 + }, + "render": { + "#": 6644 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6646 + }, + "vertices": { + "#": 6647 + } + }, + [ + { + "#": 6632 + }, + { + "#": 6633 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6635 + }, + "min": { + "#": 6636 + } + }, + { + "x": 675, + "y": 437.73575476702496 + }, + { + "x": 650, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 422.3284840519894 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,8,9", + "startCol": 13, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6645 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6648 + }, + { + "#": 6649 + }, + { + "#": 6650 + }, + { + "#": 6651 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6653 + }, + "bounds": { + "#": 6656 + }, + "collisionFilter": { + "#": 6659 + }, + "constraintImpulse": { + "#": 6660 + }, + "density": 0.001, + "force": { + "#": 6661 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 303, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6662 + }, + "positionImpulse": { + "#": 6663 + }, + "positionPrev": { + "#": 6664 + }, + "region": { + "#": 6665 + }, + "render": { + "#": 6666 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6668 + }, + "vertices": { + "#": 6669 + } + }, + [ + { + "#": 6654 + }, + { + "#": 6655 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6657 + }, + "min": { + "#": 6658 + } + }, + { + "x": 700, + "y": 437.73575476702496 + }, + { + "x": 675, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 422.3284840519894 + }, + { + "endCol": 14, + "endRow": 9, + "id": "14,14,8,9", + "startCol": 14, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6667 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6670 + }, + { + "#": 6671 + }, + { + "#": 6672 + }, + { + "#": 6673 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6675 + }, + "bounds": { + "#": 6678 + }, + "collisionFilter": { + "#": 6681 + }, + "constraintImpulse": { + "#": 6682 + }, + "density": 0.001, + "force": { + "#": 6683 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 304, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6684 + }, + "positionImpulse": { + "#": 6685 + }, + "positionPrev": { + "#": 6686 + }, + "region": { + "#": 6687 + }, + "render": { + "#": 6688 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6690 + }, + "vertices": { + "#": 6691 + } + }, + [ + { + "#": 6676 + }, + { + "#": 6677 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6679 + }, + "min": { + "#": 6680 + } + }, + { + "x": 725, + "y": 437.73575476702496 + }, + { + "x": 700, + "y": 412.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 425.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 422.3284840519894 + }, + { + "endCol": 15, + "endRow": 9, + "id": "14,15,8,9", + "startCol": 14, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6689 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6692 + }, + { + "#": 6693 + }, + { + "#": 6694 + }, + { + "#": 6695 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 412.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 437.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6697 + }, + "bounds": { + "#": 6700 + }, + "collisionFilter": { + "#": 6703 + }, + "constraintImpulse": { + "#": 6704 + }, + "density": 0.001, + "force": { + "#": 6705 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 305, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6706 + }, + "positionImpulse": { + "#": 6707 + }, + "positionPrev": { + "#": 6708 + }, + "region": { + "#": 6709 + }, + "render": { + "#": 6710 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6712 + }, + "vertices": { + "#": 6713 + } + }, + [ + { + "#": 6698 + }, + { + "#": 6699 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6701 + }, + "min": { + "#": 6702 + } + }, + { + "x": 125, + "y": 462.73575476702496 + }, + { + "x": 100, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 447.3284840519894 + }, + { + "endCol": 2, + "endRow": 9, + "id": "2,2,9,9", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6711 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6714 + }, + { + "#": 6715 + }, + { + "#": 6716 + }, + { + "#": 6717 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6719 + }, + "bounds": { + "#": 6722 + }, + "collisionFilter": { + "#": 6725 + }, + "constraintImpulse": { + "#": 6726 + }, + "density": 0.001, + "force": { + "#": 6727 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 306, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6728 + }, + "positionImpulse": { + "#": 6729 + }, + "positionPrev": { + "#": 6730 + }, + "region": { + "#": 6731 + }, + "render": { + "#": 6732 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6734 + }, + "vertices": { + "#": 6735 + } + }, + [ + { + "#": 6720 + }, + { + "#": 6721 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6723 + }, + "min": { + "#": 6724 + } + }, + { + "x": 150, + "y": 462.73575476702496 + }, + { + "x": 125, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 447.3284840519894 + }, + { + "endCol": 3, + "endRow": 9, + "id": "2,3,9,9", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6733 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6736 + }, + { + "#": 6737 + }, + { + "#": 6738 + }, + { + "#": 6739 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6741 + }, + "bounds": { + "#": 6744 + }, + "collisionFilter": { + "#": 6747 + }, + "constraintImpulse": { + "#": 6748 + }, + "density": 0.001, + "force": { + "#": 6749 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 307, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6750 + }, + "positionImpulse": { + "#": 6751 + }, + "positionPrev": { + "#": 6752 + }, + "region": { + "#": 6753 + }, + "render": { + "#": 6754 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6756 + }, + "vertices": { + "#": 6757 + } + }, + [ + { + "#": 6742 + }, + { + "#": 6743 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6745 + }, + "min": { + "#": 6746 + } + }, + { + "x": 175, + "y": 462.73575476702496 + }, + { + "x": 150, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 447.3284840519894 + }, + { + "endCol": 3, + "endRow": 9, + "id": "3,3,9,9", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 6755 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6758 + }, + { + "#": 6759 + }, + { + "#": 6760 + }, + { + "#": 6761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6763 + }, + "bounds": { + "#": 6766 + }, + "collisionFilter": { + "#": 6769 + }, + "constraintImpulse": { + "#": 6770 + }, + "density": 0.001, + "force": { + "#": 6771 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 308, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6772 + }, + "positionImpulse": { + "#": 6773 + }, + "positionPrev": { + "#": 6774 + }, + "region": { + "#": 6775 + }, + "render": { + "#": 6776 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6778 + }, + "vertices": { + "#": 6779 + } + }, + [ + { + "#": 6764 + }, + { + "#": 6765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6767 + }, + "min": { + "#": 6768 + } + }, + { + "x": 200, + "y": 462.73575476702496 + }, + { + "x": 175, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 447.3284840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "3,4,9,9", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6777 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6780 + }, + { + "#": 6781 + }, + { + "#": 6782 + }, + { + "#": 6783 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6785 + }, + "bounds": { + "#": 6788 + }, + "collisionFilter": { + "#": 6791 + }, + "constraintImpulse": { + "#": 6792 + }, + "density": 0.001, + "force": { + "#": 6793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 309, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6794 + }, + "positionImpulse": { + "#": 6795 + }, + "positionPrev": { + "#": 6796 + }, + "region": { + "#": 6797 + }, + "render": { + "#": 6798 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6800 + }, + "vertices": { + "#": 6801 + } + }, + [ + { + "#": 6786 + }, + { + "#": 6787 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6789 + }, + "min": { + "#": 6790 + } + }, + { + "x": 225, + "y": 462.73575476702496 + }, + { + "x": 200, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 447.3284840519894 + }, + { + "endCol": 4, + "endRow": 9, + "id": "4,4,9,9", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6799 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6802 + }, + { + "#": 6803 + }, + { + "#": 6804 + }, + { + "#": 6805 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6807 + }, + "bounds": { + "#": 6810 + }, + "collisionFilter": { + "#": 6813 + }, + "constraintImpulse": { + "#": 6814 + }, + "density": 0.001, + "force": { + "#": 6815 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 310, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6816 + }, + "positionImpulse": { + "#": 6817 + }, + "positionPrev": { + "#": 6818 + }, + "region": { + "#": 6819 + }, + "render": { + "#": 6820 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6822 + }, + "vertices": { + "#": 6823 + } + }, + [ + { + "#": 6808 + }, + { + "#": 6809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6811 + }, + "min": { + "#": 6812 + } + }, + { + "x": 250, + "y": 462.73575476702496 + }, + { + "x": 225, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 447.3284840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "4,5,9,9", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6821 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6824 + }, + { + "#": 6825 + }, + { + "#": 6826 + }, + { + "#": 6827 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6829 + }, + "bounds": { + "#": 6832 + }, + "collisionFilter": { + "#": 6835 + }, + "constraintImpulse": { + "#": 6836 + }, + "density": 0.001, + "force": { + "#": 6837 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 311, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6838 + }, + "positionImpulse": { + "#": 6839 + }, + "positionPrev": { + "#": 6840 + }, + "region": { + "#": 6841 + }, + "render": { + "#": 6842 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6844 + }, + "vertices": { + "#": 6845 + } + }, + [ + { + "#": 6830 + }, + { + "#": 6831 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6833 + }, + "min": { + "#": 6834 + } + }, + { + "x": 275, + "y": 462.73575476702496 + }, + { + "x": 250, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 447.3284840519894 + }, + { + "endCol": 5, + "endRow": 9, + "id": "5,5,9,9", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6843 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6846 + }, + { + "#": 6847 + }, + { + "#": 6848 + }, + { + "#": 6849 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6851 + }, + "bounds": { + "#": 6854 + }, + "collisionFilter": { + "#": 6857 + }, + "constraintImpulse": { + "#": 6858 + }, + "density": 0.001, + "force": { + "#": 6859 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 312, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6860 + }, + "positionImpulse": { + "#": 6861 + }, + "positionPrev": { + "#": 6862 + }, + "region": { + "#": 6863 + }, + "render": { + "#": 6864 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6866 + }, + "vertices": { + "#": 6867 + } + }, + [ + { + "#": 6852 + }, + { + "#": 6853 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6855 + }, + "min": { + "#": 6856 + } + }, + { + "x": 300, + "y": 462.73575476702496 + }, + { + "x": 275, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 447.3284840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "5,6,9,9", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6865 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6868 + }, + { + "#": 6869 + }, + { + "#": 6870 + }, + { + "#": 6871 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6873 + }, + "bounds": { + "#": 6876 + }, + "collisionFilter": { + "#": 6879 + }, + "constraintImpulse": { + "#": 6880 + }, + "density": 0.001, + "force": { + "#": 6881 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 313, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6882 + }, + "positionImpulse": { + "#": 6883 + }, + "positionPrev": { + "#": 6884 + }, + "region": { + "#": 6885 + }, + "render": { + "#": 6886 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6888 + }, + "vertices": { + "#": 6889 + } + }, + [ + { + "#": 6874 + }, + { + "#": 6875 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6877 + }, + "min": { + "#": 6878 + } + }, + { + "x": 325, + "y": 462.73575476702496 + }, + { + "x": 300, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 447.3284840519894 + }, + { + "endCol": 6, + "endRow": 9, + "id": "6,6,9,9", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6887 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6890 + }, + { + "#": 6891 + }, + { + "#": 6892 + }, + { + "#": 6893 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6895 + }, + "bounds": { + "#": 6898 + }, + "collisionFilter": { + "#": 6901 + }, + "constraintImpulse": { + "#": 6902 + }, + "density": 0.001, + "force": { + "#": 6903 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 314, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6904 + }, + "positionImpulse": { + "#": 6905 + }, + "positionPrev": { + "#": 6906 + }, + "region": { + "#": 6907 + }, + "render": { + "#": 6908 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6910 + }, + "vertices": { + "#": 6911 + } + }, + [ + { + "#": 6896 + }, + { + "#": 6897 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6899 + }, + "min": { + "#": 6900 + } + }, + { + "x": 350, + "y": 462.73575476702496 + }, + { + "x": 325, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 447.3284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "6,7,9,9", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 6909 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6912 + }, + { + "#": 6913 + }, + { + "#": 6914 + }, + { + "#": 6915 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6917 + }, + "bounds": { + "#": 6920 + }, + "collisionFilter": { + "#": 6923 + }, + "constraintImpulse": { + "#": 6924 + }, + "density": 0.001, + "force": { + "#": 6925 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 315, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6926 + }, + "positionImpulse": { + "#": 6927 + }, + "positionPrev": { + "#": 6928 + }, + "region": { + "#": 6929 + }, + "render": { + "#": 6930 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6932 + }, + "vertices": { + "#": 6933 + } + }, + [ + { + "#": 6918 + }, + { + "#": 6919 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6921 + }, + "min": { + "#": 6922 + } + }, + { + "x": 375, + "y": 462.73575476702496 + }, + { + "x": 350, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 447.3284840519894 + }, + { + "endCol": 7, + "endRow": 9, + "id": "7,7,9,9", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6931 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6934 + }, + { + "#": 6935 + }, + { + "#": 6936 + }, + { + "#": 6937 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6939 + }, + "bounds": { + "#": 6942 + }, + "collisionFilter": { + "#": 6945 + }, + "constraintImpulse": { + "#": 6946 + }, + "density": 0.001, + "force": { + "#": 6947 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 316, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6948 + }, + "positionImpulse": { + "#": 6949 + }, + "positionPrev": { + "#": 6950 + }, + "region": { + "#": 6951 + }, + "render": { + "#": 6952 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6954 + }, + "vertices": { + "#": 6955 + } + }, + [ + { + "#": 6940 + }, + { + "#": 6941 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6943 + }, + "min": { + "#": 6944 + } + }, + { + "x": 400, + "y": 462.73575476702496 + }, + { + "x": 375, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 447.3284840519894 + }, + { + "endCol": 8, + "endRow": 9, + "id": "7,8,9,9", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 6953 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + }, + { + "#": 6959 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6961 + }, + "bounds": { + "#": 6964 + }, + "collisionFilter": { + "#": 6967 + }, + "constraintImpulse": { + "#": 6968 + }, + "density": 0.001, + "force": { + "#": 6969 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 317, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6970 + }, + "positionImpulse": { + "#": 6971 + }, + "positionPrev": { + "#": 6972 + }, + "region": { + "#": 6973 + }, + "render": { + "#": 6974 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6976 + }, + "vertices": { + "#": 6977 + } + }, + [ + { + "#": 6962 + }, + { + "#": 6963 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6965 + }, + "min": { + "#": 6966 + } + }, + { + "x": 425, + "y": 462.73575476702496 + }, + { + "x": 400, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 447.3284840519894 + }, + { + "endCol": 8, + "endRow": 9, + "id": "8,8,9,9", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 6975 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 6978 + }, + { + "#": 6979 + }, + { + "#": 6980 + }, + { + "#": 6981 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 6983 + }, + "bounds": { + "#": 6986 + }, + "collisionFilter": { + "#": 6989 + }, + "constraintImpulse": { + "#": 6990 + }, + "density": 0.001, + "force": { + "#": 6991 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 318, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 6992 + }, + "positionImpulse": { + "#": 6993 + }, + "positionPrev": { + "#": 6994 + }, + "region": { + "#": 6995 + }, + "render": { + "#": 6996 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 6998 + }, + "vertices": { + "#": 6999 + } + }, + [ + { + "#": 6984 + }, + { + "#": 6985 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 6987 + }, + "min": { + "#": 6988 + } + }, + { + "x": 450, + "y": 462.73575476702496 + }, + { + "x": 425, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 447.3284840519894 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,9,9", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 6997 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7000 + }, + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7005 + }, + "bounds": { + "#": 7008 + }, + "collisionFilter": { + "#": 7011 + }, + "constraintImpulse": { + "#": 7012 + }, + "density": 0.001, + "force": { + "#": 7013 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 319, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7014 + }, + "positionImpulse": { + "#": 7015 + }, + "positionPrev": { + "#": 7016 + }, + "region": { + "#": 7017 + }, + "render": { + "#": 7018 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7020 + }, + "vertices": { + "#": 7021 + } + }, + [ + { + "#": 7006 + }, + { + "#": 7007 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7009 + }, + "min": { + "#": 7010 + } + }, + { + "x": 475, + "y": 462.73575476702496 + }, + { + "x": 450, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 447.3284840519894 + }, + { + "endCol": 9, + "endRow": 9, + "id": "9,9,9,9", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7019 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7022 + }, + { + "#": 7023 + }, + { + "#": 7024 + }, + { + "#": 7025 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7027 + }, + "bounds": { + "#": 7030 + }, + "collisionFilter": { + "#": 7033 + }, + "constraintImpulse": { + "#": 7034 + }, + "density": 0.001, + "force": { + "#": 7035 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 320, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7036 + }, + "positionImpulse": { + "#": 7037 + }, + "positionPrev": { + "#": 7038 + }, + "region": { + "#": 7039 + }, + "render": { + "#": 7040 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7042 + }, + "vertices": { + "#": 7043 + } + }, + [ + { + "#": 7028 + }, + { + "#": 7029 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7031 + }, + "min": { + "#": 7032 + } + }, + { + "x": 500, + "y": 462.73575476702496 + }, + { + "x": 475, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 447.3284840519894 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,9,9", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7041 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7044 + }, + { + "#": 7045 + }, + { + "#": 7046 + }, + { + "#": 7047 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7049 + }, + "bounds": { + "#": 7052 + }, + "collisionFilter": { + "#": 7055 + }, + "constraintImpulse": { + "#": 7056 + }, + "density": 0.001, + "force": { + "#": 7057 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 321, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7058 + }, + "positionImpulse": { + "#": 7059 + }, + "positionPrev": { + "#": 7060 + }, + "region": { + "#": 7061 + }, + "render": { + "#": 7062 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7064 + }, + "vertices": { + "#": 7065 + } + }, + [ + { + "#": 7050 + }, + { + "#": 7051 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7053 + }, + "min": { + "#": 7054 + } + }, + { + "x": 525, + "y": 462.73575476702496 + }, + { + "x": 500, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 447.3284840519894 + }, + { + "endCol": 10, + "endRow": 9, + "id": "10,10,9,9", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7063 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7066 + }, + { + "#": 7067 + }, + { + "#": 7068 + }, + { + "#": 7069 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7071 + }, + "bounds": { + "#": 7074 + }, + "collisionFilter": { + "#": 7077 + }, + "constraintImpulse": { + "#": 7078 + }, + "density": 0.001, + "force": { + "#": 7079 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 322, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7080 + }, + "positionImpulse": { + "#": 7081 + }, + "positionPrev": { + "#": 7082 + }, + "region": { + "#": 7083 + }, + "render": { + "#": 7084 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7086 + }, + "vertices": { + "#": 7087 + } + }, + [ + { + "#": 7072 + }, + { + "#": 7073 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7075 + }, + "min": { + "#": 7076 + } + }, + { + "x": 550, + "y": 462.73575476702496 + }, + { + "x": 525, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 447.3284840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,9,9", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7085 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7088 + }, + { + "#": 7089 + }, + { + "#": 7090 + }, + { + "#": 7091 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7093 + }, + "bounds": { + "#": 7096 + }, + "collisionFilter": { + "#": 7099 + }, + "constraintImpulse": { + "#": 7100 + }, + "density": 0.001, + "force": { + "#": 7101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 323, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7102 + }, + "positionImpulse": { + "#": 7103 + }, + "positionPrev": { + "#": 7104 + }, + "region": { + "#": 7105 + }, + "render": { + "#": 7106 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7108 + }, + "vertices": { + "#": 7109 + } + }, + [ + { + "#": 7094 + }, + { + "#": 7095 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7097 + }, + "min": { + "#": 7098 + } + }, + { + "x": 575, + "y": 462.73575476702496 + }, + { + "x": 550, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 447.3284840519894 + }, + { + "endCol": 11, + "endRow": 9, + "id": "11,11,9,9", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7107 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7110 + }, + { + "#": 7111 + }, + { + "#": 7112 + }, + { + "#": 7113 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7115 + }, + "bounds": { + "#": 7118 + }, + "collisionFilter": { + "#": 7121 + }, + "constraintImpulse": { + "#": 7122 + }, + "density": 0.001, + "force": { + "#": 7123 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 324, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7124 + }, + "positionImpulse": { + "#": 7125 + }, + "positionPrev": { + "#": 7126 + }, + "region": { + "#": 7127 + }, + "render": { + "#": 7128 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7130 + }, + "vertices": { + "#": 7131 + } + }, + [ + { + "#": 7116 + }, + { + "#": 7117 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7119 + }, + "min": { + "#": 7120 + } + }, + { + "x": 600, + "y": 462.73575476702496 + }, + { + "x": 575, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 447.3284840519894 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,9,9", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7129 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7132 + }, + { + "#": 7133 + }, + { + "#": 7134 + }, + { + "#": 7135 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7137 + }, + "bounds": { + "#": 7140 + }, + "collisionFilter": { + "#": 7143 + }, + "constraintImpulse": { + "#": 7144 + }, + "density": 0.001, + "force": { + "#": 7145 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 325, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7146 + }, + "positionImpulse": { + "#": 7147 + }, + "positionPrev": { + "#": 7148 + }, + "region": { + "#": 7149 + }, + "render": { + "#": 7150 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7152 + }, + "vertices": { + "#": 7153 + } + }, + [ + { + "#": 7138 + }, + { + "#": 7139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7141 + }, + "min": { + "#": 7142 + } + }, + { + "x": 625, + "y": 462.73575476702496 + }, + { + "x": 600, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 447.3284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "12,13,9,9", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7151 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7154 + }, + { + "#": 7155 + }, + { + "#": 7156 + }, + { + "#": 7157 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7159 + }, + "bounds": { + "#": 7162 + }, + "collisionFilter": { + "#": 7165 + }, + "constraintImpulse": { + "#": 7166 + }, + "density": 0.001, + "force": { + "#": 7167 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 326, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7168 + }, + "positionImpulse": { + "#": 7169 + }, + "positionPrev": { + "#": 7170 + }, + "region": { + "#": 7171 + }, + "render": { + "#": 7172 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7174 + }, + "vertices": { + "#": 7175 + } + }, + [ + { + "#": 7160 + }, + { + "#": 7161 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7163 + }, + "min": { + "#": 7164 + } + }, + { + "x": 650, + "y": 462.73575476702496 + }, + { + "x": 625, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 447.3284840519894 + }, + { + "endCol": 13, + "endRow": 9, + "id": "13,13,9,9", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7173 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7176 + }, + { + "#": 7177 + }, + { + "#": 7178 + }, + { + "#": 7179 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7181 + }, + "bounds": { + "#": 7184 + }, + "collisionFilter": { + "#": 7187 + }, + "constraintImpulse": { + "#": 7188 + }, + "density": 0.001, + "force": { + "#": 7189 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 327, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7190 + }, + "positionImpulse": { + "#": 7191 + }, + "positionPrev": { + "#": 7192 + }, + "region": { + "#": 7193 + }, + "render": { + "#": 7194 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7196 + }, + "vertices": { + "#": 7197 + } + }, + [ + { + "#": 7182 + }, + { + "#": 7183 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7185 + }, + "min": { + "#": 7186 + } + }, + { + "x": 675, + "y": 462.73575476702496 + }, + { + "x": 650, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 447.3284840519894 + }, + { + "endCol": 14, + "endRow": 9, + "id": "13,14,9,9", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7195 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7198 + }, + { + "#": 7199 + }, + { + "#": 7200 + }, + { + "#": 7201 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7203 + }, + "bounds": { + "#": 7206 + }, + "collisionFilter": { + "#": 7209 + }, + "constraintImpulse": { + "#": 7210 + }, + "density": 0.001, + "force": { + "#": 7211 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 328, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7212 + }, + "positionImpulse": { + "#": 7213 + }, + "positionPrev": { + "#": 7214 + }, + "region": { + "#": 7215 + }, + "render": { + "#": 7216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7218 + }, + "vertices": { + "#": 7219 + } + }, + [ + { + "#": 7204 + }, + { + "#": 7205 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7207 + }, + "min": { + "#": 7208 + } + }, + { + "x": 700, + "y": 462.73575476702496 + }, + { + "x": 675, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 447.3284840519894 + }, + { + "endCol": 14, + "endRow": 9, + "id": "14,14,9,9", + "startCol": 14, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7217 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7220 + }, + { + "#": 7221 + }, + { + "#": 7222 + }, + { + "#": 7223 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7225 + }, + "bounds": { + "#": 7228 + }, + "collisionFilter": { + "#": 7231 + }, + "constraintImpulse": { + "#": 7232 + }, + "density": 0.001, + "force": { + "#": 7233 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 329, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7234 + }, + "positionImpulse": { + "#": 7235 + }, + "positionPrev": { + "#": 7236 + }, + "region": { + "#": 7237 + }, + "render": { + "#": 7238 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7240 + }, + "vertices": { + "#": 7241 + } + }, + [ + { + "#": 7226 + }, + { + "#": 7227 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7229 + }, + "min": { + "#": 7230 + } + }, + { + "x": 725, + "y": 462.73575476702496 + }, + { + "x": 700, + "y": 437.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 450.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 447.3284840519894 + }, + { + "endCol": 15, + "endRow": 9, + "id": "14,15,9,9", + "startCol": 14, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7239 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7242 + }, + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 437.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 462.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7247 + }, + "bounds": { + "#": 7250 + }, + "collisionFilter": { + "#": 7253 + }, + "constraintImpulse": { + "#": 7254 + }, + "density": 0.001, + "force": { + "#": 7255 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 330, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7256 + }, + "positionImpulse": { + "#": 7257 + }, + "positionPrev": { + "#": 7258 + }, + "region": { + "#": 7259 + }, + "render": { + "#": 7260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7262 + }, + "vertices": { + "#": 7263 + } + }, + [ + { + "#": 7248 + }, + { + "#": 7249 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7251 + }, + "min": { + "#": 7252 + } + }, + { + "x": 125, + "y": 487.73575476702496 + }, + { + "x": 100, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 472.3284840519894 + }, + { + "endCol": 2, + "endRow": 10, + "id": "2,2,9,10", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7261 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7264 + }, + { + "#": 7265 + }, + { + "#": 7266 + }, + { + "#": 7267 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7269 + }, + "bounds": { + "#": 7272 + }, + "collisionFilter": { + "#": 7275 + }, + "constraintImpulse": { + "#": 7276 + }, + "density": 0.001, + "force": { + "#": 7277 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 331, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7278 + }, + "positionImpulse": { + "#": 7279 + }, + "positionPrev": { + "#": 7280 + }, + "region": { + "#": 7281 + }, + "render": { + "#": 7282 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7284 + }, + "vertices": { + "#": 7285 + } + }, + [ + { + "#": 7270 + }, + { + "#": 7271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7273 + }, + "min": { + "#": 7274 + } + }, + { + "x": 150, + "y": 487.73575476702496 + }, + { + "x": 125, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 472.3284840519894 + }, + { + "endCol": 3, + "endRow": 10, + "id": "2,3,9,10", + "startCol": 2, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7283 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7286 + }, + { + "#": 7287 + }, + { + "#": 7288 + }, + { + "#": 7289 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7291 + }, + "bounds": { + "#": 7294 + }, + "collisionFilter": { + "#": 7297 + }, + "constraintImpulse": { + "#": 7298 + }, + "density": 0.001, + "force": { + "#": 7299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 332, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7300 + }, + "positionImpulse": { + "#": 7301 + }, + "positionPrev": { + "#": 7302 + }, + "region": { + "#": 7303 + }, + "render": { + "#": 7304 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7306 + }, + "vertices": { + "#": 7307 + } + }, + [ + { + "#": 7292 + }, + { + "#": 7293 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7295 + }, + "min": { + "#": 7296 + } + }, + { + "x": 175, + "y": 487.73575476702496 + }, + { + "x": 150, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 472.3284840519894 + }, + { + "endCol": 3, + "endRow": 10, + "id": "3,3,9,10", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7305 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7308 + }, + { + "#": 7309 + }, + { + "#": 7310 + }, + { + "#": 7311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7313 + }, + "bounds": { + "#": 7316 + }, + "collisionFilter": { + "#": 7319 + }, + "constraintImpulse": { + "#": 7320 + }, + "density": 0.001, + "force": { + "#": 7321 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 333, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7322 + }, + "positionImpulse": { + "#": 7323 + }, + "positionPrev": { + "#": 7324 + }, + "region": { + "#": 7325 + }, + "render": { + "#": 7326 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7328 + }, + "vertices": { + "#": 7329 + } + }, + [ + { + "#": 7314 + }, + { + "#": 7315 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7317 + }, + "min": { + "#": 7318 + } + }, + { + "x": 200, + "y": 487.73575476702496 + }, + { + "x": 175, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 472.3284840519894 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,9,10", + "startCol": 3, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7327 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7330 + }, + { + "#": 7331 + }, + { + "#": 7332 + }, + { + "#": 7333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7335 + }, + "bounds": { + "#": 7338 + }, + "collisionFilter": { + "#": 7341 + }, + "constraintImpulse": { + "#": 7342 + }, + "density": 0.001, + "force": { + "#": 7343 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 334, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7344 + }, + "positionImpulse": { + "#": 7345 + }, + "positionPrev": { + "#": 7346 + }, + "region": { + "#": 7347 + }, + "render": { + "#": 7348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7350 + }, + "vertices": { + "#": 7351 + } + }, + [ + { + "#": 7336 + }, + { + "#": 7337 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7339 + }, + "min": { + "#": 7340 + } + }, + { + "x": 225, + "y": 487.73575476702496 + }, + { + "x": 200, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 472.3284840519894 + }, + { + "endCol": 4, + "endRow": 10, + "id": "4,4,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7349 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7352 + }, + { + "#": 7353 + }, + { + "#": 7354 + }, + { + "#": 7355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7357 + }, + "bounds": { + "#": 7360 + }, + "collisionFilter": { + "#": 7363 + }, + "constraintImpulse": { + "#": 7364 + }, + "density": 0.001, + "force": { + "#": 7365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 335, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7366 + }, + "positionImpulse": { + "#": 7367 + }, + "positionPrev": { + "#": 7368 + }, + "region": { + "#": 7369 + }, + "render": { + "#": 7370 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7372 + }, + "vertices": { + "#": 7373 + } + }, + [ + { + "#": 7358 + }, + { + "#": 7359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7361 + }, + "min": { + "#": 7362 + } + }, + { + "x": 250, + "y": 487.73575476702496 + }, + { + "x": 225, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 472.3284840519894 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,9,10", + "startCol": 4, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7371 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7374 + }, + { + "#": 7375 + }, + { + "#": 7376 + }, + { + "#": 7377 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7379 + }, + "bounds": { + "#": 7382 + }, + "collisionFilter": { + "#": 7385 + }, + "constraintImpulse": { + "#": 7386 + }, + "density": 0.001, + "force": { + "#": 7387 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 336, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7388 + }, + "positionImpulse": { + "#": 7389 + }, + "positionPrev": { + "#": 7390 + }, + "region": { + "#": 7391 + }, + "render": { + "#": 7392 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7394 + }, + "vertices": { + "#": 7395 + } + }, + [ + { + "#": 7380 + }, + { + "#": 7381 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7383 + }, + "min": { + "#": 7384 + } + }, + { + "x": 275, + "y": 487.73575476702496 + }, + { + "x": 250, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 472.3284840519894 + }, + { + "endCol": 5, + "endRow": 10, + "id": "5,5,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7393 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7396 + }, + { + "#": 7397 + }, + { + "#": 7398 + }, + { + "#": 7399 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7401 + }, + "bounds": { + "#": 7404 + }, + "collisionFilter": { + "#": 7407 + }, + "constraintImpulse": { + "#": 7408 + }, + "density": 0.001, + "force": { + "#": 7409 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 337, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7410 + }, + "positionImpulse": { + "#": 7411 + }, + "positionPrev": { + "#": 7412 + }, + "region": { + "#": 7413 + }, + "render": { + "#": 7414 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7416 + }, + "vertices": { + "#": 7417 + } + }, + [ + { + "#": 7402 + }, + { + "#": 7403 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7405 + }, + "min": { + "#": 7406 + } + }, + { + "x": 300, + "y": 487.73575476702496 + }, + { + "x": 275, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 472.3284840519894 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,9,10", + "startCol": 5, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7415 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7418 + }, + { + "#": 7419 + }, + { + "#": 7420 + }, + { + "#": 7421 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7423 + }, + "bounds": { + "#": 7426 + }, + "collisionFilter": { + "#": 7429 + }, + "constraintImpulse": { + "#": 7430 + }, + "density": 0.001, + "force": { + "#": 7431 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 338, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7432 + }, + "positionImpulse": { + "#": 7433 + }, + "positionPrev": { + "#": 7434 + }, + "region": { + "#": 7435 + }, + "render": { + "#": 7436 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7438 + }, + "vertices": { + "#": 7439 + } + }, + [ + { + "#": 7424 + }, + { + "#": 7425 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7427 + }, + "min": { + "#": 7428 + } + }, + { + "x": 325, + "y": 487.73575476702496 + }, + { + "x": 300, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 472.3284840519894 + }, + { + "endCol": 6, + "endRow": 10, + "id": "6,6,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7437 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7440 + }, + { + "#": 7441 + }, + { + "#": 7442 + }, + { + "#": 7443 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7445 + }, + "bounds": { + "#": 7448 + }, + "collisionFilter": { + "#": 7451 + }, + "constraintImpulse": { + "#": 7452 + }, + "density": 0.001, + "force": { + "#": 7453 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 339, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7454 + }, + "positionImpulse": { + "#": 7455 + }, + "positionPrev": { + "#": 7456 + }, + "region": { + "#": 7457 + }, + "render": { + "#": 7458 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7460 + }, + "vertices": { + "#": 7461 + } + }, + [ + { + "#": 7446 + }, + { + "#": 7447 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7449 + }, + "min": { + "#": 7450 + } + }, + { + "x": 350, + "y": 487.73575476702496 + }, + { + "x": 325, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 472.3284840519894 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,9,10", + "startCol": 6, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7459 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7462 + }, + { + "#": 7463 + }, + { + "#": 7464 + }, + { + "#": 7465 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7467 + }, + "bounds": { + "#": 7470 + }, + "collisionFilter": { + "#": 7473 + }, + "constraintImpulse": { + "#": 7474 + }, + "density": 0.001, + "force": { + "#": 7475 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 340, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7476 + }, + "positionImpulse": { + "#": 7477 + }, + "positionPrev": { + "#": 7478 + }, + "region": { + "#": 7479 + }, + "render": { + "#": 7480 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7482 + }, + "vertices": { + "#": 7483 + } + }, + [ + { + "#": 7468 + }, + { + "#": 7469 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7471 + }, + "min": { + "#": 7472 + } + }, + { + "x": 375, + "y": 487.73575476702496 + }, + { + "x": 350, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 472.3284840519894 + }, + { + "endCol": 7, + "endRow": 10, + "id": "7,7,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7481 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7484 + }, + { + "#": 7485 + }, + { + "#": 7486 + }, + { + "#": 7487 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7489 + }, + "bounds": { + "#": 7492 + }, + "collisionFilter": { + "#": 7495 + }, + "constraintImpulse": { + "#": 7496 + }, + "density": 0.001, + "force": { + "#": 7497 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 341, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7498 + }, + "positionImpulse": { + "#": 7499 + }, + "positionPrev": { + "#": 7500 + }, + "region": { + "#": 7501 + }, + "render": { + "#": 7502 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7504 + }, + "vertices": { + "#": 7505 + } + }, + [ + { + "#": 7490 + }, + { + "#": 7491 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7493 + }, + "min": { + "#": 7494 + } + }, + { + "x": 400, + "y": 487.73575476702496 + }, + { + "x": 375, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 472.3284840519894 + }, + { + "endCol": 8, + "endRow": 10, + "id": "7,8,9,10", + "startCol": 7, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7503 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7506 + }, + { + "#": 7507 + }, + { + "#": 7508 + }, + { + "#": 7509 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7511 + }, + "bounds": { + "#": 7514 + }, + "collisionFilter": { + "#": 7517 + }, + "constraintImpulse": { + "#": 7518 + }, + "density": 0.001, + "force": { + "#": 7519 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 342, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7520 + }, + "positionImpulse": { + "#": 7521 + }, + "positionPrev": { + "#": 7522 + }, + "region": { + "#": 7523 + }, + "render": { + "#": 7524 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7526 + }, + "vertices": { + "#": 7527 + } + }, + [ + { + "#": 7512 + }, + { + "#": 7513 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7515 + }, + "min": { + "#": 7516 + } + }, + { + "x": 425, + "y": 487.73575476702496 + }, + { + "x": 400, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 472.3284840519894 + }, + { + "endCol": 8, + "endRow": 10, + "id": "8,8,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7525 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7528 + }, + { + "#": 7529 + }, + { + "#": 7530 + }, + { + "#": 7531 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7533 + }, + "bounds": { + "#": 7536 + }, + "collisionFilter": { + "#": 7539 + }, + "constraintImpulse": { + "#": 7540 + }, + "density": 0.001, + "force": { + "#": 7541 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 343, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7542 + }, + "positionImpulse": { + "#": 7543 + }, + "positionPrev": { + "#": 7544 + }, + "region": { + "#": 7545 + }, + "render": { + "#": 7546 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7548 + }, + "vertices": { + "#": 7549 + } + }, + [ + { + "#": 7534 + }, + { + "#": 7535 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7537 + }, + "min": { + "#": 7538 + } + }, + { + "x": 450, + "y": 487.73575476702496 + }, + { + "x": 425, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 472.3284840519894 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7547 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7550 + }, + { + "#": 7551 + }, + { + "#": 7552 + }, + { + "#": 7553 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7555 + }, + "bounds": { + "#": 7558 + }, + "collisionFilter": { + "#": 7561 + }, + "constraintImpulse": { + "#": 7562 + }, + "density": 0.001, + "force": { + "#": 7563 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 344, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7564 + }, + "positionImpulse": { + "#": 7565 + }, + "positionPrev": { + "#": 7566 + }, + "region": { + "#": 7567 + }, + "render": { + "#": 7568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7570 + }, + "vertices": { + "#": 7571 + } + }, + [ + { + "#": 7556 + }, + { + "#": 7557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7559 + }, + "min": { + "#": 7560 + } + }, + { + "x": 475, + "y": 487.73575476702496 + }, + { + "x": 450, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 472.3284840519894 + }, + { + "endCol": 9, + "endRow": 10, + "id": "9,9,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7569 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7572 + }, + { + "#": 7573 + }, + { + "#": 7574 + }, + { + "#": 7575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7577 + }, + "bounds": { + "#": 7580 + }, + "collisionFilter": { + "#": 7583 + }, + "constraintImpulse": { + "#": 7584 + }, + "density": 0.001, + "force": { + "#": 7585 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 345, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7586 + }, + "positionImpulse": { + "#": 7587 + }, + "positionPrev": { + "#": 7588 + }, + "region": { + "#": 7589 + }, + "render": { + "#": 7590 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7592 + }, + "vertices": { + "#": 7593 + } + }, + [ + { + "#": 7578 + }, + { + "#": 7579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7581 + }, + "min": { + "#": 7582 + } + }, + { + "x": 500, + "y": 487.73575476702496 + }, + { + "x": 475, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 472.3284840519894 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7591 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7594 + }, + { + "#": 7595 + }, + { + "#": 7596 + }, + { + "#": 7597 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7599 + }, + "bounds": { + "#": 7602 + }, + "collisionFilter": { + "#": 7605 + }, + "constraintImpulse": { + "#": 7606 + }, + "density": 0.001, + "force": { + "#": 7607 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 346, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7608 + }, + "positionImpulse": { + "#": 7609 + }, + "positionPrev": { + "#": 7610 + }, + "region": { + "#": 7611 + }, + "render": { + "#": 7612 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7614 + }, + "vertices": { + "#": 7615 + } + }, + [ + { + "#": 7600 + }, + { + "#": 7601 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7603 + }, + "min": { + "#": 7604 + } + }, + { + "x": 525, + "y": 487.73575476702496 + }, + { + "x": 500, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 472.3284840519894 + }, + { + "endCol": 10, + "endRow": 10, + "id": "10,10,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7613 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7616 + }, + { + "#": 7617 + }, + { + "#": 7618 + }, + { + "#": 7619 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7621 + }, + "bounds": { + "#": 7624 + }, + "collisionFilter": { + "#": 7627 + }, + "constraintImpulse": { + "#": 7628 + }, + "density": 0.001, + "force": { + "#": 7629 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 347, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7630 + }, + "positionImpulse": { + "#": 7631 + }, + "positionPrev": { + "#": 7632 + }, + "region": { + "#": 7633 + }, + "render": { + "#": 7634 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7636 + }, + "vertices": { + "#": 7637 + } + }, + [ + { + "#": 7622 + }, + { + "#": 7623 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7625 + }, + "min": { + "#": 7626 + } + }, + { + "x": 550, + "y": 487.73575476702496 + }, + { + "x": 525, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 472.3284840519894 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7635 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7638 + }, + { + "#": 7639 + }, + { + "#": 7640 + }, + { + "#": 7641 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7643 + }, + "bounds": { + "#": 7646 + }, + "collisionFilter": { + "#": 7649 + }, + "constraintImpulse": { + "#": 7650 + }, + "density": 0.001, + "force": { + "#": 7651 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 348, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7652 + }, + "positionImpulse": { + "#": 7653 + }, + "positionPrev": { + "#": 7654 + }, + "region": { + "#": 7655 + }, + "render": { + "#": 7656 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7658 + }, + "vertices": { + "#": 7659 + } + }, + [ + { + "#": 7644 + }, + { + "#": 7645 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7647 + }, + "min": { + "#": 7648 + } + }, + { + "x": 575, + "y": 487.73575476702496 + }, + { + "x": 550, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 472.3284840519894 + }, + { + "endCol": 11, + "endRow": 10, + "id": "11,11,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7657 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7660 + }, + { + "#": 7661 + }, + { + "#": 7662 + }, + { + "#": 7663 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7665 + }, + "bounds": { + "#": 7668 + }, + "collisionFilter": { + "#": 7671 + }, + "constraintImpulse": { + "#": 7672 + }, + "density": 0.001, + "force": { + "#": 7673 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 349, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7674 + }, + "positionImpulse": { + "#": 7675 + }, + "positionPrev": { + "#": 7676 + }, + "region": { + "#": 7677 + }, + "render": { + "#": 7678 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7680 + }, + "vertices": { + "#": 7681 + } + }, + [ + { + "#": 7666 + }, + { + "#": 7667 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7669 + }, + "min": { + "#": 7670 + } + }, + { + "x": 600, + "y": 487.73575476702496 + }, + { + "x": 575, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 472.3284840519894 + }, + { + "endCol": 12, + "endRow": 10, + "id": "11,12,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7679 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7682 + }, + { + "#": 7683 + }, + { + "#": 7684 + }, + { + "#": 7685 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7687 + }, + "bounds": { + "#": 7690 + }, + "collisionFilter": { + "#": 7693 + }, + "constraintImpulse": { + "#": 7694 + }, + "density": 0.001, + "force": { + "#": 7695 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 350, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7696 + }, + "positionImpulse": { + "#": 7697 + }, + "positionPrev": { + "#": 7698 + }, + "region": { + "#": 7699 + }, + "render": { + "#": 7700 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7702 + }, + "vertices": { + "#": 7703 + } + }, + [ + { + "#": 7688 + }, + { + "#": 7689 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7691 + }, + "min": { + "#": 7692 + } + }, + { + "x": 625, + "y": 487.73575476702496 + }, + { + "x": 600, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 472.3284840519894 + }, + { + "endCol": 13, + "endRow": 10, + "id": "12,13,9,10", + "startCol": 12, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7701 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7704 + }, + { + "#": 7705 + }, + { + "#": 7706 + }, + { + "#": 7707 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7709 + }, + "bounds": { + "#": 7712 + }, + "collisionFilter": { + "#": 7715 + }, + "constraintImpulse": { + "#": 7716 + }, + "density": 0.001, + "force": { + "#": 7717 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 351, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7718 + }, + "positionImpulse": { + "#": 7719 + }, + "positionPrev": { + "#": 7720 + }, + "region": { + "#": 7721 + }, + "render": { + "#": 7722 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7724 + }, + "vertices": { + "#": 7725 + } + }, + [ + { + "#": 7710 + }, + { + "#": 7711 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7713 + }, + "min": { + "#": 7714 + } + }, + { + "x": 650, + "y": 487.73575476702496 + }, + { + "x": 625, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 472.3284840519894 + }, + { + "endCol": 13, + "endRow": 10, + "id": "13,13,9,10", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7723 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7726 + }, + { + "#": 7727 + }, + { + "#": 7728 + }, + { + "#": 7729 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7731 + }, + "bounds": { + "#": 7734 + }, + "collisionFilter": { + "#": 7737 + }, + "constraintImpulse": { + "#": 7738 + }, + "density": 0.001, + "force": { + "#": 7739 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 352, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7740 + }, + "positionImpulse": { + "#": 7741 + }, + "positionPrev": { + "#": 7742 + }, + "region": { + "#": 7743 + }, + "render": { + "#": 7744 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7746 + }, + "vertices": { + "#": 7747 + } + }, + [ + { + "#": 7732 + }, + { + "#": 7733 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7735 + }, + "min": { + "#": 7736 + } + }, + { + "x": 675, + "y": 487.73575476702496 + }, + { + "x": 650, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 472.3284840519894 + }, + { + "endCol": 14, + "endRow": 10, + "id": "13,14,9,10", + "startCol": 13, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7745 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7748 + }, + { + "#": 7749 + }, + { + "#": 7750 + }, + { + "#": 7751 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7753 + }, + "bounds": { + "#": 7756 + }, + "collisionFilter": { + "#": 7759 + }, + "constraintImpulse": { + "#": 7760 + }, + "density": 0.001, + "force": { + "#": 7761 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 353, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7762 + }, + "positionImpulse": { + "#": 7763 + }, + "positionPrev": { + "#": 7764 + }, + "region": { + "#": 7765 + }, + "render": { + "#": 7766 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7768 + }, + "vertices": { + "#": 7769 + } + }, + [ + { + "#": 7754 + }, + { + "#": 7755 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7757 + }, + "min": { + "#": 7758 + } + }, + { + "x": 700, + "y": 487.73575476702496 + }, + { + "x": 675, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 472.3284840519894 + }, + { + "endCol": 14, + "endRow": 10, + "id": "14,14,9,10", + "startCol": 14, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7767 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7770 + }, + { + "#": 7771 + }, + { + "#": 7772 + }, + { + "#": 7773 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7775 + }, + "bounds": { + "#": 7778 + }, + "collisionFilter": { + "#": 7781 + }, + "constraintImpulse": { + "#": 7782 + }, + "density": 0.001, + "force": { + "#": 7783 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 354, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7784 + }, + "positionImpulse": { + "#": 7785 + }, + "positionPrev": { + "#": 7786 + }, + "region": { + "#": 7787 + }, + "render": { + "#": 7788 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7790 + }, + "vertices": { + "#": 7791 + } + }, + [ + { + "#": 7776 + }, + { + "#": 7777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7779 + }, + "min": { + "#": 7780 + } + }, + { + "x": 725, + "y": 487.73575476702496 + }, + { + "x": 700, + "y": 462.73575476702496 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 475.23575476702496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 472.3284840519894 + }, + { + "endCol": 15, + "endRow": 10, + "id": "14,15,9,10", + "startCol": 14, + "startRow": 9 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7789 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.9072707150355455 + }, + [ + { + "#": 7792 + }, + { + "#": 7793 + }, + { + "#": 7794 + }, + { + "#": 7795 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 462.73575476702496 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 487.73575476702496 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 487.73575476702496 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7797 + }, + "bounds": { + "#": 7800 + }, + "collisionFilter": { + "#": 7803 + }, + "constraintImpulse": { + "#": 7804 + }, + "density": 0.001, + "force": { + "#": 7805 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 355, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7806 + }, + "positionImpulse": { + "#": 7807 + }, + "positionPrev": { + "#": 7808 + }, + "region": { + "#": 7809 + }, + "render": { + "#": 7810 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7812 + }, + "vertices": { + "#": 7813 + } + }, + [ + { + "#": 7798 + }, + { + "#": 7799 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7801 + }, + "min": { + "#": 7802 + } + }, + { + "x": 125, + "y": 511.5335212885556 + }, + { + "x": 100, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 494.9926067347262 + }, + { + "endCol": 2, + "endRow": 10, + "id": "2,2,10,10", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 7811 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7814 + }, + { + "#": 7815 + }, + { + "#": 7816 + }, + { + "#": 7817 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7819 + }, + "bounds": { + "#": 7822 + }, + "collisionFilter": { + "#": 7825 + }, + "constraintImpulse": { + "#": 7826 + }, + "density": 0.001, + "force": { + "#": 7827 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 356, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7828 + }, + "positionImpulse": { + "#": 7829 + }, + "positionPrev": { + "#": 7830 + }, + "region": { + "#": 7831 + }, + "render": { + "#": 7832 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7834 + }, + "vertices": { + "#": 7835 + } + }, + [ + { + "#": 7820 + }, + { + "#": 7821 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7823 + }, + "min": { + "#": 7824 + } + }, + { + "x": 150, + "y": 511.5335212885556 + }, + { + "x": 125, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 494.9926067347262 + }, + { + "endCol": 3, + "endRow": 10, + "id": "2,3,10,10", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7833 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7836 + }, + { + "#": 7837 + }, + { + "#": 7838 + }, + { + "#": 7839 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7841 + }, + "bounds": { + "#": 7844 + }, + "collisionFilter": { + "#": 7847 + }, + "constraintImpulse": { + "#": 7848 + }, + "density": 0.001, + "force": { + "#": 7849 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 357, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7850 + }, + "positionImpulse": { + "#": 7851 + }, + "positionPrev": { + "#": 7852 + }, + "region": { + "#": 7853 + }, + "render": { + "#": 7854 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7856 + }, + "vertices": { + "#": 7857 + } + }, + [ + { + "#": 7842 + }, + { + "#": 7843 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7845 + }, + "min": { + "#": 7846 + } + }, + { + "x": 175, + "y": 511.5335212885556 + }, + { + "x": 150, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 494.9926067347262 + }, + { + "endCol": 3, + "endRow": 10, + "id": "3,3,10,10", + "startCol": 3, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 7855 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7858 + }, + { + "#": 7859 + }, + { + "#": 7860 + }, + { + "#": 7861 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7863 + }, + "bounds": { + "#": 7866 + }, + "collisionFilter": { + "#": 7869 + }, + "constraintImpulse": { + "#": 7870 + }, + "density": 0.001, + "force": { + "#": 7871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 358, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7872 + }, + "positionImpulse": { + "#": 7873 + }, + "positionPrev": { + "#": 7874 + }, + "region": { + "#": 7875 + }, + "render": { + "#": 7876 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7878 + }, + "vertices": { + "#": 7879 + } + }, + [ + { + "#": 7864 + }, + { + "#": 7865 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7867 + }, + "min": { + "#": 7868 + } + }, + { + "x": 200, + "y": 511.5335212885556 + }, + { + "x": 175, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 494.9926067347262 + }, + { + "endCol": 4, + "endRow": 10, + "id": "3,4,10,10", + "startCol": 3, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7877 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7880 + }, + { + "#": 7881 + }, + { + "#": 7882 + }, + { + "#": 7883 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7885 + }, + "bounds": { + "#": 7888 + }, + "collisionFilter": { + "#": 7891 + }, + "constraintImpulse": { + "#": 7892 + }, + "density": 0.001, + "force": { + "#": 7893 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 359, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7894 + }, + "positionImpulse": { + "#": 7895 + }, + "positionPrev": { + "#": 7896 + }, + "region": { + "#": 7897 + }, + "render": { + "#": 7898 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7900 + }, + "vertices": { + "#": 7901 + } + }, + [ + { + "#": 7886 + }, + { + "#": 7887 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7889 + }, + "min": { + "#": 7890 + } + }, + { + "x": 225, + "y": 511.5335212885556 + }, + { + "x": 200, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 494.9926067347262 + }, + { + "endCol": 4, + "endRow": 10, + "id": "4,4,10,10", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7899 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7902 + }, + { + "#": 7903 + }, + { + "#": 7904 + }, + { + "#": 7905 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7907 + }, + "bounds": { + "#": 7910 + }, + "collisionFilter": { + "#": 7913 + }, + "constraintImpulse": { + "#": 7914 + }, + "density": 0.001, + "force": { + "#": 7915 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 360, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7916 + }, + "positionImpulse": { + "#": 7917 + }, + "positionPrev": { + "#": 7918 + }, + "region": { + "#": 7919 + }, + "render": { + "#": 7920 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7922 + }, + "vertices": { + "#": 7923 + } + }, + [ + { + "#": 7908 + }, + { + "#": 7909 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7911 + }, + "min": { + "#": 7912 + } + }, + { + "x": 250, + "y": 511.5335212885556 + }, + { + "x": 225, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 494.9926067347262 + }, + { + "endCol": 5, + "endRow": 10, + "id": "4,5,10,10", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 7921 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7924 + }, + { + "#": 7925 + }, + { + "#": 7926 + }, + { + "#": 7927 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7929 + }, + "bounds": { + "#": 7932 + }, + "collisionFilter": { + "#": 7935 + }, + "constraintImpulse": { + "#": 7936 + }, + "density": 0.001, + "force": { + "#": 7937 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 361, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7938 + }, + "positionImpulse": { + "#": 7939 + }, + "positionPrev": { + "#": 7940 + }, + "region": { + "#": 7941 + }, + "render": { + "#": 7942 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7944 + }, + "vertices": { + "#": 7945 + } + }, + [ + { + "#": 7930 + }, + { + "#": 7931 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7933 + }, + "min": { + "#": 7934 + } + }, + { + "x": 275, + "y": 511.5335212885556 + }, + { + "x": 250, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 494.9926067347262 + }, + { + "endCol": 5, + "endRow": 10, + "id": "5,5,10,10", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7943 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7946 + }, + { + "#": 7947 + }, + { + "#": 7948 + }, + { + "#": 7949 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7951 + }, + "bounds": { + "#": 7954 + }, + "collisionFilter": { + "#": 7957 + }, + "constraintImpulse": { + "#": 7958 + }, + "density": 0.001, + "force": { + "#": 7959 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 362, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7960 + }, + "positionImpulse": { + "#": 7961 + }, + "positionPrev": { + "#": 7962 + }, + "region": { + "#": 7963 + }, + "render": { + "#": 7964 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7966 + }, + "vertices": { + "#": 7967 + } + }, + [ + { + "#": 7952 + }, + { + "#": 7953 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7955 + }, + "min": { + "#": 7956 + } + }, + { + "x": 300, + "y": 511.5335212885556 + }, + { + "x": 275, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 494.9926067347262 + }, + { + "endCol": 6, + "endRow": 10, + "id": "5,6,10,10", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 7965 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7968 + }, + { + "#": 7969 + }, + { + "#": 7970 + }, + { + "#": 7971 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7973 + }, + "bounds": { + "#": 7976 + }, + "collisionFilter": { + "#": 7979 + }, + "constraintImpulse": { + "#": 7980 + }, + "density": 0.001, + "force": { + "#": 7981 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 363, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 7982 + }, + "positionImpulse": { + "#": 7983 + }, + "positionPrev": { + "#": 7984 + }, + "region": { + "#": 7985 + }, + "render": { + "#": 7986 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 7988 + }, + "vertices": { + "#": 7989 + } + }, + [ + { + "#": 7974 + }, + { + "#": 7975 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7977 + }, + "min": { + "#": 7978 + } + }, + { + "x": 325, + "y": 511.5335212885556 + }, + { + "x": 300, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 494.9926067347262 + }, + { + "endCol": 6, + "endRow": 10, + "id": "6,6,10,10", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 7987 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 7990 + }, + { + "#": 7991 + }, + { + "#": 7992 + }, + { + "#": 7993 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 7995 + }, + "bounds": { + "#": 7998 + }, + "collisionFilter": { + "#": 8001 + }, + "constraintImpulse": { + "#": 8002 + }, + "density": 0.001, + "force": { + "#": 8003 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 364, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8004 + }, + "positionImpulse": { + "#": 8005 + }, + "positionPrev": { + "#": 8006 + }, + "region": { + "#": 8007 + }, + "render": { + "#": 8008 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8010 + }, + "vertices": { + "#": 8011 + } + }, + [ + { + "#": 7996 + }, + { + "#": 7997 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7999 + }, + "min": { + "#": 8000 + } + }, + { + "x": 350, + "y": 511.5335212885556 + }, + { + "x": 325, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 494.9926067347262 + }, + { + "endCol": 7, + "endRow": 10, + "id": "6,7,10,10", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8009 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8012 + }, + { + "#": 8013 + }, + { + "#": 8014 + }, + { + "#": 8015 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8017 + }, + "bounds": { + "#": 8020 + }, + "collisionFilter": { + "#": 8023 + }, + "constraintImpulse": { + "#": 8024 + }, + "density": 0.001, + "force": { + "#": 8025 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 365, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8026 + }, + "positionImpulse": { + "#": 8027 + }, + "positionPrev": { + "#": 8028 + }, + "region": { + "#": 8029 + }, + "render": { + "#": 8030 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8032 + }, + "vertices": { + "#": 8033 + } + }, + [ + { + "#": 8018 + }, + { + "#": 8019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8021 + }, + "min": { + "#": 8022 + } + }, + { + "x": 375, + "y": 511.5335212885556 + }, + { + "x": 350, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 494.9926067347262 + }, + { + "endCol": 7, + "endRow": 10, + "id": "7,7,10,10", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8031 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8034 + }, + { + "#": 8035 + }, + { + "#": 8036 + }, + { + "#": 8037 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8039 + }, + "bounds": { + "#": 8042 + }, + "collisionFilter": { + "#": 8045 + }, + "constraintImpulse": { + "#": 8046 + }, + "density": 0.001, + "force": { + "#": 8047 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 366, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8048 + }, + "positionImpulse": { + "#": 8049 + }, + "positionPrev": { + "#": 8050 + }, + "region": { + "#": 8051 + }, + "render": { + "#": 8052 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8054 + }, + "vertices": { + "#": 8055 + } + }, + [ + { + "#": 8040 + }, + { + "#": 8041 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8043 + }, + "min": { + "#": 8044 + } + }, + { + "x": 400, + "y": 511.5335212885556 + }, + { + "x": 375, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 494.9926067347262 + }, + { + "endCol": 8, + "endRow": 10, + "id": "7,8,10,10", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8053 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8056 + }, + { + "#": 8057 + }, + { + "#": 8058 + }, + { + "#": 8059 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8061 + }, + "bounds": { + "#": 8064 + }, + "collisionFilter": { + "#": 8067 + }, + "constraintImpulse": { + "#": 8068 + }, + "density": 0.001, + "force": { + "#": 8069 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 367, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8070 + }, + "positionImpulse": { + "#": 8071 + }, + "positionPrev": { + "#": 8072 + }, + "region": { + "#": 8073 + }, + "render": { + "#": 8074 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8076 + }, + "vertices": { + "#": 8077 + } + }, + [ + { + "#": 8062 + }, + { + "#": 8063 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8065 + }, + "min": { + "#": 8066 + } + }, + { + "x": 425, + "y": 511.5335212885556 + }, + { + "x": 400, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 494.9926067347262 + }, + { + "endCol": 8, + "endRow": 10, + "id": "8,8,10,10", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8075 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8078 + }, + { + "#": 8079 + }, + { + "#": 8080 + }, + { + "#": 8081 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8083 + }, + "bounds": { + "#": 8086 + }, + "collisionFilter": { + "#": 8089 + }, + "constraintImpulse": { + "#": 8090 + }, + "density": 0.001, + "force": { + "#": 8091 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 368, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8092 + }, + "positionImpulse": { + "#": 8093 + }, + "positionPrev": { + "#": 8094 + }, + "region": { + "#": 8095 + }, + "render": { + "#": 8096 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8098 + }, + "vertices": { + "#": 8099 + } + }, + [ + { + "#": 8084 + }, + { + "#": 8085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8087 + }, + "min": { + "#": 8088 + } + }, + { + "x": 450, + "y": 511.5335212885556 + }, + { + "x": 425, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 494.9926067347262 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,10,10", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8097 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8100 + }, + { + "#": 8101 + }, + { + "#": 8102 + }, + { + "#": 8103 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8105 + }, + "bounds": { + "#": 8108 + }, + "collisionFilter": { + "#": 8111 + }, + "constraintImpulse": { + "#": 8112 + }, + "density": 0.001, + "force": { + "#": 8113 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 369, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8114 + }, + "positionImpulse": { + "#": 8115 + }, + "positionPrev": { + "#": 8116 + }, + "region": { + "#": 8117 + }, + "render": { + "#": 8118 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8120 + }, + "vertices": { + "#": 8121 + } + }, + [ + { + "#": 8106 + }, + { + "#": 8107 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8109 + }, + "min": { + "#": 8110 + } + }, + { + "x": 475, + "y": 511.5335212885556 + }, + { + "x": 450, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 494.9926067347262 + }, + { + "endCol": 9, + "endRow": 10, + "id": "9,9,10,10", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8119 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8122 + }, + { + "#": 8123 + }, + { + "#": 8124 + }, + { + "#": 8125 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8127 + }, + "bounds": { + "#": 8130 + }, + "collisionFilter": { + "#": 8133 + }, + "constraintImpulse": { + "#": 8134 + }, + "density": 0.001, + "force": { + "#": 8135 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 370, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8136 + }, + "positionImpulse": { + "#": 8137 + }, + "positionPrev": { + "#": 8138 + }, + "region": { + "#": 8139 + }, + "render": { + "#": 8140 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8142 + }, + "vertices": { + "#": 8143 + } + }, + [ + { + "#": 8128 + }, + { + "#": 8129 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8131 + }, + "min": { + "#": 8132 + } + }, + { + "x": 500, + "y": 511.5335212885556 + }, + { + "x": 475, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 494.9926067347262 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,10,10", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8141 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8144 + }, + { + "#": 8145 + }, + { + "#": 8146 + }, + { + "#": 8147 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8149 + }, + "bounds": { + "#": 8152 + }, + "collisionFilter": { + "#": 8155 + }, + "constraintImpulse": { + "#": 8156 + }, + "density": 0.001, + "force": { + "#": 8157 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 371, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8158 + }, + "positionImpulse": { + "#": 8159 + }, + "positionPrev": { + "#": 8160 + }, + "region": { + "#": 8161 + }, + "render": { + "#": 8162 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8164 + }, + "vertices": { + "#": 8165 + } + }, + [ + { + "#": 8150 + }, + { + "#": 8151 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8153 + }, + "min": { + "#": 8154 + } + }, + { + "x": 525, + "y": 511.5335212885556 + }, + { + "x": 500, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 494.9926067347262 + }, + { + "endCol": 10, + "endRow": 10, + "id": "10,10,10,10", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8163 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8166 + }, + { + "#": 8167 + }, + { + "#": 8168 + }, + { + "#": 8169 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8171 + }, + "bounds": { + "#": 8174 + }, + "collisionFilter": { + "#": 8177 + }, + "constraintImpulse": { + "#": 8178 + }, + "density": 0.001, + "force": { + "#": 8179 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 372, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8180 + }, + "positionImpulse": { + "#": 8181 + }, + "positionPrev": { + "#": 8182 + }, + "region": { + "#": 8183 + }, + "render": { + "#": 8184 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8186 + }, + "vertices": { + "#": 8187 + } + }, + [ + { + "#": 8172 + }, + { + "#": 8173 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8175 + }, + "min": { + "#": 8176 + } + }, + { + "x": 550, + "y": 511.5335212885556 + }, + { + "x": 525, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 494.9926067347262 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,10,10", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8185 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8188 + }, + { + "#": 8189 + }, + { + "#": 8190 + }, + { + "#": 8191 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8193 + }, + "bounds": { + "#": 8196 + }, + "collisionFilter": { + "#": 8199 + }, + "constraintImpulse": { + "#": 8200 + }, + "density": 0.001, + "force": { + "#": 8201 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 373, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8202 + }, + "positionImpulse": { + "#": 8203 + }, + "positionPrev": { + "#": 8204 + }, + "region": { + "#": 8205 + }, + "render": { + "#": 8206 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8208 + }, + "vertices": { + "#": 8209 + } + }, + [ + { + "#": 8194 + }, + { + "#": 8195 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8197 + }, + "min": { + "#": 8198 + } + }, + { + "x": 575, + "y": 511.5335212885556 + }, + { + "x": 550, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 494.9926067347262 + }, + { + "endCol": 11, + "endRow": 10, + "id": "11,11,10,10", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8207 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8210 + }, + { + "#": 8211 + }, + { + "#": 8212 + }, + { + "#": 8213 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8215 + }, + "bounds": { + "#": 8218 + }, + "collisionFilter": { + "#": 8221 + }, + "constraintImpulse": { + "#": 8222 + }, + "density": 0.001, + "force": { + "#": 8223 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 374, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8224 + }, + "positionImpulse": { + "#": 8225 + }, + "positionPrev": { + "#": 8226 + }, + "region": { + "#": 8227 + }, + "render": { + "#": 8228 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8230 + }, + "vertices": { + "#": 8231 + } + }, + [ + { + "#": 8216 + }, + { + "#": 8217 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8219 + }, + "min": { + "#": 8220 + } + }, + { + "x": 600, + "y": 511.5335212885556 + }, + { + "x": 575, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 494.9926067347262 + }, + { + "endCol": 12, + "endRow": 10, + "id": "11,12,10,10", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8229 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8232 + }, + { + "#": 8233 + }, + { + "#": 8234 + }, + { + "#": 8235 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8237 + }, + "bounds": { + "#": 8240 + }, + "collisionFilter": { + "#": 8243 + }, + "constraintImpulse": { + "#": 8244 + }, + "density": 0.001, + "force": { + "#": 8245 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 375, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8246 + }, + "positionImpulse": { + "#": 8247 + }, + "positionPrev": { + "#": 8248 + }, + "region": { + "#": 8249 + }, + "render": { + "#": 8250 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8252 + }, + "vertices": { + "#": 8253 + } + }, + [ + { + "#": 8238 + }, + { + "#": 8239 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8241 + }, + "min": { + "#": 8242 + } + }, + { + "x": 625, + "y": 511.5335212885556 + }, + { + "x": 600, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 494.9926067347262 + }, + { + "endCol": 13, + "endRow": 10, + "id": "12,13,10,10", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8251 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8254 + }, + { + "#": 8255 + }, + { + "#": 8256 + }, + { + "#": 8257 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8259 + }, + "bounds": { + "#": 8262 + }, + "collisionFilter": { + "#": 8265 + }, + "constraintImpulse": { + "#": 8266 + }, + "density": 0.001, + "force": { + "#": 8267 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 376, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8268 + }, + "positionImpulse": { + "#": 8269 + }, + "positionPrev": { + "#": 8270 + }, + "region": { + "#": 8271 + }, + "render": { + "#": 8272 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8274 + }, + "vertices": { + "#": 8275 + } + }, + [ + { + "#": 8260 + }, + { + "#": 8261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8263 + }, + "min": { + "#": 8264 + } + }, + { + "x": 650, + "y": 511.5335212885556 + }, + { + "x": 625, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 494.9926067347262 + }, + { + "endCol": 13, + "endRow": 10, + "id": "13,13,10,10", + "startCol": 13, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8273 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8276 + }, + { + "#": 8277 + }, + { + "#": 8278 + }, + { + "#": 8279 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8281 + }, + "bounds": { + "#": 8284 + }, + "collisionFilter": { + "#": 8287 + }, + "constraintImpulse": { + "#": 8288 + }, + "density": 0.001, + "force": { + "#": 8289 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 377, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8290 + }, + "positionImpulse": { + "#": 8291 + }, + "positionPrev": { + "#": 8292 + }, + "region": { + "#": 8293 + }, + "render": { + "#": 8294 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8296 + }, + "vertices": { + "#": 8297 + } + }, + [ + { + "#": 8282 + }, + { + "#": 8283 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8285 + }, + "min": { + "#": 8286 + } + }, + { + "x": 675, + "y": 511.5335212885556 + }, + { + "x": 650, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 494.9926067347262 + }, + { + "endCol": 14, + "endRow": 10, + "id": "13,14,10,10", + "startCol": 13, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8295 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8298 + }, + { + "#": 8299 + }, + { + "#": 8300 + }, + { + "#": 8301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8303 + }, + "bounds": { + "#": 8306 + }, + "collisionFilter": { + "#": 8309 + }, + "constraintImpulse": { + "#": 8310 + }, + "density": 0.001, + "force": { + "#": 8311 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 378, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8312 + }, + "positionImpulse": { + "#": 8313 + }, + "positionPrev": { + "#": 8314 + }, + "region": { + "#": 8315 + }, + "render": { + "#": 8316 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8318 + }, + "vertices": { + "#": 8319 + } + }, + [ + { + "#": 8304 + }, + { + "#": 8305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8307 + }, + "min": { + "#": 8308 + } + }, + { + "x": 700, + "y": 511.5335212885556 + }, + { + "x": 675, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 494.9926067347262 + }, + { + "endCol": 14, + "endRow": 10, + "id": "14,14,10,10", + "startCol": 14, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8317 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8320 + }, + { + "#": 8321 + }, + { + "#": 8322 + }, + { + "#": 8323 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8325 + }, + "bounds": { + "#": 8328 + }, + "collisionFilter": { + "#": 8331 + }, + "constraintImpulse": { + "#": 8332 + }, + "density": 0.001, + "force": { + "#": 8333 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 379, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8334 + }, + "positionImpulse": { + "#": 8335 + }, + "positionPrev": { + "#": 8336 + }, + "region": { + "#": 8337 + }, + "render": { + "#": 8338 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150355455, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8340 + }, + "vertices": { + "#": 8341 + } + }, + [ + { + "#": 8326 + }, + { + "#": 8327 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8329 + }, + "min": { + "#": 8330 + } + }, + { + "x": 725, + "y": 511.5335212885556 + }, + { + "x": 700, + "y": 483.6262505735201 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 496.1262505735201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 494.9926067347262 + }, + { + "endCol": 15, + "endRow": 10, + "id": "14,15,10,10", + "startCol": 14, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8339 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.287410051313259 + }, + [ + { + "#": 8342 + }, + { + "#": 8343 + }, + { + "#": 8344 + }, + { + "#": 8345 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 483.6262505735201 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 508.62625057352005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 508.62625057352005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8347 + }, + "bounds": { + "#": 8350 + }, + "collisionFilter": { + "#": 8353 + }, + "constraintImpulse": { + "#": 8354 + }, + "density": 0.001, + "force": { + "#": 8355 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 380, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8356 + }, + "positionImpulse": { + "#": 8357 + }, + "positionPrev": { + "#": 8358 + }, + "region": { + "#": 8359 + }, + "render": { + "#": 8360 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8362 + }, + "vertices": { + "#": 8363 + } + }, + [ + { + "#": 8348 + }, + { + "#": 8349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8351 + }, + "min": { + "#": 8352 + } + }, + { + "x": 125, + "y": 534.2944361454107 + }, + { + "x": 100, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 112.5, + "y": 519.6494775484413 + }, + { + "endCol": 2, + "endRow": 11, + "id": "2,2,10,11", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8361 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8364 + }, + { + "#": 8365 + }, + { + "#": 8366 + }, + { + "#": 8367 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8369 + }, + "bounds": { + "#": 8372 + }, + "collisionFilter": { + "#": 8375 + }, + "constraintImpulse": { + "#": 8376 + }, + "density": 0.001, + "force": { + "#": 8377 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 381, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8378 + }, + "positionImpulse": { + "#": 8379 + }, + "positionPrev": { + "#": 8380 + }, + "region": { + "#": 8381 + }, + "render": { + "#": 8382 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8384 + }, + "vertices": { + "#": 8385 + } + }, + [ + { + "#": 8370 + }, + { + "#": 8371 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8373 + }, + "min": { + "#": 8374 + } + }, + { + "x": 150, + "y": 534.2944361454107 + }, + { + "x": 125, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 137.5, + "y": 519.6494775484413 + }, + { + "endCol": 3, + "endRow": 11, + "id": "2,3,10,11", + "startCol": 2, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8383 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8386 + }, + { + "#": 8387 + }, + { + "#": 8388 + }, + { + "#": 8389 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8391 + }, + "bounds": { + "#": 8394 + }, + "collisionFilter": { + "#": 8397 + }, + "constraintImpulse": { + "#": 8398 + }, + "density": 0.001, + "force": { + "#": 8399 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 382, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8400 + }, + "positionImpulse": { + "#": 8401 + }, + "positionPrev": { + "#": 8402 + }, + "region": { + "#": 8403 + }, + "render": { + "#": 8404 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8406 + }, + "vertices": { + "#": 8407 + } + }, + [ + { + "#": 8392 + }, + { + "#": 8393 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8395 + }, + "min": { + "#": 8396 + } + }, + { + "x": 175, + "y": 534.2944361454107 + }, + { + "x": 150, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 162.5, + "y": 519.6494775484413 + }, + { + "endCol": 3, + "endRow": 11, + "id": "3,3,10,11", + "startCol": 3, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8405 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8408 + }, + { + "#": 8409 + }, + { + "#": 8410 + }, + { + "#": 8411 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8413 + }, + "bounds": { + "#": 8416 + }, + "collisionFilter": { + "#": 8419 + }, + "constraintImpulse": { + "#": 8420 + }, + "density": 0.001, + "force": { + "#": 8421 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 383, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8422 + }, + "positionImpulse": { + "#": 8423 + }, + "positionPrev": { + "#": 8424 + }, + "region": { + "#": 8425 + }, + "render": { + "#": 8426 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8428 + }, + "vertices": { + "#": 8429 + } + }, + [ + { + "#": 8414 + }, + { + "#": 8415 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8417 + }, + "min": { + "#": 8418 + } + }, + { + "x": 200, + "y": 534.2944361454107 + }, + { + "x": 175, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 187.5, + "y": 519.6494775484413 + }, + { + "endCol": 4, + "endRow": 11, + "id": "3,4,10,11", + "startCol": 3, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8427 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8430 + }, + { + "#": 8431 + }, + { + "#": 8432 + }, + { + "#": 8433 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8435 + }, + "bounds": { + "#": 8438 + }, + "collisionFilter": { + "#": 8441 + }, + "constraintImpulse": { + "#": 8442 + }, + "density": 0.001, + "force": { + "#": 8443 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 384, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8444 + }, + "positionImpulse": { + "#": 8445 + }, + "positionPrev": { + "#": 8446 + }, + "region": { + "#": 8447 + }, + "render": { + "#": 8448 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8450 + }, + "vertices": { + "#": 8451 + } + }, + [ + { + "#": 8436 + }, + { + "#": 8437 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8439 + }, + "min": { + "#": 8440 + } + }, + { + "x": 225, + "y": 534.2944361454107 + }, + { + "x": 200, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 212.5, + "y": 519.6494775484413 + }, + { + "endCol": 4, + "endRow": 11, + "id": "4,4,10,11", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8449 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8452 + }, + { + "#": 8453 + }, + { + "#": 8454 + }, + { + "#": 8455 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8457 + }, + "bounds": { + "#": 8460 + }, + "collisionFilter": { + "#": 8463 + }, + "constraintImpulse": { + "#": 8464 + }, + "density": 0.001, + "force": { + "#": 8465 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 385, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8466 + }, + "positionImpulse": { + "#": 8467 + }, + "positionPrev": { + "#": 8468 + }, + "region": { + "#": 8469 + }, + "render": { + "#": 8470 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8472 + }, + "vertices": { + "#": 8473 + } + }, + [ + { + "#": 8458 + }, + { + "#": 8459 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8461 + }, + "min": { + "#": 8462 + } + }, + { + "x": 250, + "y": 534.2944361454107 + }, + { + "x": 225, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 237.5, + "y": 519.6494775484413 + }, + { + "endCol": 5, + "endRow": 11, + "id": "4,5,10,11", + "startCol": 4, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8471 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8474 + }, + { + "#": 8475 + }, + { + "#": 8476 + }, + { + "#": 8477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8479 + }, + "bounds": { + "#": 8482 + }, + "collisionFilter": { + "#": 8485 + }, + "constraintImpulse": { + "#": 8486 + }, + "density": 0.001, + "force": { + "#": 8487 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 386, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8488 + }, + "positionImpulse": { + "#": 8489 + }, + "positionPrev": { + "#": 8490 + }, + "region": { + "#": 8491 + }, + "render": { + "#": 8492 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8494 + }, + "vertices": { + "#": 8495 + } + }, + [ + { + "#": 8480 + }, + { + "#": 8481 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8483 + }, + "min": { + "#": 8484 + } + }, + { + "x": 275, + "y": 534.2944361454107 + }, + { + "x": 250, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 262.5, + "y": 519.6494775484413 + }, + { + "endCol": 5, + "endRow": 11, + "id": "5,5,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8493 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8496 + }, + { + "#": 8497 + }, + { + "#": 8498 + }, + { + "#": 8499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8501 + }, + "bounds": { + "#": 8504 + }, + "collisionFilter": { + "#": 8507 + }, + "constraintImpulse": { + "#": 8508 + }, + "density": 0.001, + "force": { + "#": 8509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 387, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8510 + }, + "positionImpulse": { + "#": 8511 + }, + "positionPrev": { + "#": 8512 + }, + "region": { + "#": 8513 + }, + "render": { + "#": 8514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8516 + }, + "vertices": { + "#": 8517 + } + }, + [ + { + "#": 8502 + }, + { + "#": 8503 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8505 + }, + "min": { + "#": 8506 + } + }, + { + "x": 300, + "y": 534.2944361454107 + }, + { + "x": 275, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 287.5, + "y": 519.6494775484413 + }, + { + "endCol": 6, + "endRow": 11, + "id": "5,6,10,11", + "startCol": 5, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8515 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8518 + }, + { + "#": 8519 + }, + { + "#": 8520 + }, + { + "#": 8521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8523 + }, + "bounds": { + "#": 8526 + }, + "collisionFilter": { + "#": 8529 + }, + "constraintImpulse": { + "#": 8530 + }, + "density": 0.001, + "force": { + "#": 8531 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 388, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8532 + }, + "positionImpulse": { + "#": 8533 + }, + "positionPrev": { + "#": 8534 + }, + "region": { + "#": 8535 + }, + "render": { + "#": 8536 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8538 + }, + "vertices": { + "#": 8539 + } + }, + [ + { + "#": 8524 + }, + { + "#": 8525 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8527 + }, + "min": { + "#": 8528 + } + }, + { + "x": 325, + "y": 534.2944361454107 + }, + { + "x": 300, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 312.5, + "y": 519.6494775484413 + }, + { + "endCol": 6, + "endRow": 11, + "id": "6,6,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8537 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8540 + }, + { + "#": 8541 + }, + { + "#": 8542 + }, + { + "#": 8543 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8545 + }, + "bounds": { + "#": 8548 + }, + "collisionFilter": { + "#": 8551 + }, + "constraintImpulse": { + "#": 8552 + }, + "density": 0.001, + "force": { + "#": 8553 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 389, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8554 + }, + "positionImpulse": { + "#": 8555 + }, + "positionPrev": { + "#": 8556 + }, + "region": { + "#": 8557 + }, + "render": { + "#": 8558 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8560 + }, + "vertices": { + "#": 8561 + } + }, + [ + { + "#": 8546 + }, + { + "#": 8547 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8549 + }, + "min": { + "#": 8550 + } + }, + { + "x": 350, + "y": 534.2944361454107 + }, + { + "x": 325, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 337.5, + "y": 519.6494775484413 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,10,11", + "startCol": 6, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8559 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8562 + }, + { + "#": 8563 + }, + { + "#": 8564 + }, + { + "#": 8565 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8567 + }, + "bounds": { + "#": 8570 + }, + "collisionFilter": { + "#": 8573 + }, + "constraintImpulse": { + "#": 8574 + }, + "density": 0.001, + "force": { + "#": 8575 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 390, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8576 + }, + "positionImpulse": { + "#": 8577 + }, + "positionPrev": { + "#": 8578 + }, + "region": { + "#": 8579 + }, + "render": { + "#": 8580 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8582 + }, + "vertices": { + "#": 8583 + } + }, + [ + { + "#": 8568 + }, + { + "#": 8569 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8571 + }, + "min": { + "#": 8572 + } + }, + { + "x": 375, + "y": 534.2944361454107 + }, + { + "x": 350, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 362.5, + "y": 519.6494775484413 + }, + { + "endCol": 7, + "endRow": 11, + "id": "7,7,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8581 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8584 + }, + { + "#": 8585 + }, + { + "#": 8586 + }, + { + "#": 8587 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8589 + }, + "bounds": { + "#": 8592 + }, + "collisionFilter": { + "#": 8595 + }, + "constraintImpulse": { + "#": 8596 + }, + "density": 0.001, + "force": { + "#": 8597 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 391, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8598 + }, + "positionImpulse": { + "#": 8599 + }, + "positionPrev": { + "#": 8600 + }, + "region": { + "#": 8601 + }, + "render": { + "#": 8602 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8604 + }, + "vertices": { + "#": 8605 + } + }, + [ + { + "#": 8590 + }, + { + "#": 8591 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8593 + }, + "min": { + "#": 8594 + } + }, + { + "x": 400, + "y": 534.2944361454107 + }, + { + "x": 375, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 387.5, + "y": 519.6494775484413 + }, + { + "endCol": 8, + "endRow": 11, + "id": "7,8,10,11", + "startCol": 7, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8603 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8606 + }, + { + "#": 8607 + }, + { + "#": 8608 + }, + { + "#": 8609 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8611 + }, + "bounds": { + "#": 8614 + }, + "collisionFilter": { + "#": 8617 + }, + "constraintImpulse": { + "#": 8618 + }, + "density": 0.001, + "force": { + "#": 8619 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 392, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8620 + }, + "positionImpulse": { + "#": 8621 + }, + "positionPrev": { + "#": 8622 + }, + "region": { + "#": 8623 + }, + "render": { + "#": 8624 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8626 + }, + "vertices": { + "#": 8627 + } + }, + [ + { + "#": 8612 + }, + { + "#": 8613 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8615 + }, + "min": { + "#": 8616 + } + }, + { + "x": 425, + "y": 534.2944361454107 + }, + { + "x": 400, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 412.5, + "y": 519.6494775484413 + }, + { + "endCol": 8, + "endRow": 11, + "id": "8,8,10,11", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8625 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8628 + }, + { + "#": 8629 + }, + { + "#": 8630 + }, + { + "#": 8631 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8633 + }, + "bounds": { + "#": 8636 + }, + "collisionFilter": { + "#": 8639 + }, + "constraintImpulse": { + "#": 8640 + }, + "density": 0.001, + "force": { + "#": 8641 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 393, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8642 + }, + "positionImpulse": { + "#": 8643 + }, + "positionPrev": { + "#": 8644 + }, + "region": { + "#": 8645 + }, + "render": { + "#": 8646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8648 + }, + "vertices": { + "#": 8649 + } + }, + [ + { + "#": 8634 + }, + { + "#": 8635 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8637 + }, + "min": { + "#": 8638 + } + }, + { + "x": 450, + "y": 534.2944361454107 + }, + { + "x": 425, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 437.5, + "y": 519.6494775484413 + }, + { + "endCol": 9, + "endRow": 11, + "id": "8,9,10,11", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8647 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8650 + }, + { + "#": 8651 + }, + { + "#": 8652 + }, + { + "#": 8653 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8655 + }, + "bounds": { + "#": 8658 + }, + "collisionFilter": { + "#": 8661 + }, + "constraintImpulse": { + "#": 8662 + }, + "density": 0.001, + "force": { + "#": 8663 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 394, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8664 + }, + "positionImpulse": { + "#": 8665 + }, + "positionPrev": { + "#": 8666 + }, + "region": { + "#": 8667 + }, + "render": { + "#": 8668 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8670 + }, + "vertices": { + "#": 8671 + } + }, + [ + { + "#": 8656 + }, + { + "#": 8657 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8659 + }, + "min": { + "#": 8660 + } + }, + { + "x": 475, + "y": 534.2944361454107 + }, + { + "x": 450, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 462.5, + "y": 519.6494775484413 + }, + { + "endCol": 9, + "endRow": 11, + "id": "9,9,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8669 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8672 + }, + { + "#": 8673 + }, + { + "#": 8674 + }, + { + "#": 8675 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8677 + }, + "bounds": { + "#": 8680 + }, + "collisionFilter": { + "#": 8683 + }, + "constraintImpulse": { + "#": 8684 + }, + "density": 0.001, + "force": { + "#": 8685 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 395, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8686 + }, + "positionImpulse": { + "#": 8687 + }, + "positionPrev": { + "#": 8688 + }, + "region": { + "#": 8689 + }, + "render": { + "#": 8690 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8692 + }, + "vertices": { + "#": 8693 + } + }, + [ + { + "#": 8678 + }, + { + "#": 8679 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8681 + }, + "min": { + "#": 8682 + } + }, + { + "x": 500, + "y": 534.2944361454107 + }, + { + "x": 475, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 487.5, + "y": 519.6494775484413 + }, + { + "endCol": 10, + "endRow": 11, + "id": "9,10,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8691 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8694 + }, + { + "#": 8695 + }, + { + "#": 8696 + }, + { + "#": 8697 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8699 + }, + "bounds": { + "#": 8702 + }, + "collisionFilter": { + "#": 8705 + }, + "constraintImpulse": { + "#": 8706 + }, + "density": 0.001, + "force": { + "#": 8707 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 396, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8708 + }, + "positionImpulse": { + "#": 8709 + }, + "positionPrev": { + "#": 8710 + }, + "region": { + "#": 8711 + }, + "render": { + "#": 8712 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8714 + }, + "vertices": { + "#": 8715 + } + }, + [ + { + "#": 8700 + }, + { + "#": 8701 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8703 + }, + "min": { + "#": 8704 + } + }, + { + "x": 525, + "y": 534.2944361454107 + }, + { + "x": 500, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 512.5, + "y": 519.6494775484413 + }, + { + "endCol": 10, + "endRow": 11, + "id": "10,10,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8713 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8716 + }, + { + "#": 8717 + }, + { + "#": 8718 + }, + { + "#": 8719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8721 + }, + "bounds": { + "#": 8724 + }, + "collisionFilter": { + "#": 8727 + }, + "constraintImpulse": { + "#": 8728 + }, + "density": 0.001, + "force": { + "#": 8729 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 397, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8730 + }, + "positionImpulse": { + "#": 8731 + }, + "positionPrev": { + "#": 8732 + }, + "region": { + "#": 8733 + }, + "render": { + "#": 8734 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8736 + }, + "vertices": { + "#": 8737 + } + }, + [ + { + "#": 8722 + }, + { + "#": 8723 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8725 + }, + "min": { + "#": 8726 + } + }, + { + "x": 550, + "y": 534.2944361454107 + }, + { + "x": 525, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 537.5, + "y": 519.6494775484413 + }, + { + "endCol": 11, + "endRow": 11, + "id": "10,11,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8735 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8738 + }, + { + "#": 8739 + }, + { + "#": 8740 + }, + { + "#": 8741 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8743 + }, + "bounds": { + "#": 8746 + }, + "collisionFilter": { + "#": 8749 + }, + "constraintImpulse": { + "#": 8750 + }, + "density": 0.001, + "force": { + "#": 8751 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 398, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8752 + }, + "positionImpulse": { + "#": 8753 + }, + "positionPrev": { + "#": 8754 + }, + "region": { + "#": 8755 + }, + "render": { + "#": 8756 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8758 + }, + "vertices": { + "#": 8759 + } + }, + [ + { + "#": 8744 + }, + { + "#": 8745 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8747 + }, + "min": { + "#": 8748 + } + }, + { + "x": 575, + "y": 534.2944361454107 + }, + { + "x": 550, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 562.5, + "y": 519.6494775484413 + }, + { + "endCol": 11, + "endRow": 11, + "id": "11,11,10,11", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8757 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8760 + }, + { + "#": 8761 + }, + { + "#": 8762 + }, + { + "#": 8763 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8765 + }, + "bounds": { + "#": 8768 + }, + "collisionFilter": { + "#": 8771 + }, + "constraintImpulse": { + "#": 8772 + }, + "density": 0.001, + "force": { + "#": 8773 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 399, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8774 + }, + "positionImpulse": { + "#": 8775 + }, + "positionPrev": { + "#": 8776 + }, + "region": { + "#": 8777 + }, + "render": { + "#": 8778 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8780 + }, + "vertices": { + "#": 8781 + } + }, + [ + { + "#": 8766 + }, + { + "#": 8767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8769 + }, + "min": { + "#": 8770 + } + }, + { + "x": 600, + "y": 534.2944361454107 + }, + { + "x": 575, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 587.5, + "y": 519.6494775484413 + }, + { + "endCol": 12, + "endRow": 11, + "id": "11,12,10,11", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8779 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8782 + }, + { + "#": 8783 + }, + { + "#": 8784 + }, + { + "#": 8785 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8787 + }, + "bounds": { + "#": 8790 + }, + "collisionFilter": { + "#": 8793 + }, + "constraintImpulse": { + "#": 8794 + }, + "density": 0.001, + "force": { + "#": 8795 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 400, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8796 + }, + "positionImpulse": { + "#": 8797 + }, + "positionPrev": { + "#": 8798 + }, + "region": { + "#": 8799 + }, + "render": { + "#": 8800 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8802 + }, + "vertices": { + "#": 8803 + } + }, + [ + { + "#": 8788 + }, + { + "#": 8789 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8791 + }, + "min": { + "#": 8792 + } + }, + { + "x": 625, + "y": 534.2944361454107 + }, + { + "x": 600, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 612.5, + "y": 519.6494775484413 + }, + { + "endCol": 13, + "endRow": 11, + "id": "12,13,10,11", + "startCol": 12, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8801 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8804 + }, + { + "#": 8805 + }, + { + "#": 8806 + }, + { + "#": 8807 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8809 + }, + "bounds": { + "#": 8812 + }, + "collisionFilter": { + "#": 8815 + }, + "constraintImpulse": { + "#": 8816 + }, + "density": 0.001, + "force": { + "#": 8817 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 401, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8818 + }, + "positionImpulse": { + "#": 8819 + }, + "positionPrev": { + "#": 8820 + }, + "region": { + "#": 8821 + }, + "render": { + "#": 8822 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8824 + }, + "vertices": { + "#": 8825 + } + }, + [ + { + "#": 8810 + }, + { + "#": 8811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8813 + }, + "min": { + "#": 8814 + } + }, + { + "x": 650, + "y": 534.2944361454107 + }, + { + "x": 625, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 637.5, + "y": 519.6494775484413 + }, + { + "endCol": 13, + "endRow": 11, + "id": "13,13,10,11", + "startCol": 13, + "startRow": 10 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8823 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8826 + }, + { + "#": 8827 + }, + { + "#": 8828 + }, + { + "#": 8829 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8831 + }, + "bounds": { + "#": 8834 + }, + "collisionFilter": { + "#": 8837 + }, + "constraintImpulse": { + "#": 8838 + }, + "density": 0.001, + "force": { + "#": 8839 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 402, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8840 + }, + "positionImpulse": { + "#": 8841 + }, + "positionPrev": { + "#": 8842 + }, + "region": { + "#": 8843 + }, + "render": { + "#": 8844 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8846 + }, + "vertices": { + "#": 8847 + } + }, + [ + { + "#": 8832 + }, + { + "#": 8833 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8835 + }, + "min": { + "#": 8836 + } + }, + { + "x": 675, + "y": 534.2944361454107 + }, + { + "x": 650, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 662.5, + "y": 519.6494775484413 + }, + { + "endCol": 14, + "endRow": 11, + "id": "13,14,10,11", + "startCol": 13, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 8845 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8848 + }, + { + "#": 8849 + }, + { + "#": 8850 + }, + { + "#": 8851 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8853 + }, + "bounds": { + "#": 8856 + }, + "collisionFilter": { + "#": 8859 + }, + "constraintImpulse": { + "#": 8860 + }, + "density": 0.001, + "force": { + "#": 8861 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 403, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8862 + }, + "positionImpulse": { + "#": 8863 + }, + "positionPrev": { + "#": 8864 + }, + "region": { + "#": 8865 + }, + "render": { + "#": 8866 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8868 + }, + "vertices": { + "#": 8869 + } + }, + [ + { + "#": 8854 + }, + { + "#": 8855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8857 + }, + "min": { + "#": 8858 + } + }, + { + "x": 700, + "y": 534.2944361454107 + }, + { + "x": 675, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 687.5, + "y": 519.6494775484413 + }, + { + "endCol": 14, + "endRow": 11, + "id": "14,14,10,11", + "startCol": 14, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8867 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8870 + }, + { + "#": 8871 + }, + { + "#": 8872 + }, + { + "#": 8873 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8875 + }, + "bounds": { + "#": 8878 + }, + "collisionFilter": { + "#": 8881 + }, + "constraintImpulse": { + "#": 8882 + }, + "density": 0.001, + "force": { + "#": 8883 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 404, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8884 + }, + "positionImpulse": { + "#": 8885 + }, + "positionPrev": { + "#": 8886 + }, + "region": { + "#": 8887 + }, + "render": { + "#": 8888 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.1266394175647276, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8890 + }, + "vertices": { + "#": 8891 + } + }, + [ + { + "#": 8876 + }, + { + "#": 8877 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8879 + }, + "min": { + "#": 8880 + } + }, + { + "x": 725, + "y": 534.2944361454107 + }, + { + "x": 700, + "y": 508.1677967278454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 520.6677967278457 + }, + { + "x": 0, + "y": 0.3424959364801999 + }, + { + "x": 712.5, + "y": 519.6494775484413 + }, + { + "endCol": 15, + "endRow": 11, + "id": "14,15,10,11", + "startCol": 14, + "startRow": 10 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8889 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8645529668849576 + }, + [ + { + "#": 8892 + }, + { + "#": 8893 + }, + { + "#": 8894 + }, + { + "#": 8895 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 508.1677967278454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 533.1677967278459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 533.1677967278459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8897 + }, + "bounds": { + "#": 8900 + }, + "collisionFilter": { + "#": 8903 + }, + "constraintImpulse": { + "#": 8904 + }, + "density": 0.001, + "force": { + "#": 8905 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 405, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8906 + }, + "positionImpulse": { + "#": 8907 + }, + "positionPrev": { + "#": 8908 + }, + "region": { + "#": 8909 + }, + "render": { + "#": 8910 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8912 + }, + "vertices": { + "#": 8913 + } + }, + [ + { + "#": 8898 + }, + { + "#": 8899 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8901 + }, + "min": { + "#": 8902 + } + }, + { + "x": 125, + "y": 558.052638680192 + }, + { + "x": 100, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 543.8668349069375 + }, + { + "endCol": 2, + "endRow": 11, + "id": "2,2,11,11", + "startCol": 2, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 8911 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 8914 + }, + { + "#": 8915 + }, + { + "#": 8916 + }, + { + "#": 8917 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8919 + }, + "bounds": { + "#": 8922 + }, + "collisionFilter": { + "#": 8925 + }, + "constraintImpulse": { + "#": 8926 + }, + "density": 0.001, + "force": { + "#": 8927 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 406, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8928 + }, + "positionImpulse": { + "#": 8929 + }, + "positionPrev": { + "#": 8930 + }, + "region": { + "#": 8931 + }, + "render": { + "#": 8932 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8934 + }, + "vertices": { + "#": 8935 + } + }, + [ + { + "#": 8920 + }, + { + "#": 8921 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8923 + }, + "min": { + "#": 8924 + } + }, + { + "x": 150, + "y": 558.052638680192 + }, + { + "x": 125, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 543.8668349069375 + }, + { + "endCol": 3, + "endRow": 11, + "id": "2,3,11,11", + "startCol": 2, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8933 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 8936 + }, + { + "#": 8937 + }, + { + "#": 8938 + }, + { + "#": 8939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8941 + }, + "bounds": { + "#": 8944 + }, + "collisionFilter": { + "#": 8947 + }, + "constraintImpulse": { + "#": 8948 + }, + "density": 0.001, + "force": { + "#": 8949 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 407, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8950 + }, + "positionImpulse": { + "#": 8951 + }, + "positionPrev": { + "#": 8952 + }, + "region": { + "#": 8953 + }, + "render": { + "#": 8954 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8956 + }, + "vertices": { + "#": 8957 + } + }, + [ + { + "#": 8942 + }, + { + "#": 8943 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8945 + }, + "min": { + "#": 8946 + } + }, + { + "x": 175, + "y": 558.052638680192 + }, + { + "x": 150, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 543.8668349069375 + }, + { + "endCol": 3, + "endRow": 11, + "id": "3,3,11,11", + "startCol": 3, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 8955 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 8958 + }, + { + "#": 8959 + }, + { + "#": 8960 + }, + { + "#": 8961 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8963 + }, + "bounds": { + "#": 8966 + }, + "collisionFilter": { + "#": 8969 + }, + "constraintImpulse": { + "#": 8970 + }, + "density": 0.001, + "force": { + "#": 8971 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 408, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8972 + }, + "positionImpulse": { + "#": 8973 + }, + "positionPrev": { + "#": 8974 + }, + "region": { + "#": 8975 + }, + "render": { + "#": 8976 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 8978 + }, + "vertices": { + "#": 8979 + } + }, + [ + { + "#": 8964 + }, + { + "#": 8965 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8967 + }, + "min": { + "#": 8968 + } + }, + { + "x": 200, + "y": 558.052638680192 + }, + { + "x": 175, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 543.8668349069375 + }, + { + "endCol": 4, + "endRow": 11, + "id": "3,4,11,11", + "startCol": 3, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 8977 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 8980 + }, + { + "#": 8981 + }, + { + "#": 8982 + }, + { + "#": 8983 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 8985 + }, + "bounds": { + "#": 8988 + }, + "collisionFilter": { + "#": 8991 + }, + "constraintImpulse": { + "#": 8992 + }, + "density": 0.001, + "force": { + "#": 8993 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 409, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 8994 + }, + "positionImpulse": { + "#": 8995 + }, + "positionPrev": { + "#": 8996 + }, + "region": { + "#": 8997 + }, + "render": { + "#": 8998 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9000 + }, + "vertices": { + "#": 9001 + } + }, + [ + { + "#": 8986 + }, + { + "#": 8987 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 8989 + }, + "min": { + "#": 8990 + } + }, + { + "x": 225, + "y": 558.052638680192 + }, + { + "x": 200, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 543.8668349069375 + }, + { + "endCol": 4, + "endRow": 11, + "id": "4,4,11,11", + "startCol": 4, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 8999 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9002 + }, + { + "#": 9003 + }, + { + "#": 9004 + }, + { + "#": 9005 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9007 + }, + "bounds": { + "#": 9010 + }, + "collisionFilter": { + "#": 9013 + }, + "constraintImpulse": { + "#": 9014 + }, + "density": 0.001, + "force": { + "#": 9015 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 410, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9016 + }, + "positionImpulse": { + "#": 9017 + }, + "positionPrev": { + "#": 9018 + }, + "region": { + "#": 9019 + }, + "render": { + "#": 9020 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9022 + }, + "vertices": { + "#": 9023 + } + }, + [ + { + "#": 9008 + }, + { + "#": 9009 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9011 + }, + "min": { + "#": 9012 + } + }, + { + "x": 250, + "y": 558.052638680192 + }, + { + "x": 225, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 543.8668349069375 + }, + { + "endCol": 5, + "endRow": 11, + "id": "4,5,11,11", + "startCol": 4, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9021 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9024 + }, + { + "#": 9025 + }, + { + "#": 9026 + }, + { + "#": 9027 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9029 + }, + "bounds": { + "#": 9032 + }, + "collisionFilter": { + "#": 9035 + }, + "constraintImpulse": { + "#": 9036 + }, + "density": 0.001, + "force": { + "#": 9037 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 411, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9038 + }, + "positionImpulse": { + "#": 9039 + }, + "positionPrev": { + "#": 9040 + }, + "region": { + "#": 9041 + }, + "render": { + "#": 9042 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9044 + }, + "vertices": { + "#": 9045 + } + }, + [ + { + "#": 9030 + }, + { + "#": 9031 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9033 + }, + "min": { + "#": 9034 + } + }, + { + "x": 275, + "y": 558.052638680192 + }, + { + "x": 250, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 543.8668349069375 + }, + { + "endCol": 5, + "endRow": 11, + "id": "5,5,11,11", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9043 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9046 + }, + { + "#": 9047 + }, + { + "#": 9048 + }, + { + "#": 9049 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9051 + }, + "bounds": { + "#": 9054 + }, + "collisionFilter": { + "#": 9057 + }, + "constraintImpulse": { + "#": 9058 + }, + "density": 0.001, + "force": { + "#": 9059 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 412, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9060 + }, + "positionImpulse": { + "#": 9061 + }, + "positionPrev": { + "#": 9062 + }, + "region": { + "#": 9063 + }, + "render": { + "#": 9064 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9066 + }, + "vertices": { + "#": 9067 + } + }, + [ + { + "#": 9052 + }, + { + "#": 9053 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9055 + }, + "min": { + "#": 9056 + } + }, + { + "x": 300, + "y": 558.052638680192 + }, + { + "x": 275, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 543.8668349069375 + }, + { + "endCol": 6, + "endRow": 11, + "id": "5,6,11,11", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9065 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9068 + }, + { + "#": 9069 + }, + { + "#": 9070 + }, + { + "#": 9071 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9073 + }, + "bounds": { + "#": 9076 + }, + "collisionFilter": { + "#": 9079 + }, + "constraintImpulse": { + "#": 9080 + }, + "density": 0.001, + "force": { + "#": 9081 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 413, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9082 + }, + "positionImpulse": { + "#": 9083 + }, + "positionPrev": { + "#": 9084 + }, + "region": { + "#": 9085 + }, + "render": { + "#": 9086 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9088 + }, + "vertices": { + "#": 9089 + } + }, + [ + { + "#": 9074 + }, + { + "#": 9075 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9077 + }, + "min": { + "#": 9078 + } + }, + { + "x": 325, + "y": 558.052638680192 + }, + { + "x": 300, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 543.8668349069375 + }, + { + "endCol": 6, + "endRow": 11, + "id": "6,6,11,11", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9087 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9090 + }, + { + "#": 9091 + }, + { + "#": 9092 + }, + { + "#": 9093 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9095 + }, + "bounds": { + "#": 9098 + }, + "collisionFilter": { + "#": 9101 + }, + "constraintImpulse": { + "#": 9102 + }, + "density": 0.001, + "force": { + "#": 9103 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 414, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9104 + }, + "positionImpulse": { + "#": 9105 + }, + "positionPrev": { + "#": 9106 + }, + "region": { + "#": 9107 + }, + "render": { + "#": 9108 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9110 + }, + "vertices": { + "#": 9111 + } + }, + [ + { + "#": 9096 + }, + { + "#": 9097 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9099 + }, + "min": { + "#": 9100 + } + }, + { + "x": 350, + "y": 558.052638680192 + }, + { + "x": 325, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 543.8668349069375 + }, + { + "endCol": 7, + "endRow": 11, + "id": "6,7,11,11", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9109 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9112 + }, + { + "#": 9113 + }, + { + "#": 9114 + }, + { + "#": 9115 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9117 + }, + "bounds": { + "#": 9120 + }, + "collisionFilter": { + "#": 9123 + }, + "constraintImpulse": { + "#": 9124 + }, + "density": 0.001, + "force": { + "#": 9125 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 415, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9126 + }, + "positionImpulse": { + "#": 9127 + }, + "positionPrev": { + "#": 9128 + }, + "region": { + "#": 9129 + }, + "render": { + "#": 9130 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9132 + }, + "vertices": { + "#": 9133 + } + }, + [ + { + "#": 9118 + }, + { + "#": 9119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9121 + }, + "min": { + "#": 9122 + } + }, + { + "x": 375, + "y": 558.052638680192 + }, + { + "x": 350, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 543.8668349069375 + }, + { + "endCol": 7, + "endRow": 11, + "id": "7,7,11,11", + "startCol": 7, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9131 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9134 + }, + { + "#": 9135 + }, + { + "#": 9136 + }, + { + "#": 9137 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9139 + }, + "bounds": { + "#": 9142 + }, + "collisionFilter": { + "#": 9145 + }, + "constraintImpulse": { + "#": 9146 + }, + "density": 0.001, + "force": { + "#": 9147 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 416, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9148 + }, + "positionImpulse": { + "#": 9149 + }, + "positionPrev": { + "#": 9150 + }, + "region": { + "#": 9151 + }, + "render": { + "#": 9152 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9154 + }, + "vertices": { + "#": 9155 + } + }, + [ + { + "#": 9140 + }, + { + "#": 9141 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9143 + }, + "min": { + "#": 9144 + } + }, + { + "x": 400, + "y": 558.052638680192 + }, + { + "x": 375, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 543.8668349069375 + }, + { + "endCol": 8, + "endRow": 11, + "id": "7,8,11,11", + "startCol": 7, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9153 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9156 + }, + { + "#": 9157 + }, + { + "#": 9158 + }, + { + "#": 9159 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9161 + }, + "bounds": { + "#": 9164 + }, + "collisionFilter": { + "#": 9167 + }, + "constraintImpulse": { + "#": 9168 + }, + "density": 0.001, + "force": { + "#": 9169 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 417, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9170 + }, + "positionImpulse": { + "#": 9171 + }, + "positionPrev": { + "#": 9172 + }, + "region": { + "#": 9173 + }, + "render": { + "#": 9174 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9176 + }, + "vertices": { + "#": 9177 + } + }, + [ + { + "#": 9162 + }, + { + "#": 9163 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9165 + }, + "min": { + "#": 9166 + } + }, + { + "x": 425, + "y": 558.052638680192 + }, + { + "x": 400, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 543.8668349069375 + }, + { + "endCol": 8, + "endRow": 11, + "id": "8,8,11,11", + "startCol": 8, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9175 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9178 + }, + { + "#": 9179 + }, + { + "#": 9180 + }, + { + "#": 9181 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9183 + }, + "bounds": { + "#": 9186 + }, + "collisionFilter": { + "#": 9189 + }, + "constraintImpulse": { + "#": 9190 + }, + "density": 0.001, + "force": { + "#": 9191 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 418, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9192 + }, + "positionImpulse": { + "#": 9193 + }, + "positionPrev": { + "#": 9194 + }, + "region": { + "#": 9195 + }, + "render": { + "#": 9196 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9198 + }, + "vertices": { + "#": 9199 + } + }, + [ + { + "#": 9184 + }, + { + "#": 9185 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9187 + }, + "min": { + "#": 9188 + } + }, + { + "x": 450, + "y": 558.052638680192 + }, + { + "x": 425, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 543.8668349069375 + }, + { + "endCol": 9, + "endRow": 11, + "id": "8,9,11,11", + "startCol": 8, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9197 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9200 + }, + { + "#": 9201 + }, + { + "#": 9202 + }, + { + "#": 9203 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9205 + }, + "bounds": { + "#": 9208 + }, + "collisionFilter": { + "#": 9211 + }, + "constraintImpulse": { + "#": 9212 + }, + "density": 0.001, + "force": { + "#": 9213 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 419, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9214 + }, + "positionImpulse": { + "#": 9215 + }, + "positionPrev": { + "#": 9216 + }, + "region": { + "#": 9217 + }, + "render": { + "#": 9218 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9220 + }, + "vertices": { + "#": 9221 + } + }, + [ + { + "#": 9206 + }, + { + "#": 9207 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9209 + }, + "min": { + "#": 9210 + } + }, + { + "x": 475, + "y": 558.052638680192 + }, + { + "x": 450, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 543.8668349069375 + }, + { + "endCol": 9, + "endRow": 11, + "id": "9,9,11,11", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9219 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9222 + }, + { + "#": 9223 + }, + { + "#": 9224 + }, + { + "#": 9225 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9227 + }, + "bounds": { + "#": 9230 + }, + "collisionFilter": { + "#": 9233 + }, + "constraintImpulse": { + "#": 9234 + }, + "density": 0.001, + "force": { + "#": 9235 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 420, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9236 + }, + "positionImpulse": { + "#": 9237 + }, + "positionPrev": { + "#": 9238 + }, + "region": { + "#": 9239 + }, + "render": { + "#": 9240 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9242 + }, + "vertices": { + "#": 9243 + } + }, + [ + { + "#": 9228 + }, + { + "#": 9229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9231 + }, + "min": { + "#": 9232 + } + }, + { + "x": 500, + "y": 558.052638680192 + }, + { + "x": 475, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 543.8668349069375 + }, + { + "endCol": 10, + "endRow": 11, + "id": "9,10,11,11", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9241 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9244 + }, + { + "#": 9245 + }, + { + "#": 9246 + }, + { + "#": 9247 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9249 + }, + "bounds": { + "#": 9252 + }, + "collisionFilter": { + "#": 9255 + }, + "constraintImpulse": { + "#": 9256 + }, + "density": 0.001, + "force": { + "#": 9257 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 421, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9258 + }, + "positionImpulse": { + "#": 9259 + }, + "positionPrev": { + "#": 9260 + }, + "region": { + "#": 9261 + }, + "render": { + "#": 9262 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9264 + }, + "vertices": { + "#": 9265 + } + }, + [ + { + "#": 9250 + }, + { + "#": 9251 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9253 + }, + "min": { + "#": 9254 + } + }, + { + "x": 525, + "y": 558.052638680192 + }, + { + "x": 500, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 543.8668349069375 + }, + { + "endCol": 10, + "endRow": 11, + "id": "10,10,11,11", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9263 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9266 + }, + { + "#": 9267 + }, + { + "#": 9268 + }, + { + "#": 9269 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9271 + }, + "bounds": { + "#": 9274 + }, + "collisionFilter": { + "#": 9277 + }, + "constraintImpulse": { + "#": 9278 + }, + "density": 0.001, + "force": { + "#": 9279 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 422, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9280 + }, + "positionImpulse": { + "#": 9281 + }, + "positionPrev": { + "#": 9282 + }, + "region": { + "#": 9283 + }, + "render": { + "#": 9284 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9286 + }, + "vertices": { + "#": 9287 + } + }, + [ + { + "#": 9272 + }, + { + "#": 9273 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9275 + }, + "min": { + "#": 9276 + } + }, + { + "x": 550, + "y": 558.052638680192 + }, + { + "x": 525, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 543.8668349069375 + }, + { + "endCol": 11, + "endRow": 11, + "id": "10,11,11,11", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9285 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9288 + }, + { + "#": 9289 + }, + { + "#": 9290 + }, + { + "#": 9291 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9293 + }, + "bounds": { + "#": 9296 + }, + "collisionFilter": { + "#": 9299 + }, + "constraintImpulse": { + "#": 9300 + }, + "density": 0.001, + "force": { + "#": 9301 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 423, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9302 + }, + "positionImpulse": { + "#": 9303 + }, + "positionPrev": { + "#": 9304 + }, + "region": { + "#": 9305 + }, + "render": { + "#": 9306 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9308 + }, + "vertices": { + "#": 9309 + } + }, + [ + { + "#": 9294 + }, + { + "#": 9295 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9297 + }, + "min": { + "#": 9298 + } + }, + { + "x": 575, + "y": 558.052638680192 + }, + { + "x": 550, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 543.8668349069375 + }, + { + "endCol": 11, + "endRow": 11, + "id": "11,11,11,11", + "startCol": 11, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9307 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9310 + }, + { + "#": 9311 + }, + { + "#": 9312 + }, + { + "#": 9313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9315 + }, + "bounds": { + "#": 9318 + }, + "collisionFilter": { + "#": 9321 + }, + "constraintImpulse": { + "#": 9322 + }, + "density": 0.001, + "force": { + "#": 9323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 424, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9324 + }, + "positionImpulse": { + "#": 9325 + }, + "positionPrev": { + "#": 9326 + }, + "region": { + "#": 9327 + }, + "render": { + "#": 9328 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9330 + }, + "vertices": { + "#": 9331 + } + }, + [ + { + "#": 9316 + }, + { + "#": 9317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9319 + }, + "min": { + "#": 9320 + } + }, + { + "x": 600, + "y": 558.052638680192 + }, + { + "x": 575, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 543.8668349069375 + }, + { + "endCol": 12, + "endRow": 11, + "id": "11,12,11,11", + "startCol": 11, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9329 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9332 + }, + { + "#": 9333 + }, + { + "#": 9334 + }, + { + "#": 9335 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9337 + }, + "bounds": { + "#": 9340 + }, + "collisionFilter": { + "#": 9343 + }, + "constraintImpulse": { + "#": 9344 + }, + "density": 0.001, + "force": { + "#": 9345 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 425, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9346 + }, + "positionImpulse": { + "#": 9347 + }, + "positionPrev": { + "#": 9348 + }, + "region": { + "#": 9349 + }, + "render": { + "#": 9350 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9352 + }, + "vertices": { + "#": 9353 + } + }, + [ + { + "#": 9338 + }, + { + "#": 9339 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9341 + }, + "min": { + "#": 9342 + } + }, + { + "x": 625, + "y": 558.052638680192 + }, + { + "x": 600, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 543.8668349069375 + }, + { + "endCol": 13, + "endRow": 11, + "id": "12,13,11,11", + "startCol": 12, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9351 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9354 + }, + { + "#": 9355 + }, + { + "#": 9356 + }, + { + "#": 9357 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9359 + }, + "bounds": { + "#": 9362 + }, + "collisionFilter": { + "#": 9365 + }, + "constraintImpulse": { + "#": 9366 + }, + "density": 0.001, + "force": { + "#": 9367 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 426, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9368 + }, + "positionImpulse": { + "#": 9369 + }, + "positionPrev": { + "#": 9370 + }, + "region": { + "#": 9371 + }, + "render": { + "#": 9372 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9374 + }, + "vertices": { + "#": 9375 + } + }, + [ + { + "#": 9360 + }, + { + "#": 9361 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9363 + }, + "min": { + "#": 9364 + } + }, + { + "x": 650, + "y": 558.052638680192 + }, + { + "x": 625, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 543.8668349069375 + }, + { + "endCol": 13, + "endRow": 11, + "id": "13,13,11,11", + "startCol": 13, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9373 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9376 + }, + { + "#": 9377 + }, + { + "#": 9378 + }, + { + "#": 9379 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9381 + }, + "bounds": { + "#": 9384 + }, + "collisionFilter": { + "#": 9387 + }, + "constraintImpulse": { + "#": 9388 + }, + "density": 0.001, + "force": { + "#": 9389 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 427, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9390 + }, + "positionImpulse": { + "#": 9391 + }, + "positionPrev": { + "#": 9392 + }, + "region": { + "#": 9393 + }, + "render": { + "#": 9394 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9396 + }, + "vertices": { + "#": 9397 + } + }, + [ + { + "#": 9382 + }, + { + "#": 9383 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9385 + }, + "min": { + "#": 9386 + } + }, + { + "x": 675, + "y": 558.052638680192 + }, + { + "x": 650, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 543.8668349069375 + }, + { + "endCol": 14, + "endRow": 11, + "id": "13,14,11,11", + "startCol": 13, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9395 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9398 + }, + { + "#": 9399 + }, + { + "#": 9400 + }, + { + "#": 9401 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9403 + }, + "bounds": { + "#": 9406 + }, + "collisionFilter": { + "#": 9409 + }, + "constraintImpulse": { + "#": 9410 + }, + "density": 0.001, + "force": { + "#": 9411 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 428, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9412 + }, + "positionImpulse": { + "#": 9413 + }, + "positionPrev": { + "#": 9414 + }, + "region": { + "#": 9415 + }, + "render": { + "#": 9416 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9418 + }, + "vertices": { + "#": 9419 + } + }, + [ + { + "#": 9404 + }, + { + "#": 9405 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9407 + }, + "min": { + "#": 9408 + } + }, + { + "x": 700, + "y": 558.052638680192 + }, + { + "x": 675, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 543.8668349069375 + }, + { + "endCol": 14, + "endRow": 11, + "id": "14,14,11,11", + "startCol": 14, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9417 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9420 + }, + { + "#": 9421 + }, + { + "#": 9422 + }, + { + "#": 9423 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9425 + }, + "bounds": { + "#": 9428 + }, + "collisionFilter": { + "#": 9431 + }, + "constraintImpulse": { + "#": 9432 + }, + "density": 0.001, + "force": { + "#": 9433 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 429, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9434 + }, + "positionImpulse": { + "#": 9435 + }, + "positionPrev": { + "#": 9436 + }, + "region": { + "#": 9437 + }, + "render": { + "#": 9438 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0088033091126314, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9440 + }, + "vertices": { + "#": 9441 + } + }, + [ + { + "#": 9426 + }, + { + "#": 9427 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9429 + }, + "min": { + "#": 9430 + } + }, + { + "x": 725, + "y": 558.052638680192 + }, + { + "x": 700, + "y": 532.0438353710794 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 544.5438353710794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 543.8668349069375 + }, + { + "endCol": 15, + "endRow": 11, + "id": "14,15,11,11", + "startCol": 14, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9439 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.42693046048430006 + }, + [ + { + "#": 9442 + }, + { + "#": 9443 + }, + { + "#": 9444 + }, + { + "#": 9445 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 532.0438353710794 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 557.0438353710794 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 557.0438353710794 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9447 + }, + "bounds": { + "#": 9450 + }, + "collisionFilter": { + "#": 9453 + }, + "constraintImpulse": { + "#": 9454 + }, + "density": 0.001, + "force": { + "#": 9455 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 430, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9456 + }, + "positionImpulse": { + "#": 9457 + }, + "positionPrev": { + "#": 9458 + }, + "region": { + "#": 9459 + }, + "render": { + "#": 9460 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9462 + }, + "vertices": { + "#": 9463 + } + }, + [ + { + "#": 9448 + }, + { + "#": 9449 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9451 + }, + "min": { + "#": 9452 + } + }, + { + "x": 125, + "y": 581.215410937483 + }, + { + "x": 100, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.5, + "y": 567.7982078509692 + }, + { + "endCol": 2, + "endRow": 12, + "id": "2,2,11,12", + "startCol": 2, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9461 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9464 + }, + { + "#": 9465 + }, + { + "#": 9466 + }, + { + "#": 9467 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 100, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 125, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 125, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 100, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9469 + }, + "bounds": { + "#": 9472 + }, + "collisionFilter": { + "#": 9475 + }, + "constraintImpulse": { + "#": 9476 + }, + "density": 0.001, + "force": { + "#": 9477 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 431, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9478 + }, + "positionImpulse": { + "#": 9479 + }, + "positionPrev": { + "#": 9480 + }, + "region": { + "#": 9481 + }, + "render": { + "#": 9482 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9484 + }, + "vertices": { + "#": 9485 + } + }, + [ + { + "#": 9470 + }, + { + "#": 9471 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9473 + }, + "min": { + "#": 9474 + } + }, + { + "x": 150, + "y": 581.215410937483 + }, + { + "x": 125, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 137.5, + "y": 567.7982078509692 + }, + { + "endCol": 3, + "endRow": 12, + "id": "2,3,11,12", + "startCol": 2, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9483 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9486 + }, + { + "#": 9487 + }, + { + "#": 9488 + }, + { + "#": 9489 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 150, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 150, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9491 + }, + "bounds": { + "#": 9494 + }, + "collisionFilter": { + "#": 9497 + }, + "constraintImpulse": { + "#": 9498 + }, + "density": 0.001, + "force": { + "#": 9499 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 432, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9500 + }, + "positionImpulse": { + "#": 9501 + }, + "positionPrev": { + "#": 9502 + }, + "region": { + "#": 9503 + }, + "render": { + "#": 9504 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9506 + }, + "vertices": { + "#": 9507 + } + }, + [ + { + "#": 9492 + }, + { + "#": 9493 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9495 + }, + "min": { + "#": 9496 + } + }, + { + "x": 175, + "y": 581.215410937483 + }, + { + "x": 150, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.5, + "y": 567.7982078509692 + }, + { + "endCol": 3, + "endRow": 12, + "id": "3,3,11,12", + "startCol": 3, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9505 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9508 + }, + { + "#": 9509 + }, + { + "#": 9510 + }, + { + "#": 9511 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 150, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 175, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 175, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 150, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9513 + }, + "bounds": { + "#": 9516 + }, + "collisionFilter": { + "#": 9519 + }, + "constraintImpulse": { + "#": 9520 + }, + "density": 0.001, + "force": { + "#": 9521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 433, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9522 + }, + "positionImpulse": { + "#": 9523 + }, + "positionPrev": { + "#": 9524 + }, + "region": { + "#": 9525 + }, + "render": { + "#": 9526 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9528 + }, + "vertices": { + "#": 9529 + } + }, + [ + { + "#": 9514 + }, + { + "#": 9515 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9517 + }, + "min": { + "#": 9518 + } + }, + { + "x": 200, + "y": 581.215410937483 + }, + { + "x": 175, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 187.5, + "y": 567.7982078509692 + }, + { + "endCol": 4, + "endRow": 12, + "id": "3,4,11,12", + "startCol": 3, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9527 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9530 + }, + { + "#": 9531 + }, + { + "#": 9532 + }, + { + "#": 9533 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 175, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 200, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 200, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 175, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9535 + }, + "bounds": { + "#": 9538 + }, + "collisionFilter": { + "#": 9541 + }, + "constraintImpulse": { + "#": 9542 + }, + "density": 0.001, + "force": { + "#": 9543 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 434, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9544 + }, + "positionImpulse": { + "#": 9545 + }, + "positionPrev": { + "#": 9546 + }, + "region": { + "#": 9547 + }, + "render": { + "#": 9548 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9550 + }, + "vertices": { + "#": 9551 + } + }, + [ + { + "#": 9536 + }, + { + "#": 9537 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9539 + }, + "min": { + "#": 9540 + } + }, + { + "x": 225, + "y": 581.215410937483 + }, + { + "x": 200, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 212.5, + "y": 567.7982078509692 + }, + { + "endCol": 4, + "endRow": 12, + "id": "4,4,11,12", + "startCol": 4, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9549 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9552 + }, + { + "#": 9553 + }, + { + "#": 9554 + }, + { + "#": 9555 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 200, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 225, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 225, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9557 + }, + "bounds": { + "#": 9560 + }, + "collisionFilter": { + "#": 9563 + }, + "constraintImpulse": { + "#": 9564 + }, + "density": 0.001, + "force": { + "#": 9565 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 435, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9566 + }, + "positionImpulse": { + "#": 9567 + }, + "positionPrev": { + "#": 9568 + }, + "region": { + "#": 9569 + }, + "render": { + "#": 9570 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9572 + }, + "vertices": { + "#": 9573 + } + }, + [ + { + "#": 9558 + }, + { + "#": 9559 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9561 + }, + "min": { + "#": 9562 + } + }, + { + "x": 250, + "y": 581.215410937483 + }, + { + "x": 225, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 237.5, + "y": 567.7982078509692 + }, + { + "endCol": 5, + "endRow": 12, + "id": "4,5,11,12", + "startCol": 4, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9571 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9574 + }, + { + "#": 9575 + }, + { + "#": 9576 + }, + { + "#": 9577 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 225, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 225, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9579 + }, + "bounds": { + "#": 9582 + }, + "collisionFilter": { + "#": 9585 + }, + "constraintImpulse": { + "#": 9586 + }, + "density": 0.001, + "force": { + "#": 9587 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 436, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9588 + }, + "positionImpulse": { + "#": 9589 + }, + "positionPrev": { + "#": 9590 + }, + "region": { + "#": 9591 + }, + "render": { + "#": 9592 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9594 + }, + "vertices": { + "#": 9595 + } + }, + [ + { + "#": 9580 + }, + { + "#": 9581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9583 + }, + "min": { + "#": 9584 + } + }, + { + "x": 275, + "y": 581.215410937483 + }, + { + "x": 250, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 262.5, + "y": 567.7982078509692 + }, + { + "endCol": 5, + "endRow": 12, + "id": "5,5,11,12", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9593 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9596 + }, + { + "#": 9597 + }, + { + "#": 9598 + }, + { + "#": 9599 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 250, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 275, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 275, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 250, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9601 + }, + "bounds": { + "#": 9604 + }, + "collisionFilter": { + "#": 9607 + }, + "constraintImpulse": { + "#": 9608 + }, + "density": 0.001, + "force": { + "#": 9609 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 437, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9610 + }, + "positionImpulse": { + "#": 9611 + }, + "positionPrev": { + "#": 9612 + }, + "region": { + "#": 9613 + }, + "render": { + "#": 9614 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9616 + }, + "vertices": { + "#": 9617 + } + }, + [ + { + "#": 9602 + }, + { + "#": 9603 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9605 + }, + "min": { + "#": 9606 + } + }, + { + "x": 300, + "y": 581.215410937483 + }, + { + "x": 275, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.5, + "y": 567.7982078509692 + }, + { + "endCol": 6, + "endRow": 12, + "id": "5,6,11,12", + "startCol": 5, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9615 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9618 + }, + { + "#": 9619 + }, + { + "#": 9620 + }, + { + "#": 9621 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 275, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 300, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 300, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 275, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9623 + }, + "bounds": { + "#": 9626 + }, + "collisionFilter": { + "#": 9629 + }, + "constraintImpulse": { + "#": 9630 + }, + "density": 0.001, + "force": { + "#": 9631 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 438, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9632 + }, + "positionImpulse": { + "#": 9633 + }, + "positionPrev": { + "#": 9634 + }, + "region": { + "#": 9635 + }, + "render": { + "#": 9636 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9638 + }, + "vertices": { + "#": 9639 + } + }, + [ + { + "#": 9624 + }, + { + "#": 9625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9627 + }, + "min": { + "#": 9628 + } + }, + { + "x": 325, + "y": 581.215410937483 + }, + { + "x": 300, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 312.5, + "y": 567.7982078509692 + }, + { + "endCol": 6, + "endRow": 12, + "id": "6,6,11,12", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9637 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9640 + }, + { + "#": 9641 + }, + { + "#": 9642 + }, + { + "#": 9643 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 300, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 325, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 325, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 300, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9645 + }, + "bounds": { + "#": 9648 + }, + "collisionFilter": { + "#": 9651 + }, + "constraintImpulse": { + "#": 9652 + }, + "density": 0.001, + "force": { + "#": 9653 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 439, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9654 + }, + "positionImpulse": { + "#": 9655 + }, + "positionPrev": { + "#": 9656 + }, + "region": { + "#": 9657 + }, + "render": { + "#": 9658 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9660 + }, + "vertices": { + "#": 9661 + } + }, + [ + { + "#": 9646 + }, + { + "#": 9647 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9649 + }, + "min": { + "#": 9650 + } + }, + { + "x": 350, + "y": 581.215410937483 + }, + { + "x": 325, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 337.5, + "y": 567.7982078509692 + }, + { + "endCol": 7, + "endRow": 12, + "id": "6,7,11,12", + "startCol": 6, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9659 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9662 + }, + { + "#": 9663 + }, + { + "#": 9664 + }, + { + "#": 9665 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 325, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 350, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 350, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 325, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9667 + }, + "bounds": { + "#": 9670 + }, + "collisionFilter": { + "#": 9673 + }, + "constraintImpulse": { + "#": 9674 + }, + "density": 0.001, + "force": { + "#": 9675 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 440, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9676 + }, + "positionImpulse": { + "#": 9677 + }, + "positionPrev": { + "#": 9678 + }, + "region": { + "#": 9679 + }, + "render": { + "#": 9680 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9682 + }, + "vertices": { + "#": 9683 + } + }, + [ + { + "#": 9668 + }, + { + "#": 9669 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9671 + }, + "min": { + "#": 9672 + } + }, + { + "x": 375, + "y": 581.215410937483 + }, + { + "x": 350, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 362.5, + "y": 567.7982078509692 + }, + { + "endCol": 7, + "endRow": 12, + "id": "7,7,11,12", + "startCol": 7, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9681 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9684 + }, + { + "#": 9685 + }, + { + "#": 9686 + }, + { + "#": 9687 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 350, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 375, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 375, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 350, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9689 + }, + "bounds": { + "#": 9692 + }, + "collisionFilter": { + "#": 9695 + }, + "constraintImpulse": { + "#": 9696 + }, + "density": 0.001, + "force": { + "#": 9697 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 441, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9698 + }, + "positionImpulse": { + "#": 9699 + }, + "positionPrev": { + "#": 9700 + }, + "region": { + "#": 9701 + }, + "render": { + "#": 9702 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9704 + }, + "vertices": { + "#": 9705 + } + }, + [ + { + "#": 9690 + }, + { + "#": 9691 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9693 + }, + "min": { + "#": 9694 + } + }, + { + "x": 400, + "y": 581.215410937483 + }, + { + "x": 375, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 387.5, + "y": 567.7982078509692 + }, + { + "endCol": 8, + "endRow": 12, + "id": "7,8,11,12", + "startCol": 7, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9703 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9706 + }, + { + "#": 9707 + }, + { + "#": 9708 + }, + { + "#": 9709 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 375, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 400, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 375, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9711 + }, + "bounds": { + "#": 9714 + }, + "collisionFilter": { + "#": 9717 + }, + "constraintImpulse": { + "#": 9718 + }, + "density": 0.001, + "force": { + "#": 9719 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 442, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9720 + }, + "positionImpulse": { + "#": 9721 + }, + "positionPrev": { + "#": 9722 + }, + "region": { + "#": 9723 + }, + "render": { + "#": 9724 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9726 + }, + "vertices": { + "#": 9727 + } + }, + [ + { + "#": 9712 + }, + { + "#": 9713 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9715 + }, + "min": { + "#": 9716 + } + }, + { + "x": 425, + "y": 581.215410937483 + }, + { + "x": 400, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 412.5, + "y": 567.7982078509692 + }, + { + "endCol": 8, + "endRow": 12, + "id": "8,8,11,12", + "startCol": 8, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9725 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9728 + }, + { + "#": 9729 + }, + { + "#": 9730 + }, + { + "#": 9731 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 425, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 425, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9733 + }, + "bounds": { + "#": 9736 + }, + "collisionFilter": { + "#": 9739 + }, + "constraintImpulse": { + "#": 9740 + }, + "density": 0.001, + "force": { + "#": 9741 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 443, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9742 + }, + "positionImpulse": { + "#": 9743 + }, + "positionPrev": { + "#": 9744 + }, + "region": { + "#": 9745 + }, + "render": { + "#": 9746 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9748 + }, + "vertices": { + "#": 9749 + } + }, + [ + { + "#": 9734 + }, + { + "#": 9735 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9737 + }, + "min": { + "#": 9738 + } + }, + { + "x": 450, + "y": 581.215410937483 + }, + { + "x": 425, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.5, + "y": 567.7982078509692 + }, + { + "endCol": 9, + "endRow": 12, + "id": "8,9,11,12", + "startCol": 8, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9747 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9750 + }, + { + "#": 9751 + }, + { + "#": 9752 + }, + { + "#": 9753 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 450, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9755 + }, + "bounds": { + "#": 9758 + }, + "collisionFilter": { + "#": 9761 + }, + "constraintImpulse": { + "#": 9762 + }, + "density": 0.001, + "force": { + "#": 9763 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 444, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9764 + }, + "positionImpulse": { + "#": 9765 + }, + "positionPrev": { + "#": 9766 + }, + "region": { + "#": 9767 + }, + "render": { + "#": 9768 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9770 + }, + "vertices": { + "#": 9771 + } + }, + [ + { + "#": 9756 + }, + { + "#": 9757 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9759 + }, + "min": { + "#": 9760 + } + }, + { + "x": 475, + "y": 581.215410937483 + }, + { + "x": 450, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 462.5, + "y": 567.7982078509692 + }, + { + "endCol": 9, + "endRow": 12, + "id": "9,9,11,12", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9769 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9772 + }, + { + "#": 9773 + }, + { + "#": 9774 + }, + { + "#": 9775 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 450, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 475, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 475, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 450, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9777 + }, + "bounds": { + "#": 9780 + }, + "collisionFilter": { + "#": 9783 + }, + "constraintImpulse": { + "#": 9784 + }, + "density": 0.001, + "force": { + "#": 9785 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 445, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9786 + }, + "positionImpulse": { + "#": 9787 + }, + "positionPrev": { + "#": 9788 + }, + "region": { + "#": 9789 + }, + "render": { + "#": 9790 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9792 + }, + "vertices": { + "#": 9793 + } + }, + [ + { + "#": 9778 + }, + { + "#": 9779 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9781 + }, + "min": { + "#": 9782 + } + }, + { + "x": 500, + "y": 581.215410937483 + }, + { + "x": 475, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.5, + "y": 567.7982078509692 + }, + { + "endCol": 10, + "endRow": 12, + "id": "9,10,11,12", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9791 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9794 + }, + { + "#": 9795 + }, + { + "#": 9796 + }, + { + "#": 9797 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 475, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 500, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 500, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 475, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9799 + }, + "bounds": { + "#": 9802 + }, + "collisionFilter": { + "#": 9805 + }, + "constraintImpulse": { + "#": 9806 + }, + "density": 0.001, + "force": { + "#": 9807 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 446, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9808 + }, + "positionImpulse": { + "#": 9809 + }, + "positionPrev": { + "#": 9810 + }, + "region": { + "#": 9811 + }, + "render": { + "#": 9812 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9814 + }, + "vertices": { + "#": 9815 + } + }, + [ + { + "#": 9800 + }, + { + "#": 9801 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9803 + }, + "min": { + "#": 9804 + } + }, + { + "x": 525, + "y": 581.215410937483 + }, + { + "x": 500, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 512.5, + "y": 567.7982078509692 + }, + { + "endCol": 10, + "endRow": 12, + "id": "10,10,11,12", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 9813 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9816 + }, + { + "#": 9817 + }, + { + "#": 9818 + }, + { + "#": 9819 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 500, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 500, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9821 + }, + "bounds": { + "#": 9824 + }, + "collisionFilter": { + "#": 9827 + }, + "constraintImpulse": { + "#": 9828 + }, + "density": 0.001, + "force": { + "#": 9829 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 447, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9830 + }, + "positionImpulse": { + "#": 9831 + }, + "positionPrev": { + "#": 9832 + }, + "region": { + "#": 9833 + }, + "render": { + "#": 9834 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9836 + }, + "vertices": { + "#": 9837 + } + }, + [ + { + "#": 9822 + }, + { + "#": 9823 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9825 + }, + "min": { + "#": 9826 + } + }, + { + "x": 550, + "y": 581.215410937483 + }, + { + "x": 525, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 537.5, + "y": 567.7982078509692 + }, + { + "endCol": 11, + "endRow": 12, + "id": "10,11,11,12", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9835 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9838 + }, + { + "#": 9839 + }, + { + "#": 9840 + }, + { + "#": 9841 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 525, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 525, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9843 + }, + "bounds": { + "#": 9846 + }, + "collisionFilter": { + "#": 9849 + }, + "constraintImpulse": { + "#": 9850 + }, + "density": 0.001, + "force": { + "#": 9851 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 448, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9852 + }, + "positionImpulse": { + "#": 9853 + }, + "positionPrev": { + "#": 9854 + }, + "region": { + "#": 9855 + }, + "render": { + "#": 9856 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9858 + }, + "vertices": { + "#": 9859 + } + }, + [ + { + "#": 9844 + }, + { + "#": 9845 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9847 + }, + "min": { + "#": 9848 + } + }, + { + "x": 575, + "y": 581.215410937483 + }, + { + "x": 550, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 562.5, + "y": 567.7982078509692 + }, + { + "endCol": 11, + "endRow": 12, + "id": "11,11,11,12", + "startCol": 11, + "startRow": 11 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 9857 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9860 + }, + { + "#": 9861 + }, + { + "#": 9862 + }, + { + "#": 9863 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 575, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 575, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9865 + }, + "bounds": { + "#": 9868 + }, + "collisionFilter": { + "#": 9871 + }, + "constraintImpulse": { + "#": 9872 + }, + "density": 0.001, + "force": { + "#": 9873 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 449, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9874 + }, + "positionImpulse": { + "#": 9875 + }, + "positionPrev": { + "#": 9876 + }, + "region": { + "#": 9877 + }, + "render": { + "#": 9878 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9880 + }, + "vertices": { + "#": 9881 + } + }, + [ + { + "#": 9866 + }, + { + "#": 9867 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9869 + }, + "min": { + "#": 9870 + } + }, + { + "x": 600, + "y": 581.215410937483 + }, + { + "x": 575, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.5, + "y": 567.7982078509692 + }, + { + "endCol": 12, + "endRow": 12, + "id": "11,12,11,12", + "startCol": 11, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9879 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9882 + }, + { + "#": 9883 + }, + { + "#": 9884 + }, + { + "#": 9885 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 575, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 575, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9887 + }, + "bounds": { + "#": 9890 + }, + "collisionFilter": { + "#": 9893 + }, + "constraintImpulse": { + "#": 9894 + }, + "density": 0.001, + "force": { + "#": 9895 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 450, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9896 + }, + "positionImpulse": { + "#": 9897 + }, + "positionPrev": { + "#": 9898 + }, + "region": { + "#": 9899 + }, + "render": { + "#": 9900 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9902 + }, + "vertices": { + "#": 9903 + } + }, + [ + { + "#": 9888 + }, + { + "#": 9889 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9891 + }, + "min": { + "#": 9892 + } + }, + { + "x": 625, + "y": 581.215410937483 + }, + { + "x": 600, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 612.5, + "y": 567.7982078509692 + }, + { + "endCol": 13, + "endRow": 12, + "id": "12,13,11,12", + "startCol": 12, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9901 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9904 + }, + { + "#": 9905 + }, + { + "#": 9906 + }, + { + "#": 9907 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 600, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 625, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 600, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9909 + }, + "bounds": { + "#": 9912 + }, + "collisionFilter": { + "#": 9915 + }, + "constraintImpulse": { + "#": 9916 + }, + "density": 0.001, + "force": { + "#": 9917 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 451, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9918 + }, + "positionImpulse": { + "#": 9919 + }, + "positionPrev": { + "#": 9920 + }, + "region": { + "#": 9921 + }, + "render": { + "#": 9922 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9924 + }, + "vertices": { + "#": 9925 + } + }, + [ + { + "#": 9910 + }, + { + "#": 9911 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9913 + }, + "min": { + "#": 9914 + } + }, + { + "x": 650, + "y": 581.215410937483 + }, + { + "x": 625, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 637.5, + "y": 567.7982078509692 + }, + { + "endCol": 13, + "endRow": 12, + "id": "13,13,11,12", + "startCol": 13, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9923 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9926 + }, + { + "#": 9927 + }, + { + "#": 9928 + }, + { + "#": 9929 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 650, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 650, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9931 + }, + "bounds": { + "#": 9934 + }, + "collisionFilter": { + "#": 9937 + }, + "constraintImpulse": { + "#": 9938 + }, + "density": 0.001, + "force": { + "#": 9939 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 452, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9940 + }, + "positionImpulse": { + "#": 9941 + }, + "positionPrev": { + "#": 9942 + }, + "region": { + "#": 9943 + }, + "render": { + "#": 9944 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9946 + }, + "vertices": { + "#": 9947 + } + }, + [ + { + "#": 9932 + }, + { + "#": 9933 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9935 + }, + "min": { + "#": 9936 + } + }, + { + "x": 675, + "y": 581.215410937483 + }, + { + "x": 650, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 662.5, + "y": 567.7982078509692 + }, + { + "endCol": 14, + "endRow": 12, + "id": "13,14,11,12", + "startCol": 13, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 9945 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9948 + }, + { + "#": 9949 + }, + { + "#": 9950 + }, + { + "#": 9951 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 675, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 675, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9953 + }, + "bounds": { + "#": 9956 + }, + "collisionFilter": { + "#": 9959 + }, + "constraintImpulse": { + "#": 9960 + }, + "density": 0.001, + "force": { + "#": 9961 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 453, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9962 + }, + "positionImpulse": { + "#": 9963 + }, + "positionPrev": { + "#": 9964 + }, + "region": { + "#": 9965 + }, + "render": { + "#": 9966 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9968 + }, + "vertices": { + "#": 9969 + } + }, + [ + { + "#": 9954 + }, + { + "#": 9955 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9957 + }, + "min": { + "#": 9958 + } + }, + { + "x": 700, + "y": 581.215410937483 + }, + { + "x": 675, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 687.5, + "y": 567.7982078509692 + }, + { + "endCol": 14, + "endRow": 12, + "id": "14,14,11,12", + "startCol": 14, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 9967 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9970 + }, + { + "#": 9971 + }, + { + "#": 9972 + }, + { + "#": 9973 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 675, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 700, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 700, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 675, + "y": 580.5641614917323 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 625, + "axes": { + "#": 9975 + }, + "bounds": { + "#": 9978 + }, + "collisionFilter": { + "#": 9981 + }, + "constraintImpulse": { + "#": 9982 + }, + "density": 0.001, + "force": { + "#": 9983 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 454, + "inertia": 260.4166666666667, + "inverseInertia": 0.0038399999999999997, + "inverseMass": 1.6, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.625, + "motion": 0, + "parent": null, + "position": { + "#": 9984 + }, + "positionImpulse": { + "#": 9985 + }, + "positionPrev": { + "#": 9986 + }, + "region": { + "#": 9987 + }, + "render": { + "#": 9988 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6512494457506961, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 9990 + }, + "vertices": { + "#": 9991 + } + }, + [ + { + "#": 9976 + }, + { + "#": 9977 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 9979 + }, + "min": { + "#": 9980 + } + }, + { + "x": 725, + "y": 581.215410937483 + }, + { + "x": 700, + "y": 555.5641614917323 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 568.0641614917323 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 712.5, + "y": 567.7982078509692 + }, + { + "endCol": 15, + "endRow": 12, + "id": "14,15,11,12", + "startCol": 14, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 9989 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05131788113510538 + }, + [ + { + "#": 9992 + }, + { + "#": 9993 + }, + { + "#": 9994 + }, + { + "#": 9995 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 700, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 725, + "y": 555.5641614917323 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 725, + "y": 580.5641614917323 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 700, + "y": 580.5641614917323 + }, + [], + [], + [ + { + "#": 9999 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 10000 + }, + "pointB": "", + "render": { + "#": 10001 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "afterAdd": { + "#": 10003 + } + }, + [], + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/svg/svg-0.json b/tests/browser/refs/svg/svg-0.json new file mode 100644 index 00000000..2ac052f1 --- /dev/null +++ b/tests/browser/refs/svg/svg-0.json @@ -0,0 +1,889 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 90 + }, + "gravity": { + "#": 94 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [], + [ + { + "#": 91 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 92 + }, + "pointB": "", + "render": { + "#": 93 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/svg/svg-10.json b/tests/browser/refs/svg/svg-10.json new file mode 100644 index 00000000..179224ca --- /dev/null +++ b/tests/browser/refs/svg/svg-10.json @@ -0,0 +1,929 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 94 + }, + "gravity": { + "#": 98 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [], + [ + { + "#": 95 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 96 + }, + "pointB": "", + "render": { + "#": 97 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/terrain/terrain-0.json b/tests/browser/refs/terrain/terrain-0.json new file mode 100644 index 00000000..4ce5b2de --- /dev/null +++ b/tests/browser/refs/terrain/terrain-0.json @@ -0,0 +1,96 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 2 + }, + "composites": { + "#": 5 + }, + "constraints": { + "#": 6 + }, + "gravity": { + "#": 10 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [], + { + "max": { + "#": 3 + }, + "min": { + "#": 4 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [], + [ + { + "#": 7 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 8 + }, + "pointB": "", + "render": { + "#": 9 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/terrain/terrain-10.json b/tests/browser/refs/terrain/terrain-10.json new file mode 100644 index 00000000..7a2e9c99 --- /dev/null +++ b/tests/browser/refs/terrain/terrain-10.json @@ -0,0 +1,96 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 2 + }, + "composites": { + "#": 5 + }, + "constraints": { + "#": 6 + }, + "gravity": { + "#": 10 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [], + { + "max": { + "#": 3 + }, + "min": { + "#": 4 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [], + [ + { + "#": 7 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 8 + }, + "pointB": "", + "render": { + "#": 9 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/timescale/timescale-0.json b/tests/browser/refs/timescale/timescale-0.json new file mode 100644 index 00000000..b1b4c2b6 --- /dev/null +++ b/tests/browser/refs/timescale/timescale-0.json @@ -0,0 +1,21617 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 2442 + }, + "gravity": { + "#": 2446 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + }, + { + "#": 1867 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 1865 + }, + "constraints": { + "#": 1866 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 128 + }, + { + "#": 167 + }, + { + "#": 212 + }, + { + "#": 248 + }, + { + "#": 293 + }, + { + "#": 326 + }, + { + "#": 368 + }, + { + "#": 407 + }, + { + "#": 446 + }, + { + "#": 482 + }, + { + "#": 524 + }, + { + "#": 560 + }, + { + "#": 605 + }, + { + "#": 650 + }, + { + "#": 692 + }, + { + "#": 728 + }, + { + "#": 761 + }, + { + "#": 806 + }, + { + "#": 842 + }, + { + "#": 887 + }, + { + "#": 929 + }, + { + "#": 962 + }, + { + "#": 1004 + }, + { + "#": 1049 + }, + { + "#": 1082 + }, + { + "#": 1121 + }, + { + "#": 1157 + }, + { + "#": 1193 + }, + { + "#": 1238 + }, + { + "#": 1283 + }, + { + "#": 1322 + }, + { + "#": 1358 + }, + { + "#": 1394 + }, + { + "#": 1436 + }, + { + "#": 1481 + }, + { + "#": 1520 + }, + { + "#": 1556 + }, + { + "#": 1601 + }, + { + "#": 1634 + }, + { + "#": 1676 + }, + { + "#": 1721 + }, + { + "#": 1757 + }, + { + "#": 1790 + }, + { + "#": 1823 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 445.64723200000003, + "axes": { + "#": 93 + }, + "bounds": { + "#": 101 + }, + "circleRadius": 12.11321159122085, + "collisionFilter": { + "#": 104 + }, + "constraintImpulse": { + "#": 105 + }, + "density": 0.001, + "force": { + "#": 106 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 5, + "inertia": 126.46280868085778, + "inverseInertia": 0.007907463154037685, + "inverseMass": 2.243927322317577, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.44564723200000006, + "motion": 0, + "parent": null, + "position": { + "#": 107 + }, + "positionImpulse": { + "#": 108 + }, + "positionPrev": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": -0.900896921339718, + "y": -0.43403310601913536 + }, + { + "x": -0.6236538782909027, + "y": -0.7817006077090614 + }, + { + "x": -0.22240673703341207, + "y": -0.974953969847885 + }, + { + "x": 0.22240673703341207, + "y": -0.974953969847885 + }, + { + "x": 0.6236538782909027, + "y": -0.7817006077090614 + }, + { + "x": 0.900896921339718, + "y": -0.43403310601913536 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 102 + }, + "min": { + "#": 103 + } + }, + { + "x": 43.620000000000005, + "y": 124.226 + }, + { + "x": 20, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 31.810000000000002, + "y": 112.113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 31.810000000000002, + "y": 112.113 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 43.620000000000005, + "y": 114.80799999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 41.28, + "y": 119.66499999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 37.066, + "y": 123.027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 31.810000000000002, + "y": 124.226 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 26.554000000000002, + "y": 123.027 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 22.340000000000003, + "y": 119.66499999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 20, + "y": 114.80799999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20, + "y": 109.418 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 22.340000000000003, + "y": 104.561 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 26.554000000000002, + "y": 101.199 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 31.810000000000002, + "y": 100 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 37.066, + "y": 101.199 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 41.28, + "y": 104.561 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 43.620000000000005, + "y": 109.418 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 732.475276, + "axes": { + "#": 129 + }, + "bounds": { + "#": 138 + }, + "circleRadius": 15.467721193415638, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 6, + "inertia": 341.60522862031934, + "inverseInertia": 0.002927355661500897, + "inverseMass": 1.3652337939117005, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7324752760000001, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": -0.9238350355607171, + "y": -0.38279083984668255 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.38279083984668255, + "y": -0.9238350355607171 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38279083984668255, + "y": -0.9238350355607171 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238350355607171, + "y": -0.38279083984668255 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 93.96199999999999, + "y": 130.34199999999998 + }, + { + "x": 63.62, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 78.791, + "y": 115.17099999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 78.791, + "y": 115.17099999999999 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 93.96199999999999, + "y": 118.189 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 91.652, + "y": 123.764 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 87.384, + "y": 128.03199999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 81.809, + "y": 130.34199999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 75.773, + "y": 130.34199999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 70.198, + "y": 128.03199999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 65.92999999999999, + "y": 123.764 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 63.62, + "y": 118.189 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 63.62, + "y": 112.15299999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 65.92999999999999, + "y": 106.57799999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 70.198, + "y": 102.30999999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 75.773, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 81.809, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 87.384, + "y": 102.30999999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 91.652, + "y": 106.57799999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 93.96199999999999, + "y": 112.15299999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1023.0280239999998, + "axes": { + "#": 168 + }, + "bounds": { + "#": 179 + }, + "circleRadius": 18.19465877914952, + "collisionFilter": { + "#": 182 + }, + "constraintImpulse": { + "#": 183 + }, + "density": 0.001, + "force": { + "#": 184 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 7, + "inertia": 666.3140407130343, + "inverseInertia": 0.0015007938282823555, + "inverseMass": 0.9774903292385275, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0230280239999998, + "motion": 0, + "parent": null, + "position": { + "#": 185 + }, + "positionImpulse": { + "#": 186 + }, + "positionPrev": { + "#": 187 + }, + "render": { + "#": 188 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 190 + }, + "vertices": { + "#": 191 + } + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + } + ], + { + "x": -0.9510624654126439, + "y": -0.3089986842742595 + }, + { + "x": -0.8090549880907667, + "y": -0.5877329548744475 + }, + { + "x": -0.5877329548744475, + "y": -0.8090549880907667 + }, + { + "x": -0.3089986842742595, + "y": -0.9510624654126439 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089986842742595, + "y": -0.9510624654126439 + }, + { + "x": 0.5877329548744475, + "y": -0.8090549880907667 + }, + { + "x": 0.8090549880907667, + "y": -0.5877329548744475 + }, + { + "x": 0.9510624654126439, + "y": -0.3089986842742595 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 180 + }, + "min": { + "#": 181 + } + }, + { + "x": 149.904, + "y": 135.942 + }, + { + "x": 113.96199999999999, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 131.933, + "y": 117.971 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 131.933, + "y": 117.971 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 189 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 149.904, + "y": 120.81700000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 148.14499999999998, + "y": 126.23100000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 144.79899999999998, + "y": 130.837 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.19299999999998, + "y": 134.183 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 134.779, + "y": 135.942 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 129.087, + "y": 135.942 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 123.67299999999999, + "y": 134.183 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 119.067, + "y": 130.837 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 115.72099999999999, + "y": 126.23100000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 113.96199999999999, + "y": 120.81700000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 113.96199999999999, + "y": 115.125 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 115.72099999999999, + "y": 109.711 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 119.067, + "y": 105.105 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 123.67299999999999, + "y": 101.759 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 129.087, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 134.779, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 140.19299999999998, + "y": 101.759 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 144.79899999999998, + "y": 105.105 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 148.14499999999998, + "y": 109.711 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 149.904, + "y": 115.125 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 574.28005, + "axes": { + "#": 213 + }, + "bounds": { + "#": 221 + }, + "circleRadius": 13.750814471879288, + "collisionFilter": { + "#": 224 + }, + "constraintImpulse": { + "#": 225 + }, + "density": 0.001, + "force": { + "#": 226 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 8, + "inertia": 210.00413885422935, + "inverseInertia": 0.004761810912184603, + "inverseMass": 1.7413107072063536, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5742800499999999, + "motion": 0, + "parent": null, + "position": { + "#": 227 + }, + "positionImpulse": { + "#": 228 + }, + "positionPrev": { + "#": 229 + }, + "render": { + "#": 230 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 232 + }, + "vertices": { + "#": 233 + } + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + } + ], + { + "x": -0.9009638128018401, + "y": -0.4338942359856497 + }, + { + "x": -0.6234987739411211, + "y": -0.7818243273868618 + }, + { + "x": -0.22256744167907103, + "y": -0.9749172959304976 + }, + { + "x": 0.22256744167907103, + "y": -0.9749172959304976 + }, + { + "x": 0.6234987739411211, + "y": -0.7818243273868618 + }, + { + "x": 0.9009638128018401, + "y": -0.4338942359856497 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 222 + }, + "min": { + "#": 223 + } + }, + { + "x": 196.716, + "y": 127.50200000000001 + }, + { + "x": 169.904, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 183.31, + "y": 113.751 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 183.31, + "y": 113.751 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 231 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 196.716, + "y": 116.811 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 194.061, + "y": 122.32400000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 189.276, + "y": 126.14 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 183.31, + "y": 127.50200000000001 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 177.344, + "y": 126.14 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 172.559, + "y": 122.32400000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 169.904, + "y": 116.811 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 169.904, + "y": 110.691 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 172.559, + "y": 105.178 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 177.344, + "y": 101.36200000000001 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 183.31, + "y": 100 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 189.276, + "y": 101.36200000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 194.061, + "y": 105.178 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 196.716, + "y": 110.691 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1195.2601479999998, + "axes": { + "#": 249 + }, + "bounds": { + "#": 260 + }, + "circleRadius": 19.667052469135804, + "collisionFilter": { + "#": 263 + }, + "constraintImpulse": { + "#": 264 + }, + "density": 0.001, + "force": { + "#": 265 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 9, + "inertia": 909.5546177631703, + "inverseInertia": 0.0010994391985599042, + "inverseMass": 0.8366379500506865, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1952601479999998, + "motion": 0, + "parent": null, + "position": { + "#": 266 + }, + "positionImpulse": { + "#": 267 + }, + "positionPrev": { + "#": 268 + }, + "render": { + "#": 269 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 271 + }, + "vertices": { + "#": 272 + } + }, + [ + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "x": -0.9510292915090645, + "y": -0.3091007710953933 + }, + { + "x": -0.8090733104102286, + "y": -0.5877077321099611 + }, + { + "x": -0.5877077321099611, + "y": -0.8090733104102286 + }, + { + "x": -0.3091007710953933, + "y": -0.9510292915090645 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091007710953933, + "y": -0.9510292915090645 + }, + { + "x": 0.5877077321099611, + "y": -0.8090733104102286 + }, + { + "x": 0.8090733104102286, + "y": -0.5877077321099611 + }, + { + "x": 0.9510292915090645, + "y": -0.3091007710953933 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 261 + }, + "min": { + "#": 262 + } + }, + { + "x": 255.56600000000003, + "y": 138.85 + }, + { + "x": 216.716, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 236.14100000000002, + "y": 119.425 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 236.14100000000002, + "y": 119.425 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 270 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 255.56600000000003, + "y": 122.502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 253.66400000000002, + "y": 128.35399999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 250.04800000000003, + "y": 133.332 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 245.07000000000002, + "y": 136.94799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 239.21800000000002, + "y": 138.85 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 233.06400000000002, + "y": 138.85 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 227.21200000000002, + "y": 136.94799999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 222.234, + "y": 133.332 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 218.61800000000002, + "y": 128.35399999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 216.716, + "y": 122.502 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 216.716, + "y": 116.348 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 218.61800000000002, + "y": 110.496 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 222.234, + "y": 105.518 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 227.21200000000002, + "y": 101.902 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 233.06400000000002, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 239.21800000000002, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 245.07000000000002, + "y": 101.902 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 250.04800000000003, + "y": 105.518 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 253.66400000000002, + "y": 110.496 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 255.56600000000003, + "y": 116.348 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 431.46854399999995, + "axes": { + "#": 294 + }, + "bounds": { + "#": 301 + }, + "circleRadius": 11.99275548696845, + "collisionFilter": { + "#": 304 + }, + "constraintImpulse": { + "#": 305 + }, + "density": 0.001, + "force": { + "#": 306 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 10, + "inertia": 118.56753749026406, + "inverseInertia": 0.008434011713215457, + "inverseMass": 2.3176660591044156, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.43146854399999995, + "motion": 0, + "parent": null, + "position": { + "#": 307 + }, + "positionImpulse": { + "#": 308 + }, + "positionPrev": { + "#": 309 + }, + "render": { + "#": 310 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 312 + }, + "vertices": { + "#": 313 + } + }, + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + } + ], + { + "x": -0.8660138975112615, + "y": -0.5000199289201924 + }, + { + "x": -0.5000199289201924, + "y": -0.8660138975112615 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000199289201924, + "y": -0.8660138975112615 + }, + { + "x": 0.8660138975112615, + "y": -0.5000199289201924 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 302 + }, + "min": { + "#": 303 + } + }, + { + "x": 298.73400000000004, + "y": 123.168 + }, + { + "x": 275.56600000000003, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.15000000000003, + "y": 111.584 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.15000000000003, + "y": 111.584 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 311 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 298.73400000000004, + "y": 114.688 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 295.63000000000005, + "y": 120.06400000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 290.254, + "y": 123.168 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 284.04600000000005, + "y": 123.168 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 278.67, + "y": 120.06400000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 275.56600000000003, + "y": 114.688 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 275.56600000000003, + "y": 108.48 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 278.67, + "y": 103.104 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 284.04600000000005, + "y": 100 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 290.254, + "y": 100 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 295.63000000000005, + "y": 103.104 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 298.73400000000004, + "y": 108.48 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 828.5975979999998, + "axes": { + "#": 327 + }, + "bounds": { + "#": 337 + }, + "circleRadius": 16.40693587105624, + "collisionFilter": { + "#": 340 + }, + "constraintImpulse": { + "#": 341 + }, + "density": 0.001, + "force": { + "#": 342 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 11, + "inertia": 437.12315220007827, + "inverseInertia": 0.00228768482055209, + "inverseMass": 1.206858434557036, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8285975979999999, + "motion": 0, + "parent": null, + "position": { + "#": 343 + }, + "positionImpulse": { + "#": 344 + }, + "positionPrev": { + "#": 345 + }, + "render": { + "#": 346 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 348 + }, + "vertices": { + "#": 349 + } + }, + [ + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + } + ], + { + "x": -0.9396755074993973, + "y": -0.34206715803442794 + }, + { + "x": -0.7660159168444758, + "y": -0.6428216044447457 + }, + { + "x": -0.5000465688762351, + "y": -0.8659985155617211 + }, + { + "x": -0.1737252699374666, + "y": -0.9847941564535982 + }, + { + "x": 0.1737252699374666, + "y": -0.9847941564535982 + }, + { + "x": 0.5000465688762351, + "y": -0.8659985155617211 + }, + { + "x": 0.7660159168444758, + "y": -0.6428216044447457 + }, + { + "x": 0.9396755074993973, + "y": -0.34206715803442794 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 338 + }, + "min": { + "#": 339 + } + }, + { + "x": 351.05000000000007, + "y": 132.814 + }, + { + "x": 318.73400000000004, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 334.89200000000005, + "y": 116.407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 334.89200000000005, + "y": 116.407 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 347 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 351.05000000000007, + "y": 119.256 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 349.10100000000006, + "y": 124.61 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 345.43800000000005, + "y": 128.975 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 340.5040000000001, + "y": 131.824 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 334.89200000000005, + "y": 132.814 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 329.28000000000003, + "y": 131.824 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.34600000000006, + "y": 128.975 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 320.68300000000005, + "y": 124.61 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 318.73400000000004, + "y": 119.256 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 318.73400000000004, + "y": 113.55799999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 320.68300000000005, + "y": 108.204 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 324.34600000000006, + "y": 103.839 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 329.28000000000003, + "y": 100.99 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 334.89200000000005, + "y": 100 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 340.5040000000001, + "y": 100.99 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 345.43800000000005, + "y": 103.839 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 349.10100000000006, + "y": 108.204 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 351.05000000000007, + "y": 113.55799999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 783.3593100000002, + "axes": { + "#": 369 + }, + "bounds": { + "#": 378 + }, + "circleRadius": 15.996013374485596, + "collisionFilter": { + "#": 381 + }, + "constraintImpulse": { + "#": 382 + }, + "density": 0.001, + "force": { + "#": 383 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 12, + "inertia": 390.7154522672976, + "inverseInertia": 0.0025594073492539436, + "inverseMass": 1.2765534119968522, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7833593100000001, + "motion": 0, + "parent": null, + "position": { + "#": 384 + }, + "positionImpulse": { + "#": 385 + }, + "positionPrev": { + "#": 386 + }, + "render": { + "#": 387 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 389 + }, + "vertices": { + "#": 390 + } + }, + [ + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + } + ], + { + "x": -0.9238430135485202, + "y": -0.3827715850446434 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3827715850446434, + "y": -0.9238430135485202 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827715850446434, + "y": -0.9238430135485202 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238430135485202, + "y": -0.3827715850446434 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 379 + }, + "min": { + "#": 380 + } + }, + { + "x": 402.4280000000001, + "y": 131.378 + }, + { + "x": 371.05000000000007, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 386.7390000000001, + "y": 115.689 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 386.7390000000001, + "y": 115.689 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 388 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 402.4280000000001, + "y": 118.80999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400.0390000000001, + "y": 124.576 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 395.6260000000001, + "y": 128.98899999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.86000000000007, + "y": 131.378 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 383.6180000000001, + "y": 131.378 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 377.8520000000001, + "y": 128.98899999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 373.4390000000001, + "y": 124.576 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 371.05000000000007, + "y": 118.80999999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 371.05000000000007, + "y": 112.568 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 373.4390000000001, + "y": 106.80199999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 377.8520000000001, + "y": 102.389 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 383.6180000000001, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 389.86000000000007, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 395.6260000000001, + "y": 102.389 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 400.0390000000001, + "y": 106.80199999999999 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 402.4280000000001, + "y": 112.568 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 754.4775720000002, + "axes": { + "#": 408 + }, + "bounds": { + "#": 417 + }, + "circleRadius": 15.698259602194788, + "collisionFilter": { + "#": 420 + }, + "constraintImpulse": { + "#": 421 + }, + "density": 0.001, + "force": { + "#": 422 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 13, + "inertia": 362.43592371593485, + "inverseInertia": 0.002759108395622964, + "inverseMass": 1.32542044603017, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7544775720000002, + "motion": 0, + "parent": null, + "position": { + "#": 423 + }, + "positionImpulse": { + "#": 424 + }, + "positionPrev": { + "#": 425 + }, + "render": { + "#": 426 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 428 + }, + "vertices": { + "#": 429 + } + }, + [ + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + } + ], + { + "x": -0.9238576132125803, + "y": -0.3827363459473821 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3827363459473821, + "y": -0.9238576132125803 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827363459473821, + "y": -0.9238576132125803 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238576132125803, + "y": -0.3827363459473821 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 418 + }, + "min": { + "#": 419 + } + }, + { + "x": 453.2220000000001, + "y": 130.794 + }, + { + "x": 422.4280000000001, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.8250000000001, + "y": 115.397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.8250000000001, + "y": 115.397 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 427 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 453.2220000000001, + "y": 118.46000000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 450.8780000000001, + "y": 124.11800000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 446.5460000000001, + "y": 128.45 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440.8880000000001, + "y": 130.794 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 434.7620000000001, + "y": 130.794 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 429.1040000000001, + "y": 128.45 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 424.7720000000001, + "y": 124.11800000000001 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 422.4280000000001, + "y": 118.46000000000001 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 422.4280000000001, + "y": 112.334 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 424.7720000000001, + "y": 106.676 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 429.1040000000001, + "y": 102.34400000000001 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 434.7620000000001, + "y": 100 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 440.8880000000001, + "y": 100 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 446.5460000000001, + "y": 102.34400000000001 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 450.8780000000001, + "y": 106.676 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 453.2220000000001, + "y": 112.334 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 546.5734600000001, + "axes": { + "#": 447 + }, + "bounds": { + "#": 455 + }, + "circleRadius": 13.414909122085048, + "collisionFilter": { + "#": 458 + }, + "constraintImpulse": { + "#": 459 + }, + "density": 0.001, + "force": { + "#": 460 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 14, + "inertia": 190.22932853820927, + "inverseInertia": 0.0052568129619357876, + "inverseMass": 1.8295802361131839, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5465734600000001, + "motion": 0, + "parent": null, + "position": { + "#": 461 + }, + "positionImpulse": { + "#": 462 + }, + "positionPrev": { + "#": 463 + }, + "render": { + "#": 464 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 466 + }, + "vertices": { + "#": 467 + } + }, + [ + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + } + ], + { + "x": -0.9009289164305454, + "y": -0.4339666894351262 + }, + { + "x": -0.6235094308206882, + "y": -0.7818158284900999 + }, + { + "x": -0.22258377112347572, + "y": -0.9749135678779182 + }, + { + "x": 0.22258377112347572, + "y": -0.9749135678779182 + }, + { + "x": 0.6235094308206882, + "y": -0.7818158284900999 + }, + { + "x": 0.9009289164305454, + "y": -0.4339666894351262 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 456 + }, + "min": { + "#": 457 + } + }, + { + "x": 499.3800000000001, + "y": 126.82999999999998 + }, + { + "x": 473.2220000000001, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 486.3010000000001, + "y": 113.41499999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 486.3010000000001, + "y": 113.41499999999999 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 465 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 499.3800000000001, + "y": 116.39999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 496.7890000000001, + "y": 121.779 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 492.1220000000001, + "y": 125.50099999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 486.3010000000001, + "y": 126.82999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 480.4800000000001, + "y": 125.50099999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 475.8130000000001, + "y": 121.779 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 473.2220000000001, + "y": 116.39999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 473.2220000000001, + "y": 110.42999999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.8130000000001, + "y": 105.05099999999999 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 480.4800000000001, + "y": 101.329 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 486.3010000000001, + "y": 100 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 492.1220000000001, + "y": 101.329 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 496.7890000000001, + "y": 105.05099999999999 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 499.3800000000001, + "y": 110.42999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 973.9752019999999, + "axes": { + "#": 483 + }, + "bounds": { + "#": 493 + }, + "circleRadius": 17.787937242798353, + "collisionFilter": { + "#": 496 + }, + "constraintImpulse": { + "#": 497 + }, + "density": 0.001, + "force": { + "#": 498 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 15, + "inertia": 603.96569072653, + "inverseInertia": 0.0016557231898339578, + "inverseMass": 1.0267201854282941, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9739752019999999, + "motion": 0, + "parent": null, + "position": { + "#": 499 + }, + "positionImpulse": { + "#": 500 + }, + "positionPrev": { + "#": 501 + }, + "render": { + "#": 502 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 504 + }, + "vertices": { + "#": 505 + } + }, + [ + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + } + ], + { + "x": -0.9396846715303921, + "y": -0.3420419829360413 + }, + { + "x": -0.7660141089546303, + "y": -0.6428237588036427 + }, + { + "x": -0.5000213741632397, + "y": -0.8660130630538465 + }, + { + "x": -0.17368375845285658, + "y": -0.9848014784969049 + }, + { + "x": 0.17368375845285658, + "y": -0.9848014784969049 + }, + { + "x": 0.5000213741632397, + "y": -0.8660130630538465 + }, + { + "x": 0.7660141089546303, + "y": -0.6428237588036427 + }, + { + "x": 0.9396846715303921, + "y": -0.3420419829360413 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 494 + }, + "min": { + "#": 495 + } + }, + { + "x": 554.4160000000002, + "y": 135.576 + }, + { + "x": 519.3800000000001, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.8980000000001, + "y": 117.788 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.8980000000001, + "y": 117.788 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 503 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 554.4160000000002, + "y": 120.877 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 552.3030000000001, + "y": 126.682 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 548.3320000000001, + "y": 131.414 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 542.9820000000001, + "y": 134.503 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 536.8980000000001, + "y": 135.576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 530.8140000000002, + "y": 134.503 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 525.4640000000002, + "y": 131.414 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 521.4930000000002, + "y": 126.682 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 519.3800000000001, + "y": 120.877 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 519.3800000000001, + "y": 114.699 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 521.4930000000002, + "y": 108.89399999999999 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 525.4640000000002, + "y": 104.16199999999999 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 530.8140000000002, + "y": 101.073 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 536.8980000000001, + "y": 100 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 542.9820000000001, + "y": 101.073 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 548.3320000000001, + "y": 104.16199999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 552.3030000000001, + "y": 108.89399999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 554.4160000000002, + "y": 114.699 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 485.5904, + "axes": { + "#": 525 + }, + "bounds": { + "#": 533 + }, + "circleRadius": 12.644504458161865, + "collisionFilter": { + "#": 536 + }, + "constraintImpulse": { + "#": 537 + }, + "density": 0.001, + "force": { + "#": 538 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 16, + "inertia": 150.14835557749134, + "inverseInertia": 0.006660079600298396, + "inverseMass": 2.0593487844899734, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4855904, + "motion": 0, + "parent": null, + "position": { + "#": 539 + }, + "positionImpulse": { + "#": 540 + }, + "positionPrev": { + "#": 541 + }, + "render": { + "#": 542 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 544 + }, + "vertices": { + "#": 545 + } + }, + [ + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "x": -0.9010093877027451, + "y": -0.43379958883282077 + }, + { + "x": -0.6233938910669198, + "y": -0.7819079591489303 + }, + { + "x": -0.2226655662703444, + "y": -0.9748948895124575 + }, + { + "x": 0.2226655662703444, + "y": -0.9748948895124575 + }, + { + "x": 0.6233938910669198, + "y": -0.7819079591489303 + }, + { + "x": 0.9010093877027451, + "y": -0.43379958883282077 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 534 + }, + "min": { + "#": 535 + } + }, + { + "x": 599.0700000000002, + "y": 125.28999999999999 + }, + { + "x": 574.4160000000002, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.7430000000002, + "y": 112.645 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.7430000000002, + "y": 112.645 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 543 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.0700000000002, + "y": 115.45899999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.6290000000001, + "y": 120.529 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 592.2290000000002, + "y": 124.03699999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.7430000000002, + "y": 125.28999999999999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 581.2570000000002, + "y": 124.03699999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 576.8570000000002, + "y": 120.529 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 574.4160000000002, + "y": 115.45899999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 574.4160000000002, + "y": 109.831 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.8570000000002, + "y": 104.761 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 581.2570000000002, + "y": 101.253 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 586.7430000000002, + "y": 100 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 592.2290000000002, + "y": 101.253 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 596.6290000000001, + "y": 104.761 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 599.0700000000002, + "y": 109.831 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1013.2448800000001, + "axes": { + "#": 561 + }, + "bounds": { + "#": 572 + }, + "circleRadius": 18.10806755829904, + "collisionFilter": { + "#": 575 + }, + "constraintImpulse": { + "#": 576 + }, + "density": 0.001, + "force": { + "#": 577 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 17, + "inertia": 653.6311476673523, + "inverseInertia": 0.0015299148511645328, + "inverseMass": 0.9869282537109884, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.01324488, + "motion": 0, + "parent": null, + "position": { + "#": 578 + }, + "positionImpulse": { + "#": 579 + }, + "positionPrev": { + "#": 580 + }, + "render": { + "#": 581 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 583 + }, + "vertices": { + "#": 584 + } + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + } + ], + { + "x": -0.95103925715127, + "y": -0.3090701075114839 + }, + { + "x": -0.8089955390833857, + "y": -0.5878147818345351 + }, + { + "x": -0.5878147818345351, + "y": -0.8089955390833857 + }, + { + "x": -0.3090701075114839, + "y": -0.95103925715127 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090701075114839, + "y": -0.95103925715127 + }, + { + "x": 0.5878147818345351, + "y": -0.8089955390833857 + }, + { + "x": 0.8089955390833857, + "y": -0.5878147818345351 + }, + { + "x": 0.95103925715127, + "y": -0.3090701075114839 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 573 + }, + "min": { + "#": 574 + } + }, + { + "x": 654.8400000000001, + "y": 135.77 + }, + { + "x": 619.0700000000002, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 636.9550000000002, + "y": 117.885 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 636.9550000000002, + "y": 117.885 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 582 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 654.8400000000001, + "y": 120.718 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 653.0890000000002, + "y": 126.10600000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 649.7590000000001, + "y": 130.68900000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 645.1760000000002, + "y": 134.019 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 639.7880000000001, + "y": 135.77 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 634.1220000000002, + "y": 135.77 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 628.7340000000002, + "y": 134.019 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 624.1510000000002, + "y": 130.68900000000002 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 620.8210000000001, + "y": 126.10600000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 619.0700000000002, + "y": 120.718 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 619.0700000000002, + "y": 115.052 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 620.8210000000001, + "y": 109.664 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 624.1510000000002, + "y": 105.081 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 628.7340000000002, + "y": 101.751 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 634.1220000000002, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 639.7880000000001, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 645.1760000000002, + "y": 101.751 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 649.7590000000001, + "y": 105.081 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 653.0890000000002, + "y": 109.664 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 654.8400000000001, + "y": 115.052 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1043.5045799999998, + "axes": { + "#": 606 + }, + "bounds": { + "#": 617 + }, + "circleRadius": 18.37615740740741, + "collisionFilter": { + "#": 620 + }, + "constraintImpulse": { + "#": 621 + }, + "density": 0.001, + "force": { + "#": 622 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 18, + "inertia": 693.2543810769114, + "inverseInertia": 0.0014424719515606747, + "inverseMass": 0.9583091623804854, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0435045799999998, + "motion": 0, + "parent": null, + "position": { + "#": 623 + }, + "positionImpulse": { + "#": 624 + }, + "positionPrev": { + "#": 625 + }, + "render": { + "#": 626 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 628 + }, + "vertices": { + "#": 629 + } + }, + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "x": -0.9510391812432063, + "y": -0.30907034108799836 + }, + { + "x": -0.8090293436440933, + "y": -0.5877682546061905 + }, + { + "x": -0.5877682546061905, + "y": -0.8090293436440933 + }, + { + "x": -0.30907034108799836, + "y": -0.9510391812432063 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907034108799836, + "y": -0.9510391812432063 + }, + { + "x": 0.5877682546061905, + "y": -0.8090293436440933 + }, + { + "x": 0.8090293436440933, + "y": -0.5877682546061905 + }, + { + "x": 0.9510391812432063, + "y": -0.30907034108799836 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 618 + }, + "min": { + "#": 619 + } + }, + { + "x": 711.1400000000001, + "y": 136.3 + }, + { + "x": 674.8400000000001, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 692.9900000000001, + "y": 118.15 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 692.9900000000001, + "y": 118.15 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 627 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 711.1400000000001, + "y": 121.025 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 709.3630000000002, + "y": 126.49300000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 705.9840000000002, + "y": 131.144 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 701.3330000000001, + "y": 134.52300000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 695.8650000000001, + "y": 136.3 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 690.1150000000001, + "y": 136.3 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 684.6470000000002, + "y": 134.52300000000002 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 679.9960000000001, + "y": 131.144 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 676.6170000000001, + "y": 126.49300000000001 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 674.8400000000001, + "y": 121.025 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 674.8400000000001, + "y": 115.275 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 676.6170000000001, + "y": 109.807 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 679.9960000000001, + "y": 105.156 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 684.6470000000002, + "y": 101.777 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 690.1150000000001, + "y": 100 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 695.8650000000001, + "y": 100 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 701.3330000000001, + "y": 101.777 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 705.9840000000002, + "y": 105.156 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 709.3630000000002, + "y": 109.807 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 711.1400000000001, + "y": 115.275 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 804.3326420000001, + "axes": { + "#": 651 + }, + "bounds": { + "#": 661 + }, + "circleRadius": 16.16482338820302, + "collisionFilter": { + "#": 664 + }, + "constraintImpulse": { + "#": 665 + }, + "density": 0.001, + "force": { + "#": 666 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 19, + "inertia": 411.89626816350983, + "inverseInertia": 0.0024277957274500763, + "inverseMass": 1.243266713027419, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8043326420000001, + "motion": 0, + "parent": null, + "position": { + "#": 667 + }, + "positionImpulse": { + "#": 668 + }, + "positionPrev": { + "#": 669 + }, + "render": { + "#": 670 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 672 + }, + "vertices": { + "#": 673 + } + }, + [ + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + } + ], + { + "x": -0.939689356498254, + "y": -0.3420291117491275 + }, + { + "x": -0.766129298042305, + "y": -0.6426864699689927 + }, + { + "x": -0.4999897122177319, + "y": -0.8660313433568266 + }, + { + "x": -0.17366340060749713, + "y": -0.9848050686757457 + }, + { + "x": 0.17366340060749713, + "y": -0.9848050686757457 + }, + { + "x": 0.4999897122177319, + "y": -0.8660313433568266 + }, + { + "x": 0.766129298042305, + "y": -0.6426864699689927 + }, + { + "x": 0.939689356498254, + "y": -0.3420291117491275 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 662 + }, + "min": { + "#": 663 + } + }, + { + "x": 762.9780000000001, + "y": 132.32999999999998 + }, + { + "x": 731.1400000000001, + "y": 100 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 747.0590000000001, + "y": 116.16499999999999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 747.0590000000001, + "y": 116.16499999999999 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 671 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 762.9780000000001, + "y": 118.972 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 761.0580000000001, + "y": 124.24699999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 757.45, + "y": 128.548 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 752.5880000000001, + "y": 131.355 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 747.0590000000001, + "y": 132.32999999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 741.5300000000001, + "y": 131.355 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 736.6680000000001, + "y": 128.548 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 733.0600000000001, + "y": 124.24699999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 731.1400000000001, + "y": 118.972 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 731.1400000000001, + "y": 113.35799999999999 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 733.0600000000001, + "y": 108.083 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 736.6680000000001, + "y": 103.782 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 741.5300000000001, + "y": 100.975 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 747.0590000000001, + "y": 100 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 752.5880000000001, + "y": 100.975 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 757.45, + "y": 103.782 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 761.0580000000001, + "y": 108.083 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 762.9780000000001, + "y": 113.35799999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 580.047414, + "axes": { + "#": 693 + }, + "bounds": { + "#": 701 + }, + "circleRadius": 13.81974451303155, + "collisionFilter": { + "#": 704 + }, + "constraintImpulse": { + "#": 705 + }, + "density": 0.001, + "force": { + "#": 706 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 20, + "inertia": 214.24336698195748, + "inverseInertia": 0.004667589079125213, + "inverseMass": 1.7239969972523659, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.580047414, + "motion": 0, + "parent": null, + "position": { + "#": 707 + }, + "positionImpulse": { + "#": 708 + }, + "positionPrev": { + "#": 709 + }, + "render": { + "#": 710 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 712 + }, + "vertices": { + "#": 713 + } + }, + [ + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "x": -0.9009946077275478, + "y": -0.4338302857637789 + }, + { + "x": -0.6234848799770796, + "y": -0.7818354075123272 + }, + { + "x": -0.22259080644452373, + "y": -0.9749119616080092 + }, + { + "x": 0.22259080644452373, + "y": -0.9749119616080092 + }, + { + "x": 0.6234848799770796, + "y": -0.7818354075123272 + }, + { + "x": 0.9009946077275478, + "y": -0.4338302857637789 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 702 + }, + "min": { + "#": 703 + } + }, + { + "x": 46.946, + "y": 206.48999999999998 + }, + { + "x": 20, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 33.473, + "y": 192.67 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 33.473, + "y": 192.67 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 711 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 46.946, + "y": 195.74499999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 44.278, + "y": 201.286 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 39.469, + "y": 205.12099999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 33.473, + "y": 206.48999999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 27.476999999999997, + "y": 205.12099999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 22.668, + "y": 201.286 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 20, + "y": 195.74499999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20, + "y": 189.595 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 22.668, + "y": 184.05399999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 27.476999999999997, + "y": 180.219 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 33.473, + "y": 178.85 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 39.469, + "y": 180.219 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 44.278, + "y": 184.05399999999997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 46.946, + "y": 189.595 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 369.23864399999997, + "axes": { + "#": 729 + }, + "bounds": { + "#": 736 + }, + "circleRadius": 11.09400720164609, + "collisionFilter": { + "#": 739 + }, + "constraintImpulse": { + "#": 740 + }, + "density": 0.001, + "force": { + "#": 741 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 21, + "inertia": 86.83240242313165, + "inverseInertia": 0.011516438243030872, + "inverseMass": 2.7082755725860594, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.36923864399999995, + "motion": 0, + "parent": null, + "position": { + "#": 742 + }, + "positionImpulse": { + "#": 743 + }, + "positionPrev": { + "#": 744 + }, + "render": { + "#": 745 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 747 + }, + "vertices": { + "#": 748 + } + }, + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + } + ], + { + "x": -0.866081210108875, + "y": -0.49990332815090055 + }, + { + "x": -0.49990332815090055, + "y": -0.866081210108875 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49990332815090055, + "y": -0.866081210108875 + }, + { + "x": 0.866081210108875, + "y": -0.49990332815090055 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 737 + }, + "min": { + "#": 738 + } + }, + { + "x": 88.37799999999999, + "y": 200.282 + }, + { + "x": 66.946, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 77.66199999999999, + "y": 189.566 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 77.66199999999999, + "y": 189.566 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 746 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 88.37799999999999, + "y": 192.437 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 85.50699999999999, + "y": 197.411 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 80.53299999999999, + "y": 200.282 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 74.791, + "y": 200.282 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 69.817, + "y": 197.411 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 66.946, + "y": 192.437 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 66.946, + "y": 186.695 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 69.817, + "y": 181.721 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 74.791, + "y": 178.85 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 80.53299999999999, + "y": 178.85 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 85.50699999999999, + "y": 181.721 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 88.37799999999999, + "y": 186.695 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1186.2008119999998, + "axes": { + "#": 762 + }, + "bounds": { + "#": 773 + }, + "circleRadius": 19.59254972565158, + "collisionFilter": { + "#": 776 + }, + "constraintImpulse": { + "#": 777 + }, + "density": 0.001, + "force": { + "#": 778 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 22, + "inertia": 895.8191409307356, + "inverseInertia": 0.0011162967549019135, + "inverseMass": 0.843027580055307, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1862008119999998, + "motion": 0, + "parent": null, + "position": { + "#": 779 + }, + "positionImpulse": { + "#": 780 + }, + "positionPrev": { + "#": 781 + }, + "render": { + "#": 782 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 784 + }, + "vertices": { + "#": 785 + } + }, + [ + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + } + ], + { + "x": -0.9510700273465118, + "y": -0.3089754085410449 + }, + { + "x": -0.8090111291820679, + "y": -0.5877933249532148 + }, + { + "x": -0.5877933249532148, + "y": -0.8090111291820679 + }, + { + "x": -0.3089754085410449, + "y": -0.9510700273465118 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089754085410449, + "y": -0.9510700273465118 + }, + { + "x": 0.5877933249532148, + "y": -0.8090111291820679 + }, + { + "x": 0.8090111291820679, + "y": -0.5877933249532148 + }, + { + "x": 0.9510700273465118, + "y": -0.3089754085410449 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 774 + }, + "min": { + "#": 775 + } + }, + { + "x": 147.07999999999998, + "y": 217.552 + }, + { + "x": 108.37799999999999, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.72899999999998, + "y": 198.201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.72899999999998, + "y": 198.201 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 783 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 147.07999999999998, + "y": 201.266 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 145.18599999999998, + "y": 207.096 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 141.58299999999997, + "y": 212.055 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 136.62399999999997, + "y": 215.658 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 130.79399999999998, + "y": 217.552 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 124.66399999999999, + "y": 217.552 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 118.83399999999999, + "y": 215.658 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 113.87499999999999, + "y": 212.055 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 110.27199999999999, + "y": 207.096 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 108.37799999999999, + "y": 201.266 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 108.37799999999999, + "y": 195.136 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 110.27199999999999, + "y": 189.30599999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 113.87499999999999, + "y": 184.34699999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 118.83399999999999, + "y": 180.744 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 124.66399999999999, + "y": 178.85 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 130.79399999999998, + "y": 178.85 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 136.62399999999997, + "y": 180.744 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 141.58299999999997, + "y": 184.34699999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 145.18599999999998, + "y": 189.30599999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 147.07999999999998, + "y": 195.136 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 585.3796979999998, + "axes": { + "#": 807 + }, + "bounds": { + "#": 815 + }, + "circleRadius": 13.883273319615911, + "collisionFilter": { + "#": 818 + }, + "constraintImpulse": { + "#": 819 + }, + "density": 0.001, + "force": { + "#": 820 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 23, + "inertia": 218.2004829364277, + "inverseInertia": 0.004582941277409308, + "inverseMass": 1.7082929309242976, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5853796979999999, + "motion": 0, + "parent": null, + "position": { + "#": 821 + }, + "positionImpulse": { + "#": 822 + }, + "positionPrev": { + "#": 823 + }, + "render": { + "#": 824 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 826 + }, + "vertices": { + "#": 827 + } + }, + [ + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + } + ], + { + "x": -0.9009641800326721, + "y": -0.4338934734448706 + }, + { + "x": -0.6235099396116037, + "y": -0.7818154227217151 + }, + { + "x": -0.22253036510011648, + "y": -0.9749257595368013 + }, + { + "x": 0.22253036510011648, + "y": -0.9749257595368013 + }, + { + "x": 0.6235099396116037, + "y": -0.7818154227217151 + }, + { + "x": 0.9009641800326721, + "y": -0.4338934734448706 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 816 + }, + "min": { + "#": 817 + } + }, + { + "x": 194.14999999999998, + "y": 206.616 + }, + { + "x": 167.07999999999998, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 180.61499999999998, + "y": 192.733 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 180.61499999999998, + "y": 192.733 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 825 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 194.14999999999998, + "y": 195.822 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 191.46899999999997, + "y": 201.389 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 186.63899999999998, + "y": 205.241 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180.61499999999998, + "y": 206.616 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 174.59099999999998, + "y": 205.241 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 169.761, + "y": 201.389 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 167.07999999999998, + "y": 195.822 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 167.07999999999998, + "y": 189.644 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 169.761, + "y": 184.077 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 174.59099999999998, + "y": 180.225 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 180.61499999999998, + "y": 178.85 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 186.63899999999998, + "y": 180.225 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 191.46899999999997, + "y": 184.077 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 194.14999999999998, + "y": 189.644 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.07426, + "axes": { + "#": 843 + }, + "bounds": { + "#": 854 + }, + "circleRadius": 19.274819958847736, + "collisionFilter": { + "#": 857 + }, + "constraintImpulse": { + "#": 858 + }, + "density": 0.001, + "force": { + "#": 859 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 24, + "inertia": 839.1582416552851, + "inverseInertia": 0.0011916703553163535, + "inverseMass": 0.8710237959694349, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.14807426, + "motion": 0, + "parent": null, + "position": { + "#": 860 + }, + "positionImpulse": { + "#": 861 + }, + "positionPrev": { + "#": 862 + }, + "render": { + "#": 863 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 865 + }, + "vertices": { + "#": 866 + } + }, + [ + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + } + ], + { + "x": -0.9510438158398417, + "y": -0.30905607962438386 + }, + { + "x": -0.8089440000270397, + "y": -0.5878857072767232 + }, + { + "x": -0.5878857072767232, + "y": -0.8089440000270397 + }, + { + "x": -0.30905607962438386, + "y": -0.9510438158398417 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905607962438386, + "y": -0.9510438158398417 + }, + { + "x": 0.5878857072767232, + "y": -0.8089440000270397 + }, + { + "x": 0.8089440000270397, + "y": -0.5878857072767232 + }, + { + "x": 0.9510438158398417, + "y": -0.30905607962438386 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 855 + }, + "min": { + "#": 856 + } + }, + { + "x": 252.226, + "y": 216.92600000000002 + }, + { + "x": 214.14999999999998, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 233.188, + "y": 197.888 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 233.188, + "y": 197.888 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 864 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.226, + "y": 200.90300000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 250.362, + "y": 206.639 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 246.81699999999998, + "y": 211.517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.939, + "y": 215.062 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 236.20299999999997, + "y": 216.92600000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 230.173, + "y": 216.92600000000002 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 224.43699999999998, + "y": 215.062 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 219.559, + "y": 211.517 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 216.01399999999998, + "y": 206.639 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 214.14999999999998, + "y": 200.90300000000002 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 214.14999999999998, + "y": 194.87300000000002 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 216.01399999999998, + "y": 189.137 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 219.559, + "y": 184.25900000000001 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 224.43699999999998, + "y": 180.714 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 230.173, + "y": 178.85 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 236.20299999999997, + "y": 178.85 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 241.939, + "y": 180.714 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 246.81699999999998, + "y": 184.25900000000001 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 250.362, + "y": 189.137 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 252.226, + "y": 194.87300000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 813.928944, + "axes": { + "#": 888 + }, + "bounds": { + "#": 898 + }, + "circleRadius": 16.261016803840878, + "collisionFilter": { + "#": 901 + }, + "constraintImpulse": { + "#": 902 + }, + "density": 0.001, + "force": { + "#": 903 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 25, + "inertia": 421.78337188051313, + "inverseInertia": 0.002370885309066403, + "inverseMass": 1.2286084766632897, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.813928944, + "motion": 0, + "parent": null, + "position": { + "#": 904 + }, + "positionImpulse": { + "#": 905 + }, + "positionPrev": { + "#": 906 + }, + "render": { + "#": 907 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 909 + }, + "vertices": { + "#": 910 + } + }, + [ + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + } + ], + { + "x": -0.9396692887425622, + "y": -0.34208424078587313 + }, + { + "x": -0.7660396478221458, + "y": -0.6427933244554761 + }, + { + "x": -0.49996774664129423, + "y": -0.8660440244689798 + }, + { + "x": -0.17369442727416068, + "y": -0.9847995968388195 + }, + { + "x": 0.17369442727416068, + "y": -0.9847995968388195 + }, + { + "x": 0.49996774664129423, + "y": -0.8660440244689798 + }, + { + "x": 0.7660396478221458, + "y": -0.6427933244554761 + }, + { + "x": 0.9396692887425622, + "y": -0.34208424078587313 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 899 + }, + "min": { + "#": 900 + } + }, + { + "x": 304.254, + "y": 211.37199999999999 + }, + { + "x": 272.226, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.24, + "y": 195.111 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.24, + "y": 195.111 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 908 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 304.254, + "y": 197.935 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 302.322, + "y": 203.242 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 298.692, + "y": 207.56799999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 293.802, + "y": 210.391 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 288.24, + "y": 211.37199999999999 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 282.678, + "y": 210.391 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 277.788, + "y": 207.56799999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 274.158, + "y": 203.242 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 272.226, + "y": 197.935 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 272.226, + "y": 192.28699999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 274.158, + "y": 186.98 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 277.788, + "y": 182.654 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 282.678, + "y": 179.831 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 288.24, + "y": 178.85 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 293.802, + "y": 179.831 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 298.692, + "y": 182.654 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 302.322, + "y": 186.98 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 304.254, + "y": 192.28699999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 405.9288839999999, + "axes": { + "#": 930 + }, + "bounds": { + "#": 937 + }, + "circleRadius": 11.63198731138546, + "collisionFilter": { + "#": 940 + }, + "constraintImpulse": { + "#": 941 + }, + "density": 0.001, + "force": { + "#": 942 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 26, + "inertia": 104.94637250178351, + "inverseInertia": 0.009528676181570788, + "inverseMass": 2.463485697657327, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.40592888399999993, + "motion": 0, + "parent": null, + "position": { + "#": 943 + }, + "positionImpulse": { + "#": 944 + }, + "positionPrev": { + "#": 945 + }, + "render": { + "#": 946 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 948 + }, + "vertices": { + "#": 949 + } + }, + [ + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + } + ], + { + "x": -0.8659753666343715, + "y": -0.5000866568730521 + }, + { + "x": -0.5000866568730521, + "y": -0.8659753666343715 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000866568730521, + "y": -0.8659753666343715 + }, + { + "x": 0.8659753666343715, + "y": -0.5000866568730521 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 938 + }, + "min": { + "#": 939 + } + }, + { + "x": 346.726, + "y": 201.32199999999997 + }, + { + "x": 324.254, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.49, + "y": 190.08599999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 335.49, + "y": 190.08599999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 947 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 346.726, + "y": 193.09699999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 343.71500000000003, + "y": 198.31099999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 338.50100000000003, + "y": 201.32199999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 332.479, + "y": 201.32199999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 327.265, + "y": 198.31099999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 324.254, + "y": 193.09699999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 324.254, + "y": 187.075 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 327.265, + "y": 181.861 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 332.479, + "y": 178.85 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 338.50100000000003, + "y": 178.85 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 343.71500000000003, + "y": 181.861 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 346.726, + "y": 187.075 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 813.045236, + "axes": { + "#": 963 + }, + "bounds": { + "#": 973 + }, + "circleRadius": 16.25192901234568, + "collisionFilter": { + "#": 976 + }, + "constraintImpulse": { + "#": 977 + }, + "density": 0.001, + "force": { + "#": 978 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 27, + "inertia": 420.8679825768214, + "inverseInertia": 0.0023760419927345484, + "inverseMass": 1.2299438650176162, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8130452360000001, + "motion": 0, + "parent": null, + "position": { + "#": 979 + }, + "positionImpulse": { + "#": 980 + }, + "positionPrev": { + "#": 981 + }, + "render": { + "#": 982 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 984 + }, + "vertices": { + "#": 985 + } + }, + [ + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + } + ], + { + "x": -0.939720981661198, + "y": -0.3419422124068839 + }, + { + "x": -0.7660677180217655, + "y": -0.6427598707176146 + }, + { + "x": -0.4999115829199475, + "y": -0.8660764453917866 + }, + { + "x": -0.173643819893381, + "y": -0.9848085213953193 + }, + { + "x": 0.173643819893381, + "y": -0.9848085213953193 + }, + { + "x": 0.4999115829199475, + "y": -0.8660764453917866 + }, + { + "x": 0.7660677180217655, + "y": -0.6427598707176146 + }, + { + "x": 0.939720981661198, + "y": -0.3419422124068839 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 974 + }, + "min": { + "#": 975 + } + }, + { + "x": 398.736, + "y": 211.354 + }, + { + "x": 366.726, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.731, + "y": 195.102 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 382.731, + "y": 195.102 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 983 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 398.736, + "y": 197.924 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 396.806, + "y": 203.228 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 393.178, + "y": 207.552 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 388.289, + "y": 210.374 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 382.731, + "y": 211.354 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 377.173, + "y": 210.374 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 372.284, + "y": 207.552 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 368.656, + "y": 203.228 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 366.726, + "y": 197.924 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 366.726, + "y": 192.28 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 368.656, + "y": 186.976 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 372.284, + "y": 182.65200000000002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 377.173, + "y": 179.83 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 382.731, + "y": 178.85 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 388.289, + "y": 179.83 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 393.178, + "y": 182.65200000000002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 396.806, + "y": 186.976 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 398.736, + "y": 192.28 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1175.440884, + "axes": { + "#": 1005 + }, + "bounds": { + "#": 1016 + }, + "circleRadius": 19.503557956104252, + "collisionFilter": { + "#": 1019 + }, + "constraintImpulse": { + "#": 1020 + }, + "density": 0.001, + "force": { + "#": 1021 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 28, + "inertia": 879.6410498592595, + "inverseInertia": 0.00113682734583612, + "inverseMass": 0.8507446130315133, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1754408840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1022 + }, + "positionImpulse": { + "#": 1023 + }, + "positionPrev": { + "#": 1024 + }, + "render": { + "#": 1025 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1027 + }, + "vertices": { + "#": 1028 + } + }, + [ + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "x": -0.9510810304000095, + "y": -0.3089415375330036 + }, + { + "x": -0.8090123548449776, + "y": -0.5877916380046453 + }, + { + "x": -0.5877916380046453, + "y": -0.8090123548449776 + }, + { + "x": -0.3089415375330036, + "y": -0.9510810304000095 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089415375330036, + "y": -0.9510810304000095 + }, + { + "x": 0.5877916380046453, + "y": -0.8090123548449776 + }, + { + "x": 0.8090123548449776, + "y": -0.5877916380046453 + }, + { + "x": 0.9510810304000095, + "y": -0.3089415375330036 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1017 + }, + "min": { + "#": 1018 + } + }, + { + "x": 457.26199999999994, + "y": 217.376 + }, + { + "x": 418.736, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.99899999999997, + "y": 198.113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 437.99899999999997, + "y": 198.113 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1026 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 457.26199999999994, + "y": 201.164 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 455.37699999999995, + "y": 206.967 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 451.78999999999996, + "y": 211.904 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 446.85299999999995, + "y": 215.491 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 441.04999999999995, + "y": 217.376 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 434.948, + "y": 217.376 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 429.145, + "y": 215.491 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 424.20799999999997, + "y": 211.904 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 420.621, + "y": 206.967 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 418.736, + "y": 201.164 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 418.736, + "y": 195.062 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 420.621, + "y": 189.259 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 424.20799999999997, + "y": 184.322 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 429.145, + "y": 180.73499999999999 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 434.948, + "y": 178.85 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 441.04999999999995, + "y": 178.85 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 446.85299999999995, + "y": 180.73499999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 451.78999999999996, + "y": 184.322 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 455.37699999999995, + "y": 189.259 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 457.26199999999994, + "y": 195.062 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 324.43099600000005, + "axes": { + "#": 1050 + }, + "bounds": { + "#": 1057 + }, + "circleRadius": 10.399219821673526, + "collisionFilter": { + "#": 1060 + }, + "constraintImpulse": { + "#": 1061 + }, + "density": 0.001, + "force": { + "#": 1062 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 29, + "inertia": 67.03663440105248, + "inverseInertia": 0.014917216667194436, + "inverseMass": 3.082319545078238, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.3244309960000001, + "motion": 0, + "parent": null, + "position": { + "#": 1063 + }, + "positionImpulse": { + "#": 1064 + }, + "positionPrev": { + "#": 1065 + }, + "render": { + "#": 1066 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1068 + }, + "vertices": { + "#": 1069 + } + }, + [ + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + } + ], + { + "x": -0.8659473272702323, + "y": -0.5001352081123076 + }, + { + "x": -0.5001352081123076, + "y": -0.8659473272702323 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5001352081123076, + "y": -0.8659473272702323 + }, + { + "x": 0.8659473272702323, + "y": -0.5001352081123076 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1058 + }, + "min": { + "#": 1059 + } + }, + { + "x": 497.352, + "y": 198.93999999999997 + }, + { + "x": 477.26199999999994, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.30699999999996, + "y": 188.89499999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.30699999999996, + "y": 188.89499999999998 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1067 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 497.352, + "y": 191.587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.65999999999997, + "y": 196.248 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 489.99899999999997, + "y": 198.93999999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 484.61499999999995, + "y": 198.93999999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.95399999999995, + "y": 196.248 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 477.26199999999994, + "y": 191.587 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 477.26199999999994, + "y": 186.20299999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 479.95399999999995, + "y": 181.54199999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 484.61499999999995, + "y": 178.85 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 489.99899999999997, + "y": 178.85 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 494.65999999999997, + "y": 181.54199999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 497.352, + "y": 186.20299999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 722.1773659999999, + "axes": { + "#": 1083 + }, + "bounds": { + "#": 1092 + }, + "circleRadius": 15.358667695473251, + "collisionFilter": { + "#": 1095 + }, + "constraintImpulse": { + "#": 1096 + }, + "density": 0.001, + "force": { + "#": 1097 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 30, + "inertia": 332.0674558099107, + "inverseInertia": 0.0030114363286851023, + "inverseMass": 1.3847013865012214, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7221773659999999, + "motion": 0, + "parent": null, + "position": { + "#": 1098 + }, + "positionImpulse": { + "#": 1099 + }, + "positionPrev": { + "#": 1100 + }, + "render": { + "#": 1101 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1103 + }, + "vertices": { + "#": 1104 + } + }, + [ + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + } + ], + { + "x": -0.9238500637214436, + "y": -0.3827545685708854 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3827545685708854, + "y": -0.9238500637214436 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827545685708854, + "y": -0.9238500637214436 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.9238500637214436, + "y": -0.3827545685708854 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1093 + }, + "min": { + "#": 1094 + } + }, + { + "x": 547.4799999999999, + "y": 208.97799999999998 + }, + { + "x": 517.3519999999999, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 532.4159999999999, + "y": 193.914 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 532.4159999999999, + "y": 193.914 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1102 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 547.4799999999999, + "y": 196.91 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 545.1859999999999, + "y": 202.44699999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 540.949, + "y": 206.684 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 535.4119999999999, + "y": 208.97799999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 529.42, + "y": 208.97799999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 523.8829999999999, + "y": 206.684 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 519.646, + "y": 202.44699999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 517.3519999999999, + "y": 196.91 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 517.3519999999999, + "y": 190.91799999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 519.646, + "y": 185.381 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 523.8829999999999, + "y": 181.14399999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 529.42, + "y": 178.85 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 535.4119999999999, + "y": 178.85 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 540.949, + "y": 181.14399999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 545.1859999999999, + "y": 185.381 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 547.4799999999999, + "y": 190.91799999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 486.2764840000001, + "axes": { + "#": 1122 + }, + "bounds": { + "#": 1130 + }, + "circleRadius": 12.653506515775035, + "collisionFilter": { + "#": 1133 + }, + "constraintImpulse": { + "#": 1134 + }, + "density": 0.001, + "force": { + "#": 1135 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 31, + "inertia": 150.57294030609683, + "inverseInertia": 0.006641299545370631, + "inverseMass": 2.0564432640752575, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4862764840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1136 + }, + "positionImpulse": { + "#": 1137 + }, + "positionPrev": { + "#": 1138 + }, + "render": { + "#": 1139 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1141 + }, + "vertices": { + "#": 1142 + } + }, + [ + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "x": -0.9009708147132571, + "y": -0.43387969649999736 + }, + { + "x": -0.6234599159723792, + "y": -0.7818553147326646 + }, + { + "x": -0.22268014841323974, + "y": -0.9748915588426528 + }, + { + "x": 0.22268014841323974, + "y": -0.9748915588426528 + }, + { + "x": 0.6234599159723792, + "y": -0.7818553147326646 + }, + { + "x": 0.9009708147132571, + "y": -0.43387969649999736 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1131 + }, + "min": { + "#": 1132 + } + }, + { + "x": 592.1519999999999, + "y": 204.158 + }, + { + "x": 567.4799999999999, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 579.8159999999999, + "y": 191.504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 579.8159999999999, + "y": 191.504 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1140 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 592.1519999999999, + "y": 194.32 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 589.709, + "y": 199.393 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 585.3059999999999, + "y": 202.904 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 579.8159999999999, + "y": 204.158 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 574.3259999999999, + "y": 202.904 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 569.9229999999999, + "y": 199.393 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 567.4799999999999, + "y": 194.32 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 567.4799999999999, + "y": 188.688 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 569.9229999999999, + "y": 183.61499999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 574.3259999999999, + "y": 180.10399999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 579.8159999999999, + "y": 178.85 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 585.3059999999999, + "y": 180.10399999999998 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 589.709, + "y": 183.61499999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 592.1519999999999, + "y": 188.688 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 555.028152, + "axes": { + "#": 1158 + }, + "bounds": { + "#": 1166 + }, + "circleRadius": 13.518304183813443, + "collisionFilter": { + "#": 1169 + }, + "constraintImpulse": { + "#": 1170 + }, + "density": 0.001, + "force": { + "#": 1171 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 32, + "inertia": 196.15998479488022, + "inverseInertia": 0.005097879677374955, + "inverseMass": 1.8017104112585627, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.555028152, + "motion": 0, + "parent": null, + "position": { + "#": 1172 + }, + "positionImpulse": { + "#": 1173 + }, + "positionPrev": { + "#": 1174 + }, + "render": { + "#": 1175 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1177 + }, + "vertices": { + "#": 1178 + } + }, + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + } + ], + { + "x": -0.901008887984407, + "y": -0.4338006267550824 + }, + { + "x": -0.6234578160368234, + "y": -0.781856989239461 + }, + { + "x": -0.22241855165218072, + "y": -0.9749512746188632 + }, + { + "x": 0.22241855165218072, + "y": -0.9749512746188632 + }, + { + "x": 0.6234578160368234, + "y": -0.781856989239461 + }, + { + "x": 0.901008887984407, + "y": -0.4338006267550824 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1167 + }, + "min": { + "#": 1168 + } + }, + { + "x": 638.5099999999999, + "y": 205.886 + }, + { + "x": 612.1519999999999, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625.3309999999999, + "y": 192.368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625.3309999999999, + "y": 192.368 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1176 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.5099999999999, + "y": 195.376 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 635.8999999999999, + "y": 200.797 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 631.1959999999999, + "y": 204.548 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625.3309999999999, + "y": 205.886 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 619.4659999999999, + "y": 204.548 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 614.762, + "y": 200.797 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 612.1519999999999, + "y": 195.376 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 612.1519999999999, + "y": 189.35999999999999 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 614.762, + "y": 183.939 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 619.4659999999999, + "y": 180.188 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 625.3309999999999, + "y": 178.85 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 631.1959999999999, + "y": 180.188 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 635.8999999999999, + "y": 183.939 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 638.5099999999999, + "y": 189.35999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1227.1883159999998, + "axes": { + "#": 1194 + }, + "bounds": { + "#": 1205 + }, + "circleRadius": 19.928369341563787, + "collisionFilter": { + "#": 1208 + }, + "constraintImpulse": { + "#": 1209 + }, + "density": 0.001, + "force": { + "#": 1210 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 33, + "inertia": 958.7962512746001, + "inverseInertia": 0.001042974457472716, + "inverseMass": 0.8148708612704882, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.227188316, + "motion": 0, + "parent": null, + "position": { + "#": 1211 + }, + "positionImpulse": { + "#": 1212 + }, + "positionPrev": { + "#": 1213 + }, + "render": { + "#": 1214 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1216 + }, + "vertices": { + "#": 1217 + } + }, + [ + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "x": -0.9510458539268092, + "y": -0.30904980784434416 + }, + { + "x": -0.80899262671849, + "y": -0.5878187900323687 + }, + { + "x": -0.5878187900323687, + "y": -0.80899262671849 + }, + { + "x": -0.30904980784434416, + "y": -0.9510458539268092 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30904980784434416, + "y": -0.9510458539268092 + }, + { + "x": 0.5878187900323687, + "y": -0.80899262671849 + }, + { + "x": 0.80899262671849, + "y": -0.5878187900323687 + }, + { + "x": 0.9510458539268092, + "y": -0.30904980784434416 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1206 + }, + "min": { + "#": 1207 + } + }, + { + "x": 697.8759999999999, + "y": 218.21599999999998 + }, + { + "x": 658.5099999999999, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 678.1929999999999, + "y": 198.533 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 678.1929999999999, + "y": 198.533 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1215 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 697.8759999999999, + "y": 201.64999999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 695.9489999999998, + "y": 207.57999999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 692.2839999999999, + "y": 212.624 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 687.2399999999999, + "y": 216.289 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 681.3099999999998, + "y": 218.21599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 675.0759999999999, + "y": 218.21599999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 669.1459999999998, + "y": 216.289 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 664.1019999999999, + "y": 212.624 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 660.4369999999999, + "y": 207.57999999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 658.5099999999999, + "y": 201.64999999999998 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 658.5099999999999, + "y": 195.416 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 660.4369999999999, + "y": 189.486 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 664.1019999999999, + "y": 184.44199999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 669.1459999999998, + "y": 180.777 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 675.0759999999999, + "y": 178.85 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 681.3099999999998, + "y": 178.85 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 687.2399999999999, + "y": 180.777 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 692.2839999999999, + "y": 184.44199999999998 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 695.9489999999998, + "y": 189.486 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 697.8759999999999, + "y": 195.416 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1120.7724680000001, + "axes": { + "#": 1239 + }, + "bounds": { + "#": 1250 + }, + "circleRadius": 19.04419581618656, + "collisionFilter": { + "#": 1253 + }, + "constraintImpulse": { + "#": 1254 + }, + "density": 0.001, + "force": { + "#": 1255 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 34, + "inertia": 799.721573279466, + "inverseInertia": 0.001250435193212608, + "inverseMass": 0.8922417605283286, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1207724680000002, + "motion": 0, + "parent": null, + "position": { + "#": 1256 + }, + "positionImpulse": { + "#": 1257 + }, + "positionPrev": { + "#": 1258 + }, + "render": { + "#": 1259 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1261 + }, + "vertices": { + "#": 1262 + } + }, + [ + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + } + ], + { + "x": -0.9510722943806661, + "y": -0.3089684302020123 + }, + { + "x": -0.8089319902014619, + "y": -0.5879022327128056 + }, + { + "x": -0.5879022327128056, + "y": -0.8089319902014619 + }, + { + "x": -0.3089684302020123, + "y": -0.9510722943806661 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089684302020123, + "y": -0.9510722943806661 + }, + { + "x": 0.5879022327128056, + "y": -0.8089319902014619 + }, + { + "x": 0.8089319902014619, + "y": -0.5879022327128056 + }, + { + "x": 0.9510722943806661, + "y": -0.3089684302020123 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1251 + }, + "min": { + "#": 1252 + } + }, + { + "x": 755.4959999999998, + "y": 216.47 + }, + { + "x": 717.8759999999999, + "y": 178.85 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 736.6859999999998, + "y": 197.66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 736.6859999999998, + "y": 197.66 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1260 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 755.4959999999998, + "y": 200.639 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 753.6549999999999, + "y": 206.30599999999998 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 750.1519999999998, + "y": 211.126 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 745.3319999999998, + "y": 214.629 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 739.6649999999998, + "y": 216.47 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 733.7069999999998, + "y": 216.47 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 728.0399999999998, + "y": 214.629 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 723.2199999999998, + "y": 211.126 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 719.7169999999998, + "y": 206.30599999999998 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 717.8759999999999, + "y": 200.639 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 717.8759999999999, + "y": 194.68099999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 719.7169999999998, + "y": 189.014 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 723.2199999999998, + "y": 184.194 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 728.0399999999998, + "y": 180.691 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 733.7069999999998, + "y": 178.85 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 739.6649999999998, + "y": 178.85 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 745.3319999999998, + "y": 180.691 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 750.1519999999998, + "y": 184.194 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 753.6549999999999, + "y": 189.014 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 755.4959999999998, + "y": 194.68099999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 628.0030680000002, + "axes": { + "#": 1284 + }, + "bounds": { + "#": 1293 + }, + "circleRadius": 14.322573731138545, + "collisionFilter": { + "#": 1296 + }, + "constraintImpulse": { + "#": 1297 + }, + "density": 0.001, + "force": { + "#": 1298 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 35, + "inertia": 251.1088965588656, + "inverseInertia": 0.003982336005230214, + "inverseMass": 1.5923489087158402, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6280030680000003, + "motion": 0, + "parent": null, + "position": { + "#": 1299 + }, + "positionImpulse": { + "#": 1300 + }, + "positionPrev": { + "#": 1301 + }, + "render": { + "#": 1302 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1304 + }, + "vertices": { + "#": 1305 + } + }, + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": -0.923916516222473, + "y": -0.3825941335819576 + }, + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": -0.3825941335819576, + "y": -0.923916516222473 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3825941335819576, + "y": -0.923916516222473 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0.923916516222473, + "y": -0.3825941335819576 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1294 + }, + "min": { + "#": 1295 + } + }, + { + "x": 48.093999999999994, + "y": 286.31000000000006 + }, + { + "x": 19.999999999999996, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 34.047, + "y": 272.26300000000003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 34.047, + "y": 272.26300000000003 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1303 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 48.093999999999994, + "y": 275.057 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 45.955999999999996, + "y": 280.22 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 42.004, + "y": 284.172 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 36.840999999999994, + "y": 286.31000000000006 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 31.252999999999997, + "y": 286.31000000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 26.089999999999996, + "y": 284.172 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 22.137999999999998, + "y": 280.22 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 19.999999999999996, + "y": 275.057 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 19.999999999999996, + "y": 269.46900000000005 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 22.137999999999998, + "y": 264.30600000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 26.089999999999996, + "y": 260.35400000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 31.252999999999997, + "y": 258.216 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 36.840999999999994, + "y": 258.216 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 42.004, + "y": 260.35400000000004 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 45.955999999999996, + "y": 264.30600000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 48.093999999999994, + "y": 269.46900000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 536.790174, + "axes": { + "#": 1323 + }, + "bounds": { + "#": 1331 + }, + "circleRadius": 13.294367283950617, + "collisionFilter": { + "#": 1334 + }, + "constraintImpulse": { + "#": 1335 + }, + "density": 0.001, + "force": { + "#": 1336 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 36, + "inertia": 183.48032886968383, + "inverseInertia": 0.005450175537401865, + "inverseMass": 1.8629253075709244, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.536790174, + "motion": 0, + "parent": null, + "position": { + "#": 1337 + }, + "positionImpulse": { + "#": 1338 + }, + "positionPrev": { + "#": 1339 + }, + "render": { + "#": 1340 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1342 + }, + "vertices": { + "#": 1343 + } + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + } + ], + { + "x": -0.9009869891740203, + "y": -0.43384610789902656 + }, + { + "x": -0.6234782418052662, + "y": -0.7818407011632318 + }, + { + "x": -0.22243926136633385, + "y": -0.9749465498183989 + }, + { + "x": 0.22243926136633385, + "y": -0.9749465498183989 + }, + { + "x": 0.6234782418052662, + "y": -0.7818407011632318 + }, + { + "x": 0.9009869891740203, + "y": -0.43384610789902656 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1332 + }, + "min": { + "#": 1333 + } + }, + { + "x": 94.01599999999999, + "y": 284.804 + }, + { + "x": 68.094, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 81.05499999999999, + "y": 271.51 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 81.05499999999999, + "y": 271.51 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1341 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 94.01599999999999, + "y": 274.468 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 91.449, + "y": 279.799 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 86.823, + "y": 283.488 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 81.05499999999999, + "y": 284.804 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 75.28699999999999, + "y": 283.488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 70.661, + "y": 279.799 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 68.094, + "y": 274.468 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 68.094, + "y": 268.552 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 70.661, + "y": 263.221 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 75.28699999999999, + "y": 259.532 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 81.05499999999999, + "y": 258.216 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 86.823, + "y": 259.532 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 91.449, + "y": 263.221 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 94.01599999999999, + "y": 268.552 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 438.00552799999997, + "axes": { + "#": 1359 + }, + "bounds": { + "#": 1367 + }, + "circleRadius": 12.008959190672154, + "collisionFilter": { + "#": 1370 + }, + "constraintImpulse": { + "#": 1371 + }, + "density": 0.001, + "force": { + "#": 1372 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 37, + "inertia": 122.16296885484358, + "inverseInertia": 0.008185786653467954, + "inverseMass": 2.2830762081158027, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.438005528, + "motion": 0, + "parent": null, + "position": { + "#": 1373 + }, + "positionImpulse": { + "#": 1374 + }, + "positionPrev": { + "#": 1375 + }, + "render": { + "#": 1376 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1378 + }, + "vertices": { + "#": 1379 + } + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + } + ], + { + "x": -0.9009529061315026, + "y": -0.43391688251691707 + }, + { + "x": -0.6235308204487997, + "y": -0.7817987694736074 + }, + { + "x": -0.22249452113027474, + "y": -0.9749339403605815 + }, + { + "x": 0.22249452113027474, + "y": -0.9749339403605815 + }, + { + "x": 0.6235308204487997, + "y": -0.7817987694736074 + }, + { + "x": 0.9009529061315026, + "y": -0.43391688251691707 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1368 + }, + "min": { + "#": 1369 + } + }, + { + "x": 137.432, + "y": 282.23400000000004 + }, + { + "x": 114.01599999999999, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.72399999999999, + "y": 270.225 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 125.72399999999999, + "y": 270.225 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1377 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 137.432, + "y": 272.89700000000005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 135.113, + "y": 277.71200000000005 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 130.93399999999997, + "y": 281.045 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125.72399999999999, + "y": 282.23400000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 120.514, + "y": 281.045 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 116.335, + "y": 277.71200000000005 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 114.01599999999999, + "y": 272.89700000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 114.01599999999999, + "y": 267.553 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 116.335, + "y": 262.73800000000006 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 120.514, + "y": 259.40500000000003 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 125.72399999999999, + "y": 258.216 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 130.93399999999997, + "y": 259.40500000000003 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 135.113, + "y": 262.73800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 137.432, + "y": 267.553 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 802.396328, + "axes": { + "#": 1395 + }, + "bounds": { + "#": 1405 + }, + "circleRadius": 16.145361796982165, + "collisionFilter": { + "#": 1408 + }, + "constraintImpulse": { + "#": 1409 + }, + "density": 0.001, + "force": { + "#": 1410 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 38, + "inertia": 409.9154941824296, + "inverseInertia": 0.0024395272054658127, + "inverseMass": 1.2462669196063418, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.802396328, + "motion": 0, + "parent": null, + "position": { + "#": 1411 + }, + "positionImpulse": { + "#": 1412 + }, + "positionPrev": { + "#": 1413 + }, + "render": { + "#": 1414 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1416 + }, + "vertices": { + "#": 1417 + } + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + } + ], + { + "x": -0.9396788158754413, + "y": -0.3420580696240458 + }, + { + "x": -0.7660385515515891, + "y": -0.6427946309177943 + }, + { + "x": -0.5000517732992366, + "y": -0.8659955103926862 + }, + { + "x": -0.17353097513080934, + "y": -0.9848284117906786 + }, + { + "x": 0.17353097513080934, + "y": -0.9848284117906786 + }, + { + "x": 0.5000517732992366, + "y": -0.8659955103926862 + }, + { + "x": 0.7660385515515891, + "y": -0.6427946309177943 + }, + { + "x": 0.9396788158754413, + "y": -0.3420580696240458 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1406 + }, + "min": { + "#": 1407 + } + }, + { + "x": 189.232, + "y": 290.506 + }, + { + "x": 157.432, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 173.332, + "y": 274.361 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 173.332, + "y": 274.361 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1415 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 189.232, + "y": 277.16499999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 187.314, + "y": 282.43399999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 183.71, + "y": 286.729 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 178.85399999999998, + "y": 289.533 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 173.332, + "y": 290.506 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 167.81, + "y": 289.533 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 162.95399999999998, + "y": 286.729 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 159.35, + "y": 282.43399999999997 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 157.432, + "y": 277.16499999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 157.432, + "y": 271.557 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 159.35, + "y": 266.288 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 162.95399999999998, + "y": 261.993 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 167.81, + "y": 259.18899999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 173.332, + "y": 258.216 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 178.85399999999998, + "y": 259.18899999999996 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 183.71, + "y": 261.993 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 187.314, + "y": 266.288 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 189.232, + "y": 271.557 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1091.045108, + "axes": { + "#": 1437 + }, + "bounds": { + "#": 1448 + }, + "circleRadius": 18.78999485596708, + "collisionFilter": { + "#": 1451 + }, + "constraintImpulse": { + "#": 1452 + }, + "density": 0.001, + "force": { + "#": 1453 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 39, + "inertia": 757.8605778590133, + "inverseInertia": 0.0013195039156477042, + "inverseMass": 0.9165523887762117, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.091045108, + "motion": 0, + "parent": null, + "position": { + "#": 1454 + }, + "positionImpulse": { + "#": 1455 + }, + "positionPrev": { + "#": 1456 + }, + "render": { + "#": 1457 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1459 + }, + "vertices": { + "#": 1460 + } + }, + [ + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + } + ], + { + "x": -0.9510378187801216, + "y": -0.30907453348658226 + }, + { + "x": -0.8091110339454614, + "y": -0.587655796149163 + }, + { + "x": -0.587655796149163, + "y": -0.8091110339454614 + }, + { + "x": -0.30907453348658226, + "y": -0.9510378187801216 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907453348658226, + "y": -0.9510378187801216 + }, + { + "x": 0.587655796149163, + "y": -0.8091110339454614 + }, + { + "x": 0.8091110339454614, + "y": -0.587655796149163 + }, + { + "x": 0.9510378187801216, + "y": -0.30907453348658226 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1449 + }, + "min": { + "#": 1450 + } + }, + { + "x": 246.35, + "y": 295.33400000000006 + }, + { + "x": 209.232, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.791, + "y": 276.77500000000003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 227.791, + "y": 276.77500000000003 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1458 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 246.35, + "y": 279.71400000000006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 244.533, + "y": 285.305 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 241.078, + "y": 290.062 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 236.321, + "y": 293.51700000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 230.73, + "y": 295.33400000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 224.852, + "y": 295.33400000000006 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 219.261, + "y": 293.51700000000005 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 214.504, + "y": 290.062 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 211.049, + "y": 285.305 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 209.232, + "y": 279.71400000000006 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 209.232, + "y": 273.836 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 211.049, + "y": 268.245 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 214.504, + "y": 263.48800000000006 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 219.261, + "y": 260.033 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 224.852, + "y": 258.216 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 230.73, + "y": 258.216 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 236.321, + "y": 260.033 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 241.078, + "y": 263.48800000000006 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 244.533, + "y": 268.245 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 246.35, + "y": 273.836 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 677.950314, + "axes": { + "#": 1482 + }, + "bounds": { + "#": 1491 + }, + "circleRadius": 14.881129972565159, + "collisionFilter": { + "#": 1494 + }, + "constraintImpulse": { + "#": 1495 + }, + "density": 0.001, + "force": { + "#": 1496 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 40, + "inertia": 292.6404130867056, + "inverseInertia": 0.00341716302766328, + "inverseMass": 1.4750343489036277, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.677950314, + "motion": 0, + "parent": null, + "position": { + "#": 1497 + }, + "positionImpulse": { + "#": 1498 + }, + "positionPrev": { + "#": 1499 + }, + "render": { + "#": 1500 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1502 + }, + "vertices": { + "#": 1503 + } + }, + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + } + ], + { + "x": -0.9238951037390043, + "y": -0.3826458379325384 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3826458379325384, + "y": -0.9238951037390043 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3826458379325384, + "y": -0.9238951037390043 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238951037390043, + "y": -0.3826458379325384 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1492 + }, + "min": { + "#": 1493 + } + }, + { + "x": 295.5400000000001, + "y": 287.40600000000006 + }, + { + "x": 266.35, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280.94500000000005, + "y": 272.81100000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280.94500000000005, + "y": 272.81100000000004 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1501 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 295.5400000000001, + "y": 275.71400000000006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 293.31800000000004, + "y": 281.07900000000006 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 289.2130000000001, + "y": 285.184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 283.84800000000007, + "y": 287.40600000000006 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 278.04200000000003, + "y": 287.40600000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 272.677, + "y": 285.184 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 268.57200000000006, + "y": 281.07900000000006 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 266.35, + "y": 275.71400000000006 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 266.35, + "y": 269.908 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 268.57200000000006, + "y": 264.543 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 272.677, + "y": 260.43800000000005 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 278.04200000000003, + "y": 258.216 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 283.84800000000007, + "y": 258.216 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 289.2130000000001, + "y": 260.43800000000005 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 293.31800000000004, + "y": 264.543 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 295.5400000000001, + "y": 269.908 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 460.97596999999996, + "axes": { + "#": 1521 + }, + "bounds": { + "#": 1529 + }, + "circleRadius": 12.320001714677641, + "collisionFilter": { + "#": 1532 + }, + "constraintImpulse": { + "#": 1533 + }, + "density": 0.001, + "force": { + "#": 1534 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 41, + "inertia": 135.31220425278414, + "inverseInertia": 0.007390316383671093, + "inverseMass": 2.1693104740362066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.46097596999999996, + "motion": 0, + "parent": null, + "position": { + "#": 1535 + }, + "positionImpulse": { + "#": 1536 + }, + "positionPrev": { + "#": 1537 + }, + "render": { + "#": 1538 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1540 + }, + "vertices": { + "#": 1541 + } + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + } + ], + { + "x": -0.9009673433676825, + "y": -0.4338869048323313 + }, + { + "x": -0.6235156169322131, + "y": -0.7818108949366475 + }, + { + "x": -0.22252763105305415, + "y": -0.9749263835889949 + }, + { + "x": 0.22252763105305415, + "y": -0.9749263835889949 + }, + { + "x": 0.6235156169322131, + "y": -0.7818108949366475 + }, + { + "x": 0.9009673433676825, + "y": -0.4338869048323313 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1530 + }, + "min": { + "#": 1531 + } + }, + { + "x": 339.5620000000001, + "y": 282.856 + }, + { + "x": 315.5400000000001, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 327.5510000000001, + "y": 270.536 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 327.5510000000001, + "y": 270.536 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1539 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 339.5620000000001, + "y": 273.277 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 337.1830000000001, + "y": 278.217 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 332.89600000000013, + "y": 281.636 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 327.5510000000001, + "y": 282.856 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 322.2060000000001, + "y": 281.636 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 317.9190000000001, + "y": 278.217 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 315.5400000000001, + "y": 273.277 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 315.5400000000001, + "y": 267.79499999999996 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 317.9190000000001, + "y": 262.855 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 322.2060000000001, + "y": 259.43600000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 327.5510000000001, + "y": 258.216 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 332.89600000000013, + "y": 259.43600000000004 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 337.1830000000001, + "y": 262.855 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 339.5620000000001, + "y": 267.79499999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1205.152204, + "axes": { + "#": 1557 + }, + "bounds": { + "#": 1568 + }, + "circleRadius": 19.748585390946502, + "collisionFilter": { + "#": 1571 + }, + "constraintImpulse": { + "#": 1572 + }, + "density": 0.001, + "force": { + "#": 1573 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 42, + "inertia": 924.671990568659, + "inverseInertia": 0.0010814645735997858, + "inverseMass": 0.8297707100239432, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.205152204, + "motion": 0, + "parent": null, + "position": { + "#": 1574 + }, + "positionImpulse": { + "#": 1575 + }, + "positionPrev": { + "#": 1576 + }, + "render": { + "#": 1577 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1579 + }, + "vertices": { + "#": 1580 + } + }, + [ + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + } + ], + { + "x": -0.9510828167087596, + "y": -0.30893603830134786 + }, + { + "x": -0.8089600004028265, + "y": -0.5878636897685203 + }, + { + "x": -0.5878636897685203, + "y": -0.8089600004028265 + }, + { + "x": -0.30893603830134786, + "y": -0.9510828167087596 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30893603830134786, + "y": -0.9510828167087596 + }, + { + "x": 0.5878636897685203, + "y": -0.8089600004028265 + }, + { + "x": 0.8089600004028265, + "y": -0.5878636897685203 + }, + { + "x": 0.9510828167087596, + "y": -0.30893603830134786 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1569 + }, + "min": { + "#": 1570 + } + }, + { + "x": 398.5720000000001, + "y": 297.226 + }, + { + "x": 359.5620000000001, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 379.0670000000001, + "y": 277.721 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 379.0670000000001, + "y": 277.721 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1578 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 398.5720000000001, + "y": 280.81 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 396.6630000000001, + "y": 286.687 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 393.0310000000001, + "y": 291.685 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 388.03300000000013, + "y": 295.317 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 382.1560000000001, + "y": 297.226 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 375.9780000000001, + "y": 297.226 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 370.1010000000001, + "y": 295.317 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 365.1030000000001, + "y": 291.685 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 361.4710000000001, + "y": 286.687 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 359.5620000000001, + "y": 280.81 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 359.5620000000001, + "y": 274.632 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 361.4710000000001, + "y": 268.755 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 365.1030000000001, + "y": 263.757 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 370.1010000000001, + "y": 260.125 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 375.9780000000001, + "y": 258.216 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 382.1560000000001, + "y": 258.216 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 388.03300000000013, + "y": 260.125 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 393.0310000000001, + "y": 263.757 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 396.6630000000001, + "y": 268.755 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 398.5720000000001, + "y": 274.632 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 362.584524, + "axes": { + "#": 1602 + }, + "bounds": { + "#": 1609 + }, + "circleRadius": 10.994041495198903, + "collisionFilter": { + "#": 1612 + }, + "constraintImpulse": { + "#": 1613 + }, + "density": 0.001, + "force": { + "#": 1614 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 43, + "inertia": 83.73095584960791, + "inverseInertia": 0.011943014263400204, + "inverseMass": 2.7579776129661835, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.362584524, + "motion": 0, + "parent": null, + "position": { + "#": 1615 + }, + "positionImpulse": { + "#": 1616 + }, + "positionPrev": { + "#": 1617 + }, + "render": { + "#": 1618 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1620 + }, + "vertices": { + "#": 1621 + } + }, + [ + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + } + ], + { + "x": -0.8660831831124717, + "y": -0.4998999099117431 + }, + { + "x": -0.4998999099117431, + "y": -0.8660831831124717 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4998999099117431, + "y": -0.8660831831124717 + }, + { + "x": 0.8660831831124717, + "y": -0.4998999099117431 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1610 + }, + "min": { + "#": 1611 + } + }, + { + "x": 439.8100000000002, + "y": 279.45400000000006 + }, + { + "x": 418.5720000000001, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.19100000000014, + "y": 268.83500000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 429.19100000000014, + "y": 268.83500000000004 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1619 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 439.8100000000002, + "y": 271.68000000000006 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 436.96500000000015, + "y": 276.60900000000004 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 432.0360000000002, + "y": 279.45400000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 426.3460000000001, + "y": 279.45400000000006 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 421.41700000000014, + "y": 276.60900000000004 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 418.5720000000001, + "y": 271.68000000000006 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 418.5720000000001, + "y": 265.99 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 421.41700000000014, + "y": 261.06100000000004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 426.3460000000001, + "y": 258.216 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 432.0360000000002, + "y": 258.216 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 436.96500000000015, + "y": 261.06100000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 439.8100000000002, + "y": 265.99 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 805.817864, + "axes": { + "#": 1635 + }, + "bounds": { + "#": 1645 + }, + "circleRadius": 16.1798268175583, + "collisionFilter": { + "#": 1648 + }, + "constraintImpulse": { + "#": 1649 + }, + "density": 0.001, + "force": { + "#": 1650 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 44, + "inertia": 413.41882770208514, + "inverseInertia": 0.002418854519902545, + "inverseMass": 1.2409752186878795, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.805817864, + "motion": 0, + "parent": null, + "position": { + "#": 1651 + }, + "positionImpulse": { + "#": 1652 + }, + "positionPrev": { + "#": 1653 + }, + "render": { + "#": 1654 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1656 + }, + "vertices": { + "#": 1657 + } + }, + [ + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + } + ], + { + "x": -0.9396790547219881, + "y": -0.34205741348023866 + }, + { + "x": -0.7659992927826746, + "y": -0.6428414139244937 + }, + { + "x": -0.5000818959792287, + "y": -0.8659781159554899 + }, + { + "x": -0.17368381518741813, + "y": -0.9848014684909557 + }, + { + "x": 0.17368381518741813, + "y": -0.9848014684909557 + }, + { + "x": 0.5000818959792287, + "y": -0.8659781159554899 + }, + { + "x": 0.7659992927826746, + "y": -0.6428414139244937 + }, + { + "x": 0.9396790547219881, + "y": -0.34205741348023866 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1646 + }, + "min": { + "#": 1647 + } + }, + { + "x": 491.6780000000002, + "y": 290.576 + }, + { + "x": 459.8100000000002, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475.7440000000002, + "y": 274.396 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 475.7440000000002, + "y": 274.396 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1655 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 491.6780000000002, + "y": 277.206 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 489.7560000000002, + "y": 282.486 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 486.1440000000002, + "y": 286.79 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 481.2780000000002, + "y": 289.6 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 475.7440000000002, + "y": 290.576 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 470.2100000000002, + "y": 289.6 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 465.3440000000002, + "y": 286.79 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 461.7320000000002, + "y": 282.486 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 459.8100000000002, + "y": 277.206 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 459.8100000000002, + "y": 271.586 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 461.7320000000002, + "y": 266.30600000000004 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 465.3440000000002, + "y": 262.002 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 470.2100000000002, + "y": 259.192 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 475.7440000000002, + "y": 258.216 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 481.2780000000002, + "y": 259.192 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 486.1440000000002, + "y": 262.002 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 489.7560000000002, + "y": 266.30600000000004 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 491.6780000000002, + "y": 271.586 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1175.440884, + "axes": { + "#": 1677 + }, + "bounds": { + "#": 1688 + }, + "circleRadius": 19.50347222222222, + "collisionFilter": { + "#": 1691 + }, + "constraintImpulse": { + "#": 1692 + }, + "density": 0.001, + "force": { + "#": 1693 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 45, + "inertia": 879.6410498592595, + "inverseInertia": 0.00113682734583612, + "inverseMass": 0.8507446130315133, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1754408840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1694 + }, + "positionImpulse": { + "#": 1695 + }, + "positionPrev": { + "#": 1696 + }, + "render": { + "#": 1697 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1699 + }, + "vertices": { + "#": 1700 + } + }, + [ + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + } + ], + { + "x": -0.9510810304000095, + "y": -0.3089415375330036 + }, + { + "x": -0.8090123548449776, + "y": -0.5877916380046453 + }, + { + "x": -0.5877916380046453, + "y": -0.8090123548449776 + }, + { + "x": -0.3089415375330036, + "y": -0.9510810304000095 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089415375330036, + "y": -0.9510810304000095 + }, + { + "x": 0.5877916380046453, + "y": -0.8090123548449776 + }, + { + "x": 0.8090123548449776, + "y": -0.5877916380046453 + }, + { + "x": 0.9510810304000095, + "y": -0.3089415375330036 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1689 + }, + "min": { + "#": 1690 + } + }, + { + "x": 550.2040000000003, + "y": 296.74199999999996 + }, + { + "x": 511.6780000000003, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9410000000003, + "y": 277.479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9410000000003, + "y": 277.479 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1698 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550.2040000000003, + "y": 280.53 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 548.3190000000003, + "y": 286.33299999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 544.7320000000003, + "y": 291.27 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 539.7950000000003, + "y": 294.85699999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 533.9920000000003, + "y": 296.74199999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 527.8900000000003, + "y": 296.74199999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 522.0870000000002, + "y": 294.85699999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 517.1500000000003, + "y": 291.27 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 513.5630000000003, + "y": 286.33299999999997 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 511.6780000000003, + "y": 280.53 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 511.6780000000003, + "y": 274.428 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 513.5630000000003, + "y": 268.625 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 517.1500000000003, + "y": 263.688 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 522.0870000000002, + "y": 260.101 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 527.8900000000003, + "y": 258.216 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 533.9920000000003, + "y": 258.216 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 539.7950000000003, + "y": 260.101 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 544.7320000000003, + "y": 263.688 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 548.3190000000003, + "y": 268.625 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 550.2040000000003, + "y": 274.428 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 568.46124, + "axes": { + "#": 1722 + }, + "bounds": { + "#": 1730 + }, + "circleRadius": 13.68102709190672, + "collisionFilter": { + "#": 1733 + }, + "constraintImpulse": { + "#": 1734 + }, + "density": 0.001, + "force": { + "#": 1735 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 46, + "inertia": 205.77002535077511, + "inverseInertia": 0.004859794317929956, + "inverseMass": 1.7591348884226479, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.56846124, + "motion": 0, + "parent": null, + "position": { + "#": 1736 + }, + "positionImpulse": { + "#": 1737 + }, + "positionPrev": { + "#": 1738 + }, + "render": { + "#": 1739 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1741 + }, + "vertices": { + "#": 1742 + } + }, + [ + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + } + ], + { + "x": -0.9009636264752368, + "y": -0.43389462288508485 + }, + { + "x": -0.6234924793998962, + "y": -0.7818293471927041 + }, + { + "x": -0.22254384035750657, + "y": -0.974922683662111 + }, + { + "x": 0.22254384035750657, + "y": -0.974922683662111 + }, + { + "x": 0.6234924793998962, + "y": -0.7818293471927041 + }, + { + "x": 0.9009636264752368, + "y": -0.43389462288508485 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1731 + }, + "min": { + "#": 1732 + } + }, + { + "x": 596.8800000000002, + "y": 285.578 + }, + { + "x": 570.2040000000003, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 583.5420000000003, + "y": 271.897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 583.5420000000003, + "y": 271.897 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1740 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 596.8800000000002, + "y": 274.941 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 594.2380000000003, + "y": 280.42699999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 589.4780000000003, + "y": 284.223 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 583.5420000000003, + "y": 285.578 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 577.6060000000002, + "y": 284.223 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 572.8460000000002, + "y": 280.42699999999996 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 570.2040000000003, + "y": 274.941 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 570.2040000000003, + "y": 268.85299999999995 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 572.8460000000002, + "y": 263.36699999999996 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 577.6060000000002, + "y": 259.571 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 583.5420000000003, + "y": 258.216 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 589.4780000000003, + "y": 259.571 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 594.2380000000003, + "y": 263.36699999999996 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 596.8800000000002, + "y": 268.85299999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 366.82313200000004, + "axes": { + "#": 1758 + }, + "bounds": { + "#": 1765 + }, + "circleRadius": 11.058170438957475, + "collisionFilter": { + "#": 1768 + }, + "constraintImpulse": { + "#": 1769 + }, + "density": 0.001, + "force": { + "#": 1770 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 47, + "inertia": 85.70002548110048, + "inverseInertia": 0.011668607965822963, + "inverseMass": 2.726109431942803, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.36682313200000005, + "motion": 0, + "parent": null, + "position": { + "#": 1771 + }, + "positionImpulse": { + "#": 1772 + }, + "positionPrev": { + "#": 1773 + }, + "render": { + "#": 1774 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1776 + }, + "vertices": { + "#": 1777 + } + }, + [ + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + } + ], + { + "x": -0.8660197514843452, + "y": -0.5000097899431502 + }, + { + "x": -0.5000097899431502, + "y": -0.8660197514843452 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5000097899431502, + "y": -0.8660197514843452 + }, + { + "x": 0.8660197514843452, + "y": -0.5000097899431502 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1766 + }, + "min": { + "#": 1767 + } + }, + { + "x": 638.2420000000003, + "y": 279.578 + }, + { + "x": 616.8800000000002, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 627.5610000000003, + "y": 268.897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 627.5610000000003, + "y": 268.897 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1775 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.2420000000003, + "y": 271.759 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 635.3800000000002, + "y": 276.716 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 630.4230000000002, + "y": 279.578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 624.6990000000003, + "y": 279.578 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 619.7420000000003, + "y": 276.716 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 616.8800000000002, + "y": 271.759 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 616.8800000000002, + "y": 266.03499999999997 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 619.7420000000003, + "y": 261.078 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 624.6990000000003, + "y": 258.216 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 630.4230000000002, + "y": 258.216 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 635.3800000000002, + "y": 261.078 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 638.2420000000003, + "y": 266.03499999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 389.07123600000006, + "axes": { + "#": 1791 + }, + "bounds": { + "#": 1798 + }, + "circleRadius": 11.387988683127572, + "collisionFilter": { + "#": 1801 + }, + "constraintImpulse": { + "#": 1802 + }, + "density": 0.001, + "force": { + "#": 1803 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 48, + "inertia": 96.41081889936525, + "inverseInertia": 0.010372279910243391, + "inverseMass": 2.5702234127634145, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.38907123600000004, + "motion": 0, + "parent": null, + "position": { + "#": 1804 + }, + "positionImpulse": { + "#": 1805 + }, + "positionPrev": { + "#": 1806 + }, + "render": { + "#": 1807 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1809 + }, + "vertices": { + "#": 1810 + } + }, + [ + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + } + ], + { + "x": -0.8660952066747344, + "y": -0.4998790783530045 + }, + { + "x": -0.4998790783530045, + "y": -0.8660952066747344 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4998790783530045, + "y": -0.8660952066747344 + }, + { + "x": 0.8660952066747344, + "y": -0.4998790783530045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1799 + }, + "min": { + "#": 1800 + } + }, + { + "x": 680.2420000000003, + "y": 280.216 + }, + { + "x": 658.2420000000003, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 669.2420000000003, + "y": 269.216 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 669.2420000000003, + "y": 269.216 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1808 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 680.2420000000003, + "y": 272.163 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 677.2950000000003, + "y": 277.269 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 672.1890000000003, + "y": 280.216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 666.2950000000003, + "y": 280.216 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 661.1890000000003, + "y": 277.269 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 658.2420000000003, + "y": 272.163 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 658.2420000000003, + "y": 266.269 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 661.1890000000003, + "y": 261.163 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 666.2950000000003, + "y": 258.216 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 672.1890000000003, + "y": 258.216 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 677.2950000000003, + "y": 261.163 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 680.2420000000003, + "y": 266.269 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 815.3892460000001, + "axes": { + "#": 1824 + }, + "bounds": { + "#": 1834 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1837 + }, + "constraintImpulse": { + "#": 1838 + }, + "density": 0.001, + "force": { + "#": 1839 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 49, + "inertia": 423.2982063032686, + "inverseInertia": 0.0023624007498948816, + "inverseMass": 1.2264081294984357, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8153892460000001, + "motion": 0, + "parent": null, + "position": { + "#": 1840 + }, + "positionImpulse": { + "#": 1841 + }, + "positionPrev": { + "#": 1842 + }, + "render": { + "#": 1843 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1845 + }, + "vertices": { + "#": 1846 + } + }, + [ + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + } + ], + { + "x": -0.9397159229781226, + "y": -0.3419561142915492 + }, + { + "x": -0.7660706997750172, + "y": -0.6427563169243967 + }, + { + "x": -0.4999828073287557, + "y": -0.8660353297502684 + }, + { + "x": -0.17354312409985562, + "y": -0.9848262710131479 + }, + { + "x": 0.17354312409985562, + "y": -0.9848262710131479 + }, + { + "x": 0.4999828073287557, + "y": -0.8660353297502684 + }, + { + "x": 0.7660706997750172, + "y": -0.6427563169243967 + }, + { + "x": 0.9397159229781226, + "y": -0.3419561142915492 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1835 + }, + "min": { + "#": 1836 + } + }, + { + "x": 732.2980000000003, + "y": 290.76599999999996 + }, + { + "x": 700.2420000000003, + "y": 258.216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.2700000000003, + "y": 274.491 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.2700000000003, + "y": 274.491 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1844 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 732.2980000000003, + "y": 277.317 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 730.3650000000004, + "y": 282.62899999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 726.7320000000003, + "y": 286.959 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 721.8370000000003, + "y": 289.78499999999997 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 716.2700000000003, + "y": 290.76599999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 710.7030000000003, + "y": 289.78499999999997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 705.8080000000003, + "y": 286.959 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 702.1750000000003, + "y": 282.62899999999996 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 700.2420000000003, + "y": 277.317 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 700.2420000000003, + "y": 271.66499999999996 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 702.1750000000003, + "y": 266.35299999999995 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 705.8080000000003, + "y": 262.023 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 710.7030000000003, + "y": 259.197 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 716.2700000000003, + "y": 258.216 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 721.8370000000003, + "y": 259.197 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 726.7320000000003, + "y": 262.023 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 730.3650000000004, + "y": 266.35299999999995 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 732.2980000000003, + "y": 271.66499999999996 + }, + [], + [], + { + "bodies": { + "#": 1868 + }, + "composites": { + "#": 2440 + }, + "constraints": { + "#": 2441 + }, + "id": 50, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 1869 + }, + { + "#": 1890 + }, + { + "#": 1911 + }, + { + "#": 1932 + }, + { + "#": 1953 + }, + { + "#": 1982 + }, + { + "#": 2011 + }, + { + "#": 2032 + }, + { + "#": 2061 + }, + { + "#": 2085 + }, + { + "#": 2114 + }, + { + "#": 2135 + }, + { + "#": 2156 + }, + { + "#": 2177 + }, + { + "#": 2204 + }, + { + "#": 2225 + }, + { + "#": 2250 + }, + { + "#": 2271 + }, + { + "#": 2292 + }, + { + "#": 2317 + }, + { + "#": 2338 + }, + { + "#": 2359 + }, + { + "#": 2386 + }, + { + "#": 2411 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1021.4491370845084, + "axes": { + "#": 1870 + }, + "bounds": { + "#": 1873 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1876 + }, + "constraintImpulse": { + "#": 1877 + }, + "density": 0.001, + "force": { + "#": 1878 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 51, + "inertia": 893.3311389211119, + "inverseInertia": 0.0011194057348182373, + "inverseMass": 0.9790012676052279, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0214491370845085, + "motion": 0, + "parent": null, + "position": { + "#": 1879 + }, + "positionImpulse": { + "#": 1880 + }, + "positionPrev": { + "#": 1881 + }, + "render": { + "#": 1882 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1884 + }, + "vertices": { + "#": 1885 + } + }, + [ + { + "#": 1871 + }, + { + "#": 1872 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1874 + }, + "min": { + "#": 1875 + } + }, + { + "x": 96.20640432098764, + "y": 72.1062242798354 + }, + { + "x": 49.99999999999999, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.10320216049382, + "y": 61.0531121399177 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.10320216049382, + "y": 61.0531121399177 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1883 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 49.99999999999999, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 96.20640432098764, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 96.20640432098764, + "y": 72.1062242798354 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 49.99999999999999, + "y": 72.1062242798354 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1125.0402892684995, + "axes": { + "#": 1891 + }, + "bounds": { + "#": 1894 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1897 + }, + "constraintImpulse": { + "#": 1898 + }, + "density": 0.001, + "force": { + "#": 1899 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 52, + "inertia": 845.5561081099531, + "inverseInertia": 0.0011826536292609496, + "inverseMass": 0.8888570565327927, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1250402892684994, + "motion": 0, + "parent": null, + "position": { + "#": 1900 + }, + "positionImpulse": { + "#": 1901 + }, + "positionPrev": { + "#": 1902 + }, + "render": { + "#": 1903 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1905 + }, + "vertices": { + "#": 1906 + } + }, + [ + { + "#": 1892 + }, + { + "#": 1893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1895 + }, + "min": { + "#": 1896 + } + }, + { + "x": 128.68659979423867, + "y": 84.63773148148147 + }, + { + "x": 96.20640432098764, + "y": 49.99999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.44650205761316, + "y": 67.31886574074073 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 112.44650205761316, + "y": 67.31886574074073 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1904 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 96.20640432098764, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 128.68659979423867, + "y": 49.99999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 128.68659979423867, + "y": 84.63773148148147 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 96.20640432098764, + "y": 84.63773148148147 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 1912 + }, + "bounds": { + "#": 1915 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1918 + }, + "constraintImpulse": { + "#": 1919 + }, + "density": 0.001, + "force": { + "#": 1920 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 1921 + }, + "positionImpulse": { + "#": 1922 + }, + "positionPrev": { + "#": 1923 + }, + "render": { + "#": 1924 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1926 + }, + "vertices": { + "#": 1927 + } + }, + [ + { + "#": 1913 + }, + { + "#": 1914 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1916 + }, + "min": { + "#": 1917 + } + }, + { + "x": 164.09953703703704, + "y": 92.06893004115227 + }, + { + "x": 128.68659979423867, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 146.39306841563786, + "y": 71.03446502057614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 146.39306841563786, + "y": 71.03446502057614 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1925 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 128.68659979423867, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 164.09953703703704, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 164.09953703703704, + "y": 92.06893004115227 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 128.68659979423867, + "y": 92.06893004115227 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 1933 + }, + "bounds": { + "#": 1936 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1939 + }, + "constraintImpulse": { + "#": 1940 + }, + "density": 0.001, + "force": { + "#": 1941 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 54, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 1942 + }, + "positionImpulse": { + "#": 1943 + }, + "positionPrev": { + "#": 1944 + }, + "render": { + "#": 1945 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1947 + }, + "vertices": { + "#": 1948 + } + }, + [ + { + "#": 1934 + }, + { + "#": 1935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1937 + }, + "min": { + "#": 1938 + } + }, + { + "x": 205.8634259259259, + "y": 92.27019032921811 + }, + { + "x": 164.09953703703704, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 184.98148148148147, + "y": 71.13509516460906 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 184.98148148148147, + "y": 71.13509516460906 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1946 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 164.09953703703704, + "y": 50 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 205.8634259259259, + "y": 50 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 205.8634259259259, + "y": 92.27019032921811 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 164.09953703703704, + "y": 92.27019032921811 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2021.6781920000003, + "axes": { + "#": 1954 + }, + "bounds": { + "#": 1962 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1965 + }, + "constraintImpulse": { + "#": 1966 + }, + "density": 0.001, + "force": { + "#": 1967 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 55, + "inertia": 2612.347668906405, + "inverseInertia": 0.00038279743998187855, + "inverseMass": 0.4946385651074975, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.0216781920000004, + "motion": 0, + "parent": null, + "position": { + "#": 1968 + }, + "positionImpulse": { + "#": 1969 + }, + "positionPrev": { + "#": 1970 + }, + "render": { + "#": 1971 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1973 + }, + "vertices": { + "#": 1974 + } + }, + [ + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + } + ], + { + "x": 0.6235103580922969, + "y": 0.7818150889766811 + }, + { + "x": -0.22254274738493746, + "y": 0.9749229331523409 + }, + { + "x": -0.9009679103567836, + "y": 0.43388572747594584 + }, + { + "x": -0.9009679103567836, + "y": -0.43388572747594584 + }, + { + "x": -0.22254274738493746, + "y": -0.9749229331523409 + }, + { + "x": 0.6235103580922969, + "y": -0.7818150889766811 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1963 + }, + "min": { + "#": 1964 + } + }, + { + "x": 256.187566855507, + "y": 103 + }, + { + "x": 204.51756685550697, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.6984259259259, + "y": 76.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 231.6984259259259, + "y": 76.5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1972 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 256.187566855507, + "y": 88.293 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 237.74656685550698, + "y": 103 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 214.75156685550698, + "y": 97.751 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 204.51756685550697, + "y": 76.5 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 214.75156685550698, + "y": 55.248999999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 237.74656685550698, + "y": 50 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 256.187566855507, + "y": 64.707 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6374.479509999999, + "axes": { + "#": 1983 + }, + "bounds": { + "#": 1991 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1994 + }, + "constraintImpulse": { + "#": 1995 + }, + "density": 0.001, + "force": { + "#": 1996 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 56, + "inertia": 25971.46101758985, + "inverseInertia": 0.00003850380228215594, + "inverseMass": 0.15687555327948652, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.37447951, + "motion": 0, + "parent": null, + "position": { + "#": 1997 + }, + "positionImpulse": { + "#": 1998 + }, + "positionPrev": { + "#": 1999 + }, + "render": { + "#": 2000 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2002 + }, + "vertices": { + "#": 2003 + } + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + } + ], + { + "x": 0.6235005124395528, + "y": 0.7818229409448249 + }, + { + "x": -0.22252397968610343, + "y": 0.9749272170088692 + }, + { + "x": -0.9009709048657181, + "y": 0.4338795092942846 + }, + { + "x": -0.9009709048657181, + "y": -0.4338795092942846 + }, + { + "x": -0.22252397968610343, + "y": -0.9749272170088692 + }, + { + "x": 0.6235005124395528, + "y": -0.7818229409448249 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1992 + }, + "min": { + "#": 1993 + } + }, + { + "x": 345.5477742303948, + "y": 144.11 + }, + { + "x": 253.79777423039482, + "y": 50.00000000000001 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.062566855507, + "y": 97.055 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.062566855507, + "y": 97.055 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2001 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 345.5477742303948, + "y": 117.99600000000001 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.8027742303948, + "y": 144.11 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 271.9697742303948, + "y": 134.79000000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 253.79777423039482, + "y": 97.055 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 271.9697742303948, + "y": 59.32000000000001 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 312.8027742303948, + "y": 50.00000000000001 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 345.5477742303948, + "y": 76.114 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 2012 + }, + "bounds": { + "#": 2015 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2018 + }, + "constraintImpulse": { + "#": 2019 + }, + "density": 0.001, + "force": { + "#": 2020 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 57, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 2021 + }, + "positionImpulse": { + "#": 2022 + }, + "positionPrev": { + "#": 2023 + }, + "render": { + "#": 2024 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2026 + }, + "vertices": { + "#": 2027 + } + }, + [ + { + "#": 2013 + }, + { + "#": 2014 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2016 + }, + "min": { + "#": 2017 + } + }, + { + "x": 390.6991373991191, + "y": 99.16846707818928 + }, + { + "x": 345.5477742303948, + "y": 49.999999999999986 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.12345581475694, + "y": 74.58423353909464 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.12345581475694, + "y": 74.58423353909464 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2025 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 345.5477742303948, + "y": 49.999999999999986 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 390.6991373991191, + "y": 49.999999999999986 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.6991373991191, + "y": 99.16846707818928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 345.5477742303948, + "y": 99.16846707818928 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2739.619887, + "axes": { + "#": 2033 + }, + "bounds": { + "#": 2041 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2044 + }, + "constraintImpulse": { + "#": 2045 + }, + "density": 0.001, + "force": { + "#": 2046 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 58, + "inertia": 4797.196881714491, + "inverseInertia": 0.0002084550675440708, + "inverseMass": 0.36501414110226893, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.739619887, + "motion": 0, + "parent": null, + "position": { + "#": 2047 + }, + "positionImpulse": { + "#": 2048 + }, + "positionPrev": { + "#": 2049 + }, + "render": { + "#": 2050 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2052 + }, + "vertices": { + "#": 2053 + } + }, + [ + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + } + ], + { + "x": 0.623481759781332, + "y": 0.7818378957430839 + }, + { + "x": -0.22252614147358962, + "y": 0.9749267235853554 + }, + { + "x": -0.9009716145580845, + "y": 0.4338780355821189 + }, + { + "x": -0.9009716145580845, + "y": -0.4338780355821189 + }, + { + "x": -0.22252614147358962, + "y": -0.9749267235853554 + }, + { + "x": 0.623481759781332, + "y": -0.7818378957430839 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2042 + }, + "min": { + "#": 2043 + } + }, + { + "x": 449.28137432385313, + "y": 111.696 + }, + { + "x": 389.1323743238531, + "y": 50 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420.7736373991191, + "y": 80.848 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420.7736373991191, + "y": 80.848 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2051 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 449.28137432385313, + "y": 94.577 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 427.81437432385314, + "y": 111.696 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 401.04537432385314, + "y": 105.586 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.1323743238531, + "y": 80.848 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 401.04537432385314, + "y": 56.11 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 427.81437432385314, + "y": 50 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.28137432385313, + "y": 67.119 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1836.0044999999998, + "axes": { + "#": 2062 + }, + "bounds": { + "#": 2066 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2069 + }, + "constraintImpulse": { + "#": 2070 + }, + "density": 0.001, + "force": { + "#": 2071 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 59, + "inertia": 2162.441392869351, + "inverseInertia": 0.00046244027851922336, + "inverseMass": 0.5446609744148231, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8360044999999998, + "motion": 0, + "parent": null, + "position": { + "#": 2072 + }, + "positionImpulse": { + "#": 2073 + }, + "positionPrev": { + "#": 2074 + }, + "render": { + "#": 2075 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2077 + }, + "vertices": { + "#": 2078 + } + }, + [ + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + } + ], + { + "x": -0.49997861700756785, + "y": -0.8660377489089028 + }, + { + "x": 0.49997861700756785, + "y": -0.8660377489089028 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2067 + }, + "min": { + "#": 2068 + } + }, + { + "x": 96.04399999999998, + "y": 197.276 + }, + { + "x": 49.99999999999999, + "y": 144.11 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.02199999999999, + "y": 170.693 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 73.02199999999999, + "y": 170.693 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2076 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 96.04399999999998, + "y": 183.985 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 73.02199999999999, + "y": 197.276 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 49.99999999999999, + "y": 183.985 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 49.99999999999999, + "y": 157.401 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 73.02199999999999, + "y": 144.11 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 96.04399999999998, + "y": 157.401 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5751.50872, + "axes": { + "#": 2086 + }, + "bounds": { + "#": 2094 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2097 + }, + "constraintImpulse": { + "#": 2098 + }, + "density": 0.001, + "force": { + "#": 2099 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 60, + "inertia": 21143.188788922525, + "inverseInertia": 0.00004729655540530038, + "inverseMass": 0.17386742308546824, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.75150872, + "motion": 0, + "parent": null, + "position": { + "#": 2100 + }, + "positionImpulse": { + "#": 2101 + }, + "positionPrev": { + "#": 2102 + }, + "render": { + "#": 2103 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2105 + }, + "vertices": { + "#": 2106 + } + }, + [ + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + } + ], + { + "x": 0.6234803941237226, + "y": 0.7818389847937538 + }, + { + "x": -0.22250537103534854, + "y": 0.9749314641862892 + }, + { + "x": -0.9009645506959534, + "y": 0.43389270377506817 + }, + { + "x": -0.9009645506959534, + "y": -0.43389270377506817 + }, + { + "x": -0.22250537103534854, + "y": -0.9749314641862892 + }, + { + "x": 0.6234803941237226, + "y": -0.7818389847937538 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2095 + }, + "min": { + "#": 2096 + } + }, + { + "x": 180.92582832429306, + "y": 233.502 + }, + { + "x": 93.77382832429306, + "y": 144.11 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 139.61999999999998, + "y": 188.806 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 139.61999999999998, + "y": 188.806 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2104 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.92582832429306, + "y": 208.698 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 149.82182832429305, + "y": 233.502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 111.03582832429306, + "y": 224.65 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 93.77382832429306, + "y": 188.806 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 111.03582832429306, + "y": 152.96200000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 149.82182832429305, + "y": 144.11 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 180.92582832429306, + "y": 168.91400000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 2115 + }, + "bounds": { + "#": 2118 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2121 + }, + "constraintImpulse": { + "#": 2122 + }, + "density": 0.001, + "force": { + "#": 2123 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 61, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 2124 + }, + "positionImpulse": { + "#": 2125 + }, + "positionPrev": { + "#": 2126 + }, + "render": { + "#": 2127 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2129 + }, + "vertices": { + "#": 2130 + } + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2119 + }, + "min": { + "#": 2120 + } + }, + { + "x": 201.0963530156511, + "y": 166.49978909465023 + }, + { + "x": 180.92582832429306, + "y": 144.11 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 191.01109066997208, + "y": 155.30489454732512 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 191.01109066997208, + "y": 155.30489454732512 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2128 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 180.92582832429306, + "y": 144.11 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 201.0963530156511, + "y": 144.11 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 201.0963530156511, + "y": 166.49978909465023 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 180.92582832429306, + "y": 166.49978909465023 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 2136 + }, + "bounds": { + "#": 2139 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2142 + }, + "constraintImpulse": { + "#": 2143 + }, + "density": 0.001, + "force": { + "#": 2144 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 62, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 2145 + }, + "positionImpulse": { + "#": 2146 + }, + "positionPrev": { + "#": 2147 + }, + "render": { + "#": 2148 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2150 + }, + "vertices": { + "#": 2151 + } + }, + [ + { + "#": 2137 + }, + { + "#": 2138 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2140 + }, + "min": { + "#": 2141 + } + }, + { + "x": 302.92951488122037, + "y": 173.78283950617288 + }, + { + "x": 201.0963530156511, + "y": 144.11 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 252.01293394843572, + "y": 158.94641975308645 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 252.01293394843572, + "y": 158.94641975308645 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2149 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 201.0963530156511, + "y": 144.11 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 302.92951488122037, + "y": 144.11 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 302.92951488122037, + "y": 173.78283950617288 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 201.0963530156511, + "y": 173.78283950617288 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 2157 + }, + "bounds": { + "#": 2160 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2163 + }, + "constraintImpulse": { + "#": 2164 + }, + "density": 0.001, + "force": { + "#": 2165 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 63, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 2166 + }, + "positionImpulse": { + "#": 2167 + }, + "positionPrev": { + "#": 2168 + }, + "render": { + "#": 2169 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2171 + }, + "vertices": { + "#": 2172 + } + }, + [ + { + "#": 2158 + }, + { + "#": 2159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2161 + }, + "min": { + "#": 2162 + } + }, + { + "x": 343.0010169388336, + "y": 165.4902726337449 + }, + { + "x": 302.92951488122037, + "y": 144.11 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.965265910027, + "y": 154.80013631687245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.965265910027, + "y": 154.80013631687245 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2170 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 302.92951488122037, + "y": 144.11 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 343.0010169388336, + "y": 144.11 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 343.0010169388336, + "y": 165.4902726337449 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 302.92951488122037, + "y": 165.4902726337449 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 2178 + }, + "bounds": { + "#": 2183 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2186 + }, + "constraintImpulse": { + "#": 2187 + }, + "density": 0.001, + "force": { + "#": 2188 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 64, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 2189 + }, + "positionImpulse": { + "#": 2190 + }, + "positionPrev": { + "#": 2191 + }, + "render": { + "#": 2192 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2194 + }, + "vertices": { + "#": 2195 + } + }, + [ + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2184 + }, + "min": { + "#": 2185 + } + }, + { + "x": 413.2530169388335, + "y": 214.36200000000002 + }, + { + "x": 343.0010169388336, + "y": 144.11 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.12701693883355, + "y": 179.23600000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.12701693883355, + "y": 179.23600000000002 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2193 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.2530169388335, + "y": 193.78600000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 392.67701693883356, + "y": 214.36200000000002 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 363.57701693883354, + "y": 214.36200000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 343.0010169388336, + "y": 193.78600000000003 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 343.0010169388336, + "y": 164.686 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 363.57701693883354, + "y": 144.11 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 392.67701693883356, + "y": 144.11 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 413.2530169388335, + "y": 164.686 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 2205 + }, + "bounds": { + "#": 2208 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2211 + }, + "constraintImpulse": { + "#": 2212 + }, + "density": 0.001, + "force": { + "#": 2213 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 65, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 2214 + }, + "positionImpulse": { + "#": 2215 + }, + "positionPrev": { + "#": 2216 + }, + "render": { + "#": 2217 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2219 + }, + "vertices": { + "#": 2220 + } + }, + [ + { + "#": 2206 + }, + { + "#": 2207 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2209 + }, + "min": { + "#": 2210 + } + }, + { + "x": 502.7573036329351, + "y": 166.06584705075448 + }, + { + "x": 413.2530169388335, + "y": 144.11 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 458.0051602858843, + "y": 155.08792352537725 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 458.0051602858843, + "y": 155.08792352537725 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2218 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 413.2530169388335, + "y": 144.11 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 502.7573036329351, + "y": 144.11 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 502.7573036329351, + "y": 166.06584705075448 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 413.2530169388335, + "y": 166.06584705075448 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2731.7103740000002, + "axes": { + "#": 2226 + }, + "bounds": { + "#": 2232 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2235 + }, + "constraintImpulse": { + "#": 2236 + }, + "density": 0.001, + "force": { + "#": 2237 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 66, + "inertia": 4831.242532460027, + "inverseInertia": 0.00020698608966145373, + "inverseMass": 0.3660710189183474, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.7317103740000004, + "motion": 0, + "parent": null, + "position": { + "#": 2238 + }, + "positionImpulse": { + "#": 2239 + }, + "positionPrev": { + "#": 2240 + }, + "render": { + "#": 2241 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2243 + }, + "vertices": { + "#": 2244 + } + }, + [ + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + } + ], + { + "x": 0.30903613462444496, + "y": 0.951050297038165 + }, + { + "x": -0.809011641765462, + "y": 0.5877926194568556 + }, + { + "x": -0.809011641765462, + "y": -0.5877926194568556 + }, + { + "x": 0.30903613462444496, + "y": -0.951050297038165 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2233 + }, + "min": { + "#": 2234 + } + }, + { + "x": 560.8385250195097, + "y": 208.584 + }, + { + "x": 499.5205250195097, + "y": 144.11 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 533.4163036329351, + "y": 176.347 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 533.4163036329351, + "y": 176.347 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2242 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560.8385250195097, + "y": 196.27 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 522.9425250195097, + "y": 208.584 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 499.5205250195097, + "y": 176.347 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 522.9425250195097, + "y": 144.11 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 560.8385250195097, + "y": 156.424 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 942.0065703840771, + "axes": { + "#": 2251 + }, + "bounds": { + "#": 2254 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2257 + }, + "constraintImpulse": { + "#": 2258 + }, + "density": 0.001, + "force": { + "#": 2259 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 67, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 2260 + }, + "positionImpulse": { + "#": 2261 + }, + "positionPrev": { + "#": 2262 + }, + "render": { + "#": 2263 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2265 + }, + "vertices": { + "#": 2266 + } + }, + [ + { + "#": 2252 + }, + { + "#": 2253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2255 + }, + "min": { + "#": 2256 + } + }, + { + "x": 71.0599279835391, + "y": 278.2318096707819 + }, + { + "x": 50, + "y": 233.502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 60.52996399176955, + "y": 255.86690483539095 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 60.52996399176955, + "y": 255.86690483539095 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2264 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 50, + "y": 233.502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 71.0599279835391, + "y": 233.502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 71.0599279835391, + "y": 278.2318096707819 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 50, + "y": 278.2318096707819 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2898.415585731765, + "axes": { + "#": 2272 + }, + "bounds": { + "#": 2275 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2278 + }, + "constraintImpulse": { + "#": 2279 + }, + "density": 0.001, + "force": { + "#": 2280 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 68, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 2281 + }, + "positionImpulse": { + "#": 2282 + }, + "positionPrev": { + "#": 2283 + }, + "render": { + "#": 2284 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2286 + }, + "vertices": { + "#": 2287 + } + }, + [ + { + "#": 2273 + }, + { + "#": 2274 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2276 + }, + "min": { + "#": 2277 + } + }, + { + "x": 183.25591563786008, + "y": 259.3355048010974 + }, + { + "x": 71.0599279835391, + "y": 233.502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.15792181069959, + "y": 246.4187524005487 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 127.15792181069959, + "y": 246.4187524005487 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2285 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 71.0599279835391, + "y": 233.502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 183.25591563786008, + "y": 233.502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 183.25591563786008, + "y": 259.3355048010974 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 71.0599279835391, + "y": 259.3355048010974 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1542.073807, + "axes": { + "#": 2293 + }, + "bounds": { + "#": 2299 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2302 + }, + "constraintImpulse": { + "#": 2303 + }, + "density": 0.001, + "force": { + "#": 2304 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1539.5714792627725, + "inverseInertia": 0.0006495313880969349, + "inverseMass": 0.6484773915883003, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.542073807, + "motion": 0, + "parent": null, + "position": { + "#": 2305 + }, + "positionImpulse": { + "#": 2306 + }, + "positionPrev": { + "#": 2307 + }, + "render": { + "#": 2308 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2310 + }, + "vertices": { + "#": 2311 + } + }, + [ + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + } + ], + { + "x": 0.3090339581829955, + "y": 0.9510510042525325 + }, + { + "x": -0.8090263110858927, + "y": 0.587772428726248 + }, + { + "x": -0.8090263110858927, + "y": -0.587772428726248 + }, + { + "x": 0.3090339581829955, + "y": -0.9510510042525325 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2300 + }, + "min": { + "#": 2301 + } + }, + { + "x": 226.89416756975916, + "y": 281.944 + }, + { + "x": 180.82416756975914, + "y": 233.502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 206.2909156378601, + "y": 257.723 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 206.2909156378601, + "y": 257.723 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2309 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 226.89416756975916, + "y": 272.692 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 198.42116756975915, + "y": 281.944 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 180.82416756975914, + "y": 257.723 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 198.42116756975915, + "y": 233.502 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 226.89416756975916, + "y": 242.75400000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4282.393599999999, + "axes": { + "#": 2318 + }, + "bounds": { + "#": 2321 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2324 + }, + "constraintImpulse": { + "#": 2325 + }, + "density": 0.001, + "force": { + "#": 2326 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 70, + "inertia": 12225.929963547305, + "inverseInertia": 0.00008179336892830146, + "inverseMass": 0.233514266413998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.2823936, + "motion": 0, + "parent": null, + "position": { + "#": 2327 + }, + "positionImpulse": { + "#": 2328 + }, + "positionPrev": { + "#": 2329 + }, + "render": { + "#": 2330 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2332 + }, + "vertices": { + "#": 2333 + } + }, + [ + { + "#": 2319 + }, + { + "#": 2320 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2322 + }, + "min": { + "#": 2323 + } + }, + { + "x": 292.3341675697592, + "y": 298.94199999999995 + }, + { + "x": 226.89416756975916, + "y": 233.50199999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 259.61416756975916, + "y": 266.222 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 259.61416756975916, + "y": 266.222 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2331 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 292.3341675697592, + "y": 298.94199999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 226.89416756975916, + "y": 298.94199999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 226.89416756975916, + "y": 233.50199999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 292.3341675697592, + "y": 233.50199999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1051.3111283901928, + "axes": { + "#": 2339 + }, + "bounds": { + "#": 2342 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2345 + }, + "constraintImpulse": { + "#": 2346 + }, + "density": 0.001, + "force": { + "#": 2347 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 71, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 2348 + }, + "positionImpulse": { + "#": 2349 + }, + "positionPrev": { + "#": 2350 + }, + "render": { + "#": 2351 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2353 + }, + "vertices": { + "#": 2354 + } + }, + [ + { + "#": 2340 + }, + { + "#": 2341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 2343 + }, + "min": { + "#": 2344 + } + }, + { + "x": 321.88252147922424, + "y": 269.0813467078189 + }, + { + "x": 292.3341675697592, + "y": 233.502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.1083445244917, + "y": 251.29167335390946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 307.1083445244917, + "y": 251.29167335390946 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2352 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 292.3341675697592, + "y": 233.502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 321.88252147922424, + "y": 233.502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 321.88252147922424, + "y": 269.0813467078189 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 292.3341675697592, + "y": 269.0813467078189 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6455.586703999999, + "axes": { + "#": 2360 + }, + "bounds": { + "#": 2365 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2368 + }, + "constraintImpulse": { + "#": 2369 + }, + "density": 0.001, + "force": { + "#": 2370 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 72, + "inertia": 26591.361314189468, + "inverseInertia": 0.00003760619804998054, + "inverseMass": 0.1549045882042575, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.455586704, + "motion": 0, + "parent": null, + "position": { + "#": 2371 + }, + "positionImpulse": { + "#": 2372 + }, + "positionPrev": { + "#": 2373 + }, + "render": { + "#": 2374 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2376 + }, + "vertices": { + "#": 2377 + } + }, + [ + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2366 + }, + "min": { + "#": 2367 + } + }, + { + "x": 410.1585214792242, + "y": 321.77799999999996 + }, + { + "x": 321.88252147922424, + "y": 233.50199999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.0205214792242, + "y": 277.64 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 366.0205214792242, + "y": 277.64 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2375 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 410.1585214792242, + "y": 295.922 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 384.3025214792242, + "y": 321.77799999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 347.73852147922423, + "y": 321.77799999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 321.88252147922424, + "y": 295.922 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 321.88252147922424, + "y": 259.35799999999995 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 347.73852147922423, + "y": 233.50199999999998 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 384.3025214792242, + "y": 233.50199999999998 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 410.1585214792242, + "y": 259.35799999999995 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2014.126651, + "axes": { + "#": 2387 + }, + "bounds": { + "#": 2393 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2396 + }, + "constraintImpulse": { + "#": 2397 + }, + "density": 0.001, + "force": { + "#": 2398 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 73, + "inertia": 2626.4134178244994, + "inverseInertia": 0.00038074736947860864, + "inverseMass": 0.4964931075727074, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.014126651, + "motion": 0, + "parent": null, + "position": { + "#": 2399 + }, + "positionImpulse": { + "#": 2400 + }, + "positionPrev": { + "#": 2401 + }, + "render": { + "#": 2402 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2404 + }, + "vertices": { + "#": 2405 + } + }, + [ + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + } + ], + { + "x": 0.30901998391348906, + "y": 0.9510555449300041 + }, + { + "x": -0.8090228832045648, + "y": 0.5877771469284709 + }, + { + "x": -0.8090228832045648, + "y": -0.5877771469284709 + }, + { + "x": 0.30901998391348906, + "y": -0.9510555449300041 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2394 + }, + "min": { + "#": 2395 + } + }, + { + "x": 460.0301989771127, + "y": 288.864 + }, + { + "x": 407.3791989771127, + "y": 233.50199999999998 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 436.4840214792242, + "y": 261.183 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 436.4840214792242, + "y": 261.183 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2403 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 460.0301989771127, + "y": 278.291 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 427.4901989771127, + "y": 288.864 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.3791989771127, + "y": 261.183 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 427.4901989771127, + "y": 233.50199999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 460.0301989771127, + "y": 244.075 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4695.386625, + "axes": { + "#": 2412 + }, + "bounds": { + "#": 2420 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2423 + }, + "constraintImpulse": { + "#": 2424 + }, + "density": 0.001, + "force": { + "#": 2425 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 74, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 2426 + }, + "positionImpulse": { + "#": 2427 + }, + "positionPrev": { + "#": 2428 + }, + "render": { + "#": 2429 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2431 + }, + "vertices": { + "#": 2432 + } + }, + [ + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + } + ], + { + "x": 0.6235000959518373, + "y": 0.7818232730918474 + }, + { + "x": -0.2225264190381346, + "y": 0.9749266602314579 + }, + { + "x": -0.9009718651359478, + "y": 0.43387751524301366 + }, + { + "x": -0.9009718651359478, + "y": -0.43387751524301366 + }, + { + "x": -0.2225264190381346, + "y": -0.9749266602314579 + }, + { + "x": 0.6235000959518373, + "y": -0.7818232730918474 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 2421 + }, + "min": { + "#": 2422 + } + }, + { + "x": 536.7230739447771, + "y": 314.272 + }, + { + "x": 457.97907394477716, + "y": 233.502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 499.4021989771127, + "y": 273.887 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 499.4021989771127, + "y": 273.887 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2430 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 536.7230739447771, + "y": 291.86 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 508.6200739447771, + "y": 314.272 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 473.57507394477716, + "y": 306.273 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 457.97907394477716, + "y": 273.887 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 473.57507394477716, + "y": 241.501 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 508.6200739447771, + "y": 233.502 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 536.7230739447771, + "y": 255.914 + }, + [], + [], + [ + { + "#": 2443 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2444 + }, + "pointB": "", + "render": { + "#": 2445 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/timescale/timescale-10.json b/tests/browser/refs/timescale/timescale-10.json new file mode 100644 index 00000000..edb48e97 --- /dev/null +++ b/tests/browser/refs/timescale/timescale-10.json @@ -0,0 +1,22347 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 2515 + }, + "gravity": { + "#": 2519 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + }, + { + "#": 1916 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1914 + }, + "constraints": { + "#": 1915 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 133 + }, + { + "#": 173 + }, + { + "#": 219 + }, + { + "#": 256 + }, + { + "#": 302 + }, + { + "#": 336 + }, + { + "#": 379 + }, + { + "#": 419 + }, + { + "#": 459 + }, + { + "#": 496 + }, + { + "#": 539 + }, + { + "#": 576 + }, + { + "#": 622 + }, + { + "#": 668 + }, + { + "#": 711 + }, + { + "#": 748 + }, + { + "#": 782 + }, + { + "#": 828 + }, + { + "#": 865 + }, + { + "#": 911 + }, + { + "#": 954 + }, + { + "#": 988 + }, + { + "#": 1031 + }, + { + "#": 1077 + }, + { + "#": 1111 + }, + { + "#": 1151 + }, + { + "#": 1188 + }, + { + "#": 1225 + }, + { + "#": 1271 + }, + { + "#": 1317 + }, + { + "#": 1357 + }, + { + "#": 1394 + }, + { + "#": 1431 + }, + { + "#": 1474 + }, + { + "#": 1520 + }, + { + "#": 1560 + }, + { + "#": 1597 + }, + { + "#": 1643 + }, + { + "#": 1677 + }, + { + "#": 1720 + }, + { + "#": 1766 + }, + { + "#": 1803 + }, + { + "#": 1837 + }, + { + "#": 1871 + } + ], + { + "angle": 0.0003096983155711602, + "anglePrev": 0.0002765219524637194, + "angularSpeed": 0.000033176363107440785, + "angularVelocity": 0.000033176363107440785, + "area": 445.64723200000003, + "axes": { + "#": 97 + }, + "bounds": { + "#": 105 + }, + "circleRadius": 12.11321159122085, + "collisionFilter": { + "#": 108 + }, + "constraintImpulse": { + "#": 109 + }, + "density": 0.001, + "force": { + "#": 110 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 5, + "inertia": 126.46280868085778, + "inverseInertia": 0.007907463154037685, + "inverseMass": 2.243927322317577, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.44564723200000006, + "motion": 0, + "parent": null, + "position": { + "#": 111 + }, + "positionImpulse": { + "#": 112 + }, + "positionPrev": { + "#": 113 + }, + "region": { + "#": 114 + }, + "render": { + "#": 115 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0547399190553577, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 117 + }, + "vertices": { + "#": 118 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": -0.9007624588161461, + "y": -0.4343120914589988 + }, + { + "x": -0.6234117570250127, + "y": -0.7818937147739368 + }, + { + "x": -0.22210478477016363, + "y": -0.9750228020832121 + }, + { + "x": 0.2227086679649528, + "y": -0.9748850441017525 + }, + { + "x": 0.6238959397402497, + "y": -0.7815074256688995 + }, + { + "x": 0.9010312974555215, + "y": -0.4337540789498346 + }, + { + "x": 0.9999999520434768, + "y": 0.0003096983106204752 + }, + { + "max": { + "#": 106 + }, + "min": { + "#": 107 + } + }, + { + "x": 44.53576463497224, + "y": 145.60646005307711 + }, + { + "x": 20.914015558828986, + "y": 118.32572129688864 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 32.72484962940957, + "y": 130.43872071599128 + }, + { + "x": 0.017179852004130775, + "y": 0 + }, + { + "x": 32.72476869442749, + "y": 127.38398079800811 + }, + { + "endCol": 0, + "endRow": 2, + "id": "0,0,2,2", + "startCol": 0, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 116 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00008093498207983885, + "y": 3.0547399179831762 + }, + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 44.534014426095915, + "y": 133.1373781237969 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 42.192510333619495, + "y": 137.9936531968252 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 37.97746932998797, + "y": 141.35434796691442 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 32.72109825377301, + "y": 142.55172013509394 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 27.46546983410694, + "y": 141.35109241827314 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 23.252511241916032, + "y": 137.98778751082202 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 20.914015558828986, + "y": 133.13006304970003 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20.915684832723223, + "y": 127.74006330818567 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 23.25718892519965, + "y": 122.88378823515737 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 27.47222992883116, + "y": 119.52309346506814 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 32.72860100504613, + "y": 118.32572129688864 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 37.98422942471219, + "y": 119.52634901370938 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 42.1971880169031, + "y": 122.88965392116053 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 44.53568369999016, + "y": 127.74737838228255 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 732.475276, + "axes": { + "#": 134 + }, + "bounds": { + "#": 143 + }, + "circleRadius": 15.467721193415638, + "collisionFilter": { + "#": 146 + }, + "constraintImpulse": { + "#": 147 + }, + "density": 0.001, + "force": { + "#": 148 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 6, + "inertia": 341.60522862031934, + "inverseInertia": 0.002927355661500897, + "inverseMass": 1.3652337939117005, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7324752760000001, + "motion": 0, + "parent": null, + "position": { + "#": 149 + }, + "positionImpulse": { + "#": 150 + }, + "positionPrev": { + "#": 151 + }, + "region": { + "#": 152 + }, + "render": { + "#": 153 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 155 + }, + "vertices": { + "#": 156 + } + }, + [ + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": -0.9238350355607171, + "y": -0.38279083984668255 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.38279083984668255, + "y": -0.9238350355607171 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38279083984668255, + "y": -0.9238350355607171 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238350355607171, + "y": -0.38279083984668255 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 144 + }, + "min": { + "#": 145 + } + }, + { + "x": 93.96199999999999, + "y": 148.6753333333329 + }, + { + "x": 63.62, + "y": 118.33333333333292 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 78.791, + "y": 133.5043333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 78.791, + "y": 130.44877777777742 + }, + { + "endCol": 1, + "endRow": 3, + "id": "1,1,2,3", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 154 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 93.96199999999999, + "y": 136.5223333333329 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 91.652, + "y": 142.09733333333293 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 87.384, + "y": 146.3653333333329 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 81.809, + "y": 148.6753333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 75.773, + "y": 148.6753333333329 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 70.198, + "y": 146.3653333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 65.92999999999999, + "y": 142.09733333333293 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 63.62, + "y": 136.5223333333329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 63.62, + "y": 130.4863333333329 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 65.92999999999999, + "y": 124.9113333333329 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 70.198, + "y": 120.6433333333329 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 75.773, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 81.809, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 87.384, + "y": 120.6433333333329 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 91.652, + "y": 124.9113333333329 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 93.96199999999999, + "y": 130.4863333333329 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1023.0280239999998, + "axes": { + "#": 174 + }, + "bounds": { + "#": 185 + }, + "circleRadius": 18.19465877914952, + "collisionFilter": { + "#": 188 + }, + "constraintImpulse": { + "#": 189 + }, + "density": 0.001, + "force": { + "#": 190 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 7, + "inertia": 666.3140407130343, + "inverseInertia": 0.0015007938282823555, + "inverseMass": 0.9774903292385275, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0230280239999998, + "motion": 0, + "parent": null, + "position": { + "#": 191 + }, + "positionImpulse": { + "#": 192 + }, + "positionPrev": { + "#": 193 + }, + "region": { + "#": 194 + }, + "render": { + "#": 195 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 197 + }, + "vertices": { + "#": 198 + } + }, + [ + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": -0.9510624654126439, + "y": -0.3089986842742595 + }, + { + "x": -0.8090549880907667, + "y": -0.5877329548744475 + }, + { + "x": -0.5877329548744475, + "y": -0.8090549880907667 + }, + { + "x": -0.3089986842742595, + "y": -0.9510624654126439 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089986842742595, + "y": -0.9510624654126439 + }, + { + "x": 0.5877329548744475, + "y": -0.8090549880907667 + }, + { + "x": 0.8090549880907667, + "y": -0.5877329548744475 + }, + { + "x": 0.9510624654126439, + "y": -0.3089986842742595 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 186 + }, + "min": { + "#": 187 + } + }, + { + "x": 149.904, + "y": 154.27533333333292 + }, + { + "x": 113.96199999999999, + "y": 118.33333333333292 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 131.933, + "y": 136.30433333333292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 131.933, + "y": 133.24877777777743 + }, + { + "endCol": 3, + "endRow": 3, + "id": "2,3,2,3", + "startCol": 2, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 196 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 149.904, + "y": 139.15033333333292 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 148.14499999999998, + "y": 144.56433333333294 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 144.79899999999998, + "y": 149.1703333333329 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.19299999999998, + "y": 152.5163333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 134.779, + "y": 154.27533333333292 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 129.087, + "y": 154.27533333333292 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 123.67299999999999, + "y": 152.5163333333329 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 119.067, + "y": 149.1703333333329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 115.72099999999999, + "y": 144.56433333333294 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 113.96199999999999, + "y": 139.15033333333292 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 113.96199999999999, + "y": 133.45833333333292 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 115.72099999999999, + "y": 128.04433333333293 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 119.067, + "y": 123.43833333333292 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 123.67299999999999, + "y": 120.09233333333292 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 129.087, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 134.779, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 140.19299999999998, + "y": 120.09233333333292 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 144.79899999999998, + "y": 123.43833333333292 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 148.14499999999998, + "y": 128.04433333333293 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 149.904, + "y": 133.45833333333292 + }, + { + "angle": 0.0000031992164923308484, + "anglePrev": 0.0000021965354482319124, + "angularSpeed": 0.000001002681044098936, + "angularVelocity": 0.000001002681044098936, + "area": 574.28005, + "axes": { + "#": 220 + }, + "bounds": { + "#": 228 + }, + "circleRadius": 13.750814471879288, + "collisionFilter": { + "#": 231 + }, + "constraintImpulse": { + "#": 232 + }, + "density": 0.001, + "force": { + "#": 233 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 8, + "inertia": 210.00413885422935, + "inverseInertia": 0.004761810912184603, + "inverseMass": 1.7413107072063536, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5742800499999999, + "motion": 0, + "parent": null, + "position": { + "#": 234 + }, + "positionImpulse": { + "#": 235 + }, + "positionPrev": { + "#": 236 + }, + "region": { + "#": 237 + }, + "render": { + "#": 238 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555763200238966, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 240 + }, + "vertices": { + "#": 241 + } + }, + [ + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "x": -0.9009624246756335, + "y": -0.4338971183617182 + }, + { + "x": -0.6234962727126481, + "y": -0.7818263220904215 + }, + { + "x": -0.22256432270644022, + "y": -0.9749180079669386 + }, + { + "x": 0.2225705606494238, + "y": -0.9749165838840784 + }, + { + "x": 0.6235012751632126, + "y": -0.7818223326753002 + }, + { + "x": 0.9009652009188248, + "y": -0.43389135360514036 + }, + { + "x": 0.9999999999948823, + "y": 0.000003199216492325391 + }, + { + "max": { + "#": 229 + }, + "min": { + "#": 230 + } + }, + { + "x": 192.3638811288383, + "y": 143.73948961345212 + }, + { + "x": 165.55186154977056, + "y": 116.2374896135928 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.95787133930443, + "y": 129.98848961352243 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 178.95788818625238, + "y": 126.93291329354497 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,2,2", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 239 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000016846947943349733, + "y": 3.0555763199774537 + }, + [ + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 192.36386154963336, + "y": 133.04853250220307 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 189.70884391236643, + "y": 138.56152400825513 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 184.92383170418077, + "y": 142.3775086999847 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 178.95782734687845, + "y": 143.73948961345212 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 172.99183170424186, + "y": 142.37747052693348 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 168.20684391247647, + "y": 138.56145521870212 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 165.55186154977056, + "y": 133.04844672481047 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 165.5518811289755, + "y": 126.92844672484178 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 168.20689876624243, + "y": 121.41545521878976 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 172.9919109744281, + "y": 117.59947052706022 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 178.95791533173042, + "y": 116.2374896135928 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 184.923910974367, + "y": 117.59950870011141 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 189.7088987661324, + "y": 121.41552400834279 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 192.3638811288383, + "y": 126.92853250223438 + }, + { + "angle": 9.210895771869706e-7, + "anglePrev": 6.311411353667495e-7, + "angularSpeed": 2.8994844182022116e-7, + "angularVelocity": 2.8994844182022116e-7, + "area": 1195.2601479999998, + "axes": { + "#": 257 + }, + "bounds": { + "#": 268 + }, + "circleRadius": 19.667052469135804, + "collisionFilter": { + "#": 271 + }, + "constraintImpulse": { + "#": 272 + }, + "density": 0.001, + "force": { + "#": 273 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 9, + "inertia": 909.5546177631703, + "inverseInertia": 0.0010994391985599042, + "inverseMass": 0.8366379500506865, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1952601479999998, + "motion": 0, + "parent": null, + "position": { + "#": 274 + }, + "positionImpulse": { + "#": 275 + }, + "positionPrev": { + "#": 276 + }, + "region": { + "#": 277 + }, + "render": { + "#": 278 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055524869991036, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 280 + }, + "vertices": { + "#": 281 + } + }, + [ + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + } + ], + { + "x": -0.9510290067991624, + "y": -0.3091016470784302 + }, + { + "x": -0.8090727690784189, + "y": -0.587708477338705 + }, + { + "x": -0.5877069868807182, + "y": -0.8090738517413518 + }, + { + "x": -0.3090998951120942, + "y": -0.9510295762181596 + }, + { + "x": 9.210895771868404e-7, + "y": -0.9999999999995758 + }, + { + "x": 0.3091016470784302, + "y": -0.9510290067991624 + }, + { + "x": 0.587708477338705, + "y": -0.8090727690784189 + }, + { + "x": 0.8090738517413518, + "y": -0.5877069868807182 + }, + { + "x": 0.9510295762181596, + "y": -0.3090998951120942 + }, + { + "x": 0.9999999999995758, + "y": 9.210895771868404e-7 + }, + { + "max": { + "#": 269 + }, + "min": { + "#": 270 + } + }, + { + "x": 226.7542020210335, + "y": 170.08967316790785 + }, + { + "x": 187.90418152751406, + "y": 128.18414262958404 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 207.32918436169845, + "y": 147.6091454637684 + }, + { + "x": -0.08363926597350804, + "y": 0.19798826124823343 + }, + { + "x": 207.3291695365478, + "y": 144.55362059381335 + }, + { + "endCol": 4, + "endRow": 3, + "id": "3,4,2,3", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 279 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000014825150657316044, + "y": 3.0555248699550708 + }, + [ + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 226.7541815274976, + "y": 150.68616335593217 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 224.85217613728219, + "y": 156.53816160401726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 221.23617155209982, + "y": 161.51615827335525 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 216.25816822144202, + "y": 165.13215368816978 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 210.40616646953208, + "y": 167.03414829795278 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 204.2521664695347, + "y": 167.03414262956753 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 198.40016822144958, + "y": 165.13213723935215 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 193.4221715521116, + "y": 161.51613265416975 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 189.80617613729706, + "y": 156.53812932351195 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 187.90418152751406, + "y": 150.68612757160204 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 187.9041871958993, + "y": 144.53212757160466 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 189.80619258611472, + "y": 138.68012932351957 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 193.42219717129709, + "y": 133.70213265418158 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 198.40020050195488, + "y": 130.08613723936705 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 204.25220225386482, + "y": 128.18414262958404 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 210.4062022538622, + "y": 128.1841482979693 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 216.25820050194733, + "y": 130.0861536881847 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 221.2361971712853, + "y": 133.70215827336705 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 224.85219258609985, + "y": 138.68016160402485 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 226.75418719588285, + "y": 144.53216335593478 + }, + { + "angle": -0.000011240258654780929, + "anglePrev": -0.000009382478275085583, + "angularSpeed": 0.0000018577803796953458, + "angularVelocity": -0.0000018577803796953458, + "area": 431.46854399999995, + "axes": { + "#": 303 + }, + "bounds": { + "#": 310 + }, + "circleRadius": 11.99275548696845, + "collisionFilter": { + "#": 313 + }, + "constraintImpulse": { + "#": 314 + }, + "density": 0.001, + "force": { + "#": 315 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 10, + "inertia": 118.56753749026406, + "inverseInertia": 0.008434011713215457, + "inverseMass": 2.3176660591044156, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.43146854399999995, + "motion": 0, + "parent": null, + "position": { + "#": 316 + }, + "positionImpulse": { + "#": 317 + }, + "positionPrev": { + "#": 318 + }, + "region": { + "#": 319 + }, + "render": { + "#": 320 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555469384586336, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 322 + }, + "vertices": { + "#": 323 + } + }, + [ + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + } + ], + { + "x": -0.8660195178098877, + "y": -0.5000101946683989 + }, + { + "x": -0.5000296631088118, + "y": -0.866008277103221 + }, + { + "x": -0.000011240258654544242, + "y": -0.9999999999368285 + }, + { + "x": 0.5000101946683989, + "y": -0.8660195178098877 + }, + { + "x": 0.866008277103221, + "y": -0.5000296631088118 + }, + { + "x": 0.9999999999368285, + "y": -0.000011240258654544242 + }, + { + "max": { + "#": 311 + }, + "min": { + "#": 312 + } + }, + { + "x": 257.1924895221034, + "y": 165.2607732122663 + }, + { + "x": 234.02441974404118, + "y": 142.09270343420414 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 245.60845463307228, + "y": 153.6767383232352 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 245.60841040204852, + "y": 150.62119138509672 + }, + { + "endCol": 5, + "endRow": 3, + "id": "4,5,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 321 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00004423102376449606, + "y": 3.055546938138497 + }, + [ + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 257.1924895221034, + "y": 156.78060811588287 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 254.08854994993, + "y": 162.15664300530617 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 248.71258484003246, + "y": 165.26070343274057 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 242.50458484042463, + "y": 165.2607732122663 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 237.12854995100133, + "y": 162.15683364009294 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 234.02448952356693, + "y": 156.7808685301954 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 234.02441974404118, + "y": 150.57286853058753 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 237.12835931621456, + "y": 145.19683364116426 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 242.5043244261121, + "y": 142.09277321372986 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 248.71232442571994, + "y": 142.09270343420414 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 254.08835931514324, + "y": 145.19664300637749 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 257.1924197425777, + "y": 150.572608116275 + }, + { + "angle": -1.3844366661955285e-7, + "anglePrev": -1.1860249929058797e-7, + "angularSpeed": 1.984116732896488e-8, + "angularVelocity": -1.984116732896488e-8, + "area": 828.5975979999998, + "axes": { + "#": 337 + }, + "bounds": { + "#": 347 + }, + "circleRadius": 16.40693587105624, + "collisionFilter": { + "#": 350 + }, + "constraintImpulse": { + "#": 351 + }, + "density": 0.001, + "force": { + "#": 352 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 11, + "inertia": 437.12315220007827, + "inverseInertia": 0.00228768482055209, + "inverseMass": 1.206858434557036, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8285975979999999, + "motion": 0, + "parent": null, + "position": { + "#": 353 + }, + "positionImpulse": { + "#": 354 + }, + "positionPrev": { + "#": 355 + }, + "region": { + "#": 356 + }, + "render": { + "#": 357 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055552071111703, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 359 + }, + "vertices": { + "#": 360 + } + }, + [ + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + } + ], + { + "x": -0.9396755548564196, + "y": -0.34206702794230204 + }, + { + "x": -0.7660160058390478, + "y": -0.6428214983946874 + }, + { + "x": -0.50004668876824, + "y": -0.865998446333432 + }, + { + "x": -0.1737254062759789, + "y": -0.9847941324024254 + }, + { + "x": 0.1737251335989511, + "y": -0.9847941805047521 + }, + { + "x": 0.5000464489842205, + "y": -0.8659985847899929 + }, + { + "x": 0.7660158278498881, + "y": -0.6428217104947919 + }, + { + "x": 0.9396754601423566, + "y": -0.34206728812654746 + }, + { + "x": 0.9999999999999902, + "y": -1.3844366661955243e-7 + }, + { + "max": { + "#": 348 + }, + "min": { + "#": 349 + } + }, + { + "x": 372.80753163381127, + "y": 175.6536233302623 + }, + { + "x": 340.49152875365235, + "y": 139.78407125915163 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 356.6495312393854, + "y": 156.1910712591515 + }, + { + "x": 0.20044904084538376, + "y": 0.12468404405940903 + }, + { + "x": 356.6495333306926, + "y": 153.13551918804052 + }, + { + "endCol": 7, + "endRow": 3, + "id": "7,7,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 358 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0000020913071807626693, + "y": 3.055552071110987 + }, + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 372.80753163381127, + "y": 159.0400690221787 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 370.8585323750387, + "y": 164.39406929200536 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 367.19553297934533, + "y": 168.75906979912446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 362.26153337377133, + "y": 171.6080704822055 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 356.6495335108305, + "y": 172.5980712591513 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 351.0375333737713, + "y": 171.60807203609718 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 346.1035329793455, + "y": 168.75907271917825 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 342.4405323750389, + "y": 164.3940732262975 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 340.4915316338115, + "y": 159.04007349612428 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 340.4915308449595, + "y": 153.3420734961243 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 342.4405301037321, + "y": 147.98807322629764 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 346.10352949942546, + "y": 143.62307271917854 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 351.03752910499946, + "y": 140.7740720360975 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 356.6495289679403, + "y": 139.78407125915163 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 362.2615291049995, + "y": 140.77407048220576 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 367.1955294994253, + "y": 143.62306979912472 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 370.8585301037319, + "y": 147.9880692920055 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 372.8075308449593, + "y": 153.34206902217872 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 783.3593100000002, + "axes": { + "#": 380 + }, + "bounds": { + "#": 389 + }, + "circleRadius": 15.996013374485596, + "collisionFilter": { + "#": 392 + }, + "constraintImpulse": { + "#": 393 + }, + "density": 0.001, + "force": { + "#": 394 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 12, + "inertia": 390.7154522672976, + "inverseInertia": 0.0025594073492539436, + "inverseMass": 1.2765534119968522, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7833593100000001, + "motion": 0, + "parent": null, + "position": { + "#": 395 + }, + "positionImpulse": { + "#": 396 + }, + "positionPrev": { + "#": 397 + }, + "region": { + "#": 398 + }, + "render": { + "#": 399 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 401 + }, + "vertices": { + "#": 402 + } + }, + [ + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + } + ], + { + "x": -0.9238430135485202, + "y": -0.3827715850446434 + }, + { + "x": -0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": -0.3827715850446434, + "y": -0.9238430135485202 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827715850446434, + "y": -0.9238430135485202 + }, + { + "x": 0.7071067811865476, + "y": -0.7071067811865476 + }, + { + "x": 0.9238430135485202, + "y": -0.3827715850446434 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 390 + }, + "min": { + "#": 391 + } + }, + { + "x": 402.4280000000001, + "y": 149.7113333333329 + }, + { + "x": 371.05000000000007, + "y": 118.33333333333292 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 386.7390000000001, + "y": 134.0223333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 386.7390000000001, + "y": 130.96677777777742 + }, + { + "endCol": 8, + "endRow": 3, + "id": "7,8,2,3", + "startCol": 7, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 400 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 402.4280000000001, + "y": 137.14333333333292 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 400.0390000000001, + "y": 142.9093333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 395.6260000000001, + "y": 147.3223333333329 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.86000000000007, + "y": 149.7113333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 383.6180000000001, + "y": 149.7113333333329 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 377.8520000000001, + "y": 147.3223333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 373.4390000000001, + "y": 142.9093333333329 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 371.05000000000007, + "y": 137.14333333333292 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 371.05000000000007, + "y": 130.90133333333293 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 373.4390000000001, + "y": 125.13533333333291 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 377.8520000000001, + "y": 120.72233333333291 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 383.6180000000001, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 389.86000000000007, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 395.6260000000001, + "y": 120.72233333333291 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 400.0390000000001, + "y": 125.13533333333291 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 402.4280000000001, + "y": 130.90133333333293 + }, + { + "angle": -1.2297141428526952e-7, + "anglePrev": -9.837717583927779e-8, + "angularSpeed": 2.4594237598592507e-8, + "angularVelocity": -2.4594238113358927e-8, + "area": 754.4775720000002, + "axes": { + "#": 420 + }, + "bounds": { + "#": 429 + }, + "circleRadius": 15.698259602194788, + "collisionFilter": { + "#": 432 + }, + "constraintImpulse": { + "#": 433 + }, + "density": 0.001, + "force": { + "#": 434 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 13, + "inertia": 362.43592371593485, + "inverseInertia": 0.002759108395622964, + "inverseMass": 1.32542044603017, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7544775720000002, + "motion": 0, + "parent": null, + "position": { + "#": 435 + }, + "positionImpulse": { + "#": 436 + }, + "positionPrev": { + "#": 437 + }, + "region": { + "#": 438 + }, + "render": { + "#": 439 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055555555555503, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 441 + }, + "vertices": { + "#": 442 + } + }, + [ + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + } + ], + { + "x": -0.9238576602782028, + "y": -0.382736232339302 + }, + { + "x": -0.7071068681404631, + "y": -0.7071066942326211 + }, + { + "x": -0.38273645955545654, + "y": -0.9238575661469434 + }, + { + "x": -1.2297141428526917e-7, + "y": -0.9999999999999923 + }, + { + "x": 0.382736232339302, + "y": -0.9238576602782028 + }, + { + "x": 0.7071066942326211, + "y": -0.7071068681404631 + }, + { + "x": 0.9238575661469434, + "y": -0.38273645955545654 + }, + { + "x": 0.9999999999999923, + "y": -1.2297141428526917e-7 + }, + { + "max": { + "#": 430 + }, + "min": { + "#": 431 + } + }, + { + "x": 465.1182917603726, + "y": 165.1315627863435 + }, + { + "x": 434.32429023972026, + "y": 131.28200647746547 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 449.72129061638157, + "y": 146.67900685412678 + }, + { + "x": 0.22358220920640015, + "y": 0.14018559621985138 + }, + { + "x": 449.7212898490519, + "y": 143.62345129857138 + }, + { + "endCol": 9, + "endRow": 3, + "id": "9,9,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 440 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 7.673296522625606e-7, + "y": 3.055555555555401 + }, + [ + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 465.1182909930429, + "y": 149.74200496073587 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 462.77429168881514, + "y": 155.40000524898088 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 458.4422922215274, + "y": 159.73200578169292 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.78429250977234, + "y": 162.0760064774652 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.6582925097725, + "y": 162.0760072307881 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 441.0002922215275, + "y": 159.73200792656036 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 436.6682916888153, + "y": 155.40000845927258 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 434.3242909930431, + "y": 149.7420087475176 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 434.32429023972026, + "y": 143.6160087475177 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 436.668289543948, + "y": 137.95800845927272 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 441.00028901123574, + "y": 133.62600792656062 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 446.6582887229908, + "y": 131.28200723078837 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 452.78428872299065, + "y": 131.28200647746547 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 458.44228901123563, + "y": 133.6260057816932 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 462.7742895439478, + "y": 137.958005248981 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 465.11829023972, + "y": 143.61600496073598 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 546.5734600000001, + "axes": { + "#": 460 + }, + "bounds": { + "#": 468 + }, + "circleRadius": 13.414909122085048, + "collisionFilter": { + "#": 471 + }, + "constraintImpulse": { + "#": 472 + }, + "density": 0.001, + "force": { + "#": 473 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 14, + "inertia": 190.22932853820927, + "inverseInertia": 0.0052568129619357876, + "inverseMass": 1.8295802361131839, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5465734600000001, + "motion": 0, + "parent": null, + "position": { + "#": 474 + }, + "positionImpulse": { + "#": 475 + }, + "positionPrev": { + "#": 476 + }, + "region": { + "#": 477 + }, + "render": { + "#": 478 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 480 + }, + "vertices": { + "#": 481 + } + }, + [ + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + } + ], + { + "x": -0.9009289164305454, + "y": -0.4339666894351262 + }, + { + "x": -0.6235094308206882, + "y": -0.7818158284900999 + }, + { + "x": -0.22258377112347572, + "y": -0.9749135678779182 + }, + { + "x": 0.22258377112347572, + "y": -0.9749135678779182 + }, + { + "x": 0.6235094308206882, + "y": -0.7818158284900999 + }, + { + "x": 0.9009289164305454, + "y": -0.4339666894351262 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 469 + }, + "min": { + "#": 470 + } + }, + { + "x": 499.3800000000001, + "y": 145.1633333333329 + }, + { + "x": 473.2220000000001, + "y": 118.33333333333292 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 486.3010000000001, + "y": 131.7483333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 486.3010000000001, + "y": 128.69277777777742 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 479 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 499.3800000000001, + "y": 134.73333333333292 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 496.7890000000001, + "y": 140.1123333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 492.1220000000001, + "y": 143.83433333333292 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 486.3010000000001, + "y": 145.1633333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 480.4800000000001, + "y": 143.83433333333292 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 475.8130000000001, + "y": 140.1123333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 473.2220000000001, + "y": 134.73333333333292 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 473.2220000000001, + "y": 128.76333333333292 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 475.8130000000001, + "y": 123.3843333333329 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 480.4800000000001, + "y": 119.66233333333291 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 486.3010000000001, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 492.1220000000001, + "y": 119.66233333333291 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 496.7890000000001, + "y": 123.3843333333329 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 499.3800000000001, + "y": 128.76333333333292 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 973.9752019999999, + "axes": { + "#": 497 + }, + "bounds": { + "#": 507 + }, + "circleRadius": 17.787937242798353, + "collisionFilter": { + "#": 510 + }, + "constraintImpulse": { + "#": 511 + }, + "density": 0.001, + "force": { + "#": 512 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 15, + "inertia": 603.96569072653, + "inverseInertia": 0.0016557231898339578, + "inverseMass": 1.0267201854282941, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9739752019999999, + "motion": 0, + "parent": null, + "position": { + "#": 513 + }, + "positionImpulse": { + "#": 514 + }, + "positionPrev": { + "#": 515 + }, + "region": { + "#": 516 + }, + "render": { + "#": 517 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555555207, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 519 + }, + "vertices": { + "#": 520 + } + }, + [ + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + } + ], + { + "x": -0.9396846715303921, + "y": -0.3420419829360413 + }, + { + "x": -0.7660141089546303, + "y": -0.6428237588036427 + }, + { + "x": -0.5000213741632397, + "y": -0.8660130630538465 + }, + { + "x": -0.17368375845285658, + "y": -0.9848014784969049 + }, + { + "x": 0.17368375845285658, + "y": -0.9848014784969049 + }, + { + "x": 0.5000213741632397, + "y": -0.8660130630538465 + }, + { + "x": 0.7660141089546303, + "y": -0.6428237588036427 + }, + { + "x": 0.9396846715303921, + "y": -0.3420419829360413 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 508 + }, + "min": { + "#": 509 + } + }, + { + "x": 554.4160000000002, + "y": 153.90933333333297 + }, + { + "x": 519.3800000000001, + "y": 118.33333333333296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.8980000000001, + "y": 136.12133333333298 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.8980000000001, + "y": 133.06577777777747 + }, + { + "endCol": 11, + "endRow": 3, + "id": "10,11,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 518 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555555207 + }, + [ + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 554.4160000000002, + "y": 139.21033333333298 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 552.3030000000001, + "y": 145.015333333333 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 548.3320000000001, + "y": 149.74733333333296 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 542.9820000000001, + "y": 152.83633333333296 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 536.8980000000001, + "y": 153.90933333333297 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 530.8140000000002, + "y": 152.83633333333296 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 525.4640000000002, + "y": 149.74733333333296 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 521.4930000000002, + "y": 145.015333333333 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 519.3800000000001, + "y": 139.21033333333298 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 519.3800000000001, + "y": 133.03233333333296 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 521.4930000000002, + "y": 127.22733333333295 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 525.4640000000002, + "y": 122.49533333333295 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 530.8140000000002, + "y": 119.40633333333295 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 536.8980000000001, + "y": 118.33333333333296 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 542.9820000000001, + "y": 119.40633333333295 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 548.3320000000001, + "y": 122.49533333333295 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 552.3030000000001, + "y": 127.22733333333295 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 554.4160000000002, + "y": 133.03233333333296 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 485.5904, + "axes": { + "#": 540 + }, + "bounds": { + "#": 548 + }, + "circleRadius": 12.644504458161865, + "collisionFilter": { + "#": 551 + }, + "constraintImpulse": { + "#": 552 + }, + "density": 0.001, + "force": { + "#": 553 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 16, + "inertia": 150.14835557749134, + "inverseInertia": 0.006660079600298396, + "inverseMass": 2.0593487844899734, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4855904, + "motion": 0, + "parent": null, + "position": { + "#": 554 + }, + "positionImpulse": { + "#": 555 + }, + "positionPrev": { + "#": 556 + }, + "region": { + "#": 557 + }, + "render": { + "#": 558 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 560 + }, + "vertices": { + "#": 561 + } + }, + [ + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + } + ], + { + "x": -0.9010093877027451, + "y": -0.43379958883282077 + }, + { + "x": -0.6233938910669198, + "y": -0.7819079591489303 + }, + { + "x": -0.2226655662703444, + "y": -0.9748948895124575 + }, + { + "x": 0.2226655662703444, + "y": -0.9748948895124575 + }, + { + "x": 0.6233938910669198, + "y": -0.7819079591489303 + }, + { + "x": 0.9010093877027451, + "y": -0.43379958883282077 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 549 + }, + "min": { + "#": 550 + } + }, + { + "x": 599.0700000000002, + "y": 143.6233333333329 + }, + { + "x": 574.4160000000002, + "y": 118.33333333333292 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.7430000000002, + "y": 130.97833333333293 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 586.7430000000002, + "y": 127.92277777777743 + }, + { + "endCol": 12, + "endRow": 2, + "id": "11,12,2,2", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 559 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.0700000000002, + "y": 133.79233333333292 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 596.6290000000001, + "y": 138.8623333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 592.2290000000002, + "y": 142.37033333333292 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.7430000000002, + "y": 143.6233333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 581.2570000000002, + "y": 142.37033333333292 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 576.8570000000002, + "y": 138.8623333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 574.4160000000002, + "y": 133.79233333333292 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 574.4160000000002, + "y": 128.16433333333293 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 576.8570000000002, + "y": 123.09433333333291 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 581.2570000000002, + "y": 119.58633333333292 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 586.7430000000002, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 592.2290000000002, + "y": 119.58633333333292 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 596.6290000000001, + "y": 123.09433333333291 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 599.0700000000002, + "y": 128.16433333333293 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1013.2448800000001, + "axes": { + "#": 577 + }, + "bounds": { + "#": 588 + }, + "circleRadius": 18.10806755829904, + "collisionFilter": { + "#": 591 + }, + "constraintImpulse": { + "#": 592 + }, + "density": 0.001, + "force": { + "#": 593 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 17, + "inertia": 653.6311476673523, + "inverseInertia": 0.0015299148511645328, + "inverseMass": 0.9869282537109884, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.01324488, + "motion": 0, + "parent": null, + "position": { + "#": 594 + }, + "positionImpulse": { + "#": 595 + }, + "positionPrev": { + "#": 596 + }, + "region": { + "#": 597 + }, + "render": { + "#": 598 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555555207, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 600 + }, + "vertices": { + "#": 601 + } + }, + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + } + ], + { + "x": -0.95103925715127, + "y": -0.3090701075114839 + }, + { + "x": -0.8089955390833857, + "y": -0.5878147818345351 + }, + { + "x": -0.5878147818345351, + "y": -0.8089955390833857 + }, + { + "x": -0.3090701075114839, + "y": -0.95103925715127 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3090701075114839, + "y": -0.95103925715127 + }, + { + "x": 0.5878147818345351, + "y": -0.8089955390833857 + }, + { + "x": 0.8089955390833857, + "y": -0.5878147818345351 + }, + { + "x": 0.95103925715127, + "y": -0.3090701075114839 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 589 + }, + "min": { + "#": 590 + } + }, + { + "x": 654.8400000000001, + "y": 154.10333333333298 + }, + { + "x": 619.0700000000002, + "y": 118.33333333333296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 636.9550000000002, + "y": 136.218333333333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 636.9550000000002, + "y": 133.16277777777748 + }, + { + "endCol": 13, + "endRow": 3, + "id": "12,13,2,3", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 599 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555555207 + }, + [ + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 654.8400000000001, + "y": 139.051333333333 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 653.0890000000002, + "y": 144.439333333333 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 649.7590000000001, + "y": 149.022333333333 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 645.1760000000002, + "y": 152.35233333333298 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 639.7880000000001, + "y": 154.10333333333298 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 634.1220000000002, + "y": 154.10333333333298 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 628.7340000000002, + "y": 152.35233333333298 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 624.1510000000002, + "y": 149.022333333333 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 620.8210000000001, + "y": 144.439333333333 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 619.0700000000002, + "y": 139.051333333333 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 619.0700000000002, + "y": 133.38533333333297 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 620.8210000000001, + "y": 127.99733333333296 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 624.1510000000002, + "y": 123.41433333333296 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 628.7340000000002, + "y": 120.08433333333296 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 634.1220000000002, + "y": 118.33333333333296 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 639.7880000000001, + "y": 118.33333333333296 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 645.1760000000002, + "y": 120.08433333333296 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 649.7590000000001, + "y": 123.41433333333296 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 653.0890000000002, + "y": 127.99733333333296 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 654.8400000000001, + "y": 133.38533333333297 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1043.5045799999998, + "axes": { + "#": 623 + }, + "bounds": { + "#": 634 + }, + "circleRadius": 18.37615740740741, + "collisionFilter": { + "#": 637 + }, + "constraintImpulse": { + "#": 638 + }, + "density": 0.001, + "force": { + "#": 639 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 18, + "inertia": 693.2543810769114, + "inverseInertia": 0.0014424719515606747, + "inverseMass": 0.9583091623804854, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0435045799999998, + "motion": 0, + "parent": null, + "position": { + "#": 640 + }, + "positionImpulse": { + "#": 641 + }, + "positionPrev": { + "#": 642 + }, + "region": { + "#": 643 + }, + "render": { + "#": 644 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 646 + }, + "vertices": { + "#": 647 + } + }, + [ + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + } + ], + { + "x": -0.9510391812432063, + "y": -0.30907034108799836 + }, + { + "x": -0.8090293436440933, + "y": -0.5877682546061905 + }, + { + "x": -0.5877682546061905, + "y": -0.8090293436440933 + }, + { + "x": -0.30907034108799836, + "y": -0.9510391812432063 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907034108799836, + "y": -0.9510391812432063 + }, + { + "x": 0.5877682546061905, + "y": -0.8090293436440933 + }, + { + "x": 0.8090293436440933, + "y": -0.5877682546061905 + }, + { + "x": 0.9510391812432063, + "y": -0.30907034108799836 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 635 + }, + "min": { + "#": 636 + } + }, + { + "x": 711.1400000000001, + "y": 154.63333333333293 + }, + { + "x": 674.8400000000001, + "y": 118.33333333333292 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 692.9900000000001, + "y": 136.48333333333292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 692.9900000000001, + "y": 133.42777777777744 + }, + { + "endCol": 14, + "endRow": 3, + "id": "14,14,2,3", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 645 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 711.1400000000001, + "y": 139.35833333333292 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 709.3630000000002, + "y": 144.82633333333294 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 705.9840000000002, + "y": 149.47733333333292 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 701.3330000000001, + "y": 152.85633333333294 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 695.8650000000001, + "y": 154.63333333333293 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 690.1150000000001, + "y": 154.63333333333293 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 684.6470000000002, + "y": 152.85633333333294 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 679.9960000000001, + "y": 149.47733333333292 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 676.6170000000001, + "y": 144.82633333333294 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 674.8400000000001, + "y": 139.35833333333292 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 674.8400000000001, + "y": 133.60833333333292 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 676.6170000000001, + "y": 128.14033333333293 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 679.9960000000001, + "y": 123.48933333333292 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 684.6470000000002, + "y": 120.11033333333292 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 690.1150000000001, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 695.8650000000001, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 701.3330000000001, + "y": 120.11033333333292 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 705.9840000000002, + "y": 123.48933333333292 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 709.3630000000002, + "y": 128.14033333333293 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 711.1400000000001, + "y": 133.60833333333292 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 804.3326420000001, + "axes": { + "#": 669 + }, + "bounds": { + "#": 679 + }, + "circleRadius": 16.16482338820302, + "collisionFilter": { + "#": 682 + }, + "constraintImpulse": { + "#": 683 + }, + "density": 0.001, + "force": { + "#": 684 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 19, + "inertia": 411.89626816350983, + "inverseInertia": 0.0024277957274500763, + "inverseMass": 1.243266713027419, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8043326420000001, + "motion": 0, + "parent": null, + "position": { + "#": 685 + }, + "positionImpulse": { + "#": 686 + }, + "positionPrev": { + "#": 687 + }, + "region": { + "#": 688 + }, + "render": { + "#": 689 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 691 + }, + "vertices": { + "#": 692 + } + }, + [ + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + } + ], + { + "x": -0.939689356498254, + "y": -0.3420291117491275 + }, + { + "x": -0.766129298042305, + "y": -0.6426864699689927 + }, + { + "x": -0.4999897122177319, + "y": -0.8660313433568266 + }, + { + "x": -0.17366340060749713, + "y": -0.9848050686757457 + }, + { + "x": 0.17366340060749713, + "y": -0.9848050686757457 + }, + { + "x": 0.4999897122177319, + "y": -0.8660313433568266 + }, + { + "x": 0.766129298042305, + "y": -0.6426864699689927 + }, + { + "x": 0.939689356498254, + "y": -0.3420291117491275 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 680 + }, + "min": { + "#": 681 + } + }, + { + "x": 762.9780000000001, + "y": 150.6633333333329 + }, + { + "x": 731.1400000000001, + "y": 118.33333333333292 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 747.0590000000001, + "y": 134.4983333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 747.0590000000001, + "y": 131.44277777777742 + }, + { + "endCol": 15, + "endRow": 3, + "id": "15,15,2,3", + "startCol": 15, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 690 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 762.9780000000001, + "y": 137.30533333333292 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 761.0580000000001, + "y": 142.5803333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 757.45, + "y": 146.88133333333292 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 752.5880000000001, + "y": 149.6883333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 747.0590000000001, + "y": 150.6633333333329 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 741.5300000000001, + "y": 149.6883333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 736.6680000000001, + "y": 146.88133333333292 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 733.0600000000001, + "y": 142.5803333333329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 731.1400000000001, + "y": 137.30533333333292 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 731.1400000000001, + "y": 131.69133333333292 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 733.0600000000001, + "y": 126.41633333333291 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 736.6680000000001, + "y": 122.11533333333291 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 741.5300000000001, + "y": 119.30833333333291 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 747.0590000000001, + "y": 118.33333333333292 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 752.5880000000001, + "y": 119.30833333333291 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 757.45, + "y": 122.11533333333291 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 761.0580000000001, + "y": 126.41633333333291 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 762.9780000000001, + "y": 131.69133333333292 + }, + { + "angle": 0.0002487209126334297, + "anglePrev": 0.00022207674163698433, + "angularSpeed": 0.000026644170996445367, + "angularVelocity": 0.000026644170996445367, + "area": 580.047414, + "axes": { + "#": 712 + }, + "bounds": { + "#": 720 + }, + "circleRadius": 13.81974451303155, + "collisionFilter": { + "#": 723 + }, + "constraintImpulse": { + "#": 724 + }, + "density": 0.001, + "force": { + "#": 725 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 20, + "inertia": 214.24336698195748, + "inverseInertia": 0.004667589079125213, + "inverseMass": 1.7239969972523659, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.580047414, + "motion": 0, + "parent": null, + "position": { + "#": 726 + }, + "positionImpulse": { + "#": 727 + }, + "positionPrev": { + "#": 728 + }, + "region": { + "#": 729 + }, + "render": { + "#": 730 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.054808194545632, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 732 + }, + "vertices": { + "#": 733 + } + }, + [ + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + } + ], + { + "x": -0.900886677195351, + "y": -0.43405436854375556 + }, + { + "x": -0.6232904018779594, + "y": -0.7819904570561023 + }, + { + "x": -0.22234831856922888, + "y": -0.9749672944409138 + }, + { + "x": 0.2228332805498855, + "y": -0.9748565684650108 + }, + { + "x": 0.6236793195061205, + "y": -0.781680309602578 + }, + { + "x": 0.9011024825223327, + "y": -0.4336061761461531 + }, + { + "x": 0.9999999690689536, + "y": 0.00024872091006903024 + }, + { + "max": { + "#": 721 + }, + "min": { + "#": 722 + } + }, + { + "x": 47.86162546987121, + "y": 227.87116572168307 + }, + { + "x": 20.91402250457613, + "y": 197.17635838297187 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 34.387786904640606, + "y": 210.9963579555048 + }, + { + "x": 0.017179852004130775, + "y": 0 + }, + { + "x": 34.38771273947449, + "y": 207.94154976185948 + }, + { + "endCol": 0, + "endRow": 4, + "id": "0,0,4,4", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 731 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00007416516611868929, + "y": 3.054808193645335 + }, + [ + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 47.86002167110816, + "y": 214.0747088772132 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 45.19064359106949, + "y": 219.61504511843623 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 40.380689895126785, + "y": 223.4488489009591 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 34.38434958166345, + "y": 224.81635752803774 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 28.388690266051885, + "y": 223.44586623980555 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 23.580644259489407, + "y": 219.60967025956964 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 20.91402250457613, + "y": 214.06800684357052 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20.91555213817306, + "y": 207.9180070337964 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 23.584930218211717, + "y": 202.37767079257338 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 28.394883914154427, + "y": 198.54386701005052 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 34.39122422761776, + "y": 197.17635838297187 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 40.38688354322932, + "y": 198.54684967120406 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 45.19492954979181, + "y": 202.38304565143997 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 47.86155130470509, + "y": 207.9247090674391 + }, + { + "angle": 0.000012595589766829347, + "anglePrev": 0.000010483311643114609, + "angularSpeed": 0.0000021122781237147387, + "angularVelocity": 0.0000021122781237147387, + "area": 369.23864399999997, + "axes": { + "#": 749 + }, + "bounds": { + "#": 756 + }, + "circleRadius": 11.09400720164609, + "collisionFilter": { + "#": 759 + }, + "constraintImpulse": { + "#": 760 + }, + "density": 0.001, + "force": { + "#": 761 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 21, + "inertia": 86.83240242313165, + "inverseInertia": 0.011516438243030872, + "inverseMass": 2.7082755725860594, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.36923864399999995, + "motion": 0, + "parent": null, + "position": { + "#": 762 + }, + "positionImpulse": { + "#": 763 + }, + "positionPrev": { + "#": 764 + }, + "region": { + "#": 765 + }, + "render": { + "#": 766 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055500955257989, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 768 + }, + "vertices": { + "#": 769 + } + }, + [ + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + } + ], + { + "x": -0.8660749134629289, + "y": -0.49991423691487286 + }, + { + "x": -0.4998924193076188, + "y": -0.8660875066174177 + }, + { + "x": 0.000012595589766496297, + "y": -0.9999999999206753 + }, + { + "x": 0.49991423691487286, + "y": -0.8660749134629289 + }, + { + "x": 0.8660875066174177, + "y": -0.4998924193076188 + }, + { + "x": 0.9999999999206753, + "y": 0.000012595589766496297 + }, + { + "max": { + "#": 757 + }, + "min": { + "#": 758 + } + }, + { + "x": 90.59849170249701, + "y": 226.15533451907825 + }, + { + "x": 69.16640120728013, + "y": 201.66776124169797 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.8824373683683, + "y": 212.38379740278614 + }, + { + "x": 0.08075332447796733, + "y": 0.051826180218307066 + }, + { + "x": 79.88241919532776, + "y": 209.3282964475822 + }, + { + "endCol": 1, + "endRow": 4, + "id": "1,1,4,4", + "startCol": 1, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 767 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00001817304054441138, + "y": 3.0555009552039456 + }, + [ + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 90.59840120558003, + "y": 215.25493237689835 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 87.72733855534432, + "y": 220.22889621456557 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 82.75330239380061, + "y": 223.0998335638743 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 77.01130239425609, + "y": 223.09976123999792 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 72.03733855658888, + "y": 220.22869858976213 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 69.16640120728013, + "y": 215.25466242821847 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 69.16647353115657, + "y": 209.51266242867393 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 72.03753618139228, + "y": 204.53869859100672 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 77.01157234293599, + "y": 201.66776124169797 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 82.75357234248051, + "y": 201.66783356557437 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 87.72753618014772, + "y": 204.53889621581015 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 90.59847352945647, + "y": 209.51293237735382 + }, + { + "angle": 0.000006258062560878014, + "anglePrev": 0.000005319372408030739, + "angularSpeed": 9.386901528472751e-7, + "angularVelocity": 9.386901528472751e-7, + "area": 1186.2008119999998, + "axes": { + "#": 783 + }, + "bounds": { + "#": 794 + }, + "circleRadius": 19.59254972565158, + "collisionFilter": { + "#": 797 + }, + "constraintImpulse": { + "#": 798 + }, + "density": 0.001, + "force": { + "#": 799 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 22, + "inertia": 895.8191409307356, + "inverseInertia": 0.0011162967549019135, + "inverseMass": 0.843027580055307, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1862008119999998, + "motion": 0, + "parent": null, + "position": { + "#": 800 + }, + "positionImpulse": { + "#": 801 + }, + "positionPrev": { + "#": 802 + }, + "region": { + "#": 803 + }, + "render": { + "#": 804 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555183910808723, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 806 + }, + "vertices": { + "#": 807 + } + }, + [ + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + } + ], + { + "x": -0.9510680937404519, + "y": -0.30898136039072555 + }, + { + "x": -0.8090074507188261, + "y": -0.587798387783964 + }, + { + "x": -0.5877882620994465, + "y": -0.8090148076136268 + }, + { + "x": -0.30896945667926373, + "y": -0.9510719609153248 + }, + { + "x": 0.0000062580625608371675, + "y": -0.9999999999804186 + }, + { + "x": 0.30898136039072555, + "y": -0.9510680937404519 + }, + { + "x": 0.587798387783964, + "y": -0.8090074507188261 + }, + { + "x": 0.8090148076136268, + "y": -0.5877882620994465 + }, + { + "x": 0.9510719609153248, + "y": -0.30896945667926373 + }, + { + "x": 0.9999999999804186, + "y": 0.0000062580625608371675 + }, + { + "max": { + "#": 795 + }, + "min": { + "#": 796 + } + }, + { + "x": 85.99248970406279, + "y": 264.29547104441514 + }, + { + "x": 47.29042547885447, + "y": 222.53791429227803 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 66.64144465943728, + "y": 241.88893347286088 + }, + { + "x": -0.03660927910417396, + "y": 0.1126885572106847 + }, + { + "x": 66.6414187953946, + "y": 238.83341508188948 + }, + { + "endCol": 1, + "endRow": 5, + "id": "0,1,4,5", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 805 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000025864042683565458, + "y": 3.0555183909714065 + }, + [ + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 85.99242547809659, + "y": 244.95405457256942 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 84.09838899362896, + "y": 250.78404271968483 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 80.49535795996728, + "y": 255.74302017178832 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 75.53633541226498, + "y": 259.34598913798555 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 69.70632355960866, + "y": 261.2399526534437 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 63.576323559728685, + "y": 261.2399142915203 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 57.74633541261336, + "y": 259.3458778070526 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 52.78735796050986, + "y": 255.74284677339085 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 49.184388994312656, + "y": 250.7838242256886 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 47.29042547885447, + "y": 244.95381237303224 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 47.29046384077795, + "y": 238.82381237315235 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 49.18450032524562, + "y": 232.99382422603688 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 52.78753135890729, + "y": 228.0348467739334 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 57.74655390660959, + "y": 224.4318778077362 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 63.57656575926592, + "y": 222.53791429227803 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 69.70656575914586, + "y": 222.53795265420155 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 75.53655390626122, + "y": 224.4319891386692 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 80.49553135836472, + "y": 228.03502017233086 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 84.0985003245619, + "y": 232.99404272003312 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 85.99246384002011, + "y": 238.82405457268953 + }, + { + "angle": -4.782038113542481e-7, + "anglePrev": -8.695956752527612e-7, + "angularSpeed": 3.9139186389851306e-7, + "angularVelocity": 3.9139186389851306e-7, + "area": 585.3796979999998, + "axes": { + "#": 829 + }, + "bounds": { + "#": 837 + }, + "circleRadius": 13.883273319615911, + "collisionFilter": { + "#": 840 + }, + "constraintImpulse": { + "#": 841 + }, + "density": 0.001, + "force": { + "#": 842 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 23, + "inertia": 218.2004829364277, + "inverseInertia": 0.004582941277409308, + "inverseMass": 1.7082929309242976, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.5853796979999999, + "motion": 0, + "parent": null, + "position": { + "#": 843 + }, + "positionImpulse": { + "#": 844 + }, + "positionPrev": { + "#": 845 + }, + "region": { + "#": 846 + }, + "render": { + "#": 847 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055567121335165, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 849 + }, + "vertices": { + "#": 850 + } + }, + [ + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + } + ], + { + "x": -0.9009643875220815, + "y": -0.4338930426003162 + }, + { + "x": -0.6235103134786474, + "y": -0.7818151245567965 + }, + { + "x": -0.22253083131330498, + "y": -0.974925653121821 + }, + { + "x": 0.222529898886877, + "y": -0.9749258659515582 + }, + { + "x": 0.6235095657444175, + "y": -0.7818157208864553 + }, + { + "x": 0.9009639725430562, + "y": -0.43389390428932567 + }, + { + "x": 0.9999999999998856, + "y": -4.782038113542301e-7 + }, + { + "max": { + "#": 838 + }, + "min": { + "#": 839 + } + }, + { + "x": 229.31252805855925, + "y": 235.43877841012517 + }, + { + "x": 202.24249900259824, + "y": 204.61721128890466 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 215.77750047976826, + "y": 218.50021128890305 + }, + { + "x": -6.75800006323886e-8, + "y": 0.6140821813002798 + }, + { + "x": 215.7774743781473, + "y": 215.44464416767937 + }, + { + "endCol": 4, + "endRow": 4, + "id": "4,4,4,4", + "startCol": 4, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 848 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000026101620960616856, + "y": 3.055567121223681 + }, + [ + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 229.3125019569383, + "y": 221.58920481641408 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 226.63150461909922, + "y": 227.15620609847792 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 221.80150646114086, + "y": 231.0082084082019 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 215.77750711867176, + "y": 232.3832112889015 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 209.75350646114222, + "y": 231.00821416960136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 204.9235046191017, + "y": 227.15621647932625 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 202.24250195694142, + "y": 221.58921776139127 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 202.24249900259824, + "y": 215.411217761392 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 204.9234963404373, + "y": 209.84421647932817 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 209.75349449839567, + "y": 205.99221416960424 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 215.77749384086476, + "y": 204.61721128890466 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 221.8014944983943, + "y": 205.99220840820473 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 226.63149634043484, + "y": 209.84420609847984 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 229.3124990025951, + "y": 215.41120481641482 + }, + { + "angle": -0.0000280389950519639, + "anglePrev": -0.00001619647670098767, + "angularSpeed": 0.000011842518350976231, + "angularVelocity": -0.000011842518350976231, + "area": 1148.07426, + "axes": { + "#": 866 + }, + "bounds": { + "#": 877 + }, + "circleRadius": 19.274819958847736, + "collisionFilter": { + "#": 880 + }, + "constraintImpulse": { + "#": 881 + }, + "density": 0.001, + "force": { + "#": 882 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 24, + "inertia": 839.1582416552851, + "inverseInertia": 0.0011916703553163535, + "inverseMass": 0.8710237959694349, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.14807426, + "motion": 0, + "parent": null, + "position": { + "#": 883 + }, + "positionImpulse": { + "#": 884 + }, + "positionPrev": { + "#": 885 + }, + "region": { + "#": 886 + }, + "render": { + "#": 887 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0556080083015127, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 889 + }, + "vertices": { + "#": 890 + } + }, + [ + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "x": -0.9510524810878795, + "y": -0.3090294131900531 + }, + { + "x": -0.8089604834334853, + "y": -0.5878630250688187 + }, + { + "x": -0.5879083890224409, + "y": -0.8089275159846147 + }, + { + "x": -0.30908274581573913, + "y": -0.9510351498441072 + }, + { + "x": -0.00002803899504828993, + "y": -0.9999999996069076 + }, + { + "x": 0.3090294131900531, + "y": -0.9510524810878795 + }, + { + "x": 0.5878630250688187, + "y": -0.8089604834334853 + }, + { + "x": 0.8089275159846147, + "y": -0.5879083890224409 + }, + { + "x": 0.9510351498441072, + "y": -0.30908274581573913 + }, + { + "x": 0.9999999996069076, + "y": -0.00002803899504828993 + }, + { + "max": { + "#": 878 + }, + "min": { + "#": 879 + } + }, + { + "x": 286.3672203592304, + "y": 257.25198342333357 + }, + { + "x": 248.29077456510674, + "y": 216.12020636739055 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 267.3288590951931, + "y": 235.15829089747697 + }, + { + "x": 0.2819496571721306, + "y": 0.15732032989603598 + }, + { + "x": 267.3285823612421, + "y": 232.1026829017068 + }, + { + "endCol": 5, + "endRow": 5, + "id": "5,5,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 888 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00027673395095462183, + "y": 3.0556079957701803 + }, + [ + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 286.3669436252794, + "y": 238.17275708990408 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 284.50310445768775, + "y": 243.90880935233605 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 280.958241233299, + "y": 248.786908748656 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 276.08034063345417, + "y": 252.33204552148035 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 270.34439290039563, + "y": 254.19620635242322 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 264.314392902766, + "y": 254.1963754275634 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 258.57834064033403, + "y": 252.33253625997168 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 253.7002412440141, + "y": 248.78767303558303 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 250.15510447118976, + "y": 243.90977243573795 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 248.2909436402469, + "y": 238.17382470267952 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 248.29077456510674, + "y": 232.1438247050499 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 250.15461373269844, + "y": 226.4077724426179 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 253.6994769570871, + "y": 221.52967304629794 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 258.5773775569321, + "y": 217.9845362734736 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 264.31332528999053, + "y": 216.12037544253073 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 270.3433252876202, + "y": 216.12020636739055 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 276.07937755005213, + "y": 217.98404553498227 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 280.957476946372, + "y": 221.52890875937092 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 284.5026137191964, + "y": 226.406809359216 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 286.3667745501393, + "y": 232.14275709227445 + }, + { + "angle": -0.0000040564381810375525, + "anglePrev": -0.0000030341262709724655, + "angularSpeed": 0.0000010223119100650874, + "angularVelocity": -0.0000010223119100650874, + "area": 813.928944, + "axes": { + "#": 912 + }, + "bounds": { + "#": 922 + }, + "circleRadius": 16.261016803840878, + "collisionFilter": { + "#": 925 + }, + "constraintImpulse": { + "#": 926 + }, + "density": 0.001, + "force": { + "#": 927 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 25, + "inertia": 421.78337188051313, + "inverseInertia": 0.002370885309066403, + "inverseMass": 1.2286084766632897, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.813928944, + "motion": 0, + "parent": null, + "position": { + "#": 928 + }, + "positionImpulse": { + "#": 929 + }, + "positionPrev": { + "#": 930 + }, + "region": { + "#": 931 + }, + "render": { + "#": 932 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0554894646330317, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 934 + }, + "vertices": { + "#": 935 + } + }, + [ + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + } + ], + { + "x": -0.9396706763784064, + "y": -0.34208042907267816 + }, + { + "x": -0.7660422552672272, + "y": -0.6427902170577119 + }, + { + "x": -0.4999712596912281, + "y": -0.8660419963735979 + }, + { + "x": -0.1736984220514169, + "y": -0.9847988922500104 + }, + { + "x": 0.17369043249404637, + "y": -0.9848003014114236 + }, + { + "x": 0.4999642335831334, + "y": -0.8660460525501114 + }, + { + "x": 0.7660370403644595, + "y": -0.6427964318426632 + }, + { + "x": 0.9396679010912555, + "y": -0.342088052493439 + }, + { + "x": 0.9999999999917725, + "y": -0.000004056438181026428 + }, + { + "max": { + "#": 923 + }, + "min": { + "#": 924 + } + }, + { + "x": 311.5817221622859, + "y": 233.18864645505693 + }, + { + "x": 279.5535380202521, + "y": 197.61115699494545 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 295.5675494755018, + "y": 213.87215699481163 + }, + { + "x": 0.3294241019441254, + "y": 0.10264882718162394 + }, + { + "x": 295.5673882439673, + "y": 210.81666753443253 + }, + { + "endCol": 6, + "endRow": 4, + "id": "5,6,4,4", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 933 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000161231534491435, + "y": 3.055489460379113 + }, + [ + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 311.58156093075144, + "y": 216.6960920349874 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 309.6495824582848, + "y": 222.00309987198227 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 306.0196000064662, + "y": 226.32911459681725 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 301.1296114578314, + "y": 229.15213443277676 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 295.567615437243, + "y": 230.13315699467782 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 290.00561145792295, + "y": 229.15217955659506 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 285.1156000066382, + "y": 226.329199392601 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 281.48558245851643, + "y": 222.0032141175072 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 279.553560931015, + "y": 216.69622195458945 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 279.5535380202521, + "y": 211.04822195463586 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 281.4855164927188, + "y": 205.741214117641 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 285.11549894453736, + "y": 201.41519939280602 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 290.00548749317215, + "y": 198.5921795568465 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 295.5674835137606, + "y": 197.61115699494545 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 301.1294874930806, + "y": 198.5921344330282 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 306.01949894436535, + "y": 201.41511459702227 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 309.6495164924871, + "y": 205.74109987211605 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 311.58153801998856, + "y": 211.04809203503382 + }, + { + "angle": 0.000008353947741201571, + "anglePrev": 0.000006707912091363996, + "angularSpeed": 0.0000016460356498375759, + "angularVelocity": 0.0000016460356498375759, + "area": 405.9288839999999, + "axes": { + "#": 955 + }, + "bounds": { + "#": 962 + }, + "circleRadius": 11.63198731138546, + "collisionFilter": { + "#": 965 + }, + "constraintImpulse": { + "#": 966 + }, + "density": 0.001, + "force": { + "#": 967 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 26, + "inertia": 104.94637250178351, + "inverseInertia": 0.009528676181570788, + "inverseMass": 2.463485697657327, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.40592888399999993, + "motion": 0, + "parent": null, + "position": { + "#": 968 + }, + "positionImpulse": { + "#": 969 + }, + "positionPrev": { + "#": 970 + }, + "region": { + "#": 971 + }, + "render": { + "#": 972 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555557869827, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 974 + }, + "vertices": { + "#": 975 + } + }, + [ + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + } + ], + { + "x": -0.8659711889063562, + "y": -0.50009389116856 + }, + { + "x": -0.500079422542644, + "y": -0.8659795443019515 + }, + { + "x": 0.000008353947741104404, + "y": -0.9999999999651059 + }, + { + "x": 0.50009389116856, + "y": -0.8659711889063562 + }, + { + "x": 0.8659795443019515, + "y": -0.500079422542644 + }, + { + "x": 0.9999999999651059, + "y": 0.000008353947741104404 + }, + { + "max": { + "#": 963 + }, + "min": { + "#": 964 + } + }, + { + "x": 335.54176917651006, + "y": 238.30117657890312 + }, + { + "x": 313.0696809954889, + "y": 212.77357071666174 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 324.30570614883345, + "y": 224.00959587000628 + }, + { + "x": -0.21020443907002362, + "y": 0.8274270303400348 + }, + { + "x": 324.3056682745014, + "y": 220.95404031445403 + }, + { + "endCol": 6, + "endRow": 4, + "id": "6,6,4,4", + "startCol": 6, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 973 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00003787433206525748, + "y": 3.0555555555522522 + }, + [ + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335.5416809947048, + "y": 227.02068973485805 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 332.5306374373263, + "y": 232.23466458093944 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 327.3166122837716, + "y": 235.24562102335088 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 321.2946122839817, + "y": 235.24557071587756 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 316.0806374379002, + "y": 232.2345271584991 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 313.0696809954889, + "y": 227.0205020049444 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 313.0697313029621, + "y": 220.9985020051545 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 316.0807748603406, + "y": 215.78452715907318 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 321.2948000138953, + "y": 212.77357071666174 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 327.3168000136852, + "y": 212.77362102413505 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 332.5307748597667, + "y": 215.7846645815135 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 335.541731302178, + "y": 220.99868973506815 + }, + { + "angle": -0.00004322364721627886, + "anglePrev": -0.000034860833166703294, + "angularSpeed": 0.00000920322672430874, + "angularVelocity": -0.000009914229406891562, + "area": 813.045236, + "axes": { + "#": 989 + }, + "bounds": { + "#": 999 + }, + "circleRadius": 16.25192901234568, + "collisionFilter": { + "#": 1002 + }, + "constraintImpulse": { + "#": 1003 + }, + "density": 0.001, + "force": { + "#": 1004 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 27, + "inertia": 420.8679825768214, + "inverseInertia": 0.0023760419927345484, + "inverseMass": 1.2299438650176162, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8130452360000001, + "motion": 0, + "parent": null, + "position": { + "#": 1005 + }, + "positionImpulse": { + "#": 1006 + }, + "positionPrev": { + "#": 1007 + }, + "region": { + "#": 1008 + }, + "render": { + "#": 1009 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555357161814056, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1011 + }, + "vertices": { + "#": 1012 + } + }, + [ + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + } + ], + { + "x": -0.939735760772918, + "y": -0.3419015939192809 + }, + { + "x": -0.7660954997320375, + "y": -0.6427267578764084 + }, + { + "x": -0.49994901743568526, + "y": -0.8660548365808556 + }, + { + "x": -0.17368638674726414, + "y": -0.984801014956158 + }, + { + "x": 0.1736012527150819, + "y": -0.9848160259945782 + }, + { + "x": 0.49987414747023284, + "y": -0.8660980525846407 + }, + { + "x": 0.7660399348802615, + "y": -0.6427929823579628 + }, + { + "x": 0.9397062007938125, + "y": -0.3419828302556418 + }, + { + "x": 0.9999999990658579, + "y": -0.000043223647202819836 + }, + { + "max": { + "#": 1000 + }, + "min": { + "#": 1001 + } + }, + { + "x": 417.0222724935212, + "y": 276.23057201060874 + }, + { + "x": 385.0118657847361, + "y": 240.67103632912682 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 401.01698774691755, + "y": 256.92303631394515 + }, + { + "x": 0.6702543249657223, + "y": 0.34627524708773183 + }, + { + "x": 401.01679819443154, + "y": 253.86750060214982 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,5,5", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1010 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0001401382082804048, + "y": 3.055535711887387 + }, + [ + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 417.022109709099, + "y": 259.74434451683555 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 415.09233896912673, + "y": 265.04842793352 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 411.46452587156625, + "y": 269.37258474487277 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 406.5756478532657, + "y": 272.1947960626478 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 401.0176902176318, + "y": 273.17503629876353 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 395.45964786364965, + "y": 272.1952765367101 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 390.57052589108423, + "y": 269.3734878597574 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 386.94233899542274, + "y": 265.0496446791887 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 385.01210973900095, + "y": 259.74572810578246 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 385.0118657847361, + "y": 254.1017281110547 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 386.9416365247084, + "y": 248.79764469437035 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 390.56944962226885, + "y": 244.47348788301753 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 395.4583276405694, + "y": 241.6512765652425 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 401.0162852762033, + "y": 240.67103632912682 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 406.57432763018545, + "y": 241.65079609118024 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 411.46344960275087, + "y": 244.47258476813286 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 415.09163649841236, + "y": 248.7964279487016 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 417.02186575483415, + "y": 254.10034452210783 + }, + { + "angle": 0.000003910319285506508, + "anglePrev": 0.000003043298576029219, + "angularSpeed": 8.670207094772891e-7, + "angularVelocity": 8.670207094772891e-7, + "area": 1175.440884, + "axes": { + "#": 1032 + }, + "bounds": { + "#": 1043 + }, + "circleRadius": 19.503557956104252, + "collisionFilter": { + "#": 1046 + }, + "constraintImpulse": { + "#": 1047 + }, + "density": 0.001, + "force": { + "#": 1048 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 28, + "inertia": 879.6410498592595, + "inverseInertia": 0.00113682734583612, + "inverseMass": 0.8507446130315133, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1754408840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1049 + }, + "positionImpulse": { + "#": 1050 + }, + "positionPrev": { + "#": 1051 + }, + "region": { + "#": 1052 + }, + "render": { + "#": 1053 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555212634453204, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1055 + }, + "vertices": { + "#": 1056 + } + }, + [ + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + } + ], + { + "x": -0.9510798223326863, + "y": -0.3089452565611369 + }, + { + "x": -0.8090100563858145, + "y": -0.5877948014967648 + }, + { + "x": -0.5877884745035382, + "y": -0.8090146532917702 + }, + { + "x": -0.30893781850014634, + "y": -0.9510822384527908 + }, + { + "x": 0.0000039103192854965435, + "y": -0.9999999999923549 + }, + { + "x": 0.3089452565611369, + "y": -0.9510798223326863 + }, + { + "x": 0.5877948014967648, + "y": -0.8090100563858145 + }, + { + "x": 0.8090146532917702, + "y": -0.5877884745035382 + }, + { + "x": 0.9510822384527908, + "y": -0.30893781850014634 + }, + { + "x": 0.9999999999923549, + "y": 0.0000039103192854965435 + }, + { + "max": { + "#": 1044 + }, + "min": { + "#": 1045 + } + }, + { + "x": 463.1057740668685, + "y": 238.76471221214595 + }, + { + "x": 424.57972992183323, + "y": 197.18316708829423 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 443.8427418520701, + "y": 216.4461790185311 + }, + { + "x": 0.4152243524496288, + "y": 0 + }, + { + "x": 443.8427215675086, + "y": 213.39065775515311 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,4,4", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1054 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00002028456151492719, + "y": 3.0555212633779893 + }, + [ + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 463.1057299215387, + "y": 219.49725434298819 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 461.22070722997034, + "y": 225.30024697199198 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 457.6336879247514, + "y": 230.23723294563894 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 452.6966738984739, + "y": 233.82421364036523 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 446.8936665275664, + "y": 235.70919094876797 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 440.7916665276131, + "y": 235.7091670879997 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 434.9886738986092, + "y": 233.82414439643128 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 430.05168792496227, + "y": 230.2371250912124 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 426.464707230236, + "y": 225.30011106493487 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 424.57972992183323, + "y": 219.49710369402734 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 424.57975378260153, + "y": 213.395103694074 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 426.46477647416987, + "y": 207.5921110650702 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 430.0517957793888, + "y": 202.65512509142326 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 434.98880980566634, + "y": 199.06814439669697 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 440.79181717657383, + "y": 197.18316708829423 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 446.89381717652714, + "y": 197.1831909490625 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 452.696809805531, + "y": 199.06821364063092 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 457.63379577917794, + "y": 202.6552329458498 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 461.2207764739042, + "y": 207.59224697212733 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 463.105753782307, + "y": 213.39525434303485 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 324.43099600000005, + "axes": { + "#": 1078 + }, + "bounds": { + "#": 1085 + }, + "circleRadius": 10.399219821673526, + "collisionFilter": { + "#": 1088 + }, + "constraintImpulse": { + "#": 1089 + }, + "density": 0.001, + "force": { + "#": 1090 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 29, + "inertia": 67.03663440105248, + "inverseInertia": 0.014917216667194436, + "inverseMass": 3.082319545078238, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.3244309960000001, + "motion": 0, + "parent": null, + "position": { + "#": 1091 + }, + "positionImpulse": { + "#": 1092 + }, + "positionPrev": { + "#": 1093 + }, + "region": { + "#": 1094 + }, + "render": { + "#": 1095 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1097 + }, + "vertices": { + "#": 1098 + } + }, + [ + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + } + ], + { + "x": -0.8659473272702323, + "y": -0.5001352081123076 + }, + { + "x": -0.5001352081123076, + "y": -0.8659473272702323 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5001352081123076, + "y": -0.8659473272702323 + }, + { + "x": 0.8659473272702323, + "y": -0.5001352081123076 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1086 + }, + "min": { + "#": 1087 + } + }, + { + "x": 497.352, + "y": 217.27333333333289 + }, + { + "x": 477.26199999999994, + "y": 197.1833333333329 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.30699999999996, + "y": 207.2283333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 487.30699999999996, + "y": 204.1727777777774 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,4,4", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1096 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 497.352, + "y": 209.9203333333329 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 494.65999999999997, + "y": 214.5813333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 489.99899999999997, + "y": 217.27333333333289 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 484.61499999999995, + "y": 217.27333333333289 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.95399999999995, + "y": 214.5813333333329 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 477.26199999999994, + "y": 209.9203333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 477.26199999999994, + "y": 204.5363333333329 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 479.95399999999995, + "y": 199.8753333333329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 484.61499999999995, + "y": 197.1833333333329 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 489.99899999999997, + "y": 197.1833333333329 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 494.65999999999997, + "y": 199.8753333333329 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 497.352, + "y": 204.5363333333329 + }, + { + "angle": -0.000003259887958760072, + "anglePrev": -0.0000026149748309138138, + "angularSpeed": 6.449131278462582e-7, + "angularVelocity": -6.449131278462582e-7, + "area": 722.1773659999999, + "axes": { + "#": 1112 + }, + "bounds": { + "#": 1121 + }, + "circleRadius": 15.358667695473251, + "collisionFilter": { + "#": 1124 + }, + "constraintImpulse": { + "#": 1125 + }, + "density": 0.001, + "force": { + "#": 1126 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 30, + "inertia": 332.0674558099107, + "inverseInertia": 0.0030114363286851023, + "inverseMass": 1.3847013865012214, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.7221773659999999, + "motion": 0, + "parent": null, + "position": { + "#": 1127 + }, + "positionImpulse": { + "#": 1128 + }, + "positionPrev": { + "#": 1129 + }, + "region": { + "#": 1130 + }, + "render": { + "#": 1131 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055563116518251, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1133 + }, + "vertices": { + "#": 1134 + } + }, + [ + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + } + ], + { + "x": -0.9238513114535443, + "y": -0.3827515569211532 + }, + { + "x": -0.7071090862716721, + "y": -0.7071044760939089 + }, + { + "x": -0.38275758021655, + "y": -0.9238488159795258 + }, + { + "x": -0.0000032598879587542986, + "y": -0.9999999999946866 + }, + { + "x": 0.3827515569211532, + "y": -0.9238513114535443 + }, + { + "x": 0.7071044760939089, + "y": -0.7071090862716721 + }, + { + "x": 0.9238488159795258, + "y": -0.38275758021655 + }, + { + "x": 0.9999999999946866, + "y": -0.0000032598879587542986 + }, + { + "max": { + "#": 1122 + }, + "min": { + "#": 1123 + } + }, + { + "x": 565.2863480222045, + "y": 263.9898576424382 + }, + { + "x": 535.1583284891159, + "y": 233.86183810934966 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.2223382556602, + "y": 248.92584787589394 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 550.2223200653849, + "y": 245.87028475942984 + }, + { + "endCol": 11, + "endRow": 5, + "id": "11,11,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1132 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000018190275341112283, + "y": 3.055563116464106 + }, + [ + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 565.2863480222045, + "y": 251.92179876892584 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 562.9923660722163, + "y": 257.45880624707934 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 558.7553798843842, + "y": 261.6958200592022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 553.2183873625967, + "y": 263.98983810918963 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 547.2263873626285, + "y": 263.9898576424382 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 541.6893798844749, + "y": 261.69587569245004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 537.4523660723521, + "y": 257.4588895046178 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 535.1583480223646, + "y": 251.92189698283022 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 535.1583284891159, + "y": 245.92989698286203 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 537.4523104391042, + "y": 240.3928895047085 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 541.6892966269363, + "y": 236.1558756925857 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 547.2262891487238, + "y": 233.86185764259832 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 553.218289148692, + "y": 233.86183810934966 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 558.7552966268456, + "y": 236.15582005933783 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 562.9923104389684, + "y": 240.39280624717009 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 565.2863284889557, + "y": 245.92979876895765 + }, + { + "angle": -0.0000016431429949939924, + "anglePrev": -0.0000012324358218324446, + "angularSpeed": 4.1070717316154784e-7, + "angularVelocity": -4.1070717316154784e-7, + "area": 486.2764840000001, + "axes": { + "#": 1152 + }, + "bounds": { + "#": 1160 + }, + "circleRadius": 12.653506515775035, + "collisionFilter": { + "#": 1163 + }, + "constraintImpulse": { + "#": 1164 + }, + "density": 0.001, + "force": { + "#": 1165 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 31, + "inertia": 150.57294030609683, + "inverseInertia": 0.006641299545370631, + "inverseMass": 2.0564432640752575, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4862764840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1166 + }, + "positionImpulse": { + "#": 1167 + }, + "positionPrev": { + "#": 1168 + }, + "region": { + "#": 1169 + }, + "render": { + "#": 1170 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055565856075056, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1172 + }, + "vertices": { + "#": 1173 + } + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + } + ], + { + "x": -0.9009715276384245, + "y": -0.4338782160755288 + }, + { + "x": -0.6234612006716209, + "y": -0.7818542902978155 + }, + { + "x": -0.2226817502991749, + "y": -0.9748911929460106 + }, + { + "x": 0.2226785465267033, + "y": -0.9748919247366625 + }, + { + "x": 0.6234586312714538, + "y": -0.7818563391654026 + }, + { + "x": 0.9009701017856566, + "y": -0.4338811769232946 + }, + { + "x": 0.9999999999986499, + "y": -0.0000016431429949932527 + }, + { + "max": { + "#": 1161 + }, + "min": { + "#": 1162 + } + }, + { + "x": 599.4901546577554, + "y": 225.54694039997176 + }, + { + "x": 574.8181453335108, + "y": 197.18337454393094 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.1541499605848, + "y": 209.83737454391382 + }, + { + "x": 0.5214166184110381, + "y": 0 + }, + { + "x": 587.1541498904884, + "y": 206.78180868783878 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,4,4", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1171 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 7.00964619682054e-8, + "y": 3.055565856075055 + }, + [ + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 599.4901545876589, + "y": 212.65335427409804 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 597.0471629233266, + "y": 217.72635828828953 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 592.6441686924077, + "y": 221.23736552304342 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.1541707529161, + "y": 222.4913745438967 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 581.6641686924223, + "y": 221.23738356475346 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 577.2611629233533, + "y": 217.72639079951682 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 574.8181545876921, + "y": 212.653394813722 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 574.8181453335108, + "y": 207.02139481372961 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 577.2611369978431, + "y": 201.94839079953812 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 581.664131228762, + "y": 198.43738356478423 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 587.1541291682536, + "y": 197.18337454393094 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 592.6441312287474, + "y": 198.4373655230742 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 597.0471369978164, + "y": 201.94835828831083 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 599.4901453334776, + "y": 207.02135427410565 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 555.028152, + "axes": { + "#": 1189 + }, + "bounds": { + "#": 1197 + }, + "circleRadius": 13.518304183813443, + "collisionFilter": { + "#": 1200 + }, + "constraintImpulse": { + "#": 1201 + }, + "density": 0.001, + "force": { + "#": 1202 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 32, + "inertia": 196.15998479488022, + "inverseInertia": 0.005097879677374955, + "inverseMass": 1.8017104112585627, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.555028152, + "motion": 0, + "parent": null, + "position": { + "#": 1203 + }, + "positionImpulse": { + "#": 1204 + }, + "positionPrev": { + "#": 1205 + }, + "region": { + "#": 1206 + }, + "render": { + "#": 1207 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1209 + }, + "vertices": { + "#": 1210 + } + }, + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + } + ], + { + "x": -0.901008887984407, + "y": -0.4338006267550824 + }, + { + "x": -0.6234578160368234, + "y": -0.781856989239461 + }, + { + "x": -0.22241855165218072, + "y": -0.9749512746188632 + }, + { + "x": 0.22241855165218072, + "y": -0.9749512746188632 + }, + { + "x": 0.6234578160368234, + "y": -0.781856989239461 + }, + { + "x": 0.901008887984407, + "y": -0.4338006267550824 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1198 + }, + "min": { + "#": 1199 + } + }, + { + "x": 638.5099999999999, + "y": 224.2193333333329 + }, + { + "x": 612.1519999999999, + "y": 197.1833333333329 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625.3309999999999, + "y": 210.7013333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 625.3309999999999, + "y": 207.64577777777743 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,4,4", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1208 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 638.5099999999999, + "y": 213.70933333333292 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 635.8999999999999, + "y": 219.1303333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 631.1959999999999, + "y": 222.88133333333292 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 625.3309999999999, + "y": 224.2193333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 619.4659999999999, + "y": 222.88133333333292 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 614.762, + "y": 219.1303333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 612.1519999999999, + "y": 213.70933333333292 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 612.1519999999999, + "y": 207.6933333333329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 614.762, + "y": 202.2723333333329 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 619.4659999999999, + "y": 198.5213333333329 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 625.3309999999999, + "y": 197.1833333333329 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 631.1959999999999, + "y": 198.5213333333329 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 635.8999999999999, + "y": 202.2723333333329 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 638.5099999999999, + "y": 207.6933333333329 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1227.1883159999998, + "axes": { + "#": 1226 + }, + "bounds": { + "#": 1237 + }, + "circleRadius": 19.928369341563787, + "collisionFilter": { + "#": 1240 + }, + "constraintImpulse": { + "#": 1241 + }, + "density": 0.001, + "force": { + "#": 1242 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 33, + "inertia": 958.7962512746001, + "inverseInertia": 0.001042974457472716, + "inverseMass": 0.8148708612704882, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.227188316, + "motion": 0, + "parent": null, + "position": { + "#": 1243 + }, + "positionImpulse": { + "#": 1244 + }, + "positionPrev": { + "#": 1245 + }, + "region": { + "#": 1246 + }, + "render": { + "#": 1247 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1249 + }, + "vertices": { + "#": 1250 + } + }, + [ + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + } + ], + { + "x": -0.9510458539268092, + "y": -0.30904980784434416 + }, + { + "x": -0.80899262671849, + "y": -0.5878187900323687 + }, + { + "x": -0.5878187900323687, + "y": -0.80899262671849 + }, + { + "x": -0.30904980784434416, + "y": -0.9510458539268092 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30904980784434416, + "y": -0.9510458539268092 + }, + { + "x": 0.5878187900323687, + "y": -0.80899262671849 + }, + { + "x": 0.80899262671849, + "y": -0.5878187900323687 + }, + { + "x": 0.9510458539268092, + "y": -0.30904980784434416 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1238 + }, + "min": { + "#": 1239 + } + }, + { + "x": 697.8759999999999, + "y": 236.5493333333329 + }, + { + "x": 658.5099999999999, + "y": 197.1833333333329 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 678.1929999999999, + "y": 216.8663333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 678.1929999999999, + "y": 213.81077777777742 + }, + { + "endCol": 14, + "endRow": 4, + "id": "13,14,4,4", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1248 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 697.8759999999999, + "y": 219.9833333333329 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 695.9489999999998, + "y": 225.9133333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 692.2839999999999, + "y": 230.9573333333329 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 687.2399999999999, + "y": 234.6223333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 681.3099999999998, + "y": 236.5493333333329 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 675.0759999999999, + "y": 236.5493333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 669.1459999999998, + "y": 234.6223333333329 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 664.1019999999999, + "y": 230.9573333333329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 660.4369999999999, + "y": 225.9133333333329 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 658.5099999999999, + "y": 219.9833333333329 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 658.5099999999999, + "y": 213.7493333333329 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 660.4369999999999, + "y": 207.8193333333329 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 664.1019999999999, + "y": 202.7753333333329 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 669.1459999999998, + "y": 199.1103333333329 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 675.0759999999999, + "y": 197.1833333333329 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 681.3099999999998, + "y": 197.1833333333329 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 687.2399999999999, + "y": 199.1103333333329 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 692.2839999999999, + "y": 202.7753333333329 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 695.9489999999998, + "y": 207.8193333333329 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 697.8759999999999, + "y": 213.7493333333329 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1120.7724680000001, + "axes": { + "#": 1272 + }, + "bounds": { + "#": 1283 + }, + "circleRadius": 19.04419581618656, + "collisionFilter": { + "#": 1286 + }, + "constraintImpulse": { + "#": 1287 + }, + "density": 0.001, + "force": { + "#": 1288 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 34, + "inertia": 799.721573279466, + "inverseInertia": 0.001250435193212608, + "inverseMass": 0.8922417605283286, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1207724680000002, + "motion": 0, + "parent": null, + "position": { + "#": 1289 + }, + "positionImpulse": { + "#": 1290 + }, + "positionPrev": { + "#": 1291 + }, + "region": { + "#": 1292 + }, + "render": { + "#": 1293 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1295 + }, + "vertices": { + "#": 1296 + } + }, + [ + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + } + ], + { + "x": -0.9510722943806661, + "y": -0.3089684302020123 + }, + { + "x": -0.8089319902014619, + "y": -0.5879022327128056 + }, + { + "x": -0.5879022327128056, + "y": -0.8089319902014619 + }, + { + "x": -0.3089684302020123, + "y": -0.9510722943806661 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089684302020123, + "y": -0.9510722943806661 + }, + { + "x": 0.5879022327128056, + "y": -0.8089319902014619 + }, + { + "x": 0.8089319902014619, + "y": -0.5879022327128056 + }, + { + "x": 0.9510722943806661, + "y": -0.3089684302020123 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1284 + }, + "min": { + "#": 1285 + } + }, + { + "x": 755.4959999999998, + "y": 234.80333333333292 + }, + { + "x": 717.8759999999999, + "y": 197.1833333333329 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 736.6859999999998, + "y": 215.9933333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 736.6859999999998, + "y": 212.93777777777743 + }, + { + "endCol": 15, + "endRow": 4, + "id": "14,15,4,4", + "startCol": 14, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1294 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 755.4959999999998, + "y": 218.97233333333293 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 753.6549999999999, + "y": 224.6393333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 750.1519999999998, + "y": 229.45933333333292 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 745.3319999999998, + "y": 232.9623333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 739.6649999999998, + "y": 234.80333333333292 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 733.7069999999998, + "y": 234.80333333333292 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 728.0399999999998, + "y": 232.9623333333329 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 723.2199999999998, + "y": 229.45933333333292 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 719.7169999999998, + "y": 224.6393333333329 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 717.8759999999999, + "y": 218.97233333333293 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 717.8759999999999, + "y": 213.0143333333329 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 719.7169999999998, + "y": 207.34733333333293 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 723.2199999999998, + "y": 202.5273333333329 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 728.0399999999998, + "y": 199.02433333333292 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 733.7069999999998, + "y": 197.1833333333329 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 739.6649999999998, + "y": 197.1833333333329 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 745.3319999999998, + "y": 199.02433333333292 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 750.1519999999998, + "y": 202.5273333333329 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 753.6549999999999, + "y": 207.34733333333293 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 755.4959999999998, + "y": 213.0143333333329 + }, + { + "angle": 0.0014795774340376796, + "anglePrev": 0.0011054952128655296, + "angularSpeed": 0.00032500336345254446, + "angularVelocity": 0.00037310717425286617, + "area": 628.0030680000002, + "axes": { + "#": 1318 + }, + "bounds": { + "#": 1327 + }, + "circleRadius": 14.322573731138545, + "collisionFilter": { + "#": 1330 + }, + "constraintImpulse": { + "#": 1331 + }, + "density": 0.001, + "force": { + "#": 1332 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 35, + "inertia": 251.1088965588656, + "inverseInertia": 0.003982336005230214, + "inverseMass": 1.5923489087158402, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.6280030680000003, + "motion": 0, + "parent": null, + "position": { + "#": 1333 + }, + "positionImpulse": { + "#": 1334 + }, + "positionPrev": { + "#": 1335 + }, + "region": { + "#": 1336 + }, + "render": { + "#": 1337 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0480263618483763, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1339 + }, + "vertices": { + "#": 1340 + } + }, + [ + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + } + ], + { + "x": -0.9233494274871166, + "y": -0.38396072033375234 + }, + { + "x": -0.7060597883503251, + "y": -0.7081522260606787 + }, + { + "x": -0.3812267092746041, + "y": -0.9244815823669267 + }, + { + "x": 0.0014795768942017348, + "y": -0.9999989054255084 + }, + { + "x": 0.38396072033375234, + "y": -0.9233494274871166 + }, + { + "x": 0.7081522260606787, + "y": -0.7060597883503251 + }, + { + "x": 0.9244815823669267, + "y": -0.3812267092746041 + }, + { + "x": 0.9999989054255084, + "y": 0.0014795768942017348 + }, + { + "max": { + "#": 1328 + }, + "min": { + "#": 1329 + } + }, + { + "x": 48.53126245606558, + "y": 307.66675945182095 + }, + { + "x": 20.428161716136927, + "y": 276.5164960876101 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 34.47928027849143, + "y": 290.56761464996464 + }, + { + "x": 0.2744820985173577, + "y": -0.00006000890668423659 + }, + { + "x": 34.47831747084362, + "y": 287.52179027854027 + }, + { + "endCol": 1, + "endRow": 6, + "id": "0,1,5,6", + "startCol": 0, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1338 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0010245945132894008, + "y": 3.045784418357357 + }, + [ + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 48.52213096516114, + "y": 293.3823952083563 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 46.376494249856634, + "y": 298.54222622166844 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 42.41865128772915, + "y": 302.4883746080242 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 37.252493603617445, + "y": 304.61873321231917 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 31.664499720099716, + "y": 304.61046533663443 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 26.50466870678762, + "y": 302.46482862132984 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 22.558520320431896, + "y": 298.5069856592023 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 20.428161716136927, + "y": 293.34082797509063 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 20.436429591821724, + "y": 287.752834091573 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 22.582066307126226, + "y": 282.59300307826084 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 26.539909269253712, + "y": 278.6468546919051 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 31.706066953365415, + "y": 276.5164960876101 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 37.294060836883155, + "y": 276.52476396329484 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 42.453891850195255, + "y": 278.67040067859944 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 46.40004023655097, + "y": 282.62824364072696 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 48.53039884084596, + "y": 287.79440132483865 + }, + { + "angle": 0.000007502259848701328, + "anglePrev": 0.000006437192140225425, + "angularSpeed": 0.0000010650677084759033, + "angularVelocity": 0.0000010650677084759033, + "area": 536.790174, + "axes": { + "#": 1358 + }, + "bounds": { + "#": 1366 + }, + "circleRadius": 13.294367283950617, + "collisionFilter": { + "#": 1369 + }, + "constraintImpulse": { + "#": 1370 + }, + "density": 0.001, + "force": { + "#": 1371 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 36, + "inertia": 183.48032886968383, + "inverseInertia": 0.005450175537401865, + "inverseMass": 1.8629253075709244, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.536790174, + "motion": 0, + "parent": null, + "position": { + "#": 1372 + }, + "positionImpulse": { + "#": 1373 + }, + "positionPrev": { + "#": 1374 + }, + "region": { + "#": 1375 + }, + "render": { + "#": 1376 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055541287973743, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1378 + }, + "vertices": { + "#": 1379 + } + }, + [ + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + } + ], + { + "x": -0.900983734322429, + "y": -0.43385286732533024 + }, + { + "x": -0.62347237621562, + "y": -0.7818453786370093 + }, + { + "x": -0.22243194705771857, + "y": -0.974948218588101 + }, + { + "x": 0.22244657566242912, + "y": -0.9749448809938223 + }, + { + "x": 0.6234841073598208, + "y": -0.7818360236454496 + }, + { + "x": 0.9009902439749004, + "y": -0.43383934844830413 + }, + { + "x": 0.9999999999718578, + "y": 0.000007502259848630951 + }, + { + "max": { + "#": 1367 + }, + "min": { + "#": 1368 + } + }, + { + "x": 99.34633758765946, + "y": 337.66604878849984 + }, + { + "x": 73.4242161589216, + "y": 308.0225075022457 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 86.3852383502415, + "y": 321.31650750187157 + }, + { + "x": 0.10016605639746803, + "y": 0.831643589397438 + }, + { + "x": 86.38516130414342, + "y": 318.2609662148692 + }, + { + "endCol": 2, + "endRow": 6, + "id": "1,2,6,6", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1377 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00007704609807035467, + "y": 3.0555412870023764 + }, + [ + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 99.34621615819212, + "y": 324.2746047385783 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 96.77917616371711, + "y": 329.60558548012716 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 92.15314848801069, + "y": 333.29455077456936 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 86.38513861519904, + "y": 334.61050750149747 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 80.61714848833535, + "y": 333.29446422849975 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 75.99117616430213, + "y": 329.60542952314944 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 73.4242161589216, + "y": 324.2744102649984 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 73.42426054229087, + "y": 318.3584102651649 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 75.9913005367659, + "y": 313.027429523616 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 80.6173282124723, + "y": 309.3384642291738 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 86.38533808528395, + "y": 308.0225075022457 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 92.15332821214764, + "y": 309.3385507752434 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 96.77930053618088, + "y": 313.0275854805937 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 99.34626054156139, + "y": 318.3586047387448 + }, + { + "angle": 0.000004267740474660309, + "anglePrev": 0.000010948473159593928, + "angularSpeed": 0.0000066975015590218645, + "angularVelocity": -0.000008860858981297963, + "area": 438.00552799999997, + "axes": { + "#": 1395 + }, + "bounds": { + "#": 1403 + }, + "circleRadius": 12.008959190672154, + "collisionFilter": { + "#": 1406 + }, + "constraintImpulse": { + "#": 1407 + }, + "density": 0.001, + "force": { + "#": 1408 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 37, + "inertia": 122.16296885484358, + "inverseInertia": 0.008185786653467954, + "inverseMass": 2.2830762081158027, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.438005528, + "motion": 0, + "parent": null, + "position": { + "#": 1409 + }, + "positionImpulse": { + "#": 1410 + }, + "positionPrev": { + "#": 1411 + }, + "region": { + "#": 1412 + }, + "render": { + "#": 1413 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0553563363548872, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1415 + }, + "vertices": { + "#": 1416 + } + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + } + ], + { + "x": -0.9009510542786553, + "y": -0.4339207275461487 + }, + { + "x": -0.6235274839288698, + "y": -0.781801430534207 + }, + { + "x": -0.22249036036321118, + "y": -0.9749348899005759 + }, + { + "x": 0.22249868189328587, + "y": -0.9749329908028294 + }, + { + "x": 0.6235341569573726, + "y": -0.7817961083987678 + }, + { + "x": 0.9009547579679397, + "y": -0.4339130374797822 + }, + { + "x": 0.9999999999908932, + "y": 0.000004267740474647356 + }, + { + "max": { + "#": 1404 + }, + "min": { + "#": 1405 + } + }, + { + "x": 134.86288636377657, + "y": 343.5734368343818 + }, + { + "x": 111.44682398023895, + "y": 316.500080498502 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.15483538353486, + "y": 328.5090804983926 + }, + { + "x": -0.9135884816741477, + "y": 1.1849492648542352 + }, + { + "x": 123.15479580659057, + "y": 325.45372378597824 + }, + { + "endCol": 2, + "endRow": 7, + "id": "2,2,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1414 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00003957715723856836, + "y": 3.0553068134701675 + }, + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 134.86282398002558, + "y": 331.18113046507375 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 132.54380343087635, + "y": 335.9961205681398 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 128.3647892065354, + "y": 339.329102733222 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 123.15478413223948, + "y": 340.51808049828327 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 117.94478920663038, + "y": 339.3290582633663 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 113.76580343104743, + "y": 335.9960404285092 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 111.44682398023895, + "y": 331.1810305316628 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 111.44684678704404, + "y": 325.8370305317115 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 113.76586733619331, + "y": 321.02204042864554 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 117.94488156053424, + "y": 317.68905826356325 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 123.15488663483023, + "y": 316.500080498502 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 128.36488156043933, + "y": 317.68910273341896 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 132.54386733602223, + "y": 321.0221205682761 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 134.8628467868307, + "y": 325.8371304651224 + }, + { + "angle": 0.00006324883892259597, + "anglePrev": 0.000034353781047147254, + "angularSpeed": 0.000022838899045787196, + "angularVelocity": 0.00002802199819124204, + "area": 802.396328, + "axes": { + "#": 1432 + }, + "bounds": { + "#": 1442 + }, + "circleRadius": 16.145361796982165, + "collisionFilter": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "density": 0.001, + "force": { + "#": 1447 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 38, + "inertia": 409.9154941824296, + "inverseInertia": 0.0024395272054658127, + "inverseMass": 1.2462669196063418, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.802396328, + "motion": 0, + "parent": null, + "position": { + "#": 1448 + }, + "positionImpulse": { + "#": 1449 + }, + "positionPrev": { + "#": 1450 + }, + "region": { + "#": 1451 + }, + "render": { + "#": 1452 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055648977909024, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1454 + }, + "vertices": { + "#": 1455 + } + }, + [ + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + } + ], + { + "x": -0.9396571792201551, + "y": -0.34211750253388323 + }, + { + "x": -0.7659978940053088, + "y": -0.642843080680995 + }, + { + "x": -0.4999969990885213, + "y": -0.8660271363545567 + }, + { + "x": -0.1734686855301692, + "y": -0.9848393854535041 + }, + { + "x": 0.17359326403725356, + "y": -0.9848174341881306 + }, + { + "x": 0.5001065455095374, + "y": -0.8659638809664743 + }, + { + "x": 0.766079206033397, + "y": -0.6427461785831484 + }, + { + "x": 0.9397004487716218, + "y": -0.3419986353458338 + }, + { + "x": 0.9999999979997922, + "y": 0.0000632488388804257 + }, + { + "max": { + "#": 1443 + }, + "min": { + "#": 1444 + } + }, + { + "x": 167.6160100917336, + "y": 343.7652280170599 + }, + { + "x": 135.8148418995816, + "y": 308.41957921204084 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 151.7150192175225, + "y": 324.56457917974745 + }, + { + "x": -0.1121012297147242, + "y": 1.6317619607104494 + }, + { + "x": 151.71401423601517, + "y": 321.5089305090248 + }, + { + "endCol": 3, + "endRow": 7, + "id": "2,3,6,7", + "startCol": 2, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1453 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0010049813910768535, + "y": 3.0556759091491017 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 167.61484183597497, + "y": 327.36958483067707 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 165.69650858167932, + "y": 332.638463508865 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 162.09223693512507, + "y": 336.9332355514588 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 157.23605959509385, + "y": 339.7369284094887 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 151.71399806501873, + "y": 340.7095791474542 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 146.19205961718416, + "y": 339.7362298893121 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 141.33623697664135, + "y": 336.93192275855904 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 137.7325086376131, + "y": 332.63669481833455 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 135.8148418995816, + "y": 327.3675735176006 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 135.81519659907002, + "y": 321.75957352881784 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 137.73352985336567, + "y": 316.4906948506299 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 141.33780149991992, + "y": 312.19592280803613 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 146.19397883995114, + "y": 309.3922299500063 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 151.71604037002626, + "y": 308.41957921204084 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 157.23797881786084, + "y": 309.39292847018294 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 162.09380145840365, + "y": 312.197235600936 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 165.69752979743188, + "y": 316.4924635411605 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 167.61519653546338, + "y": 321.7615848418943 + }, + { + "angle": -0.0000030154087052504766, + "anglePrev": -0.0000026648216103951702, + "angularSpeed": 3.505870948553064e-7, + "angularVelocity": -3.505870948553064e-7, + "area": 1091.045108, + "axes": { + "#": 1475 + }, + "bounds": { + "#": 1486 + }, + "circleRadius": 18.78999485596708, + "collisionFilter": { + "#": 1489 + }, + "constraintImpulse": { + "#": 1490 + }, + "density": 0.001, + "force": { + "#": 1491 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 39, + "inertia": 757.8605778590133, + "inverseInertia": 0.0013195039156477042, + "inverseMass": 0.9165523887762117, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.091045108, + "motion": 0, + "parent": null, + "position": { + "#": 1492 + }, + "positionImpulse": { + "#": 1493 + }, + "positionPrev": { + "#": 1494 + }, + "region": { + "#": 1495 + }, + "render": { + "#": 1496 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055548917809964, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1498 + }, + "vertices": { + "#": 1499 + } + }, + [ + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + } + ], + { + "x": -0.9510387507618362, + "y": -0.30907166571745937 + }, + { + "x": -0.8091128059641861, + "y": -0.5876533563460353 + }, + { + "x": -0.5876582359469459, + "y": -0.8091092619193794 + }, + { + "x": -0.30907740125289496, + "y": -0.9510368867897586 + }, + { + "x": -0.000003015408705245906, + "y": -0.9999999999954532 + }, + { + "x": 0.30907166571745937, + "y": -0.9510387507618362 + }, + { + "x": 0.5876533563460353, + "y": -0.8091128059641861 + }, + { + "x": 0.8091092619193794, + "y": -0.5876582359469459 + }, + { + "x": 0.9510368867897586, + "y": -0.30907740125289496 + }, + { + "x": 0.9999999999954532, + "y": -0.000003015408705245906 + }, + { + "max": { + "#": 1487 + }, + "min": { + "#": 1488 + } + }, + { + "x": 210.1877636334037, + "y": 373.04487370471065 + }, + { + "x": 173.06972872816775, + "y": 332.8713070625453 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 191.62873759036958, + "y": 351.43031592474716 + }, + { + "x": -0.255675536948943, + "y": 1.2128650616537262 + }, + { + "x": 191.62872040953724, + "y": 348.3747670069855 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1497 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000017180832344365626, + "y": 3.0555489177616613 + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 210.18774645257136, + "y": 354.36925996176365 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 208.3707633117297, + "y": 359.9602654407359 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 204.9157776560446, + "y": 364.7172758589513 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200.15878807430332, + "y": 368.17229020323475 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 194.56779355332634, + "y": 369.98930706237667 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 188.6897935533531, + "y": 369.989324786949 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 183.09878807438088, + "y": 368.1723416461073 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 178.34177765616542, + "y": 364.7173559904222 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 174.88676331188194, + "y": 359.9603664086809 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 173.0697464527401, + "y": 354.369371887704 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 173.06972872816775, + "y": 348.4913718877307 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 174.88671186900942, + "y": 342.90036640875843 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 178.3416975246945, + "y": 338.1433559905431 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 183.0986871064358, + "y": 334.6883416462596 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 188.68968162741277, + "y": 332.87132478711777 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 194.567681627386, + "y": 332.8713070625453 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 200.15868710635823, + "y": 334.688290203387 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 204.9156975245737, + "y": 338.1432758590722 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 208.37071186885717, + "y": 342.9002654408134 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 210.187728727999, + "y": 348.4912599617903 + }, + { + "angle": -0.000011709161341223684, + "anglePrev": -0.000010066880090779932, + "angularSpeed": 0.000001642281250443752, + "angularVelocity": -0.000001642281250443752, + "area": 677.950314, + "axes": { + "#": 1521 + }, + "bounds": { + "#": 1530 + }, + "circleRadius": 14.881129972565159, + "collisionFilter": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "density": 0.001, + "force": { + "#": 1535 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 40, + "inertia": 292.6404130867056, + "inverseInertia": 0.00341716302766328, + "inverseMass": 1.4750343489036277, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.677950314, + "motion": 0, + "parent": null, + "position": { + "#": 1536 + }, + "positionImpulse": { + "#": 1537 + }, + "positionPrev": { + "#": 1538 + }, + "region": { + "#": 1539 + }, + "render": { + "#": 1540 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055834695002028, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1542 + }, + "vertices": { + "#": 1543 + } + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + } + ], + { + "x": -0.9238995841375219, + "y": -0.38263501986947535 + }, + { + "x": -0.70711506076546, + "y": -0.7070985015106875 + }, + { + "x": -0.382656655943139, + "y": -0.9238906232138162 + }, + { + "x": -0.00001170916134095612, + "y": -0.9999999999314477 + }, + { + "x": 0.38263501986947535, + "y": -0.9238995841375219 + }, + { + "x": 0.7070985015106875, + "y": -0.70711506076546 + }, + { + "x": 0.9238906232138162, + "y": -0.382656655943139 + }, + { + "x": 0.9999999999314477, + "y": -0.00001170916134095612 + }, + { + "max": { + "#": 1531 + }, + "min": { + "#": 1532 + } + }, + { + "x": 310.6105410293098, + "y": 328.0850724221686 + }, + { + "x": 281.419948009644, + "y": 295.8391697908817 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 296.01498200033876, + "y": 310.4342037815765 + }, + { + "x": 0.665376746527547, + "y": 0.36254381610954606 + }, + { + "x": 296.0144569620625, + "y": 307.3783691316792 + }, + { + "endCol": 6, + "endRow": 6, + "id": "5,6,6,6", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1541 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0005250382762369554, + "y": 3.0558346498972986 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 310.61001599103355, + "y": 313.3370328861677 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 308.38807881083653, + "y": 318.7020589035564 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 304.2831268772253, + "y": 322.80710696938223 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 298.9181528953496, + "y": 325.02916978888067 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 293.11215289574756, + "y": 325.0292377722713 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 287.74712687835887, + "y": 322.8073005920743 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 283.64207881253304, + "y": 318.702348658463 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 281.4200159930346, + "y": 313.33737467658733 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 281.419948009644, + "y": 307.5313746769853 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 283.641885189841, + "y": 302.1663486595966 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 287.7468371234522, + "y": 298.0613005937708 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 293.11181110532794, + "y": 295.83923777427236 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 298.91781110492997, + "y": 295.8391697908817 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 304.28283712231865, + "y": 298.06110697107874 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 308.3878851881445, + "y": 302.16605890469003 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 310.6099480076429, + "y": 307.5310328865657 + }, + { + "angle": -0.00001838791211655256, + "anglePrev": -0.000018287550748569996, + "angularSpeed": 1.0036136798256422e-7, + "angularVelocity": -1.0036136798256422e-7, + "area": 460.97596999999996, + "axes": { + "#": 1561 + }, + "bounds": { + "#": 1569 + }, + "circleRadius": 12.320001714677641, + "collisionFilter": { + "#": 1572 + }, + "constraintImpulse": { + "#": 1573 + }, + "density": 0.001, + "force": { + "#": 1574 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 41, + "inertia": 135.31220425278414, + "inverseInertia": 0.007390316383671093, + "inverseMass": 2.1693104740362066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.46097596999999996, + "motion": 0, + "parent": null, + "position": { + "#": 1575 + }, + "positionImpulse": { + "#": 1576 + }, + "positionPrev": { + "#": 1577 + }, + "region": { + "#": 1578 + }, + "render": { + "#": 1579 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055694472039552, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1581 + }, + "vertices": { + "#": 1582 + } + }, + [ + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + } + ], + { + "x": -0.9009753214896412, + "y": -0.4338703378506507 + }, + { + "x": -0.6235299926968302, + "y": -0.7817994296541098 + }, + { + "x": -0.22254555787609467, + "y": -0.9749222916056532 + }, + { + "x": 0.22250970415477364, + "y": -0.9749304752426993 + }, + { + "x": 0.6235012409567763, + "y": -0.7818223599548434 + }, + { + "x": 0.9009593649410929, + "y": -0.4339034716673083 + }, + { + "x": 0.9999999998309426, + "y": -0.000018387912115516354 + }, + { + "max": { + "#": 1570 + }, + "min": { + "#": 1571 + } + }, + { + "x": 335.47938730405554, + "y": 327.67817255909654 + }, + { + "x": 311.45694011780785, + "y": 299.98247811085554 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 323.4679905170444, + "y": 312.30247810877273 + }, + { + "x": 0.9534760571490516, + "y": 0.44039259712069523 + }, + { + "x": 323.4676441292699, + "y": 309.2467836563661 + }, + { + "endCol": 6, + "endRow": 6, + "id": "6,6,6,6", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1580 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00034638777452755676, + "y": 3.0556944524066187 + }, + [ + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 335.479040916281, + "y": 315.0432572510969 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 333.10013175296905, + "y": 319.98330099510474 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 328.8131946219654, + "y": 323.402379823506 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 323.4682170561217, + "y": 324.6224781066899 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 318.12319462377246, + "y": 323.4025763902866 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 313.8361317562257, + "y": 319.9836552198436 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 311.457040920342, + "y": 315.0436989655218 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 311.45694011780785, + "y": 309.56169896644843 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 313.8358492811198, + "y": 304.6216552224407 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 318.12278641212345, + "y": 301.2025763940395 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 323.46776397796714, + "y": 299.98247811085554 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 328.8127864103164, + "y": 301.20237982725894 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 333.09984927786314, + "y": 304.62130099770184 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 335.47894011374683, + "y": 309.5612572520236 + }, + { + "angle": -6.95056338668869e-8, + "anglePrev": -4.7327983874088586e-8, + "angularSpeed": 2.2177649992798317e-8, + "angularVelocity": -2.2177649992798317e-8, + "area": 1205.152204, + "axes": { + "#": 1598 + }, + "bounds": { + "#": 1609 + }, + "circleRadius": 19.748585390946502, + "collisionFilter": { + "#": 1612 + }, + "constraintImpulse": { + "#": 1613 + }, + "density": 0.001, + "force": { + "#": 1614 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 42, + "inertia": 924.671990568659, + "inverseInertia": 0.0010814645735997858, + "inverseMass": 0.8297707100239432, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.205152204, + "motion": 0, + "parent": null, + "position": { + "#": 1615 + }, + "positionImpulse": { + "#": 1616 + }, + "positionPrev": { + "#": 1617 + }, + "region": { + "#": 1618 + }, + "render": { + "#": 1619 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0556179560673145, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1621 + }, + "vertices": { + "#": 1622 + } + }, + [ + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + } + ], + { + "x": -0.9510828381815524, + "y": -0.30893597219573316 + }, + { + "x": -0.8089600412626629, + "y": -0.5878636335412416 + }, + { + "x": -0.5878637459957967, + "y": -0.8089599595429859 + }, + { + "x": -0.3089361044069613, + "y": -0.9510827952359623 + }, + { + "x": -6.950563386688682e-8, + "y": -0.9999999999999977 + }, + { + "x": 0.30893597219573316, + "y": -0.9510828381815524 + }, + { + "x": 0.5878636335412416, + "y": -0.8089600412626629 + }, + { + "x": 0.8089599595429859, + "y": -0.5878637459957967 + }, + { + "x": 0.9510827952359623, + "y": -0.3089361044069613 + }, + { + "x": 0.9999999999999977, + "y": -6.950563386688682e-8 + }, + { + "max": { + "#": 1610 + }, + "min": { + "#": 1611 + } + }, + { + "x": 478.2013948778333, + "y": 385.06386542590496 + }, + { + "x": 439.1912716378618, + "y": 342.9982470428999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 458.6962718525647, + "y": 362.50324725760277 + }, + { + "x": 0.8165144496833201, + "y": 1.5986222615809689 + }, + { + "x": 458.6961490419989, + "y": 359.44762930400344 + }, + { + "endCol": 9, + "endRow": 7, + "id": "9,9,7,7", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1620 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00012281056575602634, + "y": 3.05561795359933 + }, + [ + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 478.20127206726755, + "y": 365.5922459018954 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 476.2922724757522, + "y": 371.46924603458166 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 472.66027282314127, + "y": 376.4672462870261 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 467.6622730755857, + "y": 380.09924663441524 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 461.7852732082721, + "y": 382.0082470428998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 455.60727320827203, + "y": 382.00824747230564 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 449.7302730755858, + "y": 380.0992478807903 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 444.73227282314133, + "y": 376.46724822817936 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 441.1002724757522, + "y": 371.4692484806238 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 439.1912720672676, + "y": 365.5922486133102 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 439.1912716378618, + "y": 359.4142486133101 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 441.10027122937714, + "y": 353.5372484806239 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 444.7322708819881, + "y": 348.5392482281794 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 449.73027062954367, + "y": 344.9072478807903 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 455.60727049685727, + "y": 342.9982474723057 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 461.7852704968573, + "y": 342.9982470428999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 467.66227062954357, + "y": 344.90724663441523 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 472.660270881988, + "y": 348.5392462870262 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 476.29227122937715, + "y": 353.53724603458176 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 478.20127163786174, + "y": 359.41424590189536 + }, + { + "angle": 0.000008654673330572173, + "anglePrev": 0.0000064641686209247465, + "angularSpeed": 0.0000021905047096474267, + "angularVelocity": 0.0000021905047096474267, + "area": 362.584524, + "axes": { + "#": 1644 + }, + "bounds": { + "#": 1651 + }, + "circleRadius": 10.994041495198903, + "collisionFilter": { + "#": 1654 + }, + "constraintImpulse": { + "#": 1655 + }, + "density": 0.001, + "force": { + "#": 1656 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 43, + "inertia": 83.73095584960791, + "inverseInertia": 0.011943014263400204, + "inverseMass": 2.7579776129661835, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.362584524, + "motion": 0, + "parent": null, + "position": { + "#": 1657 + }, + "positionImpulse": { + "#": 1658 + }, + "positionPrev": { + "#": 1659 + }, + "region": { + "#": 1660 + }, + "render": { + "#": 1661 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055594786678106, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1663 + }, + "vertices": { + "#": 1664 + } + }, + [ + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + } + ], + { + "x": -0.8660788566096171, + "y": -0.49990740556004787 + }, + { + "x": -0.49989241422599406, + "y": -0.8660875095504534 + }, + { + "x": 0.000008654673330464127, + "y": -0.9999999999625482 + }, + { + "x": 0.49990740556004787, + "y": -0.8660788566096171 + }, + { + "x": 0.8660875095504534, + "y": -0.49989241422599406 + }, + { + "x": 0.9999999999625482, + "y": 0.000008654673330464127 + }, + { + "max": { + "#": 1652 + }, + "min": { + "#": 1653 + } + }, + { + "x": 441.735298296746, + "y": 359.87855648045235 + }, + { + "x": 420.4969629401939, + "y": 335.5849124628737 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 431.11598756234173, + "y": 346.20393708502155 + }, + { + "x": 0.9114168898344581, + "y": 1.1725512264952733 + }, + { + "x": 431.1157014500853, + "y": 343.1483423117386 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1662 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00028611225644681326, + "y": 3.0555947732829685 + }, + [ + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 441.73496293939843, + "y": 349.0490289888911 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 438.8899202806201, + "y": 353.978004366161 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 433.9608956582591, + "y": 356.8229617071694 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 428.27089565847217, + "y": 356.82291246207825 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 423.3419202812023, + "y": 353.97786980329994 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 420.4969629401939, + "y": 349.04884518093894 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 420.49701218528503, + "y": 343.358845181152 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 423.34205484406334, + "y": 338.4298698038821 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 428.27107946642434, + "y": 335.5849124628737 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 433.9610794662113, + "y": 335.58496170796485 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 438.89005484348115, + "y": 338.43000436674316 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 441.73501218448956, + "y": 343.35902898910416 + }, + { + "angle": -0.000010665749810565671, + "anglePrev": -0.000008477775081319437, + "angularSpeed": 0.0000021879747292462344, + "angularVelocity": -0.0000021879747292462344, + "area": 805.817864, + "axes": { + "#": 1678 + }, + "bounds": { + "#": 1688 + }, + "circleRadius": 16.1798268175583, + "collisionFilter": { + "#": 1691 + }, + "constraintImpulse": { + "#": 1692 + }, + "density": 0.001, + "force": { + "#": 1693 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 44, + "inertia": 413.41882770208514, + "inverseInertia": 0.002418854519902545, + "inverseMass": 1.2409752186878795, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.805817864, + "motion": 0, + "parent": null, + "position": { + "#": 1694 + }, + "positionImpulse": { + "#": 1695 + }, + "positionPrev": { + "#": 1696 + }, + "region": { + "#": 1697 + }, + "render": { + "#": 1698 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555859257126663, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1700 + }, + "vertices": { + "#": 1701 + } + }, + [ + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + } + ], + { + "x": -0.9396827029673327, + "y": -0.34204739107908305 + }, + { + "x": -0.7660061491247939, + "y": -0.6428332439311175 + }, + { + "x": -0.5000911322567106, + "y": -0.8659727821578468 + }, + { + "x": -0.17369431882361494, + "y": -0.9847996159668224 + }, + { + "x": 0.17367331153146331, + "y": -0.9848033209030601 + }, + { + "x": 0.5000726596448586, + "y": -0.8659834496546209 + }, + { + "x": 0.7659924363534164, + "y": -0.6428495838447411 + }, + { + "x": 0.9396754063697471, + "y": -0.3420674358424823 + }, + { + "x": 0.9999999999431209, + "y": -0.000010665749810363454 + }, + { + "max": { + "#": 1689 + }, + "min": { + "#": 1690 + } + }, + { + "x": 519.2080921643192, + "y": 382.0951695911181 + }, + { + "x": 487.34002146601625, + "y": 346.67958366726475 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 503.274051435867, + "y": 362.8595836663446 + }, + { + "x": 1.106915396687711, + "y": 2.150553067666182 + }, + { + "x": 503.27404067726553, + "y": 359.80399774065086 + }, + { + "endCol": 10, + "endRow": 7, + "id": "10,10,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1699 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000010758601490579167, + "y": 3.055585925693726 + }, + [ + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 519.2080814057177, + "y": 365.66941371812726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 517.2861377209857, + "y": 370.949434217398 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 513.6741836265786, + "y": 375.25347274184156 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 508.8082135976123, + "y": 378.06352464122034 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 503.2742240076989, + "y": 379.0395836654244 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 497.7402135982419, + "y": 378.06364268973925 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 492.87418362776174, + "y": 375.25369458943766 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 489.26213772258, + "y": 370.9497331143707 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 487.34008140753025, + "y": 365.66975361424227 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 487.34002146601625, + "y": 360.0497536145619 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 489.261965150748, + "y": 354.76973311529116 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 492.87391924515543, + "y": 350.4656945908476 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 497.73988927412177, + "y": 347.6556426914688 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 503.27387886403517, + "y": 346.67958366726475 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 508.80788927349215, + "y": 347.6555246429499 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 513.6739192439721, + "y": 350.4654727432515 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 517.285965149154, + "y": 354.76943421831845 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 519.2080214642039, + "y": 360.0494137184469 + }, + { + "angle": 6.47993681723842e-7, + "anglePrev": 5.761301436012588e-7, + "angularSpeed": 7.186353812258322e-8, + "angularVelocity": 7.186353812258322e-8, + "area": 1175.440884, + "axes": { + "#": 1721 + }, + "bounds": { + "#": 1732 + }, + "circleRadius": 19.50347222222222, + "collisionFilter": { + "#": 1735 + }, + "constraintImpulse": { + "#": 1736 + }, + "density": 0.001, + "force": { + "#": 1737 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 45, + "inertia": 879.6410498592595, + "inverseInertia": 0.00113682734583612, + "inverseMass": 0.8507446130315133, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1754408840000001, + "motion": 0, + "parent": null, + "position": { + "#": 1738 + }, + "positionImpulse": { + "#": 1739 + }, + "positionPrev": { + "#": 1740 + }, + "region": { + "#": 1741 + }, + "render": { + "#": 1742 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555539446914306, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1744 + }, + "vertices": { + "#": 1745 + } + }, + [ + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + } + ], + { + "x": -0.9510808302076453, + "y": -0.3089421538274374 + }, + { + "x": -0.80901197395954, + "y": -0.5877921622394158 + }, + { + "x": -0.5877911137696273, + "y": -0.8090127357300753 + }, + { + "x": -0.3089409212384403, + "y": -0.9510812305919741 + }, + { + "x": 6.479936817237968e-7, + "y": -0.9999999999997903 + }, + { + "x": 0.3089421538274374, + "y": -0.9510808302076453 + }, + { + "x": 0.5877921622394158, + "y": -0.80901197395954 + }, + { + "x": 0.8090127357300753, + "y": -0.5877911137696273 + }, + { + "x": 0.9510812305919741, + "y": -0.3089409212384403 + }, + { + "x": 0.9999999999997903, + "y": 6.479936817237968e-7 + }, + { + "max": { + "#": 1733 + }, + "min": { + "#": 1734 + } + }, + { + "x": 625.1799810836428, + "y": 350.0972114008448 + }, + { + "x": 586.6539766251688, + "y": 308.5156535021041 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 605.9169791066181, + "y": 327.77865547912876 + }, + { + "x": 0.8739911154979645, + "y": 1.0589333121598017 + }, + { + "x": 605.9169796110427, + "y": 324.7231015344374 + }, + { + "endCol": 13, + "endRow": 7, + "id": "12,13,6,7", + "startCol": 12, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1743 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -5.044246336183278e-7, + "y": 3.055553944691389 + }, + [ + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 625.1799771295853, + "y": 330.82966796143035 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 623.2949733692784, + "y": 336.63266673996105 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 619.7079701701344, + "y": 341.5696644156067 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 614.7709678457821, + "y": 345.1566612164612 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 608.9679666243152, + "y": 347.0416574561534 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 602.8659666243165, + "y": 347.041653502096 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 597.0629678457856, + "y": 345.15664974178907 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 592.1259701701401, + "y": 341.56964654264505 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 588.5389733692858, + "y": 336.6326442182926 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 586.6539771295934, + "y": 330.8296429968258 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 586.6539810836509, + "y": 324.72764299682717 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 588.5389848439579, + "y": 318.92464421829646 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 592.1259880431019, + "y": 313.9876465426508 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 597.0629903674541, + "y": 310.4006497417963 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 602.8659915889211, + "y": 308.5156535021041 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 608.9679915889199, + "y": 308.51565745616153 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 614.7709903674506, + "y": 310.40066121646845 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 619.7079880430962, + "y": 313.98766441561247 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 623.2949848439505, + "y": 318.9246667399649 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 625.1799810836428, + "y": 324.72766796143173 + }, + { + "angle": 0.0000016214648183626327, + "anglePrev": 0.000001308376002804531, + "angularSpeed": 3.1308881555810175e-7, + "angularVelocity": 3.1308881555810175e-7, + "area": 568.46124, + "axes": { + "#": 1767 + }, + "bounds": { + "#": 1775 + }, + "circleRadius": 13.68102709190672, + "collisionFilter": { + "#": 1778 + }, + "constraintImpulse": { + "#": 1779 + }, + "density": 0.001, + "force": { + "#": 1780 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 46, + "inertia": 205.77002535077511, + "inverseInertia": 0.004859794317929956, + "inverseMass": 1.7591348884226479, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.56846124, + "motion": 0, + "parent": null, + "position": { + "#": 1781 + }, + "positionImpulse": { + "#": 1782 + }, + "positionPrev": { + "#": 1783 + }, + "region": { + "#": 1784 + }, + "render": { + "#": 1785 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055561462812788, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1787 + }, + "vertices": { + "#": 1788 + } + }, + [ + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + } + ], + { + "x": -0.9009629229291871, + "y": -0.43389608376533745 + }, + { + "x": -0.6234912116902961, + "y": -0.7818303581627963 + }, + { + "x": -0.2225422595543818, + "y": -0.9749230445078374 + }, + { + "x": 0.22254542116004625, + "y": -0.974922322813822 + }, + { + "x": 0.6234937471078571, + "y": -0.7818283362205566 + }, + { + "x": 0.9009643300189186, + "y": -0.4338931620036915 + }, + { + "x": 0.9999999999986856, + "y": 0.0000016214648183619225 + }, + { + "max": { + "#": 1776 + }, + "min": { + "#": 1777 + } + }, + { + "x": 618.9735240552465, + "y": 292.892297909175 + }, + { + "x": 592.2975141838041, + "y": 265.53029790921096 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 605.6355191195253, + "y": 279.211297909193 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 605.6355215748636, + "y": 276.1557364463812 + }, + { + "endCol": 12, + "endRow": 6, + "id": "12,12,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1786 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0000024553382900194265, + "y": 3.0555614628118013 + }, + [ + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 618.9735141837688, + "y": 282.25531953628666 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.3315052884163, + "y": 287.7413152523694 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 611.5714991333422, + "y": 291.537307534192 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 605.6354969362652, + "y": 292.892297909175 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 599.6994991333576, + "y": 291.53728828416166 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 594.9395052884444, + "y": 287.7412805659941 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 592.2975141838041, + "y": 282.2552762820913 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 592.2975240552818, + "y": 276.16727628209924 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 594.9395329506342, + "y": 270.6812805660165 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 599.6995391057084, + "y": 266.8852882841941 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 605.6355413027853, + "y": 265.53029790921096 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 611.571539105693, + "y": 266.88530753422435 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 616.3315329506062, + "y": 270.6813152523918 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 618.9735240552465, + "y": 276.1673195362946 + }, + { + "angle": 0.0000028140923899390285, + "anglePrev": 0.0000022558346200717173, + "angularSpeed": 5.582577698673114e-7, + "angularVelocity": 5.582577698673114e-7, + "area": 366.82313200000004, + "axes": { + "#": 1804 + }, + "bounds": { + "#": 1811 + }, + "circleRadius": 11.058170438957475, + "collisionFilter": { + "#": 1814 + }, + "constraintImpulse": { + "#": 1815 + }, + "density": 0.001, + "force": { + "#": 1816 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 47, + "inertia": 85.70002548110048, + "inverseInertia": 0.011668607965822963, + "inverseMass": 2.726109431942803, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.36682313200000005, + "motion": 0, + "parent": null, + "position": { + "#": 1817 + }, + "positionImpulse": { + "#": 1818 + }, + "positionPrev": { + "#": 1819 + }, + "region": { + "#": 1820 + }, + "render": { + "#": 1821 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555448664357368, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1823 + }, + "vertices": { + "#": 1824 + } + }, + [ + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + } + ], + { + "x": -0.866018344407171, + "y": -0.5000122270007624 + }, + { + "x": -0.500007352881578, + "y": -0.8660211585546606 + }, + { + "x": 0.000002814092389935314, + "y": -0.9999999999960402 + }, + { + "x": 0.5000122270007624, + "y": -0.866018344407171 + }, + { + "x": 0.8660211585546606, + "y": -0.500007352881578 + }, + { + "x": 0.9999999999960402, + "y": 0.000002814092389935314 + }, + { + "max": { + "#": 1812 + }, + "min": { + "#": 1813 + } + }, + { + "x": 641.5149945727002, + "y": 302.5430526890782 + }, + { + "x": 620.1529730435441, + "y": 278.1254917148671 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 630.8339810974343, + "y": 288.8064997687572 + }, + { + "x": 0.1737065198422766, + "y": 0.08365524271625793 + }, + { + "x": 630.8339756760586, + "y": 285.75095490232627 + }, + { + "endCol": 13, + "endRow": 6, + "id": "12,13,5,6", + "startCol": 12, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1822 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0000054213757039178745, + "y": 3.0555448664309273 + }, + [ + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 641.5149730434596, + "y": 291.66852982606673 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 638.6529590940149, + "y": 296.6255217721146 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 633.695951040102, + "y": 299.4875078226473 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 627.9719510401248, + "y": 299.4874917147825 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 623.0149590940769, + "y": 296.62547776533785 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 620.1529730435441, + "y": 291.6684697114251 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 620.152989151409, + "y": 285.94446971144765 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 623.0150031008536, + "y": 280.9874777653998 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 627.9720111547665, + "y": 278.1254917148671 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 633.6960111547437, + "y": 278.1255078227319 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 638.6530031007917, + "y": 280.98752177217654 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 641.5149891513245, + "y": 285.9445298260893 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 389.07123600000006, + "axes": { + "#": 1838 + }, + "bounds": { + "#": 1845 + }, + "circleRadius": 11.387988683127572, + "collisionFilter": { + "#": 1848 + }, + "constraintImpulse": { + "#": 1849 + }, + "density": 0.001, + "force": { + "#": 1850 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 48, + "inertia": 96.41081889936525, + "inverseInertia": 0.010372279910243391, + "inverseMass": 2.5702234127634145, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.38907123600000004, + "motion": 0, + "parent": null, + "position": { + "#": 1851 + }, + "positionImpulse": { + "#": 1852 + }, + "positionPrev": { + "#": 1853 + }, + "region": { + "#": 1854 + }, + "render": { + "#": 1855 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1857 + }, + "vertices": { + "#": 1858 + } + }, + [ + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + } + ], + { + "x": -0.8660952066747344, + "y": -0.4998790783530045 + }, + { + "x": -0.4998790783530045, + "y": -0.8660952066747344 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4998790783530045, + "y": -0.8660952066747344 + }, + { + "x": 0.8660952066747344, + "y": -0.4998790783530045 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1846 + }, + "min": { + "#": 1847 + } + }, + { + "x": 680.2420000000003, + "y": 298.5493333333329 + }, + { + "x": 658.2420000000003, + "y": 276.5493333333329 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 669.2420000000003, + "y": 287.5493333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 669.2420000000003, + "y": 284.49377777777744 + }, + { + "endCol": 14, + "endRow": 6, + "id": "13,14,5,6", + "startCol": 13, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1856 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 680.2420000000003, + "y": 290.4963333333329 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 677.2950000000003, + "y": 295.6023333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 672.1890000000003, + "y": 298.5493333333329 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 666.2950000000003, + "y": 298.5493333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 661.1890000000003, + "y": 295.6023333333329 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 658.2420000000003, + "y": 290.4963333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 658.2420000000003, + "y": 284.6023333333329 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 661.1890000000003, + "y": 279.4963333333329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 666.2950000000003, + "y": 276.5493333333329 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 672.1890000000003, + "y": 276.5493333333329 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 677.2950000000003, + "y": 279.4963333333329 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 680.2420000000003, + "y": 284.6023333333329 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 815.3892460000001, + "axes": { + "#": 1872 + }, + "bounds": { + "#": 1882 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1885 + }, + "constraintImpulse": { + "#": 1886 + }, + "density": 0.001, + "force": { + "#": 1887 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 49, + "inertia": 423.2982063032686, + "inverseInertia": 0.0023624007498948816, + "inverseMass": 1.2264081294984357, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8153892460000001, + "motion": 0, + "parent": null, + "position": { + "#": 1888 + }, + "positionImpulse": { + "#": 1889 + }, + "positionPrev": { + "#": 1890 + }, + "region": { + "#": 1891 + }, + "render": { + "#": 1892 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1894 + }, + "vertices": { + "#": 1895 + } + }, + [ + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + } + ], + { + "x": -0.9397159229781226, + "y": -0.3419561142915492 + }, + { + "x": -0.7660706997750172, + "y": -0.6427563169243967 + }, + { + "x": -0.4999828073287557, + "y": -0.8660353297502684 + }, + { + "x": -0.17354312409985562, + "y": -0.9848262710131479 + }, + { + "x": 0.17354312409985562, + "y": -0.9848262710131479 + }, + { + "x": 0.4999828073287557, + "y": -0.8660353297502684 + }, + { + "x": 0.7660706997750172, + "y": -0.6427563169243967 + }, + { + "x": 0.9397159229781226, + "y": -0.3419561142915492 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1883 + }, + "min": { + "#": 1884 + } + }, + { + "x": 732.2980000000003, + "y": 309.0993333333329 + }, + { + "x": 700.2420000000003, + "y": 276.5493333333329 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.2700000000003, + "y": 292.8243333333329 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.2700000000003, + "y": 289.7687777777774 + }, + { + "endCol": 15, + "endRow": 6, + "id": "14,15,5,6", + "startCol": 14, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1893 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 732.2980000000003, + "y": 295.6503333333329 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 730.3650000000004, + "y": 300.9623333333329 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 726.7320000000003, + "y": 305.2923333333329 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 721.8370000000003, + "y": 308.1183333333329 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 716.2700000000003, + "y": 309.0993333333329 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 710.7030000000003, + "y": 308.1183333333329 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 705.8080000000003, + "y": 305.2923333333329 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 702.1750000000003, + "y": 300.9623333333329 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 700.2420000000003, + "y": 295.6503333333329 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 700.2420000000003, + "y": 289.9983333333329 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 702.1750000000003, + "y": 284.68633333333287 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 705.8080000000003, + "y": 280.35633333333294 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 710.7030000000003, + "y": 277.5303333333329 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 716.2700000000003, + "y": 276.5493333333329 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 721.8370000000003, + "y": 277.5303333333329 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 726.7320000000003, + "y": 280.35633333333294 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 730.3650000000004, + "y": 284.68633333333287 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 732.2980000000003, + "y": 289.9983333333329 + }, + [], + [], + { + "bodies": { + "#": 1917 + }, + "composites": { + "#": 2513 + }, + "constraints": { + "#": 2514 + }, + "id": 50, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 1918 + }, + { + "#": 1940 + }, + { + "#": 1962 + }, + { + "#": 1984 + }, + { + "#": 2006 + }, + { + "#": 2036 + }, + { + "#": 2066 + }, + { + "#": 2088 + }, + { + "#": 2118 + }, + { + "#": 2143 + }, + { + "#": 2173 + }, + { + "#": 2195 + }, + { + "#": 2217 + }, + { + "#": 2239 + }, + { + "#": 2267 + }, + { + "#": 2289 + }, + { + "#": 2315 + }, + { + "#": 2337 + }, + { + "#": 2359 + }, + { + "#": 2385 + }, + { + "#": 2407 + }, + { + "#": 2429 + }, + { + "#": 2457 + }, + { + "#": 2483 + } + ], + { + "angle": -8.995484633795943e-10, + "anglePrev": -6.001361111522694e-10, + "angularSpeed": 2.994123522273249e-10, + "angularVelocity": -2.994123522273249e-10, + "area": 1021.4491370845084, + "axes": { + "#": 1919 + }, + "bounds": { + "#": 1922 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1925 + }, + "constraintImpulse": { + "#": 1926 + }, + "density": 0.001, + "force": { + "#": 1927 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 51, + "inertia": 893.3311389211119, + "inverseInertia": 0.0011194057348182373, + "inverseMass": 0.9790012676052279, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0214491370845085, + "motion": 0, + "parent": null, + "position": { + "#": 1928 + }, + "positionImpulse": { + "#": 1929 + }, + "positionPrev": { + "#": 1930 + }, + "region": { + "#": 1931 + }, + "render": { + "#": 1932 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555444908924, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1934 + }, + "vertices": { + "#": 1935 + } + }, + [ + { + "#": 1920 + }, + { + "#": 1921 + } + ], + { + "x": 8.995484633795943e-10, + "y": 1 + }, + { + "x": -1, + "y": 8.995484633795943e-10 + }, + { + "max": { + "#": 1923 + }, + "min": { + "#": 1924 + } + }, + { + "x": 87.98390439928724, + "y": 93.49511314520731 + }, + { + "x": 41.77750005839725, + "y": 68.33333327931616 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 64.88070222885062, + "y": 79.38644544001629 + }, + { + "x": -0.46880733476961245, + "y": 9.203631607329127e-14 + }, + { + "x": 64.88070222886734, + "y": 76.3308898955254 + }, + { + "endCol": 1, + "endRow": 1, + "id": "0,1,1,1", + "startCol": 0, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1933 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -1.6711965145077556e-11, + "y": 3.0555555444908924 + }, + [ + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 41.77750005841396, + "y": 68.33333332088108 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 87.98390437940165, + "y": 68.33333327931616 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 87.98390439928724, + "y": 90.43955755915152 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 41.777500078299596, + "y": 90.43955760071643 + }, + { + "angle": -6.830008135104618e-10, + "anglePrev": -4.5637549123900344e-10, + "angularSpeed": 2.2662532227145832e-10, + "angularVelocity": -2.2662532227145832e-10, + "area": 1125.0402892684995, + "axes": { + "#": 1941 + }, + "bounds": { + "#": 1944 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1947 + }, + "constraintImpulse": { + "#": 1948 + }, + "density": 0.001, + "force": { + "#": 1949 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 52, + "inertia": 845.5561081099531, + "inverseInertia": 0.0011826536292609496, + "inverseMass": 0.8888570565327927, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.1250402892684994, + "motion": 0, + "parent": null, + "position": { + "#": 1950 + }, + "positionImpulse": { + "#": 1951 + }, + "positionPrev": { + "#": 1952 + }, + "region": { + "#": 1953 + }, + "render": { + "#": 1954 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555654810638, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1956 + }, + "vertices": { + "#": 1957 + } + }, + [ + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "x": 6.830008135104618e-10, + "y": 1 + }, + { + "x": -1, + "y": 6.830008135104618e-10 + }, + { + "max": { + "#": 1945 + }, + "min": { + "#": 1946 + } + }, + { + "x": 123.79154453509686, + "y": 102.97106485559803 + }, + { + "x": 91.31134903818825, + "y": 68.33333335193264 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.55144678664256, + "y": 85.65219910376531 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 107.55144678663132, + "y": 82.59664353828425 + }, + { + "endCol": 2, + "endRow": 2, + "id": "1,2,1,2", + "startCol": 1, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1955 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.1240786079724785e-11, + "y": 3.0555555654810638 + }, + [ + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 91.31134903818825, + "y": 68.33333337411663 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 123.79154451143928, + "y": 68.33333335193264 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 123.79154453509686, + "y": 102.97106483341406 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 91.31134906184583, + "y": 102.97106485559803 + }, + { + "angle": -7.0092850543454345e-12, + "anglePrev": -5.296558076321455e-12, + "angularSpeed": 1.7337855807380153e-12, + "angularVelocity": -1.7235847533768434e-12, + "area": 1489.7843794189994, + "axes": { + "#": 1963 + }, + "bounds": { + "#": 1966 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1969 + }, + "constraintImpulse": { + "#": 1970 + }, + "density": 0.001, + "force": { + "#": 1971 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 1972 + }, + "positionImpulse": { + "#": 1973 + }, + "positionPrev": { + "#": 1974 + }, + "region": { + "#": 1975 + }, + "render": { + "#": 1976 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055555555618546, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1978 + }, + "vertices": { + "#": 1979 + } + }, + [ + { + "#": 1964 + }, + { + "#": 1965 + } + ], + { + "x": 7.0092850543454345e-12, + "y": 1 + }, + { + "x": -1, + "y": 7.0092850543454345e-12 + }, + { + "max": { + "#": 1967 + }, + "min": { + "#": 1968 + } + }, + { + "x": 160.58501368879706, + "y": 113.45781893051358 + }, + { + "x": 125.17207644568332, + "y": 68.33333333349462 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.87854506725046, + "y": 89.36779835419479 + }, + { + "x": -0.00322581586172941, + "y": 6.6881468808610545e-15 + }, + { + "x": 142.87854506727177, + "y": 86.31224279857604 + }, + { + "endCol": 3, + "endRow": 2, + "id": "2,3,1,2", + "startCol": 2, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1977 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -2.0747847884194925e-11, + "y": 3.0555555556188096 + }, + [ + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 125.17207644570381, + "y": 68.33333333374283 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 160.58501368850222, + "y": 68.33333333349462 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 160.58501368879706, + "y": 110.40226337464681 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 125.17207644599868, + "y": 110.40226337489504 + }, + { + "angle": -2.073319484911775e-12, + "anglePrev": -1.3613935253328287e-12, + "angularSpeed": 7.152233355957731e-13, + "angularVelocity": -7.023568285716902e-13, + "area": 1765.3675322216507, + "axes": { + "#": 1985 + }, + "bounds": { + "#": 1988 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 1991 + }, + "constraintImpulse": { + "#": 1992 + }, + "density": 0.001, + "force": { + "#": 1993 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 54, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 1994 + }, + "positionImpulse": { + "#": 1995 + }, + "positionPrev": { + "#": 1996 + }, + "region": { + "#": 1997 + }, + "render": { + "#": 1998 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555734264, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2000 + }, + "vertices": { + "#": 2001 + } + }, + [ + { + "#": 1986 + }, + { + "#": 1987 + } + ], + { + "x": 2.073319484911775e-12, + "y": 1 + }, + { + "x": -1, + "y": 2.073319484911775e-12 + }, + { + "max": { + "#": 1989 + }, + "min": { + "#": 1990 + } + }, + { + "x": 202.2880826672287, + "y": 113.65907921821406 + }, + { + "x": 160.52419377825075, + "y": 68.333333333336 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 181.40613822273903, + "y": 89.4684284979883 + }, + { + "x": -0.0093237903487898, + "y": 2.8224053361347046e-13 + }, + { + "x": 181.4061382227394, + "y": 86.41287294241484 + }, + { + "endCol": 4, + "endRow": 2, + "id": "3,4,1,2", + "startCol": 3, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1999 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -8.526512829121202e-13, + "y": 3.055555555573406 + }, + [ + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 160.52419377825075, + "y": 68.33333333342259 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 202.2880826671396, + "y": 68.333333333336 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 202.28808266722731, + "y": 110.60352366255407 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 160.52419377833846, + "y": 110.60352366264064 + }, + { + "angle": -3.60341225571813e-13, + "anglePrev": -3.2962268609777225e-13, + "angularSpeed": 6.077076801978601e-14, + "angularVelocity": -3.1963442499276424e-14, + "area": 2021.6781920000003, + "axes": { + "#": 2007 + }, + "bounds": { + "#": 2015 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2018 + }, + "constraintImpulse": { + "#": 2019 + }, + "density": 0.001, + "force": { + "#": 2020 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 55, + "inertia": 2612.347668906405, + "inverseInertia": 0.00038279743998187855, + "inverseMass": 0.4946385651074975, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.0216781920000004, + "motion": 0, + "parent": null, + "position": { + "#": 2021 + }, + "positionImpulse": { + "#": 2022 + }, + "positionPrev": { + "#": 2023 + }, + "region": { + "#": 2024 + }, + "render": { + "#": 2025 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555577234, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2027 + }, + "vertices": { + "#": 2028 + } + }, + [ + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + } + ], + { + "x": 0.6235103580925787, + "y": 0.7818150889764564 + }, + { + "x": -0.22254274738458615, + "y": 0.9749229331524211 + }, + { + "x": -0.9009679103566273, + "y": 0.43388572747627047 + }, + { + "x": -0.9009679103569399, + "y": -0.4338857274756212 + }, + { + "x": -0.22254274738528876, + "y": -0.9749229331522608 + }, + { + "x": 0.6235103580920152, + "y": -0.7818150889769058 + }, + { + "x": 1, + "y": -3.60341225571813e-13 + }, + { + "max": { + "#": 2016 + }, + "min": { + "#": 2017 + } + }, + { + "x": 253.87977367687023, + "y": 123.20917697483932 + }, + { + "x": 202.20977367686166, + "y": 67.15362141928166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 229.3906327472806, + "y": 93.6536214192838 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 229.39063274727744, + "y": 90.59806586372613 + }, + { + "endCol": 5, + "endRow": 2, + "id": "4,5,1,2", + "startCol": 4, + "startRow": 1 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2026 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 3.467448550509289e-12, + "y": 3.055555555557717 + }, + [ + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 253.8797736768659, + "y": 105.44662141927498 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 235.43877367687122, + "y": 120.1536214192816 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 212.4437736768693, + "y": 114.90462141928991 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 202.20977367686166, + "y": 93.65362141929359 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 212.44377367685402, + "y": 72.40262141928993 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 235.43877367685212, + "y": 67.15362141928166 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 253.87977367685744, + "y": 81.86062141927496 + }, + { + "angle": -2.054959374089116e-14, + "anglePrev": -9.367731788508316e-15, + "angularSpeed": 1.0312272361693421e-14, + "angularVelocity": -1.0981012914306925e-14, + "area": 6374.479509999999, + "axes": { + "#": 2037 + }, + "bounds": { + "#": 2045 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2048 + }, + "constraintImpulse": { + "#": 2049 + }, + "density": 0.001, + "force": { + "#": 2050 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 56, + "inertia": 25971.46101758985, + "inverseInertia": 0.00003850380228215594, + "inverseMass": 0.15687555327948652, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.37447951, + "motion": 0, + "parent": null, + "position": { + "#": 2051 + }, + "positionImpulse": { + "#": 2052 + }, + "positionPrev": { + "#": 2053 + }, + "region": { + "#": 2054 + }, + "render": { + "#": 2055 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555563165, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2057 + }, + "vertices": { + "#": 2058 + } + }, + [ + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + } + ], + { + "x": 0.6235005124395689, + "y": 0.7818229409448121 + }, + { + "x": -0.2225239796860834, + "y": 0.9749272170088739 + }, + { + "x": -0.9009709048657092, + "y": 0.4338795092943031 + }, + { + "x": -0.900970904865727, + "y": -0.4338795092942661 + }, + { + "x": -0.22252397968612347, + "y": -0.9749272170088645 + }, + { + "x": 0.6235005124395367, + "y": -0.7818229409448376 + }, + { + "x": 1, + "y": -2.054959374089116e-14 + }, + { + "max": { + "#": 2046 + }, + "min": { + "#": 2047 + } + }, + { + "x": 345.54984746484695, + "y": 153.0728068441373 + }, + { + "x": 253.79984746484274, + "y": 55.90725128858103 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.064640089955, + "y": 102.96225128858117 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 302.06464008995135, + "y": 99.90669573302493 + }, + { + "endCol": 7, + "endRow": 3, + "id": "5,7,1,3", + "startCol": 5, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2056 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 3.524291969370097e-12, + "y": 3.055555555556225 + }, + [ + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 345.54984746484325, + "y": 123.90325128858028 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 312.80484746484376, + "y": 150.01725128858098 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 271.9718474648436, + "y": 140.69725128858184 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 253.79984746484274, + "y": 102.96225128858217 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 271.971847464842, + "y": 65.22725128858185 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 312.8048474648418, + "y": 55.90725128858103 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 345.54984746484234, + "y": 82.02125128858027 + }, + { + "angle": -1.0627437970640595e-29, + "anglePrev": 1.0898985913662426e-14, + "angularSpeed": 7.503903191516715e-31, + "angularVelocity": -1.445238963457496e-14, + "area": 2220.023313496789, + "axes": { + "#": 2067 + }, + "bounds": { + "#": 2070 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2073 + }, + "constraintImpulse": { + "#": 2074 + }, + "density": 0.001, + "force": { + "#": 2075 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 57, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 2076 + }, + "positionImpulse": { + "#": 2077 + }, + "positionPrev": { + "#": 2078 + }, + "region": { + "#": 2079 + }, + "render": { + "#": 2080 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2082 + }, + "vertices": { + "#": 2083 + } + }, + [ + { + "#": 2068 + }, + { + "#": 2069 + } + ], + { + "x": 1.0627437970640595e-29, + "y": 1 + }, + { + "x": -1, + "y": 1.0627437970640595e-29 + }, + { + "max": { + "#": 2071 + }, + "min": { + "#": 2072 + } + }, + { + "x": 390.632867013767, + "y": 120.55735596707767 + }, + { + "x": 345.4815038450427, + "y": 68.33333333333296 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.05718542940485, + "y": 92.91756687242754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 368.0571854294018, + "y": 89.86201131687203 + }, + { + "endCol": 8, + "endRow": 2, + "id": "7,8,1,2", + "startCol": 7, + "startRow": 1 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 2081 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 3.751665644813329e-12, + "y": 3.055555555555543 + }, + [ + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 345.4815038450427, + "y": 68.33333333333296 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 390.632867013767, + "y": 68.33333333333296 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 390.632867013767, + "y": 117.50180041152218 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 345.4815038450427, + "y": 117.50180041152218 + }, + { + "angle": 1.0407982281211463e-58, + "anglePrev": 8.860729948835662e-59, + "angularSpeed": 1.5472523323758014e-59, + "angularVelocity": 1.5472523323758014e-59, + "area": 2739.619887, + "axes": { + "#": 2089 + }, + "bounds": { + "#": 2097 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2100 + }, + "constraintImpulse": { + "#": 2101 + }, + "density": 0.001, + "force": { + "#": 2102 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 58, + "inertia": 4797.196881714491, + "inverseInertia": 0.0002084550675440708, + "inverseMass": 0.36501414110226893, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.739619887, + "motion": 0, + "parent": null, + "position": { + "#": 2103 + }, + "positionImpulse": { + "#": 2104 + }, + "positionPrev": { + "#": 2105 + }, + "region": { + "#": 2106 + }, + "render": { + "#": 2107 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555555555554923, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2109 + }, + "vertices": { + "#": 2110 + } + }, + [ + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + } + ], + { + "x": 0.623481759781332, + "y": 0.7818378957430839 + }, + { + "x": -0.22252614147358962, + "y": 0.9749267235853554 + }, + { + "x": -0.9009716145580845, + "y": 0.4338780355821189 + }, + { + "x": -0.9009716145580845, + "y": -0.4338780355821189 + }, + { + "x": -0.22252614147358962, + "y": -0.9749267235853554 + }, + { + "x": 0.623481759781332, + "y": -0.7818378957430839 + }, + { + "x": 1, + "y": 1.0407982281211463e-58 + }, + { + "max": { + "#": 2098 + }, + "min": { + "#": 2099 + } + }, + { + "x": 455.7199006148059, + "y": 127.85338233183447 + }, + { + "x": 395.5709006148059, + "y": 66.15738233183454 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 427.21216369007186, + "y": 97.00538233183447 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 427.21216369007186, + "y": 93.94982677627898 + }, + { + "endCol": 9, + "endRow": 2, + "id": "8,9,1,2", + "startCol": 8, + "startRow": 1 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2108 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 3.0555555555554923 + }, + [ + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 455.7199006148059, + "y": 110.73438233183447 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 434.2529006148059, + "y": 127.85338233183447 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 407.4839006148059, + "y": 121.74338233183447 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 395.5709006148059, + "y": 97.00538233183447 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 407.4839006148059, + "y": 72.26738233183453 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 434.2529006148059, + "y": 66.15738233183454 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 455.7199006148059, + "y": 83.27638233183447 + }, + { + "angle": 3.814547179912883e-7, + "anglePrev": 3.175720790839275e-7, + "angularSpeed": 6.38826389073608e-8, + "angularVelocity": 6.38826389073608e-8, + "area": 1836.0044999999998, + "axes": { + "#": 2119 + }, + "bounds": { + "#": 2123 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2126 + }, + "constraintImpulse": { + "#": 2127 + }, + "density": 0.001, + "force": { + "#": 2128 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 59, + "inertia": 2162.441392869351, + "inverseInertia": 0.00046244027851922336, + "inverseMass": 0.5446609744148231, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.8360044999999998, + "motion": 0, + "parent": null, + "position": { + "#": 2129 + }, + "positionImpulse": { + "#": 2130 + }, + "positionPrev": { + "#": 2131 + }, + "region": { + "#": 2132 + }, + "render": { + "#": 2133 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.05552987577207, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2135 + }, + "vertices": { + "#": 2136 + } + }, + [ + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + } + ], + { + "x": -0.4999782866533463, + "y": -0.8660379396280421 + }, + { + "x": 0.4999789473617169, + "y": -0.8660375581896373 + }, + { + "x": 0.9999999999999275, + "y": 3.814547179912792e-7 + }, + { + "max": { + "#": 2124 + }, + "min": { + "#": 2125 + } + }, + { + "x": 89.97212842068888, + "y": 205.09185627737176 + }, + { + "x": 43.92811828009997, + "y": 151.92585627737563 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 66.95012335039442, + "y": 178.5088562773737 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 66.95013250869798, + "y": 175.45332640161536 + }, + { + "endCol": 1, + "endRow": 4, + "id": "0,1,3,4", + "startCol": 0, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2134 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000009158303555523162, + "y": 3.055529875758345 + }, + [ + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 89.97211828009664, + "y": 191.80086505922327 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 66.95011321018363, + "y": 205.09185627737176 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 43.92811828009997, + "y": 191.80084749552216 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 43.928128420692204, + "y": 165.21684749552412 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 66.95013349060521, + "y": 151.92585627737563 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 89.97212842068888, + "y": 165.21686505922523 + }, + { + "angle": 4.97757446868658e-9, + "anglePrev": -5.653331804104498e-9, + "angularSpeed": 2.524843037207591e-8, + "angularVelocity": 1.0585341208757965e-8, + "area": 5751.50872, + "axes": { + "#": 2144 + }, + "bounds": { + "#": 2152 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2155 + }, + "constraintImpulse": { + "#": 2156 + }, + "density": 0.001, + "force": { + "#": 2157 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 60, + "inertia": 21143.188788922525, + "inverseInertia": 0.00004729655540530038, + "inverseMass": 0.17386742308546824, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.75150872, + "motion": 0, + "parent": null, + "position": { + "#": 2158 + }, + "positionImpulse": { + "#": 2159 + }, + "positionPrev": { + "#": 2160 + }, + "region": { + "#": 2161 + }, + "render": { + "#": 2162 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555538194937073, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2164 + }, + "vertices": { + "#": 2165 + } + }, + [ + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + } + ], + { + "x": 0.623480390232061, + "y": 0.7818389878971741 + }, + { + "x": -0.22250537588814254, + "y": 0.9749314630787523 + }, + { + "x": -0.9009645528556867, + "y": 0.43389269929045 + }, + { + "x": -0.9009645485362202, + "y": -0.4338927082596863 + }, + { + "x": -0.2225053661825546, + "y": -0.9749314652938265 + }, + { + "x": 0.6234803980153845, + "y": -0.7818389816903338 + }, + { + "x": 1, + "y": 4.9775744686865866e-9 + }, + { + "max": { + "#": 2153 + }, + "min": { + "#": 2154 + } + }, + { + "x": 183.32091868902188, + "y": 247.04476792964974 + }, + { + "x": 96.1689153569012, + "y": 154.59721411015775 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 142.0150902657149, + "y": 199.29321405937742 + }, + { + "x": -0.030979645335728202, + "y": -8.665894996207891e-10 + }, + { + "x": 142.01509349882164, + "y": 196.23765704499988 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,3,5", + "startCol": 2, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2163 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000003233106752986714, + "y": 3.0555570103215928 + }, + [ + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 183.32091849099402, + "y": 219.18521426498023 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 152.21691836753024, + "y": 243.98921411015775 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 113.4309184115918, + "y": 235.1372139170976 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 96.16891859000795, + "y": 199.2932138311747 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 113.43091876842415, + "y": 163.44921391709755 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 152.21691881248566, + "y": 154.59721411015775 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 183.32091868902188, + "y": 179.40121426498024 + }, + { + "angle": 0.000013350677442033196, + "anglePrev": 0.000011258217659601407, + "angularSpeed": 7.406133196725195e-7, + "angularVelocity": 0.0000020907460510454556, + "area": 451.6137937679406, + "axes": { + "#": 2174 + }, + "bounds": { + "#": 2177 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2180 + }, + "constraintImpulse": { + "#": 2181 + }, + "density": 0.001, + "force": { + "#": 2182 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 61, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 2183 + }, + "positionImpulse": { + "#": 2184 + }, + "positionPrev": { + "#": 2185 + }, + "region": { + "#": 2186 + }, + "render": { + "#": 2187 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055619201404217, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2189 + }, + "vertices": { + "#": 2190 + } + }, + [ + { + "#": 2175 + }, + { + "#": 2176 + } + ], + { + "x": -0.000013350677441636593, + "y": 0.9999999999108798 + }, + { + "x": -0.9999999999108798, + "y": -0.000013350677441636593 + }, + { + "max": { + "#": 2178 + }, + "min": { + "#": 2179 + } + }, + { + "x": 203.4417754684617, + "y": 195.89128130608503 + }, + { + "x": 183.27091862216378, + "y": 170.4456037220377 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 193.35633042637008, + "y": 181.64063291344965 + }, + { + "x": -0.031002336969675137, + "y": 0.5686092673565918 + }, + { + "x": 193.35629718848455, + "y": 178.58505440055893 + }, + { + "endCol": 4, + "endRow": 4, + "id": "3,4,3,4", + "startCol": 3, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2188 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00003323788553188933, + "y": 3.0555785645449873 + }, + [ + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 183.27121754101597, + "y": 170.4456037220377 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 203.44174223057638, + "y": 170.4458730122067 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 203.44144331172419, + "y": 192.8356621048616 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 183.27091862216378, + "y": 192.8353928146926 + }, + { + "angle": -0.000001495565158234666, + "anglePrev": -7.42813104889815e-7, + "angularSpeed": 7.52752053344851e-7, + "angularVelocity": -7.52752053344851e-7, + "area": 3021.679068443158, + "axes": { + "#": 2196 + }, + "bounds": { + "#": 2199 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2202 + }, + "constraintImpulse": { + "#": 2203 + }, + "density": 0.001, + "force": { + "#": 2204 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 62, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 2205 + }, + "positionImpulse": { + "#": 2206 + }, + "positionPrev": { + "#": 2207 + }, + "region": { + "#": 2208 + }, + "render": { + "#": 2209 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055481295369163, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2211 + }, + "vertices": { + "#": 2212 + } + }, + [ + { + "#": 2197 + }, + { + "#": 2198 + } + ], + { + "x": 0.0000014955651582341082, + "y": 0.9999999999988816 + }, + { + "x": -0.9999999999988816, + "y": 0.0000014955651582341082 + }, + { + "max": { + "#": 2200 + }, + "min": { + "#": 2201 + } + }, + { + "x": 311.820052237073, + "y": 197.25346504241364 + }, + { + "x": 209.9868459939527, + "y": 167.58047323814512 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260.90344911551284, + "y": 182.41696914027938 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 260.90342385187324, + "y": 179.36148784501466 + }, + { + "endCol": 6, + "endRow": 4, + "id": "4,6,3,4", + "startCol": 4, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2210 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000025263639599870658, + "y": 3.055481295264719 + }, + [ + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 209.9868459939527, + "y": 167.58062553627397 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 311.8200078594081, + "y": 167.58047323814512 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 311.820052237073, + "y": 197.25331274428478 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 209.98689037161762, + "y": 197.25346504241364 + }, + { + "angle": -0.000003558432828082798, + "anglePrev": -0.000002460857135521275, + "angularSpeed": 0.0000010975756925615231, + "angularVelocity": -0.0000010975756925615231, + "area": 856.7396388354374, + "axes": { + "#": 2218 + }, + "bounds": { + "#": 2221 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2224 + }, + "constraintImpulse": { + "#": 2225 + }, + "density": 0.001, + "force": { + "#": 2226 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 63, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 2227 + }, + "positionImpulse": { + "#": 2228 + }, + "positionPrev": { + "#": 2229 + }, + "region": { + "#": 2230 + }, + "render": { + "#": 2231 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055565171611211, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2233 + }, + "vertices": { + "#": 2234 + } + }, + [ + { + "#": 2219 + }, + { + "#": 2220 + } + ], + { + "x": 0.0000035584328280752883, + "y": 0.999999999993669 + }, + { + "x": -0.999999999993669, + "y": 0.0000035584328280752883 + }, + { + "max": { + "#": 2222 + }, + "min": { + "#": 2223 + } + }, + { + "x": 353.17652660417906, + "y": 209.94293650369596 + }, + { + "x": 313.1049413031755, + "y": 185.50695610673523 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 333.14073753536735, + "y": 196.1971637194142 + }, + { + "x": 0.2686810379811868, + "y": 0.40408212530873844 + }, + { + "x": 333.1407446987475, + "y": 193.14159854781138 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,3,4", + "startCol": 6, + "startRow": 3 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2232 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.000007163380132624297, + "y": 3.0555651716028143 + }, + [ + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 313.10494846655564, + "y": 185.50709869848362 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 353.1764505239151, + "y": 185.50695610673523 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 353.17652660417906, + "y": 206.88722874034477 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 313.1050245468196, + "y": 206.88737133209315 + }, + { + "angle": -0.0000018632341731670777, + "anglePrev": -0.0000015763213535579655, + "angularSpeed": 3.5848882141489393e-7, + "angularVelocity": -4.19043273795828e-7, + "area": 4088.5999519999996, + "axes": { + "#": 2240 + }, + "bounds": { + "#": 2245 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2248 + }, + "constraintImpulse": { + "#": 2249 + }, + "density": 0.001, + "force": { + "#": 2250 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 64, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 2251 + }, + "positionImpulse": { + "#": 2252 + }, + "positionPrev": { + "#": 2253 + }, + "region": { + "#": 2254 + }, + "render": { + "#": 2255 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555372223825614, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2257 + }, + "vertices": { + "#": 2258 + } + }, + [ + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + } + ], + { + "x": -0.7071080986908389, + "y": -0.7071054636798013 + }, + { + "x": -0.0000018632341731659994, + "y": -0.9999999999982643 + }, + { + "x": 0.7071054636798013, + "y": -0.7071080986908389 + }, + { + "x": 0.9999999999982643, + "y": -0.0000018632341731659994 + }, + { + "max": { + "#": 2246 + }, + "min": { + "#": 2247 + } + }, + { + "x": 423.69769768005915, + "y": 243.7730636872634 + }, + { + "x": 353.44562500454606, + "y": 170.4654722449441 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 388.57165211454225, + "y": 205.59149935494034 + }, + { + "x": 0.3172521742296611, + "y": 0.3535750651030445 + }, + { + "x": 388.5716389820287, + "y": 202.5359621326036 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,3,5", + "startCol": 7, + "startRow": 3 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2256 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00002295887065884017, + "y": 3.055537222318435 + }, + [ + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 423.69767922453843, + "y": 220.1414339069515 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 403.1217175624805, + "y": 240.71747224482215 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 374.021717562531, + "y": 240.71752646493658 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.44567922466047, + "y": 220.1415648028787 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 353.44562500454606, + "y": 191.04156480292917 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 374.021586666604, + "y": 170.46552646505853 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 403.12158666655347, + "y": 170.4654722449441 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 423.697625004424, + "y": 191.041433907002 + }, + { + "angle": -2.636400732362123e-7, + "anglePrev": -2.2564434960018918e-7, + "angularSpeed": 3.7995723596831e-8, + "angularVelocity": -3.7995723620643e-8, + "area": 1965.14242904257, + "axes": { + "#": 2268 + }, + "bounds": { + "#": 2271 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2274 + }, + "constraintImpulse": { + "#": 2275 + }, + "density": 0.001, + "force": { + "#": 2276 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 65, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 2277 + }, + "positionImpulse": { + "#": 2278 + }, + "positionPrev": { + "#": 2279 + }, + "region": { + "#": 2280 + }, + "render": { + "#": 2281 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555573343035647, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2283 + }, + "vertices": { + "#": 2284 + } + }, + [ + { + "#": 2269 + }, + { + "#": 2270 + } + ], + { + "x": 2.6364007323620916e-7, + "y": 0.9999999999999651 + }, + { + "x": -0.9999999999999651, + "y": 2.6364007323620916e-7 + }, + { + "max": { + "#": 2272 + }, + "min": { + "#": 2273 + } + }, + { + "x": 514.9552423315506, + "y": 187.03741806868737 + }, + { + "x": 425.45094828778906, + "y": 162.02599008671393 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 470.2030945290588, + "y": 173.00392541054907 + }, + { + "x": 0.34811592532953173, + "y": 0.14018355538362037 + }, + { + "x": 470.20309296783677, + "y": 169.9483680762459 + }, + { + "endCol": 10, + "endRow": 3, + "id": "8,10,3,3", + "startCol": 8, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2282 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0000015612220067851013, + "y": 3.0555573343031597 + }, + [ + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 425.45094828778906, + "y": 162.02601368363057 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 514.9552349818875, + "y": 162.02599008671393 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 514.9552407703286, + "y": 183.98183713746758 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 425.4509540762301, + "y": 183.9818607343842 + }, + { + "angle": -1.2102300621025807e-7, + "anglePrev": -9.086478782464503e-8, + "angularSpeed": 3.015821838561304e-8, + "angularVelocity": -3.015821838561304e-8, + "area": 2731.7103740000002, + "axes": { + "#": 2290 + }, + "bounds": { + "#": 2296 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2299 + }, + "constraintImpulse": { + "#": 2300 + }, + "density": 0.001, + "force": { + "#": 2301 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 66, + "inertia": 4831.242532460027, + "inverseInertia": 0.00020698608966145373, + "inverseMass": 0.3660710189183474, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.7317103740000004, + "motion": 0, + "parent": null, + "position": { + "#": 2302 + }, + "positionImpulse": { + "#": 2303 + }, + "positionPrev": { + "#": 2304 + }, + "region": { + "#": 2305 + }, + "render": { + "#": 2306 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055553736304581, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2308 + }, + "vertices": { + "#": 2309 + } + }, + [ + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + } + ], + { + "x": 0.3090362497234089, + "y": 0.9510502596376759 + }, + { + "x": -0.8090115706290263, + "y": 0.5877927173658722 + }, + { + "x": -0.8090117129018862, + "y": -0.5877925215478306 + }, + { + "x": 0.3090360195254768, + "y": -0.9510503344386401 + }, + { + "x": 0.9999999999999928, + "y": -1.2102300621025778e-7 + }, + { + "max": { + "#": 2297 + }, + "min": { + "#": 2298 + } + }, + { + "x": 568.9940797507587, + "y": 231.7028329222517 + }, + { + "x": 507.67607730053305, + "y": 164.1732791859476 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.5718559139583, + "y": 196.4102779183792 + }, + { + "x": -0.051173039924577716, + "y": 0.3416585009557303 + }, + { + "x": 541.5718558748736, + "y": 193.35472418207462 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,3,4", + "startCol": 10, + "startRow": 3 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2307 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 3.908473900082754e-8, + "y": 3.0555537363045806 + }, + [ + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 568.994079711674, + "y": 216.33327459965943 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 531.0980812019518, + "y": 228.64727918594713 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 507.67607730053305, + "y": 196.41028202054818 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 531.0980733991141, + "y": 164.1732791859476 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 568.9940748893915, + "y": 176.4872745996597 + }, + { + "angle": 0.00006954359685401811, + "anglePrev": 0.000054687899100483206, + "angularSpeed": 0.000015486681265783946, + "angularVelocity": 0.000015971812256470648, + "area": 942.0065703840771, + "axes": { + "#": 2316 + }, + "bounds": { + "#": 2319 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2322 + }, + "constraintImpulse": { + "#": 2323 + }, + "density": 0.001, + "force": { + "#": 2324 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 67, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 2325 + }, + "positionImpulse": { + "#": 2326 + }, + "positionPrev": { + "#": 2327 + }, + "region": { + "#": 2328 + }, + "render": { + "#": 2329 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.054564247856244, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2331 + }, + "vertices": { + "#": 2332 + } + }, + [ + { + "#": 2317 + }, + { + "#": 2318 + } + ], + { + "x": -0.00006954359679796233, + "y": 0.999999997581844 + }, + { + "x": -0.999999997581844, + "y": -0.00006954359679796233 + }, + { + "max": { + "#": 2320 + }, + "min": { + "#": 2321 + } + }, + { + "x": 69.9581427231613, + "y": 331.0030748413011 + }, + { + "x": 48.89368082635955, + "y": 283.21723677928213 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 59.42520012859029, + "y": 305.5828738521614 + }, + { + "x": 0.7803268002160271, + "y": 0.9731974613880804 + }, + { + "x": 59.4235300709421, + "y": 302.52844766247523 + }, + { + "endCol": 1, + "endRow": 6, + "id": "0,1,5,6", + "startCol": 0, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2330 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0017049740571479788, + "y": 3.0544653181748913 + }, + [ + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 48.89679149820813, + "y": 283.21723677928213 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 69.95671943082105, + "y": 283.2187013624224 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 69.95360875897246, + "y": 327.94851092504064 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 48.89368082635955, + "y": 327.9470463419004 + }, + { + "angle": 0.000034149044266440077, + "anglePrev": 0.000019665684427893415, + "angularSpeed": 0.000012797545426865099, + "angularVelocity": 0.000014634673499192535, + "area": 2898.415585731765, + "axes": { + "#": 2338 + }, + "bounds": { + "#": 2341 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2344 + }, + "constraintImpulse": { + "#": 2345 + }, + "density": 0.001, + "force": { + "#": 2346 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 68, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 2347 + }, + "positionImpulse": { + "#": 2348 + }, + "positionPrev": { + "#": 2349 + }, + "region": { + "#": 2350 + }, + "render": { + "#": 2351 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055182085978689, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2353 + }, + "vertices": { + "#": 2354 + } + }, + [ + { + "#": 2339 + }, + { + "#": 2340 + } + ], + { + "x": -0.00003414904425980288, + "y": 0.9999999994169214 + }, + { + "x": -0.9999999994169214, + "y": -0.00003414904425980288 + }, + { + "max": { + "#": 2342 + }, + "min": { + "#": 2343 + } + }, + { + "x": 182.3890436850798, + "y": 311.527741194356 + }, + { + "x": 70.19055345803999, + "y": 282.6352233663325 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 126.28898834724036, + "y": 295.55389145222375 + }, + { + "x": 1.1397392051324693, + "y": 1.6105919494290508 + }, + { + "x": 126.28714622181124, + "y": 292.4987455695634 + }, + { + "endCol": 3, + "endRow": 6, + "id": "1,3,5,6", + "startCol": 1, + "startRow": 5 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 2352 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0018307773371475378, + "y": 3.0551331656112097 + }, + [ + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 70.19143564753884, + "y": 282.6352233663325 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 182.38742323644064, + "y": 282.63905475208065 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 182.3865410469418, + "y": 308.47255953811504 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 70.19055345803999, + "y": 308.46872815236685 + }, + { + "angle": 0.0000447410044755704, + "anglePrev": 0.00004423432481331581, + "angularSpeed": 0.0000067206514857884835, + "angularVelocity": 8.723204110247941e-7, + "area": 1542.073807, + "axes": { + "#": 2360 + }, + "bounds": { + "#": 2366 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "density": 0.001, + "force": { + "#": 2371 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 69, + "inertia": 1539.5714792627725, + "inverseInertia": 0.0006495313880969349, + "inverseMass": 0.6484773915883003, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.542073807, + "motion": 0, + "parent": null, + "position": { + "#": 2372 + }, + "positionImpulse": { + "#": 2373 + }, + "positionPrev": { + "#": 2374 + }, + "region": { + "#": 2375 + }, + "render": { + "#": 2376 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.05486485595167, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2378 + }, + "vertices": { + "#": 2379 + } + }, + [ + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + } + ], + { + "x": 0.3089914068964664, + "y": 0.9510648297903471 + }, + { + "x": -0.8090526078050106, + "y": 0.5877362314881661 + }, + { + "x": -0.8090000127472999, + "y": -0.5878086247877522 + }, + { + "x": 0.30907650885091353, + "y": -0.951037176810944 + }, + { + "x": 0.9999999989991211, + "y": 0.000044741004460643623 + }, + { + "max": { + "#": 2367 + }, + "min": { + "#": 2368 + } + }, + { + "x": 215.0155808739006, + "y": 291.4985070422757 + }, + { + "x": 168.9438802978139, + "y": 240.00164240875114 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 194.41062834042572, + "y": 264.2229944849424 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 194.40936426986187, + "y": 261.1681387710646 + }, + { + "endCol": 4, + "endRow": 6, + "id": "3,4,5,6", + "startCol": 3, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2377 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0013018340308121878, + "y": 3.0549004737886207 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.01321052360765, + "y": 279.1929162801469 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 186.53979660833238, + "y": 288.4436423602667 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 168.9438802978139, + "y": 264.2218550770534 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 186.54196395207046, + "y": 240.00164240875114 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 215.01454997979917, + "y": 249.25491631011104 + }, + { + "angle": 0.00005047097859638551, + "anglePrev": 0.00003675981731952783, + "angularSpeed": 0.000012552066774710342, + "angularVelocity": 0.000013852457333363971, + "area": 4282.393599999999, + "axes": { + "#": 2386 + }, + "bounds": { + "#": 2389 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2392 + }, + "constraintImpulse": { + "#": 2393 + }, + "density": 0.001, + "force": { + "#": 2394 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 70, + "inertia": 12225.929963547305, + "inverseInertia": 0.00008179336892830146, + "inverseMass": 0.233514266413998, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.2823936, + "motion": 0, + "parent": null, + "position": { + "#": 2395 + }, + "positionImpulse": { + "#": 2396 + }, + "positionPrev": { + "#": 2397 + }, + "region": { + "#": 2398 + }, + "render": { + "#": 2399 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0554252309555547, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2401 + }, + "vertices": { + "#": 2402 + } + }, + [ + { + "#": 2387 + }, + { + "#": 2388 + } + ], + { + "x": 0.000050470978574957886, + "y": -0.99999999872634 + }, + { + "x": 0.99999999872634, + "y": 0.000050470978574957886 + }, + { + "max": { + "#": 2390 + }, + "min": { + "#": 2391 + } + }, + { + "x": 280.8214621161359, + "y": 324.3042824493025 + }, + { + "x": 215.37736897772558, + "y": 255.80555458309067 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 248.09902034647044, + "y": 288.5272059518356 + }, + { + "x": 0.3872093870406734, + "y": 0.5511511137740652 + }, + { + "x": 248.09791422725795, + "y": 285.4717918353762 + }, + { + "endCol": 5, + "endRow": 6, + "id": "4,5,5,6", + "startCol": 4, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 2400 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0010925207302534545, + "y": 3.0553979985840556 + }, + [ + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 280.8173688943773, + "y": 321.24885732058044 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 215.37736897772558, + "y": 321.24555449974247 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 215.38067179856355, + "y": 255.80555458309067 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 280.82067171521527, + "y": 255.80885740392867 + }, + { + "angle": 6.433285279603971e-7, + "anglePrev": 5.718475804092418e-7, + "angularSpeed": 7.148094755115523e-8, + "angularVelocity": 7.148094755115523e-8, + "area": 1051.3111283901928, + "axes": { + "#": 2408 + }, + "bounds": { + "#": 2411 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2414 + }, + "constraintImpulse": { + "#": 2415 + }, + "density": 0.001, + "force": { + "#": 2416 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 71, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 2417 + }, + "positionImpulse": { + "#": 2418 + }, + "positionPrev": { + "#": 2419 + }, + "region": { + "#": 2420 + }, + "render": { + "#": 2421 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555571061785844, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2423 + }, + "vertices": { + "#": 2424 + } + }, + [ + { + "#": 2409 + }, + { + "#": 2410 + } + ], + { + "x": -6.433285279603527e-7, + "y": 0.9999999999997932 + }, + { + "x": -0.9999999999997932, + "y": -6.433285279603527e-7 + }, + { + "max": { + "#": 2412 + }, + "min": { + "#": 2413 + } + }, + { + "x": 320.187779627905, + "y": 276.8293164882587 + }, + { + "x": 290.63940282923727, + "y": 241.24995077114824 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 305.41359122857114, + "y": 259.0396336297035 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 305.41359277919383, + "y": 255.9840765235253 + }, + { + "endCol": 6, + "endRow": 5, + "id": "6,6,5,5", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2422 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0000015506226986872207, + "y": 3.055557106178191 + }, + [ + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 290.6394257184461, + "y": 241.24995077114824 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 320.187779627905, + "y": 241.2499697804472 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 320.1877567386962, + "y": 276.8293164882587 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 290.63940282923727, + "y": 276.82929747895975 + }, + { + "angle": 4.814687997401094e-7, + "anglePrev": 4.28597564181723e-7, + "angularSpeed": 5.287123555838646e-8, + "angularVelocity": 5.287123555838646e-8, + "area": 6455.586703999999, + "axes": { + "#": 2430 + }, + "bounds": { + "#": 2435 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2438 + }, + "constraintImpulse": { + "#": 2439 + }, + "density": 0.001, + "force": { + "#": 2440 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 72, + "inertia": 26591.361314189468, + "inverseInertia": 0.00003760619804998054, + "inverseMass": 0.1549045882042575, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.455586704, + "motion": 0, + "parent": null, + "position": { + "#": 2441 + }, + "positionImpulse": { + "#": 2442 + }, + "positionPrev": { + "#": 2443 + }, + "region": { + "#": 2444 + }, + "render": { + "#": 2445 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055577501178856, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2447 + }, + "vertices": { + "#": 2448 + } + }, + [ + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + } + ], + { + "x": -0.7071064407366122, + "y": -0.7071071216363188 + }, + { + "x": 4.814687997400909e-7, + "y": -0.999999999999884 + }, + { + "x": 0.7071071216363188, + "y": -0.7071064407366122 + }, + { + "x": 0.999999999999884, + "y": 4.814687997400909e-7 + }, + { + "max": { + "#": 2436 + }, + "min": { + "#": 2437 + } + }, + { + "x": 424.3794924588497, + "y": 365.5314518861404 + }, + { + "x": 336.10316421863, + "y": 274.19985679633663 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 380.24117302083744, + "y": 318.3378655985441 + }, + { + "x": 1.153770100944363, + "y": 0.7124133034289063 + }, + { + "x": 380.2408623850326, + "y": 315.2822881131552 + }, + { + "endCol": 8, + "endRow": 7, + "id": "6,8,5,7", + "startCol": 6, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2446 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00031063580485124476, + "y": 3.0555774853889437 + }, + [ + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 424.3791642186197, + "y": 336.619886849612 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 398.5231517697655, + "y": 362.4758744007515 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 361.9591517697696, + "y": 362.47585679632635 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 336.10316421863, + "y": 336.6198443474722 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 336.1031818230552, + "y": 300.05584434747624 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 361.9591942719094, + "y": 274.19985679633663 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 398.52319427190525, + "y": 274.19987440076187 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 424.37918182304486, + "y": 300.055886849616 + }, + { + "angle": -0.000002946558017154733, + "anglePrev": -0.0000025696884447948347, + "angularSpeed": 3.7686957235989826e-7, + "angularVelocity": -3.7686957235989826e-7, + "area": 2014.126651, + "axes": { + "#": 2458 + }, + "bounds": { + "#": 2464 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2467 + }, + "constraintImpulse": { + "#": 2468 + }, + "density": 0.001, + "force": { + "#": 2469 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 73, + "inertia": 2626.4134178244994, + "inverseInertia": 0.00038074736947860864, + "inverseMass": 0.4964931075727074, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.014126651, + "motion": 0, + "parent": null, + "position": { + "#": 2470 + }, + "positionImpulse": { + "#": 2471 + }, + "positionPrev": { + "#": 2472 + }, + "region": { + "#": 2473 + }, + "render": { + "#": 2474 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0555285909020005, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2476 + }, + "vertices": { + "#": 2477 + } + }, + [ + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + } + ], + { + "x": 0.309022786252488, + "y": 0.9510546343805639 + }, + { + "x": -0.8090211512815881, + "y": 0.5877795307587821 + }, + { + "x": -0.8090246151205169, + "y": -0.5877747630930571 + }, + { + "x": 0.30901718157180663, + "y": -0.951056455471186 + }, + { + "x": 0.9999999999956587, + "y": -0.000002946558017150469 + }, + { + "max": { + "#": 2465 + }, + "min": { + "#": 2466 + } + }, + { + "x": 471.01477658350194, + "y": 291.2216366870499 + }, + { + "x": 418.363726174016, + "y": 235.85963668729005 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 447.4685486760011, + "y": 263.54061018635014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 447.4685336710858, + "y": 260.485081595485 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,4,6", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 2475 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.000015004915269400954, + "y": 3.0555285908651575 + }, + [ + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 471.01477658350194, + "y": 280.64854080609797 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 438.4748077376011, + "y": 291.2216366870499 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 418.363726174016, + "y": 263.5406959453982 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 438.4746446102561, + "y": 235.85963668729005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 471.0146757640728, + "y": 246.43254080624627 + }, + { + "angle": -0.0000015217654438060743, + "anglePrev": -0.0000012591183083334117, + "angularSpeed": 2.626471354726626e-7, + "angularVelocity": -2.626471354726626e-7, + "area": 4695.386625, + "axes": { + "#": 2484 + }, + "bounds": { + "#": 2492 + }, + "circleRadius": 16.275420096021946, + "collisionFilter": { + "#": 2495 + }, + "constraintImpulse": { + "#": 2496 + }, + "density": 0.001, + "force": { + "#": 2497 + }, + "friction": 0.0001, + "frictionAir": 0, + "frictionStatic": 0.5, + "id": 74, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 2498 + }, + "positionImpulse": { + "#": 2499 + }, + "positionPrev": { + "#": 2500 + }, + "region": { + "#": 2501 + }, + "render": { + "#": 2502 + }, + "restitution": 0.8, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.055557119331376, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 2504 + }, + "vertices": { + "#": 2505 + } + }, + [ + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + } + ], + { + "x": 0.6235012857027553, + "y": 0.781822324270042 + }, + { + "x": -0.22252493542817509, + "y": 0.9749269988633438 + }, + { + "x": -0.9009712048750951, + "y": 0.4338788863103614 + }, + { + "x": -0.9009725253947143, + "y": -0.43387614417466097 + }, + { + "x": -0.2225279026475787, + "y": -0.9749263215973141 + }, + { + "x": 0.623498906199475, + "y": -0.7818242219118424 + }, + { + "x": 0.9999999999988419, + "y": -0.0000015217654438054873 + }, + { + "max": { + "#": 2493 + }, + "min": { + "#": 2494 + } + }, + { + "x": 542.6104147303942, + "y": 340.0693578660501 + }, + { + "x": 463.8663762861424, + "y": 256.24380074683216 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.28950131843, + "y": 296.62881477422917 + }, + { + "x": -0.7532873681577694, + "y": 0.5567112403329115 + }, + { + "x": 505.2894902247774, + "y": 293.57325765491794 + }, + { + "endCol": 11, + "endRow": 7, + "id": "9,11,5,7", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 2503 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.00001109365257434547, + "y": 3.0555571193112376 + }, + [ + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 542.6104036367416, + "y": 314.6017579805905 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 514.5074377425811, + "y": 337.01380074673887 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.4624255700199, + "y": 329.0148540770181 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 463.8663762861424, + "y": 296.62887781050944 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 479.4623270022287, + "y": 264.242854077093 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 514.5073148295863, + "y": 256.24380074683216 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 542.6103489353609, + "y": 278.6557579806321 + }, + [], + [], + [ + { + "#": 2516 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 2517 + }, + "pointB": "", + "render": { + "#": 2518 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/views/views-0.json b/tests/browser/refs/views/views-0.json new file mode 100644 index 00000000..76baf925 --- /dev/null +++ b/tests/browser/refs/views/views-0.json @@ -0,0 +1,14237 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 86 + }, + "composites": { + "#": 89 + }, + "constraints": { + "#": 1621 + }, + "gravity": { + "#": 1625 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 87 + }, + "min": { + "#": 88 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 90 + } + ], + { + "bodies": { + "#": 91 + }, + "composites": { + "#": 1619 + }, + "constraints": { + "#": 1620 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 92 + }, + { + "#": 113 + }, + { + "#": 134 + }, + { + "#": 155 + }, + { + "#": 176 + }, + { + "#": 200 + }, + { + "#": 225 + }, + { + "#": 279 + }, + { + "#": 300 + }, + { + "#": 321 + }, + { + "#": 342 + }, + { + "#": 363 + }, + { + "#": 384 + }, + { + "#": 413 + }, + { + "#": 434 + }, + { + "#": 459 + }, + { + "#": 480 + }, + { + "#": 501 + }, + { + "#": 555 + }, + { + "#": 576 + }, + { + "#": 597 + }, + { + "#": 651 + }, + { + "#": 672 + }, + { + "#": 693 + }, + { + "#": 714 + }, + { + "#": 738 + }, + { + "#": 762 + }, + { + "#": 783 + }, + { + "#": 807 + }, + { + "#": 828 + }, + { + "#": 852 + }, + { + "#": 873 + }, + { + "#": 894 + }, + { + "#": 915 + }, + { + "#": 942 + }, + { + "#": 963 + }, + { + "#": 984 + }, + { + "#": 1005 + }, + { + "#": 1026 + }, + { + "#": 1047 + }, + { + "#": 1101 + }, + { + "#": 1122 + }, + { + "#": 1151 + }, + { + "#": 1172 + }, + { + "#": 1201 + }, + { + "#": 1222 + }, + { + "#": 1243 + }, + { + "#": 1264 + }, + { + "#": 1285 + }, + { + "#": 1314 + }, + { + "#": 1335 + }, + { + "#": 1356 + }, + { + "#": 1377 + }, + { + "#": 1398 + }, + { + "#": 1452 + }, + { + "#": 1473 + }, + { + "#": 1527 + }, + { + "#": 1548 + }, + { + "#": 1577 + }, + { + "#": 1598 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1534.906434764454, + "axes": { + "#": 93 + }, + "bounds": { + "#": 96 + }, + "collisionFilter": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "density": 0.001, + "force": { + "#": 101 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 102 + }, + "positionImpulse": { + "#": 103 + }, + "positionPrev": { + "#": 104 + }, + "render": { + "#": 105 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 107 + }, + "vertices": { + "#": 108 + } + }, + [ + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 97 + }, + "min": { + "#": 98 + } + }, + { + "x": 56.40316358024691, + "y": 62.164094650205755 + }, + { + "x": 19.999999999999996, + "y": 19.999999999999993 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.201581790123456, + "y": 41.08204732510288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 38.201581790123456, + "y": 41.08204732510288 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 106 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 19.999999999999996, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 56.40316358024691, + "y": 19.999999999999993 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.40316358024691, + "y": 62.164094650205755 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 19.999999999999996, + "y": 62.164094650205755 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.52878634164, + "axes": { + "#": 114 + }, + "bounds": { + "#": 117 + }, + "collisionFilter": { + "#": 120 + }, + "constraintImpulse": { + "#": 121 + }, + "density": 0.001, + "force": { + "#": 122 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 123 + }, + "positionImpulse": { + "#": 124 + }, + "positionPrev": { + "#": 125 + }, + "render": { + "#": 126 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 128 + }, + "vertices": { + "#": 129 + } + }, + [ + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 118 + }, + "min": { + "#": 119 + } + }, + { + "x": 101.7190072016461, + "y": 69.0011574074074 + }, + { + "x": 56.40316358024691, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.0610853909465, + "y": 44.5005787037037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 79.0610853909465, + "y": 44.5005787037037 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 127 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 56.40316358024691, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 101.7190072016461, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 101.7190072016461, + "y": 69.0011574074074 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 56.40316358024691, + "y": 69.0011574074074 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1140.197701571206, + "axes": { + "#": 135 + }, + "bounds": { + "#": 138 + }, + "collisionFilter": { + "#": 141 + }, + "constraintImpulse": { + "#": 142 + }, + "density": 0.001, + "force": { + "#": 143 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 144 + }, + "positionImpulse": { + "#": 145 + }, + "positionPrev": { + "#": 146 + }, + "render": { + "#": 147 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 149 + }, + "vertices": { + "#": 150 + } + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 139 + }, + "min": { + "#": 140 + } + }, + { + "x": 140.93981481481484, + "y": 49.07124485596708 + }, + { + "x": 101.7190072016461, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.32941100823047, + "y": 34.53562242798354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 121.32941100823047, + "y": 34.53562242798354 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 148 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 101.7190072016461, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 140.93981481481484, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 140.93981481481484, + "y": 49.07124485596708 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 101.7190072016461, + "y": 49.07124485596708 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 752.4076041785743, + "axes": { + "#": 156 + }, + "bounds": { + "#": 159 + }, + "collisionFilter": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "density": 0.001, + "force": { + "#": 164 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 165 + }, + "positionImpulse": { + "#": 166 + }, + "positionPrev": { + "#": 167 + }, + "render": { + "#": 168 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 170 + }, + "vertices": { + "#": 171 + } + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 160 + }, + "min": { + "#": 161 + } + }, + { + "x": 165.81712962962968, + "y": 50.24472736625515 + }, + { + "x": 140.93981481481484, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.37847222222226, + "y": 35.122363683127574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 153.37847222222226, + "y": 35.122363683127574 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 169 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 140.93981481481484, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 165.81712962962968, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.81712962962968, + "y": 50.24472736625515 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 140.93981481481484, + "y": 50.24472736625515 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2027.2541820000001, + "axes": { + "#": 177 + }, + "bounds": { + "#": 181 + }, + "collisionFilter": { + "#": 184 + }, + "constraintImpulse": { + "#": 185 + }, + "density": 0.001, + "force": { + "#": 186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 187 + }, + "positionImpulse": { + "#": 188 + }, + "positionPrev": { + "#": 189 + }, + "render": { + "#": 190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 192 + }, + "vertices": { + "#": 193 + } + }, + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + } + ], + { + "x": -0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 0.500008582084709, + "y": -0.8660204488588239 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 182 + }, + "min": { + "#": 183 + } + }, + { + "x": 214.19912962962968, + "y": 75.868 + }, + { + "x": 165.81712962962968, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 190.00812962962968, + "y": 47.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 190.00812962962968, + "y": 47.934 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 191 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 214.19912962962968, + "y": 61.900999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 190.00812962962968, + "y": 75.868 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 165.81712962962968, + "y": 61.900999999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 165.81712962962968, + "y": 33.967 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 190.00812962962968, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 214.19912962962968, + "y": 33.967 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4842.27229, + "axes": { + "#": 201 + }, + "bounds": { + "#": 207 + }, + "collisionFilter": { + "#": 210 + }, + "constraintImpulse": { + "#": 211 + }, + "density": 0.001, + "force": { + "#": 212 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 213 + }, + "positionImpulse": { + "#": 214 + }, + "positionPrev": { + "#": 215 + }, + "render": { + "#": 216 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 218 + }, + "vertices": { + "#": 219 + } + }, + [ + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 0.30902000749156683, + "y": 0.95105553726894 + }, + { + "x": -0.8090188345853124, + "y": 0.5877827194518592 + }, + { + "x": -0.8090188345853124, + "y": -0.5877827194518592 + }, + { + "x": 0.30902000749156683, + "y": -0.95105553726894 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 208 + }, + "min": { + "#": 209 + } + }, + { + "x": 291.5277437444547, + "y": 105.84 + }, + { + "x": 209.8897437444547, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.0181296296297, + "y": 62.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.0181296296297, + "y": 62.92 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 217 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 291.5277437444547, + "y": 89.446 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 241.0727437444547, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 209.8897437444547, + "y": 62.92 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.0727437444547, + "y": 20 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.5277437444547, + "y": 36.394000000000005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3079.0178339999993, + "axes": { + "#": 226 + }, + "bounds": { + "#": 240 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 243 + }, + "constraintImpulse": { + "#": 244 + }, + "density": 0.001, + "force": { + "#": 245 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 246 + }, + "positionImpulse": { + "#": 247 + }, + "positionPrev": { + "#": 248 + }, + "render": { + "#": 249 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 251 + }, + "vertices": { + "#": 252 + } + }, + [ + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + } + ], + { + "x": -0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": -0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": -0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": -0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": -0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": -0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.12051249760074473, + "y": -0.9927118101050428 + }, + { + "x": 0.3545747323306568, + "y": -0.9350276783029703 + }, + { + "x": 0.5680780310049566, + "y": -0.8229746962632154 + }, + { + "x": 0.7485358222247293, + "y": -0.6630943544069339 + }, + { + "x": 0.885418252251326, + "y": -0.46479513614086726 + }, + { + "x": 0.9709437470087438, + "y": -0.23930783552700582 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 241 + }, + "min": { + "#": 242 + } + }, + { + "x": 353.98774374445475, + "y": 82.918 + }, + { + "x": 291.5277437444547, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.75774374445473, + "y": 51.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.75774374445473, + "y": 51.459 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 250 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.98774374445475, + "y": 55.251000000000005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 352.17274374445475, + "y": 62.615 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 348.6477437444547, + "y": 69.33 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 343.6187437444547, + "y": 75.007 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 337.37774374445473, + "y": 79.315 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 330.2867437444547, + "y": 82.004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.75774374445473, + "y": 82.918 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 315.22874374445473, + "y": 82.004 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 308.1377437444547, + "y": 79.315 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.89674374445474, + "y": 75.007 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 296.86774374445474, + "y": 69.33 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 293.3427437444547, + "y": 62.615 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 291.5277437444547, + "y": 55.251000000000005 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 291.5277437444547, + "y": 47.667 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 293.3427437444547, + "y": 40.303000000000004 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 296.86774374445474, + "y": 33.58800000000001 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 301.89674374445474, + "y": 27.911000000000005 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 308.1377437444547, + "y": 23.603 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 315.22874374445473, + "y": 20.914 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 322.75774374445473, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 330.2867437444547, + "y": 20.914 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 337.37774374445473, + "y": 23.603 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 343.6187437444547, + "y": 27.911000000000005 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 348.6477437444547, + "y": 33.58800000000001 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 352.17274374445475, + "y": 40.303000000000004 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 353.98774374445475, + "y": 47.667 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1329.4167625219097, + "axes": { + "#": 280 + }, + "bounds": { + "#": 283 + }, + "collisionFilter": { + "#": 286 + }, + "constraintImpulse": { + "#": 287 + }, + "density": 0.001, + "force": { + "#": 288 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 289 + }, + "positionImpulse": { + "#": 290 + }, + "positionPrev": { + "#": 291 + }, + "render": { + "#": 292 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 294 + }, + "vertices": { + "#": 295 + } + }, + [ + { + "#": 281 + }, + { + "#": 282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 284 + }, + "min": { + "#": 285 + } + }, + { + "x": 402.76539292140944, + "y": 47.25462962962963 + }, + { + "x": 353.98774374445475, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.3765683329321, + "y": 33.62731481481482 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 378.3765683329321, + "y": 33.62731481481482 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 293 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.98774374445475, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 402.76539292140944, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 402.76539292140944, + "y": 47.25462962962963 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 353.98774374445475, + "y": 47.25462962962963 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2858.632357296012, + "axes": { + "#": 301 + }, + "bounds": { + "#": 304 + }, + "collisionFilter": { + "#": 307 + }, + "constraintImpulse": { + "#": 308 + }, + "density": 0.001, + "force": { + "#": 309 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 310 + }, + "positionImpulse": { + "#": 311 + }, + "positionPrev": { + "#": 312 + }, + "render": { + "#": 313 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 315 + }, + "vertices": { + "#": 316 + } + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 305 + }, + "min": { + "#": 306 + } + }, + { + "x": 511.6199882574863, + "y": 46.261016803840874 + }, + { + "x": 402.76539292140944, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.19269058944786, + "y": 33.13050840192044 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 457.19269058944786, + "y": 33.13050840192044 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 314 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 402.76539292140944, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 511.6199882574863, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 511.6199882574863, + "y": 46.261016803840874 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 402.76539292140944, + "y": 46.261016803840874 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.8394636035856, + "axes": { + "#": 322 + }, + "bounds": { + "#": 325 + }, + "collisionFilter": { + "#": 328 + }, + "constraintImpulse": { + "#": 329 + }, + "density": 0.001, + "force": { + "#": 330 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 331 + }, + "positionImpulse": { + "#": 332 + }, + "positionPrev": { + "#": 333 + }, + "render": { + "#": 334 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 336 + }, + "vertices": { + "#": 337 + } + }, + [ + { + "#": 323 + }, + { + "#": 324 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 326 + }, + "min": { + "#": 327 + } + }, + { + "x": 550.3757752945232, + "y": 43.914866255144034 + }, + { + "x": 511.6199882574862, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9978817760048, + "y": 31.957433127572017 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 530.9978817760048, + "y": 31.957433127572017 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 335 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 511.6199882574862, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 550.3757752945232, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 550.3757752945232, + "y": 43.914866255144034 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 511.6199882574862, + "y": 43.914866255144034 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.4501361223834, + "axes": { + "#": 343 + }, + "bounds": { + "#": 346 + }, + "collisionFilter": { + "#": 349 + }, + "constraintImpulse": { + "#": 350 + }, + "density": 0.001, + "force": { + "#": 351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 352 + }, + "positionImpulse": { + "#": 353 + }, + "positionPrev": { + "#": 354 + }, + "render": { + "#": 355 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 357 + }, + "vertices": { + "#": 358 + } + }, + [ + { + "#": 344 + }, + { + "#": 345 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 347 + }, + "min": { + "#": 348 + } + }, + { + "x": 586.1460942245644, + "y": 56.076003086419746 + }, + { + "x": 550.3757752945232, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.2609347595438, + "y": 38.03800154320987 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 568.2609347595438, + "y": 38.03800154320987 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 356 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 550.3757752945232, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 586.1460942245644, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.1460942245644, + "y": 56.076003086419746 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 550.3757752945232, + "y": 56.076003086419746 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.2925932011974, + "axes": { + "#": 364 + }, + "bounds": { + "#": 367 + }, + "collisionFilter": { + "#": 370 + }, + "constraintImpulse": { + "#": 371 + }, + "density": 0.001, + "force": { + "#": 372 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 373 + }, + "positionImpulse": { + "#": 374 + }, + "positionPrev": { + "#": 375 + }, + "render": { + "#": 376 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 378 + }, + "vertices": { + "#": 379 + } + }, + [ + { + "#": 365 + }, + { + "#": 366 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 368 + }, + "min": { + "#": 369 + } + }, + { + "x": 616.7010067760048, + "y": 57.58127572016461 + }, + { + "x": 586.1460942245644, + "y": 20 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.4235505002846, + "y": 38.790637860082306 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 601.4235505002846, + "y": 38.790637860082306 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 377 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 586.1460942245644, + "y": 20 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.7010067760048, + "y": 20 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.7010067760048, + "y": 57.58127572016461 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 586.1460942245644, + "y": 57.58127572016461 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1926.7878890000002, + "axes": { + "#": 385 + }, + "bounds": { + "#": 393 + }, + "collisionFilter": { + "#": 396 + }, + "constraintImpulse": { + "#": 397 + }, + "density": 0.001, + "force": { + "#": 398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 399 + }, + "positionImpulse": { + "#": 400 + }, + "positionPrev": { + "#": 401 + }, + "render": { + "#": 402 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 404 + }, + "vertices": { + "#": 405 + } + }, + [ + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + } + ], + { + "x": 0.6234921001781484, + "y": 0.7818296496139309 + }, + { + "x": -0.22251820971292155, + "y": 0.9749285339685962 + }, + { + "x": -0.9009815501548849, + "y": 0.43385740316433524 + }, + { + "x": -0.9009815501548849, + "y": -0.43385740316433524 + }, + { + "x": -0.22251820971292155, + "y": -0.9749285339685962 + }, + { + "x": 0.6234921001781484, + "y": -0.7818296496139309 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 394 + }, + "min": { + "#": 395 + } + }, + { + "x": 665.8303156438957, + "y": 71.74000000000001 + }, + { + "x": 615.3873156438957, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 641.9225067760048, + "y": 45.870000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 641.9225067760048, + "y": 45.870000000000005 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 403 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 665.8303156438957, + "y": 57.383 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 647.8273156438956, + "y": 71.74000000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625.3773156438957, + "y": 66.616 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615.3873156438957, + "y": 45.870000000000005 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 625.3773156438957, + "y": 25.124000000000006 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 647.8273156438956, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 665.8303156438957, + "y": 34.357000000000006 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1690.1965440000001, + "axes": { + "#": 414 + }, + "bounds": { + "#": 417 + }, + "collisionFilter": { + "#": 420 + }, + "constraintImpulse": { + "#": 421 + }, + "density": 0.001, + "force": { + "#": 422 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1904.509571566363, + "inverseInertia": 0.0005250695585517853, + "inverseMass": 0.5916471688158889, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.6901965440000002, + "motion": 0, + "parent": null, + "position": { + "#": 423 + }, + "positionImpulse": { + "#": 424 + }, + "positionPrev": { + "#": 425 + }, + "render": { + "#": 426 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 428 + }, + "vertices": { + "#": 429 + } + }, + [ + { + "#": 415 + }, + { + "#": 416 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 418 + }, + "min": { + "#": 419 + } + }, + { + "x": 706.9423156438958, + "y": 61.111999999999995 + }, + { + "x": 665.8303156438957, + "y": 19.999999999999996 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 686.3863156438957, + "y": 40.556 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 686.3863156438957, + "y": 40.556 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 427 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 706.9423156438958, + "y": 61.111999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 665.8303156438957, + "y": 61.111999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 665.8303156438957, + "y": 19.999999999999996 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 706.9423156438958, + "y": 19.999999999999996 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 435 + }, + "bounds": { + "#": 441 + }, + "collisionFilter": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "density": 0.001, + "force": { + "#": 446 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 447 + }, + "positionImpulse": { + "#": 448 + }, + "positionPrev": { + "#": 449 + }, + "render": { + "#": 450 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 452 + }, + "vertices": { + "#": 453 + } + }, + [ + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 442 + }, + "min": { + "#": 443 + } + }, + { + "x": 741.8472729237214, + "y": 58.74600000000001 + }, + { + "x": 704.9972729237214, + "y": 20.000000000000004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.3673156438958, + "y": 39.373000000000005 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.3673156438958, + "y": 39.373000000000005 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 451 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 741.8472729237214, + "y": 51.346000000000004 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 719.0722729237215, + "y": 58.74600000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 704.9972729237214, + "y": 39.373000000000005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 719.0722729237215, + "y": 20.000000000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 741.8472729237214, + "y": 27.400000000000006 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.454244, + "axes": { + "#": 460 + }, + "bounds": { + "#": 463 + }, + "collisionFilter": { + "#": 466 + }, + "constraintImpulse": { + "#": 467 + }, + "density": 0.001, + "force": { + "#": 468 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 469 + }, + "positionImpulse": { + "#": 470 + }, + "positionPrev": { + "#": 471 + }, + "render": { + "#": 472 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 474 + }, + "vertices": { + "#": 475 + } + }, + [ + { + "#": 461 + }, + { + "#": 462 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 464 + }, + "min": { + "#": 465 + } + }, + { + "x": 54.662000000000006, + "y": 140.502 + }, + { + "x": 20.000000000000004, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 37.331, + "y": 123.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 37.331, + "y": 123.171 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 473 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 54.662000000000006, + "y": 140.502 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.000000000000004, + "y": 140.502 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.000000000000004, + "y": 105.84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 54.662000000000006, + "y": 105.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1990.733346252218, + "axes": { + "#": 481 + }, + "bounds": { + "#": 484 + }, + "collisionFilter": { + "#": 487 + }, + "constraintImpulse": { + "#": 488 + }, + "density": 0.001, + "force": { + "#": 489 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 490 + }, + "positionImpulse": { + "#": 491 + }, + "positionPrev": { + "#": 492 + }, + "render": { + "#": 493 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 495 + }, + "vertices": { + "#": 496 + } + }, + [ + { + "#": 482 + }, + { + "#": 483 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 485 + }, + "min": { + "#": 486 + } + }, + { + "x": 149.48573113854596, + "y": 126.8340414951989 + }, + { + "x": 54.662000000000006, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 102.07386556927298, + "y": 116.33702074759945 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 102.07386556927298, + "y": 116.33702074759945 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 494 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 54.662000000000006, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 149.48573113854596, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 149.48573113854596, + "y": 126.8340414951989 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 54.662000000000006, + "y": 126.8340414951989 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7321.24308, + "axes": { + "#": 502 + }, + "bounds": { + "#": 516 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "density": 0.001, + "force": { + "#": 521 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 522 + }, + "positionImpulse": { + "#": 523 + }, + "positionPrev": { + "#": 524 + }, + "render": { + "#": 525 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 527 + }, + "vertices": { + "#": 528 + } + }, + [ + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 517 + }, + "min": { + "#": 518 + } + }, + { + "x": 245.79973113854598, + "y": 202.85999999999999 + }, + { + "x": 149.485731138546, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 197.64273113854597, + "y": 154.35 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 197.64273113854597, + "y": 154.35 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 526 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.79973113854598, + "y": 160.197 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 243.00073113854597, + "y": 171.552 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 237.56573113854597, + "y": 181.90699999999998 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 229.81073113854598, + "y": 190.661 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 220.18673113854598, + "y": 197.304 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 209.25173113854598, + "y": 201.451 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 197.64273113854597, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 186.03373113854596, + "y": 201.451 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 175.098731138546, + "y": 197.304 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 165.47473113854596, + "y": 190.661 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 157.71973113854597, + "y": 181.90699999999998 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 152.28473113854596, + "y": 171.552 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 149.485731138546, + "y": 160.197 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 149.485731138546, + "y": 148.503 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 152.28473113854596, + "y": 137.148 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 157.71973113854597, + "y": 126.79299999999999 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 165.47473113854596, + "y": 118.03899999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 175.098731138546, + "y": 111.39599999999999 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 186.03373113854596, + "y": 107.249 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 197.64273113854597, + "y": 105.84 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 209.25173113854598, + "y": 107.249 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 220.18673113854598, + "y": 111.39599999999999 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 229.81073113854598, + "y": 118.03899999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 237.56573113854597, + "y": 126.79299999999999 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 243.00073113854597, + "y": 137.148 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 245.79973113854598, + "y": 148.503 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2034.763772651268, + "axes": { + "#": 556 + }, + "bounds": { + "#": 559 + }, + "collisionFilter": { + "#": 562 + }, + "constraintImpulse": { + "#": 563 + }, + "density": 0.001, + "force": { + "#": 564 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 565 + }, + "positionImpulse": { + "#": 566 + }, + "positionPrev": { + "#": 567 + }, + "render": { + "#": 568 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 570 + }, + "vertices": { + "#": 571 + } + }, + [ + { + "#": 557 + }, + { + "#": 558 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 560 + }, + "min": { + "#": 561 + } + }, + { + "x": 330.03241289437585, + "y": 129.99646433470508 + }, + { + "x": 245.79973113854598, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.91607201646093, + "y": 117.91823216735254 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 287.91607201646093, + "y": 117.91823216735254 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 569 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 245.79973113854598, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 330.03241289437585, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 330.03241289437585, + "y": 129.99646433470508 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 245.79973113854598, + "y": 129.99646433470508 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1030.4556949326513, + "axes": { + "#": 577 + }, + "bounds": { + "#": 580 + }, + "collisionFilter": { + "#": 583 + }, + "constraintImpulse": { + "#": 584 + }, + "density": 0.001, + "force": { + "#": 585 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 586 + }, + "positionImpulse": { + "#": 587 + }, + "positionPrev": { + "#": 588 + }, + "render": { + "#": 589 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 591 + }, + "vertices": { + "#": 592 + } + }, + [ + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 581 + }, + "min": { + "#": 582 + } + }, + { + "x": 379.41898696845, + "y": 126.7050977366255 + }, + { + "x": 330.03241289437585, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 354.7256999314129, + "y": 116.27254886831275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 354.7256999314129, + "y": 116.27254886831275 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 590 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 330.03241289437585, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 379.41898696845, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 379.41898696845, + "y": 126.7050977366255 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 330.03241289437585, + "y": 126.7050977366255 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2157.165332, + "axes": { + "#": 598 + }, + "bounds": { + "#": 612 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "density": 0.001, + "force": { + "#": 617 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 618 + }, + "positionImpulse": { + "#": 619 + }, + "positionPrev": { + "#": 620 + }, + "render": { + "#": 621 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 623 + }, + "vertices": { + "#": 624 + } + }, + [ + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + } + ], + { + "x": -0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": -0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": -0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": -0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": -0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": -0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.12050542549813427, + "y": -0.9927126686133876 + }, + { + "x": 0.3546257389378823, + "y": -0.9350083343386629 + }, + { + "x": 0.5680789542040116, + "y": -0.8229740590021511 + }, + { + "x": 0.7485032926619368, + "y": -0.6631310736756638 + }, + { + "x": 0.8854643472565572, + "y": -0.46470731620829797 + }, + { + "x": 0.9709433940705979, + "y": -0.2393092674984975 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 613 + }, + "min": { + "#": 614 + } + }, + { + "x": 431.69898696844996, + "y": 158.504 + }, + { + "x": 379.41898696845, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.55898696845, + "y": 132.172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 405.55898696845, + "y": 132.172 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 622 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 431.69898696844996, + "y": 135.346 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 430.17998696844995, + "y": 141.50900000000001 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 427.22998696844996, + "y": 147.13 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 423.01998696845, + "y": 151.882 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 417.79598696845, + "y": 155.488 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 411.86098696845, + "y": 157.739 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 405.55898696845, + "y": 158.504 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 399.25698696844995, + "y": 157.739 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 393.32198696844995, + "y": 155.488 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 388.09798696844996, + "y": 151.882 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 383.88798696845, + "y": 147.13 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 380.93798696845, + "y": 141.50900000000001 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 379.41898696845, + "y": 135.346 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 379.41898696845, + "y": 128.998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 380.93798696845, + "y": 122.835 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 383.88798696845, + "y": 117.214 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 388.09798696844996, + "y": 112.46199999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 393.32198696844995, + "y": 108.856 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 399.25698696844995, + "y": 106.60499999999999 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 405.55898696845, + "y": 105.84 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 411.86098696845, + "y": 106.60499999999999 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 417.79598696845, + "y": 108.856 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 423.01998696845, + "y": 112.46199999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 427.22998696844996, + "y": 117.214 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 430.17998696844995, + "y": 122.835 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 431.69898696844996, + "y": 128.998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2399.6281959999997, + "axes": { + "#": 652 + }, + "bounds": { + "#": 655 + }, + "collisionFilter": { + "#": 658 + }, + "constraintImpulse": { + "#": 659 + }, + "density": 0.001, + "force": { + "#": 660 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 661 + }, + "positionImpulse": { + "#": 662 + }, + "positionPrev": { + "#": 663 + }, + "render": { + "#": 664 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 666 + }, + "vertices": { + "#": 667 + } + }, + [ + { + "#": 653 + }, + { + "#": 654 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 656 + }, + "min": { + "#": 657 + } + }, + { + "x": 480.68498696844995, + "y": 154.826 + }, + { + "x": 431.69898696844996, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 456.19198696844995, + "y": 130.333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 456.19198696844995, + "y": 130.333 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 665 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.68498696844995, + "y": 154.826 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 431.69898696844996, + "y": 154.826 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 431.69898696844996, + "y": 105.84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.68498696844995, + "y": 105.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.7843794189994, + "axes": { + "#": 673 + }, + "bounds": { + "#": 676 + }, + "collisionFilter": { + "#": 679 + }, + "constraintImpulse": { + "#": 680 + }, + "density": 0.001, + "force": { + "#": 681 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 682 + }, + "positionImpulse": { + "#": 683 + }, + "positionPrev": { + "#": 684 + }, + "render": { + "#": 685 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 687 + }, + "vertices": { + "#": 688 + } + }, + [ + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 677 + }, + "min": { + "#": 678 + } + }, + { + "x": 516.0979242112483, + "y": 147.90893004115227 + }, + { + "x": 480.68498696844995, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 498.3914555898491, + "y": 126.87446502057614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 498.3914555898491, + "y": 126.87446502057614 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 686 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480.68498696844995, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 516.0979242112483, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 516.0979242112483, + "y": 147.90893004115227 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480.68498696844995, + "y": 147.90893004115227 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.3675322216507, + "axes": { + "#": 694 + }, + "bounds": { + "#": 697 + }, + "collisionFilter": { + "#": 700 + }, + "constraintImpulse": { + "#": 701 + }, + "density": 0.001, + "force": { + "#": 702 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 703 + }, + "positionImpulse": { + "#": 704 + }, + "positionPrev": { + "#": 705 + }, + "render": { + "#": 706 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 708 + }, + "vertices": { + "#": 709 + } + }, + [ + { + "#": 695 + }, + { + "#": 696 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 698 + }, + "min": { + "#": 699 + } + }, + { + "x": 557.8618131001372, + "y": 148.1101903292181 + }, + { + "x": 516.0979242112483, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.9798686556927, + "y": 126.97509516460906 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 536.9798686556927, + "y": 126.97509516460906 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 707 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 516.0979242112483, + "y": 105.84 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 557.8618131001372, + "y": 105.84 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 557.8618131001372, + "y": 148.1101903292181 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 516.0979242112483, + "y": 148.1101903292181 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1919.5457599999997, + "axes": { + "#": 715 + }, + "bounds": { + "#": 719 + }, + "collisionFilter": { + "#": 722 + }, + "constraintImpulse": { + "#": 723 + }, + "density": 0.001, + "force": { + "#": 724 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 725 + }, + "positionImpulse": { + "#": 726 + }, + "positionPrev": { + "#": 727 + }, + "render": { + "#": 728 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 730 + }, + "vertices": { + "#": 731 + } + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + } + ], + { + "x": -0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 0.4999772266722585, + "y": -0.8660385515721092 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 720 + }, + "min": { + "#": 721 + } + }, + { + "x": 604.9418131001371, + "y": 160.20200000000003 + }, + { + "x": 557.8618131001372, + "y": 105.84000000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.4018131001371, + "y": 133.02100000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 581.4018131001371, + "y": 133.02100000000002 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 729 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 604.9418131001371, + "y": 146.61200000000002 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 581.4018131001371, + "y": 160.20200000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 557.8618131001372, + "y": 146.61200000000002 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 557.8618131001372, + "y": 119.43000000000002 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 581.4018131001371, + "y": 105.84000000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 604.9418131001371, + "y": 119.43000000000002 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6052.328004, + "axes": { + "#": 739 + }, + "bounds": { + "#": 743 + }, + "collisionFilter": { + "#": 746 + }, + "constraintImpulse": { + "#": 747 + }, + "density": 0.001, + "force": { + "#": 748 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 749 + }, + "positionImpulse": { + "#": 750 + }, + "positionPrev": { + "#": 751 + }, + "render": { + "#": 752 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 754 + }, + "vertices": { + "#": 755 + } + }, + [ + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + } + ], + { + "x": -0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 0.4999896834528559, + "y": -0.8660313599637792 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 744 + }, + "min": { + "#": 745 + } + }, + { + "x": 688.539813100137, + "y": 202.37000000000003 + }, + { + "x": 604.9418131001371, + "y": 105.84000000000002 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 646.7408131001371, + "y": 154.10500000000002 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 646.7408131001371, + "y": 154.10500000000002 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 753 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 688.539813100137, + "y": 178.23800000000003 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 646.7408131001371, + "y": 202.37000000000003 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 604.9418131001371, + "y": 178.23800000000003 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 604.9418131001371, + "y": 129.97200000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 646.7408131001371, + "y": 105.84000000000002 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 688.539813100137, + "y": 129.97200000000004 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.023313496789, + "axes": { + "#": 763 + }, + "bounds": { + "#": 766 + }, + "collisionFilter": { + "#": 769 + }, + "constraintImpulse": { + "#": 770 + }, + "density": 0.001, + "force": { + "#": 771 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 772 + }, + "positionImpulse": { + "#": 773 + }, + "positionPrev": { + "#": 774 + }, + "render": { + "#": 775 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 777 + }, + "vertices": { + "#": 778 + } + }, + [ + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 767 + }, + "min": { + "#": 768 + } + }, + { + "x": 733.6911762688612, + "y": 155.00846707818928 + }, + { + "x": 688.539813100137, + "y": 105.83999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 711.1154946844991, + "y": 130.42423353909464 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 711.1154946844991, + "y": 130.42423353909464 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 776 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 688.539813100137, + "y": 105.83999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 733.6911762688612, + "y": 105.83999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 733.6911762688612, + "y": 155.00846707818928 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 688.539813100137, + "y": 155.00846707818928 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2601.1074479999997, + "axes": { + "#": 784 + }, + "bounds": { + "#": 788 + }, + "collisionFilter": { + "#": 791 + }, + "constraintImpulse": { + "#": 792 + }, + "density": 0.001, + "force": { + "#": 793 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 794 + }, + "positionImpulse": { + "#": 795 + }, + "positionPrev": { + "#": 796 + }, + "render": { + "#": 797 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 799 + }, + "vertices": { + "#": 800 + } + }, + [ + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + } + ], + { + "x": -0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 0.4999869137730785, + "y": -0.8660329589892477 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 789 + }, + "min": { + "#": 790 + } + }, + { + "x": 788.4951762688613, + "y": 169.12199999999999 + }, + { + "x": 733.6911762688612, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 761.0931762688613, + "y": 137.481 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 761.0931762688613, + "y": 137.481 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 798 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 788.4951762688613, + "y": 153.302 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 761.0931762688613, + "y": 169.12199999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 733.6911762688612, + "y": 153.302 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 733.6911762688612, + "y": 121.66 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 761.0931762688613, + "y": 105.84 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 788.4951762688613, + "y": 121.66 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1413.3088360000002, + "axes": { + "#": 808 + }, + "bounds": { + "#": 811 + }, + "collisionFilter": { + "#": 814 + }, + "constraintImpulse": { + "#": 815 + }, + "density": 0.001, + "force": { + "#": 816 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 817 + }, + "positionImpulse": { + "#": 818 + }, + "positionPrev": { + "#": 819 + }, + "render": { + "#": 820 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 822 + }, + "vertices": { + "#": 823 + } + }, + [ + { + "#": 809 + }, + { + "#": 810 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 812 + }, + "min": { + "#": 813 + } + }, + { + "x": 826.0891762688614, + "y": 143.434 + }, + { + "x": 788.4951762688613, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 807.2921762688613, + "y": 124.637 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 807.2921762688613, + "y": 124.637 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 821 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 826.0891762688614, + "y": 143.434 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 788.4951762688613, + "y": 143.434 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 788.4951762688613, + "y": 105.84 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 826.0891762688614, + "y": 105.84 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5460.808751999999, + "axes": { + "#": 829 + }, + "bounds": { + "#": 833 + }, + "collisionFilter": { + "#": 836 + }, + "constraintImpulse": { + "#": 837 + }, + "density": 0.001, + "force": { + "#": 838 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 839 + }, + "positionImpulse": { + "#": 840 + }, + "positionPrev": { + "#": 841 + }, + "render": { + "#": 842 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 844 + }, + "vertices": { + "#": 845 + } + }, + [ + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": -0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 0.49999811726960197, + "y": -0.8660264907766121 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 834 + }, + "min": { + "#": 835 + } + }, + { + "x": 905.4971762688613, + "y": 197.532 + }, + { + "x": 826.0891762688614, + "y": 105.84 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 865.7931762688613, + "y": 151.686 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 865.7931762688613, + "y": 151.686 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 843 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 905.4971762688613, + "y": 174.609 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 865.7931762688613, + "y": 197.532 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 826.0891762688614, + "y": 174.609 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 826.0891762688614, + "y": 128.763 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 865.7931762688613, + "y": 105.84 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 905.4971762688613, + "y": 128.763 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.6137937679406, + "axes": { + "#": 853 + }, + "bounds": { + "#": 856 + }, + "collisionFilter": { + "#": 859 + }, + "constraintImpulse": { + "#": 860 + }, + "density": 0.001, + "force": { + "#": 861 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 862 + }, + "positionImpulse": { + "#": 863 + }, + "positionPrev": { + "#": 864 + }, + "render": { + "#": 865 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 867 + }, + "vertices": { + "#": 868 + } + }, + [ + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 857 + }, + "min": { + "#": 858 + } + }, + { + "x": 40.170524691358025, + "y": 225.2497890946502 + }, + { + "x": 20, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 30.085262345679013, + "y": 214.0548945473251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 30.085262345679013, + "y": 214.0548945473251 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 866 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 40.170524691358025, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 40.170524691358025, + "y": 225.2497890946502 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 225.2497890946502 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.679068443158, + "axes": { + "#": 874 + }, + "bounds": { + "#": 877 + }, + "collisionFilter": { + "#": 880 + }, + "constraintImpulse": { + "#": 881 + }, + "density": 0.001, + "force": { + "#": 882 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 883 + }, + "positionImpulse": { + "#": 884 + }, + "positionPrev": { + "#": 885 + }, + "render": { + "#": 886 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 888 + }, + "vertices": { + "#": 889 + } + }, + [ + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 878 + }, + "min": { + "#": 879 + } + }, + { + "x": 142.0036865569273, + "y": 232.53283950617285 + }, + { + "x": 40.170524691358025, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 91.08710562414267, + "y": 217.69641975308642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 91.08710562414267, + "y": 217.69641975308642 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 887 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 40.170524691358025, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 142.0036865569273, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 142.0036865569273, + "y": 232.53283950617285 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 40.170524691358025, + "y": 232.53283950617285 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.7396388354374, + "axes": { + "#": 895 + }, + "bounds": { + "#": 898 + }, + "collisionFilter": { + "#": 901 + }, + "constraintImpulse": { + "#": 902 + }, + "density": 0.001, + "force": { + "#": 903 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 904 + }, + "positionImpulse": { + "#": 905 + }, + "positionPrev": { + "#": 906 + }, + "render": { + "#": 907 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 909 + }, + "vertices": { + "#": 910 + } + }, + [ + { + "#": 896 + }, + { + "#": 897 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 899 + }, + "min": { + "#": 900 + } + }, + { + "x": 182.07518861454045, + "y": 224.24027263374484 + }, + { + "x": 142.0036865569273, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.03943758573388, + "y": 213.5501363168724 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.03943758573388, + "y": 213.5501363168724 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 908 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 142.0036865569273, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 182.07518861454045, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 182.07518861454045, + "y": 224.24027263374484 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 142.0036865569273, + "y": 224.24027263374484 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.5999519999996, + "axes": { + "#": 916 + }, + "bounds": { + "#": 921 + }, + "collisionFilter": { + "#": 924 + }, + "constraintImpulse": { + "#": 925 + }, + "density": 0.001, + "force": { + "#": 926 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 927 + }, + "positionImpulse": { + "#": 928 + }, + "positionPrev": { + "#": 929 + }, + "render": { + "#": 930 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 932 + }, + "vertices": { + "#": 933 + } + }, + [ + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + } + ], + { + "x": -0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.7071067811865475, + "y": -0.7071067811865475 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 922 + }, + "min": { + "#": 923 + } + }, + { + "x": 252.32718861454046, + "y": 273.11199999999997 + }, + { + "x": 182.07518861454045, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.20118861454046, + "y": 237.986 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.20118861454046, + "y": 237.986 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 931 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.32718861454046, + "y": 252.536 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 231.75118861454047, + "y": 273.11199999999997 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 202.65118861454044, + "y": 273.11199999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 182.07518861454045, + "y": 252.536 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.07518861454045, + "y": 223.43599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 202.65118861454044, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 231.75118861454047, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.32718861454046, + "y": 223.43599999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14242904257, + "axes": { + "#": 943 + }, + "bounds": { + "#": 946 + }, + "collisionFilter": { + "#": 949 + }, + "constraintImpulse": { + "#": 950 + }, + "density": 0.001, + "force": { + "#": 951 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 952 + }, + "positionImpulse": { + "#": 953 + }, + "positionPrev": { + "#": 954 + }, + "render": { + "#": 955 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 957 + }, + "vertices": { + "#": 958 + } + }, + [ + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 947 + }, + "min": { + "#": 948 + } + }, + { + "x": 341.831475308642, + "y": 224.81584705075446 + }, + { + "x": 252.32718861454046, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.0793319615912, + "y": 213.83792352537722 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.0793319615912, + "y": 213.83792352537722 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 956 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.32718861454046, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 341.831475308642, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 341.831475308642, + "y": 224.81584705075446 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 252.32718861454046, + "y": 224.81584705075446 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2297.860096, + "axes": { + "#": 964 + }, + "bounds": { + "#": 967 + }, + "collisionFilter": { + "#": 970 + }, + "constraintImpulse": { + "#": 971 + }, + "density": 0.001, + "force": { + "#": 972 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 3520.107347192753, + "inverseInertia": 0.00028408224561602904, + "inverseMass": 0.43518750412209606, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.297860096, + "motion": 0, + "parent": null, + "position": { + "#": 973 + }, + "positionImpulse": { + "#": 974 + }, + "positionPrev": { + "#": 975 + }, + "render": { + "#": 976 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 978 + }, + "vertices": { + "#": 979 + } + }, + [ + { + "#": 965 + }, + { + "#": 966 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 968 + }, + "min": { + "#": 969 + } + }, + { + "x": 389.767475308642, + "y": 250.79599999999996 + }, + { + "x": 341.831475308642, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 365.799475308642, + "y": 226.82799999999997 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 365.799475308642, + "y": 226.82799999999997 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 977 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.767475308642, + "y": 250.79599999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 341.831475308642, + "y": 250.79599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 341.831475308642, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.767475308642, + "y": 202.85999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 942.0065703840771, + "axes": { + "#": 985 + }, + "bounds": { + "#": 988 + }, + "collisionFilter": { + "#": 991 + }, + "constraintImpulse": { + "#": 992 + }, + "density": 0.001, + "force": { + "#": 993 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 994 + }, + "positionImpulse": { + "#": 995 + }, + "positionPrev": { + "#": 996 + }, + "render": { + "#": 997 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 999 + }, + "vertices": { + "#": 1000 + } + }, + [ + { + "#": 986 + }, + { + "#": 987 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 989 + }, + "min": { + "#": 990 + } + }, + { + "x": 410.8274032921811, + "y": 247.58980967078188 + }, + { + "x": 389.767475308642, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.29743930041155, + "y": 225.22490483539093 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.29743930041155, + "y": 225.22490483539093 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 998 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.767475308642, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 410.8274032921811, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 410.8274032921811, + "y": 247.58980967078188 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.767475308642, + "y": 247.58980967078188 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2898.415585731765, + "axes": { + "#": 1006 + }, + "bounds": { + "#": 1009 + }, + "collisionFilter": { + "#": 1012 + }, + "constraintImpulse": { + "#": 1013 + }, + "density": 0.001, + "force": { + "#": 1014 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 1015 + }, + "positionImpulse": { + "#": 1016 + }, + "positionPrev": { + "#": 1017 + }, + "render": { + "#": 1018 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1020 + }, + "vertices": { + "#": 1021 + } + }, + [ + { + "#": 1007 + }, + { + "#": 1008 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1010 + }, + "min": { + "#": 1011 + } + }, + { + "x": 523.0233909465021, + "y": 228.69350480109736 + }, + { + "x": 410.8274032921811, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 466.9253971193416, + "y": 215.77675240054867 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 466.9253971193416, + "y": 215.77675240054867 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1019 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 410.8274032921811, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 523.0233909465021, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 523.0233909465021, + "y": 228.69350480109736 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 410.8274032921811, + "y": 228.69350480109736 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1297.1522559999999, + "axes": { + "#": 1027 + }, + "bounds": { + "#": 1030 + }, + "collisionFilter": { + "#": 1033 + }, + "constraintImpulse": { + "#": 1034 + }, + "density": 0.001, + "force": { + "#": 1035 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1121.7359834972597, + "inverseInertia": 0.0008914753691704523, + "inverseMass": 0.7709195241919234, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.297152256, + "motion": 0, + "parent": null, + "position": { + "#": 1036 + }, + "positionImpulse": { + "#": 1037 + }, + "positionPrev": { + "#": 1038 + }, + "render": { + "#": 1039 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1041 + }, + "vertices": { + "#": 1042 + } + }, + [ + { + "#": 1028 + }, + { + "#": 1029 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1031 + }, + "min": { + "#": 1032 + } + }, + { + "x": 559.0393909465022, + "y": 238.876 + }, + { + "x": 523.0233909465021, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.0313909465021, + "y": 220.868 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 541.0313909465021, + "y": 220.868 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1040 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 559.0393909465022, + "y": 238.876 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 523.0233909465021, + "y": 238.876 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 523.0233909465021, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 559.0393909465022, + "y": 202.85999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6661.542482000001, + "axes": { + "#": 1048 + }, + "bounds": { + "#": 1062 + }, + "circleRadius": 46.273148148148145, + "collisionFilter": { + "#": 1065 + }, + "constraintImpulse": { + "#": 1066 + }, + "density": 0.001, + "force": { + "#": 1067 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 28251.272419191544, + "inverseInertia": 0.00003539663577491412, + "inverseMass": 0.15011538284144801, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.661542482000001, + "motion": 0, + "parent": null, + "position": { + "#": 1068 + }, + "positionImpulse": { + "#": 1069 + }, + "positionPrev": { + "#": 1070 + }, + "render": { + "#": 1071 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1073 + }, + "vertices": { + "#": 1074 + } + }, + [ + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": -0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": -0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": -0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": -0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": -0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": -0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.12048128629971751, + "y": -0.992715598573713 + }, + { + "x": 0.35463801958119895, + "y": -0.9350036764994698 + }, + { + "x": 0.5680534091439667, + "y": -0.822991691549749 + }, + { + "x": 0.7485309706272006, + "y": -0.6630998311053178 + }, + { + "x": 0.8854504735162902, + "y": -0.46473375060326466 + }, + { + "x": 0.9709335210486909, + "y": -0.23934932150309357 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1063 + }, + "min": { + "#": 1064 + } + }, + { + "x": 650.9113909465023, + "y": 295.40599999999995 + }, + { + "x": 559.0393909465022, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 604.9753909465022, + "y": 249.13299999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 604.9753909465022, + "y": 249.13299999999998 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1072 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650.9113909465023, + "y": 254.71099999999998 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 648.2413909465022, + "y": 265.542 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 643.0573909465022, + "y": 275.419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 635.6603909465022, + "y": 283.769 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 626.4793909465022, + "y": 290.106 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 616.0493909465022, + "y": 294.062 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 604.9753909465022, + "y": 295.40599999999995 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 593.9013909465023, + "y": 294.062 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 583.4713909465022, + "y": 290.106 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 574.2903909465023, + "y": 283.769 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 566.8933909465022, + "y": 275.419 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 561.7093909465023, + "y": 265.542 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 559.0393909465022, + "y": 254.71099999999998 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 559.0393909465022, + "y": 243.55499999999998 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 561.7093909465023, + "y": 232.724 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 566.8933909465022, + "y": 222.84699999999998 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 574.2903909465023, + "y": 214.49699999999999 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 583.4713909465022, + "y": 208.16 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 593.9013909465023, + "y": 204.20399999999998 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 604.9753909465022, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 616.0493909465022, + "y": 204.20399999999998 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 626.4793909465022, + "y": 208.16 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 635.6603909465022, + "y": 214.49699999999999 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 643.0573909465022, + "y": 222.84699999999998 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 648.2413909465022, + "y": 232.724 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 650.9113909465023, + "y": 243.55499999999998 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1051.3111283901928, + "axes": { + "#": 1102 + }, + "bounds": { + "#": 1105 + }, + "collisionFilter": { + "#": 1108 + }, + "constraintImpulse": { + "#": 1109 + }, + "density": 0.001, + "force": { + "#": 1110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 1111 + }, + "positionImpulse": { + "#": 1112 + }, + "positionPrev": { + "#": 1113 + }, + "render": { + "#": 1114 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1116 + }, + "vertices": { + "#": 1117 + } + }, + [ + { + "#": 1103 + }, + { + "#": 1104 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1106 + }, + "min": { + "#": 1107 + } + }, + { + "x": 680.4597448559673, + "y": 238.43934670781894 + }, + { + "x": 650.9113909465023, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 665.6855679012348, + "y": 220.64967335390946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 665.6855679012348, + "y": 220.64967335390946 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1115 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 650.9113909465023, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 680.4597448559673, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 680.4597448559673, + "y": 238.43934670781894 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 650.9113909465023, + "y": 238.43934670781894 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6245.524001, + "axes": { + "#": 1123 + }, + "bounds": { + "#": 1131 + }, + "collisionFilter": { + "#": 1134 + }, + "constraintImpulse": { + "#": 1135 + }, + "density": 0.001, + "force": { + "#": 1136 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 24931.28629116745, + "inverseInertia": 0.00004011024494770155, + "inverseMass": 0.16011466769479796, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.245524001, + "motion": 0, + "parent": null, + "position": { + "#": 1137 + }, + "positionImpulse": { + "#": 1138 + }, + "positionPrev": { + "#": 1139 + }, + "render": { + "#": 1140 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1142 + }, + "vertices": { + "#": 1143 + } + }, + [ + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + } + ], + { + "x": 0.6235088590146987, + "y": 0.7818162845133048 + }, + { + "x": -0.22254054198130854, + "y": 0.9749234365706189 + }, + { + "x": -0.9009716362849914, + "y": 0.4338779904649981 + }, + { + "x": -0.9009716362849914, + "y": -0.4338779904649981 + }, + { + "x": -0.22254054198130854, + "y": -0.9749234365706189 + }, + { + "x": 0.6235088590146987, + "y": -0.7818162845133048 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1132 + }, + "min": { + "#": 1133 + } + }, + { + "x": 768.9112071911729, + "y": 296.014 + }, + { + "x": 678.0942071911729, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.8682448559673, + "y": 249.43699999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.8682448559673, + "y": 249.43699999999998 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1141 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 768.9112071911729, + "y": 270.16499999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 736.4992071911729, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 696.0812071911729, + "y": 286.788 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 678.0942071911729, + "y": 249.43699999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 696.0812071911729, + "y": 212.08599999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 736.4992071911729, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 768.9112071911729, + "y": 228.70899999999997 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1694.1455999999998, + "axes": { + "#": 1152 + }, + "bounds": { + "#": 1155 + }, + "collisionFilter": { + "#": 1158 + }, + "constraintImpulse": { + "#": 1159 + }, + "density": 0.001, + "force": { + "#": 1160 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1913.4195426662397, + "inverseInertia": 0.0005226245356554463, + "inverseMass": 0.590268038355145, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.6941456, + "motion": 0, + "parent": null, + "position": { + "#": 1161 + }, + "positionImpulse": { + "#": 1162 + }, + "positionPrev": { + "#": 1163 + }, + "render": { + "#": 1164 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1166 + }, + "vertices": { + "#": 1167 + } + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1156 + }, + "min": { + "#": 1157 + } + }, + { + "x": 810.071207191173, + "y": 244.02 + }, + { + "x": 768.9112071911729, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 789.491207191173, + "y": 223.44 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 789.491207191173, + "y": 223.44 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1165 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 810.071207191173, + "y": 244.02 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 768.9112071911729, + "y": 244.02 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 768.9112071911729, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 810.071207191173, + "y": 202.85999999999999 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4695.386625, + "axes": { + "#": 1173 + }, + "bounds": { + "#": 1181 + }, + "collisionFilter": { + "#": 1184 + }, + "constraintImpulse": { + "#": 1185 + }, + "density": 0.001, + "force": { + "#": 1186 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 1187 + }, + "positionImpulse": { + "#": 1188 + }, + "positionPrev": { + "#": 1189 + }, + "render": { + "#": 1190 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1192 + }, + "vertices": { + "#": 1193 + } + }, + [ + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + } + ], + { + "x": 0.6235000959518373, + "y": 0.7818232730918474 + }, + { + "x": -0.2225264190381346, + "y": 0.9749266602314579 + }, + { + "x": -0.9009718651359478, + "y": 0.43387751524301366 + }, + { + "x": -0.9009718651359478, + "y": -0.43387751524301366 + }, + { + "x": -0.2225264190381346, + "y": -0.9749266602314579 + }, + { + "x": 0.6235000959518373, + "y": -0.7818232730918474 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1182 + }, + "min": { + "#": 1183 + } + }, + { + "x": 886.7640821588376, + "y": 283.63 + }, + { + "x": 808.0200821588376, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 849.4432071911731, + "y": 243.24499999999998 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 849.4432071911731, + "y": 243.24499999999998 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1191 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 886.7640821588376, + "y": 261.21799999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 858.6610821588375, + "y": 283.63 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 823.6160821588376, + "y": 275.631 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 808.0200821588376, + "y": 243.24499999999998 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 823.6160821588376, + "y": 210.85899999999998 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 858.6610821588375, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 886.7640821588376, + "y": 225.272 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2533.681298803042, + "axes": { + "#": 1202 + }, + "bounds": { + "#": 1205 + }, + "collisionFilter": { + "#": 1208 + }, + "constraintImpulse": { + "#": 1209 + }, + "density": 0.001, + "force": { + "#": 1210 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 9087.287047208478, + "inverseInertia": 0.00011004384419739331, + "inverseMass": 0.3946826305551604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.533681298803042, + "motion": 0, + "parent": null, + "position": { + "#": 1211 + }, + "positionImpulse": { + "#": 1212 + }, + "positionPrev": { + "#": 1213 + }, + "render": { + "#": 1214 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1216 + }, + "vertices": { + "#": 1217 + } + }, + [ + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1206 + }, + "min": { + "#": 1207 + } + }, + { + "x": 987.3911397720063, + "y": 228.03892661179694 + }, + { + "x": 886.7640821588376, + "y": 202.85999999999999 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 937.077610965422, + "y": 215.44946330589846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 937.077610965422, + "y": 215.44946330589846 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1215 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 886.7640821588376, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 987.3911397720063, + "y": 202.85999999999999 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 987.3911397720063, + "y": 228.03892661179694 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 886.7640821588376, + "y": 228.03892661179694 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2082.1047164947227, + "axes": { + "#": 1223 + }, + "bounds": { + "#": 1226 + }, + "collisionFilter": { + "#": 1229 + }, + "constraintImpulse": { + "#": 1230 + }, + "density": 0.001, + "force": { + "#": 1231 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2917.86500075833, + "inverseInertia": 0.0003427163353136995, + "inverseMass": 0.4802832403566742, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.082104716494723, + "motion": 0, + "parent": null, + "position": { + "#": 1232 + }, + "positionImpulse": { + "#": 1233 + }, + "positionPrev": { + "#": 1234 + }, + "render": { + "#": 1235 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1237 + }, + "vertices": { + "#": 1238 + } + }, + [ + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1227 + }, + "min": { + "#": 1228 + } + }, + { + "x": 62.57741769547325, + "y": 344.91562037037033 + }, + { + "x": 20, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 41.28870884773663, + "y": 320.4648101851852 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 41.28870884773663, + "y": 320.4648101851852 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1236 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 20, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 62.57741769547325, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 62.57741769547325, + "y": 344.91562037037033 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20, + "y": 344.91562037037033 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2570.1808866424026, + "axes": { + "#": 1244 + }, + "bounds": { + "#": 1247 + }, + "collisionFilter": { + "#": 1250 + }, + "constraintImpulse": { + "#": 1251 + }, + "density": 0.001, + "force": { + "#": 1252 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 7426.992944977438, + "inverseInertia": 0.00013464399487227974, + "inverseMass": 0.38907767355875333, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5701808866424027, + "motion": 0, + "parent": null, + "position": { + "#": 1253 + }, + "positionImpulse": { + "#": 1254 + }, + "positionPrev": { + "#": 1255 + }, + "render": { + "#": 1256 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1258 + }, + "vertices": { + "#": 1259 + } + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1248 + }, + "min": { + "#": 1249 + } + }, + { + "x": 151.03540809327845, + "y": 325.0693840877915 + }, + { + "x": 62.577417695473244, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 106.80641289437585, + "y": 310.54169204389575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 106.80641289437585, + "y": 310.54169204389575 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1257 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 62.577417695473244, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.03540809327845, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 151.03540809327845, + "y": 325.0693840877915 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 62.577417695473244, + "y": 325.0693840877915 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2248.277056, + "axes": { + "#": 1265 + }, + "bounds": { + "#": 1268 + }, + "collisionFilter": { + "#": 1271 + }, + "constraintImpulse": { + "#": 1272 + }, + "density": 0.001, + "force": { + "#": 1273 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 3369.8331470240178, + "inverseInertia": 0.00029675059754312303, + "inverseMass": 0.44478503987366225, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.248277056, + "motion": 0, + "parent": null, + "position": { + "#": 1274 + }, + "positionImpulse": { + "#": 1275 + }, + "positionPrev": { + "#": 1276 + }, + "render": { + "#": 1277 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1279 + }, + "vertices": { + "#": 1280 + } + }, + [ + { + "#": 1266 + }, + { + "#": 1267 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1269 + }, + "min": { + "#": 1270 + } + }, + { + "x": 198.45140809327845, + "y": 343.42999999999995 + }, + { + "x": 151.03540809327845, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 174.74340809327845, + "y": 319.722 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 174.74340809327845, + "y": 319.722 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1278 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 198.45140809327845, + "y": 343.42999999999995 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 151.03540809327845, + "y": 343.42999999999995 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 151.03540809327845, + "y": 296.014 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 198.45140809327845, + "y": 296.014 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4167.4330549999995, + "axes": { + "#": 1286 + }, + "bounds": { + "#": 1294 + }, + "collisionFilter": { + "#": 1297 + }, + "constraintImpulse": { + "#": 1298 + }, + "density": 0.001, + "force": { + "#": 1299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 11100.542061550868, + "inverseInertia": 0.00009008569081177725, + "inverseMass": 0.23995586415004816, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.167433054999999, + "motion": 0, + "parent": null, + "position": { + "#": 1300 + }, + "positionImpulse": { + "#": 1301 + }, + "positionPrev": { + "#": 1302 + }, + "render": { + "#": 1303 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1305 + }, + "vertices": { + "#": 1306 + } + }, + [ + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + } + ], + { + "x": 0.6235095584460711, + "y": 0.7818157267069941 + }, + { + "x": -0.22252973145772786, + "y": 0.974925904167774 + }, + { + "x": -0.9009725986708983, + "y": 0.43387599201178284 + }, + { + "x": -0.9009725986708983, + "y": -0.43387599201178284 + }, + { + "x": -0.22252973145772786, + "y": -0.974925904167774 + }, + { + "x": 0.6235095584460711, + "y": -0.7818157267069941 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1295 + }, + "min": { + "#": 1296 + } + }, + { + "x": 270.7041179511755, + "y": 372.10800000000006 + }, + { + "x": 196.5191179511755, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.54390809327845, + "y": 334.06100000000004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 235.54390809327845, + "y": 334.06100000000004 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1304 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 270.7041179511755, + "y": 350.99300000000005 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 244.2281179511755, + "y": 372.10800000000006 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 211.2121179511755, + "y": 364.57200000000006 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 196.5191179511755, + "y": 334.06100000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 211.2121179511755, + "y": 303.55 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 244.2281179511755, + "y": 296.014 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 270.7041179511755, + "y": 317.129 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1687.7661798887366, + "axes": { + "#": 1315 + }, + "bounds": { + "#": 1318 + }, + "collisionFilter": { + "#": 1321 + }, + "constraintImpulse": { + "#": 1322 + }, + "density": 0.001, + "force": { + "#": 1323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1980.3012000583947, + "inverseInertia": 0.0005049736878261308, + "inverseMass": 0.5924991340127004, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6877661798887367, + "motion": 0, + "parent": null, + "position": { + "#": 1324 + }, + "positionImpulse": { + "#": 1325 + }, + "positionPrev": { + "#": 1326 + }, + "render": { + "#": 1327 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1329 + }, + "vertices": { + "#": 1330 + } + }, + [ + { + "#": 1316 + }, + { + "#": 1317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1319 + }, + "min": { + "#": 1320 + } + }, + { + "x": 306.2144060170191, + "y": 343.54293518518523 + }, + { + "x": 270.7041179511755, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.4592619840973, + "y": 319.7784675925926 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 288.4592619840973, + "y": 319.7784675925926 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1328 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 270.7041179511755, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.2144060170191, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 306.2144060170191, + "y": 343.54293518518523 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 270.7041179511755, + "y": 343.54293518518523 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 888.874596, + "axes": { + "#": 1336 + }, + "bounds": { + "#": 1339 + }, + "collisionFilter": { + "#": 1342 + }, + "constraintImpulse": { + "#": 1343 + }, + "density": 0.001, + "force": { + "#": 1344 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 526.7320316094421, + "inverseInertia": 0.0018984985533241191, + "inverseMass": 1.125018089728374, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.888874596, + "motion": 0, + "parent": null, + "position": { + "#": 1345 + }, + "positionImpulse": { + "#": 1346 + }, + "positionPrev": { + "#": 1347 + }, + "render": { + "#": 1348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1350 + }, + "vertices": { + "#": 1351 + } + }, + [ + { + "#": 1337 + }, + { + "#": 1338 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1340 + }, + "min": { + "#": 1341 + } + }, + { + "x": 336.02840601701905, + "y": 325.828 + }, + { + "x": 306.2144060170191, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 321.12140601701907, + "y": 310.921 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 321.12140601701907, + "y": 310.921 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1349 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.02840601701905, + "y": 325.828 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 306.2144060170191, + "y": 325.828 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 306.2144060170191, + "y": 296.014 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 336.02840601701905, + "y": 296.014 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1624.121534624581, + "axes": { + "#": 1357 + }, + "bounds": { + "#": 1360 + }, + "collisionFilter": { + "#": 1363 + }, + "constraintImpulse": { + "#": 1364 + }, + "density": 0.001, + "force": { + "#": 1365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1766.6812602831346, + "inverseInertia": 0.0005660330601116675, + "inverseMass": 0.6157174686013581, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.624121534624581, + "motion": 0, + "parent": null, + "position": { + "#": 1366 + }, + "positionImpulse": { + "#": 1367 + }, + "positionPrev": { + "#": 1368 + }, + "render": { + "#": 1369 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1371 + }, + "vertices": { + "#": 1372 + } + }, + [ + { + "#": 1358 + }, + { + "#": 1359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1361 + }, + "min": { + "#": 1362 + } + }, + { + "x": 378.3176292680479, + "y": 334.4190925925926 + }, + { + "x": 336.02840601701905, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.17301764253347, + "y": 315.2165462962963 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 357.17301764253347, + "y": 315.2165462962963 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1370 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 336.02840601701905, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 378.3176292680479, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 378.3176292680479, + "y": 334.4190925925926 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 336.02840601701905, + "y": 334.4190925925926 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 925.4335858447538, + "axes": { + "#": 1378 + }, + "bounds": { + "#": 1381 + }, + "collisionFilter": { + "#": 1384 + }, + "constraintImpulse": { + "#": 1385 + }, + "density": 0.001, + "force": { + "#": 1386 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 658.9066011822378, + "inverseInertia": 0.001517665778739746, + "inverseMass": 1.080574570985751, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9254335858447538, + "motion": 0, + "parent": null, + "position": { + "#": 1387 + }, + "positionImpulse": { + "#": 1388 + }, + "positionPrev": { + "#": 1389 + }, + "render": { + "#": 1390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1392 + }, + "vertices": { + "#": 1393 + } + }, + [ + { + "#": 1379 + }, + { + "#": 1380 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1382 + }, + "min": { + "#": 1383 + } + }, + { + "x": 418.33126095529065, + "y": 319.14195781893005 + }, + { + "x": 378.3176292680479, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 398.32444511166926, + "y": 307.57797890946506 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 398.32444511166926, + "y": 307.57797890946506 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1391 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 378.3176292680479, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 418.33126095529065, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 418.33126095529065, + "y": 319.14195781893005 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 378.3176292680479, + "y": 319.14195781893005 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5929.347511999999, + "axes": { + "#": 1399 + }, + "bounds": { + "#": 1413 + }, + "circleRadius": 43.65625, + "collisionFilter": { + "#": 1416 + }, + "constraintImpulse": { + "#": 1417 + }, + "density": 0.001, + "force": { + "#": 1418 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 22382.17146584697, + "inverseInertia": 0.00004467841744157413, + "inverseMass": 0.1686526212161066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.929347512, + "motion": 0, + "parent": null, + "position": { + "#": 1419 + }, + "positionImpulse": { + "#": 1420 + }, + "positionPrev": { + "#": 1421 + }, + "render": { + "#": 1422 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1424 + }, + "vertices": { + "#": 1425 + } + }, + [ + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + } + ], + { + "x": -0.9709364586220396, + "y": -0.23933740476259086 + }, + { + "x": -0.885455576089853, + "y": -0.4647240286141727 + }, + { + "x": -0.7484830648246673, + "y": -0.6631539049652597 + }, + { + "x": -0.5681125845628812, + "y": -0.8229508437697133 + }, + { + "x": -0.3546198602355774, + "y": -0.9350105639651882 + }, + { + "x": -0.12047891877198527, + "y": -0.9927158859067047 + }, + { + "x": 0.12047891877198527, + "y": -0.9927158859067047 + }, + { + "x": 0.3546198602355774, + "y": -0.9350105639651882 + }, + { + "x": 0.5681125845628812, + "y": -0.8229508437697133 + }, + { + "x": 0.7484830648246673, + "y": -0.6631539049652597 + }, + { + "x": 0.885455576089853, + "y": -0.4647240286141727 + }, + { + "x": 0.9709364586220396, + "y": -0.23933740476259086 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1414 + }, + "min": { + "#": 1415 + } + }, + { + "x": 505.0072609552907, + "y": 383.326 + }, + { + "x": 418.33126095529065, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.66926095529067, + "y": 339.67 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.66926095529067, + "y": 339.67 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1423 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.0072609552907, + "y": 344.932 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 502.4882609552907, + "y": 355.151 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 497.59726095529066, + "y": 364.47 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 490.6182609552907, + "y": 372.34700000000004 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 481.9572609552907, + "y": 378.326 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 472.11726095529065, + "y": 382.058 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 461.66926095529067, + "y": 383.326 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 451.2212609552907, + "y": 382.058 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 441.38126095529066, + "y": 378.326 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 432.72026095529066, + "y": 372.34700000000004 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 425.74126095529067, + "y": 364.47 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 420.85026095529065, + "y": 355.151 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 418.33126095529065, + "y": 344.932 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 418.33126095529065, + "y": 334.408 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 420.85026095529065, + "y": 324.189 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 425.74126095529067, + "y": 314.87 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 432.72026095529066, + "y": 306.993 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 441.38126095529066, + "y": 301.014 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 451.2212609552907, + "y": 297.28200000000004 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 461.66926095529067, + "y": 296.014 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 472.11726095529065, + "y": 297.28200000000004 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 481.9572609552907, + "y": 301.014 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 490.6182609552907, + "y": 306.993 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 497.59726095529066, + "y": 314.87 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 502.4882609552907, + "y": 324.189 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 505.0072609552907, + "y": 334.408 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2550.166396822507, + "axes": { + "#": 1453 + }, + "bounds": { + "#": 1456 + }, + "collisionFilter": { + "#": 1459 + }, + "constraintImpulse": { + "#": 1460 + }, + "density": 0.001, + "force": { + "#": 1461 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 10939.165130883785, + "inverseInertia": 0.00009141465441240754, + "inverseMass": 0.392131274745834, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5501663968225072, + "motion": 0, + "parent": null, + "position": { + "#": 1462 + }, + "positionImpulse": { + "#": 1463 + }, + "positionPrev": { + "#": 1464 + }, + "render": { + "#": 1465 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1467 + }, + "vertices": { + "#": 1468 + } + }, + [ + { + "#": 1454 + }, + { + "#": 1455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1457 + }, + "min": { + "#": 1458 + } + }, + { + "x": 616.1010538222316, + "y": 318.9690754458162 + }, + { + "x": 505.00726095529063, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560.5541573887612, + "y": 307.4915377229081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560.5541573887612, + "y": 307.4915377229081 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1466 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.00726095529063, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.1010538222316, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.1010538222316, + "y": 318.9690754458162 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 505.00726095529063, + "y": 318.9690754458162 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5174.381305999998, + "axes": { + "#": 1474 + }, + "bounds": { + "#": 1488 + }, + "circleRadius": 40.782407407407405, + "collisionFilter": { + "#": 1491 + }, + "constraintImpulse": { + "#": 1492 + }, + "density": 0.001, + "force": { + "#": 1493 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17045.3242729355, + "inverseInertia": 0.000058667115039154525, + "inverseMass": 0.1932598200369272, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.174381305999998, + "motion": 0, + "parent": null, + "position": { + "#": 1494 + }, + "positionImpulse": { + "#": 1495 + }, + "positionPrev": { + "#": 1496 + }, + "render": { + "#": 1497 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1499 + }, + "vertices": { + "#": 1500 + } + }, + [ + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + } + ], + { + "x": -0.9709389264723081, + "y": -0.23932739304309056 + }, + { + "x": -0.8854449940324717, + "y": -0.46474419043473386 + }, + { + "x": -0.748536249103088, + "y": -0.6630938725238529 + }, + { + "x": -0.5680775563568219, + "y": -0.8229750239002773 + }, + { + "x": -0.35456531449559353, + "y": -0.9350312496150279 + }, + { + "x": -0.12052880622175748, + "y": -0.9927098301471373 + }, + { + "x": 0.12052880622175748, + "y": -0.9927098301471373 + }, + { + "x": 0.35456531449559353, + "y": -0.9350312496150279 + }, + { + "x": 0.5680775563568219, + "y": -0.8229750239002773 + }, + { + "x": 0.748536249103088, + "y": -0.6630938725238529 + }, + { + "x": 0.8854449940324717, + "y": -0.46474419043473386 + }, + { + "x": 0.9709389264723081, + "y": -0.23932739304309056 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1489 + }, + "min": { + "#": 1490 + } + }, + { + "x": 697.0710538222316, + "y": 377.578 + }, + { + "x": 616.1010538222316, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 656.5860538222316, + "y": 336.796 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 656.5860538222316, + "y": 336.796 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1498 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 697.0710538222316, + "y": 341.712 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 694.7180538222316, + "y": 351.258 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 690.1490538222316, + "y": 359.96299999999997 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 683.6300538222316, + "y": 367.322 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 675.5390538222316, + "y": 372.907 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 666.3460538222316, + "y": 376.393 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 656.5860538222316, + "y": 377.578 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 646.8260538222316, + "y": 376.393 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 637.6330538222317, + "y": 372.907 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 629.5420538222317, + "y": 367.322 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 623.0230538222316, + "y": 359.96299999999997 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 618.4540538222317, + "y": 351.258 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 616.1010538222316, + "y": 341.712 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 616.1010538222316, + "y": 331.88 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 618.4540538222317, + "y": 322.334 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 623.0230538222316, + "y": 313.62899999999996 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 629.5420538222317, + "y": 306.27 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 637.6330538222317, + "y": 300.685 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 646.8260538222316, + "y": 297.199 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 656.5860538222316, + "y": 296.014 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 666.3460538222316, + "y": 297.199 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 675.5390538222316, + "y": 300.685 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 683.6300538222316, + "y": 306.27 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 690.1490538222316, + "y": 313.62899999999996 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 694.7180538222316, + "y": 322.334 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 697.0710538222316, + "y": 331.88 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1308.2034644955884, + "axes": { + "#": 1528 + }, + "bounds": { + "#": 1531 + }, + "collisionFilter": { + "#": 1534 + }, + "constraintImpulse": { + "#": 1535 + }, + "density": 0.001, + "force": { + "#": 1536 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1149.8579054087725, + "inverseInertia": 0.0008696726745940854, + "inverseMass": 0.7644070873834413, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3082034644955884, + "motion": 0, + "parent": null, + "position": { + "#": 1537 + }, + "positionImpulse": { + "#": 1538 + }, + "positionPrev": { + "#": 1539 + }, + "render": { + "#": 1540 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1542 + }, + "vertices": { + "#": 1543 + } + }, + [ + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1532 + }, + "min": { + "#": 1533 + } + }, + { + "x": 735.5731114354004, + "y": 329.99149485596706 + }, + { + "x": 697.0710538222316, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.322082628816, + "y": 313.00274742798354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 716.322082628816, + "y": 313.00274742798354 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1541 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 697.0710538222316, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 735.5731114354004, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 735.5731114354004, + "y": 329.99149485596706 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 697.0710538222316, + "y": 329.99149485596706 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3803.7767479999993, + "axes": { + "#": 1549 + }, + "bounds": { + "#": 1557 + }, + "collisionFilter": { + "#": 1560 + }, + "constraintImpulse": { + "#": 1561 + }, + "density": 0.001, + "force": { + "#": 1562 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 9247.768748441516, + "inverseInertia": 0.00010813419184692798, + "inverseMass": 0.2628966067805618, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.8037767479999993, + "motion": 0, + "parent": null, + "position": { + "#": 1563 + }, + "positionImpulse": { + "#": 1564 + }, + "positionPrev": { + "#": 1565 + }, + "render": { + "#": 1566 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1568 + }, + "vertices": { + "#": 1569 + } + }, + [ + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + } + ], + { + "x": 0.623488113338336, + "y": 0.7818328290151305 + }, + { + "x": -0.22254280104331042, + "y": 0.9749229209039029 + }, + { + "x": -0.9009618424321717, + "y": 0.43389832735472317 + }, + { + "x": -0.9009618424321717, + "y": -0.43389832735472317 + }, + { + "x": -0.22254280104331042, + "y": -0.9749229209039029 + }, + { + "x": 0.623488113338336, + "y": -0.7818328290151305 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1558 + }, + "min": { + "#": 1559 + } + }, + { + "x": 804.6017507639486, + "y": 368.712 + }, + { + "x": 733.7267507639486, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 771.0106114354004, + "y": 332.363 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 771.0106114354004, + "y": 332.363 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1567 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 804.6017507639486, + "y": 348.54 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 779.3067507639487, + "y": 368.712 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 747.7647507639487, + "y": 361.512 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 733.7267507639486, + "y": 332.363 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 747.7647507639487, + "y": 303.214 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 779.3067507639487, + "y": 296.014 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 804.6017507639486, + "y": 316.186 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1519.5385669833, + "axes": { + "#": 1578 + }, + "bounds": { + "#": 1581 + }, + "collisionFilter": { + "#": 1584 + }, + "constraintImpulse": { + "#": 1585 + }, + "density": 0.001, + "force": { + "#": 1586 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1623.6987742797708, + "inverseInertia": 0.0006158777821604092, + "inverseMass": 0.6580945174595165, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5195385669833, + "motion": 0, + "parent": null, + "position": { + "#": 1587 + }, + "positionImpulse": { + "#": 1588 + }, + "positionPrev": { + "#": 1589 + }, + "render": { + "#": 1590 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1592 + }, + "vertices": { + "#": 1593 + } + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1582 + }, + "min": { + "#": 1583 + } + }, + { + "x": 837.6605213400803, + "y": 341.97876337448565 + }, + { + "x": 804.6017507639486, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 821.1311360520144, + "y": 318.99638168724283 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 821.1311360520144, + "y": 318.99638168724283 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1591 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 804.6017507639486, + "y": 296.014 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 837.6605213400803, + "y": 296.014 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 837.6605213400803, + "y": 341.97876337448565 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 804.6017507639486, + "y": 341.97876337448565 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3306.4800040000005, + "axes": { + "#": 1599 + }, + "bounds": { + "#": 1602 + }, + "collisionFilter": { + "#": 1605 + }, + "constraintImpulse": { + "#": 1606 + }, + "density": 0.001, + "force": { + "#": 1607 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 7288.540011234562, + "inverseInertia": 0.00013720168901571494, + "inverseMass": 0.302436427496992, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.3064800040000004, + "motion": 0, + "parent": null, + "position": { + "#": 1608 + }, + "positionImpulse": { + "#": 1609 + }, + "positionPrev": { + "#": 1610 + }, + "render": { + "#": 1611 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1613 + }, + "vertices": { + "#": 1614 + } + }, + [ + { + "#": 1600 + }, + { + "#": 1601 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 1603 + }, + "min": { + "#": 1604 + } + }, + { + "x": 895.1625213400803, + "y": 353.51599999999996 + }, + { + "x": 837.6605213400803, + "y": 296.014 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 866.4115213400803, + "y": 324.765 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 866.4115213400803, + "y": 324.765 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1612 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 895.1625213400803, + "y": 353.51599999999996 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 837.6605213400803, + "y": 353.51599999999996 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 837.6605213400803, + "y": 296.014 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 895.1625213400803, + "y": 296.014 + }, + [], + [], + [ + { + "#": 1622 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1623 + }, + "pointB": "", + "render": { + "#": 1624 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/views/views-10.json b/tests/browser/refs/views/views-10.json new file mode 100644 index 00000000..45606b4d --- /dev/null +++ b/tests/browser/refs/views/views-10.json @@ -0,0 +1,14877 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 90 + }, + "composites": { + "#": 93 + }, + "constraints": { + "#": 1685 + }, + "gravity": { + "#": 1689 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "max": { + "#": 91 + }, + "min": { + "#": 92 + } + }, + { + "x": 1100, + "y": 900 + }, + { + "x": -300, + "y": -300 + }, + [ + { + "#": 94 + } + ], + { + "bodies": { + "#": 95 + }, + "composites": { + "#": 1683 + }, + "constraints": { + "#": 1684 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 96 + }, + { + "#": 118 + }, + { + "#": 140 + }, + { + "#": 162 + }, + { + "#": 184 + }, + { + "#": 209 + }, + { + "#": 235 + }, + { + "#": 290 + }, + { + "#": 312 + }, + { + "#": 334 + }, + { + "#": 356 + }, + { + "#": 378 + }, + { + "#": 400 + }, + { + "#": 430 + }, + { + "#": 452 + }, + { + "#": 478 + }, + { + "#": 500 + }, + { + "#": 522 + }, + { + "#": 577 + }, + { + "#": 599 + }, + { + "#": 621 + }, + { + "#": 676 + }, + { + "#": 698 + }, + { + "#": 720 + }, + { + "#": 742 + }, + { + "#": 767 + }, + { + "#": 792 + }, + { + "#": 814 + }, + { + "#": 839 + }, + { + "#": 861 + }, + { + "#": 886 + }, + { + "#": 908 + }, + { + "#": 930 + }, + { + "#": 952 + }, + { + "#": 980 + }, + { + "#": 1002 + }, + { + "#": 1024 + }, + { + "#": 1046 + }, + { + "#": 1068 + }, + { + "#": 1090 + }, + { + "#": 1145 + }, + { + "#": 1167 + }, + { + "#": 1197 + }, + { + "#": 1219 + }, + { + "#": 1249 + }, + { + "#": 1271 + }, + { + "#": 1293 + }, + { + "#": 1315 + }, + { + "#": 1337 + }, + { + "#": 1367 + }, + { + "#": 1389 + }, + { + "#": 1411 + }, + { + "#": 1433 + }, + { + "#": 1455 + }, + { + "#": 1510 + }, + { + "#": 1532 + }, + { + "#": 1587 + }, + { + "#": 1609 + }, + { + "#": 1639 + }, + { + "#": 1661 + } + ], + { + "angle": 0.07445967011819259, + "anglePrev": 0.05835635109961011, + "angularSpeed": 0.013964360576911297, + "angularVelocity": 0.01599753454302246, + "area": 1534.906434764454, + "axes": { + "#": 97 + }, + "bounds": { + "#": 100 + }, + "collisionFilter": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "density": 0.001, + "force": { + "#": 105 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1587.6055011053381, + "inverseInertia": 0.0006298793997021113, + "inverseMass": 0.6515055102713538, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5349064347644539, + "motion": 0, + "parent": null, + "position": { + "#": 106 + }, + "positionImpulse": { + "#": 107 + }, + "positionPrev": { + "#": 108 + }, + "region": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2087669783591408, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": -0.07439088544462749, + "y": 0.9972291593022962 + }, + { + "x": -0.9972291593022962, + "y": -0.07439088544462749 + }, + { + "max": { + "#": 101 + }, + "min": { + "#": 102 + } + }, + { + "x": 59.86821653554023, + "y": 73.82205705894815 + }, + { + "x": 20.140906681524932, + "y": 27.892868010098887 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.86036695556168, + "y": 50.27053212634254 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.555883779613346, + "y": 49.32462403724448 + }, + { + "endCol": 1, + "endRow": 1, + "id": "0,1,0,1", + "startCol": 0, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3112337967524468, + "y": 0.9340047986645743 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 23.27753101652481, + "y": 27.892868010098887 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 59.57982722959841, + "y": 30.600931581819083 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 56.443202894598514, + "y": 72.64819624258622 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.140906681524932, + "y": 69.94013267086602 + }, + { + "angle": 0.06898784932673126, + "anglePrev": 0.05334525777426746, + "angularSpeed": 0.01353673657723852, + "angularVelocity": 0.01567281611548263, + "area": 2220.52878634164, + "axes": { + "#": 119 + }, + "bounds": { + "#": 122 + }, + "collisionFilter": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "density": 0.001, + "force": { + "#": 127 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 3297.2181257907896, + "inverseInertia": 0.00030328597073333284, + "inverseMass": 0.45034318228655684, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.22052878634164, + "motion": 0, + "parent": null, + "position": { + "#": 128 + }, + "positionImpulse": { + "#": 129 + }, + "positionPrev": { + "#": 130 + }, + "region": { + "#": 131 + }, + "render": { + "#": 132 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9959156495863588, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 134 + }, + "vertices": { + "#": 135 + } + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": -0.06893313976696294, + "y": 0.9976212819712039 + }, + { + "x": -0.9976212819712039, + "y": -0.06893313976696294 + }, + { + "max": { + "#": 123 + }, + "min": { + "#": 124 + } + }, + { + "x": 104.67078844758146, + "y": 86.19859353077695 + }, + { + "x": 55.92234308112925, + "y": 32.2009505936972 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 80.21526990087655, + "y": 58.20513102012832 + }, + { + "x": 0.04507970940676982, + "y": 0.00551995514406558 + }, + { + "x": 80.05164459286439, + "y": 56.34211550750092 + }, + { + "endCol": 2, + "endRow": 1, + "id": "1,2,0,1", + "startCol": 1, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 133 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.16634553563514487, + "y": 1.862301479488373 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 59.30014671343701, + "y": 32.2009505936972 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 104.50819672062384, + "y": 35.32471397570894 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 101.1303930883161, + "y": 84.20931144655945 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 55.92234308112925, + "y": 81.08554806454774 + }, + { + "angle": 0.04185054699428338, + "anglePrev": 0.03346385267264878, + "angularSpeed": 0.00902763701597345, + "angularVelocity": 0.0086644407328091, + "area": 1140.197701571206, + "axes": { + "#": 141 + }, + "bounds": { + "#": 144 + }, + "collisionFilter": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "density": 0.001, + "force": { + "#": 149 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 905.8524982789938, + "inverseInertia": 0.0011039324855866431, + "inverseMass": 0.8770408838940722, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.140197701571206, + "motion": 0, + "parent": null, + "position": { + "#": 150 + }, + "positionImpulse": { + "#": 151 + }, + "positionPrev": { + "#": 152 + }, + "region": { + "#": 153 + }, + "render": { + "#": 154 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.5018674977003648, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 156 + }, + "vertices": { + "#": 157 + } + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": -0.04183833141313979, + "y": 0.9991243936690586 + }, + { + "x": -0.9991243936690586, + "y": -0.04183833141313979 + }, + { + "max": { + "#": 145 + }, + "min": { + "#": 146 + } + }, + { + "x": 143.79435411121392, + "y": 68.55680090177142 + }, + { + "x": 103.06389701762347, + "y": 35.38976452116489 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 123.26527601892072, + "y": 50.73312603973169 + }, + { + "x": 0.012478893434547157, + "y": 0.02553052864631064 + }, + { + "x": 122.88515380533971, + "y": 48.334110623004975 + }, + { + "endCol": 2, + "endRow": 1, + "id": "2,2,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 155 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.3878075627132773, + "y": 2.4047255791483195 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 104.28018939449996, + "y": 35.38976452116489 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 143.4666550202179, + "y": 37.03069766837564 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 142.25036264334142, + "y": 66.0764875582985 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 103.06389701762347, + "y": 64.43555441108775 + }, + { + "angle": 0.03280565133427562, + "anglePrev": 0.01903907162932177, + "angularSpeed": 0.011965226105519299, + "angularVelocity": 0.01361328392156047, + "area": 752.4076041785743, + "axes": { + "#": 163 + }, + "bounds": { + "#": 166 + }, + "collisionFilter": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "density": 0.001, + "force": { + "#": 171 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 384.6368682420571, + "inverseInertia": 0.002599854778795377, + "inverseMass": 1.3290668441498934, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.7524076041785743, + "motion": 0, + "parent": null, + "position": { + "#": 172 + }, + "positionImpulse": { + "#": 173 + }, + "positionPrev": { + "#": 174 + }, + "region": { + "#": 175 + }, + "render": { + "#": 176 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.818300919673157, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 178 + }, + "vertices": { + "#": 179 + } + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.03279976735174861, + "y": 0.9994619428781024 + }, + { + "x": -0.9994619428781024, + "y": -0.03279976735174861 + }, + { + "max": { + "#": 167 + }, + "min": { + "#": 168 + } + }, + { + "x": 168.37393860282344, + "y": 70.78690526126698 + }, + { + "x": 142.2478992789022, + "y": 36.93715201952571 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 155.17587398871984, + "y": 52.45936407630472 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 154.89400363993232, + "y": 49.7374391703069 + }, + { + "endCol": 3, + "endRow": 1, + "id": "2,3,0,1", + "startCol": 2, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 177 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2702239786980556, + "y": 2.713271731797356 + }, + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 143.23991930013247, + "y": 36.93715201952571 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 168.1038486985375, + "y": 37.75312215778784 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.11182867730722, + "y": 67.98157613308373 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 142.2478992789022, + "y": 67.16560599482159 + }, + { + "angle": 0.014263491998978941, + "anglePrev": 0.009496150569933883, + "angularSpeed": 0.004596865390569766, + "angularVelocity": 0.004978462539297299, + "area": 2027.2541820000001, + "axes": { + "#": 185 + }, + "bounds": { + "#": 189 + }, + "collisionFilter": { + "#": 192 + }, + "constraintImpulse": { + "#": 193 + }, + "density": 0.001, + "force": { + "#": 194 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 2636.411960994776, + "inverseInertia": 0.00037930339218407964, + "inverseMass": 0.49327805505545624, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.027254182, + "motion": 0, + "parent": null, + "position": { + "#": 195 + }, + "positionImpulse": { + "#": 196 + }, + "positionPrev": { + "#": 197 + }, + "region": { + "#": 198 + }, + "render": { + "#": 199 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9118860967597024, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 201 + }, + "vertices": { + "#": 202 + } + }, + [ + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": -0.48760566337162187, + "y": -0.8730639822188984 + }, + { + "x": 0.5123097771744258, + "y": -0.8588007290469023 + }, + { + "x": 0.999898278122601, + "y": 0.0142630083593043 + }, + { + "max": { + "#": 190 + }, + "min": { + "#": 191 + } + }, + { + "x": 216.06929914926823, + "y": 94.4127882912804 + }, + { + "x": 167.06946023728378, + "y": 35.647239760864295 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 191.457210921102, + "y": 63.57839826194102 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 191.20922307866473, + "y": 60.66983934574698 + }, + { + "endCol": 4, + "endRow": 1, + "id": "3,4,0,1", + "startCol": 3, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 200 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.24582640799965816, + "y": 2.895824456909885 + }, + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 215.4465387294114, + "y": 77.88901394769934 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 191.05878804559316, + "y": 91.50955676301774 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 167.06946023728378, + "y": 77.19894107725946 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 167.46788311279258, + "y": 49.267782576182725 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 191.85563379661082, + "y": 35.647239760864295 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 215.8449616049202, + "y": 49.957855446622574 + }, + { + "angle": -0.003945049221952362, + "anglePrev": -0.0034570638351636785, + "angularSpeed": 0.0008240257332086331, + "angularVelocity": -0.0005382718157323518, + "area": 4842.27229, + "axes": { + "#": 210 + }, + "bounds": { + "#": 216 + }, + "collisionFilter": { + "#": 219 + }, + "constraintImpulse": { + "#": 220 + }, + "density": 0.001, + "force": { + "#": 221 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 15180.565500975656, + "inverseInertia": 0.00006587369883788124, + "inverseMass": 0.20651461547611563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.84227229, + "motion": 0, + "parent": null, + "position": { + "#": 222 + }, + "positionImpulse": { + "#": 223 + }, + "positionPrev": { + "#": 224 + }, + "region": { + "#": 225 + }, + "render": { + "#": 226 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.995501922552666, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 228 + }, + "vertices": { + "#": 229 + } + }, + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "x": 0.31276955396675266, + "y": 0.9498290404654083 + }, + { + "x": -0.8066937133009743, + "y": 0.5909697563502601 + }, + { + "x": -0.8113313647914389, + "y": -0.5845865346598919 + }, + { + "x": 0.3052656516165043, + "y": -0.9522672324212103 + }, + { + "x": 0.9999922183034106, + "y": -0.0039450389888883615 + }, + { + "max": { + "#": 217 + }, + "min": { + "#": 218 + } + }, + { + "x": 291.9664134495021, + "y": 130.8147532298421 + }, + { + "x": 210.06402707288447, + "y": 41.98421552575341 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.19206178265293, + "y": 84.8488664443037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 255.01273139404233, + "y": 81.86468676982692 + }, + { + "endCol": 6, + "endRow": 2, + "id": "4,6,0,2", + "startCol": 4, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 227 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.18065804113712147, + "y": 2.9914817407357503 + }, + [ + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 291.8060378949577, + "y": 111.23062817586771 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 241.41610548964275, + "y": 127.82354754491817 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 210.06402707288447, + "y": 85.02689968612631 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 241.0774633428366, + "y": 41.98421552575341 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 291.59674568651917, + "y": 58.17904101043517 + }, + { + "angle": -0.0003528163697920424, + "anglePrev": -0.00022804792135504854, + "angularSpeed": 0.0001247684484369939, + "angularVelocity": -0.0001247684484369939, + "area": 3079.0178339999993, + "axes": { + "#": 236 + }, + "bounds": { + "#": 250 + }, + "circleRadius": 31.459233539094647, + "collisionFilter": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "density": 0.001, + "force": { + "#": 255 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 6035.493938702403, + "inverseInertia": 0.0001656865221233234, + "inverseMass": 0.3247788918133302, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 3.079017833999999, + "motion": 0, + "parent": null, + "position": { + "#": 256 + }, + "positionImpulse": { + "#": 257 + }, + "positionPrev": { + "#": 258 + }, + "region": { + "#": 259 + }, + "render": { + "#": 260 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9303315130230945, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 262 + }, + "vertices": { + "#": 263 + } + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + } + ], + { + "x": -0.971028118297543, + "y": -0.23896525579157432 + }, + { + "x": -0.8855821844723922, + "y": -0.46448271716513384 + }, + { + "x": -0.7487697261741857, + "y": -0.6628302174501661 + }, + { + "x": -0.5683683545866954, + "y": -0.8227742178170219 + }, + { + "x": -0.3549046033263034, + "y": -0.9349025203398476 + }, + { + "x": -0.12086273506990822, + "y": -0.9926692295379269 + }, + { + "x": 0.12016224513025908, + "y": -0.9927542670999986 + }, + { + "x": 0.35424481719776385, + "y": -0.9351527198744185 + }, + { + "x": 0.567787636709211, + "y": -0.823175072266021 + }, + { + "x": 0.7483018250979903, + "y": -0.6633584088221212 + }, + { + "x": 0.885254209813936, + "y": -0.4651074972591857 + }, + { + "x": 0.9708592548574596, + "y": -0.23965038547354403 + }, + { + "x": 0.9999999377603049, + "y": -0.0003528163624723146 + }, + { + "max": { + "#": 251 + }, + "min": { + "#": 252 + } + }, + { + "x": 353.39690439896094, + "y": 106.7717258057096 + }, + { + "x": 290.82416814690777, + "y": 40.92546596848775 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 322.0555040828086, + "y": 72.3844640104892 + }, + { + "x": -0.033094734660577094, + "y": 0.15033754430226576 + }, + { + "x": 321.94543970255717, + "y": 69.45620025727023 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,0,2", + "startCol": 6, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 261 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11006438025144348, + "y": 2.928263753218976 + }, + [ + { + "#": 264 + }, + { + "#": 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 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 353.2868400187095, + "y": 76.16544531947626 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 351.4744382713677, + "y": 83.53008522284104 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 347.9518076526367, + "y": 90.24632848257919 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 342.9248109041298, + "y": 95.92510244273133 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 336.68533122545733, + "y": 100.23530410152088 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 329.59528038999764, + "y": 102.92680575498466 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 322.0666033327556, + "y": 103.84346205249062 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 314.53728132720306, + "y": 102.93211846377075 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 307.44533304534605, + "y": 100.24562045195957 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 301.2028135008944, + "y": 95.9398226470064 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 296.1718108754081, + "y": 90.26459731382799 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 292.64444193292894, + "y": 83.55084140944527 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 290.82684390620085, + "y": 76.18748222947629 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 290.82416814690777, + "y": 68.60348270150212 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 292.63656989424953, + "y": 61.23884279813735 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 296.15920051298053, + "y": 54.52259953839919 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 301.18619726148745, + "y": 48.843825578247056 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 307.4256769401599, + "y": 44.53362391945747 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 314.5157277756196, + "y": 41.842122265993716 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 322.04440483286163, + "y": 40.92546596848775 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 329.5737268384142, + "y": 41.83680955720761 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 336.6656751202712, + "y": 44.52330756901878 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 342.9081946647228, + "y": 48.82910537397199 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 347.93919729020917, + "y": 54.50433070715038 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 351.4665662326883, + "y": 61.21808661153311 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 353.2841642594164, + "y": 68.5814457915021 + }, + { + "angle": 0.002014009142289523, + "anglePrev": 0.0016318587895234023, + "angularSpeed": 0.0003802943192530492, + "angularVelocity": 0.000350153020848678, + "area": 1329.4167625219097, + "axes": { + "#": 291 + }, + "bounds": { + "#": 294 + }, + "collisionFilter": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "density": 0.001, + "force": { + "#": 299 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1383.5124568270019, + "inverseInertia": 0.0007227979734229763, + "inverseMass": 0.7522095615095113, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3294167625219098, + "motion": 0, + "parent": null, + "position": { + "#": 300 + }, + "positionImpulse": { + "#": 301 + }, + "positionPrev": { + "#": 302 + }, + "region": { + "#": 303 + }, + "render": { + "#": 304 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.891019398798657, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 306 + }, + "vertices": { + "#": 307 + } + }, + [ + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "x": -0.0020140077807414667, + "y": 0.9999979718842729 + }, + { + "x": -0.9999979718842729, + "y": -0.0020140077807414667 + }, + { + "max": { + "#": 295 + }, + "min": { + "#": 296 + } + }, + { + "x": 401.4978365164123, + "y": 67.10808984780826 + }, + { + "x": 352.66459960159926, + "y": 36.86425763943551 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 377.081615873226, + "y": 50.54066409896317 + }, + { + "x": 0.0026686088037196913, + "y": 0.0000047603913042024375 + }, + { + "x": 377.0824479848197, + "y": 47.64954637237944 + }, + { + "endCol": 8, + "endRow": 1, + "id": "7,8,0,1", + "startCol": 7, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 305 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0013420808641626536, + "y": 2.8900207943853573 + }, + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 352.72028626617504, + "y": 36.86425763943551 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 401.4978365164123, + "y": 36.96249620440417 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 401.44294548027693, + "y": 64.21707055849082 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 352.6653952300397, + "y": 64.11883199352215 + }, + { + "angle": 0.0002397042586295687, + "anglePrev": 0.00012683434866586022, + "angularSpeed": 0.00007627594922206422, + "angularVelocity": 0.00010697599906221697, + "area": 2858.632357296012, + "axes": { + "#": 313 + }, + "bounds": { + "#": 316 + }, + "collisionFilter": { + "#": 319 + }, + "constraintImpulse": { + "#": 320 + }, + "density": 0.001, + "force": { + "#": 321 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 11948.096005138343, + "inverseInertia": 0.00008369534355682652, + "inverseMass": 0.3498176313046084, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.858632357296012, + "motion": 0, + "parent": null, + "position": { + "#": 322 + }, + "positionImpulse": { + "#": 323 + }, + "positionPrev": { + "#": 324 + }, + "region": { + "#": 325 + }, + "render": { + "#": 326 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.904423596344377, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 328 + }, + "vertices": { + "#": 329 + } + }, + [ + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "x": -0.00023970425633407553, + "y": 0.9999999712709342 + }, + { + "x": -0.9999999712709342, + "y": -0.00023970425633407553 + }, + { + "max": { + "#": 317 + }, + "min": { + "#": 318 + } + }, + { + "x": 510.3041740576686, + "y": 66.89341329274617 + }, + { + "x": 401.4401160311097, + "y": 37.7018824681489 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 455.8705595742545, + "y": 50.845436947753896 + }, + { + "x": 0.0025353259596692253, + "y": -0.0000015795019659883575 + }, + { + "x": 455.86737232947934, + "y": 47.93829866820848 + }, + { + "endCol": 10, + "endRow": 1, + "id": "8,10,0,1", + "startCol": 8, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 327 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0034244077299945275, + "y": 2.9076484116189363 + }, + [ + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 401.44641090861325, + "y": 37.7018824681489 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 510.3010031173993, + "y": 37.72797537797247 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 510.2947082398958, + "y": 63.988991427358876 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 401.4401160311097, + "y": 63.96289851753531 + }, + { + "angle": 0.0013197634636950648, + "anglePrev": 0.0006989811101104764, + "angularSpeed": 0.0003819785234120505, + "angularVelocity": -0.0005144863693162366, + "area": 926.8394636035856, + "axes": { + "#": 335 + }, + "bounds": { + "#": 338 + }, + "collisionFilter": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "density": 0.001, + "force": { + "#": 343 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 640.733963254663, + "inverseInertia": 0.001560710150154074, + "inverseMass": 1.0789354999105925, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9268394636035856, + "motion": 0, + "parent": null, + "position": { + "#": 344 + }, + "positionImpulse": { + "#": 345 + }, + "positionPrev": { + "#": 346 + }, + "region": { + "#": 347 + }, + "render": { + "#": 348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9159836565704227, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 350 + }, + "vertices": { + "#": 351 + } + }, + [ + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "x": -0.0013197630805731313, + "y": 0.9999991291123261 + }, + { + "x": -0.9999991291123261, + "y": -0.0013197630805731313 + }, + { + "max": { + "#": 339 + }, + "min": { + "#": 340 + } + }, + { + "x": 549.0456050999973, + "y": 64.64694069255583 + }, + { + "x": 510.24532538166636, + "y": 37.76499197131285 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 529.6389830029966, + "y": 49.747988913748756 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 529.6260164851954, + "y": 46.84055345303018 + }, + { + "endCol": 11, + "endRow": 1, + "id": "10,11,0,1", + "startCol": 10, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 349 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.012956809550018988, + "y": 2.94793641393742 + }, + [ + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 510.2768873392268, + "y": 37.76499197131285 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 549.0326406243266, + "y": 37.816140428202885 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 549.0010786667663, + "y": 61.73098585618466 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 510.24532538166636, + "y": 61.67983739929464 + }, + { + "angle": -0.0006428344899314241, + "anglePrev": -0.00047952066097481594, + "angularSpeed": 0.00016331382895660814, + "angularVelocity": -0.00016331382895660814, + "area": 1290.4501361223834, + "axes": { + "#": 357 + }, + "bounds": { + "#": 360 + }, + "collisionFilter": { + "#": 363 + }, + "constraintImpulse": { + "#": 364 + }, + "density": 0.001, + "force": { + "#": 365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1110.2145636383336, + "inverseInertia": 0.0009007267898944285, + "inverseMass": 0.7749233945643617, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.2904501361223835, + "motion": 0, + "parent": null, + "position": { + "#": 366 + }, + "positionImpulse": { + "#": 367 + }, + "positionPrev": { + "#": 368 + }, + "region": { + "#": 369 + }, + "render": { + "#": 370 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8792453183859594, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 372 + }, + "vertices": { + "#": 373 + } + }, + [ + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "x": 0.0006428344456576799, + "y": 0.9999997933819162 + }, + { + "x": -0.9999997933819162, + "y": 0.0006428344456576799 + }, + { + "max": { + "#": 361 + }, + "min": { + "#": 362 + } + }, + { + "x": 584.8744863650361, + "y": 76.5886212369089 + }, + { + "x": 549.0753194704051, + "y": 37.61039146488355 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 566.9720706887512, + "y": 55.65988647768632 + }, + { + "x": 0.0037272632879857847, + "y": 0 + }, + { + "x": 566.9664062308123, + "y": 52.78064673126649 + }, + { + "endCol": 12, + "endRow": 1, + "id": "11,12,0,1", + "startCol": 11, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 371 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005664457938929672, + "y": 2.879239746419829 + }, + [ + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 549.0753194704051, + "y": 37.63338585802394 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 584.8456310096516, + "y": 37.61039146488355 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 584.8688219070972, + "y": 73.68638709734869 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 549.0985103678507, + "y": 73.70938149048908 + }, + { + "angle": -0.0019137993573372758, + "anglePrev": -0.0013956296441222996, + "angularSpeed": 0.000939523336371687, + "angularVelocity": -0.0005368046761495494, + "area": 1148.2925932011974, + "axes": { + "#": 379 + }, + "bounds": { + "#": 382 + }, + "collisionFilter": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "density": 0.001, + "force": { + "#": 387 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 897.9475703967067, + "inverseInertia": 0.001113650766445314, + "inverseMass": 0.8708581818961412, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.1482925932011974, + "motion": 0, + "parent": null, + "position": { + "#": 388 + }, + "positionImpulse": { + "#": 389 + }, + "positionPrev": { + "#": 390 + }, + "region": { + "#": 391 + }, + "render": { + "#": 392 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.899966703635072, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 394 + }, + "vertices": { + "#": 395 + } + }, + [ + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "x": 0.0019137981890816435, + "y": 0.9999981686865689 + }, + { + "x": -0.9999981686865689, + "y": 0.0019137981890816435 + }, + { + "max": { + "#": 383 + }, + "min": { + "#": 384 + } + }, + { + "x": 615.5454431094741, + "y": 78.3159119685451 + }, + { + "x": 584.9180102696346, + "y": 37.776262505111596 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600.2320533228566, + "y": 56.59610392180066 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 600.2326651983644, + "y": 53.6745096086202 + }, + { + "endCol": 12, + "endRow": 1, + "id": "12,12,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 393 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0006137060879609635, + "y": 2.9206377981506932 + }, + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 584.918663536239, + "y": 37.834738441420086 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 615.4735201320574, + "y": 37.776262505111596 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 615.5454431094741, + "y": 75.35746940218122 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 584.9905865136558, + "y": 75.4159453384897 + }, + { + "angle": -0.00024045459191298946, + "anglePrev": -0.00014491586335403154, + "angularSpeed": 0.00037326069438534576, + "angularVelocity": -0.00010782137727696065, + "area": 1926.7878890000002, + "axes": { + "#": 401 + }, + "bounds": { + "#": 409 + }, + "collisionFilter": { + "#": 412 + }, + "constraintImpulse": { + "#": 413 + }, + "density": 0.001, + "force": { + "#": 414 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 2372.8743306802635, + "inverseInertia": 0.0004214298191313472, + "inverseMass": 0.5189984874354792, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9267878890000003, + "motion": 0, + "parent": null, + "position": { + "#": 415 + }, + "positionImpulse": { + "#": 416 + }, + "positionPrev": { + "#": 417 + }, + "region": { + "#": 418 + }, + "render": { + "#": 419 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.92459745768852, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 421 + }, + "vertices": { + "#": 422 + } + }, + [ + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 0.6236800766810191, + "y": 0.7816797054747924 + }, + { + "x": -0.22228377723957624, + "y": 0.9749820113089811 + }, + { + "x": -0.9008772011044033, + "y": 0.4340740357707385 + }, + { + "x": -0.9010858471120454, + "y": -0.43364074547298653 + }, + { + "x": -0.22275262932061765, + "y": -0.9748750002593929 + }, + { + "x": 0.6233040876259557, + "y": -0.7819795485489217 + }, + { + "x": 0.9999999710907947, + "y": -0.00024045458959587242 + }, + { + "max": { + "#": 410 + }, + "min": { + "#": 411 + } + }, + { + "x": 665.9304813681198, + "y": 92.41013524153173 + }, + { + "x": 615.4802457155978, + "y": 37.745542693716665 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 642.0154360805955, + "y": 63.616961784228494 + }, + { + "x": 0.006512532585316241, + "y": 0.000025501997583152724 + }, + { + "x": 642.0109919910219, + "y": 60.70525702051552 + }, + { + "endCol": 13, + "endRow": 1, + "id": "12,13,0,1", + "startCol": 12, + "startRow": 0 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 420 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.0044451805299559055, + "y": 2.9122748104369762 + }, + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 665.9260126110206, + "y": 75.12421270902735 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 647.9264653380159, + "y": 89.48554119795438 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625.4752338977106, + "y": 84.36693955162157 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 615.4802457155978, + "y": 63.62334229272202 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 625.465256955879, + "y": 42.87494075112231 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 647.9140242175501, + "y": 37.745542693716665 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 665.9204759036407, + "y": 52.09821337469071 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1690.1965440000001, + "axes": { + "#": 431 + }, + "bounds": { + "#": 434 + }, + "collisionFilter": { + "#": 437 + }, + "constraintImpulse": { + "#": 438 + }, + "density": 0.001, + "force": { + "#": 439 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1904.509571566363, + "inverseInertia": 0.0005250695585517853, + "inverseMass": 0.5916471688158889, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.6901965440000002, + "motion": 0, + "parent": null, + "position": { + "#": 440 + }, + "positionImpulse": { + "#": 441 + }, + "positionPrev": { + "#": 442 + }, + "region": { + "#": 443 + }, + "render": { + "#": 444 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 446 + }, + "vertices": { + "#": 447 + } + }, + [ + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 435 + }, + "min": { + "#": 436 + } + }, + { + "x": 710.4548049732069, + "y": 81.75502548206143 + }, + { + "x": 669.3428049732069, + "y": 37.735754767025774 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 689.8988049732069, + "y": 58.29175476702577 + }, + { + "x": 0.12553557275601596, + "y": 0 + }, + { + "x": 689.8988049732069, + "y": 55.38448405199012 + }, + { + "endCol": 14, + "endRow": 1, + "id": "13,14,0,1", + "startCol": 13, + "startRow": 0 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 445 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 710.4548049732069, + "y": 78.84775476702578 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 669.3428049732069, + "y": 78.84775476702578 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 669.3428049732069, + "y": 37.735754767025774 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 710.4548049732069, + "y": 37.735754767025774 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.5801250000001, + "axes": { + "#": 453 + }, + "bounds": { + "#": 459 + }, + "collisionFilter": { + "#": 462 + }, + "constraintImpulse": { + "#": 463 + }, + "density": 0.001, + "force": { + "#": 464 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 630.1649741806023, + "inverseInertia": 0.0015868860393269094, + "inverseMass": 1.013602417745847, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.9865801250000001, + "motion": 0, + "parent": null, + "position": { + "#": 465 + }, + "positionImpulse": { + "#": 466 + }, + "positionPrev": { + "#": 467 + }, + "region": { + "#": 468 + }, + "render": { + "#": 469 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.907270715035651, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 471 + }, + "vertices": { + "#": 472 + } + }, + [ + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "x": 0.3090152538128884, + "y": 0.9510570818362881 + }, + { + "x": -0.8090231185086703, + "y": 0.5877768230531943 + }, + { + "x": -0.8090231185086703, + "y": -0.5877768230531943 + }, + { + "x": 0.3090152538128884, + "y": -0.9510570818362881 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 460 + }, + "min": { + "#": 461 + } + }, + { + "x": 749.6424419788154, + "y": 79.38902548206144 + }, + { + "x": 712.7924419788154, + "y": 37.73575476702578 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 733.1624846989898, + "y": 57.10875476702578 + }, + { + "x": 0.14650463713809028, + "y": 0 + }, + { + "x": 733.1624846989898, + "y": 54.20148405199013 + }, + { + "endCol": 15, + "endRow": 1, + "id": "14,15,0,1", + "startCol": 14, + "startRow": 0 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 470 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 2.907270715035651 + }, + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 749.6424419788154, + "y": 69.08175476702579 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 726.8674419788155, + "y": 76.48175476702579 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 712.7924419788154, + "y": 57.10875476702578 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 726.8674419788155, + "y": 37.73575476702578 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 749.6424419788154, + "y": 45.13575476702578 + }, + { + "angle": 0.13230360320329246, + "anglePrev": 0.10208218942577174, + "angularSpeed": 0.026968771046798096, + "angularVelocity": 0.031361339566139707, + "area": 1201.454244, + "axes": { + "#": 479 + }, + "bounds": { + "#": 482 + }, + "collisionFilter": { + "#": 485 + }, + "constraintImpulse": { + "#": 486 + }, + "density": 0.001, + "force": { + "#": 487 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 962.328200283741, + "inverseInertia": 0.0010391465195607398, + "inverseMass": 0.8323246640427199, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.201454244, + "motion": 0, + "parent": null, + "position": { + "#": 488 + }, + "positionImpulse": { + "#": 489 + }, + "positionPrev": { + "#": 490 + }, + "region": { + "#": 491 + }, + "render": { + "#": 492 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.154918606629944, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 494 + }, + "vertices": { + "#": 495 + } + }, + [ + { + "#": 480 + }, + { + "#": 481 + } + ], + { + "x": 0.13191796179680995, + "y": -0.9912606374487869 + }, + { + "x": 0.9912606374487869, + "y": 0.13191796179680995 + }, + { + "max": { + "#": 483 + }, + "min": { + "#": 484 + } + }, + { + "x": 59.54945080031621, + "y": 152.09314023424668 + }, + { + "x": 20.20000001456668, + "y": 112.08483816381698 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.66580831809214, + "y": 131.55064646734237 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 39.20676993557409, + "y": 130.5755497457747 + }, + { + "endCol": 1, + "endRow": 3, + "id": "0,1,2,3", + "startCol": 0, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 493 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.4669285441220765, + "y": 1.0181399635333435 + }, + [ + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 54.55907622981654, + "y": 151.01645477086785 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.20000001456668, + "y": 146.44391437906683 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 24.772540406367717, + "y": 112.08483816381698 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 59.13161662161758, + "y": 116.65737855561802 + }, + { + "angle": 0.03722716059855076, + "anglePrev": 0.0276947455669049, + "angularSpeed": 0.006773985823846691, + "angularVelocity": 0.00990208891845959, + "area": 1990.733346252218, + "axes": { + "#": 501 + }, + "bounds": { + "#": 504 + }, + "collisionFilter": { + "#": 507 + }, + "constraintImpulse": { + "#": 508 + }, + "density": 0.001, + "force": { + "#": 509 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 6259.057922456878, + "inverseInertia": 0.00015976845275901655, + "inverseMass": 0.502327447260887, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.990733346252218, + "motion": 0, + "parent": null, + "position": { + "#": 510 + }, + "positionImpulse": { + "#": 511 + }, + "positionPrev": { + "#": 512 + }, + "region": { + "#": 513 + }, + "render": { + "#": 514 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6048250612583117, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 516 + }, + "vertices": { + "#": 517 + } + }, + [ + { + "#": 502 + }, + { + "#": 503 + } + ], + { + "x": -0.03721856257966967, + "y": 0.9993071492786907 + }, + { + "x": -0.9993071492786907, + "y": -0.03721856257966967 + }, + { + "max": { + "#": 505 + }, + "min": { + "#": 506 + } + }, + { + "x": 153.9736525009763, + "y": 146.95954472749943 + }, + { + "x": 57.95919055172799, + "y": 119.88970753701926 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 105.72889079933731, + "y": 132.144056901931 + }, + { + "x": 0.025357407992031157, + "y": 0.00007211245127516093 + }, + { + "x": 105.07996683936015, + "y": 129.72214866431074 + }, + { + "endCol": 3, + "endRow": 3, + "id": "1,3,2,3", + "startCol": 1, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 515 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.6441620624769939, + "y": 2.3959306320145117 + }, + [ + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 58.740558598917225, + "y": 119.88970753701926 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 153.49859104694661, + "y": 123.41891050843701 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.71722299975735, + "y": 144.3984062668428 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 57.95919055172799, + "y": 140.86920329542508 + }, + { + "angle": 0, + "anglePrev": -0.00018734796864322486, + "angularSpeed": 0, + "angularVelocity": 0.00022627560619819376, + "area": 7321.24308, + "axes": { + "#": 523 + }, + "bounds": { + "#": 537 + }, + "circleRadius": 48.51041666666667, + "collisionFilter": { + "#": 540 + }, + "constraintImpulse": { + "#": 541 + }, + "density": 0.001, + "force": { + "#": 542 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 34123.85299763073, + "inverseInertia": 0.000029305014298046337, + "inverseMass": 0.13658882638820946, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 7.32124308, + "motion": 0, + "parent": null, + "position": { + "#": 543 + }, + "positionImpulse": { + "#": 544 + }, + "positionPrev": { + "#": 545 + }, + "region": { + "#": 546 + }, + "render": { + "#": 547 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9072707150356862, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 549 + }, + "vertices": { + "#": 550 + } + }, + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": -0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": -0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": -0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": -0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": -0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": -0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.12048714586593073, + "y": -0.9927148874078006 + }, + { + "x": 0.35459752508424713, + "y": -0.9350190346747635 + }, + { + "x": 0.5680666256773447, + "y": -0.8229825689475785 + }, + { + "x": 0.7485263350981186, + "y": -0.6631050638206433 + }, + { + "x": 0.8854462875363226, + "y": -0.46474172600288854 + }, + { + "x": 0.9709369719547335, + "y": -0.23933532228104787 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 538 + }, + "min": { + "#": 539 + } + }, + { + "x": 243.1521692891995, + "y": 224.8926438935728 + }, + { + "x": 146.8381692891995, + "y": 124.96537317853712 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 194.99516928919948, + "y": 173.47537317853713 + }, + { + "x": -2.118049479477182, + "y": 1.1116947292089308 + }, + { + "x": 194.98673423815075, + "y": 170.55203163487045 + }, + { + "endCol": 5, + "endRow": 4, + "id": "3,5,2,4", + "startCol": 3, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 548 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.01018770694670934, + "y": 2.926680780432747 + }, + [ + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 243.1521692891995, + "y": 179.32237317853713 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 240.35316928919949, + "y": 190.67737317853712 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 234.91816928919948, + "y": 201.0323731785371 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 227.1631692891995, + "y": 209.78637317853713 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 217.5391692891995, + "y": 216.42937317853713 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 206.6041692891995, + "y": 220.57637317853712 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 194.99516928919948, + "y": 221.98537317853712 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 183.38616928919947, + "y": 220.57637317853712 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 172.4511692891995, + "y": 216.42937317853713 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 162.82716928919947, + "y": 209.78637317853713 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 155.07216928919948, + "y": 201.0323731785371 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 149.63716928919948, + "y": 190.67737317853712 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 146.8381692891995, + "y": 179.32237317853713 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 146.8381692891995, + "y": 167.62837317853712 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 149.63716928919948, + "y": 156.27337317853713 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 155.07216928919948, + "y": 145.9183731785371 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 162.82716928919947, + "y": 137.1643731785371 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 172.4511692891995, + "y": 130.5213731785371 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 183.38616928919947, + "y": 126.37437317853711 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 194.99516928919948, + "y": 124.96537317853712 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 206.6041692891995, + "y": 126.37437317853711 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 217.5391692891995, + "y": 130.5213731785371 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 227.1631692891995, + "y": 137.1643731785371 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 234.91816928919948, + "y": 145.9183731785371 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 240.35316928919949, + "y": 156.27337317853713 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 243.1521692891995, + "y": 167.62837317853712 + }, + { + "angle": -0.0013006844829861548, + "anglePrev": -0.0008405833942600145, + "angularSpeed": 0.0005633073955357284, + "angularVelocity": -0.00023282382139927027, + "area": 2034.763772651268, + "axes": { + "#": 578 + }, + "bounds": { + "#": 581 + }, + "collisionFilter": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "density": 0.001, + "force": { + "#": 586 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 5208.099585450403, + "inverseInertia": 0.00019200861726869587, + "inverseMass": 0.49145754089036797, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.034763772651268, + "motion": 0, + "parent": null, + "position": { + "#": 587 + }, + "positionImpulse": { + "#": 588 + }, + "positionPrev": { + "#": 589 + }, + "region": { + "#": 590 + }, + "render": { + "#": 591 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.962259843787818, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 593 + }, + "vertices": { + "#": 594 + } + }, + [ + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "x": 0.0013006841162408265, + "y": 0.9999991541100572 + }, + { + "x": -0.9999991541100572, + "y": 0.0013006841162408265 + }, + { + "max": { + "#": 582 + }, + "min": { + "#": 583 + } + }, + { + "x": 322.15887615765973, + "y": 154.7885690648458 + }, + { + "x": 237.885211662627, + "y": 127.56032087514848 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 280.0172268794852, + "y": 139.69332288125997 + }, + { + "x": 1.414472593771558, + "y": 1.134502672179659 + }, + { + "x": 279.96083976013466, + "y": 136.69950803606125 + }, + { + "endCol": 6, + "endRow": 3, + "id": "4,6,2,3", + "startCol": 4, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 592 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.050080923006191824, + "y": 2.9818000037735715 + }, + [ + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 237.885211662627, + "y": 127.66988098637665 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 322.11782216687857, + "y": 127.56032087514848 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 322.14924209634324, + "y": 151.71676477614332 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 237.91663159209168, + "y": 151.8263248873715 + }, + { + "angle": 0.00010535303592766992, + "anglePrev": 0.00011209467683956417, + "angularSpeed": 0.000006741640911894256, + "angularVelocity": -0.000006741640911894256, + "area": 1030.4556949326513, + "axes": { + "#": 600 + }, + "bounds": { + "#": 603 + }, + "collisionFilter": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "density": 0.001, + "force": { + "#": 608 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 987.3091418462254, + "inverseInertia": 0.0010128539862702408, + "inverseMass": 0.9704444401807669, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0304556949326513, + "motion": 0, + "parent": null, + "position": { + "#": 609 + }, + "positionImpulse": { + "#": 610 + }, + "positionPrev": { + "#": 611 + }, + "region": { + "#": 612 + }, + "render": { + "#": 613 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8796990416810497, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 615 + }, + "vertices": { + "#": 616 + } + }, + [ + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": -0.00010535303573277975, + "y": 0.9999999944503689 + }, + { + "x": -0.9999999944503689, + "y": -0.00010535303573277975 + }, + { + "max": { + "#": 604 + }, + "min": { + "#": 605 + } + }, + { + "x": 380.2248433029487, + "y": 130.5577505060009 + }, + { + "x": 330.83607130156446, + "y": 109.68744985966585 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355.5304573022566, + "y": 120.12260018283338 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 355.4851221887682, + "y": 117.24325801870218 + }, + { + "endCol": 7, + "endRow": 2, + "id": "6,7,2,2", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 614 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.04533511348841102, + "y": 2.8793421641312014 + }, + [ + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 330.83826950295185, + "y": 109.68744985966585 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 380.2248433029487, + "y": 109.692652885169 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 380.22264510156134, + "y": 130.5577505060009 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 330.83607130156446, + "y": 130.55254748049776 + }, + { + "angle": -0.00023787570373766324, + "anglePrev": 0.000030901141015768, + "angularSpeed": 0.00026877684475343124, + "angularVelocity": -0.00026877684475343124, + "area": 2157.165332, + "axes": { + "#": 622 + }, + "bounds": { + "#": 636 + }, + "circleRadius": 26.331661522633745, + "collisionFilter": { + "#": 639 + }, + "constraintImpulse": { + "#": 640 + }, + "density": 0.001, + "force": { + "#": 641 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 2962.4789523118793, + "inverseInertia": 0.00033755514084568035, + "inverseMass": 0.46357132907974996, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 2.157165332, + "motion": 0, + "parent": null, + "position": { + "#": 642 + }, + "positionImpulse": { + "#": 643 + }, + "positionPrev": { + "#": 644 + }, + "region": { + "#": 645 + }, + "render": { + "#": 646 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9249457468256908, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 648 + }, + "vertices": { + "#": 649 + } + }, + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + } + ], + { + "x": -0.9710002924601351, + "y": -0.23907829688688217 + }, + { + "x": -0.8855748647834559, + "y": -0.46449667260784916 + }, + { + "x": -0.7486610142542968, + "y": -0.6629530041682649 + }, + { + "x": -0.5682747036632771, + "y": -0.8228389035384839 + }, + { + "x": -0.354848144668094, + "y": -0.9349239510385918 + }, + { + "x": -0.12074156431117224, + "y": -0.9926839752145145 + }, + { + "x": 0.12026927986631487, + "y": -0.9927413058397632 + }, + { + "x": 0.35440331314122636, + "y": -0.9350926647314276 + }, + { + "x": 0.5678831726000837, + "y": -0.8231091678979547 + }, + { + "x": 0.7483455287156301, + "y": -0.6633091056598903 + }, + { + "x": 0.885353779625791, + "y": -0.4649179335133529 + }, + { + "x": 0.9708864407403744, + "y": -0.2395402245688338 + }, + { + "x": 0.9999999717075749, + "y": -0.00023787570149430307 + }, + { + "max": { + "#": 637 + }, + "min": { + "#": 638 + } + }, + { + "x": 364.5224454428324, + "y": 202.3785692771521 + }, + { + "x": 312.2188074667759, + "y": 146.78970873439243 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 338.35956174468845, + "y": 173.12170798939633 + }, + { + "x": -3.7969206810292513, + "y": 5.782884893154236 + }, + { + "x": 338.33743232445704, + "y": 170.19684595664438 + }, + { + "endCol": 7, + "endRow": 4, + "id": "6,7,2,4", + "startCol": 6, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 647 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.022129420231426025, + "y": 2.9248620327519586 + }, + [ + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 364.500316022601, + "y": 176.28948982875912 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 362.9827820935255, + "y": 182.45285098758347 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 360.0341192763062, + "y": 188.07455256187114 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 355.8252497807509, + "y": 192.82755388412886 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 350.60210770833015, + "y": 196.43479644477097 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 344.6676433344497, + "y": 198.6872081733731 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 338.36582548766023, + "y": 199.45370724440016 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 332.0636436910474, + "y": 198.6902063587147 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 326.12810840075883, + "y": 196.44061821468932 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 320.90325076877895, + "y": 192.83586097937643 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 316.6921205025566, + "y": 188.08486257052533 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 313.74078348670105, + "y": 182.46456446287647 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 312.22031750172897, + "y": 176.30192597043325 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 312.2188074667759, + "y": 169.95392615003354 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 313.7363413958514, + "y": 163.79056499120918 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 316.68500421307067, + "y": 158.16886341692148 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 320.893873708626, + "y": 153.4158620946638 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 326.11701578104675, + "y": 149.80861953402166 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 332.0514801549272, + "y": 147.55620780541952 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 338.35329800171667, + "y": 146.78970873439243 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 344.6554797983295, + "y": 147.55320962007792 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 350.59101508861806, + "y": 149.8027977641033 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 355.81587272059795, + "y": 153.4075549994162 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 360.0270029868203, + "y": 158.1585534082673 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 362.97834000267585, + "y": 163.7788515159162 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 364.4988059876479, + "y": 169.9414900083594 + }, + { + "angle": -0.0008495201470976394, + "anglePrev": -0.0005513761301964651, + "angularSpeed": 0.00029814401690117433, + "angularVelocity": -0.00029814401690117433, + "area": 2399.6281959999997, + "axes": { + "#": 677 + }, + "bounds": { + "#": 680 + }, + "collisionFilter": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "density": 0.001, + "force": { + "#": 685 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 3838.8103193588086, + "inverseInertia": 0.00026049737205224263, + "inverseMass": 0.41673122597364254, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.3996281959999997, + "motion": 0, + "parent": null, + "position": { + "#": 686 + }, + "positionImpulse": { + "#": 687 + }, + "positionPrev": { + "#": 688 + }, + "region": { + "#": 689 + }, + "render": { + "#": 690 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.913939010411184, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 692 + }, + "vertices": { + "#": 693 + } + }, + [ + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": -0.0008495200449167256, + "y": -0.9999996391577818 + }, + { + "x": 0.9999996391577818, + "y": -0.0008495200449167256 + }, + { + "max": { + "#": 681 + }, + "min": { + "#": 682 + } + }, + { + "x": 438.87718938822377, + "y": 175.51944056110096 + }, + { + "x": 389.8397282053289, + "y": 123.57792133430448 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 414.36339093187206, + "y": 148.09171979065616 + }, + { + "x": -2.159210721364285, + "y": 0.0006923272542776652 + }, + { + "x": 414.3732552020635, + "y": 145.17779747656306 + }, + { + "endCol": 9, + "endRow": 3, + "id": "8,9,2,3", + "startCol": 8, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 691 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.009864270191451965, + "y": 2.9139223140931025 + }, + [ + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 438.87718938822377, + "y": 172.56390365808755 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 389.89120706444066, + "y": 172.60551824700786 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 389.84959247552035, + "y": 123.61953592322476 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 438.83557479930346, + "y": 123.57792133430448 + }, + { + "angle": -0.0013661209211364965, + "anglePrev": -0.0011167764456289206, + "angularSpeed": 0.00024934447550757584, + "angularVelocity": -0.00024934447550757584, + "area": 1489.7843794189994, + "axes": { + "#": 699 + }, + "bounds": { + "#": 702 + }, + "collisionFilter": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "density": 0.001, + "force": { + "#": 707 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1501.6385932144133, + "inverseInertia": 0.0006659391976996251, + "inverseMass": 0.6712380756670235, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.4897843794189993, + "motion": 0, + "parent": null, + "position": { + "#": 708 + }, + "positionImpulse": { + "#": 709 + }, + "positionPrev": { + "#": 710 + }, + "region": { + "#": 711 + }, + "render": { + "#": 712 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.88605352875307, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 714 + }, + "vertices": { + "#": 715 + } + }, + [ + { + "#": 700 + }, + { + "#": 701 + } + ], + { + "x": 0.0013661204962077266, + "y": 0.9999990668569595 + }, + { + "x": -0.9999990668569595, + "y": 0.0013661204962077266 + }, + { + "max": { + "#": 703 + }, + "min": { + "#": 704 + } + }, + { + "x": 479.37860978025986, + "y": 168.46972010825976 + }, + { + "x": 443.8940346876776, + "y": 123.46643238737802 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 461.6434220677373, + "y": 144.52506694948866 + }, + { + "x": -1.4398076097813277, + "y": -0.00015487256791276994 + }, + { + "x": 461.65762173527435, + "y": 141.6390483528282 + }, + { + "endCol": 10, + "endRow": 3, + "id": "9,10,2,3", + "startCol": 9, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 713 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.014199667537094455, + "y": 2.886018596660438 + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 443.9082343552147, + "y": 123.51481072677635 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 479.32113855267704, + "y": 123.46643238737802 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 479.37860978025986, + "y": 165.535323172201 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 443.9657055827975, + "y": 165.58370151159932 + }, + { + "angle": -0.0025950897565930947, + "anglePrev": -0.002086388563185361, + "angularSpeed": 0.0005087011934077335, + "angularVelocity": -0.0005087011934077335, + "area": 1765.3675322216507, + "axes": { + "#": 721 + }, + "bounds": { + "#": 724 + }, + "collisionFilter": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "density": 0.001, + "force": { + "#": 729 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 2077.83252799514, + "inverseInertia": 0.00048127074079684396, + "inverseMass": 0.5664542831721485, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.7653675322216507, + "motion": 0, + "parent": null, + "position": { + "#": 730 + }, + "positionImpulse": { + "#": 731 + }, + "positionPrev": { + "#": 732 + }, + "region": { + "#": 733 + }, + "render": { + "#": 734 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.899070271726653, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 736 + }, + "vertices": { + "#": 737 + } + }, + [ + { + "#": 722 + }, + { + "#": 723 + } + ], + { + "x": 0.0025950868438260406, + "y": 0.9999966327564674 + }, + { + "x": -0.9999966327564674, + "y": 0.0025950868438260406 + }, + { + "max": { + "#": 725 + }, + "min": { + "#": 726 + } + }, + { + "x": 525.9769450177212, + "y": 168.72844079384265 + }, + { + "x": 484.0804029855508, + "y": 123.45103363270455 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 505.0402234804643, + "y": 144.64024808960244 + }, + { + "x": -0.9596682566979133, + "y": -0.0002931151503039826 + }, + { + "x": 505.06332243812113, + "y": 141.74126984226004 + }, + { + "endCol": 10, + "endRow": 3, + "id": "10,10,2,3", + "startCol": 10, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 735 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.023098957656817447, + "y": 2.898978247342401 + }, + [ + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 484.1035019432076, + "y": 123.55941455130713 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 525.8672502029117, + "y": 123.45103363270455 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 525.9769450177212, + "y": 165.7210816278977 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 484.2131967580169, + "y": 165.82946254650025 + }, + { + "angle": -0.004080940539773731, + "anglePrev": -0.0034392690628233516, + "angularSpeed": 0.0006416714769503791, + "angularVelocity": -0.0006416714769503791, + "area": 1919.5457599999997, + "axes": { + "#": 743 + }, + "bounds": { + "#": 747 + }, + "collisionFilter": { + "#": 750 + }, + "constraintImpulse": { + "#": 751 + }, + "density": 0.001, + "force": { + "#": 752 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 2363.7078785121025, + "inverseInertia": 0.000423064122724622, + "inverseMass": 0.5209565829782563, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.9195457599999999, + "motion": 0, + "parent": null, + "position": { + "#": 753 + }, + "positionImpulse": { + "#": 754 + }, + "positionPrev": { + "#": 755 + }, + "region": { + "#": 756 + }, + "render": { + "#": 757 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8854768025288835, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 759 + }, + "vertices": { + "#": 760 + } + }, + [ + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": -0.5035073053729247, + "y": -0.8639909683764615 + }, + { + "x": 0.4964388213245725, + "y": -0.8680717117161857 + }, + { + "x": 0.999991672973712, + "y": -0.004080929212401057 + }, + { + "max": { + "#": 748 + }, + "min": { + "#": 749 + } + }, + { + "x": 577.4002015858842, + "y": 180.66275383682068 + }, + { + "x": 530.1723292617183, + "y": 123.415971275758 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 553.8049336951572, + "y": 150.5967449388565 + }, + { + "x": -0.6411776574151048, + "y": 0 + }, + { + "x": 553.8422702378689, + "y": 147.71150970399077 + }, + { + "endCol": 12, + "endRow": 3, + "id": "11,12,2,3", + "startCol": 11, + "startRow": 2 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 758 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.03733654271178238, + "y": 2.885235234865719 + }, + [ + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 577.4002015858842, + "y": 164.09156669258232 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 553.9158574320794, + "y": 177.77751860195497 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 530.3205936222819, + "y": 164.28369683990215 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 530.2096658044301, + "y": 137.10192318513066 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 553.6940099582349, + "y": 123.415971275758 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 577.2892737680324, + "y": 136.90979303781083 + }, + { + "angle": 0.005008128159418267, + "anglePrev": 0.004048259329408996, + "angularSpeed": 0.0009598688300092714, + "angularVelocity": 0.0009598688300092714, + "area": 6052.328004, + "axes": { + "#": 768 + }, + "bounds": { + "#": 772 + }, + "collisionFilter": { + "#": 775 + }, + "constraintImpulse": { + "#": 776 + }, + "density": 0.001, + "force": { + "#": 777 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 23498.58850002505, + "inverseInertia": 0.000042555747550493684, + "inverseMass": 0.16522567834048274, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.0523280040000005, + "motion": 0, + "parent": null, + "position": { + "#": 778 + }, + "positionImpulse": { + "#": 779 + }, + "positionPrev": { + "#": 780 + }, + "region": { + "#": 781 + }, + "render": { + "#": 782 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7852865788064722, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 784 + }, + "vertices": { + "#": 785 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": -0.4956462353480794, + "y": -0.8685245013154643 + }, + { + "x": 0.5043205911687654, + "y": -0.8635164974238692 + }, + { + "x": 0.9999874593523808, + "y": 0.005008107224343937 + }, + { + "max": { + "#": 773 + }, + "min": { + "#": 774 + } + }, + { + "x": 670.7501021070988, + "y": 210.9161252054058 + }, + { + "x": 586.9114291768682, + "y": 114.38733575412046 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 628.8307656419835, + "y": 162.6517304797631 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 628.9408926765071, + "y": 159.86862190079128 + }, + { + "endCol": 13, + "endRow": 4, + "id": "12,13,2,4", + "startCol": 12, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 783 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.11012703452369578, + "y": 2.7831085789718086 + }, + [ + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 670.5083808038087, + "y": 186.99376171018446 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 628.5890493468007, + "y": 210.9161252054058 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 586.9114291768682, + "y": 186.5750939624438 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 587.1531504801583, + "y": 138.3096992493418 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 629.0724819371662, + "y": 114.38733575412046 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 670.7501021070988, + "y": 138.72836699708245 + }, + { + "angle": -0.017660925529244538, + "anglePrev": -0.01558000692610701, + "angularSpeed": 0.0020809186031375284, + "angularVelocity": -0.0020809186031375284, + "area": 2220.023313496789, + "axes": { + "#": 793 + }, + "bounds": { + "#": 796 + }, + "collisionFilter": { + "#": 799 + }, + "constraintImpulse": { + "#": 800 + }, + "density": 0.001, + "force": { + "#": 801 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 3297.610605343488, + "inverseInertia": 0.00030324987382669986, + "inverseMass": 0.4504457200608792, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.220023313496789, + "motion": 0, + "parent": null, + "position": { + "#": 802 + }, + "positionImpulse": { + "#": 803 + }, + "positionPrev": { + "#": 804 + }, + "region": { + "#": 805 + }, + "render": { + "#": 806 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8500143975633456, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 808 + }, + "vertices": { + "#": 809 + } + }, + [ + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "x": 0.01766000744538066, + "y": 0.999844049908299 + }, + { + "x": -0.999844049908299, + "y": 0.01766000744538066 + }, + { + "max": { + "#": 797 + }, + "min": { + "#": 798 + } + }, + { + "x": 719.3926414151871, + "y": 175.45461658352605 + }, + { + "x": 673.3532248487793, + "y": 122.64655533922108 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 696.3863227630987, + "y": 147.6256416697052 + }, + { + "x": -0.12387817773643622, + "y": -0.0011028472199483706 + }, + { + "x": 696.4131020253301, + "y": 144.77575308636852 + }, + { + "endCol": 14, + "endRow": 3, + "id": "14,14,2,3", + "startCol": 14, + "startRow": 2 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 807 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.026779262231355006, + "y": 2.8498885833366723 + }, + [ + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 673.3800041110106, + "y": 123.44392874894983 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 718.5243259205082, + "y": 122.64655533922108 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 719.3926414151871, + "y": 171.80735459046065 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 674.2483196056895, + "y": 172.60472800018937 + }, + { + "angle": -0.034179723068709846, + "anglePrev": -0.030668757048791438, + "angularSpeed": 0.00351096601991841, + "angularVelocity": -0.00351096601991841, + "area": 2601.1074479999997, + "axes": { + "#": 815 + }, + "bounds": { + "#": 819 + }, + "collisionFilter": { + "#": 822 + }, + "constraintImpulse": { + "#": 823 + }, + "density": 0.001, + "force": { + "#": 824 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 4340.237035670594, + "inverseInertia": 0.00023040216278083844, + "inverseMass": 0.3844516306963418, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.6011074479999996, + "motion": 0, + "parent": null, + "position": { + "#": 825 + }, + "positionImpulse": { + "#": 826 + }, + "positionPrev": { + "#": 827 + }, + "region": { + "#": 828 + }, + "render": { + "#": 829 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.726177411206227, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 831 + }, + "vertices": { + "#": 832 + } + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + } + ], + { + "x": -0.5292898899918653, + "y": -0.8484410482481378 + }, + { + "x": 0.47009988297143224, + "y": -0.8826132222158498 + }, + { + "x": 0.9994159301305989, + "y": -0.03417306836076663 + }, + { + "max": { + "#": 820 + }, + "min": { + "#": 821 + } + }, + { + "x": 776.4061897177519, + "y": 184.97316085654597 + }, + { + "x": 720.5528948538026, + "y": 121.72812196602136 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 748.4795422857773, + "y": 153.35064141128368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 748.4635428355894, + "y": 150.62451094944498 + }, + { + "endCol": 16, + "endRow": 3, + "id": "15,16,2,3", + "startCol": 15, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 830 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.015999450187907768, + "y": 2.7261304618386792 + }, + [ + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 776.4061897177519, + "y": 168.22599042265813 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 749.5608123417803, + "y": 184.97316085654597 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 721.634199082874, + "y": 170.09881126110156 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 720.5528948538026, + "y": 138.47529239990916 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 747.3982722297742, + "y": 121.72812196602136 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 775.3248854886805, + "y": 136.60247156146576 + }, + { + "angle": 0.03133881447139186, + "anglePrev": 0.02825356554589312, + "angularSpeed": 0.003085248925498743, + "angularVelocity": 0.003085248925498743, + "area": 1413.3088360000002, + "axes": { + "#": 840 + }, + "bounds": { + "#": 843 + }, + "collisionFilter": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "density": 0.001, + "force": { + "#": 848 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1331.62791061045, + "inverseInertia": 0.0007509605288624329, + "inverseMass": 0.7075594339523396, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.4133088360000001, + "motion": 0, + "parent": null, + "position": { + "#": 849 + }, + "positionImpulse": { + "#": 850 + }, + "positionPrev": { + "#": 851 + }, + "region": { + "#": 852 + }, + "render": { + "#": 853 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.6193177080654597, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 855 + }, + "vertices": { + "#": 856 + } + }, + [ + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "x": 0.031333684970459075, + "y": -0.9995089795425413 + }, + { + "x": 0.9995089795425413, + "y": 0.031333684970459075 + }, + { + "max": { + "#": 844 + }, + "min": { + "#": 845 + } + }, + { + "x": 889.3674148914052, + "y": 136.1800747303695 + }, + { + "x": 850.6139157617032, + "y": 97.42657560066777 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 869.9906653265542, + "y": 116.80332516551864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 869.91527273965, + "y": 114.18509270570435 + }, + { + "endCol": 18, + "endRow": 2, + "id": "17,18,2,2", + "startCol": 17, + "startRow": 2 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 854 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.07539258690411657, + "y": 2.618232459814292 + }, + [ + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 888.1894563386256, + "y": 136.1800747303695 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 850.6139157617032, + "y": 135.00211617759007 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 851.7918743144828, + "y": 97.42657560066777 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 889.3674148914052, + "y": 98.60453415344722 + }, + { + "angle": 0.011178114895911875, + "anglePrev": 0.010108145403217257, + "angularSpeed": 0.0010699694926946182, + "angularVelocity": 0.0010699694926946182, + "area": 5460.808751999999, + "axes": { + "#": 862 + }, + "bounds": { + "#": 866 + }, + "collisionFilter": { + "#": 869 + }, + "constraintImpulse": { + "#": 870 + }, + "density": 0.001, + "force": { + "#": 871 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 19129.816192447524, + "inverseInertia": 0.00005227441758665728, + "inverseMass": 0.1831230583993175, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 5.460808751999999, + "motion": 0, + "parent": null, + "position": { + "#": 872 + }, + "positionImpulse": { + "#": 873 + }, + "positionPrev": { + "#": 874 + }, + "region": { + "#": 875 + }, + "render": { + "#": 876 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7371306875102985, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 878 + }, + "vertices": { + "#": 879 + } + }, + [ + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "x": -0.4902865381289931, + "y": -0.8715613062369668 + }, + { + "x": 0.509647222169664, + "y": -0.8603834662141904 + }, + { + "x": 0.9999375255242078, + "y": 0.011177882112652845 + }, + { + "max": { + "#": 867 + }, + "min": { + "#": 868 + } + }, + { + "x": 926.1970364750063, + "y": 229.29263932229605 + }, + { + "x": 846.2815362648438, + "y": 137.60636773193033 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.239286369925, + "y": 183.44950352711322 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 886.1882546300752, + "y": 180.7128486051257 + }, + { + "endCol": 19, + "endRow": 4, + "id": "17,19,2,4", + "startCol": 17, + "startRow": 2 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 877 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.05103173984978298, + "y": 2.736654921987517 + }, + [ + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 925.6845752916697, + "y": 206.81487805610536 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 885.7268251865884, + "y": 229.29263932229605 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 846.2815362648438, + "y": 205.9272647933039 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 846.7939974481803, + "y": 160.0841289981211 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 886.7517475532617, + "y": 137.60636773193033 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 926.1970364750063, + "y": 160.97174226092255 + }, + { + "angle": 0.13440851826616196, + "anglePrev": 0.10984352126118403, + "angularSpeed": 0.02363269279401294, + "angularVelocity": 0.030870480793110583, + "area": 451.6137937679406, + "axes": { + "#": 887 + }, + "bounds": { + "#": 890 + }, + "collisionFilter": { + "#": 893 + }, + "constraintImpulse": { + "#": 894 + }, + "density": 0.001, + "force": { + "#": 895 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 136.71143203852228, + "inverseInertia": 0.007314677237220527, + "inverseMass": 2.214281347911718, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.4516137937679406, + "motion": 0, + "parent": null, + "position": { + "#": 896 + }, + "positionImpulse": { + "#": 897 + }, + "positionPrev": { + "#": 898 + }, + "region": { + "#": 899 + }, + "render": { + "#": 900 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0632795153551964, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 902 + }, + "vertices": { + "#": 903 + } + }, + [ + { + "#": 888 + }, + { + "#": 889 + } + ], + { + "x": -0.13400418746082696, + "y": 0.9909807655766903 + }, + { + "x": -0.9909807655766903, + "y": -0.13400418746082696 + }, + { + "max": { + "#": 891 + }, + "min": { + "#": 892 + } + }, + { + "x": 43.30416830411217, + "y": 234.86520251750267 + }, + { + "x": 20.063449862993124, + "y": 208.94138079261393 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 31.557913610879826, + "y": 221.38677334763446 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 31.25347012955839, + "y": 220.75658274955455 + }, + { + "endCol": 0, + "endRow": 4, + "id": "0,0,4,4", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 901 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.30999595782224176, + "y": 0.8053459730792554 + }, + [ + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 23.063775358041017, + "y": 208.94138079261393 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 43.052377358766535, + "y": 211.64431556453792 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 40.05205186371864, + "y": 233.832165902655 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.063449862993124, + "y": 231.129231130731 + }, + { + "angle": 0.04493079868590327, + "anglePrev": 0.03373448581853147, + "angularSpeed": 0.009982582778609975, + "angularVelocity": 0.011192961800323566, + "area": 3021.679068443158, + "axes": { + "#": 909 + }, + "bounds": { + "#": 912 + }, + "collisionFilter": { + "#": 915 + }, + "constraintImpulse": { + "#": 916 + }, + "density": 0.001, + "force": { + "#": 917 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 11331.770164825675, + "inverseInertia": 0.00008824746579347726, + "inverseMass": 0.33094182980697023, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 3.021679068443158, + "motion": 0, + "parent": null, + "position": { + "#": 918 + }, + "positionImpulse": { + "#": 919 + }, + "positionPrev": { + "#": 920 + }, + "region": { + "#": 921 + }, + "render": { + "#": 922 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.106859349893301, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 924 + }, + "vertices": { + "#": 925 + } + }, + [ + { + "#": 910 + }, + { + "#": 911 + } + ], + { + "x": -0.044915682670414195, + "y": 0.9989907814640989 + }, + { + "x": -0.9989907814640989, + "y": -0.044915682670414195 + }, + { + "max": { + "#": 913 + }, + "min": { + "#": 914 + } + }, + { + "x": 144.1907618279458, + "y": 251.3975564072614 + }, + { + "x": 40.92297655939227, + "y": 215.08385787386507 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 92.45455945650954, + "y": 232.1922574289697 + }, + { + "x": -0.06279039138825475, + "y": 0.07188833633964138 + }, + { + "x": 92.22062973561735, + "y": 230.18959022467283 + }, + { + "endCol": 3, + "endRow": 5, + "id": "0,3,4,5", + "startCol": 0, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 923 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.23312502762256315, + "y": 2.0030210603721628 + }, + [ + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 42.255752402581656, + "y": 215.08385787386507 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 143.98614235362678, + "y": 219.65776385754393 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 142.65336651043737, + "y": 249.30065698407432 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 40.92297655939227, + "y": 244.72675100039547 + }, + { + "angle": 0.040393783799153295, + "anglePrev": 0.028042637441147083, + "angularSpeed": 0.01102990065065427, + "angularVelocity": 0.012330308577055731, + "area": 856.7396388354374, + "axes": { + "#": 931 + }, + "bounds": { + "#": 934 + }, + "collisionFilter": { + "#": 937 + }, + "constraintImpulse": { + "#": 938 + }, + "density": 0.001, + "force": { + "#": 939 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 589.1059801208658, + "inverseInertia": 0.0016974874364623356, + "inverseMass": 1.1672157498855729, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.8567396388354375, + "motion": 0, + "parent": null, + "position": { + "#": 940 + }, + "positionImpulse": { + "#": 941 + }, + "positionPrev": { + "#": 942 + }, + "region": { + "#": 943 + }, + "render": { + "#": 944 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.835433726697396, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 946 + }, + "vertices": { + "#": 947 + } + }, + [ + { + "#": 932 + }, + { + "#": 933 + } + ], + { + "x": -0.04038279989009396, + "y": 0.9991842820386221 + }, + { + "x": -0.9991842820386221, + "y": -0.04038279989009396 + }, + { + "max": { + "#": 935 + }, + "min": { + "#": 936 + } + }, + { + "x": 183.91826369813904, + "y": 245.29975807923884 + }, + { + "x": 142.79557792564358, + "y": 219.49187732046366 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 163.24668306814834, + "y": 230.98239322557689 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 162.99731170296621, + "y": 228.1602951898449 + }, + { + "endCol": 3, + "endRow": 5, + "id": "2,3,4,5", + "startCol": 2, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 945 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.24708804219324065, + "y": 2.8199754517842734 + }, + [ + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 143.65897319700775, + "y": 219.49187732046366 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 183.6977882106531, + "y": 221.1100767693518 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 182.83439293928893, + "y": 242.47290913069014 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 142.79557792564358, + "y": 240.854709681802 + }, + { + "angle": -0.002047130337295934, + "anglePrev": -0.0009430054597307729, + "angularSpeed": 0.0009217780960512713, + "angularVelocity": -0.0011113826788291755, + "area": 4088.5999519999996, + "axes": { + "#": 953 + }, + "bounds": { + "#": 958 + }, + "collisionFilter": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "density": 0.001, + "force": { + "#": 963 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 10666.41244015019, + "inverseInertia": 0.00009375223446599814, + "inverseMass": 0.24458250054785502, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.088599952, + "motion": 0, + "parent": null, + "position": { + "#": 964 + }, + "positionImpulse": { + "#": 965 + }, + "positionPrev": { + "#": 966 + }, + "region": { + "#": 967 + }, + "render": { + "#": 968 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 3.0117744416589125, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 970 + }, + "vertices": { + "#": 971 + } + }, + [ + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": -0.7085528382682338, + "y": -0.7056577608033728 + }, + { + "x": -0.0020471289074635085, + "y": -0.9999979046294227 + }, + { + "x": 0.7056577608033728, + "y": -0.7085528382682338 + }, + { + "x": 0.9999979046294227, + "y": -0.0020471289074635085 + }, + { + "max": { + "#": 959 + }, + "min": { + "#": 960 + } + }, + { + "x": 252.9602173651271, + "y": 294.3414112882476 + }, + { + "x": 182.53397111875563, + "y": 221.02040215336874 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 217.6896832423723, + "y": 256.17611427698546 + }, + { + "x": -0.030447506648581864, + "y": 0.03120759480159667 + }, + { + "x": 217.55985853795926, + "y": 253.15126839044336 + }, + { + "endCol": 5, + "endRow": 6, + "id": "3,5,4,6", + "startCol": 3, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 969 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.12852890060085542, + "y": 3.0248243656535294 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.84539536598896, + "y": 270.6541763393399 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 232.31156020473395, + "y": 291.27225494939495 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 203.21162118001774, + "y": 291.3318264006022 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 182.5935425699628, + "y": 270.7979912393471 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 182.53397111875563, + "y": 241.69805221463085 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 203.06780628001064, + "y": 221.0799736045759 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 232.16774530472685, + "y": 221.02040215336874 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 252.7858239147818, + "y": 241.55423731462375 + }, + { + "angle": -0.003735889568813916, + "anglePrev": -0.002778084681984021, + "angularSpeed": 0.0008791895439084474, + "angularVelocity": -0.0009422793819580683, + "area": 1965.14242904257, + "axes": { + "#": 981 + }, + "bounds": { + "#": 984 + }, + "collisionFilter": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "density": 0.001, + "force": { + "#": 989 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 5563.368364654239, + "inverseInertia": 0.00017974722047048015, + "inverseMass": 0.508868968081467, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.96514242904257, + "motion": 0, + "parent": null, + "position": { + "#": 990 + }, + "positionImpulse": { + "#": 991 + }, + "positionPrev": { + "#": 992 + }, + "region": { + "#": 993 + }, + "render": { + "#": 994 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9380553627736874, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 996 + }, + "vertices": { + "#": 997 + } + }, + [ + { + "#": 982 + }, + { + "#": 983 + } + ], + { + "x": 0.003735880878598598, + "y": 0.9999930215726813 + }, + { + "x": -0.9999930215726813, + "y": 0.003735880878598598 + }, + { + "max": { + "#": 985 + }, + "min": { + "#": 986 + } + }, + { + "x": 342.08549167810276, + "y": 245.70073486516907 + }, + { + "x": 252.40471840890356, + "y": 220.47414740479675 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 297.19756167095983, + "y": 231.6191829981391 + }, + { + "x": 0.051490596450663645, + "y": -0.00131435610606123 + }, + { + "x": 297.08956317321673, + "y": 228.67564569025612 + }, + { + "endCol": 7, + "endRow": 5, + "id": "5,7,4,5", + "startCol": 5, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 995 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.10440093919203264, + "y": 2.943650682801234 + }, + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 252.40471840890356, + "y": 220.80852475800984 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 341.9083805038457, + "y": 220.47414740479675 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 341.99040493301607, + "y": 242.42984123826838 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 252.48674283807392, + "y": 242.76421859148147 + }, + { + "angle": 0.0010373306515137977, + "anglePrev": 0.001163820338076076, + "angularSpeed": 0.000049124306917853456, + "angularVelocity": -0.0001546834295603199, + "area": 2297.860096, + "axes": { + "#": 1003 + }, + "bounds": { + "#": 1006 + }, + "collisionFilter": { + "#": 1009 + }, + "constraintImpulse": { + "#": 1010 + }, + "density": 0.001, + "force": { + "#": 1011 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 3520.107347192753, + "inverseInertia": 0.00028408224561602904, + "inverseMass": 0.43518750412209606, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.297860096, + "motion": 0, + "parent": null, + "position": { + "#": 1012 + }, + "positionImpulse": { + "#": 1013 + }, + "positionPrev": { + "#": 1014 + }, + "region": { + "#": 1015 + }, + "render": { + "#": 1016 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8977239714034506, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1018 + }, + "vertices": { + "#": 1019 + } + }, + [ + { + "#": 1004 + }, + { + "#": 1005 + } + ], + { + "x": 0.001037330465476356, + "y": -0.999999461972608 + }, + { + "x": 0.999999461972608, + "y": 0.001037330465476356 + }, + { + "max": { + "#": 1007 + }, + "min": { + "#": 1008 + } + }, + { + "x": 389.7989519511678, + "y": 271.4325266265845 + }, + { + "x": 341.7118244865161, + "y": 220.5508786333705 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 365.70467432767214, + "y": 244.54372847452652 + }, + { + "x": 0.17233477587513718, + "y": 0.0015099768151500734 + }, + { + "x": 365.5755996503121, + "y": 241.645873677875 + }, + { + "endCol": 8, + "endRow": 5, + "id": "7,8,4,5", + "startCol": 7, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1017 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.12548612549647942, + "y": 2.897648029053613 + }, + [ + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.647798695635, + "y": 268.53657831568256 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 341.7118244865161, + "y": 268.4868528424894 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 341.76154995970927, + "y": 220.5508786333705 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.6975241688282, + "y": 220.6006041065636 + }, + { + "angle": -0.00026934813409845053, + "anglePrev": -0.00043489992515129, + "angularSpeed": 0.0002458436795260174, + "angularVelocity": 0.00010447499236071922, + "area": 942.0065703840771, + "axes": { + "#": 1025 + }, + "bounds": { + "#": 1028 + }, + "collisionFilter": { + "#": 1031 + }, + "constraintImpulse": { + "#": 1032 + }, + "density": 0.001, + "force": { + "#": 1033 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 767.5081553931885, + "inverseInertia": 0.0013029177513921109, + "inverseMass": 1.0615637209327295, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9420065703840771, + "motion": 0, + "parent": null, + "position": { + "#": 1034 + }, + "positionImpulse": { + "#": 1035 + }, + "positionPrev": { + "#": 1036 + }, + "region": { + "#": 1037 + }, + "render": { + "#": 1038 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.902167995697787, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1040 + }, + "vertices": { + "#": 1041 + } + }, + [ + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "x": 0.00026934813084165385, + "y": 0.9999999637257916 + }, + { + "x": -0.9999999637257916, + "y": 0.00026934813084165385 + }, + { + "max": { + "#": 1029 + }, + "min": { + "#": 1030 + } + }, + { + "x": 410.6962230449797, + "y": 268.2122259658619 + }, + { + "x": 389.5096893319207, + "y": 220.57683936314683 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400.04567688703787, + "y": 242.94457961338756 + }, + { + "x": 0.2802248154470754, + "y": -0.00013582863241432493 + }, + { + "x": 399.9026400484496, + "y": 240.04689701671006 + }, + { + "endCol": 8, + "endRow": 5, + "id": "8,8,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1039 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1354432285374969, + "y": 2.8970503589685563 + }, + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 389.5096893319207, + "y": 220.58251181538486 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 410.5696165515274, + "y": 220.57683936314683 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 410.58166444215516, + "y": 265.3066474113903 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 389.5217372225483, + "y": 265.3123198636283 + }, + { + "angle": -0.0004085147876125065, + "anglePrev": -0.0004097828707945261, + "angularSpeed": 0.000024044855249679683, + "angularVelocity": -0.0000034642674880907653, + "area": 2898.415585731765, + "axes": { + "#": 1047 + }, + "bounds": { + "#": 1050 + }, + "collisionFilter": { + "#": 1053 + }, + "constraintImpulse": { + "#": 1054 + }, + "density": 0.001, + "force": { + "#": 1055 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 12806.465328273802, + "inverseInertia": 0.00007808555868981462, + "inverseMass": 0.34501608565823705, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.8984155857317653, + "motion": 0, + "parent": null, + "position": { + "#": 1056 + }, + "positionImpulse": { + "#": 1057 + }, + "positionPrev": { + "#": 1058 + }, + "region": { + "#": 1059 + }, + "render": { + "#": 1060 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.903867354945089, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1062 + }, + "vertices": { + "#": 1063 + } + }, + [ + { + "#": 1048 + }, + { + "#": 1049 + } + ], + { + "x": 0.0004085147762500536, + "y": 0.9999999165578353 + }, + { + "x": -0.9999999165578353, + "y": 0.0004085147762500536 + }, + { + "max": { + "#": 1051 + }, + "min": { + "#": 1052 + } + }, + { + "x": 522.767299802646, + "y": 249.2968937804748 + }, + { + "x": 410.4429174159961, + "y": 220.51608247720444 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 466.5461832464353, + "y": 233.45575065934773 + }, + { + "x": 0.3728627948583894, + "y": -0.000912835670555867 + }, + { + "x": 466.40034419107667, + "y": 230.5563863441465 + }, + { + "endCol": 10, + "endRow": 5, + "id": "8,10,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1061 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1483070349665354, + "y": 2.899569797147592 + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 410.4429174159961, + "y": 220.56191619599718 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 522.6388957084408, + "y": 220.51608247720444 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 522.6494490768746, + "y": 246.34958512269827 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 410.4534707844296, + "y": 246.39541884149102 + }, + { + "angle": 0.0023322782413373578, + "anglePrev": 0.002741350031257132, + "angularSpeed": 0.0004276004912070715, + "angularVelocity": -0.00045201661393751017, + "area": 1297.1522559999999, + "axes": { + "#": 1069 + }, + "bounds": { + "#": 1072 + }, + "collisionFilter": { + "#": 1075 + }, + "constraintImpulse": { + "#": 1076 + }, + "density": 0.001, + "force": { + "#": 1077 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1121.7359834972597, + "inverseInertia": 0.0008914753691704523, + "inverseMass": 0.7709195241919234, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.297152256, + "motion": 0, + "parent": null, + "position": { + "#": 1078 + }, + "positionImpulse": { + "#": 1079 + }, + "positionPrev": { + "#": 1080 + }, + "region": { + "#": 1081 + }, + "render": { + "#": 1082 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.893961839077161, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1084 + }, + "vertices": { + "#": 1085 + } + }, + [ + { + "#": 1070 + }, + { + "#": 1071 + } + ], + { + "x": 0.002332276126924877, + "y": -0.9999972802403352 + }, + { + "x": 0.9999972802403352, + "y": 0.002332276126924877 + }, + { + "max": { + "#": 1073 + }, + "min": { + "#": 1074 + } + }, + { + "x": 558.7817056681528, + "y": 255.56800254024796 + }, + { + "x": 522.560774690553, + "y": 216.57667132479654 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540.6107253416146, + "y": 234.62662197585817 + }, + { + "x": 0.40116852532014974, + "y": 0.0011506367675472888 + }, + { + "x": 540.461581426799, + "y": 231.73556265165087 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1083 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.1511353407589695, + "y": 2.8906793814075513 + }, + [ + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 558.5766767356889, + "y": 252.6765726269198 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 522.560774690553, + "y": 252.5925733699325 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 522.6447739475403, + "y": 216.57667132479654 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 558.6606759926763, + "y": 216.66067058178385 + }, + { + "angle": -0.0031162707564446235, + "anglePrev": -0.0026585286186129207, + "angularSpeed": 0.0004577421378317029, + "angularVelocity": -0.0004577421378317029, + "area": 6661.542482000001, + "axes": { + "#": 1091 + }, + "bounds": { + "#": 1105 + }, + "circleRadius": 46.273148148148145, + "collisionFilter": { + "#": 1108 + }, + "constraintImpulse": { + "#": 1109 + }, + "density": 0.001, + "force": { + "#": 1110 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 28251.272419191544, + "inverseInertia": 0.00003539663577491412, + "inverseMass": 0.15011538284144801, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 6.661542482000001, + "motion": 0, + "parent": null, + "position": { + "#": 1111 + }, + "positionImpulse": { + "#": 1112 + }, + "positionPrev": { + "#": 1113 + }, + "region": { + "#": 1114 + }, + "render": { + "#": 1115 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.902501684262926, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1117 + }, + "vertices": { + "#": 1118 + } + }, + [ + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + } + ], + { + "x": -0.9716746826991208, + "y": -0.2363224724852951 + }, + { + "x": -0.8868944080040307, + "y": -0.46197219510613446 + }, + { + "x": -0.7505937313520973, + "y": -0.6607639899804892 + }, + { + "x": -0.5706153117123376, + "y": -0.8212174900959139 + }, + { + "x": -0.35755001751056886, + "y": -0.9338939902249034 + }, + { + "x": -0.12357426687695133, + "y": -0.9923353266743172 + }, + { + "x": 0.11738713571237896, + "y": -0.99308623007735 + }, + { + "x": 0.35172257771394316, + "y": -0.9361042828265768 + }, + { + "x": 0.5654859901319297, + "y": -0.8247579008196958 + }, + { + "x": 0.7464609408165712, + "y": -0.6654292327777909 + }, + { + "x": 0.8839979402989626, + "y": -0.4674907930079394 + }, + { + "x": 0.9701829305312101, + "y": -0.24237384616718272 + }, + { + "x": 0.9999951444322157, + "y": -0.00311626571268836 + }, + { + "max": { + "#": 1106 + }, + "min": { + "#": 1107 + } + }, + { + "x": 633.6802605272638, + "y": 340.7522728841481 + }, + { + "x": 541.7134760504183, + "y": 245.3048504465004 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 587.7271010424803, + "y": 291.5776257648122 + }, + { + "x": -0.28999539975207084, + "y": 0.9887692769097483 + }, + { + "x": 587.7875665497587, + "y": 288.6757539637881 + }, + { + "endCol": 13, + "endRow": 7, + "id": "11,13,5,7", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1116 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.0604655072784476, + "y": 2.9018718010240705 + }, + [ + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 633.6802605272638, + "y": 297.012449898677 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 631.044025765564, + "y": 307.8517177374752 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 625.8908302932716, + "y": 317.7448245004867 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 618.5198870286074, + "y": 326.11783497397255 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 609.3586793833967, + "y": 332.4834146397477 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 598.941057974128, + "y": 336.4718980825049 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 587.8713000058036, + "y": 337.85040108312404 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 576.7931655152431, + "y": 336.5409171355096 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 566.3508882116557, + "y": 332.6174389955191 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 557.1501850148024, + "y": 326.3090802007602 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 549.7272001127362, + "y": 317.982171762228 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 544.5124459275555, + "y": 308.1213744421255 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 541.8087066179874, + "y": 297.2987474622331 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 541.7739415576967, + "y": 286.14280163094736 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 544.4101763193966, + "y": 275.30353379214915 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 549.563371791689, + "y": 265.4104270291377 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 556.9343150563532, + "y": 257.03741655565193 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 566.0955227015638, + "y": 250.67183688987677 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 576.5131441108326, + "y": 246.68335344711957 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 587.582902079157, + "y": 245.3048504465004 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 598.6610365697175, + "y": 246.61433439411502 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 609.1033138733048, + "y": 250.5378125341055 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 618.3040170701581, + "y": 256.8461713288643 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 625.7270019722243, + "y": 265.1730797673965 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 630.941756157405, + "y": 275.03387708749887 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 633.6454954669732, + "y": 285.85650406739126 + }, + { + "angle": 0.021202818635086624, + "anglePrev": 0.017120435187225766, + "angularSpeed": 0.004082383447860858, + "angularVelocity": 0.004082383447860858, + "area": 1051.3111283901928, + "axes": { + "#": 1146 + }, + "bounds": { + "#": 1149 + }, + "collisionFilter": { + "#": 1152 + }, + "constraintImpulse": { + "#": 1153 + }, + "density": 0.001, + "force": { + "#": 1154 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 749.5831282341722, + "inverseInertia": 0.0013340748508517612, + "inverseMass": 0.9511932034156603, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.0513111283901928, + "motion": 0, + "parent": null, + "position": { + "#": 1155 + }, + "positionImpulse": { + "#": 1156 + }, + "positionPrev": { + "#": 1157 + }, + "region": { + "#": 1158 + }, + "render": { + "#": 1159 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.892136320843546, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1161 + }, + "vertices": { + "#": 1162 + } + }, + [ + { + "#": 1147 + }, + { + "#": 1148 + } + ], + { + "x": -0.021201230015974765, + "y": 0.9997752286618276 + }, + { + "x": -0.9997752286618276, + "y": -0.021201230015974765 + }, + { + "max": { + "#": 1150 + }, + "min": { + "#": 1151 + } + }, + { + "x": 653.6047669689929, + "y": 251.7019629950224 + }, + { + "x": 623.0146856148411, + "y": 212.627002230666 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 638.4567478690996, + "y": 230.72590769980408 + }, + { + "x": -0.49568434966651065, + "y": 0.1106299566858554 + }, + { + "x": 638.7507910234647, + "y": 227.84875787372386 + }, + { + "endCol": 13, + "endRow": 5, + "id": "12,13,4,5", + "startCol": 12, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1160 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.29404315436514367, + "y": 2.87714982608022 + }, + [ + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 624.0630546825768, + "y": 212.627002230666 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 653.6047669689929, + "y": 213.25346367849403 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 652.8504410556224, + "y": 248.82481316894217 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 623.3087287692063, + "y": 248.19835172111414 + }, + { + "angle": -0.029737821030243354, + "anglePrev": -0.024962294968339908, + "angularSpeed": 0.0047755260619034455, + "angularVelocity": -0.0047755260619034455, + "area": 6245.524001, + "axes": { + "#": 1168 + }, + "bounds": { + "#": 1176 + }, + "collisionFilter": { + "#": 1179 + }, + "constraintImpulse": { + "#": 1180 + }, + "density": 0.001, + "force": { + "#": 1181 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 24931.28629116745, + "inverseInertia": 0.00004011024494770155, + "inverseMass": 0.16011466769479796, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 6.245524001, + "motion": 0, + "parent": null, + "position": { + "#": 1182 + }, + "positionImpulse": { + "#": 1183 + }, + "positionPrev": { + "#": 1184 + }, + "region": { + "#": 1185 + }, + "render": { + "#": 1186 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7275651638900396, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1188 + }, + "vertices": { + "#": 1189 + } + }, + [ + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + } + ], + { + "x": 0.6464792692038969, + "y": 0.7629315529518987 + }, + { + "x": -0.19345432297572965, + "y": 0.9811092828640458 + }, + { + "x": -0.8876725995098825, + "y": 0.4604751416519334 + }, + { + "x": -0.9134739683211672, + "y": -0.4068971727593834 + }, + { + "x": -0.2514299744319495, + "y": -0.9678754919705064 + }, + { + "x": 0.599987096881956, + "y": -0.8000096771759467 + }, + { + "x": 0.999557863584797, + "y": -0.029733438176516865 + }, + { + "max": { + "#": 1177 + }, + "min": { + "#": 1178 + } + }, + { + "x": 733.7750552724428, + "y": 323.2194460012919 + }, + { + "x": 642.1936958401824, + "y": 227.38556806801134 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 690.134809091781, + "y": 274.25806974155114 + }, + { + "x": -0.6077757682805036, + "y": 0.7694614092313545 + }, + { + "x": 690.323007320338, + "y": 271.53700503264866 + }, + { + "endCol": 15, + "endRow": 6, + "id": "13,15,4,6", + "startCol": 13, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1187 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.18819822855699045, + "y": 2.7210647089024746 + }, + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 733.7750552724428, + "y": 293.6970898784088 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 702.1459654413571, + "y": 320.4983812923894 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 661.4715150103704, + "y": 312.4782265471746 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 642.3818940687394, + "y": 275.6785561368999 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 659.2503677117081, + "y": 237.80925502166312 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 699.376176741462, + "y": 227.38556806801134 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 732.5424258593971, + "y": 252.25941908563752 + }, + { + "angle": -0.17264182097219136, + "anglePrev": -0.1449910286118084, + "angularSpeed": 0.02765079236038295, + "angularVelocity": -0.02765079236038295, + "area": 1694.1455999999998, + "axes": { + "#": 1198 + }, + "bounds": { + "#": 1201 + }, + "collisionFilter": { + "#": 1204 + }, + "constraintImpulse": { + "#": 1205 + }, + "density": 0.001, + "force": { + "#": 1206 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1913.4195426662397, + "inverseInertia": 0.0005226245356554463, + "inverseMass": 0.590268038355145, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 1.6941456, + "motion": 0, + "parent": null, + "position": { + "#": 1207 + }, + "positionImpulse": { + "#": 1208 + }, + "positionPrev": { + "#": 1209 + }, + "region": { + "#": 1210 + }, + "render": { + "#": 1211 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.9403723744940646, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1213 + }, + "vertices": { + "#": 1214 + } + }, + [ + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": -0.17178549416550587, + "y": -0.9851343786480671 + }, + { + "x": 0.9851343786480671, + "y": -0.17178549416550587 + }, + { + "max": { + "#": 1202 + }, + "min": { + "#": 1203 + } + }, + { + "x": 777.9517542011863, + "y": 259.47852642189383 + }, + { + "x": 729.806989329101, + "y": 209.99197080076962 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 754.142343218683, + "y": 233.80138178327303 + }, + { + "x": -0.23971779890706052, + "y": -0.04200588940050792 + }, + { + "x": 754.6682861257616, + "y": 231.9336481271557 + }, + { + "endCol": 16, + "endRow": 5, + "id": "15,16,4,5", + "startCol": 15, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1212 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.5259429070785814, + "y": 1.867733656117345 + }, + [ + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 777.9517542011863, + "y": 250.54010182592415 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 737.4036231760318, + "y": 257.61079276577647 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 730.3329322361797, + "y": 217.0626617406219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 770.8810632613341, + "y": 209.99197080076962 + }, + { + "angle": 0.011439896323971126, + "anglePrev": 0.010535225931758464, + "angularSpeed": 0.000904670392212662, + "angularVelocity": 0.000904670392212662, + "area": 4695.386625, + "axes": { + "#": 1220 + }, + "bounds": { + "#": 1228 + }, + "collisionFilter": { + "#": 1231 + }, + "constraintImpulse": { + "#": 1232 + }, + "density": 0.001, + "force": { + "#": 1233 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 14091.253878598987, + "inverseInertia": 0.00007096600548221932, + "inverseMass": 0.21297500714331483, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.695386625, + "motion": 0, + "parent": null, + "position": { + "#": 1234 + }, + "positionImpulse": { + "#": 1235 + }, + "positionPrev": { + "#": 1236 + }, + "region": { + "#": 1237 + }, + "render": { + "#": 1238 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.78587341892262, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1240 + }, + "vertices": { + "#": 1241 + } + }, + [ + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + } + ], + { + "x": 0.6145155151809749, + "y": 0.7889047354413973 + }, + { + "x": -0.23366467469309415, + "y": 0.9723172423651504 + }, + { + "x": -0.90587631566063, + "y": 0.42354232459710933 + }, + { + "x": -0.8959495046028965, + "y": -0.4441559244249977 + }, + { + "x": -0.21135904139507922, + "y": -0.9774084896401062 + }, + { + "x": 0.632403079389446, + "y": -0.7746394936864154 + }, + { + "x": 0.999934565099682, + "y": 0.011439646800057407 + }, + { + "max": { + "#": 1229 + }, + "min": { + "#": 1230 + } + }, + { + "x": 951.6812026411636, + "y": 338.9742749825948 + }, + { + "x": 872.716236477969, + "y": 255.42376226980636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 914.1366509922472, + "y": 295.70067044748 + }, + { + "x": 0.9616453007243483, + "y": 0.647346642240987 + }, + { + "x": 914.1161369951993, + "y": 292.91487255779293 + }, + { + "endCol": 19, + "endRow": 6, + "id": "18,19,5,6", + "startCol": 18, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1239 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.02051399704780465, + "y": 2.785797889687034 + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 951.2494791002409, + "y": 314.0994320139157 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 922.8919326531617, + "y": 336.18847709290776 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 887.9407315539969, + "y": 327.78909808456746 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 872.716236477969, + "y": 295.2268045277554 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 888.6817003565302, + "y": 263.0213364339306 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 923.8159129252022, + "y": 255.42376226980636 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 951.6606886441158, + "y": 278.15578413684256 + }, + { + "angle": 0.004633469188033407, + "anglePrev": 0.0041472198984108645, + "angularSpeed": 0.00048624928962254265, + "angularVelocity": 0.00048624928962254265, + "area": 2533.681298803042, + "axes": { + "#": 1250 + }, + "bounds": { + "#": 1253 + }, + "collisionFilter": { + "#": 1256 + }, + "constraintImpulse": { + "#": 1257 + }, + "density": 0.001, + "force": { + "#": 1258 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 9087.287047208478, + "inverseInertia": 0.00011004384419739331, + "inverseMass": 0.3946826305551604, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.533681298803042, + "motion": 0, + "parent": null, + "position": { + "#": 1259 + }, + "positionImpulse": { + "#": 1260 + }, + "positionPrev": { + "#": 1261 + }, + "region": { + "#": 1262 + }, + "render": { + "#": 1263 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8271124807312877, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1265 + }, + "vertices": { + "#": 1266 + } + }, + [ + { + "#": 1251 + }, + { + "#": 1252 + } + ], + { + "x": -0.0046334526086978505, + "y": 0.9999892655008468 + }, + { + "x": -0.9999892655008468, + "y": -0.0046334526086978505 + }, + { + "max": { + "#": 1254 + }, + "min": { + "#": 1255 + } + }, + { + "x": 1042.6516480672617, + "y": 272.22779913640716 + }, + { + "x": 941.8564573268185, + "y": 243.75626802472547 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 992.2277787244673, + "y": 256.5787215403424 + }, + { + "x": 1.4926784031575835, + "y": 1.002040984954575 + }, + { + "x": 992.1752307793219, + "y": 253.7520974598946 + }, + { + "endCol": 21, + "endRow": 5, + "id": "19,21,5,5", + "startCol": 19, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1264 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.052547945145411175, + "y": 2.8266240804478424 + }, + [ + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 941.973122690012, + "y": 243.75626802472547 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 1042.5991001221164, + "y": 244.2225187273288 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 1042.4824347589226, + "y": 269.4011750559593 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 941.8564573268185, + "y": 268.934924353356 + }, + { + "angle": 0.06722815882383285, + "anglePrev": 0.054404860161809274, + "angularSpeed": 0.01221406545691453, + "angularVelocity": 0.013102545883339568, + "area": 2082.1047164947227, + "axes": { + "#": 1272 + }, + "bounds": { + "#": 1275 + }, + "collisionFilter": { + "#": 1278 + }, + "constraintImpulse": { + "#": 1279 + }, + "density": 0.001, + "force": { + "#": 1280 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 2917.86500075833, + "inverseInertia": 0.0003427163353136995, + "inverseMass": 0.4802832403566742, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.082104716494723, + "motion": 0, + "parent": null, + "position": { + "#": 1281 + }, + "positionImpulse": { + "#": 1282 + }, + "positionPrev": { + "#": 1283 + }, + "region": { + "#": 1284 + }, + "render": { + "#": 1285 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.256491202722829, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1287 + }, + "vertices": { + "#": 1288 + } + }, + [ + { + "#": 1273 + }, + { + "#": 1274 + } + ], + { + "x": -0.06717752925150484, + "y": 0.9977410383279137 + }, + { + "x": -0.9977410383279137, + "y": -0.06717752925150484 + }, + { + "max": { + "#": 1276 + }, + "min": { + "#": 1277 + } + }, + { + "x": 66.21401758807141, + "y": 356.6951619859122 + }, + { + "x": 20.180174177060916, + "y": 303.81607996232856 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 43.063337663900576, + "y": 329.6417795657995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 42.754099395580255, + "y": 328.6542271106857 + }, + { + "endCol": 1, + "endRow": 7, + "id": "0,1,6,7", + "startCol": 0, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1286 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.2996675536897442, + "y": 1.013850788119953 + }, + [ + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 23.46526420993744, + "y": 303.81607996232856 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 65.94650115074023, + "y": 306.67632568501966 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 62.66141111786369, + "y": 355.4674791692704 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 20.180174177060916, + "y": 352.6072334465793 + }, + { + "angle": 0.05677132588051166, + "anglePrev": 0.044958688709466, + "angularSpeed": 0.010763657341847784, + "angularVelocity": 0.01171574057898974, + "area": 2570.1808866424026, + "axes": { + "#": 1294 + }, + "bounds": { + "#": 1297 + }, + "collisionFilter": { + "#": 1300 + }, + "constraintImpulse": { + "#": 1301 + }, + "density": 0.001, + "force": { + "#": 1302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 7426.992944977438, + "inverseInertia": 0.00013464399487227974, + "inverseMass": 0.38907767355875333, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5701808866424027, + "motion": 0, + "parent": null, + "position": { + "#": 1303 + }, + "positionImpulse": { + "#": 1304 + }, + "positionPrev": { + "#": 1305 + }, + "region": { + "#": 1306 + }, + "render": { + "#": 1307 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.265547464563466, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1309 + }, + "vertices": { + "#": 1310 + } + }, + [ + { + "#": 1295 + }, + { + "#": 1296 + } + ], + { + "x": -0.05674083528724258, + "y": 0.9983889410499829 + }, + { + "x": -0.9983889410499829, + "y": -0.05674083528724258 + }, + { + "max": { + "#": 1298 + }, + "min": { + "#": 1299 + } + }, + { + "x": 154.39232611033833, + "y": 344.4639403360362 + }, + { + "x": 64.10070856907119, + "y": 308.19443625128434 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 109.0827616307748, + "y": 325.2083134583908 + }, + { + "x": 0.02535185186785176, + "y": 0.004168131419813799 + }, + { + "x": 108.70522007337591, + "y": 323.09957680099814 + }, + { + "endCol": 3, + "endRow": 7, + "id": "1,3,6,7", + "startCol": 1, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1308 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.36808911436311575, + "y": 2.1050324983839346 + }, + [ + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 65.74933533180409, + "y": 308.19443625128434 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 154.06481469247836, + "y": 313.2136165142867 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 152.4161879297455, + "y": 342.2221906654973 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 64.10070856907119, + "y": 337.20301040249495 + }, + { + "angle": 0.03146318074977658, + "anglePrev": 0.02105583909934935, + "angularSpeed": 0.008880071404821254, + "angularVelocity": 0.010516259214790161, + "area": 2248.277056, + "axes": { + "#": 1316 + }, + "bounds": { + "#": 1319 + }, + "collisionFilter": { + "#": 1322 + }, + "constraintImpulse": { + "#": 1323 + }, + "density": 0.001, + "force": { + "#": 1324 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 3369.8331470240178, + "inverseInertia": 0.00029675059754312303, + "inverseMass": 0.44478503987366225, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 2.248277056, + "motion": 0, + "parent": null, + "position": { + "#": 1325 + }, + "positionImpulse": { + "#": 1326 + }, + "positionPrev": { + "#": 1327 + }, + "region": { + "#": 1328 + }, + "render": { + "#": 1329 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8821235575287165, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1331 + }, + "vertices": { + "#": 1332 + } + }, + [ + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": 0.031457989939817854, + "y": -0.999505074959075 + }, + { + "x": 0.999505074959075, + "y": 0.031457989939817854 + }, + { + "max": { + "#": 1320 + }, + "min": { + "#": 1321 + } + }, + { + "x": 201.62971736168177, + "y": 364.59882428638514 + }, + { + "x": 152.49749243936284, + "y": 312.8432527090112 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 176.93956478198578, + "y": 337.2853250516342 + }, + { + "x": 0.041155616778280925, + "y": 0.0006664143465081032 + }, + { + "x": 176.6704009702522, + "y": 334.39851711243364 + }, + { + "endCol": 4, + "endRow": 7, + "id": "3,4,6,7", + "startCol": 3, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 1330 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.279969636735359, + "y": 2.891042452318004 + }, + [ + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 199.8900250736223, + "y": 361.72739739425714 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 152.49749243936284, + "y": 360.2357853432707 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 153.98910449034926, + "y": 312.8432527090112 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 201.38163712460872, + "y": 314.33486475999763 + }, + { + "angle": -0.0019667117595435876, + "anglePrev": -0.0008442988893928206, + "angularSpeed": 0.000809733737747048, + "angularVelocity": -0.0011253448291301791, + "area": 4167.4330549999995, + "axes": { + "#": 1338 + }, + "bounds": { + "#": 1346 + }, + "collisionFilter": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "density": 0.001, + "force": { + "#": 1351 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 11100.542061550868, + "inverseInertia": 0.00009008569081177725, + "inverseMass": 0.23995586415004816, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 4.167433054999999, + "motion": 0, + "parent": null, + "position": { + "#": 1352 + }, + "positionImpulse": { + "#": 1353 + }, + "positionPrev": { + "#": 1354 + }, + "region": { + "#": 1355 + }, + "render": { + "#": 1356 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9603202011306062, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1358 + }, + "vertices": { + "#": 1359 + } + }, + [ + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + } + ], + { + "x": 0.6250459577852366, + "y": 0.7805879519031381 + }, + { + "x": -0.22061190408601444, + "y": 0.9753616702411178 + }, + { + "x": -0.9001175477450809, + "y": 0.43564710516814226 + }, + { + "x": -0.9018241646762404, + "y": -0.43210320064308877 + }, + { + "x": -0.224446698094699, + "y": -0.9744863671259785 + }, + { + "x": 0.6219707474006786, + "y": -0.7830404774836617 + }, + { + "x": 0.9999980660230507, + "y": -0.0019667104916850212 + }, + { + "max": { + "#": 1347 + }, + "min": { + "#": 1348 + } + }, + { + "x": 274.42865055407464, + "y": 392.94884489126395 + }, + { + "x": 200.1094860110172, + "y": 313.89639557332345 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 239.13420068007554, + "y": 351.960401317942 + }, + { + "x": 0.05662665093967504, + "y": 0.004434554667975945 + }, + { + "x": 239.00121532623697, + "y": 348.979598070177 + }, + { + "endCol": 5, + "endRow": 8, + "id": "4,5,6,8", + "startCol": 4, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1357 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.13139877205969697, + "y": 2.980989844936289 + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 274.3276428809825, + "y": 368.8232186182269 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 247.89322117698805, + "y": 389.99024840928155 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 214.8624638989056, + "y": 382.51919589732535 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 200.1094860110172, + "y": 352.03715178215026 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 214.742451291282, + "y": 321.49731391246667 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 247.7435663088338, + "y": 313.89639557332345 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 274.26104219689216, + "y": 334.9592841104224 + }, + { + "angle": -0.0017431587187402549, + "anglePrev": -0.0007578602120147323, + "angularSpeed": 0.0009499166661225214, + "angularVelocity": -0.0009826133177112226, + "area": 1687.7661798887366, + "axes": { + "#": 1368 + }, + "bounds": { + "#": 1371 + }, + "collisionFilter": { + "#": 1374 + }, + "constraintImpulse": { + "#": 1375 + }, + "density": 0.001, + "force": { + "#": 1376 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1980.3012000583947, + "inverseInertia": 0.0005049736878261308, + "inverseMass": 0.5924991340127004, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6877661798887367, + "motion": 0, + "parent": null, + "position": { + "#": 1377 + }, + "positionImpulse": { + "#": 1378 + }, + "positionPrev": { + "#": 1379 + }, + "region": { + "#": 1380 + }, + "render": { + "#": 1381 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9096025580560694, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1383 + }, + "vertices": { + "#": 1384 + } + }, + [ + { + "#": 1369 + }, + { + "#": 1370 + } + ], + { + "x": 0.0017431578359460346, + "y": 0.9999984806992251 + }, + { + "x": -0.9999984806992251, + "y": 0.0017431578359460346 + }, + { + "max": { + "#": 1372 + }, + "min": { + "#": 1373 + } + }, + { + "x": 309.83311722879176, + "y": 364.24046263111063 + }, + { + "x": 274.15821228466126, + "y": 313.74124771728646 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 291.9547545600801, + "y": 337.5366292229544 + }, + { + "x": 0.06354037008532114, + "y": -0.00009692770590290902 + }, + { + "x": 291.8350166384125, + "y": 334.6136999508591 + }, + { + "endCol": 6, + "endRow": 7, + "id": "5,6,6,7", + "startCol": 5, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1382 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11886920659782163, + "y": 2.922811426954979 + }, + [ + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 274.15821228466126, + "y": 313.8031477541851 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 309.6684463996968, + "y": 313.74124771728646 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 309.751296835499, + "y": 361.2701106917237 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 274.24106272046345, + "y": 361.3320107286223 + }, + { + "angle": 0.0012304495126803632, + "anglePrev": 0.002010440451543523, + "angularSpeed": 0.0009093215849850551, + "angularVelocity": -0.0008270701485718606, + "area": 888.874596, + "axes": { + "#": 1390 + }, + "bounds": { + "#": 1393 + }, + "collisionFilter": { + "#": 1396 + }, + "constraintImpulse": { + "#": 1397 + }, + "density": 0.001, + "force": { + "#": 1398 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 55, + "inertia": 526.7320316094421, + "inverseInertia": 0.0018984985533241191, + "inverseMass": 1.125018089728374, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 0.888874596, + "motion": 0, + "parent": null, + "position": { + "#": 1399 + }, + "positionImpulse": { + "#": 1400 + }, + "positionPrev": { + "#": 1401 + }, + "region": { + "#": 1402 + }, + "render": { + "#": 1403 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.930435343794055, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1405 + }, + "vertices": { + "#": 1406 + } + }, + [ + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "x": 0.0012304492021957287, + "y": -0.9999992429970938 + }, + { + "x": 0.9999992429970938, + "y": 0.0012304492021957287 + }, + { + "max": { + "#": 1394 + }, + "min": { + "#": 1395 + } + }, + { + "x": 339.5982687865267, + "y": 346.5316915071004 + }, + { + "x": 309.664336900207, + "y": 313.751777436921 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 324.58966792182184, + "y": 328.6771084585358 + }, + { + "x": 0.05565570292671088, + "y": -0.00007155501227893003 + }, + { + "x": 324.4756772360079, + "y": 325.78363660386367 + }, + { + "endCol": 7, + "endRow": 7, + "id": "6,7,6,7", + "startCol": 6, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1404 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.11564017374087143, + "y": 2.893695615192712 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 339.4783143309224, + "y": 343.6024394801507 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 309.664336900207, + "y": 343.5657548676364 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 309.7010215127213, + "y": 313.751777436921 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 339.5149989434367, + "y": 313.7884620494353 + }, + { + "angle": 0.0018137321209400542, + "anglePrev": 0.0013671117499532547, + "angularSpeed": 0.0004466203709867994, + "angularVelocity": 0.0004466203709867994, + "area": 1624.121534624581, + "axes": { + "#": 1412 + }, + "bounds": { + "#": 1415 + }, + "collisionFilter": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "density": 0.001, + "force": { + "#": 1420 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 56, + "inertia": 1766.6812602831346, + "inverseInertia": 0.0005660330601116675, + "inverseMass": 0.6157174686013581, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.624121534624581, + "motion": 0, + "parent": null, + "position": { + "#": 1421 + }, + "positionImpulse": { + "#": 1422 + }, + "positionPrev": { + "#": 1423 + }, + "region": { + "#": 1424 + }, + "render": { + "#": 1425 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8892466338157514, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1427 + }, + "vertices": { + "#": 1428 + } + }, + [ + { + "#": 1413 + }, + { + "#": 1414 + } + ], + { + "x": -0.0018137311265240363, + "y": 0.9999983551883477 + }, + { + "x": -0.9999983551883477, + "y": -0.0018137311265240363 + }, + { + "max": { + "#": 1416 + }, + "min": { + "#": 1417 + } + }, + { + "x": 382.24900272544687, + "y": 355.0088817150074 + }, + { + "x": 339.8706274773379, + "y": 313.6379706220448 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 361.0500325798749, + "y": 332.87883597403265 + }, + { + "x": 0.09109220443264873, + "y": 0 + }, + { + "x": 361.03046753683986, + "y": 329.98965558504574 + }, + { + "endCol": 7, + "endRow": 7, + "id": "7,7,6,7", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1426 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.019565043035034934, + "y": 2.8891803889869334 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 339.94028398919016, + "y": 313.6379706220448 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 382.22943768241186, + "y": 313.7146719025717 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 382.1597811705596, + "y": 352.1197013260205 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 339.8706274773379, + "y": 352.0430000454936 + }, + { + "angle": -0.0030361912916911584, + "anglePrev": -0.001905906516008805, + "angularSpeed": 0.0011302847756823533, + "angularVelocity": -0.0011302847756823533, + "area": 925.4335858447538, + "axes": { + "#": 1434 + }, + "bounds": { + "#": 1437 + }, + "collisionFilter": { + "#": 1440 + }, + "constraintImpulse": { + "#": 1441 + }, + "density": 0.001, + "force": { + "#": 1442 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 57, + "inertia": 658.9066011822378, + "inverseInertia": 0.001517665778739746, + "inverseMass": 1.080574570985751, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 0.9254335858447538, + "motion": 0, + "parent": null, + "position": { + "#": 1443 + }, + "positionImpulse": { + "#": 1444 + }, + "positionPrev": { + "#": 1445 + }, + "region": { + "#": 1446 + }, + "render": { + "#": 1447 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.870814404895625, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1449 + }, + "vertices": { + "#": 1450 + } + }, + [ + { + "#": 1435 + }, + { + "#": 1436 + } + ], + { + "x": 0.0030361866268598815, + "y": 0.999995390774761 + }, + { + "x": -0.999995390774761, + "y": 0.0030361866268598815 + }, + { + "max": { + "#": 1438 + }, + "min": { + "#": 1439 + } + }, + { + "x": 423.5142835564444, + "y": 335.72056813728915 + }, + { + "x": 383.4306155048064, + "y": 312.47122806690504 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.4724495306254, + "y": 324.0958981020971 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 403.4665092550265, + "y": 321.22508984300316 + }, + { + "endCol": 8, + "endRow": 6, + "id": "7,8,6,6", + "startCol": 7, + "startRow": 6 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1448 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.005940275598887297, + "y": 2.8708082590939488 + }, + [ + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 383.4306155048064, + "y": 312.592716920326 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 423.44406276020806, + "y": 312.47122806690504 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 423.5142835564444, + "y": 335.5990792838682 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 383.50083630104274, + "y": 335.72056813728915 + }, + { + "angle": -0.00005015320501374066, + "anglePrev": -0.00001695455662432588, + "angularSpeed": 0.00003319864838941478, + "angularVelocity": -0.00003319864838941478, + "area": 5929.347511999999, + "axes": { + "#": 1456 + }, + "bounds": { + "#": 1470 + }, + "circleRadius": 43.65625, + "collisionFilter": { + "#": 1473 + }, + "constraintImpulse": { + "#": 1474 + }, + "density": 0.001, + "force": { + "#": 1475 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 58, + "inertia": 22382.17146584697, + "inverseInertia": 0.00004467841744157413, + "inverseMass": 0.1686526212161066, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.929347512, + "motion": 0, + "parent": null, + "position": { + "#": 1476 + }, + "positionImpulse": { + "#": 1477 + }, + "positionPrev": { + "#": 1478 + }, + "region": { + "#": 1479 + }, + "render": { + "#": 1480 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9170723346609937, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1482 + }, + "vertices": { + "#": 1483 + } + }, + [ + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + } + ], + { + "x": -0.9709484609388433, + "y": -0.23928870888633874 + }, + { + "x": -0.8854788823757126, + "y": -0.4646796195946828 + }, + { + "x": -0.7485163231770586, + "y": -0.6631163653066459 + }, + { + "x": -0.5681538574707484, + "y": -0.8229223500677986 + }, + { + "x": -0.3546667535660669, + "y": -0.9349927774667067 + }, + { + "x": -0.1205287065037877, + "y": -0.9927098422542832 + }, + { + "x": 0.12042913073713693, + "y": -0.9927219270621042 + }, + { + "x": 0.35457296601309707, + "y": -0.9350283481117966 + }, + { + "x": 0.5680713102260153, + "y": -0.8229793354016235 + }, + { + "x": 0.7484498045895837, + "y": -0.6631914429558133 + }, + { + "x": 0.8854322675767683, + "y": -0.46476843646472193 + }, + { + "x": 0.9709244538629965, + "y": -0.23938610003682706 + }, + { + "x": 0.999999998742328, + "y": -0.00005015320499271523 + }, + { + "max": { + "#": 1471 + }, + "min": { + "#": 1472 + } + }, + { + "x": 503.97818035099203, + "y": 409.0961017355416 + }, + { + "x": 417.2826682446243, + "y": 318.86709128690546 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460.63991649933234, + "y": 362.5230912320005 + }, + { + "x": 0.16652616275015286, + "y": 0.6319223008848586 + }, + { + "x": 460.6589009023807, + "y": 359.6060806735545 + }, + { + "endCol": 10, + "endRow": 8, + "id": "8,10,6,8", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1481 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01898440304834253, + "y": 2.9170105584459987 + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 503.97818035099203, + "y": 367.78291768578464 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 501.45969286976197, + "y": 378.0020440088559 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 496.56916025363046, + "y": 387.3212892964613 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 489.5905553192036, + "y": 395.1986393057723 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 480.9298551961089, + "y": 401.17807367516104 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 471.0900423802454, + "y": 404.91056717800456 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 460.6421059876495, + "y": 406.1790911770956 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 450.19404240652574, + "y": 404.91161517937604 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 440.3538552471402, + "y": 401.18010869160685 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 431.69255539202027, + "y": 395.2015430760349 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 424.71316034400184, + "y": 387.3248931051593 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 419.82169297243576, + "y": 378.0061384162051 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 417.302180460002, + "y": 367.78726476498065 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 417.30165264767265, + "y": 357.2632647782164 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 419.8201401289027, + "y": 347.0441384551452 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 424.71067274503423, + "y": 337.72489316753973 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 431.6892776794611, + "y": 329.84754315822875 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 440.34997780255577, + "y": 323.86810878884 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 450.1897906184193, + "y": 320.1356152859965 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 460.6377270110152, + "y": 318.86709128690546 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 471.08579059213895, + "y": 320.134567284625 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 480.9259777515245, + "y": 323.8660737723942 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 489.5872776066444, + "y": 329.84463938796614 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 496.56667265466285, + "y": 337.7212893588418 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 501.45814002622893, + "y": 347.04004404779596 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 503.9776525386627, + "y": 357.2589176990204 + }, + { + "angle": -0.0008359626462211726, + "anglePrev": -0.0007400882958783672, + "angularSpeed": 0.0000958743503428054, + "angularVelocity": -0.0000958743503428054, + "area": 2550.166396822507, + "axes": { + "#": 1511 + }, + "bounds": { + "#": 1514 + }, + "collisionFilter": { + "#": 1517 + }, + "constraintImpulse": { + "#": 1518 + }, + "density": 0.001, + "force": { + "#": 1519 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 59, + "inertia": 10939.165130883785, + "inverseInertia": 0.00009141465441240754, + "inverseMass": 0.392131274745834, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 2.5501663968225072, + "motion": 0, + "parent": null, + "position": { + "#": 1520 + }, + "positionImpulse": { + "#": 1521 + }, + "positionPrev": { + "#": 1522 + }, + "region": { + "#": 1523 + }, + "render": { + "#": 1524 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.9041111824106722, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1526 + }, + "vertices": { + "#": 1527 + } + }, + [ + { + "#": 1512 + }, + { + "#": 1513 + } + ], + { + "x": 0.0008359625488547193, + "y": 0.9999996505832474 + }, + { + "x": -0.9999996505832474, + "y": 0.0008359625488547193 + }, + { + "max": { + "#": 1515 + }, + "min": { + "#": 1516 + } + }, + { + "x": 616.4630833801775, + "y": 364.1307391748624 + }, + { + "x": 505.33033359177574, + "y": 338.1787578574561 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 560.9066115640337, + "y": 349.70272669504374 + }, + { + "x": 0.21105094739607166, + "y": 1.0333095382922728 + }, + { + "x": 560.9264177201478, + "y": 346.7986830528127 + }, + { + "endCol": 12, + "endRow": 7, + "id": "10,12,7,7", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1525 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.01980615611414123, + "y": 2.9040436422310694 + }, + [ + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 505.3501397478899, + "y": 338.2716281077031 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 616.4438937967986, + "y": 338.1787578574561 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 616.4630833801775, + "y": 361.13382528238435 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 505.3693293312688, + "y": 361.22669553263137 + }, + { + "angle": -0.004729738261435024, + "anglePrev": -0.004206631518666418, + "angularSpeed": 0.0005231067427686056, + "angularVelocity": -0.0005231067427686056, + "area": 5174.381305999998, + "axes": { + "#": 1533 + }, + "bounds": { + "#": 1547 + }, + "circleRadius": 40.782407407407405, + "collisionFilter": { + "#": 1550 + }, + "constraintImpulse": { + "#": 1551 + }, + "density": 0.001, + "force": { + "#": 1552 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 60, + "inertia": 17045.3242729355, + "inverseInertia": 0.000058667115039154525, + "inverseMass": 0.1932598200369272, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 5.174381305999998, + "motion": 0, + "parent": null, + "position": { + "#": 1553 + }, + "positionImpulse": { + "#": 1554 + }, + "positionPrev": { + "#": 1555 + }, + "region": { + "#": 1556 + }, + "render": { + "#": 1557 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.8870283504437544, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1559 + }, + "vertices": { + "#": 1560 + } + }, + [ + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + } + ], + { + "x": -0.9720600180423126, + "y": -0.234732446252279 + }, + { + "x": -0.8876332003447669, + "y": -0.4605510847297038 + }, + { + "x": -0.7516641253486183, + "y": -0.6595460883546321 + }, + { + "x": -0.5719636442468733, + "y": -0.8202789706312335 + }, + { + "x": -0.35898378520304075, + "y": -0.9333437962301442 + }, + { + "x": -0.12522269824437132, + "y": -0.9921286589169768 + }, + { + "x": 0.115832217923668, + "y": -0.9932687940788656 + }, + { + "x": 0.3501389120265041, + "y": -0.9366977859933776 + }, + { + "x": 0.5641787603546481, + "y": -0.8256526669033973 + }, + { + "x": 0.7453916278154858, + "y": -0.666626823029632 + }, + { + "x": 0.8832369799771378, + "y": -0.4689268996345435 + }, + { + "x": 0.9697961146273102, + "y": -0.24391698598862036 + }, + { + "x": 0.9999888148088406, + "y": -0.004729720627079677 + }, + { + "max": { + "#": 1548 + }, + "min": { + "#": 1549 + } + }, + { + "x": 654.6666797081068, + "y": 453.3228755775938 + }, + { + "x": 573.6323608862882, + "y": 368.87282024075637 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 614.1588812339684, + "y": 409.6543640862906 + }, + { + "x": -0.8130450456858971, + "y": 1.8377065330412674 + }, + { + "x": 614.1776031075101, + "y": 406.7673964405216 + }, + { + "endCol": 13, + "endRow": 9, + "id": "11,13,7,9", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1558 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.018721873541708192, + "y": 2.8869676457690123 + }, + [ + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 654.6666797081068, + "y": 414.37882636030355 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 652.3588559399677, + "y": 423.93584861910426 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 647.831079263165, + "y": 432.66236134556027 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 641.346958193521, + "y": 440.05211208250654 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 633.2824641826047, + "y": 445.67531778280755 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 624.1060548141731, + "y": 449.2047591129559 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 614.3517687005818, + "y": 450.4359079318248 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 604.5862731491045, + "y": 449.2970832595966 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 595.3768881684609, + "y": 445.85460257289765 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 587.2595631781403, + "y": 440.30793321178396 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 580.7058300803068, + "y": 432.97984857237356 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 576.0957089673865, + "y": 424.2965560330079 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 573.6975853730353, + "y": 414.7617918394782 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 573.6510827598299, + "y": 404.9299018122777 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 575.958906527969, + "y": 395.372879553477 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 580.4866832047718, + "y": 386.64636682702087 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 586.9708042744157, + "y": 379.2566160900746 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 595.035298285332, + "y": 373.6334103897736 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 604.2117076537636, + "y": 370.10396905962534 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 613.9659937673549, + "y": 368.87282024075637 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 623.7314893188322, + "y": 370.01164491298465 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 632.9408742994758, + "y": 373.4541255996836 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 641.0581992897964, + "y": 379.0007949607972 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 647.61193238763, + "y": 386.3288796002076 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 652.2220535005503, + "y": 395.01217213957335 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 654.6201770949015, + "y": 404.54693633310296 + }, + { + "angle": 0.013694963789867126, + "anglePrev": 0.01149399947001169, + "angularSpeed": 0.0022009643198554352, + "angularVelocity": 0.0022009643198554352, + "area": 1308.2034644955884, + "axes": { + "#": 1588 + }, + "bounds": { + "#": 1591 + }, + "collisionFilter": { + "#": 1594 + }, + "constraintImpulse": { + "#": 1595 + }, + "density": 0.001, + "force": { + "#": 1596 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 61, + "inertia": 1149.8579054087725, + "inverseInertia": 0.0008696726745940854, + "inverseMass": 0.7644070873834413, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.3082034644955884, + "motion": 0, + "parent": null, + "position": { + "#": 1597 + }, + "positionImpulse": { + "#": 1598 + }, + "positionPrev": { + "#": 1599 + }, + "region": { + "#": 1600 + }, + "render": { + "#": 1601 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.766887659352146, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1603 + }, + "vertices": { + "#": 1604 + } + }, + [ + { + "#": 1589 + }, + { + "#": 1590 + } + ], + { + "x": -0.013694535707497619, + "y": 0.9999062254490447 + }, + { + "x": -0.9999062254490447, + "y": -0.013694535707497619 + }, + { + "max": { + "#": 1592 + }, + "min": { + "#": 1593 + } + }, + { + "x": 705.6711980256081, + "y": 358.55088888021436 + }, + { + "x": 666.7001308253062, + "y": 321.28243445358623 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 686.182007383587, + "y": 338.5332226708063 + }, + { + "x": -0.2850622436133901, + "y": 0.842928081476599 + }, + { + "x": 686.1746932998467, + "y": 335.76634467861834 + }, + { + "endCol": 14, + "endRow": 7, + "id": "13,14,6,7", + "startCol": 13, + "startRow": 6 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1602 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.007314083740330943, + "y": 2.7668779921879887 + }, + [ + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 667.1654368418626, + "y": 321.28243445358623 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 705.6638839418678, + "y": 321.8097022563819 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 705.1985779253114, + "y": 355.7840108880264 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 666.7001308253062, + "y": 355.2567430852307 + }, + { + "angle": -0.02536740234968998, + "anglePrev": -0.022903849378023824, + "angularSpeed": 0.0024635529716661533, + "angularVelocity": -0.0024635529716661533, + "area": 3803.7767479999993, + "axes": { + "#": 1610 + }, + "bounds": { + "#": 1618 + }, + "collisionFilter": { + "#": 1621 + }, + "constraintImpulse": { + "#": 1622 + }, + "density": 0.001, + "force": { + "#": 1623 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 62, + "inertia": 9247.768748441516, + "inverseInertia": 0.00010813419184692798, + "inverseMass": 0.2628966067805618, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.8037767479999993, + "motion": 0, + "parent": null, + "position": { + "#": 1624 + }, + "positionImpulse": { + "#": 1625 + }, + "positionPrev": { + "#": 1626 + }, + "region": { + "#": 1627 + }, + "render": { + "#": 1628 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7806870432933857, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1630 + }, + "vertices": { + "#": 1631 + } + }, + [ + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": 0.6431184561037276, + "y": 0.7657667082204332 + }, + { + "x": -0.1977425915381009, + "y": 0.9802539811149946 + }, + { + "x": -0.8896662782156863, + "y": 0.4566113373601765 + }, + { + "x": -0.9116776641963065, + "y": -0.4109061165346246 + }, + { + "x": -0.24719981080003606, + "y": -0.9689645264613286 + }, + { + "x": 0.6034565743060056, + "y": -0.7973958633745604 + }, + { + "x": 0.9996782647027619, + "y": -0.025364681761754437 + }, + { + "max": { + "#": 1619 + }, + "min": { + "#": 1620 + } + }, + { + "x": 759.5907382982798, + "y": 431.6659065200382 + }, + { + "x": 688.2945687216442, + "y": 356.2108125787605 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 725.5664338591007, + "y": 392.758546756361 + }, + { + "x": -0.40232965013989697, + "y": 1.0453732706684444 + }, + { + "x": 725.5327857501335, + "y": 389.97806330244464 + }, + { + "endCol": 15, + "endRow": 8, + "id": "14,15,7,8", + "startCol": 14, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1629 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0.033648108967198595, + "y": 2.7804834539163585 + }, + [ + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 759.5570901893126, + "y": 408.07831348537417 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 734.7818848441542, + "y": 428.88542306612186 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 703.067407310215, + "y": 422.4877923523912 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 688.2945687216442, + "y": 393.70424001714196 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 701.5886970928682, + "y": 364.2085488767497 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 732.937923209438, + "y": 356.2108125787605 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 758.7364412755926, + "y": 375.734722909181 + }, + { + "angle": 0.016883102366961524, + "anglePrev": 0.015469018388628191, + "angularSpeed": 0.0014140839783333336, + "angularVelocity": 0.0014140839783333336, + "area": 1519.5385669833, + "axes": { + "#": 1640 + }, + "bounds": { + "#": 1643 + }, + "collisionFilter": { + "#": 1646 + }, + "constraintImpulse": { + "#": 1647 + }, + "density": 0.001, + "force": { + "#": 1648 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 63, + "inertia": 1623.6987742797708, + "inverseInertia": 0.0006158777821604092, + "inverseMass": 0.6580945174595165, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.5195385669833, + "motion": 0, + "parent": null, + "position": { + "#": 1649 + }, + "positionImpulse": { + "#": 1650 + }, + "positionPrev": { + "#": 1651 + }, + "region": { + "#": 1652 + }, + "render": { + "#": 1653 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.7299753672403977, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1655 + }, + "vertices": { + "#": 1656 + } + }, + [ + { + "#": 1641 + }, + { + "#": 1642 + } + ], + { + "x": -0.016882300320880235, + "y": 0.9998574838125062 + }, + { + "x": -0.9998574838125062, + "y": -0.016882300320880235 + }, + { + "max": { + "#": 1644 + }, + "min": { + "#": 1645 + } + }, + { + "x": 865.5032220133618, + "y": 391.26371704251216 + }, + { + "x": 831.6404369900313, + "y": 342.01761719846934 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 848.5881969605357, + "y": 365.27577757084725 + }, + { + "x": -0.06700131070715622, + "y": 1.2270321192086358 + }, + { + "x": 848.6209318782143, + "y": 362.54599847156027 + }, + { + "endCol": 18, + "endRow": 8, + "id": "17,18,7,8", + "startCol": 17, + "startRow": 7 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1654 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.032734917678600366, + "y": 2.729779099286959 + }, + [ + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 832.449162847176, + "y": 342.01761719846934 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 865.5032220133618, + "y": 342.57572529157454 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 864.7272310738955, + "y": 388.53393794322517 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 831.6731719077098, + "y": 387.97582985011996 + }, + { + "angle": 0.005622695580706375, + "anglePrev": 0.0051665836263583035, + "angularSpeed": 0.00045611195434807153, + "angularVelocity": 0.00045611195434807153, + "area": 3306.4800040000005, + "axes": { + "#": 1662 + }, + "bounds": { + "#": 1665 + }, + "collisionFilter": { + "#": 1668 + }, + "constraintImpulse": { + "#": 1669 + }, + "density": 0.001, + "force": { + "#": 1670 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 64, + "inertia": 7288.540011234562, + "inverseInertia": 0.00013720168901571494, + "inverseMass": 0.302436427496992, + "isSleeping": false, + "isStatic": false, + "label": "Polygon Body", + "mass": 3.3064800040000004, + "motion": 0, + "parent": null, + "position": { + "#": 1671 + }, + "positionImpulse": { + "#": 1672 + }, + "positionPrev": { + "#": 1673 + }, + "region": { + "#": 1674 + }, + "render": { + "#": 1675 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 2.860446570010434, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1677 + }, + "vertices": { + "#": 1678 + } + }, + [ + { + "#": 1663 + }, + { + "#": 1664 + } + ], + { + "x": 0.005622665954108971, + "y": -0.9999841926888491 + }, + { + "x": 0.9999841926888491, + "y": 0.005622665954108971 + }, + { + "max": { + "#": 1666 + }, + "min": { + "#": 1667 + } + }, + { + "x": 1018.5806250877922, + "y": 419.5421746393976 + }, + { + "x": 960.7443365847234, + "y": 358.8573471659183 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 989.6684222949483, + "y": 387.769549958762 + }, + { + "x": 2.963781537834867, + "y": 1.839518120240474 + }, + { + "x": 989.6803052123292, + "y": 384.9091280709701 + }, + { + "endCol": 21, + "endRow": 8, + "id": "19,21,7,8", + "startCol": 19, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1676 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": -0.011882917380912659, + "y": 2.8604218877918997 + }, + [ + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 1018.2573105500987, + "y": 416.6817527516057 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 960.7562195021044, + "y": 416.3584382139125 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 961.0795340397979, + "y": 358.8573471659183 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 1018.5806250877922, + "y": 359.1806617036115 + }, + [], + [], + [ + { + "#": 1686 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1687 + }, + "pointB": "", + "render": { + "#": 1688 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/wreckingBall/wreckingBall-0.json b/tests/browser/refs/wreckingBall/wreckingBall-0.json new file mode 100644 index 00000000..4505e175 --- /dev/null +++ b/tests/browser/refs/wreckingBall/wreckingBall-0.json @@ -0,0 +1,10579 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 140 + }, + "composites": { + "#": 143 + }, + "constraints": { + "#": 1198 + }, + "gravity": { + "#": 1206 + }, + "id": 0, + "isModified": true, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 23 + }, + { + "#": 44 + }, + { + "#": 65 + }, + { + "#": 86 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "render": { + "#": 15 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 17 + }, + "vertices": { + "#": 18 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 16 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 19 + }, + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 24 + }, + "bounds": { + "#": 27 + }, + "collisionFilter": { + "#": 30 + }, + "constraintImpulse": { + "#": 31 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 32 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 33 + }, + "positionImpulse": { + "#": 34 + }, + "positionPrev": { + "#": 35 + }, + "render": { + "#": 36 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 38 + }, + "vertices": { + "#": 39 + } + }, + [ + { + "#": 25 + }, + { + "#": 26 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 28 + }, + "min": { + "#": 29 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 37 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 40 + }, + { + "#": 41 + }, + { + "#": 42 + }, + { + "#": 43 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 45 + }, + "bounds": { + "#": 48 + }, + "collisionFilter": { + "#": 51 + }, + "constraintImpulse": { + "#": 52 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 53 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 54 + }, + "positionImpulse": { + "#": 55 + }, + "positionPrev": { + "#": 56 + }, + "render": { + "#": 57 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 59 + }, + "vertices": { + "#": 60 + } + }, + [ + { + "#": 46 + }, + { + "#": 47 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 49 + }, + "min": { + "#": 50 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 58 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 61 + }, + { + "#": 62 + }, + { + "#": 63 + }, + { + "#": 64 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 66 + }, + "bounds": { + "#": 69 + }, + "collisionFilter": { + "#": 72 + }, + "constraintImpulse": { + "#": 73 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 74 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 75 + }, + "positionImpulse": { + "#": 76 + }, + "positionPrev": { + "#": 77 + }, + "render": { + "#": 78 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 80 + }, + "vertices": { + "#": 81 + } + }, + [ + { + "#": 67 + }, + { + "#": 68 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 70 + }, + "min": { + "#": 71 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 79 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 82 + }, + { + "#": 83 + }, + { + "#": 84 + }, + { + "#": 85 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7777.744665999999, + "axes": { + "#": 87 + }, + "bounds": { + "#": 101 + }, + "circleRadius": 50, + "collisionFilter": { + "#": 104 + }, + "constraintImpulse": { + "#": 105 + }, + "density": 0.04000000000000001, + "force": { + "#": 106 + }, + "friction": 0.1, + "frictionAir": 0.005, + "frictionStatic": 0.5, + "id": 55, + "inertia": 1540478.934925965, + "inverseInertia": 6.491487662231874e-7, + "inverseMass": 0.00321429939829295, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 311.10978664, + "motion": 0, + "parent": null, + "position": { + "#": 107 + }, + "positionImpulse": { + "#": 108 + }, + "positionPrev": { + "#": 109 + }, + "render": { + "#": 110 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 112 + }, + "vertices": { + "#": 113 + } + }, + [ + { + "#": 88 + }, + { + "#": 89 + }, + { + "#": 90 + }, + { + "#": 91 + }, + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": -0.970952042258738, + "y": -0.239274176696078 + }, + { + "x": -0.8854431390332113, + "y": -0.46474772461951164 + }, + { + "x": -0.748538767034939, + "y": -0.6630910301352396 + }, + { + "x": -0.5680489228149688, + "y": -0.8229947881297631 + }, + { + "x": -0.35459420851145496, + "y": -0.9350202924483163 + }, + { + "x": -0.12054195746334154, + "y": -0.992708233314757 + }, + { + "x": 0.12054195746334154, + "y": -0.992708233314757 + }, + { + "x": 0.35459420851145496, + "y": -0.9350202924483163 + }, + { + "x": 0.5680489228149688, + "y": -0.8229947881297631 + }, + { + "x": 0.748538767034939, + "y": -0.6630910301352396 + }, + { + "x": 0.8854431390332113, + "y": -0.46474772461951164 + }, + { + "x": 0.970952042258738, + "y": -0.239274176696078 + }, + { + "x": 1, + "y": 0 + }, + { + "max": { + "#": 102 + }, + "min": { + "#": 103 + } + }, + { + "x": 149.635, + "y": 450 + }, + { + "x": 50.365, + "y": 350 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 100, + "y": 400 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 111 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 149.635, + "y": 406.027 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 146.751, + "y": 417.73 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 141.149, + "y": 428.403 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 133.156, + "y": 437.426 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 123.236, + "y": 444.273 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 111.966, + "y": 448.547 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 100, + "y": 450 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 88.034, + "y": 448.547 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 76.764, + "y": 444.273 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 66.844, + "y": 437.426 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 58.851, + "y": 428.403 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 53.249, + "y": 417.73 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 50.365, + "y": 406.027 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 50.365, + "y": 393.973 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 53.249, + "y": 382.27 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 58.851, + "y": 371.597 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 66.844, + "y": 362.574 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 76.764, + "y": 355.727 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 88.034, + "y": 351.453 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 100, + "y": 350 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 111.966, + "y": 351.453 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 123.236, + "y": 355.727 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 133.156, + "y": 362.574 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 141.149, + "y": 371.597 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 146.751, + "y": 382.27 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 149.635, + "y": 393.973 + }, + { + "max": { + "#": 141 + }, + "min": { + "#": 142 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 144 + } + ], + { + "bodies": { + "#": 145 + }, + "composites": { + "#": 1196 + }, + "constraints": { + "#": 1197 + }, + "id": 4, + "isModified": true, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 146 + }, + { + "#": 167 + }, + { + "#": 188 + }, + { + "#": 209 + }, + { + "#": 230 + }, + { + "#": 251 + }, + { + "#": 272 + }, + { + "#": 293 + }, + { + "#": 314 + }, + { + "#": 335 + }, + { + "#": 356 + }, + { + "#": 377 + }, + { + "#": 398 + }, + { + "#": 419 + }, + { + "#": 440 + }, + { + "#": 461 + }, + { + "#": 482 + }, + { + "#": 503 + }, + { + "#": 524 + }, + { + "#": 545 + }, + { + "#": 566 + }, + { + "#": 587 + }, + { + "#": 608 + }, + { + "#": 629 + }, + { + "#": 650 + }, + { + "#": 671 + }, + { + "#": 692 + }, + { + "#": 713 + }, + { + "#": 734 + }, + { + "#": 755 + }, + { + "#": 776 + }, + { + "#": 797 + }, + { + "#": 818 + }, + { + "#": 839 + }, + { + "#": 860 + }, + { + "#": 881 + }, + { + "#": 902 + }, + { + "#": 923 + }, + { + "#": 944 + }, + { + "#": 965 + }, + { + "#": 986 + }, + { + "#": 1007 + }, + { + "#": 1028 + }, + { + "#": 1049 + }, + { + "#": 1070 + }, + { + "#": 1091 + }, + { + "#": 1112 + }, + { + "#": 1133 + }, + { + "#": 1154 + }, + { + "#": 1175 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 147 + }, + "bounds": { + "#": 150 + }, + "collisionFilter": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "density": 0.001, + "force": { + "#": 155 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 156 + }, + "positionImpulse": { + "#": 157 + }, + "positionPrev": { + "#": 158 + }, + "render": { + "#": 159 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 161 + }, + "vertices": { + "#": 162 + } + }, + [ + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 151 + }, + "min": { + "#": 152 + } + }, + { + "x": 440, + "y": 219 + }, + { + "x": 400, + "y": 179 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 199 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 160 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 179 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 179 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 219 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 168 + }, + "bounds": { + "#": 171 + }, + "collisionFilter": { + "#": 174 + }, + "constraintImpulse": { + "#": 175 + }, + "density": 0.001, + "force": { + "#": 176 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 177 + }, + "positionImpulse": { + "#": 178 + }, + "positionPrev": { + "#": 179 + }, + "render": { + "#": 180 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 182 + }, + "vertices": { + "#": 183 + } + }, + [ + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 172 + }, + "min": { + "#": 173 + } + }, + { + "x": 480, + "y": 219 + }, + { + "x": 440, + "y": 179 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 199 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 181 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 179 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 179 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 219 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 189 + }, + "bounds": { + "#": 192 + }, + "collisionFilter": { + "#": 195 + }, + "constraintImpulse": { + "#": 196 + }, + "density": 0.001, + "force": { + "#": 197 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 198 + }, + "positionImpulse": { + "#": 199 + }, + "positionPrev": { + "#": 200 + }, + "render": { + "#": 201 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 203 + }, + "vertices": { + "#": 204 + } + }, + [ + { + "#": 190 + }, + { + "#": 191 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 193 + }, + "min": { + "#": 194 + } + }, + { + "x": 520, + "y": 219 + }, + { + "x": 480, + "y": 179 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 199 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 202 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 179 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 179 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 219 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 210 + }, + "bounds": { + "#": 213 + }, + "collisionFilter": { + "#": 216 + }, + "constraintImpulse": { + "#": 217 + }, + "density": 0.001, + "force": { + "#": 218 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 219 + }, + "positionImpulse": { + "#": 220 + }, + "positionPrev": { + "#": 221 + }, + "render": { + "#": 222 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 224 + }, + "vertices": { + "#": 225 + } + }, + [ + { + "#": 211 + }, + { + "#": 212 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 214 + }, + "min": { + "#": 215 + } + }, + { + "x": 560, + "y": 219 + }, + { + "x": 520, + "y": 179 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 199 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 223 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 179 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 179 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 219 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 231 + }, + "bounds": { + "#": 234 + }, + "collisionFilter": { + "#": 237 + }, + "constraintImpulse": { + "#": 238 + }, + "density": 0.001, + "force": { + "#": 239 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 240 + }, + "positionImpulse": { + "#": 241 + }, + "positionPrev": { + "#": 242 + }, + "render": { + "#": 243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 245 + }, + "vertices": { + "#": 246 + } + }, + [ + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 235 + }, + "min": { + "#": 236 + } + }, + { + "x": 600, + "y": 219 + }, + { + "x": 560, + "y": 179 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 199 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 244 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 179 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 179 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 219 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 219 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 252 + }, + "bounds": { + "#": 255 + }, + "collisionFilter": { + "#": 258 + }, + "constraintImpulse": { + "#": 259 + }, + "density": 0.001, + "force": { + "#": 260 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 261 + }, + "positionImpulse": { + "#": 262 + }, + "positionPrev": { + "#": 263 + }, + "render": { + "#": 264 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 266 + }, + "vertices": { + "#": 267 + } + }, + [ + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 256 + }, + "min": { + "#": 257 + } + }, + { + "x": 440, + "y": 259 + }, + { + "x": 400, + "y": 219 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 239 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 265 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 219 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 219 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 259 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 273 + }, + "bounds": { + "#": 276 + }, + "collisionFilter": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "density": 0.001, + "force": { + "#": 281 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 282 + }, + "positionImpulse": { + "#": 283 + }, + "positionPrev": { + "#": 284 + }, + "render": { + "#": 285 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 287 + }, + "vertices": { + "#": 288 + } + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 277 + }, + "min": { + "#": 278 + } + }, + { + "x": 480, + "y": 259 + }, + { + "x": 440, + "y": 219 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 239 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 286 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 219 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 219 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 259 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 294 + }, + "bounds": { + "#": 297 + }, + "collisionFilter": { + "#": 300 + }, + "constraintImpulse": { + "#": 301 + }, + "density": 0.001, + "force": { + "#": 302 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 303 + }, + "positionImpulse": { + "#": 304 + }, + "positionPrev": { + "#": 305 + }, + "render": { + "#": 306 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 308 + }, + "vertices": { + "#": 309 + } + }, + [ + { + "#": 295 + }, + { + "#": 296 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 298 + }, + "min": { + "#": 299 + } + }, + { + "x": 520, + "y": 259 + }, + { + "x": 480, + "y": 219 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 239 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 307 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 219 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 219 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 259 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 315 + }, + "bounds": { + "#": 318 + }, + "collisionFilter": { + "#": 321 + }, + "constraintImpulse": { + "#": 322 + }, + "density": 0.001, + "force": { + "#": 323 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 324 + }, + "positionImpulse": { + "#": 325 + }, + "positionPrev": { + "#": 326 + }, + "render": { + "#": 327 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 329 + }, + "vertices": { + "#": 330 + } + }, + [ + { + "#": 316 + }, + { + "#": 317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 319 + }, + "min": { + "#": 320 + } + }, + { + "x": 560, + "y": 259 + }, + { + "x": 520, + "y": 219 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 239 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 328 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 219 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 219 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 259 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 336 + }, + "bounds": { + "#": 339 + }, + "collisionFilter": { + "#": 342 + }, + "constraintImpulse": { + "#": 343 + }, + "density": 0.001, + "force": { + "#": 344 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 345 + }, + "positionImpulse": { + "#": 346 + }, + "positionPrev": { + "#": 347 + }, + "render": { + "#": 348 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 350 + }, + "vertices": { + "#": 351 + } + }, + [ + { + "#": 337 + }, + { + "#": 338 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 340 + }, + "min": { + "#": 341 + } + }, + { + "x": 600, + "y": 259 + }, + { + "x": 560, + "y": 219 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 239 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 349 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 219 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 219 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 259 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 259 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 357 + }, + "bounds": { + "#": 360 + }, + "collisionFilter": { + "#": 363 + }, + "constraintImpulse": { + "#": 364 + }, + "density": 0.001, + "force": { + "#": 365 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 366 + }, + "positionImpulse": { + "#": 367 + }, + "positionPrev": { + "#": 368 + }, + "render": { + "#": 369 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 371 + }, + "vertices": { + "#": 372 + } + }, + [ + { + "#": 358 + }, + { + "#": 359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 361 + }, + "min": { + "#": 362 + } + }, + { + "x": 440, + "y": 299 + }, + { + "x": 400, + "y": 259 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 279 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 370 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 259 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 299 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 299 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 378 + }, + "bounds": { + "#": 381 + }, + "collisionFilter": { + "#": 384 + }, + "constraintImpulse": { + "#": 385 + }, + "density": 0.001, + "force": { + "#": 386 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 387 + }, + "positionImpulse": { + "#": 388 + }, + "positionPrev": { + "#": 389 + }, + "render": { + "#": 390 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 392 + }, + "vertices": { + "#": 393 + } + }, + [ + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 382 + }, + "min": { + "#": 383 + } + }, + { + "x": 480, + "y": 299 + }, + { + "x": 440, + "y": 259 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 279 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 391 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 259 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 299 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 299 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 399 + }, + "bounds": { + "#": 402 + }, + "collisionFilter": { + "#": 405 + }, + "constraintImpulse": { + "#": 406 + }, + "density": 0.001, + "force": { + "#": 407 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 408 + }, + "positionImpulse": { + "#": 409 + }, + "positionPrev": { + "#": 410 + }, + "render": { + "#": 411 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 413 + }, + "vertices": { + "#": 414 + } + }, + [ + { + "#": 400 + }, + { + "#": 401 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 403 + }, + "min": { + "#": 404 + } + }, + { + "x": 520, + "y": 299 + }, + { + "x": 480, + "y": 259 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 279 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 412 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 259 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 299 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 299 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 420 + }, + "bounds": { + "#": 423 + }, + "collisionFilter": { + "#": 426 + }, + "constraintImpulse": { + "#": 427 + }, + "density": 0.001, + "force": { + "#": 428 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 429 + }, + "positionImpulse": { + "#": 430 + }, + "positionPrev": { + "#": 431 + }, + "render": { + "#": 432 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 434 + }, + "vertices": { + "#": 435 + } + }, + [ + { + "#": 421 + }, + { + "#": 422 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 424 + }, + "min": { + "#": 425 + } + }, + { + "x": 560, + "y": 299 + }, + { + "x": 520, + "y": 259 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 279 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 433 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 259 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 299 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 299 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 441 + }, + "bounds": { + "#": 444 + }, + "collisionFilter": { + "#": 447 + }, + "constraintImpulse": { + "#": 448 + }, + "density": 0.001, + "force": { + "#": 449 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 450 + }, + "positionImpulse": { + "#": 451 + }, + "positionPrev": { + "#": 452 + }, + "render": { + "#": 453 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 455 + }, + "vertices": { + "#": 456 + } + }, + [ + { + "#": 442 + }, + { + "#": 443 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 445 + }, + "min": { + "#": 446 + } + }, + { + "x": 600, + "y": 299 + }, + { + "x": 560, + "y": 259 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 279 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 454 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 259 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 259 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 299 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 299 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 462 + }, + "bounds": { + "#": 465 + }, + "collisionFilter": { + "#": 468 + }, + "constraintImpulse": { + "#": 469 + }, + "density": 0.001, + "force": { + "#": 470 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 471 + }, + "positionImpulse": { + "#": 472 + }, + "positionPrev": { + "#": 473 + }, + "render": { + "#": 474 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 476 + }, + "vertices": { + "#": 477 + } + }, + [ + { + "#": 463 + }, + { + "#": 464 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 466 + }, + "min": { + "#": 467 + } + }, + { + "x": 440, + "y": 339 + }, + { + "x": 400, + "y": 299 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 319 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 475 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 299 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 299 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 339 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 339 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 483 + }, + "bounds": { + "#": 486 + }, + "collisionFilter": { + "#": 489 + }, + "constraintImpulse": { + "#": 490 + }, + "density": 0.001, + "force": { + "#": 491 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 492 + }, + "positionImpulse": { + "#": 493 + }, + "positionPrev": { + "#": 494 + }, + "render": { + "#": 495 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 497 + }, + "vertices": { + "#": 498 + } + }, + [ + { + "#": 484 + }, + { + "#": 485 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 487 + }, + "min": { + "#": 488 + } + }, + { + "x": 480, + "y": 339 + }, + { + "x": 440, + "y": 299 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 319 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 496 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 299 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 299 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 339 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 339 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 504 + }, + "bounds": { + "#": 507 + }, + "collisionFilter": { + "#": 510 + }, + "constraintImpulse": { + "#": 511 + }, + "density": 0.001, + "force": { + "#": 512 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 513 + }, + "positionImpulse": { + "#": 514 + }, + "positionPrev": { + "#": 515 + }, + "render": { + "#": 516 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 518 + }, + "vertices": { + "#": 519 + } + }, + [ + { + "#": 505 + }, + { + "#": 506 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 508 + }, + "min": { + "#": 509 + } + }, + { + "x": 520, + "y": 339 + }, + { + "x": 480, + "y": 299 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 319 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 517 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 299 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 299 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 339 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 339 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 525 + }, + "bounds": { + "#": 528 + }, + "collisionFilter": { + "#": 531 + }, + "constraintImpulse": { + "#": 532 + }, + "density": 0.001, + "force": { + "#": 533 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 534 + }, + "positionImpulse": { + "#": 535 + }, + "positionPrev": { + "#": 536 + }, + "render": { + "#": 537 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 539 + }, + "vertices": { + "#": 540 + } + }, + [ + { + "#": 526 + }, + { + "#": 527 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 529 + }, + "min": { + "#": 530 + } + }, + { + "x": 560, + "y": 339 + }, + { + "x": 520, + "y": 299 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 319 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 538 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 299 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 299 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 339 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 339 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 546 + }, + "bounds": { + "#": 549 + }, + "collisionFilter": { + "#": 552 + }, + "constraintImpulse": { + "#": 553 + }, + "density": 0.001, + "force": { + "#": 554 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 555 + }, + "positionImpulse": { + "#": 556 + }, + "positionPrev": { + "#": 557 + }, + "render": { + "#": 558 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 560 + }, + "vertices": { + "#": 561 + } + }, + [ + { + "#": 547 + }, + { + "#": 548 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 550 + }, + "min": { + "#": 551 + } + }, + { + "x": 600, + "y": 339 + }, + { + "x": 560, + "y": 299 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 319 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 559 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 299 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 299 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 339 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 339 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 567 + }, + "bounds": { + "#": 570 + }, + "collisionFilter": { + "#": 573 + }, + "constraintImpulse": { + "#": 574 + }, + "density": 0.001, + "force": { + "#": 575 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 576 + }, + "positionImpulse": { + "#": 577 + }, + "positionPrev": { + "#": 578 + }, + "render": { + "#": 579 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 581 + }, + "vertices": { + "#": 582 + } + }, + [ + { + "#": 568 + }, + { + "#": 569 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 571 + }, + "min": { + "#": 572 + } + }, + { + "x": 440, + "y": 379 + }, + { + "x": 400, + "y": 339 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 359 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 580 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 339 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 339 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 379 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 588 + }, + "bounds": { + "#": 591 + }, + "collisionFilter": { + "#": 594 + }, + "constraintImpulse": { + "#": 595 + }, + "density": 0.001, + "force": { + "#": 596 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 597 + }, + "positionImpulse": { + "#": 598 + }, + "positionPrev": { + "#": 599 + }, + "render": { + "#": 600 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 602 + }, + "vertices": { + "#": 603 + } + }, + [ + { + "#": 589 + }, + { + "#": 590 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 592 + }, + "min": { + "#": 593 + } + }, + { + "x": 480, + "y": 379 + }, + { + "x": 440, + "y": 339 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 359 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 601 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 339 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 339 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 379 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 609 + }, + "bounds": { + "#": 612 + }, + "collisionFilter": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "density": 0.001, + "force": { + "#": 617 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 618 + }, + "positionImpulse": { + "#": 619 + }, + "positionPrev": { + "#": 620 + }, + "render": { + "#": 621 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 623 + }, + "vertices": { + "#": 624 + } + }, + [ + { + "#": 610 + }, + { + "#": 611 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 613 + }, + "min": { + "#": 614 + } + }, + { + "x": 520, + "y": 379 + }, + { + "x": 480, + "y": 339 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 359 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 622 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 339 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 339 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 379 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 630 + }, + "bounds": { + "#": 633 + }, + "collisionFilter": { + "#": 636 + }, + "constraintImpulse": { + "#": 637 + }, + "density": 0.001, + "force": { + "#": 638 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 639 + }, + "positionImpulse": { + "#": 640 + }, + "positionPrev": { + "#": 641 + }, + "render": { + "#": 642 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 644 + }, + "vertices": { + "#": 645 + } + }, + [ + { + "#": 631 + }, + { + "#": 632 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 634 + }, + "min": { + "#": 635 + } + }, + { + "x": 560, + "y": 379 + }, + { + "x": 520, + "y": 339 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 359 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 643 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 339 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 339 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 379 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 651 + }, + "bounds": { + "#": 654 + }, + "collisionFilter": { + "#": 657 + }, + "constraintImpulse": { + "#": 658 + }, + "density": 0.001, + "force": { + "#": 659 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 660 + }, + "positionImpulse": { + "#": 661 + }, + "positionPrev": { + "#": 662 + }, + "render": { + "#": 663 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 665 + }, + "vertices": { + "#": 666 + } + }, + [ + { + "#": 652 + }, + { + "#": 653 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 655 + }, + "min": { + "#": 656 + } + }, + { + "x": 600, + "y": 379 + }, + { + "x": 560, + "y": 339 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 359 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 664 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 339 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 339 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 379 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 379 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 672 + }, + "bounds": { + "#": 675 + }, + "collisionFilter": { + "#": 678 + }, + "constraintImpulse": { + "#": 679 + }, + "density": 0.001, + "force": { + "#": 680 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 681 + }, + "positionImpulse": { + "#": 682 + }, + "positionPrev": { + "#": 683 + }, + "render": { + "#": 684 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 686 + }, + "vertices": { + "#": 687 + } + }, + [ + { + "#": 673 + }, + { + "#": 674 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 676 + }, + "min": { + "#": 677 + } + }, + { + "x": 440, + "y": 419 + }, + { + "x": 400, + "y": 379 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 399 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 685 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 379 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 379 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 419 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 693 + }, + "bounds": { + "#": 696 + }, + "collisionFilter": { + "#": 699 + }, + "constraintImpulse": { + "#": 700 + }, + "density": 0.001, + "force": { + "#": 701 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 702 + }, + "positionImpulse": { + "#": 703 + }, + "positionPrev": { + "#": 704 + }, + "render": { + "#": 705 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 707 + }, + "vertices": { + "#": 708 + } + }, + [ + { + "#": 694 + }, + { + "#": 695 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 697 + }, + "min": { + "#": 698 + } + }, + { + "x": 480, + "y": 419 + }, + { + "x": 440, + "y": 379 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 399 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 706 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 379 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 379 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 419 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 714 + }, + "bounds": { + "#": 717 + }, + "collisionFilter": { + "#": 720 + }, + "constraintImpulse": { + "#": 721 + }, + "density": 0.001, + "force": { + "#": 722 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 723 + }, + "positionImpulse": { + "#": 724 + }, + "positionPrev": { + "#": 725 + }, + "render": { + "#": 726 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 728 + }, + "vertices": { + "#": 729 + } + }, + [ + { + "#": 715 + }, + { + "#": 716 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 718 + }, + "min": { + "#": 719 + } + }, + { + "x": 520, + "y": 419 + }, + { + "x": 480, + "y": 379 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 399 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 727 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 379 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 379 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 419 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 735 + }, + "bounds": { + "#": 738 + }, + "collisionFilter": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "density": 0.001, + "force": { + "#": 743 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 744 + }, + "positionImpulse": { + "#": 745 + }, + "positionPrev": { + "#": 746 + }, + "render": { + "#": 747 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 749 + }, + "vertices": { + "#": 750 + } + }, + [ + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 739 + }, + "min": { + "#": 740 + } + }, + { + "x": 560, + "y": 419 + }, + { + "x": 520, + "y": 379 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 399 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 748 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 379 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 379 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 419 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 756 + }, + "bounds": { + "#": 759 + }, + "collisionFilter": { + "#": 762 + }, + "constraintImpulse": { + "#": 763 + }, + "density": 0.001, + "force": { + "#": 764 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 765 + }, + "positionImpulse": { + "#": 766 + }, + "positionPrev": { + "#": 767 + }, + "render": { + "#": 768 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 770 + }, + "vertices": { + "#": 771 + } + }, + [ + { + "#": 757 + }, + { + "#": 758 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 760 + }, + "min": { + "#": 761 + } + }, + { + "x": 600, + "y": 419 + }, + { + "x": 560, + "y": 379 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 399 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 769 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 379 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 379 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 419 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 419 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 777 + }, + "bounds": { + "#": 780 + }, + "collisionFilter": { + "#": 783 + }, + "constraintImpulse": { + "#": 784 + }, + "density": 0.001, + "force": { + "#": 785 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 786 + }, + "positionImpulse": { + "#": 787 + }, + "positionPrev": { + "#": 788 + }, + "render": { + "#": 789 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 791 + }, + "vertices": { + "#": 792 + } + }, + [ + { + "#": 778 + }, + { + "#": 779 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 781 + }, + "min": { + "#": 782 + } + }, + { + "x": 440, + "y": 459 + }, + { + "x": 400, + "y": 419 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 439 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 790 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 419 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 798 + }, + "bounds": { + "#": 801 + }, + "collisionFilter": { + "#": 804 + }, + "constraintImpulse": { + "#": 805 + }, + "density": 0.001, + "force": { + "#": 806 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 807 + }, + "positionImpulse": { + "#": 808 + }, + "positionPrev": { + "#": 809 + }, + "render": { + "#": 810 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 812 + }, + "vertices": { + "#": 813 + } + }, + [ + { + "#": 799 + }, + { + "#": 800 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 802 + }, + "min": { + "#": 803 + } + }, + { + "x": 480, + "y": 459 + }, + { + "x": 440, + "y": 419 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 439 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 811 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 419 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 819 + }, + "bounds": { + "#": 822 + }, + "collisionFilter": { + "#": 825 + }, + "constraintImpulse": { + "#": 826 + }, + "density": 0.001, + "force": { + "#": 827 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 828 + }, + "positionImpulse": { + "#": 829 + }, + "positionPrev": { + "#": 830 + }, + "render": { + "#": 831 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 833 + }, + "vertices": { + "#": 834 + } + }, + [ + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 823 + }, + "min": { + "#": 824 + } + }, + { + "x": 520, + "y": 459 + }, + { + "x": 480, + "y": 419 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 439 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 832 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 419 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 840 + }, + "bounds": { + "#": 843 + }, + "collisionFilter": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "density": 0.001, + "force": { + "#": 848 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 849 + }, + "positionImpulse": { + "#": 850 + }, + "positionPrev": { + "#": 851 + }, + "render": { + "#": 852 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 854 + }, + "vertices": { + "#": 855 + } + }, + [ + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 844 + }, + "min": { + "#": 845 + } + }, + { + "x": 560, + "y": 459 + }, + { + "x": 520, + "y": 419 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 439 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 853 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 419 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 861 + }, + "bounds": { + "#": 864 + }, + "collisionFilter": { + "#": 867 + }, + "constraintImpulse": { + "#": 868 + }, + "density": 0.001, + "force": { + "#": 869 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 870 + }, + "positionImpulse": { + "#": 871 + }, + "positionPrev": { + "#": 872 + }, + "render": { + "#": 873 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 875 + }, + "vertices": { + "#": 876 + } + }, + [ + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 865 + }, + "min": { + "#": 866 + } + }, + { + "x": 600, + "y": 459 + }, + { + "x": 560, + "y": 419 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 439 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 874 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 419 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 419 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 459 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 459 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 882 + }, + "bounds": { + "#": 885 + }, + "collisionFilter": { + "#": 888 + }, + "constraintImpulse": { + "#": 889 + }, + "density": 0.001, + "force": { + "#": 890 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 891 + }, + "positionImpulse": { + "#": 892 + }, + "positionPrev": { + "#": 893 + }, + "render": { + "#": 894 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 896 + }, + "vertices": { + "#": 897 + } + }, + [ + { + "#": 883 + }, + { + "#": 884 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 886 + }, + "min": { + "#": 887 + } + }, + { + "x": 440, + "y": 499 + }, + { + "x": 400, + "y": 459 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 479 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 895 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 459 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 459 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 499 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 499 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 903 + }, + "bounds": { + "#": 906 + }, + "collisionFilter": { + "#": 909 + }, + "constraintImpulse": { + "#": 910 + }, + "density": 0.001, + "force": { + "#": 911 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 912 + }, + "positionImpulse": { + "#": 913 + }, + "positionPrev": { + "#": 914 + }, + "render": { + "#": 915 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 917 + }, + "vertices": { + "#": 918 + } + }, + [ + { + "#": 904 + }, + { + "#": 905 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 907 + }, + "min": { + "#": 908 + } + }, + { + "x": 480, + "y": 499 + }, + { + "x": 440, + "y": 459 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 479 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 916 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 459 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 459 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 499 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 499 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 924 + }, + "bounds": { + "#": 927 + }, + "collisionFilter": { + "#": 930 + }, + "constraintImpulse": { + "#": 931 + }, + "density": 0.001, + "force": { + "#": 932 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 933 + }, + "positionImpulse": { + "#": 934 + }, + "positionPrev": { + "#": 935 + }, + "render": { + "#": 936 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 938 + }, + "vertices": { + "#": 939 + } + }, + [ + { + "#": 925 + }, + { + "#": 926 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 928 + }, + "min": { + "#": 929 + } + }, + { + "x": 520, + "y": 499 + }, + { + "x": 480, + "y": 459 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 479 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 937 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 459 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 459 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 499 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 499 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 945 + }, + "bounds": { + "#": 948 + }, + "collisionFilter": { + "#": 951 + }, + "constraintImpulse": { + "#": 952 + }, + "density": 0.001, + "force": { + "#": 953 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 954 + }, + "positionImpulse": { + "#": 955 + }, + "positionPrev": { + "#": 956 + }, + "render": { + "#": 957 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 959 + }, + "vertices": { + "#": 960 + } + }, + [ + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 949 + }, + "min": { + "#": 950 + } + }, + { + "x": 560, + "y": 499 + }, + { + "x": 520, + "y": 459 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 479 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 958 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 459 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 459 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 499 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 499 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 966 + }, + "bounds": { + "#": 969 + }, + "collisionFilter": { + "#": 972 + }, + "constraintImpulse": { + "#": 973 + }, + "density": 0.001, + "force": { + "#": 974 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 975 + }, + "positionImpulse": { + "#": 976 + }, + "positionPrev": { + "#": 977 + }, + "render": { + "#": 978 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 980 + }, + "vertices": { + "#": 981 + } + }, + [ + { + "#": 967 + }, + { + "#": 968 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 970 + }, + "min": { + "#": 971 + } + }, + { + "x": 600, + "y": 499 + }, + { + "x": 560, + "y": 459 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 479 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 979 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 459 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 459 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 499 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 499 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 987 + }, + "bounds": { + "#": 990 + }, + "collisionFilter": { + "#": 993 + }, + "constraintImpulse": { + "#": 994 + }, + "density": 0.001, + "force": { + "#": 995 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 996 + }, + "positionImpulse": { + "#": 997 + }, + "positionPrev": { + "#": 998 + }, + "render": { + "#": 999 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1001 + }, + "vertices": { + "#": 1002 + } + }, + [ + { + "#": 988 + }, + { + "#": 989 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 991 + }, + "min": { + "#": 992 + } + }, + { + "x": 440, + "y": 539 + }, + { + "x": 400, + "y": 499 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 519 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1000 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 499 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 499 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 539 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 539 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1008 + }, + "bounds": { + "#": 1011 + }, + "collisionFilter": { + "#": 1014 + }, + "constraintImpulse": { + "#": 1015 + }, + "density": 0.001, + "force": { + "#": 1016 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1017 + }, + "positionImpulse": { + "#": 1018 + }, + "positionPrev": { + "#": 1019 + }, + "render": { + "#": 1020 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1022 + }, + "vertices": { + "#": 1023 + } + }, + [ + { + "#": 1009 + }, + { + "#": 1010 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1012 + }, + "min": { + "#": 1013 + } + }, + { + "x": 480, + "y": 539 + }, + { + "x": 440, + "y": 499 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 519 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1021 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 499 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 499 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 539 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 539 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1029 + }, + "bounds": { + "#": 1032 + }, + "collisionFilter": { + "#": 1035 + }, + "constraintImpulse": { + "#": 1036 + }, + "density": 0.001, + "force": { + "#": 1037 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1038 + }, + "positionImpulse": { + "#": 1039 + }, + "positionPrev": { + "#": 1040 + }, + "render": { + "#": 1041 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1043 + }, + "vertices": { + "#": 1044 + } + }, + [ + { + "#": 1030 + }, + { + "#": 1031 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1033 + }, + "min": { + "#": 1034 + } + }, + { + "x": 520, + "y": 539 + }, + { + "x": 480, + "y": 499 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 519 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1042 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 499 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 499 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 539 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 539 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1050 + }, + "bounds": { + "#": 1053 + }, + "collisionFilter": { + "#": 1056 + }, + "constraintImpulse": { + "#": 1057 + }, + "density": 0.001, + "force": { + "#": 1058 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1059 + }, + "positionImpulse": { + "#": 1060 + }, + "positionPrev": { + "#": 1061 + }, + "render": { + "#": 1062 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1064 + }, + "vertices": { + "#": 1065 + } + }, + [ + { + "#": 1051 + }, + { + "#": 1052 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1054 + }, + "min": { + "#": 1055 + } + }, + { + "x": 560, + "y": 539 + }, + { + "x": 520, + "y": 499 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 519 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1063 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 499 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 499 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 539 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 539 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1071 + }, + "bounds": { + "#": 1074 + }, + "collisionFilter": { + "#": 1077 + }, + "constraintImpulse": { + "#": 1078 + }, + "density": 0.001, + "force": { + "#": 1079 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1080 + }, + "positionImpulse": { + "#": 1081 + }, + "positionPrev": { + "#": 1082 + }, + "render": { + "#": 1083 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1085 + }, + "vertices": { + "#": 1086 + } + }, + [ + { + "#": 1072 + }, + { + "#": 1073 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1075 + }, + "min": { + "#": 1076 + } + }, + { + "x": 600, + "y": 539 + }, + { + "x": 560, + "y": 499 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 519 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1084 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 499 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 499 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 539 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 539 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1092 + }, + "bounds": { + "#": 1095 + }, + "collisionFilter": { + "#": 1098 + }, + "constraintImpulse": { + "#": 1099 + }, + "density": 0.001, + "force": { + "#": 1100 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1101 + }, + "positionImpulse": { + "#": 1102 + }, + "positionPrev": { + "#": 1103 + }, + "render": { + "#": 1104 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1106 + }, + "vertices": { + "#": 1107 + } + }, + [ + { + "#": 1093 + }, + { + "#": 1094 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1096 + }, + "min": { + "#": 1097 + } + }, + { + "x": 440, + "y": 579 + }, + { + "x": 400, + "y": 539 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 559 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1105 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 539 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 539 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 579 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 579 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1113 + }, + "bounds": { + "#": 1116 + }, + "collisionFilter": { + "#": 1119 + }, + "constraintImpulse": { + "#": 1120 + }, + "density": 0.001, + "force": { + "#": 1121 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1122 + }, + "positionImpulse": { + "#": 1123 + }, + "positionPrev": { + "#": 1124 + }, + "render": { + "#": 1125 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1127 + }, + "vertices": { + "#": 1128 + } + }, + [ + { + "#": 1114 + }, + { + "#": 1115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1117 + }, + "min": { + "#": 1118 + } + }, + { + "x": 480, + "y": 579 + }, + { + "x": 440, + "y": 539 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 559 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1126 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 539 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 539 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 579 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 579 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1134 + }, + "bounds": { + "#": 1137 + }, + "collisionFilter": { + "#": 1140 + }, + "constraintImpulse": { + "#": 1141 + }, + "density": 0.001, + "force": { + "#": 1142 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1143 + }, + "positionImpulse": { + "#": 1144 + }, + "positionPrev": { + "#": 1145 + }, + "render": { + "#": 1146 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1148 + }, + "vertices": { + "#": 1149 + } + }, + [ + { + "#": 1135 + }, + { + "#": 1136 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1138 + }, + "min": { + "#": 1139 + } + }, + { + "x": 520, + "y": 579 + }, + { + "x": 480, + "y": 539 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 559 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1147 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 539 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 539 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 579 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 579 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1155 + }, + "bounds": { + "#": 1158 + }, + "collisionFilter": { + "#": 1161 + }, + "constraintImpulse": { + "#": 1162 + }, + "density": 0.001, + "force": { + "#": 1163 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1164 + }, + "positionImpulse": { + "#": 1165 + }, + "positionPrev": { + "#": 1166 + }, + "render": { + "#": 1167 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1169 + }, + "vertices": { + "#": 1170 + } + }, + [ + { + "#": 1156 + }, + { + "#": 1157 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1159 + }, + "min": { + "#": 1160 + } + }, + { + "x": 560, + "y": 579 + }, + { + "x": 520, + "y": 539 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 559 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1168 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 539 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 539 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 579 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 579 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1176 + }, + "bounds": { + "#": 1179 + }, + "collisionFilter": { + "#": 1182 + }, + "constraintImpulse": { + "#": 1183 + }, + "density": 0.001, + "force": { + "#": 1184 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1185 + }, + "positionImpulse": { + "#": 1186 + }, + "positionPrev": { + "#": 1187 + }, + "render": { + "#": 1188 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1190 + }, + "vertices": { + "#": 1191 + } + }, + [ + { + "#": 1177 + }, + { + "#": 1178 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1180 + }, + "min": { + "#": 1181 + } + }, + { + "x": 600, + "y": 579 + }, + { + "x": 560, + "y": 539 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 559 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1189 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 539 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 539 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 579 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 579 + }, + [], + [], + [ + { + "#": 1199 + }, + { + "#": 1202 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1200 + }, + "pointB": "", + "render": { + "#": 1201 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleB": 0, + "angularStiffness": 0, + "bodyB": null, + "id": 56, + "label": "Constraint", + "length": 360.5551275463989, + "pointA": { + "#": 1203 + }, + "pointB": { + "#": 1204 + }, + "render": { + "#": 1205 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 300, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file diff --git a/tests/browser/refs/wreckingBall/wreckingBall-10.json b/tests/browser/refs/wreckingBall/wreckingBall-10.json new file mode 100644 index 00000000..f0844858 --- /dev/null +++ b/tests/browser/refs/wreckingBall/wreckingBall-10.json @@ -0,0 +1,11129 @@ +[ + { + "bodies": { + "#": 1 + }, + "bounds": { + "#": 145 + }, + "composites": { + "#": 148 + }, + "constraints": { + "#": 1253 + }, + "gravity": { + "#": 1261 + }, + "id": 0, + "isModified": false, + "label": "World", + "parent": "", + "type": "composite" + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 3 + }, + "bounds": { + "#": 6 + }, + "collisionFilter": { + "#": 9 + }, + "constraintImpulse": { + "#": 10 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 11 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 12 + }, + "positionImpulse": { + "#": 13 + }, + "positionPrev": { + "#": 14 + }, + "region": { + "#": 15 + }, + "render": { + "#": 16 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 18 + }, + "vertices": { + "#": 19 + } + }, + [ + { + "#": 4 + }, + { + "#": 5 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 7 + }, + "min": { + "#": 8 + } + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": -5 + }, + { + "endCol": 16, + "endRow": 0, + "id": "-1,16,-1,0", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 17 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 20 + }, + { + "#": 21 + }, + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": -30.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": -30.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 20.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 20.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 40930.25, + "axes": { + "#": 25 + }, + "bounds": { + "#": 28 + }, + "collisionFilter": { + "#": 31 + }, + "constraintImpulse": { + "#": 32 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 33 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 1, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 34 + }, + "positionImpulse": { + "#": 35 + }, + "positionPrev": { + "#": 36 + }, + "region": { + "#": 37 + }, + "render": { + "#": 38 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 40 + }, + "vertices": { + "#": 41 + } + }, + [ + { + "#": 26 + }, + { + "#": 27 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 29 + }, + "min": { + "#": 30 + } + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 400, + "y": 605 + }, + { + "endCol": 16, + "endRow": 13, + "id": "-1,16,12,13", + "startCol": -1, + "startRow": 12 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 39 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 42 + }, + { + "#": 43 + }, + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -5.25, + "y": 579.75 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 805.25, + "y": 579.75 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 805.25, + "y": 630.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -5.25, + "y": 630.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 47 + }, + "bounds": { + "#": 50 + }, + "collisionFilter": { + "#": 53 + }, + "constraintImpulse": { + "#": 54 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 55 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 2, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 56 + }, + "positionImpulse": { + "#": 57 + }, + "positionPrev": { + "#": 58 + }, + "region": { + "#": 59 + }, + "render": { + "#": 60 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 62 + }, + "vertices": { + "#": 63 + } + }, + [ + { + "#": 48 + }, + { + "#": 49 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 51 + }, + "min": { + "#": 52 + } + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 805, + "y": 300 + }, + { + "endCol": 17, + "endRow": 12, + "id": "16,17,-1,12", + "startCol": 16, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 61 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 64 + }, + { + "#": 65 + }, + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 779.75, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 830.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 830.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 779.75, + "y": 605.25 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 30830.25, + "axes": { + "#": 69 + }, + "bounds": { + "#": 72 + }, + "collisionFilter": { + "#": 75 + }, + "constraintImpulse": { + "#": 76 + }, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "force": { + "#": 77 + }, + "friction": 1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 3, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "inverseMass": 0, + "isSleeping": false, + "isStatic": true, + "label": "Rectangle Body", + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "motion": 0, + "parent": null, + "position": { + "#": 78 + }, + "positionImpulse": { + "#": 79 + }, + "positionPrev": { + "#": 80 + }, + "region": { + "#": 81 + }, + "render": { + "#": 82 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 84 + }, + "vertices": { + "#": 85 + } + }, + [ + { + "#": 70 + }, + { + "#": 71 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 73 + }, + "min": { + "#": 74 + } + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -5, + "y": 300 + }, + { + "endCol": 0, + "endRow": 12, + "id": "-1,0,-1,12", + "startCol": -1, + "startRow": -1 + }, + { + "fillStyle": "#eeeeee", + "lineWidth": 1.5, + "sprite": { + "#": 83 + }, + "strokeStyle": "#bbbbbb", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0 + }, + [ + { + "#": 86 + }, + { + "#": 87 + }, + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": -30.25, + "y": -5.25 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 20.25, + "y": -5.25 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 20.25, + "y": 605.25 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": -30.25, + "y": 605.25 + }, + { + "angle": -2.999894364326032e-20, + "anglePrev": -2.6093491624039745e-20, + "angularSpeed": 3.905452019220577e-21, + "angularVelocity": -3.905452019220577e-21, + "area": 7777.744665999999, + "axes": { + "#": 91 + }, + "bounds": { + "#": 105 + }, + "circleRadius": 50, + "collisionFilter": { + "#": 108 + }, + "constraintImpulse": { + "#": 109 + }, + "density": 0.04000000000000001, + "force": { + "#": 110 + }, + "friction": 0.1, + "frictionAir": 0.005, + "frictionStatic": 0.5, + "id": 55, + "inertia": 1540478.934925965, + "inverseInertia": 6.491487662231874e-7, + "inverseMass": 0.00321429939829295, + "isSleeping": false, + "isStatic": false, + "label": "Circle Body", + "mass": 311.10978664, + "motion": 0, + "parent": null, + "position": { + "#": 111 + }, + "positionImpulse": { + "#": 112 + }, + "positionPrev": { + "#": 113 + }, + "region": { + "#": 114 + }, + "render": { + "#": 115 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6450825044006987, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 117 + }, + "vertices": { + "#": 118 + } + }, + [ + { + "#": 92 + }, + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": -0.970952042258738, + "y": -0.239274176696078 + }, + { + "x": -0.8854431390332113, + "y": -0.46474772461951164 + }, + { + "x": -0.748538767034939, + "y": -0.6630910301352396 + }, + { + "x": -0.5680489228149688, + "y": -0.8229947881297631 + }, + { + "x": -0.35459420851145496, + "y": -0.9350202924483163 + }, + { + "x": -0.12054195746334154, + "y": -0.992708233314757 + }, + { + "x": 0.12054195746334154, + "y": -0.992708233314757 + }, + { + "x": 0.35459420851145496, + "y": -0.9350202924483163 + }, + { + "x": 0.5680489228149688, + "y": -0.8229947881297631 + }, + { + "x": 0.748538767034939, + "y": -0.6630910301352396 + }, + { + "x": 0.8854431390332113, + "y": -0.46474772461951164 + }, + { + "x": 0.970952042258738, + "y": -0.239274176696078 + }, + { + "x": 1, + "y": -2.999894364326032e-20 + }, + { + "max": { + "#": 106 + }, + "min": { + "#": 107 + } + }, + { + "x": 157.8120147216171, + "y": 455.58626038355806 + }, + { + "x": 58.54201472161704, + "y": 355.58626038355806 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 108.17701472161701, + "y": 405.58626038355806 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 106.80322693284627, + "y": 404.71751031534814 + }, + { + "endCol": 3, + "endRow": 9, + "id": "1,3,7,9", + "startCol": 1, + "startRow": 7 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 116 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 1.241846380642599, + "y": 1.0789411537105025 + }, + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 157.8120147216171, + "y": 411.61326038355804 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 154.9280147216171, + "y": 423.3162603835581 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 149.3260147216171, + "y": 433.9892603835581 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 141.3330147216171, + "y": 443.01226038355804 + }, + { + "body": null, + "index": 4, + "isInternal": false, + "x": 131.41301472161706, + "y": 449.8592603835581 + }, + { + "body": null, + "index": 5, + "isInternal": false, + "x": 120.14301472161702, + "y": 454.1332603835581 + }, + { + "body": null, + "index": 6, + "isInternal": false, + "x": 108.17701472161701, + "y": 455.58626038355806 + }, + { + "body": null, + "index": 7, + "isInternal": false, + "x": 96.21101472161703, + "y": 454.1332603835581 + }, + { + "body": null, + "index": 8, + "isInternal": false, + "x": 84.94101472161702, + "y": 449.8592603835581 + }, + { + "body": null, + "index": 9, + "isInternal": false, + "x": 75.02101472161701, + "y": 443.01226038355804 + }, + { + "body": null, + "index": 10, + "isInternal": false, + "x": 67.02801472161704, + "y": 433.9892603835581 + }, + { + "body": null, + "index": 11, + "isInternal": false, + "x": 61.426014721617044, + "y": 423.3162603835581 + }, + { + "body": null, + "index": 12, + "isInternal": false, + "x": 58.54201472161704, + "y": 411.61326038355804 + }, + { + "body": null, + "index": 13, + "isInternal": false, + "x": 58.54201472161704, + "y": 399.55926038355807 + }, + { + "body": null, + "index": 14, + "isInternal": false, + "x": 61.426014721617044, + "y": 387.85626038355804 + }, + { + "body": null, + "index": 15, + "isInternal": false, + "x": 67.02801472161704, + "y": 377.18326038355804 + }, + { + "body": null, + "index": 16, + "isInternal": false, + "x": 75.02101472161701, + "y": 368.16026038355807 + }, + { + "body": null, + "index": 17, + "isInternal": false, + "x": 84.94101472161702, + "y": 361.31326038355803 + }, + { + "body": null, + "index": 18, + "isInternal": false, + "x": 96.21101472161703, + "y": 357.03926038355803 + }, + { + "body": null, + "index": 19, + "isInternal": false, + "x": 108.17701472161701, + "y": 355.58626038355806 + }, + { + "body": null, + "index": 20, + "isInternal": false, + "x": 120.14301472161702, + "y": 357.03926038355803 + }, + { + "body": null, + "index": 21, + "isInternal": false, + "x": 131.41301472161706, + "y": 361.31326038355803 + }, + { + "body": null, + "index": 22, + "isInternal": false, + "x": 141.3330147216171, + "y": 368.16026038355807 + }, + { + "body": null, + "index": 23, + "isInternal": false, + "x": 149.3260147216171, + "y": 377.18326038355804 + }, + { + "body": null, + "index": 24, + "isInternal": false, + "x": 154.9280147216171, + "y": 387.85626038355804 + }, + { + "body": null, + "index": 25, + "isInternal": false, + "x": 157.8120147216171, + "y": 399.55926038355807 + }, + { + "max": { + "#": 146 + }, + "min": { + "#": 147 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + [ + { + "#": 149 + } + ], + { + "bodies": { + "#": 150 + }, + "composites": { + "#": 1251 + }, + "constraints": { + "#": 1252 + }, + "id": 4, + "isModified": false, + "label": "Stack", + "parent": null, + "type": "composite" + }, + [ + { + "#": 151 + }, + { + "#": 173 + }, + { + "#": 195 + }, + { + "#": 217 + }, + { + "#": 239 + }, + { + "#": 261 + }, + { + "#": 283 + }, + { + "#": 305 + }, + { + "#": 327 + }, + { + "#": 349 + }, + { + "#": 371 + }, + { + "#": 393 + }, + { + "#": 415 + }, + { + "#": 437 + }, + { + "#": 459 + }, + { + "#": 481 + }, + { + "#": 503 + }, + { + "#": 525 + }, + { + "#": 547 + }, + { + "#": 569 + }, + { + "#": 591 + }, + { + "#": 613 + }, + { + "#": 635 + }, + { + "#": 657 + }, + { + "#": 679 + }, + { + "#": 701 + }, + { + "#": 723 + }, + { + "#": 745 + }, + { + "#": 767 + }, + { + "#": 789 + }, + { + "#": 811 + }, + { + "#": 833 + }, + { + "#": 855 + }, + { + "#": 877 + }, + { + "#": 899 + }, + { + "#": 921 + }, + { + "#": 943 + }, + { + "#": 965 + }, + { + "#": 987 + }, + { + "#": 1009 + }, + { + "#": 1031 + }, + { + "#": 1053 + }, + { + "#": 1075 + }, + { + "#": 1097 + }, + { + "#": 1119 + }, + { + "#": 1141 + }, + { + "#": 1163 + }, + { + "#": 1185 + }, + { + "#": 1207 + }, + { + "#": 1229 + } + ], + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 152 + }, + "bounds": { + "#": 155 + }, + "collisionFilter": { + "#": 158 + }, + "constraintImpulse": { + "#": 159 + }, + "density": 0.001, + "force": { + "#": 160 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 5, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 161 + }, + "positionImpulse": { + "#": 162 + }, + "positionPrev": { + "#": 163 + }, + "region": { + "#": 164 + }, + "render": { + "#": 165 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.776150802718386, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 167 + }, + "vertices": { + "#": 168 + } + }, + [ + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 156 + }, + "min": { + "#": 157 + } + }, + { + "x": 440, + "y": 234.99998009414637 + }, + { + "x": 400, + "y": 193.223829291428 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 213.223829291428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 212.07773849417427 + }, + { + "endCol": 9, + "endRow": 4, + "id": "8,9,4,4", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 166 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.150983619630864 + }, + [ + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 193.223829291428 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 193.223829291428 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 233.223829291428 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 233.223829291428 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 174 + }, + "bounds": { + "#": 177 + }, + "collisionFilter": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "density": 0.001, + "force": { + "#": 182 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 6, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 183 + }, + "positionImpulse": { + "#": 184 + }, + "positionPrev": { + "#": 185 + }, + "region": { + "#": 186 + }, + "render": { + "#": 187 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.776150802718386, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 189 + }, + "vertices": { + "#": 190 + } + }, + [ + { + "#": 175 + }, + { + "#": 176 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 178 + }, + "min": { + "#": 179 + } + }, + { + "x": 480, + "y": 234.99998009414637 + }, + { + "x": 440, + "y": 193.223829291428 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 213.223829291428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 212.07773849417427 + }, + { + "endCol": 10, + "endRow": 4, + "id": "9,10,4,4", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 188 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.150983619630864 + }, + [ + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 193.223829291428 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 193.223829291428 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 233.223829291428 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 233.223829291428 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 196 + }, + "bounds": { + "#": 199 + }, + "collisionFilter": { + "#": 202 + }, + "constraintImpulse": { + "#": 203 + }, + "density": 0.001, + "force": { + "#": 204 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 7, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 205 + }, + "positionImpulse": { + "#": 206 + }, + "positionPrev": { + "#": 207 + }, + "region": { + "#": 208 + }, + "render": { + "#": 209 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.776150802718386, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 211 + }, + "vertices": { + "#": 212 + } + }, + [ + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 200 + }, + "min": { + "#": 201 + } + }, + { + "x": 520, + "y": 234.99998009414637 + }, + { + "x": 480, + "y": 193.223829291428 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 213.223829291428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 212.07773849417427 + }, + { + "endCol": 10, + "endRow": 4, + "id": "10,10,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 210 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.150983619630864 + }, + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 193.223829291428 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 193.223829291428 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 233.223829291428 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 233.223829291428 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 218 + }, + "bounds": { + "#": 221 + }, + "collisionFilter": { + "#": 224 + }, + "constraintImpulse": { + "#": 225 + }, + "density": 0.001, + "force": { + "#": 226 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 8, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 227 + }, + "positionImpulse": { + "#": 228 + }, + "positionPrev": { + "#": 229 + }, + "region": { + "#": 230 + }, + "render": { + "#": 231 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.776150802718386, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 233 + }, + "vertices": { + "#": 234 + } + }, + [ + { + "#": 219 + }, + { + "#": 220 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 222 + }, + "min": { + "#": 223 + } + }, + { + "x": 560, + "y": 234.99998009414637 + }, + { + "x": 520, + "y": 193.223829291428 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 213.223829291428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 212.07773849417427 + }, + { + "endCol": 11, + "endRow": 4, + "id": "10,11,4,4", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 232 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.150983619630864 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 193.223829291428 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 193.223829291428 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 233.223829291428 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 233.223829291428 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 240 + }, + "bounds": { + "#": 243 + }, + "collisionFilter": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "density": 0.001, + "force": { + "#": 248 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 9, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 249 + }, + "positionImpulse": { + "#": 250 + }, + "positionPrev": { + "#": 251 + }, + "region": { + "#": 252 + }, + "render": { + "#": 253 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.776150802718386, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 255 + }, + "vertices": { + "#": 256 + } + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 244 + }, + "min": { + "#": 245 + } + }, + { + "x": 600, + "y": 234.99998009414637 + }, + { + "x": 560, + "y": 193.223829291428 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 213.223829291428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 212.07773849417427 + }, + { + "endCol": 12, + "endRow": 4, + "id": "11,12,4,4", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 254 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.150983619630864 + }, + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 193.223829291428 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 193.223829291428 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 233.223829291428 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 233.223829291428 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 262 + }, + "bounds": { + "#": 265 + }, + "collisionFilter": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "density": 0.001, + "force": { + "#": 270 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 10, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 271 + }, + "positionImpulse": { + "#": 272 + }, + "positionPrev": { + "#": 273 + }, + "region": { + "#": 274 + }, + "render": { + "#": 275 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.754754519615883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 277 + }, + "vertices": { + "#": 278 + } + }, + [ + { + "#": 263 + }, + { + "#": 264 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 266 + }, + "min": { + "#": 267 + } + }, + { + "x": 440, + "y": 274.73013360919066 + }, + { + "x": 400, + "y": 232.97537908957494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 252.97537908957494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 251.8329579091041 + }, + { + "endCol": 9, + "endRow": 5, + "id": "8,9,4,5", + "startCol": 8, + "startRow": 4 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 276 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1375283580937037 + }, + [ + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 272.9753790895748 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 272.9753790895748 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 284 + }, + "bounds": { + "#": 287 + }, + "collisionFilter": { + "#": 290 + }, + "constraintImpulse": { + "#": 291 + }, + "density": 0.001, + "force": { + "#": 292 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 11, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 293 + }, + "positionImpulse": { + "#": 294 + }, + "positionPrev": { + "#": 295 + }, + "region": { + "#": 296 + }, + "render": { + "#": 297 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.754754519615883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 299 + }, + "vertices": { + "#": 300 + } + }, + [ + { + "#": 285 + }, + { + "#": 286 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 288 + }, + "min": { + "#": 289 + } + }, + { + "x": 480, + "y": 274.73013360919066 + }, + { + "x": 440, + "y": 232.97537908957494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 252.97537908957494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 251.8329579091041 + }, + { + "endCol": 10, + "endRow": 5, + "id": "9,10,4,5", + "startCol": 9, + "startRow": 4 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 298 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1375283580937037 + }, + [ + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 272.9753790895748 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 272.9753790895748 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 306 + }, + "bounds": { + "#": 309 + }, + "collisionFilter": { + "#": 312 + }, + "constraintImpulse": { + "#": 313 + }, + "density": 0.001, + "force": { + "#": 314 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 12, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 315 + }, + "positionImpulse": { + "#": 316 + }, + "positionPrev": { + "#": 317 + }, + "region": { + "#": 318 + }, + "render": { + "#": 319 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.754754519615883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 321 + }, + "vertices": { + "#": 322 + } + }, + [ + { + "#": 307 + }, + { + "#": 308 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 310 + }, + "min": { + "#": 311 + } + }, + { + "x": 520, + "y": 274.73013360919066 + }, + { + "x": 480, + "y": 232.97537908957494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 252.97537908957494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 251.8329579091041 + }, + { + "endCol": 10, + "endRow": 5, + "id": "10,10,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 320 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1375283580937037 + }, + [ + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 272.9753790895748 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 272.9753790895748 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 328 + }, + "bounds": { + "#": 331 + }, + "collisionFilter": { + "#": 334 + }, + "constraintImpulse": { + "#": 335 + }, + "density": 0.001, + "force": { + "#": 336 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 13, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 337 + }, + "positionImpulse": { + "#": 338 + }, + "positionPrev": { + "#": 339 + }, + "region": { + "#": 340 + }, + "render": { + "#": 341 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.754754519615883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 343 + }, + "vertices": { + "#": 344 + } + }, + [ + { + "#": 329 + }, + { + "#": 330 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 332 + }, + "min": { + "#": 333 + } + }, + { + "x": 560, + "y": 274.73013360919066 + }, + { + "x": 520, + "y": 232.97537908957494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 252.97537908957494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 251.8329579091041 + }, + { + "endCol": 11, + "endRow": 5, + "id": "10,11,4,5", + "startCol": 10, + "startRow": 4 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 342 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1375283580937037 + }, + [ + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 272.9753790895748 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 272.9753790895748 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 350 + }, + "bounds": { + "#": 353 + }, + "collisionFilter": { + "#": 356 + }, + "constraintImpulse": { + "#": 357 + }, + "density": 0.001, + "force": { + "#": 358 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 14, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 359 + }, + "positionImpulse": { + "#": 360 + }, + "positionPrev": { + "#": 361 + }, + "region": { + "#": 362 + }, + "render": { + "#": 363 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.754754519615883, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 365 + }, + "vertices": { + "#": 366 + } + }, + [ + { + "#": 351 + }, + { + "#": 352 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 354 + }, + "min": { + "#": 355 + } + }, + { + "x": 600, + "y": 274.73013360919066 + }, + { + "x": 560, + "y": 232.97537908957494 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 252.97537908957494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 251.8329579091041 + }, + { + "endCol": 12, + "endRow": 5, + "id": "11,12,4,5", + "startCol": 11, + "startRow": 4 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 364 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1375283580937037 + }, + [ + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 232.97537908957494 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 272.9753790895748 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 272.9753790895748 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 372 + }, + "bounds": { + "#": 375 + }, + "collisionFilter": { + "#": 378 + }, + "constraintImpulse": { + "#": 379 + }, + "density": 0.001, + "force": { + "#": 380 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 15, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 381 + }, + "positionImpulse": { + "#": 382 + }, + "positionPrev": { + "#": 383 + }, + "region": { + "#": 384 + }, + "render": { + "#": 385 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6140312103053436, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 387 + }, + "vertices": { + "#": 388 + } + }, + [ + { + "#": 373 + }, + { + "#": 374 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 376 + }, + "min": { + "#": 377 + } + }, + { + "x": 440, + "y": 313.963227414678 + }, + { + "x": 400, + "y": 272.3491962043726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 292.3491962043726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 291.2471849789767 + }, + { + "endCol": 9, + "endRow": 6, + "id": "8,9,5,6", + "startCol": 8, + "startRow": 5 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 386 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1287849974754636 + }, + [ + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 312.3491962043726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 312.3491962043726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 394 + }, + "bounds": { + "#": 397 + }, + "collisionFilter": { + "#": 400 + }, + "constraintImpulse": { + "#": 401 + }, + "density": 0.001, + "force": { + "#": 402 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 16, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 403 + }, + "positionImpulse": { + "#": 404 + }, + "positionPrev": { + "#": 405 + }, + "region": { + "#": 406 + }, + "render": { + "#": 407 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6140312103053436, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 409 + }, + "vertices": { + "#": 410 + } + }, + [ + { + "#": 395 + }, + { + "#": 396 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 398 + }, + "min": { + "#": 399 + } + }, + { + "x": 480, + "y": 313.963227414678 + }, + { + "x": 440, + "y": 272.3491962043726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 292.3491962043726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 291.2471849789767 + }, + { + "endCol": 10, + "endRow": 6, + "id": "9,10,5,6", + "startCol": 9, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 408 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1287849974754636 + }, + [ + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 312.3491962043726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 312.3491962043726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 416 + }, + "bounds": { + "#": 419 + }, + "collisionFilter": { + "#": 422 + }, + "constraintImpulse": { + "#": 423 + }, + "density": 0.001, + "force": { + "#": 424 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 17, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 425 + }, + "positionImpulse": { + "#": 426 + }, + "positionPrev": { + "#": 427 + }, + "region": { + "#": 428 + }, + "render": { + "#": 429 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6140312103053436, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 431 + }, + "vertices": { + "#": 432 + } + }, + [ + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 420 + }, + "min": { + "#": 421 + } + }, + { + "x": 520, + "y": 313.963227414678 + }, + { + "x": 480, + "y": 272.3491962043726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 292.3491962043726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 291.2471849789767 + }, + { + "endCol": 10, + "endRow": 6, + "id": "10,10,5,6", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 430 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1287849974754636 + }, + [ + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 312.3491962043726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 312.3491962043726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 438 + }, + "bounds": { + "#": 441 + }, + "collisionFilter": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "density": 0.001, + "force": { + "#": 446 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 18, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 447 + }, + "positionImpulse": { + "#": 448 + }, + "positionPrev": { + "#": 449 + }, + "region": { + "#": 450 + }, + "render": { + "#": 451 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6140312103053436, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 453 + }, + "vertices": { + "#": 454 + } + }, + [ + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 442 + }, + "min": { + "#": 443 + } + }, + { + "x": 560, + "y": 313.963227414678 + }, + { + "x": 520, + "y": 272.3491962043726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 292.3491962043726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 291.2471849789767 + }, + { + "endCol": 11, + "endRow": 6, + "id": "10,11,5,6", + "startCol": 10, + "startRow": 5 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 452 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1287849974754636 + }, + [ + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 312.3491962043726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 312.3491962043726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 460 + }, + "bounds": { + "#": 463 + }, + "collisionFilter": { + "#": 466 + }, + "constraintImpulse": { + "#": 467 + }, + "density": 0.001, + "force": { + "#": 468 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 19, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 469 + }, + "positionImpulse": { + "#": 470 + }, + "positionPrev": { + "#": 471 + }, + "region": { + "#": 472 + }, + "render": { + "#": 473 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.6140312103053436, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 475 + }, + "vertices": { + "#": 476 + } + }, + [ + { + "#": 461 + }, + { + "#": 462 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 464 + }, + "min": { + "#": 465 + } + }, + { + "x": 600, + "y": 313.963227414678 + }, + { + "x": 560, + "y": 272.3491962043726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 292.3491962043726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 291.2471849789767 + }, + { + "endCol": 12, + "endRow": 6, + "id": "11,12,5,6", + "startCol": 11, + "startRow": 5 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 474 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.1287849974754636 + }, + [ + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 272.3491962043726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 312.3491962043726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 312.3491962043726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 482 + }, + "bounds": { + "#": 485 + }, + "collisionFilter": { + "#": 488 + }, + "constraintImpulse": { + "#": 489 + }, + "density": 0.001, + "force": { + "#": 490 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 20, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 491 + }, + "positionImpulse": { + "#": 492 + }, + "positionPrev": { + "#": 493 + }, + "region": { + "#": 494 + }, + "render": { + "#": 495 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4771756394552389, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 497 + }, + "vertices": { + "#": 498 + } + }, + [ + { + "#": 483 + }, + { + "#": 484 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 486 + }, + "min": { + "#": 487 + } + }, + { + "x": 440, + "y": 352.8687007751279 + }, + { + "x": 400, + "y": 311.3915251356726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 331.3915251356726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 330.3549042277475 + }, + { + "endCol": 9, + "endRow": 7, + "id": "8,9,6,7", + "startCol": 8, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 496 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.0819308963363028 + }, + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 351.3915251356726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 351.3915251356726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 504 + }, + "bounds": { + "#": 507 + }, + "collisionFilter": { + "#": 510 + }, + "constraintImpulse": { + "#": 511 + }, + "density": 0.001, + "force": { + "#": 512 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 21, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 513 + }, + "positionImpulse": { + "#": 514 + }, + "positionPrev": { + "#": 515 + }, + "region": { + "#": 516 + }, + "render": { + "#": 517 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4771756394552389, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 519 + }, + "vertices": { + "#": 520 + } + }, + [ + { + "#": 505 + }, + { + "#": 506 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 508 + }, + "min": { + "#": 509 + } + }, + { + "x": 480, + "y": 352.8687007751279 + }, + { + "x": 440, + "y": 311.3915251356726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 331.3915251356726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 330.3549042277475 + }, + { + "endCol": 10, + "endRow": 7, + "id": "9,10,6,7", + "startCol": 9, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 518 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.0819308963363028 + }, + [ + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 351.3915251356726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 351.3915251356726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 526 + }, + "bounds": { + "#": 529 + }, + "collisionFilter": { + "#": 532 + }, + "constraintImpulse": { + "#": 533 + }, + "density": 0.001, + "force": { + "#": 534 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 22, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 535 + }, + "positionImpulse": { + "#": 536 + }, + "positionPrev": { + "#": 537 + }, + "region": { + "#": 538 + }, + "render": { + "#": 539 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4771756394552389, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 541 + }, + "vertices": { + "#": 542 + } + }, + [ + { + "#": 527 + }, + { + "#": 528 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 530 + }, + "min": { + "#": 531 + } + }, + { + "x": 520, + "y": 352.8687007751279 + }, + { + "x": 480, + "y": 311.3915251356726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 331.3915251356726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 330.3549042277475 + }, + { + "endCol": 10, + "endRow": 7, + "id": "10,10,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 540 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.0819308963363028 + }, + [ + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 351.3915251356726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 351.3915251356726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 548 + }, + "bounds": { + "#": 551 + }, + "collisionFilter": { + "#": 554 + }, + "constraintImpulse": { + "#": 555 + }, + "density": 0.001, + "force": { + "#": 556 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 23, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 557 + }, + "positionImpulse": { + "#": 558 + }, + "positionPrev": { + "#": 559 + }, + "region": { + "#": 560 + }, + "render": { + "#": 561 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4771756394552389, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 563 + }, + "vertices": { + "#": 564 + } + }, + [ + { + "#": 549 + }, + { + "#": 550 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 552 + }, + "min": { + "#": 553 + } + }, + { + "x": 560, + "y": 352.8687007751279 + }, + { + "x": 520, + "y": 311.3915251356726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 331.3915251356726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 330.3549042277475 + }, + { + "endCol": 11, + "endRow": 7, + "id": "10,11,6,7", + "startCol": 10, + "startRow": 6 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 562 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.0819308963363028 + }, + [ + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 351.3915251356726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 351.3915251356726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 570 + }, + "bounds": { + "#": 573 + }, + "collisionFilter": { + "#": 576 + }, + "constraintImpulse": { + "#": 577 + }, + "density": 0.001, + "force": { + "#": 578 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 24, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 579 + }, + "positionImpulse": { + "#": 580 + }, + "positionPrev": { + "#": 581 + }, + "region": { + "#": 582 + }, + "render": { + "#": 583 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4771756394552389, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 585 + }, + "vertices": { + "#": 586 + } + }, + [ + { + "#": 571 + }, + { + "#": 572 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 574 + }, + "min": { + "#": 575 + } + }, + { + "x": 600, + "y": 352.8687007751279 + }, + { + "x": 560, + "y": 311.3915251356726 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 331.3915251356726 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 330.3549042277475 + }, + { + "endCol": 12, + "endRow": 7, + "id": "11,12,6,7", + "startCol": 11, + "startRow": 6 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 584 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 1.0819308963363028 + }, + [ + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 311.3915251356726 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 351.3915251356726 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 351.3915251356726 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 592 + }, + "bounds": { + "#": 595 + }, + "collisionFilter": { + "#": 598 + }, + "constraintImpulse": { + "#": 599 + }, + "density": 0.001, + "force": { + "#": 600 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 25, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 601 + }, + "positionImpulse": { + "#": 602 + }, + "positionPrev": { + "#": 603 + }, + "region": { + "#": 604 + }, + "render": { + "#": 605 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4144256349320627, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 607 + }, + "vertices": { + "#": 608 + } + }, + [ + { + "#": 593 + }, + { + "#": 594 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 596 + }, + "min": { + "#": 597 + } + }, + { + "x": 440, + "y": 391.56757122841424 + }, + { + "x": 400, + "y": 350.1531455934822 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 370.1531455934822 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 369.1505071768656 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,7,8", + "startCol": 8, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 606 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.9573284282054146 + }, + [ + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 390.1531455934822 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 390.1531455934822 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 614 + }, + "bounds": { + "#": 617 + }, + "collisionFilter": { + "#": 620 + }, + "constraintImpulse": { + "#": 621 + }, + "density": 0.001, + "force": { + "#": 622 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 26, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 623 + }, + "positionImpulse": { + "#": 624 + }, + "positionPrev": { + "#": 625 + }, + "region": { + "#": 626 + }, + "render": { + "#": 627 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4144256349320627, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 629 + }, + "vertices": { + "#": 630 + } + }, + [ + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 618 + }, + "min": { + "#": 619 + } + }, + { + "x": 480, + "y": 391.56757122841424 + }, + { + "x": 440, + "y": 350.1531455934822 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 370.1531455934822 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 369.1505071768656 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,7,8", + "startCol": 9, + "startRow": 7 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 628 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.9573284282054146 + }, + [ + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 390.1531455934822 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 390.1531455934822 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 636 + }, + "bounds": { + "#": 639 + }, + "collisionFilter": { + "#": 642 + }, + "constraintImpulse": { + "#": 643 + }, + "density": 0.001, + "force": { + "#": 644 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 27, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 645 + }, + "positionImpulse": { + "#": 646 + }, + "positionPrev": { + "#": 647 + }, + "region": { + "#": 648 + }, + "render": { + "#": 649 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4144256349320627, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 651 + }, + "vertices": { + "#": 652 + } + }, + [ + { + "#": 637 + }, + { + "#": 638 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 640 + }, + "min": { + "#": 641 + } + }, + { + "x": 520, + "y": 391.56757122841424 + }, + { + "x": 480, + "y": 350.1531455934822 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 370.1531455934822 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 369.1505071768656 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 650 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.9573284282054146 + }, + [ + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 390.1531455934822 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 390.1531455934822 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 658 + }, + "bounds": { + "#": 661 + }, + "collisionFilter": { + "#": 664 + }, + "constraintImpulse": { + "#": 665 + }, + "density": 0.001, + "force": { + "#": 666 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 28, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 667 + }, + "positionImpulse": { + "#": 668 + }, + "positionPrev": { + "#": 669 + }, + "region": { + "#": 670 + }, + "render": { + "#": 671 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4144256349320627, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 673 + }, + "vertices": { + "#": 674 + } + }, + [ + { + "#": 659 + }, + { + "#": 660 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 662 + }, + "min": { + "#": 663 + } + }, + { + "x": 560, + "y": 391.56757122841424 + }, + { + "x": 520, + "y": 350.1531455934822 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 370.1531455934822 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 369.1505071768656 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,7,8", + "startCol": 10, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 672 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.9573284282054146 + }, + [ + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 390.1531455934822 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 390.1531455934822 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 680 + }, + "bounds": { + "#": 683 + }, + "collisionFilter": { + "#": 686 + }, + "constraintImpulse": { + "#": 687 + }, + "density": 0.001, + "force": { + "#": 688 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 29, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 689 + }, + "positionImpulse": { + "#": 690 + }, + "positionPrev": { + "#": 691 + }, + "region": { + "#": 692 + }, + "render": { + "#": 693 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.4144256349320627, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 695 + }, + "vertices": { + "#": 696 + } + }, + [ + { + "#": 681 + }, + { + "#": 682 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 684 + }, + "min": { + "#": 685 + } + }, + { + "x": 600, + "y": 391.56757122841424 + }, + { + "x": 560, + "y": 350.1531455934822 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 370.1531455934822 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 369.1505071768656 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,7,8", + "startCol": 11, + "startRow": 7 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 694 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.9573284282054146 + }, + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 350.1531455934822 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 390.1531455934822 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 390.1531455934822 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 702 + }, + "bounds": { + "#": 705 + }, + "collisionFilter": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "density": 0.001, + "force": { + "#": 710 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 30, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 711 + }, + "positionImpulse": { + "#": 712 + }, + "positionPrev": { + "#": 713 + }, + "region": { + "#": 714 + }, + "render": { + "#": 715 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2588149980577692, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 717 + }, + "vertices": { + "#": 718 + } + }, + [ + { + "#": 703 + }, + { + "#": 704 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 706 + }, + "min": { + "#": 707 + } + }, + { + "x": 440, + "y": 429.9341854463855 + }, + { + "x": 400, + "y": 388.6753704483278 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 408.6753704483278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 407.76667268364565 + }, + { + "endCol": 9, + "endRow": 8, + "id": "8,9,8,8", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 716 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8438568799842301 + }, + [ + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 428.6753704483278 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 428.6753704483278 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 724 + }, + "bounds": { + "#": 727 + }, + "collisionFilter": { + "#": 730 + }, + "constraintImpulse": { + "#": 731 + }, + "density": 0.001, + "force": { + "#": 732 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 31, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 733 + }, + "positionImpulse": { + "#": 734 + }, + "positionPrev": { + "#": 735 + }, + "region": { + "#": 736 + }, + "render": { + "#": 737 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2588149980577692, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 739 + }, + "vertices": { + "#": 740 + } + }, + [ + { + "#": 725 + }, + { + "#": 726 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 728 + }, + "min": { + "#": 729 + } + }, + { + "x": 480, + "y": 429.9341854463855 + }, + { + "x": 440, + "y": 388.6753704483278 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 408.6753704483278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 407.76667268364565 + }, + { + "endCol": 10, + "endRow": 8, + "id": "9,10,8,8", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 738 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8438568799842301 + }, + [ + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 428.6753704483278 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 428.6753704483278 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 746 + }, + "bounds": { + "#": 749 + }, + "collisionFilter": { + "#": 752 + }, + "constraintImpulse": { + "#": 753 + }, + "density": 0.001, + "force": { + "#": 754 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 32, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 755 + }, + "positionImpulse": { + "#": 756 + }, + "positionPrev": { + "#": 757 + }, + "region": { + "#": 758 + }, + "render": { + "#": 759 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2588149980577692, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 761 + }, + "vertices": { + "#": 762 + } + }, + [ + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 750 + }, + "min": { + "#": 751 + } + }, + { + "x": 520, + "y": 429.9341854463855 + }, + { + "x": 480, + "y": 388.6753704483278 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 408.6753704483278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 407.76667268364565 + }, + { + "endCol": 10, + "endRow": 8, + "id": "10,10,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 760 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8438568799842301 + }, + [ + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 428.6753704483278 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 428.6753704483278 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 768 + }, + "bounds": { + "#": 771 + }, + "collisionFilter": { + "#": 774 + }, + "constraintImpulse": { + "#": 775 + }, + "density": 0.001, + "force": { + "#": 776 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 33, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 777 + }, + "positionImpulse": { + "#": 778 + }, + "positionPrev": { + "#": 779 + }, + "region": { + "#": 780 + }, + "render": { + "#": 781 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2588149980577692, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 783 + }, + "vertices": { + "#": 784 + } + }, + [ + { + "#": 769 + }, + { + "#": 770 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 772 + }, + "min": { + "#": 773 + } + }, + { + "x": 560, + "y": 429.9341854463855 + }, + { + "x": 520, + "y": 388.6753704483278 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 408.6753704483278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 407.76667268364565 + }, + { + "endCol": 11, + "endRow": 8, + "id": "10,11,8,8", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 782 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8438568799842301 + }, + [ + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 428.6753704483278 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 428.6753704483278 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 790 + }, + "bounds": { + "#": 793 + }, + "collisionFilter": { + "#": 796 + }, + "constraintImpulse": { + "#": 797 + }, + "density": 0.001, + "force": { + "#": 798 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 34, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 799 + }, + "positionImpulse": { + "#": 800 + }, + "positionPrev": { + "#": 801 + }, + "region": { + "#": 802 + }, + "render": { + "#": 803 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.2588149980577692, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 805 + }, + "vertices": { + "#": 806 + } + }, + [ + { + "#": 791 + }, + { + "#": 792 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 794 + }, + "min": { + "#": 795 + } + }, + { + "x": 600, + "y": 429.9341854463855 + }, + { + "x": 560, + "y": 388.6753704483278 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 408.6753704483278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 407.76667268364565 + }, + { + "endCol": 12, + "endRow": 8, + "id": "11,12,8,8", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 804 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.8438568799842301 + }, + [ + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 388.6753704483278 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 428.6753704483278 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 428.6753704483278 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 812 + }, + "bounds": { + "#": 815 + }, + "collisionFilter": { + "#": 818 + }, + "constraintImpulse": { + "#": 819 + }, + "density": 0.001, + "force": { + "#": 820 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 35, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 821 + }, + "positionImpulse": { + "#": 822 + }, + "positionPrev": { + "#": 823 + }, + "region": { + "#": 824 + }, + "render": { + "#": 825 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0817916866392865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 827 + }, + "vertices": { + "#": 828 + } + }, + [ + { + "#": 813 + }, + { + "#": 814 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 816 + }, + "min": { + "#": 817 + } + }, + { + "x": 440, + "y": 468.07042989761095 + }, + { + "x": 400, + "y": 426.98863821097166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 446.98863821097166 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 446.20903566247597 + }, + { + "endCol": 9, + "endRow": 9, + "id": "8,9,8,9", + "startCol": 8, + "startRow": 8 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 826 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.6939301065108907 + }, + [ + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 466.98863821097166 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 466.98863821097166 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 834 + }, + "bounds": { + "#": 837 + }, + "collisionFilter": { + "#": 840 + }, + "constraintImpulse": { + "#": 841 + }, + "density": 0.001, + "force": { + "#": 842 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 36, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 843 + }, + "positionImpulse": { + "#": 844 + }, + "positionPrev": { + "#": 845 + }, + "region": { + "#": 846 + }, + "render": { + "#": 847 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0817916866392865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 849 + }, + "vertices": { + "#": 850 + } + }, + [ + { + "#": 835 + }, + { + "#": 836 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 838 + }, + "min": { + "#": 839 + } + }, + { + "x": 480, + "y": 468.07042989761095 + }, + { + "x": 440, + "y": 426.98863821097166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 446.98863821097166 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 446.20903566247597 + }, + { + "endCol": 10, + "endRow": 9, + "id": "9,10,8,9", + "startCol": 9, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 848 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.6939301065108907 + }, + [ + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 466.98863821097166 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 466.98863821097166 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 856 + }, + "bounds": { + "#": 859 + }, + "collisionFilter": { + "#": 862 + }, + "constraintImpulse": { + "#": 863 + }, + "density": 0.001, + "force": { + "#": 864 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 37, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 865 + }, + "positionImpulse": { + "#": 866 + }, + "positionPrev": { + "#": 867 + }, + "region": { + "#": 868 + }, + "render": { + "#": 869 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0817916866392865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 871 + }, + "vertices": { + "#": 872 + } + }, + [ + { + "#": 857 + }, + { + "#": 858 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 860 + }, + "min": { + "#": 861 + } + }, + { + "x": 520, + "y": 468.07042989761095 + }, + { + "x": 480, + "y": 426.98863821097166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 446.98863821097166 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 446.20903566247597 + }, + { + "endCol": 10, + "endRow": 9, + "id": "10,10,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 870 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.6939301065108907 + }, + [ + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 466.98863821097166 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 466.98863821097166 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 878 + }, + "bounds": { + "#": 881 + }, + "collisionFilter": { + "#": 884 + }, + "constraintImpulse": { + "#": 885 + }, + "density": 0.001, + "force": { + "#": 886 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 38, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 887 + }, + "positionImpulse": { + "#": 888 + }, + "positionPrev": { + "#": 889 + }, + "region": { + "#": 890 + }, + "render": { + "#": 891 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0817916866392865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 893 + }, + "vertices": { + "#": 894 + } + }, + [ + { + "#": 879 + }, + { + "#": 880 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 882 + }, + "min": { + "#": 883 + } + }, + { + "x": 560, + "y": 468.07042989761095 + }, + { + "x": 520, + "y": 426.98863821097166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 446.98863821097166 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 446.20903566247597 + }, + { + "endCol": 11, + "endRow": 9, + "id": "10,11,8,9", + "startCol": 10, + "startRow": 8 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 892 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.6939301065108907 + }, + [ + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 466.98863821097166 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 466.98863821097166 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 900 + }, + "bounds": { + "#": 903 + }, + "collisionFilter": { + "#": 906 + }, + "constraintImpulse": { + "#": 907 + }, + "density": 0.001, + "force": { + "#": 908 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 39, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 909 + }, + "positionImpulse": { + "#": 910 + }, + "positionPrev": { + "#": 911 + }, + "region": { + "#": 912 + }, + "render": { + "#": 913 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 1.0817916866392865, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 915 + }, + "vertices": { + "#": 916 + } + }, + [ + { + "#": 901 + }, + { + "#": 902 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 904 + }, + "min": { + "#": 905 + } + }, + { + "x": 600, + "y": 468.07042989761095 + }, + { + "x": 560, + "y": 426.98863821097166 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 446.98863821097166 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 446.20903566247597 + }, + { + "endCol": 12, + "endRow": 9, + "id": "11,12,8,9", + "startCol": 11, + "startRow": 8 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 914 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.6939301065108907 + }, + [ + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 426.98863821097166 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 466.98863821097166 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 466.98863821097166 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 922 + }, + "bounds": { + "#": 925 + }, + "collisionFilter": { + "#": 928 + }, + "constraintImpulse": { + "#": 929 + }, + "density": 0.001, + "force": { + "#": 930 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 40, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 931 + }, + "positionImpulse": { + "#": 932 + }, + "positionPrev": { + "#": 933 + }, + "region": { + "#": 934 + }, + "render": { + "#": 935 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8835776602881522, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 937 + }, + "vertices": { + "#": 938 + } + }, + [ + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 926 + }, + "min": { + "#": 927 + } + }, + { + "x": 440, + "y": 505.99728913928493 + }, + { + "x": 400, + "y": 465.1137114789968 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 485.1137114789968 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 484.49906099759767 + }, + { + "endCol": 9, + "endRow": 10, + "id": "8,9,9,10", + "startCol": 8, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 936 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.5089443145832888 + }, + [ + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 505.1137114789968 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 505.1137114789968 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 944 + }, + "bounds": { + "#": 947 + }, + "collisionFilter": { + "#": 950 + }, + "constraintImpulse": { + "#": 951 + }, + "density": 0.001, + "force": { + "#": 952 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 41, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 953 + }, + "positionImpulse": { + "#": 954 + }, + "positionPrev": { + "#": 955 + }, + "region": { + "#": 956 + }, + "render": { + "#": 957 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8835776602881522, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 959 + }, + "vertices": { + "#": 960 + } + }, + [ + { + "#": 945 + }, + { + "#": 946 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 948 + }, + "min": { + "#": 949 + } + }, + { + "x": 480, + "y": 505.99728913928493 + }, + { + "x": 440, + "y": 465.1137114789968 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 485.1137114789968 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 484.49906099759767 + }, + { + "endCol": 10, + "endRow": 10, + "id": "9,10,9,10", + "startCol": 9, + "startRow": 9 + }, + { + "fillStyle": "#4ECDC4", + "lineWidth": 1.5, + "sprite": { + "#": 958 + }, + "strokeStyle": "#1b9a91", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.5089443145832888 + }, + [ + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 505.1137114789968 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 505.1137114789968 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 966 + }, + "bounds": { + "#": 969 + }, + "collisionFilter": { + "#": 972 + }, + "constraintImpulse": { + "#": 973 + }, + "density": 0.001, + "force": { + "#": 974 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 42, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 975 + }, + "positionImpulse": { + "#": 976 + }, + "positionPrev": { + "#": 977 + }, + "region": { + "#": 978 + }, + "render": { + "#": 979 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8835776602881522, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 981 + }, + "vertices": { + "#": 982 + } + }, + [ + { + "#": 967 + }, + { + "#": 968 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 970 + }, + "min": { + "#": 971 + } + }, + { + "x": 520, + "y": 505.99728913928493 + }, + { + "x": 480, + "y": 465.1137114789968 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 485.1137114789968 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 484.49906099759767 + }, + { + "endCol": 10, + "endRow": 10, + "id": "10,10,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 980 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.5089443145832888 + }, + [ + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 505.1137114789968 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 505.1137114789968 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 988 + }, + "bounds": { + "#": 991 + }, + "collisionFilter": { + "#": 994 + }, + "constraintImpulse": { + "#": 995 + }, + "density": 0.001, + "force": { + "#": 996 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 43, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 997 + }, + "positionImpulse": { + "#": 998 + }, + "positionPrev": { + "#": 999 + }, + "region": { + "#": 1000 + }, + "render": { + "#": 1001 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8835776602881522, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1003 + }, + "vertices": { + "#": 1004 + } + }, + [ + { + "#": 989 + }, + { + "#": 990 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 992 + }, + "min": { + "#": 993 + } + }, + { + "x": 560, + "y": 505.99728913928493 + }, + { + "x": 520, + "y": 465.1137114789968 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 485.1137114789968 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 484.49906099759767 + }, + { + "endCol": 11, + "endRow": 10, + "id": "10,11,9,10", + "startCol": 10, + "startRow": 9 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1002 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.5089443145832888 + }, + [ + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 505.1137114789968 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 505.1137114789968 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1010 + }, + "bounds": { + "#": 1013 + }, + "collisionFilter": { + "#": 1016 + }, + "constraintImpulse": { + "#": 1017 + }, + "density": 0.001, + "force": { + "#": 1018 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 44, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1019 + }, + "positionImpulse": { + "#": 1020 + }, + "positionPrev": { + "#": 1021 + }, + "region": { + "#": 1022 + }, + "render": { + "#": 1023 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.8835776602881522, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1025 + }, + "vertices": { + "#": 1026 + } + }, + [ + { + "#": 1011 + }, + { + "#": 1012 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1014 + }, + "min": { + "#": 1015 + } + }, + { + "x": 600, + "y": 505.99728913928493 + }, + { + "x": 560, + "y": 465.1137114789968 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 485.1137114789968 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 484.49906099759767 + }, + { + "endCol": 12, + "endRow": 10, + "id": "11,12,9,10", + "startCol": 11, + "startRow": 9 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1024 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.5089443145832888 + }, + [ + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 465.1137114789968 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 505.1137114789968 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 505.1137114789968 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1032 + }, + "bounds": { + "#": 1035 + }, + "collisionFilter": { + "#": 1038 + }, + "constraintImpulse": { + "#": 1039 + }, + "density": 0.001, + "force": { + "#": 1040 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 45, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1041 + }, + "positionImpulse": { + "#": 1042 + }, + "positionPrev": { + "#": 1043 + }, + "region": { + "#": 1044 + }, + "render": { + "#": 1045 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6683698044662363, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1047 + }, + "vertices": { + "#": 1048 + } + }, + [ + { + "#": 1033 + }, + { + "#": 1034 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1036 + }, + "min": { + "#": 1037 + } + }, + { + "x": 440, + "y": 543.7365342391327 + }, + { + "x": 400, + "y": 503.06816443466636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 523.0681644346664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 522.6517256848247 + }, + { + "endCol": 9, + "endRow": 11, + "id": "8,9,10,11", + "startCol": 8, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1046 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2930979968527936 + }, + [ + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 543.0681644346664 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 543.0681644346664 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1054 + }, + "bounds": { + "#": 1057 + }, + "collisionFilter": { + "#": 1060 + }, + "constraintImpulse": { + "#": 1061 + }, + "density": 0.001, + "force": { + "#": 1062 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 46, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1063 + }, + "positionImpulse": { + "#": 1064 + }, + "positionPrev": { + "#": 1065 + }, + "region": { + "#": 1066 + }, + "render": { + "#": 1067 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6683698044662363, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1069 + }, + "vertices": { + "#": 1070 + } + }, + [ + { + "#": 1055 + }, + { + "#": 1056 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1058 + }, + "min": { + "#": 1059 + } + }, + { + "x": 480, + "y": 543.7365342391327 + }, + { + "x": 440, + "y": 503.06816443466636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 523.0681644346664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 522.6517256848247 + }, + { + "endCol": 10, + "endRow": 11, + "id": "9,10,10,11", + "startCol": 9, + "startRow": 10 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1068 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2930979968527936 + }, + [ + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 543.0681644346664 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 543.0681644346664 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1076 + }, + "bounds": { + "#": 1079 + }, + "collisionFilter": { + "#": 1082 + }, + "constraintImpulse": { + "#": 1083 + }, + "density": 0.001, + "force": { + "#": 1084 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 47, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1085 + }, + "positionImpulse": { + "#": 1086 + }, + "positionPrev": { + "#": 1087 + }, + "region": { + "#": 1088 + }, + "render": { + "#": 1089 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6683698044662363, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1091 + }, + "vertices": { + "#": 1092 + } + }, + [ + { + "#": 1077 + }, + { + "#": 1078 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1080 + }, + "min": { + "#": 1081 + } + }, + { + "x": 520, + "y": 543.7365342391327 + }, + { + "x": 480, + "y": 503.06816443466636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 523.0681644346664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 522.6517256848247 + }, + { + "endCol": 10, + "endRow": 11, + "id": "10,10,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1090 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2930979968527936 + }, + [ + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 543.0681644346664 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 543.0681644346664 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1098 + }, + "bounds": { + "#": 1101 + }, + "collisionFilter": { + "#": 1104 + }, + "constraintImpulse": { + "#": 1105 + }, + "density": 0.001, + "force": { + "#": 1106 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 48, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1107 + }, + "positionImpulse": { + "#": 1108 + }, + "positionPrev": { + "#": 1109 + }, + "region": { + "#": 1110 + }, + "render": { + "#": 1111 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6683698044662363, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1113 + }, + "vertices": { + "#": 1114 + } + }, + [ + { + "#": 1099 + }, + { + "#": 1100 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1102 + }, + "min": { + "#": 1103 + } + }, + { + "x": 560, + "y": 543.7365342391327 + }, + { + "x": 520, + "y": 503.06816443466636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 523.0681644346664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 522.6517256848247 + }, + { + "endCol": 11, + "endRow": 11, + "id": "10,11,10,11", + "startCol": 10, + "startRow": 10 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1112 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2930979968527936 + }, + [ + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 543.0681644346664 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 543.0681644346664 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1120 + }, + "bounds": { + "#": 1123 + }, + "collisionFilter": { + "#": 1126 + }, + "constraintImpulse": { + "#": 1127 + }, + "density": 0.001, + "force": { + "#": 1128 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 49, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1129 + }, + "positionImpulse": { + "#": 1130 + }, + "positionPrev": { + "#": 1131 + }, + "region": { + "#": 1132 + }, + "render": { + "#": 1133 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.6683698044662363, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1135 + }, + "vertices": { + "#": 1136 + } + }, + [ + { + "#": 1121 + }, + { + "#": 1122 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1124 + }, + "min": { + "#": 1125 + } + }, + { + "x": 600, + "y": 543.7365342391327 + }, + { + "x": 560, + "y": 503.06816443466636 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 523.0681644346664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 522.6517256848247 + }, + { + "endCol": 12, + "endRow": 11, + "id": "11,12,10,11", + "startCol": 11, + "startRow": 10 + }, + { + "fillStyle": "#FF6B6B", + "lineWidth": 1.5, + "sprite": { + "#": 1134 + }, + "strokeStyle": "#cc3838", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.2930979968527936 + }, + [ + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 503.06816443466636 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 543.0681644346664 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 543.0681644346664 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1142 + }, + "bounds": { + "#": 1145 + }, + "collisionFilter": { + "#": 1148 + }, + "constraintImpulse": { + "#": 1149 + }, + "density": 0.001, + "force": { + "#": 1150 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 50, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1151 + }, + "positionImpulse": { + "#": 1152 + }, + "positionPrev": { + "#": 1153 + }, + "region": { + "#": 1154 + }, + "render": { + "#": 1155 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.44785086013528214, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1157 + }, + "vertices": { + "#": 1158 + } + }, + [ + { + "#": 1143 + }, + { + "#": 1144 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1146 + }, + "min": { + "#": 1147 + } + }, + { + "x": 440, + "y": 581.3379239522501 + }, + { + "x": 400, + "y": 540.8900730921148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 560.8900730921148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 420, + "y": 560.6995346242295 + }, + { + "endCol": 9, + "endRow": 12, + "id": "8,9,11,12", + "startCol": 8, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1156 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05379242926164807 + }, + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 400, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 440, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 440, + "y": 580.8900730921148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 400, + "y": 580.8900730921148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1164 + }, + "bounds": { + "#": 1167 + }, + "collisionFilter": { + "#": 1170 + }, + "constraintImpulse": { + "#": 1171 + }, + "density": 0.001, + "force": { + "#": 1172 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 51, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1173 + }, + "positionImpulse": { + "#": 1174 + }, + "positionPrev": { + "#": 1175 + }, + "region": { + "#": 1176 + }, + "render": { + "#": 1177 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.44785086013528214, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1179 + }, + "vertices": { + "#": 1180 + } + }, + [ + { + "#": 1165 + }, + { + "#": 1166 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1168 + }, + "min": { + "#": 1169 + } + }, + { + "x": 480, + "y": 581.3379239522501 + }, + { + "x": 440, + "y": 540.8900730921148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 560.8900730921148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 460, + "y": 560.6995346242295 + }, + { + "endCol": 10, + "endRow": 12, + "id": "9,10,11,12", + "startCol": 9, + "startRow": 11 + }, + { + "fillStyle": "#C44D58", + "lineWidth": 1.5, + "sprite": { + "#": 1178 + }, + "strokeStyle": "#911a25", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05379242926164807 + }, + [ + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 440, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 480, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 480, + "y": 580.8900730921148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 440, + "y": 580.8900730921148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1186 + }, + "bounds": { + "#": 1189 + }, + "collisionFilter": { + "#": 1192 + }, + "constraintImpulse": { + "#": 1193 + }, + "density": 0.001, + "force": { + "#": 1194 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 52, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1195 + }, + "positionImpulse": { + "#": 1196 + }, + "positionPrev": { + "#": 1197 + }, + "region": { + "#": 1198 + }, + "render": { + "#": 1199 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.44785086013528214, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1201 + }, + "vertices": { + "#": 1202 + } + }, + [ + { + "#": 1187 + }, + { + "#": 1188 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1190 + }, + "min": { + "#": 1191 + } + }, + { + "x": 520, + "y": 581.3379239522501 + }, + { + "x": 480, + "y": 540.8900730921148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 560.8900730921148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 500, + "y": 560.6995346242295 + }, + { + "endCol": 10, + "endRow": 12, + "id": "10,10,11,12", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1200 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05379242926164807 + }, + [ + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 480, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 520, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 520, + "y": 580.8900730921148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 480, + "y": 580.8900730921148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1208 + }, + "bounds": { + "#": 1211 + }, + "collisionFilter": { + "#": 1214 + }, + "constraintImpulse": { + "#": 1215 + }, + "density": 0.001, + "force": { + "#": 1216 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 53, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1217 + }, + "positionImpulse": { + "#": 1218 + }, + "positionPrev": { + "#": 1219 + }, + "region": { + "#": 1220 + }, + "render": { + "#": 1221 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.44785086013528214, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1223 + }, + "vertices": { + "#": 1224 + } + }, + [ + { + "#": 1209 + }, + { + "#": 1210 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1212 + }, + "min": { + "#": 1213 + } + }, + { + "x": 560, + "y": 581.3379239522501 + }, + { + "x": 520, + "y": 540.8900730921148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 560.8900730921148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 540, + "y": 560.6995346242295 + }, + { + "endCol": 11, + "endRow": 12, + "id": "10,11,11,12", + "startCol": 10, + "startRow": 11 + }, + { + "fillStyle": "#556270", + "lineWidth": 1.5, + "sprite": { + "#": 1222 + }, + "strokeStyle": "#222f3d", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05379242926164807 + }, + [ + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 520, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 560, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 560, + "y": 580.8900730921148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 520, + "y": 580.8900730921148 + }, + { + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1600, + "axes": { + "#": 1230 + }, + "bounds": { + "#": 1233 + }, + "collisionFilter": { + "#": 1236 + }, + "constraintImpulse": { + "#": 1237 + }, + "density": 0.001, + "force": { + "#": 1238 + }, + "friction": 0.1, + "frictionAir": 0.01, + "frictionStatic": 0.5, + "id": 54, + "inertia": 1706.6666666666667, + "inverseInertia": 0.0005859375, + "inverseMass": 0.625, + "isSleeping": false, + "isStatic": false, + "label": "Rectangle Body", + "mass": 1.6, + "motion": 0, + "parent": null, + "position": { + "#": 1239 + }, + "positionImpulse": { + "#": 1240 + }, + "positionPrev": { + "#": 1241 + }, + "region": { + "#": 1242 + }, + "render": { + "#": 1243 + }, + "restitution": 0, + "sleepCounter": 0, + "sleepThreshold": 60, + "slop": 0.05, + "speed": 0.44785086013528214, + "timeScale": 1, + "torque": 0, + "totalContacts": 0, + "type": "body", + "velocity": { + "#": 1245 + }, + "vertices": { + "#": 1246 + } + }, + [ + { + "#": 1231 + }, + { + "#": 1232 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "max": { + "#": 1234 + }, + "min": { + "#": 1235 + } + }, + { + "x": 600, + "y": 581.3379239522501 + }, + { + "x": 560, + "y": 540.8900730921148 + }, + { + "category": 1, + "group": 0, + "mask": 4294967295 + }, + { + "angle": 0, + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 560.8900730921148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 580, + "y": 560.6995346242295 + }, + { + "endCol": 12, + "endRow": 12, + "id": "11,12,11,12", + "startCol": 11, + "startRow": 11 + }, + { + "fillStyle": "#C7F464", + "lineWidth": 1.5, + "sprite": { + "#": 1244 + }, + "strokeStyle": "#94c131", + "visible": true + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "x": 0, + "y": 0.05379242926164807 + }, + [ + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + } + ], + { + "body": null, + "index": 0, + "isInternal": false, + "x": 560, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 1, + "isInternal": false, + "x": 600, + "y": 540.8900730921148 + }, + { + "body": null, + "index": 2, + "isInternal": false, + "x": 600, + "y": 580.8900730921148 + }, + { + "body": null, + "index": 3, + "isInternal": false, + "x": 560, + "y": 580.8900730921148 + }, + [], + [], + [ + { + "#": 1254 + }, + { + "#": 1257 + } + ], + { + "angularStiffness": 1, + "bodyB": "", + "id": 1, + "label": "Mouse Constraint", + "length": 0.01, + "pointA": { + "#": 1255 + }, + "pointB": "", + "render": { + "#": 1256 + }, + "stiffness": 0.1, + "type": "constraint" + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 3, + "strokeStyle": "#90EE90", + "visible": true + }, + { + "angleB": -2.999894364326032e-20, + "angularStiffness": 0, + "bodyB": null, + "id": 56, + "label": "Constraint", + "length": 360.5551275463989, + "pointA": { + "#": 1258 + }, + "pointB": { + "#": 1259 + }, + "render": { + "#": 1260 + }, + "stiffness": 1, + "type": "constraint" + }, + { + "x": 300, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "lineWidth": 2, + "strokeStyle": "#666", + "visible": true + }, + { + "x": 0, + "y": 1 + } +] \ No newline at end of file From 3ce6c3a017fc47a560d4dc275d5c8f9d26a2f108 Mon Sep 17 00:00:00 2001 From: liabru Date: Tue, 4 Aug 2015 19:51:28 +0100 Subject: [PATCH 05/10] fix travis --- .travis.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 422054b9..5b100c8d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,11 @@ language: node_js +sudo: false node_js: - "0.10" -before_install: npm install -g grunt-cli -install: npm install -before_script: - - grunt dev \ No newline at end of file +before_install: + - npm install -g grunt-cli + - mkdir travis-phantomjs + - wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 + - tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs + - export PATH=$PWD/travis-phantomjs:$PATH +install: npm install \ No newline at end of file From f55d806b72f7e320180385e6d634ce350a34fa8b Mon Sep 17 00:00:00 2001 From: liabru Date: Tue, 4 Aug 2015 19:53:15 +0100 Subject: [PATCH 06/10] fix grunt for travis --- Gruntfile.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index a22fee61..d1ad3f98 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -66,6 +66,11 @@ module.exports = function(grunt) { open: 'http://localhost:9000/demo/dev.html', livereload: 9001 } + }, + serve: { + options: { + port: 9000 + } } }, watch: { @@ -134,10 +139,11 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-shell'); grunt.registerTask('default', ['test', 'build']); - grunt.registerTask('test', ['jshint', 'testDemo']); + grunt.registerTask('test', ['jshint', 'test:demo']); + grunt.registerTask('test:all', ['build:dev', 'connect:serve', 'test']); grunt.registerTask('dev', ['build:dev', 'connect:watch', 'watch']); - grunt.registerTask('testDemo', function() { + grunt.registerTask('test:demo', function() { var updateAll = grunt.option('updateAll'), diff = grunt.option('diff'); From d40591033d008ef0ab66a1b5ea5073e0bf9a22b9 Mon Sep 17 00:00:00 2001 From: liabru Date: Tue, 4 Aug 2015 19:55:50 +0100 Subject: [PATCH 07/10] fix grunt for travis --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 20b9a7b6..51fe18d3 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ }, "scripts": { "dev": "npm install && grunt dev", - "test": "grunt test" + "test": "grunt test:all" }, "dependencies": {} } From ad403aeeecc2c49b890d450de5963dce21538060 Mon Sep 17 00:00:00 2001 From: liabru Date: Tue, 4 Aug 2015 20:25:20 +0100 Subject: [PATCH 08/10] move /tests to /test --- Gruntfile.js | 4 ++-- {tests => test}/browser/TestDemo.js | 4 ++-- {tests => test}/browser/lib/resurrect.js | 0 {tests => test}/browser/refs/airFriction/airFriction-0.json | 0 {tests => test}/browser/refs/airFriction/airFriction-10.json | 0 {tests => test}/browser/refs/avalanche/avalanche-0.json | 0 {tests => test}/browser/refs/avalanche/avalanche-10.json | 0 {tests => test}/browser/refs/ballPool/ballPool-0.json | 0 {tests => test}/browser/refs/ballPool/ballPool-10.json | 0 {tests => test}/browser/refs/beachBalls/beachBalls-0.json | 0 {tests => test}/browser/refs/beachBalls/beachBalls-10.json | 0 {tests => test}/browser/refs/bridge/bridge-0.json | 0 {tests => test}/browser/refs/bridge/bridge-10.json | 0 {tests => test}/browser/refs/broadphase/broadphase-0.json | 0 {tests => test}/browser/refs/broadphase/broadphase-10.json | 0 {tests => test}/browser/refs/car/car-0.json | 0 {tests => test}/browser/refs/car/car-10.json | 0 {tests => test}/browser/refs/catapult/catapult-0.json | 0 {tests => test}/browser/refs/catapult/catapult-10.json | 0 {tests => test}/browser/refs/chains/chains-0.json | 0 {tests => test}/browser/refs/chains/chains-10.json | 0 {tests => test}/browser/refs/circleStack/circleStack-0.json | 0 {tests => test}/browser/refs/circleStack/circleStack-10.json | 0 {tests => test}/browser/refs/cloth/cloth-0.json | 0 {tests => test}/browser/refs/cloth/cloth-10.json | 0 .../browser/refs/collisionFiltering/collisionFiltering-0.json | 0 .../refs/collisionFiltering/collisionFiltering-10.json | 0 .../refs/compositeManipulation/compositeManipulation-0.json | 0 .../refs/compositeManipulation/compositeManipulation-10.json | 0 {tests => test}/browser/refs/compound/compound-0.json | 0 {tests => test}/browser/refs/compound/compound-10.json | 0 .../browser/refs/compoundStack/compoundStack-0.json | 0 .../browser/refs/compoundStack/compoundStack-10.json | 0 {tests => test}/browser/refs/concave/concave-0.json | 0 {tests => test}/browser/refs/concave/concave-10.json | 0 {tests => test}/browser/refs/events/events-0.json | 0 {tests => test}/browser/refs/events/events-10.json | 0 {tests => test}/browser/refs/friction/friction-0.json | 0 {tests => test}/browser/refs/friction/friction-10.json | 0 {tests => test}/browser/refs/gravity/gravity-0.json | 0 {tests => test}/browser/refs/gravity/gravity-10.json | 0 {tests => test}/browser/refs/manipulation/manipulation-0.json | 0 .../browser/refs/manipulation/manipulation-10.json | 0 {tests => test}/browser/refs/mixed/mixed-0.json | 0 {tests => test}/browser/refs/mixed/mixed-10.json | 0 {tests => test}/browser/refs/mixedSolid/mixedSolid-0.json | 0 {tests => test}/browser/refs/mixedSolid/mixedSolid-10.json | 0 .../browser/refs/newtonsCradle/newtonsCradle-0.json | 0 .../browser/refs/newtonsCradle/newtonsCradle-10.json | 0 {tests => test}/browser/refs/pyramid/pyramid-0.json | 0 {tests => test}/browser/refs/pyramid/pyramid-10.json | 0 {tests => test}/browser/refs/raycasting/raycasting-0.json | 0 {tests => test}/browser/refs/raycasting/raycasting-10.json | 0 {tests => test}/browser/refs/restitution/restitution-0.json | 0 {tests => test}/browser/refs/restitution/restitution-10.json | 0 {tests => test}/browser/refs/rounded/rounded-0.json | 0 {tests => test}/browser/refs/rounded/rounded-10.json | 0 {tests => test}/browser/refs/sleeping/sleeping-0.json | 0 {tests => test}/browser/refs/sleeping/sleeping-10.json | 0 {tests => test}/browser/refs/slingshot/slingshot-0.json | 0 {tests => test}/browser/refs/slingshot/slingshot-10.json | 0 {tests => test}/browser/refs/softBody/softBody-0.json | 0 {tests => test}/browser/refs/softBody/softBody-10.json | 0 {tests => test}/browser/refs/sprites/sprites-0.json | 0 {tests => test}/browser/refs/sprites/sprites-10.json | 0 {tests => test}/browser/refs/stack/stack-0.json | 0 {tests => test}/browser/refs/stack/stack-10.json | 0 .../browser/refs/staticFriction/staticFriction-0.json | 0 .../browser/refs/staticFriction/staticFriction-10.json | 0 {tests => test}/browser/refs/stress/stress-0.json | 0 {tests => test}/browser/refs/stress/stress-10.json | 0 {tests => test}/browser/refs/stress2/stress2-0.json | 0 {tests => test}/browser/refs/stress2/stress2-10.json | 0 {tests => test}/browser/refs/svg/svg-0.json | 0 {tests => test}/browser/refs/svg/svg-10.json | 0 {tests => test}/browser/refs/terrain/terrain-0.json | 0 {tests => test}/browser/refs/terrain/terrain-10.json | 0 {tests => test}/browser/refs/timescale/timescale-0.json | 0 {tests => test}/browser/refs/timescale/timescale-10.json | 0 {tests => test}/browser/refs/views/views-0.json | 0 {tests => test}/browser/refs/views/views-10.json | 0 {tests => test}/browser/refs/wreckingBall/wreckingBall-0.json | 0 .../browser/refs/wreckingBall/wreckingBall-10.json | 0 83 files changed, 4 insertions(+), 4 deletions(-) rename {tests => test}/browser/TestDemo.js (98%) rename {tests => test}/browser/lib/resurrect.js (100%) rename {tests => test}/browser/refs/airFriction/airFriction-0.json (100%) rename {tests => test}/browser/refs/airFriction/airFriction-10.json (100%) rename {tests => test}/browser/refs/avalanche/avalanche-0.json (100%) rename {tests => test}/browser/refs/avalanche/avalanche-10.json (100%) rename {tests => test}/browser/refs/ballPool/ballPool-0.json (100%) rename {tests => test}/browser/refs/ballPool/ballPool-10.json (100%) rename {tests => test}/browser/refs/beachBalls/beachBalls-0.json (100%) rename {tests => test}/browser/refs/beachBalls/beachBalls-10.json (100%) rename {tests => test}/browser/refs/bridge/bridge-0.json (100%) rename {tests => test}/browser/refs/bridge/bridge-10.json (100%) rename {tests => test}/browser/refs/broadphase/broadphase-0.json (100%) rename {tests => test}/browser/refs/broadphase/broadphase-10.json (100%) rename {tests => test}/browser/refs/car/car-0.json (100%) rename {tests => test}/browser/refs/car/car-10.json (100%) rename {tests => test}/browser/refs/catapult/catapult-0.json (100%) rename {tests => test}/browser/refs/catapult/catapult-10.json (100%) rename {tests => test}/browser/refs/chains/chains-0.json (100%) rename {tests => test}/browser/refs/chains/chains-10.json (100%) rename {tests => test}/browser/refs/circleStack/circleStack-0.json (100%) rename {tests => test}/browser/refs/circleStack/circleStack-10.json (100%) rename {tests => test}/browser/refs/cloth/cloth-0.json (100%) rename {tests => test}/browser/refs/cloth/cloth-10.json (100%) rename {tests => test}/browser/refs/collisionFiltering/collisionFiltering-0.json (100%) rename {tests => test}/browser/refs/collisionFiltering/collisionFiltering-10.json (100%) rename {tests => test}/browser/refs/compositeManipulation/compositeManipulation-0.json (100%) rename {tests => test}/browser/refs/compositeManipulation/compositeManipulation-10.json (100%) rename {tests => test}/browser/refs/compound/compound-0.json (100%) rename {tests => test}/browser/refs/compound/compound-10.json (100%) rename {tests => test}/browser/refs/compoundStack/compoundStack-0.json (100%) rename {tests => test}/browser/refs/compoundStack/compoundStack-10.json (100%) rename {tests => test}/browser/refs/concave/concave-0.json (100%) rename {tests => test}/browser/refs/concave/concave-10.json (100%) rename {tests => test}/browser/refs/events/events-0.json (100%) rename {tests => test}/browser/refs/events/events-10.json (100%) rename {tests => test}/browser/refs/friction/friction-0.json (100%) rename {tests => test}/browser/refs/friction/friction-10.json (100%) rename {tests => test}/browser/refs/gravity/gravity-0.json (100%) rename {tests => test}/browser/refs/gravity/gravity-10.json (100%) rename {tests => test}/browser/refs/manipulation/manipulation-0.json (100%) rename {tests => test}/browser/refs/manipulation/manipulation-10.json (100%) rename {tests => test}/browser/refs/mixed/mixed-0.json (100%) rename {tests => test}/browser/refs/mixed/mixed-10.json (100%) rename {tests => test}/browser/refs/mixedSolid/mixedSolid-0.json (100%) rename {tests => test}/browser/refs/mixedSolid/mixedSolid-10.json (100%) rename {tests => test}/browser/refs/newtonsCradle/newtonsCradle-0.json (100%) rename {tests => test}/browser/refs/newtonsCradle/newtonsCradle-10.json (100%) rename {tests => test}/browser/refs/pyramid/pyramid-0.json (100%) rename {tests => test}/browser/refs/pyramid/pyramid-10.json (100%) rename {tests => test}/browser/refs/raycasting/raycasting-0.json (100%) rename {tests => test}/browser/refs/raycasting/raycasting-10.json (100%) rename {tests => test}/browser/refs/restitution/restitution-0.json (100%) rename {tests => test}/browser/refs/restitution/restitution-10.json (100%) rename {tests => test}/browser/refs/rounded/rounded-0.json (100%) rename {tests => test}/browser/refs/rounded/rounded-10.json (100%) rename {tests => test}/browser/refs/sleeping/sleeping-0.json (100%) rename {tests => test}/browser/refs/sleeping/sleeping-10.json (100%) rename {tests => test}/browser/refs/slingshot/slingshot-0.json (100%) rename {tests => test}/browser/refs/slingshot/slingshot-10.json (100%) rename {tests => test}/browser/refs/softBody/softBody-0.json (100%) rename {tests => test}/browser/refs/softBody/softBody-10.json (100%) rename {tests => test}/browser/refs/sprites/sprites-0.json (100%) rename {tests => test}/browser/refs/sprites/sprites-10.json (100%) rename {tests => test}/browser/refs/stack/stack-0.json (100%) rename {tests => test}/browser/refs/stack/stack-10.json (100%) rename {tests => test}/browser/refs/staticFriction/staticFriction-0.json (100%) rename {tests => test}/browser/refs/staticFriction/staticFriction-10.json (100%) rename {tests => test}/browser/refs/stress/stress-0.json (100%) rename {tests => test}/browser/refs/stress/stress-10.json (100%) rename {tests => test}/browser/refs/stress2/stress2-0.json (100%) rename {tests => test}/browser/refs/stress2/stress2-10.json (100%) rename {tests => test}/browser/refs/svg/svg-0.json (100%) rename {tests => test}/browser/refs/svg/svg-10.json (100%) rename {tests => test}/browser/refs/terrain/terrain-0.json (100%) rename {tests => test}/browser/refs/terrain/terrain-10.json (100%) rename {tests => test}/browser/refs/timescale/timescale-0.json (100%) rename {tests => test}/browser/refs/timescale/timescale-10.json (100%) rename {tests => test}/browser/refs/views/views-0.json (100%) rename {tests => test}/browser/refs/views/views-10.json (100%) rename {tests => test}/browser/refs/wreckingBall/wreckingBall-0.json (100%) rename {tests => test}/browser/refs/wreckingBall/wreckingBall-10.json (100%) diff --git a/Gruntfile.js b/Gruntfile.js index d1ad3f98..6d217a06 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -57,7 +57,7 @@ module.exports = function(grunt) { options: { jshintrc: '.jshintrc' }, - all: ['src/**/*.js', 'demo/js/*.js', 'tests/browser/TestDemo.js', '!src/module/*'] + all: ['src/**/*.js', 'demo/js/*.js', 'test/browser/TestDemo.js', '!src/module/*'] }, connect: { watch: { @@ -117,7 +117,7 @@ module.exports = function(grunt) { testDemo: { command: function(arg) { arg = arg ? ' --' + arg : ''; - return 'phantomjs tests/browser/TestDemo.js' + arg; + return 'phantomjs test/browser/TestDemo.js' + arg; }, options: { execOptions: { diff --git a/tests/browser/TestDemo.js b/test/browser/TestDemo.js similarity index 98% rename from tests/browser/TestDemo.js rename to test/browser/TestDemo.js index 3a2dd020..42c80053 100644 --- a/tests/browser/TestDemo.js +++ b/test/browser/TestDemo.js @@ -7,8 +7,8 @@ var system = require('system'); var demo, frames = 10, testUrl = 'http://localhost:9000/demo/dev.html', - refsPath = 'tests/browser/refs', - diffsPath = 'tests/browser/diffs'; + refsPath = 'test/browser/refs', + diffsPath = 'test/browser/diffs'; var update = arg('--update'), updateAll = typeof arg('--updateAll') !== 'undefined', diff --git a/tests/browser/lib/resurrect.js b/test/browser/lib/resurrect.js similarity index 100% rename from tests/browser/lib/resurrect.js rename to test/browser/lib/resurrect.js diff --git a/tests/browser/refs/airFriction/airFriction-0.json b/test/browser/refs/airFriction/airFriction-0.json similarity index 100% rename from tests/browser/refs/airFriction/airFriction-0.json rename to test/browser/refs/airFriction/airFriction-0.json diff --git a/tests/browser/refs/airFriction/airFriction-10.json b/test/browser/refs/airFriction/airFriction-10.json similarity index 100% rename from tests/browser/refs/airFriction/airFriction-10.json rename to test/browser/refs/airFriction/airFriction-10.json diff --git a/tests/browser/refs/avalanche/avalanche-0.json b/test/browser/refs/avalanche/avalanche-0.json similarity index 100% rename from tests/browser/refs/avalanche/avalanche-0.json rename to test/browser/refs/avalanche/avalanche-0.json diff --git a/tests/browser/refs/avalanche/avalanche-10.json b/test/browser/refs/avalanche/avalanche-10.json similarity index 100% rename from tests/browser/refs/avalanche/avalanche-10.json rename to test/browser/refs/avalanche/avalanche-10.json diff --git a/tests/browser/refs/ballPool/ballPool-0.json b/test/browser/refs/ballPool/ballPool-0.json similarity index 100% rename from tests/browser/refs/ballPool/ballPool-0.json rename to test/browser/refs/ballPool/ballPool-0.json diff --git a/tests/browser/refs/ballPool/ballPool-10.json b/test/browser/refs/ballPool/ballPool-10.json similarity index 100% rename from tests/browser/refs/ballPool/ballPool-10.json rename to test/browser/refs/ballPool/ballPool-10.json diff --git a/tests/browser/refs/beachBalls/beachBalls-0.json b/test/browser/refs/beachBalls/beachBalls-0.json similarity index 100% rename from tests/browser/refs/beachBalls/beachBalls-0.json rename to test/browser/refs/beachBalls/beachBalls-0.json diff --git a/tests/browser/refs/beachBalls/beachBalls-10.json b/test/browser/refs/beachBalls/beachBalls-10.json similarity index 100% rename from tests/browser/refs/beachBalls/beachBalls-10.json rename to test/browser/refs/beachBalls/beachBalls-10.json diff --git a/tests/browser/refs/bridge/bridge-0.json b/test/browser/refs/bridge/bridge-0.json similarity index 100% rename from tests/browser/refs/bridge/bridge-0.json rename to test/browser/refs/bridge/bridge-0.json diff --git a/tests/browser/refs/bridge/bridge-10.json b/test/browser/refs/bridge/bridge-10.json similarity index 100% rename from tests/browser/refs/bridge/bridge-10.json rename to test/browser/refs/bridge/bridge-10.json diff --git a/tests/browser/refs/broadphase/broadphase-0.json b/test/browser/refs/broadphase/broadphase-0.json similarity index 100% rename from tests/browser/refs/broadphase/broadphase-0.json rename to test/browser/refs/broadphase/broadphase-0.json diff --git a/tests/browser/refs/broadphase/broadphase-10.json b/test/browser/refs/broadphase/broadphase-10.json similarity index 100% rename from tests/browser/refs/broadphase/broadphase-10.json rename to test/browser/refs/broadphase/broadphase-10.json diff --git a/tests/browser/refs/car/car-0.json b/test/browser/refs/car/car-0.json similarity index 100% rename from tests/browser/refs/car/car-0.json rename to test/browser/refs/car/car-0.json diff --git a/tests/browser/refs/car/car-10.json b/test/browser/refs/car/car-10.json similarity index 100% rename from tests/browser/refs/car/car-10.json rename to test/browser/refs/car/car-10.json diff --git a/tests/browser/refs/catapult/catapult-0.json b/test/browser/refs/catapult/catapult-0.json similarity index 100% rename from tests/browser/refs/catapult/catapult-0.json rename to test/browser/refs/catapult/catapult-0.json diff --git a/tests/browser/refs/catapult/catapult-10.json b/test/browser/refs/catapult/catapult-10.json similarity index 100% rename from tests/browser/refs/catapult/catapult-10.json rename to test/browser/refs/catapult/catapult-10.json diff --git a/tests/browser/refs/chains/chains-0.json b/test/browser/refs/chains/chains-0.json similarity index 100% rename from tests/browser/refs/chains/chains-0.json rename to test/browser/refs/chains/chains-0.json diff --git a/tests/browser/refs/chains/chains-10.json b/test/browser/refs/chains/chains-10.json similarity index 100% rename from tests/browser/refs/chains/chains-10.json rename to test/browser/refs/chains/chains-10.json diff --git a/tests/browser/refs/circleStack/circleStack-0.json b/test/browser/refs/circleStack/circleStack-0.json similarity index 100% rename from tests/browser/refs/circleStack/circleStack-0.json rename to test/browser/refs/circleStack/circleStack-0.json diff --git a/tests/browser/refs/circleStack/circleStack-10.json b/test/browser/refs/circleStack/circleStack-10.json similarity index 100% rename from tests/browser/refs/circleStack/circleStack-10.json rename to test/browser/refs/circleStack/circleStack-10.json diff --git a/tests/browser/refs/cloth/cloth-0.json b/test/browser/refs/cloth/cloth-0.json similarity index 100% rename from tests/browser/refs/cloth/cloth-0.json rename to test/browser/refs/cloth/cloth-0.json diff --git a/tests/browser/refs/cloth/cloth-10.json b/test/browser/refs/cloth/cloth-10.json similarity index 100% rename from tests/browser/refs/cloth/cloth-10.json rename to test/browser/refs/cloth/cloth-10.json diff --git a/tests/browser/refs/collisionFiltering/collisionFiltering-0.json b/test/browser/refs/collisionFiltering/collisionFiltering-0.json similarity index 100% rename from tests/browser/refs/collisionFiltering/collisionFiltering-0.json rename to test/browser/refs/collisionFiltering/collisionFiltering-0.json diff --git a/tests/browser/refs/collisionFiltering/collisionFiltering-10.json b/test/browser/refs/collisionFiltering/collisionFiltering-10.json similarity index 100% rename from tests/browser/refs/collisionFiltering/collisionFiltering-10.json rename to test/browser/refs/collisionFiltering/collisionFiltering-10.json diff --git a/tests/browser/refs/compositeManipulation/compositeManipulation-0.json b/test/browser/refs/compositeManipulation/compositeManipulation-0.json similarity index 100% rename from tests/browser/refs/compositeManipulation/compositeManipulation-0.json rename to test/browser/refs/compositeManipulation/compositeManipulation-0.json diff --git a/tests/browser/refs/compositeManipulation/compositeManipulation-10.json b/test/browser/refs/compositeManipulation/compositeManipulation-10.json similarity index 100% rename from tests/browser/refs/compositeManipulation/compositeManipulation-10.json rename to test/browser/refs/compositeManipulation/compositeManipulation-10.json diff --git a/tests/browser/refs/compound/compound-0.json b/test/browser/refs/compound/compound-0.json similarity index 100% rename from tests/browser/refs/compound/compound-0.json rename to test/browser/refs/compound/compound-0.json diff --git a/tests/browser/refs/compound/compound-10.json b/test/browser/refs/compound/compound-10.json similarity index 100% rename from tests/browser/refs/compound/compound-10.json rename to test/browser/refs/compound/compound-10.json diff --git a/tests/browser/refs/compoundStack/compoundStack-0.json b/test/browser/refs/compoundStack/compoundStack-0.json similarity index 100% rename from tests/browser/refs/compoundStack/compoundStack-0.json rename to test/browser/refs/compoundStack/compoundStack-0.json diff --git a/tests/browser/refs/compoundStack/compoundStack-10.json b/test/browser/refs/compoundStack/compoundStack-10.json similarity index 100% rename from tests/browser/refs/compoundStack/compoundStack-10.json rename to test/browser/refs/compoundStack/compoundStack-10.json diff --git a/tests/browser/refs/concave/concave-0.json b/test/browser/refs/concave/concave-0.json similarity index 100% rename from tests/browser/refs/concave/concave-0.json rename to test/browser/refs/concave/concave-0.json diff --git a/tests/browser/refs/concave/concave-10.json b/test/browser/refs/concave/concave-10.json similarity index 100% rename from tests/browser/refs/concave/concave-10.json rename to test/browser/refs/concave/concave-10.json diff --git a/tests/browser/refs/events/events-0.json b/test/browser/refs/events/events-0.json similarity index 100% rename from tests/browser/refs/events/events-0.json rename to test/browser/refs/events/events-0.json diff --git a/tests/browser/refs/events/events-10.json b/test/browser/refs/events/events-10.json similarity index 100% rename from tests/browser/refs/events/events-10.json rename to test/browser/refs/events/events-10.json diff --git a/tests/browser/refs/friction/friction-0.json b/test/browser/refs/friction/friction-0.json similarity index 100% rename from tests/browser/refs/friction/friction-0.json rename to test/browser/refs/friction/friction-0.json diff --git a/tests/browser/refs/friction/friction-10.json b/test/browser/refs/friction/friction-10.json similarity index 100% rename from tests/browser/refs/friction/friction-10.json rename to test/browser/refs/friction/friction-10.json diff --git a/tests/browser/refs/gravity/gravity-0.json b/test/browser/refs/gravity/gravity-0.json similarity index 100% rename from tests/browser/refs/gravity/gravity-0.json rename to test/browser/refs/gravity/gravity-0.json diff --git a/tests/browser/refs/gravity/gravity-10.json b/test/browser/refs/gravity/gravity-10.json similarity index 100% rename from tests/browser/refs/gravity/gravity-10.json rename to test/browser/refs/gravity/gravity-10.json diff --git a/tests/browser/refs/manipulation/manipulation-0.json b/test/browser/refs/manipulation/manipulation-0.json similarity index 100% rename from tests/browser/refs/manipulation/manipulation-0.json rename to test/browser/refs/manipulation/manipulation-0.json diff --git a/tests/browser/refs/manipulation/manipulation-10.json b/test/browser/refs/manipulation/manipulation-10.json similarity index 100% rename from tests/browser/refs/manipulation/manipulation-10.json rename to test/browser/refs/manipulation/manipulation-10.json diff --git a/tests/browser/refs/mixed/mixed-0.json b/test/browser/refs/mixed/mixed-0.json similarity index 100% rename from tests/browser/refs/mixed/mixed-0.json rename to test/browser/refs/mixed/mixed-0.json diff --git a/tests/browser/refs/mixed/mixed-10.json b/test/browser/refs/mixed/mixed-10.json similarity index 100% rename from tests/browser/refs/mixed/mixed-10.json rename to test/browser/refs/mixed/mixed-10.json diff --git a/tests/browser/refs/mixedSolid/mixedSolid-0.json b/test/browser/refs/mixedSolid/mixedSolid-0.json similarity index 100% rename from tests/browser/refs/mixedSolid/mixedSolid-0.json rename to test/browser/refs/mixedSolid/mixedSolid-0.json diff --git a/tests/browser/refs/mixedSolid/mixedSolid-10.json b/test/browser/refs/mixedSolid/mixedSolid-10.json similarity index 100% rename from tests/browser/refs/mixedSolid/mixedSolid-10.json rename to test/browser/refs/mixedSolid/mixedSolid-10.json diff --git a/tests/browser/refs/newtonsCradle/newtonsCradle-0.json b/test/browser/refs/newtonsCradle/newtonsCradle-0.json similarity index 100% rename from tests/browser/refs/newtonsCradle/newtonsCradle-0.json rename to test/browser/refs/newtonsCradle/newtonsCradle-0.json diff --git a/tests/browser/refs/newtonsCradle/newtonsCradle-10.json b/test/browser/refs/newtonsCradle/newtonsCradle-10.json similarity index 100% rename from tests/browser/refs/newtonsCradle/newtonsCradle-10.json rename to test/browser/refs/newtonsCradle/newtonsCradle-10.json diff --git a/tests/browser/refs/pyramid/pyramid-0.json b/test/browser/refs/pyramid/pyramid-0.json similarity index 100% rename from tests/browser/refs/pyramid/pyramid-0.json rename to test/browser/refs/pyramid/pyramid-0.json diff --git a/tests/browser/refs/pyramid/pyramid-10.json b/test/browser/refs/pyramid/pyramid-10.json similarity index 100% rename from tests/browser/refs/pyramid/pyramid-10.json rename to test/browser/refs/pyramid/pyramid-10.json diff --git a/tests/browser/refs/raycasting/raycasting-0.json b/test/browser/refs/raycasting/raycasting-0.json similarity index 100% rename from tests/browser/refs/raycasting/raycasting-0.json rename to test/browser/refs/raycasting/raycasting-0.json diff --git a/tests/browser/refs/raycasting/raycasting-10.json b/test/browser/refs/raycasting/raycasting-10.json similarity index 100% rename from tests/browser/refs/raycasting/raycasting-10.json rename to test/browser/refs/raycasting/raycasting-10.json diff --git a/tests/browser/refs/restitution/restitution-0.json b/test/browser/refs/restitution/restitution-0.json similarity index 100% rename from tests/browser/refs/restitution/restitution-0.json rename to test/browser/refs/restitution/restitution-0.json diff --git a/tests/browser/refs/restitution/restitution-10.json b/test/browser/refs/restitution/restitution-10.json similarity index 100% rename from tests/browser/refs/restitution/restitution-10.json rename to test/browser/refs/restitution/restitution-10.json diff --git a/tests/browser/refs/rounded/rounded-0.json b/test/browser/refs/rounded/rounded-0.json similarity index 100% rename from tests/browser/refs/rounded/rounded-0.json rename to test/browser/refs/rounded/rounded-0.json diff --git a/tests/browser/refs/rounded/rounded-10.json b/test/browser/refs/rounded/rounded-10.json similarity index 100% rename from tests/browser/refs/rounded/rounded-10.json rename to test/browser/refs/rounded/rounded-10.json diff --git a/tests/browser/refs/sleeping/sleeping-0.json b/test/browser/refs/sleeping/sleeping-0.json similarity index 100% rename from tests/browser/refs/sleeping/sleeping-0.json rename to test/browser/refs/sleeping/sleeping-0.json diff --git a/tests/browser/refs/sleeping/sleeping-10.json b/test/browser/refs/sleeping/sleeping-10.json similarity index 100% rename from tests/browser/refs/sleeping/sleeping-10.json rename to test/browser/refs/sleeping/sleeping-10.json diff --git a/tests/browser/refs/slingshot/slingshot-0.json b/test/browser/refs/slingshot/slingshot-0.json similarity index 100% rename from tests/browser/refs/slingshot/slingshot-0.json rename to test/browser/refs/slingshot/slingshot-0.json diff --git a/tests/browser/refs/slingshot/slingshot-10.json b/test/browser/refs/slingshot/slingshot-10.json similarity index 100% rename from tests/browser/refs/slingshot/slingshot-10.json rename to test/browser/refs/slingshot/slingshot-10.json diff --git a/tests/browser/refs/softBody/softBody-0.json b/test/browser/refs/softBody/softBody-0.json similarity index 100% rename from tests/browser/refs/softBody/softBody-0.json rename to test/browser/refs/softBody/softBody-0.json diff --git a/tests/browser/refs/softBody/softBody-10.json b/test/browser/refs/softBody/softBody-10.json similarity index 100% rename from tests/browser/refs/softBody/softBody-10.json rename to test/browser/refs/softBody/softBody-10.json diff --git a/tests/browser/refs/sprites/sprites-0.json b/test/browser/refs/sprites/sprites-0.json similarity index 100% rename from tests/browser/refs/sprites/sprites-0.json rename to test/browser/refs/sprites/sprites-0.json diff --git a/tests/browser/refs/sprites/sprites-10.json b/test/browser/refs/sprites/sprites-10.json similarity index 100% rename from tests/browser/refs/sprites/sprites-10.json rename to test/browser/refs/sprites/sprites-10.json diff --git a/tests/browser/refs/stack/stack-0.json b/test/browser/refs/stack/stack-0.json similarity index 100% rename from tests/browser/refs/stack/stack-0.json rename to test/browser/refs/stack/stack-0.json diff --git a/tests/browser/refs/stack/stack-10.json b/test/browser/refs/stack/stack-10.json similarity index 100% rename from tests/browser/refs/stack/stack-10.json rename to test/browser/refs/stack/stack-10.json diff --git a/tests/browser/refs/staticFriction/staticFriction-0.json b/test/browser/refs/staticFriction/staticFriction-0.json similarity index 100% rename from tests/browser/refs/staticFriction/staticFriction-0.json rename to test/browser/refs/staticFriction/staticFriction-0.json diff --git a/tests/browser/refs/staticFriction/staticFriction-10.json b/test/browser/refs/staticFriction/staticFriction-10.json similarity index 100% rename from tests/browser/refs/staticFriction/staticFriction-10.json rename to test/browser/refs/staticFriction/staticFriction-10.json diff --git a/tests/browser/refs/stress/stress-0.json b/test/browser/refs/stress/stress-0.json similarity index 100% rename from tests/browser/refs/stress/stress-0.json rename to test/browser/refs/stress/stress-0.json diff --git a/tests/browser/refs/stress/stress-10.json b/test/browser/refs/stress/stress-10.json similarity index 100% rename from tests/browser/refs/stress/stress-10.json rename to test/browser/refs/stress/stress-10.json diff --git a/tests/browser/refs/stress2/stress2-0.json b/test/browser/refs/stress2/stress2-0.json similarity index 100% rename from tests/browser/refs/stress2/stress2-0.json rename to test/browser/refs/stress2/stress2-0.json diff --git a/tests/browser/refs/stress2/stress2-10.json b/test/browser/refs/stress2/stress2-10.json similarity index 100% rename from tests/browser/refs/stress2/stress2-10.json rename to test/browser/refs/stress2/stress2-10.json diff --git a/tests/browser/refs/svg/svg-0.json b/test/browser/refs/svg/svg-0.json similarity index 100% rename from tests/browser/refs/svg/svg-0.json rename to test/browser/refs/svg/svg-0.json diff --git a/tests/browser/refs/svg/svg-10.json b/test/browser/refs/svg/svg-10.json similarity index 100% rename from tests/browser/refs/svg/svg-10.json rename to test/browser/refs/svg/svg-10.json diff --git a/tests/browser/refs/terrain/terrain-0.json b/test/browser/refs/terrain/terrain-0.json similarity index 100% rename from tests/browser/refs/terrain/terrain-0.json rename to test/browser/refs/terrain/terrain-0.json diff --git a/tests/browser/refs/terrain/terrain-10.json b/test/browser/refs/terrain/terrain-10.json similarity index 100% rename from tests/browser/refs/terrain/terrain-10.json rename to test/browser/refs/terrain/terrain-10.json diff --git a/tests/browser/refs/timescale/timescale-0.json b/test/browser/refs/timescale/timescale-0.json similarity index 100% rename from tests/browser/refs/timescale/timescale-0.json rename to test/browser/refs/timescale/timescale-0.json diff --git a/tests/browser/refs/timescale/timescale-10.json b/test/browser/refs/timescale/timescale-10.json similarity index 100% rename from tests/browser/refs/timescale/timescale-10.json rename to test/browser/refs/timescale/timescale-10.json diff --git a/tests/browser/refs/views/views-0.json b/test/browser/refs/views/views-0.json similarity index 100% rename from tests/browser/refs/views/views-0.json rename to test/browser/refs/views/views-0.json diff --git a/tests/browser/refs/views/views-10.json b/test/browser/refs/views/views-10.json similarity index 100% rename from tests/browser/refs/views/views-10.json rename to test/browser/refs/views/views-10.json diff --git a/tests/browser/refs/wreckingBall/wreckingBall-0.json b/test/browser/refs/wreckingBall/wreckingBall-0.json similarity index 100% rename from tests/browser/refs/wreckingBall/wreckingBall-0.json rename to test/browser/refs/wreckingBall/wreckingBall-0.json diff --git a/tests/browser/refs/wreckingBall/wreckingBall-10.json b/test/browser/refs/wreckingBall/wreckingBall-10.json similarity index 100% rename from tests/browser/refs/wreckingBall/wreckingBall-10.json rename to test/browser/refs/wreckingBall/wreckingBall-10.json From 352bfd62b3b0c0dc97382b806c8e932d76d8b507 Mon Sep 17 00:00:00 2001 From: liabru Date: Tue, 4 Aug 2015 21:20:20 +0100 Subject: [PATCH 09/10] fix runner for tests, limit precision of refs --- .gitignore | 2 +- .npmignore | 4 +- demo/js/Demo.js | 12 +- test/browser/TestDemo.js | 21 +- .../refs/airFriction/airFriction-0.json | 12 +- .../refs/airFriction/airFriction-10.json | 72 +- test/browser/refs/avalanche/avalanche-0.json | 9524 +++---- test/browser/refs/avalanche/avalanche-10.json | 13894 ++++----- test/browser/refs/ballPool/ballPool-0.json | 15354 +++++----- test/browser/refs/ballPool/ballPool-10.json | 23284 ++++++++-------- .../browser/refs/beachBalls/beachBalls-0.json | 444 +- .../refs/beachBalls/beachBalls-10.json | 998 +- test/browser/refs/bridge/bridge-0.json | 1158 +- test/browser/refs/bridge/bridge-10.json | 2282 +- .../browser/refs/broadphase/broadphase-0.json | 5694 ++-- .../refs/broadphase/broadphase-10.json | 8202 +++--- test/browser/refs/car/car-0.json | 648 +- test/browser/refs/car/car-10.json | 1064 +- test/browser/refs/catapult/catapult-0.json | 96 +- test/browser/refs/catapult/catapult-10.json | 334 +- test/browser/refs/chains/chains-0.json | 926 +- test/browser/refs/chains/chains-10.json | 2414 +- .../refs/circleStack/circleStack-0.json | 9920 +++---- .../refs/circleStack/circleStack-10.json | 12860 ++++----- test/browser/refs/cloth/cloth-0.json | 11464 ++++---- test/browser/refs/cloth/cloth-10.json | 19904 ++++++------- .../collisionFiltering-0.json | 6246 ++--- .../collisionFiltering-10.json | 7142 ++--- .../compositeManipulation-0.json | 64 +- .../compositeManipulation-10.json | 928 +- test/browser/refs/compound/compound-0.json | 80 +- test/browser/refs/compound/compound-10.json | 256 +- .../refs/compoundStack/compoundStack-0.json | 864 +- .../refs/compoundStack/compoundStack-10.json | 2952 +- test/browser/refs/concave/concave-0.json | 986 +- test/browser/refs/concave/concave-10.json | 1360 +- test/browser/refs/events/events-0.json | 2864 +- test/browser/refs/events/events-10.json | 3520 +-- test/browser/refs/friction/friction-0.json | 120 +- test/browser/refs/friction/friction-10.json | 180 +- test/browser/refs/gravity/gravity-0.json | 5694 ++-- test/browser/refs/gravity/gravity-10.json | 8244 +++--- .../refs/manipulation/manipulation-0.json | 90 +- .../refs/manipulation/manipulation-10.json | 394 +- test/browser/refs/mixed/mixed-0.json | 5087 ++-- test/browser/refs/mixed/mixed-10.json | 6564 ++--- .../browser/refs/mixedSolid/mixedSolid-0.json | 1736 +- .../refs/mixedSolid/mixedSolid-10.json | 2406 +- .../refs/newtonsCradle/newtonsCradle-0.json | 692 +- .../refs/newtonsCradle/newtonsCradle-10.json | 2082 +- test/browser/refs/pyramid/pyramid-0.json | 256 +- test/browser/refs/pyramid/pyramid-10.json | 1546 +- .../browser/refs/raycasting/raycasting-0.json | 3084 +- .../refs/raycasting/raycasting-10.json | 5138 ++-- .../refs/restitution/restitution-0.json | 146 +- .../refs/restitution/restitution-10.json | 270 +- test/browser/refs/rounded/rounded-0.json | 1314 +- test/browser/refs/rounded/rounded-10.json | 1572 +- test/browser/refs/sleeping/sleeping-0.json | 1736 +- test/browser/refs/sleeping/sleeping-10.json | 2478 +- test/browser/refs/slingshot/slingshot-0.json | 156 +- test/browser/refs/slingshot/slingshot-10.json | 868 +- test/browser/refs/softBody/softBody-0.json | 5746 ++-- test/browser/refs/softBody/softBody-10.json | 7868 +++--- test/browser/refs/sprites/sprites-0.json | 1458 +- test/browser/refs/sprites/sprites-10.json | 3590 +-- test/browser/refs/stack/stack-0.json | 200 +- test/browser/refs/stack/stack-10.json | 1200 +- .../refs/staticFriction/staticFriction-0.json | 118 +- .../staticFriction/staticFriction-10.json | 442 +- test/browser/refs/stress/stress-0.json | 1620 +- test/browser/refs/stress/stress-10.json | 7164 ++--- test/browser/refs/stress2/stress2-0.json | 1800 +- test/browser/refs/stress2/stress2-10.json | 11000 ++++---- test/browser/refs/timescale/timescale-0.json | 4660 ++-- test/browser/refs/timescale/timescale-10.json | 7934 +++--- test/browser/refs/views/views-0.json | 3048 +- test/browser/refs/views/views-10.json | 5040 ++-- .../refs/wreckingBall/wreckingBall-0.json | 262 +- .../refs/wreckingBall/wreckingBall-10.json | 1400 +- 80 files changed, 142135 insertions(+), 142117 deletions(-) diff --git a/.gitignore b/.gitignore index fece6cb7..813b9840 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,4 @@ matter-doc-theme build/matter-dev.js build/matter-dev.min.js demo/js/lib/matter-dev.js -tests/browser/diffs \ No newline at end of file +test/browser/diffs \ No newline at end of file diff --git a/.npmignore b/.npmignore index 55b7f830..813b9840 100644 --- a/.npmignore +++ b/.npmignore @@ -1,7 +1,9 @@ +.idea node_modules npm-debug.log doc matter-doc-theme build/matter-dev.js build/matter-dev.min.js -demo/js/lib/matter-dev.js \ No newline at end of file +demo/js/lib/matter-dev.js +test/browser/diffs \ No newline at end of file diff --git a/demo/js/Demo.js b/demo/js/Demo.js index 00304ed6..6c7eef1c 100644 --- a/demo/js/Demo.js +++ b/demo/js/Demo.js @@ -34,7 +34,8 @@ _mouseConstraint, _sceneEvents = [], _useInspector = window.location.hash.indexOf('-inspect') !== -1, - _isMobile = /(ipad|iphone|ipod|android)/gi.test(navigator.userAgent); + _isMobile = /(ipad|iphone|ipod|android)/gi.test(navigator.userAgent), + _isAutomatedTest = window._phantom ? true : false; // initialise the demo @@ -57,6 +58,12 @@ _mouseConstraint = MouseConstraint.create(_engine); World.add(_engine.world, _mouseConstraint); + // engine reference for external use + Matter.Demo._engine = _engine; + + // skip runner when performing automated tests + if (_isAutomatedTest) return; + // run the engine Engine.run(_engine); @@ -1609,9 +1616,6 @@ var demoSelect = document.getElementById('demo-select'), demoReset = document.getElementById('demo-reset'); - // engine reference for external use - Matter.Demo._engine = _engine; - // create a Matter.Gui if (!_isMobile && Gui) { _gui = Gui.create(_engine); diff --git a/test/browser/TestDemo.js b/test/browser/TestDemo.js index 42c80053..df72418c 100644 --- a/test/browser/TestDemo.js +++ b/test/browser/TestDemo.js @@ -52,7 +52,6 @@ var test = function(status) { var worldStart = page.evaluate(function(demo) { var engine = Matter.Demo._engine; - Matter.Runner.stop(engine); if (!(demo in Matter.Demo)) { throw '\'' + demo + '\' is not defined in Matter.Demo'; } @@ -78,19 +77,19 @@ var test = function(status) { if (worldStartDiff.length !== 0) { if (diff) { - fs.write(worldStartDiffPath, JSON.stringify(worldStartDiff, null, 2), 'w'); + fs.write(worldStartDiffPath, JSON.stringify(worldStartDiff, precisionLimiter, 2), 'w'); } if (forceUpdate) { hasCreated = true; - fs.write(worldStartPath, resurrect.stringify(worldStart, null, 2), 'w'); + fs.write(worldStartPath, resurrect.stringify(worldStart, precisionLimiter, 2), 'w'); } else { hasChanged = true; } } } else { hasCreated = true; - fs.write(worldStartPath, resurrect.stringify(worldStart, null, 2), 'w'); + fs.write(worldStartPath, resurrect.stringify(worldStart, precisionLimiter, 2), 'w'); } if (fs.exists(worldEndPath)) { @@ -99,19 +98,19 @@ var test = function(status) { if (worldEndDiff.length !== 0) { if (diff) { - fs.write(worldEndDiffPath, JSON.stringify(worldEndDiff, null, 2), 'w'); + fs.write(worldEndDiffPath, JSON.stringify(worldEndDiff, precisionLimiter, 2), 'w'); } if (forceUpdate) { hasCreated = true; - fs.write(worldEndPath, resurrect.stringify(worldEnd, null, 2), 'w'); + fs.write(worldEndPath, resurrect.stringify(worldEnd, precisionLimiter, 2), 'w'); } else { hasChanged = true; } } } else { hasCreated = true; - fs.write(worldEndPath, resurrect.stringify(worldEnd, null, 2), 'w'); + fs.write(worldEndPath, resurrect.stringify(worldEnd, precisionLimiter, 2), 'w'); } if (hasChanged) { @@ -145,6 +144,14 @@ var test = function(status) { phantom.exit(!isOk); }; +var precisionLimiter = function(key, value) { + // limit precision of floats + if (typeof value === 'number') { + return parseFloat(value.toFixed(5)); + } + return value; +}; + function arg(name) { var index = system.args.indexOf(name); if (index >= 0) { diff --git a/test/browser/refs/airFriction/airFriction-0.json b/test/browser/refs/airFriction/airFriction-0.json index bc80c25a..1a411d52 100644 --- a/test/browser/refs/airFriction/airFriction-0.json +++ b/test/browser/refs/airFriction/airFriction-0.json @@ -854,8 +854,8 @@ "frictionStatic": 0.5, "id": 4, "inertia": 8640, - "inverseInertia": 0.00011574074074074075, - "inverseMass": 0.2777777777777778, + "inverseInertia": 0.00012, + "inverseMass": 0.27778, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1034,8 +1034,8 @@ "frictionStatic": 0.5, "id": 5, "inertia": 8640, - "inverseInertia": 0.00011574074074074075, - "inverseMass": 0.2777777777777778, + "inverseInertia": 0.00012, + "inverseMass": 0.27778, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1214,8 +1214,8 @@ "frictionStatic": 0.5, "id": 6, "inertia": 8640, - "inverseInertia": 0.00011574074074074075, - "inverseMass": 0.2777777777777778, + "inverseInertia": 0.00012, + "inverseMass": 0.27778, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", diff --git a/test/browser/refs/airFriction/airFriction-10.json b/test/browser/refs/airFriction/airFriction-10.json index bc7b86b7..39510ccb 100644 --- a/test/browser/refs/airFriction/airFriction-10.json +++ b/test/browser/refs/airFriction/airFriction-10.json @@ -894,8 +894,8 @@ "frictionStatic": 0.5, "id": 4, "inertia": 8640, - "inverseInertia": 0.00011574074074074075, - "inverseMass": 0.2777777777777778, + "inverseInertia": 0.00012, + "inverseMass": 0.27778, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -921,7 +921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0403235195726515, + "speed": 3.04032, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -959,11 +959,11 @@ }, { "x": 230, - "y": 148.2723595024786 + "y": 148.27236 }, { "x": 170, - "y": 88.27235950247865 + "y": 88.27236 }, { "category": 1, @@ -981,7 +981,7 @@ }, { "x": 200, - "y": 118.27235950247865 + "y": 118.27236 }, { "x": 0, @@ -989,7 +989,7 @@ }, { "x": 200, - "y": 115.232035982906 + "y": 115.23204 }, { "endCol": 4, @@ -1013,7 +1013,7 @@ }, { "x": 0, - "y": 3.0403235195726515 + "y": 3.04032 }, [ { @@ -1034,28 +1034,28 @@ "index": 0, "isInternal": false, "x": 170, - "y": 88.27235950247865 + "y": 88.27236 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 88.27235950247865 + "y": 88.27236 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 148.2723595024786 + "y": 148.27236 }, { "body": null, "index": 3, "isInternal": false, "x": 170, - "y": 148.2723595024786 + "y": 148.27236 }, { "angle": 0, @@ -1084,8 +1084,8 @@ "frictionStatic": 0.5, "id": 5, "inertia": 8640, - "inverseInertia": 0.00011574074074074075, - "inverseMass": 0.2777777777777778, + "inverseInertia": 0.00012, + "inverseMass": 0.27778, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1111,7 +1111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3955550429085495, + "speed": 2.39556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1149,11 +1149,11 @@ }, { "x": 430, - "y": 145.59556529584847 + "y": 145.59557 }, { "x": 370, - "y": 85.59556529584846 + "y": 85.59557 }, { "category": 1, @@ -1171,7 +1171,7 @@ }, { "x": 400, - "y": 115.59556529584846 + "y": 115.59557 }, { "x": 0, @@ -1179,7 +1179,7 @@ }, { "x": 400, - "y": 113.2000102529399 + "y": 113.20001 }, { "endCol": 8, @@ -1203,7 +1203,7 @@ }, { "x": 0, - "y": 2.3955550429085495 + "y": 2.39556 }, [ { @@ -1224,28 +1224,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 85.59556529584846 + "y": 85.59557 }, { "body": null, "index": 1, "isInternal": false, "x": 430, - "y": 85.59556529584846 + "y": 85.59557 }, { "body": null, "index": 2, "isInternal": false, "x": 430, - "y": 145.59556529584847 + "y": 145.59557 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 145.59556529584847 + "y": 145.59557 }, { "angle": 0, @@ -1274,8 +1274,8 @@ "frictionStatic": 0.5, "id": 6, "inertia": 8640, - "inverseInertia": 0.00011574074074074075, - "inverseMass": 0.2777777777777778, + "inverseInertia": 0.00012, + "inverseMass": 0.27778, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1301,7 +1301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9060816775277751, + "speed": 1.90608, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1339,11 +1339,11 @@ }, { "x": 630, - "y": 143.40082045780542 + "y": 143.40082 }, { "x": 570, - "y": 83.40082045780544 + "y": 83.40082 }, { "category": 1, @@ -1361,7 +1361,7 @@ }, { "x": 600, - "y": 113.40082045780544 + "y": 113.40082 }, { "x": 0, @@ -1369,7 +1369,7 @@ }, { "x": 600, - "y": 111.49473878027766 + "y": 111.49474 }, { "endCol": 13, @@ -1393,7 +1393,7 @@ }, { "x": 0, - "y": 1.9060816775277751 + "y": 1.90608 }, [ { @@ -1414,28 +1414,28 @@ "index": 0, "isInternal": false, "x": 570, - "y": 83.40082045780544 + "y": 83.40082 }, { "body": null, "index": 1, "isInternal": false, "x": 630, - "y": 83.40082045780544 + "y": 83.40082 }, { "body": null, "index": 2, "isInternal": false, "x": 630, - "y": 143.40082045780542 + "y": 143.40082 }, { "body": null, "index": 3, "isInternal": false, "x": 570, - "y": 143.40082045780542 + "y": 143.40082 }, { "max": { diff --git a/test/browser/refs/avalanche/avalanche-0.json b/test/browser/refs/avalanche/avalanche-0.json index b304d7da..32b2339c 100644 --- a/test/browser/refs/avalanche/avalanche-0.json +++ b/test/browser/refs/avalanche/avalanche-0.json @@ -825,8 +825,8 @@ "y": 605.25 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -911,12 +911,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -927,12 +927,12 @@ } }, { - "x": 545.6743509008983, - "y": 225.4063326122905 + "x": 545.67435, + "y": 225.40633 }, { - "x": -145.67435090089828, - "y": 74.5936673877095 + "x": -145.67435, + "y": 74.59367 }, { "category": 1, @@ -995,33 +995,33 @@ "body": null, "index": 0, "isInternal": false, - "x": -141.9267246091838, - "y": 74.5936673877095 + "x": -141.92672, + "y": 74.59367 }, { "body": null, "index": 1, "isInternal": false, - "x": 545.6743509008983, - "y": 205.76058759771672 + "x": 545.67435, + "y": 205.76059 }, { "body": null, "index": 2, "isInternal": false, - "x": 541.9267246091838, - "y": 225.4063326122905 + "x": 541.92672, + "y": 225.40633 }, { "body": null, "index": 3, "isInternal": false, - "x": -145.67435090089828, - "y": 94.23941240228328 + "x": -145.67435, + "y": 94.23941 }, { - "angle": -0.18849555921538758, - "anglePrev": -0.18849555921538758, + "angle": -0.1885, + "anglePrev": -0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1106,12 +1106,12 @@ } ], { - "x": 0.1873813145857246, - "y": 0.9822872507286887 + "x": 0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": 0.1873813145857246 + "x": -0.98229, + "y": 0.18738 }, { "max": { @@ -1122,12 +1122,12 @@ } }, { - "x": 845.6743509008983, - "y": 425.4063326122905 + "x": 845.67435, + "y": 425.40633 }, { - "x": 154.32564909910172, - "y": 274.5936673877095 + "x": 154.32565, + "y": 274.59367 }, { "category": 1, @@ -1190,33 +1190,33 @@ "body": null, "index": 0, "isInternal": false, - "x": 154.32564909910172, - "y": 405.7605875977167 + "x": 154.32565, + "y": 405.76059 }, { "body": null, "index": 1, "isInternal": false, - "x": 841.9267246091838, - "y": 274.5936673877095 + "x": 841.92672, + "y": 274.59367 }, { "body": null, "index": 2, "isInternal": false, - "x": 845.6743509008983, - "y": 294.2394124022833 + "x": 845.67435, + "y": 294.23941 }, { "body": null, "index": 3, "isInternal": false, - "x": 158.0732753908162, - "y": 425.4063326122905 + "x": 158.07328, + "y": 425.40633 }, { - "angle": 0.12566370614359174, - "anglePrev": 0.12566370614359174, + "angle": 0.12566, + "anglePrev": 0.12566, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1301,12 +1301,12 @@ } ], { - "x": -0.12533323356430426, - "y": 0.9921147013144779 + "x": -0.12533, + "y": 0.99211 }, { - "x": -0.9921147013144779, - "y": -0.12533323356430426 + "x": -0.99211, + "y": -0.12533 }, { "max": { @@ -1317,12 +1317,12 @@ } }, { - "x": 688.4934777957103, - "y": 633.7877787606512 + "x": 688.49348, + "y": 633.78778 }, { - "x": -8.493477795710305, - "y": 526.2122212393488 + "x": -8.49348, + "y": 526.21222 }, { "category": 1, @@ -1385,29 +1385,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -5.986813124424202, - "y": 526.2122212393488 + "x": -5.98681, + "y": 526.21222 }, { "body": null, "index": 1, "isInternal": false, - "x": 688.4934777957103, - "y": 613.9454847343617 + "x": 688.49348, + "y": 613.94548 }, { "body": null, "index": 2, "isInternal": false, - "x": 685.9868131244242, - "y": 633.7877787606512 + "x": 685.98681, + "y": 633.78778 }, { "body": null, "index": 3, "isInternal": false, - "x": -8.493477795710305, - "y": 546.0545152656383 + "x": -8.49348, + "y": 546.05452 }, { "max": { @@ -1753,14 +1753,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 445.64723200000003, + "area": 445.64723, "axes": { "#": 156 }, "bounds": { "#": 164 }, - "circleRadius": 12.11321159122085, + "circleRadius": 12.11321, "collisionFilter": { "#": 167 }, @@ -1775,13 +1775,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 126.46280868085778, - "inverseInertia": 0.007907463154037685, - "inverseMass": 2.243927322317577, + "inertia": 126.46281, + "inverseInertia": 0.00791, + "inverseMass": 2.24393, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.44564723200000006, + "mass": 0.44565, "motion": 0, "parent": null, "position": { @@ -1836,28 +1836,28 @@ } ], { - "x": -0.900896921339718, - "y": -0.43403310601913536 + "x": -0.9009, + "y": -0.43403 }, { - "x": -0.6236538782909027, - "y": -0.7817006077090614 + "x": -0.62365, + "y": -0.7817 }, { - "x": -0.22240673703341207, - "y": -0.974953969847885 + "x": -0.22241, + "y": -0.97495 }, { - "x": 0.22240673703341207, - "y": -0.974953969847885 + "x": 0.22241, + "y": -0.97495 }, { - "x": 0.6236538782909027, - "y": -0.7817006077090614 + "x": 0.62365, + "y": -0.7817 }, { - "x": 0.900896921339718, - "y": -0.43403310601913536 + "x": 0.9009, + "y": -0.43403 }, { "x": 1, @@ -1872,7 +1872,7 @@ } }, { - "x": 43.620000000000005, + "x": 43.62, "y": 44.226 }, { @@ -1894,7 +1894,7 @@ "y": 0 }, { - "x": 31.810000000000002, + "x": 31.81, "y": 32.113 }, { @@ -1902,7 +1902,7 @@ "y": 0 }, { - "x": 31.810000000000002, + "x": 31.81, "y": 32.113 }, { @@ -1970,7 +1970,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 43.620000000000005, + "x": 43.62, "y": 34.808 }, { @@ -1991,21 +1991,21 @@ "body": null, "index": 3, "isInternal": false, - "x": 31.810000000000002, + "x": 31.81, "y": 44.226 }, { "body": null, "index": 4, "isInternal": false, - "x": 26.554000000000002, + "x": 26.554, "y": 43.027 }, { "body": null, "index": 5, "isInternal": false, - "x": 22.340000000000003, + "x": 22.34, "y": 39.665 }, { @@ -2026,21 +2026,21 @@ "body": null, "index": 8, "isInternal": false, - "x": 22.340000000000003, + "x": 22.34, "y": 24.561 }, { "body": null, "index": 9, "isInternal": false, - "x": 26.554000000000002, - "y": 21.198999999999998 + "x": 26.554, + "y": 21.199 }, { "body": null, "index": 10, "isInternal": false, - "x": 31.810000000000002, + "x": 31.81, "y": 20 }, { @@ -2048,7 +2048,7 @@ "index": 11, "isInternal": false, "x": 37.066, - "y": 21.198999999999998 + "y": 21.199 }, { "body": null, @@ -2061,7 +2061,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 43.620000000000005, + "x": 43.62, "y": 29.418 }, { @@ -2069,14 +2069,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 732.475276, + "area": 732.47528, "axes": { "#": 192 }, "bounds": { "#": 201 }, - "circleRadius": 15.467721193415638, + "circleRadius": 15.46772, "collisionFilter": { "#": 204 }, @@ -2091,13 +2091,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 341.60522862031934, - "inverseInertia": 0.002927355661500897, - "inverseMass": 1.3652337939117005, + "inertia": 341.60523, + "inverseInertia": 0.00293, + "inverseMass": 1.36523, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7324752760000001, + "mass": 0.73248, "motion": 0, "parent": null, "position": { @@ -2155,32 +2155,32 @@ } ], { - "x": -0.9238350355607171, - "y": -0.38279083984668255 + "x": -0.92384, + "y": -0.38279 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38279083984668255, - "y": -0.9238350355607171 + "x": -0.38279, + "y": -0.92384 }, { "x": 0, "y": -1 }, { - "x": 0.38279083984668255, - "y": -0.9238350355607171 + "x": 0.38279, + "y": -0.92384 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238350355607171, - "y": -0.38279083984668255 + "x": 0.92384, + "y": -0.38279 }, { "x": 1, @@ -2199,7 +2199,7 @@ "y": 50.342 }, { - "x": 43.620000000000005, + "x": 43.62, "y": 20 }, { @@ -2217,7 +2217,7 @@ "y": 0 }, { - "x": 58.791000000000004, + "x": 58.791, "y": 35.171 }, { @@ -2225,7 +2225,7 @@ "y": 0 }, { - "x": 58.791000000000004, + "x": 58.791, "y": 35.171 }, { @@ -2306,21 +2306,21 @@ "body": null, "index": 1, "isInternal": false, - "x": 71.65200000000002, - "y": 43.763999999999996 + "x": 71.652, + "y": 43.764 }, { "body": null, "index": 2, "isInternal": false, - "x": 67.38400000000001, - "y": 48.032000000000004 + "x": 67.384, + "y": 48.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 61.809000000000005, + "x": 61.809, "y": 50.342 }, { @@ -2335,34 +2335,34 @@ "index": 5, "isInternal": false, "x": 50.198, - "y": 48.032000000000004 + "y": 48.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 45.93000000000001, - "y": 43.763999999999996 + "x": 45.93, + "y": 43.764 }, { "body": null, "index": 7, "isInternal": false, - "x": 43.620000000000005, + "x": 43.62, "y": 38.189 }, { "body": null, "index": 8, "isInternal": false, - "x": 43.620000000000005, + "x": 43.62, "y": 32.153 }, { "body": null, "index": 9, "isInternal": false, - "x": 45.93000000000001, + "x": 45.93, "y": 26.578 }, { @@ -2383,21 +2383,21 @@ "body": null, "index": 12, "isInternal": false, - "x": 61.809000000000005, + "x": 61.809, "y": 20 }, { "body": null, "index": 13, "isInternal": false, - "x": 67.38400000000001, + "x": 67.384, "y": 22.31 }, { "body": null, "index": 14, "isInternal": false, - "x": 71.65200000000002, + "x": 71.652, "y": 26.578 }, { @@ -2412,14 +2412,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1023.0280239999998, + "area": 1023.02802, "axes": { "#": 231 }, "bounds": { "#": 242 }, - "circleRadius": 18.19465877914952, + "circleRadius": 18.19466, "collisionFilter": { "#": 245 }, @@ -2434,13 +2434,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 666.3140407130343, - "inverseInertia": 0.0015007938282823555, - "inverseMass": 0.9774903292385275, + "inertia": 666.31404, + "inverseInertia": 0.0015, + "inverseMass": 0.97749, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0230280239999998, + "mass": 1.02303, "motion": 0, "parent": null, "position": { @@ -2504,40 +2504,40 @@ } ], { - "x": -0.9510624654126439, - "y": -0.3089986842742595 + "x": -0.95106, + "y": -0.309 }, { - "x": -0.8090549880907667, - "y": -0.5877329548744475 + "x": -0.80905, + "y": -0.58773 }, { - "x": -0.5877329548744475, - "y": -0.8090549880907667 + "x": -0.58773, + "y": -0.80905 }, { - "x": -0.3089986842742595, - "y": -0.9510624654126439 + "x": -0.309, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.3089986842742595, - "y": -0.9510624654126439 + "x": 0.309, + "y": -0.95106 }, { - "x": 0.5877329548744475, - "y": -0.8090549880907667 + "x": 0.58773, + "y": -0.80905 }, { - "x": 0.8090549880907667, - "y": -0.5877329548744475 + "x": 0.80905, + "y": -0.58773 }, { - "x": 0.9510624654126439, - "y": -0.3089986842742595 + "x": 0.95106, + "y": -0.309 }, { "x": 1, @@ -2552,12 +2552,12 @@ } }, { - "x": 109.90400000000001, - "y": 55.94200000000001 + "x": 109.904, + "y": 55.942 }, { "x": 73.962, - "y": 20.000000000000004 + "y": 20 }, { "category": 1, @@ -2575,7 +2575,7 @@ }, { "x": 91.933, - "y": 37.971000000000004 + "y": 37.971 }, { "x": 0, @@ -2583,7 +2583,7 @@ }, { "x": 91.933, - "y": 37.971000000000004 + "y": 37.971 }, { "fillStyle": "#556270", @@ -2668,14 +2668,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 109.90400000000001, - "y": 40.81700000000001 + "x": 109.904, + "y": 40.817 }, { "body": null, "index": 1, "isInternal": false, - "x": 108.14500000000001, + "x": 108.145, "y": 46.231 }, { @@ -2689,35 +2689,35 @@ "body": null, "index": 3, "isInternal": false, - "x": 100.19300000000001, - "y": 54.18300000000001 + "x": 100.193, + "y": 54.183 }, { "body": null, "index": 4, "isInternal": false, - "x": 94.77900000000001, - "y": 55.94200000000001 + "x": 94.779, + "y": 55.942 }, { "body": null, "index": 5, "isInternal": false, "x": 89.087, - "y": 55.94200000000001 + "y": 55.942 }, { "body": null, "index": 6, "isInternal": false, "x": 83.673, - "y": 54.18300000000001 + "y": 54.183 }, { "body": null, "index": 7, "isInternal": false, - "x": 79.06700000000001, + "x": 79.067, "y": 50.837 }, { @@ -2732,7 +2732,7 @@ "index": 9, "isInternal": false, "x": 73.962, - "y": 40.81700000000001 + "y": 40.817 }, { "body": null, @@ -2746,62 +2746,62 @@ "index": 11, "isInternal": false, "x": 75.721, - "y": 29.711000000000006 + "y": 29.711 }, { "body": null, "index": 12, "isInternal": false, - "x": 79.06700000000001, - "y": 25.105000000000004 + "x": 79.067, + "y": 25.105 }, { "body": null, "index": 13, "isInternal": false, "x": 83.673, - "y": 21.759000000000004 + "y": 21.759 }, { "body": null, "index": 14, "isInternal": false, "x": 89.087, - "y": 20.000000000000004 + "y": 20 }, { "body": null, "index": 15, "isInternal": false, - "x": 94.77900000000001, - "y": 20.000000000000004 + "x": 94.779, + "y": 20 }, { "body": null, "index": 16, "isInternal": false, - "x": 100.19300000000001, - "y": 21.759000000000004 + "x": 100.193, + "y": 21.759 }, { "body": null, "index": 17, "isInternal": false, "x": 104.799, - "y": 25.105000000000004 + "y": 25.105 }, { "body": null, "index": 18, "isInternal": false, - "x": 108.14500000000001, - "y": 29.711000000000006 + "x": 108.145, + "y": 29.711 }, { "body": null, "index": 19, "isInternal": false, - "x": 109.90400000000001, + "x": 109.904, "y": 35.125 }, { @@ -2816,7 +2816,7 @@ "bounds": { "#": 284 }, - "circleRadius": 13.750814471879288, + "circleRadius": 13.75081, "collisionFilter": { "#": 287 }, @@ -2831,13 +2831,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 210.00413885422935, - "inverseInertia": 0.004761810912184603, - "inverseMass": 1.7413107072063536, + "inertia": 210.00414, + "inverseInertia": 0.00476, + "inverseMass": 1.74131, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5742800499999999, + "mass": 0.57428, "motion": 0, "parent": null, "position": { @@ -2892,28 +2892,28 @@ } ], { - "x": -0.9009638128018401, - "y": -0.4338942359856497 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6234987739411211, - "y": -0.7818243273868618 + "x": -0.6235, + "y": -0.78182 }, { - "x": -0.22256744167907103, - "y": -0.9749172959304976 + "x": -0.22257, + "y": -0.97492 }, { - "x": 0.22256744167907103, - "y": -0.9749172959304976 + "x": 0.22257, + "y": -0.97492 }, { - "x": 0.6234987739411211, - "y": -0.7818243273868618 + "x": 0.6235, + "y": -0.78182 }, { - "x": 0.9009638128018401, - "y": -0.4338942359856497 + "x": 0.90096, + "y": -0.43389 }, { "x": 1, @@ -2929,10 +2929,10 @@ }, { "x": 136.716, - "y": 47.501999999999995 + "y": 47.502 }, { - "x": 109.90400000000001, + "x": 109.904, "y": 20 }, { @@ -2950,7 +2950,7 @@ "y": 0 }, { - "x": 123.31000000000002, + "x": 123.31, "y": 33.751 }, { @@ -2958,7 +2958,7 @@ "y": 0 }, { - "x": 123.31000000000002, + "x": 123.31, "y": 33.751 }, { @@ -3027,13 +3027,13 @@ "index": 0, "isInternal": false, "x": 136.716, - "y": 36.81099999999999 + "y": 36.811 }, { "body": null, "index": 1, "isInternal": false, - "x": 134.06100000000004, + "x": 134.061, "y": 42.324 }, { @@ -3041,62 +3041,62 @@ "index": 2, "isInternal": false, "x": 129.276, - "y": 46.13999999999999 + "y": 46.14 }, { "body": null, "index": 3, "isInternal": false, - "x": 123.31000000000002, - "y": 47.501999999999995 + "x": 123.31, + "y": 47.502 }, { "body": null, "index": 4, "isInternal": false, - "x": 117.34400000000002, - "y": 46.13999999999999 + "x": 117.344, + "y": 46.14 }, { "body": null, "index": 5, "isInternal": false, - "x": 112.55900000000001, + "x": 112.559, "y": 42.324 }, { "body": null, "index": 6, "isInternal": false, - "x": 109.90400000000001, - "y": 36.81099999999999 + "x": 109.904, + "y": 36.811 }, { "body": null, "index": 7, "isInternal": false, - "x": 109.90400000000001, - "y": 30.690999999999995 + "x": 109.904, + "y": 30.691 }, { "body": null, "index": 8, "isInternal": false, - "x": 112.55900000000001, - "y": 25.177999999999997 + "x": 112.559, + "y": 25.178 }, { "body": null, "index": 9, "isInternal": false, - "x": 117.34400000000002, + "x": 117.344, "y": 21.362 }, { "body": null, "index": 10, "isInternal": false, - "x": 123.31000000000002, + "x": 123.31, "y": 20 }, { @@ -3110,29 +3110,29 @@ "body": null, "index": 12, "isInternal": false, - "x": 134.06100000000004, - "y": 25.177999999999997 + "x": 134.061, + "y": 25.178 }, { "body": null, "index": 13, "isInternal": false, "x": 136.716, - "y": 30.690999999999995 + "y": 30.691 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1195.2601479999998, + "area": 1195.26015, "axes": { "#": 312 }, "bounds": { "#": 323 }, - "circleRadius": 19.667052469135804, + "circleRadius": 19.66705, "collisionFilter": { "#": 326 }, @@ -3147,13 +3147,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 909.5546177631703, - "inverseInertia": 0.0010994391985599042, - "inverseMass": 0.8366379500506865, + "inertia": 909.55462, + "inverseInertia": 0.0011, + "inverseMass": 0.83664, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1952601479999998, + "mass": 1.19526, "motion": 0, "parent": null, "position": { @@ -3217,40 +3217,40 @@ } ], { - "x": -0.9510292915090645, - "y": -0.3091007710953933 + "x": -0.95103, + "y": -0.3091 }, { - "x": -0.8090733104102286, - "y": -0.5877077321099611 + "x": -0.80907, + "y": -0.58771 }, { - "x": -0.5877077321099611, - "y": -0.8090733104102286 + "x": -0.58771, + "y": -0.80907 }, { - "x": -0.3091007710953933, - "y": -0.9510292915090645 + "x": -0.3091, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.3091007710953933, - "y": -0.9510292915090645 + "x": 0.3091, + "y": -0.95103 }, { - "x": 0.5877077321099611, - "y": -0.8090733104102286 + "x": 0.58771, + "y": -0.80907 }, { - "x": 0.8090733104102286, - "y": -0.5877077321099611 + "x": 0.80907, + "y": -0.58771 }, { - "x": 0.9510292915090645, - "y": -0.3091007710953933 + "x": 0.95103, + "y": -0.3091 }, { "x": 1, @@ -3265,12 +3265,12 @@ } }, { - "x": 175.56600000000003, - "y": 58.849999999999994 + "x": 175.566, + "y": 58.85 }, { "x": 136.716, - "y": 19.999999999999996 + "y": 20 }, { "category": 1, @@ -3287,7 +3287,7 @@ "y": 0 }, { - "x": 156.14100000000002, + "x": 156.141, "y": 39.425 }, { @@ -3295,7 +3295,7 @@ "y": 0 }, { - "x": 156.14100000000002, + "x": 156.141, "y": 39.425 }, { @@ -3381,63 +3381,63 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.56600000000003, - "y": 42.501999999999995 + "x": 175.566, + "y": 42.502 }, { "body": null, "index": 1, "isInternal": false, - "x": 173.66400000000002, + "x": 173.664, "y": 48.354 }, { "body": null, "index": 2, "isInternal": false, - "x": 170.04800000000003, - "y": 53.331999999999994 + "x": 170.048, + "y": 53.332 }, { "body": null, "index": 3, "isInternal": false, - "x": 165.07000000000002, - "y": 56.94799999999999 + "x": 165.07, + "y": 56.948 }, { "body": null, "index": 4, "isInternal": false, - "x": 159.21800000000002, - "y": 58.849999999999994 + "x": 159.218, + "y": 58.85 }, { "body": null, "index": 5, "isInternal": false, - "x": 153.06400000000002, - "y": 58.849999999999994 + "x": 153.064, + "y": 58.85 }, { "body": null, "index": 6, "isInternal": false, - "x": 147.21200000000002, - "y": 56.94799999999999 + "x": 147.212, + "y": 56.948 }, { "body": null, "index": 7, "isInternal": false, - "x": 142.23400000000004, - "y": 53.331999999999994 + "x": 142.234, + "y": 53.332 }, { "body": null, "index": 8, "isInternal": false, - "x": 138.61800000000002, + "x": 138.618, "y": 48.354 }, { @@ -3445,7 +3445,7 @@ "index": 9, "isInternal": false, "x": 136.716, - "y": 42.501999999999995 + "y": 42.502 }, { "body": null, @@ -3458,63 +3458,63 @@ "body": null, "index": 11, "isInternal": false, - "x": 138.61800000000002, - "y": 30.495999999999995 + "x": 138.618, + "y": 30.496 }, { "body": null, "index": 12, "isInternal": false, - "x": 142.23400000000004, - "y": 25.517999999999997 + "x": 142.234, + "y": 25.518 }, { "body": null, "index": 13, "isInternal": false, - "x": 147.21200000000002, - "y": 21.901999999999997 + "x": 147.212, + "y": 21.902 }, { "body": null, "index": 14, "isInternal": false, - "x": 153.06400000000002, - "y": 19.999999999999996 + "x": 153.064, + "y": 20 }, { "body": null, "index": 15, "isInternal": false, - "x": 159.21800000000002, - "y": 19.999999999999996 + "x": 159.218, + "y": 20 }, { "body": null, "index": 16, "isInternal": false, - "x": 165.07000000000002, - "y": 21.901999999999997 + "x": 165.07, + "y": 21.902 }, { "body": null, "index": 17, "isInternal": false, - "x": 170.04800000000003, - "y": 25.517999999999997 + "x": 170.048, + "y": 25.518 }, { "body": null, "index": 18, "isInternal": false, - "x": 173.66400000000002, - "y": 30.495999999999995 + "x": 173.664, + "y": 30.496 }, { "body": null, "index": 19, "isInternal": false, - "x": 175.56600000000003, + "x": 175.566, "y": 36.348 }, { @@ -3522,14 +3522,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 431.46854399999995, + "area": 431.46854, "axes": { "#": 357 }, "bounds": { "#": 364 }, - "circleRadius": 11.99275548696845, + "circleRadius": 11.99276, "collisionFilter": { "#": 367 }, @@ -3544,13 +3544,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 118.56753749026406, - "inverseInertia": 0.008434011713215457, - "inverseMass": 2.3176660591044156, + "inertia": 118.56754, + "inverseInertia": 0.00843, + "inverseMass": 2.31767, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.43146854399999995, + "mass": 0.43147, "motion": 0, "parent": null, "position": { @@ -3602,24 +3602,24 @@ } ], { - "x": -0.8660138975112615, - "y": -0.5000199289201924 + "x": -0.86601, + "y": -0.50002 }, { - "x": -0.5000199289201924, - "y": -0.8660138975112615 + "x": -0.50002, + "y": -0.86601 }, { "x": 0, "y": -1 }, { - "x": 0.5000199289201924, - "y": -0.8660138975112615 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.8660138975112615, - "y": -0.5000199289201924 + "x": 0.86601, + "y": -0.50002 }, { "x": 1, @@ -3634,11 +3634,11 @@ } }, { - "x": 198.73400000000004, + "x": 198.734, "y": 43.168 }, { - "x": 175.56600000000003, + "x": 175.566, "y": 20 }, { @@ -3656,7 +3656,7 @@ "y": 0 }, { - "x": 187.15000000000003, + "x": 187.15, "y": 31.584 }, { @@ -3664,7 +3664,7 @@ "y": 0 }, { - "x": 187.15000000000003, + "x": 187.15, "y": 31.584 }, { @@ -3726,84 +3726,84 @@ "body": null, "index": 0, "isInternal": false, - "x": 198.73400000000004, + "x": 198.734, "y": 34.688 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.63000000000002, + "x": 195.63, "y": 40.064 }, { "body": null, "index": 2, "isInternal": false, - "x": 190.25400000000005, + "x": 190.254, "y": 43.168 }, { "body": null, "index": 3, "isInternal": false, - "x": 184.04600000000002, + "x": 184.046, "y": 43.168 }, { "body": null, "index": 4, "isInternal": false, - "x": 178.67000000000004, + "x": 178.67, "y": 40.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 175.56600000000003, + "x": 175.566, "y": 34.688 }, { "body": null, "index": 6, "isInternal": false, - "x": 175.56600000000003, + "x": 175.566, "y": 28.48 }, { "body": null, "index": 7, "isInternal": false, - "x": 178.67000000000004, + "x": 178.67, "y": 23.104 }, { "body": null, "index": 8, "isInternal": false, - "x": 184.04600000000002, + "x": 184.046, "y": 20 }, { "body": null, "index": 9, "isInternal": false, - "x": 190.25400000000005, + "x": 190.254, "y": 20 }, { "body": null, "index": 10, "isInternal": false, - "x": 195.63000000000002, + "x": 195.63, "y": 23.104 }, { "body": null, "index": 11, "isInternal": false, - "x": 198.73400000000004, + "x": 198.734, "y": 28.48 }, { @@ -3811,14 +3811,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 828.5975979999998, + "area": 828.5976, "axes": { "#": 390 }, "bounds": { "#": 400 }, - "circleRadius": 16.40693587105624, + "circleRadius": 16.40694, "collisionFilter": { "#": 403 }, @@ -3833,13 +3833,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 437.12315220007827, - "inverseInertia": 0.00228768482055209, - "inverseMass": 1.206858434557036, + "inertia": 437.12315, + "inverseInertia": 0.00229, + "inverseMass": 1.20686, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8285975979999999, + "mass": 0.8286, "motion": 0, "parent": null, "position": { @@ -3900,36 +3900,36 @@ } ], { - "x": -0.9396755074993973, - "y": -0.34206715803442794 + "x": -0.93968, + "y": -0.34207 }, { - "x": -0.7660159168444758, - "y": -0.6428216044447457 + "x": -0.76602, + "y": -0.64282 }, { - "x": -0.5000465688762351, - "y": -0.8659985155617211 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.1737252699374666, - "y": -0.9847941564535982 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737252699374666, - "y": -0.9847941564535982 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.5000465688762351, - "y": -0.8659985155617211 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7660159168444758, - "y": -0.6428216044447457 + "x": 0.76602, + "y": -0.64282 }, { - "x": 0.9396755074993973, - "y": -0.34206715803442794 + "x": 0.93968, + "y": -0.34207 }, { "x": 1, @@ -3944,12 +3944,12 @@ } }, { - "x": 231.05000000000007, - "y": 52.81399999999999 + "x": 231.05, + "y": 52.814 }, { - "x": 198.73400000000004, - "y": 19.999999999999996 + "x": 198.734, + "y": 20 }, { "category": 1, @@ -3966,7 +3966,7 @@ "y": 0 }, { - "x": 214.89200000000005, + "x": 214.892, "y": 36.407 }, { @@ -3974,7 +3974,7 @@ "y": 0 }, { - "x": 214.89200000000005, + "x": 214.892, "y": 36.407 }, { @@ -4054,141 +4054,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 231.05000000000007, + "x": 231.05, "y": 39.256 }, { "body": null, "index": 1, "isInternal": false, - "x": 229.10100000000006, + "x": 229.101, "y": 44.61 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.43800000000005, - "y": 48.974999999999994 + "x": 225.438, + "y": 48.975 }, { "body": null, "index": 3, "isInternal": false, - "x": 220.50400000000005, + "x": 220.504, "y": 51.824 }, { "body": null, "index": 4, "isInternal": false, - "x": 214.89200000000005, - "y": 52.81399999999999 + "x": 214.892, + "y": 52.814 }, { "body": null, "index": 5, "isInternal": false, - "x": 209.28000000000006, + "x": 209.28, "y": 51.824 }, { "body": null, "index": 6, "isInternal": false, - "x": 204.34600000000006, - "y": 48.974999999999994 + "x": 204.346, + "y": 48.975 }, { "body": null, "index": 7, "isInternal": false, - "x": 200.68300000000005, + "x": 200.683, "y": 44.61 }, { "body": null, "index": 8, "isInternal": false, - "x": 198.73400000000004, + "x": 198.734, "y": 39.256 }, { "body": null, "index": 9, "isInternal": false, - "x": 198.73400000000004, - "y": 33.55799999999999 + "x": 198.734, + "y": 33.558 }, { "body": null, "index": 10, "isInternal": false, - "x": 200.68300000000005, - "y": 28.203999999999997 + "x": 200.683, + "y": 28.204 }, { "body": null, "index": 11, "isInternal": false, - "x": 204.34600000000006, + "x": 204.346, "y": 23.839 }, { "body": null, "index": 12, "isInternal": false, - "x": 209.28000000000006, - "y": 20.989999999999995 + "x": 209.28, + "y": 20.99 }, { "body": null, "index": 13, "isInternal": false, - "x": 214.89200000000005, - "y": 19.999999999999996 + "x": 214.892, + "y": 20 }, { "body": null, "index": 14, "isInternal": false, - "x": 220.50400000000005, - "y": 20.989999999999995 + "x": 220.504, + "y": 20.99 }, { "body": null, "index": 15, "isInternal": false, - "x": 225.43800000000005, + "x": 225.438, "y": 23.839 }, { "body": null, "index": 16, "isInternal": false, - "x": 229.10100000000006, - "y": 28.203999999999997 + "x": 229.101, + "y": 28.204 }, { "body": null, "index": 17, "isInternal": false, - "x": 231.05000000000007, - "y": 33.55799999999999 + "x": 231.05, + "y": 33.558 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 783.3593100000002, + "area": 783.35931, "axes": { "#": 432 }, "bounds": { "#": 441 }, - "circleRadius": 15.996013374485596, + "circleRadius": 15.99601, "collisionFilter": { "#": 444 }, @@ -4203,13 +4203,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 390.7154522672976, - "inverseInertia": 0.0025594073492539436, - "inverseMass": 1.2765534119968522, + "inertia": 390.71545, + "inverseInertia": 0.00256, + "inverseMass": 1.27655, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7833593100000001, + "mass": 0.78336, "motion": 0, "parent": null, "position": { @@ -4267,32 +4267,32 @@ } ], { - "x": -0.9238430135485202, - "y": -0.3827715850446434 + "x": -0.92384, + "y": -0.38277 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3827715850446434, - "y": -0.9238430135485202 + "x": -0.38277, + "y": -0.92384 }, { "x": 0, "y": -1 }, { - "x": 0.3827715850446434, - "y": -0.9238430135485202 + "x": 0.38277, + "y": -0.92384 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238430135485202, - "y": -0.3827715850446434 + "x": 0.92384, + "y": -0.38277 }, { "x": 1, @@ -4307,11 +4307,11 @@ } }, { - "x": 262.42800000000005, + "x": 262.428, "y": 51.378 }, { - "x": 231.05000000000007, + "x": 231.05, "y": 20 }, { @@ -4329,7 +4329,7 @@ "y": 0 }, { - "x": 246.73900000000006, + "x": 246.739, "y": 35.689 }, { @@ -4337,7 +4337,7 @@ "y": 0 }, { - "x": 246.73900000000006, + "x": 246.739, "y": 35.689 }, { @@ -4411,112 +4411,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 262.42800000000005, + "x": 262.428, "y": 38.81 }, { "body": null, "index": 1, "isInternal": false, - "x": 260.0390000000001, + "x": 260.039, "y": 44.576 }, { "body": null, "index": 2, "isInternal": false, - "x": 255.62600000000006, + "x": 255.626, "y": 48.989 }, { "body": null, "index": 3, "isInternal": false, - "x": 249.86000000000007, + "x": 249.86, "y": 51.378 }, { "body": null, "index": 4, "isInternal": false, - "x": 243.61800000000005, + "x": 243.618, "y": 51.378 }, { "body": null, "index": 5, "isInternal": false, - "x": 237.85200000000006, + "x": 237.852, "y": 48.989 }, { "body": null, "index": 6, "isInternal": false, - "x": 233.43900000000005, + "x": 233.439, "y": 44.576 }, { "body": null, "index": 7, "isInternal": false, - "x": 231.05000000000007, + "x": 231.05, "y": 38.81 }, { "body": null, "index": 8, "isInternal": false, - "x": 231.05000000000007, + "x": 231.05, "y": 32.568 }, { "body": null, "index": 9, "isInternal": false, - "x": 233.43900000000005, + "x": 233.439, "y": 26.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 237.85200000000006, + "x": 237.852, "y": 22.389 }, { "body": null, "index": 11, "isInternal": false, - "x": 243.61800000000005, + "x": 243.618, "y": 20 }, { "body": null, "index": 12, "isInternal": false, - "x": 249.86000000000007, + "x": 249.86, "y": 20 }, { "body": null, "index": 13, "isInternal": false, - "x": 255.62600000000006, + "x": 255.626, "y": 22.389 }, { "body": null, "index": 14, "isInternal": false, - "x": 260.0390000000001, + "x": 260.039, "y": 26.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 262.42800000000005, + "x": 262.428, "y": 32.568 }, { @@ -4524,14 +4524,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 754.4775720000002, + "area": 754.47757, "axes": { "#": 471 }, "bounds": { "#": 480 }, - "circleRadius": 15.698259602194788, + "circleRadius": 15.69826, "collisionFilter": { "#": 483 }, @@ -4546,13 +4546,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 362.43592371593485, - "inverseInertia": 0.002759108395622964, - "inverseMass": 1.32542044603017, + "inertia": 362.43592, + "inverseInertia": 0.00276, + "inverseMass": 1.32542, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7544775720000002, + "mass": 0.75448, "motion": 0, "parent": null, "position": { @@ -4610,32 +4610,32 @@ } ], { - "x": -0.9238576132125803, - "y": -0.3827363459473821 + "x": -0.92386, + "y": -0.38274 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3827363459473821, - "y": -0.9238576132125803 + "x": -0.38274, + "y": -0.92386 }, { "x": 0, "y": -1 }, { - "x": 0.3827363459473821, - "y": -0.9238576132125803 + "x": 0.38274, + "y": -0.92386 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238576132125803, - "y": -0.3827363459473821 + "x": 0.92386, + "y": -0.38274 }, { "x": 1, @@ -4650,11 +4650,11 @@ } }, { - "x": 293.22200000000004, + "x": 293.222, "y": 50.794 }, { - "x": 262.42800000000005, + "x": 262.428, "y": 20 }, { @@ -4672,7 +4672,7 @@ "y": 0 }, { - "x": 277.82500000000005, + "x": 277.825, "y": 35.397 }, { @@ -4680,7 +4680,7 @@ "y": 0 }, { - "x": 277.82500000000005, + "x": 277.825, "y": 35.397 }, { @@ -4754,112 +4754,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 293.22200000000004, + "x": 293.222, "y": 38.46 }, { "body": null, "index": 1, "isInternal": false, - "x": 290.87800000000004, - "y": 44.117999999999995 + "x": 290.878, + "y": 44.118 }, { "body": null, "index": 2, "isInternal": false, - "x": 286.54600000000005, - "y": 48.449999999999996 + "x": 286.546, + "y": 48.45 }, { "body": null, "index": 3, "isInternal": false, - "x": 280.88800000000003, + "x": 280.888, "y": 50.794 }, { "body": null, "index": 4, "isInternal": false, - "x": 274.76200000000006, + "x": 274.762, "y": 50.794 }, { "body": null, "index": 5, "isInternal": false, - "x": 269.10400000000004, - "y": 48.449999999999996 + "x": 269.104, + "y": 48.45 }, { "body": null, "index": 6, "isInternal": false, - "x": 264.77200000000005, - "y": 44.117999999999995 + "x": 264.772, + "y": 44.118 }, { "body": null, "index": 7, "isInternal": false, - "x": 262.42800000000005, + "x": 262.428, "y": 38.46 }, { "body": null, "index": 8, "isInternal": false, - "x": 262.42800000000005, + "x": 262.428, "y": 32.334 }, { "body": null, "index": 9, "isInternal": false, - "x": 264.77200000000005, + "x": 264.772, "y": 26.676 }, { "body": null, "index": 10, "isInternal": false, - "x": 269.10400000000004, - "y": 22.343999999999998 + "x": 269.104, + "y": 22.344 }, { "body": null, "index": 11, "isInternal": false, - "x": 274.76200000000006, + "x": 274.762, "y": 20 }, { "body": null, "index": 12, "isInternal": false, - "x": 280.88800000000003, + "x": 280.888, "y": 20 }, { "body": null, "index": 13, "isInternal": false, - "x": 286.54600000000005, - "y": 22.343999999999998 + "x": 286.546, + "y": 22.344 }, { "body": null, "index": 14, "isInternal": false, - "x": 290.87800000000004, + "x": 290.878, "y": 26.676 }, { "body": null, "index": 15, "isInternal": false, - "x": 293.22200000000004, + "x": 293.222, "y": 32.334 }, { @@ -4867,14 +4867,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 546.5734600000001, + "area": 546.57346, "axes": { "#": 510 }, "bounds": { "#": 518 }, - "circleRadius": 13.414909122085048, + "circleRadius": 13.41491, "collisionFilter": { "#": 521 }, @@ -4889,13 +4889,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 190.22932853820927, - "inverseInertia": 0.0052568129619357876, - "inverseMass": 1.8295802361131839, + "inertia": 190.22933, + "inverseInertia": 0.00526, + "inverseMass": 1.82958, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5465734600000001, + "mass": 0.54657, "motion": 0, "parent": null, "position": { @@ -4950,28 +4950,28 @@ } ], { - "x": -0.9009289164305454, - "y": -0.4339666894351262 + "x": -0.90093, + "y": -0.43397 }, { - "x": -0.6235094308206882, - "y": -0.7818158284900999 + "x": -0.62351, + "y": -0.78182 }, { - "x": -0.22258377112347572, - "y": -0.9749135678779182 + "x": -0.22258, + "y": -0.97491 }, { - "x": 0.22258377112347572, - "y": -0.9749135678779182 + "x": 0.22258, + "y": -0.97491 }, { - "x": 0.6235094308206882, - "y": -0.7818158284900999 + "x": 0.62351, + "y": -0.78182 }, { - "x": 0.9009289164305454, - "y": -0.4339666894351262 + "x": 0.90093, + "y": -0.43397 }, { "x": 1, @@ -4986,11 +4986,11 @@ } }, { - "x": 319.38000000000005, + "x": 319.38, "y": 46.83 }, { - "x": 293.22200000000004, + "x": 293.222, "y": 20 }, { @@ -5008,7 +5008,7 @@ "y": 0 }, { - "x": 306.30100000000004, + "x": 306.301, "y": 33.415 }, { @@ -5016,7 +5016,7 @@ "y": 0 }, { - "x": 306.30100000000004, + "x": 306.301, "y": 33.415 }, { @@ -5084,28 +5084,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 319.38000000000005, + "x": 319.38, "y": 36.4 }, { "body": null, "index": 1, "isInternal": false, - "x": 316.78900000000004, - "y": 41.778999999999996 + "x": 316.789, + "y": 41.779 }, { "body": null, "index": 2, "isInternal": false, - "x": 312.12200000000007, + "x": 312.122, "y": 45.501 }, { "body": null, "index": 3, "isInternal": false, - "x": 306.30100000000004, + "x": 306.301, "y": 46.83 }, { @@ -5119,28 +5119,28 @@ "body": null, "index": 5, "isInternal": false, - "x": 295.81300000000005, - "y": 41.778999999999996 + "x": 295.813, + "y": 41.779 }, { "body": null, "index": 6, "isInternal": false, - "x": 293.22200000000004, + "x": 293.222, "y": 36.4 }, { "body": null, "index": 7, "isInternal": false, - "x": 293.22200000000004, + "x": 293.222, "y": 30.43 }, { "body": null, "index": 8, "isInternal": false, - "x": 295.81300000000005, + "x": 295.813, "y": 25.051 }, { @@ -5154,28 +5154,28 @@ "body": null, "index": 10, "isInternal": false, - "x": 306.30100000000004, + "x": 306.301, "y": 20 }, { "body": null, "index": 11, "isInternal": false, - "x": 312.12200000000007, + "x": 312.122, "y": 21.329 }, { "body": null, "index": 12, "isInternal": false, - "x": 316.78900000000004, + "x": 316.789, "y": 25.051 }, { "body": null, "index": 13, "isInternal": false, - "x": 319.38000000000005, + "x": 319.38, "y": 30.43 }, { @@ -5183,14 +5183,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 973.9752019999999, + "area": 973.9752, "axes": { "#": 546 }, "bounds": { "#": 556 }, - "circleRadius": 17.787937242798353, + "circleRadius": 17.78794, "collisionFilter": { "#": 559 }, @@ -5205,13 +5205,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 603.96569072653, - "inverseInertia": 0.0016557231898339578, - "inverseMass": 1.0267201854282941, + "inertia": 603.96569, + "inverseInertia": 0.00166, + "inverseMass": 1.02672, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9739752019999999, + "mass": 0.97398, "motion": 0, "parent": null, "position": { @@ -5272,36 +5272,36 @@ } ], { - "x": -0.9396846715303921, - "y": -0.3420419829360413 + "x": -0.93968, + "y": -0.34204 }, { - "x": -0.7660141089546303, - "y": -0.6428237588036427 + "x": -0.76601, + "y": -0.64282 }, { - "x": -0.5000213741632397, - "y": -0.8660130630538465 + "x": -0.50002, + "y": -0.86601 }, { - "x": -0.17368375845285658, - "y": -0.9848014784969049 + "x": -0.17368, + "y": -0.9848 }, { - "x": 0.17368375845285658, - "y": -0.9848014784969049 + "x": 0.17368, + "y": -0.9848 }, { - "x": 0.5000213741632397, - "y": -0.8660130630538465 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.7660141089546303, - "y": -0.6428237588036427 + "x": 0.76601, + "y": -0.64282 }, { - "x": 0.9396846715303921, - "y": -0.3420419829360413 + "x": 0.93968, + "y": -0.34204 }, { "x": 1, @@ -5317,11 +5317,11 @@ }, { "x": 354.416, - "y": 55.57599999999999 + "y": 55.576 }, { - "x": 319.38000000000005, - "y": 19.999999999999996 + "x": 319.38, + "y": 20 }, { "category": 1, @@ -5427,21 +5427,21 @@ "index": 0, "isInternal": false, "x": 354.416, - "y": 40.876999999999995 + "y": 40.877 }, { "body": null, "index": 1, "isInternal": false, "x": 352.303, - "y": 46.681999999999995 + "y": 46.682 }, { "body": null, "index": 2, "isInternal": false, - "x": 348.33200000000005, - "y": 51.413999999999994 + "x": 348.332, + "y": 51.414 }, { "body": null, @@ -5455,7 +5455,7 @@ "index": 4, "isInternal": false, "x": 336.898, - "y": 55.57599999999999 + "y": 55.576 }, { "body": null, @@ -5469,34 +5469,34 @@ "index": 6, "isInternal": false, "x": 325.464, - "y": 51.413999999999994 + "y": 51.414 }, { "body": null, "index": 7, "isInternal": false, - "x": 321.49300000000005, - "y": 46.681999999999995 + "x": 321.493, + "y": 46.682 }, { "body": null, "index": 8, "isInternal": false, - "x": 319.38000000000005, - "y": 40.876999999999995 + "x": 319.38, + "y": 40.877 }, { "body": null, "index": 9, "isInternal": false, - "x": 319.38000000000005, + "x": 319.38, "y": 34.699 }, { "body": null, "index": 10, "isInternal": false, - "x": 321.49300000000005, + "x": 321.493, "y": 28.894 }, { @@ -5511,27 +5511,27 @@ "index": 12, "isInternal": false, "x": 330.814, - "y": 21.072999999999997 + "y": 21.073 }, { "body": null, "index": 13, "isInternal": false, "x": 336.898, - "y": 19.999999999999996 + "y": 20 }, { "body": null, "index": 14, "isInternal": false, "x": 342.982, - "y": 21.072999999999997 + "y": 21.073 }, { "body": null, "index": 15, "isInternal": false, - "x": 348.33200000000005, + "x": 348.332, "y": 24.162 }, { @@ -5560,7 +5560,7 @@ "bounds": { "#": 596 }, - "circleRadius": 12.644504458161865, + "circleRadius": 12.6445, "collisionFilter": { "#": 599 }, @@ -5575,13 +5575,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 150.14835557749134, - "inverseInertia": 0.006660079600298396, - "inverseMass": 2.0593487844899734, + "inertia": 150.14836, + "inverseInertia": 0.00666, + "inverseMass": 2.05935, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4855904, + "mass": 0.48559, "motion": 0, "parent": null, "position": { @@ -5636,28 +5636,28 @@ } ], { - "x": -0.9010093877027451, - "y": -0.43379958883282077 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6233938910669198, - "y": -0.7819079591489303 + "x": -0.62339, + "y": -0.78191 }, { - "x": -0.2226655662703444, - "y": -0.9748948895124575 + "x": -0.22267, + "y": -0.97489 }, { - "x": 0.2226655662703444, - "y": -0.9748948895124575 + "x": 0.22267, + "y": -0.97489 }, { - "x": 0.6233938910669198, - "y": -0.7819079591489303 + "x": 0.62339, + "y": -0.78191 }, { - "x": 0.9010093877027451, - "y": -0.43379958883282077 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -5673,11 +5673,11 @@ }, { "x": 379.07, - "y": 45.28999999999999 + "y": 45.29 }, { "x": 354.416, - "y": 19.999999999999996 + "y": 20 }, { "category": 1, @@ -5695,7 +5695,7 @@ }, { "x": 366.743, - "y": 32.644999999999996 + "y": 32.645 }, { "x": 0, @@ -5703,7 +5703,7 @@ }, { "x": 366.743, - "y": 32.644999999999996 + "y": 32.645 }, { "fillStyle": "#C44D58", @@ -5771,112 +5771,112 @@ "index": 0, "isInternal": false, "x": 379.07, - "y": 35.458999999999996 + "y": 35.459 }, { "body": null, "index": 1, "isInternal": false, "x": 376.629, - "y": 40.528999999999996 + "y": 40.529 }, { "body": null, "index": 2, "isInternal": false, "x": 372.229, - "y": 44.03699999999999 + "y": 44.037 }, { "body": null, "index": 3, "isInternal": false, "x": 366.743, - "y": 45.28999999999999 + "y": 45.29 }, { "body": null, "index": 4, "isInternal": false, "x": 361.257, - "y": 44.03699999999999 + "y": 44.037 }, { "body": null, "index": 5, "isInternal": false, - "x": 356.85699999999997, - "y": 40.528999999999996 + "x": 356.857, + "y": 40.529 }, { "body": null, "index": 6, "isInternal": false, "x": 354.416, - "y": 35.458999999999996 + "y": 35.459 }, { "body": null, "index": 7, "isInternal": false, "x": 354.416, - "y": 29.830999999999996 + "y": 29.831 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.85699999999997, - "y": 24.760999999999996 + "x": 356.857, + "y": 24.761 }, { "body": null, "index": 9, "isInternal": false, "x": 361.257, - "y": 21.252999999999997 + "y": 21.253 }, { "body": null, "index": 10, "isInternal": false, "x": 366.743, - "y": 19.999999999999996 + "y": 20 }, { "body": null, "index": 11, "isInternal": false, "x": 372.229, - "y": 21.252999999999997 + "y": 21.253 }, { "body": null, "index": 12, "isInternal": false, "x": 376.629, - "y": 24.760999999999996 + "y": 24.761 }, { "body": null, "index": 13, "isInternal": false, "x": 379.07, - "y": 29.830999999999996 + "y": 29.831 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1013.2448800000001, + "area": 1013.24488, "axes": { "#": 624 }, "bounds": { "#": 635 }, - "circleRadius": 18.10806755829904, + "circleRadius": 18.10807, "collisionFilter": { "#": 638 }, @@ -5891,13 +5891,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 653.6311476673523, - "inverseInertia": 0.0015299148511645328, - "inverseMass": 0.9869282537109884, + "inertia": 653.63115, + "inverseInertia": 0.00153, + "inverseMass": 0.98693, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.01324488, + "mass": 1.01324, "motion": 0, "parent": null, "position": { @@ -5961,40 +5961,40 @@ } ], { - "x": -0.95103925715127, - "y": -0.3090701075114839 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8089955390833857, - "y": -0.5878147818345351 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878147818345351, - "y": -0.8089955390833857 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090701075114839, - "y": -0.95103925715127 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090701075114839, - "y": -0.95103925715127 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5878147818345351, - "y": -0.8089955390833857 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089955390833857, - "y": -0.5878147818345351 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.95103925715127, - "y": -0.3090701075114839 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -6010,11 +6010,11 @@ }, { "x": 414.84, - "y": 55.77000000000001 + "y": 55.77 }, { "x": 379.07, - "y": 20.000000000000004 + "y": 20 }, { "category": 1, @@ -6032,7 +6032,7 @@ }, { "x": 396.955, - "y": 37.885000000000005 + "y": 37.885 }, { "x": 0, @@ -6040,7 +6040,7 @@ }, { "x": 396.955, - "y": 37.885000000000005 + "y": 37.885 }, { "fillStyle": "#C7F464", @@ -6133,56 +6133,56 @@ "index": 1, "isInternal": false, "x": 413.089, - "y": 46.10600000000001 + "y": 46.106 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.75899999999996, - "y": 50.68900000000001 + "x": 409.759, + "y": 50.689 }, { "body": null, "index": 3, "isInternal": false, "x": 405.176, - "y": 54.019000000000005 + "y": 54.019 }, { "body": null, "index": 4, "isInternal": false, "x": 399.788, - "y": 55.77000000000001 + "y": 55.77 }, { "body": null, "index": 5, "isInternal": false, - "x": 394.12199999999996, - "y": 55.77000000000001 + "x": 394.122, + "y": 55.77 }, { "body": null, "index": 6, "isInternal": false, "x": 388.734, - "y": 54.019000000000005 + "y": 54.019 }, { "body": null, "index": 7, "isInternal": false, "x": 384.151, - "y": 50.68900000000001 + "y": 50.689 }, { "body": null, "index": 8, "isInternal": false, - "x": 380.82099999999997, - "y": 46.10600000000001 + "x": 380.821, + "y": 46.106 }, { "body": null, @@ -6196,84 +6196,84 @@ "index": 10, "isInternal": false, "x": 379.07, - "y": 35.05200000000001 + "y": 35.052 }, { "body": null, "index": 11, "isInternal": false, - "x": 380.82099999999997, - "y": 29.664000000000005 + "x": 380.821, + "y": 29.664 }, { "body": null, "index": 12, "isInternal": false, "x": 384.151, - "y": 25.081000000000003 + "y": 25.081 }, { "body": null, "index": 13, "isInternal": false, "x": 388.734, - "y": 21.751000000000005 + "y": 21.751 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.12199999999996, - "y": 20.000000000000004 + "x": 394.122, + "y": 20 }, { "body": null, "index": 15, "isInternal": false, "x": 399.788, - "y": 20.000000000000004 + "y": 20 }, { "body": null, "index": 16, "isInternal": false, "x": 405.176, - "y": 21.751000000000005 + "y": 21.751 }, { "body": null, "index": 17, "isInternal": false, - "x": 409.75899999999996, - "y": 25.081000000000003 + "x": 409.759, + "y": 25.081 }, { "body": null, "index": 18, "isInternal": false, "x": 413.089, - "y": 29.664000000000005 + "y": 29.664 }, { "body": null, "index": 19, "isInternal": false, "x": 414.84, - "y": 35.05200000000001 + "y": 35.052 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1043.5045799999998, + "area": 1043.50458, "axes": { "#": 669 }, "bounds": { "#": 680 }, - "circleRadius": 18.37615740740741, + "circleRadius": 18.37616, "collisionFilter": { "#": 683 }, @@ -6288,13 +6288,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 693.2543810769114, - "inverseInertia": 0.0014424719515606747, - "inverseMass": 0.9583091623804854, + "inertia": 693.25438, + "inverseInertia": 0.00144, + "inverseMass": 0.95831, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0435045799999998, + "mass": 1.0435, "motion": 0, "parent": null, "position": { @@ -6358,40 +6358,40 @@ } ], { - "x": -0.9510391812432063, - "y": -0.30907034108799836 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8090293436440933, - "y": -0.5877682546061905 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877682546061905, - "y": -0.8090293436440933 + "x": -0.58777, + "y": -0.80903 }, { - "x": -0.30907034108799836, - "y": -0.9510391812432063 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30907034108799836, - "y": -0.9510391812432063 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5877682546061905, - "y": -0.8090293436440933 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090293436440933, - "y": -0.5877682546061905 + "x": 0.80903, + "y": -0.58777 }, { - "x": 0.9510391812432063, - "y": -0.30907034108799836 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -6406,7 +6406,7 @@ } }, { - "x": 451.13999999999993, + "x": 451.14, "y": 56.3 }, { @@ -6428,7 +6428,7 @@ "y": 0 }, { - "x": 432.98999999999995, + "x": 432.99, "y": 38.15 }, { @@ -6436,7 +6436,7 @@ "y": 0 }, { - "x": 432.98999999999995, + "x": 432.99, "y": 38.15 }, { @@ -6522,49 +6522,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 451.13999999999993, + "x": 451.14, "y": 41.025 }, { "body": null, "index": 1, "isInternal": false, - "x": 449.36299999999994, - "y": 46.492999999999995 + "x": 449.363, + "y": 46.493 }, { "body": null, "index": 2, "isInternal": false, - "x": 445.9839999999999, + "x": 445.984, "y": 51.144 }, { "body": null, "index": 3, "isInternal": false, - "x": 441.33299999999997, + "x": 441.333, "y": 54.523 }, { "body": null, "index": 4, "isInternal": false, - "x": 435.86499999999995, + "x": 435.865, "y": 56.3 }, { "body": null, "index": 5, "isInternal": false, - "x": 430.11499999999995, + "x": 430.115, "y": 56.3 }, { "body": null, "index": 6, "isInternal": false, - "x": 424.64699999999993, + "x": 424.647, "y": 54.523 }, { @@ -6578,8 +6578,8 @@ "body": null, "index": 8, "isInternal": false, - "x": 416.61699999999996, - "y": 46.492999999999995 + "x": 416.617, + "y": 46.493 }, { "body": null, @@ -6599,7 +6599,7 @@ "body": null, "index": 11, "isInternal": false, - "x": 416.61699999999996, + "x": 416.617, "y": 29.807 }, { @@ -6613,49 +6613,49 @@ "body": null, "index": 13, "isInternal": false, - "x": 424.64699999999993, - "y": 21.776999999999997 + "x": 424.647, + "y": 21.777 }, { "body": null, "index": 14, "isInternal": false, - "x": 430.11499999999995, + "x": 430.115, "y": 20 }, { "body": null, "index": 15, "isInternal": false, - "x": 435.86499999999995, + "x": 435.865, "y": 20 }, { "body": null, "index": 16, "isInternal": false, - "x": 441.33299999999997, - "y": 21.776999999999997 + "x": 441.333, + "y": 21.777 }, { "body": null, "index": 17, "isInternal": false, - "x": 445.9839999999999, + "x": 445.984, "y": 25.156 }, { "body": null, "index": 18, "isInternal": false, - "x": 449.36299999999994, + "x": 449.363, "y": 29.807 }, { "body": null, "index": 19, "isInternal": false, - "x": 451.13999999999993, + "x": 451.14, "y": 35.275 }, { @@ -6663,14 +6663,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 804.3326420000001, + "area": 804.33264, "axes": { "#": 714 }, "bounds": { "#": 724 }, - "circleRadius": 16.16482338820302, + "circleRadius": 16.16482, "collisionFilter": { "#": 727 }, @@ -6685,13 +6685,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 411.89626816350983, - "inverseInertia": 0.0024277957274500763, - "inverseMass": 1.243266713027419, + "inertia": 411.89627, + "inverseInertia": 0.00243, + "inverseMass": 1.24327, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8043326420000001, + "mass": 0.80433, "motion": 0, "parent": null, "position": { @@ -6752,36 +6752,36 @@ } ], { - "x": -0.939689356498254, - "y": -0.3420291117491275 + "x": -0.93969, + "y": -0.34203 }, { - "x": -0.766129298042305, - "y": -0.6426864699689927 + "x": -0.76613, + "y": -0.64269 }, { - "x": -0.4999897122177319, - "y": -0.8660313433568266 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.17366340060749713, - "y": -0.9848050686757457 + "x": -0.17366, + "y": -0.98481 }, { - "x": 0.17366340060749713, - "y": -0.9848050686757457 + "x": 0.17366, + "y": -0.98481 }, { - "x": 0.4999897122177319, - "y": -0.8660313433568266 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.766129298042305, - "y": -0.6426864699689927 + "x": 0.76613, + "y": -0.64269 }, { - "x": 0.939689356498254, - "y": -0.3420291117491275 + "x": 0.93969, + "y": -0.34203 }, { "x": 1, @@ -6796,11 +6796,11 @@ } }, { - "x": 482.9779999999999, + "x": 482.978, "y": 52.33 }, { - "x": 451.13999999999993, + "x": 451.14, "y": 20 }, { @@ -6818,7 +6818,7 @@ "y": 0 }, { - "x": 467.0589999999999, + "x": 467.059, "y": 36.165 }, { @@ -6826,7 +6826,7 @@ "y": 0 }, { - "x": 467.0589999999999, + "x": 467.059, "y": 36.165 }, { @@ -6906,126 +6906,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 482.9779999999999, - "y": 38.971999999999994 + "x": 482.978, + "y": 38.972 }, { "body": null, "index": 1, "isInternal": false, - "x": 481.05799999999994, + "x": 481.058, "y": 44.247 }, { "body": null, "index": 2, "isInternal": false, - "x": 477.44999999999993, - "y": 48.547999999999995 + "x": 477.45, + "y": 48.548 }, { "body": null, "index": 3, "isInternal": false, - "x": 472.5879999999999, + "x": 472.588, "y": 51.355 }, { "body": null, "index": 4, "isInternal": false, - "x": 467.0589999999999, + "x": 467.059, "y": 52.33 }, { "body": null, "index": 5, "isInternal": false, - "x": 461.5299999999999, + "x": 461.53, "y": 51.355 }, { "body": null, "index": 6, "isInternal": false, - "x": 456.6679999999999, - "y": 48.547999999999995 + "x": 456.668, + "y": 48.548 }, { "body": null, "index": 7, "isInternal": false, - "x": 453.0599999999999, + "x": 453.06, "y": 44.247 }, { "body": null, "index": 8, "isInternal": false, - "x": 451.13999999999993, - "y": 38.971999999999994 + "x": 451.14, + "y": 38.972 }, { "body": null, "index": 9, "isInternal": false, - "x": 451.13999999999993, + "x": 451.14, "y": 33.358 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.0599999999999, + "x": 453.06, "y": 28.083 }, { "body": null, "index": 11, "isInternal": false, - "x": 456.6679999999999, + "x": 456.668, "y": 23.782 }, { "body": null, "index": 12, "isInternal": false, - "x": 461.5299999999999, + "x": 461.53, "y": 20.975 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.0589999999999, + "x": 467.059, "y": 20 }, { "body": null, "index": 14, "isInternal": false, - "x": 472.5879999999999, + "x": 472.588, "y": 20.975 }, { "body": null, "index": 15, "isInternal": false, - "x": 477.44999999999993, + "x": 477.45, "y": 23.782 }, { "body": null, "index": 16, "isInternal": false, - "x": 481.05799999999994, + "x": 481.058, "y": 28.083 }, { "body": null, "index": 17, "isInternal": false, - "x": 482.9779999999999, + "x": 482.978, "y": 33.358 }, { @@ -7033,14 +7033,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 580.047414, + "area": 580.04741, "axes": { "#": 756 }, "bounds": { "#": 764 }, - "circleRadius": 13.81974451303155, + "circleRadius": 13.81974, "collisionFilter": { "#": 767 }, @@ -7055,13 +7055,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 214.24336698195748, - "inverseInertia": 0.004667589079125213, - "inverseMass": 1.7239969972523659, + "inertia": 214.24337, + "inverseInertia": 0.00467, + "inverseMass": 1.724, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.580047414, + "mass": 0.58005, "motion": 0, "parent": null, "position": { @@ -7116,28 +7116,28 @@ } ], { - "x": -0.9009946077275478, - "y": -0.4338302857637789 + "x": -0.90099, + "y": -0.43383 }, { - "x": -0.6234848799770796, - "y": -0.7818354075123272 + "x": -0.62348, + "y": -0.78184 }, { - "x": -0.22259080644452373, - "y": -0.9749119616080092 + "x": -0.22259, + "y": -0.97491 }, { - "x": 0.22259080644452373, - "y": -0.9749119616080092 + "x": 0.22259, + "y": -0.97491 }, { - "x": 0.6234848799770796, - "y": -0.7818354075123272 + "x": 0.62348, + "y": -0.78184 }, { - "x": 0.9009946077275478, - "y": -0.4338302857637789 + "x": 0.90099, + "y": -0.43383 }, { "x": 1, @@ -7152,11 +7152,11 @@ } }, { - "x": 509.9239999999999, + "x": 509.924, "y": 47.64 }, { - "x": 482.9779999999999, + "x": 482.978, "y": 20 }, { @@ -7174,7 +7174,7 @@ "y": 0 }, { - "x": 496.4509999999999, + "x": 496.451, "y": 33.82 }, { @@ -7182,7 +7182,7 @@ "y": 0 }, { - "x": 496.4509999999999, + "x": 496.451, "y": 33.82 }, { @@ -7250,98 +7250,98 @@ "body": null, "index": 0, "isInternal": false, - "x": 509.9239999999999, - "y": 36.894999999999996 + "x": 509.924, + "y": 36.895 }, { "body": null, "index": 1, "isInternal": false, - "x": 507.2559999999999, + "x": 507.256, "y": 42.436 }, { "body": null, "index": 2, "isInternal": false, - "x": 502.4469999999999, + "x": 502.447, "y": 46.271 }, { "body": null, "index": 3, "isInternal": false, - "x": 496.4509999999999, + "x": 496.451, "y": 47.64 }, { "body": null, "index": 4, "isInternal": false, - "x": 490.4549999999999, + "x": 490.455, "y": 46.271 }, { "body": null, "index": 5, "isInternal": false, - "x": 485.6459999999999, + "x": 485.646, "y": 42.436 }, { "body": null, "index": 6, "isInternal": false, - "x": 482.9779999999999, - "y": 36.894999999999996 + "x": 482.978, + "y": 36.895 }, { "body": null, "index": 7, "isInternal": false, - "x": 482.9779999999999, + "x": 482.978, "y": 30.745 }, { "body": null, "index": 8, "isInternal": false, - "x": 485.6459999999999, + "x": 485.646, "y": 25.204 }, { "body": null, "index": 9, "isInternal": false, - "x": 490.4549999999999, + "x": 490.455, "y": 21.369 }, { "body": null, "index": 10, "isInternal": false, - "x": 496.4509999999999, + "x": 496.451, "y": 20 }, { "body": null, "index": 11, "isInternal": false, - "x": 502.4469999999999, + "x": 502.447, "y": 21.369 }, { "body": null, "index": 12, "isInternal": false, - "x": 507.2559999999999, + "x": 507.256, "y": 25.204 }, { "body": null, "index": 13, "isInternal": false, - "x": 509.9239999999999, + "x": 509.924, "y": 30.745 }, { @@ -7349,14 +7349,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 369.23864399999997, + "area": 369.23864, "axes": { "#": 792 }, "bounds": { "#": 799 }, - "circleRadius": 11.09400720164609, + "circleRadius": 11.09401, "collisionFilter": { "#": 802 }, @@ -7371,13 +7371,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 86.83240242313165, - "inverseInertia": 0.011516438243030872, - "inverseMass": 2.7082755725860594, + "inertia": 86.8324, + "inverseInertia": 0.01152, + "inverseMass": 2.70828, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.36923864399999995, + "mass": 0.36924, "motion": 0, "parent": null, "position": { @@ -7429,24 +7429,24 @@ } ], { - "x": -0.866081210108875, - "y": -0.49990332815090055 + "x": -0.86608, + "y": -0.4999 }, { - "x": -0.49990332815090055, - "y": -0.866081210108875 + "x": -0.4999, + "y": -0.86608 }, { "x": 0, "y": -1 }, { - "x": 0.49990332815090055, - "y": -0.866081210108875 + "x": 0.4999, + "y": -0.86608 }, { - "x": 0.866081210108875, - "y": -0.49990332815090055 + "x": 0.86608, + "y": -0.4999 }, { "x": 1, @@ -7461,11 +7461,11 @@ } }, { - "x": 531.3559999999998, + "x": 531.356, "y": 41.432 }, { - "x": 509.92399999999986, + "x": 509.924, "y": 20 }, { @@ -7483,7 +7483,7 @@ "y": 0 }, { - "x": 520.6399999999999, + "x": 520.64, "y": 30.716 }, { @@ -7491,7 +7491,7 @@ "y": 0 }, { - "x": 520.6399999999999, + "x": 520.64, "y": 30.716 }, { @@ -7553,14 +7553,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 531.3559999999998, + "x": 531.356, "y": 33.587 }, { "body": null, "index": 1, "isInternal": false, - "x": 528.4849999999999, + "x": 528.485, "y": 38.561 }, { @@ -7574,42 +7574,42 @@ "body": null, "index": 3, "isInternal": false, - "x": 517.7689999999999, + "x": 517.769, "y": 41.432 }, { "body": null, "index": 4, "isInternal": false, - "x": 512.7949999999998, + "x": 512.795, "y": 38.561 }, { "body": null, "index": 5, "isInternal": false, - "x": 509.92399999999986, + "x": 509.924, "y": 33.587 }, { "body": null, "index": 6, "isInternal": false, - "x": 509.92399999999986, - "y": 27.845000000000002 + "x": 509.924, + "y": 27.845 }, { "body": null, "index": 7, "isInternal": false, - "x": 512.7949999999998, - "y": 22.871000000000002 + "x": 512.795, + "y": 22.871 }, { "body": null, "index": 8, "isInternal": false, - "x": 517.7689999999999, + "x": 517.769, "y": 20 }, { @@ -7623,29 +7623,29 @@ "body": null, "index": 10, "isInternal": false, - "x": 528.4849999999999, - "y": 22.871000000000002 + "x": 528.485, + "y": 22.871 }, { "body": null, "index": 11, "isInternal": false, - "x": 531.3559999999998, - "y": 27.845000000000002 + "x": 531.356, + "y": 27.845 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1186.2008119999998, + "area": 1186.20081, "axes": { "#": 825 }, "bounds": { "#": 836 }, - "circleRadius": 19.59254972565158, + "circleRadius": 19.59255, "collisionFilter": { "#": 839 }, @@ -7660,13 +7660,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 895.8191409307356, - "inverseInertia": 0.0011162967549019135, - "inverseMass": 0.843027580055307, + "inertia": 895.81914, + "inverseInertia": 0.00112, + "inverseMass": 0.84303, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1862008119999998, + "mass": 1.1862, "motion": 0, "parent": null, "position": { @@ -7730,40 +7730,40 @@ } ], { - "x": -0.9510700273465118, - "y": -0.3089754085410449 + "x": -0.95107, + "y": -0.30898 }, { - "x": -0.8090111291820679, - "y": -0.5877933249532148 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877933249532148, - "y": -0.8090111291820679 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.3089754085410449, - "y": -0.9510700273465118 + "x": -0.30898, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089754085410449, - "y": -0.9510700273465118 + "x": 0.30898, + "y": -0.95107 }, { - "x": 0.5877933249532148, - "y": -0.8090111291820679 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090111291820679, - "y": -0.5877933249532148 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510700273465118, - "y": -0.3089754085410449 + "x": 0.95107, + "y": -0.30898 }, { "x": 1, @@ -7778,11 +7778,11 @@ } }, { - "x": 570.0579999999998, + "x": 570.058, "y": 58.702 }, { - "x": 531.3559999999998, + "x": 531.356, "y": 20 }, { @@ -7800,7 +7800,7 @@ "y": 0 }, { - "x": 550.7069999999998, + "x": 550.707, "y": 39.351 }, { @@ -7808,7 +7808,7 @@ "y": 0 }, { - "x": 550.7069999999998, + "x": 550.707, "y": 39.351 }, { @@ -7894,140 +7894,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 570.0579999999998, + "x": 570.058, "y": 42.416 }, { "body": null, "index": 1, "isInternal": false, - "x": 568.1639999999998, - "y": 48.245999999999995 + "x": 568.164, + "y": 48.246 }, { "body": null, "index": 2, "isInternal": false, - "x": 564.5609999999998, + "x": 564.561, "y": 53.205 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.6019999999997, + "x": 559.602, "y": 56.808 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.7719999999998, + "x": 553.772, "y": 58.702 }, { "body": null, "index": 5, "isInternal": false, - "x": 547.6419999999997, + "x": 547.642, "y": 58.702 }, { "body": null, "index": 6, "isInternal": false, - "x": 541.8119999999998, + "x": 541.812, "y": 56.808 }, { "body": null, "index": 7, "isInternal": false, - "x": 536.8529999999997, + "x": 536.853, "y": 53.205 }, { "body": null, "index": 8, "isInternal": false, - "x": 533.2499999999998, - "y": 48.245999999999995 + "x": 533.25, + "y": 48.246 }, { "body": null, "index": 9, "isInternal": false, - "x": 531.3559999999998, + "x": 531.356, "y": 42.416 }, { "body": null, "index": 10, "isInternal": false, - "x": 531.3559999999998, + "x": 531.356, "y": 36.286 }, { "body": null, "index": 11, "isInternal": false, - "x": 533.2499999999998, + "x": 533.25, "y": 30.456 }, { "body": null, "index": 12, "isInternal": false, - "x": 536.8529999999997, + "x": 536.853, "y": 25.497 }, { "body": null, "index": 13, "isInternal": false, - "x": 541.8119999999998, + "x": 541.812, "y": 21.894 }, { "body": null, "index": 14, "isInternal": false, - "x": 547.6419999999997, + "x": 547.642, "y": 20 }, { "body": null, "index": 15, "isInternal": false, - "x": 553.7719999999998, + "x": 553.772, "y": 20 }, { "body": null, "index": 16, "isInternal": false, - "x": 559.6019999999997, + "x": 559.602, "y": 21.894 }, { "body": null, "index": 17, "isInternal": false, - "x": 564.5609999999998, + "x": 564.561, "y": 25.497 }, { "body": null, "index": 18, "isInternal": false, - "x": 568.1639999999998, + "x": 568.164, "y": 30.456 }, { "body": null, "index": 19, "isInternal": false, - "x": 570.0579999999998, + "x": 570.058, "y": 36.286 }, { @@ -8035,14 +8035,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 585.3796979999998, + "area": 585.3797, "axes": { "#": 870 }, "bounds": { "#": 878 }, - "circleRadius": 13.883273319615911, + "circleRadius": 13.88327, "collisionFilter": { "#": 881 }, @@ -8057,13 +8057,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 218.2004829364277, - "inverseInertia": 0.004582941277409308, - "inverseMass": 1.7082929309242976, + "inertia": 218.20048, + "inverseInertia": 0.00458, + "inverseMass": 1.70829, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5853796979999999, + "mass": 0.58538, "motion": 0, "parent": null, "position": { @@ -8118,28 +8118,28 @@ } ], { - "x": -0.9009641800326721, - "y": -0.4338934734448706 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6235099396116037, - "y": -0.7818154227217151 + "x": -0.62351, + "y": -0.78182 }, { - "x": -0.22253036510011648, - "y": -0.9749257595368013 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.22253036510011648, - "y": -0.9749257595368013 + "x": 0.22253, + "y": -0.97493 }, { - "x": 0.6235099396116037, - "y": -0.7818154227217151 + "x": 0.62351, + "y": -0.78182 }, { - "x": 0.9009641800326721, - "y": -0.4338934734448706 + "x": 0.90096, + "y": -0.43389 }, { "x": 1, @@ -8154,12 +8154,12 @@ } }, { - "x": 597.1279999999997, - "y": 47.76599999999999 + "x": 597.128, + "y": 47.766 }, { - "x": 570.0579999999998, - "y": 19.999999999999996 + "x": 570.058, + "y": 20 }, { "category": 1, @@ -8176,16 +8176,16 @@ "y": 0 }, { - "x": 583.5929999999997, - "y": 33.882999999999996 + "x": 583.593, + "y": 33.883 }, { "x": 0, "y": 0 }, { - "x": 583.5929999999997, - "y": 33.882999999999996 + "x": 583.593, + "y": 33.883 }, { "fillStyle": "#556270", @@ -8252,99 +8252,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 597.1279999999997, - "y": 36.971999999999994 + "x": 597.128, + "y": 36.972 }, { "body": null, "index": 1, "isInternal": false, - "x": 594.4469999999998, - "y": 42.538999999999994 + "x": 594.447, + "y": 42.539 }, { "body": null, "index": 2, "isInternal": false, - "x": 589.6169999999997, - "y": 46.39099999999999 + "x": 589.617, + "y": 46.391 }, { "body": null, "index": 3, "isInternal": false, - "x": 583.5929999999997, - "y": 47.76599999999999 + "x": 583.593, + "y": 47.766 }, { "body": null, "index": 4, "isInternal": false, - "x": 577.5689999999997, - "y": 46.39099999999999 + "x": 577.569, + "y": 46.391 }, { "body": null, "index": 5, "isInternal": false, - "x": 572.7389999999997, - "y": 42.538999999999994 + "x": 572.739, + "y": 42.539 }, { "body": null, "index": 6, "isInternal": false, - "x": 570.0579999999998, - "y": 36.971999999999994 + "x": 570.058, + "y": 36.972 }, { "body": null, "index": 7, "isInternal": false, - "x": 570.0579999999998, - "y": 30.793999999999997 + "x": 570.058, + "y": 30.794 }, { "body": null, "index": 8, "isInternal": false, - "x": 572.7389999999997, - "y": 25.226999999999997 + "x": 572.739, + "y": 25.227 }, { "body": null, "index": 9, "isInternal": false, - "x": 577.5689999999997, - "y": 21.374999999999996 + "x": 577.569, + "y": 21.375 }, { "body": null, "index": 10, "isInternal": false, - "x": 583.5929999999997, - "y": 19.999999999999996 + "x": 583.593, + "y": 20 }, { "body": null, "index": 11, "isInternal": false, - "x": 589.6169999999997, - "y": 21.374999999999996 + "x": 589.617, + "y": 21.375 }, { "body": null, "index": 12, "isInternal": false, - "x": 594.4469999999998, - "y": 25.226999999999997 + "x": 594.447, + "y": 25.227 }, { "body": null, "index": 13, "isInternal": false, - "x": 597.1279999999997, - "y": 30.793999999999997 + "x": 597.128, + "y": 30.794 }, { "angle": 0, @@ -8358,7 +8358,7 @@ "bounds": { "#": 917 }, - "circleRadius": 19.274819958847736, + "circleRadius": 19.27482, "collisionFilter": { "#": 920 }, @@ -8373,13 +8373,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 839.1582416552851, - "inverseInertia": 0.0011916703553163535, - "inverseMass": 0.8710237959694349, + "inertia": 839.15824, + "inverseInertia": 0.00119, + "inverseMass": 0.87102, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.14807426, + "mass": 1.14807, "motion": 0, "parent": null, "position": { @@ -8443,40 +8443,40 @@ } ], { - "x": -0.9510438158398417, - "y": -0.30905607962438386 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8089440000270397, - "y": -0.5878857072767232 + "x": -0.80894, + "y": -0.58789 }, { - "x": -0.5878857072767232, - "y": -0.8089440000270397 + "x": -0.58789, + "y": -0.80894 }, { - "x": -0.30905607962438386, - "y": -0.9510438158398417 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30905607962438386, - "y": -0.9510438158398417 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5878857072767232, - "y": -0.8089440000270397 + "x": 0.58789, + "y": -0.80894 }, { - "x": 0.8089440000270397, - "y": -0.5878857072767232 + "x": 0.80894, + "y": -0.58789 }, { - "x": 0.9510438158398417, - "y": -0.30905607962438386 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -8491,12 +8491,12 @@ } }, { - "x": 635.2039999999997, - "y": 58.07599999999999 + "x": 635.204, + "y": 58.076 }, { - "x": 597.1279999999997, - "y": 19.999999999999996 + "x": 597.128, + "y": 20 }, { "category": 1, @@ -8513,7 +8513,7 @@ "y": 0 }, { - "x": 616.1659999999997, + "x": 616.166, "y": 39.038 }, { @@ -8521,7 +8521,7 @@ "y": 0 }, { - "x": 616.1659999999997, + "x": 616.166, "y": 39.038 }, { @@ -8607,155 +8607,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.2039999999997, + "x": 635.204, "y": 42.053 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.3399999999997, - "y": 47.788999999999994 + "x": 633.34, + "y": 47.789 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.7949999999997, - "y": 52.666999999999994 + "x": 629.795, + "y": 52.667 }, { "body": null, "index": 3, "isInternal": false, - "x": 624.9169999999997, - "y": 56.211999999999996 + "x": 624.917, + "y": 56.212 }, { "body": null, "index": 4, "isInternal": false, - "x": 619.1809999999997, - "y": 58.07599999999999 + "x": 619.181, + "y": 58.076 }, { "body": null, "index": 5, "isInternal": false, - "x": 613.1509999999997, - "y": 58.07599999999999 + "x": 613.151, + "y": 58.076 }, { "body": null, "index": 6, "isInternal": false, - "x": 607.4149999999997, - "y": 56.211999999999996 + "x": 607.415, + "y": 56.212 }, { "body": null, "index": 7, "isInternal": false, - "x": 602.5369999999997, - "y": 52.666999999999994 + "x": 602.537, + "y": 52.667 }, { "body": null, "index": 8, "isInternal": false, - "x": 598.9919999999997, - "y": 47.788999999999994 + "x": 598.992, + "y": 47.789 }, { "body": null, "index": 9, "isInternal": false, - "x": 597.1279999999997, + "x": 597.128, "y": 42.053 }, { "body": null, "index": 10, "isInternal": false, - "x": 597.1279999999997, - "y": 36.022999999999996 + "x": 597.128, + "y": 36.023 }, { "body": null, "index": 11, "isInternal": false, - "x": 598.9919999999997, + "x": 598.992, "y": 30.287 }, { "body": null, "index": 12, "isInternal": false, - "x": 602.5369999999997, + "x": 602.537, "y": 25.409 }, { "body": null, "index": 13, "isInternal": false, - "x": 607.4149999999997, - "y": 21.863999999999997 + "x": 607.415, + "y": 21.864 }, { "body": null, "index": 14, "isInternal": false, - "x": 613.1509999999997, - "y": 19.999999999999996 + "x": 613.151, + "y": 20 }, { "body": null, "index": 15, "isInternal": false, - "x": 619.1809999999997, - "y": 19.999999999999996 + "x": 619.181, + "y": 20 }, { "body": null, "index": 16, "isInternal": false, - "x": 624.9169999999997, - "y": 21.863999999999997 + "x": 624.917, + "y": 21.864 }, { "body": null, "index": 17, "isInternal": false, - "x": 629.7949999999997, + "x": 629.795, "y": 25.409 }, { "body": null, "index": 18, "isInternal": false, - "x": 633.3399999999997, + "x": 633.34, "y": 30.287 }, { "body": null, "index": 19, "isInternal": false, - "x": 635.2039999999997, - "y": 36.022999999999996 + "x": 635.204, + "y": 36.023 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 813.928944, + "area": 813.92894, "axes": { "#": 951 }, "bounds": { "#": 961 }, - "circleRadius": 16.261016803840878, + "circleRadius": 16.26102, "collisionFilter": { "#": 964 }, @@ -8770,13 +8770,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 421.78337188051313, - "inverseInertia": 0.002370885309066403, - "inverseMass": 1.2286084766632897, + "inertia": 421.78337, + "inverseInertia": 0.00237, + "inverseMass": 1.22861, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.813928944, + "mass": 0.81393, "motion": 0, "parent": null, "position": { @@ -8837,36 +8837,36 @@ } ], { - "x": -0.9396692887425622, - "y": -0.34208424078587313 + "x": -0.93967, + "y": -0.34208 }, { - "x": -0.7660396478221458, - "y": -0.6427933244554761 + "x": -0.76604, + "y": -0.64279 }, { - "x": -0.49996774664129423, - "y": -0.8660440244689798 + "x": -0.49997, + "y": -0.86604 }, { - "x": -0.17369442727416068, - "y": -0.9847995968388195 + "x": -0.17369, + "y": -0.9848 }, { - "x": 0.17369442727416068, - "y": -0.9847995968388195 + "x": 0.17369, + "y": -0.9848 }, { - "x": 0.49996774664129423, - "y": -0.8660440244689798 + "x": 0.49997, + "y": -0.86604 }, { - "x": 0.7660396478221458, - "y": -0.6427933244554761 + "x": 0.76604, + "y": -0.64279 }, { - "x": 0.9396692887425622, - "y": -0.34208424078587313 + "x": 0.93967, + "y": -0.34208 }, { "x": 1, @@ -8881,12 +8881,12 @@ } }, { - "x": 52.02799999999999, - "y": 91.37199999999999 + "x": 52.028, + "y": 91.372 }, { - "x": 19.999999999999996, - "y": 58.849999999999994 + "x": 20, + "y": 58.85 }, { "category": 1, @@ -8903,16 +8903,16 @@ "y": 0 }, { - "x": 36.013999999999996, - "y": 75.11099999999999 + "x": 36.014, + "y": 75.111 }, { "x": 0, "y": 0 }, { - "x": 36.013999999999996, - "y": 75.11099999999999 + "x": 36.014, + "y": 75.111 }, { "fillStyle": "#C7F464", @@ -8991,141 +8991,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 52.02799999999999, - "y": 77.93499999999999 + "x": 52.028, + "y": 77.935 }, { "body": null, "index": 1, "isInternal": false, "x": 50.096, - "y": 83.24199999999999 + "y": 83.242 }, { "body": null, "index": 2, "isInternal": false, - "x": 46.465999999999994, - "y": 87.56799999999998 + "x": 46.466, + "y": 87.568 }, { "body": null, "index": 3, "isInternal": false, - "x": 41.57599999999999, - "y": 90.39099999999999 + "x": 41.576, + "y": 90.391 }, { "body": null, "index": 4, "isInternal": false, - "x": 36.013999999999996, - "y": 91.37199999999999 + "x": 36.014, + "y": 91.372 }, { "body": null, "index": 5, "isInternal": false, - "x": 30.451999999999995, - "y": 90.39099999999999 + "x": 30.452, + "y": 90.391 }, { "body": null, "index": 6, "isInternal": false, - "x": 25.561999999999998, - "y": 87.56799999999998 + "x": 25.562, + "y": 87.568 }, { "body": null, "index": 7, "isInternal": false, - "x": 21.931999999999995, - "y": 83.24199999999999 + "x": 21.932, + "y": 83.242 }, { "body": null, "index": 8, "isInternal": false, - "x": 19.999999999999996, - "y": 77.93499999999999 + "x": 20, + "y": 77.935 }, { "body": null, "index": 9, "isInternal": false, - "x": 19.999999999999996, - "y": 72.28699999999999 + "x": 20, + "y": 72.287 }, { "body": null, "index": 10, "isInternal": false, - "x": 21.931999999999995, - "y": 66.97999999999999 + "x": 21.932, + "y": 66.98 }, { "body": null, "index": 11, "isInternal": false, - "x": 25.561999999999998, - "y": 62.65399999999999 + "x": 25.562, + "y": 62.654 }, { "body": null, "index": 12, "isInternal": false, - "x": 30.451999999999995, - "y": 59.83099999999999 + "x": 30.452, + "y": 59.831 }, { "body": null, "index": 13, "isInternal": false, - "x": 36.013999999999996, - "y": 58.849999999999994 + "x": 36.014, + "y": 58.85 }, { "body": null, "index": 14, "isInternal": false, - "x": 41.57599999999999, - "y": 59.83099999999999 + "x": 41.576, + "y": 59.831 }, { "body": null, "index": 15, "isInternal": false, - "x": 46.465999999999994, - "y": 62.65399999999999 + "x": 46.466, + "y": 62.654 }, { "body": null, "index": 16, "isInternal": false, "x": 50.096, - "y": 66.97999999999999 + "y": 66.98 }, { "body": null, "index": 17, "isInternal": false, - "x": 52.02799999999999, - "y": 72.28699999999999 + "x": 52.028, + "y": 72.287 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 405.9288839999999, + "area": 405.92888, "axes": { "#": 993 }, "bounds": { "#": 1000 }, - "circleRadius": 11.63198731138546, + "circleRadius": 11.63199, "collisionFilter": { "#": 1003 }, @@ -9140,13 +9140,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 104.94637250178351, - "inverseInertia": 0.009528676181570788, - "inverseMass": 2.463485697657327, + "inertia": 104.94637, + "inverseInertia": 0.00953, + "inverseMass": 2.46349, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.40592888399999993, + "mass": 0.40593, "motion": 0, "parent": null, "position": { @@ -9198,24 +9198,24 @@ } ], { - "x": -0.8659753666343715, - "y": -0.5000866568730521 + "x": -0.86598, + "y": -0.50009 }, { - "x": -0.5000866568730521, - "y": -0.8659753666343715 + "x": -0.50009, + "y": -0.86598 }, { "x": 0, "y": -1 }, { - "x": 0.5000866568730521, - "y": -0.8659753666343715 + "x": 0.50009, + "y": -0.86598 }, { - "x": 0.8659753666343715, - "y": -0.5000866568730521 + "x": 0.86598, + "y": -0.50009 }, { "x": 1, @@ -9234,8 +9234,8 @@ "y": 81.322 }, { - "x": 52.02799999999999, - "y": 58.849999999999994 + "x": 52.028, + "y": 58.85 }, { "category": 1, @@ -9252,7 +9252,7 @@ "y": 0 }, { - "x": 63.263999999999996, + "x": 63.264, "y": 70.086 }, { @@ -9260,7 +9260,7 @@ "y": 0 }, { - "x": 63.263999999999996, + "x": 63.264, "y": 70.086 }, { @@ -9323,14 +9323,14 @@ "index": 0, "isInternal": false, "x": 74.5, - "y": 73.09700000000001 + "y": 73.097 }, { "body": null, "index": 1, "isInternal": false, "x": 71.489, - "y": 78.31099999999999 + "y": 78.311 }, { "body": null, @@ -9343,50 +9343,50 @@ "body": null, "index": 3, "isInternal": false, - "x": 60.25299999999999, + "x": 60.253, "y": 81.322 }, { "body": null, "index": 4, "isInternal": false, - "x": 55.038999999999994, - "y": 78.31099999999999 + "x": 55.039, + "y": 78.311 }, { "body": null, "index": 5, "isInternal": false, - "x": 52.02799999999999, - "y": 73.09700000000001 + "x": 52.028, + "y": 73.097 }, { "body": null, "index": 6, "isInternal": false, - "x": 52.02799999999999, - "y": 67.07499999999999 + "x": 52.028, + "y": 67.075 }, { "body": null, "index": 7, "isInternal": false, - "x": 55.038999999999994, + "x": 55.039, "y": 61.861 }, { "body": null, "index": 8, "isInternal": false, - "x": 60.25299999999999, - "y": 58.849999999999994 + "x": 60.253, + "y": 58.85 }, { "body": null, "index": 9, "isInternal": false, "x": 66.275, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, @@ -9400,21 +9400,21 @@ "index": 11, "isInternal": false, "x": 74.5, - "y": 67.07499999999999 + "y": 67.075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 813.045236, + "area": 813.04524, "axes": { "#": 1026 }, "bounds": { "#": 1036 }, - "circleRadius": 16.25192901234568, + "circleRadius": 16.25193, "collisionFilter": { "#": 1039 }, @@ -9429,13 +9429,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 420.8679825768214, - "inverseInertia": 0.0023760419927345484, - "inverseMass": 1.2299438650176162, + "inertia": 420.86798, + "inverseInertia": 0.00238, + "inverseMass": 1.22994, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8130452360000001, + "mass": 0.81305, "motion": 0, "parent": null, "position": { @@ -9496,36 +9496,36 @@ } ], { - "x": -0.939720981661198, - "y": -0.3419422124068839 + "x": -0.93972, + "y": -0.34194 }, { - "x": -0.7660677180217655, - "y": -0.6427598707176146 + "x": -0.76607, + "y": -0.64276 }, { - "x": -0.4999115829199475, - "y": -0.8660764453917866 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.173643819893381, - "y": -0.9848085213953193 + "x": -0.17364, + "y": -0.98481 }, { - "x": 0.173643819893381, - "y": -0.9848085213953193 + "x": 0.17364, + "y": -0.98481 }, { - "x": 0.4999115829199475, - "y": -0.8660764453917866 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660677180217655, - "y": -0.6427598707176146 + "x": 0.76607, + "y": -0.64276 }, { - "x": 0.939720981661198, - "y": -0.3419422124068839 + "x": 0.93972, + "y": -0.34194 }, { "x": 1, @@ -9540,12 +9540,12 @@ } }, { - "x": 106.50999999999999, - "y": 91.35399999999998 + "x": 106.51, + "y": 91.354 }, { "x": 74.5, - "y": 58.849999999999994 + "y": 58.85 }, { "category": 1, @@ -9563,7 +9563,7 @@ }, { "x": 90.505, - "y": 75.10199999999999 + "y": 75.102 }, { "x": 0, @@ -9571,7 +9571,7 @@ }, { "x": 90.505, - "y": 75.10199999999999 + "y": 75.102 }, { "fillStyle": "#556270", @@ -9650,8 +9650,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 106.50999999999999, - "y": 77.92399999999999 + "x": 106.51, + "y": 77.924 }, { "body": null, @@ -9665,13 +9665,13 @@ "index": 2, "isInternal": false, "x": 100.952, - "y": 87.55199999999999 + "y": 87.552 }, { "body": null, "index": 3, "isInternal": false, - "x": 96.06299999999999, + "x": 96.063, "y": 90.374 }, { @@ -9679,7 +9679,7 @@ "index": 4, "isInternal": false, "x": 90.505, - "y": 91.35399999999998 + "y": 91.354 }, { "body": null, @@ -9692,14 +9692,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 80.05799999999999, - "y": 87.55199999999999 + "x": 80.058, + "y": 87.552 }, { "body": null, "index": 7, "isInternal": false, - "x": 76.42999999999999, + "x": 76.43, "y": 83.228 }, { @@ -9707,56 +9707,56 @@ "index": 8, "isInternal": false, "x": 74.5, - "y": 77.92399999999999 + "y": 77.924 }, { "body": null, "index": 9, "isInternal": false, "x": 74.5, - "y": 72.27999999999999 + "y": 72.28 }, { "body": null, "index": 10, "isInternal": false, - "x": 76.42999999999999, + "x": 76.43, "y": 66.976 }, { "body": null, "index": 11, "isInternal": false, - "x": 80.05799999999999, - "y": 62.65199999999999 + "x": 80.058, + "y": 62.652 }, { "body": null, "index": 12, "isInternal": false, "x": 84.947, - "y": 59.82999999999999 + "y": 59.83 }, { "body": null, "index": 13, "isInternal": false, "x": 90.505, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, "index": 14, "isInternal": false, - "x": 96.06299999999999, - "y": 59.82999999999999 + "x": 96.063, + "y": 59.83 }, { "body": null, "index": 15, "isInternal": false, "x": 100.952, - "y": 62.65199999999999 + "y": 62.652 }, { "body": null, @@ -9769,22 +9769,22 @@ "body": null, "index": 17, "isInternal": false, - "x": 106.50999999999999, - "y": 72.27999999999999 + "x": 106.51, + "y": 72.28 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1175.440884, + "area": 1175.44088, "axes": { "#": 1068 }, "bounds": { "#": 1079 }, - "circleRadius": 19.503557956104252, + "circleRadius": 19.50356, "collisionFilter": { "#": 1082 }, @@ -9799,13 +9799,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 879.6410498592595, - "inverseInertia": 0.00113682734583612, - "inverseMass": 0.8507446130315133, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "inverseMass": 0.85074, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1754408840000001, + "mass": 1.17544, "motion": 0, "parent": null, "position": { @@ -9869,40 +9869,40 @@ } ], { - "x": -0.9510810304000095, - "y": -0.3089415375330036 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8090123548449776, - "y": -0.5877916380046453 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877916380046453, - "y": -0.8090123548449776 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.3089415375330036, - "y": -0.9510810304000095 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.3089415375330036, - "y": -0.9510810304000095 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5877916380046453, - "y": -0.8090123548449776 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090123548449776, - "y": -0.5877916380046453 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510810304000095, - "y": -0.3089415375330036 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -9921,8 +9921,8 @@ "y": 97.376 }, { - "x": 106.50999999999999, - "y": 58.849999999999994 + "x": 106.51, + "y": 58.85 }, { "category": 1, @@ -10096,14 +10096,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 106.50999999999999, + "x": 106.51, "y": 81.164 }, { "body": null, "index": 10, "isInternal": false, - "x": 106.50999999999999, + "x": 106.51, "y": 75.062 }, { @@ -10132,14 +10132,14 @@ "index": 14, "isInternal": false, "x": 122.722, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, "index": 15, "isInternal": false, "x": 128.824, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, @@ -10174,14 +10174,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 324.43099600000005, + "area": 324.431, "axes": { "#": 1113 }, "bounds": { "#": 1120 }, - "circleRadius": 10.399219821673526, + "circleRadius": 10.39922, "collisionFilter": { "#": 1123 }, @@ -10196,13 +10196,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 67.03663440105248, - "inverseInertia": 0.014917216667194436, - "inverseMass": 3.082319545078238, + "inertia": 67.03663, + "inverseInertia": 0.01492, + "inverseMass": 3.08232, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.3244309960000001, + "mass": 0.32443, "motion": 0, "parent": null, "position": { @@ -10254,24 +10254,24 @@ } ], { - "x": -0.8659473272702323, - "y": -0.5001352081123076 + "x": -0.86595, + "y": -0.50014 }, { - "x": -0.5001352081123076, - "y": -0.8659473272702323 + "x": -0.50014, + "y": -0.86595 }, { "x": 0, "y": -1 }, { - "x": 0.5001352081123076, - "y": -0.8659473272702323 + "x": 0.50014, + "y": -0.86595 }, { - "x": 0.8659473272702323, - "y": -0.5001352081123076 + "x": 0.86595, + "y": -0.50014 }, { "x": 1, @@ -10286,12 +10286,12 @@ } }, { - "x": 165.12599999999998, + "x": 165.126, "y": 78.94 }, { "x": 145.036, - "y": 58.849999999999994 + "y": 58.85 }, { "category": 1, @@ -10378,15 +10378,15 @@ "body": null, "index": 0, "isInternal": false, - "x": 165.12599999999998, - "y": 71.58699999999999 + "x": 165.126, + "y": 71.587 }, { "body": null, "index": 1, "isInternal": false, "x": 162.434, - "y": 76.24799999999999 + "y": 76.248 }, { "body": null, @@ -10399,22 +10399,22 @@ "body": null, "index": 3, "isInternal": false, - "x": 152.38899999999998, + "x": 152.389, "y": 78.94 }, { "body": null, "index": 4, "isInternal": false, - "x": 147.72799999999998, - "y": 76.24799999999999 + "x": 147.728, + "y": 76.248 }, { "body": null, "index": 5, "isInternal": false, "x": 145.036, - "y": 71.58699999999999 + "y": 71.587 }, { "body": null, @@ -10427,35 +10427,35 @@ "body": null, "index": 7, "isInternal": false, - "x": 147.72799999999998, - "y": 61.541999999999994 + "x": 147.728, + "y": 61.542 }, { "body": null, "index": 8, "isInternal": false, - "x": 152.38899999999998, - "y": 58.849999999999994 + "x": 152.389, + "y": 58.85 }, { "body": null, "index": 9, "isInternal": false, "x": 157.773, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, "index": 10, "isInternal": false, "x": 162.434, - "y": 61.541999999999994 + "y": 61.542 }, { "body": null, "index": 11, "isInternal": false, - "x": 165.12599999999998, + "x": 165.126, "y": 66.203 }, { @@ -10463,14 +10463,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 722.1773659999999, + "area": 722.17737, "axes": { "#": 1146 }, "bounds": { "#": 1155 }, - "circleRadius": 15.358667695473251, + "circleRadius": 15.35867, "collisionFilter": { "#": 1158 }, @@ -10485,13 +10485,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 332.0674558099107, - "inverseInertia": 0.0030114363286851023, - "inverseMass": 1.3847013865012214, + "inertia": 332.06746, + "inverseInertia": 0.00301, + "inverseMass": 1.3847, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7221773659999999, + "mass": 0.72218, "motion": 0, "parent": null, "position": { @@ -10549,32 +10549,32 @@ } ], { - "x": -0.9238500637214436, - "y": -0.3827545685708854 + "x": -0.92385, + "y": -0.38275 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3827545685708854, - "y": -0.9238500637214436 + "x": -0.38275, + "y": -0.92385 }, { "x": 0, "y": -1 }, { - "x": 0.3827545685708854, - "y": -0.9238500637214436 + "x": 0.38275, + "y": -0.92385 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238500637214436, - "y": -0.3827545685708854 + "x": 0.92385, + "y": -0.38275 }, { "x": 1, @@ -10589,12 +10589,12 @@ } }, { - "x": 195.25399999999996, - "y": 88.97799999999998 + "x": 195.254, + "y": 88.978 }, { - "x": 165.12599999999998, - "y": 58.84999999999999 + "x": 165.126, + "y": 58.85 }, { "category": 1, @@ -10611,16 +10611,16 @@ "y": 0 }, { - "x": 180.18999999999997, - "y": 73.91399999999999 + "x": 180.19, + "y": 73.914 }, { "x": 0, "y": 0 }, { - "x": 180.18999999999997, - "y": 73.91399999999999 + "x": 180.19, + "y": 73.914 }, { "fillStyle": "#4ECDC4", @@ -10693,127 +10693,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 195.25399999999996, + "x": 195.254, "y": 76.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 192.95999999999998, - "y": 82.44699999999999 + "x": 192.96, + "y": 82.447 }, { "body": null, "index": 2, "isInternal": false, - "x": 188.72299999999996, - "y": 86.68399999999998 + "x": 188.723, + "y": 86.684 }, { "body": null, "index": 3, "isInternal": false, - "x": 183.18599999999998, - "y": 88.97799999999998 + "x": 183.186, + "y": 88.978 }, { "body": null, "index": 4, "isInternal": false, - "x": 177.19399999999996, - "y": 88.97799999999998 + "x": 177.194, + "y": 88.978 }, { "body": null, "index": 5, "isInternal": false, - "x": 171.65699999999998, - "y": 86.68399999999998 + "x": 171.657, + "y": 86.684 }, { "body": null, "index": 6, "isInternal": false, - "x": 167.41999999999996, - "y": 82.44699999999999 + "x": 167.42, + "y": 82.447 }, { "body": null, "index": 7, "isInternal": false, - "x": 165.12599999999998, + "x": 165.126, "y": 76.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 165.12599999999998, - "y": 70.91799999999998 + "x": 165.126, + "y": 70.918 }, { "body": null, "index": 9, "isInternal": false, - "x": 167.41999999999996, - "y": 65.38099999999999 + "x": 167.42, + "y": 65.381 }, { "body": null, "index": 10, "isInternal": false, - "x": 171.65699999999998, - "y": 61.14399999999999 + "x": 171.657, + "y": 61.144 }, { "body": null, "index": 11, "isInternal": false, - "x": 177.19399999999996, - "y": 58.84999999999999 + "x": 177.194, + "y": 58.85 }, { "body": null, "index": 12, "isInternal": false, - "x": 183.18599999999998, - "y": 58.84999999999999 + "x": 183.186, + "y": 58.85 }, { "body": null, "index": 13, "isInternal": false, - "x": 188.72299999999996, - "y": 61.14399999999999 + "x": 188.723, + "y": 61.144 }, { "body": null, "index": 14, "isInternal": false, - "x": 192.95999999999998, - "y": 65.38099999999999 + "x": 192.96, + "y": 65.381 }, { "body": null, "index": 15, "isInternal": false, - "x": 195.25399999999996, - "y": 70.91799999999998 + "x": 195.254, + "y": 70.918 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 486.2764840000001, + "area": 486.27648, "axes": { "#": 1185 }, "bounds": { "#": 1193 }, - "circleRadius": 12.653506515775035, + "circleRadius": 12.65351, "collisionFilter": { "#": 1196 }, @@ -10828,13 +10828,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 150.57294030609683, - "inverseInertia": 0.006641299545370631, - "inverseMass": 2.0564432640752575, + "inertia": 150.57294, + "inverseInertia": 0.00664, + "inverseMass": 2.05644, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4862764840000001, + "mass": 0.48628, "motion": 0, "parent": null, "position": { @@ -10889,28 +10889,28 @@ } ], { - "x": -0.9009708147132571, - "y": -0.43387969649999736 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.6234599159723792, - "y": -0.7818553147326646 + "x": -0.62346, + "y": -0.78186 }, { - "x": -0.22268014841323974, - "y": -0.9748915588426528 + "x": -0.22268, + "y": -0.97489 }, { - "x": 0.22268014841323974, - "y": -0.9748915588426528 + "x": 0.22268, + "y": -0.97489 }, { - "x": 0.6234599159723792, - "y": -0.7818553147326646 + "x": 0.62346, + "y": -0.78186 }, { - "x": 0.9009708147132571, - "y": -0.43387969649999736 + "x": 0.90097, + "y": -0.43388 }, { "x": 1, @@ -10926,11 +10926,11 @@ }, { "x": 219.926, - "y": 84.15799999999999 + "y": 84.158 }, { - "x": 195.25399999999996, - "y": 58.849999999999994 + "x": 195.254, + "y": 58.85 }, { "category": 1, @@ -10947,16 +10947,16 @@ "y": 0 }, { - "x": 207.58999999999997, - "y": 71.50399999999999 + "x": 207.59, + "y": 71.504 }, { "x": 0, "y": 0 }, { - "x": 207.58999999999997, - "y": 71.50399999999999 + "x": 207.59, + "y": 71.504 }, { "fillStyle": "#4ECDC4", @@ -11030,106 +11030,106 @@ "body": null, "index": 1, "isInternal": false, - "x": 217.48299999999998, - "y": 79.39299999999999 + "x": 217.483, + "y": 79.393 }, { "body": null, "index": 2, "isInternal": false, - "x": 213.07999999999998, + "x": 213.08, "y": 82.904 }, { "body": null, "index": 3, "isInternal": false, - "x": 207.58999999999997, - "y": 84.15799999999999 + "x": 207.59, + "y": 84.158 }, { "body": null, "index": 4, "isInternal": false, - "x": 202.09999999999997, + "x": 202.1, "y": 82.904 }, { "body": null, "index": 5, "isInternal": false, - "x": 197.69699999999997, - "y": 79.39299999999999 + "x": 197.697, + "y": 79.393 }, { "body": null, "index": 6, "isInternal": false, - "x": 195.25399999999996, + "x": 195.254, "y": 74.32 }, { "body": null, "index": 7, "isInternal": false, - "x": 195.25399999999996, - "y": 68.68799999999999 + "x": 195.254, + "y": 68.688 }, { "body": null, "index": 8, "isInternal": false, - "x": 197.69699999999997, - "y": 63.61499999999999 + "x": 197.697, + "y": 63.615 }, { "body": null, "index": 9, "isInternal": false, - "x": 202.09999999999997, - "y": 60.10399999999999 + "x": 202.1, + "y": 60.104 }, { "body": null, "index": 10, "isInternal": false, - "x": 207.58999999999997, - "y": 58.849999999999994 + "x": 207.59, + "y": 58.85 }, { "body": null, "index": 11, "isInternal": false, - "x": 213.07999999999998, - "y": 60.10399999999999 + "x": 213.08, + "y": 60.104 }, { "body": null, "index": 12, "isInternal": false, - "x": 217.48299999999998, - "y": 63.61499999999999 + "x": 217.483, + "y": 63.615 }, { "body": null, "index": 13, "isInternal": false, "x": 219.926, - "y": 68.68799999999999 + "y": 68.688 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 555.028152, + "area": 555.02815, "axes": { "#": 1221 }, "bounds": { "#": 1229 }, - "circleRadius": 13.518304183813443, + "circleRadius": 13.5183, "collisionFilter": { "#": 1232 }, @@ -11144,13 +11144,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 196.15998479488022, - "inverseInertia": 0.005097879677374955, - "inverseMass": 1.8017104112585627, + "inertia": 196.15998, + "inverseInertia": 0.0051, + "inverseMass": 1.80171, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.555028152, + "mass": 0.55503, "motion": 0, "parent": null, "position": { @@ -11205,28 +11205,28 @@ } ], { - "x": -0.901008887984407, - "y": -0.4338006267550824 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6234578160368234, - "y": -0.781856989239461 + "x": -0.62346, + "y": -0.78186 }, { - "x": -0.22241855165218072, - "y": -0.9749512746188632 + "x": -0.22242, + "y": -0.97495 }, { - "x": 0.22241855165218072, - "y": -0.9749512746188632 + "x": 0.22242, + "y": -0.97495 }, { - "x": 0.6234578160368234, - "y": -0.781856989239461 + "x": 0.62346, + "y": -0.78186 }, { - "x": 0.901008887984407, - "y": -0.4338006267550824 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -11246,7 +11246,7 @@ }, { "x": 219.926, - "y": 58.849999999999994 + "y": 58.85 }, { "category": 1, @@ -11346,7 +11346,7 @@ "body": null, "index": 1, "isInternal": false, - "x": 243.67399999999998, + "x": 243.674, "y": 80.797 }, { @@ -11367,7 +11367,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 227.23999999999998, + "x": 227.24, "y": 84.548 }, { @@ -11389,63 +11389,63 @@ "index": 7, "isInternal": false, "x": 219.926, - "y": 69.35999999999999 + "y": 69.36 }, { "body": null, "index": 8, "isInternal": false, "x": 222.536, - "y": 63.93899999999999 + "y": 63.939 }, { "body": null, "index": 9, "isInternal": false, - "x": 227.23999999999998, - "y": 60.187999999999995 + "x": 227.24, + "y": 60.188 }, { "body": null, "index": 10, "isInternal": false, "x": 233.105, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, "index": 11, "isInternal": false, "x": 238.97, - "y": 60.187999999999995 + "y": 60.188 }, { "body": null, "index": 12, "isInternal": false, - "x": 243.67399999999998, - "y": 63.93899999999999 + "x": 243.674, + "y": 63.939 }, { "body": null, "index": 13, "isInternal": false, "x": 246.284, - "y": 69.35999999999999 + "y": 69.36 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1227.1883159999998, + "area": 1227.18832, "axes": { "#": 1257 }, "bounds": { "#": 1268 }, - "circleRadius": 19.928369341563787, + "circleRadius": 19.92837, "collisionFilter": { "#": 1271 }, @@ -11460,13 +11460,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 958.7962512746001, - "inverseInertia": 0.001042974457472716, - "inverseMass": 0.8148708612704882, + "inertia": 958.79625, + "inverseInertia": 0.00104, + "inverseMass": 0.81487, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.227188316, + "mass": 1.22719, "motion": 0, "parent": null, "position": { @@ -11530,40 +11530,40 @@ } ], { - "x": -0.9510458539268092, - "y": -0.30904980784434416 + "x": -0.95105, + "y": -0.30905 }, { - "x": -0.80899262671849, - "y": -0.5878187900323687 + "x": -0.80899, + "y": -0.58782 }, { - "x": -0.5878187900323687, - "y": -0.80899262671849 + "x": -0.58782, + "y": -0.80899 }, { - "x": -0.30904980784434416, - "y": -0.9510458539268092 + "x": -0.30905, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.30904980784434416, - "y": -0.9510458539268092 + "x": 0.30905, + "y": -0.95105 }, { - "x": 0.5878187900323687, - "y": -0.80899262671849 + "x": 0.58782, + "y": -0.80899 }, { - "x": 0.80899262671849, - "y": -0.5878187900323687 + "x": 0.80899, + "y": -0.58782 }, { - "x": 0.9510458539268092, - "y": -0.30904980784434416 + "x": 0.95105, + "y": -0.30905 }, { "x": 1, @@ -11579,11 +11579,11 @@ }, { "x": 285.65, - "y": 98.21599999999998 + "y": 98.216 }, { "x": 246.284, - "y": 58.84999999999999 + "y": 58.85 }, { "category": 1, @@ -11601,7 +11601,7 @@ }, { "x": 265.967, - "y": 78.53299999999999 + "y": 78.533 }, { "x": 0, @@ -11609,7 +11609,7 @@ }, { "x": 265.967, - "y": 78.53299999999999 + "y": 78.533 }, { "fillStyle": "#C7F464", @@ -11695,70 +11695,70 @@ "index": 0, "isInternal": false, "x": 285.65, - "y": 81.64999999999998 + "y": 81.65 }, { "body": null, "index": 1, "isInternal": false, - "x": 283.72299999999996, - "y": 87.57999999999998 + "x": 283.723, + "y": 87.58 }, { "body": null, "index": 2, "isInternal": false, "x": 280.058, - "y": 92.62399999999998 + "y": 92.624 }, { "body": null, "index": 3, "isInternal": false, "x": 275.014, - "y": 96.28899999999999 + "y": 96.289 }, { "body": null, "index": 4, "isInternal": false, - "x": 269.08399999999995, - "y": 98.21599999999998 + "x": 269.084, + "y": 98.216 }, { "body": null, "index": 5, "isInternal": false, "x": 262.85, - "y": 98.21599999999998 + "y": 98.216 }, { "body": null, "index": 6, "isInternal": false, - "x": 256.91999999999996, - "y": 96.28899999999999 + "x": 256.92, + "y": 96.289 }, { "body": null, "index": 7, "isInternal": false, - "x": 251.87599999999998, - "y": 92.62399999999998 + "x": 251.876, + "y": 92.624 }, { "body": null, "index": 8, "isInternal": false, - "x": 248.21099999999998, - "y": 87.57999999999998 + "x": 248.211, + "y": 87.58 }, { "body": null, "index": 9, "isInternal": false, "x": 246.284, - "y": 81.64999999999998 + "y": 81.65 }, { "body": null, @@ -11771,57 +11771,57 @@ "body": null, "index": 11, "isInternal": false, - "x": 248.21099999999998, - "y": 69.48599999999999 + "x": 248.211, + "y": 69.486 }, { "body": null, "index": 12, "isInternal": false, - "x": 251.87599999999998, - "y": 64.44199999999998 + "x": 251.876, + "y": 64.442 }, { "body": null, "index": 13, "isInternal": false, - "x": 256.91999999999996, - "y": 60.77699999999999 + "x": 256.92, + "y": 60.777 }, { "body": null, "index": 14, "isInternal": false, "x": 262.85, - "y": 58.84999999999999 + "y": 58.85 }, { "body": null, "index": 15, "isInternal": false, - "x": 269.08399999999995, - "y": 58.84999999999999 + "x": 269.084, + "y": 58.85 }, { "body": null, "index": 16, "isInternal": false, "x": 275.014, - "y": 60.77699999999999 + "y": 60.777 }, { "body": null, "index": 17, "isInternal": false, "x": 280.058, - "y": 64.44199999999998 + "y": 64.442 }, { "body": null, "index": 18, "isInternal": false, - "x": 283.72299999999996, - "y": 69.48599999999999 + "x": 283.723, + "y": 69.486 }, { "body": null, @@ -11835,14 +11835,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1120.7724680000001, + "area": 1120.77247, "axes": { "#": 1302 }, "bounds": { "#": 1313 }, - "circleRadius": 19.04419581618656, + "circleRadius": 19.0442, "collisionFilter": { "#": 1316 }, @@ -11857,13 +11857,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 799.721573279466, - "inverseInertia": 0.001250435193212608, - "inverseMass": 0.8922417605283286, + "inertia": 799.72157, + "inverseInertia": 0.00125, + "inverseMass": 0.89224, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1207724680000002, + "mass": 1.12077, "motion": 0, "parent": null, "position": { @@ -11927,40 +11927,40 @@ } ], { - "x": -0.9510722943806661, - "y": -0.3089684302020123 + "x": -0.95107, + "y": -0.30897 }, { - "x": -0.8089319902014619, - "y": -0.5879022327128056 + "x": -0.80893, + "y": -0.5879 }, { - "x": -0.5879022327128056, - "y": -0.8089319902014619 + "x": -0.5879, + "y": -0.80893 }, { - "x": -0.3089684302020123, - "y": -0.9510722943806661 + "x": -0.30897, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089684302020123, - "y": -0.9510722943806661 + "x": 0.30897, + "y": -0.95107 }, { - "x": 0.5879022327128056, - "y": -0.8089319902014619 + "x": 0.5879, + "y": -0.80893 }, { - "x": 0.8089319902014619, - "y": -0.5879022327128056 + "x": 0.80893, + "y": -0.5879 }, { - "x": 0.9510722943806661, - "y": -0.3089684302020123 + "x": 0.95107, + "y": -0.30897 }, { "x": 1, @@ -11980,7 +11980,7 @@ }, { "x": 285.65, - "y": 58.849999999999994 + "y": 58.85 }, { "category": 1, @@ -12106,20 +12106,20 @@ "index": 2, "isInternal": false, "x": 317.926, - "y": 91.12599999999999 + "y": 91.126 }, { "body": null, "index": 3, "isInternal": false, "x": 313.106, - "y": 94.62899999999999 + "y": 94.629 }, { "body": null, "index": 4, "isInternal": false, - "x": 307.43899999999996, + "x": 307.439, "y": 96.47 }, { @@ -12133,15 +12133,15 @@ "body": null, "index": 6, "isInternal": false, - "x": 295.81399999999996, - "y": 94.62899999999999 + "x": 295.814, + "y": 94.629 }, { "body": null, "index": 7, "isInternal": false, - "x": 290.99399999999997, - "y": 91.12599999999999 + "x": 290.994, + "y": 91.126 }, { "body": null, @@ -12175,43 +12175,43 @@ "body": null, "index": 12, "isInternal": false, - "x": 290.99399999999997, - "y": 64.19399999999999 + "x": 290.994, + "y": 64.194 }, { "body": null, "index": 13, "isInternal": false, - "x": 295.81399999999996, - "y": 60.690999999999995 + "x": 295.814, + "y": 60.691 }, { "body": null, "index": 14, "isInternal": false, "x": 301.481, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, "index": 15, "isInternal": false, - "x": 307.43899999999996, - "y": 58.849999999999994 + "x": 307.439, + "y": 58.85 }, { "body": null, "index": 16, "isInternal": false, "x": 313.106, - "y": 60.690999999999995 + "y": 60.691 }, { "body": null, "index": 17, "isInternal": false, "x": 317.926, - "y": 64.19399999999999 + "y": 64.194 }, { "body": null, @@ -12232,14 +12232,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 628.0030680000002, + "area": 628.00307, "axes": { "#": 1347 }, "bounds": { "#": 1356 }, - "circleRadius": 14.322573731138545, + "circleRadius": 14.32257, "collisionFilter": { "#": 1359 }, @@ -12254,13 +12254,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 251.1088965588656, - "inverseInertia": 0.003982336005230214, - "inverseMass": 1.5923489087158402, + "inertia": 251.1089, + "inverseInertia": 0.00398, + "inverseMass": 1.59235, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6280030680000003, + "mass": 0.628, "motion": 0, "parent": null, "position": { @@ -12318,32 +12318,32 @@ } ], { - "x": -0.923916516222473, - "y": -0.3825941335819576 + "x": -0.92392, + "y": -0.38259 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3825941335819576, - "y": -0.923916516222473 + "x": -0.38259, + "y": -0.92392 }, { "x": 0, "y": -1 }, { - "x": 0.3825941335819576, - "y": -0.923916516222473 + "x": 0.38259, + "y": -0.92392 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923916516222473, - "y": -0.3825941335819576 + "x": 0.92392, + "y": -0.38259 }, { "x": 1, @@ -12358,12 +12358,12 @@ } }, { - "x": 351.36400000000003, - "y": 86.94399999999999 + "x": 351.364, + "y": 86.944 }, { "x": 323.27, - "y": 58.849999999999994 + "y": 58.85 }, { "category": 1, @@ -12381,7 +12381,7 @@ }, { "x": 337.317, - "y": 72.89699999999999 + "y": 72.897 }, { "x": 0, @@ -12389,7 +12389,7 @@ }, { "x": 337.317, - "y": 72.89699999999999 + "y": 72.897 }, { "fillStyle": "#FF6B6B", @@ -12462,15 +12462,15 @@ "body": null, "index": 0, "isInternal": false, - "x": 351.36400000000003, - "y": 75.69099999999999 + "x": 351.364, + "y": 75.691 }, { "body": null, "index": 1, "isInternal": false, "x": 349.226, - "y": 80.85399999999998 + "y": 80.854 }, { "body": null, @@ -12484,14 +12484,14 @@ "index": 3, "isInternal": false, "x": 340.111, - "y": 86.94399999999999 + "y": 86.944 }, { "body": null, "index": 4, "isInternal": false, "x": 334.523, - "y": 86.94399999999999 + "y": 86.944 }, { "body": null, @@ -12505,14 +12505,14 @@ "index": 6, "isInternal": false, "x": 325.408, - "y": 80.85399999999998 + "y": 80.854 }, { "body": null, "index": 7, "isInternal": false, "x": 323.27, - "y": 75.69099999999999 + "y": 75.691 }, { "body": null, @@ -12533,28 +12533,28 @@ "index": 10, "isInternal": false, "x": 329.36, - "y": 60.98799999999999 + "y": 60.988 }, { "body": null, "index": 11, "isInternal": false, "x": 334.523, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, "index": 12, "isInternal": false, "x": 340.111, - "y": 58.849999999999994 + "y": 58.85 }, { "body": null, "index": 13, "isInternal": false, "x": 345.274, - "y": 60.98799999999999 + "y": 60.988 }, { "body": null, @@ -12567,7 +12567,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 351.36400000000003, + "x": 351.364, "y": 70.103 }, { @@ -12575,14 +12575,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 536.790174, + "area": 536.79017, "axes": { "#": 1386 }, "bounds": { "#": 1394 }, - "circleRadius": 13.294367283950617, + "circleRadius": 13.29437, "collisionFilter": { "#": 1397 }, @@ -12597,13 +12597,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 183.48032886968383, - "inverseInertia": 0.005450175537401865, - "inverseMass": 1.8629253075709244, + "inertia": 183.48033, + "inverseInertia": 0.00545, + "inverseMass": 1.86293, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.536790174, + "mass": 0.53679, "motion": 0, "parent": null, "position": { @@ -12658,28 +12658,28 @@ } ], { - "x": -0.9009869891740203, - "y": -0.43384610789902656 + "x": -0.90099, + "y": -0.43385 }, { - "x": -0.6234782418052662, - "y": -0.7818407011632318 + "x": -0.62348, + "y": -0.78184 }, { - "x": -0.22243926136633385, - "y": -0.9749465498183989 + "x": -0.22244, + "y": -0.97495 }, { - "x": 0.22243926136633385, - "y": -0.9749465498183989 + "x": 0.22244, + "y": -0.97495 }, { - "x": 0.6234782418052662, - "y": -0.7818407011632318 + "x": 0.62348, + "y": -0.78184 }, { - "x": 0.9009869891740203, - "y": -0.43384610789902656 + "x": 0.90099, + "y": -0.43385 }, { "x": 1, @@ -12694,12 +12694,12 @@ } }, { - "x": 377.28600000000006, - "y": 85.43799999999999 + "x": 377.286, + "y": 85.438 }, { - "x": 351.36400000000003, - "y": 58.849999999999994 + "x": 351.364, + "y": 58.85 }, { "category": 1, @@ -12716,16 +12716,16 @@ "y": 0 }, { - "x": 364.32500000000005, - "y": 72.14399999999999 + "x": 364.325, + "y": 72.144 }, { "x": 0, "y": 0 }, { - "x": 364.32500000000005, - "y": 72.14399999999999 + "x": 364.325, + "y": 72.144 }, { "fillStyle": "#4ECDC4", @@ -12792,113 +12792,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.28600000000006, - "y": 75.10199999999999 + "x": 377.286, + "y": 75.102 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.71900000000005, - "y": 80.43299999999999 + "x": 374.719, + "y": 80.433 }, { "body": null, "index": 2, "isInternal": false, "x": 370.093, - "y": 84.12199999999999 + "y": 84.122 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.32500000000005, - "y": 85.43799999999999 + "x": 364.325, + "y": 85.438 }, { "body": null, "index": 4, "isInternal": false, - "x": 358.5570000000001, - "y": 84.12199999999999 + "x": 358.557, + "y": 84.122 }, { "body": null, "index": 5, "isInternal": false, - "x": 353.93100000000004, - "y": 80.43299999999999 + "x": 353.931, + "y": 80.433 }, { "body": null, "index": 6, "isInternal": false, - "x": 351.36400000000003, - "y": 75.10199999999999 + "x": 351.364, + "y": 75.102 }, { "body": null, "index": 7, "isInternal": false, - "x": 351.36400000000003, - "y": 69.18599999999999 + "x": 351.364, + "y": 69.186 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.93100000000004, - "y": 63.85499999999999 + "x": 353.931, + "y": 63.855 }, { "body": null, "index": 9, "isInternal": false, - "x": 358.5570000000001, - "y": 60.16599999999999 + "x": 358.557, + "y": 60.166 }, { "body": null, "index": 10, "isInternal": false, - "x": 364.32500000000005, - "y": 58.849999999999994 + "x": 364.325, + "y": 58.85 }, { "body": null, "index": 11, "isInternal": false, "x": 370.093, - "y": 60.16599999999999 + "y": 60.166 }, { "body": null, "index": 12, "isInternal": false, - "x": 374.71900000000005, - "y": 63.85499999999999 + "x": 374.719, + "y": 63.855 }, { "body": null, "index": 13, "isInternal": false, - "x": 377.28600000000006, - "y": 69.18599999999999 + "x": 377.286, + "y": 69.186 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 438.00552799999997, + "area": 438.00553, "axes": { "#": 1422 }, "bounds": { "#": 1430 }, - "circleRadius": 12.008959190672154, + "circleRadius": 12.00896, "collisionFilter": { "#": 1433 }, @@ -12913,13 +12913,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 122.16296885484358, - "inverseInertia": 0.008185786653467954, - "inverseMass": 2.2830762081158027, + "inertia": 122.16297, + "inverseInertia": 0.00819, + "inverseMass": 2.28308, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.438005528, + "mass": 0.43801, "motion": 0, "parent": null, "position": { @@ -12974,28 +12974,28 @@ } ], { - "x": -0.9009529061315026, - "y": -0.43391688251691707 + "x": -0.90095, + "y": -0.43392 }, { - "x": -0.6235308204487997, - "y": -0.7817987694736074 + "x": -0.62353, + "y": -0.7818 }, { - "x": -0.22249452113027474, - "y": -0.9749339403605815 + "x": -0.22249, + "y": -0.97493 }, { - "x": 0.22249452113027474, - "y": -0.9749339403605815 + "x": 0.22249, + "y": -0.97493 }, { - "x": 0.6235308204487997, - "y": -0.7817987694736074 + "x": 0.62353, + "y": -0.7818 }, { - "x": 0.9009529061315026, - "y": -0.43391688251691707 + "x": 0.90095, + "y": -0.43392 }, { "x": 1, @@ -13010,12 +13010,12 @@ } }, { - "x": 400.7020000000001, + "x": 400.702, "y": 82.868 }, { - "x": 377.28600000000006, - "y": 58.849999999999994 + "x": 377.286, + "y": 58.85 }, { "category": 1, @@ -13032,7 +13032,7 @@ "y": 0 }, { - "x": 388.9940000000001, + "x": 388.994, "y": 70.859 }, { @@ -13040,7 +13040,7 @@ "y": 0 }, { - "x": 388.9940000000001, + "x": 388.994, "y": 70.859 }, { @@ -13108,98 +13108,98 @@ "body": null, "index": 0, "isInternal": false, - "x": 400.7020000000001, - "y": 73.53099999999999 + "x": 400.702, + "y": 73.531 }, { "body": null, "index": 1, "isInternal": false, - "x": 398.3830000000001, - "y": 78.34599999999999 + "x": 398.383, + "y": 78.346 }, { "body": null, "index": 2, "isInternal": false, - "x": 394.20400000000006, - "y": 81.67899999999999 + "x": 394.204, + "y": 81.679 }, { "body": null, "index": 3, "isInternal": false, - "x": 388.9940000000001, + "x": 388.994, "y": 82.868 }, { "body": null, "index": 4, "isInternal": false, - "x": 383.7840000000001, - "y": 81.67899999999999 + "x": 383.784, + "y": 81.679 }, { "body": null, "index": 5, "isInternal": false, - "x": 379.6050000000001, - "y": 78.34599999999999 + "x": 379.605, + "y": 78.346 }, { "body": null, "index": 6, "isInternal": false, - "x": 377.28600000000006, - "y": 73.53099999999999 + "x": 377.286, + "y": 73.531 }, { "body": null, "index": 7, "isInternal": false, - "x": 377.28600000000006, + "x": 377.286, "y": 68.187 }, { "body": null, "index": 8, "isInternal": false, - "x": 379.6050000000001, - "y": 63.37199999999999 + "x": 379.605, + "y": 63.372 }, { "body": null, "index": 9, "isInternal": false, - "x": 383.7840000000001, - "y": 60.038999999999994 + "x": 383.784, + "y": 60.039 }, { "body": null, "index": 10, "isInternal": false, - "x": 388.9940000000001, - "y": 58.849999999999994 + "x": 388.994, + "y": 58.85 }, { "body": null, "index": 11, "isInternal": false, - "x": 394.20400000000006, - "y": 60.038999999999994 + "x": 394.204, + "y": 60.039 }, { "body": null, "index": 12, "isInternal": false, - "x": 398.3830000000001, - "y": 63.37199999999999 + "x": 398.383, + "y": 63.372 }, { "body": null, "index": 13, "isInternal": false, - "x": 400.7020000000001, + "x": 400.702, "y": 68.187 }, { @@ -13207,14 +13207,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 802.396328, + "area": 802.39633, "axes": { "#": 1458 }, "bounds": { "#": 1468 }, - "circleRadius": 16.145361796982165, + "circleRadius": 16.14536, "collisionFilter": { "#": 1471 }, @@ -13229,13 +13229,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 409.9154941824296, - "inverseInertia": 0.0024395272054658127, - "inverseMass": 1.2462669196063418, + "inertia": 409.91549, + "inverseInertia": 0.00244, + "inverseMass": 1.24627, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.802396328, + "mass": 0.8024, "motion": 0, "parent": null, "position": { @@ -13296,36 +13296,36 @@ } ], { - "x": -0.9396788158754413, - "y": -0.3420580696240458 + "x": -0.93968, + "y": -0.34206 }, { - "x": -0.7660385515515891, - "y": -0.6427946309177943 + "x": -0.76604, + "y": -0.64279 }, { - "x": -0.5000517732992366, - "y": -0.8659955103926862 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.17353097513080934, - "y": -0.9848284117906786 + "x": -0.17353, + "y": -0.98483 }, { - "x": 0.17353097513080934, - "y": -0.9848284117906786 + "x": 0.17353, + "y": -0.98483 }, { - "x": 0.5000517732992366, - "y": -0.8659955103926862 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7660385515515891, - "y": -0.6427946309177943 + "x": 0.76604, + "y": -0.64279 }, { - "x": 0.9396788158754413, - "y": -0.3420580696240458 + "x": 0.93968, + "y": -0.34206 }, { "x": 1, @@ -13340,12 +13340,12 @@ } }, { - "x": 432.50200000000007, - "y": 91.13999999999999 + "x": 432.502, + "y": 91.14 }, { - "x": 400.7020000000001, - "y": 58.849999999999994 + "x": 400.702, + "y": 58.85 }, { "category": 1, @@ -13362,16 +13362,16 @@ "y": 0 }, { - "x": 416.6020000000001, - "y": 74.99499999999999 + "x": 416.602, + "y": 74.995 }, { "x": 0, "y": 0 }, { - "x": 416.6020000000001, - "y": 74.99499999999999 + "x": 416.602, + "y": 74.995 }, { "fillStyle": "#556270", @@ -13450,141 +13450,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 432.50200000000007, - "y": 77.79899999999999 + "x": 432.502, + "y": 77.799 }, { "body": null, "index": 1, "isInternal": false, - "x": 430.58400000000006, + "x": 430.584, "y": 83.068 }, { "body": null, "index": 2, "isInternal": false, - "x": 426.9800000000001, - "y": 87.36299999999999 + "x": 426.98, + "y": 87.363 }, { "body": null, "index": 3, "isInternal": false, - "x": 422.1240000000001, - "y": 90.16699999999999 + "x": 422.124, + "y": 90.167 }, { "body": null, "index": 4, "isInternal": false, - "x": 416.6020000000001, - "y": 91.13999999999999 + "x": 416.602, + "y": 91.14 }, { "body": null, "index": 5, "isInternal": false, - "x": 411.0800000000001, - "y": 90.16699999999999 + "x": 411.08, + "y": 90.167 }, { "body": null, "index": 6, "isInternal": false, - "x": 406.2240000000001, - "y": 87.36299999999999 + "x": 406.224, + "y": 87.363 }, { "body": null, "index": 7, "isInternal": false, - "x": 402.6200000000001, + "x": 402.62, "y": 83.068 }, { "body": null, "index": 8, "isInternal": false, - "x": 400.7020000000001, - "y": 77.79899999999999 + "x": 400.702, + "y": 77.799 }, { "body": null, "index": 9, "isInternal": false, - "x": 400.7020000000001, - "y": 72.19099999999999 + "x": 400.702, + "y": 72.191 }, { "body": null, "index": 10, "isInternal": false, - "x": 402.6200000000001, + "x": 402.62, "y": 66.922 }, { "body": null, "index": 11, "isInternal": false, - "x": 406.2240000000001, - "y": 62.62699999999999 + "x": 406.224, + "y": 62.627 }, { "body": null, "index": 12, "isInternal": false, - "x": 411.0800000000001, - "y": 59.82299999999999 + "x": 411.08, + "y": 59.823 }, { "body": null, "index": 13, "isInternal": false, - "x": 416.6020000000001, - "y": 58.849999999999994 + "x": 416.602, + "y": 58.85 }, { "body": null, "index": 14, "isInternal": false, - "x": 422.1240000000001, - "y": 59.82299999999999 + "x": 422.124, + "y": 59.823 }, { "body": null, "index": 15, "isInternal": false, - "x": 426.9800000000001, - "y": 62.62699999999999 + "x": 426.98, + "y": 62.627 }, { "body": null, "index": 16, "isInternal": false, - "x": 430.58400000000006, + "x": 430.584, "y": 66.922 }, { "body": null, "index": 17, "isInternal": false, - "x": 432.50200000000007, - "y": 72.19099999999999 + "x": 432.502, + "y": 72.191 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1091.045108, + "area": 1091.04511, "axes": { "#": 1500 }, "bounds": { "#": 1511 }, - "circleRadius": 18.78999485596708, + "circleRadius": 18.78999, "collisionFilter": { "#": 1514 }, @@ -13599,13 +13599,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 757.8605778590133, - "inverseInertia": 0.0013195039156477042, - "inverseMass": 0.9165523887762117, + "inertia": 757.86058, + "inverseInertia": 0.00132, + "inverseMass": 0.91655, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.091045108, + "mass": 1.09105, "motion": 0, "parent": null, "position": { @@ -13669,40 +13669,40 @@ } ], { - "x": -0.9510378187801216, - "y": -0.30907453348658226 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8091110339454614, - "y": -0.587655796149163 + "x": -0.80911, + "y": -0.58766 }, { - "x": -0.587655796149163, - "y": -0.8091110339454614 + "x": -0.58766, + "y": -0.80911 }, { - "x": -0.30907453348658226, - "y": -0.9510378187801216 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30907453348658226, - "y": -0.9510378187801216 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.587655796149163, - "y": -0.8091110339454614 + "x": 0.58766, + "y": -0.80911 }, { - "x": 0.8091110339454614, - "y": -0.587655796149163 + "x": 0.80911, + "y": -0.58766 }, { - "x": 0.9510378187801216, - "y": -0.30907453348658226 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -13717,12 +13717,12 @@ } }, { - "x": 469.6200000000001, - "y": 95.96799999999999 + "x": 469.62, + "y": 95.968 }, { - "x": 432.50200000000007, - "y": 58.849999999999994 + "x": 432.502, + "y": 58.85 }, { "category": 1, @@ -13739,16 +13739,16 @@ "y": 0 }, { - "x": 451.0610000000001, - "y": 77.40899999999999 + "x": 451.061, + "y": 77.409 }, { "x": 0, "y": 0 }, { - "x": 451.0610000000001, - "y": 77.40899999999999 + "x": 451.061, + "y": 77.409 }, { "fillStyle": "#FF6B6B", @@ -13833,140 +13833,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 469.6200000000001, - "y": 80.34799999999998 + "x": 469.62, + "y": 80.348 }, { "body": null, "index": 1, "isInternal": false, - "x": 467.8030000000001, + "x": 467.803, "y": 85.939 }, { "body": null, "index": 2, "isInternal": false, - "x": 464.34800000000007, + "x": 464.348, "y": 90.696 }, { "body": null, "index": 3, "isInternal": false, - "x": 459.59100000000007, + "x": 459.591, "y": 94.151 }, { "body": null, "index": 4, "isInternal": false, - "x": 454.0000000000001, - "y": 95.96799999999999 + "x": 454, + "y": 95.968 }, { "body": null, "index": 5, "isInternal": false, - "x": 448.12200000000007, - "y": 95.96799999999999 + "x": 448.122, + "y": 95.968 }, { "body": null, "index": 6, "isInternal": false, - "x": 442.5310000000001, + "x": 442.531, "y": 94.151 }, { "body": null, "index": 7, "isInternal": false, - "x": 437.7740000000001, + "x": 437.774, "y": 90.696 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.3190000000001, + "x": 434.319, "y": 85.939 }, { "body": null, "index": 9, "isInternal": false, - "x": 432.50200000000007, - "y": 80.34799999999998 + "x": 432.502, + "y": 80.348 }, { "body": null, "index": 10, "isInternal": false, - "x": 432.50200000000007, + "x": 432.502, "y": 74.47 }, { "body": null, "index": 11, "isInternal": false, - "x": 434.3190000000001, - "y": 68.87899999999999 + "x": 434.319, + "y": 68.879 }, { "body": null, "index": 12, "isInternal": false, - "x": 437.7740000000001, - "y": 64.12199999999999 + "x": 437.774, + "y": 64.122 }, { "body": null, "index": 13, "isInternal": false, - "x": 442.5310000000001, - "y": 60.66699999999999 + "x": 442.531, + "y": 60.667 }, { "body": null, "index": 14, "isInternal": false, - "x": 448.12200000000007, - "y": 58.849999999999994 + "x": 448.122, + "y": 58.85 }, { "body": null, "index": 15, "isInternal": false, - "x": 454.0000000000001, - "y": 58.849999999999994 + "x": 454, + "y": 58.85 }, { "body": null, "index": 16, "isInternal": false, - "x": 459.59100000000007, - "y": 60.66699999999999 + "x": 459.591, + "y": 60.667 }, { "body": null, "index": 17, "isInternal": false, - "x": 464.34800000000007, - "y": 64.12199999999999 + "x": 464.348, + "y": 64.122 }, { "body": null, "index": 18, "isInternal": false, - "x": 467.8030000000001, - "y": 68.87899999999999 + "x": 467.803, + "y": 68.879 }, { "body": null, "index": 19, "isInternal": false, - "x": 469.6200000000001, + "x": 469.62, "y": 74.47 }, { @@ -13974,14 +13974,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 677.950314, + "area": 677.95031, "axes": { "#": 1545 }, "bounds": { "#": 1554 }, - "circleRadius": 14.881129972565159, + "circleRadius": 14.88113, "collisionFilter": { "#": 1557 }, @@ -13996,13 +13996,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 292.6404130867056, - "inverseInertia": 0.00341716302766328, - "inverseMass": 1.4750343489036277, + "inertia": 292.64041, + "inverseInertia": 0.00342, + "inverseMass": 1.47503, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.677950314, + "mass": 0.67795, "motion": 0, "parent": null, "position": { @@ -14060,32 +14060,32 @@ } ], { - "x": -0.9238951037390043, - "y": -0.3826458379325384 + "x": -0.9239, + "y": -0.38265 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826458379325384, - "y": -0.9238951037390043 + "x": -0.38265, + "y": -0.9239 }, { "x": 0, "y": -1 }, { - "x": 0.3826458379325384, - "y": -0.9238951037390043 + "x": 0.38265, + "y": -0.9239 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238951037390043, - "y": -0.3826458379325384 + "x": 0.9239, + "y": -0.38265 }, { "x": 1, @@ -14100,12 +14100,12 @@ } }, { - "x": 498.8100000000002, - "y": 88.03999999999999 + "x": 498.81, + "y": 88.04 }, { - "x": 469.6200000000001, - "y": 58.849999999999994 + "x": 469.62, + "y": 58.85 }, { "category": 1, @@ -14122,7 +14122,7 @@ "y": 0 }, { - "x": 484.21500000000015, + "x": 484.215, "y": 73.445 }, { @@ -14130,7 +14130,7 @@ "y": 0 }, { - "x": 484.21500000000015, + "x": 484.215, "y": 73.445 }, { @@ -14204,112 +14204,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.8100000000002, - "y": 76.34799999999998 + "x": 498.81, + "y": 76.348 }, { "body": null, "index": 1, "isInternal": false, - "x": 496.58800000000014, + "x": 496.588, "y": 81.713 }, { "body": null, "index": 2, "isInternal": false, - "x": 492.4830000000002, + "x": 492.483, "y": 85.818 }, { "body": null, "index": 3, "isInternal": false, - "x": 487.11800000000017, - "y": 88.03999999999999 + "x": 487.118, + "y": 88.04 }, { "body": null, "index": 4, "isInternal": false, - "x": 481.3120000000001, - "y": 88.03999999999999 + "x": 481.312, + "y": 88.04 }, { "body": null, "index": 5, "isInternal": false, - "x": 475.9470000000001, + "x": 475.947, "y": 85.818 }, { "body": null, "index": 6, "isInternal": false, - "x": 471.84200000000016, + "x": 471.842, "y": 81.713 }, { "body": null, "index": 7, "isInternal": false, - "x": 469.6200000000001, - "y": 76.34799999999998 + "x": 469.62, + "y": 76.348 }, { "body": null, "index": 8, "isInternal": false, - "x": 469.6200000000001, + "x": 469.62, "y": 70.542 }, { "body": null, "index": 9, "isInternal": false, - "x": 471.84200000000016, - "y": 65.17699999999999 + "x": 471.842, + "y": 65.177 }, { "body": null, "index": 10, "isInternal": false, - "x": 475.9470000000001, - "y": 61.071999999999996 + "x": 475.947, + "y": 61.072 }, { "body": null, "index": 11, "isInternal": false, - "x": 481.3120000000001, - "y": 58.849999999999994 + "x": 481.312, + "y": 58.85 }, { "body": null, "index": 12, "isInternal": false, - "x": 487.11800000000017, - "y": 58.849999999999994 + "x": 487.118, + "y": 58.85 }, { "body": null, "index": 13, "isInternal": false, - "x": 492.4830000000002, - "y": 61.071999999999996 + "x": 492.483, + "y": 61.072 }, { "body": null, "index": 14, "isInternal": false, - "x": 496.58800000000014, - "y": 65.17699999999999 + "x": 496.588, + "y": 65.177 }, { "body": null, "index": 15, "isInternal": false, - "x": 498.8100000000002, + "x": 498.81, "y": 70.542 }, { @@ -14317,14 +14317,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 460.97596999999996, + "area": 460.97597, "axes": { "#": 1584 }, "bounds": { "#": 1592 }, - "circleRadius": 12.320001714677641, + "circleRadius": 12.32, "collisionFilter": { "#": 1595 }, @@ -14339,13 +14339,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 135.31220425278414, - "inverseInertia": 0.007390316383671093, - "inverseMass": 2.1693104740362066, + "inertia": 135.3122, + "inverseInertia": 0.00739, + "inverseMass": 2.16931, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.46097596999999996, + "mass": 0.46098, "motion": 0, "parent": null, "position": { @@ -14400,28 +14400,28 @@ } ], { - "x": -0.9009673433676825, - "y": -0.4338869048323313 + "x": -0.90097, + "y": -0.43389 }, { - "x": -0.6235156169322131, - "y": -0.7818108949366475 + "x": -0.62352, + "y": -0.78181 }, { - "x": -0.22252763105305415, - "y": -0.9749263835889949 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.22252763105305415, - "y": -0.9749263835889949 + "x": 0.22253, + "y": -0.97493 }, { - "x": 0.6235156169322131, - "y": -0.7818108949366475 + "x": 0.62352, + "y": -0.78181 }, { - "x": 0.9009673433676825, - "y": -0.4338869048323313 + "x": 0.90097, + "y": -0.43389 }, { "x": 1, @@ -14436,12 +14436,12 @@ } }, { - "x": 522.8320000000002, - "y": 83.48999999999998 + "x": 522.832, + "y": 83.49 }, { - "x": 498.8100000000002, - "y": 58.84999999999999 + "x": 498.81, + "y": 58.85 }, { "category": 1, @@ -14458,16 +14458,16 @@ "y": 0 }, { - "x": 510.8210000000002, - "y": 71.16999999999999 + "x": 510.821, + "y": 71.17 }, { "x": 0, "y": 0 }, { - "x": 510.8210000000002, - "y": 71.16999999999999 + "x": 510.821, + "y": 71.17 }, { "fillStyle": "#556270", @@ -14534,113 +14534,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.8320000000002, - "y": 73.91099999999999 + "x": 522.832, + "y": 73.911 }, { "body": null, "index": 1, "isInternal": false, - "x": 520.4530000000002, - "y": 78.85099999999998 + "x": 520.453, + "y": 78.851 }, { "body": null, "index": 2, "isInternal": false, - "x": 516.1660000000002, - "y": 82.26999999999998 + "x": 516.166, + "y": 82.27 }, { "body": null, "index": 3, "isInternal": false, - "x": 510.8210000000002, - "y": 83.48999999999998 + "x": 510.821, + "y": 83.49 }, { "body": null, "index": 4, "isInternal": false, - "x": 505.47600000000017, - "y": 82.26999999999998 + "x": 505.476, + "y": 82.27 }, { "body": null, "index": 5, "isInternal": false, - "x": 501.1890000000002, - "y": 78.85099999999998 + "x": 501.189, + "y": 78.851 }, { "body": null, "index": 6, "isInternal": false, - "x": 498.8100000000002, - "y": 73.91099999999999 + "x": 498.81, + "y": 73.911 }, { "body": null, "index": 7, "isInternal": false, - "x": 498.8100000000002, - "y": 68.42899999999999 + "x": 498.81, + "y": 68.429 }, { "body": null, "index": 8, "isInternal": false, - "x": 501.1890000000002, - "y": 63.48899999999999 + "x": 501.189, + "y": 63.489 }, { "body": null, "index": 9, "isInternal": false, - "x": 505.47600000000017, - "y": 60.069999999999986 + "x": 505.476, + "y": 60.07 }, { "body": null, "index": 10, "isInternal": false, - "x": 510.8210000000002, - "y": 58.84999999999999 + "x": 510.821, + "y": 58.85 }, { "body": null, "index": 11, "isInternal": false, - "x": 516.1660000000002, - "y": 60.069999999999986 + "x": 516.166, + "y": 60.07 }, { "body": null, "index": 12, "isInternal": false, - "x": 520.4530000000002, - "y": 63.48899999999999 + "x": 520.453, + "y": 63.489 }, { "body": null, "index": 13, "isInternal": false, - "x": 522.8320000000002, - "y": 68.42899999999999 + "x": 522.832, + "y": 68.429 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1205.152204, + "area": 1205.1522, "axes": { "#": 1620 }, "bounds": { "#": 1631 }, - "circleRadius": 19.748585390946502, + "circleRadius": 19.74859, "collisionFilter": { "#": 1634 }, @@ -14655,13 +14655,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 924.671990568659, - "inverseInertia": 0.0010814645735997858, - "inverseMass": 0.8297707100239432, + "inertia": 924.67199, + "inverseInertia": 0.00108, + "inverseMass": 0.82977, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.205152204, + "mass": 1.20515, "motion": 0, "parent": null, "position": { @@ -14725,40 +14725,40 @@ } ], { - "x": -0.9510828167087596, - "y": -0.30893603830134786 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8089600004028265, - "y": -0.5878636897685203 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878636897685203, - "y": -0.8089600004028265 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.30893603830134786, - "y": -0.9510828167087596 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.30893603830134786, - "y": -0.9510828167087596 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5878636897685203, - "y": -0.8089600004028265 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089600004028265, - "y": -0.5878636897685203 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510828167087596, - "y": -0.30893603830134786 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -14773,12 +14773,12 @@ } }, { - "x": 561.8420000000002, - "y": 97.85999999999999 + "x": 561.842, + "y": 97.86 }, { - "x": 522.8320000000002, - "y": 58.849999999999994 + "x": 522.832, + "y": 58.85 }, { "category": 1, @@ -14795,16 +14795,16 @@ "y": 0 }, { - "x": 542.3370000000002, - "y": 78.35499999999999 + "x": 542.337, + "y": 78.355 }, { "x": 0, "y": 0 }, { - "x": 542.3370000000002, - "y": 78.35499999999999 + "x": 542.337, + "y": 78.355 }, { "fillStyle": "#4ECDC4", @@ -14889,155 +14889,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 561.8420000000002, - "y": 81.44399999999999 + "x": 561.842, + "y": 81.444 }, { "body": null, "index": 1, "isInternal": false, - "x": 559.9330000000002, - "y": 87.32099999999998 + "x": 559.933, + "y": 87.321 }, { "body": null, "index": 2, "isInternal": false, - "x": 556.3010000000003, - "y": 92.31899999999999 + "x": 556.301, + "y": 92.319 }, { "body": null, "index": 3, "isInternal": false, - "x": 551.3030000000002, + "x": 551.303, "y": 95.951 }, { "body": null, "index": 4, "isInternal": false, - "x": 545.4260000000003, - "y": 97.85999999999999 + "x": 545.426, + "y": 97.86 }, { "body": null, "index": 5, "isInternal": false, - "x": 539.2480000000002, - "y": 97.85999999999999 + "x": 539.248, + "y": 97.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 533.3710000000002, + "x": 533.371, "y": 95.951 }, { "body": null, "index": 7, "isInternal": false, - "x": 528.3730000000003, - "y": 92.31899999999999 + "x": 528.373, + "y": 92.319 }, { "body": null, "index": 8, "isInternal": false, - "x": 524.7410000000002, - "y": 87.32099999999998 + "x": 524.741, + "y": 87.321 }, { "body": null, "index": 9, "isInternal": false, - "x": 522.8320000000002, - "y": 81.44399999999999 + "x": 522.832, + "y": 81.444 }, { "body": null, "index": 10, "isInternal": false, - "x": 522.8320000000002, - "y": 75.26599999999999 + "x": 522.832, + "y": 75.266 }, { "body": null, "index": 11, "isInternal": false, - "x": 524.7410000000002, - "y": 69.38899999999998 + "x": 524.741, + "y": 69.389 }, { "body": null, "index": 12, "isInternal": false, - "x": 528.3730000000003, - "y": 64.39099999999999 + "x": 528.373, + "y": 64.391 }, { "body": null, "index": 13, "isInternal": false, - "x": 533.3710000000002, - "y": 60.758999999999986 + "x": 533.371, + "y": 60.759 }, { "body": null, "index": 14, "isInternal": false, - "x": 539.2480000000002, - "y": 58.849999999999994 + "x": 539.248, + "y": 58.85 }, { "body": null, "index": 15, "isInternal": false, - "x": 545.4260000000003, - "y": 58.849999999999994 + "x": 545.426, + "y": 58.85 }, { "body": null, "index": 16, "isInternal": false, - "x": 551.3030000000002, - "y": 60.758999999999986 + "x": 551.303, + "y": 60.759 }, { "body": null, "index": 17, "isInternal": false, - "x": 556.3010000000003, - "y": 64.39099999999999 + "x": 556.301, + "y": 64.391 }, { "body": null, "index": 18, "isInternal": false, - "x": 559.9330000000002, - "y": 69.38899999999998 + "x": 559.933, + "y": 69.389 }, { "body": null, "index": 19, "isInternal": false, - "x": 561.8420000000002, - "y": 75.26599999999999 + "x": 561.842, + "y": 75.266 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 362.584524, + "area": 362.58452, "axes": { "#": 1665 }, "bounds": { "#": 1672 }, - "circleRadius": 10.994041495198903, + "circleRadius": 10.99404, "collisionFilter": { "#": 1675 }, @@ -15052,13 +15052,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 83.73095584960791, - "inverseInertia": 0.011943014263400204, - "inverseMass": 2.7579776129661835, + "inertia": 83.73096, + "inverseInertia": 0.01194, + "inverseMass": 2.75798, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.362584524, + "mass": 0.36258, "motion": 0, "parent": null, "position": { @@ -15110,24 +15110,24 @@ } ], { - "x": -0.8660831831124717, - "y": -0.4998999099117431 + "x": -0.86608, + "y": -0.4999 }, { - "x": -0.4998999099117431, - "y": -0.8660831831124717 + "x": -0.4999, + "y": -0.86608 }, { "x": 0, "y": -1 }, { - "x": 0.4998999099117431, - "y": -0.8660831831124717 + "x": 0.4999, + "y": -0.86608 }, { - "x": 0.8660831831124717, - "y": -0.4998999099117431 + "x": 0.86608, + "y": -0.4999 }, { "x": 1, @@ -15142,12 +15142,12 @@ } }, { - "x": 583.0800000000003, + "x": 583.08, "y": 80.088 }, { - "x": 561.8420000000002, - "y": 58.849999999999994 + "x": 561.842, + "y": 58.85 }, { "category": 1, @@ -15164,7 +15164,7 @@ "y": 0 }, { - "x": 572.4610000000002, + "x": 572.461, "y": 69.469 }, { @@ -15172,7 +15172,7 @@ "y": 0 }, { - "x": 572.4610000000002, + "x": 572.461, "y": 69.469 }, { @@ -15234,84 +15234,84 @@ "body": null, "index": 0, "isInternal": false, - "x": 583.0800000000003, + "x": 583.08, "y": 72.314 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.2350000000002, + "x": 580.235, "y": 77.243 }, { "body": null, "index": 2, "isInternal": false, - "x": 575.3060000000003, + "x": 575.306, "y": 80.088 }, { "body": null, "index": 3, "isInternal": false, - "x": 569.6160000000002, + "x": 569.616, "y": 80.088 }, { "body": null, "index": 4, "isInternal": false, - "x": 564.6870000000002, + "x": 564.687, "y": 77.243 }, { "body": null, "index": 5, "isInternal": false, - "x": 561.8420000000002, + "x": 561.842, "y": 72.314 }, { "body": null, "index": 6, "isInternal": false, - "x": 561.8420000000002, + "x": 561.842, "y": 66.624 }, { "body": null, "index": 7, "isInternal": false, - "x": 564.6870000000002, - "y": 61.69499999999999 + "x": 564.687, + "y": 61.695 }, { "body": null, "index": 8, "isInternal": false, - "x": 569.6160000000002, - "y": 58.849999999999994 + "x": 569.616, + "y": 58.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 575.3060000000003, - "y": 58.849999999999994 + "x": 575.306, + "y": 58.85 }, { "body": null, "index": 10, "isInternal": false, - "x": 580.2350000000002, - "y": 61.69499999999999 + "x": 580.235, + "y": 61.695 }, { "body": null, "index": 11, "isInternal": false, - "x": 583.0800000000003, + "x": 583.08, "y": 66.624 }, { @@ -15319,14 +15319,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 805.817864, + "area": 805.81786, "axes": { "#": 1698 }, "bounds": { "#": 1708 }, - "circleRadius": 16.1798268175583, + "circleRadius": 16.17983, "collisionFilter": { "#": 1711 }, @@ -15341,13 +15341,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 413.41882770208514, - "inverseInertia": 0.002418854519902545, - "inverseMass": 1.2409752186878795, + "inertia": 413.41883, + "inverseInertia": 0.00242, + "inverseMass": 1.24098, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.805817864, + "mass": 0.80582, "motion": 0, "parent": null, "position": { @@ -15408,36 +15408,36 @@ } ], { - "x": -0.9396790547219881, - "y": -0.34205741348023866 + "x": -0.93968, + "y": -0.34206 }, { - "x": -0.7659992927826746, - "y": -0.6428414139244937 + "x": -0.766, + "y": -0.64284 }, { - "x": -0.5000818959792287, - "y": -0.8659781159554899 + "x": -0.50008, + "y": -0.86598 }, { - "x": -0.17368381518741813, - "y": -0.9848014684909557 + "x": -0.17368, + "y": -0.9848 }, { - "x": 0.17368381518741813, - "y": -0.9848014684909557 + "x": 0.17368, + "y": -0.9848 }, { - "x": 0.5000818959792287, - "y": -0.8659781159554899 + "x": 0.50008, + "y": -0.86598 }, { - "x": 0.7659992927826746, - "y": -0.6428414139244937 + "x": 0.766, + "y": -0.64284 }, { - "x": 0.9396790547219881, - "y": -0.34205741348023866 + "x": 0.93968, + "y": -0.34206 }, { "x": 1, @@ -15452,11 +15452,11 @@ } }, { - "x": 614.9480000000002, - "y": 91.21000000000001 + "x": 614.948, + "y": 91.21 }, { - "x": 583.0800000000003, + "x": 583.08, "y": 58.85 }, { @@ -15474,7 +15474,7 @@ "y": 0 }, { - "x": 599.0140000000002, + "x": 599.014, "y": 75.03 }, { @@ -15482,7 +15482,7 @@ "y": 0 }, { - "x": 599.0140000000002, + "x": 599.014, "y": 75.03 }, { @@ -15562,126 +15562,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 614.9480000000002, + "x": 614.948, "y": 77.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.0260000000003, + "x": 613.026, "y": 83.12 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.4140000000002, + "x": 609.414, "y": 87.424 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.5480000000002, - "y": 90.23400000000001 + "x": 604.548, + "y": 90.234 }, { "body": null, "index": 4, "isInternal": false, - "x": 599.0140000000002, - "y": 91.21000000000001 + "x": 599.014, + "y": 91.21 }, { "body": null, "index": 5, "isInternal": false, - "x": 593.4800000000002, - "y": 90.23400000000001 + "x": 593.48, + "y": 90.234 }, { "body": null, "index": 6, "isInternal": false, - "x": 588.6140000000003, + "x": 588.614, "y": 87.424 }, { "body": null, "index": 7, "isInternal": false, - "x": 585.0020000000002, + "x": 585.002, "y": 83.12 }, { "body": null, "index": 8, "isInternal": false, - "x": 583.0800000000003, + "x": 583.08, "y": 77.84 }, { "body": null, "index": 9, "isInternal": false, - "x": 583.0800000000003, + "x": 583.08, "y": 72.22 }, { "body": null, "index": 10, "isInternal": false, - "x": 585.0020000000002, + "x": 585.002, "y": 66.94 }, { "body": null, "index": 11, "isInternal": false, - "x": 588.6140000000003, + "x": 588.614, "y": 62.636 }, { "body": null, "index": 12, "isInternal": false, - "x": 593.4800000000002, + "x": 593.48, "y": 59.826 }, { "body": null, "index": 13, "isInternal": false, - "x": 599.0140000000002, + "x": 599.014, "y": 58.85 }, { "body": null, "index": 14, "isInternal": false, - "x": 604.5480000000002, + "x": 604.548, "y": 59.826 }, { "body": null, "index": 15, "isInternal": false, - "x": 609.4140000000002, + "x": 609.414, "y": 62.636 }, { "body": null, "index": 16, "isInternal": false, - "x": 613.0260000000003, + "x": 613.026, "y": 66.94 }, { "body": null, "index": 17, "isInternal": false, - "x": 614.9480000000002, + "x": 614.948, "y": 72.22 }, { @@ -15689,14 +15689,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1175.440884, + "area": 1175.44088, "axes": { "#": 1740 }, "bounds": { "#": 1751 }, - "circleRadius": 19.50347222222222, + "circleRadius": 19.50347, "collisionFilter": { "#": 1754 }, @@ -15711,13 +15711,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 879.6410498592595, - "inverseInertia": 0.00113682734583612, - "inverseMass": 0.8507446130315133, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "inverseMass": 0.85074, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1754408840000001, + "mass": 1.17544, "motion": 0, "parent": null, "position": { @@ -15781,40 +15781,40 @@ } ], { - "x": -0.9510810304000095, - "y": -0.3089415375330036 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8090123548449776, - "y": -0.5877916380046453 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877916380046453, - "y": -0.8090123548449776 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.3089415375330036, - "y": -0.9510810304000095 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.3089415375330036, - "y": -0.9510810304000095 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5877916380046453, - "y": -0.8090123548449776 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090123548449776, - "y": -0.5877916380046453 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510810304000095, - "y": -0.3089415375330036 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -15829,12 +15829,12 @@ } }, { - "x": 58.52600000000001, + "x": 58.526, "y": 136.742 }, { - "x": 20.000000000000004, - "y": 98.21599999999998 + "x": 20, + "y": 98.216 }, { "category": 1, @@ -15851,16 +15851,16 @@ "y": 0 }, { - "x": 39.263000000000005, - "y": 117.47899999999998 + "x": 39.263, + "y": 117.479 }, { "x": 0, "y": 0 }, { - "x": 39.263000000000005, - "y": 117.47899999999998 + "x": 39.263, + "y": 117.479 }, { "fillStyle": "#4ECDC4", @@ -15945,35 +15945,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 58.52600000000001, - "y": 120.52999999999999 + "x": 58.526, + "y": 120.53 }, { "body": null, "index": 1, "isInternal": false, - "x": 56.641000000000005, - "y": 126.33299999999998 + "x": 56.641, + "y": 126.333 }, { "body": null, "index": 2, "isInternal": false, "x": 53.054, - "y": 131.26999999999998 + "y": 131.27 }, { "body": null, "index": 3, "isInternal": false, - "x": 48.117000000000004, - "y": 134.85699999999997 + "x": 48.117, + "y": 134.857 }, { "body": null, "index": 4, "isInternal": false, - "x": 42.31400000000001, + "x": 42.314, "y": 136.742 }, { @@ -15987,99 +15987,99 @@ "body": null, "index": 6, "isInternal": false, - "x": 30.409000000000006, - "y": 134.85699999999997 + "x": 30.409, + "y": 134.857 }, { "body": null, "index": 7, "isInternal": false, - "x": 25.472000000000005, - "y": 131.26999999999998 + "x": 25.472, + "y": 131.27 }, { "body": null, "index": 8, "isInternal": false, - "x": 21.885000000000005, - "y": 126.33299999999998 + "x": 21.885, + "y": 126.333 }, { "body": null, "index": 9, "isInternal": false, - "x": 20.000000000000004, - "y": 120.52999999999999 + "x": 20, + "y": 120.53 }, { "body": null, "index": 10, "isInternal": false, - "x": 20.000000000000004, - "y": 114.42799999999998 + "x": 20, + "y": 114.428 }, { "body": null, "index": 11, "isInternal": false, - "x": 21.885000000000005, - "y": 108.62499999999999 + "x": 21.885, + "y": 108.625 }, { "body": null, "index": 12, "isInternal": false, - "x": 25.472000000000005, - "y": 103.68799999999999 + "x": 25.472, + "y": 103.688 }, { "body": null, "index": 13, "isInternal": false, - "x": 30.409000000000006, - "y": 100.10099999999998 + "x": 30.409, + "y": 100.101 }, { "body": null, "index": 14, "isInternal": false, "x": 36.212, - "y": 98.21599999999998 + "y": 98.216 }, { "body": null, "index": 15, "isInternal": false, - "x": 42.31400000000001, - "y": 98.21599999999998 + "x": 42.314, + "y": 98.216 }, { "body": null, "index": 16, "isInternal": false, - "x": 48.117000000000004, - "y": 100.10099999999998 + "x": 48.117, + "y": 100.101 }, { "body": null, "index": 17, "isInternal": false, "x": 53.054, - "y": 103.68799999999999 + "y": 103.688 }, { "body": null, "index": 18, "isInternal": false, - "x": 56.641000000000005, - "y": 108.62499999999999 + "x": 56.641, + "y": 108.625 }, { "body": null, "index": 19, "isInternal": false, - "x": 58.52600000000001, - "y": 114.42799999999998 + "x": 58.526, + "y": 114.428 }, { "angle": 0, @@ -16093,7 +16093,7 @@ "bounds": { "#": 1793 }, - "circleRadius": 13.68102709190672, + "circleRadius": 13.68103, "collisionFilter": { "#": 1796 }, @@ -16108,13 +16108,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 205.77002535077511, - "inverseInertia": 0.004859794317929956, - "inverseMass": 1.7591348884226479, + "inertia": 205.77003, + "inverseInertia": 0.00486, + "inverseMass": 1.75913, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.56846124, + "mass": 0.56846, "motion": 0, "parent": null, "position": { @@ -16169,28 +16169,28 @@ } ], { - "x": -0.9009636264752368, - "y": -0.43389462288508485 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6234924793998962, - "y": -0.7818293471927041 + "x": -0.62349, + "y": -0.78183 }, { - "x": -0.22254384035750657, - "y": -0.974922683662111 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.22254384035750657, - "y": -0.974922683662111 + "x": 0.22254, + "y": -0.97492 }, { - "x": 0.6234924793998962, - "y": -0.7818293471927041 + "x": 0.62349, + "y": -0.78183 }, { - "x": 0.9009636264752368, - "y": -0.43389462288508485 + "x": 0.90096, + "y": -0.43389 }, { "x": 1, @@ -16206,11 +16206,11 @@ }, { "x": 85.202, - "y": 125.57799999999997 + "y": 125.578 }, { "x": 58.526, - "y": 98.21599999999998 + "y": 98.216 }, { "category": 1, @@ -16228,7 +16228,7 @@ }, { "x": 71.864, - "y": 111.89699999999998 + "y": 111.897 }, { "x": 0, @@ -16236,7 +16236,7 @@ }, { "x": 71.864, - "y": 111.89699999999998 + "y": 111.897 }, { "fillStyle": "#C44D58", @@ -16304,112 +16304,112 @@ "index": 0, "isInternal": false, "x": 85.202, - "y": 114.94099999999997 + "y": 114.941 }, { "body": null, "index": 1, "isInternal": false, "x": 82.56, - "y": 120.42699999999998 + "y": 120.427 }, { "body": null, "index": 2, "isInternal": false, - "x": 77.80000000000001, - "y": 124.22299999999997 + "x": 77.8, + "y": 124.223 }, { "body": null, "index": 3, "isInternal": false, "x": 71.864, - "y": 125.57799999999997 + "y": 125.578 }, { "body": null, "index": 4, "isInternal": false, "x": 65.928, - "y": 124.22299999999997 + "y": 124.223 }, { "body": null, "index": 5, "isInternal": false, - "x": 61.168000000000006, - "y": 120.42699999999998 + "x": 61.168, + "y": 120.427 }, { "body": null, "index": 6, "isInternal": false, "x": 58.526, - "y": 114.94099999999997 + "y": 114.941 }, { "body": null, "index": 7, "isInternal": false, "x": 58.526, - "y": 108.85299999999998 + "y": 108.853 }, { "body": null, "index": 8, "isInternal": false, - "x": 61.168000000000006, - "y": 103.36699999999998 + "x": 61.168, + "y": 103.367 }, { "body": null, "index": 9, "isInternal": false, "x": 65.928, - "y": 99.57099999999998 + "y": 99.571 }, { "body": null, "index": 10, "isInternal": false, "x": 71.864, - "y": 98.21599999999998 + "y": 98.216 }, { "body": null, "index": 11, "isInternal": false, - "x": 77.80000000000001, - "y": 99.57099999999998 + "x": 77.8, + "y": 99.571 }, { "body": null, "index": 12, "isInternal": false, "x": 82.56, - "y": 103.36699999999998 + "y": 103.367 }, { "body": null, "index": 13, "isInternal": false, "x": 85.202, - "y": 108.85299999999998 + "y": 108.853 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 366.82313200000004, + "area": 366.82313, "axes": { "#": 1821 }, "bounds": { "#": 1828 }, - "circleRadius": 11.058170438957475, + "circleRadius": 11.05817, "collisionFilter": { "#": 1831 }, @@ -16424,13 +16424,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 85.70002548110048, - "inverseInertia": 0.011668607965822963, - "inverseMass": 2.726109431942803, + "inertia": 85.70003, + "inverseInertia": 0.01167, + "inverseMass": 2.72611, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.36682313200000005, + "mass": 0.36682, "motion": 0, "parent": null, "position": { @@ -16482,24 +16482,24 @@ } ], { - "x": -0.8660197514843452, - "y": -0.5000097899431502 + "x": -0.86602, + "y": -0.50001 }, { - "x": -0.5000097899431502, - "y": -0.8660197514843452 + "x": -0.50001, + "y": -0.86602 }, { "x": 0, "y": -1 }, { - "x": 0.5000097899431502, - "y": -0.8660197514843452 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.8660197514843452, - "y": -0.5000097899431502 + "x": 0.86602, + "y": -0.50001 }, { "x": 1, @@ -16515,11 +16515,11 @@ }, { "x": 106.564, - "y": 119.57799999999997 + "y": 119.578 }, { "x": 85.202, - "y": 98.21599999999998 + "y": 98.216 }, { "category": 1, @@ -16537,7 +16537,7 @@ }, { "x": 95.883, - "y": 108.89699999999998 + "y": 108.897 }, { "x": 0, @@ -16545,7 +16545,7 @@ }, { "x": 95.883, - "y": 108.89699999999998 + "y": 108.897 }, { "fillStyle": "#C7F464", @@ -16607,98 +16607,98 @@ "index": 0, "isInternal": false, "x": 106.564, - "y": 111.75899999999997 + "y": 111.759 }, { "body": null, "index": 1, "isInternal": false, "x": 103.702, - "y": 116.71599999999998 + "y": 116.716 }, { "body": null, "index": 2, "isInternal": false, - "x": 98.74499999999999, - "y": 119.57799999999997 + "x": 98.745, + "y": 119.578 }, { "body": null, "index": 3, "isInternal": false, "x": 93.021, - "y": 119.57799999999997 + "y": 119.578 }, { "body": null, "index": 4, "isInternal": false, "x": 88.064, - "y": 116.71599999999998 + "y": 116.716 }, { "body": null, "index": 5, "isInternal": false, "x": 85.202, - "y": 111.75899999999997 + "y": 111.759 }, { "body": null, "index": 6, "isInternal": false, "x": 85.202, - "y": 106.03499999999998 + "y": 106.035 }, { "body": null, "index": 7, "isInternal": false, "x": 88.064, - "y": 101.07799999999997 + "y": 101.078 }, { "body": null, "index": 8, "isInternal": false, "x": 93.021, - "y": 98.21599999999998 + "y": 98.216 }, { "body": null, "index": 9, "isInternal": false, - "x": 98.74499999999999, - "y": 98.21599999999998 + "x": 98.745, + "y": 98.216 }, { "body": null, "index": 10, "isInternal": false, "x": 103.702, - "y": 101.07799999999997 + "y": 101.078 }, { "body": null, "index": 11, "isInternal": false, "x": 106.564, - "y": 106.03499999999998 + "y": 106.035 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 389.07123600000006, + "area": 389.07124, "axes": { "#": 1854 }, "bounds": { "#": 1861 }, - "circleRadius": 11.387988683127572, + "circleRadius": 11.38799, "collisionFilter": { "#": 1864 }, @@ -16713,13 +16713,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 96.41081889936525, - "inverseInertia": 0.010372279910243391, - "inverseMass": 2.5702234127634145, + "inertia": 96.41082, + "inverseInertia": 0.01037, + "inverseMass": 2.57022, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.38907123600000004, + "mass": 0.38907, "motion": 0, "parent": null, "position": { @@ -16771,24 +16771,24 @@ } ], { - "x": -0.8660952066747344, - "y": -0.4998790783530045 + "x": -0.8661, + "y": -0.49988 }, { - "x": -0.4998790783530045, - "y": -0.8660952066747344 + "x": -0.49988, + "y": -0.8661 }, { "x": 0, "y": -1 }, { - "x": 0.4998790783530045, - "y": -0.8660952066747344 + "x": 0.49988, + "y": -0.8661 }, { - "x": 0.8660952066747344, - "y": -0.4998790783530045 + "x": 0.8661, + "y": -0.49988 }, { "x": 1, @@ -16804,11 +16804,11 @@ }, { "x": 128.564, - "y": 120.21599999999998 + "y": 120.216 }, { "x": 106.564, - "y": 98.21599999999998 + "y": 98.216 }, { "category": 1, @@ -16826,7 +16826,7 @@ }, { "x": 117.564, - "y": 109.21599999999998 + "y": 109.216 }, { "x": 0, @@ -16834,7 +16834,7 @@ }, { "x": 117.564, - "y": 109.21599999999998 + "y": 109.216 }, { "fillStyle": "#556270", @@ -16896,98 +16896,98 @@ "index": 0, "isInternal": false, "x": 128.564, - "y": 112.16299999999998 + "y": 112.163 }, { "body": null, "index": 1, "isInternal": false, - "x": 125.61699999999999, - "y": 117.26899999999998 + "x": 125.617, + "y": 117.269 }, { "body": null, "index": 2, "isInternal": false, "x": 120.511, - "y": 120.21599999999998 + "y": 120.216 }, { "body": null, "index": 3, "isInternal": false, - "x": 114.61699999999999, - "y": 120.21599999999998 + "x": 114.617, + "y": 120.216 }, { "body": null, "index": 4, "isInternal": false, "x": 109.511, - "y": 117.26899999999998 + "y": 117.269 }, { "body": null, "index": 5, "isInternal": false, "x": 106.564, - "y": 112.16299999999998 + "y": 112.163 }, { "body": null, "index": 6, "isInternal": false, "x": 106.564, - "y": 106.26899999999998 + "y": 106.269 }, { "body": null, "index": 7, "isInternal": false, "x": 109.511, - "y": 101.16299999999998 + "y": 101.163 }, { "body": null, "index": 8, "isInternal": false, - "x": 114.61699999999999, - "y": 98.21599999999998 + "x": 114.617, + "y": 98.216 }, { "body": null, "index": 9, "isInternal": false, "x": 120.511, - "y": 98.21599999999998 + "y": 98.216 }, { "body": null, "index": 10, "isInternal": false, - "x": 125.61699999999999, - "y": 101.16299999999998 + "x": 125.617, + "y": 101.163 }, { "body": null, "index": 11, "isInternal": false, "x": 128.564, - "y": 106.26899999999998 + "y": 106.269 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 815.3892460000001, + "area": 815.38925, "axes": { "#": 1887 }, "bounds": { "#": 1897 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1900 }, @@ -17002,13 +17002,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 423.2982063032686, - "inverseInertia": 0.0023624007498948816, - "inverseMass": 1.2264081294984357, + "inertia": 423.29821, + "inverseInertia": 0.00236, + "inverseMass": 1.22641, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8153892460000001, + "mass": 0.81539, "motion": 0, "parent": null, "position": { @@ -17069,36 +17069,36 @@ } ], { - "x": -0.9397159229781226, - "y": -0.3419561142915492 + "x": -0.93972, + "y": -0.34196 }, { - "x": -0.7660706997750172, - "y": -0.6427563169243967 + "x": -0.76607, + "y": -0.64276 }, { - "x": -0.4999828073287557, - "y": -0.8660353297502684 + "x": -0.49998, + "y": -0.86604 }, { - "x": -0.17354312409985562, - "y": -0.9848262710131479 + "x": -0.17354, + "y": -0.98483 }, { - "x": 0.17354312409985562, - "y": -0.9848262710131479 + "x": 0.17354, + "y": -0.98483 }, { - "x": 0.4999828073287557, - "y": -0.8660353297502684 + "x": 0.49998, + "y": -0.86604 }, { - "x": 0.7660706997750172, - "y": -0.6427563169243967 + "x": 0.76607, + "y": -0.64276 }, { - "x": 0.9397159229781226, - "y": -0.3419561142915492 + "x": 0.93972, + "y": -0.34196 }, { "x": 1, @@ -17113,12 +17113,12 @@ } }, { - "x": 160.61999999999998, + "x": 160.62, "y": 130.766 }, { "x": 128.564, - "y": 98.21599999999998 + "y": 98.216 }, { "category": 1, @@ -17135,16 +17135,16 @@ "y": 0 }, { - "x": 144.59199999999998, - "y": 114.49099999999999 + "x": 144.592, + "y": 114.491 }, { "x": 0, "y": 0 }, { - "x": 144.59199999999998, - "y": 114.49099999999999 + "x": 144.592, + "y": 114.491 }, { "fillStyle": "#C44D58", @@ -17223,141 +17223,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 160.61999999999998, - "y": 117.31699999999998 + "x": 160.62, + "y": 117.317 }, { "body": null, "index": 1, "isInternal": false, - "x": 158.68699999999998, - "y": 122.62899999999999 + "x": 158.687, + "y": 122.629 }, { "body": null, "index": 2, "isInternal": false, - "x": 155.05399999999997, - "y": 126.95899999999999 + "x": 155.054, + "y": 126.959 }, { "body": null, "index": 3, "isInternal": false, "x": 150.159, - "y": 129.78499999999997 + "y": 129.785 }, { "body": null, "index": 4, "isInternal": false, - "x": 144.59199999999998, + "x": 144.592, "y": 130.766 }, { "body": null, "index": 5, "isInternal": false, - "x": 139.02499999999998, - "y": 129.78499999999997 + "x": 139.025, + "y": 129.785 }, { "body": null, "index": 6, "isInternal": false, "x": 134.13, - "y": 126.95899999999999 + "y": 126.959 }, { "body": null, "index": 7, "isInternal": false, - "x": 130.49699999999999, - "y": 122.62899999999999 + "x": 130.497, + "y": 122.629 }, { "body": null, "index": 8, "isInternal": false, "x": 128.564, - "y": 117.31699999999998 + "y": 117.317 }, { "body": null, "index": 9, "isInternal": false, "x": 128.564, - "y": 111.66499999999999 + "y": 111.665 }, { "body": null, "index": 10, "isInternal": false, - "x": 130.49699999999999, - "y": 106.35299999999998 + "x": 130.497, + "y": 106.353 }, { "body": null, "index": 11, "isInternal": false, "x": 134.13, - "y": 102.02299999999998 + "y": 102.023 }, { "body": null, "index": 12, "isInternal": false, - "x": 139.02499999999998, - "y": 99.19699999999999 + "x": 139.025, + "y": 99.197 }, { "body": null, "index": 13, "isInternal": false, - "x": 144.59199999999998, - "y": 98.21599999999998 + "x": 144.592, + "y": 98.216 }, { "body": null, "index": 14, "isInternal": false, "x": 150.159, - "y": 99.19699999999999 + "y": 99.197 }, { "body": null, "index": 15, "isInternal": false, - "x": 155.05399999999997, - "y": 102.02299999999998 + "x": 155.054, + "y": 102.023 }, { "body": null, "index": 16, "isInternal": false, - "x": 158.68699999999998, - "y": 106.35299999999998 + "x": 158.687, + "y": 106.353 }, { "body": null, "index": 17, "isInternal": false, - "x": 160.61999999999998, - "y": 111.66499999999999 + "x": 160.62, + "y": 111.665 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 317.56207599999993, + "area": 317.56208, "axes": { "#": 1929 }, "bounds": { "#": 1936 }, - "circleRadius": 10.288365912208505, + "circleRadius": 10.28837, "collisionFilter": { "#": 1939 }, @@ -17372,13 +17372,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 64.22805737291344, - "inverseInertia": 0.015569519628998225, - "inverseMass": 3.148990624434639, + "inertia": 64.22806, + "inverseInertia": 0.01557, + "inverseMass": 3.14899, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.3175620759999999, + "mass": 0.31756, "motion": 0, "parent": null, "position": { @@ -17430,24 +17430,24 @@ } ], { - "x": -0.8660042176110888, - "y": -0.5000366937333759 + "x": -0.866, + "y": -0.50004 }, { - "x": -0.5000366937333759, - "y": -0.8660042176110888 + "x": -0.50004, + "y": -0.866 }, { "x": 0, "y": -1 }, { - "x": 0.5000366937333759, - "y": -0.8660042176110888 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.8660042176110888, - "y": -0.5000366937333759 + "x": 0.866, + "y": -0.50004 }, { "x": 1, @@ -17462,12 +17462,12 @@ } }, { - "x": 180.49599999999995, - "y": 118.09199999999998 + "x": 180.496, + "y": 118.092 }, { - "x": 160.61999999999998, - "y": 98.21599999999998 + "x": 160.62, + "y": 98.216 }, { "category": 1, @@ -17484,16 +17484,16 @@ "y": 0 }, { - "x": 170.55799999999996, - "y": 108.15399999999998 + "x": 170.558, + "y": 108.154 }, { "x": 0, "y": 0 }, { - "x": 170.55799999999996, - "y": 108.15399999999998 + "x": 170.558, + "y": 108.154 }, { "fillStyle": "#C7F464", @@ -17554,99 +17554,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 180.49599999999995, - "y": 110.81699999999998 + "x": 180.496, + "y": 110.817 }, { "body": null, "index": 1, "isInternal": false, - "x": 177.83299999999997, - "y": 115.42899999999999 + "x": 177.833, + "y": 115.429 }, { "body": null, "index": 2, "isInternal": false, - "x": 173.22099999999998, - "y": 118.09199999999998 + "x": 173.221, + "y": 118.092 }, { "body": null, "index": 3, "isInternal": false, - "x": 167.89499999999995, - "y": 118.09199999999998 + "x": 167.895, + "y": 118.092 }, { "body": null, "index": 4, "isInternal": false, - "x": 163.28299999999996, - "y": 115.42899999999999 + "x": 163.283, + "y": 115.429 }, { "body": null, "index": 5, "isInternal": false, - "x": 160.61999999999998, - "y": 110.81699999999998 + "x": 160.62, + "y": 110.817 }, { "body": null, "index": 6, "isInternal": false, - "x": 160.61999999999998, - "y": 105.49099999999999 + "x": 160.62, + "y": 105.491 }, { "body": null, "index": 7, "isInternal": false, - "x": 163.28299999999996, - "y": 100.87899999999998 + "x": 163.283, + "y": 100.879 }, { "body": null, "index": 8, "isInternal": false, - "x": 167.89499999999995, - "y": 98.21599999999998 + "x": 167.895, + "y": 98.216 }, { "body": null, "index": 9, "isInternal": false, - "x": 173.22099999999998, - "y": 98.21599999999998 + "x": 173.221, + "y": 98.216 }, { "body": null, "index": 10, "isInternal": false, - "x": 177.83299999999997, - "y": 100.87899999999998 + "x": 177.833, + "y": 100.879 }, { "body": null, "index": 11, "isInternal": false, - "x": 180.49599999999995, - "y": 105.49099999999999 + "x": 180.496, + "y": 105.491 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1084.703512, + "area": 1084.70351, "axes": { "#": 1962 }, "bounds": { "#": 1973 }, - "circleRadius": 18.735468106995885, + "circleRadius": 18.73547, "collisionFilter": { "#": 1976 }, @@ -17661,13 +17661,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 749.0761960708147, - "inverseInertia": 0.0013349776768309747, - "inverseMass": 0.9219109083146398, + "inertia": 749.0762, + "inverseInertia": 0.00133, + "inverseMass": 0.92191, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0847035120000001, + "mass": 1.0847, "motion": 0, "parent": null, "position": { @@ -17731,40 +17731,40 @@ } ], { - "x": -0.9510278004650076, - "y": -0.309105358644411 + "x": -0.95103, + "y": -0.30911 }, { - "x": -0.8090384664562262, - "y": -0.5877556973727756 + "x": -0.80904, + "y": -0.58776 }, { - "x": -0.5877556973727756, - "y": -0.8090384664562262 + "x": -0.58776, + "y": -0.80904 }, { - "x": -0.309105358644411, - "y": -0.9510278004650076 + "x": -0.30911, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.309105358644411, - "y": -0.9510278004650076 + "x": 0.30911, + "y": -0.95103 }, { - "x": 0.5877556973727756, - "y": -0.8090384664562262 + "x": 0.58776, + "y": -0.80904 }, { - "x": 0.8090384664562262, - "y": -0.5877556973727756 + "x": 0.80904, + "y": -0.58776 }, { - "x": 0.9510278004650076, - "y": -0.309105358644411 + "x": 0.95103, + "y": -0.30911 }, { "x": 1, @@ -17779,12 +17779,12 @@ } }, { - "x": 217.50599999999994, - "y": 135.22599999999997 + "x": 217.506, + "y": 135.226 }, { - "x": 180.49599999999995, - "y": 98.21599999999998 + "x": 180.496, + "y": 98.216 }, { "category": 1, @@ -17801,16 +17801,16 @@ "y": 0 }, { - "x": 199.00099999999995, - "y": 116.72099999999998 + "x": 199.001, + "y": 116.721 }, { "x": 0, "y": 0 }, { - "x": 199.00099999999995, - "y": 116.72099999999998 + "x": 199.001, + "y": 116.721 }, { "fillStyle": "#556270", @@ -17895,155 +17895,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 217.50599999999994, - "y": 119.65199999999997 + "x": 217.506, + "y": 119.652 }, { "body": null, "index": 1, "isInternal": false, - "x": 215.69399999999996, - "y": 125.22699999999998 + "x": 215.694, + "y": 125.227 }, { "body": null, "index": 2, "isInternal": false, - "x": 212.24899999999994, + "x": 212.249, "y": 129.969 }, { "body": null, "index": 3, "isInternal": false, - "x": 207.50699999999995, + "x": 207.507, "y": 133.414 }, { "body": null, "index": 4, "isInternal": false, - "x": 201.93199999999996, - "y": 135.22599999999997 + "x": 201.932, + "y": 135.226 }, { "body": null, "index": 5, "isInternal": false, - "x": 196.06999999999994, - "y": 135.22599999999997 + "x": 196.07, + "y": 135.226 }, { "body": null, "index": 6, "isInternal": false, - "x": 190.49499999999995, + "x": 190.495, "y": 133.414 }, { "body": null, "index": 7, "isInternal": false, - "x": 185.75299999999996, + "x": 185.753, "y": 129.969 }, { "body": null, "index": 8, "isInternal": false, - "x": 182.30799999999994, - "y": 125.22699999999998 + "x": 182.308, + "y": 125.227 }, { "body": null, "index": 9, "isInternal": false, - "x": 180.49599999999995, - "y": 119.65199999999997 + "x": 180.496, + "y": 119.652 }, { "body": null, "index": 10, "isInternal": false, - "x": 180.49599999999995, - "y": 113.78999999999998 + "x": 180.496, + "y": 113.79 }, { "body": null, "index": 11, "isInternal": false, - "x": 182.30799999999994, - "y": 108.21499999999997 + "x": 182.308, + "y": 108.215 }, { "body": null, "index": 12, "isInternal": false, - "x": 185.75299999999996, - "y": 103.47299999999997 + "x": 185.753, + "y": 103.473 }, { "body": null, "index": 13, "isInternal": false, - "x": 190.49499999999995, - "y": 100.02799999999998 + "x": 190.495, + "y": 100.028 }, { "body": null, "index": 14, "isInternal": false, - "x": 196.06999999999994, - "y": 98.21599999999998 + "x": 196.07, + "y": 98.216 }, { "body": null, "index": 15, "isInternal": false, - "x": 201.93199999999996, - "y": 98.21599999999998 + "x": 201.932, + "y": 98.216 }, { "body": null, "index": 16, "isInternal": false, - "x": 207.50699999999995, - "y": 100.02799999999998 + "x": 207.507, + "y": 100.028 }, { "body": null, "index": 17, "isInternal": false, - "x": 212.24899999999994, - "y": 103.47299999999997 + "x": 212.249, + "y": 103.473 }, { "body": null, "index": 18, "isInternal": false, - "x": 215.69399999999996, - "y": 108.21499999999997 + "x": 215.694, + "y": 108.215 }, { "body": null, "index": 19, "isInternal": false, - "x": 217.50599999999994, - "y": 113.78999999999998 + "x": 217.506, + "y": 113.79 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 445.4528199999999, + "area": 445.45282, "axes": { "#": 2007 }, "bounds": { "#": 2015 }, - "circleRadius": 12.110553840877916, + "circleRadius": 12.11055, "collisionFilter": { "#": 2018 }, @@ -18058,13 +18058,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 126.35249452584083, - "inverseInertia": 0.00791436689677295, - "inverseMass": 2.2449066547608796, + "inertia": 126.35249, + "inverseInertia": 0.00791, + "inverseMass": 2.24491, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4454528199999999, + "mass": 0.44545, "motion": 0, "parent": null, "position": { @@ -18119,28 +18119,28 @@ } ], { - "x": -0.9009345127462495, - "y": -0.43395507111068327 + "x": -0.90093, + "y": -0.43396 }, { - "x": -0.6235175483747363, - "y": -0.7818093545543942 + "x": -0.62352, + "y": -0.78181 }, { - "x": -0.22262330164139782, - "y": -0.974904541771287 + "x": -0.22262, + "y": -0.9749 }, { - "x": 0.22262330164139782, - "y": -0.974904541771287 + "x": 0.22262, + "y": -0.9749 }, { - "x": 0.6235175483747363, - "y": -0.7818093545543942 + "x": 0.62352, + "y": -0.78181 }, { - "x": 0.9009345127462495, - "y": -0.43395507111068327 + "x": 0.90093, + "y": -0.43396 }, { "x": 1, @@ -18155,12 +18155,12 @@ } }, { - "x": 241.11999999999992, - "y": 122.43799999999999 + "x": 241.12, + "y": 122.438 }, { - "x": 217.50599999999994, - "y": 98.21599999999998 + "x": 217.506, + "y": 98.216 }, { "category": 1, @@ -18177,16 +18177,16 @@ "y": 0 }, { - "x": 229.31299999999993, - "y": 110.32699999999998 + "x": 229.313, + "y": 110.327 }, { "x": 0, "y": 0 }, { - "x": 229.31299999999993, - "y": 110.32699999999998 + "x": 229.313, + "y": 110.327 }, { "fillStyle": "#4ECDC4", @@ -18253,113 +18253,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 241.11999999999992, - "y": 113.02199999999998 + "x": 241.12, + "y": 113.022 }, { "body": null, "index": 1, "isInternal": false, - "x": 238.78099999999992, - "y": 117.87799999999999 + "x": 238.781, + "y": 117.878 }, { "body": null, "index": 2, "isInternal": false, - "x": 234.56799999999993, - "y": 121.23799999999999 + "x": 234.568, + "y": 121.238 }, { "body": null, "index": 3, "isInternal": false, - "x": 229.31299999999993, - "y": 122.43799999999999 + "x": 229.313, + "y": 122.438 }, { "body": null, "index": 4, "isInternal": false, - "x": 224.05799999999994, - "y": 121.23799999999999 + "x": 224.058, + "y": 121.238 }, { "body": null, "index": 5, "isInternal": false, - "x": 219.84499999999994, - "y": 117.87799999999999 + "x": 219.845, + "y": 117.878 }, { "body": null, "index": 6, "isInternal": false, - "x": 217.50599999999994, - "y": 113.02199999999998 + "x": 217.506, + "y": 113.022 }, { "body": null, "index": 7, "isInternal": false, - "x": 217.50599999999994, - "y": 107.63199999999999 + "x": 217.506, + "y": 107.632 }, { "body": null, "index": 8, "isInternal": false, - "x": 219.84499999999994, - "y": 102.77599999999998 + "x": 219.845, + "y": 102.776 }, { "body": null, "index": 9, "isInternal": false, - "x": 224.05799999999994, - "y": 99.41599999999998 + "x": 224.058, + "y": 99.416 }, { "body": null, "index": 10, "isInternal": false, - "x": 229.31299999999993, - "y": 98.21599999999998 + "x": 229.313, + "y": 98.216 }, { "body": null, "index": 11, "isInternal": false, - "x": 234.56799999999993, - "y": 99.41599999999998 + "x": 234.568, + "y": 99.416 }, { "body": null, "index": 12, "isInternal": false, - "x": 238.78099999999992, - "y": 102.77599999999998 + "x": 238.781, + "y": 102.776 }, { "body": null, "index": 13, "isInternal": false, - "x": 241.11999999999992, - "y": 107.63199999999999 + "x": 241.12, + "y": 107.632 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 911.0345159999998, + "area": 911.03452, "axes": { "#": 2043 }, "bounds": { "#": 2053 }, - "circleRadius": 17.203746570644718, + "circleRadius": 17.20375, "collisionFilter": { "#": 2056 }, @@ -18374,13 +18374,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 528.4283772509327, - "inverseInertia": 0.0018924040476447272, - "inverseMass": 1.0976532529092455, + "inertia": 528.42838, + "inverseInertia": 0.00189, + "inverseMass": 1.09765, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9110345159999998, + "mass": 0.91103, "motion": 0, "parent": null, "position": { @@ -18441,36 +18441,36 @@ } ], { - "x": -0.9397298835134565, - "y": -0.34191774746535936 + "x": -0.93973, + "y": -0.34192 }, { - "x": -0.7660081005673731, - "y": -0.6428309185665895 + "x": -0.76601, + "y": -0.64283 }, { - "x": -0.49997360015891584, - "y": -0.866040645203291 + "x": -0.49997, + "y": -0.86604 }, { - "x": -0.17372804656081567, - "y": -0.9847936666318297 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.17372804656081567, - "y": -0.9847936666318297 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.49997360015891584, - "y": -0.866040645203291 + "x": 0.49997, + "y": -0.86604 }, { - "x": 0.7660081005673731, - "y": -0.6428309185665895 + "x": 0.76601, + "y": -0.64283 }, { - "x": 0.9397298835134565, - "y": -0.34191774746535936 + "x": 0.93973, + "y": -0.34192 }, { "x": 1, @@ -18485,12 +18485,12 @@ } }, { - "x": 275.0039999999999, + "x": 275.004, "y": 132.624 }, { - "x": 241.1199999999999, - "y": 98.21599999999998 + "x": 241.12, + "y": 98.216 }, { "category": 1, @@ -18507,16 +18507,16 @@ "y": 0 }, { - "x": 258.0619999999999, - "y": 115.41999999999999 + "x": 258.062, + "y": 115.42 }, { "x": 0, "y": 0 }, { - "x": 258.0619999999999, - "y": 115.41999999999999 + "x": 258.062, + "y": 115.42 }, { "fillStyle": "#C7F464", @@ -18595,127 +18595,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.0039999999999, - "y": 118.40699999999998 + "x": 275.004, + "y": 118.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 272.9609999999999, - "y": 124.02199999999999 + "x": 272.961, + "y": 124.022 }, { "body": null, "index": 2, "isInternal": false, - "x": 269.1199999999999, + "x": 269.12, "y": 128.599 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.9459999999999, - "y": 131.58599999999998 + "x": 263.946, + "y": 131.586 }, { "body": null, "index": 4, "isInternal": false, - "x": 258.0619999999999, + "x": 258.062, "y": 132.624 }, { "body": null, "index": 5, "isInternal": false, - "x": 252.1779999999999, - "y": 131.58599999999998 + "x": 252.178, + "y": 131.586 }, { "body": null, "index": 6, "isInternal": false, - "x": 247.0039999999999, + "x": 247.004, "y": 128.599 }, { "body": null, "index": 7, "isInternal": false, - "x": 243.1629999999999, - "y": 124.02199999999999 + "x": 243.163, + "y": 124.022 }, { "body": null, "index": 8, "isInternal": false, - "x": 241.1199999999999, - "y": 118.40699999999998 + "x": 241.12, + "y": 118.407 }, { "body": null, "index": 9, "isInternal": false, - "x": 241.1199999999999, - "y": 112.43299999999999 + "x": 241.12, + "y": 112.433 }, { "body": null, "index": 10, "isInternal": false, - "x": 243.1629999999999, - "y": 106.81799999999998 + "x": 243.163, + "y": 106.818 }, { "body": null, "index": 11, "isInternal": false, - "x": 247.0039999999999, - "y": 102.24099999999999 + "x": 247.004, + "y": 102.241 }, { "body": null, "index": 12, "isInternal": false, - "x": 252.1779999999999, - "y": 99.25399999999999 + "x": 252.178, + "y": 99.254 }, { "body": null, "index": 13, "isInternal": false, - "x": 258.0619999999999, - "y": 98.21599999999998 + "x": 258.062, + "y": 98.216 }, { "body": null, "index": 14, "isInternal": false, - "x": 263.9459999999999, - "y": 99.25399999999999 + "x": 263.946, + "y": 99.254 }, { "body": null, "index": 15, "isInternal": false, - "x": 269.1199999999999, - "y": 102.24099999999999 + "x": 269.12, + "y": 102.241 }, { "body": null, "index": 16, "isInternal": false, - "x": 272.9609999999999, - "y": 106.81799999999998 + "x": 272.961, + "y": 106.818 }, { "body": null, "index": 17, "isInternal": false, - "x": 275.0039999999999, - "y": 112.43299999999999 + "x": 275.004, + "y": 112.433 }, { "angle": 0, @@ -18729,7 +18729,7 @@ "bounds": { "#": 2094 }, - "circleRadius": 14.879243827160494, + "circleRadius": 14.87924, "collisionFilter": { "#": 2097 }, @@ -18744,13 +18744,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 292.48689019105535, - "inverseInertia": 0.0034189566559608537, - "inverseMass": 1.4754214120768494, + "inertia": 292.48689, + "inverseInertia": 0.00342, + "inverseMass": 1.47542, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.67777246, + "mass": 0.67777, "motion": 0, "parent": null, "position": { @@ -18808,32 +18808,32 @@ } ], { - "x": -0.923905558521943, - "y": -0.3826205939730068 + "x": -0.92391, + "y": -0.38262 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826205939730068, - "y": -0.923905558521943 + "x": -0.38262, + "y": -0.92391 }, { "x": 0, "y": -1 }, { - "x": 0.3826205939730068, - "y": -0.923905558521943 + "x": 0.38262, + "y": -0.92391 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923905558521943, - "y": -0.3826205939730068 + "x": 0.92391, + "y": -0.38262 }, { "x": 1, @@ -18848,12 +18848,12 @@ } }, { - "x": 304.18999999999994, - "y": 127.40199999999999 + "x": 304.19, + "y": 127.402 }, { - "x": 275.0039999999999, - "y": 98.21599999999998 + "x": 275.004, + "y": 98.216 }, { "category": 1, @@ -18870,16 +18870,16 @@ "y": 0 }, { - "x": 289.5969999999999, - "y": 112.80899999999998 + "x": 289.597, + "y": 112.809 }, { "x": 0, "y": 0 }, { - "x": 289.5969999999999, - "y": 112.80899999999998 + "x": 289.597, + "y": 112.809 }, { "fillStyle": "#4ECDC4", @@ -18952,127 +18952,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 304.18999999999994, - "y": 115.71199999999999 + "x": 304.19, + "y": 115.712 }, { "body": null, "index": 1, "isInternal": false, - "x": 301.96899999999994, - "y": 121.07499999999999 + "x": 301.969, + "y": 121.075 }, { "body": null, "index": 2, "isInternal": false, - "x": 297.86299999999994, - "y": 125.18099999999998 + "x": 297.863, + "y": 125.181 }, { "body": null, "index": 3, "isInternal": false, - "x": 292.49999999999994, - "y": 127.40199999999999 + "x": 292.5, + "y": 127.402 }, { "body": null, "index": 4, "isInternal": false, - "x": 286.6939999999999, - "y": 127.40199999999999 + "x": 286.694, + "y": 127.402 }, { "body": null, "index": 5, "isInternal": false, - "x": 281.3309999999999, - "y": 125.18099999999998 + "x": 281.331, + "y": 125.181 }, { "body": null, "index": 6, "isInternal": false, - "x": 277.2249999999999, - "y": 121.07499999999999 + "x": 277.225, + "y": 121.075 }, { "body": null, "index": 7, "isInternal": false, - "x": 275.0039999999999, - "y": 115.71199999999999 + "x": 275.004, + "y": 115.712 }, { "body": null, "index": 8, "isInternal": false, - "x": 275.0039999999999, - "y": 109.90599999999998 + "x": 275.004, + "y": 109.906 }, { "body": null, "index": 9, "isInternal": false, - "x": 277.2249999999999, - "y": 104.54299999999998 + "x": 277.225, + "y": 104.543 }, { "body": null, "index": 10, "isInternal": false, - "x": 281.3309999999999, - "y": 100.43699999999998 + "x": 281.331, + "y": 100.437 }, { "body": null, "index": 11, "isInternal": false, - "x": 286.6939999999999, - "y": 98.21599999999998 + "x": 286.694, + "y": 98.216 }, { "body": null, "index": 12, "isInternal": false, - "x": 292.49999999999994, - "y": 98.21599999999998 + "x": 292.5, + "y": 98.216 }, { "body": null, "index": 13, "isInternal": false, - "x": 297.86299999999994, - "y": 100.43699999999998 + "x": 297.863, + "y": 100.437 }, { "body": null, "index": 14, "isInternal": false, - "x": 301.96899999999994, - "y": 104.54299999999998 + "x": 301.969, + "y": 104.543 }, { "body": null, "index": 15, "isInternal": false, - "x": 304.18999999999994, - "y": 109.90599999999998 + "x": 304.19, + "y": 109.906 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 645.4580440000001, + "area": 645.45804, "axes": { "#": 2124 }, "bounds": { "#": 2133 }, - "circleRadius": 14.519761659807955, + "circleRadius": 14.51976, "collisionFilter": { "#": 2136 }, @@ -19087,13 +19087,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 265.26173364337563, - "inverseInertia": 0.003769861510987576, - "inverseMass": 1.5492873770738844, + "inertia": 265.26173, + "inverseInertia": 0.00377, + "inverseMass": 1.54929, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6454580440000001, + "mass": 0.64546, "motion": 0, "parent": null, "position": { @@ -19151,32 +19151,32 @@ } ], { - "x": -0.9238791446772537, - "y": -0.38268436867793 + "x": -0.92388, + "y": -0.38268 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38268436867793, - "y": -0.9238791446772537 + "x": -0.38268, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.38268436867793, - "y": -0.9238791446772537 + "x": 0.38268, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238791446772537, - "y": -0.38268436867793 + "x": 0.92388, + "y": -0.38268 }, { "x": 1, @@ -19191,12 +19191,12 @@ } }, { - "x": 332.6719999999999, - "y": 126.69799999999998 + "x": 332.672, + "y": 126.698 }, { - "x": 304.18999999999994, - "y": 98.21599999999998 + "x": 304.19, + "y": 98.216 }, { "category": 1, @@ -19213,16 +19213,16 @@ "y": 0 }, { - "x": 318.4309999999999, - "y": 112.45699999999998 + "x": 318.431, + "y": 112.457 }, { "x": 0, "y": 0 }, { - "x": 318.4309999999999, - "y": 112.45699999999998 + "x": 318.431, + "y": 112.457 }, { "fillStyle": "#556270", @@ -19295,127 +19295,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 332.6719999999999, - "y": 115.28999999999998 + "x": 332.672, + "y": 115.29 }, { "body": null, "index": 1, "isInternal": false, - "x": 330.5039999999999, - "y": 120.52399999999999 + "x": 330.504, + "y": 120.524 }, { "body": null, "index": 2, "isInternal": false, - "x": 326.49799999999993, - "y": 124.52999999999999 + "x": 326.498, + "y": 124.53 }, { "body": null, "index": 3, "isInternal": false, - "x": 321.26399999999995, - "y": 126.69799999999998 + "x": 321.264, + "y": 126.698 }, { "body": null, "index": 4, "isInternal": false, - "x": 315.5979999999999, - "y": 126.69799999999998 + "x": 315.598, + "y": 126.698 }, { "body": null, "index": 5, "isInternal": false, - "x": 310.3639999999999, - "y": 124.52999999999999 + "x": 310.364, + "y": 124.53 }, { "body": null, "index": 6, "isInternal": false, - "x": 306.35799999999995, - "y": 120.52399999999999 + "x": 306.358, + "y": 120.524 }, { "body": null, "index": 7, "isInternal": false, - "x": 304.18999999999994, - "y": 115.28999999999998 + "x": 304.19, + "y": 115.29 }, { "body": null, "index": 8, "isInternal": false, - "x": 304.18999999999994, - "y": 109.62399999999998 + "x": 304.19, + "y": 109.624 }, { "body": null, "index": 9, "isInternal": false, - "x": 306.35799999999995, - "y": 104.38999999999997 + "x": 306.358, + "y": 104.39 }, { "body": null, "index": 10, "isInternal": false, - "x": 310.3639999999999, - "y": 100.38399999999997 + "x": 310.364, + "y": 100.384 }, { "body": null, "index": 11, "isInternal": false, - "x": 315.5979999999999, - "y": 98.21599999999998 + "x": 315.598, + "y": 98.216 }, { "body": null, "index": 12, "isInternal": false, - "x": 321.26399999999995, - "y": 98.21599999999998 + "x": 321.264, + "y": 98.216 }, { "body": null, "index": 13, "isInternal": false, - "x": 326.49799999999993, - "y": 100.38399999999997 + "x": 326.498, + "y": 100.384 }, { "body": null, "index": 14, "isInternal": false, - "x": 330.5039999999999, - "y": 104.38999999999997 + "x": 330.504, + "y": 104.39 }, { "body": null, "index": 15, "isInternal": false, - "x": 332.6719999999999, - "y": 109.62399999999998 + "x": 332.672, + "y": 109.624 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 701.518604, + "area": 701.5186, "axes": { "#": 2163 }, "bounds": { "#": 2172 }, - "circleRadius": 15.13764574759945, + "circleRadius": 15.13765, "collisionFilter": { "#": 2175 }, @@ -19430,13 +19430,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 313.3408048982135, - "inverseInertia": 0.0031914132611130645, - "inverseMass": 1.4254789456731214, + "inertia": 313.3408, + "inverseInertia": 0.00319, + "inverseMass": 1.42548, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.701518604, + "mass": 0.70152, "motion": 0, "parent": null, "position": { @@ -19494,32 +19494,32 @@ } ], { - "x": -0.9238414250006175, - "y": -0.38277541908125257 + "x": -0.92384, + "y": -0.38278 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38277541908125257, - "y": -0.9238414250006175 + "x": -0.38278, + "y": -0.92384 }, { "x": 0, "y": -1 }, { - "x": 0.38277541908125257, - "y": -0.9238414250006175 + "x": 0.38278, + "y": -0.92384 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238414250006175, - "y": -0.38277541908125257 + "x": 0.92384, + "y": -0.38278 }, { "x": 1, @@ -19534,12 +19534,12 @@ } }, { - "x": 362.3659999999999, - "y": 127.90999999999997 + "x": 362.366, + "y": 127.91 }, { - "x": 332.6719999999999, - "y": 98.21599999999998 + "x": 332.672, + "y": 98.216 }, { "category": 1, @@ -19556,16 +19556,16 @@ "y": 0 }, { - "x": 347.5189999999999, - "y": 113.06299999999997 + "x": 347.519, + "y": 113.063 }, { "x": 0, "y": 0 }, { - "x": 347.5189999999999, - "y": 113.06299999999997 + "x": 347.519, + "y": 113.063 }, { "fillStyle": "#FF6B6B", @@ -19638,127 +19638,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 362.3659999999999, - "y": 116.01599999999998 + "x": 362.366, + "y": 116.016 }, { "body": null, "index": 1, "isInternal": false, - "x": 360.1049999999999, - "y": 121.47299999999997 + "x": 360.105, + "y": 121.473 }, { "body": null, "index": 2, "isInternal": false, - "x": 355.9289999999999, - "y": 125.64899999999997 + "x": 355.929, + "y": 125.649 }, { "body": null, "index": 3, "isInternal": false, - "x": 350.47199999999987, - "y": 127.90999999999997 + "x": 350.472, + "y": 127.91 }, { "body": null, "index": 4, "isInternal": false, - "x": 344.5659999999999, - "y": 127.90999999999997 + "x": 344.566, + "y": 127.91 }, { "body": null, "index": 5, "isInternal": false, - "x": 339.10899999999987, - "y": 125.64899999999997 + "x": 339.109, + "y": 125.649 }, { "body": null, "index": 6, "isInternal": false, - "x": 334.9329999999999, - "y": 121.47299999999997 + "x": 334.933, + "y": 121.473 }, { "body": null, "index": 7, "isInternal": false, - "x": 332.6719999999999, - "y": 116.01599999999998 + "x": 332.672, + "y": 116.016 }, { "body": null, "index": 8, "isInternal": false, - "x": 332.6719999999999, - "y": 110.10999999999997 + "x": 332.672, + "y": 110.11 }, { "body": null, "index": 9, "isInternal": false, - "x": 334.9329999999999, - "y": 104.65299999999998 + "x": 334.933, + "y": 104.653 }, { "body": null, "index": 10, "isInternal": false, - "x": 339.10899999999987, - "y": 100.47699999999998 + "x": 339.109, + "y": 100.477 }, { "body": null, "index": 11, "isInternal": false, - "x": 344.5659999999999, - "y": 98.21599999999998 + "x": 344.566, + "y": 98.216 }, { "body": null, "index": 12, "isInternal": false, - "x": 350.47199999999987, - "y": 98.21599999999998 + "x": 350.472, + "y": 98.216 }, { "body": null, "index": 13, "isInternal": false, - "x": 355.9289999999999, - "y": 100.47699999999998 + "x": 355.929, + "y": 100.477 }, { "body": null, "index": 14, "isInternal": false, - "x": 360.1049999999999, - "y": 104.65299999999998 + "x": 360.105, + "y": 104.653 }, { "body": null, "index": 15, "isInternal": false, - "x": 362.3659999999999, - "y": 110.10999999999997 + "x": 362.366, + "y": 110.11 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 525.421234, + "area": 525.42123, "axes": { "#": 2202 }, "bounds": { "#": 2210 }, - "circleRadius": 13.152649176954732, + "circleRadius": 13.15265, "collisionFilter": { "#": 2213 }, @@ -19773,13 +19773,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 175.79059459614115, - "inverseInertia": 0.00568858648153154, - "inverseMass": 1.903234843379017, + "inertia": 175.79059, + "inverseInertia": 0.00569, + "inverseMass": 1.90323, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5254212340000001, + "mass": 0.52542, "motion": 0, "parent": null, "position": { @@ -19834,28 +19834,28 @@ } ], { - "x": -0.9009571503073934, - "y": -0.43390807011391347 + "x": -0.90096, + "y": -0.43391 }, { - "x": -0.6234649211973956, - "y": -0.7818513234856901 + "x": -0.62346, + "y": -0.78185 }, { - "x": -0.22258823397227795, - "y": -0.9749125489484186 + "x": -0.22259, + "y": -0.97491 }, { - "x": 0.22258823397227795, - "y": -0.9749125489484186 + "x": 0.22259, + "y": -0.97491 }, { - "x": 0.6234649211973956, - "y": -0.7818513234856901 + "x": 0.62346, + "y": -0.78185 }, { - "x": 0.9009571503073934, - "y": -0.43390807011391347 + "x": 0.90096, + "y": -0.43391 }, { "x": 1, @@ -19870,12 +19870,12 @@ } }, { - "x": 388.01199999999983, - "y": 124.52199999999999 + "x": 388.012, + "y": 124.522 }, { - "x": 362.3659999999999, - "y": 98.21599999999998 + "x": 362.366, + "y": 98.216 }, { "category": 1, @@ -19892,16 +19892,16 @@ "y": 0 }, { - "x": 375.18899999999985, - "y": 111.36899999999999 + "x": 375.189, + "y": 111.369 }, { "x": 0, "y": 0 }, { - "x": 375.18899999999985, - "y": 111.36899999999999 + "x": 375.189, + "y": 111.369 }, { "fillStyle": "#C7F464", @@ -19968,113 +19968,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 388.01199999999983, - "y": 114.29599999999999 + "x": 388.012, + "y": 114.296 }, { "body": null, "index": 1, "isInternal": false, - "x": 385.47199999999987, - "y": 119.56999999999998 + "x": 385.472, + "y": 119.57 }, { "body": null, "index": 2, "isInternal": false, - "x": 380.89599999999984, - "y": 123.21899999999998 + "x": 380.896, + "y": 123.219 }, { "body": null, "index": 3, "isInternal": false, - "x": 375.18899999999985, - "y": 124.52199999999999 + "x": 375.189, + "y": 124.522 }, { "body": null, "index": 4, "isInternal": false, - "x": 369.48199999999986, - "y": 123.21899999999998 + "x": 369.482, + "y": 123.219 }, { "body": null, "index": 5, "isInternal": false, - "x": 364.90599999999984, - "y": 119.56999999999998 + "x": 364.906, + "y": 119.57 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.3659999999999, - "y": 114.29599999999999 + "x": 362.366, + "y": 114.296 }, { "body": null, "index": 7, "isInternal": false, - "x": 362.3659999999999, - "y": 108.44199999999998 + "x": 362.366, + "y": 108.442 }, { "body": null, "index": 8, "isInternal": false, - "x": 364.90599999999984, - "y": 103.16799999999999 + "x": 364.906, + "y": 103.168 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.48199999999986, - "y": 99.51899999999999 + "x": 369.482, + "y": 99.519 }, { "body": null, "index": 10, "isInternal": false, - "x": 375.18899999999985, - "y": 98.21599999999998 + "x": 375.189, + "y": 98.216 }, { "body": null, "index": 11, "isInternal": false, - "x": 380.89599999999984, - "y": 99.51899999999999 + "x": 380.896, + "y": 99.519 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.47199999999987, - "y": 103.16799999999999 + "x": 385.472, + "y": 103.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 388.01199999999983, - "y": 108.44199999999998 + "x": 388.012, + "y": 108.442 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 872.5480859999998, + "area": 872.54809, "axes": { "#": 2238 }, "bounds": { "#": 2248 }, - "circleRadius": 16.836376886145406, + "circleRadius": 16.83638, "collisionFilter": { "#": 2251 }, @@ -20089,13 +20089,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 484.72476647781866, - "inverseInertia": 0.002063026420676528, - "inverseMass": 1.14606864199803, + "inertia": 484.72477, + "inverseInertia": 0.00206, + "inverseMass": 1.14607, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8725480859999998, + "mass": 0.87255, "motion": 0, "parent": null, "position": { @@ -20156,36 +20156,36 @@ } ], { - "x": -0.9396735154300404, - "y": -0.3420726302985222 + "x": -0.93967, + "y": -0.34207 }, { - "x": -0.7659877878867642, - "y": -0.6428551227207739 + "x": -0.76599, + "y": -0.64286 }, { - "x": -0.5000382510050222, - "y": -0.8660033184300384 + "x": -0.50004, + "y": -0.866 }, { - "x": -0.17359994787229877, - "y": -0.984816256008569 + "x": -0.1736, + "y": -0.98482 }, { - "x": 0.17359994787229877, - "y": -0.984816256008569 + "x": 0.1736, + "y": -0.98482 }, { - "x": 0.5000382510050222, - "y": -0.8660033184300384 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7659877878867642, - "y": -0.6428551227207739 + "x": 0.76599, + "y": -0.64286 }, { - "x": 0.9396735154300404, - "y": -0.3420726302985222 + "x": 0.93967, + "y": -0.34207 }, { "x": 1, @@ -20200,12 +20200,12 @@ } }, { - "x": 421.17399999999986, - "y": 131.88799999999998 + "x": 421.174, + "y": 131.888 }, { - "x": 388.01199999999983, - "y": 98.21599999999998 + "x": 388.012, + "y": 98.216 }, { "category": 1, @@ -20222,16 +20222,16 @@ "y": 0 }, { - "x": 404.59299999999985, - "y": 115.05199999999998 + "x": 404.593, + "y": 115.052 }, { "x": 0, "y": 0 }, { - "x": 404.59299999999985, - "y": 115.05199999999998 + "x": 404.593, + "y": 115.052 }, { "fillStyle": "#FF6B6B", @@ -20310,141 +20310,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 421.17399999999986, - "y": 117.97599999999998 + "x": 421.174, + "y": 117.976 }, { "body": null, "index": 1, "isInternal": false, - "x": 419.17399999999986, - "y": 123.46999999999998 + "x": 419.174, + "y": 123.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 415.41499999999985, - "y": 127.94899999999998 + "x": 415.415, + "y": 127.949 }, { "body": null, "index": 3, "isInternal": false, - "x": 410.35099999999983, + "x": 410.351, "y": 130.873 }, { "body": null, "index": 4, "isInternal": false, - "x": 404.59299999999985, - "y": 131.88799999999998 + "x": 404.593, + "y": 131.888 }, { "body": null, "index": 5, "isInternal": false, - "x": 398.83499999999987, + "x": 398.835, "y": 130.873 }, { "body": null, "index": 6, "isInternal": false, - "x": 393.77099999999984, - "y": 127.94899999999998 + "x": 393.771, + "y": 127.949 }, { "body": null, "index": 7, "isInternal": false, - "x": 390.01199999999983, - "y": 123.46999999999998 + "x": 390.012, + "y": 123.47 }, { "body": null, "index": 8, "isInternal": false, - "x": 388.01199999999983, - "y": 117.97599999999998 + "x": 388.012, + "y": 117.976 }, { "body": null, "index": 9, "isInternal": false, - "x": 388.01199999999983, - "y": 112.12799999999997 + "x": 388.012, + "y": 112.128 }, { "body": null, "index": 10, "isInternal": false, - "x": 390.01199999999983, - "y": 106.63399999999997 + "x": 390.012, + "y": 106.634 }, { "body": null, "index": 11, "isInternal": false, - "x": 393.77099999999984, - "y": 102.15499999999997 + "x": 393.771, + "y": 102.155 }, { "body": null, "index": 12, "isInternal": false, - "x": 398.83499999999987, - "y": 99.23099999999998 + "x": 398.835, + "y": 99.231 }, { "body": null, "index": 13, "isInternal": false, - "x": 404.59299999999985, - "y": 98.21599999999998 + "x": 404.593, + "y": 98.216 }, { "body": null, "index": 14, "isInternal": false, - "x": 410.35099999999983, - "y": 99.23099999999998 + "x": 410.351, + "y": 99.231 }, { "body": null, "index": 15, "isInternal": false, - "x": 415.41499999999985, - "y": 102.15499999999997 + "x": 415.415, + "y": 102.155 }, { "body": null, "index": 16, "isInternal": false, - "x": 419.17399999999986, - "y": 106.63399999999997 + "x": 419.174, + "y": 106.634 }, { "body": null, "index": 17, "isInternal": false, - "x": 421.17399999999986, - "y": 112.12799999999997 + "x": 421.174, + "y": 112.128 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 934.4759899999998, + "area": 934.47599, "axes": { "#": 2280 }, "bounds": { "#": 2290 }, - "circleRadius": 17.423396776406037, + "circleRadius": 17.4234, "collisionFilter": { "#": 2293 }, @@ -20459,13 +20459,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 555.971799948351, - "inverseInertia": 0.00179865237785963, - "inverseMass": 1.0701184521605527, + "inertia": 555.9718, + "inverseInertia": 0.0018, + "inverseMass": 1.07012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9344759899999998, + "mass": 0.93448, "motion": 0, "parent": null, "position": { @@ -20526,36 +20526,36 @@ } ], { - "x": -0.9396679073788373, - "y": -0.3420880352223341 + "x": -0.93967, + "y": -0.34209 }, { - "x": -0.7660628997995242, - "y": -0.6427656132298492 + "x": -0.76606, + "y": -0.64277 }, { - "x": -0.5000132900139428, - "y": -0.8660177306553445 + "x": -0.50001, + "y": -0.86602 }, { - "x": -0.17353077193722832, - "y": -0.9848284475942345 + "x": -0.17353, + "y": -0.98483 }, { - "x": 0.17353077193722832, - "y": -0.9848284475942345 + "x": 0.17353, + "y": -0.98483 }, { - "x": 0.5000132900139428, - "y": -0.8660177306553445 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.7660628997995242, - "y": -0.6427656132298492 + "x": 0.76606, + "y": -0.64277 }, { - "x": 0.9396679073788373, - "y": -0.3420880352223341 + "x": 0.93967, + "y": -0.34209 }, { "x": 1, @@ -20570,12 +20570,12 @@ } }, { - "x": 455.49199999999985, - "y": 133.06199999999998 + "x": 455.492, + "y": 133.062 }, { - "x": 421.17399999999986, - "y": 98.21599999999998 + "x": 421.174, + "y": 98.216 }, { "category": 1, @@ -20592,16 +20592,16 @@ "y": 0 }, { - "x": 438.33299999999986, - "y": 115.63899999999998 + "x": 438.333, + "y": 115.639 }, { "x": 0, "y": 0 }, { - "x": 438.33299999999986, - "y": 115.63899999999998 + "x": 438.333, + "y": 115.639 }, { "fillStyle": "#FF6B6B", @@ -20680,141 +20680,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 455.49199999999985, - "y": 118.66499999999998 + "x": 455.492, + "y": 118.665 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.42199999999985, - "y": 124.35099999999998 + "x": 453.422, + "y": 124.351 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.53299999999984, + "x": 449.533, "y": 128.986 }, { "body": null, "index": 3, "isInternal": false, - "x": 444.29199999999986, + "x": 444.292, "y": 132.012 }, { "body": null, "index": 4, "isInternal": false, - "x": 438.33299999999986, - "y": 133.06199999999998 + "x": 438.333, + "y": 133.062 }, { "body": null, "index": 5, "isInternal": false, - "x": 432.37399999999985, + "x": 432.374, "y": 132.012 }, { "body": null, "index": 6, "isInternal": false, - "x": 427.13299999999987, + "x": 427.133, "y": 128.986 }, { "body": null, "index": 7, "isInternal": false, - "x": 423.24399999999986, - "y": 124.35099999999998 + "x": 423.244, + "y": 124.351 }, { "body": null, "index": 8, "isInternal": false, - "x": 421.17399999999986, - "y": 118.66499999999998 + "x": 421.174, + "y": 118.665 }, { "body": null, "index": 9, "isInternal": false, - "x": 421.17399999999986, - "y": 112.61299999999999 + "x": 421.174, + "y": 112.613 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.24399999999986, - "y": 106.92699999999998 + "x": 423.244, + "y": 106.927 }, { "body": null, "index": 11, "isInternal": false, - "x": 427.13299999999987, - "y": 102.29199999999999 + "x": 427.133, + "y": 102.292 }, { "body": null, "index": 12, "isInternal": false, - "x": 432.37399999999985, - "y": 99.26599999999998 + "x": 432.374, + "y": 99.266 }, { "body": null, "index": 13, "isInternal": false, - "x": 438.33299999999986, - "y": 98.21599999999998 + "x": 438.333, + "y": 98.216 }, { "body": null, "index": 14, "isInternal": false, - "x": 444.29199999999986, - "y": 99.26599999999998 + "x": 444.292, + "y": 99.266 }, { "body": null, "index": 15, "isInternal": false, - "x": 449.53299999999984, - "y": 102.29199999999999 + "x": 449.533, + "y": 102.292 }, { "body": null, "index": 16, "isInternal": false, - "x": 453.42199999999985, - "y": 106.92699999999998 + "x": 453.422, + "y": 106.927 }, { "body": null, "index": 17, "isInternal": false, - "x": 455.49199999999985, - "y": 112.61299999999999 + "x": 455.492, + "y": 112.613 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 877.9976040000001, + "area": 877.9976, "axes": { "#": 2322 }, "bounds": { "#": 2332 }, - "circleRadius": 16.889017489711932, + "circleRadius": 16.88902, "collisionFilter": { "#": 2335 }, @@ -20829,13 +20829,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 490.79839163286067, - "inverseInertia": 0.002037496489491443, - "inverseMass": 1.1389552721376217, + "inertia": 490.79839, + "inverseInertia": 0.00204, + "inverseMass": 1.13896, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8779976040000002, + "mass": 0.878, "motion": 0, "parent": null, "position": { @@ -20896,36 +20896,36 @@ } ], { - "x": -0.9397037941413872, - "y": -0.3419894432234442 + "x": -0.9397, + "y": -0.34199 }, { - "x": -0.7660507096677773, - "y": -0.6427801414305631 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.4998798798502105, - "y": -0.8660947440788099 + "x": -0.49988, + "y": -0.86609 }, { - "x": -0.17373670193003282, - "y": -0.9847921396936893 + "x": -0.17374, + "y": -0.98479 }, { - "x": 0.17373670193003282, - "y": -0.9847921396936893 + "x": 0.17374, + "y": -0.98479 }, { - "x": 0.4998798798502105, - "y": -0.8660947440788099 + "x": 0.49988, + "y": -0.86609 }, { - "x": 0.7660507096677773, - "y": -0.6427801414305631 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9397037941413872, - "y": -0.3419894432234442 + "x": 0.9397, + "y": -0.34199 }, { "x": 1, @@ -20940,12 +20940,12 @@ } }, { - "x": 488.75599999999986, - "y": 131.99399999999997 + "x": 488.756, + "y": 131.994 }, { - "x": 455.49199999999985, - "y": 98.21599999999998 + "x": 455.492, + "y": 98.216 }, { "category": 1, @@ -20962,16 +20962,16 @@ "y": 0 }, { - "x": 472.12399999999985, - "y": 115.10499999999998 + "x": 472.124, + "y": 115.105 }, { "x": 0, "y": 0 }, { - "x": 472.12399999999985, - "y": 115.10499999999998 + "x": 472.124, + "y": 115.105 }, { "fillStyle": "#FF6B6B", @@ -21050,141 +21050,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 488.75599999999986, - "y": 118.03799999999997 + "x": 488.756, + "y": 118.038 }, { "body": null, "index": 1, "isInternal": false, - "x": 486.74999999999983, - "y": 123.54999999999997 + "x": 486.75, + "y": 123.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 482.97999999999985, - "y": 128.04299999999998 + "x": 482.98, + "y": 128.043 }, { "body": null, "index": 3, "isInternal": false, - "x": 477.89999999999986, - "y": 130.97499999999997 + "x": 477.9, + "y": 130.975 }, { "body": null, "index": 4, "isInternal": false, - "x": 472.12399999999985, - "y": 131.99399999999997 + "x": 472.124, + "y": 131.994 }, { "body": null, "index": 5, "isInternal": false, - "x": 466.34799999999984, - "y": 130.97499999999997 + "x": 466.348, + "y": 130.975 }, { "body": null, "index": 6, "isInternal": false, - "x": 461.26799999999986, - "y": 128.04299999999998 + "x": 461.268, + "y": 128.043 }, { "body": null, "index": 7, "isInternal": false, - "x": 457.4979999999999, - "y": 123.54999999999997 + "x": 457.498, + "y": 123.55 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.49199999999985, - "y": 118.03799999999997 + "x": 455.492, + "y": 118.038 }, { "body": null, "index": 9, "isInternal": false, - "x": 455.49199999999985, - "y": 112.17199999999998 + "x": 455.492, + "y": 112.172 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.4979999999999, - "y": 106.65999999999998 + "x": 457.498, + "y": 106.66 }, { "body": null, "index": 11, "isInternal": false, - "x": 461.26799999999986, - "y": 102.16699999999997 + "x": 461.268, + "y": 102.167 }, { "body": null, "index": 12, "isInternal": false, - "x": 466.34799999999984, - "y": 99.23499999999997 + "x": 466.348, + "y": 99.235 }, { "body": null, "index": 13, "isInternal": false, - "x": 472.12399999999985, - "y": 98.21599999999998 + "x": 472.124, + "y": 98.216 }, { "body": null, "index": 14, "isInternal": false, - "x": 477.89999999999986, - "y": 99.23499999999997 + "x": 477.9, + "y": 99.235 }, { "body": null, "index": 15, "isInternal": false, - "x": 482.97999999999985, - "y": 102.16699999999997 + "x": 482.98, + "y": 102.167 }, { "body": null, "index": 16, "isInternal": false, - "x": 486.74999999999983, - "y": 106.65999999999998 + "x": 486.75, + "y": 106.66 }, { "body": null, "index": 17, "isInternal": false, - "x": 488.75599999999986, - "y": 112.17199999999998 + "x": 488.756, + "y": 112.172 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 466.51646800000003, + "area": 466.51647, "axes": { "#": 2364 }, "bounds": { "#": 2372 }, - "circleRadius": 12.393732853223593, + "circleRadius": 12.39373, "collisionFilter": { "#": 2375 }, @@ -21199,13 +21199,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 138.58440234768833, - "inverseInertia": 0.007215819262914912, - "inverseMass": 2.1435470526626723, + "inertia": 138.5844, + "inverseInertia": 0.00722, + "inverseMass": 2.14355, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.466516468, + "mass": 0.46652, "motion": 0, "parent": null, "position": { @@ -21260,28 +21260,28 @@ } ], { - "x": -0.9009649185072199, - "y": -0.43389194002571496 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6234340924457695, - "y": -0.781875905995523 + "x": -0.62343, + "y": -0.78188 }, { - "x": -0.22264756782844594, - "y": -0.974899000173904 + "x": -0.22265, + "y": -0.9749 }, { - "x": 0.22264756782844594, - "y": -0.974899000173904 + "x": 0.22265, + "y": -0.9749 }, { - "x": 0.6234340924457695, - "y": -0.781875905995523 + "x": 0.62343, + "y": -0.78188 }, { - "x": 0.9009649185072199, - "y": -0.43389194002571496 + "x": 0.90096, + "y": -0.43389 }, { "x": 1, @@ -21296,12 +21296,12 @@ } }, { - "x": 512.9219999999999, - "y": 123.00399999999999 + "x": 512.922, + "y": 123.004 }, { - "x": 488.75599999999986, - "y": 98.21599999999998 + "x": 488.756, + "y": 98.216 }, { "category": 1, @@ -21318,16 +21318,16 @@ "y": 0 }, { - "x": 500.8389999999999, - "y": 110.60999999999999 + "x": 500.839, + "y": 110.61 }, { "x": 0, "y": 0 }, { - "x": 500.8389999999999, - "y": 110.60999999999999 + "x": 500.839, + "y": 110.61 }, { "fillStyle": "#FF6B6B", @@ -21394,113 +21394,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.9219999999999, - "y": 113.36799999999998 + "x": 512.922, + "y": 113.368 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.5289999999999, - "y": 118.33699999999999 + "x": 510.529, + "y": 118.337 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.2159999999999, - "y": 121.77599999999998 + "x": 506.216, + "y": 121.776 }, { "body": null, "index": 3, "isInternal": false, - "x": 500.8389999999999, - "y": 123.00399999999999 + "x": 500.839, + "y": 123.004 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.4619999999999, - "y": 121.77599999999998 + "x": 495.462, + "y": 121.776 }, { "body": null, "index": 5, "isInternal": false, - "x": 491.1489999999999, - "y": 118.33699999999999 + "x": 491.149, + "y": 118.337 }, { "body": null, "index": 6, "isInternal": false, - "x": 488.75599999999986, - "y": 113.36799999999998 + "x": 488.756, + "y": 113.368 }, { "body": null, "index": 7, "isInternal": false, - "x": 488.75599999999986, - "y": 107.85199999999999 + "x": 488.756, + "y": 107.852 }, { "body": null, "index": 8, "isInternal": false, - "x": 491.1489999999999, - "y": 102.88299999999998 + "x": 491.149, + "y": 102.883 }, { "body": null, "index": 9, "isInternal": false, - "x": 495.4619999999999, - "y": 99.44399999999999 + "x": 495.462, + "y": 99.444 }, { "body": null, "index": 10, "isInternal": false, - "x": 500.8389999999999, - "y": 98.21599999999998 + "x": 500.839, + "y": 98.216 }, { "body": null, "index": 11, "isInternal": false, - "x": 506.2159999999999, - "y": 99.44399999999999 + "x": 506.216, + "y": 99.444 }, { "body": null, "index": 12, "isInternal": false, - "x": 510.5289999999999, - "y": 102.88299999999998 + "x": 510.529, + "y": 102.883 }, { "body": null, "index": 13, "isInternal": false, - "x": 512.9219999999999, - "y": 107.85199999999999 + "x": 512.922, + "y": 107.852 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 931.3309979999999, + "area": 931.331, "axes": { "#": 2400 }, "bounds": { "#": 2410 }, - "circleRadius": 17.394332990397807, + "circleRadius": 17.39433, "collisionFilter": { "#": 2413 }, @@ -21515,13 +21515,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 552.235835577075, - "inverseInertia": 0.0018108205508884092, - "inverseMass": 1.073732112586679, + "inertia": 552.23584, + "inverseInertia": 0.00181, + "inverseMass": 1.07373, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.931330998, + "mass": 0.93133, "motion": 0, "parent": null, "position": { @@ -21582,36 +21582,36 @@ } ], { - "x": -0.9397063998567887, - "y": -0.34198228326653596 + "x": -0.93971, + "y": -0.34198 }, { - "x": -0.7660732221405516, - "y": -0.6427533106248406 + "x": -0.76607, + "y": -0.64275 }, { - "x": -0.4999135130815133, - "y": -0.8660753312723436 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.17365312127940863, - "y": -0.984806881307152 + "x": -0.17365, + "y": -0.98481 }, { - "x": 0.17365312127940863, - "y": -0.984806881307152 + "x": 0.17365, + "y": -0.98481 }, { - "x": 0.4999135130815133, - "y": -0.8660753312723436 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660732221405516, - "y": -0.6427533106248406 + "x": 0.76607, + "y": -0.64275 }, { - "x": 0.9397063998567887, - "y": -0.34198228326653596 + "x": 0.93971, + "y": -0.34198 }, { "x": 1, @@ -21626,12 +21626,12 @@ } }, { - "x": 547.1819999999999, + "x": 547.182, "y": 133.004 }, { - "x": 512.9219999999999, - "y": 98.21599999999998 + "x": 512.922, + "y": 98.216 }, { "category": 1, @@ -21648,16 +21648,16 @@ "y": 0 }, { - "x": 530.0519999999999, - "y": 115.60999999999999 + "x": 530.052, + "y": 115.61 }, { "x": 0, "y": 0 }, { - "x": 530.0519999999999, - "y": 115.60999999999999 + "x": 530.052, + "y": 115.61 }, { "fillStyle": "#FF6B6B", @@ -21736,15 +21736,15 @@ "body": null, "index": 0, "isInternal": false, - "x": 547.1819999999999, - "y": 118.62999999999998 + "x": 547.182, + "y": 118.63 }, { "body": null, "index": 1, "isInternal": false, - "x": 545.1159999999999, - "y": 124.30699999999999 + "x": 545.116, + "y": 124.307 }, { "body": null, @@ -21757,120 +21757,120 @@ "body": null, "index": 3, "isInternal": false, - "x": 536.0009999999999, - "y": 131.95499999999998 + "x": 536.001, + "y": 131.955 }, { "body": null, "index": 4, "isInternal": false, - "x": 530.0519999999999, + "x": 530.052, "y": 133.004 }, { "body": null, "index": 5, "isInternal": false, - "x": 524.1029999999998, - "y": 131.95499999999998 + "x": 524.103, + "y": 131.955 }, { "body": null, "index": 6, "isInternal": false, - "x": 518.8709999999999, + "x": 518.871, "y": 128.935 }, { "body": null, "index": 7, "isInternal": false, - "x": 514.9879999999998, - "y": 124.30699999999999 + "x": 514.988, + "y": 124.307 }, { "body": null, "index": 8, "isInternal": false, - "x": 512.9219999999999, - "y": 118.62999999999998 + "x": 512.922, + "y": 118.63 }, { "body": null, "index": 9, "isInternal": false, - "x": 512.9219999999999, - "y": 112.58999999999999 + "x": 512.922, + "y": 112.59 }, { "body": null, "index": 10, "isInternal": false, - "x": 514.9879999999998, - "y": 106.91299999999998 + "x": 514.988, + "y": 106.913 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.8709999999999, - "y": 102.28499999999998 + "x": 518.871, + "y": 102.285 }, { "body": null, "index": 12, "isInternal": false, - "x": 524.1029999999998, - "y": 99.26499999999999 + "x": 524.103, + "y": 99.265 }, { "body": null, "index": 13, "isInternal": false, - "x": 530.0519999999999, - "y": 98.21599999999998 + "x": 530.052, + "y": 98.216 }, { "body": null, "index": 14, "isInternal": false, - "x": 536.0009999999999, - "y": 99.26499999999999 + "x": 536.001, + "y": 99.265 }, { "body": null, "index": 15, "isInternal": false, "x": 541.233, - "y": 102.28499999999998 + "y": 102.285 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.1159999999999, - "y": 106.91299999999998 + "x": 545.116, + "y": 106.913 }, { "body": null, "index": 17, "isInternal": false, - "x": 547.1819999999999, - "y": 112.58999999999999 + "x": 547.182, + "y": 112.59 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1165.6303160000004, + "area": 1165.63032, "axes": { "#": 2442 }, "bounds": { "#": 2453 }, - "circleRadius": 19.42168209876543, + "circleRadius": 19.42168, "collisionFilter": { "#": 2456 }, @@ -21885,13 +21885,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 865.0188515831029, - "inverseInertia": 0.001156044169638457, - "inverseMass": 0.8579049345864813, + "inertia": 865.01885, + "inverseInertia": 0.00116, + "inverseMass": 0.8579, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1656303160000006, + "mass": 1.16563, "motion": 0, "parent": null, "position": { @@ -21955,40 +21955,40 @@ } ], { - "x": -0.951042534033901, - "y": -0.30906002403801114 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8089921923046451, - "y": -0.5878193878991439 + "x": -0.80899, + "y": -0.58782 }, { - "x": -0.5878193878991439, - "y": -0.8089921923046451 + "x": -0.58782, + "y": -0.80899 }, { - "x": -0.30906002403801114, - "y": -0.951042534033901 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30906002403801114, - "y": -0.951042534033901 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5878193878991439, - "y": -0.8089921923046451 + "x": 0.58782, + "y": -0.80899 }, { - "x": 0.8089921923046451, - "y": -0.5878193878991439 + "x": 0.80899, + "y": -0.58782 }, { - "x": 0.951042534033901, - "y": -0.30906002403801114 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -22003,12 +22003,12 @@ } }, { - "x": 585.5479999999999, - "y": 136.58199999999997 + "x": 585.548, + "y": 136.582 }, { - "x": 547.1819999999999, - "y": 98.21599999999998 + "x": 547.182, + "y": 98.216 }, { "category": 1, @@ -22025,16 +22025,16 @@ "y": 0 }, { - "x": 566.3649999999999, - "y": 117.39899999999997 + "x": 566.365, + "y": 117.399 }, { "x": 0, "y": 0 }, { - "x": 566.3649999999999, - "y": 117.39899999999997 + "x": 566.365, + "y": 117.399 }, { "fillStyle": "#4ECDC4", @@ -22119,155 +22119,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 585.5479999999999, - "y": 120.43699999999997 + "x": 585.548, + "y": 120.437 }, { "body": null, "index": 1, "isInternal": false, - "x": 583.6699999999998, - "y": 126.21599999999998 + "x": 583.67, + "y": 126.216 }, { "body": null, "index": 2, "isInternal": false, - "x": 580.0979999999998, - "y": 131.13199999999998 + "x": 580.098, + "y": 131.132 }, { "body": null, "index": 3, "isInternal": false, - "x": 575.1819999999999, - "y": 134.70399999999998 + "x": 575.182, + "y": 134.704 }, { "body": null, "index": 4, "isInternal": false, - "x": 569.4029999999999, - "y": 136.58199999999997 + "x": 569.403, + "y": 136.582 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.3269999999999, - "y": 136.58199999999997 + "x": 563.327, + "y": 136.582 }, { "body": null, "index": 6, "isInternal": false, - "x": 557.5479999999999, - "y": 134.70399999999998 + "x": 557.548, + "y": 134.704 }, { "body": null, "index": 7, "isInternal": false, "x": 552.632, - "y": 131.13199999999998 + "y": 131.132 }, { "body": null, "index": 8, "isInternal": false, "x": 549.06, - "y": 126.21599999999998 + "y": 126.216 }, { "body": null, "index": 9, "isInternal": false, - "x": 547.1819999999999, - "y": 120.43699999999997 + "x": 547.182, + "y": 120.437 }, { "body": null, "index": 10, "isInternal": false, - "x": 547.1819999999999, - "y": 114.36099999999998 + "x": 547.182, + "y": 114.361 }, { "body": null, "index": 11, "isInternal": false, "x": 549.06, - "y": 108.58199999999997 + "y": 108.582 }, { "body": null, "index": 12, "isInternal": false, "x": 552.632, - "y": 103.66599999999997 + "y": 103.666 }, { "body": null, "index": 13, "isInternal": false, - "x": 557.5479999999999, - "y": 100.09399999999997 + "x": 557.548, + "y": 100.094 }, { "body": null, "index": 14, "isInternal": false, - "x": 563.3269999999999, - "y": 98.21599999999998 + "x": 563.327, + "y": 98.216 }, { "body": null, "index": 15, "isInternal": false, - "x": 569.4029999999999, - "y": 98.21599999999998 + "x": 569.403, + "y": 98.216 }, { "body": null, "index": 16, "isInternal": false, - "x": 575.1819999999999, - "y": 100.09399999999997 + "x": 575.182, + "y": 100.094 }, { "body": null, "index": 17, "isInternal": false, - "x": 580.0979999999998, - "y": 103.66599999999997 + "x": 580.098, + "y": 103.666 }, { "body": null, "index": 18, "isInternal": false, - "x": 583.6699999999998, - "y": 108.58199999999997 + "x": 583.67, + "y": 108.582 }, { "body": null, "index": 19, "isInternal": false, - "x": 585.5479999999999, - "y": 114.36099999999998 + "x": 585.548, + "y": 114.361 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 645.906722, + "area": 645.90672, "axes": { "#": 2487 }, "bounds": { "#": 2496 }, - "circleRadius": 14.525162894375857, + "circleRadius": 14.52516, "collisionFilter": { "#": 2499 }, @@ -22282,13 +22282,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 265.6306452069542, - "inverseInertia": 0.003764625874476549, - "inverseMass": 1.5482111672465302, + "inertia": 265.63065, + "inverseInertia": 0.00376, + "inverseMass": 1.54821, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.645906722, + "mass": 0.64591, "motion": 0, "parent": null, "position": { @@ -22346,32 +22346,32 @@ } ], { - "x": -0.9238684412302941, - "y": -0.3827102079886379 + "x": -0.92387, + "y": -0.38271 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3827102079886379, - "y": -0.9238684412302941 + "x": -0.38271, + "y": -0.92387 }, { "x": 0, "y": -1 }, { - "x": 0.3827102079886379, - "y": -0.9238684412302941 + "x": 0.38271, + "y": -0.92387 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238684412302941, - "y": -0.3827102079886379 + "x": 0.92387, + "y": -0.38271 }, { "x": 1, @@ -22386,12 +22386,12 @@ } }, { - "x": 614.0399999999998, - "y": 126.70799999999997 + "x": 614.04, + "y": 126.708 }, { - "x": 585.5479999999999, - "y": 98.21599999999998 + "x": 585.548, + "y": 98.216 }, { "category": 1, @@ -22408,16 +22408,16 @@ "y": 0 }, { - "x": 599.7939999999999, - "y": 112.46199999999997 + "x": 599.794, + "y": 112.462 }, { "x": 0, "y": 0 }, { - "x": 599.7939999999999, - "y": 112.46199999999997 + "x": 599.794, + "y": 112.462 }, { "fillStyle": "#556270", @@ -22490,127 +22490,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 614.0399999999998, - "y": 115.29599999999998 + "x": 614.04, + "y": 115.296 }, { "body": null, "index": 1, "isInternal": false, - "x": 611.8709999999999, - "y": 120.53199999999997 + "x": 611.871, + "y": 120.532 }, { "body": null, "index": 2, "isInternal": false, - "x": 607.8639999999999, - "y": 124.53899999999997 + "x": 607.864, + "y": 124.539 }, { "body": null, "index": 3, "isInternal": false, - "x": 602.6279999999998, - "y": 126.70799999999997 + "x": 602.628, + "y": 126.708 }, { "body": null, "index": 4, "isInternal": false, - "x": 596.9599999999999, - "y": 126.70799999999997 + "x": 596.96, + "y": 126.708 }, { "body": null, "index": 5, "isInternal": false, - "x": 591.7239999999998, - "y": 124.53899999999997 + "x": 591.724, + "y": 124.539 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.7169999999999, - "y": 120.53199999999997 + "x": 587.717, + "y": 120.532 }, { "body": null, "index": 7, "isInternal": false, - "x": 585.5479999999999, - "y": 115.29599999999998 + "x": 585.548, + "y": 115.296 }, { "body": null, "index": 8, "isInternal": false, - "x": 585.5479999999999, - "y": 109.62799999999997 + "x": 585.548, + "y": 109.628 }, { "body": null, "index": 9, "isInternal": false, - "x": 587.7169999999999, - "y": 104.39199999999998 + "x": 587.717, + "y": 104.392 }, { "body": null, "index": 10, "isInternal": false, - "x": 591.7239999999998, - "y": 100.38499999999998 + "x": 591.724, + "y": 100.385 }, { "body": null, "index": 11, "isInternal": false, - "x": 596.9599999999999, - "y": 98.21599999999998 + "x": 596.96, + "y": 98.216 }, { "body": null, "index": 12, "isInternal": false, - "x": 602.6279999999998, - "y": 98.21599999999998 + "x": 602.628, + "y": 98.216 }, { "body": null, "index": 13, "isInternal": false, - "x": 607.8639999999999, - "y": 100.38499999999998 + "x": 607.864, + "y": 100.385 }, { "body": null, "index": 14, "isInternal": false, - "x": 611.8709999999999, - "y": 104.39199999999998 + "x": 611.871, + "y": 104.392 }, { "body": null, "index": 15, "isInternal": false, - "x": 614.0399999999998, - "y": 109.62799999999997 + "x": 614.04, + "y": 109.628 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1044.3317600000003, + "area": 1044.33176, "axes": { "#": 2526 }, "bounds": { "#": 2537 }, - "circleRadius": 18.383787722908096, + "circleRadius": 18.38379, "collisionFilter": { "#": 2540 }, @@ -22625,13 +22625,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 694.3538941887333, - "inverseInertia": 0.0014401877894965598, - "inverseMass": 0.9575501179816648, + "inertia": 694.35389, + "inverseInertia": 0.00144, + "inverseMass": 0.95755, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0443317600000004, + "mass": 1.04433, "motion": 0, "parent": null, "position": { @@ -22695,40 +22695,40 @@ } ], { - "x": -0.9510723935535957, - "y": -0.30896812492591236 + "x": -0.95107, + "y": -0.30897 }, { - "x": -0.8089841194218436, - "y": -0.5878304981227706 + "x": -0.80898, + "y": -0.58783 }, { - "x": -0.5878304981227706, - "y": -0.8089841194218436 + "x": -0.58783, + "y": -0.80898 }, { - "x": -0.30896812492591236, - "y": -0.9510723935535957 + "x": -0.30897, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.30896812492591236, - "y": -0.9510723935535957 + "x": 0.30897, + "y": -0.95107 }, { - "x": 0.5878304981227706, - "y": -0.8089841194218436 + "x": 0.58783, + "y": -0.80898 }, { - "x": 0.8089841194218436, - "y": -0.5878304981227706 + "x": 0.80898, + "y": -0.58783 }, { - "x": 0.9510723935535957, - "y": -0.30896812492591236 + "x": 0.95107, + "y": -0.30897 }, { "x": 1, @@ -22743,12 +22743,12 @@ } }, { - "x": 56.31399999999999, + "x": 56.314, "y": 173.056 }, { - "x": 19.999999999999996, - "y": 136.74200000000002 + "x": 20, + "y": 136.742 }, { "category": 1, @@ -22859,14 +22859,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.31399999999999, + "x": 56.314, "y": 157.775 }, { "body": null, "index": 1, "isInternal": false, - "x": 54.53699999999999, + "x": 54.537, "y": 163.245 }, { @@ -22894,78 +22894,78 @@ "body": null, "index": 5, "isInternal": false, - "x": 35.28099999999999, + "x": 35.281, "y": 173.056 }, { "body": null, "index": 6, "isInternal": false, - "x": 29.810999999999996, + "x": 29.811, "y": 171.279 }, { "body": null, "index": 7, "isInternal": false, - "x": 25.157999999999994, + "x": 25.158, "y": 167.898 }, { "body": null, "index": 8, "isInternal": false, - "x": 21.776999999999997, + "x": 21.777, "y": 163.245 }, { "body": null, "index": 9, "isInternal": false, - "x": 19.999999999999996, + "x": 20, "y": 157.775 }, { "body": null, "index": 10, "isInternal": false, - "x": 19.999999999999996, + "x": 20, "y": 152.023 }, { "body": null, "index": 11, "isInternal": false, - "x": 21.776999999999997, + "x": 21.777, "y": 146.553 }, { "body": null, "index": 12, "isInternal": false, - "x": 25.157999999999994, + "x": 25.158, "y": 141.9 }, { "body": null, "index": 13, "isInternal": false, - "x": 29.810999999999996, + "x": 29.811, "y": 138.519 }, { "body": null, "index": 14, "isInternal": false, - "x": 35.28099999999999, - "y": 136.74200000000002 + "x": 35.281, + "y": 136.742 }, { "body": null, "index": 15, "isInternal": false, "x": 41.033, - "y": 136.74200000000002 + "y": 136.742 }, { "body": null, @@ -22985,14 +22985,14 @@ "body": null, "index": 18, "isInternal": false, - "x": 54.53699999999999, + "x": 54.537, "y": 146.553 }, { "body": null, "index": 19, "isInternal": false, - "x": 56.31399999999999, + "x": 56.314, "y": 152.023 }, { @@ -23000,14 +23000,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 607.250026, + "area": 607.25003, "axes": { "#": 2571 }, "bounds": { "#": 2580 }, - "circleRadius": 14.08397633744856, + "circleRadius": 14.08398, "collisionFilter": { "#": 2583 }, @@ -23022,13 +23022,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 234.78678707670187, - "inverseInertia": 0.004259183459388252, - "inverseMass": 1.6467681468654227, + "inertia": 234.78679, + "inverseInertia": 0.00426, + "inverseMass": 1.64677, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6072500260000001, + "mass": 0.60725, "motion": 0, "parent": null, "position": { @@ -23086,32 +23086,32 @@ } ], { - "x": -0.923877104160839, - "y": -0.3826892948690653 + "x": -0.92388, + "y": -0.38269 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826892948690653, - "y": -0.923877104160839 + "x": -0.38269, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826892948690653, - "y": -0.923877104160839 + "x": 0.38269, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923877104160839, - "y": -0.3826892948690653 + "x": 0.92388, + "y": -0.38269 }, { "x": 1, @@ -23127,11 +23127,11 @@ }, { "x": 83.94, - "y": 164.36799999999997 + "y": 164.368 }, { - "x": 56.31399999999999, - "y": 136.74199999999996 + "x": 56.314, + "y": 136.742 }, { "category": 1, @@ -23149,7 +23149,7 @@ }, { "x": 70.127, - "y": 150.55499999999998 + "y": 150.555 }, { "x": 0, @@ -23157,7 +23157,7 @@ }, { "x": 70.127, - "y": 150.55499999999998 + "y": 150.555 }, { "fillStyle": "#FF6B6B", @@ -23231,14 +23231,14 @@ "index": 0, "isInternal": false, "x": 83.94, - "y": 153.30299999999997 + "y": 153.303 }, { "body": null, "index": 1, "isInternal": false, "x": 81.837, - "y": 158.37999999999997 + "y": 158.38 }, { "body": null, @@ -23252,77 +23252,77 @@ "index": 3, "isInternal": false, "x": 72.875, - "y": 164.36799999999997 + "y": 164.368 }, { "body": null, "index": 4, "isInternal": false, - "x": 67.37899999999999, - "y": 164.36799999999997 + "x": 67.379, + "y": 164.368 }, { "body": null, "index": 5, "isInternal": false, - "x": 62.30199999999999, + "x": 62.302, "y": 162.265 }, { "body": null, "index": 6, "isInternal": false, - "x": 58.416999999999994, - "y": 158.37999999999997 + "x": 58.417, + "y": 158.38 }, { "body": null, "index": 7, "isInternal": false, - "x": 56.31399999999999, - "y": 153.30299999999997 + "x": 56.314, + "y": 153.303 }, { "body": null, "index": 8, "isInternal": false, - "x": 56.31399999999999, + "x": 56.314, "y": 147.807 }, { "body": null, "index": 9, "isInternal": false, - "x": 58.416999999999994, + "x": 58.417, "y": 142.73 }, { "body": null, "index": 10, "isInternal": false, - "x": 62.30199999999999, - "y": 138.84499999999997 + "x": 62.302, + "y": 138.845 }, { "body": null, "index": 11, "isInternal": false, - "x": 67.37899999999999, - "y": 136.74199999999996 + "x": 67.379, + "y": 136.742 }, { "body": null, "index": 12, "isInternal": false, "x": 72.875, - "y": 136.74199999999996 + "y": 136.742 }, { "body": null, "index": 13, "isInternal": false, "x": 77.952, - "y": 138.84499999999997 + "y": 138.845 }, { "body": null, @@ -23343,14 +23343,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 844.5415139999999, + "area": 844.54151, "axes": { "#": 2610 }, "bounds": { "#": 2620 }, - "circleRadius": 16.56400034293553, + "circleRadius": 16.564, "collisionFilter": { "#": 2623 }, @@ -23365,13 +23365,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 454.10729029624963, - "inverseInertia": 0.002202122761225925, - "inverseMass": 1.1840744160268717, + "inertia": 454.10729, + "inverseInertia": 0.0022, + "inverseMass": 1.18407, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8445415139999999, + "mass": 0.84454, "motion": 0, "parent": null, "position": { @@ -23432,36 +23432,36 @@ } ], { - "x": -0.9397274265311816, - "y": -0.3419245001825443 + "x": -0.93973, + "y": -0.34192 }, { - "x": -0.7660369174432036, - "y": -0.6427965783310567 + "x": -0.76604, + "y": -0.6428 }, { - "x": -0.499953188487916, - "y": -0.866052428736717 + "x": -0.49995, + "y": -0.86605 }, { - "x": -0.17366632796128756, - "y": -0.9848045524531466 + "x": -0.17367, + "y": -0.9848 }, { - "x": 0.17366632796128756, - "y": -0.9848045524531466 + "x": 0.17367, + "y": -0.9848 }, { - "x": 0.499953188487916, - "y": -0.866052428736717 + "x": 0.49995, + "y": -0.86605 }, { - "x": 0.7660369174432036, - "y": -0.6427965783310567 + "x": 0.76604, + "y": -0.6428 }, { - "x": 0.9397274265311816, - "y": -0.3419245001825443 + "x": 0.93973, + "y": -0.34192 }, { "x": 1, @@ -23477,7 +23477,7 @@ }, { "x": 116.564, - "y": 169.86999999999998 + "y": 169.87 }, { "x": 83.94, @@ -23499,7 +23499,7 @@ }, { "x": 100.252, - "y": 153.30599999999998 + "y": 153.306 }, { "x": 0, @@ -23507,7 +23507,7 @@ }, { "x": 100.252, - "y": 153.30599999999998 + "y": 153.306 }, { "fillStyle": "#4ECDC4", @@ -23601,35 +23601,35 @@ "index": 2, "isInternal": false, "x": 110.899, - "y": 165.99499999999998 + "y": 165.995 }, { "body": null, "index": 3, "isInternal": false, "x": 105.917, - "y": 168.87099999999998 + "y": 168.871 }, { "body": null, "index": 4, "isInternal": false, "x": 100.252, - "y": 169.86999999999998 + "y": 169.87 }, { "body": null, "index": 5, "isInternal": false, - "x": 94.58699999999999, - "y": 168.87099999999998 + "x": 94.587, + "y": 168.871 }, { "body": null, "index": 6, "isInternal": false, - "x": 89.60499999999999, - "y": 165.99499999999998 + "x": 89.605, + "y": 165.995 }, { "body": null, @@ -23650,28 +23650,28 @@ "index": 9, "isInternal": false, "x": 83.94, - "y": 150.42999999999998 + "y": 150.43 }, { "body": null, "index": 10, "isInternal": false, "x": 85.907, - "y": 145.02399999999997 + "y": 145.024 }, { "body": null, "index": 11, "isInternal": false, - "x": 89.60499999999999, + "x": 89.605, "y": 140.617 }, { "body": null, "index": 12, "isInternal": false, - "x": 94.58699999999999, - "y": 137.74099999999999 + "x": 94.587, + "y": 137.741 }, { "body": null, @@ -23685,7 +23685,7 @@ "index": 14, "isInternal": false, "x": 105.917, - "y": 137.74099999999999 + "y": 137.741 }, { "body": null, @@ -23699,28 +23699,28 @@ "index": 16, "isInternal": false, "x": 114.597, - "y": 145.02399999999997 + "y": 145.024 }, { "body": null, "index": 17, "isInternal": false, "x": 116.564, - "y": 150.42999999999998 + "y": 150.43 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 572.138606, + "area": 572.13861, "axes": { "#": 2652 }, "bounds": { "#": 2660 }, - "circleRadius": 13.725094307270233, + "circleRadius": 13.72509, "collisionFilter": { "#": 2663 }, @@ -23735,13 +23735,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 208.44088187722204, - "inverseInertia": 0.004797523360072091, - "inverseMass": 1.7478282176959057, + "inertia": 208.44088, + "inverseInertia": 0.0048, + "inverseMass": 1.74783, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.572138606, + "mass": 0.57214, "motion": 0, "parent": null, "position": { @@ -23796,28 +23796,28 @@ } ], { - "x": -0.900975596199869, - "y": -0.4338697673868169 + "x": -0.90098, + "y": -0.43387 }, { - "x": -0.6235165271626534, - "y": -0.7818101690020565 + "x": -0.62352, + "y": -0.78181 }, { - "x": -0.22249138498727297, - "y": -0.9749346560700592 + "x": -0.22249, + "y": -0.97493 }, { - "x": 0.22249138498727297, - "y": -0.9749346560700592 + "x": 0.22249, + "y": -0.97493 }, { - "x": 0.6235165271626534, - "y": -0.7818101690020565 + "x": 0.62352, + "y": -0.78181 }, { - "x": 0.900975596199869, - "y": -0.4338697673868169 + "x": 0.90098, + "y": -0.43387 }, { "x": 1, @@ -23833,7 +23833,7 @@ }, { "x": 143.326, - "y": 164.19199999999998 + "y": 164.192 }, { "x": 116.564, @@ -23855,7 +23855,7 @@ }, { "x": 129.945, - "y": 150.46699999999998 + "y": 150.467 }, { "x": 0, @@ -23863,7 +23863,7 @@ }, { "x": 129.945, - "y": 150.46699999999998 + "y": 150.467 }, { "fillStyle": "#C44D58", @@ -23938,13 +23938,13 @@ "index": 1, "isInternal": false, "x": 140.676, - "y": 159.02399999999997 + "y": 159.024 }, { "body": null, "index": 2, "isInternal": false, - "x": 135.89999999999998, + "x": 135.9, "y": 162.833 }, { @@ -23952,7 +23952,7 @@ "index": 3, "isInternal": false, "x": 129.945, - "y": 164.19199999999998 + "y": 164.192 }, { "body": null, @@ -23966,7 +23966,7 @@ "index": 5, "isInternal": false, "x": 119.214, - "y": 159.02399999999997 + "y": 159.024 }, { "body": null, @@ -23980,7 +23980,7 @@ "index": 7, "isInternal": false, "x": 116.564, - "y": 147.41299999999998 + "y": 147.413 }, { "body": null, @@ -24007,7 +24007,7 @@ "body": null, "index": 11, "isInternal": false, - "x": 135.89999999999998, + "x": 135.9, "y": 138.101 }, { @@ -24022,21 +24022,21 @@ "index": 13, "isInternal": false, "x": 143.326, - "y": 147.41299999999998 + "y": 147.413 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 618.1187619999998, + "area": 618.11876, "axes": { "#": 2688 }, "bounds": { "#": 2697 }, - "circleRadius": 14.209233539094651, + "circleRadius": 14.20923, "collisionFilter": { "#": 2700 }, @@ -24051,13 +24051,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 243.26656400082345, - "inverseInertia": 0.004110716999302111, - "inverseMass": 1.6178120799381273, + "inertia": 243.26656, + "inverseInertia": 0.00411, + "inverseMass": 1.61781, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6181187619999998, + "mass": 0.61812, "motion": 0, "parent": null, "position": { @@ -24115,32 +24115,32 @@ } ], { - "x": -0.9239179117527256, - "y": -0.3825907635352463 + "x": -0.92392, + "y": -0.38259 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3825907635352463, - "y": -0.9239179117527256 + "x": -0.38259, + "y": -0.92392 }, { "x": 0, "y": -1 }, { - "x": 0.3825907635352463, - "y": -0.9239179117527256 + "x": 0.38259, + "y": -0.92392 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9239179117527256, - "y": -0.3825907635352463 + "x": 0.92392, + "y": -0.38259 }, { "x": 1, @@ -24372,14 +24372,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 420.81690000000003, + "area": 420.8169, "axes": { "#": 2727 }, "bounds": { "#": 2734 }, - "circleRadius": 11.84357853223594, + "circleRadius": 11.84358, "collisionFilter": { "#": 2737 }, @@ -24394,13 +24394,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 112.78565541699, - "inverseInertia": 0.008866375748784808, - "inverseMass": 2.3763304182888088, + "inertia": 112.78566, + "inverseInertia": 0.00887, + "inverseMass": 2.37633, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.42081690000000005, + "mass": 0.42082, "motion": 0, "parent": null, "position": { @@ -24452,24 +24452,24 @@ } ], { - "x": -0.8660769509358482, - "y": -0.4999107070844396 + "x": -0.86608, + "y": -0.49991 }, { - "x": -0.4999107070844396, - "y": -0.8660769509358482 + "x": -0.49991, + "y": -0.86608 }, { "x": 0, "y": -1 }, { - "x": 0.4999107070844396, - "y": -0.8660769509358482 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.8660769509358482, - "y": -0.4999107070844396 + "x": 0.86608, + "y": -0.49991 }, { "x": 1, @@ -24485,7 +24485,7 @@ }, { "x": 194.078, - "y": 159.62199999999999 + "y": 159.622 }, { "x": 171.198, @@ -24577,7 +24577,7 @@ "index": 0, "isInternal": false, "x": 194.078, - "y": 151.24699999999999 + "y": 151.247 }, { "body": null, @@ -24591,14 +24591,14 @@ "index": 2, "isInternal": false, "x": 185.703, - "y": 159.62199999999999 + "y": 159.622 }, { "body": null, "index": 3, "isInternal": false, "x": 179.573, - "y": 159.62199999999999 + "y": 159.622 }, { "body": null, @@ -24612,7 +24612,7 @@ "index": 5, "isInternal": false, "x": 171.198, - "y": 151.24699999999999 + "y": 151.247 }, { "body": null, @@ -24661,14 +24661,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 863.7712119999999, + "area": 863.77121, "axes": { "#": 2760 }, "bounds": { "#": 2770 }, - "circleRadius": 16.75158607681756, + "circleRadius": 16.75159, "collisionFilter": { "#": 2773 }, @@ -24683,13 +24683,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 475.0222152143297, - "inverseInertia": 0.0021051647017156887, - "inverseMass": 1.1577139711389226, + "inertia": 475.02222, + "inverseInertia": 0.00211, + "inverseMass": 1.15771, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8637712119999998, + "mass": 0.86377, "motion": 0, "parent": null, "position": { @@ -24750,36 +24750,36 @@ } ], { - "x": -0.9396829680088987, - "y": -0.3420466629481816 + "x": -0.93968, + "y": -0.34205 }, { - "x": -0.7660468096589216, - "y": -0.6427847893435158 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.4999654532036348, - "y": -0.8660453484678986 + "x": -0.49997, + "y": -0.86605 }, { - "x": -0.17378533390904755, - "y": -0.9847835588179369 + "x": -0.17379, + "y": -0.98478 }, { - "x": 0.17378533390904755, - "y": -0.9847835588179369 + "x": 0.17379, + "y": -0.98478 }, { - "x": 0.4999654532036348, - "y": -0.8660453484678986 + "x": 0.49997, + "y": -0.86605 }, { - "x": 0.7660468096589216, - "y": -0.6427847893435158 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9396829680088987, - "y": -0.3420466629481816 + "x": 0.93968, + "y": -0.34205 }, { "x": 1, @@ -24794,12 +24794,12 @@ } }, { - "x": 227.07199999999997, + "x": 227.072, "y": 170.246 }, { "x": 194.078, - "y": 136.74200000000002 + "y": 136.742 }, { "category": 1, @@ -24904,7 +24904,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 227.07199999999997, + "x": 227.072, "y": 156.403 }, { @@ -24939,7 +24939,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 204.84599999999998, + "x": 204.846, "y": 169.235 }, { @@ -24953,7 +24953,7 @@ "body": null, "index": 7, "isInternal": false, - "x": 196.06799999999998, + "x": 196.068, "y": 161.87 }, { @@ -24974,7 +24974,7 @@ "body": null, "index": 10, "isInternal": false, - "x": 196.06799999999998, + "x": 196.068, "y": 145.118 }, { @@ -24988,7 +24988,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 204.84599999999998, + "x": 204.846, "y": 137.753 }, { @@ -24996,7 +24996,7 @@ "index": 13, "isInternal": false, "x": 210.575, - "y": 136.74200000000002 + "y": 136.742 }, { "body": null, @@ -25023,7 +25023,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 227.07199999999997, + "x": 227.072, "y": 150.585 }, { @@ -25031,14 +25031,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 523.6658279999999, + "area": 523.66583, "axes": { "#": 2802 }, "bounds": { "#": 2810 }, - "circleRadius": 13.130787037037038, + "circleRadius": 13.13079, "collisionFilter": { "#": 2813 }, @@ -25053,13 +25053,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 174.6179419646033, - "inverseInertia": 0.005726788374373977, - "inverseMass": 1.9096147705861, + "inertia": 174.61794, + "inverseInertia": 0.00573, + "inverseMass": 1.90961, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5236658279999999, + "mass": 0.52367, "motion": 0, "parent": null, "position": { @@ -25114,28 +25114,28 @@ } ], { - "x": -0.9009347745088626, - "y": -0.43395452766466774 + "x": -0.90093, + "y": -0.43395 }, { - "x": -0.623421188186519, - "y": -0.7818861951205613 + "x": -0.62342, + "y": -0.78189 }, { - "x": -0.22263428901817583, - "y": -0.974902032695271 + "x": -0.22263, + "y": -0.9749 }, { - "x": 0.22263428901817583, - "y": -0.974902032695271 + "x": 0.22263, + "y": -0.9749 }, { - "x": 0.623421188186519, - "y": -0.7818861951205613 + "x": 0.62342, + "y": -0.78189 }, { - "x": 0.9009347745088626, - "y": -0.43395452766466774 + "x": 0.90093, + "y": -0.43395 }, { "x": 1, @@ -25150,11 +25150,11 @@ } }, { - "x": 252.67599999999996, + "x": 252.676, "y": 163.004 }, { - "x": 227.07199999999997, + "x": 227.072, "y": 136.742 }, { @@ -25172,7 +25172,7 @@ "y": 0 }, { - "x": 239.87399999999997, + "x": 239.874, "y": 149.873 }, { @@ -25180,7 +25180,7 @@ "y": 0 }, { - "x": 239.87399999999997, + "x": 239.874, "y": 149.873 }, { @@ -25248,98 +25248,98 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.67599999999996, + "x": 252.676, "y": 152.795 }, { "body": null, "index": 1, "isInternal": false, - "x": 250.13999999999996, + "x": 250.14, "y": 158.06 }, { "body": null, "index": 2, "isInternal": false, - "x": 245.57099999999997, + "x": 245.571, "y": 161.703 }, { "body": null, "index": 3, "isInternal": false, - "x": 239.87399999999997, + "x": 239.874, "y": 163.004 }, { "body": null, "index": 4, "isInternal": false, - "x": 234.17699999999996, + "x": 234.177, "y": 161.703 }, { "body": null, "index": 5, "isInternal": false, - "x": 229.60799999999998, + "x": 229.608, "y": 158.06 }, { "body": null, "index": 6, "isInternal": false, - "x": 227.07199999999997, + "x": 227.072, "y": 152.795 }, { "body": null, "index": 7, "isInternal": false, - "x": 227.07199999999997, + "x": 227.072, "y": 146.951 }, { "body": null, "index": 8, "isInternal": false, - "x": 229.60799999999998, - "y": 141.68599999999998 + "x": 229.608, + "y": 141.686 }, { "body": null, "index": 9, "isInternal": false, - "x": 234.17699999999996, + "x": 234.177, "y": 138.043 }, { "body": null, "index": 10, "isInternal": false, - "x": 239.87399999999997, + "x": 239.874, "y": 136.742 }, { "body": null, "index": 11, "isInternal": false, - "x": 245.57099999999997, + "x": 245.571, "y": 138.043 }, { "body": null, "index": 12, "isInternal": false, - "x": 250.13999999999996, - "y": 141.68599999999998 + "x": 250.14, + "y": 141.686 }, { "body": null, "index": 13, "isInternal": false, - "x": 252.67599999999996, + "x": 252.676, "y": 146.951 }, { @@ -25347,14 +25347,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 569.8258799999999, + "area": 569.82588, "axes": { "#": 2838 }, "bounds": { "#": 2846 }, - "circleRadius": 13.697230795610425, + "circleRadius": 13.69723, "collisionFilter": { "#": 2849 }, @@ -25369,13 +25369,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 206.75914841461585, - "inverseInertia": 0.004836545360472716, - "inverseMass": 1.7549220474156073, + "inertia": 206.75915, + "inverseInertia": 0.00484, + "inverseMass": 1.75492, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5698258799999999, + "mass": 0.56983, "motion": 0, "parent": null, "position": { @@ -25430,28 +25430,28 @@ } ], { - "x": -0.9009565423044396, - "y": -0.4339093325555795 + "x": -0.90096, + "y": -0.43391 }, { - "x": -0.6235140499160456, - "y": -0.7818121446724212 + "x": -0.62351, + "y": -0.78181 }, { - "x": -0.22245061563058832, - "y": -0.9749439592128218 + "x": -0.22245, + "y": -0.97494 }, { - "x": 0.22245061563058832, - "y": -0.9749439592128218 + "x": 0.22245, + "y": -0.97494 }, { - "x": 0.6235140499160456, - "y": -0.7818121446724212 + "x": 0.62351, + "y": -0.78181 }, { - "x": 0.9009565423044396, - "y": -0.4339093325555795 + "x": 0.90096, + "y": -0.43391 }, { "x": 1, @@ -25470,7 +25470,7 @@ "y": 164.136 }, { - "x": 252.67599999999996, + "x": 252.676, "y": 136.742 }, { @@ -25571,14 +25571,14 @@ "body": null, "index": 1, "isInternal": false, - "x": 276.7389999999999, - "y": 158.97899999999998 + "x": 276.739, + "y": 158.979 }, { "body": null, "index": 2, "isInternal": false, - "x": 271.97299999999996, + "x": 271.973, "y": 162.78 }, { @@ -25599,28 +25599,28 @@ "body": null, "index": 5, "isInternal": false, - "x": 255.32099999999997, - "y": 158.97899999999998 + "x": 255.321, + "y": 158.979 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.67599999999996, + "x": 252.676, "y": 153.487 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.67599999999996, + "x": 252.676, "y": 147.391 }, { "body": null, "index": 8, "isInternal": false, - "x": 255.32099999999997, + "x": 255.321, "y": 141.899 }, { @@ -25641,14 +25641,14 @@ "body": null, "index": 11, "isInternal": false, - "x": 271.97299999999996, + "x": 271.973, "y": 138.098 }, { "body": null, "index": 12, "isInternal": false, - "x": 276.7389999999999, + "x": 276.739, "y": 141.899 }, { @@ -25663,14 +25663,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 349.69686400000006, + "area": 349.69686, "axes": { "#": 2874 }, "bounds": { "#": 2881 }, - "circleRadius": 10.796596364883403, + "circleRadius": 10.7966, "collisionFilter": { "#": 2884 }, @@ -25685,13 +25685,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 77.88449319287959, - "inverseInertia": 0.012839526316535404, - "inverseMass": 2.859619581833024, + "inertia": 77.88449, + "inverseInertia": 0.01284, + "inverseMass": 2.85962, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.34969686400000005, + "mass": 0.3497, "motion": 0, "parent": null, "position": { @@ -25743,24 +25743,24 @@ } ], { - "x": -0.8659770013124215, - "y": -0.5000838261711195 + "x": -0.86598, + "y": -0.50008 }, { - "x": -0.5000838261711195, - "y": -0.8659770013124215 + "x": -0.50008, + "y": -0.86598 }, { "x": 0, "y": -1 }, { - "x": 0.5000838261711195, - "y": -0.8659770013124215 + "x": 0.50008, + "y": -0.86598 }, { - "x": 0.8659770013124215, - "y": -0.5000838261711195 + "x": 0.86598, + "y": -0.50008 }, { "x": 1, @@ -25775,7 +25775,7 @@ } }, { - "x": 300.24199999999996, + "x": 300.242, "y": 157.6 }, { @@ -25867,7 +25867,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 300.24199999999996, + "x": 300.242, "y": 149.965 }, { @@ -25875,13 +25875,13 @@ "index": 1, "isInternal": false, "x": 297.447, - "y": 154.80499999999998 + "y": 154.805 }, { "body": null, "index": 2, "isInternal": false, - "x": 292.60699999999997, + "x": 292.607, "y": 157.6 }, { @@ -25896,7 +25896,7 @@ "index": 4, "isInternal": false, "x": 282.179, - "y": 154.80499999999998 + "y": 154.805 }, { "body": null, @@ -25910,7 +25910,7 @@ "index": 6, "isInternal": false, "x": 279.384, - "y": 144.37699999999998 + "y": 144.377 }, { "body": null, @@ -25930,7 +25930,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 292.60699999999997, + "x": 292.607, "y": 136.742 }, { @@ -25944,22 +25944,22 @@ "body": null, "index": 11, "isInternal": false, - "x": 300.24199999999996, - "y": 144.37699999999998 + "x": 300.242, + "y": 144.377 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 615.732246, + "area": 615.73225, "axes": { "#": 2907 }, "bounds": { "#": 2916 }, - "circleRadius": 14.181970164609053, + "circleRadius": 14.18197, "collisionFilter": { "#": 2919 }, @@ -25974,13 +25974,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 241.39171788103542, - "inverseInertia": 0.0041426441999672416, - "inverseMass": 1.6240825561700398, + "inertia": 241.39172, + "inverseInertia": 0.00414, + "inverseMass": 1.62408, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6157322460000001, + "mass": 0.61573, "motion": 0, "parent": null, "position": { @@ -26038,32 +26038,32 @@ } ], { - "x": -0.9239089060803667, - "y": -0.3826125105970534 + "x": -0.92391, + "y": -0.38261 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826125105970534, - "y": -0.9239089060803667 + "x": -0.38261, + "y": -0.92391 }, { "x": 0, "y": -1 }, { - "x": 0.3826125105970534, - "y": -0.9239089060803667 + "x": 0.38261, + "y": -0.92391 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9239089060803667, - "y": -0.3826125105970534 + "x": 0.92391, + "y": -0.38261 }, { "x": 1, @@ -26078,12 +26078,12 @@ } }, { - "x": 328.05999999999995, - "y": 164.55999999999997 + "x": 328.06, + "y": 164.56 }, { - "x": 300.24199999999996, - "y": 136.74199999999996 + "x": 300.242, + "y": 136.742 }, { "category": 1, @@ -26100,16 +26100,16 @@ "y": 0 }, { - "x": 314.15099999999995, - "y": 150.65099999999998 + "x": 314.151, + "y": 150.651 }, { "x": 0, "y": 0 }, { - "x": 314.15099999999995, - "y": 150.65099999999998 + "x": 314.151, + "y": 150.651 }, { "fillStyle": "#C44D58", @@ -26182,63 +26182,63 @@ "body": null, "index": 0, "isInternal": false, - "x": 328.05999999999995, - "y": 153.41799999999998 + "x": 328.06, + "y": 153.418 }, { "body": null, "index": 1, "isInternal": false, - "x": 325.9429999999999, - "y": 158.52999999999997 + "x": 325.943, + "y": 158.53 }, { "body": null, "index": 2, "isInternal": false, "x": 322.03, - "y": 162.44299999999998 + "y": 162.443 }, { "body": null, "index": 3, "isInternal": false, - "x": 316.91799999999995, - "y": 164.55999999999997 + "x": 316.918, + "y": 164.56 }, { "body": null, "index": 4, "isInternal": false, - "x": 311.38399999999996, - "y": 164.55999999999997 + "x": 311.384, + "y": 164.56 }, { "body": null, "index": 5, "isInternal": false, - "x": 306.27199999999993, - "y": 162.44299999999998 + "x": 306.272, + "y": 162.443 }, { "body": null, "index": 6, "isInternal": false, "x": 302.359, - "y": 158.52999999999997 + "y": 158.53 }, { "body": null, "index": 7, "isInternal": false, - "x": 300.24199999999996, - "y": 153.41799999999998 + "x": 300.242, + "y": 153.418 }, { "body": null, "index": 8, "isInternal": false, - "x": 300.24199999999996, + "x": 300.242, "y": 147.884 }, { @@ -26252,42 +26252,42 @@ "body": null, "index": 10, "isInternal": false, - "x": 306.27199999999993, - "y": 138.85899999999998 + "x": 306.272, + "y": 138.859 }, { "body": null, "index": 11, "isInternal": false, - "x": 311.38399999999996, - "y": 136.74199999999996 + "x": 311.384, + "y": 136.742 }, { "body": null, "index": 12, "isInternal": false, - "x": 316.91799999999995, - "y": 136.74199999999996 + "x": 316.918, + "y": 136.742 }, { "body": null, "index": 13, "isInternal": false, "x": 322.03, - "y": 138.85899999999998 + "y": 138.859 }, { "body": null, "index": 14, "isInternal": false, - "x": 325.9429999999999, + "x": 325.943, "y": 142.772 }, { "body": null, "index": 15, "isInternal": false, - "x": 328.05999999999995, + "x": 328.06, "y": 147.884 }, { @@ -26295,14 +26295,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 731.546114, + "area": 731.54611, "axes": { "#": 2946 }, "bounds": { "#": 2955 }, - "circleRadius": 15.458290466392318, + "circleRadius": 15.45829, "collisionFilter": { "#": 2958 }, @@ -26317,13 +26317,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 340.7391093603774, - "inverseInertia": 0.0029347966597587294, - "inverseMass": 1.366967824532795, + "inertia": 340.73911, + "inverseInertia": 0.00293, + "inverseMass": 1.36697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.731546114, + "mass": 0.73155, "motion": 0, "parent": null, "position": { @@ -26381,32 +26381,32 @@ } ], { - "x": -0.9238794134821804, - "y": -0.38268371972664617 + "x": -0.92388, + "y": -0.38268 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38268371972664617, - "y": -0.9238794134821804 + "x": -0.38268, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.38268371972664617, - "y": -0.9238794134821804 + "x": 0.38268, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238794134821804, - "y": -0.38268371972664617 + "x": 0.92388, + "y": -0.38268 }, { "x": 1, @@ -26421,11 +26421,11 @@ } }, { - "x": 358.38199999999995, + "x": 358.382, "y": 167.064 }, { - "x": 328.05999999999995, + "x": 328.06, "y": 136.742 }, { @@ -26443,7 +26443,7 @@ "y": 0 }, { - "x": 343.22099999999995, + "x": 343.221, "y": 151.903 }, { @@ -26451,7 +26451,7 @@ "y": 0 }, { - "x": 343.22099999999995, + "x": 343.221, "y": 151.903 }, { @@ -26525,112 +26525,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 358.38199999999995, - "y": 154.91899999999998 + "x": 358.382, + "y": 154.919 }, { "body": null, "index": 1, "isInternal": false, - "x": 356.07399999999996, - "y": 160.49099999999999 + "x": 356.074, + "y": 160.491 }, { "body": null, "index": 2, "isInternal": false, - "x": 351.80899999999997, + "x": 351.809, "y": 164.756 }, { "body": null, "index": 3, "isInternal": false, - "x": 346.23699999999997, + "x": 346.237, "y": 167.064 }, { "body": null, "index": 4, "isInternal": false, - "x": 340.2049999999999, + "x": 340.205, "y": 167.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 334.6329999999999, + "x": 334.633, "y": 164.756 }, { "body": null, "index": 6, "isInternal": false, - "x": 330.36799999999994, - "y": 160.49099999999999 + "x": 330.368, + "y": 160.491 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.05999999999995, - "y": 154.91899999999998 + "x": 328.06, + "y": 154.919 }, { "body": null, "index": 8, "isInternal": false, - "x": 328.05999999999995, + "x": 328.06, "y": 148.887 }, { "body": null, "index": 9, "isInternal": false, - "x": 330.36799999999994, + "x": 330.368, "y": 143.315 }, { "body": null, "index": 10, "isInternal": false, - "x": 334.6329999999999, + "x": 334.633, "y": 139.05 }, { "body": null, "index": 11, "isInternal": false, - "x": 340.2049999999999, + "x": 340.205, "y": 136.742 }, { "body": null, "index": 12, "isInternal": false, - "x": 346.23699999999997, + "x": 346.237, "y": 136.742 }, { "body": null, "index": 13, "isInternal": false, - "x": 351.80899999999997, + "x": 351.809, "y": 139.05 }, { "body": null, "index": 14, "isInternal": false, - "x": 356.07399999999996, + "x": 356.074, "y": 143.315 }, { "body": null, "index": 15, "isInternal": false, - "x": 358.38199999999995, + "x": 358.382, "y": 148.887 }, { @@ -26645,7 +26645,7 @@ "bounds": { "#": 2996 }, - "circleRadius": 19.193458504801097, + "circleRadius": 19.19346, "collisionFilter": { "#": 2999 }, @@ -26660,13 +26660,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 825.0362217611556, - "inverseInertia": 0.0012120679960758083, - "inverseMass": 0.8784467571487908, + "inertia": 825.03622, + "inverseInertia": 0.00121, + "inverseMass": 0.87845, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1383729200000001, + "mass": 1.13837, "motion": 0, "parent": null, "position": { @@ -26730,40 +26730,40 @@ } ], { - "x": -0.9510377399849168, - "y": -0.30907477594326865 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8090600428695182, - "y": -0.5877259965595987 + "x": -0.80906, + "y": -0.58773 }, { - "x": -0.5877259965595987, - "y": -0.8090600428695182 + "x": -0.58773, + "y": -0.80906 }, { - "x": -0.30907477594326865, - "y": -0.9510377399849168 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30907477594326865, - "y": -0.9510377399849168 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5877259965595987, - "y": -0.8090600428695182 + "x": 0.58773, + "y": -0.80906 }, { - "x": 0.8090600428695182, - "y": -0.5877259965595987 + "x": 0.80906, + "y": -0.58773 }, { - "x": 0.9510377399849168, - "y": -0.30907477594326865 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -26778,11 +26778,11 @@ } }, { - "x": 396.29599999999994, - "y": 174.65599999999998 + "x": 396.296, + "y": 174.656 }, { - "x": 358.38199999999995, + "x": 358.382, "y": 136.742 }, { @@ -26800,16 +26800,16 @@ "y": 0 }, { - "x": 377.33899999999994, - "y": 155.69899999999998 + "x": 377.339, + "y": 155.699 }, { "x": 0, "y": 0 }, { - "x": 377.33899999999994, - "y": 155.69899999999998 + "x": 377.339, + "y": 155.699 }, { "fillStyle": "#556270", @@ -26894,155 +26894,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.29599999999994, - "y": 158.70199999999997 + "x": 396.296, + "y": 158.702 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.43999999999994, - "y": 164.41299999999998 + "x": 394.44, + "y": 164.413 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.91099999999994, + "x": 390.911, "y": 169.271 }, { "body": null, "index": 3, "isInternal": false, - "x": 386.05299999999994, - "y": 172.79999999999998 + "x": 386.053, + "y": 172.8 }, { "body": null, "index": 4, "isInternal": false, - "x": 380.3419999999999, - "y": 174.65599999999998 + "x": 380.342, + "y": 174.656 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.33599999999996, - "y": 174.65599999999998 + "x": 374.336, + "y": 174.656 }, { "body": null, "index": 6, "isInternal": false, - "x": 368.62499999999994, - "y": 172.79999999999998 + "x": 368.625, + "y": 172.8 }, { "body": null, "index": 7, "isInternal": false, - "x": 363.76699999999994, + "x": 363.767, "y": 169.271 }, { "body": null, "index": 8, "isInternal": false, - "x": 360.23799999999994, - "y": 164.41299999999998 + "x": 360.238, + "y": 164.413 }, { "body": null, "index": 9, "isInternal": false, - "x": 358.38199999999995, - "y": 158.70199999999997 + "x": 358.382, + "y": 158.702 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.38199999999995, - "y": 152.69599999999997 + "x": 358.382, + "y": 152.696 }, { "body": null, "index": 11, "isInternal": false, - "x": 360.23799999999994, - "y": 146.98499999999999 + "x": 360.238, + "y": 146.985 }, { "body": null, "index": 12, "isInternal": false, - "x": 363.76699999999994, - "y": 142.12699999999998 + "x": 363.767, + "y": 142.127 }, { "body": null, "index": 13, "isInternal": false, - "x": 368.62499999999994, - "y": 138.59799999999998 + "x": 368.625, + "y": 138.598 }, { "body": null, "index": 14, "isInternal": false, - "x": 374.33599999999996, + "x": 374.336, "y": 136.742 }, { "body": null, "index": 15, "isInternal": false, - "x": 380.3419999999999, + "x": 380.342, "y": 136.742 }, { "body": null, "index": 16, "isInternal": false, - "x": 386.05299999999994, - "y": 138.59799999999998 + "x": 386.053, + "y": 138.598 }, { "body": null, "index": 17, "isInternal": false, - "x": 390.91099999999994, - "y": 142.12699999999998 + "x": 390.911, + "y": 142.127 }, { "body": null, "index": 18, "isInternal": false, - "x": 394.43999999999994, - "y": 146.98499999999999 + "x": 394.44, + "y": 146.985 }, { "body": null, "index": 19, "isInternal": false, - "x": 396.29599999999994, - "y": 152.69599999999997 + "x": 396.296, + "y": 152.696 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 343.22203199999996, + "area": 343.22203, "axes": { "#": 3030 }, "bounds": { "#": 3037 }, - "circleRadius": 10.696116255144034, + "circleRadius": 10.69612, "collisionFilter": { "#": 3040 }, @@ -27057,13 +27057,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 75.02704455757933, - "inverseInertia": 0.013328527145069033, - "inverseMass": 2.913565875048488, + "inertia": 75.02704, + "inverseInertia": 0.01333, + "inverseMass": 2.91357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.34322203199999995, + "mass": 0.34322, "motion": 0, "parent": null, "position": { @@ -27115,24 +27115,24 @@ } ], { - "x": -0.8659780516638863, - "y": -0.5000820073112204 + "x": -0.86598, + "y": -0.50008 }, { - "x": -0.5000820073112204, - "y": -0.8659780516638863 + "x": -0.50008, + "y": -0.86598 }, { "x": 0, "y": -1 }, { - "x": 0.5000820073112204, - "y": -0.8659780516638863 + "x": 0.50008, + "y": -0.86598 }, { - "x": 0.8659780516638863, - "y": -0.5000820073112204 + "x": 0.86598, + "y": -0.50008 }, { "x": 1, @@ -27147,11 +27147,11 @@ } }, { - "x": 416.9599999999999, - "y": 157.40599999999998 + "x": 416.96, + "y": 157.406 }, { - "x": 396.29599999999994, + "x": 396.296, "y": 136.742 }, { @@ -27169,16 +27169,16 @@ "y": 0 }, { - "x": 406.62799999999993, - "y": 147.07399999999998 + "x": 406.628, + "y": 147.074 }, { "x": 0, "y": 0 }, { - "x": 406.62799999999993, - "y": 147.07399999999998 + "x": 406.628, + "y": 147.074 }, { "fillStyle": "#FF6B6B", @@ -27239,99 +27239,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 416.9599999999999, - "y": 149.84199999999998 + "x": 416.96, + "y": 149.842 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.1909999999999, - "y": 154.63699999999997 + "x": 414.191, + "y": 154.637 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.3959999999999, - "y": 157.40599999999998 + "x": 409.396, + "y": 157.406 }, { "body": null, "index": 3, "isInternal": false, - "x": 403.85999999999996, - "y": 157.40599999999998 + "x": 403.86, + "y": 157.406 }, { "body": null, "index": 4, "isInternal": false, - "x": 399.06499999999994, - "y": 154.63699999999997 + "x": 399.065, + "y": 154.637 }, { "body": null, "index": 5, "isInternal": false, - "x": 396.29599999999994, - "y": 149.84199999999998 + "x": 396.296, + "y": 149.842 }, { "body": null, "index": 6, "isInternal": false, - "x": 396.29599999999994, - "y": 144.30599999999998 + "x": 396.296, + "y": 144.306 }, { "body": null, "index": 7, "isInternal": false, - "x": 399.06499999999994, + "x": 399.065, "y": 139.511 }, { "body": null, "index": 8, "isInternal": false, - "x": 403.85999999999996, + "x": 403.86, "y": 136.742 }, { "body": null, "index": 9, "isInternal": false, - "x": 409.3959999999999, + "x": 409.396, "y": 136.742 }, { "body": null, "index": 10, "isInternal": false, - "x": 414.1909999999999, + "x": 414.191, "y": 139.511 }, { "body": null, "index": 11, "isInternal": false, - "x": 416.9599999999999, - "y": 144.30599999999998 + "x": 416.96, + "y": 144.306 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 328.23895999999996, + "area": 328.23896, "axes": { "#": 3063 }, "bounds": { "#": 3070 }, - "circleRadius": 10.460090877914952, + "circleRadius": 10.46009, "collisionFilter": { "#": 3073 }, @@ -27346,13 +27346,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 68.61953633030359, - "inverseInertia": 0.014573109255452408, - "inverseMass": 3.0465609566883836, + "inertia": 68.61954, + "inverseInertia": 0.01457, + "inverseMass": 3.04656, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.32823895999999997, + "mass": 0.32824, "motion": 0, "parent": null, "position": { @@ -27404,24 +27404,24 @@ } ], { - "x": -0.8659610549644546, - "y": -0.5001114388662279 + "x": -0.86596, + "y": -0.50011 }, { - "x": -0.5001114388662279, - "y": -0.8659610549644546 + "x": -0.50011, + "y": -0.86596 }, { "x": 0, "y": -1 }, { - "x": 0.5001114388662279, - "y": -0.8659610549644546 + "x": 0.50011, + "y": -0.86596 }, { - "x": 0.8659610549644546, - "y": -0.5001114388662279 + "x": 0.86596, + "y": -0.50011 }, { "x": 1, @@ -27436,12 +27436,12 @@ } }, { - "x": 437.1679999999999, - "y": 156.95000000000002 + "x": 437.168, + "y": 156.95 }, { - "x": 416.9599999999999, - "y": 136.74200000000002 + "x": 416.96, + "y": 136.742 }, { "category": 1, @@ -27458,7 +27458,7 @@ "y": 0 }, { - "x": 427.0639999999999, + "x": 427.064, "y": 146.846 }, { @@ -27466,7 +27466,7 @@ "y": 0 }, { - "x": 427.0639999999999, + "x": 427.064, "y": 146.846 }, { @@ -27528,84 +27528,84 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.1679999999999, + "x": 437.168, "y": 149.553 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.4599999999999, + "x": 434.46, "y": 154.242 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.7709999999999, - "y": 156.95000000000002 + "x": 429.771, + "y": 156.95 }, { "body": null, "index": 3, "isInternal": false, - "x": 424.3569999999999, - "y": 156.95000000000002 + "x": 424.357, + "y": 156.95 }, { "body": null, "index": 4, "isInternal": false, - "x": 419.6679999999999, + "x": 419.668, "y": 154.242 }, { "body": null, "index": 5, "isInternal": false, - "x": 416.9599999999999, + "x": 416.96, "y": 149.553 }, { "body": null, "index": 6, "isInternal": false, - "x": 416.9599999999999, + "x": 416.96, "y": 144.139 }, { "body": null, "index": 7, "isInternal": false, - "x": 419.6679999999999, - "y": 139.45000000000002 + "x": 419.668, + "y": 139.45 }, { "body": null, "index": 8, "isInternal": false, - "x": 424.3569999999999, - "y": 136.74200000000002 + "x": 424.357, + "y": 136.742 }, { "body": null, "index": 9, "isInternal": false, - "x": 429.7709999999999, - "y": 136.74200000000002 + "x": 429.771, + "y": 136.742 }, { "body": null, "index": 10, "isInternal": false, - "x": 434.4599999999999, - "y": 139.45000000000002 + "x": 434.46, + "y": 139.45 }, { "body": null, "index": 11, "isInternal": false, - "x": 437.1679999999999, + "x": 437.168, "y": 144.139 }, { @@ -27613,14 +27613,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 714.3709199999998, + "area": 714.37092, "axes": { "#": 3096 }, "bounds": { "#": 3105 }, - "circleRadius": 15.275505829903977, + "circleRadius": 15.27551, "collisionFilter": { "#": 3108 }, @@ -27635,13 +27635,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 324.9272263186872, - "inverseInertia": 0.0030776122128319417, - "inverseMass": 1.3998330167191018, + "inertia": 324.92723, + "inverseInertia": 0.00308, + "inverseMass": 1.39983, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7143709199999999, + "mass": 0.71437, "motion": 0, "parent": null, "position": { @@ -27699,32 +27699,32 @@ } ], { - "x": -0.9238839269066341, - "y": -0.3826728231839534 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826728231839534, - "y": -0.9238839269066341 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826728231839534, - "y": -0.9238839269066341 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238839269066341, - "y": -0.3826728231839534 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -27739,11 +27739,11 @@ } }, { - "x": 467.13199999999983, + "x": 467.132, "y": 166.706 }, { - "x": 437.1679999999999, + "x": 437.168, "y": 136.742 }, { @@ -27761,7 +27761,7 @@ "y": 0 }, { - "x": 452.14999999999986, + "x": 452.15, "y": 151.724 }, { @@ -27769,7 +27769,7 @@ "y": 0 }, { - "x": 452.14999999999986, + "x": 452.15, "y": 151.724 }, { @@ -27843,112 +27843,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 467.13199999999983, - "y": 154.70399999999998 + "x": 467.132, + "y": 154.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 464.8509999999999, - "y": 160.21099999999998 + "x": 464.851, + "y": 160.211 }, { "body": null, "index": 2, "isInternal": false, - "x": 460.6369999999999, - "y": 164.42499999999998 + "x": 460.637, + "y": 164.425 }, { "body": null, "index": 3, "isInternal": false, - "x": 455.1299999999999, + "x": 455.13, "y": 166.706 }, { "body": null, "index": 4, "isInternal": false, - "x": 449.16999999999985, + "x": 449.17, "y": 166.706 }, { "body": null, "index": 5, "isInternal": false, - "x": 443.66299999999984, - "y": 164.42499999999998 + "x": 443.663, + "y": 164.425 }, { "body": null, "index": 6, "isInternal": false, - "x": 439.44899999999984, - "y": 160.21099999999998 + "x": 439.449, + "y": 160.211 }, { "body": null, "index": 7, "isInternal": false, - "x": 437.1679999999999, - "y": 154.70399999999998 + "x": 437.168, + "y": 154.704 }, { "body": null, "index": 8, "isInternal": false, - "x": 437.1679999999999, + "x": 437.168, "y": 148.744 }, { "body": null, "index": 9, "isInternal": false, - "x": 439.44899999999984, + "x": 439.449, "y": 143.237 }, { "body": null, "index": 10, "isInternal": false, - "x": 443.66299999999984, + "x": 443.663, "y": 139.023 }, { "body": null, "index": 11, "isInternal": false, - "x": 449.16999999999985, + "x": 449.17, "y": 136.742 }, { "body": null, "index": 12, "isInternal": false, - "x": 455.1299999999999, + "x": 455.13, "y": 136.742 }, { "body": null, "index": 13, "isInternal": false, - "x": 460.6369999999999, + "x": 460.637, "y": 139.023 }, { "body": null, "index": 14, "isInternal": false, - "x": 464.8509999999999, + "x": 464.851, "y": 143.237 }, { "body": null, "index": 15, "isInternal": false, - "x": 467.13199999999983, + "x": 467.132, "y": 148.744 }, { @@ -27963,7 +27963,7 @@ "bounds": { "#": 3145 }, - "circleRadius": 16.00655864197531, + "circleRadius": 16.00656, "collisionFilter": { "#": 3148 }, @@ -27978,13 +27978,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 396.00036994809216, - "inverseInertia": 0.0025252501661326234, - "inverseMass": 1.2679742642813907, + "inertia": 396.00037, + "inverseInertia": 0.00253, + "inverseMass": 1.26797, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.78865954, + "mass": 0.78866, "motion": 0, "parent": null, "position": { @@ -28045,36 +28045,36 @@ } ], { - "x": -0.9396935768098462, - "y": -0.3420175166600646 + "x": -0.93969, + "y": -0.34202 }, { - "x": -0.7661086842967768, - "y": -0.6427110422616539 + "x": -0.76611, + "y": -0.64271 }, { - "x": -0.499950859205193, - "y": -0.866053773376682 + "x": -0.49995, + "y": -0.86605 }, { - "x": -0.17375455068018675, - "y": -0.9847889906563367 + "x": -0.17375, + "y": -0.98479 }, { - "x": 0.17375455068018675, - "y": -0.9847889906563367 + "x": 0.17375, + "y": -0.98479 }, { - "x": 0.499950859205193, - "y": -0.866053773376682 + "x": 0.49995, + "y": -0.86605 }, { - "x": 0.7661086842967768, - "y": -0.6427110422616539 + "x": 0.76611, + "y": -0.64271 }, { - "x": 0.9396935768098462, - "y": -0.3420175166600646 + "x": 0.93969, + "y": -0.34202 }, { "x": 1, @@ -28089,11 +28089,11 @@ } }, { - "x": 498.6579999999998, + "x": 498.658, "y": 168.756 }, { - "x": 467.13199999999983, + "x": 467.132, "y": 136.742 }, { @@ -28111,7 +28111,7 @@ "y": 0 }, { - "x": 482.8949999999998, + "x": 482.895, "y": 152.749 }, { @@ -28119,7 +28119,7 @@ "y": 0 }, { - "x": 482.8949999999998, + "x": 482.895, "y": 152.749 }, { @@ -28199,126 +28199,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.6579999999998, + "x": 498.658, "y": 155.529 }, { "body": null, "index": 1, "isInternal": false, - "x": 496.75699999999983, + "x": 496.757, "y": 160.752 }, { "body": null, "index": 2, "isInternal": false, - "x": 493.1839999999998, + "x": 493.184, "y": 165.011 }, { "body": null, "index": 3, "isInternal": false, - "x": 488.36999999999983, + "x": 488.37, "y": 167.79 }, { "body": null, "index": 4, "isInternal": false, - "x": 482.8949999999998, + "x": 482.895, "y": 168.756 }, { "body": null, "index": 5, "isInternal": false, - "x": 477.4199999999998, + "x": 477.42, "y": 167.79 }, { "body": null, "index": 6, "isInternal": false, - "x": 472.6059999999998, + "x": 472.606, "y": 165.011 }, { "body": null, "index": 7, "isInternal": false, - "x": 469.0329999999998, + "x": 469.033, "y": 160.752 }, { "body": null, "index": 8, "isInternal": false, - "x": 467.13199999999983, + "x": 467.132, "y": 155.529 }, { "body": null, "index": 9, "isInternal": false, - "x": 467.13199999999983, + "x": 467.132, "y": 149.969 }, { "body": null, "index": 10, "isInternal": false, - "x": 469.0329999999998, - "y": 144.74599999999998 + "x": 469.033, + "y": 144.746 }, { "body": null, "index": 11, "isInternal": false, - "x": 472.6059999999998, + "x": 472.606, "y": 140.487 }, { "body": null, "index": 12, "isInternal": false, - "x": 477.4199999999998, + "x": 477.42, "y": 137.708 }, { "body": null, "index": 13, "isInternal": false, - "x": 482.8949999999998, + "x": 482.895, "y": 136.742 }, { "body": null, "index": 14, "isInternal": false, - "x": 488.36999999999983, + "x": 488.37, "y": 137.708 }, { "body": null, "index": 15, "isInternal": false, - "x": 493.1839999999998, + "x": 493.184, "y": 140.487 }, { "body": null, "index": 16, "isInternal": false, - "x": 496.75699999999983, - "y": 144.74599999999998 + "x": 496.757, + "y": 144.746 }, { "body": null, "index": 17, "isInternal": false, - "x": 498.6579999999998, + "x": 498.658, "y": 149.969 }, { @@ -28326,14 +28326,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 439.96750399999996, + "area": 439.9675, "axes": { "#": 3177 }, "bounds": { "#": 3185 }, - "circleRadius": 12.03596536351166, + "circleRadius": 12.03597, "collisionFilter": { "#": 3188 }, @@ -28348,13 +28348,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 123.25983907729764, - "inverseInertia": 0.008112942605522052, - "inverseMass": 2.272895136364435, + "inertia": 123.25984, + "inverseInertia": 0.00811, + "inverseMass": 2.2729, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.43996750399999995, + "mass": 0.43997, "motion": 0, "parent": null, "position": { @@ -28409,28 +28409,28 @@ } ], { - "x": -0.9009746413575853, - "y": -0.433871750210325 + "x": -0.90097, + "y": -0.43387 }, { - "x": -0.6235105065942435, - "y": -0.7818149705439197 + "x": -0.62351, + "y": -0.78181 }, { - "x": -0.22254091077125632, - "y": -0.9749233523888426 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.22254091077125632, - "y": -0.9749233523888426 + "x": 0.22254, + "y": -0.97492 }, { - "x": 0.6235105065942435, - "y": -0.7818149705439197 + "x": 0.62351, + "y": -0.78181 }, { - "x": 0.9009746413575853, - "y": -0.433871750210325 + "x": 0.90097, + "y": -0.43387 }, { "x": 1, @@ -28445,11 +28445,11 @@ } }, { - "x": 522.1259999999997, + "x": 522.126, "y": 160.814 }, { - "x": 498.6579999999998, + "x": 498.658, "y": 136.742 }, { @@ -28467,7 +28467,7 @@ "y": 0 }, { - "x": 510.39199999999977, + "x": 510.392, "y": 148.778 }, { @@ -28475,7 +28475,7 @@ "y": 0 }, { - "x": 510.39199999999977, + "x": 510.392, "y": 148.778 }, { @@ -28543,98 +28543,98 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.1259999999997, + "x": 522.126, "y": 151.456 }, { "body": null, "index": 1, "isInternal": false, - "x": 519.8019999999998, - "y": 156.28199999999998 + "x": 519.802, + "y": 156.282 }, { "body": null, "index": 2, "isInternal": false, - "x": 515.6139999999998, - "y": 159.62199999999999 + "x": 515.614, + "y": 159.622 }, { "body": null, "index": 3, "isInternal": false, - "x": 510.39199999999977, + "x": 510.392, "y": 160.814 }, { "body": null, "index": 4, "isInternal": false, - "x": 505.1699999999998, - "y": 159.62199999999999 + "x": 505.17, + "y": 159.622 }, { "body": null, "index": 5, "isInternal": false, - "x": 500.98199999999974, - "y": 156.28199999999998 + "x": 500.982, + "y": 156.282 }, { "body": null, "index": 6, "isInternal": false, - "x": 498.6579999999998, + "x": 498.658, "y": 151.456 }, { "body": null, "index": 7, "isInternal": false, - "x": 498.6579999999998, + "x": 498.658, "y": 146.1 }, { "body": null, "index": 8, "isInternal": false, - "x": 500.98199999999974, + "x": 500.982, "y": 141.274 }, { "body": null, "index": 9, "isInternal": false, - "x": 505.1699999999998, + "x": 505.17, "y": 137.934 }, { "body": null, "index": 10, "isInternal": false, - "x": 510.39199999999977, + "x": 510.392, "y": 136.742 }, { "body": null, "index": 11, "isInternal": false, - "x": 515.6139999999998, + "x": 515.614, "y": 137.934 }, { "body": null, "index": 12, "isInternal": false, - "x": 519.8019999999998, + "x": 519.802, "y": 141.274 }, { "body": null, "index": 13, "isInternal": false, - "x": 522.1259999999997, + "x": 522.126, "y": 146.1 }, { @@ -28642,14 +28642,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 465.1898319999999, + "area": 465.18983, "axes": { "#": 3213 }, "bounds": { "#": 3221 }, - "circleRadius": 12.376071673525377, + "circleRadius": 12.37607, "collisionFilter": { "#": 3224 }, @@ -28664,13 +28664,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 137.79733623042054, - "inverseInertia": 0.007257034332854085, - "inverseMass": 2.1496600553384413, + "inertia": 137.79734, + "inverseInertia": 0.00726, + "inverseMass": 2.14966, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4651898319999999, + "mass": 0.46519, "motion": 0, "parent": null, "position": { @@ -28725,28 +28725,28 @@ } ], { - "x": -0.9009385766022528, - "y": -0.4339466340345395 + "x": -0.90094, + "y": -0.43395 }, { - "x": -0.6234986347783991, - "y": -0.7818244383680217 + "x": -0.6235, + "y": -0.78182 }, { - "x": -0.22257831674696424, - "y": -0.9749148131575847 + "x": -0.22258, + "y": -0.97491 }, { - "x": 0.22257831674696424, - "y": -0.9749148131575847 + "x": 0.22258, + "y": -0.97491 }, { - "x": 0.6234986347783991, - "y": -0.7818244383680217 + "x": 0.6235, + "y": -0.78182 }, { - "x": 0.9009385766022528, - "y": -0.4339466340345395 + "x": 0.90094, + "y": -0.43395 }, { "x": 1, @@ -28761,11 +28761,11 @@ } }, { - "x": 546.2579999999998, + "x": 546.258, "y": 161.494 }, { - "x": 522.1259999999997, + "x": 522.126, "y": 136.742 }, { @@ -28783,7 +28783,7 @@ "y": 0 }, { - "x": 534.1919999999998, + "x": 534.192, "y": 149.118 }, { @@ -28791,7 +28791,7 @@ "y": 0 }, { - "x": 534.1919999999998, + "x": 534.192, "y": 149.118 }, { @@ -28859,98 +28859,98 @@ "body": null, "index": 0, "isInternal": false, - "x": 546.2579999999998, - "y": 151.87199999999999 + "x": 546.258, + "y": 151.872 }, { "body": null, "index": 1, "isInternal": false, - "x": 543.8679999999998, + "x": 543.868, "y": 156.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 539.5619999999998, + "x": 539.562, "y": 160.268 }, { "body": null, "index": 3, "isInternal": false, - "x": 534.1919999999998, + "x": 534.192, "y": 161.494 }, { "body": null, "index": 4, "isInternal": false, - "x": 528.8219999999998, + "x": 528.822, "y": 160.268 }, { "body": null, "index": 5, "isInternal": false, - "x": 524.5159999999997, + "x": 524.516, "y": 156.834 }, { "body": null, "index": 6, "isInternal": false, - "x": 522.1259999999997, - "y": 151.87199999999999 + "x": 522.126, + "y": 151.872 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1259999999997, + "x": 522.126, "y": 146.364 }, { "body": null, "index": 8, "isInternal": false, - "x": 524.5159999999997, + "x": 524.516, "y": 141.402 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.8219999999998, + "x": 528.822, "y": 137.968 }, { "body": null, "index": 10, "isInternal": false, - "x": 534.1919999999998, + "x": 534.192, "y": 136.742 }, { "body": null, "index": 11, "isInternal": false, - "x": 539.5619999999998, + "x": 539.562, "y": 137.968 }, { "body": null, "index": 12, "isInternal": false, - "x": 543.8679999999998, + "x": 543.868, "y": 141.402 }, { "body": null, "index": 13, "isInternal": false, - "x": 546.2579999999998, + "x": 546.258, "y": 146.364 }, { @@ -28965,7 +28965,7 @@ "bounds": { "#": 3257 }, - "circleRadius": 13.446630658436213, + "circleRadius": 13.44663, "collisionFilter": { "#": 3260 }, @@ -28980,13 +28980,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 192.02790707024445, - "inverseInertia": 0.005207576415620656, - "inverseMass": 1.8209919398344263, + "inertia": 192.02791, + "inverseInertia": 0.00521, + "inverseMass": 1.82099, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.54915125, + "mass": 0.54915, "motion": 0, "parent": null, "position": { @@ -29041,28 +29041,28 @@ } ], { - "x": -0.9010113457917152, - "y": -0.4337955218240528 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6234511928676252, - "y": -0.7818622705514925 + "x": -0.62345, + "y": -0.78186 }, { - "x": -0.22258884624550823, - "y": -0.9749124091563783 + "x": -0.22259, + "y": -0.97491 }, { - "x": 0.22258884624550823, - "y": -0.9749124091563783 + "x": 0.22259, + "y": -0.97491 }, { - "x": 0.6234511928676252, - "y": -0.7818622705514925 + "x": 0.62345, + "y": -0.78186 }, { - "x": 0.9010113457917152, - "y": -0.4337955218240528 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -29077,11 +29077,11 @@ } }, { - "x": 572.4759999999999, + "x": 572.476, "y": 163.636 }, { - "x": 546.2579999999998, + "x": 546.258, "y": 136.742 }, { @@ -29099,7 +29099,7 @@ "y": 0 }, { - "x": 559.3669999999998, + "x": 559.367, "y": 150.189 }, { @@ -29107,7 +29107,7 @@ "y": 0 }, { - "x": 559.3669999999998, + "x": 559.367, "y": 150.189 }, { @@ -29175,98 +29175,98 @@ "body": null, "index": 0, "isInternal": false, - "x": 572.4759999999999, - "y": 153.18099999999998 + "x": 572.476, + "y": 153.181 }, { "body": null, "index": 1, "isInternal": false, - "x": 569.8799999999999, - "y": 158.57299999999998 + "x": 569.88, + "y": 158.573 }, { "body": null, "index": 2, "isInternal": false, - "x": 565.2009999999998, + "x": 565.201, "y": 162.304 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.3669999999998, + "x": 559.367, "y": 163.636 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.5329999999999, + "x": 553.533, "y": 162.304 }, { "body": null, "index": 5, "isInternal": false, - "x": 548.8539999999998, - "y": 158.57299999999998 + "x": 548.854, + "y": 158.573 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.2579999999998, - "y": 153.18099999999998 + "x": 546.258, + "y": 153.181 }, { "body": null, "index": 7, "isInternal": false, - "x": 546.2579999999998, + "x": 546.258, "y": 147.197 }, { "body": null, "index": 8, "isInternal": false, - "x": 548.8539999999998, + "x": 548.854, "y": 141.805 }, { "body": null, "index": 9, "isInternal": false, - "x": 553.5329999999999, + "x": 553.533, "y": 138.074 }, { "body": null, "index": 10, "isInternal": false, - "x": 559.3669999999998, + "x": 559.367, "y": 136.742 }, { "body": null, "index": 11, "isInternal": false, - "x": 565.2009999999998, + "x": 565.201, "y": 138.074 }, { "body": null, "index": 12, "isInternal": false, - "x": 569.8799999999999, + "x": 569.88, "y": 141.805 }, { "body": null, "index": 13, "isInternal": false, - "x": 572.4759999999999, + "x": 572.476, "y": 147.197 }, { @@ -29281,7 +29281,7 @@ "bounds": { "#": 3293 }, - "circleRadius": 13.519247256515776, + "circleRadius": 13.51925, "collisionFilter": { "#": 3296 }, @@ -29296,13 +29296,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 196.2046090072847, - "inverseInertia": 0.005096720230271818, - "inverseMass": 1.8015055109494786, + "inertia": 196.20461, + "inverseInertia": 0.0051, + "inverseMass": 1.80151, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.55509128, + "mass": 0.55509, "motion": 0, "parent": null, "position": { @@ -29357,28 +29357,28 @@ } ], { - "x": -0.901008887984407, - "y": -0.4338006267550824 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6234578160368234, - "y": -0.781856989239461 + "x": -0.62346, + "y": -0.78186 }, { - "x": -0.22254048726425574, - "y": -0.9749234490605854 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.22254048726425574, - "y": -0.9749234490605854 + "x": 0.22254, + "y": -0.97492 }, { - "x": 0.6234578160368234, - "y": -0.781856989239461 + "x": 0.62346, + "y": -0.78186 }, { - "x": 0.901008887984407, - "y": -0.4338006267550824 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -29398,7 +29398,7 @@ }, { "x": 20, - "y": 174.65599999999998 + "y": 174.656 }, { "category": 1, @@ -29416,7 +29416,7 @@ }, { "x": 33.18, - "y": 188.17499999999998 + "y": 188.175 }, { "x": 0, @@ -29424,7 +29424,7 @@ }, { "x": 33.18, - "y": 188.17499999999998 + "y": 188.175 }, { "fillStyle": "#C7F464", @@ -29499,7 +29499,7 @@ "index": 1, "isInternal": false, "x": 43.75, - "y": 196.60399999999998 + "y": 196.604 }, { "body": null, @@ -29527,7 +29527,7 @@ "index": 5, "isInternal": false, "x": 22.61, - "y": 196.60399999999998 + "y": 196.604 }, { "body": null, @@ -29541,63 +29541,63 @@ "index": 7, "isInternal": false, "x": 20, - "y": 185.16699999999997 + "y": 185.167 }, { "body": null, "index": 8, "isInternal": false, "x": 22.61, - "y": 179.74599999999998 + "y": 179.746 }, { "body": null, "index": 9, "isInternal": false, "x": 27.314, - "y": 175.99499999999998 + "y": 175.995 }, { "body": null, "index": 10, "isInternal": false, "x": 33.18, - "y": 174.65599999999998 + "y": 174.656 }, { "body": null, "index": 11, "isInternal": false, "x": 39.046, - "y": 175.99499999999998 + "y": 175.995 }, { "body": null, "index": 12, "isInternal": false, "x": 43.75, - "y": 179.74599999999998 + "y": 179.746 }, { "body": null, "index": 13, "isInternal": false, "x": 46.36, - "y": 185.16699999999997 + "y": 185.167 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 580.8002039999999, + "area": 580.8002, "axes": { "#": 3321 }, "bounds": { "#": 3329 }, - "circleRadius": 13.828489368998628, + "circleRadius": 13.82849, "collisionFilter": { "#": 3332 }, @@ -29612,13 +29612,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 214.7998214113765, - "inverseInertia": 0.004655497352974227, - "inverseMass": 1.7217624806481648, + "inertia": 214.79982, + "inverseInertia": 0.00466, + "inverseMass": 1.72176, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5808002039999999, + "mass": 0.5808, "motion": 0, "parent": null, "position": { @@ -29673,28 +29673,28 @@ } ], { - "x": -0.900989908126125, - "y": -0.43384004593268777 + "x": -0.90099, + "y": -0.43384 }, { - "x": -0.6234459070160497, - "y": -0.7818664854212226 + "x": -0.62345, + "y": -0.78187 }, { - "x": -0.2224497580083217, - "y": -0.9749441548940324 + "x": -0.22245, + "y": -0.97494 }, { - "x": 0.2224497580083217, - "y": -0.9749441548940324 + "x": 0.22245, + "y": -0.97494 }, { - "x": 0.6234459070160497, - "y": -0.7818664854212226 + "x": 0.62345, + "y": -0.78187 }, { - "x": 0.900989908126125, - "y": -0.43384004593268777 + "x": 0.90099, + "y": -0.43384 }, { "x": 1, @@ -29710,11 +29710,11 @@ }, { "x": 73.324, - "y": 202.31199999999998 + "y": 202.312 }, { "x": 46.36, - "y": 174.65599999999998 + "y": 174.656 }, { "category": 1, @@ -29732,7 +29732,7 @@ }, { "x": 59.842, - "y": 188.48399999999998 + "y": 188.484 }, { "x": 0, @@ -29740,7 +29740,7 @@ }, { "x": 59.842, - "y": 188.48399999999998 + "y": 188.484 }, { "fillStyle": "#556270", @@ -29808,56 +29808,56 @@ "index": 0, "isInternal": false, "x": 73.324, - "y": 191.56099999999998 + "y": 191.561 }, { "body": null, "index": 1, "isInternal": false, "x": 70.654, - "y": 197.10599999999997 + "y": 197.106 }, { "body": null, "index": 2, "isInternal": false, "x": 65.842, - "y": 200.94299999999998 + "y": 200.943 }, { "body": null, "index": 3, "isInternal": false, "x": 59.842, - "y": 202.31199999999998 + "y": 202.312 }, { "body": null, "index": 4, "isInternal": false, "x": 53.842, - "y": 200.94299999999998 + "y": 200.943 }, { "body": null, "index": 5, "isInternal": false, "x": 49.03, - "y": 197.10599999999997 + "y": 197.106 }, { "body": null, "index": 6, "isInternal": false, "x": 46.36, - "y": 191.56099999999998 + "y": 191.561 }, { "body": null, "index": 7, "isInternal": false, "x": 46.36, - "y": 185.40699999999998 + "y": 185.407 }, { "body": null, @@ -29871,21 +29871,21 @@ "index": 9, "isInternal": false, "x": 53.842, - "y": 176.02499999999998 + "y": 176.025 }, { "body": null, "index": 10, "isInternal": false, "x": 59.842, - "y": 174.65599999999998 + "y": 174.656 }, { "body": null, "index": 11, "isInternal": false, "x": 65.842, - "y": 176.02499999999998 + "y": 176.025 }, { "body": null, @@ -29899,21 +29899,21 @@ "index": 13, "isInternal": false, "x": 73.324, - "y": 185.40699999999998 + "y": 185.407 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 822.838178, + "area": 822.83818, "axes": { "#": 3357 }, "bounds": { "#": 3367 }, - "circleRadius": 16.349665637860085, + "circleRadius": 16.34967, "collisionFilter": { "#": 3370 }, @@ -29928,13 +29928,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 431.0675559878762, - "inverseInertia": 0.002319822000308752, - "inverseMass": 1.2153057876223141, + "inertia": 431.06756, + "inverseInertia": 0.00232, + "inverseMass": 1.21531, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.822838178, + "mass": 0.82284, "motion": 0, "parent": null, "position": { @@ -29995,36 +29995,36 @@ } ], { - "x": -0.939700837042068, - "y": -0.3419975685036909 + "x": -0.9397, + "y": -0.342 }, { - "x": -0.7660516746559193, - "y": -0.6427789913779554 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.5000222876887215, - "y": -0.8660125355989585 + "x": -0.50002, + "y": -0.86601 }, { - "x": -0.17364468034730493, - "y": -0.9848083696776151 + "x": -0.17364, + "y": -0.98481 }, { - "x": 0.17364468034730493, - "y": -0.9848083696776151 + "x": 0.17364, + "y": -0.98481 }, { - "x": 0.5000222876887215, - "y": -0.8660125355989585 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.7660516746559193, - "y": -0.6427789913779554 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.939700837042068, - "y": -0.3419975685036909 + "x": 0.9397, + "y": -0.342 }, { "x": 1, @@ -30040,11 +30040,11 @@ }, { "x": 105.526, - "y": 207.35599999999997 + "y": 207.356 }, { "x": 73.324, - "y": 174.65599999999998 + "y": 174.656 }, { "category": 1, @@ -30062,7 +30062,7 @@ }, { "x": 89.425, - "y": 191.00599999999997 + "y": 191.006 }, { "x": 0, @@ -30070,7 +30070,7 @@ }, { "x": 89.425, - "y": 191.00599999999997 + "y": 191.006 }, { "fillStyle": "#556270", @@ -30150,140 +30150,140 @@ "index": 0, "isInternal": false, "x": 105.526, - "y": 193.84499999999997 + "y": 193.845 }, { "body": null, "index": 1, "isInternal": false, "x": 103.584, - "y": 199.18099999999998 + "y": 199.181 }, { "body": null, "index": 2, "isInternal": false, "x": 99.934, - "y": 203.53099999999998 + "y": 203.531 }, { "body": null, "index": 3, "isInternal": false, "x": 95.017, - "y": 206.36999999999998 + "y": 206.37 }, { "body": null, "index": 4, "isInternal": false, "x": 89.425, - "y": 207.35599999999997 + "y": 207.356 }, { "body": null, "index": 5, "isInternal": false, "x": 83.833, - "y": 206.36999999999998 + "y": 206.37 }, { "body": null, "index": 6, "isInternal": false, "x": 78.916, - "y": 203.53099999999998 + "y": 203.531 }, { "body": null, "index": 7, "isInternal": false, - "x": 75.26599999999999, - "y": 199.18099999999998 + "x": 75.266, + "y": 199.181 }, { "body": null, "index": 8, "isInternal": false, "x": 73.324, - "y": 193.84499999999997 + "y": 193.845 }, { "body": null, "index": 9, "isInternal": false, "x": 73.324, - "y": 188.16699999999997 + "y": 188.167 }, { "body": null, "index": 10, "isInternal": false, - "x": 75.26599999999999, - "y": 182.83099999999996 + "x": 75.266, + "y": 182.831 }, { "body": null, "index": 11, "isInternal": false, "x": 78.916, - "y": 178.48099999999997 + "y": 178.481 }, { "body": null, "index": 12, "isInternal": false, "x": 83.833, - "y": 175.64199999999997 + "y": 175.642 }, { "body": null, "index": 13, "isInternal": false, "x": 89.425, - "y": 174.65599999999998 + "y": 174.656 }, { "body": null, "index": 14, "isInternal": false, "x": 95.017, - "y": 175.64199999999997 + "y": 175.642 }, { "body": null, "index": 15, "isInternal": false, "x": 99.934, - "y": 178.48099999999997 + "y": 178.481 }, { "body": null, "index": 16, "isInternal": false, "x": 103.584, - "y": 182.83099999999996 + "y": 182.831 }, { "body": null, "index": 17, "isInternal": false, "x": 105.526, - "y": 188.16699999999997 + "y": 188.167 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1028.4780559999997, + "area": 1028.47806, "axes": { "#": 3399 }, "bounds": { "#": 3410 }, - "circleRadius": 18.24326989026063, + "circleRadius": 18.24327, "collisionFilter": { "#": 3413 }, @@ -30298,13 +30298,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 673.4323322400562, - "inverseInertia": 0.0014849301884180001, - "inverseMass": 0.9723104874879316, + "inertia": 673.43233, + "inverseInertia": 0.00148, + "inverseMass": 0.97231, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0284780559999998, + "mass": 1.02848, "motion": 0, "parent": null, "position": { @@ -30368,40 +30368,40 @@ } ], { - "x": -0.9510392189175532, - "y": -0.3090702251603838 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8090314393016936, - "y": -0.5877653700426984 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877653700426984, - "y": -0.8090314393016936 + "x": -0.58777, + "y": -0.80903 }, { - "x": -0.3090702251603838, - "y": -0.9510392189175532 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090702251603838, - "y": -0.9510392189175532 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5877653700426984, - "y": -0.8090314393016936 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090314393016936, - "y": -0.5877653700426984 + "x": 0.80903, + "y": -0.58777 }, { - "x": 0.9510392189175532, - "y": -0.3090702251603838 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -30416,12 +30416,12 @@ } }, { - "x": 141.56399999999996, + "x": 141.564, "y": 210.694 }, { "x": 105.526, - "y": 174.65599999999998 + "y": 174.656 }, { "category": 1, @@ -30438,16 +30438,16 @@ "y": 0 }, { - "x": 123.54499999999999, - "y": 192.67499999999998 + "x": 123.545, + "y": 192.675 }, { "x": 0, "y": 0 }, { - "x": 123.54499999999999, - "y": 192.67499999999998 + "x": 123.545, + "y": 192.675 }, { "fillStyle": "#4ECDC4", @@ -30532,14 +30532,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 141.56399999999996, + "x": 141.564, "y": 195.529 }, { "body": null, "index": 1, "isInternal": false, - "x": 139.79999999999998, + "x": 139.8, "y": 200.957 }, { @@ -30554,41 +30554,41 @@ "index": 3, "isInternal": false, "x": 131.827, - "y": 208.92999999999998 + "y": 208.93 }, { "body": null, "index": 4, "isInternal": false, - "x": 126.39899999999999, + "x": 126.399, "y": 210.694 }, { "body": null, "index": 5, "isInternal": false, - "x": 120.69099999999999, + "x": 120.691, "y": 210.694 }, { "body": null, "index": 6, "isInternal": false, - "x": 115.26299999999999, - "y": 208.92999999999998 + "x": 115.263, + "y": 208.93 }, { "body": null, "index": 7, "isInternal": false, - "x": 110.64499999999998, + "x": 110.645, "y": 205.575 }, { "body": null, "index": 8, "isInternal": false, - "x": 107.28999999999999, + "x": 107.29, "y": 200.957 }, { @@ -30603,42 +30603,42 @@ "index": 10, "isInternal": false, "x": 105.526, - "y": 189.82099999999997 + "y": 189.821 }, { "body": null, "index": 11, "isInternal": false, - "x": 107.28999999999999, - "y": 184.39299999999997 + "x": 107.29, + "y": 184.393 }, { "body": null, "index": 12, "isInternal": false, - "x": 110.64499999999998, - "y": 179.77499999999998 + "x": 110.645, + "y": 179.775 }, { "body": null, "index": 13, "isInternal": false, - "x": 115.26299999999999, + "x": 115.263, "y": 176.42 }, { "body": null, "index": 14, "isInternal": false, - "x": 120.69099999999999, - "y": 174.65599999999998 + "x": 120.691, + "y": 174.656 }, { "body": null, "index": 15, "isInternal": false, - "x": 126.39899999999999, - "y": 174.65599999999998 + "x": 126.399, + "y": 174.656 }, { "body": null, @@ -30652,35 +30652,35 @@ "index": 17, "isInternal": false, "x": 136.445, - "y": 179.77499999999998 + "y": 179.775 }, { "body": null, "index": 18, "isInternal": false, - "x": 139.79999999999998, - "y": 184.39299999999997 + "x": 139.8, + "y": 184.393 }, { "body": null, "index": 19, "isInternal": false, - "x": 141.56399999999996, - "y": 189.82099999999997 + "x": 141.564, + "y": 189.821 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 510.6009000000001, + "area": 510.6009, "axes": { "#": 3444 }, "bounds": { "#": 3452 }, - "circleRadius": 12.966092249657065, + "circleRadius": 12.96609, "collisionFilter": { "#": 3455 }, @@ -30695,13 +30695,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 166.01355400407064, - "inverseInertia": 0.00602360455445391, - "inverseMass": 1.958476767275576, + "inertia": 166.01355, + "inverseInertia": 0.00602, + "inverseMass": 1.95848, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5106009000000001, + "mass": 0.5106, "motion": 0, "parent": null, "position": { @@ -30756,28 +30756,28 @@ } ], { - "x": -0.9009489805770172, - "y": -0.43392503315346237 + "x": -0.90095, + "y": -0.43393 }, { - "x": -0.6235531003785562, - "y": -0.7817809993906799 + "x": -0.62355, + "y": -0.78178 }, { - "x": -0.22250482746270506, - "y": -0.9749315882439095 + "x": -0.2225, + "y": -0.97493 }, { - "x": 0.22250482746270506, - "y": -0.9749315882439095 + "x": 0.2225, + "y": -0.97493 }, { - "x": 0.6235531003785562, - "y": -0.7817809993906799 + "x": 0.62355, + "y": -0.78178 }, { - "x": 0.9009489805770172, - "y": -0.43392503315346237 + "x": 0.90095, + "y": -0.43393 }, { "x": 1, @@ -30792,12 +30792,12 @@ } }, { - "x": 166.84599999999995, + "x": 166.846, "y": 200.588 }, { - "x": 141.56399999999996, - "y": 174.65599999999998 + "x": 141.564, + "y": 174.656 }, { "category": 1, @@ -30814,16 +30814,16 @@ "y": 0 }, { - "x": 154.20499999999996, - "y": 187.62199999999999 + "x": 154.205, + "y": 187.622 }, { "x": 0, "y": 0 }, { - "x": 154.20499999999996, - "y": 187.62199999999999 + "x": 154.205, + "y": 187.622 }, { "fillStyle": "#C44D58", @@ -30890,98 +30890,98 @@ "body": null, "index": 0, "isInternal": false, - "x": 166.84599999999995, - "y": 190.50699999999998 + "x": 166.846, + "y": 190.507 }, { "body": null, "index": 1, "isInternal": false, - "x": 164.34199999999996, + "x": 164.342, "y": 195.706 }, { "body": null, "index": 2, "isInternal": false, - "x": 159.83099999999996, - "y": 199.30399999999997 + "x": 159.831, + "y": 199.304 }, { "body": null, "index": 3, "isInternal": false, - "x": 154.20499999999996, + "x": 154.205, "y": 200.588 }, { "body": null, "index": 4, "isInternal": false, - "x": 148.57899999999995, - "y": 199.30399999999997 + "x": 148.579, + "y": 199.304 }, { "body": null, "index": 5, "isInternal": false, - "x": 144.06799999999996, + "x": 144.068, "y": 195.706 }, { "body": null, "index": 6, "isInternal": false, - "x": 141.56399999999996, - "y": 190.50699999999998 + "x": 141.564, + "y": 190.507 }, { "body": null, "index": 7, "isInternal": false, - "x": 141.56399999999996, + "x": 141.564, "y": 184.737 }, { "body": null, "index": 8, "isInternal": false, - "x": 144.06799999999996, - "y": 179.53799999999998 + "x": 144.068, + "y": 179.538 }, { "body": null, "index": 9, "isInternal": false, - "x": 148.57899999999995, + "x": 148.579, "y": 175.94 }, { "body": null, "index": 10, "isInternal": false, - "x": 154.20499999999996, - "y": 174.65599999999998 + "x": 154.205, + "y": 174.656 }, { "body": null, "index": 11, "isInternal": false, - "x": 159.83099999999996, + "x": 159.831, "y": 175.94 }, { "body": null, "index": 12, "isInternal": false, - "x": 164.34199999999996, - "y": 179.53799999999998 + "x": 164.342, + "y": 179.538 }, { "body": null, "index": 13, "isInternal": false, - "x": 166.84599999999995, + "x": 166.846, "y": 184.737 }, { @@ -30989,14 +30989,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1006.7004680000002, + "area": 1006.70047, "axes": { "#": 3480 }, "bounds": { "#": 3491 }, - "circleRadius": 18.048996913580247, + "circleRadius": 18.049, "collisionFilter": { "#": 3494 }, @@ -31011,13 +31011,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 645.2149843764809, - "inverseInertia": 0.0015498710107707343, - "inverseMass": 0.9933441294476479, + "inertia": 645.21498, + "inverseInertia": 0.00155, + "inverseMass": 0.99334, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0067004680000002, + "mass": 1.0067, "motion": 0, "parent": null, "position": { @@ -31081,40 +31081,40 @@ } ], { - "x": -0.9510639936676508, - "y": -0.3089939804412682 + "x": -0.95106, + "y": -0.30899 }, { - "x": -0.8090652252473527, - "y": -0.5877188624635511 + "x": -0.80907, + "y": -0.58772 }, { - "x": -0.5877188624635511, - "y": -0.8090652252473527 + "x": -0.58772, + "y": -0.80907 }, { - "x": -0.3089939804412682, - "y": -0.9510639936676508 + "x": -0.30899, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.3089939804412682, - "y": -0.9510639936676508 + "x": 0.30899, + "y": -0.95106 }, { - "x": 0.5877188624635511, - "y": -0.8090652252473527 + "x": 0.58772, + "y": -0.80907 }, { - "x": 0.8090652252473527, - "y": -0.5877188624635511 + "x": 0.80907, + "y": -0.58772 }, { - "x": 0.9510639936676508, - "y": -0.3089939804412682 + "x": 0.95106, + "y": -0.30899 }, { "x": 1, @@ -31129,12 +31129,12 @@ } }, { - "x": 202.49999999999994, - "y": 210.30999999999997 + "x": 202.5, + "y": 210.31 }, { - "x": 166.84599999999995, - "y": 174.65599999999998 + "x": 166.846, + "y": 174.656 }, { "category": 1, @@ -31151,16 +31151,16 @@ "y": 0 }, { - "x": 184.67299999999994, - "y": 192.48299999999998 + "x": 184.673, + "y": 192.483 }, { "x": 0, "y": 0 }, { - "x": 184.67299999999994, - "y": 192.48299999999998 + "x": 184.673, + "y": 192.483 }, { "fillStyle": "#C7F464", @@ -31245,155 +31245,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 202.49999999999994, - "y": 195.30599999999998 + "x": 202.5, + "y": 195.306 }, { "body": null, "index": 1, "isInternal": false, - "x": 200.75499999999994, - "y": 200.67699999999996 + "x": 200.755, + "y": 200.677 }, { "body": null, "index": 2, "isInternal": false, - "x": 197.43599999999995, - "y": 205.24599999999998 + "x": 197.436, + "y": 205.246 }, { "body": null, "index": 3, "isInternal": false, - "x": 192.86699999999993, - "y": 208.56499999999997 + "x": 192.867, + "y": 208.565 }, { "body": null, "index": 4, "isInternal": false, - "x": 187.49599999999995, - "y": 210.30999999999997 + "x": 187.496, + "y": 210.31 }, { "body": null, "index": 5, "isInternal": false, - "x": 181.84999999999994, - "y": 210.30999999999997 + "x": 181.85, + "y": 210.31 }, { "body": null, "index": 6, "isInternal": false, - "x": 176.47899999999996, - "y": 208.56499999999997 + "x": 176.479, + "y": 208.565 }, { "body": null, "index": 7, "isInternal": false, - "x": 171.90999999999994, - "y": 205.24599999999998 + "x": 171.91, + "y": 205.246 }, { "body": null, "index": 8, "isInternal": false, - "x": 168.59099999999995, - "y": 200.67699999999996 + "x": 168.591, + "y": 200.677 }, { "body": null, "index": 9, "isInternal": false, - "x": 166.84599999999995, - "y": 195.30599999999998 + "x": 166.846, + "y": 195.306 }, { "body": null, "index": 10, "isInternal": false, - "x": 166.84599999999995, - "y": 189.65999999999997 + "x": 166.846, + "y": 189.66 }, { "body": null, "index": 11, "isInternal": false, - "x": 168.59099999999995, + "x": 168.591, "y": 184.289 }, { "body": null, "index": 12, "isInternal": false, - "x": 171.90999999999994, - "y": 179.71999999999997 + "x": 171.91, + "y": 179.72 }, { "body": null, "index": 13, "isInternal": false, - "x": 176.47899999999996, - "y": 176.40099999999998 + "x": 176.479, + "y": 176.401 }, { "body": null, "index": 14, "isInternal": false, - "x": 181.84999999999994, - "y": 174.65599999999998 + "x": 181.85, + "y": 174.656 }, { "body": null, "index": 15, "isInternal": false, - "x": 187.49599999999995, - "y": 174.65599999999998 + "x": 187.496, + "y": 174.656 }, { "body": null, "index": 16, "isInternal": false, - "x": 192.86699999999993, - "y": 176.40099999999998 + "x": 192.867, + "y": 176.401 }, { "body": null, "index": 17, "isInternal": false, - "x": 197.43599999999995, - "y": 179.71999999999997 + "x": 197.436, + "y": 179.72 }, { "body": null, "index": 18, "isInternal": false, - "x": 200.75499999999994, + "x": 200.755, "y": 184.289 }, { "body": null, "index": 19, "isInternal": false, - "x": 202.49999999999994, - "y": 189.65999999999997 + "x": 202.5, + "y": 189.66 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1180.0324160000002, + "area": 1180.03242, "axes": { "#": 3525 }, "bounds": { "#": 3536 }, - "circleRadius": 19.541366598079563, + "circleRadius": 19.54137, "collisionFilter": { "#": 3539 }, @@ -31408,13 +31408,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 886.5266168317393, - "inverseInertia": 0.0011279977171737843, - "inverseMass": 0.8474343470916987, + "inertia": 886.52662, + "inverseInertia": 0.00113, + "inverseMass": 0.84743, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1800324160000002, + "mass": 1.18003, "motion": 0, "parent": null, "position": { @@ -31478,40 +31478,40 @@ } ], { - "x": -0.9510280591785613, - "y": -0.30910456265648806 + "x": -0.95103, + "y": -0.3091 }, { - "x": -0.8090542788276972, - "y": -0.5877339312227897 + "x": -0.80905, + "y": -0.58773 }, { - "x": -0.5877339312227897, - "y": -0.8090542788276972 + "x": -0.58773, + "y": -0.80905 }, { - "x": -0.30910456265648806, - "y": -0.9510280591785613 + "x": -0.3091, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.30910456265648806, - "y": -0.9510280591785613 + "x": 0.3091, + "y": -0.95103 }, { - "x": 0.5877339312227897, - "y": -0.8090542788276972 + "x": 0.58773, + "y": -0.80905 }, { - "x": 0.8090542788276972, - "y": -0.5877339312227897 + "x": 0.80905, + "y": -0.58773 }, { - "x": 0.9510280591785613, - "y": -0.30910456265648806 + "x": 0.95103, + "y": -0.3091 }, { "x": 1, @@ -31526,12 +31526,12 @@ } }, { - "x": 241.10199999999992, - "y": 213.25799999999995 + "x": 241.102, + "y": 213.258 }, { - "x": 202.49999999999994, - "y": 174.65599999999998 + "x": 202.5, + "y": 174.656 }, { "category": 1, @@ -31548,16 +31548,16 @@ "y": 0 }, { - "x": 221.80099999999993, - "y": 193.95699999999997 + "x": 221.801, + "y": 193.957 }, { "x": 0, "y": 0 }, { - "x": 221.80099999999993, - "y": 193.95699999999997 + "x": 221.801, + "y": 193.957 }, { "fillStyle": "#FF6B6B", @@ -31642,155 +31642,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 241.10199999999992, - "y": 197.01399999999995 + "x": 241.102, + "y": 197.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 239.21199999999993, - "y": 202.82899999999995 + "x": 239.212, + "y": 202.829 }, { "body": null, "index": 2, "isInternal": false, - "x": 235.61899999999994, - "y": 207.77499999999998 + "x": 235.619, + "y": 207.775 }, { "body": null, "index": 3, "isInternal": false, - "x": 230.67299999999994, - "y": 211.36799999999997 + "x": 230.673, + "y": 211.368 }, { "body": null, "index": 4, "isInternal": false, - "x": 224.85799999999992, - "y": 213.25799999999995 + "x": 224.858, + "y": 213.258 }, { "body": null, "index": 5, "isInternal": false, - "x": 218.74399999999994, - "y": 213.25799999999995 + "x": 218.744, + "y": 213.258 }, { "body": null, "index": 6, "isInternal": false, - "x": 212.92899999999992, - "y": 211.36799999999997 + "x": 212.929, + "y": 211.368 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.98299999999992, - "y": 207.77499999999998 + "x": 207.983, + "y": 207.775 }, { "body": null, "index": 8, "isInternal": false, - "x": 204.38999999999993, - "y": 202.82899999999995 + "x": 204.39, + "y": 202.829 }, { "body": null, "index": 9, "isInternal": false, - "x": 202.49999999999994, - "y": 197.01399999999995 + "x": 202.5, + "y": 197.014 }, { "body": null, "index": 10, "isInternal": false, - "x": 202.49999999999994, - "y": 190.89999999999998 + "x": 202.5, + "y": 190.9 }, { "body": null, "index": 11, "isInternal": false, - "x": 204.38999999999993, - "y": 185.08499999999998 + "x": 204.39, + "y": 185.085 }, { "body": null, "index": 12, "isInternal": false, - "x": 207.98299999999992, - "y": 180.13899999999995 + "x": 207.983, + "y": 180.139 }, { "body": null, "index": 13, "isInternal": false, - "x": 212.92899999999992, - "y": 176.54599999999996 + "x": 212.929, + "y": 176.546 }, { "body": null, "index": 14, "isInternal": false, - "x": 218.74399999999994, - "y": 174.65599999999998 + "x": 218.744, + "y": 174.656 }, { "body": null, "index": 15, "isInternal": false, - "x": 224.85799999999992, - "y": 174.65599999999998 + "x": 224.858, + "y": 174.656 }, { "body": null, "index": 16, "isInternal": false, - "x": 230.67299999999994, - "y": 176.54599999999996 + "x": 230.673, + "y": 176.546 }, { "body": null, "index": 17, "isInternal": false, - "x": 235.61899999999994, - "y": 180.13899999999995 + "x": 235.619, + "y": 180.139 }, { "body": null, "index": 18, "isInternal": false, - "x": 239.21199999999993, - "y": 185.08499999999998 + "x": 239.212, + "y": 185.085 }, { "body": null, "index": 19, "isInternal": false, - "x": 241.10199999999992, - "y": 190.89999999999998 + "x": 241.102, + "y": 190.9 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 522.984246, + "area": 522.98425, "axes": { "#": 3570 }, "bounds": { "#": 3578 }, - "circleRadius": 13.12221364883402, + "circleRadius": 13.12221, "collisionFilter": { "#": 3581 }, @@ -31805,13 +31805,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 174.1636865391301, - "inverseInertia": 0.005741725039653003, - "inverseMass": 1.9121034861918191, + "inertia": 174.16369, + "inverseInertia": 0.00574, + "inverseMass": 1.9121, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.522984246, + "mass": 0.52298, "motion": 0, "parent": null, "position": { @@ -31866,28 +31866,28 @@ } ], { - "x": -0.9009719230040777, - "y": -0.43387739507645984 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.6235456985788892, - "y": -0.7817869030520816 + "x": -0.62355, + "y": -0.78179 }, { - "x": -0.22242029990218445, - "y": -0.9749508757837096 + "x": -0.22242, + "y": -0.97495 }, { - "x": 0.22242029990218445, - "y": -0.9749508757837096 + "x": 0.22242, + "y": -0.97495 }, { - "x": 0.6235456985788892, - "y": -0.7817869030520816 + "x": 0.62355, + "y": -0.78179 }, { - "x": 0.9009719230040777, - "y": -0.43387739507645984 + "x": 0.90097, + "y": -0.43388 }, { "x": 1, @@ -31902,12 +31902,12 @@ } }, { - "x": 266.68799999999993, - "y": 200.89999999999995 + "x": 266.688, + "y": 200.9 }, { - "x": 241.10199999999992, - "y": 174.65599999999998 + "x": 241.102, + "y": 174.656 }, { "category": 1, @@ -31924,16 +31924,16 @@ "y": 0 }, { - "x": 253.89499999999992, - "y": 187.77799999999996 + "x": 253.895, + "y": 187.778 }, { "x": 0, "y": 0 }, { - "x": 253.89499999999992, - "y": 187.77799999999996 + "x": 253.895, + "y": 187.778 }, { "fillStyle": "#556270", @@ -32000,113 +32000,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 266.68799999999993, - "y": 190.69799999999995 + "x": 266.688, + "y": 190.698 }, { "body": null, "index": 1, "isInternal": false, - "x": 264.15399999999994, - "y": 195.95999999999995 + "x": 264.154, + "y": 195.96 }, { "body": null, "index": 2, "isInternal": false, - "x": 259.58899999999994, - "y": 199.60099999999997 + "x": 259.589, + "y": 199.601 }, { "body": null, "index": 3, "isInternal": false, - "x": 253.89499999999992, - "y": 200.89999999999995 + "x": 253.895, + "y": 200.9 }, { "body": null, "index": 4, "isInternal": false, - "x": 248.20099999999994, - "y": 199.60099999999997 + "x": 248.201, + "y": 199.601 }, { "body": null, "index": 5, "isInternal": false, - "x": 243.6359999999999, - "y": 195.95999999999995 + "x": 243.636, + "y": 195.96 }, { "body": null, "index": 6, "isInternal": false, - "x": 241.10199999999992, - "y": 190.69799999999995 + "x": 241.102, + "y": 190.698 }, { "body": null, "index": 7, "isInternal": false, - "x": 241.10199999999992, - "y": 184.85799999999998 + "x": 241.102, + "y": 184.858 }, { "body": null, "index": 8, "isInternal": false, - "x": 243.6359999999999, - "y": 179.59599999999998 + "x": 243.636, + "y": 179.596 }, { "body": null, "index": 9, "isInternal": false, - "x": 248.20099999999994, - "y": 175.95499999999996 + "x": 248.201, + "y": 175.955 }, { "body": null, "index": 10, "isInternal": false, - "x": 253.89499999999992, - "y": 174.65599999999998 + "x": 253.895, + "y": 174.656 }, { "body": null, "index": 11, "isInternal": false, - "x": 259.58899999999994, - "y": 175.95499999999996 + "x": 259.589, + "y": 175.955 }, { "body": null, "index": 12, "isInternal": false, - "x": 264.15399999999994, - "y": 179.59599999999998 + "x": 264.154, + "y": 179.596 }, { "body": null, "index": 13, "isInternal": false, - "x": 266.68799999999993, - "y": 184.85799999999998 + "x": 266.688, + "y": 184.858 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 423.244812, + "area": 423.24481, "axes": { "#": 3606 }, "bounds": { "#": 3613 }, - "circleRadius": 11.87795781893004, + "circleRadius": 11.87796, "collisionFilter": { "#": 3616 }, @@ -32121,13 +32121,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 114.09084813562451, - "inverseInertia": 0.008764944921885922, - "inverseMass": 2.362698777746625, + "inertia": 114.09085, + "inverseInertia": 0.00876, + "inverseMass": 2.3627, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.423244812, + "mass": 0.42324, "motion": 0, "parent": null, "position": { @@ -32179,24 +32179,24 @@ } ], { - "x": -0.8660528810551013, - "y": -0.49995240495087007 + "x": -0.86605, + "y": -0.49995 }, { - "x": -0.49995240495087007, - "y": -0.8660528810551013 + "x": -0.49995, + "y": -0.86605 }, { "x": 0, "y": -1 }, { - "x": 0.49995240495087007, - "y": -0.8660528810551013 + "x": 0.49995, + "y": -0.86605 }, { - "x": 0.8660528810551013, - "y": -0.49995240495087007 + "x": 0.86605, + "y": -0.49995 }, { "x": 1, @@ -32211,12 +32211,12 @@ } }, { - "x": 289.63399999999996, + "x": 289.634, "y": 197.602 }, { - "x": 266.68799999999993, - "y": 174.65599999999998 + "x": 266.688, + "y": 174.656 }, { "category": 1, @@ -32233,7 +32233,7 @@ "y": 0 }, { - "x": 278.16099999999994, + "x": 278.161, "y": 186.129 }, { @@ -32241,7 +32241,7 @@ "y": 0 }, { - "x": 278.16099999999994, + "x": 278.161, "y": 186.129 }, { @@ -32303,99 +32303,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 289.63399999999996, + "x": 289.634, "y": 189.203 }, { "body": null, "index": 1, "isInternal": false, - "x": 286.55999999999995, + "x": 286.56, "y": 194.528 }, { "body": null, "index": 2, "isInternal": false, - "x": 281.23499999999996, + "x": 281.235, "y": 197.602 }, { "body": null, "index": 3, "isInternal": false, - "x": 275.08699999999993, + "x": 275.087, "y": 197.602 }, { "body": null, "index": 4, "isInternal": false, - "x": 269.76199999999994, + "x": 269.762, "y": 194.528 }, { "body": null, "index": 5, "isInternal": false, - "x": 266.68799999999993, + "x": 266.688, "y": 189.203 }, { "body": null, "index": 6, "isInternal": false, - "x": 266.68799999999993, - "y": 183.05499999999998 + "x": 266.688, + "y": 183.055 }, { "body": null, "index": 7, "isInternal": false, - "x": 269.76199999999994, + "x": 269.762, "y": 177.73 }, { "body": null, "index": 8, "isInternal": false, - "x": 275.08699999999993, - "y": 174.65599999999998 + "x": 275.087, + "y": 174.656 }, { "body": null, "index": 9, "isInternal": false, - "x": 281.23499999999996, - "y": 174.65599999999998 + "x": 281.235, + "y": 174.656 }, { "body": null, "index": 10, "isInternal": false, - "x": 286.55999999999995, + "x": 286.56, "y": 177.73 }, { "body": null, "index": 11, "isInternal": false, - "x": 289.63399999999996, - "y": 183.05499999999998 + "x": 289.634, + "y": 183.055 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 346.487844, + "area": 346.48784, "axes": { "#": 3639 }, "bounds": { "#": 3646 }, - "circleRadius": 10.7468707133059, + "circleRadius": 10.74687, "collisionFilter": { "#": 3649 }, @@ -32410,13 +32410,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 76.46162572822102, - "inverseInertia": 0.013078455898314918, - "inverseMass": 2.886104137032871, + "inertia": 76.46163, + "inverseInertia": 0.01308, + "inverseMass": 2.8861, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.346487844, + "mass": 0.34649, "motion": 0, "parent": null, "position": { @@ -32468,24 +32468,24 @@ } ], { - "x": -0.8659999984426783, - "y": -0.5000440007612145 + "x": -0.866, + "y": -0.50004 }, { - "x": -0.5000440007612145, - "y": -0.8659999984426783 + "x": -0.50004, + "y": -0.866 }, { "x": 0, "y": -1 }, { - "x": 0.5000440007612145, - "y": -0.8659999984426783 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.8659999984426783, - "y": -0.5000440007612145 + "x": 0.866, + "y": -0.50004 }, { "x": 1, @@ -32501,11 +32501,11 @@ }, { "x": 310.396, - "y": 195.41799999999998 + "y": 195.418 }, { - "x": 289.63399999999996, - "y": 174.65599999999998 + "x": 289.634, + "y": 174.656 }, { "category": 1, @@ -32523,7 +32523,7 @@ }, { "x": 300.015, - "y": 185.03699999999998 + "y": 185.037 }, { "x": 0, @@ -32531,7 +32531,7 @@ }, { "x": 300.015, - "y": 185.03699999999998 + "y": 185.037 }, { "fillStyle": "#C44D58", @@ -32593,49 +32593,49 @@ "index": 0, "isInternal": false, "x": 310.396, - "y": 187.81799999999998 + "y": 187.818 }, { "body": null, "index": 1, "isInternal": false, "x": 307.614, - "y": 192.63599999999997 + "y": 192.636 }, { "body": null, "index": 2, "isInternal": false, "x": 302.796, - "y": 195.41799999999998 + "y": 195.418 }, { "body": null, "index": 3, "isInternal": false, "x": 297.234, - "y": 195.41799999999998 + "y": 195.418 }, { "body": null, "index": 4, "isInternal": false, "x": 292.416, - "y": 192.63599999999997 + "y": 192.636 }, { "body": null, "index": 5, "isInternal": false, - "x": 289.63399999999996, - "y": 187.81799999999998 + "x": 289.634, + "y": 187.818 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.63399999999996, - "y": 182.25599999999997 + "x": 289.634, + "y": 182.256 }, { "body": null, @@ -32649,14 +32649,14 @@ "index": 8, "isInternal": false, "x": 297.234, - "y": 174.65599999999998 + "y": 174.656 }, { "body": null, "index": 9, "isInternal": false, "x": 302.796, - "y": 174.65599999999998 + "y": 174.656 }, { "body": null, @@ -32670,21 +32670,21 @@ "index": 11, "isInternal": false, "x": 310.396, - "y": 182.25599999999997 + "y": 182.256 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 956.757512, + "area": 956.75751, "axes": { "#": 3672 }, "bounds": { "#": 3682 }, - "circleRadius": 17.630186899862824, + "circleRadius": 17.63019, "collisionFilter": { "#": 3685 }, @@ -32699,13 +32699,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 582.8009229244419, - "inverseInertia": 0.0017158517783089483, - "inverseMass": 1.0451969150569889, + "inertia": 582.80092, + "inverseInertia": 0.00172, + "inverseMass": 1.0452, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.956757512, + "mass": 0.95676, "motion": 0, "parent": null, "position": { @@ -32766,36 +32766,36 @@ } ], { - "x": -0.9397075647021542, - "y": -0.3419790824619932 + "x": -0.93971, + "y": -0.34198 }, { - "x": -0.7660618415307433, - "y": -0.6427668744969101 + "x": -0.76606, + "y": -0.64277 }, { - "x": -0.49998638622321817, - "y": -0.8660332635594586 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.17360831062514825, - "y": -0.9848147818152824 + "x": -0.17361, + "y": -0.98481 }, { - "x": 0.17360831062514825, - "y": -0.9848147818152824 + "x": 0.17361, + "y": -0.98481 }, { - "x": 0.49998638622321817, - "y": -0.8660332635594586 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.7660618415307433, - "y": -0.6427668744969101 + "x": 0.76606, + "y": -0.64277 }, { - "x": 0.9397075647021542, - "y": -0.3419790824619932 + "x": 0.93971, + "y": -0.34198 }, { "x": 1, @@ -32810,12 +32810,12 @@ } }, { - "x": 345.12000000000006, - "y": 209.91599999999997 + "x": 345.12, + "y": 209.916 }, { "x": 310.396, - "y": 174.65599999999998 + "y": 174.656 }, { "category": 1, @@ -32832,16 +32832,16 @@ "y": 0 }, { - "x": 327.75800000000004, - "y": 192.28599999999997 + "x": 327.758, + "y": 192.286 }, { "x": 0, "y": 0 }, { - "x": 327.75800000000004, - "y": 192.28599999999997 + "x": 327.758, + "y": 192.286 }, { "fillStyle": "#556270", @@ -32920,141 +32920,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 345.12000000000006, - "y": 195.34699999999998 + "x": 345.12, + "y": 195.347 }, { "body": null, "index": 1, "isInternal": false, "x": 343.026, - "y": 201.10099999999997 + "y": 201.101 }, { "body": null, "index": 2, "isInternal": false, - "x": 339.09000000000003, - "y": 205.79199999999997 + "x": 339.09, + "y": 205.792 }, { "body": null, "index": 3, "isInternal": false, "x": 333.788, - "y": 208.85299999999998 + "y": 208.853 }, { "body": null, "index": 4, "isInternal": false, - "x": 327.75800000000004, - "y": 209.91599999999997 + "x": 327.758, + "y": 209.916 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.72800000000007, - "y": 208.85299999999998 + "x": 321.728, + "y": 208.853 }, { "body": null, "index": 6, "isInternal": false, - "x": 316.42600000000004, - "y": 205.79199999999997 + "x": 316.426, + "y": 205.792 }, { "body": null, "index": 7, "isInternal": false, - "x": 312.49000000000007, - "y": 201.10099999999997 + "x": 312.49, + "y": 201.101 }, { "body": null, "index": 8, "isInternal": false, "x": 310.396, - "y": 195.34699999999998 + "y": 195.347 }, { "body": null, "index": 9, "isInternal": false, "x": 310.396, - "y": 189.22499999999997 + "y": 189.225 }, { "body": null, "index": 10, "isInternal": false, - "x": 312.49000000000007, - "y": 183.47099999999998 + "x": 312.49, + "y": 183.471 }, { "body": null, "index": 11, "isInternal": false, - "x": 316.42600000000004, - "y": 178.77999999999997 + "x": 316.426, + "y": 178.78 }, { "body": null, "index": 12, "isInternal": false, - "x": 321.72800000000007, - "y": 175.71899999999997 + "x": 321.728, + "y": 175.719 }, { "body": null, "index": 13, "isInternal": false, - "x": 327.75800000000004, - "y": 174.65599999999998 + "x": 327.758, + "y": 174.656 }, { "body": null, "index": 14, "isInternal": false, "x": 333.788, - "y": 175.71899999999997 + "y": 175.719 }, { "body": null, "index": 15, "isInternal": false, - "x": 339.09000000000003, - "y": 178.77999999999997 + "x": 339.09, + "y": 178.78 }, { "body": null, "index": 16, "isInternal": false, "x": 343.026, - "y": 183.47099999999998 + "y": 183.471 }, { "body": null, "index": 17, "isInternal": false, - "x": 345.12000000000006, - "y": 189.22499999999997 + "x": 345.12, + "y": 189.225 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 374.2776119999999, + "area": 374.27761, "axes": { "#": 3714 }, "bounds": { "#": 3721 }, - "circleRadius": 11.169881687242798, + "circleRadius": 11.16988, "collisionFilter": { "#": 3724 }, @@ -33069,13 +33069,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 89.21856250806918, - "inverseInertia": 0.011208429859084056, - "inverseMass": 2.671813562816042, + "inertia": 89.21856, + "inverseInertia": 0.01121, + "inverseMass": 2.67181, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.3742776119999999, + "mass": 0.37428, "motion": 0, "parent": null, "position": { @@ -33127,24 +33127,24 @@ } ], { - "x": -0.8660098852086632, - "y": -0.5000268779984512 + "x": -0.86601, + "y": -0.50003 }, { - "x": -0.5000268779984512, - "y": -0.8660098852086632 + "x": -0.50003, + "y": -0.86601 }, { "x": 0, "y": -1 }, { - "x": 0.5000268779984512, - "y": -0.8660098852086632 + "x": 0.50003, + "y": -0.86601 }, { - "x": 0.8660098852086632, - "y": -0.5000268779984512 + "x": 0.86601, + "y": -0.50003 }, { "x": 1, @@ -33159,12 +33159,12 @@ } }, { - "x": 366.69800000000004, - "y": 196.23399999999995 + "x": 366.698, + "y": 196.234 }, { - "x": 345.12000000000006, - "y": 174.65599999999998 + "x": 345.12, + "y": 174.656 }, { "category": 1, @@ -33181,16 +33181,16 @@ "y": 0 }, { - "x": 355.90900000000005, - "y": 185.44499999999996 + "x": 355.909, + "y": 185.445 }, { "x": 0, "y": 0 }, { - "x": 355.90900000000005, - "y": 185.44499999999996 + "x": 355.909, + "y": 185.445 }, { "fillStyle": "#4ECDC4", @@ -33251,99 +33251,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 366.69800000000004, - "y": 188.33599999999996 + "x": 366.698, + "y": 188.336 }, { "body": null, "index": 1, "isInternal": false, - "x": 363.8070000000001, - "y": 193.34299999999996 + "x": 363.807, + "y": 193.343 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.80000000000007, - "y": 196.23399999999995 + "x": 358.8, + "y": 196.234 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.01800000000003, - "y": 196.23399999999995 + "x": 353.018, + "y": 196.234 }, { "body": null, "index": 4, "isInternal": false, "x": 348.011, - "y": 193.34299999999996 + "y": 193.343 }, { "body": null, "index": 5, "isInternal": false, - "x": 345.12000000000006, - "y": 188.33599999999996 + "x": 345.12, + "y": 188.336 }, { "body": null, "index": 6, "isInternal": false, - "x": 345.12000000000006, - "y": 182.55399999999997 + "x": 345.12, + "y": 182.554 }, { "body": null, "index": 7, "isInternal": false, "x": 348.011, - "y": 177.54699999999997 + "y": 177.547 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.01800000000003, - "y": 174.65599999999998 + "x": 353.018, + "y": 174.656 }, { "body": null, "index": 9, "isInternal": false, - "x": 358.80000000000007, - "y": 174.65599999999998 + "x": 358.8, + "y": 174.656 }, { "body": null, "index": 10, "isInternal": false, - "x": 363.8070000000001, - "y": 177.54699999999997 + "x": 363.807, + "y": 177.547 }, { "body": null, "index": 11, "isInternal": false, - "x": 366.69800000000004, - "y": 182.55399999999997 + "x": 366.698, + "y": 182.554 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 706.691188, + "area": 706.69119, "axes": { "#": 3747 }, "bounds": { "#": 3756 }, - "circleRadius": 15.193115569272976, + "circleRadius": 15.19312, "collisionFilter": { "#": 3759 }, @@ -33358,13 +33358,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 317.9786205172635, - "inverseInertia": 0.003144865520748772, - "inverseMass": 1.4150452375528983, + "inertia": 317.97862, + "inverseInertia": 0.00314, + "inverseMass": 1.41505, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7066911880000001, + "mass": 0.70669, "motion": 0, "parent": null, "position": { @@ -33422,32 +33422,32 @@ } ], { - "x": -0.9239181562297293, - "y": -0.38259017314753085 + "x": -0.92392, + "y": -0.38259 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38259017314753085, - "y": -0.9239181562297293 + "x": -0.38259, + "y": -0.92392 }, { "x": 0, "y": -1 }, { - "x": 0.38259017314753085, - "y": -0.9239181562297293 + "x": 0.38259, + "y": -0.92392 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9239181562297293, - "y": -0.38259017314753085 + "x": 0.92392, + "y": -0.38259 }, { "x": 1, @@ -33462,12 +33462,12 @@ } }, { - "x": 396.50000000000006, + "x": 396.5, "y": 204.458 }, { - "x": 366.69800000000004, - "y": 174.65599999999998 + "x": 366.698, + "y": 174.656 }, { "category": 1, @@ -33484,7 +33484,7 @@ "y": 0 }, { - "x": 381.59900000000005, + "x": 381.599, "y": 189.557 }, { @@ -33492,7 +33492,7 @@ "y": 0 }, { - "x": 381.59900000000005, + "x": 381.599, "y": 189.557 }, { @@ -33566,7 +33566,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.50000000000006, + "x": 396.5, "y": 192.521 }, { @@ -33587,91 +33587,91 @@ "body": null, "index": 3, "isInternal": false, - "x": 384.56300000000005, + "x": 384.563, "y": 204.458 }, { "body": null, "index": 4, "isInternal": false, - "x": 378.63500000000005, + "x": 378.635, "y": 204.458 }, { "body": null, "index": 5, "isInternal": false, - "x": 373.1580000000001, + "x": 373.158, "y": 202.19 }, { "body": null, "index": 6, "isInternal": false, - "x": 368.96600000000007, + "x": 368.966, "y": 197.998 }, { "body": null, "index": 7, "isInternal": false, - "x": 366.69800000000004, + "x": 366.698, "y": 192.521 }, { "body": null, "index": 8, "isInternal": false, - "x": 366.69800000000004, + "x": 366.698, "y": 186.593 }, { "body": null, "index": 9, "isInternal": false, - "x": 368.96600000000007, - "y": 181.11599999999999 + "x": 368.966, + "y": 181.116 }, { "body": null, "index": 10, "isInternal": false, - "x": 373.1580000000001, - "y": 176.92399999999998 + "x": 373.158, + "y": 176.924 }, { "body": null, "index": 11, "isInternal": false, - "x": 378.63500000000005, - "y": 174.65599999999998 + "x": 378.635, + "y": 174.656 }, { "body": null, "index": 12, "isInternal": false, - "x": 384.56300000000005, - "y": 174.65599999999998 + "x": 384.563, + "y": 174.656 }, { "body": null, "index": 13, "isInternal": false, "x": 390.04, - "y": 176.92399999999998 + "y": 176.924 }, { "body": null, "index": 14, "isInternal": false, "x": 394.232, - "y": 181.11599999999999 + "y": 181.116 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.50000000000006, + "x": 396.5, "y": 186.593 }, { @@ -33679,14 +33679,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1214.3271480000003, + "area": 1214.32715, "axes": { "#": 3786 }, "bounds": { "#": 3797 }, - "circleRadius": 19.82334533607682, + "circleRadius": 19.82335, "collisionFilter": { "#": 3800 }, @@ -33701,13 +33701,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 938.8048244237383, - "inverseInertia": 0.001065184129847037, - "inverseMass": 0.8235013123498081, + "inertia": 938.80482, + "inverseInertia": 0.00107, + "inverseMass": 0.8235, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2143271480000004, + "mass": 1.21433, "motion": 0, "parent": null, "position": { @@ -33771,40 +33771,40 @@ } ], { - "x": -0.9510897406360536, - "y": -0.3089147216576842 + "x": -0.95109, + "y": -0.30891 }, { - "x": -0.8089452104431093, - "y": -0.5878840417132903 + "x": -0.80895, + "y": -0.58788 }, { - "x": -0.5878840417132903, - "y": -0.8089452104431093 + "x": -0.58788, + "y": -0.80895 }, { - "x": -0.3089147216576842, - "y": -0.9510897406360536 + "x": -0.30891, + "y": -0.95109 }, { "x": 0, "y": -1 }, { - "x": 0.3089147216576842, - "y": -0.9510897406360536 + "x": 0.30891, + "y": -0.95109 }, { - "x": 0.5878840417132903, - "y": -0.8089452104431093 + "x": 0.58788, + "y": -0.80895 }, { - "x": 0.8089452104431093, - "y": -0.5878840417132903 + "x": 0.80895, + "y": -0.58788 }, { - "x": 0.9510897406360536, - "y": -0.3089147216576842 + "x": 0.95109, + "y": -0.30891 }, { "x": 1, @@ -33819,12 +33819,12 @@ } }, { - "x": 435.6580000000001, + "x": 435.658, "y": 213.814 }, { - "x": 396.50000000000006, - "y": 174.65599999999998 + "x": 396.5, + "y": 174.656 }, { "category": 1, @@ -33841,16 +33841,16 @@ "y": 0 }, { - "x": 416.07900000000006, - "y": 194.23499999999999 + "x": 416.079, + "y": 194.235 }, { "x": 0, "y": 0 }, { - "x": 416.07900000000006, - "y": 194.23499999999999 + "x": 416.079, + "y": 194.235 }, { "fillStyle": "#C44D58", @@ -33935,140 +33935,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 435.6580000000001, - "y": 197.33599999999998 + "x": 435.658, + "y": 197.336 }, { "body": null, "index": 1, "isInternal": false, - "x": 433.7420000000001, - "y": 203.23499999999999 + "x": 433.742, + "y": 203.235 }, { "body": null, "index": 2, "isInternal": false, - "x": 430.09600000000006, - "y": 208.25199999999998 + "x": 430.096, + "y": 208.252 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.07900000000006, + "x": 425.079, "y": 211.898 }, { "body": null, "index": 4, "isInternal": false, - "x": 419.18000000000006, + "x": 419.18, "y": 213.814 }, { "body": null, "index": 5, "isInternal": false, - "x": 412.97800000000007, + "x": 412.978, "y": 213.814 }, { "body": null, "index": 6, "isInternal": false, - "x": 407.07900000000006, + "x": 407.079, "y": 211.898 }, { "body": null, "index": 7, "isInternal": false, - "x": 402.06200000000007, - "y": 208.25199999999998 + "x": 402.062, + "y": 208.252 }, { "body": null, "index": 8, "isInternal": false, - "x": 398.41600000000005, - "y": 203.23499999999999 + "x": 398.416, + "y": 203.235 }, { "body": null, "index": 9, "isInternal": false, - "x": 396.50000000000006, - "y": 197.33599999999998 + "x": 396.5, + "y": 197.336 }, { "body": null, "index": 10, "isInternal": false, - "x": 396.50000000000006, + "x": 396.5, "y": 191.134 }, { "body": null, "index": 11, "isInternal": false, - "x": 398.41600000000005, - "y": 185.23499999999999 + "x": 398.416, + "y": 185.235 }, { "body": null, "index": 12, "isInternal": false, - "x": 402.06200000000007, + "x": 402.062, "y": 180.218 }, { "body": null, "index": 13, "isInternal": false, - "x": 407.07900000000006, - "y": 176.57199999999997 + "x": 407.079, + "y": 176.572 }, { "body": null, "index": 14, "isInternal": false, - "x": 412.97800000000007, - "y": 174.65599999999998 + "x": 412.978, + "y": 174.656 }, { "body": null, "index": 15, "isInternal": false, - "x": 419.18000000000006, - "y": 174.65599999999998 + "x": 419.18, + "y": 174.656 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.07900000000006, - "y": 176.57199999999997 + "x": 425.079, + "y": 176.572 }, { "body": null, "index": 17, "isInternal": false, - "x": 430.09600000000006, + "x": 430.096, "y": 180.218 }, { "body": null, "index": 18, "isInternal": false, - "x": 433.7420000000001, - "y": 185.23499999999999 + "x": 433.742, + "y": 185.235 }, { "body": null, "index": 19, "isInternal": false, - "x": 435.6580000000001, + "x": 435.658, "y": 191.134 }, { @@ -34076,14 +34076,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1146.079588, + "area": 1146.07959, "axes": { "#": 3831 }, "bounds": { "#": 3842 }, - "circleRadius": 19.25810185185185, + "circleRadius": 19.2581, "collisionFilter": { "#": 3845 }, @@ -34098,13 +34098,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 836.2448559249976, - "inverseInertia": 0.0011958220046613829, - "inverseMass": 0.8725397524486754, + "inertia": 836.24486, + "inverseInertia": 0.0012, + "inverseMass": 0.87254, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.146079588, + "mass": 1.14608, "motion": 0, "parent": null, "position": { @@ -34168,40 +34168,40 @@ } ], { - "x": -0.9510462652577498, - "y": -0.3090485420436181 + "x": -0.95105, + "y": -0.30905 }, { - "x": -0.8090876097037712, - "y": -0.5876880463509853 + "x": -0.80909, + "y": -0.58769 }, { - "x": -0.5876880463509853, - "y": -0.8090876097037712 + "x": -0.58769, + "y": -0.80909 }, { - "x": -0.3090485420436181, - "y": -0.9510462652577498 + "x": -0.30905, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.3090485420436181, - "y": -0.9510462652577498 + "x": 0.30905, + "y": -0.95105 }, { - "x": 0.5876880463509853, - "y": -0.8090876097037712 + "x": 0.58769, + "y": -0.80909 }, { - "x": 0.8090876097037712, - "y": -0.5876880463509853 + "x": 0.80909, + "y": -0.58769 }, { - "x": 0.9510462652577498, - "y": -0.3090485420436181 + "x": 0.95105, + "y": -0.30905 }, { "x": 1, @@ -34216,12 +34216,12 @@ } }, { - "x": 473.7000000000001, - "y": 212.69799999999995 + "x": 473.7, + "y": 212.698 }, { - "x": 435.6580000000001, - "y": 174.65599999999998 + "x": 435.658, + "y": 174.656 }, { "category": 1, @@ -34238,16 +34238,16 @@ "y": 0 }, { - "x": 454.6790000000001, - "y": 193.67699999999996 + "x": 454.679, + "y": 193.677 }, { "x": 0, "y": 0 }, { - "x": 454.6790000000001, - "y": 193.67699999999996 + "x": 454.679, + "y": 193.677 }, { "fillStyle": "#556270", @@ -34332,155 +34332,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 473.7000000000001, - "y": 196.68999999999997 + "x": 473.7, + "y": 196.69 }, { "body": null, "index": 1, "isInternal": false, - "x": 471.8380000000001, - "y": 202.41999999999996 + "x": 471.838, + "y": 202.42 }, { "body": null, "index": 2, "isInternal": false, - "x": 468.2970000000001, - "y": 207.29499999999996 + "x": 468.297, + "y": 207.295 }, { "body": null, "index": 3, "isInternal": false, - "x": 463.4220000000001, - "y": 210.83599999999996 + "x": 463.422, + "y": 210.836 }, { "body": null, "index": 4, "isInternal": false, - "x": 457.69200000000006, - "y": 212.69799999999995 + "x": 457.692, + "y": 212.698 }, { "body": null, "index": 5, "isInternal": false, - "x": 451.6660000000001, - "y": 212.69799999999995 + "x": 451.666, + "y": 212.698 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.9360000000001, - "y": 210.83599999999996 + "x": 445.936, + "y": 210.836 }, { "body": null, "index": 7, "isInternal": false, - "x": 441.0610000000001, - "y": 207.29499999999996 + "x": 441.061, + "y": 207.295 }, { "body": null, "index": 8, "isInternal": false, - "x": 437.5200000000001, - "y": 202.41999999999996 + "x": 437.52, + "y": 202.42 }, { "body": null, "index": 9, "isInternal": false, - "x": 435.6580000000001, - "y": 196.68999999999997 + "x": 435.658, + "y": 196.69 }, { "body": null, "index": 10, "isInternal": false, - "x": 435.6580000000001, - "y": 190.66399999999996 + "x": 435.658, + "y": 190.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 437.5200000000001, - "y": 184.93399999999997 + "x": 437.52, + "y": 184.934 }, { "body": null, "index": 12, "isInternal": false, - "x": 441.0610000000001, - "y": 180.05899999999997 + "x": 441.061, + "y": 180.059 }, { "body": null, "index": 13, "isInternal": false, - "x": 445.9360000000001, - "y": 176.51799999999997 + "x": 445.936, + "y": 176.518 }, { "body": null, "index": 14, "isInternal": false, - "x": 451.6660000000001, - "y": 174.65599999999998 + "x": 451.666, + "y": 174.656 }, { "body": null, "index": 15, "isInternal": false, - "x": 457.69200000000006, - "y": 174.65599999999998 + "x": 457.692, + "y": 174.656 }, { "body": null, "index": 16, "isInternal": false, - "x": 463.4220000000001, - "y": 176.51799999999997 + "x": 463.422, + "y": 176.518 }, { "body": null, "index": 17, "isInternal": false, - "x": 468.2970000000001, - "y": 180.05899999999997 + "x": 468.297, + "y": 180.059 }, { "body": null, "index": 18, "isInternal": false, - "x": 471.8380000000001, - "y": 184.93399999999997 + "x": 471.838, + "y": 184.934 }, { "body": null, "index": 19, "isInternal": false, - "x": 473.7000000000001, - "y": 190.66399999999996 + "x": 473.7, + "y": 190.664 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 809.1720039999999, + "area": 809.172, "axes": { "#": 3876 }, "bounds": { "#": 3886 }, - "circleRadius": 16.21343449931413, + "circleRadius": 16.21343, "collisionFilter": { "#": 3889 }, @@ -34495,13 +34495,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 416.8676232415635, - "inverseInertia": 0.0023988430481216025, - "inverseMass": 1.2358311892362506, + "inertia": 416.86762, + "inverseInertia": 0.0024, + "inverseMass": 1.23583, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8091720039999999, + "mass": 0.80917, "motion": 0, "parent": null, "position": { @@ -34562,36 +34562,36 @@ } ], { - "x": -0.9397000670254936, - "y": -0.34199968425757765 + "x": -0.9397, + "y": -0.342 }, { - "x": -0.7660476536156142, - "y": -0.642783783546234 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.5000349901212652, - "y": -0.866005201286012 + "x": -0.50003, + "y": -0.86601 }, { - "x": -0.17352189738950702, - "y": -0.9848300112843563 + "x": -0.17352, + "y": -0.98483 }, { - "x": 0.17352189738950702, - "y": -0.9848300112843563 + "x": 0.17352, + "y": -0.98483 }, { - "x": 0.5000349901212652, - "y": -0.866005201286012 + "x": 0.50003, + "y": -0.86601 }, { - "x": 0.7660476536156142, - "y": -0.642783783546234 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9397000670254936, - "y": -0.34199968425757765 + "x": 0.9397, + "y": -0.342 }, { "x": 1, @@ -34606,12 +34606,12 @@ } }, { - "x": 505.63400000000007, - "y": 207.08199999999997 + "x": 505.634, + "y": 207.082 }, { - "x": 473.7000000000001, - "y": 174.65599999999998 + "x": 473.7, + "y": 174.656 }, { "category": 1, @@ -34628,16 +34628,16 @@ "y": 0 }, { - "x": 489.6670000000001, - "y": 190.86899999999997 + "x": 489.667, + "y": 190.869 }, { "x": 0, "y": 0 }, { - "x": 489.6670000000001, - "y": 190.86899999999997 + "x": 489.667, + "y": 190.869 }, { "fillStyle": "#4ECDC4", @@ -34716,141 +34716,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.63400000000007, - "y": 193.68399999999997 + "x": 505.634, + "y": 193.684 }, { "body": null, "index": 1, "isInternal": false, - "x": 503.7080000000001, - "y": 198.97599999999997 + "x": 503.708, + "y": 198.976 }, { "body": null, "index": 2, "isInternal": false, - "x": 500.0890000000001, - "y": 203.28899999999996 + "x": 500.089, + "y": 203.289 }, { "body": null, "index": 3, "isInternal": false, - "x": 495.2120000000001, - "y": 206.10499999999996 + "x": 495.212, + "y": 206.105 }, { "body": null, "index": 4, "isInternal": false, - "x": 489.6670000000001, - "y": 207.08199999999997 + "x": 489.667, + "y": 207.082 }, { "body": null, "index": 5, "isInternal": false, - "x": 484.12200000000007, - "y": 206.10499999999996 + "x": 484.122, + "y": 206.105 }, { "body": null, "index": 6, "isInternal": false, - "x": 479.24500000000006, - "y": 203.28899999999996 + "x": 479.245, + "y": 203.289 }, { "body": null, "index": 7, "isInternal": false, - "x": 475.6260000000001, - "y": 198.97599999999997 + "x": 475.626, + "y": 198.976 }, { "body": null, "index": 8, "isInternal": false, - "x": 473.7000000000001, - "y": 193.68399999999997 + "x": 473.7, + "y": 193.684 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.7000000000001, - "y": 188.05399999999997 + "x": 473.7, + "y": 188.054 }, { "body": null, "index": 10, "isInternal": false, - "x": 475.6260000000001, - "y": 182.76199999999997 + "x": 475.626, + "y": 182.762 }, { "body": null, "index": 11, "isInternal": false, - "x": 479.24500000000006, - "y": 178.44899999999998 + "x": 479.245, + "y": 178.449 }, { "body": null, "index": 12, "isInternal": false, - "x": 484.12200000000007, - "y": 175.63299999999998 + "x": 484.122, + "y": 175.633 }, { "body": null, "index": 13, "isInternal": false, - "x": 489.6670000000001, - "y": 174.65599999999998 + "x": 489.667, + "y": 174.656 }, { "body": null, "index": 14, "isInternal": false, - "x": 495.2120000000001, - "y": 175.63299999999998 + "x": 495.212, + "y": 175.633 }, { "body": null, "index": 15, "isInternal": false, - "x": 500.0890000000001, - "y": 178.44899999999998 + "x": 500.089, + "y": 178.449 }, { "body": null, "index": 16, "isInternal": false, - "x": 503.7080000000001, - "y": 182.76199999999997 + "x": 503.708, + "y": 182.762 }, { "body": null, "index": 17, "isInternal": false, - "x": 505.63400000000007, - "y": 188.05399999999997 + "x": 505.634, + "y": 188.054 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 516.0449700000001, + "area": 516.04497, "axes": { "#": 3918 }, "bounds": { "#": 3926 }, - "circleRadius": 13.035022290809328, + "circleRadius": 13.03502, "collisionFilter": { "#": 3929 }, @@ -34865,13 +34865,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 169.572527516552, - "inverseInertia": 0.0058971816640663675, - "inverseMass": 1.9378156132400626, + "inertia": 169.57253, + "inverseInertia": 0.0059, + "inverseMass": 1.93782, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5160449700000002, + "mass": 0.51604, "motion": 0, "parent": null, "position": { @@ -34926,28 +34926,28 @@ } ], { - "x": -0.9009492528126831, - "y": -0.4339244679160969 + "x": -0.90095, + "y": -0.43392 }, { - "x": -0.6235380818920394, - "y": -0.7817929779873929 + "x": -0.62354, + "y": -0.78179 }, { - "x": -0.22252992994878026, - "y": -0.9749258588615808 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.22252992994878026, - "y": -0.9749258588615808 + "x": 0.22253, + "y": -0.97493 }, { - "x": 0.6235380818920394, - "y": -0.7817929779873929 + "x": 0.62354, + "y": -0.78179 }, { - "x": 0.9009492528126831, - "y": -0.4339244679160969 + "x": 0.90095, + "y": -0.43392 }, { "x": 1, @@ -34962,12 +34962,12 @@ } }, { - "x": 531.0500000000002, - "y": 200.72599999999997 + "x": 531.05, + "y": 200.726 }, { - "x": 505.63400000000007, - "y": 174.65599999999998 + "x": 505.634, + "y": 174.656 }, { "category": 1, @@ -34984,16 +34984,16 @@ "y": 0 }, { - "x": 518.3420000000001, - "y": 187.69099999999997 + "x": 518.342, + "y": 187.691 }, { "x": 0, "y": 0 }, { - "x": 518.3420000000001, - "y": 187.69099999999997 + "x": 518.342, + "y": 187.691 }, { "fillStyle": "#556270", @@ -35060,99 +35060,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 531.0500000000002, - "y": 190.59199999999998 + "x": 531.05, + "y": 190.592 }, { "body": null, "index": 1, "isInternal": false, - "x": 528.5330000000001, - "y": 195.81799999999998 + "x": 528.533, + "y": 195.818 }, { "body": null, "index": 2, "isInternal": false, "x": 523.998, - "y": 199.43499999999997 + "y": 199.435 }, { "body": null, "index": 3, "isInternal": false, - "x": 518.3420000000001, - "y": 200.72599999999997 + "x": 518.342, + "y": 200.726 }, { "body": null, "index": 4, "isInternal": false, - "x": 512.6860000000001, - "y": 199.43499999999997 + "x": 512.686, + "y": 199.435 }, { "body": null, "index": 5, "isInternal": false, - "x": 508.1510000000001, - "y": 195.81799999999998 + "x": 508.151, + "y": 195.818 }, { "body": null, "index": 6, "isInternal": false, - "x": 505.63400000000007, - "y": 190.59199999999998 + "x": 505.634, + "y": 190.592 }, { "body": null, "index": 7, "isInternal": false, - "x": 505.63400000000007, - "y": 184.78999999999996 + "x": 505.634, + "y": 184.79 }, { "body": null, "index": 8, "isInternal": false, - "x": 508.1510000000001, - "y": 179.56399999999996 + "x": 508.151, + "y": 179.564 }, { "body": null, "index": 9, "isInternal": false, - "x": 512.6860000000001, - "y": 175.94699999999997 + "x": 512.686, + "y": 175.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 518.3420000000001, - "y": 174.65599999999998 + "x": 518.342, + "y": 174.656 }, { "body": null, "index": 11, "isInternal": false, "x": 523.998, - "y": 175.94699999999997 + "y": 175.947 }, { "body": null, "index": 12, "isInternal": false, - "x": 528.5330000000001, - "y": 179.56399999999996 + "x": 528.533, + "y": 179.564 }, { "body": null, "index": 13, "isInternal": false, - "x": 531.0500000000002, - "y": 184.78999999999996 + "x": 531.05, + "y": 184.79 }, { "angle": 0, @@ -35166,7 +35166,7 @@ "bounds": { "#": 3965 }, - "circleRadius": 19.475951646090536, + "circleRadius": 19.47595, "collisionFilter": { "#": 3968 }, @@ -35181,13 +35181,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 874.7117635443166, - "inverseInertia": 0.0011432337390182312, - "inverseMass": 0.8531383573206547, + "inertia": 874.71176, + "inverseInertia": 0.00114, + "inverseMass": 0.85314, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1721428200000001, + "mass": 1.17214, "motion": 0, "parent": null, "position": { @@ -35251,40 +35251,40 @@ } ], { - "x": -0.9510521578978217, - "y": -0.30903040782081065 + "x": -0.95105, + "y": -0.30903 }, { - "x": -0.8090836879313054, - "y": -0.5876934455338754 + "x": -0.80908, + "y": -0.58769 }, { - "x": -0.5876934455338754, - "y": -0.8090836879313054 + "x": -0.58769, + "y": -0.80908 }, { - "x": -0.30903040782081065, - "y": -0.9510521578978217 + "x": -0.30903, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.30903040782081065, - "y": -0.9510521578978217 + "x": 0.30903, + "y": -0.95105 }, { - "x": 0.5876934455338754, - "y": -0.8090836879313054 + "x": 0.58769, + "y": -0.80908 }, { - "x": 0.8090836879313054, - "y": -0.5876934455338754 + "x": 0.80908, + "y": -0.58769 }, { - "x": 0.9510521578978217, - "y": -0.30903040782081065 + "x": 0.95105, + "y": -0.30903 }, { "x": 1, @@ -35299,12 +35299,12 @@ } }, { - "x": 569.5220000000002, - "y": 213.12799999999996 + "x": 569.522, + "y": 213.128 }, { - "x": 531.0500000000002, - "y": 174.65599999999998 + "x": 531.05, + "y": 174.656 }, { "category": 1, @@ -35321,16 +35321,16 @@ "y": 0 }, { - "x": 550.2860000000002, - "y": 193.89199999999997 + "x": 550.286, + "y": 193.892 }, { "x": 0, "y": 0 }, { - "x": 550.2860000000002, - "y": 193.89199999999997 + "x": 550.286, + "y": 193.892 }, { "fillStyle": "#FF6B6B", @@ -35415,155 +35415,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 569.5220000000002, - "y": 196.93899999999996 + "x": 569.522, + "y": 196.939 }, { "body": null, "index": 1, "isInternal": false, - "x": 567.6390000000001, - "y": 202.73399999999998 + "x": 567.639, + "y": 202.734 }, { "body": null, "index": 2, "isInternal": false, - "x": 564.0580000000002, - "y": 207.66399999999996 + "x": 564.058, + "y": 207.664 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.1280000000002, - "y": 211.24499999999998 + "x": 559.128, + "y": 211.245 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.3330000000002, - "y": 213.12799999999996 + "x": 553.333, + "y": 213.128 }, { "body": null, "index": 5, "isInternal": false, - "x": 547.2390000000001, - "y": 213.12799999999996 + "x": 547.239, + "y": 213.128 }, { "body": null, "index": 6, "isInternal": false, - "x": 541.4440000000002, - "y": 211.24499999999998 + "x": 541.444, + "y": 211.245 }, { "body": null, "index": 7, "isInternal": false, - "x": 536.5140000000001, - "y": 207.66399999999996 + "x": 536.514, + "y": 207.664 }, { "body": null, "index": 8, "isInternal": false, - "x": 532.9330000000002, - "y": 202.73399999999998 + "x": 532.933, + "y": 202.734 }, { "body": null, "index": 9, "isInternal": false, - "x": 531.0500000000002, - "y": 196.93899999999996 + "x": 531.05, + "y": 196.939 }, { "body": null, "index": 10, "isInternal": false, - "x": 531.0500000000002, - "y": 190.84499999999997 + "x": 531.05, + "y": 190.845 }, { "body": null, "index": 11, "isInternal": false, - "x": 532.9330000000002, - "y": 185.04999999999995 + "x": 532.933, + "y": 185.05 }, { "body": null, "index": 12, "isInternal": false, - "x": 536.5140000000001, - "y": 180.11999999999998 + "x": 536.514, + "y": 180.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 541.4440000000002, - "y": 176.53899999999996 + "x": 541.444, + "y": 176.539 }, { "body": null, "index": 14, "isInternal": false, - "x": 547.2390000000001, - "y": 174.65599999999998 + "x": 547.239, + "y": 174.656 }, { "body": null, "index": 15, "isInternal": false, - "x": 553.3330000000002, - "y": 174.65599999999998 + "x": 553.333, + "y": 174.656 }, { "body": null, "index": 16, "isInternal": false, - "x": 559.1280000000002, - "y": 176.53899999999996 + "x": 559.128, + "y": 176.539 }, { "body": null, "index": 17, "isInternal": false, - "x": 564.0580000000002, - "y": 180.11999999999998 + "x": 564.058, + "y": 180.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 567.6390000000001, - "y": 185.04999999999995 + "x": 567.639, + "y": 185.05 }, { "body": null, "index": 19, "isInternal": false, - "x": 569.5220000000002, - "y": 190.84499999999997 + "x": 569.522, + "y": 190.845 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 904.4403919999999, + "area": 904.44039, "axes": { "#": 3999 }, "bounds": { "#": 4009 }, - "circleRadius": 17.141160836762687, + "circleRadius": 17.14116, "collisionFilter": { "#": 4012 }, @@ -35578,13 +35578,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 520.8064673147039, - "inverseInertia": 0.001920099044000038, - "inverseMass": 1.105656059642237, + "inertia": 520.80647, + "inverseInertia": 0.00192, + "inverseMass": 1.10566, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9044403919999999, + "mass": 0.90444, "motion": 0, "parent": null, "position": { @@ -35645,36 +35645,36 @@ } ], { - "x": -0.9396952926793908, - "y": -0.3420128022694386 + "x": -0.9397, + "y": -0.34201 }, { - "x": -0.7659860703993571, - "y": -0.6428571691706884 + "x": -0.76599, + "y": -0.64286 }, { - "x": -0.4999696792449819, - "y": -0.8660429087728101 + "x": -0.49997, + "y": -0.86604 }, { - "x": -0.17367992955782482, - "y": -0.9848021537693695 + "x": -0.17368, + "y": -0.9848 }, { - "x": 0.17367992955782482, - "y": -0.9848021537693695 + "x": 0.17368, + "y": -0.9848 }, { - "x": 0.4999696792449819, - "y": -0.8660429087728101 + "x": 0.49997, + "y": -0.86604 }, { - "x": 0.7659860703993571, - "y": -0.6428571691706884 + "x": 0.76599, + "y": -0.64286 }, { - "x": 0.9396952926793908, - "y": -0.3420128022694386 + "x": 0.9397, + "y": -0.34201 }, { "x": 1, @@ -35689,12 +35689,12 @@ } }, { - "x": 603.2840000000001, - "y": 208.93799999999996 + "x": 603.284, + "y": 208.938 }, { - "x": 569.5220000000002, - "y": 174.65599999999998 + "x": 569.522, + "y": 174.656 }, { "category": 1, @@ -35711,16 +35711,16 @@ "y": 0 }, { - "x": 586.4030000000001, - "y": 191.79699999999997 + "x": 586.403, + "y": 191.797 }, { "x": 0, "y": 0 }, { - "x": 586.4030000000001, - "y": 191.79699999999997 + "x": 586.403, + "y": 191.797 }, { "fillStyle": "#4ECDC4", @@ -35799,141 +35799,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 603.2840000000001, - "y": 194.77399999999997 + "x": 603.284, + "y": 194.774 }, { "body": null, "index": 1, "isInternal": false, - "x": 601.2480000000002, - "y": 200.36799999999997 + "x": 601.248, + "y": 200.368 }, { "body": null, "index": 2, "isInternal": false, - "x": 597.4210000000002, - "y": 204.92799999999997 + "x": 597.421, + "y": 204.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 592.2660000000002, - "y": 207.90399999999997 + "x": 592.266, + "y": 207.904 }, { "body": null, "index": 4, "isInternal": false, - "x": 586.4030000000001, - "y": 208.93799999999996 + "x": 586.403, + "y": 208.938 }, { "body": null, "index": 5, "isInternal": false, - "x": 580.5400000000001, - "y": 207.90399999999997 + "x": 580.54, + "y": 207.904 }, { "body": null, "index": 6, "isInternal": false, - "x": 575.3850000000001, - "y": 204.92799999999997 + "x": 575.385, + "y": 204.928 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.5580000000001, - "y": 200.36799999999997 + "x": 571.558, + "y": 200.368 }, { "body": null, "index": 8, "isInternal": false, - "x": 569.5220000000002, - "y": 194.77399999999997 + "x": 569.522, + "y": 194.774 }, { "body": null, "index": 9, "isInternal": false, - "x": 569.5220000000002, - "y": 188.81999999999996 + "x": 569.522, + "y": 188.82 }, { "body": null, "index": 10, "isInternal": false, - "x": 571.5580000000001, - "y": 183.22599999999997 + "x": 571.558, + "y": 183.226 }, { "body": null, "index": 11, "isInternal": false, - "x": 575.3850000000001, - "y": 178.66599999999997 + "x": 575.385, + "y": 178.666 }, { "body": null, "index": 12, "isInternal": false, - "x": 580.5400000000001, - "y": 175.68999999999997 + "x": 580.54, + "y": 175.69 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.4030000000001, - "y": 174.65599999999998 + "x": 586.403, + "y": 174.656 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.2660000000002, - "y": 175.68999999999997 + "x": 592.266, + "y": 175.69 }, { "body": null, "index": 15, "isInternal": false, - "x": 597.4210000000002, - "y": 178.66599999999997 + "x": 597.421, + "y": 178.666 }, { "body": null, "index": 16, "isInternal": false, - "x": 601.2480000000002, - "y": 183.22599999999997 + "x": 601.248, + "y": 183.226 }, { "body": null, "index": 17, "isInternal": false, - "x": 603.2840000000001, - "y": 188.81999999999996 + "x": 603.284, + "y": 188.82 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 336.960508, + "area": 336.96051, "axes": { "#": 4041 }, "bounds": { "#": 4048 }, - "circleRadius": 10.59855109739369, + "circleRadius": 10.59855, "collisionFilter": { "#": 4051 }, @@ -35948,13 +35948,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 72.31452373591827, - "inverseInertia": 0.013828480757915922, - "inverseMass": 2.9677068269377136, + "inertia": 72.31452, + "inverseInertia": 0.01383, + "inverseMass": 2.96771, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.336960508, + "mass": 0.33696, "motion": 0, "parent": null, "position": { @@ -36006,24 +36006,24 @@ } ], { - "x": -0.8660247035831383, - "y": -0.5000012127822667 + "x": -0.86602, + "y": -0.5 }, { - "x": -0.5000012127822667, - "y": -0.8660247035831383 + "x": -0.5, + "y": -0.86602 }, { "x": 0, "y": -1 }, { - "x": 0.5000012127822667, - "y": -0.8660247035831383 + "x": 0.5, + "y": -0.86602 }, { - "x": 0.8660247035831383, - "y": -0.5000012127822667 + "x": 0.86602, + "y": -0.5 }, { "x": 1, @@ -36039,11 +36039,11 @@ }, { "x": 623.758, - "y": 195.12999999999997 + "y": 195.13 }, { - "x": 603.2840000000001, - "y": 174.65599999999998 + "x": 603.284, + "y": 174.656 }, { "category": 1, @@ -36060,16 +36060,16 @@ "y": 0 }, { - "x": 613.5210000000001, - "y": 184.89299999999997 + "x": 613.521, + "y": 184.893 }, { "x": 0, "y": 0 }, { - "x": 613.5210000000001, - "y": 184.89299999999997 + "x": 613.521, + "y": 184.893 }, { "fillStyle": "#C44D58", @@ -36131,84 +36131,84 @@ "index": 0, "isInternal": false, "x": 623.758, - "y": 187.63599999999997 + "y": 187.636 }, { "body": null, "index": 1, "isInternal": false, - "x": 621.0150000000001, - "y": 192.38699999999997 + "x": 621.015, + "y": 192.387 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.2640000000001, - "y": 195.12999999999997 + "x": 616.264, + "y": 195.13 }, { "body": null, "index": 3, "isInternal": false, "x": 610.778, - "y": 195.12999999999997 + "y": 195.13 }, { "body": null, "index": 4, "isInternal": false, "x": 606.027, - "y": 192.38699999999997 + "y": 192.387 }, { "body": null, "index": 5, "isInternal": false, - "x": 603.2840000000001, - "y": 187.63599999999997 + "x": 603.284, + "y": 187.636 }, { "body": null, "index": 6, "isInternal": false, - "x": 603.2840000000001, - "y": 182.14999999999998 + "x": 603.284, + "y": 182.15 }, { "body": null, "index": 7, "isInternal": false, "x": 606.027, - "y": 177.39899999999997 + "y": 177.399 }, { "body": null, "index": 8, "isInternal": false, "x": 610.778, - "y": 174.65599999999998 + "y": 174.656 }, { "body": null, "index": 9, "isInternal": false, - "x": 616.2640000000001, - "y": 174.65599999999998 + "x": 616.264, + "y": 174.656 }, { "body": null, "index": 10, "isInternal": false, - "x": 621.0150000000001, - "y": 177.39899999999997 + "x": 621.015, + "y": 177.399 }, { "body": null, "index": 11, "isInternal": false, "x": 623.758, - "y": 182.14999999999998 + "y": 182.15 }, [], [], diff --git a/test/browser/refs/avalanche/avalanche-10.json b/test/browser/refs/avalanche/avalanche-10.json index b0d8976f..b6c84733 100644 --- a/test/browser/refs/avalanche/avalanche-10.json +++ b/test/browser/refs/avalanche/avalanche-10.json @@ -865,8 +865,8 @@ "y": 605.25 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -954,12 +954,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -970,12 +970,12 @@ } }, { - "x": 545.6743509008983, - "y": 225.4063326122905 + "x": 545.67435, + "y": 225.40633 }, { - "x": -145.67435090089828, - "y": 74.5936673877095 + "x": -145.67435, + "y": 74.59367 }, { "category": 1, @@ -1045,33 +1045,33 @@ "body": null, "index": 0, "isInternal": false, - "x": -141.9267246091838, - "y": 74.5936673877095 + "x": -141.92672, + "y": 74.59367 }, { "body": null, "index": 1, "isInternal": false, - "x": 545.6743509008983, - "y": 205.76058759771672 + "x": 545.67435, + "y": 205.76059 }, { "body": null, "index": 2, "isInternal": false, - "x": 541.9267246091838, - "y": 225.4063326122905 + "x": 541.92672, + "y": 225.40633 }, { "body": null, "index": 3, "isInternal": false, - "x": -145.67435090089828, - "y": 94.23941240228328 + "x": -145.67435, + "y": 94.23941 }, { - "angle": -0.18849555921538758, - "anglePrev": -0.18849555921538758, + "angle": -0.1885, + "anglePrev": -0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1159,12 +1159,12 @@ } ], { - "x": 0.1873813145857246, - "y": 0.9822872507286887 + "x": 0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": 0.1873813145857246 + "x": -0.98229, + "y": 0.18738 }, { "max": { @@ -1175,12 +1175,12 @@ } }, { - "x": 845.6743509008983, - "y": 425.4063326122905 + "x": 845.67435, + "y": 425.40633 }, { - "x": 154.32564909910172, - "y": 274.5936673877095 + "x": 154.32565, + "y": 274.59367 }, { "category": 1, @@ -1250,33 +1250,33 @@ "body": null, "index": 0, "isInternal": false, - "x": 154.32564909910172, - "y": 405.7605875977167 + "x": 154.32565, + "y": 405.76059 }, { "body": null, "index": 1, "isInternal": false, - "x": 841.9267246091838, - "y": 274.5936673877095 + "x": 841.92672, + "y": 274.59367 }, { "body": null, "index": 2, "isInternal": false, - "x": 845.6743509008983, - "y": 294.2394124022833 + "x": 845.67435, + "y": 294.23941 }, { "body": null, "index": 3, "isInternal": false, - "x": 158.0732753908162, - "y": 425.4063326122905 + "x": 158.07328, + "y": 425.40633 }, { - "angle": 0.12566370614359174, - "anglePrev": 0.12566370614359174, + "angle": 0.12566, + "anglePrev": 0.12566, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1364,12 +1364,12 @@ } ], { - "x": -0.12533323356430426, - "y": 0.9921147013144779 + "x": -0.12533, + "y": 0.99211 }, { - "x": -0.9921147013144779, - "y": -0.12533323356430426 + "x": -0.99211, + "y": -0.12533 }, { "max": { @@ -1380,12 +1380,12 @@ } }, { - "x": 688.4934777957103, - "y": 633.7877787606512 + "x": 688.49348, + "y": 633.78778 }, { - "x": -8.493477795710305, - "y": 526.2122212393488 + "x": -8.49348, + "y": 526.21222 }, { "category": 1, @@ -1455,29 +1455,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -5.986813124424202, - "y": 526.2122212393488 + "x": -5.98681, + "y": 526.21222 }, { "body": null, "index": 1, "isInternal": false, - "x": 688.4934777957103, - "y": 613.9454847343617 + "x": 688.49348, + "y": 613.94548 }, { "body": null, "index": 2, "isInternal": false, - "x": 685.9868131244242, - "y": 633.7877787606512 + "x": 685.98681, + "y": 633.78778 }, { "body": null, "index": 3, "isInternal": false, - "x": -8.493477795710305, - "y": 546.0545152656383 + "x": -8.49348, + "y": 546.05452 }, { "max": { @@ -1819,18 +1819,18 @@ } ], { - "angle": 0.02793828614841702, - "anglePrev": 0.020198932806899297, - "angularSpeed": 0.006255764387225795, - "angularVelocity": 0.007655471319574433, - "area": 445.64723200000003, + "angle": 0.02794, + "anglePrev": 0.0202, + "angularSpeed": 0.00626, + "angularVelocity": 0.00766, + "area": 445.64723, "axes": { "#": 163 }, "bounds": { "#": 171 }, - "circleRadius": 12.11321159122085, + "circleRadius": 12.11321, "collisionFilter": { "#": 174 }, @@ -1845,13 +1845,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 126.46280868085778, - "inverseInertia": 0.007907463154037685, - "inverseMass": 2.243927322317577, + "inertia": 126.46281, + "inverseInertia": 0.00791, + "inverseMass": 2.24393, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.44564723200000006, + "mass": 0.44565, "motion": 0, "parent": null, "position": { @@ -1873,7 +1873,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4207376165178287, + "speed": 0.42074, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1909,32 +1909,32 @@ } ], { - "x": -0.8884207839692521, - "y": -0.45902996700810295 + "x": -0.88842, + "y": -0.45903 }, { - "x": -0.6015739640221315, - "y": -0.7988171041050008 + "x": -0.60157, + "y": -0.79882 }, { - "x": -0.19508494349907138, - "y": -0.9807863502414604 + "x": -0.19508, + "y": -0.98079 }, { - "x": 0.24955494276270934, - "y": -0.9683606407442947 + "x": 0.24955, + "y": -0.96836 }, { - "x": 0.6452470325393467, - "y": -0.7639739962846688 + "x": 0.64525, + "y": -0.76397 }, { - "x": 0.9126699113090232, - "y": -0.4086974834656802 + "x": 0.91267, + "y": -0.4087 }, { - "x": 0.9996097514685058, - "y": 0.027934651762142475 + "x": 0.99961, + "y": 0.02793 }, { "max": { @@ -1945,12 +1945,12 @@ } }, { - "x": 43.95661174722798, - "y": 46.91833886134148 + "x": 43.95661, + "y": 46.91834 }, { - "x": 20.189854434574876, - "y": 22.281090153207646 + "x": 20.18985, + "y": 22.28109 }, { "category": 1, @@ -1967,16 +1967,16 @@ "y": 0 }, { - "x": 32.070529485916914, - "y": 34.389363072745674 + "x": 32.07053, + "y": 34.38936 }, { "x": 0, "y": 0 }, { - "x": 32.04744630297255, - "y": 34.255906325051015 + "x": 32.04745, + "y": 34.25591 }, { "endCol": 0, @@ -1999,8 +1999,8 @@ "yScale": 1 }, { - "x": 0.0247011600874103, - "y": 0.1459062655243173 + "x": 0.0247, + "y": 0.14591 }, [ { @@ -2050,113 +2050,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 43.80063676426101, - "y": 37.4132195902642 + "x": 43.80064, + "y": 37.41322 }, { "body": null, "index": 1, "isInternal": false, - "x": 41.32587134221595, - "y": 42.20295706802332 + "x": 41.32587, + "y": 42.20296 }, { "body": null, "index": 2, "isInternal": false, - "x": 37.019599550303354, - "y": 45.44592842993477 + "x": 37.0196, + "y": 45.44593 }, { "body": null, "index": 3, "isInternal": false, - "x": 31.732157049122073, - "y": 46.49763599228369 + "x": 31.73216, + "y": 46.49764 }, { "body": null, "index": 4, "isInternal": false, - "x": 26.511701842866415, - "y": 45.152279370611126 + "x": 26.5117, + "y": 45.15228 }, { "body": null, "index": 5, "isInternal": false, - "x": 22.39326264940245, - "y": 41.67387476364834 + "x": 22.39326, + "y": 41.67387 }, { "body": null, "index": 6, "isInternal": false, - "x": 20.189854434574876, - "y": 36.75340311564239 + "x": 20.18985, + "y": 36.7534 }, { "body": null, "index": 7, "isInternal": false, - "x": 20.340422207572814, - "y": 31.365506555227128 + "x": 20.34042, + "y": 31.36551 }, { "body": null, "index": 8, "isInternal": false, - "x": 22.815187629617853, - "y": 26.575769077468003 + "x": 22.81519, + "y": 26.57577 }, { "body": null, "index": 9, "isInternal": false, - "x": 27.121459421530457, - "y": 23.332797715556563 + "x": 27.12146, + "y": 23.3328 }, { "body": null, "index": 10, "isInternal": false, - "x": 32.40890192271175, - "y": 22.281090153207646 + "x": 32.4089, + "y": 22.28109 }, { "body": null, "index": 11, "isInternal": false, - "x": 37.629357128967406, - "y": 23.626446774880204 + "x": 37.62936, + "y": 23.62645 }, { "body": null, "index": 12, "isInternal": false, - "x": 41.747796322431356, - "y": 27.104851381842987 + "x": 41.7478, + "y": 27.10485 }, { "body": null, "index": 13, "isInternal": false, - "x": 43.95120453725895, - "y": 32.02532302984893 + "x": 43.9512, + "y": 32.02532 }, { - "angle": 0.004761876566637283, - "anglePrev": 0.00412040943716539, - "angularSpeed": 0.0010272988020385784, - "angularVelocity": 0.000641558391274717, - "area": 732.475276, + "angle": 0.00476, + "anglePrev": 0.00412, + "angularSpeed": 0.00103, + "angularVelocity": 0.00064, + "area": 732.47528, "axes": { "#": 200 }, "bounds": { "#": 209 }, - "circleRadius": 15.467721193415638, + "circleRadius": 15.46772, "collisionFilter": { "#": 212 }, @@ -2171,13 +2171,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 341.60522862031934, - "inverseInertia": 0.002927355661500897, - "inverseMass": 1.3652337939117005, + "inertia": 341.60523, + "inverseInertia": 0.00293, + "inverseMass": 1.36523, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7324752760000001, + "mass": 0.73248, "motion": 0, "parent": null, "position": { @@ -2199,7 +2199,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7589318513175578, + "speed": 0.75893, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2238,36 +2238,36 @@ } ], { - "x": -0.9220017655430354, - "y": -0.38718567165576445 + "x": -0.922, + "y": -0.38719 }, { - "x": -0.7037316217267943, - "y": -0.7104659066991009 + "x": -0.70373, + "y": -0.71047 }, { - "x": -0.3783873280923958, - "y": -0.9256473572257944 + "x": -0.37839, + "y": -0.92565 }, { - "x": 0.004761858570360723, - "y": -0.9999886622872061 + "x": 0.00476, + "y": -0.99999 }, { - "x": 0.38718567165576445, - "y": -0.9220017655430354 + "x": 0.38719, + "y": -0.922 }, { - "x": 0.7104659066991009, - "y": -0.7037316217267943 + "x": 0.71047, + "y": -0.70373 }, { - "x": 0.9256473572257944, - "y": -0.3783873280923958 + "x": 0.92565, + "y": -0.37839 }, { - "x": 0.9999886622872061, - "y": 0.004761858570360723 + "x": 0.99999, + "y": 0.00476 }, { "max": { @@ -2278,12 +2278,12 @@ } }, { - "x": 76.32543344192025, - "y": 59.675597132370974 + "x": 76.32543, + "y": 59.6756 }, { - "x": 45.76134223630667, - "y": 28.57139973651237 + "x": 45.76134, + "y": 28.5714 }, { "category": 1, @@ -2300,16 +2300,16 @@ "y": 0 }, { - "x": 60.94654152103121, - "y": 43.75659902123693 + "x": 60.94654, + "y": 43.7566 }, { "x": 0, "y": 0 }, { - "x": 60.62665086350632, - "y": 43.17216236485185 + "x": 60.62665, + "y": 43.17216 }, { "endCol": 1, @@ -2332,8 +2332,8 @@ "yScale": 1 }, { - "x": 0.31988805924176944, - "y": 0.5844377185146286 + "x": 0.31989, + "y": 0.58444 }, [ { @@ -2389,127 +2389,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 76.10299822742506, - "y": 46.84680696039066 + "x": 76.103, + "y": 46.84681 }, { "body": null, "index": 1, "isInternal": false, - "x": 73.76647705601188, - "y": 52.4107438593443 + "x": 73.76648, + "y": 52.41074 }, { "body": null, "index": 2, "isInternal": false, - "x": 69.4782018329918, - "y": 56.658371857607804 + "x": 69.4782, + "y": 56.65837 }, { "body": null, "index": 3, "isInternal": false, - "x": 63.892265147443055, - "y": 58.94179830596148 + "x": 63.89227, + "y": 58.9418 }, { "body": null, "index": 4, "isInternal": false, - "x": 57.85633358187748, - "y": 58.91305572763077 + "x": 57.85633, + "y": 58.91306 }, { "body": null, "index": 5, "isInternal": false, - "x": 52.292396682923844, - "y": 56.576534556217574 + "x": 52.2924, + "y": 56.57653 }, { "body": null, "index": 6, "isInternal": false, - "x": 48.04476868466034, - "y": 52.28825933319748 + "x": 48.04477, + "y": 52.28826 }, { "body": null, "index": 7, "isInternal": false, - "x": 45.76134223630667, - "y": 46.70232264764878 + "x": 45.76134, + "y": 46.70232 }, { "body": null, "index": 8, "isInternal": false, - "x": 45.79008481463735, - "y": 40.6663910820832 + "x": 45.79008, + "y": 40.66639 }, { "body": null, "index": 9, "isInternal": false, - "x": 48.12660598605056, - "y": 35.102454183129545 + "x": 48.12661, + "y": 35.10245 }, { "body": null, "index": 10, "isInternal": false, - "x": 52.414881209070664, - "y": 30.85482618486605 + "x": 52.41488, + "y": 30.85483 }, { "body": null, "index": 11, "isInternal": false, - "x": 58.00081789461936, - "y": 28.57139973651237 + "x": 58.00082, + "y": 28.5714 }, { "body": null, "index": 12, "isInternal": false, - "x": 64.03674946018494, - "y": 28.60014231484306 + "x": 64.03675, + "y": 28.60014 }, { "body": null, "index": 13, "isInternal": false, - "x": 69.6006863591386, - "y": 30.936663486256265 + "x": 69.60069, + "y": 30.93666 }, { "body": null, "index": 14, "isInternal": false, - "x": 73.8483143574021, - "y": 35.22493870927638 + "x": 73.84831, + "y": 35.22494 }, { "body": null, "index": 15, "isInternal": false, - "x": 76.1317408057558, - "y": 40.81087539482508 + "x": 76.13174, + "y": 40.81088 }, { - "angle": -0.023930824024644845, - "anglePrev": -0.01791512953526413, - "angularSpeed": 0.005675895726533155, - "angularVelocity": -0.00630950349623037, - "area": 1023.0280239999998, + "angle": -0.02393, + "anglePrev": -0.01792, + "angularSpeed": 0.00568, + "angularVelocity": -0.00631, + "area": 1023.02802, "axes": { "#": 240 }, "bounds": { "#": 251 }, - "circleRadius": 18.19465877914952, + "circleRadius": 18.19466, "collisionFilter": { "#": 254 }, @@ -2524,13 +2524,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 666.3140407130343, - "inverseInertia": 0.0015007938282823555, - "inverseMass": 0.9774903292385275, + "inertia": 666.31404, + "inverseInertia": 0.0015, + "inverseMass": 0.97749, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0230280239999998, + "mass": 1.02303, "motion": 0, "parent": null, "position": { @@ -2552,7 +2552,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6275850132102301, + "speed": 0.62759, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2597,44 +2597,44 @@ } ], { - "x": -0.9581840364823289, - "y": -0.28615267293952 + "x": -0.95818, + "y": -0.28615 }, { - "x": -0.8228869240800039, - "y": -0.5682051655679935 + "x": -0.82289, + "y": -0.56821 }, { - "x": -0.6069241747852209, - "y": -0.794759741092413 + "x": -0.60692, + "y": -0.79476 }, { - "x": -0.33166774534686067, - "y": -0.9433962617567077 + "x": -0.33167, + "y": -0.9434 }, { - "x": -0.02392853995536065, - "y": -0.9997136714957965 + "x": -0.02393, + "y": -0.99971 }, { - "x": 0.28615267293952, - "y": -0.9581840364823289 + "x": 0.28615, + "y": -0.95818 }, { - "x": 0.5682051655679935, - "y": -0.8228869240800039 + "x": 0.56821, + "y": -0.82289 }, { - "x": 0.794759741092413, - "y": -0.6069241747852209 + "x": 0.79476, + "y": -0.60692 }, { - "x": 0.9433962617567077, - "y": -0.33166774534686067 + "x": 0.9434, + "y": -0.33167 }, { - "x": 0.9997136714957965, - "y": -0.02392853995536065 + "x": 0.99971, + "y": -0.02393 }, { "max": { @@ -2645,12 +2645,12 @@ } }, { - "x": 112.17092346136299, - "y": 63.54203679972056 + "x": 112.17092, + "y": 63.54204 }, { - "x": 75.83105461200579, - "y": 26.90852854666014 + "x": 75.83105, + "y": 26.90853 }, { "category": 1, @@ -2667,16 +2667,16 @@ "y": 0 }, { - "x": 93.86500962716973, - "y": 44.94248356182405 + "x": 93.86501, + "y": 44.94248 }, { "x": 0, "y": 0 }, { - "x": 93.54710413292504, - "y": 44.50635303618741 + "x": 93.5471, + "y": 44.50635 }, { "endCol": 2, @@ -2699,8 +2699,8 @@ "yScale": 1 }, { - "x": 0.3161544929891562, - "y": 0.3631021285550773 + "x": 0.31615, + "y": 0.3631 }, [ { @@ -2768,147 +2768,147 @@ "body": null, "index": 0, "isInternal": false, - "x": 111.89896464233367, - "y": 47.3576488793633 + "x": 111.89896, + "y": 47.35765 }, { "body": null, "index": 1, "isInternal": false, - "x": 110.27001740949088, - "y": 52.81218899862301 + "x": 110.27002, + "y": 52.81219 }, { "body": null, "index": 2, "isInternal": false, - "x": 107.0351903197003, - "y": 57.49693506422329 + "x": 107.03519, + "y": 57.49694 }, { "body": null, "index": 3, "isInternal": false, - "x": 102.51057404348131, - "y": 60.9521918640826 + "x": 102.51057, + "y": 60.95219 }, { "body": null, "index": 4, "isInternal": false, - "x": 97.14021452778455, - "y": 62.84023732756204 + "x": 97.14021, + "y": 62.84024 }, { "body": null, "index": 5, "isInternal": false, - "x": 91.44984430963046, - "y": 62.976438576987974 + "x": 91.44984, + "y": 62.97644 }, { "body": null, "index": 6, "isInternal": false, - "x": 85.99530419037073, - "y": 61.34749134414518 + "x": 85.9953, + "y": 61.34749 }, { "body": null, "index": 7, "isInternal": false, - "x": 81.31055812477047, - "y": 58.11266425435464 + "x": 81.31056, + "y": 58.11266 }, { "body": null, "index": 8, "isInternal": false, - "x": 77.85530132491115, - "y": 53.58804797813563 + "x": 77.8553, + "y": 53.58805 }, { "body": null, "index": 9, "isInternal": false, - "x": 75.96725586143172, - "y": 48.21768846243887 + "x": 75.96726, + "y": 48.21769 }, { "body": null, "index": 10, "isInternal": false, - "x": 75.83105461200579, - "y": 42.52731824428479 + "x": 75.83105, + "y": 42.52732 }, { "body": null, "index": 11, "isInternal": false, - "x": 77.46000184484858, - "y": 37.072778125025074 + "x": 77.46, + "y": 37.07278 }, { "body": null, "index": 12, "isInternal": false, - "x": 80.69482893463915, - "y": 32.38803205942481 + "x": 80.69483, + "y": 32.38803 }, { "body": null, "index": 13, "isInternal": false, - "x": 85.21944521085814, - "y": 28.93277525956549 + "x": 85.21945, + "y": 28.93278 }, { "body": null, "index": 14, "isInternal": false, - "x": 90.5898047265549, - "y": 27.044729796086063 + "x": 90.5898, + "y": 27.04473 }, { "body": null, "index": 15, "isInternal": false, - "x": 96.28017494470899, - "y": 26.90852854666014 + "x": 96.28017, + "y": 26.90853 }, { "body": null, "index": 16, "isInternal": false, - "x": 101.73471506396872, - "y": 28.53747577950293 + "x": 101.73472, + "y": 28.53748 }, { "body": null, "index": 17, "isInternal": false, - "x": 106.41946112956899, - "y": 31.772302869293465 + "x": 106.41946, + "y": 31.7723 }, { "body": null, "index": 18, "isInternal": false, - "x": 109.8747179294283, - "y": 36.296919145512454 + "x": 109.87472, + "y": 36.29692 }, { "body": null, "index": 19, "isInternal": false, - "x": 111.76276339290773, - "y": 41.667278661209224 + "x": 111.76276, + "y": 41.66728 }, { - "angle": 0.011458788711903041, - "anglePrev": 0.006481250282792605, - "angularSpeed": 0.004426950715943123, - "angularVelocity": 0.005041604452332833, + "angle": 0.01146, + "anglePrev": 0.00648, + "angularSpeed": 0.00443, + "angularVelocity": 0.00504, "area": 574.28005, "axes": { "#": 286 @@ -2916,7 +2916,7 @@ "bounds": { "#": 294 }, - "circleRadius": 13.750814471879288, + "circleRadius": 13.75081, "collisionFilter": { "#": 297 }, @@ -2931,13 +2931,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 210.00413885422935, - "inverseInertia": 0.004761810912184603, - "inverseMass": 1.7413107072063536, + "inertia": 210.00414, + "inverseInertia": 0.00476, + "inverseMass": 1.74131, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5742800499999999, + "mass": 0.57428, "motion": 0, "parent": null, "position": { @@ -2959,7 +2959,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905542885682784, + "speed": 2.90554, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2995,32 +2995,32 @@ } ], { - "x": -0.8959328698762521, - "y": -0.4441894783482637 + "x": -0.89593, + "y": -0.44419 }, { - "x": -0.614499276772401, - "y": -0.7889173840435993 + "x": -0.6145, + "y": -0.78892 }, { - "x": -0.21138170302595546, - "y": -0.9774035889159846 + "x": -0.21138, + "y": -0.9774 }, { - "x": 0.2337239566924815, - "y": -0.9723029939622789 + "x": 0.23372, + "y": -0.9723 }, { - "x": 0.6324164042231624, - "y": -0.7746286153179766 + "x": 0.63242, + "y": -0.77463 }, { - "x": 0.9058764570146692, - "y": -0.4235420222676257 + "x": 0.90588, + "y": -0.42354 }, { - "x": 0.9999343487989875, - "y": 0.011458537949725144 + "x": 0.99993, + "y": 0.01146 }, { "max": { @@ -3031,12 +3031,12 @@ } }, { - "x": 138.4585302705327, - "y": 68.15251222750852 + "x": 138.45853, + "y": 68.15251 }, { - "x": 111.39660048599349, - "y": 37.752453277395496 + "x": 111.3966, + "y": 37.75245 }, { "category": 1, @@ -3053,16 +3053,16 @@ "y": 0 }, { - "x": 124.83678349211887, - "y": 51.50255050773037 + "x": 124.83678, + "y": 51.50255 }, { - "x": 0.016267228267957345, - "y": 0.03579824760761325 + "x": 0.01627, + "y": 0.0358 }, { - "x": 124.78425852105886, - "y": 48.604330240406284 + "x": 124.78426, + "y": 48.60433 }, { "endCol": 2, @@ -3085,8 +3085,8 @@ "yScale": 1 }, { - "x": 0.039339939161479265, - "y": 2.898074006160961 + "x": 0.03934, + "y": 2.89807 }, [ { @@ -3136,113 +3136,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 138.20684024599188, - "y": 54.71596277480928 + "x": 138.20684, + "y": 54.71596 }, { "body": null, "index": 1, "isInternal": false, - "x": 135.4888436302138, - "y": 60.19817842148159 + "x": 135.48884, + "y": 60.19818 }, { "body": null, "index": 2, "isInternal": false, - "x": 130.66043199039447, - "y": 63.95909879240908 + "x": 130.66043, + "y": 63.9591 }, { "body": null, "index": 3, "isInternal": false, - "x": 124.6792171367722, - "y": 65.25264773806524 + "x": 124.67922, + "y": 65.25265 }, { "body": null, "index": 4, "isInternal": false, - "x": 118.72921534052496, - "y": 63.82237551759295 + "x": 118.72922, + "y": 63.82238 }, { "body": null, "index": 5, "isInternal": false, - "x": 113.98825526233797, - "y": 59.951796938486595 + "x": 113.98826, + "y": 59.9518 }, { "body": null, "index": 6, "isInternal": false, - "x": 111.39660048599349, - "y": 54.40873645530125 + "x": 111.3966, + "y": 54.40874 }, { "body": null, "index": 7, "isInternal": false, - "x": 111.4667267382458, - "y": 48.28913824065145 + "x": 111.46673, + "y": 48.28914 }, { "body": null, "index": 8, "isInternal": false, - "x": 114.18472335402394, - "y": 42.80692259397916 + "x": 114.18472, + "y": 42.80692 }, { "body": null, "index": 9, "isInternal": false, - "x": 119.01313499384327, - "y": 39.046002223051644 + "x": 119.01313, + "y": 39.046 }, { "body": null, "index": 10, "isInternal": false, - "x": 124.99434984746554, - "y": 37.752453277395496 + "x": 124.99435, + "y": 37.75245 }, { "body": null, "index": 11, "isInternal": false, - "x": 130.9443516437127, - "y": 39.18272549786777 + "x": 130.94435, + "y": 39.18273 }, { "body": null, "index": 12, "isInternal": false, - "x": 135.68531172189978, - "y": 43.05330407697414 + "x": 135.68531, + "y": 43.0533 }, { "body": null, "index": 13, "isInternal": false, - "x": 138.2769664982442, - "y": 48.596364560159486 + "x": 138.27697, + "y": 48.59636 }, { - "angle": 0.010839447307558295, - "anglePrev": 0.006716858888242363, - "angularSpeed": 0.003983950918580778, - "angularVelocity": 0.004135289891704341, - "area": 1195.2601479999998, + "angle": 0.01084, + "anglePrev": 0.00672, + "angularSpeed": 0.00398, + "angularVelocity": 0.00414, + "area": 1195.26015, "axes": { "#": 323 }, "bounds": { "#": 334 }, - "circleRadius": 19.667052469135804, + "circleRadius": 19.66705, "collisionFilter": { "#": 337 }, @@ -3257,13 +3257,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 909.5546177631703, - "inverseInertia": 0.0010994391985599042, - "inverseMass": 0.8366379500506865, + "inertia": 909.55462, + "inverseInertia": 0.0011, + "inverseMass": 0.83664, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1952601479999998, + "mass": 1.19526, "motion": 0, "parent": null, "position": { @@ -3285,7 +3285,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.534253368055718, + "speed": 2.53425, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3330,44 +3330,44 @@ } ], { - "x": -0.9476230062086154, - "y": -0.3193910426172691 + "x": -0.94762, + "y": -0.31939 }, { - "x": -0.8026554781526334, - "y": -0.5964429422765999 + "x": -0.80266, + "y": -0.59644 }, { - "x": -0.5789034707116829, - "y": -0.8153960826481615 + "x": -0.5789, + "y": -0.8154 }, { - "x": -0.2987741825612023, - "y": -0.9543238380313495 + "x": -0.29877, + "y": -0.95432 }, { - "x": 0.010839235047825163, - "y": -0.999941253766229 + "x": 0.01084, + "y": -0.99994 }, { - "x": 0.3193910426172691, - "y": -0.9476230062086154 + "x": 0.31939, + "y": -0.94762 }, { - "x": 0.5964429422765999, - "y": -0.8026554781526334 + "x": 0.59644, + "y": -0.80266 }, { - "x": 0.8153960826481615, - "y": -0.5789034707116829 + "x": 0.8154, + "y": -0.5789 }, { - "x": 0.9543238380313495, - "y": -0.2987741825612023 + "x": 0.95432, + "y": -0.29877 }, { - "x": 0.999941253766229, - "y": 0.010839235047825163 + "x": 0.99994, + "y": 0.01084 }, { "max": { @@ -3378,12 +3378,12 @@ } }, { - "x": 176.99761155784387, - "y": 77.15923452137031 + "x": 176.99761, + "y": 77.15923 }, { - "x": 138.05641729941053, - "y": 35.71070020535371 + "x": 138.05642, + "y": 35.7107 }, { "category": 1, @@ -3400,16 +3400,16 @@ "y": 0 }, { - "x": 157.5404003771927, - "y": 55.16791138600488 + "x": 157.5404, + "y": 55.16791 }, { - "x": 0.25911529967694225, - "y": 0.002969277431332152 + "x": 0.25912, + "y": 0.00297 }, { - "x": 157.5051686004067, - "y": 52.63302656152439 + "x": 157.50517, + "y": 52.63303 }, { "endCol": 3, @@ -3432,8 +3432,8 @@ "yScale": 1 }, { - "x": 0.0415667163308342, - "y": 2.534955097774727 + "x": 0.04157, + "y": 2.53496 }, [ { @@ -3501,155 +3501,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 176.93090690535956, - "y": 58.45528276464757 + "x": 176.93091, + "y": 58.45528 }, { "body": null, "index": 1, "isInternal": false, - "x": 174.9655874371963, - "y": 64.28632275662657 + "x": 174.96559, + "y": 64.28632 }, { "body": null, "index": 2, "isInternal": false, - "x": 171.2958421515095, - "y": 69.22483564394192 + "x": 171.29584, + "y": 69.22484 }, { "body": null, "index": 3, "isInternal": false, - "x": 166.27893991632834, - "y": 72.78666550549255 + "x": 166.27894, + "y": 72.78667 }, { "body": null, "index": 4, "isInternal": false, - "x": 160.40666747422742, - "y": 74.62512256665605 + "x": 160.40667, + "y": 74.62512 }, { "body": null, "index": 5, "isInternal": false, - "x": 154.25302899855004, - "y": 74.5584179141717 + "x": 154.25303, + "y": 74.55842 }, { "body": null, "index": 6, "isInternal": false, - "x": 148.42198900657098, - "y": 72.59309844600845 + "x": 148.42199, + "y": 72.5931 }, { "body": null, "index": 7, "isInternal": false, - "x": 143.48347611925567, - "y": 68.92335316032171 + "x": 143.48348, + "y": 68.92335 }, { "body": null, "index": 8, "isInternal": false, - "x": 139.92164625770505, - "y": 63.9064509251405 + "x": 139.92165, + "y": 63.90645 }, { "body": null, "index": 9, "isInternal": false, - "x": 138.08318919654153, - "y": 58.03417848303955 + "x": 138.08319, + "y": 58.03418 }, { "body": null, "index": 10, "isInternal": false, - "x": 138.14989384902583, - "y": 51.88054000736218 + "x": 138.14989, + "y": 51.88054 }, { "body": null, "index": 11, "isInternal": false, - "x": 140.1152133171891, - "y": 46.04950001538317 + "x": 140.11521, + "y": 46.0495 }, { "body": null, "index": 12, "isInternal": false, - "x": 143.78495860287592, - "y": 41.110987128067826 + "x": 143.78496, + "y": 41.11099 }, { "body": null, "index": 13, "isInternal": false, - "x": 148.80186083805705, - "y": 37.54915726651722 + "x": 148.80186, + "y": 37.54916 }, { "body": null, "index": 14, "isInternal": false, - "x": 154.67413328015797, - "y": 35.71070020535371 + "x": 154.67413, + "y": 35.7107 }, { "body": null, "index": 15, "isInternal": false, - "x": 160.82777175583536, - "y": 35.77740485783804 + "x": 160.82777, + "y": 35.7774 }, { "body": null, "index": 16, "isInternal": false, - "x": 166.6588117478144, - "y": 37.74272432600127 + "x": 166.65881, + "y": 37.74272 }, { "body": null, "index": 17, "isInternal": false, - "x": 171.59732463512972, - "y": 41.41246961168803 + "x": 171.59732, + "y": 41.41247 }, { "body": null, "index": 18, "isInternal": false, - "x": 175.15915449668034, - "y": 46.42937184686925 + "x": 175.15915, + "y": 46.42937 }, { "body": null, "index": 19, "isInternal": false, - "x": 176.99761155784387, - "y": 52.3016442889702 + "x": 176.99761, + "y": 52.30164 }, { - "angle": 0.025517006036365572, - "anglePrev": 0.00645444547600157, - "angularSpeed": 0.018114349593549274, - "angularVelocity": 0.01872762621192301, - "area": 431.46854399999995, + "angle": 0.02552, + "anglePrev": 0.00645, + "angularSpeed": 0.01811, + "angularVelocity": 0.01873, + "area": 431.46854, "axes": { "#": 369 }, "bounds": { "#": 376 }, - "circleRadius": 11.99275548696845, + "circleRadius": 11.99276, "collisionFilter": { "#": 379 }, @@ -3664,13 +3664,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 118.56753749026406, - "inverseInertia": 0.008434011713215457, - "inverseMass": 2.3176660591044156, + "inertia": 118.56754, + "inverseInertia": 0.00843, + "inverseMass": 2.31767, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.43146854399999995, + "mass": 0.43147, "motion": 0, "parent": null, "position": { @@ -3692,7 +3692,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.396782784335321, + "speed": 2.39678, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3725,28 +3725,28 @@ } ], { - "x": -0.8529743473780559, - "y": -0.5219528357188793 + "x": -0.85297, + "y": -0.52195 }, { - "x": -0.4777614680119809, - "y": -0.8784896013516817 + "x": -0.47776, + "y": -0.87849 }, { - "x": 0.025514237031238743, - "y": -0.9996744588658418 + "x": 0.02551, + "y": -0.99967 }, { - "x": 0.5219528357188793, - "y": -0.8529743473780559 + "x": 0.52195, + "y": -0.85297 }, { - "x": 0.8784896013516817, - "y": -0.4777614680119809 + "x": 0.87849, + "y": -0.47776 }, { - "x": 0.9996744588658418, - "y": 0.025514237031238743 + "x": 0.99967, + "y": 0.02551 }, { "max": { @@ -3757,12 +3757,12 @@ } }, { - "x": 199.5245286501006, - "y": 62.33646781646481 + "x": 199.52453, + "y": 62.33647 }, { - "x": 176.08584436867133, - "y": 36.62383238341876 + "x": 176.08584, + "y": 36.62383 }, { "category": 1, @@ -3779,16 +3779,16 @@ "y": 0 }, { - "x": 187.74526949191824, - "y": 48.283257506665635 + "x": 187.74527, + "y": 48.28326 }, { "x": 0, "y": 0 }, { - "x": 187.71613630832405, - "y": 45.891726791367276 + "x": 187.71614, + "y": 45.89173 }, { "endCol": 4, @@ -3811,8 +3811,8 @@ "yScale": 1 }, { - "x": 0.06121850728362688, - "y": 2.392344582291372 + "x": 0.06122, + "y": 2.39234 }, [ { @@ -3856,99 +3856,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 199.24630223167517, - "y": 51.681803948755075 + "x": 199.2463, + "y": 51.6818 }, { "body": null, "index": 1, "isInternal": false, - "x": 196.00614817307567, - "y": 56.976857647872876 + "x": 196.00615, + "y": 56.97686 }, { "body": null, "index": 2, "isInternal": false, - "x": 190.55270209046796, - "y": 59.942682629912504 + "x": 190.5527, + "y": 59.94268 }, { "body": null, "index": 3, "isInternal": false, - "x": 184.34672304982877, - "y": 59.78429024642258 + "x": 184.34672, + "y": 59.78429 }, { "body": null, "index": 4, "isInternal": false, - "x": 179.051669350711, - "y": 56.544136187823064 + "x": 179.05167, + "y": 56.54414 }, { "body": null, "index": 5, "isInternal": false, - "x": 176.08584436867133, - "y": 51.09069010521534 + "x": 176.08584, + "y": 51.09069 }, { "body": null, "index": 6, "isInternal": false, - "x": 176.2442367521613, - "y": 44.88471106457618 + "x": 176.24424, + "y": 44.88471 }, { "body": null, "index": 7, "isInternal": false, - "x": 179.4843908107608, - "y": 39.589657365458386 + "x": 179.48439, + "y": 39.58966 }, { "body": null, "index": 8, "isInternal": false, - "x": 184.9378368933685, - "y": 36.62383238341876 + "x": 184.93784, + "y": 36.62383 }, { "body": null, "index": 9, "isInternal": false, - "x": 191.1438159340077, - "y": 36.78222476690868 + "x": 191.14382, + "y": 36.78222 }, { "body": null, "index": 10, "isInternal": false, - "x": 196.43886963312548, - "y": 40.0223788255082 + "x": 196.43887, + "y": 40.02238 }, { "body": null, "index": 11, "isInternal": false, - "x": 199.40469461516514, - "y": 45.47582490811592 + "x": 199.40469, + "y": 45.47582 }, { - "angle": 0.003142028883768958, - "anglePrev": 0.0009087856568349642, - "angularSpeed": 0.001958193826723877, - "angularVelocity": 0.0022364114538985166, - "area": 828.5975979999998, + "angle": 0.00314, + "anglePrev": 0.00091, + "angularSpeed": 0.00196, + "angularVelocity": 0.00224, + "area": 828.5976, "axes": { "#": 403 }, "bounds": { "#": 413 }, - "circleRadius": 16.40693587105624, + "circleRadius": 16.40694, "collisionFilter": { "#": 416 }, @@ -3963,13 +3963,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 437.12315220007827, - "inverseInertia": 0.00228768482055209, - "inverseMass": 1.206858434557036, + "inertia": 437.12315, + "inverseInertia": 0.00229, + "inverseMass": 1.20686, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8285975979999999, + "mass": 0.8286, "motion": 0, "parent": null, "position": { @@ -3991,7 +3991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9112381298328183, + "speed": 2.91124, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4033,40 +4033,40 @@ } ], { - "x": -0.9385960859802838, - "y": -0.34501795226117127 + "x": -0.9386, + "y": -0.34502 }, { - "x": -0.7639923749357129, - "y": -0.6452252715448217 + "x": -0.76399, + "y": -0.64523 }, { - "x": -0.4973231126899151, - "y": -0.8675653990244273 + "x": -0.49732, + "y": -0.86757 }, { - "x": -0.17063016580733503, - "y": -0.985335144261363 + "x": -0.17063, + "y": -0.98534 }, { - "x": 0.17681865899312105, - "y": -0.9842434464256665 + "x": 0.17682, + "y": -0.98424 }, { - "x": 0.5027650884341192, - "y": -0.8644230826694946 + "x": 0.50277, + "y": -0.86442 }, { - "x": 0.7680318963856655, - "y": -0.6404115911929124 + "x": 0.76803, + "y": -0.64041 }, { - "x": 0.9407456522248687, - "y": -0.3391129868052923 + "x": 0.94075, + "y": -0.33911 }, { - "x": 0.9999950638313077, - "y": 0.003142023713905721 + "x": 1, + "y": 0.00314 }, { "max": { @@ -4077,12 +4077,12 @@ } }, { - "x": 231.51712802560505, - "y": 73.46890033590036 + "x": 231.51713, + "y": 73.4689 }, { - "x": 199.15937054011783, - "y": 37.743923223572494 + "x": 199.15937, + "y": 37.74392 }, { "category": 1, @@ -4099,16 +4099,16 @@ "y": 0 }, { - "x": 215.35025615865786, - "y": 54.15084223585276 + "x": 215.35026, + "y": 54.15084 }, { - "x": 0.009013546884566506, - "y": 0.0020337276208628186 + "x": 0.00901, + "y": 0.00203 }, { - "x": 215.37577239121964, - "y": 51.2386904227831 + "x": 215.37577, + "y": 51.23869 }, { "endCol": 4, @@ -4131,8 +4131,8 @@ "yScale": 1 }, { - "x": -0.027679628003056678, - "y": 2.91214901372728 + "x": -0.02768, + "y": 2.91215 }, [ { @@ -4194,141 +4194,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 231.49922477448322, - "y": 57.05059699187745 + "x": 231.49922, + "y": 57.0506 }, { "body": null, "index": 1, "isInternal": false, - "x": 229.53341200011175, - "y": 62.39844675941186 + "x": 229.53341, + "y": 62.39845 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.85671514778645, - "y": 66.75191598017146 + "x": 225.85672, + "y": 66.75192 }, { "body": null, "index": 3, "isInternal": false, - "x": 220.91378787728186, - "y": 69.58539917202248 + "x": 220.91379, + "y": 69.5854 }, { "body": null, "index": 4, "isInternal": false, - "x": 215.29870497558383, - "y": 70.557761248133 + "x": 215.2987, + "y": 70.55776 }, { "body": null, "index": 5, "isInternal": false, - "x": 209.68984328083928, - "y": 69.5501330978576 + "x": 209.68984, + "y": 69.55013 }, { "body": null, "index": 6, "isInternal": false, - "x": 204.76481926145652, - "y": 66.68564441599777 + "x": 204.76482, + "y": 66.68564 }, { "body": null, "index": 7, "isInternal": false, - "x": 201.11555227615364, - "y": 62.309156729510086 + "x": 201.11555, + "y": 62.30916 }, { "body": null, "index": 8, "isInternal": false, - "x": 199.18338429171067, - "y": 56.949059353538864 + "x": 199.18338, + "y": 56.94906 }, { "body": null, "index": 9, "isInternal": false, - "x": 199.2012875428325, - "y": 51.251087479828065 + "x": 199.20129, + "y": 51.25109 }, { "body": null, "index": 10, "isInternal": false, - "x": 201.16710031720396, - "y": 45.90323771229365 + "x": 201.1671, + "y": 45.90324 }, { "body": null, "index": 11, "isInternal": false, - "x": 204.84379716952927, - "y": 41.54976849153403 + "x": 204.8438, + "y": 41.54977 }, { "body": null, "index": 12, "isInternal": false, - "x": 209.78672444003385, - "y": 38.716285299683044 + "x": 209.78672, + "y": 38.71629 }, { "body": null, "index": 13, "isInternal": false, - "x": 215.40180734173188, - "y": 37.743923223572494 + "x": 215.40181, + "y": 37.74392 }, { "body": null, "index": 14, "isInternal": false, - "x": 221.01066903647643, - "y": 38.751551373847924 + "x": 221.01067, + "y": 38.75155 }, { "body": null, "index": 15, "isInternal": false, - "x": 225.9356930558592, - "y": 41.61604005570773 + "x": 225.93569, + "y": 41.61604 }, { "body": null, "index": 16, "isInternal": false, - "x": 229.58496004116208, - "y": 45.99252774219543 + "x": 229.58496, + "y": 45.99253 }, { "body": null, "index": 17, "isInternal": false, - "x": 231.51712802560505, - "y": 51.35262511816665 + "x": 231.51713, + "y": 51.35263 }, { - "angle": 0.0028850730526235506, - "anglePrev": 0.0003232352531758065, - "angularSpeed": 0.0028850730526235506, - "angularVelocity": 0.002547633127840936, - "area": 783.3593100000002, + "angle": 0.00289, + "anglePrev": 0.00032, + "angularSpeed": 0.00289, + "angularVelocity": 0.00255, + "area": 783.35931, "axes": { "#": 446 }, "bounds": { "#": 455 }, - "circleRadius": 15.996013374485596, + "circleRadius": 15.99601, "collisionFilter": { "#": 458 }, @@ -4343,13 +4343,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 390.7154522672976, - "inverseInertia": 0.0025594073492539436, - "inverseMass": 1.2765534119968522, + "inertia": 390.71545, + "inverseInertia": 0.00256, + "inverseMass": 1.27655, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7833593100000001, + "mass": 0.78336, "motion": 0, "parent": null, "position": { @@ -4371,7 +4371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6680765737373284, + "speed": 1.66808, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4410,36 +4410,36 @@ } ], { - "x": -0.9227348462265228, - "y": -0.3854353429037294 + "x": -0.92273, + "y": -0.38544 }, { - "x": -0.7050637864455259, - "y": -0.7091438902247541 + "x": -0.70506, + "y": -0.70914 }, { - "x": -0.38010464113239606, - "y": -0.9249434911331678 + "x": -0.3801, + "y": -0.92494 }, { - "x": 0.0028850690502371713, - "y": -0.9999958381796273 + "x": 0.00289, + "y": -1 }, { - "x": 0.3854353429037294, - "y": -0.9227348462265228 + "x": 0.38544, + "y": -0.92273 }, { - "x": 0.7091438902247541, - "y": -0.7050637864455259 + "x": 0.70914, + "y": -0.70506 }, { - "x": 0.9249434911331678, - "y": -0.38010464113239606 + "x": 0.92494, + "y": -0.3801 }, { - "x": 0.9999958381796273, - "y": 0.0028850690502371713 + "x": 1, + "y": 0.00289 }, { "max": { @@ -4450,12 +4450,12 @@ } }, { - "x": 262.8466544111784, - "y": 69.23320610820915 + "x": 262.84665, + "y": 69.23321 }, { - "x": 231.38513339507173, - "y": 36.17054363209101 + "x": 231.38513, + "y": 36.17054 }, { "category": 1, @@ -4472,16 +4472,16 @@ "y": 0 }, { - "x": 247.1487154054725, - "y": 51.86848263779697 + "x": 247.14872, + "y": 51.86848 }, { "x": 0, "y": 0 }, { - "x": 247.16281180074517, - "y": 50.20152763618033 + "x": 247.16281, + "y": 50.20153 }, { "endCol": 5, @@ -4504,8 +4504,8 @@ "yScale": 1 }, { - "x": -0.011808065711420568, - "y": 1.666957962618497 + "x": -0.01181, + "y": 1.66696 }, [ { @@ -4561,127 +4561,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 262.82864581016685, - "y": 55.034733497084765 + "x": 262.82865, + "y": 55.03473 }, { "body": null, "index": 1, "isInternal": false, - "x": 260.4230204446121, - "y": 60.793817070067476 + "x": 260.42302, + "y": 60.79382 }, { "body": null, "index": 2, "isInternal": false, - "x": 255.9973070010067, - "y": 65.19406689423548 + "x": 255.99731, + "y": 65.19407 }, { "body": null, "index": 3, "isInternal": false, - "x": 250.22443856810196, - "y": 67.56642164350295 + "x": 250.22444, + "y": 67.56642 }, { "body": null, "index": 4, "isInternal": false, - "x": 243.9824645461847, - "y": 67.54841304249136 + "x": 243.98246, + "y": 67.54841 }, { "body": null, "index": 5, "isInternal": false, - "x": 238.223380973202, - "y": 65.14278767693655 + "x": 238.22338, + "y": 65.14279 }, { "body": null, "index": 6, "isInternal": false, - "x": 233.823131149034, - "y": 60.71707423333117 + "x": 233.82313, + "y": 60.71707 }, { "body": null, "index": 7, "isInternal": false, - "x": 231.45077639976654, - "y": 54.944205800426424 + "x": 231.45078, + "y": 54.94421 }, { "body": null, "index": 8, "isInternal": false, - "x": 231.46878500077813, - "y": 48.70223177850918 + "x": 231.46879, + "y": 48.70223 }, { "body": null, "index": 9, "isInternal": false, - "x": 233.8744103663329, - "y": 42.94314820552647 + "x": 233.87441, + "y": 42.94315 }, { "body": null, "index": 10, "isInternal": false, - "x": 238.3001238099383, - "y": 38.54289838135848 + "x": 238.30012, + "y": 38.5429 }, { "body": null, "index": 11, "isInternal": false, - "x": 244.07299224284304, - "y": 36.17054363209101 + "x": 244.07299, + "y": 36.17054 }, { "body": null, "index": 12, "isInternal": false, - "x": 250.3149662647603, - "y": 36.18855223310259 + "x": 250.31497, + "y": 36.18855 }, { "body": null, "index": 13, "isInternal": false, - "x": 256.07404983774296, - "y": 38.59417759865739 + "x": 256.07405, + "y": 38.59418 }, { "body": null, "index": 14, "isInternal": false, - "x": 260.474299661911, - "y": 43.01989104226278 + "x": 260.4743, + "y": 43.01989 }, { "body": null, "index": 15, "isInternal": false, - "x": 262.8466544111784, - "y": 48.79275947516752 + "x": 262.84665, + "y": 48.79276 }, { - "angle": -0.0008533505503374764, - "anglePrev": 0.002259247733034415, - "angularSpeed": 0.0009700032960430001, - "angularVelocity": -0.003112699984340714, - "area": 754.4775720000002, + "angle": -0.00085, + "anglePrev": 0.00226, + "angularSpeed": 0.00097, + "angularVelocity": -0.00311, + "area": 754.47757, "axes": { "#": 486 }, "bounds": { "#": 495 }, - "circleRadius": 15.698259602194788, + "circleRadius": 15.69826, "collisionFilter": { "#": 498 }, @@ -4696,13 +4696,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 362.43592371593485, - "inverseInertia": 0.002759108395622964, - "inverseMass": 1.32542044603017, + "inertia": 362.43592, + "inverseInertia": 0.00276, + "inverseMass": 1.32542, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7544775720000002, + "mass": 0.75448, "motion": 0, "parent": null, "position": { @@ -4724,7 +4724,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5981287418528782, + "speed": 0.59813, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4763,36 +4763,36 @@ } ], { - "x": -0.9241838850645442, - "y": -0.38194783228473134 + "x": -0.92418, + "y": -0.38195 }, { - "x": -0.7077099336140903, - "y": -0.7065031138388135 + "x": -0.70771, + "y": -0.7065 }, { - "x": -0.38352458089870156, - "y": -0.9235306686009269 + "x": -0.38352, + "y": -0.92353 }, { - "x": -0.0008533504467681498, - "y": -0.9999996358964413 + "x": -0.00085, + "y": -1 }, { - "x": 0.38194783228473134, - "y": -0.9241838850645442 + "x": 0.38195, + "y": -0.92418 }, { - "x": 0.7065031138388135, - "y": -0.7077099336140903 + "x": 0.7065, + "y": -0.70771 }, { - "x": 0.9235306686009269, - "y": -0.38352458089870156 + "x": 0.92353, + "y": -0.38352 }, { - "x": 0.9999996358964413, - "y": -0.0008533504467681498 + "x": 1, + "y": -0.00085 }, { "max": { @@ -4803,12 +4803,12 @@ } }, { - "x": 295.0735912387289, - "y": 60.39921596039816 + "x": 295.07359, + "y": 60.39922 }, { - "x": 264.00656791249685, - "y": 29.065174857929957 + "x": 264.00657, + "y": 29.06517 }, { "category": 1, @@ -4825,16 +4825,16 @@ "y": 0 }, { - "x": 279.4061761188128, - "y": 44.46478306424591 + "x": 279.40618, + "y": 44.46478 }, { "x": 0, "y": 0 }, { - "x": 278.9690031455639, - "y": 44.44755530930416 + "x": 278.969, + "y": 44.44756 }, { "endCol": 6, @@ -4857,8 +4857,8 @@ "yScale": 1 }, { - "x": 0.43717417960044713, - "y": 0.017224835981281217 + "x": 0.43717, + "y": 0.01722 }, [ { @@ -4914,127 +4914,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 294.8057843251288, - "y": 47.514642912167815 + "x": 294.80578, + "y": 47.51464 }, { "body": null, "index": 1, "isInternal": false, - "x": 292.46661343541535, - "y": 53.1746411055171 + "x": 292.46661, + "y": 53.17464 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.13831172684735, - "y": 57.51033624235588 + "x": 288.13831, + "y": 57.51034 }, { "body": null, "index": 3, "isInternal": false, - "x": 282.4823140403925, - "y": 59.859163645724955 + "x": 282.48231, + "y": 59.85916 }, { "body": null, "index": 4, "isInternal": false, - "x": 276.35631627089094, - "y": 59.86439127056186 + "x": 276.35632, + "y": 59.86439 }, { "body": null, "index": 5, "isInternal": false, - "x": 270.6963180775416, - "y": 57.52522038084842 + "x": 270.69632, + "y": 57.52522 }, { "body": null, "index": 6, "isInternal": false, - "x": 266.36062294070285, - "y": 53.19691867228043 + "x": 266.36062, + "y": 53.19692 }, { "body": null, "index": 7, "isInternal": false, - "x": 264.0117955373338, - "y": 47.54092098582559 + "x": 264.0118, + "y": 47.54092 }, { "body": null, "index": 8, "isInternal": false, - "x": 264.00656791249685, - "y": 41.414923216324006 + "x": 264.00657, + "y": 41.41492 }, { "body": null, "index": 9, "isInternal": false, - "x": 266.3457388022103, - "y": 35.7549250229747 + "x": 266.34574, + "y": 35.75493 }, { "body": null, "index": 10, "isInternal": false, - "x": 270.6740405107783, - "y": 31.41922988613593 + "x": 270.67404, + "y": 31.41923 }, { "body": null, "index": 11, "isInternal": false, - "x": 276.33003819723314, - "y": 29.07040248276686 + "x": 276.33004, + "y": 29.0704 }, { "body": null, "index": 12, "isInternal": false, - "x": 282.4560359667347, - "y": 29.065174857929957 + "x": 282.45604, + "y": 29.06517 }, { "body": null, "index": 13, "isInternal": false, - "x": 288.11603416008404, - "y": 31.404345747643397 + "x": 288.11603, + "y": 31.40435 }, { "body": null, "index": 14, "isInternal": false, - "x": 292.4517292969228, - "y": 35.73264745621137 + "x": 292.45173, + "y": 35.73265 }, { "body": null, "index": 15, "isInternal": false, - "x": 294.80055670029185, - "y": 41.38864514266623 + "x": 294.80056, + "y": 41.38865 }, { - "angle": 0.004773682232093633, - "anglePrev": -0.00039549926604232966, - "angularSpeed": 0.004795804006603698, - "angularVelocity": 0.004977121821948252, - "area": 546.5734600000001, + "angle": 0.00477, + "anglePrev": -0.0004, + "angularSpeed": 0.0048, + "angularVelocity": 0.00498, + "area": 546.57346, "axes": { "#": 526 }, "bounds": { "#": 534 }, - "circleRadius": 13.414909122085048, + "circleRadius": 13.41491, "collisionFilter": { "#": 537 }, @@ -5049,13 +5049,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 190.22932853820927, - "inverseInertia": 0.0052568129619357876, - "inverseMass": 1.8295802361131839, + "inertia": 190.22933, + "inverseInertia": 0.00526, + "inverseMass": 1.82958, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5465734600000001, + "mass": 0.54657, "motion": 0, "parent": null, "position": { @@ -5077,7 +5077,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.919235246078799, + "speed": 2.91924, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5113,32 +5113,32 @@ } ], { - "x": -0.8988470400403598, - "y": -0.4382624768454219 + "x": -0.89885, + "y": -0.43826 }, { - "x": -0.6197702004000605, - "y": -0.7847833450679677 + "x": -0.61977, + "y": -0.78478 }, { - "x": -0.21792732510294707, - "y": -0.97596499987114 + "x": -0.21793, + "y": -0.97596 }, { - "x": 0.2272351449052999, - "y": -0.9738399195555023 + "x": 0.22724, + "y": -0.97384 }, { - "x": 0.6272344527091681, - "y": -0.7788304958940876 + "x": 0.62723, + "y": -0.77883 }, { - "x": 0.902990262453684, - "y": -0.42966101279244173 + "x": 0.90299, + "y": -0.42966 }, { - "x": 0.9999886060006107, - "y": 0.004773664101635715 + "x": 0.99999, + "y": 0.00477 }, { "max": { @@ -5149,12 +5149,12 @@ } }, { - "x": 321.0602941415798, - "y": 67.4735154346802 + "x": 321.06029, + "y": 67.47352 }, { - "x": 294.61084852538994, - "y": 37.73647929955912 + "x": 294.61085, + "y": 37.73648 }, { "category": 1, @@ -5171,16 +5171,16 @@ "y": 0 }, { - "x": 307.7039488906153, - "y": 51.15132644905731 + "x": 307.70395, + "y": 51.15133 }, { - "x": 0.03725085205720258, - "y": 0.0000901419108931136 + "x": 0.03725, + "y": 0.00009 }, { - "x": 307.5077348136652, - "y": 48.24437446111512 + "x": 307.50773, + "y": 48.24437 }, { "endCol": 6, @@ -5203,8 +5203,8 @@ "yScale": 1 }, { - "x": 0.22978296320678737, - "y": 2.9071169368923933 + "x": 0.22978, + "y": 2.90712 }, [ { @@ -5254,113 +5254,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.7685504811539, - "y": 54.198727190754425 + "x": 320.76855, + "y": 54.19873 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.15190246380365, - "y": 59.56529733874437 + "x": 318.1519, + "y": 59.5653 }, { "body": null, "index": 2, "isInternal": false, - "x": 313.4671880618126, - "y": 63.26497623991631 + "x": 313.46719, + "y": 63.26498 }, { "body": null, "index": 3, "isInternal": false, - "x": 307.6399101866919, - "y": 64.5661735985555 + "x": 307.63991, + "y": 64.56617 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.8253207107534, - "y": 63.20940124244507 + "x": 301.82532, + "y": 63.2094 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.1761414643348, - "y": 59.465164960548464 + "x": 297.17614, + "y": 59.46516 }, { "body": null, "index": 6, "isInternal": false, - "x": 294.61084852538994, - "y": 54.07385768518384 + "x": 294.61085, + "y": 54.07386 }, { "body": null, "index": 7, "isInternal": false, - "x": 294.63934730007674, - "y": 48.10392570736019 + "x": 294.63935, + "y": 48.10393 }, { "body": null, "index": 8, "isInternal": false, - "x": 297.255995317427, - "y": 42.73735555937024 + "x": 297.256, + "y": 42.73736 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.94070971941807, - "y": 39.03767665819831 + "x": 301.94071, + "y": 39.03768 }, { "body": null, "index": 10, "isInternal": false, - "x": 307.76798759453874, - "y": 37.73647929955912 + "x": 307.76799, + "y": 37.73648 }, { "body": null, "index": 11, "isInternal": false, - "x": 313.58257707047727, - "y": 39.09325165566955 + "x": 313.58258, + "y": 39.09325 }, { "body": null, "index": 12, "isInternal": false, - "x": 318.2317563168958, - "y": 42.83748793756615 + "x": 318.23176, + "y": 42.83749 }, { "body": null, "index": 13, "isInternal": false, - "x": 320.7970492558407, - "y": 48.22879521293078 + "x": 320.79705, + "y": 48.2288 }, { - "angle": 0.0009080118588124367, - "anglePrev": 0.00029613832120635876, - "angularSpeed": 0.0009080118588124367, - "angularVelocity": 0.0006745117296295266, - "area": 973.9752019999999, + "angle": 0.00091, + "anglePrev": 0.0003, + "angularSpeed": 0.00091, + "angularVelocity": 0.00067, + "area": 973.9752, "axes": { "#": 563 }, "bounds": { "#": 573 }, - "circleRadius": 17.787937242798353, + "circleRadius": 17.78794, "collisionFilter": { "#": 576 }, @@ -5375,13 +5375,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 603.96569072653, - "inverseInertia": 0.0016557231898339578, - "inverseMass": 1.0267201854282941, + "inertia": 603.96569, + "inverseInertia": 0.00166, + "inverseMass": 1.02672, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9739752019999999, + "mass": 0.97398, "motion": 0, "parent": null, "position": { @@ -5403,7 +5403,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.917932643919916, + "speed": 2.91793, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5445,40 +5445,40 @@ } ], { - "x": -0.939373706018169, - "y": -0.34289508663976315 + "x": -0.93937, + "y": -0.3429 }, { - "x": -0.765430101654963, - "y": -0.6435190436035855 + "x": -0.76543, + "y": -0.64352 }, { - "x": -0.4992348180099749, - "y": -0.8664667313212593 + "x": -0.49923, + "y": -0.86647 }, { - "x": -0.17278947555481436, - "y": -0.9849587794103327 + "x": -0.17279, + "y": -0.98496 }, { - "x": 0.174577898151162, - "y": -0.9846433656289584 + "x": 0.17458, + "y": -0.98464 }, { - "x": 0.5008075180561422, - "y": -0.8655586807712385 + "x": 0.50081, + "y": -0.86556 }, { - "x": 0.766597484686788, - "y": -0.6421279440048454 + "x": 0.7666, + "y": -0.64213 }, { - "x": 0.9399948622862486, - "y": -0.3411885972236714 + "x": 0.93999, + "y": -0.34119 }, { - "x": 0.9999995877572605, - "y": 0.0009080117340386679 + "x": 1, + "y": 0.00091 }, { "max": { @@ -5489,12 +5489,12 @@ } }, { - "x": 356.0803715305777, - "y": 76.21903903422218 + "x": 356.08037, + "y": 76.21904 }, { - "x": 320.7896835535208, - "y": 37.735772542566934 + "x": 320.78968, + "y": 37.73577 }, { "category": 1, @@ -5511,16 +5511,16 @@ "y": 0 }, { - "x": 338.31048118009886, - "y": 55.52376520959308 + "x": 338.31048, + "y": 55.52377 }, { - "x": 0.11078991338864096, + "x": 0.11079, "y": 0 }, { - "x": 338.12328330355245, - "y": 52.6162783863929 + "x": 338.12328, + "y": 52.61628 }, { "endCol": 7, @@ -5543,8 +5543,8 @@ "yScale": 1 }, { - "x": 0.20153801454847553, - "y": 2.9074843425982593 + "x": 0.20154, + "y": 2.90748 }, [ { @@ -5606,133 +5606,133 @@ "body": null, "index": 0, "isInternal": false, - "x": 355.8256691101841, - "y": 58.628670485732144 + "x": 355.82567, + "y": 58.62867 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.7073989731369, - "y": 64.43174946386901 + "x": 353.7074, + "y": 64.43175 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.7321038986274, - "y": 69.16014179854051 + "x": 349.7321, + "y": 69.16014 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.37930125587957, - "y": 72.24428266234558 + "x": 344.3793, + "y": 72.24428 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.29432946737376, - "y": 73.31175787661923 + "x": 338.29433, + "y": 73.31176 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.2113062720492, - "y": 72.23323397556581 + "x": 332.21131, + "y": 72.23323 }, { "body": null, "index": 6, "isInternal": false, - "x": 326.8641133257943, - "y": 69.1393773862065 + "x": 326.86411, + "y": 69.13938 }, { "body": null, "index": 7, "isInternal": false, - "x": 322.89741167433573, - "y": 64.40377362234328 + "x": 322.89741, + "y": 64.40377 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.7896835535208, - "y": 58.59685738661837 + "x": 320.78968, + "y": 58.59686 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.79529325001363, - "y": 52.418859933454016 + "x": 320.79529, + "y": 52.41886 }, { "body": null, "index": 10, "isInternal": false, - "x": 322.91356338706083, - "y": 46.615780955317135 + "x": 322.91356, + "y": 46.61578 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.88885846157035, - "y": 41.887388620645645 + "x": 326.88886, + "y": 41.88739 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.24166110431815, - "y": 38.80324775684058 + "x": 332.24166, + "y": 38.80325 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.32663289282397, - "y": 37.735772542566934 + "x": 338.32663, + "y": 37.73577 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.4096560881485, - "y": 38.81429644362036 + "x": 344.40966, + "y": 38.8143 }, { "body": null, "index": 15, "isInternal": false, - "x": 349.75684903440344, - "y": 41.90815303297964 + "x": 349.75685, + "y": 41.90815 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.723550685862, - "y": 46.643756796842865 + "x": 353.72355, + "y": 46.64376 }, { "body": null, "index": 17, "isInternal": false, - "x": 355.83127880667695, - "y": 52.45067303256779 + "x": 355.83128, + "y": 52.45067 }, { "angle": 0, - "anglePrev": 0.0015720159697242436, + "anglePrev": 0.00157, "angularSpeed": 0, - "angularVelocity": -0.001346047419425206, + "angularVelocity": -0.00135, "area": 485.5904, "axes": { "#": 606 @@ -5740,7 +5740,7 @@ "bounds": { "#": 614 }, - "circleRadius": 12.644504458161865, + "circleRadius": 12.6445, "collisionFilter": { "#": 617 }, @@ -5755,13 +5755,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 150.14835557749134, - "inverseInertia": 0.006660079600298396, - "inverseMass": 2.0593487844899734, + "inertia": 150.14836, + "inverseInertia": 0.00666, + "inverseMass": 2.05935, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4855904, + "mass": 0.48559, "motion": 0, "parent": null, "position": { @@ -5783,7 +5783,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5819,28 +5819,28 @@ } ], { - "x": -0.9010093877027451, - "y": -0.43379958883282077 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6233938910669198, - "y": -0.7819079591489303 + "x": -0.62339, + "y": -0.78191 }, { - "x": -0.2226655662703444, - "y": -0.9748948895124575 + "x": -0.22267, + "y": -0.97489 }, { - "x": 0.2226655662703444, - "y": -0.9748948895124575 + "x": 0.22267, + "y": -0.97489 }, { - "x": 0.6233938910669198, - "y": -0.7819079591489303 + "x": 0.62339, + "y": -0.78191 }, { - "x": 0.9010093877027451, - "y": -0.43379958883282077 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -5855,12 +5855,12 @@ } }, { - "x": 380.4328669196681, - "y": 65.93302548206142 + "x": 380.43287, + "y": 65.93303 }, { - "x": 355.7788669196681, - "y": 37.735754767025774 + "x": 355.77887, + "y": 37.73575 }, { "category": 1, @@ -5877,16 +5877,16 @@ "y": 0 }, { - "x": 368.1058669196681, - "y": 50.38075476702577 + "x": 368.10587, + "y": 50.38075 }, { - "x": 1.0902935357344627, + "x": 1.09029, "y": 0 }, { - "x": 367.9062571639735, - "y": 47.473494002947795 + "x": 367.90626, + "y": 47.47349 }, { "endCol": 7, @@ -5909,8 +5909,8 @@ "yScale": 1 }, { - "x": 0.17084695723877985, - "y": 2.907265739556813 + "x": 0.17085, + "y": 2.90727 }, [ { @@ -5960,113 +5960,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 380.4328669196681, - "y": 53.19475476702577 + "x": 380.43287, + "y": 53.19475 }, { "body": null, "index": 1, "isInternal": false, - "x": 377.9918669196681, - "y": 58.26475476702577 + "x": 377.99187, + "y": 58.26475 }, { "body": null, "index": 2, "isInternal": false, - "x": 373.59186691966806, - "y": 61.772754767025766 + "x": 373.59187, + "y": 61.77275 }, { "body": null, "index": 3, "isInternal": false, - "x": 368.1058669196681, - "y": 63.02575476702577 + "x": 368.10587, + "y": 63.02575 }, { "body": null, "index": 4, "isInternal": false, - "x": 362.6198669196681, - "y": 61.772754767025766 + "x": 362.61987, + "y": 61.77275 }, { "body": null, "index": 5, "isInternal": false, - "x": 358.21986691966805, - "y": 58.26475476702577 + "x": 358.21987, + "y": 58.26475 }, { "body": null, "index": 6, "isInternal": false, - "x": 355.7788669196681, - "y": 53.19475476702577 + "x": 355.77887, + "y": 53.19475 }, { "body": null, "index": 7, "isInternal": false, - "x": 355.7788669196681, - "y": 47.56675476702577 + "x": 355.77887, + "y": 47.56675 }, { "body": null, "index": 8, "isInternal": false, - "x": 358.21986691966805, - "y": 42.49675476702577 + "x": 358.21987, + "y": 42.49675 }, { "body": null, "index": 9, "isInternal": false, - "x": 362.6198669196681, - "y": 38.988754767025775 + "x": 362.61987, + "y": 38.98875 }, { "body": null, "index": 10, "isInternal": false, - "x": 368.1058669196681, - "y": 37.735754767025774 + "x": 368.10587, + "y": 37.73575 }, { "body": null, "index": 11, "isInternal": false, - "x": 373.59186691966806, - "y": 38.988754767025775 + "x": 373.59187, + "y": 38.98875 }, { "body": null, "index": 12, "isInternal": false, - "x": 377.9918669196681, - "y": 42.49675476702577 + "x": 377.99187, + "y": 42.49675 }, { "body": null, "index": 13, "isInternal": false, - "x": 380.4328669196681, - "y": 47.56675476702577 + "x": 380.43287, + "y": 47.56675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1013.2448800000001, + "area": 1013.24488, "axes": { "#": 643 }, "bounds": { "#": 654 }, - "circleRadius": 18.10806755829904, + "circleRadius": 18.10807, "collisionFilter": { "#": 657 }, @@ -6081,13 +6081,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 653.6311476673523, - "inverseInertia": 0.0015299148511645328, - "inverseMass": 0.9869282537109884, + "inertia": 653.63115, + "inverseInertia": 0.00153, + "inverseMass": 0.98693, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.01324488, + "mass": 1.01324, "motion": 0, "parent": null, "position": { @@ -6109,7 +6109,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6154,40 +6154,40 @@ } ], { - "x": -0.95103925715127, - "y": -0.3090701075114839 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8089955390833857, - "y": -0.5878147818345351 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878147818345351, - "y": -0.8089955390833857 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090701075114839, - "y": -0.95103925715127 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090701075114839, - "y": -0.95103925715127 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5878147818345351, - "y": -0.8089955390833857 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089955390833857, - "y": -0.5878147818345351 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.95103925715127, - "y": -0.3090701075114839 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -6203,11 +6203,11 @@ }, { "x": 414.84, - "y": 73.50575476702579 + "y": 73.50575 }, { "x": 379.07, - "y": 37.73575476702578 + "y": 37.73575 }, { "category": 1, @@ -6225,7 +6225,7 @@ }, { "x": 396.955, - "y": 55.62075476702578 + "y": 55.62075 }, { "x": 0, @@ -6233,7 +6233,7 @@ }, { "x": 396.955, - "y": 52.71348405199013 + "y": 52.71348 }, { "endCol": 8, @@ -6257,7 +6257,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -6326,154 +6326,154 @@ "index": 0, "isInternal": false, "x": 414.84, - "y": 58.45375476702578 + "y": 58.45375 }, { "body": null, "index": 1, "isInternal": false, "x": 413.089, - "y": 63.84175476702578 + "y": 63.84175 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.75899999999996, - "y": 68.42475476702579 + "x": 409.759, + "y": 68.42475 }, { "body": null, "index": 3, "isInternal": false, "x": 405.176, - "y": 71.75475476702579 + "y": 71.75475 }, { "body": null, "index": 4, "isInternal": false, "x": 399.788, - "y": 73.50575476702579 + "y": 73.50575 }, { "body": null, "index": 5, "isInternal": false, - "x": 394.12199999999996, - "y": 73.50575476702579 + "x": 394.122, + "y": 73.50575 }, { "body": null, "index": 6, "isInternal": false, "x": 388.734, - "y": 71.75475476702579 + "y": 71.75475 }, { "body": null, "index": 7, "isInternal": false, "x": 384.151, - "y": 68.42475476702579 + "y": 68.42475 }, { "body": null, "index": 8, "isInternal": false, - "x": 380.82099999999997, - "y": 63.84175476702578 + "x": 380.821, + "y": 63.84175 }, { "body": null, "index": 9, "isInternal": false, "x": 379.07, - "y": 58.45375476702578 + "y": 58.45375 }, { "body": null, "index": 10, "isInternal": false, "x": 379.07, - "y": 52.78775476702578 + "y": 52.78775 }, { "body": null, "index": 11, "isInternal": false, - "x": 380.82099999999997, - "y": 47.399754767025776 + "x": 380.821, + "y": 47.39975 }, { "body": null, "index": 12, "isInternal": false, "x": 384.151, - "y": 42.81675476702578 + "y": 42.81675 }, { "body": null, "index": 13, "isInternal": false, "x": 388.734, - "y": 39.48675476702578 + "y": 39.48675 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.12199999999996, - "y": 37.73575476702578 + "x": 394.122, + "y": 37.73575 }, { "body": null, "index": 15, "isInternal": false, "x": 399.788, - "y": 37.73575476702578 + "y": 37.73575 }, { "body": null, "index": 16, "isInternal": false, "x": 405.176, - "y": 39.48675476702578 + "y": 39.48675 }, { "body": null, "index": 17, "isInternal": false, - "x": 409.75899999999996, - "y": 42.81675476702578 + "x": 409.759, + "y": 42.81675 }, { "body": null, "index": 18, "isInternal": false, "x": 413.089, - "y": 47.399754767025776 + "y": 47.39975 }, { "body": null, "index": 19, "isInternal": false, "x": 414.84, - "y": 52.78775476702578 + "y": 52.78775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1043.5045799999998, + "area": 1043.50458, "axes": { "#": 689 }, "bounds": { "#": 700 }, - "circleRadius": 18.37615740740741, + "circleRadius": 18.37616, "collisionFilter": { "#": 703 }, @@ -6488,13 +6488,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 693.2543810769114, - "inverseInertia": 0.0014424719515606747, - "inverseMass": 0.9583091623804854, + "inertia": 693.25438, + "inverseInertia": 0.00144, + "inverseMass": 0.95831, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0435045799999998, + "mass": 1.0435, "motion": 0, "parent": null, "position": { @@ -6516,7 +6516,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6561,40 +6561,40 @@ } ], { - "x": -0.9510391812432063, - "y": -0.30907034108799836 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8090293436440933, - "y": -0.5877682546061905 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877682546061905, - "y": -0.8090293436440933 + "x": -0.58777, + "y": -0.80903 }, { - "x": -0.30907034108799836, - "y": -0.9510391812432063 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30907034108799836, - "y": -0.9510391812432063 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5877682546061905, - "y": -0.8090293436440933 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090293436440933, - "y": -0.5877682546061905 + "x": 0.80903, + "y": -0.58777 }, { - "x": 0.9510391812432063, - "y": -0.30907034108799836 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -6609,12 +6609,12 @@ } }, { - "x": 451.13999999999993, - "y": 74.03575476702578 + "x": 451.14, + "y": 74.03575 }, { "x": 414.84, - "y": 37.735754767025774 + "y": 37.73575 }, { "category": 1, @@ -6631,16 +6631,16 @@ "y": 0 }, { - "x": 432.98999999999995, - "y": 55.88575476702577 + "x": 432.99, + "y": 55.88575 }, { "x": 0, "y": 0 }, { - "x": 432.98999999999995, - "y": 52.97848405199012 + "x": 432.99, + "y": 52.97848 }, { "endCol": 9, @@ -6664,7 +6664,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -6732,155 +6732,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 451.13999999999993, - "y": 58.76075476702577 + "x": 451.14, + "y": 58.76075 }, { "body": null, "index": 1, "isInternal": false, - "x": 449.36299999999994, - "y": 64.22875476702578 + "x": 449.363, + "y": 64.22875 }, { "body": null, "index": 2, "isInternal": false, - "x": 445.9839999999999, - "y": 68.87975476702577 + "x": 445.984, + "y": 68.87975 }, { "body": null, "index": 3, "isInternal": false, - "x": 441.33299999999997, - "y": 72.25875476702578 + "x": 441.333, + "y": 72.25875 }, { "body": null, "index": 4, "isInternal": false, - "x": 435.86499999999995, - "y": 74.03575476702578 + "x": 435.865, + "y": 74.03575 }, { "body": null, "index": 5, "isInternal": false, - "x": 430.11499999999995, - "y": 74.03575476702578 + "x": 430.115, + "y": 74.03575 }, { "body": null, "index": 6, "isInternal": false, - "x": 424.64699999999993, - "y": 72.25875476702578 + "x": 424.647, + "y": 72.25875 }, { "body": null, "index": 7, "isInternal": false, "x": 419.996, - "y": 68.87975476702577 + "y": 68.87975 }, { "body": null, "index": 8, "isInternal": false, - "x": 416.61699999999996, - "y": 64.22875476702578 + "x": 416.617, + "y": 64.22875 }, { "body": null, "index": 9, "isInternal": false, "x": 414.84, - "y": 58.76075476702577 + "y": 58.76075 }, { "body": null, "index": 10, "isInternal": false, "x": 414.84, - "y": 53.01075476702577 + "y": 53.01075 }, { "body": null, "index": 11, "isInternal": false, - "x": 416.61699999999996, - "y": 47.54275476702577 + "x": 416.617, + "y": 47.54275 }, { "body": null, "index": 12, "isInternal": false, "x": 419.996, - "y": 42.89175476702577 + "y": 42.89175 }, { "body": null, "index": 13, "isInternal": false, - "x": 424.64699999999993, - "y": 39.512754767025775 + "x": 424.647, + "y": 39.51275 }, { "body": null, "index": 14, "isInternal": false, - "x": 430.11499999999995, - "y": 37.735754767025774 + "x": 430.115, + "y": 37.73575 }, { "body": null, "index": 15, "isInternal": false, - "x": 435.86499999999995, - "y": 37.735754767025774 + "x": 435.865, + "y": 37.73575 }, { "body": null, "index": 16, "isInternal": false, - "x": 441.33299999999997, - "y": 39.512754767025775 + "x": 441.333, + "y": 39.51275 }, { "body": null, "index": 17, "isInternal": false, - "x": 445.9839999999999, - "y": 42.89175476702577 + "x": 445.984, + "y": 42.89175 }, { "body": null, "index": 18, "isInternal": false, - "x": 449.36299999999994, - "y": 47.54275476702577 + "x": 449.363, + "y": 47.54275 }, { "body": null, "index": 19, "isInternal": false, - "x": 451.13999999999993, - "y": 53.01075476702577 + "x": 451.14, + "y": 53.01075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 804.3326420000001, + "area": 804.33264, "axes": { "#": 735 }, "bounds": { "#": 745 }, - "circleRadius": 16.16482338820302, + "circleRadius": 16.16482, "collisionFilter": { "#": 748 }, @@ -6895,13 +6895,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 411.89626816350983, - "inverseInertia": 0.0024277957274500763, - "inverseMass": 1.243266713027419, + "inertia": 411.89627, + "inverseInertia": 0.00243, + "inverseMass": 1.24327, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8043326420000001, + "mass": 0.80433, "motion": 0, "parent": null, "position": { @@ -6923,7 +6923,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6965,36 +6965,36 @@ } ], { - "x": -0.939689356498254, - "y": -0.3420291117491275 + "x": -0.93969, + "y": -0.34203 }, { - "x": -0.766129298042305, - "y": -0.6426864699689927 + "x": -0.76613, + "y": -0.64269 }, { - "x": -0.4999897122177319, - "y": -0.8660313433568266 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.17366340060749713, - "y": -0.9848050686757457 + "x": -0.17366, + "y": -0.98481 }, { - "x": 0.17366340060749713, - "y": -0.9848050686757457 + "x": 0.17366, + "y": -0.98481 }, { - "x": 0.4999897122177319, - "y": -0.8660313433568266 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.766129298042305, - "y": -0.6426864699689927 + "x": 0.76613, + "y": -0.64269 }, { - "x": 0.939689356498254, - "y": -0.3420291117491275 + "x": 0.93969, + "y": -0.34203 }, { "x": 1, @@ -7009,12 +7009,12 @@ } }, { - "x": 482.9779999999999, - "y": 70.06575476702578 + "x": 482.978, + "y": 70.06575 }, { - "x": 451.13999999999993, - "y": 37.735754767025774 + "x": 451.14, + "y": 37.73575 }, { "category": 1, @@ -7031,16 +7031,16 @@ "y": 0 }, { - "x": 467.0589999999999, - "y": 53.900754767025774 + "x": 467.059, + "y": 53.90075 }, { "x": 0, "y": 0 }, { - "x": 467.0589999999999, - "y": 50.99348405199012 + "x": 467.059, + "y": 50.99348 }, { "endCol": 10, @@ -7064,7 +7064,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -7126,141 +7126,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 482.9779999999999, - "y": 56.70775476702577 + "x": 482.978, + "y": 56.70775 }, { "body": null, "index": 1, "isInternal": false, - "x": 481.05799999999994, - "y": 61.982754767025774 + "x": 481.058, + "y": 61.98275 }, { "body": null, "index": 2, "isInternal": false, - "x": 477.44999999999993, - "y": 66.28375476702577 + "x": 477.45, + "y": 66.28375 }, { "body": null, "index": 3, "isInternal": false, - "x": 472.5879999999999, - "y": 69.09075476702577 + "x": 472.588, + "y": 69.09075 }, { "body": null, "index": 4, "isInternal": false, - "x": 467.0589999999999, - "y": 70.06575476702578 + "x": 467.059, + "y": 70.06575 }, { "body": null, "index": 5, "isInternal": false, - "x": 461.5299999999999, - "y": 69.09075476702577 + "x": 461.53, + "y": 69.09075 }, { "body": null, "index": 6, "isInternal": false, - "x": 456.6679999999999, - "y": 66.28375476702577 + "x": 456.668, + "y": 66.28375 }, { "body": null, "index": 7, "isInternal": false, - "x": 453.0599999999999, - "y": 61.982754767025774 + "x": 453.06, + "y": 61.98275 }, { "body": null, "index": 8, "isInternal": false, - "x": 451.13999999999993, - "y": 56.70775476702577 + "x": 451.14, + "y": 56.70775 }, { "body": null, "index": 9, "isInternal": false, - "x": 451.13999999999993, - "y": 51.09375476702577 + "x": 451.14, + "y": 51.09375 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.0599999999999, - "y": 45.818754767025766 + "x": 453.06, + "y": 45.81875 }, { "body": null, "index": 11, "isInternal": false, - "x": 456.6679999999999, - "y": 41.51775476702578 + "x": 456.668, + "y": 41.51775 }, { "body": null, "index": 12, "isInternal": false, - "x": 461.5299999999999, - "y": 38.710754767025776 + "x": 461.53, + "y": 38.71075 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.0589999999999, - "y": 37.735754767025774 + "x": 467.059, + "y": 37.73575 }, { "body": null, "index": 14, "isInternal": false, - "x": 472.5879999999999, - "y": 38.710754767025776 + "x": 472.588, + "y": 38.71075 }, { "body": null, "index": 15, "isInternal": false, - "x": 477.44999999999993, - "y": 41.51775476702578 + "x": 477.45, + "y": 41.51775 }, { "body": null, "index": 16, "isInternal": false, - "x": 481.05799999999994, - "y": 45.818754767025766 + "x": 481.058, + "y": 45.81875 }, { "body": null, "index": 17, "isInternal": false, - "x": 482.9779999999999, - "y": 51.09375476702577 + "x": 482.978, + "y": 51.09375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 580.047414, + "area": 580.04741, "axes": { "#": 778 }, "bounds": { "#": 786 }, - "circleRadius": 13.81974451303155, + "circleRadius": 13.81974, "collisionFilter": { "#": 789 }, @@ -7275,13 +7275,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 214.24336698195748, - "inverseInertia": 0.004667589079125213, - "inverseMass": 1.7239969972523659, + "inertia": 214.24337, + "inverseInertia": 0.00467, + "inverseMass": 1.724, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.580047414, + "mass": 0.58005, "motion": 0, "parent": null, "position": { @@ -7303,7 +7303,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7339,28 +7339,28 @@ } ], { - "x": -0.9009946077275478, - "y": -0.4338302857637789 + "x": -0.90099, + "y": -0.43383 }, { - "x": -0.6234848799770796, - "y": -0.7818354075123272 + "x": -0.62348, + "y": -0.78184 }, { - "x": -0.22259080644452373, - "y": -0.9749119616080092 + "x": -0.22259, + "y": -0.97491 }, { - "x": 0.22259080644452373, - "y": -0.9749119616080092 + "x": 0.22259, + "y": -0.97491 }, { - "x": 0.6234848799770796, - "y": -0.7818354075123272 + "x": 0.62348, + "y": -0.78184 }, { - "x": 0.9009946077275478, - "y": -0.4338302857637789 + "x": 0.90099, + "y": -0.43383 }, { "x": 1, @@ -7375,12 +7375,12 @@ } }, { - "x": 509.94899999999996, - "y": 68.28302548206143 + "x": 509.949, + "y": 68.28303 }, { - "x": 483.00299999999993, - "y": 37.735754767025774 + "x": 483.003, + "y": 37.73575 }, { "category": 1, @@ -7397,16 +7397,16 @@ "y": 0 }, { - "x": 496.47599999999994, - "y": 51.555754767025775 + "x": 496.476, + "y": 51.55575 }, { - "x": 5.2128457054094674e-14, + "x": 0, "y": 0 }, { - "x": 496.47599999999994, - "y": 48.648484051990124 + "x": 496.476, + "y": 48.64848 }, { "endCol": 10, @@ -7430,7 +7430,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -7480,113 +7480,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 509.94899999999996, - "y": 54.63075476702577 + "x": 509.949, + "y": 54.63075 }, { "body": null, "index": 1, "isInternal": false, - "x": 507.28099999999995, - "y": 60.171754767025774 + "x": 507.281, + "y": 60.17175 }, { "body": null, "index": 2, "isInternal": false, - "x": 502.4719999999999, - "y": 64.00675476702578 + "x": 502.472, + "y": 64.00675 }, { "body": null, "index": 3, "isInternal": false, - "x": 496.47599999999994, - "y": 65.37575476702578 + "x": 496.476, + "y": 65.37575 }, { "body": null, "index": 4, "isInternal": false, - "x": 490.47999999999996, - "y": 64.00675476702578 + "x": 490.48, + "y": 64.00675 }, { "body": null, "index": 5, "isInternal": false, - "x": 485.67099999999994, - "y": 60.171754767025774 + "x": 485.671, + "y": 60.17175 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.00299999999993, - "y": 54.63075476702577 + "x": 483.003, + "y": 54.63075 }, { "body": null, "index": 7, "isInternal": false, - "x": 483.00299999999993, - "y": 48.48075476702578 + "x": 483.003, + "y": 48.48075 }, { "body": null, "index": 8, "isInternal": false, - "x": 485.67099999999994, - "y": 42.939754767025775 + "x": 485.671, + "y": 42.93975 }, { "body": null, "index": 9, "isInternal": false, - "x": 490.47999999999996, - "y": 39.104754767025774 + "x": 490.48, + "y": 39.10475 }, { "body": null, "index": 10, "isInternal": false, - "x": 496.47599999999994, - "y": 37.735754767025774 + "x": 496.476, + "y": 37.73575 }, { "body": null, "index": 11, "isInternal": false, - "x": 502.4719999999999, - "y": 39.104754767025774 + "x": 502.472, + "y": 39.10475 }, { "body": null, "index": 12, "isInternal": false, - "x": 507.28099999999995, - "y": 42.939754767025775 + "x": 507.281, + "y": 42.93975 }, { "body": null, "index": 13, "isInternal": false, - "x": 509.94899999999996, - "y": 48.48075476702578 + "x": 509.949, + "y": 48.48075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 369.23864399999997, + "area": 369.23864, "axes": { "#": 815 }, "bounds": { "#": 822 }, - "circleRadius": 11.09400720164609, + "circleRadius": 11.09401, "collisionFilter": { "#": 825 }, @@ -7601,13 +7601,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 86.83240242313165, - "inverseInertia": 0.011516438243030872, - "inverseMass": 2.7082755725860594, + "inertia": 86.8324, + "inverseInertia": 0.01152, + "inverseMass": 2.70828, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.36923864399999995, + "mass": 0.36924, "motion": 0, "parent": null, "position": { @@ -7629,7 +7629,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7662,24 +7662,24 @@ } ], { - "x": -0.866081210108875, - "y": -0.49990332815090055 + "x": -0.86608, + "y": -0.4999 }, { - "x": -0.49990332815090055, - "y": -0.866081210108875 + "x": -0.4999, + "y": -0.86608 }, { "x": 0, "y": -1 }, { - "x": 0.49990332815090055, - "y": -0.866081210108875 + "x": 0.4999, + "y": -0.86608 }, { - "x": 0.866081210108875, - "y": -0.49990332815090055 + "x": 0.86608, + "y": -0.4999 }, { "x": 1, @@ -7694,12 +7694,12 @@ } }, { - "x": 531.3309999999998, - "y": 62.07502548206143 + "x": 531.331, + "y": 62.07503 }, { - "x": 509.89899999999983, - "y": 37.735754767025774 + "x": 509.899, + "y": 37.73575 }, { "category": 1, @@ -7716,16 +7716,16 @@ "y": 0 }, { - "x": 520.6149999999999, - "y": 48.451754767025776 + "x": 520.615, + "y": 48.45175 }, { - "x": -5.2128457054094674e-14, + "x": 0, "y": 0 }, { - "x": 520.6149999999999, - "y": 45.544484051990125 + "x": 520.615, + "y": 45.54448 }, { "endCol": 11, @@ -7749,7 +7749,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -7793,99 +7793,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 531.3309999999998, - "y": 51.32275476702578 + "x": 531.331, + "y": 51.32275 }, { "body": null, "index": 1, "isInternal": false, - "x": 528.4599999999999, - "y": 56.296754767025774 + "x": 528.46, + "y": 56.29675 }, { "body": null, "index": 2, "isInternal": false, "x": 523.486, - "y": 59.16775476702578 + "y": 59.16775 }, { "body": null, "index": 3, "isInternal": false, - "x": 517.7439999999999, - "y": 59.16775476702578 + "x": 517.744, + "y": 59.16775 }, { "body": null, "index": 4, "isInternal": false, - "x": 512.7699999999999, - "y": 56.296754767025774 + "x": 512.77, + "y": 56.29675 }, { "body": null, "index": 5, "isInternal": false, - "x": 509.89899999999983, - "y": 51.32275476702578 + "x": 509.899, + "y": 51.32275 }, { "body": null, "index": 6, "isInternal": false, - "x": 509.89899999999983, - "y": 45.58075476702577 + "x": 509.899, + "y": 45.58075 }, { "body": null, "index": 7, "isInternal": false, - "x": 512.7699999999999, - "y": 40.60675476702578 + "x": 512.77, + "y": 40.60675 }, { "body": null, "index": 8, "isInternal": false, - "x": 517.7439999999999, - "y": 37.735754767025774 + "x": 517.744, + "y": 37.73575 }, { "body": null, "index": 9, "isInternal": false, "x": 523.486, - "y": 37.735754767025774 + "y": 37.73575 }, { "body": null, "index": 10, "isInternal": false, - "x": 528.4599999999999, - "y": 40.60675476702578 + "x": 528.46, + "y": 40.60675 }, { "body": null, "index": 11, "isInternal": false, - "x": 531.3309999999998, - "y": 45.58075476702577 + "x": 531.331, + "y": 45.58075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1186.2008119999998, + "area": 1186.20081, "axes": { "#": 849 }, "bounds": { "#": 860 }, - "circleRadius": 19.59254972565158, + "circleRadius": 19.59255, "collisionFilter": { "#": 863 }, @@ -7900,13 +7900,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 895.8191409307356, - "inverseInertia": 0.0011162967549019135, - "inverseMass": 0.843027580055307, + "inertia": 895.81914, + "inverseInertia": 0.00112, + "inverseMass": 0.84303, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1862008119999998, + "mass": 1.1862, "motion": 0, "parent": null, "position": { @@ -7928,7 +7928,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7973,40 +7973,40 @@ } ], { - "x": -0.9510700273465118, - "y": -0.3089754085410449 + "x": -0.95107, + "y": -0.30898 }, { - "x": -0.8090111291820679, - "y": -0.5877933249532148 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877933249532148, - "y": -0.8090111291820679 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.3089754085410449, - "y": -0.9510700273465118 + "x": -0.30898, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089754085410449, - "y": -0.9510700273465118 + "x": 0.30898, + "y": -0.95107 }, { - "x": 0.5877933249532148, - "y": -0.8090111291820679 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090111291820679, - "y": -0.5877933249532148 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510700273465118, - "y": -0.3089754085410449 + "x": 0.95107, + "y": -0.30898 }, { "x": 1, @@ -8021,12 +8021,12 @@ } }, { - "x": 570.0579999999998, - "y": 76.43775476702578 + "x": 570.058, + "y": 76.43775 }, { - "x": 531.3559999999998, - "y": 37.735754767025774 + "x": 531.356, + "y": 37.73575 }, { "category": 1, @@ -8043,16 +8043,16 @@ "y": 0 }, { - "x": 550.7069999999998, - "y": 57.086754767025774 + "x": 550.707, + "y": 57.08675 }, { "x": 0, "y": 0 }, { - "x": 550.7069999999998, - "y": 54.17948405199012 + "x": 550.707, + "y": 54.17948 }, { "endCol": 11, @@ -8076,7 +8076,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -8144,155 +8144,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 570.0579999999998, - "y": 60.15175476702577 + "x": 570.058, + "y": 60.15175 }, { "body": null, "index": 1, "isInternal": false, - "x": 568.1639999999998, - "y": 65.98175476702578 + "x": 568.164, + "y": 65.98175 }, { "body": null, "index": 2, "isInternal": false, - "x": 564.5609999999998, - "y": 70.94075476702578 + "x": 564.561, + "y": 70.94075 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.6019999999997, - "y": 74.54375476702577 + "x": 559.602, + "y": 74.54375 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.7719999999998, - "y": 76.43775476702578 + "x": 553.772, + "y": 76.43775 }, { "body": null, "index": 5, "isInternal": false, - "x": 547.6419999999997, - "y": 76.43775476702578 + "x": 547.642, + "y": 76.43775 }, { "body": null, "index": 6, "isInternal": false, - "x": 541.8119999999998, - "y": 74.54375476702577 + "x": 541.812, + "y": 74.54375 }, { "body": null, "index": 7, "isInternal": false, - "x": 536.8529999999997, - "y": 70.94075476702578 + "x": 536.853, + "y": 70.94075 }, { "body": null, "index": 8, "isInternal": false, - "x": 533.2499999999998, - "y": 65.98175476702578 + "x": 533.25, + "y": 65.98175 }, { "body": null, "index": 9, "isInternal": false, - "x": 531.3559999999998, - "y": 60.15175476702577 + "x": 531.356, + "y": 60.15175 }, { "body": null, "index": 10, "isInternal": false, - "x": 531.3559999999998, - "y": 54.021754767025776 + "x": 531.356, + "y": 54.02175 }, { "body": null, "index": 11, "isInternal": false, - "x": 533.2499999999998, - "y": 48.19175476702578 + "x": 533.25, + "y": 48.19175 }, { "body": null, "index": 12, "isInternal": false, - "x": 536.8529999999997, - "y": 43.232754767025774 + "x": 536.853, + "y": 43.23275 }, { "body": null, "index": 13, "isInternal": false, - "x": 541.8119999999998, - "y": 39.62975476702577 + "x": 541.812, + "y": 39.62975 }, { "body": null, "index": 14, "isInternal": false, - "x": 547.6419999999997, - "y": 37.735754767025774 + "x": 547.642, + "y": 37.73575 }, { "body": null, "index": 15, "isInternal": false, - "x": 553.7719999999998, - "y": 37.735754767025774 + "x": 553.772, + "y": 37.73575 }, { "body": null, "index": 16, "isInternal": false, - "x": 559.6019999999997, - "y": 39.62975476702577 + "x": 559.602, + "y": 39.62975 }, { "body": null, "index": 17, "isInternal": false, - "x": 564.5609999999998, - "y": 43.232754767025774 + "x": 564.561, + "y": 43.23275 }, { "body": null, "index": 18, "isInternal": false, - "x": 568.1639999999998, - "y": 48.19175476702578 + "x": 568.164, + "y": 48.19175 }, { "body": null, "index": 19, "isInternal": false, - "x": 570.0579999999998, - "y": 54.021754767025776 + "x": 570.058, + "y": 54.02175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 585.3796979999998, + "area": 585.3797, "axes": { "#": 895 }, "bounds": { "#": 903 }, - "circleRadius": 13.883273319615911, + "circleRadius": 13.88327, "collisionFilter": { "#": 906 }, @@ -8307,13 +8307,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 218.2004829364277, - "inverseInertia": 0.004582941277409308, - "inverseMass": 1.7082929309242976, + "inertia": 218.20048, + "inverseInertia": 0.00458, + "inverseMass": 1.70829, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5853796979999999, + "mass": 0.58538, "motion": 0, "parent": null, "position": { @@ -8335,7 +8335,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8371,28 +8371,28 @@ } ], { - "x": -0.9009641800326721, - "y": -0.4338934734448706 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6235099396116037, - "y": -0.7818154227217151 + "x": -0.62351, + "y": -0.78182 }, { - "x": -0.22253036510011648, - "y": -0.9749257595368013 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.22253036510011648, - "y": -0.9749257595368013 + "x": 0.22253, + "y": -0.97493 }, { - "x": 0.6235099396116037, - "y": -0.7818154227217151 + "x": 0.62351, + "y": -0.78182 }, { - "x": 0.9009641800326721, - "y": -0.4338934734448706 + "x": 0.90096, + "y": -0.43389 }, { "x": 1, @@ -8407,12 +8407,12 @@ } }, { - "x": 597.1279999999997, - "y": 65.50175476702577 + "x": 597.128, + "y": 65.50175 }, { - "x": 570.0579999999998, - "y": 37.735754767025774 + "x": 570.058, + "y": 37.73575 }, { "category": 1, @@ -8429,16 +8429,16 @@ "y": 0 }, { - "x": 583.5929999999997, - "y": 51.61875476702577 + "x": 583.593, + "y": 51.61875 }, { "x": 0, "y": 0 }, { - "x": 583.5929999999997, - "y": 48.71148405199012 + "x": 583.593, + "y": 48.71148 }, { "endCol": 12, @@ -8462,7 +8462,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -8512,99 +8512,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 597.1279999999997, - "y": 54.70775476702577 + "x": 597.128, + "y": 54.70775 }, { "body": null, "index": 1, "isInternal": false, - "x": 594.4469999999998, - "y": 60.27475476702577 + "x": 594.447, + "y": 60.27475 }, { "body": null, "index": 2, "isInternal": false, - "x": 589.6169999999997, - "y": 64.12675476702577 + "x": 589.617, + "y": 64.12675 }, { "body": null, "index": 3, "isInternal": false, - "x": 583.5929999999997, - "y": 65.50175476702577 + "x": 583.593, + "y": 65.50175 }, { "body": null, "index": 4, "isInternal": false, - "x": 577.5689999999997, - "y": 64.12675476702577 + "x": 577.569, + "y": 64.12675 }, { "body": null, "index": 5, "isInternal": false, - "x": 572.7389999999997, - "y": 60.27475476702577 + "x": 572.739, + "y": 60.27475 }, { "body": null, "index": 6, "isInternal": false, - "x": 570.0579999999998, - "y": 54.70775476702577 + "x": 570.058, + "y": 54.70775 }, { "body": null, "index": 7, "isInternal": false, - "x": 570.0579999999998, - "y": 48.52975476702577 + "x": 570.058, + "y": 48.52975 }, { "body": null, "index": 8, "isInternal": false, - "x": 572.7389999999997, - "y": 42.96275476702577 + "x": 572.739, + "y": 42.96275 }, { "body": null, "index": 9, "isInternal": false, - "x": 577.5689999999997, - "y": 39.110754767025774 + "x": 577.569, + "y": 39.11075 }, { "body": null, "index": 10, "isInternal": false, - "x": 583.5929999999997, - "y": 37.735754767025774 + "x": 583.593, + "y": 37.73575 }, { "body": null, "index": 11, "isInternal": false, - "x": 589.6169999999997, - "y": 39.110754767025774 + "x": 589.617, + "y": 39.11075 }, { "body": null, "index": 12, "isInternal": false, - "x": 594.4469999999998, - "y": 42.96275476702577 + "x": 594.447, + "y": 42.96275 }, { "body": null, "index": 13, "isInternal": false, - "x": 597.1279999999997, - "y": 48.52975476702577 + "x": 597.128, + "y": 48.52975 }, { "angle": 0, @@ -8618,7 +8618,7 @@ "bounds": { "#": 943 }, - "circleRadius": 19.274819958847736, + "circleRadius": 19.27482, "collisionFilter": { "#": 946 }, @@ -8633,13 +8633,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 839.1582416552851, - "inverseInertia": 0.0011916703553163535, - "inverseMass": 0.8710237959694349, + "inertia": 839.15824, + "inverseInertia": 0.00119, + "inverseMass": 0.87102, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.14807426, + "mass": 1.14807, "motion": 0, "parent": null, "position": { @@ -8661,7 +8661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8706,40 +8706,40 @@ } ], { - "x": -0.9510438158398417, - "y": -0.30905607962438386 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8089440000270397, - "y": -0.5878857072767232 + "x": -0.80894, + "y": -0.58789 }, { - "x": -0.5878857072767232, - "y": -0.8089440000270397 + "x": -0.58789, + "y": -0.80894 }, { - "x": -0.30905607962438386, - "y": -0.9510438158398417 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30905607962438386, - "y": -0.9510438158398417 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5878857072767232, - "y": -0.8089440000270397 + "x": 0.58789, + "y": -0.80894 }, { - "x": 0.8089440000270397, - "y": -0.5878857072767232 + "x": 0.80894, + "y": -0.58789 }, { - "x": 0.9510438158398417, - "y": -0.30905607962438386 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -8754,12 +8754,12 @@ } }, { - "x": 635.2039999999997, - "y": 75.81175476702577 + "x": 635.204, + "y": 75.81175 }, { - "x": 597.1279999999997, - "y": 37.735754767025774 + "x": 597.128, + "y": 37.73575 }, { "category": 1, @@ -8776,16 +8776,16 @@ "y": 0 }, { - "x": 616.1659999999997, - "y": 56.77375476702577 + "x": 616.166, + "y": 56.77375 }, { "x": 0, "y": 0 }, { - "x": 616.1659999999997, - "y": 53.86648405199012 + "x": 616.166, + "y": 53.86648 }, { "endCol": 13, @@ -8809,7 +8809,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -8877,155 +8877,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.2039999999997, - "y": 59.78875476702577 + "x": 635.204, + "y": 59.78875 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.3399999999997, - "y": 65.52475476702577 + "x": 633.34, + "y": 65.52475 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.7949999999997, - "y": 70.40275476702577 + "x": 629.795, + "y": 70.40275 }, { "body": null, "index": 3, "isInternal": false, - "x": 624.9169999999997, - "y": 73.94775476702577 + "x": 624.917, + "y": 73.94775 }, { "body": null, "index": 4, "isInternal": false, - "x": 619.1809999999997, - "y": 75.81175476702577 + "x": 619.181, + "y": 75.81175 }, { "body": null, "index": 5, "isInternal": false, - "x": 613.1509999999997, - "y": 75.81175476702577 + "x": 613.151, + "y": 75.81175 }, { "body": null, "index": 6, "isInternal": false, - "x": 607.4149999999997, - "y": 73.94775476702577 + "x": 607.415, + "y": 73.94775 }, { "body": null, "index": 7, "isInternal": false, - "x": 602.5369999999997, - "y": 70.40275476702577 + "x": 602.537, + "y": 70.40275 }, { "body": null, "index": 8, "isInternal": false, - "x": 598.9919999999997, - "y": 65.52475476702577 + "x": 598.992, + "y": 65.52475 }, { "body": null, "index": 9, "isInternal": false, - "x": 597.1279999999997, - "y": 59.78875476702577 + "x": 597.128, + "y": 59.78875 }, { "body": null, "index": 10, "isInternal": false, - "x": 597.1279999999997, - "y": 53.75875476702577 + "x": 597.128, + "y": 53.75875 }, { "body": null, "index": 11, "isInternal": false, - "x": 598.9919999999997, - "y": 48.02275476702577 + "x": 598.992, + "y": 48.02275 }, { "body": null, "index": 12, "isInternal": false, - "x": 602.5369999999997, - "y": 43.14475476702577 + "x": 602.537, + "y": 43.14475 }, { "body": null, "index": 13, "isInternal": false, - "x": 607.4149999999997, - "y": 39.59975476702577 + "x": 607.415, + "y": 39.59975 }, { "body": null, "index": 14, "isInternal": false, - "x": 613.1509999999997, - "y": 37.735754767025774 + "x": 613.151, + "y": 37.73575 }, { "body": null, "index": 15, "isInternal": false, - "x": 619.1809999999997, - "y": 37.735754767025774 + "x": 619.181, + "y": 37.73575 }, { "body": null, "index": 16, "isInternal": false, - "x": 624.9169999999997, - "y": 39.59975476702577 + "x": 624.917, + "y": 39.59975 }, { "body": null, "index": 17, "isInternal": false, - "x": 629.7949999999997, - "y": 43.14475476702577 + "x": 629.795, + "y": 43.14475 }, { "body": null, "index": 18, "isInternal": false, - "x": 633.3399999999997, - "y": 48.02275476702577 + "x": 633.34, + "y": 48.02275 }, { "body": null, "index": 19, "isInternal": false, - "x": 635.2039999999997, - "y": 53.75875476702577 + "x": 635.204, + "y": 53.75875 }, { - "angle": 0.044945077110553226, - "anglePrev": 0.04291764631609831, - "angularSpeed": 0.004145728061225416, - "angularVelocity": 0.002010233376965702, - "area": 813.928944, + "angle": 0.04495, + "anglePrev": 0.04292, + "angularSpeed": 0.00415, + "angularVelocity": 0.00201, + "area": 813.92894, "axes": { "#": 978 }, "bounds": { "#": 988 }, - "circleRadius": 16.261016803840878, + "circleRadius": 16.26102, "collisionFilter": { "#": 991 }, @@ -9040,13 +9040,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 421.78337188051313, - "inverseInertia": 0.002370885309066403, - "inverseMass": 1.2286084766632897, + "inertia": 421.78337, + "inverseInertia": 0.00237, + "inverseMass": 1.22861, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.813928944, + "mass": 0.81393, "motion": 0, "parent": null, "position": { @@ -9068,7 +9068,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4195091299544472, + "speed": 0.41951, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9110,40 +9110,40 @@ } ], { - "x": -0.923350527650744, - "y": -0.3839580746476005 + "x": -0.92335, + "y": -0.38396 }, { - "x": -0.736385385257473, - "y": -0.6765623137444206 + "x": -0.73639, + "y": -0.67656 }, { - "x": -0.4605515373889071, - "y": -0.8876329654810678 + "x": -0.46055, + "y": -0.88763 }, { - "x": -0.12927202684939187, - "y": -0.9916091685105832 + "x": -0.12927, + "y": -0.99161 }, { - "x": 0.21776601360315456, - "y": -0.9760010057983504 + "x": 0.21777, + "y": -0.976 }, { - "x": 0.5383741610735071, - "y": -0.8427059170840073 + "x": 0.53837, + "y": -0.84271 }, { - "x": 0.7941467248461203, - "y": -0.6077260726809252 + "x": 0.79415, + "y": -0.60773 }, { - "x": 0.9540901810481963, - "y": -0.2995194925667108 + "x": 0.95409, + "y": -0.29952 }, { - "x": 0.9989901400370745, - "y": 0.044929946680434284 + "x": 0.99899, + "y": 0.04493 }, { "max": { @@ -9154,12 +9154,12 @@ } }, { - "x": 52.019100131527786, - "y": 78.56577607725892 + "x": 52.0191, + "y": 78.56578 }, { - "x": 19.760162172297168, - "y": 45.65721758784641 + "x": 19.76016, + "y": 45.65722 }, { "category": 1, @@ -9176,16 +9176,16 @@ "y": 0 }, { - "x": 35.884872444276425, - "y": 61.90179625498924 + "x": 35.88487, + "y": 61.9018 }, { "x": 0, "y": 0 }, { - "x": 35.90969339474657, - "y": 61.761633645845755 + "x": 35.90969, + "y": 61.76163 }, { "endCol": 1, @@ -9208,8 +9208,8 @@ "yScale": 1 }, { - "x": -0.01792775402581981, - "y": 0.134883260092046 + "x": -0.01793, + "y": 0.13488 }, [ { @@ -9271,141 +9271,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 51.75581837740458, - "y": 65.44245257659443 + "x": 51.75582, + "y": 65.44245 }, { "body": null, "index": 1, "isInternal": false, - "x": 49.58732619981989, - "y": 70.65728859278458 + "x": 49.58733, + "y": 70.65729 }, { "body": null, "index": 2, "isInternal": false, - "x": 45.76662504214575, - "y": 74.81582423213497 + "x": 45.76663, + "y": 74.81582 }, { "body": null, "index": 3, "isInternal": false, - "x": 40.7547260178856, - "y": 77.41626595819234 + "x": 40.75473, + "y": 77.41627 }, { "body": null, "index": 4, "isInternal": false, - "x": 35.15426658130588, - "y": 78.14637492213214 + "x": 35.15427, + "y": 78.14637 }, { "body": null, "index": 5, "isInternal": false, - "x": 29.641959700113173, - "y": 76.91646523131917 + "x": 29.64196, + "y": 76.91647 }, { "body": null, "index": 6, "isInternal": false, - "x": 24.88373515481074, - "y": 73.8766086267272 + "x": 24.88374, + "y": 73.87661 }, { "body": null, "index": 7, "isInternal": false, - "x": 21.45176789581571, - "y": 69.39188157447686 + "x": 21.45177, + "y": 69.39188 }, { "body": null, "index": 8, "isInternal": false, - "x": 19.760162172297168, - "y": 64.00343624431346 + "x": 19.76016, + "y": 64.00344 }, { "body": null, "index": 9, "isInternal": false, - "x": 20.01392651114826, - "y": 58.361139933384095 + "x": 20.01393, + "y": 58.36114 }, { "body": null, "index": 10, "isInternal": false, - "x": 22.18241868873294, - "y": 53.14630391719392 + "x": 22.18242, + "y": 53.1463 }, { "body": null, "index": 11, "isInternal": false, - "x": 26.003119846407078, - "y": 48.98776827784352 + "x": 26.00312, + "y": 48.98777 }, { "body": null, "index": 12, "isInternal": false, - "x": 31.015018870667244, - "y": 46.38732655178619 + "x": 31.01502, + "y": 46.38733 }, { "body": null, "index": 13, "isInternal": false, - "x": 36.61547830724697, - "y": 45.65721758784641 + "x": 36.61548, + "y": 45.65722 }, { "body": null, "index": 14, "isInternal": false, - "x": 42.127785188439674, - "y": 46.88712727865934 + "x": 42.12779, + "y": 46.88713 }, { "body": null, "index": 15, "isInternal": false, - "x": 46.886009733742085, - "y": 49.926983883251324 + "x": 46.88601, + "y": 49.92698 }, { "body": null, "index": 16, "isInternal": false, - "x": 50.31797699273713, - "y": 54.411710935501674 + "x": 50.31798, + "y": 54.41171 }, { "body": null, "index": 17, "isInternal": false, - "x": 52.009582716255665, - "y": 59.80015626566504 + "x": 52.00958, + "y": 59.80016 }, { - "angle": 0.014117005632624767, - "anglePrev": 0.004536203321336489, - "angularSpeed": 0.008832315794948161, - "angularVelocity": 0.009581027967014493, - "area": 405.9288839999999, + "angle": 0.01412, + "anglePrev": 0.00454, + "angularSpeed": 0.00883, + "angularVelocity": 0.00958, + "area": 405.92888, "axes": { "#": 1021 }, "bounds": { "#": 1028 }, - "circleRadius": 11.63198731138546, + "circleRadius": 11.63199, "collisionFilter": { "#": 1031 }, @@ -9420,13 +9420,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 104.94637250178351, - "inverseInertia": 0.009528676181570788, - "inverseMass": 2.463485697657327, + "inertia": 104.94637, + "inverseInertia": 0.00953, + "inverseMass": 2.46349, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.40592888399999993, + "mass": 0.40593, "motion": 0, "parent": null, "position": { @@ -9448,7 +9448,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7853437231905837, + "speed": 0.78534, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9481,28 +9481,28 @@ } ], { - "x": -0.8588295863522262, - "y": -0.5122613996838561 + "x": -0.85883, + "y": -0.51226 }, { - "x": -0.4878122535235249, - "y": -0.8729485696834035 + "x": -0.48781, + "y": -0.87295 }, { - "x": 0.014116536741312524, - "y": -0.999900356730825 + "x": 0.01412, + "y": -0.9999 }, { - "x": 0.5122613996838561, - "y": -0.8588295863522262 + "x": 0.51226, + "y": -0.85883 }, { - "x": 0.8729485696834035, - "y": -0.4878122535235249 + "x": 0.87295, + "y": -0.48781 }, { - "x": 0.999900356730825, - "y": 0.014116536741312524 + "x": 0.9999, + "y": 0.01412 }, { "max": { @@ -9513,12 +9513,12 @@ } }, { - "x": 83.06772163995801, - "y": 80.20136544096218 + "x": 83.06772, + "y": 80.20137 }, { - "x": 59.94741093379698, - "y": 57.10168278066448 + "x": 59.94741, + "y": 57.10168 }, { "category": 1, @@ -9535,16 +9535,16 @@ "y": 0 }, { - "x": 71.2247962341526, - "y": 68.37906808102011 + "x": 71.2248, + "y": 68.37907 }, { "x": 0, "y": 0 }, { - "x": 70.57756970246683, - "y": 67.93706931725092 + "x": 70.57757, + "y": 67.93707 }, { "endCol": 1, @@ -9567,8 +9567,8 @@ "yScale": 1 }, { - "x": 0.6472312201379111, - "y": 0.4419968472176379 + "x": 0.64723, + "y": 0.442 }, [ { @@ -9612,99 +9612,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 82.41717175025207, - "y": 71.54838146196201 + "x": 82.41717, + "y": 71.54838 }, { "body": null, "index": 1, "isInternal": false, - "x": 79.33286815356634, - "y": 76.71935702982843 + "x": 79.33287, + "y": 76.71936 }, { "body": null, "index": 2, "isInternal": false, - "x": 74.07688280144374, - "y": 79.65645338137577 + "x": 74.07688, + "y": 79.65645 }, { "body": null, "index": 3, "isInternal": false, - "x": 68.05548285321068, - "y": 79.57144359711958 + "x": 68.05548, + "y": 79.57144 }, { "body": null, "index": 4, "isInternal": false, - "x": 62.8845072853443, - "y": 76.48714000043384 + "x": 62.88451, + "y": 76.48714 }, { "body": null, "index": 5, "isInternal": false, - "x": 59.94741093379698, - "y": 71.23115464831126 + "x": 59.94741, + "y": 71.23115 }, { "body": null, "index": 6, "isInternal": false, - "x": 60.03242071805317, - "y": 65.20975470007821 + "x": 60.03242, + "y": 65.20975 }, { "body": null, "index": 7, "isInternal": false, - "x": 63.116724314738875, - "y": 60.038779132211786 + "x": 63.11672, + "y": 60.03878 }, { "body": null, "index": 8, "isInternal": false, - "x": 68.37270966686144, - "y": 57.10168278066448 + "x": 68.37271, + "y": 57.10168 }, { "body": null, "index": 9, "isInternal": false, - "x": 74.39410961509451, - "y": 57.18669256492067 + "x": 74.39411, + "y": 57.18669 }, { "body": null, "index": 10, "isInternal": false, - "x": 79.56508518296094, - "y": 60.27099616160639 + "x": 79.56509, + "y": 60.271 }, { "body": null, "index": 11, "isInternal": false, - "x": 82.50218153450824, - "y": 65.52698151372896 + "x": 82.50218, + "y": 65.52698 }, { - "angle": -0.004333793686589444, - "anglePrev": -0.0034824375222330846, - "angularSpeed": 0.003022870501394938, - "angularVelocity": -0.0007537832281150143, - "area": 813.045236, + "angle": -0.00433, + "anglePrev": -0.00348, + "angularSpeed": 0.00302, + "angularVelocity": -0.00075, + "area": 813.04524, "axes": { "#": 1055 }, "bounds": { "#": 1065 }, - "circleRadius": 16.25192901234568, + "circleRadius": 16.25193, "collisionFilter": { "#": 1068 }, @@ -9719,13 +9719,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 420.8679825768214, - "inverseInertia": 0.0023760419927345484, - "inverseMass": 1.2299438650176162, + "inertia": 420.86798, + "inverseInertia": 0.00238, + "inverseMass": 1.22994, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8130452360000001, + "mass": 0.81305, "motion": 0, "parent": null, "position": { @@ -9747,7 +9747,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7915545449956014, + "speed": 0.79155, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9789,40 +9789,40 @@ } ], { - "x": -0.9411940592269176, - "y": -0.33786645716311847 + "x": -0.94119, + "y": -0.33787 }, { - "x": -0.768846103930061, - "y": -0.6394338655964081 + "x": -0.76885, + "y": -0.63943 }, { - "x": -0.5036602731975967, - "y": -0.8639018053011126 + "x": -0.50366, + "y": -0.8639 }, { - "x": -0.17791013281956017, - "y": -0.9840467390526356 + "x": -0.17791, + "y": -0.98405 }, { - "x": 0.16937424563441544, - "y": -0.9855518073220565 + "x": 0.16937, + "y": -0.98555 }, { - "x": 0.4961535034337637, - "y": -0.8682348190612961 + "x": 0.49615, + "y": -0.86823 }, { - "x": 0.7632749440300531, - "y": -0.6460738036911252 + "x": 0.76327, + "y": -0.64607 }, { - "x": 0.9382302545019052, - "y": -0.3460115453814945 + "x": 0.93823, + "y": -0.34601 }, { - "x": 0.999990609130839, - "y": -0.0043337801205511235 + "x": 0.99999, + "y": -0.00433 }, { "max": { @@ -9833,12 +9833,12 @@ } }, { - "x": 113.35473915680518, - "y": 95.68540470318436 + "x": 113.35474, + "y": 95.6854 }, { - "x": 80.7329277325703, - "y": 62.65140482081315 + "x": 80.73293, + "y": 62.6514 }, { "category": 1, @@ -9855,16 +9855,16 @@ "y": 0 }, { - "x": 96.75000735920958, - "y": 78.90325220040756 + "x": 96.75001, + "y": 78.90325 }, { - "x": 0.13804008540619075, - "y": -0.1224741919199909 + "x": 0.13804, + "y": -0.12247 }, { - "x": 95.99714947577085, - "y": 78.54808826962376 + "x": 95.99715, + "y": 78.54809 }, { "endCol": 2, @@ -9887,8 +9887,8 @@ "yScale": 1 }, { - "x": 0.7550611106087928, - "y": 0.4470531559513802 + "x": 0.75506, + "y": 0.44705 }, [ { @@ -9950,141 +9950,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 112.76708698584885, - "y": 81.65586354854537 + "x": 112.76709, + "y": 81.65586 }, { "body": null, "index": 1, "isInternal": false, - "x": 110.86009147998573, - "y": 86.96817793500803 + "x": 110.86009, + "y": 86.96818 }, { "body": null, "index": 2, "isInternal": false, - "x": 107.2508648153003, - "y": 91.30786028316712 + "x": 107.25086, + "y": 91.30786 }, { "body": null, "index": 3, "isInternal": false, - "x": 102.37414065475986, - "y": 94.15102163314373 + "x": 102.37414, + "y": 94.15102 }, { "body": null, "index": 4, "isInternal": false, - "x": 96.8204399537288, - "y": 95.15509958000196 + "x": 96.82044, + "y": 95.1551 }, { "body": null, "index": 5, "isInternal": false, - "x": 91.25824504366145, - "y": 94.19919593296378 + "x": 91.25825, + "y": 94.1992 }, { "body": null, "index": 6, "isInternal": false, - "x": 86.35706102812055, - "y": 91.39841028500592 + "x": 86.35706, + "y": 91.39841 }, { "body": null, "index": 7, "isInternal": false, - "x": 82.7103558329526, - "y": 87.09017384540154 + "x": 82.71036, + "y": 87.09017 }, { "body": null, "index": 8, "isInternal": false, - "x": 80.7573875875707, - "y": 81.79458785020421 + "x": 80.75739, + "y": 81.79459 }, { "body": null, "index": 9, "isInternal": false, - "x": 80.7329277325703, - "y": 76.15064085226976 + "x": 80.73293, + "y": 76.15064 }, { "body": null, "index": 10, "isInternal": false, - "x": 82.63992323843343, - "y": 70.83832646580711 + "x": 82.63992, + "y": 70.83833 }, { "body": null, "index": 11, "isInternal": false, - "x": 86.24914990311885, - "y": 66.49864411764801 + "x": 86.24915, + "y": 66.49864 }, { "body": null, "index": 12, "isInternal": false, - "x": 91.1258740636593, - "y": 63.6554827676714 + "x": 91.12587, + "y": 63.65548 }, { "body": null, "index": 13, "isInternal": false, - "x": 96.67957476469036, - "y": 62.65140482081315 + "x": 96.67957, + "y": 62.6514 }, { "body": null, "index": 14, "isInternal": false, - "x": 102.2417696747577, - "y": 63.607308467851354 + "x": 102.24177, + "y": 63.60731 }, { "body": null, "index": 15, "isInternal": false, - "x": 107.1429536902986, - "y": 66.4080941158092 + "x": 107.14295, + "y": 66.40809 }, { "body": null, "index": 16, "isInternal": false, - "x": 110.78965888546655, - "y": 70.71633055541362 + "x": 110.78966, + "y": 70.71633 }, { "body": null, "index": 17, "isInternal": false, - "x": 112.74262713084845, - "y": 76.01191655061092 + "x": 112.74263, + "y": 76.01192 }, { - "angle": 0.016649884531667863, - "anglePrev": 0.01566328781966438, - "angularSpeed": 0.0012176784445623548, - "angularVelocity": 0.0009153801069507542, - "area": 1175.440884, + "angle": 0.01665, + "anglePrev": 0.01566, + "angularSpeed": 0.00122, + "angularVelocity": 0.00092, + "area": 1175.44088, "axes": { "#": 1098 }, "bounds": { "#": 1109 }, - "circleRadius": 19.503557956104252, + "circleRadius": 19.50356, "collisionFilter": { "#": 1112 }, @@ -10099,13 +10099,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 879.6410498592595, - "inverseInertia": 0.00113682734583612, - "inverseMass": 0.8507446130315133, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "inverseMass": 0.85074, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1754408840000001, + "mass": 1.17544, "motion": 0, "parent": null, "position": { @@ -10127,7 +10127,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7812476921090619, + "speed": 0.78125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10172,44 +10172,44 @@ } ], { - "x": -0.9458056014746355, - "y": -0.3247333740458507 + "x": -0.94581, + "y": -0.32473 }, { - "x": -0.7991140100436033, - "y": -0.60117950643051 + "x": -0.79911, + "y": -0.60118 }, { - "x": -0.5742408265358105, - "y": -0.8186864315105442 + "x": -0.57424, + "y": -0.81869 }, { - "x": -0.2930640586411727, - "y": -0.9560928080122575 + "x": -0.29306, + "y": -0.95609 }, { - "x": 0.01664911526589828, - "y": -0.9998613938746025 + "x": 0.01665, + "y": -0.99986 }, { - "x": 0.3247333740458507, - "y": -0.9458056014746355 + "x": 0.32473, + "y": -0.94581 }, { - "x": 0.60117950643051, - "y": -0.7991140100436033 + "x": 0.60118, + "y": -0.79911 }, { - "x": 0.8186864315105442, - "y": -0.5742408265358105 + "x": 0.81869, + "y": -0.57424 }, { - "x": 0.9560928080122575, - "y": -0.2930640586411727 + "x": 0.95609, + "y": -0.29306 }, { - "x": 0.9998613938746025, - "y": 0.01664911526589828 + "x": 0.99986, + "y": 0.01665 }, { "max": { @@ -10220,12 +10220,12 @@ } }, { - "x": 152.0448063997145, - "y": 104.36669610737539 + "x": 152.04481, + "y": 104.3667 }, { - "x": 112.6845652342967, - "y": 65.48808135497876 + "x": 112.68457, + "y": 65.48808 }, { "category": 1, @@ -10242,16 +10242,16 @@ "y": 0 }, { - "x": 131.99569171517945, - "y": 84.79920783586147 + "x": 131.99569, + "y": 84.79921 }, { - "x": 0.23272520159995636, - "y": -0.22375886365572437 + "x": 0.23273, + "y": -0.22376 }, { - "x": 131.20406431314174, - "y": 84.65229823897324 + "x": 131.20406, + "y": 84.6523 }, { "endCol": 3, @@ -10274,8 +10274,8 @@ "yScale": 1 }, { - "x": 0.7986883986051225, - "y": 0.12248470045972226 + "x": 0.79869, + "y": 0.12248 }, [ { @@ -10343,155 +10343,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 151.2052252947096, - "y": 88.17049685593986 + "x": 151.20523, + "y": 88.1705 }, { "body": null, "index": 1, "isInternal": false, - "x": 149.22387175136802, - "y": 93.94130894231797 + "x": 149.22387, + "y": 93.94131 }, { "body": null, "index": 2, "isInternal": false, - "x": 145.55517224947207, - "y": 98.81790426741811 + "x": 145.55517, + "y": 98.8179 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.55913617145438, - "y": 102.32221040517858 + "x": 140.55914, + "y": 102.32221 }, { "body": null, "index": 4, "isInternal": false, - "x": 134.72555692052387, - "y": 104.1103343167442 + "x": 134.72556, + "y": 104.11033 }, { "body": null, "index": 5, "isInternal": false, - "x": 128.62440269510103, - "y": 104.00874141539167 + "x": 128.6244, + "y": 104.00874 }, { "body": null, "index": 6, "isInternal": false, - "x": 122.85359060872291, - "y": 102.02738787205006 + "x": 122.85359, + "y": 102.02739 }, { "body": null, "index": 7, "isInternal": false, - "x": 117.97699528362278, - "y": 98.3586883701541 + "x": 117.977, + "y": 98.35869 }, { "body": null, "index": 8, "isInternal": false, - "x": 114.47268914586233, - "y": 93.36265229213643 + "x": 114.47269, + "y": 93.36265 }, { "body": null, "index": 9, "isInternal": false, - "x": 112.6845652342967, - "y": 87.52907304120588 + "x": 112.68457, + "y": 87.52907 }, { "body": null, "index": 10, "isInternal": false, - "x": 112.78615813564922, - "y": 81.42791881578306 + "x": 112.78616, + "y": 81.42792 }, { "body": null, "index": 11, "isInternal": false, - "x": 114.76751167899083, - "y": 75.65710672940496 + "x": 114.76751, + "y": 75.65711 }, { "body": null, "index": 12, "isInternal": false, - "x": 118.43621118088677, - "y": 70.78051140430482 + "x": 118.43621, + "y": 70.78051 }, { "body": null, "index": 13, "isInternal": false, - "x": 123.43224725890447, - "y": 67.27620526654438 + "x": 123.43225, + "y": 67.27621 }, { "body": null, "index": 14, "isInternal": false, - "x": 129.26582650983502, - "y": 65.48808135497876 + "x": 129.26583, + "y": 65.48808 }, { "body": null, "index": 15, "isInternal": false, - "x": 135.36698073525787, - "y": 65.58967425633126 + "x": 135.36698, + "y": 65.58967 }, { "body": null, "index": 16, "isInternal": false, - "x": 141.13779282163594, - "y": 67.57102779967289 + "x": 141.13779, + "y": 67.57103 }, { "body": null, "index": 17, "isInternal": false, - "x": 146.01438814673608, - "y": 71.23972730156883 + "x": 146.01439, + "y": 71.23973 }, { "body": null, "index": 18, "isInternal": false, - "x": 149.51869428449652, - "y": 76.2357633795865 + "x": 149.51869, + "y": 76.23576 }, { "body": null, "index": 19, "isInternal": false, - "x": 151.3068181960621, - "y": 82.06934263051706 + "x": 151.30682, + "y": 82.06934 }, { - "angle": 0.26171137186914073, - "anglePrev": 0.185187974908981, - "angularSpeed": 0.07627233098152372, - "angularVelocity": 0.07626990253243499, - "area": 324.43099600000005, + "angle": 0.26171, + "anglePrev": 0.18519, + "angularSpeed": 0.07627, + "angularVelocity": 0.07627, + "area": 324.431, "axes": { "#": 1144 }, "bounds": { "#": 1151 }, - "circleRadius": 10.399219821673526, + "circleRadius": 10.39922, "collisionFilter": { "#": 1154 }, @@ -10506,13 +10506,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 67.03663440105248, - "inverseInertia": 0.014917216667194436, - "inverseMass": 3.082319545078238, + "inertia": 67.03663, + "inverseInertia": 0.01492, + "inverseMass": 3.08232, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.3244309960000001, + "mass": 0.32443, "motion": 0, "parent": null, "position": { @@ -10534,7 +10534,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7963757420629443, + "speed": 2.79638, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10567,28 +10567,28 @@ } ], { - "x": -0.7070586142693022, - "y": -0.7071549448229676 + "x": -0.70706, + "y": -0.70715 }, { - "x": -0.25905486609793815, - "y": -0.965862607388328 + "x": -0.25905, + "y": -0.96586 }, { - "x": 0.2587340272402001, - "y": -0.9659486027465788 + "x": 0.25873, + "y": -0.96595 }, { - "x": 0.7071549448229676, - "y": -0.7070586142693022 + "x": 0.70715, + "y": -0.70706 }, { - "x": 0.965862607388328, - "y": -0.25905486609793815 + "x": 0.96586, + "y": -0.25905 }, { - "x": 0.9659486027465788, - "y": 0.2587340272402001 + "x": 0.96595, + "y": 0.25873 }, { "max": { @@ -10599,12 +10599,12 @@ } }, { - "x": 173.14396208840958, - "y": 97.84114744006041 + "x": 173.14396, + "y": 97.84115 }, { - "x": 151.21642113440961, - "y": 74.48370905351264 + "x": 151.21642, + "y": 74.48371 }, { "category": 1, @@ -10621,16 +10621,16 @@ "y": 0 }, { - "x": 161.61588685032962, - "y": 84.88317476943264 + "x": 161.61589, + "y": 84.88317 }, { "x": 0, "y": 0 }, { - "x": 160.52545694544037, - "y": 82.33495227822489 + "x": 160.52546, + "y": 82.33495 }, { "endCol": 3, @@ -10653,8 +10653,8 @@ "yScale": 1 }, { - "x": 1.1286225330950401, - "y": 2.5584583801360026 + "x": 1.12862, + "y": 2.55846 }, [ { @@ -10698,99 +10698,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 170.62232856358835, - "y": 90.08249171165421 + "x": 170.62233, + "y": 90.08249 }, { "body": null, "index": 1, "isInternal": false, - "x": 166.81603562402802, - "y": 93.88826614772543 + "x": 166.81604, + "y": 93.88827 }, { "body": null, "index": 2, "isInternal": false, - "x": 161.6172371852956, - "y": 95.28264048535266 + "x": 161.61724, + "y": 95.28264 }, { "body": null, "index": 3, "isInternal": false, - "x": 156.41656990810802, - "y": 93.88961648269141 + "x": 156.41657, + "y": 93.88962 }, { "body": null, "index": 4, "isInternal": false, - "x": 152.6107954720368, - "y": 90.08332354313104 + "x": 152.6108, + "y": 90.08332 }, { "body": null, "index": 5, "isInternal": false, - "x": 151.21642113440961, - "y": 84.88452510439862 + "x": 151.21642, + "y": 84.88453 }, { "body": null, "index": 6, "isInternal": false, - "x": 152.60944513707088, - "y": 79.68385782721107 + "x": 152.60945, + "y": 79.68386 }, { "body": null, "index": 7, "isInternal": false, - "x": 156.41573807663121, - "y": 75.87808339113985 + "x": 156.41574, + "y": 75.87808 }, { "body": null, "index": 8, "isInternal": false, - "x": 161.61453651536362, - "y": 74.48370905351264 + "x": 161.61454, + "y": 74.48371 }, { "body": null, "index": 9, "isInternal": false, - "x": 166.8152037925512, - "y": 75.87673305617389 + "x": 166.8152, + "y": 75.87673 }, { "body": null, "index": 10, "isInternal": false, - "x": 170.62097822862242, - "y": 79.68302599573424 + "x": 170.62098, + "y": 79.68303 }, { "body": null, "index": 11, "isInternal": false, - "x": 172.01535256624962, - "y": 84.88182443446667 + "x": 172.01535, + "y": 84.88182 }, { - "angle": 0.028288325394874053, - "anglePrev": 0.021425199160379438, - "angularSpeed": 0.007321709925387193, - "angularVelocity": 0.00708578145315911, - "area": 722.1773659999999, + "angle": 0.02829, + "anglePrev": 0.02143, + "angularSpeed": 0.00732, + "angularVelocity": 0.00709, + "area": 722.17737, "axes": { "#": 1178 }, "bounds": { "#": 1187 }, - "circleRadius": 15.358667695473251, + "circleRadius": 15.35867, "collisionFilter": { "#": 1190 }, @@ -10805,13 +10805,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 332.0674558099107, - "inverseInertia": 0.0030114363286851023, - "inverseMass": 1.3847013865012214, + "inertia": 332.06746, + "inverseInertia": 0.00301, + "inverseMass": 1.3847, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7221773659999999, + "mass": 0.72218, "motion": 0, "parent": null, "position": { @@ -10833,7 +10833,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.16001427555392, + "speed": 3.16001, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10872,36 +10872,36 @@ } ], { - "x": -0.9126544006400085, - "y": -0.40873211886567823 + "x": -0.91265, + "y": -0.40873 }, { - "x": -0.6868236772434534, - "y": -0.7268240752601555 + "x": -0.68682, + "y": -0.72682 }, { - "x": -0.35647074725981864, - "y": -0.934306484162465 + "x": -0.35647, + "y": -0.93431 }, { - "x": 0.028284552687771018, - "y": -0.9995999120044241 + "x": 0.02828, + "y": -0.9996 }, { - "x": 0.40873211886567823, - "y": -0.9126544006400085 + "x": 0.40873, + "y": -0.91265 }, { - "x": 0.7268240752601555, - "y": -0.6868236772434534 + "x": 0.72682, + "y": -0.68682 }, { - "x": 0.934306484162465, - "y": -0.35647074725981864 + "x": 0.93431, + "y": -0.35647 }, { - "x": 0.9995999120044241, - "y": 0.028284552687771018 + "x": 0.9996, + "y": 0.02828 }, { "max": { @@ -10912,12 +10912,12 @@ } }, { - "x": 201.95854301657965, - "y": 110.32920919908337 + "x": 201.95854, + "y": 110.32921 }, { - "x": 170.7419835520168, - "y": 77.02406631092447 + "x": 170.74198, + "y": 77.02407 }, { "category": 1, @@ -10934,16 +10934,16 @@ "y": 0 }, { - "x": 185.88469714630398, - "y": 92.16677990521167 + "x": 185.8847, + "y": 92.16678 }, { - "x": 0.07144715629695798, - "y": 0.05890145675491533 + "x": 0.07145, + "y": 0.0589 }, { - "x": 185.0899207719234, - "y": 89.13995828372275 + "x": 185.08992, + "y": 89.13996 }, { "endCol": 4, @@ -10966,8 +10966,8 @@ "yScale": 1 }, { - "x": 0.8816369763306113, - "y": 3.0253867097479343 + "x": 0.88164, + "y": 3.02539 }, [ { @@ -11023,127 +11023,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 200.85792970088607, - "y": 95.58765974326552 + "x": 200.85793, + "y": 95.58766 }, { "body": null, "index": 1, "isInternal": false, - "x": 198.40823593451574, - "y": 101.05755969216825 + "x": 198.40824, + "y": 101.05756 }, { "body": null, "index": 2, "isInternal": false, - "x": 194.05308945761487, - "y": 105.1730228695929 + "x": 194.05309, + "y": 105.17302 }, { "body": null, "index": 3, "isInternal": false, - "x": 188.45341998098064, - "y": 107.30949349949887 + "x": 188.45342, + "y": 107.30949 }, { "body": null, "index": 4, "isInternal": false, - "x": 182.4638173082501, - "y": 107.14001245979374 + "x": 182.46382, + "y": 107.14001 }, { "body": null, "index": 5, "isInternal": false, - "x": 176.99391735934742, - "y": 104.69031869342342 + "x": 176.99392, + "y": 104.69032 }, { "body": null, "index": 6, "isInternal": false, - "x": 172.87845418192273, - "y": 100.3351722165226 + "x": 172.87845, + "y": 100.33517 }, { "body": null, "index": 7, "isInternal": false, - "x": 170.7419835520168, - "y": 94.73550273988836 + "x": 170.74198, + "y": 94.7355 }, { "body": null, "index": 8, "isInternal": false, - "x": 170.91146459172188, - "y": 88.74590006715782 + "x": 170.91146, + "y": 88.7459 }, { "body": null, "index": 9, "isInternal": false, - "x": 173.3611583580922, - "y": 83.27600011825508 + "x": 173.36116, + "y": 83.276 }, { "body": null, "index": 10, "isInternal": false, - "x": 177.71630483499308, - "y": 79.16053694083044 + "x": 177.7163, + "y": 79.16054 }, { "body": null, "index": 11, "isInternal": false, - "x": 183.31597431162731, - "y": 77.02406631092447 + "x": 183.31597, + "y": 77.02407 }, { "body": null, "index": 12, "isInternal": false, - "x": 189.30557698435786, - "y": 77.1935473506296 + "x": 189.30558, + "y": 77.19355 }, { "body": null, "index": 13, "isInternal": false, - "x": 194.77547693326053, - "y": 79.64324111699992 + "x": 194.77548, + "y": 79.64324 }, { "body": null, "index": 14, "isInternal": false, - "x": 198.89094011068522, - "y": 83.99838759390074 + "x": 198.89094, + "y": 83.99839 }, { "body": null, "index": 15, "isInternal": false, - "x": 201.02741074059116, - "y": 89.59805707053498 + "x": 201.02741, + "y": 89.59806 }, { - "angle": -0.01655381802911003, - "anglePrev": -0.008153773906444343, - "angularSpeed": 0.007158996222844591, - "angularVelocity": -0.008308855406932733, - "area": 486.2764840000001, + "angle": -0.01655, + "anglePrev": -0.00815, + "angularSpeed": 0.00716, + "angularVelocity": -0.00831, + "area": 486.27648, "axes": { "#": 1218 }, "bounds": { "#": 1226 }, - "circleRadius": 12.653506515775035, + "circleRadius": 12.65351, "collisionFilter": { "#": 1229 }, @@ -11158,13 +11158,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 150.57294030609683, - "inverseInertia": 0.006641299545370631, - "inverseMass": 2.0564432640752575, + "inertia": 150.57294, + "inverseInertia": 0.00664, + "inverseMass": 2.05644, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4862764840000001, + "mass": 0.48628, "motion": 0, "parent": null, "position": { @@ -11186,7 +11186,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.059152482287261, + "speed": 3.05915, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11222,32 +11222,32 @@ } ], { - "x": -0.9080294090330727, - "y": -0.41890642431341296 + "x": -0.90803, + "y": -0.41891 }, { - "x": -0.636316594409691, - "y": -0.7714280210614939 + "x": -0.63632, + "y": -0.77143 }, { - "x": -0.23878707913167985, - "y": -0.9710719493630536 + "x": -0.23879, + "y": -0.97107 }, { - "x": 0.20651219829404868, - "y": -0.9784440259696819 + "x": 0.20651, + "y": -0.97844 }, { - "x": 0.610432395406858, - "y": -0.7920683623512843 + "x": 0.61043, + "y": -0.79207 }, { - "x": 0.8936653339978664, - "y": -0.44873407582941827 + "x": 0.89367, + "y": -0.44873 }, { - "x": 0.9998629886831274, - "y": -0.016553062002068436 + "x": 0.99986, + "y": -0.01655 }, { "max": { @@ -11258,12 +11258,12 @@ } }, { - "x": 226.57223355100965, - "y": 104.79099042816698 + "x": 226.57223, + "y": 104.79099 }, { - "x": 200.85396169837207, - "y": 76.58065949042981 + "x": 200.85396, + "y": 76.58066 }, { "category": 1, @@ -11280,16 +11280,16 @@ "y": 0 }, { - "x": 213.23488494936498, - "y": 89.23292574922608 + "x": 213.23488, + "y": 89.23293 }, { - "x": 0.10218645399005291, - "y": -0.0004117943460619475 + "x": 0.10219, + "y": -0.00041 }, { - "x": 212.48309822634664, - "y": 86.3236654288487 + "x": 212.4831, + "y": 86.32367 }, { "endCol": 4, @@ -11312,8 +11312,8 @@ "yScale": 1 }, { - "x": 0.8588863485813931, - "y": 2.9074914544996773 + "x": 0.85889, + "y": 2.90749 }, [ { @@ -11363,113 +11363,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 225.6158082003579, - "y": 91.84434135250025 + "x": 225.61581, + "y": 91.84434 }, { "body": null, "index": 1, "isInternal": false, - "x": 223.2571166025415, - "y": 96.9570854245608 + "x": 223.25712, + "y": 96.95709 }, { "body": null, "index": 2, "isInternal": false, - "x": 218.91283766405894, - "y": 100.5404875098224 + "x": 218.91284, + "y": 100.54049 }, { "body": null, "index": 3, "isInternal": false, - "x": 213.44434739593916, - "y": 101.88519200802236 + "x": 213.44435, + "y": 101.88519 }, { "body": null, "index": 4, "isInternal": false, - "x": 207.9343420483182, - "y": 100.7222401306051 + "x": 207.93434, + "y": 100.72224 }, { "body": null, "index": 5, "isInternal": false, - "x": 203.47382750845713, - "y": 97.28460430933373 + "x": 203.47383, + "y": 97.2846 }, { "body": null, "index": 6, "isInternal": false, - "x": 200.94718854356773, - "y": 92.25273849821528 + "x": 200.94719, + "y": 92.25274 }, { "body": null, "index": 7, "isInternal": false, - "x": 200.85396169837207, - "y": 86.62151014595192 + "x": 200.85396, + "y": 86.62151 }, { "body": null, "index": 8, "isInternal": false, - "x": 203.21265329618848, - "y": 81.50876607389137 + "x": 203.21265, + "y": 81.50877 }, { "body": null, "index": 9, "isInternal": false, - "x": 207.55693223467102, - "y": 77.9253639886298 + "x": 207.55693, + "y": 77.92536 }, { "body": null, "index": 10, "isInternal": false, - "x": 213.0254225027908, - "y": 76.58065949042981 + "x": 213.02542, + "y": 76.58066 }, { "body": null, "index": 11, "isInternal": false, - "x": 218.53542785041176, - "y": 77.7436113678471 + "x": 218.53543, + "y": 77.74361 }, { "body": null, "index": 12, "isInternal": false, - "x": 222.99594239027283, - "y": 81.18124718911844 + "x": 222.99594, + "y": 81.18125 }, { "body": null, "index": 13, "isInternal": false, - "x": 225.52258135516223, - "y": 86.21311300023689 + "x": 225.52258, + "y": 86.21311 }, { - "angle": 0.015818691342476134, - "anglePrev": 0.0009872566792648108, - "angularSpeed": 0.013256020382520673, - "angularVelocity": 0.014995849399804435, - "area": 555.028152, + "angle": 0.01582, + "anglePrev": 0.00099, + "angularSpeed": 0.01326, + "angularVelocity": 0.015, + "area": 555.02815, "axes": { "#": 1255 }, "bounds": { "#": 1263 }, - "circleRadius": 13.518304183813443, + "circleRadius": 13.5183, "collisionFilter": { "#": 1266 }, @@ -11484,13 +11484,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 196.15998479488022, - "inverseInertia": 0.005097879677374955, - "inverseMass": 1.8017104112585627, + "inertia": 196.15998, + "inverseInertia": 0.0051, + "inverseMass": 1.80171, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.555028152, + "mass": 0.55503, "motion": 0, "parent": null, "position": { @@ -11512,7 +11512,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4351788837875794, + "speed": 1.43518, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11548,32 +11548,32 @@ } ], { - "x": -0.8940342881245308, - "y": -0.4479985397941197 + "x": -0.89403, + "y": -0.448 }, { - "x": -0.6110123748427301, - "y": -0.7916210443065843 + "x": -0.61101, + "y": -0.79162 }, { - "x": -0.20696891412540797, - "y": -0.9783475193333653 + "x": -0.20697, + "y": -0.97835 }, { - "x": 0.2378125343238537, - "y": -0.971311071963285 + "x": 0.23781, + "y": -0.97131 }, { - "x": 0.6357472520139301, - "y": -0.7718972933990226 + "x": 0.63575, + "y": -0.7719 }, { - "x": 0.9077580321944202, - "y": -0.41949416561677516 + "x": 0.90776, + "y": -0.41949 }, { - "x": 0.9998748871110653, - "y": 0.015818031629582435 + "x": 0.99987, + "y": 0.01582 }, { "max": { @@ -11584,12 +11584,12 @@ } }, { - "x": 252.96506062816638, - "y": 100.3411803161996 + "x": 252.96506, + "y": 100.34118 }, { - "x": 225.36253452324075, - "y": 72.45351464196528 + "x": 225.36253, + "y": 72.45351 }, { "category": 1, @@ -11606,16 +11606,16 @@ "y": 0 }, { - "x": 238.58746629961925, - "y": 85.96982336593267 + "x": 238.58747, + "y": 85.96982 }, { "x": 0, "y": 0 }, { - "x": 237.90874732702702, - "y": 85.76757762860122 + "x": 237.90875, + "y": 85.76758 }, { "endCol": 5, @@ -11638,8 +11638,8 @@ "yScale": 1 }, { - "x": 0.6856283622896626, - "y": 0.17404018539029664 + "x": 0.68563, + "y": 0.17404 }, [ { @@ -11689,113 +11689,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 251.71723679771424, - "y": 89.18591286520903 + "x": 251.71724, + "y": 89.18591 }, { "body": null, "index": 1, "isInternal": false, - "x": 249.02181379289033, - "y": 94.5649495656849 + "x": 249.02181, + "y": 94.56495 }, { "body": null, "index": 2, "isInternal": false, - "x": 244.25906888727732, - "y": 98.24107224645296 + "x": 244.25907, + "y": 98.24107 }, { "body": null, "index": 3, "isInternal": false, - "x": 238.3736381480506, - "y": 99.48613208990005 + "x": 238.37364, + "y": 99.48613 }, { "body": null, "index": 4, "isInternal": false, - "x": 232.53053646146452, - "y": 98.05552673543797 + "x": 232.53054, + "y": 98.05553 }, { "body": null, "index": 5, "isInternal": false, - "x": 227.88645842913667, - "y": 94.23058801309878 + "x": 227.88646, + "y": 94.23059 }, { "body": null, "index": 6, "isInternal": false, - "x": 225.36253452324075, - "y": 88.76898118751649 + "x": 225.36253, + "y": 88.76898 }, { "body": null, "index": 7, "isInternal": false, - "x": 225.45769580152432, - "y": 82.7537338666563 + "x": 225.4577, + "y": 82.75373 }, { "body": null, "index": 8, "isInternal": false, - "x": 228.15311880634817, - "y": 77.37469716618044 + "x": 228.15312, + "y": 77.3747 }, { "body": null, "index": 9, "isInternal": false, - "x": 232.91586371196118, - "y": 73.6985744854124 + "x": 232.91586, + "y": 73.69857 }, { "body": null, "index": 10, "isInternal": false, - "x": 238.80129445118797, - "y": 72.45351464196528 + "x": 238.80129, + "y": 72.45351 }, { "body": null, "index": 11, "isInternal": false, - "x": 244.64439613777398, - "y": 73.8841199964274 + "x": 244.6444, + "y": 73.88412 }, { "body": null, "index": 12, "isInternal": false, - "x": 249.2884741701019, - "y": 77.70905871876656 + "x": 249.28847, + "y": 77.70906 }, { "body": null, "index": 13, "isInternal": false, - "x": 251.8123980759978, - "y": 83.17066554434885 + "x": 251.8124, + "y": 83.17067 }, { - "angle": 0.001998374753517542, - "anglePrev": -0.0008681787937980473, - "angularSpeed": 0.00040147638900787756, - "angularVelocity": 0.002695105714245304, - "area": 1227.1883159999998, + "angle": 0.002, + "anglePrev": -0.00087, + "angularSpeed": 0.0004, + "angularVelocity": 0.0027, + "area": 1227.18832, "axes": { "#": 1292 }, "bounds": { "#": 1303 }, - "circleRadius": 19.928369341563787, + "circleRadius": 19.92837, "collisionFilter": { "#": 1306 }, @@ -11810,13 +11810,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 958.7962512746001, - "inverseInertia": 0.001042974457472716, - "inverseMass": 0.8148708612704882, + "inertia": 958.79625, + "inverseInertia": 0.00104, + "inverseMass": 0.81487, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.227188316, + "mass": 1.22719, "motion": 0, "parent": null, "position": { @@ -11838,7 +11838,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4812251939877337, + "speed": 1.48123, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11883,44 +11883,44 @@ } ], { - "x": -0.950426358003332, - "y": -0.31094973550804267 + "x": -0.95043, + "y": -0.31095 }, { - "x": -0.8078163299145357, - "y": -0.5894342856700907 + "x": -0.80782, + "y": -0.58943 }, { - "x": -0.5862009469401167, - "y": -0.8101656928101254 + "x": -0.5862, + "y": -0.81017 }, { - "x": -0.30714864599013697, - "y": -0.9516615518483581 + "x": -0.30715, + "y": -0.95166 }, { - "x": 0.0019983734234323256, - "y": -0.9999980032498367 + "x": 0.002, + "y": -1 }, { - "x": 0.31094973550804267, - "y": -0.950426358003332 + "x": 0.31095, + "y": -0.95043 }, { - "x": 0.5894342856700907, - "y": -0.8078163299145357 + "x": 0.58943, + "y": -0.80782 }, { - "x": 0.8101656928101254, - "y": -0.5862009469401167 + "x": 0.81017, + "y": -0.5862 }, { - "x": 0.9516615518483581, - "y": -0.30714864599013697 + "x": 0.95166, + "y": -0.30715 }, { - "x": 0.9999980032498367, - "y": 0.0019983734234323256 + "x": 1, + "y": 0.002 }, { "max": { @@ -11931,12 +11931,12 @@ } }, { - "x": 291.2893899759143, - "y": 99.11886215861833 + "x": 291.28939, + "y": 99.11886 }, { - "x": 250.77127329864103, - "y": 58.794424402710796 + "x": 250.77127, + "y": 58.79442 }, { "category": 1, @@ -11953,16 +11953,16 @@ "y": 0 }, { - "x": 270.4604629265684, - "y": 78.48361403063818 + "x": 270.46046, + "y": 78.48361 }, { "x": 0, "y": 0 }, { - "x": 269.7644909753076, - "y": 78.43887317167184 + "x": 269.76449, + "y": 78.43887 }, { "endCol": 6, @@ -11985,8 +11985,8 @@ "yScale": 1 }, { - "x": 0.639926408408428, - "y": 0.06282719071398901 + "x": 0.63993, + "y": 0.06283 }, [ { @@ -12054,155 +12054,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 290.1371946945741, - "y": 81.63994179086133 + "x": 290.13719, + "y": 81.63994 }, { "body": null, "index": 1, "isInternal": false, - "x": 288.1983481879107, - "y": 87.5660790845459 + "x": 288.19835, + "y": 87.56608 }, { "body": null, "index": 2, "isInternal": false, - "x": 284.5232757104523, - "y": 92.6027449743412 + "x": 284.52328, + "y": 92.60274 }, { "body": null, "index": 3, "isInternal": false, - "x": 279.4719617434633, - "y": 96.25765786070406 + "x": 279.47196, + "y": 96.25766 }, { "body": null, "index": 4, "isInternal": false, - "x": 273.53812271860477, - "y": 98.17280365856553 + "x": 273.53812, + "y": 98.1728 }, { "body": null, "index": 5, "isInternal": false, - "x": 267.30413516634536, - "y": 98.16034579864387 + "x": 267.30414, + "y": 98.16035 }, { "body": null, "index": 6, "isInternal": false, - "x": 261.37799787266067, - "y": 96.22149929198049 + "x": 261.378, + "y": 96.2215 }, { "body": null, "index": 7, "isInternal": false, - "x": 256.3413319828653, - "y": 92.54642681452202 + "x": 256.34133, + "y": 92.54643 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.68641909650256, - "y": 87.495112847533 + "x": 252.68642, + "y": 87.49511 }, { "body": null, "index": 9, "isInternal": false, - "x": 250.77127329864103, - "y": 81.56127382267448 + "x": 250.77127, + "y": 81.56127 }, { "body": null, "index": 10, "isInternal": false, - "x": 250.78373115856274, - "y": 75.32728627041503 + "x": 250.78373, + "y": 75.32729 }, { "body": null, "index": 11, "isInternal": false, - "x": 252.72257766522605, - "y": 69.40114897673045 + "x": 252.72258, + "y": 69.40115 }, { "body": null, "index": 12, "isInternal": false, - "x": 256.3976501426845, - "y": 64.36448308693512 + "x": 256.39765, + "y": 64.36448 }, { "body": null, "index": 13, "isInternal": false, - "x": 261.44896410967357, - "y": 60.70957020057226 + "x": 261.44896, + "y": 60.70957 }, { "body": null, "index": 14, "isInternal": false, - "x": 267.3828031345321, - "y": 58.794424402710796 + "x": 267.3828, + "y": 58.79442 }, { "body": null, "index": 15, "isInternal": false, - "x": 273.6167906867915, - "y": 58.80688226263247 + "x": 273.61679, + "y": 58.80688 }, { "body": null, "index": 16, "isInternal": false, - "x": 279.5429279804762, - "y": 60.74572876929585 + "x": 279.54293, + "y": 60.74573 }, { "body": null, "index": 17, "isInternal": false, - "x": 284.5795938702715, - "y": 64.42080124675431 + "x": 284.57959, + "y": 64.4208 }, { "body": null, "index": 18, "isInternal": false, - "x": 288.2345067566343, - "y": 69.47211521374336 + "x": 288.23451, + "y": 69.47212 }, { "body": null, "index": 19, "isInternal": false, - "x": 290.14965255449573, - "y": 75.40595423860188 + "x": 290.14965, + "y": 75.40595 }, { - "angle": -0.00048420184003214353, - "anglePrev": 0.0016640587536390149, - "angularSpeed": 0.0012488626401402593, - "angularVelocity": -0.002035088555384807, - "area": 1120.7724680000001, + "angle": -0.00048, + "anglePrev": 0.00166, + "angularSpeed": 0.00125, + "angularVelocity": -0.00204, + "area": 1120.77247, "axes": { "#": 1338 }, "bounds": { "#": 1349 }, - "circleRadius": 19.04419581618656, + "circleRadius": 19.0442, "collisionFilter": { "#": 1352 }, @@ -12217,13 +12217,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 799.721573279466, - "inverseInertia": 0.001250435193212608, - "inverseMass": 0.8922417605283286, + "inertia": 799.72157, + "inverseInertia": 0.00125, + "inverseMass": 0.89224, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1207724680000002, + "mass": 1.12077, "motion": 0, "parent": null, "position": { @@ -12245,7 +12245,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5735445170180643, + "speed": 0.57354, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12290,44 +12290,44 @@ } ], { - "x": -0.9512217859671122, - "y": -0.308507883046021 + "x": -0.95122, + "y": -0.30851 }, { - "x": -0.8092165587055513, - "y": -0.5875104774527387 + "x": -0.80922, + "y": -0.58751 }, { - "x": -0.5882938501383609, - "y": -0.8086472320421209 + "x": -0.58829, + "y": -0.80865 }, { - "x": -0.30942890491991726, - "y": -0.9509225798139727 + "x": -0.30943, + "y": -0.95092 }, { - "x": -0.0004842018211118419, - "y": -0.9999998827742914 + "x": -0.00048, + "y": -1 }, { - "x": 0.308507883046021, - "y": -0.9512217859671122 + "x": 0.30851, + "y": -0.95122 }, { - "x": 0.5875104774527387, - "y": -0.8092165587055513 + "x": 0.58751, + "y": -0.80922 }, { - "x": 0.8086472320421209, - "y": -0.5882938501383609 + "x": 0.80865, + "y": -0.58829 }, { - "x": 0.9509225798139727, - "y": -0.30942890491991726 + "x": 0.95092, + "y": -0.30943 }, { - "x": 0.9999998827742914, - "y": -0.0004842018211118419 + "x": 1, + "y": -0.00048 }, { "max": { @@ -12338,12 +12338,12 @@ } }, { - "x": 324.8720866342384, - "y": 111.12134059670117 + "x": 324.87209, + "y": 111.12134 }, { - "x": 287.1535896043876, - "y": 72.93294197570668 + "x": 287.15359, + "y": 72.93294 }, { "category": 1, @@ -12360,16 +12360,16 @@ "y": 0 }, { - "x": 305.9650298365971, - "y": 91.74438220791619 + "x": 305.96503, + "y": 91.74438 }, { - "x": 0.41975848603820015, - "y": -0.021052587817135912 + "x": 0.41976, + "y": -0.02105 }, { - "x": 305.32552302987733, - "y": 91.59116386436868 + "x": 305.32552, + "y": 91.59116 }, { "endCol": 6, @@ -12392,8 +12392,8 @@ "yScale": 1 }, { - "x": 0.6663073788053566, - "y": 0.2210363266253097 + "x": 0.66631, + "y": 0.22104 }, [ { @@ -12461,155 +12461,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 324.77647006880665, - "y": 94.71427402244571 + "x": 324.77647, + "y": 94.71427 }, { "body": null, "index": 1, "isInternal": false, - "x": 322.93821425633945, - "y": 100.38216477368026 + "x": 322.93821, + "y": 100.38216 }, { "body": null, "index": 2, "isInternal": false, - "x": 319.4375485197588, - "y": 105.20386036763169 + "x": 319.43755, + "y": 105.20386 }, { "body": null, "index": 3, "isInternal": false, - "x": 314.6192452437661, - "y": 108.7091938097678 + "x": 314.61925, + "y": 108.70919 }, { "body": null, "index": 4, "isInternal": false, - "x": 308.9531373236368, - "y": 110.55293756567555 + "x": 308.95314, + "y": 110.55294 }, { "body": null, "index": 5, "isInternal": false, - "x": 302.99513802206764, - "y": 110.55582244012571 + "x": 302.99514, + "y": 110.55582 }, { "body": null, "index": 6, "isInternal": false, - "x": 297.3272472708331, - "y": 108.71756662765846 + "x": 297.32725, + "y": 108.71757 }, { "body": null, "index": 7, "isInternal": false, - "x": 292.50555167688157, - "y": 105.21690089107788 + "x": 292.50555, + "y": 105.2169 }, { "body": null, "index": 8, "isInternal": false, - "x": 289.00021823474555, - "y": 100.39859761508514 + "x": 289.00022, + "y": 100.3986 }, { "body": null, "index": 9, "isInternal": false, - "x": 287.15647447883777, - "y": 94.73248969495592 + "x": 287.15647, + "y": 94.73249 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.1535896043876, - "y": 88.77449039338667 + "x": 287.15359, + "y": 88.77449 }, { "body": null, "index": 11, "isInternal": false, - "x": 288.9918454168548, - "y": 83.10659964215212 + "x": 288.99185, + "y": 83.1066 }, { "body": null, "index": 12, "isInternal": false, - "x": 292.49251115343543, - "y": 78.28490404820066 + "x": 292.49251, + "y": 78.2849 }, { "body": null, "index": 13, "isInternal": false, - "x": 297.31081442942815, - "y": 74.77957060606458 + "x": 297.31081, + "y": 74.77957 }, { "body": null, "index": 14, "isInternal": false, - "x": 302.97692234955747, - "y": 72.93582685015683 + "x": 302.97692, + "y": 72.93583 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.9349216511266, - "y": 72.93294197570668 + "x": 308.93492, + "y": 72.93294 }, { "body": null, "index": 16, "isInternal": false, - "x": 314.60281240236117, - "y": 74.77119778817392 + "x": 314.60281, + "y": 74.7712 }, { "body": null, "index": 17, "isInternal": false, - "x": 319.4245079963127, - "y": 78.27186352475448 + "x": 319.42451, + "y": 78.27186 }, { "body": null, "index": 18, "isInternal": false, - "x": 322.9298414384487, - "y": 83.09016680074724 + "x": 322.92984, + "y": 83.09017 }, { "body": null, "index": 19, "isInternal": false, - "x": 324.7735851943565, - "y": 88.75627472087646 + "x": 324.77359, + "y": 88.75627 }, { - "angle": -0.005335628818339635, - "anglePrev": -0.002671933713861032, - "angularSpeed": 0.0021191740050473954, - "angularVelocity": -0.0026617123298066994, - "area": 628.0030680000002, + "angle": -0.00534, + "anglePrev": -0.00267, + "angularSpeed": 0.00212, + "angularVelocity": -0.00266, + "area": 628.00307, "axes": { "#": 1384 }, "bounds": { "#": 1393 }, - "circleRadius": 14.322573731138545, + "circleRadius": 14.32257, "collisionFilter": { "#": 1396 }, @@ -12624,13 +12624,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 251.1088965588656, - "inverseInertia": 0.003982336005230214, - "inverseMass": 1.5923489087158402, + "inertia": 251.1089, + "inverseInertia": 0.00398, + "inverseMass": 1.59235, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6280030680000003, + "mass": 0.628, "motion": 0, "parent": null, "position": { @@ -12652,7 +12652,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9083343771713985, + "speed": 2.90833, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12691,36 +12691,36 @@ } ], { - "x": -0.9259447353929972, - "y": -0.37765903537184486 + "x": -0.92594, + "y": -0.37766 }, { - "x": -0.7108695573397906, - "y": -0.7033238745041503 + "x": -0.71087, + "y": -0.70332 }, { - "x": -0.3875183397704336, - "y": -0.9218619941952085 + "x": -0.38752, + "y": -0.92186 }, { - "x": -0.005335603501764104, - "y": -0.9999857655663265 + "x": -0.00534, + "y": -0.99999 }, { - "x": 0.37765903537184486, - "y": -0.9259447353929972 + "x": 0.37766, + "y": -0.92594 }, { - "x": 0.7033238745041503, - "y": -0.7108695573397906 + "x": 0.70332, + "y": -0.71087 }, { - "x": 0.9218619941952085, - "y": -0.3875183397704336 + "x": 0.92186, + "y": -0.38752 }, { - "x": 0.9999857655663265, - "y": -0.005335603501764104 + "x": 0.99999, + "y": -0.00534 }, { "max": { @@ -12731,12 +12731,12 @@ } }, { - "x": 352.8132553519576, - "y": 107.5994664179509 + "x": 352.81326, + "y": 107.59947 }, { - "x": 324.6014372736739, - "y": 76.56906045783967 + "x": 324.60144, + "y": 76.56906 }, { "category": 1, @@ -12753,16 +12753,16 @@ "y": 0 }, { - "x": 338.6631449987681, - "y": 90.63076818293375 + "x": 338.66314, + "y": 90.63077 }, { - "x": 0.33530158863718845, - "y": -0.0017610357233474924 + "x": 0.3353, + "y": -0.00176 }, { - "x": 337.9648091445176, - "y": 87.72714993231712 + "x": 337.96481, + "y": 87.72715 }, { "endCol": 7, @@ -12785,8 +12785,8 @@ "yScale": 1 }, { - "x": 0.6871945365377314, - "y": 2.9036822272664864 + "x": 0.68719, + "y": 2.90368 }, [ { @@ -12842,127 +12842,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 352.7248527238622, - "y": 93.3497791895368 + "x": 352.72485, + "y": 93.34978 }, { "body": null, "index": 1, "isInternal": false, - "x": 350.614430877961, - "y": 98.5241132174425 + "x": 350.61443, + "y": 98.52411 }, { "body": null, "index": 2, "isInternal": false, - "x": 346.6835734374818, - "y": 102.4971432679996 + "x": 346.68357, + "y": 102.49714 }, { "body": null, "index": 3, "isInternal": false, - "x": 341.53205445014964, - "y": 104.66266055566001 + "x": 341.53205, + "y": 104.66266 }, { "body": null, "index": 4, "isInternal": false, - "x": 335.94413399216506, - "y": 104.69247590802783 + "x": 335.94413, + "y": 104.69248 }, { "body": null, "index": 5, "isInternal": false, - "x": 330.7697999642593, - "y": 102.58205406212667 + "x": 330.7698, + "y": 102.58205 }, { "body": null, "index": 6, "isInternal": false, - "x": 326.79676991370224, - "y": 98.65119662164751 + "x": 326.79677, + "y": 98.6512 }, { "body": null, "index": 7, "isInternal": false, - "x": 324.63125262604177, - "y": 93.49967763431533 + "x": 324.63125, + "y": 93.49968 }, { "body": null, "index": 8, "isInternal": false, - "x": 324.6014372736739, - "y": 87.9117571763307 + "x": 324.60144, + "y": 87.91176 }, { "body": null, "index": 9, "isInternal": false, - "x": 326.71185911957514, - "y": 82.737423148425 + "x": 326.71186, + "y": 82.73742 }, { "body": null, "index": 10, "isInternal": false, - "x": 330.64271656005434, - "y": 78.76439309786791 + "x": 330.64272, + "y": 78.76439 }, { "body": null, "index": 11, "isInternal": false, - "x": 335.7942355473865, - "y": 76.59887581020752 + "x": 335.79424, + "y": 76.59888 }, { "body": null, "index": 12, "isInternal": false, - "x": 341.3821560053711, - "y": 76.56906045783967 + "x": 341.38216, + "y": 76.56906 }, { "body": null, "index": 13, "isInternal": false, - "x": 346.5564900332769, - "y": 78.67948230374084 + "x": 346.55649, + "y": 78.67948 }, { "body": null, "index": 14, "isInternal": false, - "x": 350.5295200838339, - "y": 82.61033974421998 + "x": 350.52952, + "y": 82.61034 }, { "body": null, "index": 15, "isInternal": false, - "x": 352.6950373714944, - "y": 87.76185873155217 + "x": 352.69504, + "y": 87.76186 }, { - "angle": -0.002746379630444571, - "anglePrev": -0.0014454314689329873, - "angularSpeed": 0.0013440686786177615, - "angularVelocity": -0.0013290401581039734, - "area": 536.790174, + "angle": -0.00275, + "anglePrev": -0.00145, + "angularSpeed": 0.00134, + "angularVelocity": -0.00133, + "area": 536.79017, "axes": { "#": 1424 }, "bounds": { "#": 1432 }, - "circleRadius": 13.294367283950617, + "circleRadius": 13.29437, "collisionFilter": { "#": 1435 }, @@ -12977,13 +12977,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 183.48032886968383, - "inverseInertia": 0.005450175537401865, - "inverseMass": 1.8629253075709244, + "inertia": 183.48033, + "inverseInertia": 0.00545, + "inverseMass": 1.86293, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.536790174, + "mass": 0.53679, "motion": 0, "parent": null, "position": { @@ -13005,7 +13005,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9100802773970487, + "speed": 2.91008, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13041,32 +13041,32 @@ } ], { - "x": -0.9021750958990794, - "y": -0.43137002253226536 + "x": -0.90218, + "y": -0.43137 }, { - "x": -0.6256231191595593, - "y": -0.7801254468180512 + "x": -0.62562, + "y": -0.78013 }, { - "x": -0.22511599246077205, - "y": -0.9743319711158006 + "x": -0.22512, + "y": -0.97433 }, { - "x": 0.21976085250233846, - "y": -0.975553774892725 + "x": 0.21976, + "y": -0.97555 }, { - "x": 0.6213286618062726, - "y": -0.7835500583996061 + "x": 0.62133, + "y": -0.78355 }, { - "x": 0.8997920866678001, - "y": -0.436318920939725 + "x": 0.89979, + "y": -0.43632 }, { - "x": 0.9999962287018331, - "y": -0.0027463761779715472 + "x": 1, + "y": -0.00275 }, { "max": { @@ -13077,12 +13077,12 @@ } }, { - "x": 378.4100345442618, - "y": 106.07779126434968 + "x": 378.41003, + "y": 106.07779 }, { - "x": 352.32418621531434, - "y": 76.58356182858992 + "x": 352.32419, + "y": 76.58356 }, { "category": 1, @@ -13099,16 +13099,16 @@ "y": 0 }, { - "x": 365.29326111625323, - "y": 89.87751169295207 + "x": 365.29326, + "y": 89.87751 }, { - "x": 0.020908662517772368, - "y": -0.000035866421894510835 + "x": 0.02091, + "y": -0.00004 }, { - "x": 365.1554076381039, - "y": 86.97109065684529 + "x": 365.15541, + "y": 86.97109 }, { "endCol": 7, @@ -13131,8 +13131,8 @@ "yScale": 1 }, { - "x": 0.13298218835626585, - "y": 2.906430842967609 + "x": 0.13298, + "y": 2.90643 }, [ { @@ -13182,113 +13182,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 378.2623360171921, - "y": 92.7999047558094 + "x": 378.26234, + "y": 92.7999 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.7099866295193, - "y": 98.13793459866773 + "x": 375.70999, + "y": 98.13793 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.09413545726517, - "y": 101.83962542254808 + "x": 371.09414, + "y": 101.83963 }, { "body": null, "index": 3, "isInternal": false, - "x": 365.32977144116313, - "y": 103.17146155731425 + "x": 365.32977, + "y": 103.17146 }, { "body": null, "index": 4, "isInternal": false, - "x": 359.5581789629609, - "y": 101.87130761813718 + "x": 359.55818, + "y": 101.87131 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.9220650272656, - "y": 98.1950262666554 + "x": 354.92207, + "y": 98.19503 }, { "body": null, "index": 6, "isInternal": false, - "x": 352.34043377678313, - "y": 92.87109631909478 + "x": 352.34043, + "y": 92.8711 }, { "body": null, "index": 7, "isInternal": false, - "x": 352.32418621531434, - "y": 86.95511863009474 + "x": 352.32419, + "y": 86.95512 }, { "body": null, "index": 8, "isInternal": false, - "x": 354.8765356029872, - "y": 81.61708878723641 + "x": 354.87654, + "y": 81.61709 }, { "body": null, "index": 9, "isInternal": false, - "x": 359.4923867752413, - "y": 77.91539796335606 + "x": 359.49239, + "y": 77.9154 }, { "body": null, "index": 10, "isInternal": false, - "x": 365.25675079134334, - "y": 76.58356182858992 + "x": 365.25675, + "y": 76.58356 }, { "body": null, "index": 11, "isInternal": false, - "x": 371.0283432695456, - "y": 77.88371576776696 + "x": 371.02834, + "y": 77.88372 }, { "body": null, "index": 12, "isInternal": false, - "x": 375.66445720524086, - "y": 81.55999711924873 + "x": 375.66446, + "y": 81.56 }, { "body": null, "index": 13, "isInternal": false, - "x": 378.24608845572334, - "y": 86.88392706680936 + "x": 378.24609, + "y": 86.88393 }, { - "angle": 0.0009426238236123661, - "anglePrev": 0.0002989560034614945, - "angularSpeed": 0.0006172036393420604, - "angularVelocity": 0.0006838396082489716, - "area": 438.00552799999997, + "angle": 0.00094, + "anglePrev": 0.0003, + "angularSpeed": 0.00062, + "angularVelocity": 0.00068, + "area": 438.00553, "axes": { "#": 1461 }, "bounds": { "#": 1469 }, - "circleRadius": 12.008959190672154, + "circleRadius": 12.00896, "collisionFilter": { "#": 1472 }, @@ -13303,13 +13303,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 122.16296885484358, - "inverseInertia": 0.008185786653467954, - "inverseMass": 2.2830762081158027, + "inertia": 122.16297, + "inverseInertia": 0.00819, + "inverseMass": 2.28308, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.438005528, + "mass": 0.43801, "motion": 0, "parent": null, "position": { @@ -13331,7 +13331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9103256301369806, + "speed": 2.91033, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13367,32 +13367,32 @@ } ], { - "x": -0.9005434855349757, - "y": -0.4347659492882544 + "x": -0.90054, + "y": -0.43477 }, { - "x": -0.6227936013966416, - "y": -0.7823861770630925 + "x": -0.62279, + "y": -0.78239 }, { - "x": -0.22157542646013947, - "y": -0.9751432358320532 + "x": -0.22158, + "y": -0.97514 }, { - "x": 0.22341341810521567, - "y": -0.9747237786216895 + "x": 0.22341, + "y": -0.97472 }, { - "x": 0.6242674854691275, - "y": -0.7812106672249506 + "x": 0.62427, + "y": -0.78121 }, { - "x": 0.9013615261956882, - "y": -0.43306743019324345 + "x": 0.90136, + "y": -0.43307 }, { - "x": 0.9999995557301964, - "y": 0.0009426236840192617 + "x": 1, + "y": 0.00094 }, { "max": { @@ -13403,12 +13403,12 @@ } }, { - "x": 401.77640843869943, - "y": 103.50929217185505 + "x": 401.77641, + "y": 103.50929 }, { - "x": 378.20815780052044, - "y": 76.58470337434065 + "x": 378.20816, + "y": 76.5847 }, { "category": 1, @@ -13425,16 +13425,16 @@ "y": 0 }, { - "x": 389.9186712894933, - "y": 88.59369803910457 + "x": 389.91867, + "y": 88.5937 }, { - "x": 0.020271909913618727, - "y": 0.000010073224515289716 + "x": 0.02027, + "y": 0.00001 }, { - "x": 389.77901077176, - "y": 85.687288847396 + "x": 389.77901, + "y": 85.68729 }, { "endCol": 8, @@ -13457,8 +13457,8 @@ "yScale": 1 }, { - "x": 0.13407749692294146, - "y": 2.9064089164857165 + "x": 0.13408, + "y": 2.90641 }, [ { @@ -13508,113 +13508,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 401.62414739749875, - "y": 91.27673309010814 + "x": 401.62415, + "y": 91.27673 }, { "body": null, "index": 1, "isInternal": false, - "x": 399.3006096947219, - "y": 96.0895450066258 + "x": 399.30061, + "y": 96.08955 }, { "body": null, "index": 2, "isInternal": false, - "x": 395.11846978658656, - "y": 99.41860430149903 + "x": 395.11847, + "y": 99.4186 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.9073513216719, - "y": 100.6026927038685 + "x": 389.90735, + "y": 100.60269 }, { "body": null, "index": 4, "isInternal": false, - "x": 384.6984744158779, - "y": 99.40878216271155 + "x": 384.69847, + "y": 99.40878 }, { "body": null, "index": 5, "isInternal": false, - "x": 380.52261803722024, - "y": 96.0718444190873 + "x": 380.52262, + "y": 96.07184 }, { "body": null, "index": 6, "isInternal": false, - "x": 378.20815780052044, - "y": 91.25466061392315 + "x": 378.20816, + "y": 91.25466 }, { "body": null, "index": 7, "isInternal": false, - "x": 378.2131951814879, - "y": 85.910662988101 + "x": 378.2132, + "y": 85.91066 }, { "body": null, "index": 8, "isInternal": false, - "x": 380.5367328842647, - "y": 81.09785107158334 + "x": 380.53673, + "y": 81.09785 }, { "body": null, "index": 9, "isInternal": false, - "x": 384.7188727924001, - "y": 77.7687917767101 + "x": 384.71887, + "y": 77.76879 }, { "body": null, "index": 10, "isInternal": false, - "x": 389.9299912573147, - "y": 76.58470337434065 + "x": 389.92999, + "y": 76.5847 }, { "body": null, "index": 11, "isInternal": false, - "x": 395.1388681631087, - "y": 77.77861391549759 + "x": 395.13887, + "y": 77.77861 }, { "body": null, "index": 12, "isInternal": false, - "x": 399.3147245417664, - "y": 81.11555165912183 + "x": 399.31472, + "y": 81.11555 }, { "body": null, "index": 13, "isInternal": false, - "x": 401.6291847784662, - "y": 85.93273546428598 + "x": 401.62918, + "y": 85.93274 }, { - "angle": 0.0008446255771025935, - "anglePrev": 0.0002864077254738519, - "angularSpeed": 0.0005145506166076235, - "angularVelocity": 0.0005709174631559441, - "area": 802.396328, + "angle": 0.00084, + "anglePrev": 0.00029, + "angularSpeed": 0.00051, + "angularVelocity": 0.00057, + "area": 802.39633, "axes": { "#": 1498 }, "bounds": { "#": 1508 }, - "circleRadius": 16.145361796982165, + "circleRadius": 16.14536, "collisionFilter": { "#": 1511 }, @@ -13629,13 +13629,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 409.9154941824296, - "inverseInertia": 0.0024395272054658127, - "inverseMass": 1.2462669196063418, + "inertia": 409.91549, + "inverseInertia": 0.00244, + "inverseMass": 1.24627, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.802396328, + "mass": 0.8024, "motion": 0, "parent": null, "position": { @@ -13657,7 +13657,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9099513273339817, + "speed": 2.90995, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13699,40 +13699,40 @@ } ], { - "x": -0.9393895697355069, - "y": -0.34285162428102806 + "x": -0.93939, + "y": -0.34285 }, { - "x": -0.7654953575870332, - "y": -0.6434414173121745 + "x": -0.7655, + "y": -0.64344 }, { - "x": -0.49932015306192223, - "y": -0.8664175579627981 + "x": -0.49932, + "y": -0.86642 }, { - "x": -0.17269910206622216, - "y": -0.9849746291887526 + "x": -0.1727, + "y": -0.98497 }, { - "x": 0.17436272439973102, - "y": -0.9846814918235762 + "x": 0.17436, + "y": -0.98468 }, { - "x": 0.5007830368034546, - "y": -0.8655728450280255 + "x": 0.50078, + "y": -0.86557 }, { - "x": 0.7665811990301228, - "y": -0.6421473859586591 + "x": 0.76658, + "y": -0.64215 }, { - "x": 0.9399673916557223, - "y": -0.3412642709454625 + "x": 0.93997, + "y": -0.34126 }, { - "x": 0.9999996433038385, - "y": 0.0008446254766776907 + "x": 1, + "y": 0.00084 }, { "max": { @@ -13743,12 +13743,12 @@ } }, { - "x": 433.49906231124595, - "y": 111.78301820074712 + "x": 433.49906, + "y": 111.78302 }, { - "x": 401.57076172798384, - "y": 76.58570347585845 + "x": 401.57076, + "y": 76.5857 }, { "category": 1, @@ -13765,16 +13765,16 @@ "y": 0 }, { - "x": 417.47312438635146, - "y": 92.7306977169989 + "x": 417.47312, + "y": 92.7307 }, { - "x": 0.03531808312624606, - "y": -0.000025401485111014174 + "x": 0.03532, + "y": -0.00003 }, { - "x": 417.33883443501475, - "y": 89.82332870560931 + "x": 417.33883, + "y": 89.82333 }, { "endCol": 9, @@ -13797,8 +13797,8 @@ "yScale": 1 }, { - "x": 0.13733756495673788, - "y": 2.9073691616259794 + "x": 0.13734, + "y": 2.90737 }, [ { @@ -13860,141 +13860,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 433.3707503850459, - "y": 95.54812626190204 + "x": 433.37075, + "y": 95.54813 }, { "body": null, "index": 1, "isInternal": false, - "x": 431.4483007375525, - "y": 100.8155043908057 + "x": 431.4483, + "y": 100.8155 }, { "body": null, "index": 2, "isInternal": false, - "x": 427.8406743566631, - "y": 105.10745882857773 + "x": 427.84067, + "y": 105.10746 }, { "body": null, "index": 3, "isInternal": false, - "x": 422.9823077589431, - "y": 107.90735632708696 + "x": 422.98231, + "y": 107.90736 }, { "body": null, "index": 4, "isInternal": false, - "x": 417.4594879080305, - "y": 108.87569195813938 + "x": 417.45949, + "y": 108.87569 }, { "body": null, "index": 5, "isInternal": false, - "x": 411.9383116982955, - "y": 107.89802828332252 + "x": 411.93831, + "y": 107.89803 }, { "body": null, "index": 6, "isInternal": false, - "x": 407.0846817602487, - "y": 105.08992778218382 + "x": 407.08468, + "y": 105.08993 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.484310712204, - "y": 100.7918852839759 + "x": 403.48431, + "y": 100.79189 }, { "body": null, "index": 8, "isInternal": false, - "x": 401.57076172798384, - "y": 95.5212671717437 + "x": 401.57076, + "y": 95.52127 }, { "body": null, "index": 9, "isInternal": false, - "x": 401.57549838765703, - "y": 89.91326917209577 + "x": 401.5755, + "y": 89.91327 }, { "body": null, "index": 10, "isInternal": false, - "x": 403.49794803515044, - "y": 84.64589104319211 + "x": 403.49795, + "y": 84.64589 }, { "body": null, "index": 11, "isInternal": false, - "x": 407.1055744160398, - "y": 80.35393660542007 + "x": 407.10557, + "y": 80.35394 }, { "body": null, "index": 12, "isInternal": false, - "x": 411.96394101375984, - "y": 77.55403910691088 + "x": 411.96394, + "y": 77.55404 }, { "body": null, "index": 13, "isInternal": false, - "x": 417.4867608646724, - "y": 76.58570347585845 + "x": 417.48676, + "y": 76.5857 }, { "body": null, "index": 14, "isInternal": false, - "x": 423.00793707440744, - "y": 77.5633671506753 + "x": 423.00794, + "y": 77.56337 }, { "body": null, "index": 15, "isInternal": false, - "x": 427.8615670124542, - "y": 80.37146765181399 + "x": 427.86157, + "y": 80.37147 }, { "body": null, "index": 16, "isInternal": false, - "x": 431.46193806049894, - "y": 84.66951015002192 + "x": 431.46194, + "y": 84.66951 }, { "body": null, "index": 17, "isInternal": false, - "x": 433.3754870447191, - "y": 89.9401282622541 + "x": 433.37549, + "y": 89.94013 }, { - "angle": 0.013961274498493374, - "anglePrev": 0.007361580282166277, - "angularSpeed": 0.00679927815253773, - "angularVelocity": 0.006613354359831922, - "area": 1091.045108, + "angle": 0.01396, + "anglePrev": 0.00736, + "angularSpeed": 0.0068, + "angularVelocity": 0.00661, + "area": 1091.04511, "axes": { "#": 1541 }, "bounds": { "#": 1552 }, - "circleRadius": 18.78999485596708, + "circleRadius": 18.78999, "collisionFilter": { "#": 1555 }, @@ -14009,13 +14009,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 757.8605778590133, - "inverseInertia": 0.0013195039156477042, - "inverseMass": 0.9165523887762117, + "inertia": 757.86058, + "inverseInertia": 0.00132, + "inverseMass": 0.91655, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.091045108, + "mass": 1.09105, "motion": 0, "parent": null, "position": { @@ -14037,7 +14037,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1773160072922828, + "speed": 1.17732, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14082,44 +14082,44 @@ } ], { - "x": -0.9466301992545978, - "y": -0.3223216807153998 + "x": -0.94663, + "y": -0.32232 }, { - "x": -0.8008280230507722, - "y": -0.5988943792494568 + "x": -0.80083, + "y": -0.59889 }, { - "x": -0.5763026706955101, - "y": -0.8172363377562346 + "x": -0.5763, + "y": -0.81724 }, { - "x": -0.29576714329809173, - "y": -0.9552600677016108 + "x": -0.29577, + "y": -0.95526 }, { - "x": 0.013960820954191419, - "y": -0.9999025429902081 + "x": 0.01396, + "y": -0.9999 }, { - "x": 0.3223216807153998, - "y": -0.9466301992545978 + "x": 0.32232, + "y": -0.94663 }, { - "x": 0.5988943792494568, - "y": -0.8008280230507722 + "x": 0.59889, + "y": -0.80083 }, { - "x": 0.8172363377562346, - "y": -0.5763026706955101 + "x": 0.81724, + "y": -0.5763 }, { - "x": 0.9552600677016108, - "y": -0.29576714329809173 + "x": 0.95526, + "y": -0.29577 }, { - "x": 0.9999025429902081, - "y": 0.013960820954191419 + "x": 0.9999, + "y": 0.01396 }, { "max": { @@ -14130,12 +14130,12 @@ } }, { - "x": 471.39813253244034, - "y": 109.47249351588734 + "x": 471.39813, + "y": 109.47249 }, { - "x": 433.82235805300803, - "y": 71.16151721325934 + "x": 433.82236, + "y": 71.16152 }, { "category": 1, @@ -14152,16 +14152,16 @@ "y": 0 }, { - "x": 452.4205802011477, - "y": 89.75973936139896 + "x": 452.42058, + "y": 89.75974 }, { "x": 0, "y": 0 }, { - "x": 452.1174155938933, - "y": 88.65543720836703 + "x": 452.11742, + "y": 88.65544 }, { "endCol": 9, @@ -14184,8 +14184,8 @@ "yScale": 1 }, { - "x": 0.308624976205067, - "y": 1.104375710283577 + "x": 0.30862, + "y": 1.10438 }, [ { @@ -14253,155 +14253,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 470.93674064371857, - "y": 92.957551811336 + "x": 470.93674, + "y": 92.95755 }, { "body": null, "index": 1, "isInternal": false, - "x": 469.0418627731505, - "y": 98.52264011752051 + "x": 469.04186, + "y": 98.52264 }, { "body": null, "index": 2, "isInternal": false, - "x": 465.52078786184023, - "y": 103.2309418781282 + "x": 465.52079, + "y": 103.23094 }, { "body": null, "index": 3, "isInternal": false, - "x": 460.7160168284391, - "y": 106.61919353888028 + "x": 460.71602, + "y": 106.61919 }, { "body": null, "index": 4, "isInternal": false, - "x": 455.1001948989071, - "y": 108.3579615095386 + "x": 455.10019, + "y": 108.35796 }, { "body": null, "index": 5, "isInternal": false, - "x": 449.2227677512106, - "y": 108.27589980396985 + "x": 449.22277, + "y": 108.2759 }, { "body": null, "index": 6, "isInternal": false, - "x": 443.65767944502613, - "y": 106.38102193340177 + "x": 443.65768, + "y": 106.38102 }, { "body": null, "index": 7, "isInternal": false, - "x": 438.9493776844185, - "y": 102.85994702209152 + "x": 438.94938, + "y": 102.85995 }, { "body": null, "index": 8, "isInternal": false, - "x": 435.56112602366636, - "y": 98.05517598869035 + "x": 435.56113, + "y": 98.05518 }, { "body": null, "index": 9, "isInternal": false, - "x": 433.82235805300803, - "y": 92.43935405915833 + "x": 433.82236, + "y": 92.43935 }, { "body": null, "index": 10, "isInternal": false, - "x": 433.9044197585768, - "y": 86.56192691146191 + "x": 433.90442, + "y": 86.56193 }, { "body": null, "index": 11, "isInternal": false, - "x": 435.79929762914486, - "y": 80.9968386052774 + "x": 435.7993, + "y": 80.99684 }, { "body": null, "index": 12, "isInternal": false, - "x": 439.32037254045514, - "y": 76.28853684466971 + "x": 439.32037, + "y": 76.28854 }, { "body": null, "index": 13, "isInternal": false, - "x": 444.1251435738563, - "y": 72.90028518391763 + "x": 444.12514, + "y": 72.90029 }, { "body": null, "index": 14, "isInternal": false, - "x": 449.7409655033883, - "y": 71.16151721325934 + "x": 449.74097, + "y": 71.16152 }, { "body": null, "index": 15, "isInternal": false, - "x": 455.6183926510848, - "y": 71.24357891882806 + "x": 455.61839, + "y": 71.24358 }, { "body": null, "index": 16, "isInternal": false, - "x": 461.18348095726924, - "y": 73.13845678939614 + "x": 461.18348, + "y": 73.13846 }, { "body": null, "index": 17, "isInternal": false, - "x": 465.8917827178769, - "y": 76.6595317007064 + "x": 465.89178, + "y": 76.65953 }, { "body": null, "index": 18, "isInternal": false, - "x": 469.280034378629, - "y": 81.46430273410756 + "x": 469.28003, + "y": 81.4643 }, { "body": null, "index": 19, "isInternal": false, - "x": 471.01880234928734, - "y": 87.08012466363958 + "x": 471.0188, + "y": 87.08012 }, { - "angle": 0.0004940021754339463, - "anglePrev": 0.0002087600781331757, - "angularSpeed": 0.0004940021754339463, - "angularVelocity": 0.0003789222115571746, - "area": 677.950314, + "angle": 0.00049, + "anglePrev": 0.00021, + "angularSpeed": 0.00049, + "angularVelocity": 0.00038, + "area": 677.95031, "axes": { "#": 1587 }, "bounds": { "#": 1596 }, - "circleRadius": 14.881129972565159, + "circleRadius": 14.88113, "collisionFilter": { "#": 1599 }, @@ -14416,13 +14416,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 292.6404130867056, - "inverseInertia": 0.00341716302766328, - "inverseMass": 1.4750343489036277, + "inertia": 292.64041, + "inverseInertia": 0.00342, + "inverseMass": 1.47503, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.677950314, + "mass": 0.67795, "motion": 0, "parent": null, "position": { @@ -14444,7 +14444,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9258900191976758, + "speed": 2.92589, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14483,36 +14483,36 @@ } ], { - "x": -0.92370596313751, - "y": -0.38310219741500473 + "x": -0.92371, + "y": -0.3831 }, { - "x": -0.7067573826320716, - "y": -0.7074560071799968 + "x": -0.70676, + "y": -0.70746 }, { - "x": -0.38218938506989186, - "y": -0.924084018874852 + "x": -0.38219, + "y": -0.92408 }, { - "x": 0.0004940021553413839, - "y": -0.9999998779809278 + "x": 0.00049, + "y": -1 }, { - "x": 0.38310219741500473, - "y": -0.92370596313751 + "x": 0.3831, + "y": -0.92371 }, { - "x": 0.7074560071799968, - "y": -0.7067573826320716 + "x": 0.70746, + "y": -0.70676 }, { - "x": 0.924084018874852, - "y": -0.38218938506989186 + "x": 0.92408, + "y": -0.38219 }, { - "x": 0.9999998779809278, - "y": 0.0004940021553413839 + "x": 1, + "y": 0.00049 }, { "max": { @@ -14523,12 +14523,12 @@ } }, { - "x": 500.4299971504166, - "y": 108.68496906777835 + "x": 500.43, + "y": 108.68497 }, { - "x": 470.9074230432714, - "y": 76.5848507566267 + "x": 470.90742, + "y": 76.58485 }, { "category": 1, @@ -14545,16 +14545,16 @@ "y": 0 }, { - "x": 485.50385535066005, - "y": 91.18128306401528 + "x": 485.50386, + "y": 91.18128 }, { - "x": 0.08711812332844848, - "y": 0.00043625252057562735 + "x": 0.08712, + "y": 0.00044 }, { - "x": 485.2374407036393, - "y": 88.27228649023404 + "x": 485.23744, + "y": 88.27229 }, { "endCol": 10, @@ -14577,8 +14577,8 @@ "yScale": 1 }, { - "x": 0.2836624284224172, - "y": 2.908999683795898 + "x": 0.28366, + "y": 2.909 }, [ { @@ -14634,127 +14634,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 500.09741948153476, - "y": 94.0914926712511 + "x": 500.09742, + "y": 94.09149 }, { "body": null, "index": 1, "isInternal": false, - "x": 497.8727694310977, - "y": 99.45539434382962 + "x": 497.87277, + "y": 99.45539 }, { "body": null, "index": 2, "isInternal": false, - "x": 493.76574205313835, - "y": 103.55836596409367 + "x": 493.76574, + "y": 103.55837 }, { "body": null, "index": 3, "isInternal": false, - "x": 488.3996450349815, - "y": 105.77771537140387 + "x": 488.39965, + "y": 105.77772 }, { "body": null, "index": 4, "isInternal": false, - "x": 482.5936457434242, - "y": 105.77484719488996 + "x": 482.59365, + "y": 105.77485 }, { "body": null, "index": 5, "isInternal": false, - "x": 477.22974407084564, - "y": 103.55019714445294 + "x": 477.22974, + "y": 103.5502 }, { "body": null, "index": 6, "isInternal": false, - "x": 473.12677245058165, - "y": 99.44316976649355 + "x": 473.12677, + "y": 99.44317 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.9074230432714, - "y": 94.07707274833669 + "x": 470.90742, + "y": 94.07707 }, { "body": null, "index": 8, "isInternal": false, - "x": 470.91029121978534, - "y": 88.27107345677945 + "x": 470.91029, + "y": 88.27107 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.1349412702224, - "y": 82.90717178420093 + "x": 473.13494, + "y": 82.90717 }, { "body": null, "index": 10, "isInternal": false, - "x": 477.24196864818174, - "y": 78.8042001639369 + "x": 477.24197, + "y": 78.8042 }, { "body": null, "index": 11, "isInternal": false, - "x": 482.6080656663386, - "y": 76.5848507566267 + "x": 482.60807, + "y": 76.58485 }, { "body": null, "index": 12, "isInternal": false, - "x": 488.4140649578959, - "y": 76.58771893314061 + "x": 488.41406, + "y": 76.58772 }, { "body": null, "index": 13, "isInternal": false, - "x": 493.77796663047445, - "y": 78.81236898357763 + "x": 493.77797, + "y": 78.81237 }, { "body": null, "index": 14, "isInternal": false, - "x": 497.88093825073844, - "y": 82.919396361537 + "x": 497.88094, + "y": 82.9194 }, { "body": null, "index": 15, "isInternal": false, - "x": 500.10028765804867, - "y": 88.28549337969386 + "x": 500.10029, + "y": 88.28549 }, { "angle": 0, - "anglePrev": -0.000005522899209960065, + "anglePrev": -0.00001, "angularSpeed": 0, - "angularVelocity": -2.4018868329233603e-8, - "area": 460.97596999999996, + "angularVelocity": 0, + "area": 460.97597, "axes": { "#": 1627 }, "bounds": { "#": 1635 }, - "circleRadius": 12.320001714677641, + "circleRadius": 12.32, "collisionFilter": { "#": 1638 }, @@ -14769,13 +14769,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 135.31220425278414, - "inverseInertia": 0.007390316383671093, - "inverseMass": 2.1693104740362066, + "inertia": 135.3122, + "inverseInertia": 0.00739, + "inverseMass": 2.16931, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.46097596999999996, + "mass": 0.46098, "motion": 0, "parent": null, "position": { @@ -14797,7 +14797,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14833,28 +14833,28 @@ } ], { - "x": -0.9009673433676825, - "y": -0.4338869048323313 + "x": -0.90097, + "y": -0.43389 }, { - "x": -0.6235156169322131, - "y": -0.7818108949366475 + "x": -0.62352, + "y": -0.78181 }, { - "x": -0.22252763105305415, - "y": -0.9749263835889949 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.22252763105305415, - "y": -0.9749263835889949 + "x": 0.22253, + "y": -0.97493 }, { - "x": 0.6235156169322131, - "y": -0.7818108949366475 + "x": 0.62352, + "y": -0.78181 }, { - "x": 0.9009673433676825, - "y": -0.4338869048323313 + "x": 0.90097, + "y": -0.43389 }, { "x": 1, @@ -14869,12 +14869,12 @@ } }, { - "x": 524.052715062156, - "y": 104.13302548206136 + "x": 524.05272, + "y": 104.13303 }, { - "x": 500.03071506215593, - "y": 76.58575476702572 + "x": 500.03072, + "y": 76.58575 }, { "category": 1, @@ -14891,16 +14891,16 @@ "y": 0 }, { - "x": 512.041715062156, - "y": 88.90575476702571 + "x": 512.04172, + "y": 88.90575 }, { - "x": 0.9765720497246155, + "x": 0.97657, "y": 0 }, { - "x": 511.7610125036554, - "y": 85.998465756586 + "x": 511.76101, + "y": 85.99847 }, { "endCol": 10, @@ -14923,8 +14923,8 @@ "yScale": 1 }, { - "x": 0.25533650999028623, - "y": 2.9072844365886965 + "x": 0.25534, + "y": 2.90728 }, [ { @@ -14974,113 +14974,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 524.052715062156, - "y": 91.64675476702571 + "x": 524.05272, + "y": 91.64675 }, { "body": null, "index": 1, "isInternal": false, - "x": 521.673715062156, - "y": 96.58675476702571 + "x": 521.67372, + "y": 96.58675 }, { "body": null, "index": 2, "isInternal": false, - "x": 517.386715062156, - "y": 100.0057547670257 + "x": 517.38672, + "y": 100.00575 }, { "body": null, "index": 3, "isInternal": false, - "x": 512.041715062156, - "y": 101.2257547670257 + "x": 512.04172, + "y": 101.22575 }, { "body": null, "index": 4, "isInternal": false, - "x": 506.69671506215593, - "y": 100.0057547670257 + "x": 506.69672, + "y": 100.00575 }, { "body": null, "index": 5, "isInternal": false, - "x": 502.40971506215595, - "y": 96.58675476702571 + "x": 502.40972, + "y": 96.58675 }, { "body": null, "index": 6, "isInternal": false, - "x": 500.03071506215593, - "y": 91.64675476702571 + "x": 500.03072, + "y": 91.64675 }, { "body": null, "index": 7, "isInternal": false, - "x": 500.03071506215593, - "y": 86.16475476702571 + "x": 500.03072, + "y": 86.16475 }, { "body": null, "index": 8, "isInternal": false, - "x": 502.40971506215595, - "y": 81.22475476702571 + "x": 502.40972, + "y": 81.22475 }, { "body": null, "index": 9, "isInternal": false, - "x": 506.69671506215593, - "y": 77.80575476702572 + "x": 506.69672, + "y": 77.80575 }, { "body": null, "index": 10, "isInternal": false, - "x": 512.041715062156, - "y": 76.58575476702572 + "x": 512.04172, + "y": 76.58575 }, { "body": null, "index": 11, "isInternal": false, - "x": 517.386715062156, - "y": 77.80575476702572 + "x": 517.38672, + "y": 77.80575 }, { "body": null, "index": 12, "isInternal": false, - "x": 521.673715062156, - "y": 81.22475476702571 + "x": 521.67372, + "y": 81.22475 }, { "body": null, "index": 13, "isInternal": false, - "x": 524.052715062156, - "y": 86.16475476702571 + "x": 524.05272, + "y": 86.16475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1205.152204, + "area": 1205.1522, "axes": { "#": 1664 }, "bounds": { "#": 1675 }, - "circleRadius": 19.748585390946502, + "circleRadius": 19.74859, "collisionFilter": { "#": 1678 }, @@ -15095,13 +15095,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 924.671990568659, - "inverseInertia": 0.0010814645735997858, - "inverseMass": 0.8297707100239432, + "inertia": 924.67199, + "inverseInertia": 0.00108, + "inverseMass": 0.82977, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.205152204, + "mass": 1.20515, "motion": 0, "parent": null, "position": { @@ -15123,7 +15123,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15168,40 +15168,40 @@ } ], { - "x": -0.9510828167087596, - "y": -0.30893603830134786 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8089600004028265, - "y": -0.5878636897685203 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878636897685203, - "y": -0.8089600004028265 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.30893603830134786, - "y": -0.9510828167087596 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.30893603830134786, - "y": -0.9510828167087596 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5878636897685203, - "y": -0.8089600004028265 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089600004028265, - "y": -0.5878636897685203 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510828167087596, - "y": -0.30893603830134786 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -15216,12 +15216,12 @@ } }, { - "x": 561.8420000000002, - "y": 115.59575476702571 + "x": 561.842, + "y": 115.59575 }, { - "x": 522.8320000000002, - "y": 76.58575476702573 + "x": 522.832, + "y": 76.58575 }, { "category": 1, @@ -15238,16 +15238,16 @@ "y": 0 }, { - "x": 542.3370000000002, - "y": 96.09075476702571 + "x": 542.337, + "y": 96.09075 }, { "x": 0, "y": 0 }, { - "x": 542.3370000000002, - "y": 93.18348405199006 + "x": 542.337, + "y": 93.18348 }, { "endCol": 11, @@ -15271,7 +15271,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -15339,155 +15339,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 561.8420000000002, - "y": 99.17975476702571 + "x": 561.842, + "y": 99.17975 }, { "body": null, "index": 1, "isInternal": false, - "x": 559.9330000000002, - "y": 105.05675476702571 + "x": 559.933, + "y": 105.05675 }, { "body": null, "index": 2, "isInternal": false, - "x": 556.3010000000003, - "y": 110.05475476702571 + "x": 556.301, + "y": 110.05475 }, { "body": null, "index": 3, "isInternal": false, - "x": 551.3030000000002, - "y": 113.68675476702572 + "x": 551.303, + "y": 113.68675 }, { "body": null, "index": 4, "isInternal": false, - "x": 545.4260000000003, - "y": 115.59575476702571 + "x": 545.426, + "y": 115.59575 }, { "body": null, "index": 5, "isInternal": false, - "x": 539.2480000000002, - "y": 115.59575476702571 + "x": 539.248, + "y": 115.59575 }, { "body": null, "index": 6, "isInternal": false, - "x": 533.3710000000002, - "y": 113.68675476702572 + "x": 533.371, + "y": 113.68675 }, { "body": null, "index": 7, "isInternal": false, - "x": 528.3730000000003, - "y": 110.05475476702571 + "x": 528.373, + "y": 110.05475 }, { "body": null, "index": 8, "isInternal": false, - "x": 524.7410000000002, - "y": 105.05675476702571 + "x": 524.741, + "y": 105.05675 }, { "body": null, "index": 9, "isInternal": false, - "x": 522.8320000000002, - "y": 99.17975476702571 + "x": 522.832, + "y": 99.17975 }, { "body": null, "index": 10, "isInternal": false, - "x": 522.8320000000002, - "y": 93.00175476702572 + "x": 522.832, + "y": 93.00175 }, { "body": null, "index": 11, "isInternal": false, - "x": 524.7410000000002, - "y": 87.1247547670257 + "x": 524.741, + "y": 87.12475 }, { "body": null, "index": 12, "isInternal": false, - "x": 528.3730000000003, - "y": 82.12675476702572 + "x": 528.373, + "y": 82.12675 }, { "body": null, "index": 13, "isInternal": false, - "x": 533.3710000000002, - "y": 78.49475476702571 + "x": 533.371, + "y": 78.49475 }, { "body": null, "index": 14, "isInternal": false, - "x": 539.2480000000002, - "y": 76.58575476702573 + "x": 539.248, + "y": 76.58575 }, { "body": null, "index": 15, "isInternal": false, - "x": 545.4260000000003, - "y": 76.58575476702573 + "x": 545.426, + "y": 76.58575 }, { "body": null, "index": 16, "isInternal": false, - "x": 551.3030000000002, - "y": 78.49475476702571 + "x": 551.303, + "y": 78.49475 }, { "body": null, "index": 17, "isInternal": false, - "x": 556.3010000000003, - "y": 82.12675476702572 + "x": 556.301, + "y": 82.12675 }, { "body": null, "index": 18, "isInternal": false, - "x": 559.9330000000002, - "y": 87.1247547670257 + "x": 559.933, + "y": 87.12475 }, { "body": null, "index": 19, "isInternal": false, - "x": 561.8420000000002, - "y": 93.00175476702572 + "x": 561.842, + "y": 93.00175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 362.584524, + "area": 362.58452, "axes": { "#": 1710 }, "bounds": { "#": 1717 }, - "circleRadius": 10.994041495198903, + "circleRadius": 10.99404, "collisionFilter": { "#": 1720 }, @@ -15502,13 +15502,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 83.73095584960791, - "inverseInertia": 0.011943014263400204, - "inverseMass": 2.7579776129661835, + "inertia": 83.73096, + "inverseInertia": 0.01194, + "inverseMass": 2.75798, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.362584524, + "mass": 0.36258, "motion": 0, "parent": null, "position": { @@ -15530,7 +15530,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15563,24 +15563,24 @@ } ], { - "x": -0.8660831831124717, - "y": -0.4998999099117431 + "x": -0.86608, + "y": -0.4999 }, { - "x": -0.4998999099117431, - "y": -0.8660831831124717 + "x": -0.4999, + "y": -0.86608 }, { "x": 0, "y": -1 }, { - "x": 0.4998999099117431, - "y": -0.8660831831124717 + "x": 0.4999, + "y": -0.86608 }, { - "x": 0.8660831831124717, - "y": -0.4998999099117431 + "x": 0.86608, + "y": -0.4999 }, { "x": 1, @@ -15595,12 +15595,12 @@ } }, { - "x": 583.0800000000003, - "y": 97.82375476702572 + "x": 583.08, + "y": 97.82375 }, { - "x": 561.8420000000002, - "y": 76.58575476702573 + "x": 561.842, + "y": 76.58575 }, { "category": 1, @@ -15617,16 +15617,16 @@ "y": 0 }, { - "x": 572.4610000000002, - "y": 87.20475476702572 + "x": 572.461, + "y": 87.20475 }, { "x": 0, "y": 0 }, { - "x": 572.4610000000002, - "y": 84.29748405199007 + "x": 572.461, + "y": 84.29748 }, { "endCol": 12, @@ -15650,7 +15650,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -15694,99 +15694,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 583.0800000000003, - "y": 90.04975476702572 + "x": 583.08, + "y": 90.04975 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.2350000000002, - "y": 94.97875476702572 + "x": 580.235, + "y": 94.97875 }, { "body": null, "index": 2, "isInternal": false, - "x": 575.3060000000003, - "y": 97.82375476702572 + "x": 575.306, + "y": 97.82375 }, { "body": null, "index": 3, "isInternal": false, - "x": 569.6160000000002, - "y": 97.82375476702572 + "x": 569.616, + "y": 97.82375 }, { "body": null, "index": 4, "isInternal": false, - "x": 564.6870000000002, - "y": 94.97875476702572 + "x": 564.687, + "y": 94.97875 }, { "body": null, "index": 5, "isInternal": false, - "x": 561.8420000000002, - "y": 90.04975476702572 + "x": 561.842, + "y": 90.04975 }, { "body": null, "index": 6, "isInternal": false, - "x": 561.8420000000002, - "y": 84.35975476702572 + "x": 561.842, + "y": 84.35975 }, { "body": null, "index": 7, "isInternal": false, - "x": 564.6870000000002, - "y": 79.43075476702572 + "x": 564.687, + "y": 79.43075 }, { "body": null, "index": 8, "isInternal": false, - "x": 569.6160000000002, - "y": 76.58575476702573 + "x": 569.616, + "y": 76.58575 }, { "body": null, "index": 9, "isInternal": false, - "x": 575.3060000000003, - "y": 76.58575476702573 + "x": 575.306, + "y": 76.58575 }, { "body": null, "index": 10, "isInternal": false, - "x": 580.2350000000002, - "y": 79.43075476702572 + "x": 580.235, + "y": 79.43075 }, { "body": null, "index": 11, "isInternal": false, - "x": 583.0800000000003, - "y": 84.35975476702572 + "x": 583.08, + "y": 84.35975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 805.817864, + "area": 805.81786, "axes": { "#": 1744 }, "bounds": { "#": 1754 }, - "circleRadius": 16.1798268175583, + "circleRadius": 16.17983, "collisionFilter": { "#": 1757 }, @@ -15801,13 +15801,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 413.41882770208514, - "inverseInertia": 0.002418854519902545, - "inverseMass": 1.2409752186878795, + "inertia": 413.41883, + "inverseInertia": 0.00242, + "inverseMass": 1.24098, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.805817864, + "mass": 0.80582, "motion": 0, "parent": null, "position": { @@ -15829,7 +15829,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15871,36 +15871,36 @@ } ], { - "x": -0.9396790547219881, - "y": -0.34205741348023866 + "x": -0.93968, + "y": -0.34206 }, { - "x": -0.7659992927826746, - "y": -0.6428414139244937 + "x": -0.766, + "y": -0.64284 }, { - "x": -0.5000818959792287, - "y": -0.8659781159554899 + "x": -0.50008, + "y": -0.86598 }, { - "x": -0.17368381518741813, - "y": -0.9848014684909557 + "x": -0.17368, + "y": -0.9848 }, { - "x": 0.17368381518741813, - "y": -0.9848014684909557 + "x": 0.17368, + "y": -0.9848 }, { - "x": 0.5000818959792287, - "y": -0.8659781159554899 + "x": 0.50008, + "y": -0.86598 }, { - "x": 0.7659992927826746, - "y": -0.6428414139244937 + "x": 0.766, + "y": -0.64284 }, { - "x": 0.9396790547219881, - "y": -0.34205741348023866 + "x": 0.93968, + "y": -0.34206 }, { "x": 1, @@ -15915,12 +15915,12 @@ } }, { - "x": 614.9480000000002, - "y": 108.94575476702573 + "x": 614.948, + "y": 108.94575 }, { - "x": 583.0800000000003, - "y": 76.58575476702573 + "x": 583.08, + "y": 76.58575 }, { "category": 1, @@ -15937,16 +15937,16 @@ "y": 0 }, { - "x": 599.0140000000002, - "y": 92.76575476702573 + "x": 599.014, + "y": 92.76575 }, { "x": 0, "y": 0 }, { - "x": 599.0140000000002, - "y": 89.85848405199008 + "x": 599.014, + "y": 89.85848 }, { "endCol": 12, @@ -15970,7 +15970,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -16032,141 +16032,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 614.9480000000002, - "y": 95.57575476702573 + "x": 614.948, + "y": 95.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.0260000000003, - "y": 100.85575476702573 + "x": 613.026, + "y": 100.85575 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.4140000000002, - "y": 105.15975476702573 + "x": 609.414, + "y": 105.15975 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.5480000000002, - "y": 107.96975476702573 + "x": 604.548, + "y": 107.96975 }, { "body": null, "index": 4, "isInternal": false, - "x": 599.0140000000002, - "y": 108.94575476702573 + "x": 599.014, + "y": 108.94575 }, { "body": null, "index": 5, "isInternal": false, - "x": 593.4800000000002, - "y": 107.96975476702573 + "x": 593.48, + "y": 107.96975 }, { "body": null, "index": 6, "isInternal": false, - "x": 588.6140000000003, - "y": 105.15975476702573 + "x": 588.614, + "y": 105.15975 }, { "body": null, "index": 7, "isInternal": false, - "x": 585.0020000000002, - "y": 100.85575476702573 + "x": 585.002, + "y": 100.85575 }, { "body": null, "index": 8, "isInternal": false, - "x": 583.0800000000003, - "y": 95.57575476702573 + "x": 583.08, + "y": 95.57575 }, { "body": null, "index": 9, "isInternal": false, - "x": 583.0800000000003, - "y": 89.95575476702572 + "x": 583.08, + "y": 89.95575 }, { "body": null, "index": 10, "isInternal": false, - "x": 585.0020000000002, - "y": 84.67575476702572 + "x": 585.002, + "y": 84.67575 }, { "body": null, "index": 11, "isInternal": false, - "x": 588.6140000000003, - "y": 80.37175476702573 + "x": 588.614, + "y": 80.37175 }, { "body": null, "index": 12, "isInternal": false, - "x": 593.4800000000002, - "y": 77.56175476702573 + "x": 593.48, + "y": 77.56175 }, { "body": null, "index": 13, "isInternal": false, - "x": 599.0140000000002, - "y": 76.58575476702573 + "x": 599.014, + "y": 76.58575 }, { "body": null, "index": 14, "isInternal": false, - "x": 604.5480000000002, - "y": 77.56175476702573 + "x": 604.548, + "y": 77.56175 }, { "body": null, "index": 15, "isInternal": false, - "x": 609.4140000000002, - "y": 80.37175476702573 + "x": 609.414, + "y": 80.37175 }, { "body": null, "index": 16, "isInternal": false, - "x": 613.0260000000003, - "y": 84.67575476702572 + "x": 613.026, + "y": 84.67575 }, { "body": null, "index": 17, "isInternal": false, - "x": 614.9480000000002, - "y": 89.95575476702572 + "x": 614.948, + "y": 89.95575 }, { - "angle": 0.04377064596633346, - "anglePrev": 0.04147038709696158, - "angularSpeed": 0.0031176721519219214, - "angularVelocity": 0.002273878345049239, - "area": 1175.440884, + "angle": 0.04377, + "anglePrev": 0.04147, + "angularSpeed": 0.00312, + "angularVelocity": 0.00227, + "area": 1175.44088, "axes": { "#": 1787 }, "bounds": { "#": 1798 }, - "circleRadius": 19.50347222222222, + "circleRadius": 19.50347, "collisionFilter": { "#": 1801 }, @@ -16181,13 +16181,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 879.6410498592595, - "inverseInertia": 0.00113682734583612, - "inverseMass": 0.8507446130315133, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "inverseMass": 0.85074, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1754408840000001, + "mass": 1.17544, "motion": 0, "parent": null, "position": { @@ -16209,7 +16209,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.3502076320904531, + "speed": 0.35021, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16254,44 +16254,44 @@ } ], { - "x": -0.9366518491404511, - "y": -0.3502617785339608 + "x": -0.93665, + "y": -0.35026 }, { - "x": -0.7825176923187831, - "y": -0.6226283491843967 + "x": -0.78252, + "y": -0.62263 }, { - "x": -0.5518289745656848, - "y": -0.8339573027618288 + "x": -0.55183, + "y": -0.83396 }, { - "x": -0.26702949937186615, - "y": -0.9636883554683074 + "x": -0.26703, + "y": -0.96369 }, { - "x": 0.04375667083123741, - "y": -0.9990422182059009 + "x": 0.04376, + "y": -0.99904 }, { - "x": 0.3502617785339608, - "y": -0.9366518491404511 + "x": 0.35026, + "y": -0.93665 }, { - "x": 0.6226283491843967, - "y": -0.7825176923187831 + "x": 0.62263, + "y": -0.78252 }, { - "x": 0.8339573027618288, - "y": -0.5518289745656848 + "x": 0.83396, + "y": -0.55183 }, { - "x": 0.9636883554683074, - "y": -0.26702949937186615 + "x": 0.96369, + "y": -0.26703 }, { - "x": 0.9990422182059009, - "y": 0.04375667083123741 + "x": 0.99904, + "y": 0.04376 }, { "max": { @@ -16302,12 +16302,12 @@ } }, { - "x": 71.63439639885453, - "y": 111.9148370273582 + "x": 71.6344, + "y": 111.91484 }, { - "x": 32.643166817347485, - "y": 72.89919294631918 + "x": 32.64317, + "y": 72.89919 }, { "category": 1, @@ -16324,16 +16324,16 @@ "y": 0 }, { - "x": 52.021218669353864, - "y": 92.27724479832554 + "x": 52.02122, + "y": 92.27724 }, { "x": 0, "y": 0 }, { - "x": 51.8340792681637, - "y": 92.24025332727892 + "x": 51.83408, + "y": 92.24025 }, { "endCol": 1, @@ -16356,8 +16356,8 @@ "yScale": 1 }, { - "x": 0.177917951779186, - "y": 0.048577814253107476 + "x": 0.17792, + "y": 0.04858 }, [ { @@ -16425,147 +16425,147 @@ "body": null, "index": 0, "isInternal": false, - "x": 71.13226731594804, - "y": 96.16820735629388 + "x": 71.13227, + "y": 96.16821 }, { "body": null, "index": 1, "isInternal": false, - "x": 68.99515277379624, - "y": 101.8831680240258 + "x": 68.99515, + "y": 101.88317 }, { "body": null, "index": 2, "isInternal": false, - "x": 65.19556165319784, - "y": 106.65848427703673 + "x": 65.19556, + "y": 106.65848 }, { "body": null, "index": 3, "isInternal": false, - "x": 60.10633504364366, - "y": 110.02602202984747 + "x": 60.10634, + "y": 110.02602 }, { "body": null, "index": 4, "isInternal": false, - "x": 54.226411726877934, - "y": 111.6552966503319 + "x": 54.22641, + "y": 111.6553 }, { "body": null, "index": 5, "isInternal": false, - "x": 48.13025611138553, - "y": 111.38829344491971 + "x": 48.13026, + "y": 111.38829 }, { "body": null, "index": 6, "isInternal": false, - "x": 42.41529544365357, - "y": 109.2511789027679 + "x": 42.4153, + "y": 109.25118 }, { "body": null, "index": 7, "isInternal": false, - "x": 37.639979190642705, - "y": 105.45158778216948 + "x": 37.63998, + "y": 105.45159 }, { "body": null, "index": 8, "isInternal": false, - "x": 34.27244143783195, - "y": 100.36236117261535 + "x": 34.27244, + "y": 100.36236 }, { "body": null, "index": 9, "isInternal": false, - "x": 32.643166817347485, - "y": 94.48243785584961 + "x": 32.64317, + "y": 94.48244 }, { "body": null, "index": 10, "isInternal": false, - "x": 32.91017002275971, - "y": 88.3862822403572 + "x": 32.91017, + "y": 88.38628 }, { "body": null, "index": 11, "isInternal": false, - "x": 35.04728456491149, - "y": 82.67132157262527 + "x": 35.04728, + "y": 82.67132 }, { "body": null, "index": 12, "isInternal": false, - "x": 38.84687568550987, - "y": 77.89600531961435 + "x": 38.84688, + "y": 77.89601 }, { "body": null, "index": 13, "isInternal": false, - "x": 43.93610229506405, - "y": 74.52846756680361 + "x": 43.9361, + "y": 74.52847 }, { "body": null, "index": 14, "isInternal": false, - "x": 49.81602561182978, - "y": 72.89919294631918 + "x": 49.81603, + "y": 72.89919 }, { "body": null, "index": 15, "isInternal": false, - "x": 55.912181227322186, - "y": 73.16619615173137 + "x": 55.91218, + "y": 73.1662 }, { "body": null, "index": 16, "isInternal": false, - "x": 61.62714189505416, - "y": 75.30331069388315 + "x": 61.62714, + "y": 75.30331 }, { "body": null, "index": 17, "isInternal": false, - "x": 66.40245814806504, - "y": 79.1029018144816 + "x": 66.40246, + "y": 79.1029 }, { "body": null, "index": 18, "isInternal": false, - "x": 69.76999590087578, - "y": 84.19212842403573 + "x": 69.77, + "y": 84.19213 }, { "body": null, "index": 19, "isInternal": false, - "x": 71.39927052136026, - "y": 90.07205174080147 + "x": 71.39927, + "y": 90.07205 }, { - "angle": -0.025929161884638185, - "anglePrev": -0.024811539158458233, - "angularSpeed": 0.0007189211363093184, - "angularVelocity": -0.0020048564168168546, + "angle": -0.02593, + "anglePrev": -0.02481, + "angularSpeed": 0.00072, + "angularVelocity": -0.002, "area": 568.46124, "axes": { "#": 1833 @@ -16573,7 +16573,7 @@ "bounds": { "#": 1841 }, - "circleRadius": 13.68102709190672, + "circleRadius": 13.68103, "collisionFilter": { "#": 1844 }, @@ -16588,13 +16588,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 205.77002535077511, - "inverseInertia": 0.004859794317929956, - "inverseMass": 1.7591348884226479, + "inertia": 205.77003, + "inverseInertia": 0.00486, + "inverseMass": 1.75913, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.56846124, + "mass": 0.56846, "motion": 0, "parent": null, "position": { @@ -16616,7 +16616,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.40021104775196376, + "speed": 0.40021, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16652,32 +16652,32 @@ } ], { - "x": -0.9119100381626636, - "y": -0.41039015862733486 + "x": -0.91191, + "y": -0.41039 }, { - "x": -0.6435528056786566, - "y": -0.7654017156390028 + "x": -0.64355, + "y": -0.7654 }, { - "x": -0.24774512964233306, - "y": -0.9688252426204135 + "x": -0.24775, + "y": -0.96883 }, { - "x": 0.1971929384609448, - "y": -0.9803647000076744 + "x": 0.19719, + "y": -0.98036 }, { - "x": 0.6030129892472199, - "y": -0.7977313675662578 + "x": 0.60301, + "y": -0.79773 }, { - "x": 0.8894115115653841, - "y": -0.4571073868304673 + "x": 0.88941, + "y": -0.45711 }, { - "x": 0.9996638581155628, - "y": -0.025926256527081016 + "x": 0.99966, + "y": -0.02593 }, { "max": { @@ -16688,12 +16688,12 @@ } }, { - "x": 95.48454466351713, - "y": 117.97490905061434 + "x": 95.48454, + "y": 117.97491 }, { - "x": 68.41917558106158, - "y": 90.30221580531742 + "x": 68.41918, + "y": 90.30222 }, { "category": 1, @@ -16710,16 +16710,16 @@ "y": 0 }, { - "x": 81.83161164547538, - "y": 103.97861704819643 + "x": 81.83161, + "y": 103.97862 }, { "x": 0, "y": 0 }, { - "x": 81.81480981549421, - "y": 104.07022326505883 + "x": 81.81481, + "y": 104.07022 }, { "endCol": 1, @@ -16742,8 +16742,8 @@ "yScale": 1 }, { - "x": -0.07103890197879537, - "y": 0.062100257382553536 + "x": -0.07104, + "y": 0.0621 }, [ { @@ -16793,113 +16793,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 95.24404770988917, - "y": 106.67578942274196 + "x": 95.24405, + "y": 106.67579 }, { "body": null, "index": 1, "isInternal": false, - "x": 92.74516724005542, - "y": 112.22844251810852 + "x": 92.74517, + "y": 112.22844 }, { "body": null, "index": 2, "isInternal": false, - "x": 88.08518334520218, - "y": 116.1465755045841 + "x": 88.08518, + "y": 116.14658 }, { "body": null, "index": 3, "isInternal": false, - "x": 82.18630876102236, - "y": 117.65501829107541 + "x": 82.18631, + "y": 117.65502 }, { "body": null, "index": 4, "isInternal": false, - "x": 76.21717402165417, - "y": 116.45437202207361 + "x": 76.21717, + "y": 116.45437 }, { "body": null, "index": 5, "isInternal": false, - "x": 71.36035798724734, - "y": 112.78305699773583 + "x": 71.36036, + "y": 112.78306 }, { "body": null, "index": 6, "isInternal": false, - "x": 68.57701463079844, - "y": 107.3673982418584 + "x": 68.57701, + "y": 107.3674 }, { "body": null, "index": 7, "isInternal": false, - "x": 68.41917558106158, - "y": 101.28144467365087 + "x": 68.41918, + "y": 101.28144 }, { "body": null, "index": 8, "isInternal": false, - "x": 70.91805605089533, - "y": 95.72879157828433 + "x": 70.91806, + "y": 95.72879 }, { "body": null, "index": 9, "isInternal": false, - "x": 75.57803994574857, - "y": 91.81065859180875 + "x": 75.57804, + "y": 91.81066 }, { "body": null, "index": 10, "isInternal": false, - "x": 81.4769145299284, - "y": 90.30221580531742 + "x": 81.47691, + "y": 90.30222 }, { "body": null, "index": 11, "isInternal": false, - "x": 87.44604926929658, - "y": 91.50286207431924 + "x": 87.44605, + "y": 91.50286 }, { "body": null, "index": 12, "isInternal": false, - "x": 92.30286530370341, - "y": 95.17417709865703 + "x": 92.30287, + "y": 95.17418 }, { "body": null, "index": 13, "isInternal": false, - "x": 95.08620866015231, - "y": 100.58983585453443 + "x": 95.08621, + "y": 100.58984 }, { - "angle": 0.05314044815593639, - "anglePrev": 0.04100389910960898, - "angularSpeed": 0.010798669326103828, - "angularVelocity": 0.011582935803483373, - "area": 366.82313200000004, + "angle": 0.05314, + "anglePrev": 0.041, + "angularSpeed": 0.0108, + "angularVelocity": 0.01158, + "area": 366.82313, "axes": { "#": 1870 }, "bounds": { "#": 1877 }, - "circleRadius": 11.058170438957475, + "circleRadius": 11.05817, "collisionFilter": { "#": 1880 }, @@ -16914,13 +16914,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 85.70002548110048, - "inverseInertia": 0.011668607965822963, - "inverseMass": 2.726109431942803, + "inertia": 85.70003, + "inverseInertia": 0.01167, + "inverseMass": 2.72611, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.36682313200000005, + "mass": 0.36682, "motion": 0, "parent": null, "position": { @@ -16942,7 +16942,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.38083016234244416, + "speed": 0.38083, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16975,28 +16975,28 @@ } ], { - "x": -0.8382390189570633, - "y": -0.5453029865110777 + "x": -0.83824, + "y": -0.5453 }, { - "x": -0.45330494435829016, - "y": -0.8913555000224813 + "x": -0.4533, + "y": -0.89136 }, { - "x": 0.053115441071121205, - "y": -0.9985883786224533 + "x": 0.05312, + "y": -0.99859 }, { - "x": 0.5453029865110777, - "y": -0.8382390189570633 + "x": 0.5453, + "y": -0.83824 }, { - "x": 0.8913555000224813, - "y": -0.45330494435829016 + "x": 0.89136, + "y": -0.4533 }, { - "x": 0.9985883786224533, - "y": 0.053115441071121205 + "x": 0.99859, + "y": 0.05312 }, { "max": { @@ -17007,12 +17007,12 @@ } }, { - "x": 115.83487500564794, - "y": 121.67308308549482 + "x": 115.83488, + "y": 121.67308 }, { - "x": 93.92275713131782, - "y": 99.77505464703896 + "x": 93.92276, + "y": 99.77505 }, { "category": 1, @@ -17029,16 +17029,16 @@ "y": 0 }, { - "x": 104.7406959957298, - "y": 110.59299351145096 + "x": 104.7407, + "y": 110.59299 }, { "x": 0, "y": 0 }, { - "x": 104.77626587058091, - "y": 110.53521641558727 + "x": 104.77627, + "y": 110.53522 }, { "endCol": 2, @@ -17061,8 +17061,8 @@ "yScale": 1 }, { - "x": 0.1664464128912897, - "y": 0.11616606951115216 + "x": 0.16645, + "y": 0.11617 }, [ { @@ -17106,99 +17106,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 115.25460207545069, - "y": 114.01827947714905 + "x": 115.2546, + "y": 114.01828 }, { "body": null, "index": 1, "isInternal": false, - "x": 112.13334889444366, - "y": 118.81626567763502 + "x": 112.13335, + "y": 118.81627 }, { "body": null, "index": 2, "isInternal": false, - "x": 107.0313299092666, - "y": 121.41093237586296 + "x": 107.03133, + "y": 121.41093 }, { "body": null, "index": 3, "isInternal": false, - "x": 101.3154100300317, - "y": 121.10689959117185 + "x": 101.31541, + "y": 121.1069 }, { "body": null, "index": 4, "isInternal": false, - "x": 96.51742382954573, - "y": 117.98564641016482 + "x": 96.51742, + "y": 117.98565 }, { "body": null, "index": 5, "isInternal": false, - "x": 93.92275713131782, - "y": 112.88362742498776 + "x": 93.92276, + "y": 112.88363 }, { "body": null, "index": 6, "isInternal": false, - "x": 94.2267899160089, - "y": 107.16770754575286 + "x": 94.22679, + "y": 107.16771 }, { "body": null, "index": 7, "isInternal": false, - "x": 97.34804309701593, - "y": 102.3697213452669 + "x": 97.34804, + "y": 102.36972 }, { "body": null, "index": 8, "isInternal": false, - "x": 102.45006208219299, - "y": 99.77505464703896 + "x": 102.45006, + "y": 99.77505 }, { "body": null, "index": 9, "isInternal": false, - "x": 108.16598196142789, - "y": 100.07908743173006 + "x": 108.16598, + "y": 100.07909 }, { "body": null, "index": 10, "isInternal": false, - "x": 112.96396816191385, - "y": 103.2003406127371 + "x": 112.96397, + "y": 103.20034 }, { "body": null, "index": 11, "isInternal": false, - "x": 115.55863486014177, - "y": 108.30235959791415 + "x": 115.55863, + "y": 108.30236 }, { - "angle": 0.2813430533495222, - "anglePrev": 0.2593222475320925, - "angularSpeed": 0.03764259134380586, - "angularVelocity": 0.02196977567782271, - "area": 389.07123600000006, + "angle": 0.28134, + "anglePrev": 0.25932, + "angularSpeed": 0.03764, + "angularVelocity": 0.02197, + "area": 389.07124, "axes": { "#": 1904 }, "bounds": { "#": 1911 }, - "circleRadius": 11.387988683127572, + "circleRadius": 11.38799, "collisionFilter": { "#": 1914 }, @@ -17213,13 +17213,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 96.41081889936525, - "inverseInertia": 0.010372279910243391, - "inverseMass": 2.5702234127634145, + "inertia": 96.41082, + "inverseInertia": 0.01037, + "inverseMass": 2.57022, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.38907123600000004, + "mass": 0.38907, "motion": 0, "parent": null, "position": { @@ -17241,7 +17241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2613716662720973, + "speed": 0.26137, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17274,28 +17274,28 @@ } ], { - "x": -0.6932537972342897, - "y": -0.7206935358529579 + "x": -0.69325, + "y": -0.72069 }, { - "x": -0.239757540577199, - "y": -0.9708327980328915 + "x": -0.23976, + "y": -0.97083 }, { - "x": 0.27764614765751516, - "y": -0.9606834112708211 + "x": 0.27765, + "y": -0.96068 }, { - "x": 0.7206935358529579, - "y": -0.6932537972342897 + "x": 0.72069, + "y": -0.69325 }, { - "x": 0.9708327980328915, - "y": -0.239757540577199 + "x": 0.97083, + "y": -0.23976 }, { - "x": 0.9606834112708211, - "y": 0.27764614765751516 + "x": 0.96068, + "y": 0.27765 }, { "max": { @@ -17306,12 +17306,12 @@ } }, { - "x": 137.30848973514372, - "y": 126.08624047044007 + "x": 137.30849, + "y": 126.08624 }, { - "x": 114.37942012551586, - "y": 103.106237764446 + "x": 114.37942, + "y": 103.10624 }, { "category": 1, @@ -17328,16 +17328,16 @@ "y": 0 }, { - "x": 125.76516084664159, - "y": 114.49197848557175 + "x": 125.76516, + "y": 114.49198 }, { "x": 0, "y": 0 }, { - "x": 125.86564089428086, - "y": 114.56146157403076 + "x": 125.86564, + "y": 114.56146 }, { "endCol": 2, @@ -17360,8 +17360,8 @@ "yScale": 1 }, { - "x": -0.12181234691811937, - "y": 0.004308081879614178 + "x": -0.12181, + "y": 0.00431 }, [ { @@ -17405,99 +17405,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 135.51445517347392, - "y": 120.37722012281952 + "x": 135.51446, + "y": 120.37722 }, { "body": null, "index": 1, "isInternal": false, - "x": 131.26565993051952, - "y": 124.46424642362163 + "x": 131.26566, + "y": 124.46425 }, { "body": null, "index": 2, "isInternal": false, - "x": 125.54218723542405, - "y": 125.87771920669749 + "x": 125.54219, + "y": 125.87772 }, { "body": null, "index": 3, "isInternal": false, - "x": 119.87991920939382, - "y": 124.24127281240408 + "x": 119.87992, + "y": 124.24127 }, { "body": null, "index": 4, "isInternal": false, - "x": 115.7928929085917, - "y": 119.9924775694497 + "x": 115.79289, + "y": 119.99248 }, { "body": null, "index": 5, "isInternal": false, - "x": 114.37942012551586, - "y": 114.2690048743542 + "x": 114.37942, + "y": 114.269 }, { "body": null, "index": 6, "isInternal": false, - "x": 116.01586651980926, - "y": 108.60673684832398 + "x": 116.01587, + "y": 108.60674 }, { "body": null, "index": 7, "isInternal": false, - "x": 120.26466176276364, - "y": 104.51971054752185 + "x": 120.26466, + "y": 104.51971 }, { "body": null, "index": 8, "isInternal": false, - "x": 125.98813445785913, - "y": 103.106237764446 + "x": 125.98813, + "y": 103.10624 }, { "body": null, "index": 9, "isInternal": false, - "x": 131.65040248388937, - "y": 104.74268415873942 + "x": 131.6504, + "y": 104.74268 }, { "body": null, "index": 10, "isInternal": false, - "x": 135.73742878469147, - "y": 108.9914794016938 + "x": 135.73743, + "y": 108.99148 }, { "body": null, "index": 11, "isInternal": false, - "x": 137.15090156776733, - "y": 114.7149520967893 + "x": 137.1509, + "y": 114.71495 }, { - "angle": 0.02120241345606209, - "anglePrev": 0.0162739677103303, - "angularSpeed": 0.0055031788610107775, - "angularVelocity": 0.005369601886186879, - "area": 815.3892460000001, + "angle": 0.0212, + "anglePrev": 0.01627, + "angularSpeed": 0.0055, + "angularVelocity": 0.00537, + "area": 815.38925, "axes": { "#": 1938 }, "bounds": { "#": 1948 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1951 }, @@ -17512,13 +17512,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 423.2982063032686, - "inverseInertia": 0.0023624007498948816, - "inverseMass": 1.2264081294984357, + "inertia": 423.29821, + "inverseInertia": 0.00236, + "inverseMass": 1.22641, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8153892460000001, + "mass": 0.81539, "motion": 0, "parent": null, "position": { @@ -17540,7 +17540,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.38900784080585105, + "speed": 0.38901, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17582,40 +17582,40 @@ } ], { - "x": -0.9322549581328102, - "y": -0.36180200806075197 + "x": -0.93225, + "y": -0.3618 }, { - "x": -0.7522715514729097, - "y": -0.6588531800367525 + "x": -0.75227, + "y": -0.65885 }, { - "x": -0.4815097664115309, - "y": -0.8764407252349201 + "x": -0.48151, + "y": -0.87644 }, { - "x": -0.15262498871412764, - "y": -0.9882841761457141 + "x": -0.15262, + "y": -0.98828 }, { - "x": 0.19438324742665886, - "y": -0.9809256613627082 + "x": 0.19438, + "y": -0.98093 }, { - "x": 0.5182310932265638, - "y": -0.8552406293045252 + "x": 0.51823, + "y": -0.85524 }, { - "x": 0.7795254797658974, - "y": -0.626370518459919 + "x": 0.77953, + "y": -0.62637 }, { - "x": 0.9467544615571333, - "y": -0.32195650253048613 + "x": 0.94675, + "y": -0.32196 }, { - "x": 0.9997752372520393, - "y": 0.02120082492802112 + "x": 0.99978, + "y": 0.0212 }, { "max": { @@ -17626,12 +17626,12 @@ } }, { - "x": 168.67598938384228, - "y": 131.08171321960214 + "x": 168.67599, + "y": 131.08171 }, { - "x": 136.2844000742719, - "y": 98.22026176231114 + "x": 136.2844, + "y": 98.22026 }, { "category": 1, @@ -17648,16 +17648,16 @@ "y": 0 }, { - "x": 152.36871110819413, - "y": 114.49160374858808 + "x": 152.36871, + "y": 114.4916 }, { "x": 0, "y": 0 }, { - "x": 152.35822345555468, - "y": 114.50393653684944 + "x": 152.35822, + "y": 114.50394 }, { "endCol": 3, @@ -17680,8 +17680,8 @@ "yScale": 1 }, { - "x": -0.13232455451094438, - "y": -0.015363743846307898 + "x": -0.13232, + "y": -0.01536 }, [ { @@ -17743,141 +17743,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 168.3331950796232, - "y": 117.65677539100865 + "x": 168.3332, + "y": 117.65678 }, { "body": null, "index": 1, "isInternal": false, - "x": 166.2880107639974, - "y": 122.92660025670561 + "x": 166.28801, + "y": 122.9266 }, { "body": null, "index": 2, "isInternal": false, - "x": 162.56402775512242, - "y": 127.1786044370435 + "x": 162.56403, + "y": 127.1786 }, { "body": null, "index": 3, "isInternal": false, - "x": 157.6102144375271, - "y": 129.9001912194951 + "x": 157.61021, + "y": 129.90019 }, { "body": null, "index": 4, "isInternal": false, - "x": 152.02366768249058, - "y": 130.7629457348651 + "x": 152.02367, + "y": 130.76295 }, { "body": null, "index": 5, "isInternal": false, - "x": 146.47871694596282, - "y": 129.66414123474652 + "x": 146.47872, + "y": 129.66414 }, { "body": null, "index": 6, "isInternal": false, - "x": 141.64473069086077, - "y": 126.73499837624958 + "x": 141.64473, + "y": 126.735 }, { "body": null, "index": 7, "isInternal": false, - "x": 138.10434682586245, - "y": 122.32894900198472 + "x": 138.10435, + "y": 122.32895 }, { "body": null, "index": 8, "isInternal": false, - "x": 136.2844000742719, - "y": 116.977161747116 + "x": 136.2844, + "y": 116.97716 }, { "body": null, "index": 9, "isInternal": false, - "x": 136.40422713676506, - "y": 111.3264321061675 + "x": 136.40423, + "y": 111.32643 }, { "body": null, "index": 10, "isInternal": false, - "x": 138.44941145239088, - "y": 106.05660724047054 + "x": 138.44941, + "y": 106.05661 }, { "body": null, "index": 11, "isInternal": false, - "x": 142.17339446126584, - "y": 101.80460306013268 + "x": 142.17339, + "y": 101.8046 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.12720777886116, - "y": 99.08301627768111 + "x": 147.12721, + "y": 99.08302 }, { "body": null, "index": 13, "isInternal": false, - "x": 152.71375453389768, - "y": 98.22026176231114 + "x": 152.71375, + "y": 98.22026 }, { "body": null, "index": 14, "isInternal": false, - "x": 158.25870527042545, - "y": 99.3190662624297 + "x": 158.25871, + "y": 99.31907 }, { "body": null, "index": 15, "isInternal": false, - "x": 163.0926915255275, - "y": 102.2482091209266 + "x": 163.09269, + "y": 102.24821 }, { "body": null, "index": 16, "isInternal": false, - "x": 166.63307539052582, - "y": 106.65425849519143 + "x": 166.63308, + "y": 106.65426 }, { "body": null, "index": 17, "isInternal": false, - "x": 168.45302214211637, - "y": 112.00604575006015 + "x": 168.45302, + "y": 112.00605 }, { - "angle": -0.039860708403462806, - "anglePrev": -0.037082442396971387, - "angularSpeed": 0.00043045034690423003, - "angularVelocity": -0.0030055051207861644, - "area": 317.56207599999993, + "angle": -0.03986, + "anglePrev": -0.03708, + "angularSpeed": 0.00043, + "angularVelocity": -0.00301, + "area": 317.56208, "axes": { "#": 1981 }, "bounds": { "#": 1988 }, - "circleRadius": 10.288365912208505, + "circleRadius": 10.28837, "collisionFilter": { "#": 1991 }, @@ -17892,13 +17892,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 64.22805737291344, - "inverseInertia": 0.015569519628998225, - "inverseMass": 3.148990624434639, + "inertia": 64.22806, + "inverseInertia": 0.01557, + "inverseMass": 3.14899, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.3175620759999999, + "mass": 0.31756, "motion": 0, "parent": null, "position": { @@ -17920,7 +17920,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6798000641973672, + "speed": 0.6798, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17953,28 +17953,28 @@ } ], { - "x": -0.8852428610706323, - "y": -0.4651290970510023 + "x": -0.88524, + "y": -0.46513 }, { - "x": -0.5341498992675219, - "y": -0.8453897829477808 + "x": -0.53415, + "y": -0.84539 }, { - "x": -0.03985015362102776, - "y": -0.9992056671458485 + "x": -0.03985, + "y": -0.99921 }, { - "x": 0.4651290970510023, - "y": -0.8852428610706323 + "x": 0.46513, + "y": -0.88524 }, { - "x": 0.8453897829477808, - "y": -0.5341498992675219 + "x": 0.84539, + "y": -0.53415 }, { - "x": 0.9992056671458485, - "y": -0.03985015362102776 + "x": 0.99921, + "y": -0.03985 }, { "max": { @@ -17985,12 +17985,12 @@ } }, { - "x": 187.62602179407702, - "y": 127.15358427243899 + "x": 187.62602, + "y": 127.15358 }, { - "x": 167.3427385749141, - "y": 106.43484956451567 + "x": 167.34274, + "y": 106.43485 }, { "category": 1, @@ -18007,16 +18007,16 @@ "y": 0 }, { - "x": 177.58979491488878, - "y": 116.47107644370388 + "x": 177.58979, + "y": 116.47108 }, { "x": 0, "y": 0 }, { - "x": 177.85391002018164, - "y": 116.6245028434941 + "x": 177.85391, + "y": 116.6245 }, { "endCol": 3, @@ -18039,8 +18039,8 @@ "yScale": 1 }, { - "x": 0.04026741962849201, - "y": -0.06593329523840907 + "x": 0.04027, + "y": -0.06593 }, [ { @@ -18084,99 +18084,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 187.62602179407702, - "y": 118.7359303086275 + "x": 187.62602, + "y": 118.73593 }, { "body": null, "index": 1, "isInternal": false, - "x": 185.1489260109678, - "y": 123.45038780459696 + "x": 185.14893, + "y": 123.45039 }, { "body": null, "index": 2, "isInternal": false, - "x": 180.64671043318396, - "y": 126.29506140470654 + "x": 180.64671, + "y": 126.29506 }, { "body": null, "index": 3, "isInternal": false, - "x": 175.32494104996516, - "y": 126.50730332289208 + "x": 175.32494, + "y": 126.5073 }, { "body": null, "index": 4, "isInternal": false, - "x": 170.6104835539957, - "y": 124.03020753978291 + "x": 170.61048, + "y": 124.03021 }, { "body": null, "index": 5, "isInternal": false, - "x": 167.76580995388616, - "y": 119.52799196199905 + "x": 167.76581, + "y": 119.52799 }, { "body": null, "index": 6, "isInternal": false, - "x": 167.55356803570055, - "y": 114.20622257878026 + "x": 167.55357, + "y": 114.20622 }, { "body": null, "index": 7, "isInternal": false, - "x": 170.03066381880976, - "y": 109.4917650828108 + "x": 170.03066, + "y": 109.49177 }, { "body": null, "index": 8, "isInternal": false, - "x": 174.53287939659361, - "y": 106.64709148270121 + "x": 174.53288, + "y": 106.64709 }, { "body": null, "index": 9, "isInternal": false, - "x": 179.8546487798124, - "y": 106.43484956451567 + "x": 179.85465, + "y": 106.43485 }, { "body": null, "index": 10, "isInternal": false, - "x": 184.56910627578188, - "y": 108.91194534762485 + "x": 184.56911, + "y": 108.91195 }, { "body": null, "index": 11, "isInternal": false, - "x": 187.4137798758914, - "y": 113.41416092540871 + "x": 187.41378, + "y": 113.41416 }, { - "angle": -0.034334007930191944, - "anglePrev": -0.027317370611307873, - "angularSpeed": 0.008747927158259354, - "angularVelocity": -0.006978061588162391, - "area": 1084.703512, + "angle": -0.03433, + "anglePrev": -0.02732, + "angularSpeed": 0.00875, + "angularVelocity": -0.00698, + "area": 1084.70351, "axes": { "#": 2015 }, "bounds": { "#": 2026 }, - "circleRadius": 18.735468106995885, + "circleRadius": 18.73547, "collisionFilter": { "#": 2029 }, @@ -18191,13 +18191,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 749.0761960708147, - "inverseInertia": 0.0013349776768309747, - "inverseMass": 0.9219109083146398, + "inertia": 749.0762, + "inverseInertia": 0.00133, + "inverseMass": 0.92191, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0847035120000001, + "mass": 1.0847, "motion": 0, "parent": null, "position": { @@ -18219,7 +18219,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.35855499957273823, + "speed": 0.35855, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18264,44 +18264,44 @@ } ], { - "x": -0.9610780491313659, - "y": -0.27627700497480473 + "x": -0.96108, + "y": -0.27628 }, { - "x": -0.8287377005055119, - "y": -0.5596372251386043 + "x": -0.82874, + "y": -0.55964 }, { - "x": -0.6151813770863696, - "y": -0.7883856120491533 + "x": -0.61518, + "y": -0.78839 }, { - "x": -0.34156936726130854, - "y": -0.9398565674339405 + "x": -0.34157, + "y": -0.93986 }, { - "x": -0.034327262701773345, - "y": -0.999410645848544 + "x": -0.03433, + "y": -0.99941 }, { - "x": 0.27627700497480473, - "y": -0.9610780491313659 + "x": 0.27628, + "y": -0.96108 }, { - "x": 0.5596372251386043, - "y": -0.8287377005055119 + "x": 0.55964, + "y": -0.82874 }, { - "x": 0.7883856120491533, - "y": -0.6151813770863696 + "x": 0.78839, + "y": -0.61518 }, { - "x": 0.9398565674339405, - "y": -0.34156936726130854 + "x": 0.93986, + "y": -0.34157 }, { - "x": 0.999410645848544, - "y": -0.034327262701773345 + "x": 0.99941, + "y": -0.03433 }, { "max": { @@ -18312,12 +18312,12 @@ } }, { - "x": 223.55163604906232, - "y": 141.1801800041445 + "x": 223.55164, + "y": 141.18018 }, { - "x": 186.34237396241787, - "y": 103.63276033915706 + "x": 186.34237, + "y": 103.63276 }, { "category": 1, @@ -18334,16 +18334,16 @@ "y": 0 }, { - "x": 204.95692884065613, - "y": 122.22746754756326 + "x": 204.95693, + "y": 122.22747 }, { "x": 0, "y": 0 }, { - "x": 205.10831361500632, - "y": 122.19910363764514 + "x": 205.10831, + "y": 122.1991 }, { "endCol": 4, @@ -18366,8 +18366,8 @@ "yScale": 1 }, { - "x": -0.19715298118597957, - "y": 0.0525544397145552 + "x": -0.19715, + "y": 0.05255 }, [ { @@ -18435,155 +18435,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 223.55163604906232, - "y": 124.52151415424903 + "x": 223.55164, + "y": 124.52151 }, { "body": null, "index": 1, "isInternal": false, - "x": 221.93207844834717, - "y": 130.15542950487026 + "x": 221.93208, + "y": 130.15543 }, { "body": null, "index": 2, "isInternal": false, - "x": 218.6518886531307, - "y": 135.01289220749175 + "x": 218.65189, + "y": 135.01289 }, { "body": null, "index": 3, "isInternal": false, - "x": 214.03094079052457, - "y": 138.6186417621718 + "x": 214.03094, + "y": 138.61864 }, { "body": null, "index": 4, "isInternal": false, - "x": 208.52142743993454, - "y": 140.62094834201167 + "x": 208.52143, + "y": 140.62095 }, { "body": null, "index": 5, "isInternal": false, - "x": 202.66288223397035, - "y": 140.82217475596948 + "x": 202.66288, + "y": 140.82217 }, { "body": null, "index": 6, "isInternal": false, - "x": 197.02896688334914, - "y": 139.20261715525436 + "x": 197.02897, + "y": 139.20262 }, { "body": null, "index": 7, "isInternal": false, - "x": 192.17150418072774, - "y": 135.92242736003791 + "x": 192.1715, + "y": 135.92243 }, { "body": null, "index": 8, "isInternal": false, - "x": 188.56575462604766, - "y": 131.3014794974317 + "x": 188.56575, + "y": 131.30148 }, { "body": null, "index": 9, "isInternal": false, - "x": 186.56344804620775, - "y": 125.79196614684167 + "x": 186.56345, + "y": 125.79197 }, { "body": null, "index": 10, "isInternal": false, - "x": 186.36222163224994, - "y": 119.9334209408775 + "x": 186.36222, + "y": 119.93342 }, { "body": null, "index": 11, "isInternal": false, - "x": 187.9817792329651, - "y": 114.29950559025625 + "x": 187.98178, + "y": 114.29951 }, { "body": null, "index": 12, "isInternal": false, - "x": 191.26196902818157, - "y": 109.44204288763483 + "x": 191.26197, + "y": 109.44204 }, { "body": null, "index": 13, "isInternal": false, - "x": 195.8829168907877, - "y": 105.8362933329548 + "x": 195.88292, + "y": 105.83629 }, { "body": null, "index": 14, "isInternal": false, - "x": 201.39243024137772, - "y": 103.83398675311487 + "x": 201.39243, + "y": 103.83399 }, { "body": null, "index": 15, "isInternal": false, - "x": 207.25097544734192, - "y": 103.63276033915706 + "x": 207.25098, + "y": 103.63276 }, { "body": null, "index": 16, "isInternal": false, - "x": 212.88489079796312, - "y": 105.25231793987224 + "x": 212.88489, + "y": 105.25232 }, { "body": null, "index": 17, "isInternal": false, - "x": 217.74235350058453, - "y": 108.53250773508864 + "x": 217.74235, + "y": 108.53251 }, { "body": null, "index": 18, "isInternal": false, - "x": 221.3481030552646, - "y": 113.15345559769484 + "x": 221.3481, + "y": 113.15346 }, { "body": null, "index": 19, "isInternal": false, - "x": 223.3504096351045, - "y": 118.66296894828486 + "x": 223.35041, + "y": 118.66297 }, { - "angle": -0.03730134647387984, - "anglePrev": -0.04139697975855535, - "angularSpeed": 0.005388375272203403, - "angularVelocity": 0.004004482363088618, - "area": 445.4528199999999, + "angle": -0.0373, + "anglePrev": -0.0414, + "angularSpeed": 0.00539, + "angularVelocity": 0.004, + "area": 445.45282, "axes": { "#": 2061 }, "bounds": { "#": 2069 }, - "circleRadius": 12.110553840877916, + "circleRadius": 12.11055, "collisionFilter": { "#": 2072 }, @@ -18598,13 +18598,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 126.35249452584083, - "inverseInertia": 0.00791436689677295, - "inverseMass": 2.2449066547608796, + "inertia": 126.35249, + "inverseInertia": 0.00791, + "inverseMass": 2.24491, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4454528199999999, + "mass": 0.44545, "motion": 0, "parent": null, "position": { @@ -18626,7 +18626,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7398940661889744, + "speed": 0.73989, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18662,32 +18662,32 @@ } ], { - "x": -0.9164911645370909, - "y": -0.40005492788546765 + "x": -0.91649, + "y": -0.40005 }, { - "x": -0.6522395998221585, - "y": -0.7580128656057432 + "x": -0.65224, + "y": -0.75801 }, { - "x": -0.25882526126491595, - "y": -0.9659241606519363 + "x": -0.25883, + "y": -0.96592 }, { - "x": 0.18611162199659187, - "y": -0.9825286072974146 + "x": 0.18611, + "y": -0.98253 }, { - "x": 0.5939280411536728, - "y": -0.8045181675582974 + "x": 0.59393, + "y": -0.80452 }, { - "x": 0.8841244546209885, - "y": -0.4672514834017541 + "x": 0.88412, + "y": -0.46725 }, { - "x": 0.999304385437184, - "y": -0.037292696952776504 + "x": 0.9993, + "y": -0.03729 }, { "max": { @@ -18698,12 +18698,12 @@ } }, { - "x": 243.69986640777017, - "y": 122.33504605965365 + "x": 243.69987, + "y": 122.33505 }, { - "x": 219.58391794497308, - "y": 97.46152305409016 + "x": 219.58392, + "y": 97.46152 }, { "category": 1, @@ -18720,16 +18720,16 @@ "y": 0 }, { - "x": 231.48320864211766, - "y": 109.56409846611994 + "x": 231.48321, + "y": 109.5641 }, { "x": 0, "y": 0 }, { - "x": 231.70816606849243, - "y": 109.62276333728272 + "x": 231.70817, + "y": 109.62276 }, { "endCol": 5, @@ -18752,8 +18752,8 @@ "yScale": 1 }, { - "x": -0.2335664319147952, - "y": -0.02352113726513494 + "x": -0.23357, + "y": -0.02352 }, [ { @@ -18803,113 +18803,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 243.38249933926224, - "y": 111.8169089119517 + "x": 243.3825, + "y": 111.81691 }, { "body": null, "index": 1, "isInternal": false, - "x": 241.2262197181273, - "y": 116.75675862580722 + "x": 241.22622, + "y": 116.75676 }, { "body": null, "index": 2, "isInternal": false, - "x": 237.14145380404182, - "y": 120.27153549313822 + "x": 237.14145, + "y": 120.27154 }, { "body": null, "index": 3, "isInternal": false, - "x": 231.93486049491273, - "y": 121.66667387814972 + "x": 231.93486, + "y": 121.66667 }, { "body": null, "index": 4, "isInternal": false, - "x": 226.63876471309703, - "y": 120.66348173811191 + "x": 226.63876, + "y": 120.66348 }, { "body": null, "index": 5, "isInternal": false, - "x": 222.30339187548884, - "y": 117.46293313530501 + "x": 222.30339, + "y": 117.46293 }, { "body": null, "index": 6, "isInternal": false, - "x": 219.78492558154855, - "y": 112.6975386577946 + "x": 219.78493, + "y": 112.69754 }, { "body": null, "index": 7, "isInternal": false, - "x": 219.58391794497308, - "y": 107.31128802028819 + "x": 219.58392, + "y": 107.31129 }, { "body": null, "index": 8, "isInternal": false, - "x": 221.740197566108, - "y": 102.37143830643267 + "x": 221.7402, + "y": 102.37144 }, { "body": null, "index": 9, "isInternal": false, - "x": 225.8249634801935, - "y": 98.85666143910167 + "x": 225.82496, + "y": 98.85666 }, { "body": null, "index": 10, "isInternal": false, - "x": 231.0315567893226, - "y": 97.46152305409016 + "x": 231.03156, + "y": 97.46152 }, { "body": null, "index": 11, "isInternal": false, - "x": 236.3276525711383, - "y": 98.46471519412798 + "x": 236.32765, + "y": 98.46472 }, { "body": null, "index": 12, "isInternal": false, - "x": 240.66302540874648, - "y": 101.66526379693488 + "x": 240.66303, + "y": 101.66526 }, { "body": null, "index": 13, "isInternal": false, - "x": 243.18149170268677, - "y": 106.43065827444529 + "x": 243.18149, + "y": 106.43066 }, { - "angle": 0.11292591947371924, - "anglePrev": 0.07476671944658288, - "angularSpeed": 0.03593500332371356, - "angularVelocity": 0.03866726019818936, - "area": 911.0345159999998, + "angle": 0.11293, + "anglePrev": 0.07477, + "angularSpeed": 0.03594, + "angularVelocity": 0.03867, + "area": 911.03452, "axes": { "#": 2098 }, "bounds": { "#": 2108 }, - "circleRadius": 17.203746570644718, + "circleRadius": 17.20375, "collisionFilter": { "#": 2111 }, @@ -18924,13 +18924,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 528.4283772509327, - "inverseInertia": 0.0018924040476447272, - "inverseMass": 1.0976532529092455, + "inertia": 528.42838, + "inverseInertia": 0.00189, + "inverseMass": 1.09765, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9110345159999998, + "mass": 0.91103, "motion": 0, "parent": null, "position": { @@ -18952,7 +18952,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7606140125321308, + "speed": 0.76061, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18994,40 +18994,40 @@ } ], { - "x": -0.8952150422343947, - "y": -0.4456344108765286 + "x": -0.89522, + "y": -0.44563 }, { - "x": -0.6886910352937069, - "y": -0.7250549344057193 + "x": -0.68869, + "y": -0.72505 }, { - "x": -0.3991983788817039, - "y": -0.9168645779493388 + "x": -0.3992, + "y": -0.91686 }, { - "x": -0.061648989863562334, - "y": -0.9980978920170119 + "x": -0.06165, + "y": -0.9981 }, { - "x": 0.28359403077486195, - "y": -0.95894443306631 + "x": 0.28359, + "y": -0.95894 }, { - "x": 0.5943797990546189, - "y": -0.8041844654529153 + "x": 0.59438, + "y": -0.80418 }, { - "x": 0.8335672051499547, - "y": -0.5524180613434841 + "x": 0.83357, + "y": -0.55242 }, { - "x": 0.9722737714086446, - "y": -0.2338454905077512 + "x": 0.97227, + "y": -0.23385 }, { - "x": 0.9936306413183771, - "y": 0.11268606228469727 + "x": 0.99363, + "y": 0.11269 }, { "max": { @@ -19038,12 +19038,12 @@ } }, { - "x": 276.6599749668811, - "y": 131.05659263619648 + "x": 276.65997, + "y": 131.05659 }, { - "x": 242.29466731546913, - "y": 96.10751237579339 + "x": 242.29467, + "y": 96.10751 }, { "category": 1, @@ -19060,16 +19060,16 @@ "y": 0 }, { - "x": 259.46535090872925, - "y": 113.20193392903474 + "x": 259.46535, + "y": 113.20193 }, { "x": 0, "y": 0 }, { - "x": 258.9444616002267, - "y": 113.11747065895474 + "x": 258.94446, + "y": 113.11747 }, { "endCol": 5, @@ -19092,8 +19092,8 @@ "yScale": 1 }, { - "x": 0.5337412391196494, - "y": 0.04519300387734404 + "x": 0.53374, + "y": 0.04519 }, [ { @@ -19155,133 +19155,133 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.9628479659008, - "y": 118.07903592188006 + "x": 275.96285, + "y": 118.07904 }, { "body": null, "index": 1, "isInternal": false, - "x": 273.3001283259588, - "y": 123.42805434763511 + "x": 273.30013, + "y": 123.42805 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.9678289255779, - "y": 127.54307462771379 + "x": 268.96783, + "y": 127.54307 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.4901907193522, - "y": 129.92801166707076 + "x": 263.49019, + "y": 129.92801 }, { "body": null, "index": 4, "isInternal": false, - "x": 257.5266998931833, - "y": 130.29635548227608 + "x": 257.5267, + "y": 130.29636 }, { "body": null, "index": 5, "isInternal": false, - "x": 251.7971453323177, - "y": 128.60192208610445 + "x": 251.79715, + "y": 128.60192 }, { "body": null, "index": 6, "isInternal": false, - "x": 246.99269366218084, - "y": 125.05090967422547 + "x": 246.99269, + "y": 125.05091 }, { "body": null, "index": 7, "isInternal": false, - "x": 243.69192247595402, - "y": 120.07023506367577 + "x": 243.69192, + "y": 120.07024 }, { "body": null, "index": 8, "isInternal": false, - "x": 242.29466731546913, - "y": 114.2607813874254 + "x": 242.29467, + "y": 114.26078 }, { "body": null, "index": 9, "isInternal": false, - "x": 242.96785385155786, - "y": 108.32483193618941 + "x": 242.96785, + "y": 108.32483 }, { "body": null, "index": 10, "isInternal": false, - "x": 245.63057349149992, - "y": 102.97581351043438 + "x": 245.63057, + "y": 102.97581 }, { "body": null, "index": 11, "isInternal": false, - "x": 249.9628728918809, - "y": 98.8607932303557 + "x": 249.96287, + "y": 98.86079 }, { "body": null, "index": 12, "isInternal": false, - "x": 255.44051109810653, - "y": 96.47585619099871 + "x": 255.44051, + "y": 96.47586 }, { "body": null, "index": 13, "isInternal": false, - "x": 261.4040019242752, - "y": 96.10751237579339 + "x": 261.404, + "y": 96.10751 }, { "body": null, "index": 14, "isInternal": false, - "x": 267.133556485141, - "y": 97.80194577196504 + "x": 267.13356, + "y": 97.80195 }, { "body": null, "index": 15, "isInternal": false, - "x": 271.9380081552779, - "y": 101.35295818384401 + "x": 271.93801, + "y": 101.35296 }, { "body": null, "index": 16, "isInternal": false, - "x": 275.2387793415048, - "y": 106.33363279439376 + "x": 275.23878, + "y": 106.33363 }, { "body": null, "index": 17, "isInternal": false, - "x": 276.6360345019895, - "y": 112.1430864706441 + "x": 276.63603, + "y": 112.14309 }, { - "angle": -0.0014337171513242103, - "anglePrev": -0.004269734316149387, - "angularSpeed": 0.004617878805741407, - "angularVelocity": 0.002893528324643838, + "angle": -0.00143, + "anglePrev": -0.00427, + "angularSpeed": 0.00462, + "angularVelocity": 0.00289, "area": 677.77246, "axes": { "#": 2141 @@ -19289,7 +19289,7 @@ "bounds": { "#": 2150 }, - "circleRadius": 14.879243827160494, + "circleRadius": 14.87924, "collisionFilter": { "#": 2153 }, @@ -19304,13 +19304,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 292.48689019105535, - "inverseInertia": 0.0034189566559608537, - "inverseMass": 1.4754214120768494, + "inertia": 292.48689, + "inverseInertia": 0.00342, + "inverseMass": 1.47542, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.67777246, + "mass": 0.67777, "motion": 0, "parent": null, "position": { @@ -19332,7 +19332,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4527240015315728, + "speed": 1.45272, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19371,36 +19371,36 @@ } ], { - "x": -0.9244531784775342, - "y": -0.3812955819345203 + "x": -0.92445, + "y": -0.3813 }, { - "x": -0.7081198452145032, - "y": -0.7060922636691247 + "x": -0.70812, + "y": -0.70609 }, { - "x": -0.38394481951782894, - "y": -0.9233560394373461 + "x": -0.38394, + "y": -0.92336 }, { - "x": -0.0014337166601459369, - "y": -0.999998972227741 + "x": -0.00143, + "y": -1 }, { - "x": 0.3812955819345203, - "y": -0.9244531784775342 + "x": 0.3813, + "y": -0.92445 }, { - "x": 0.7060922636691247, - "y": -0.7081198452145032 + "x": 0.70609, + "y": -0.70812 }, { - "x": 0.9233560394373461, - "y": -0.38394481951782894 + "x": 0.92336, + "y": -0.38394 }, { - "x": 0.999998972227741, - "y": -0.0014337166601459369 + "x": 1, + "y": -0.00143 }, { "max": { @@ -19411,12 +19411,12 @@ } }, { - "x": 307.89231957060764, - "y": 138.09516560929194 + "x": 307.89232, + "y": 138.09517 }, { - "x": 277.8370013590912, - "y": 107.73080964880712 + "x": 277.837, + "y": 107.73081 }, { "category": 1, @@ -19433,16 +19433,16 @@ "y": 0 }, { - "x": 292.43414844027495, - "y": 122.32795672999094 + "x": 292.43415, + "y": 122.32796 }, { "x": 0, "y": 0 }, { - "x": 291.8616532316242, - "y": 122.22062914794962 + "x": 291.86165, + "y": 122.22063 }, { "endCol": 6, @@ -19465,8 +19465,8 @@ "yScale": 1 }, { - "x": 0.5725573366309504, - "y": 0.1525701508245163 + "x": 0.57256, + "y": 0.15257 }, [ { @@ -19522,127 +19522,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 307.03129552145873, - "y": 125.21003151914657 + "x": 307.0313, + "y": 125.21003 }, { "body": null, "index": 1, "isInternal": false, - "x": 304.8179868265894, - "y": 130.57621029190614 + "x": 304.81799, + "y": 130.57621 }, { "body": null, "index": 2, "isInternal": false, - "x": 300.71787788722884, - "y": 134.68809291247982 + "x": 300.71788, + "y": 134.68809 }, { "body": null, "index": 3, "isInternal": false, - "x": 295.3580676838736, - "y": 136.91677965224594 + "x": 295.35807, + "y": 136.91678 }, { "body": null, "index": 4, "isInternal": false, - "x": 289.5520736511194, - "y": 136.9251038111748 + "x": 289.55207, + "y": 136.9251 }, { "body": null, "index": 5, "isInternal": false, - "x": 284.1858948783597, - "y": 134.7117951163053 + "x": 284.18589, + "y": 134.7118 }, { "body": null, "index": 6, "isInternal": false, - "x": 280.0740122577861, - "y": 130.6116861769448 + "x": 280.07401, + "y": 130.61169 }, { "body": null, "index": 7, "isInternal": false, - "x": 277.8453255180199, - "y": 125.2518759735896 + "x": 277.84533, + "y": 125.25188 }, { "body": null, "index": 8, "isInternal": false, - "x": 277.8370013590912, - "y": 119.44588194083532 + "x": 277.837, + "y": 119.44588 }, { "body": null, "index": 9, "isInternal": false, - "x": 280.0503100539605, - "y": 114.07970316807575 + "x": 280.05031, + "y": 114.0797 }, { "body": null, "index": 10, "isInternal": false, - "x": 284.15041899332107, - "y": 109.96782054750211 + "x": 284.15042, + "y": 109.96782 }, { "body": null, "index": 11, "isInternal": false, - "x": 289.5102291966763, - "y": 107.7391338077359 + "x": 289.51023, + "y": 107.73913 }, { "body": null, "index": 12, "isInternal": false, - "x": 295.31622322943053, - "y": 107.73080964880712 + "x": 295.31622, + "y": 107.73081 }, { "body": null, "index": 13, "isInternal": false, - "x": 300.6824020021902, - "y": 109.94411834367658 + "x": 300.6824, + "y": 109.94412 }, { "body": null, "index": 14, "isInternal": false, - "x": 304.7942846227638, - "y": 114.0442272830371 + "x": 304.79428, + "y": 114.04423 }, { "body": null, "index": 15, "isInternal": false, - "x": 307.02297136253003, - "y": 119.40403748639228 + "x": 307.02297, + "y": 119.40404 }, { - "angle": 0.016317112844225545, - "anglePrev": 0.01618564693155867, - "angularSpeed": 0.005467271781167413, - "angularVelocity": 0.0007915651316966841, - "area": 645.4580440000001, + "angle": 0.01632, + "anglePrev": 0.01619, + "angularSpeed": 0.00547, + "angularVelocity": 0.00079, + "area": 645.45804, "axes": { "#": 2181 }, "bounds": { "#": 2190 }, - "circleRadius": 14.519761659807955, + "circleRadius": 14.51976, "collisionFilter": { "#": 2193 }, @@ -19657,13 +19657,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 265.26173364337563, - "inverseInertia": 0.003769861510987576, - "inverseMass": 1.5492873770738844, + "inertia": 265.26173, + "inverseInertia": 0.00377, + "inverseMass": 1.54929, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6454580440000001, + "mass": 0.64546, "motion": 0, "parent": null, "position": { @@ -19685,7 +19685,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7125561768771889, + "speed": 0.71256, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19724,36 +19724,36 @@ } ], { - "x": -0.9175121298975132, - "y": -0.3977077966182318 + "x": -0.91751, + "y": -0.39771 }, { - "x": -0.6954752211755594, - "y": -0.7185500794870224 + "x": -0.69548, + "y": -0.71855 }, { - "x": -0.36755905398480565, - "y": -0.9300001837815918 + "x": -0.36756, + "y": -0.93 }, { - "x": 0.016316388786954544, - "y": -0.9998668788678585 + "x": 0.01632, + "y": -0.99987 }, { - "x": 0.3977077966182318, - "y": -0.9175121298975132 + "x": 0.39771, + "y": -0.91751 }, { - "x": 0.7185500794870224, - "y": -0.6954752211755594 + "x": 0.71855, + "y": -0.69548 }, { - "x": 0.9300001837815918, - "y": -0.36755905398480565 + "x": 0.93, + "y": -0.36756 }, { - "x": 0.9998668788678585, - "y": 0.016316388786954544 + "x": 0.99987, + "y": 0.01632 }, { "max": { @@ -19764,12 +19764,12 @@ } }, { - "x": 335.8476077535643, - "y": 135.65374819695788 + "x": 335.84761, + "y": 135.65375 }, { - "x": 306.71031797691194, - "y": 106.65104512659039 + "x": 306.71032, + "y": 106.65105 }, { "category": 1, @@ -19786,16 +19786,16 @@ "y": 0 }, { - "x": 320.9956465283026, - "y": 120.93637367798101 + "x": 320.99565, + "y": 120.93637 }, { - "x": 0.07934930299784618, - "y": -0.09400882500185515 + "x": 0.07935, + "y": -0.09401 }, { - "x": 320.212821449231, - "y": 120.77014618303933 + "x": 320.21282, + "y": 120.77015 }, { "endCol": 6, @@ -19818,8 +19818,8 @@ "yScale": 1 }, { - "x": 0.7362886022248745, - "y": 0.048468441544713414 + "x": 0.73629, + "y": 0.04847 }, [ { @@ -19875,127 +19875,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 335.1885264208263, - "y": 124.00135823852867 + "x": 335.18853, + "y": 124.00136 }, { "body": null, "index": 1, "isInternal": false, - "x": 332.93541504852993, - "y": 129.19928755163295 + "x": 332.93542, + "y": 129.19929 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.8645848783047, - "y": 133.13939081489707 + "x": 328.86458, + "y": 133.13939 }, { "body": null, "index": 3, "isInternal": false, - "x": 323.5959077034202, - "y": 135.22170222937163 + "x": 323.59591, + "y": 135.2217 }, { "body": null, "index": 4, "isInternal": false, - "x": 317.9306619677548, - "y": 135.12925357050477 + "x": 317.93066, + "y": 135.12925 }, { "body": null, "index": 5, "isInternal": false, - "x": 312.73273265465065, - "y": 132.8761421982083 + "x": 312.73273, + "y": 132.87614 }, { "body": null, "index": 6, "isInternal": false, - "x": 308.7926293913866, - "y": 128.80531202798312 + "x": 308.79263, + "y": 128.80531 }, { "body": null, "index": 7, "isInternal": false, - "x": 306.71031797691194, - "y": 123.53663485309865 + "x": 306.71032, + "y": 123.53663 }, { "body": null, "index": 8, "isInternal": false, - "x": 306.8027666357789, - "y": 117.87138911743335 + "x": 306.80277, + "y": 117.87139 }, { "body": null, "index": 9, "isInternal": false, - "x": 309.05587800807524, - "y": 112.67345980432908 + "x": 309.05588, + "y": 112.67346 }, { "body": null, "index": 10, "isInternal": false, - "x": 313.1267081783005, - "y": 108.73335654106498 + "x": 313.12671, + "y": 108.73336 }, { "body": null, "index": 11, "isInternal": false, - "x": 318.39538535318496, - "y": 106.65104512659039 + "x": 318.39539, + "y": 106.65105 }, { "body": null, "index": 12, "isInternal": false, - "x": 324.06063108885036, - "y": 106.74349378545726 + "x": 324.06063, + "y": 106.74349 }, { "body": null, "index": 13, "isInternal": false, - "x": 329.2585604019545, - "y": 108.9966051577537 + "x": 329.25856, + "y": 108.99661 }, { "body": null, "index": 14, "isInternal": false, - "x": 333.1986636652186, - "y": 113.0674353279789 + "x": 333.19866, + "y": 113.06744 }, { "body": null, "index": 15, "isInternal": false, - "x": 335.28097507969323, - "y": 118.33611250286337 + "x": 335.28098, + "y": 118.33611 }, { - "angle": 0.009514019591545473, - "anglePrev": 0.008469325519294642, - "angularSpeed": 0.00032545473512210336, - "angularVelocity": 0.0011632447280073115, - "area": 701.518604, + "angle": 0.00951, + "anglePrev": 0.00847, + "angularSpeed": 0.00033, + "angularVelocity": 0.00116, + "area": 701.5186, "axes": { "#": 2221 }, "bounds": { "#": 2230 }, - "circleRadius": 15.13764574759945, + "circleRadius": 15.13765, "collisionFilter": { "#": 2233 }, @@ -20010,13 +20010,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 313.3408048982135, - "inverseInertia": 0.0031914132611130645, - "inverseMass": 1.4254789456731214, + "inertia": 313.3408, + "inverseInertia": 0.00319, + "inverseMass": 1.42548, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.701518604, + "mass": 0.70152, "motion": 0, "parent": null, "position": { @@ -20038,7 +20038,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6046743201532454, + "speed": 0.60467, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20077,36 +20077,36 @@ } ], { - "x": -0.9201579359410319, - "y": -0.3915474082722808 + "x": -0.92016, + "y": -0.39155 }, { - "x": -0.7003474527087731, - "y": -0.7138021052675125 + "x": -0.70035, + "y": -0.7138 }, { - "x": -0.3739687826340198, - "y": -0.9274412917350778 + "x": -0.37397, + "y": -0.92744 }, { - "x": 0.009513876062793592, - "y": -0.9999547420569901 + "x": 0.00951, + "y": -0.99995 }, { - "x": 0.3915474082722808, - "y": -0.9201579359410319 + "x": 0.39155, + "y": -0.92016 }, { - "x": 0.7138021052675125, - "y": -0.7003474527087731 + "x": 0.7138, + "y": -0.70035 }, { - "x": 0.9274412917350778, - "y": -0.3739687826340198 + "x": 0.92744, + "y": -0.37397 }, { - "x": 0.9999547420569901, - "y": 0.009513876062793592 + "x": 0.99995, + "y": 0.00951 }, { "max": { @@ -20117,12 +20117,12 @@ } }, { - "x": 364.8828310680276, - "y": 137.82915983883905 + "x": 364.88283, + "y": 137.82916 }, { - "x": 334.68711407613375, - "y": 107.67296172006215 + "x": 334.68711, + "y": 107.67296 }, { "category": 1, @@ -20139,16 +20139,16 @@ "y": 0 }, { - "x": 349.5615366074673, - "y": 122.5473842513957 + "x": 349.56154, + "y": 122.54738 }, { "x": 0, "y": 0 }, { - "x": 348.81716822399113, - "y": 122.42153511628342 + "x": 348.81717, + "y": 122.42154 }, { "endCol": 7, @@ -20171,8 +20171,8 @@ "yScale": 1 }, { - "x": 0.7474654606709805, - "y": 0.09390300159849119 + "x": 0.74747, + "y": 0.0939 }, [ { @@ -20228,127 +20228,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.37977018677395, - "y": 125.64150312259429 + "x": 364.37977, + "y": 125.6415 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.06695529330847, - "y": 131.07674527622132 + "x": 362.06696, + "y": 131.07675 }, { "body": null, "index": 2, "isInternal": false, - "x": 357.85141434404034, - "y": 135.2128263326131 + "x": 357.85141, + "y": 135.21283 }, { "body": null, "index": 3, "isInternal": false, - "x": 352.37315044285725, - "y": 137.42180678272928 + "x": 352.37315, + "y": 137.42181 }, { "body": null, "index": 4, "isInternal": false, - "x": 346.4674177362687, - "y": 137.3656178307024 + "x": 346.46742, + "y": 137.36562 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.0321755826417, - "y": 135.0528029372369 + "x": 341.03218, + "y": 135.0528 }, { "body": null, "index": 6, "isInternal": false, - "x": 336.89609452624995, - "y": 130.83726198796867 + "x": 336.89609, + "y": 130.83726 }, { "body": null, "index": 7, "isInternal": false, - "x": 334.68711407613375, - "y": 125.3589980867857 + "x": 334.68711, + "y": 125.359 }, { "body": null, "index": 8, "isInternal": false, - "x": 334.74330302816065, - "y": 119.45326538019711 + "x": 334.7433, + "y": 119.45327 }, { "body": null, "index": 9, "isInternal": false, - "x": 337.05611792162614, - "y": 114.01802322657011 + "x": 337.05612, + "y": 114.01802 }, { "body": null, "index": 10, "isInternal": false, - "x": 341.27165887089427, - "y": 109.88194217017835 + "x": 341.27166, + "y": 109.88194 }, { "body": null, "index": 11, "isInternal": false, - "x": 346.74992277207735, - "y": 107.67296172006215 + "x": 346.74992, + "y": 107.67296 }, { "body": null, "index": 12, "isInternal": false, - "x": 352.6556554786659, - "y": 107.729150672089 + "x": 352.65566, + "y": 107.72915 }, { "body": null, "index": 13, "isInternal": false, - "x": 358.0908976322929, - "y": 110.04196556555452 + "x": 358.0909, + "y": 110.04197 }, { "body": null, "index": 14, "isInternal": false, - "x": 362.22697868868465, - "y": 114.25750651482274 + "x": 362.22698, + "y": 114.25751 }, { "body": null, "index": 15, "isInternal": false, - "x": 364.43595913880085, - "y": 119.73577041600569 + "x": 364.43596, + "y": 119.73577 }, { - "angle": 0.03175310382360957, - "anglePrev": -0.012946939416457555, - "angularSpeed": 0.03376063083768768, - "angularVelocity": 0.04496103976609013, - "area": 525.421234, + "angle": 0.03175, + "anglePrev": -0.01295, + "angularSpeed": 0.03376, + "angularVelocity": 0.04496, + "area": 525.42123, "axes": { "#": 2261 }, "bounds": { "#": 2269 }, - "circleRadius": 13.152649176954732, + "circleRadius": 13.15265, "collisionFilter": { "#": 2272 }, @@ -20363,13 +20363,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 175.79059459614115, - "inverseInertia": 0.00568858648153154, - "inverseMass": 1.903234843379017, + "inertia": 175.79059, + "inverseInertia": 0.00569, + "inverseMass": 1.90323, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5254212340000001, + "mass": 0.52542, "motion": 0, "parent": null, "position": { @@ -20391,7 +20391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6459668901289817, + "speed": 0.64597, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20427,32 +20427,32 @@ } ], { - "x": -0.8867273762906807, - "y": -0.4622927212672132 + "x": -0.88673, + "y": -0.46229 }, { - "x": -0.5983286057755554, - "y": -0.8012508218471167 + "x": -0.59833, + "y": -0.80125 }, { - "x": -0.1915247324215168, - "y": -0.9814877874282831 + "x": -0.19152, + "y": -0.98149 }, { - "x": 0.2534273276548142, - "y": -0.9673544281170887 + "x": 0.25343, + "y": -0.96735 }, { - "x": 0.6479726749410999, - "y": -0.7616635822524768 + "x": 0.64797, + "y": -0.76166 }, { - "x": 0.9142786019485053, - "y": -0.40508596373990347 + "x": 0.91428, + "y": -0.40509 }, { - "x": 0.9994959125551693, - "y": 0.031747768197295294 + "x": 0.9995, + "y": 0.03175 }, { "max": { @@ -20463,12 +20463,12 @@ } }, { - "x": 390.0221939820334, - "y": 136.89921193522125 + "x": 390.02219, + "y": 136.89921 }, { - "x": 363.78193204650216, - "y": 110.11683255385164 + "x": 363.78193, + "y": 110.11683 }, { "category": 1, @@ -20485,16 +20485,16 @@ "y": 0 }, { - "x": 376.6913938507106, - "y": 123.26320229168978 + "x": 376.69139, + "y": 123.2632 }, { "x": 0, "y": 0 }, { - "x": 375.9872017455589, - "y": 123.07071048693516 + "x": 375.9872, + "y": 123.07071 }, { "endCol": 8, @@ -20517,8 +20517,8 @@ "yScale": 1 }, { - "x": 0.6986315626095916, - "y": 0.1640223086274375 + "x": 0.69863, + "y": 0.16402 }, [ { @@ -20568,113 +20568,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.415004219892, - "y": 126.59582845933267 + "x": 389.415, + "y": 126.59583 }, { "body": null, "index": 1, "isInternal": false, - "x": 386.70884687252936, - "y": 131.78653057092748 + "x": 386.70885, + "y": 131.78653 }, { "body": null, "index": 2, "isInternal": false, - "x": 382.019305970525, - "y": 135.28841336857053 + "x": 382.01931, + "y": 135.28841 }, { "body": null, "index": 3, "isInternal": false, - "x": 376.27381545561155, - "y": 136.40957202952794 + "x": 376.27382, + "y": 136.40957 }, { "body": null, "index": 4, "isInternal": false, - "x": 370.6110596246204, - "y": 134.92604434236657 + "x": 370.61106, + "y": 134.92604 }, { "body": null, "index": 5, "isInternal": false, - "x": 366.15321393491973, - "y": 131.13360597018186 + "x": 366.15321, + "y": 131.13361 }, { "body": null, "index": 6, "isInternal": false, - "x": 363.78193204650216, - "y": 125.78162519614487 + "x": 363.78193, + "y": 125.78163 }, { "body": null, "index": 7, "isInternal": false, - "x": 363.9677834815292, - "y": 119.93057612404687 + "x": 363.96778, + "y": 119.93058 }, { "body": null, "index": 8, "isInternal": false, - "x": 366.67394082889183, - "y": 114.73987401245205 + "x": 366.67394, + "y": 114.73987 }, { "body": null, "index": 9, "isInternal": false, - "x": 371.3634817308962, - "y": 111.23799121480906 + "x": 371.36348, + "y": 111.23799 }, { "body": null, "index": 10, "isInternal": false, - "x": 377.10897224580964, - "y": 110.11683255385164 + "x": 377.10897, + "y": 110.11683 }, { "body": null, "index": 11, "isInternal": false, - "x": 382.7717280768008, - "y": 111.60036024101298 + "x": 382.77173, + "y": 111.60036 }, { "body": null, "index": 12, "isInternal": false, - "x": 387.22957376650146, - "y": 115.39279861319763 + "x": 387.22957, + "y": 115.3928 }, { "body": null, "index": 13, "isInternal": false, - "x": 389.60085565491903, - "y": 120.74477938723469 + "x": 389.60086, + "y": 120.74478 }, { - "angle": -0.003190335026424712, - "anglePrev": -0.0061404800461796315, - "angularSpeed": 0.0016231864967970308, - "angularVelocity": 0.002980128514673795, - "area": 872.5480859999998, + "angle": -0.00319, + "anglePrev": -0.00614, + "angularSpeed": 0.00162, + "angularVelocity": 0.00298, + "area": 872.54809, "axes": { "#": 2298 }, "bounds": { "#": 2308 }, - "circleRadius": 16.836376886145406, + "circleRadius": 16.83638, "collisionFilter": { "#": 2311 }, @@ -20689,13 +20689,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 484.72476647781866, - "inverseInertia": 0.002063026420676528, - "inverseMass": 1.14606864199803, + "inertia": 484.72477, + "inverseInertia": 0.00206, + "inverseMass": 1.14607, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8725480859999998, + "mass": 0.87255, "motion": 0, "parent": null, "position": { @@ -20717,7 +20717,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.974851861099492, + "speed": 1.97485, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20759,40 +20759,40 @@ } ], { - "x": -0.9407600577666791, - "y": -0.33907302120757665 + "x": -0.94076, + "y": -0.33907 }, { - "x": -0.7680348094230298, - "y": -0.6404080976334777 + "x": -0.76803, + "y": -0.64041 }, { - "x": -0.5027985422861029, - "y": -0.8644036243994871 + "x": -0.5028, + "y": -0.8644 }, { - "x": -0.17674095286860708, - "y": -0.9842574031111457 + "x": -0.17674, + "y": -0.98426 }, { - "x": 0.17045717593597565, - "y": -0.9853650852206666 + "x": 0.17046, + "y": -0.98537 }, { - "x": 0.4972728702201399, - "y": -0.867594198080545 + "x": 0.49727, + "y": -0.86759 }, { - "x": 0.7639329699514221, - "y": -0.6452956046814506 + "x": 0.76393, + "y": -0.6453 }, { - "x": 0.9385774088812251, - "y": -0.3450687576959196 + "x": 0.93858, + "y": -0.34507 }, { - "x": 0.9999949108855261, - "y": -0.0031903296144294895 + "x": 0.99999, + "y": -0.00319 }, { "max": { @@ -20803,12 +20803,12 @@ } }, { - "x": 422.33710354011953, - "y": 146.78481914323132 + "x": 422.3371, + "y": 146.78482 }, { - "x": 388.86440830260193, - "y": 111.15987633194901 + "x": 388.86441, + "y": 111.15988 }, { "category": 1, @@ -20825,16 +20825,16 @@ "y": 0 }, { - "x": 405.4546524437874, - "y": 127.99579065161774 + "x": 405.45465, + "y": 127.99579 }, { "x": 0, "y": 0 }, { - "x": 404.8405799820962, - "y": 126.36549973899373 + "x": 404.84058, + "y": 126.3655 }, { "endCol": 8, @@ -20857,8 +20857,8 @@ "yScale": 1 }, { - "x": 0.6322189941878378, - "y": 1.6308701211723928 + "x": 0.63222, + "y": 1.63087 }, [ { @@ -20920,141 +20920,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 422.04489658497283, - "y": 130.86687691571015 + "x": 422.0449, + "y": 130.86688 }, { "body": null, "index": 1, "isInternal": false, - "x": 420.0624344341036, - "y": 136.3672296153441 + "x": 420.06243, + "y": 136.36723 }, { "body": null, "index": 2, "isInternal": false, - "x": 416.31774305042785, - "y": 140.85819927022104 + "x": 416.31774, + "y": 140.8582 }, { "body": null, "index": 3, "isInternal": false, - "x": 411.2630973454962, - "y": 143.7983402188178 + "x": 411.2631, + "y": 143.79834 }, { "body": null, "index": 4, "isInternal": false, - "x": 405.5083648331759, - "y": 144.83170497128643 + "x": 405.50836, + "y": 144.8317 }, { "body": null, "index": 5, "isInternal": false, - "x": 399.7471559517384, - "y": 143.83508005465754 + "x": 399.74716, + "y": 143.83508 }, { "body": null, "index": 6, "isInternal": false, - "x": 394.6738531992215, - "y": 140.92725076439575 + "x": 394.67385, + "y": 140.92725 }, { "body": null, "index": 7, "isInternal": false, - "x": 390.9005828428598, - "y": 136.46026600756005 + "x": 390.90058, + "y": 136.46027 }, { "body": null, "index": 8, "isInternal": false, - "x": 388.883065350187, - "y": 130.97267462638388 + "x": 388.88307, + "y": 130.97267 }, { "body": null, "index": 9, "isInternal": false, - "x": 388.86440830260193, - "y": 125.12470438752534 + "x": 388.86441, + "y": 125.1247 }, { "body": null, "index": 10, "isInternal": false, - "x": 390.8468704534712, - "y": 119.62435168789139 + "x": 390.84687, + "y": 119.62435 }, { "body": null, "index": 11, "isInternal": false, - "x": 394.5915618371469, - "y": 115.13338203301446 + "x": 394.59156, + "y": 115.13338 }, { "body": null, "index": 12, "isInternal": false, - "x": 399.64620754207857, - "y": 112.19324108441775 + "x": 399.64621, + "y": 112.19324 }, { "body": null, "index": 13, "isInternal": false, - "x": 405.40094005439886, - "y": 111.15987633194901 + "x": 405.40094, + "y": 111.15988 }, { "body": null, "index": 14, "isInternal": false, - "x": 411.16214893583634, - "y": 112.15650124857794 + "x": 411.16215, + "y": 112.1565 }, { "body": null, "index": 15, "isInternal": false, - "x": 416.23545168835324, - "y": 115.06433053883974 + "x": 416.23545, + "y": 115.06433 }, { "body": null, "index": 16, "isInternal": false, - "x": 420.00872204471494, - "y": 119.53131529567538 + "x": 420.00872, + "y": 119.53132 }, { "body": null, "index": 17, "isInternal": false, - "x": 422.02623953738777, - "y": 125.01890667685161 + "x": 422.02624, + "y": 125.01891 }, { - "angle": -0.0040568762081521145, - "anglePrev": -0.003986087957214181, - "angularSpeed": 0.00007869219713242236, - "angularVelocity": -0.000052818874330313494, - "area": 934.4759899999998, + "angle": -0.00406, + "anglePrev": -0.00399, + "angularSpeed": 0.00008, + "angularVelocity": -0.00005, + "area": 934.47599, "axes": { "#": 2341 }, "bounds": { "#": 2351 }, - "circleRadius": 17.423396776406037, + "circleRadius": 17.4234, "collisionFilter": { "#": 2354 }, @@ -21069,13 +21069,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 555.971799948351, - "inverseInertia": 0.00179865237785963, - "inverseMass": 1.0701184521605527, + "inertia": 555.9718, + "inverseInertia": 0.0018, + "inverseMass": 1.07012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9344759899999998, + "mass": 0.93448, "motion": 0, "parent": null, "position": { @@ -21097,7 +21097,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0341722975991494, + "speed": 1.03417, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21139,40 +21139,40 @@ } ], { - "x": -0.9410479797517005, - "y": -0.3382731142216941 + "x": -0.94105, + "y": -0.33827 }, { - "x": -0.7686642091538174, - "y": -0.6396525100130039 + "x": -0.76866, + "y": -0.63965 }, { - "x": -0.5035224924392219, - "y": -0.8639821176435273 + "x": -0.50352, + "y": -0.86398 }, { - "x": -0.17752466007206488, - "y": -0.9841163524026505 + "x": -0.17752, + "y": -0.98412 }, { - "x": 0.16953402779442414, - "y": -0.9855243342606005 + "x": 0.16953, + "y": -0.98552 }, { - "x": 0.49649585825893583, - "y": -0.8680390905550985 + "x": 0.4965, + "y": -0.86804 }, { - "x": 0.7634489824119637, - "y": -0.6458681376675408 + "x": 0.76345, + "y": -0.64587 }, { - "x": 0.9382723697429524, - "y": -0.34589732606214857 + "x": 0.93827, + "y": -0.3459 }, { - "x": 0.9999917708890024, - "y": -0.004056865079984468 + "x": 0.99999, + "y": -0.00406 }, { "max": { @@ -21183,12 +21183,12 @@ } }, { - "x": 457.9945063893935, - "y": 142.03877903755227 + "x": 457.99451, + "y": 142.03878 }, { - "x": 423.48530677482506, - "y": 106.17245481607179 + "x": 423.48531, + "y": 106.17245 }, { "category": 1, @@ -21205,16 +21205,16 @@ "y": 0 }, { - "x": 440.65644164524144, - "y": 123.59531144027088 + "x": 440.65644, + "y": 123.59531 }, { "x": 0, "y": 0 }, { - "x": 440.4931352197031, - "y": 122.56395714624561 + "x": 440.49314, + "y": 122.56396 }, { "endCol": 9, @@ -21237,8 +21237,8 @@ "yScale": 1 }, { - "x": 0.15147040312257332, - "y": 1.0661045269087879 + "x": 0.15147, + "y": 1.0661 }, [ { @@ -21300,141 +21300,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8275765156578, - "y": 126.55167479107354 + "x": 457.82758, + "y": 126.55167 }, { "body": null, "index": 1, "isInternal": false, - "x": 455.7806608847624, - "y": 132.2460257110639 + "x": 455.78066, + "y": 132.24603 }, { "body": null, "index": 2, "isInternal": false, - "x": 451.9104964574208, - "y": 136.89676471743053 + "x": 451.9105, + "y": 136.89676 }, { "body": null, "index": 3, "isInternal": false, - "x": 446.6818156599236, - "y": 139.9440018460249 + "x": 446.68182, + "y": 139.944 }, { "body": null, "index": 4, "isInternal": false, - "x": 440.72712440552993, - "y": 141.01816806446993 + "x": 440.72712, + "y": 141.01817 }, { "body": null, "index": 5, "isInternal": false, - "x": 434.7639137344684, - "y": 139.9923515640481 + "x": 434.76391, + "y": 139.99235 }, { "body": null, "index": 6, "isInternal": false, - "x": 429.51068078950715, - "y": 136.98763849522217 + "x": 429.51068, + "y": 136.98764 }, { "body": null, "index": 7, "isInternal": false, - "x": 425.60290922287413, - "y": 132.36845378544768 + "x": 425.60291, + "y": 132.36845 }, { "body": null, "index": 8, "isInternal": false, - "x": 423.5098589222891, - "y": 126.69089828688846 + "x": 423.50986, + "y": 126.6909 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.48530677482506, - "y": 120.63894808946822 + "x": 423.48531, + "y": 120.63895 }, { "body": null, "index": 10, "isInternal": false, - "x": 425.53222240572046, - "y": 114.94459716947776 + "x": 425.53222, + "y": 114.9446 }, { "body": null, "index": 11, "isInternal": false, - "x": 429.4023868330621, - "y": 110.29385816311118 + "x": 429.40239, + "y": 110.29386 }, { "body": null, "index": 12, "isInternal": false, - "x": 434.6310676305593, - "y": 107.24662103451686 + "x": 434.63107, + "y": 107.24662 }, { "body": null, "index": 13, "isInternal": false, - "x": 440.58575888495295, - "y": 106.17245481607179 + "x": 440.58576, + "y": 106.17245 }, { "body": null, "index": 14, "isInternal": false, - "x": 446.54896955601447, - "y": 107.1982713164936 + "x": 446.54897, + "y": 107.19827 }, { "body": null, "index": 15, "isInternal": false, - "x": 451.80220250097574, - "y": 110.20298438531955 + "x": 451.8022, + "y": 110.20298 }, { "body": null, "index": 16, "isInternal": false, - "x": 455.70997406760875, - "y": 114.82216909509401 + "x": 455.70997, + "y": 114.82217 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.8030243681938, - "y": 120.4997245936533 + "x": 457.80302, + "y": 120.49972 }, { - "angle": -0.019381386334784846, - "anglePrev": -0.017266416862734325, - "angularSpeed": 0.0022578190633003275, - "angularVelocity": -0.0021364935768004023, - "area": 877.9976040000001, + "angle": -0.01938, + "anglePrev": -0.01727, + "angularSpeed": 0.00226, + "angularVelocity": -0.00214, + "area": 877.9976, "axes": { "#": 2384 }, "bounds": { "#": 2394 }, - "circleRadius": 16.889017489711932, + "circleRadius": 16.88902, "collisionFilter": { "#": 2397 }, @@ -21449,13 +21449,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 490.79839163286067, - "inverseInertia": 0.002037496489491443, - "inverseMass": 1.1389552721376217, + "inertia": 490.79839, + "inverseInertia": 0.00204, + "inverseMass": 1.13896, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8779976040000002, + "mass": 0.878, "motion": 0, "parent": null, "position": { @@ -21477,7 +21477,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2265282982727925, + "speed": 1.22653, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21519,40 +21519,40 @@ } ], { - "x": -0.9461551199352451, - "y": -0.32371359103429953 + "x": -0.94616, + "y": -0.32371 }, { - "x": -0.7783640255570805, - "y": -0.6278132235932727 + "x": -0.77836, + "y": -0.62781 }, { - "x": -0.5165710617555732, - "y": -0.8562443215325402 + "x": -0.51657, + "y": -0.85624 }, { - "x": -0.19278951388253912, - "y": -0.9812401354087256 + "x": -0.19279, + "y": -0.98124 }, { - "x": 0.15461862988950043, - "y": -0.9879742300743951 + "x": 0.15462, + "y": -0.98797 }, { - "x": 0.4830009298762756, - "y": -0.8756198385935835 + "x": 0.483, + "y": -0.87562 }, { - "x": 0.7534496449252381, - "y": -0.657505614091646 + "x": 0.75345, + "y": -0.65751 }, { - "x": 0.9328994908151891, - "y": -0.3601368351568064 + "x": 0.9329, + "y": -0.36014 }, { - "x": 0.999812186811131, - "y": -0.01938017295960109 + "x": 0.99981, + "y": -0.01938 }, { "max": { @@ -21563,12 +21563,12 @@ } }, { - "x": 491.2749199992049, - "y": 144.51922439563313 + "x": 491.27492, + "y": 144.51922 }, { - "x": 457.67039035986437, - "y": 109.5433925578684 + "x": 457.67039, + "y": 109.54339 }, { "category": 1, @@ -21585,16 +21585,16 @@ "y": 0 }, { - "x": 474.35610869819766, - "y": 126.42922058092157 + "x": 474.35611, + "y": 126.42922 }, { "x": 0, "y": 0 }, { - "x": 474.1525858578577, - "y": 125.25193301735459 + "x": 474.15259, + "y": 125.25193 }, { "endCol": 10, @@ -21617,8 +21617,8 @@ "yScale": 1 }, { - "x": 0.19872699037011898, - "y": 1.172958230464431 + "x": 0.19873, + "y": 1.17296 }, [ { @@ -21680,141 +21680,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 491.04182703653095, - "y": 129.03933868817452 + "x": 491.04183, + "y": 129.03934 }, { "body": null, "index": 1, "isInternal": false, - "x": 489.14302730314114, - "y": 134.5891800888345 + "x": 489.14303, + "y": 134.58918 }, { "body": null, "index": 2, "isInternal": false, - "x": 485.4608104759706, - "y": 139.15439949623467 + "x": 485.46081, + "y": 139.1544 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.43858723408755, - "y": 142.1843001065996 + "x": 480.43859, + "y": 142.1843 }, { "body": null, "index": 4, "isInternal": false, - "x": 474.6834204393124, - "y": 143.31504860397484 + "x": 474.68342, + "y": 143.31505 }, { "body": null, "index": 5, "isInternal": false, - "x": 468.88875685204533, - "y": 142.40817986462892 + "x": 468.88876, + "y": 142.40818 }, { "body": null, "index": 6, "isInternal": false, - "x": 463.7528882759273, - "y": 139.5751818115335 + "x": 463.75289, + "y": 139.57518 }, { "body": null, "index": 7, "isInternal": false, - "x": 459.8965212145419, - "y": 135.15608890824873 + "x": 459.89652, + "y": 135.15609 }, { "body": null, "index": 8, "isInternal": false, - "x": 457.7840744544455, - "y": 129.68400076150272 + "x": 457.78407, + "y": 129.684 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.67039035986437, - "y": 123.81910247366861 + "x": 457.67039, + "y": 123.8191 }, { "body": null, "index": 10, "isInternal": false, - "x": 459.5691900932542, - "y": 118.26926107300869 + "x": 459.56919, + "y": 118.26926 }, { "body": null, "index": 11, "isInternal": false, - "x": 463.2514069204247, - "y": 113.70404166560859 + "x": 463.25141, + "y": 113.70404 }, { "body": null, "index": 12, "isInternal": false, - "x": 468.27363016230777, - "y": 110.67414105524357 + "x": 468.27363, + "y": 110.67414 }, { "body": null, "index": 13, "isInternal": false, - "x": 474.02879695708293, - "y": 109.5433925578684 + "x": 474.0288, + "y": 109.54339 }, { "body": null, "index": 14, "isInternal": false, - "x": 479.82346054435, - "y": 110.45026129721425 + "x": 479.82346, + "y": 110.45026 }, { "body": null, "index": 15, "isInternal": false, - "x": 484.959329120468, - "y": 113.28325935030973 + "x": 484.95933, + "y": 113.28326 }, { "body": null, "index": 16, "isInternal": false, - "x": 488.8156961818534, - "y": 117.70235225359443 + "x": 488.8157, + "y": 117.70235 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.92814294194983, - "y": 123.17444040034043 + "x": 490.92814, + "y": 123.17444 }, { - "angle": 0.026456984650618853, - "anglePrev": 0.016815285327383012, - "angularSpeed": 0.013331396152007817, - "angularVelocity": 0.008672301602536455, - "area": 466.51646800000003, + "angle": 0.02646, + "anglePrev": 0.01682, + "angularSpeed": 0.01333, + "angularVelocity": 0.00867, + "area": 466.51647, "axes": { "#": 2427 }, "bounds": { "#": 2435 }, - "circleRadius": 12.393732853223593, + "circleRadius": 12.39373, "collisionFilter": { "#": 2438 }, @@ -21829,13 +21829,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 138.58440234768833, - "inverseInertia": 0.007215819262914912, - "inverseMass": 2.1435470526626723, + "inertia": 138.5844, + "inverseInertia": 0.00722, + "inverseMass": 2.14355, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.466516468, + "mass": 0.46652, "motion": 0, "parent": null, "position": { @@ -21857,7 +21857,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6889542622428044, + "speed": 0.68895, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21893,32 +21893,32 @@ } ], { - "x": -0.8891714785495953, - "y": -0.4575741270372773 + "x": -0.88917, + "y": -0.45757 }, { - "x": -0.6025322463085355, - "y": -0.7980945383589533 + "x": -0.60253, + "y": -0.79809 }, { - "x": -0.19677976989915588, - "y": -0.980447715157945 + "x": -0.19678, + "y": -0.98045 }, { - "x": 0.24835952777669773, - "y": -0.9686679229553005 + "x": 0.24836, + "y": -0.96867 }, { - "x": 0.6438995776057661, - "y": -0.7651100142849498 + "x": 0.6439, + "y": -0.76511 }, { - "x": 0.9121277450013519, - "y": -0.4099060585045657 + "x": 0.91213, + "y": -0.40991 }, { - "x": 0.9996500343961575, - "y": 0.02645389823373551 + "x": 0.99965, + "y": 0.02645 }, { "max": { @@ -21929,12 +21929,12 @@ } }, { - "x": 515.6921689513541, - "y": 135.62818145934554 + "x": 515.69217, + "y": 135.62818 }, { - "x": 491.1291854326658, - "y": 110.2106504979549 + "x": 491.12919, + "y": 110.21065 }, { "category": 1, @@ -21951,16 +21951,16 @@ "y": 0 }, { - "x": 503.2809166496033, - "y": 122.6003130242609 + "x": 503.28092, + "y": 122.60031 }, { "x": 0, "y": 0 }, { - "x": 502.923353472936, - "y": 122.34431369845876 + "x": 502.92335, + "y": 122.34431 }, { "endCol": 10, @@ -21983,8 +21983,8 @@ "yScale": 1 }, { - "x": 0.3833574824877246, - "y": 0.15537543145188693 + "x": 0.38336, + "y": 0.15538 }, [ { @@ -22034,113 +22034,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 515.2867281638837, - "y": 125.67699027148372 + "x": 515.28673, + "y": 125.67699 }, { "body": null, "index": 1, "isInternal": false, - "x": 512.7631162112501, - "y": 130.58094711392494 + "x": 512.76312, + "y": 130.58095 }, { "body": null, "index": 2, "isInternal": false, - "x": 508.36065065687353, - "y": 133.9046479191312 + "x": 508.36065, + "y": 133.90465 }, { "body": null, "index": 3, "isInternal": false, - "x": 502.9530470348943, - "y": 134.9899755505669 + "x": 502.95305, + "y": 134.98998 }, { "body": null, "index": 4, "isInternal": false, - "x": 497.61041418697715, - "y": 133.62016269752561 + "x": 497.61041, + "y": 133.62016 }, { "body": null, "index": 5, "isInternal": false, - "x": 493.38989854465245, - "y": 130.06827056615518 + "x": 493.3899, + "y": 130.06827 }, { "body": null, "index": 6, "isInternal": false, - "x": 491.1291854326658, - "y": 125.03770536676728 + "x": 491.12919, + "y": 125.03771 }, { "body": null, "index": 7, "isInternal": false, - "x": 491.2751051353231, - "y": 119.52363577703808 + "x": 491.27511, + "y": 119.52364 }, { "body": null, "index": 8, "isInternal": false, - "x": 493.7987170879567, - "y": 114.61967893459689 + "x": 493.79872, + "y": 114.61968 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.20118264233304, - "y": 111.29597812939062 + "x": 498.20118, + "y": 111.29598 }, { "body": null, "index": 10, "isInternal": false, - "x": 503.60878626431224, - "y": 110.2106504979549 + "x": 503.60879, + "y": 110.21065 }, { "body": null, "index": 11, "isInternal": false, - "x": 508.9514191122294, - "y": 111.5804633509962 + "x": 508.95142, + "y": 111.58046 }, { "body": null, "index": 12, "isInternal": false, - "x": 513.1719347545543, - "y": 115.13235548236668 + "x": 513.17193, + "y": 115.13236 }, { "body": null, "index": 13, "isInternal": false, - "x": 515.4326478665411, - "y": 120.16292068175454 + "x": 515.43265, + "y": 120.16292 }, { - "angle": 0.006752756330846561, - "anglePrev": 0.0043356817111001485, - "angularSpeed": 0.0024170746197464126, - "angularVelocity": 0.0024170746197464126, - "area": 931.3309979999999, + "angle": 0.00675, + "anglePrev": 0.00434, + "angularSpeed": 0.00242, + "angularVelocity": 0.00242, + "area": 931.331, "axes": { "#": 2464 }, "bounds": { "#": 2474 }, - "circleRadius": 17.394332990397807, + "circleRadius": 17.39433, "collisionFilter": { "#": 2477 }, @@ -22155,13 +22155,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 552.235835577075, - "inverseInertia": 0.0018108205508884092, - "inverseMass": 1.073732112586679, + "inertia": 552.23584, + "inverseInertia": 0.00181, + "inverseMass": 1.07373, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.931330998, + "mass": 0.93133, "motion": 0, "parent": null, "position": { @@ -22183,7 +22183,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.911035870965727, + "speed": 2.91104, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22225,40 +22225,40 @@ } ], { - "x": -0.9373756692870967, - "y": -0.3483200462628697 + "x": -0.93738, + "y": -0.34832 }, { - "x": -0.7617154323443862, - "y": -0.6479117224810839 + "x": -0.76172, + "y": -0.64791 }, { - "x": -0.4940537639383905, - "y": -0.869431353436434 + "x": -0.49405, + "y": -0.86943 }, { - "x": -0.1669990516661551, - "y": -0.9859570562365305 + "x": -0.167, + "y": -0.98596 }, { - "x": 0.1802992723893811, - "y": -0.9836117996322837 + "x": 0.1803, + "y": -0.98361 }, { - "x": 0.5057504663960071, - "y": -0.8626798164673968 + "x": 0.50575, + "y": -0.86268 }, { - "x": 0.7703960793465148, - "y": -0.6375655895102234 + "x": 0.7704, + "y": -0.63757 }, { - "x": 0.9419942802424147, - "y": -0.3356289260337603 + "x": 0.94199, + "y": -0.33563 }, { - "x": 0.999977200227607, - "y": 0.006752705010332765 + "x": 0.99998, + "y": 0.00675 }, { "max": { @@ -22269,12 +22269,12 @@ } }, { - "x": 549.5885634262333, - "y": 153.64588992184972 + "x": 549.58856, + "y": 153.64589 }, { - "x": 515.1414535310346, - "y": 115.95136643847565 + "x": 515.14145, + "y": 115.95137 }, { "category": 1, @@ -22291,16 +22291,16 @@ "y": 0 }, { - "x": 532.2914561400647, - "y": 133.34496985923465 + "x": 532.29146, + "y": 133.34497 }, { - "x": 0.08299501913986176, - "y": -0.0001240841735167426 + "x": 0.083, + "y": -0.00012 }, { - "x": 532.1443514629262, - "y": 130.4376532173786 + "x": 532.14435, + "y": 130.43765 }, { "endCol": 11, @@ -22323,8 +22323,8 @@ "yScale": 1 }, { - "x": 0.14710467713847264, - "y": 2.9073166418560565 + "x": 0.1471, + "y": 2.90732 }, [ { @@ -22386,141 +22386,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 549.4006724108324, - "y": 136.48057484074906 + "x": 549.40067, + "y": 136.48057 }, { "body": null, "index": 1, "isInternal": false, - "x": 547.2963844088185, - "y": 142.1434943178898 + "x": 547.29638, + "y": 142.14349 }, { "body": null, "index": 2, "isInternal": false, - "x": 543.382221421547, - "y": 146.7451680469881 + "x": 543.38222, + "y": 146.74517 }, { "body": null, "index": 3, "isInternal": false, - "x": 538.129947540825, - "y": 149.72976903906138 + "x": 538.12995, + "y": 149.72977 }, { "body": null, "index": 4, "isInternal": false, - "x": 532.1739995891149, - "y": 150.73857327999366 + "x": 532.174, + "y": 150.73857 }, { "body": null, "index": 5, "isInternal": false, - "x": 526.2322188125167, - "y": 149.64942535484843 + "x": 526.23222, + "y": 149.64943 }, { "body": null, "index": 6, "isInternal": false, - "x": 521.0207312700571, - "y": 146.594164057547 + "x": 521.02073, + "y": 146.59416 }, { "body": null, "index": 7, "isInternal": false, - "x": 517.1690713203611, - "y": 141.9400488213385 + "x": 517.16907, + "y": 141.94005 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.1414535310346, - "y": 136.24922716709506 + "x": 515.14145, + "y": 136.24923 }, { "body": null, "index": 9, "isInternal": false, - "x": 515.1822398692971, - "y": 130.2093648777203 + "x": 515.18224, + "y": 130.20936 }, { "body": null, "index": 10, "isInternal": false, - "x": 517.2865278713108, - "y": 124.5464454005795 + "x": 517.28653, + "y": 124.54645 }, { "body": null, "index": 11, "isInternal": false, - "x": 521.2006908585824, - "y": 119.94477167148128 + "x": 521.20069, + "y": 119.94477 }, { "body": null, "index": 12, "isInternal": false, - "x": 526.4529647393043, - "y": 116.96017067940794 + "x": 526.45296, + "y": 116.96017 }, { "body": null, "index": 13, "isInternal": false, - "x": 532.4089126910145, - "y": 115.95136643847565 + "x": 532.40891, + "y": 115.95137 }, { "body": null, "index": 14, "isInternal": false, - "x": 538.3506934676126, - "y": 117.04051436362093 + "x": 538.35069, + "y": 117.04051 }, { "body": null, "index": 15, "isInternal": false, - "x": 543.5621810100723, - "y": 120.09577566092231 + "x": 543.56218, + "y": 120.09578 }, { "body": null, "index": 16, "isInternal": false, - "x": 547.4138409597682, - "y": 124.74989089713081 + "x": 547.41384, + "y": 124.74989 }, { "body": null, "index": 17, "isInternal": false, - "x": 549.4414587490949, - "y": 130.4407125513743 + "x": 549.44146, + "y": 130.44071 }, { - "angle": 0.00023757924260624374, - "anglePrev": 0.0007292357285003674, - "angularSpeed": 0.00009767578287679345, - "angularVelocity": -0.0005695896247449669, - "area": 1165.6303160000004, + "angle": 0.00024, + "anglePrev": 0.00073, + "angularSpeed": 0.0001, + "angularVelocity": -0.00057, + "area": 1165.63032, "axes": { "#": 2507 }, "bounds": { "#": 2518 }, - "circleRadius": 19.42168209876543, + "circleRadius": 19.42168, "collisionFilter": { "#": 2521 }, @@ -22535,13 +22535,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 865.0188515831029, - "inverseInertia": 0.001156044169638457, - "inverseMass": 0.8579049345864813, + "inertia": 865.01885, + "inverseInertia": 0.00116, + "inverseMass": 0.8579, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1656303160000006, + "mass": 1.16563, "motion": 0, "parent": null, "position": { @@ -22563,7 +22563,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.912042032272891, + "speed": 2.91204, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22608,44 +22608,44 @@ } ], { - "x": -0.9509690809478879, - "y": -0.30928596327853175 + "x": -0.95097, + "y": -0.30929 }, { - "x": -0.808852515789657, - "y": -0.5880115710602495 + "x": -0.80885, + "y": -0.58801 }, { - "x": -0.5876271715592215, - "y": -0.809131823156962 + "x": -0.58763, + "y": -0.80913 }, { - "x": -0.3088340673529386, - "y": -0.9511159334393682 + "x": -0.30883, + "y": -0.95112 }, { - "x": 0.00023757924037126073, - "y": -0.9999999717780519 + "x": 0.00024, + "y": -1 }, { - "x": 0.30928596327853175, - "y": -0.9509690809478879 + "x": 0.30929, + "y": -0.95097 }, { - "x": 0.5880115710602495, - "y": -0.808852515789657 + "x": 0.58801, + "y": -0.80885 }, { - "x": 0.809131823156962, - "y": -0.5876271715592215 + "x": 0.80913, + "y": -0.58763 }, { - "x": 0.9511159334393682, - "y": -0.3088340673529386 + "x": 0.95112, + "y": -0.30883 }, { - "x": 0.9999999717780519, - "y": 0.00023757924037126073 + "x": 1, + "y": 0.00024 }, { "max": { @@ -22656,12 +22656,12 @@ } }, { - "x": 588.2399386097461, - "y": 157.09627217793332 + "x": 588.23994, + "y": 157.09627 }, { - "x": 549.7123603405128, - "y": 115.82119403735003 + "x": 549.71236, + "y": 115.82119 }, { "category": 1, @@ -22678,16 +22678,16 @@ "y": 0 }, { - "x": 568.8960815648634, - "y": 135.00491526170063 + "x": 568.89608, + "y": 135.00492 }, { "x": 0, "y": 0 }, { - "x": 568.352544514923, - "y": 132.62469021244792 + "x": 568.35254, + "y": 132.62469 }, { "endCol": 12, @@ -22710,8 +22710,8 @@ "yScale": 1 }, { - "x": 0.5941860638677099, - "y": 2.310557280023488 + "x": 0.59419, + "y": 2.31056 }, [ { @@ -22779,155 +22779,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 588.0783592577495, - "y": 138.04747265853038 + "x": 588.07836, + "y": 138.04747 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.1989863403202, - "y": 143.82602632162232 + "x": 586.19899, + "y": 143.82603 }, { "body": null, "index": 2, "isInternal": false, - "x": 582.6258185015832, - "y": 148.74117754983664 + "x": 582.62582, + "y": 148.74118 }, { "body": null, "index": 3, "isInternal": false, - "x": 577.7089700072758, - "y": 152.31200950948218 + "x": 577.70897, + "y": 152.31201 }, { "body": null, "index": 4, "isInternal": false, - "x": 571.9295239965571, - "y": 154.18863648605125 + "x": 571.92952, + "y": 154.18864 }, { "body": null, "index": 5, "isInternal": false, - "x": 565.8535241680337, - "y": 154.18719295458675 + "x": 565.85352, + "y": 154.18719 }, { "body": null, "index": 6, "isInternal": false, - "x": 560.0749705049416, - "y": 152.30782003715748 + "x": 560.07497, + "y": 152.30782 }, { "body": null, "index": 7, "isInternal": false, - "x": 555.1598192767274, - "y": 148.7346521984206 + "x": 555.15982, + "y": 148.73465 }, { "body": null, "index": 8, "isInternal": false, - "x": 551.5889873170819, - "y": 143.8178037041131 + "x": 551.58899, + "y": 143.8178 }, { "body": null, "index": 9, "isInternal": false, - "x": 549.7123603405128, - "y": 138.0383576933943 + "x": 549.71236, + "y": 138.03836 }, { "body": null, "index": 10, "isInternal": false, - "x": 549.7138038719772, - "y": 131.96235786487085 + "x": 549.7138, + "y": 131.96236 }, { "body": null, "index": 11, "isInternal": false, - "x": 551.5931767894066, - "y": 126.18380420177891 + "x": 551.59318, + "y": 126.1838 }, { "body": null, "index": 12, "isInternal": false, - "x": 555.1663446281435, - "y": 121.26865297356463 + "x": 555.16634, + "y": 121.26865 }, { "body": null, "index": 13, "isInternal": false, - "x": 560.083193122451, - "y": 117.69782101391908 + "x": 560.08319, + "y": 117.69782 }, { "body": null, "index": 14, "isInternal": false, - "x": 565.8626391331696, - "y": 115.82119403735003 + "x": 565.86264, + "y": 115.82119 }, { "body": null, "index": 15, "isInternal": false, - "x": 571.9386389616931, - "y": 115.82263756881453 + "x": 571.93864, + "y": 115.82264 }, { "body": null, "index": 16, "isInternal": false, - "x": 577.7171926247852, - "y": 117.7020104862438 + "x": 577.71719, + "y": 117.70201 }, { "body": null, "index": 17, "isInternal": false, - "x": 582.6323438529994, - "y": 121.27517832498066 + "x": 582.63234, + "y": 121.27518 }, { "body": null, "index": 18, "isInternal": false, - "x": 586.2031758126449, - "y": 126.19202681928816 + "x": 586.20318, + "y": 126.19203 }, { "body": null, "index": 19, "isInternal": false, - "x": 588.079802789214, - "y": 131.97147283000697 + "x": 588.0798, + "y": 131.97147 }, { - "angle": -0.0018139807487576563, - "anglePrev": -0.000905491439026463, - "angularSpeed": 0.0009084893097311934, - "angularVelocity": -0.0009084893097311934, - "area": 645.906722, + "angle": -0.00181, + "anglePrev": -0.00091, + "angularSpeed": 0.00091, + "angularVelocity": -0.00091, + "area": 645.90672, "axes": { "#": 2553 }, "bounds": { "#": 2562 }, - "circleRadius": 14.525162894375857, + "circleRadius": 14.52516, "collisionFilter": { "#": 2565 }, @@ -22942,13 +22942,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 265.6306452069542, - "inverseInertia": 0.003764625874476549, - "inverseMass": 1.5482111672465302, + "inertia": 265.63065, + "inverseInertia": 0.00376, + "inverseMass": 1.54821, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.645906722, + "mass": 0.64591, "motion": 0, "parent": null, "position": { @@ -22970,7 +22970,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.911560069774864, + "speed": 2.91156, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23009,36 +23009,36 @@ } ], { - "x": -0.9245611497929899, - "y": -0.3810336996821466 + "x": -0.92456, + "y": -0.38103 }, { - "x": -0.7083882951951279, - "y": -0.7058229404252462 + "x": -0.70839, + "y": -0.70582 }, { - "x": -0.3843854569775247, - "y": -0.9231726926551606 + "x": -0.38439, + "y": -0.92317 }, { - "x": -0.0018139797539326364, - "y": -0.9999983547373728 + "x": -0.00181, + "y": -1 }, { - "x": 0.3810336996821466, - "y": -0.9245611497929899 + "x": 0.38103, + "y": -0.92456 }, { - "x": 0.7058229404252462, - "y": -0.7083882951951279 + "x": 0.70582, + "y": -0.70839 }, { - "x": 0.9231726926551606, - "y": -0.3843854569775247 + "x": 0.92317, + "y": -0.38439 }, { - "x": 0.9999983547373728, - "y": -0.0018139797539326364 + "x": 1, + "y": -0.00181 }, { "max": { @@ -23049,12 +23049,12 @@ } }, { - "x": 618.6392749899169, - "y": 147.35605814463779 + "x": 618.63927, + "y": 147.35606 }, { - "x": 589.978360089065, - "y": 115.94659056709503 + "x": 589.97836, + "y": 115.94659 }, { "category": 1, @@ -23071,16 +23071,16 @@ "y": 0 }, { - "x": 604.2294774692762, - "y": 130.1977079473063 + "x": 604.22948, + "y": 130.19771 }, { - "x": 0.8643312652137521, + "x": 0.86433, "y": 0 }, { - "x": 604.0707973288467, - "y": 127.29047513018608 + "x": 604.0708, + "y": 127.29048 }, { "endCol": 12, @@ -23103,8 +23103,8 @@ "yScale": 1 }, { - "x": 0.15868014042945788, - "y": 2.9072328171202075 + "x": 0.15868, + "y": 2.90723 }, [ { @@ -23160,127 +23160,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 618.4805948494874, - "y": 133.0058613290575 + "x": 618.48059, + "y": 133.00586 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.3210964160536, - "y": 138.24578723654867 + "x": 616.3211, + "y": 138.24579 }, { "body": null, "index": 2, "isInternal": false, - "x": 612.3213716254951, - "y": 142.2600492608553 + "x": 612.32137, + "y": 142.26005 }, { "body": null, "index": 3, "isInternal": false, - "x": 607.0893147621764, - "y": 144.43854369027227 + "x": 607.08931, + "y": 144.43854 }, { "body": null, "index": 4, "isInternal": false, - "x": 601.421324087525, - "y": 144.44882532751757 + "x": 601.42132, + "y": 144.44883 }, { "body": null, "index": 5, "isInternal": false, - "x": 596.1813981800337, - "y": 142.28932689408379 + "x": 596.1814, + "y": 142.28933 }, { "body": null, "index": 6, "isInternal": false, - "x": 592.1671361557272, - "y": 138.28960210352514 + "x": 592.16714, + "y": 138.2896 }, { "body": null, "index": 7, "isInternal": false, - "x": 589.9886417263102, - "y": 133.05754524020654 + "x": 589.98864, + "y": 133.05755 }, { "body": null, "index": 8, "isInternal": false, - "x": 589.978360089065, - "y": 127.3895545655551 + "x": 589.97836, + "y": 127.38955 }, { "body": null, "index": 9, "isInternal": false, - "x": 592.1378585224987, - "y": 122.14962865806393 + "x": 592.13786, + "y": 122.14963 }, { "body": null, "index": 10, "isInternal": false, - "x": 596.1375833130572, - "y": 118.13536663375727 + "x": 596.13758, + "y": 118.13537 }, { "body": null, "index": 11, "isInternal": false, - "x": 601.3696401763759, - "y": 115.95687220434033 + "x": 601.36964, + "y": 115.95687 }, { "body": null, "index": 12, "isInternal": false, - "x": 607.0376308510273, - "y": 115.94659056709503 + "x": 607.03763, + "y": 115.94659 }, { "body": null, "index": 13, "isInternal": false, - "x": 612.2775567585186, - "y": 118.1060890005288 + "x": 612.27756, + "y": 118.10609 }, { "body": null, "index": 14, "isInternal": false, - "x": 616.2918187828251, - "y": 122.10581379108746 + "x": 616.29182, + "y": 122.10581 }, { "body": null, "index": 15, "isInternal": false, - "x": 618.4703132122421, - "y": 127.33787065440605 + "x": 618.47031, + "y": 127.33787 }, { - "angle": 0.00011667706325915034, - "anglePrev": 0.00008092102972002023, - "angularSpeed": 0.00002936945341097374, - "angularVelocity": 0.00003568786611673023, - "area": 1044.3317600000003, + "angle": 0.00012, + "anglePrev": 0.00008, + "angularSpeed": 0.00003, + "angularVelocity": 0.00004, + "area": 1044.33176, "axes": { "#": 2593 }, "bounds": { "#": 2604 }, - "circleRadius": 18.383787722908096, + "circleRadius": 18.38379, "collisionFilter": { "#": 2607 }, @@ -23295,13 +23295,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 694.3538941887333, - "inverseInertia": 0.0014401877894965598, - "inverseMass": 0.9575501179816648, + "inertia": 694.35389, + "inverseInertia": 0.00144, + "inverseMass": 0.95755, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0443317600000004, + "mass": 1.04433, "motion": 0, "parent": null, "position": { @@ -23323,7 +23323,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9063702496159003, + "speed": 2.90637, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23368,44 +23368,44 @@ } ], { - "x": -0.951036337586491, - "y": -0.30907909115641286 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.8089155275792166, - "y": -0.5879248840126078 + "x": -0.80892, + "y": -0.58792 }, { - "x": -0.5877361042304814, - "y": -0.8090527002513356 + "x": -0.58774, + "y": -0.80905 }, { - "x": -0.3088571544892629, - "y": -0.9511084365732414 + "x": -0.30886, + "y": -0.95111 }, { - "x": 0.0001166770629944191, - "y": -0.9999999931932315 + "x": 0.00012, + "y": -1 }, { - "x": 0.30907909115641286, - "y": -0.951036337586491 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5879248840126078, - "y": -0.8089155275792166 + "x": 0.58792, + "y": -0.80892 }, { - "x": 0.8090527002513356, - "y": -0.5877361042304814 + "x": 0.80905, + "y": -0.58774 }, { - "x": 0.9511084365732414, - "y": -0.3088571544892629 + "x": 0.95111, + "y": -0.30886 }, { - "x": 0.9999999931932315, - "y": 0.0001166770629944191 + "x": 1, + "y": 0.00012 }, { "max": { @@ -23416,12 +23416,12 @@ } }, { - "x": 56.51437697152573, - "y": 193.69484464728208 + "x": 56.51438, + "y": 193.69484 }, { - "x": 20.199622750282206, - "y": 154.4738035195758 + "x": 20.19962, + "y": 154.4738 }, { "category": 1, @@ -23438,16 +23438,16 @@ "y": 0 }, { - "x": 38.356958189924875, - "y": 172.63113895921845 + "x": 38.35696, + "y": 172.63114 }, { - "x": -0.0021667986486124907, - "y": 5.908222409778838e-7 + "x": -0.00217, + "y": 0 }, { - "x": 38.35685729178807, - "y": 169.72495270119248 + "x": 38.35686, + "y": 169.72495 }, { "endCol": 1, @@ -23470,8 +23470,8 @@ "yScale": 1 }, { - "x": 0.0001017225087949214, - "y": 2.9061836277723785 + "x": 0.0001, + "y": 2.90618 }, [ { @@ -23539,155 +23539,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.5136225031012, - "y": 175.50925744507498 + "x": 56.51362, + "y": 175.50926 }, { "body": null, "index": 1, "isInternal": false, - "x": 54.735984291662234, - "y": 180.97905007270097 + "x": 54.73598, + "y": 180.97905 }, { "body": null, "index": 2, "isInternal": false, - "x": 51.354441416301825, - "y": 185.63165555587915 + "x": 51.35444, + "y": 185.63166 }, { "body": null, "index": 3, "isInternal": false, - "x": 46.70104696282374, - "y": 189.0121126344913 + "x": 46.70105, + "y": 189.01211 }, { "body": null, "index": 4, "isInternal": false, - "x": 41.23083966491581, - "y": 190.78847439886113 + "x": 41.23084, + "y": 190.78847 }, { "body": null, "index": 5, "isInternal": false, - "x": 35.47883970406835, - "y": 190.78780327239477 + "x": 35.47884, + "y": 190.7878 }, { "body": null, "index": 6, "isInternal": false, - "x": 30.00904707644232, - "y": 189.01016506095584 + "x": 30.00905, + "y": 189.01017 }, { "body": null, "index": 7, "isInternal": false, - "x": 25.356441593264183, - "y": 185.6286221855954 + "x": 25.35644, + "y": 185.62862 }, { "body": null, "index": 8, "isInternal": false, - "x": 21.975984514651987, - "y": 180.97522773211733 + "x": 21.97598, + "y": 180.97523 }, { "body": null, "index": 9, "isInternal": false, - "x": 20.199622750282206, - "y": 175.5050204342094 + "x": 20.19962, + "y": 175.50502 }, { "body": null, "index": 10, "isInternal": false, - "x": 20.200293876748546, - "y": 169.75302047336191 + "x": 20.20029, + "y": 169.75302 }, { "body": null, "index": 11, "isInternal": false, - "x": 21.97793208818749, - "y": 164.28322784573592 + "x": 21.97793, + "y": 164.28323 }, { "body": null, "index": 12, "isInternal": false, - "x": 25.359474963547918, - "y": 159.63062236255774 + "x": 25.35947, + "y": 159.63062 }, { "body": null, "index": 13, "isInternal": false, - "x": 30.012869417026018, - "y": 156.2501652839456 + "x": 30.01287, + "y": 156.25017 }, { "body": null, "index": 14, "isInternal": false, - "x": 35.48307671493394, - "y": 154.4738035195758 + "x": 35.48308, + "y": 154.4738 }, { "body": null, "index": 15, "isInternal": false, - "x": 41.2350766757814, - "y": 154.47447464604213 + "x": 41.23508, + "y": 154.47447 }, { "body": null, "index": 16, "isInternal": false, - "x": 46.704869303407435, - "y": 156.25211285748105 + "x": 46.70487, + "y": 156.25211 }, { "body": null, "index": 17, "isInternal": false, - "x": 51.35747478658557, - "y": 159.6336557328415 + "x": 51.35747, + "y": 159.63366 }, { "body": null, "index": 18, "isInternal": false, - "x": 54.737931865197766, - "y": 164.28705018631956 + "x": 54.73793, + "y": 164.28705 }, { "body": null, "index": 19, "isInternal": false, - "x": 56.51429362956753, - "y": 169.7572574842275 + "x": 56.51429, + "y": 169.75726 }, { - "angle": 0.000040388751154022826, - "anglePrev": 0.00003005256000695293, - "angularSpeed": 0.000008721331342828195, - "angularVelocity": 0.000010182925369207972, - "area": 607.250026, + "angle": 0.00004, + "anglePrev": 0.00003, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 607.25003, "axes": { "#": 2639 }, "bounds": { "#": 2648 }, - "circleRadius": 14.08397633744856, + "circleRadius": 14.08398, "collisionFilter": { "#": 2651 }, @@ -23702,13 +23702,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 234.78678707670187, - "inverseInertia": 0.004259183459388252, - "inverseMass": 1.6467681468654227, + "inertia": 234.78679, + "inverseInertia": 0.00426, + "inverseMass": 1.64677, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6072500260000001, + "mass": 0.60725, "motion": 0, "parent": null, "position": { @@ -23730,7 +23730,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907060860090219, + "speed": 2.90706, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23769,36 +23769,36 @@ } ], { - "x": -0.9238616470646056, - "y": -0.3827266087993808 + "x": -0.92386, + "y": -0.38273 }, { - "x": -0.7070782214499961, - "y": -0.70713533976963 + "x": -0.70708, + "y": -0.70714 }, { - "x": -0.3826519803144874, - "y": -0.9238925597499968 + "x": -0.38265, + "y": -0.92389 }, { - "x": 0.00004038875114304212, - "y": -0.9999999991843743 + "x": 0.00004, + "y": -1 }, { - "x": 0.3827266087993808, - "y": -0.9238616470646056 + "x": 0.38273, + "y": -0.92386 }, { - "x": 0.70713533976963, - "y": -0.7070782214499961 + "x": 0.70714, + "y": -0.70708 }, { - "x": 0.9238925597499968, - "y": -0.3826519803144874 + "x": 0.92389, + "y": -0.38265 }, { - "x": 0.9999999991843743, - "y": 0.00004038875114304212 + "x": 1, + "y": 0.00004 }, { "max": { @@ -23809,12 +23809,12 @@ } }, { - "x": 84.09030198487227, - "y": 184.2837889205282 + "x": 84.0903, + "y": 184.28379 }, { - "x": 56.46389401244943, - "y": 153.75050611234565 + "x": 56.46389, + "y": 153.75051 }, { "category": 1, @@ -23831,16 +23831,16 @@ "y": 0 }, { - "x": 70.27700498947132, - "y": 167.56361708936757 + "x": 70.277, + "y": 167.56362 }, { - "x": -0.004333805937591089, - "y": 0.0014689379253607349 + "x": -0.00433, + "y": 0.00147 }, { - "x": 70.27677997683942, - "y": 164.6566077201209 + "x": 70.27678, + "y": 164.65661 }, { "endCol": 1, @@ -23863,8 +23863,8 @@ "yScale": 1 }, { - "x": 0.0002235948998219328, - "y": 2.9070138926838354 + "x": 0.00022, + "y": 2.90701 }, [ { @@ -23920,127 +23920,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 84.08989398991693, - "y": 170.31217497694576 + "x": 84.08989, + "y": 170.31217 }, { "body": null, "index": 1, "isInternal": false, - "x": 81.98668893794266, - "y": 175.38909003526112 + "x": 81.98669, + "y": 175.38909 }, { "body": null, "index": 2, "isInternal": false, - "x": 78.10153203081316, - "y": 179.2739331217943 + "x": 78.10153, + "y": 179.27393 }, { "body": null, "index": 3, "isInternal": false, - "x": 73.02444709741046, - "y": 181.3767280663895 + "x": 73.02445, + "y": 181.37673 }, { "body": null, "index": 4, "isInternal": false, - "x": 67.52844710189314, - "y": 181.37650608981315 + "x": 67.52845, + "y": 181.37651 }, { "body": null, "index": 5, "isInternal": false, - "x": 62.451532043577714, - "y": 179.27330103783893 + "x": 62.45153, + "y": 179.2733 }, { "body": null, "index": 6, "isInternal": false, - "x": 58.566688957044605, - "y": 175.38814413070938 + "x": 58.56669, + "y": 175.38814 }, { "body": null, "index": 7, "isInternal": false, - "x": 56.46389401244943, - "y": 170.31105919730666 + "x": 56.46389, + "y": 170.31106 }, { "body": null, "index": 8, "isInternal": false, - "x": 56.4641159890257, - "y": 164.81505920178938 + "x": 56.46412, + "y": 164.81506 }, { "body": null, "index": 9, "isInternal": false, - "x": 58.56732104099999, - "y": 159.73814414347402 + "x": 58.56732, + "y": 159.73814 }, { "body": null, "index": 10, "isInternal": false, - "x": 62.452477948129484, - "y": 155.85330105694084 + "x": 62.45248, + "y": 155.8533 }, { "body": null, "index": 11, "isInternal": false, - "x": 67.52956288153219, - "y": 153.75050611234565 + "x": 67.52956, + "y": 153.75051 }, { "body": null, "index": 12, "isInternal": false, - "x": 73.02556287704951, - "y": 153.75072808892193 + "x": 73.02556, + "y": 153.75073 }, { "body": null, "index": 13, "isInternal": false, - "x": 78.10247793536493, - "y": 155.8539331408962 + "x": 78.10248, + "y": 155.85393 }, { "body": null, "index": 14, "isInternal": false, - "x": 81.98732102189805, - "y": 159.73909004802576 + "x": 81.98732, + "y": 159.73909 }, { "body": null, "index": 15, "isInternal": false, - "x": 84.09011596649323, - "y": 164.81617498142847 + "x": 84.09012, + "y": 164.81617 }, { - "angle": 0.000008480803048385007, - "anglePrev": 0.000006882927489625042, - "angularSpeed": 0.0000015951564537100039, - "angularVelocity": 0.0000015073872125709434, - "area": 844.5415139999999, + "angle": 0.00001, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 844.54151, "axes": { "#": 2679 }, "bounds": { "#": 2689 }, - "circleRadius": 16.56400034293553, + "circleRadius": 16.564, "collisionFilter": { "#": 2692 }, @@ -24055,13 +24055,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 454.10729029624963, - "inverseInertia": 0.002202122761225925, - "inverseMass": 1.1840744160268717, + "inertia": 454.10729, + "inverseInertia": 0.0022, + "inverseMass": 1.18407, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8445415139999999, + "mass": 0.84454, "motion": 0, "parent": null, "position": { @@ -24083,7 +24083,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072556564404186, + "speed": 2.90726, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24125,40 +24125,40 @@ } ], { - "x": -0.9397245267030435, - "y": -0.34193246981347153 + "x": -0.93972, + "y": -0.34193 }, { - "x": -0.7660314659844744, - "y": -0.6428030749161651 + "x": -0.76603, + "y": -0.6428 }, { - "x": -0.49994584364985895, - "y": -0.8660566687100967 + "x": -0.49995, + "y": -0.86606 }, { - "x": -0.1736579760215918, - "y": -0.9848060252476545 + "x": -0.17366, + "y": -0.98481 }, { - "x": 0.17367467988849264, - "y": -0.9848030795878073 + "x": 0.17367, + "y": -0.9848 }, { - "x": 0.49996053329001433, - "y": -0.866048188701047 + "x": 0.49996, + "y": -0.86605 }, { - "x": 0.7660423688468361, - "y": -0.642790081699716 + "x": 0.76604, + "y": -0.64279 }, { - "x": 0.9397303262917306, - "y": -0.3419165305270244 + "x": 0.93973, + "y": -0.34192 }, { - "x": 0.999999999964038, - "y": 0.000008480803048283345 + "x": 1, + "y": 0.00001 }, { "max": { @@ -24169,12 +24169,12 @@ } }, { - "x": 112.39670373362577, - "y": 204.58620715986999 + "x": 112.3967, + "y": 204.58621 }, { - "x": 79.7726087697979, - "y": 168.55095150498778 + "x": 79.77261, + "y": 168.55095 }, { "category": 1, @@ -24191,16 +24191,16 @@ "y": 0 }, { - "x": 96.08463316000085, - "y": 185.11495150439208 + "x": 96.08463, + "y": 185.11495 }, { - "x": -0.025143543184244922, - "y": 0.2226052993508315 + "x": -0.02514, + "y": 0.22261 }, { - "x": 96.084587030288, - "y": 182.20769576100727 + "x": 96.08459, + "y": 182.2077 }, { "endCol": 2, @@ -24223,8 +24223,8 @@ "yScale": 1 }, { - "x": 0.00004618344652840278, - "y": 2.9072527595199062 + "x": 0.00005, + "y": 2.90725 }, [ { @@ -24286,141 +24286,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 112.39660876862467, - "y": 187.9910898431479 + "x": 112.39661, + "y": 187.99109 }, { "body": null, "index": 1, "isInternal": false, - "x": 110.42956292147414, - "y": 193.39707316121397 + "x": 110.42956, + "y": 193.39707 }, { "body": null, "index": 2, "isInternal": false, - "x": 106.73152554670808, - "y": 197.8040417990458 + "x": 106.73153, + "y": 197.80404 }, { "body": null, "index": 3, "isInternal": false, - "x": 101.74950115609771, - "y": 200.6799995475816 + "x": 101.7495, + "y": 200.68 }, { "body": null, "index": 4, "isInternal": false, - "x": 96.08449268397912, - "y": 201.67895150379638 + "x": 96.08449, + "y": 201.67895 }, { "body": null, "index": 5, "isInternal": false, - "x": 90.41950115650512, - "y": 200.67990346008304 + "x": 90.4195, + "y": 200.6799 }, { "body": null, "index": 6, "isInternal": false, - "x": 85.43752554747384, - "y": 197.80386120882568 + "x": 85.43753, + "y": 197.80386 }, { "body": null, "index": 7, "isInternal": false, - "x": 81.73956292250588, - "y": 193.39682984697453 + "x": 81.73956, + "y": 193.39683 }, { "body": null, "index": 8, "isInternal": false, - "x": 79.7726087697979, - "y": 187.9908131654293 + "x": 79.77261, + "y": 187.99081 }, { "body": null, "index": 9, "isInternal": false, - "x": 79.77265755137702, - "y": 182.23881316563626 + "x": 79.77266, + "y": 182.23881 }, { "body": null, "index": 10, "isInternal": false, - "x": 81.73970339852755, - "y": 176.8328298475702 + "x": 81.7397, + "y": 176.83283 }, { "body": null, "index": 11, "isInternal": false, - "x": 85.43774077329361, - "y": 172.42586120973837 + "x": 85.43774, + "y": 172.42586 }, { "body": null, "index": 12, "isInternal": false, - "x": 90.41976516390399, - "y": 169.54990346120258 + "x": 90.41977, + "y": 169.5499 }, { "body": null, "index": 13, "isInternal": false, - "x": 96.08477363602258, - "y": 168.55095150498778 + "x": 96.08477, + "y": 168.55095 }, { "body": null, "index": 14, "isInternal": false, - "x": 101.74976516349658, - "y": 169.54999954870112 + "x": 101.74977, + "y": 169.55 }, { "body": null, "index": 15, "isInternal": false, - "x": 106.73174077252786, - "y": 172.42604179995848 + "x": 106.73174, + "y": 172.42604 }, { "body": null, "index": 16, "isInternal": false, - "x": 110.42970339749581, - "y": 176.83307316180964 + "x": 110.4297, + "y": 176.83307 }, { "body": null, "index": 17, "isInternal": false, - "x": 112.3966575502038, - "y": 182.23908984335486 + "x": 112.39666, + "y": 182.23909 }, { - "angle": 0.000001303561891866684, - "anglePrev": 8.743885777111836e-7, - "angularSpeed": 4.2371556238371093e-7, - "angularVelocity": 2.670386094891352e-7, - "area": 572.138606, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 572.13861, "axes": { "#": 2722 }, "bounds": { "#": 2730 }, - "circleRadius": 13.725094307270233, + "circleRadius": 13.72509, "collisionFilter": { "#": 2733 }, @@ -24435,13 +24435,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 208.44088187722204, - "inverseInertia": 0.004797523360072091, - "inverseMass": 1.7478282176959057, + "inertia": 208.44088, + "inverseInertia": 0.0048, + "inverseMass": 1.74783, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.572138606, + "mass": 0.57214, "motion": 0, "parent": null, "position": { @@ -24463,7 +24463,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072798121251244, + "speed": 2.90728, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24499,32 +24499,32 @@ } ], { - "x": -0.9009750306230085, - "y": -0.43387094186390096 + "x": -0.90098, + "y": -0.43387 }, { - "x": -0.6235155080241805, - "y": -0.781810981793776 + "x": -0.62352, + "y": -0.78181 }, { - "x": -0.22249011409941918, - "y": -0.9749349461005217 + "x": -0.22249, + "y": -0.97493 }, { - "x": 0.22249265587474862, - "y": -0.9749343660379403 + "x": 0.22249, + "y": -0.97493 }, { - "x": 0.6235175463000665, - "y": -0.7818093562090084 + "x": 0.62352, + "y": -0.78181 }, { - "x": 0.9009761617751983, - "y": -0.43386859290899565 + "x": 0.90098, + "y": -0.43387 }, { - "x": 0.9999999999991503, - "y": 0.0000013035618918663148 + "x": 1, + "y": 0 }, { "max": { @@ -24535,12 +24535,12 @@ } }, { - "x": 139.1086677693534, - "y": 205.86039472583806 + "x": 139.10867, + "y": 205.86039 }, { - "x": 112.34661621602119, - "y": 175.503114914063 + "x": 112.34662, + "y": 175.50311 }, { "category": 1, @@ -24557,16 +24557,16 @@ "y": 0 }, { - "x": 125.72762019708783, - "y": 189.22811491405133 + "x": 125.72762, + "y": 189.22811 }, { - "x": -0.02514335055023825, - "y": 0.1491759878397986 + "x": -0.02514, + "y": 0.14918 }, { - "x": 125.72757652660819, - "y": 186.32083523113423 + "x": 125.72758, + "y": 186.32084 }, { "endCol": 2, @@ -24589,8 +24589,8 @@ "yScale": 1 }, { - "x": 0.00004359116262264706, - "y": 2.907284087440331 + "x": 0.00004, + "y": 2.90728 }, [ { @@ -24640,113 +24640,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 139.10861621599844, - "y": 192.28213235701048 + "x": 139.10862, + "y": 192.28213 }, { "body": null, "index": 1, "isInternal": false, - "x": 136.45860904249957, - "y": 197.78512890256673 + "x": 136.45861, + "y": 197.78513 }, { "body": null, "index": 2, "isInternal": false, - "x": 131.6826040772364, - "y": 201.59412267675194 + "x": 131.6826, + "y": 201.59412 }, { "body": null, "index": 3, "isInternal": false, - "x": 125.72760230570086, - "y": 202.95311491403973 + "x": 125.7276, + "y": 202.95311 }, { "body": null, "index": 4, "isInternal": false, - "x": 119.77260407724656, - "y": 201.59410715132978 + "x": 119.7726, + "y": 201.59411 }, { "body": null, "index": 5, "isInternal": false, - "x": 114.99660904251786, - "y": 197.7851009255214 + "x": 114.99661, + "y": 197.7851 }, { "body": null, "index": 6, "isInternal": false, - "x": 112.34661621602119, - "y": 192.28209747108707 + "x": 112.34662, + "y": 192.2821 }, { "body": null, "index": 7, "isInternal": false, - "x": 112.34662417817725, - "y": 186.17409747109224 + "x": 112.34662, + "y": 186.1741 }, { "body": null, "index": 8, "isInternal": false, - "x": 114.99663135167604, - "y": 180.671100925536 + "x": 114.99663, + "y": 180.6711 }, { "body": null, "index": 9, "isInternal": false, - "x": 119.77263631693926, - "y": 176.86210715135078 + "x": 119.77264, + "y": 176.86211 }, { "body": null, "index": 10, "isInternal": false, - "x": 125.7276380884748, - "y": 175.503114914063 + "x": 125.72764, + "y": 175.50311 }, { "body": null, "index": 11, "isInternal": false, - "x": 131.68263631692915, - "y": 176.86212267677294 + "x": 131.68264, + "y": 176.86212 }, { "body": null, "index": 12, "isInternal": false, - "x": 136.45863135165786, - "y": 180.67112890258133 + "x": 136.45863, + "y": 180.67113 }, { "body": null, "index": 13, "isInternal": false, - "x": 139.1086241781545, - "y": 186.17413235701565 + "x": 139.10862, + "y": 186.17413 }, { - "angle": -6.759231256189878e-7, - "anglePrev": -7.539619744980595e-7, - "angularSpeed": 7.803884887907164e-8, - "angularVelocity": 7.803884887907164e-8, - "area": 618.1187619999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 618.11876, "axes": { "#": 2759 }, "bounds": { "#": 2768 }, - "circleRadius": 14.209233539094651, + "circleRadius": 14.20923, "collisionFilter": { "#": 2771 }, @@ -24761,13 +24761,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 243.26656400082345, - "inverseInertia": 0.004110716999302111, - "inverseMass": 1.6178120799381273, + "inertia": 243.26656, + "inverseInertia": 0.00411, + "inverseMass": 1.61781, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6181187619999998, + "mass": 0.61812, "motion": 0, "parent": null, "position": { @@ -24789,7 +24789,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072635368314765, + "speed": 2.90726, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24828,36 +24828,36 @@ } ], { - "x": -0.9239181703544591, - "y": -0.38259013903767625 + "x": -0.92392, + "y": -0.38259 }, { - "x": -0.7071072591362116, - "y": -0.7071063032365603 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3825913880326416, - "y": -0.9239176531505697 + "x": -0.38259, + "y": -0.92392 }, { - "x": -6.759231256189366e-7, - "y": -0.9999999999997715 + "x": 0, + "y": -1 }, { - "x": 0.38259013903767625, - "y": -0.9239181703544591 + "x": 0.38259, + "y": -0.92392 }, { - "x": 0.7071063032365603, - "y": -0.7071072591362116 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9239176531505697, - "y": -0.3825913880326416 + "x": 0.92392, + "y": -0.38259 }, { - "x": 0.9999999999997715, - "y": -6.759231256189366e-7 + "x": 1, + "y": 0 }, { "max": { @@ -24868,12 +24868,12 @@ } }, { - "x": 168.15549591826914, - "y": 216.68991709082326 + "x": 168.1555, + "y": 216.68992 }, { - "x": 140.28348277227988, - "y": 185.91064980669557 + "x": 140.28348, + "y": 185.91065 }, { "category": 1, @@ -24890,16 +24890,16 @@ "y": 0 }, { - "x": 154.21948464593558, - "y": 199.84665168035127 + "x": 154.21948, + "y": 199.84665 }, { - "x": 0.04661879147619022, - "y": 0.37891109499976233 + "x": 0.04662, + "y": 0.37891 }, { - "x": 154.21947524725772, - "y": 196.93938814353498 + "x": 154.21948, + "y": 196.93939 }, { "endCol": 3, @@ -24922,8 +24922,8 @@ "yScale": 1 }, { - "x": 0.000009398677847514136, - "y": 2.9072635368162847 + "x": 0.00001, + "y": 2.90726 }, [ { @@ -24979,127 +24979,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 168.15548651959128, - "y": 202.61864226068593 + "x": 168.15549, + "y": 202.61864 }, { "body": null, "index": 1, "isInternal": false, - "x": 166.03448998167, - "y": 207.74064369431775 + "x": 166.03449, + "y": 207.74064 }, { "body": null, "index": 2, "isInternal": false, - "x": 162.11349263196553, - "y": 211.6616463446114 + "x": 162.11349, + "y": 211.66165 }, { "body": null, "index": 3, "isInternal": false, - "x": 156.99149406559962, - "y": 213.7826498066892 + "x": 156.99149, + "y": 213.78265 }, { "body": null, "index": 4, "isInternal": false, - "x": 151.44749406560092, - "y": 213.78265355400697 + "x": 151.44749, + "y": 213.78265 }, { "body": null, "index": 5, "isInternal": false, - "x": 146.3254926319691, - "y": 211.6616570160857 + "x": 146.32549, + "y": 211.66166 }, { "body": null, "index": 6, "isInternal": false, - "x": 142.40448998167545, - "y": 207.74065966638122 + "x": 142.40449, + "y": 207.74066 }, { "body": null, "index": 7, "isInternal": false, - "x": 140.28348651959763, - "y": 202.6186611000153 + "x": 140.28349, + "y": 202.61866 }, { "body": null, "index": 8, "isInternal": false, - "x": 140.28348277227988, - "y": 197.0746611000166 + "x": 140.28348, + "y": 197.07466 }, { "body": null, "index": 9, "isInternal": false, - "x": 142.40447931020117, - "y": 191.9526596663848 + "x": 142.40448, + "y": 191.95266 }, { "body": null, "index": 10, "isInternal": false, - "x": 146.32547665990563, - "y": 188.03165701609115 + "x": 146.32548, + "y": 188.03166 }, { "body": null, "index": 11, "isInternal": false, - "x": 151.44747522627154, - "y": 185.91065355401335 + "x": 151.44748, + "y": 185.91065 }, { "body": null, "index": 12, "isInternal": false, - "x": 156.99147522627024, - "y": 185.91064980669557 + "x": 156.99148, + "y": 185.91065 }, { "body": null, "index": 13, "isInternal": false, - "x": 162.11347665990206, - "y": 188.03164634461683 + "x": 162.11348, + "y": 188.03165 }, { "body": null, "index": 14, "isInternal": false, - "x": 166.0344793101957, - "y": 191.95264369432132 + "x": 166.03448, + "y": 191.95264 }, { "body": null, "index": 15, "isInternal": false, - "x": 168.15548277227353, - "y": 197.07464226068726 + "x": 168.15548, + "y": 197.07464 }, { - "angle": -0.000006912524326559382, - "anglePrev": -0.000006328436672942388, - "angularSpeed": 6.72645576231471e-7, - "angularVelocity": -5.800229377371271e-7, - "area": 420.81690000000003, + "angle": -0.00001, + "anglePrev": -0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 420.8169, "axes": { "#": 2799 }, "bounds": { "#": 2806 }, - "circleRadius": 11.84357853223594, + "circleRadius": 11.84358, "collisionFilter": { "#": 2809 }, @@ -25114,13 +25114,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 112.78565541699, - "inverseInertia": 0.008866375748784808, - "inverseMass": 2.3763304182888088, + "inertia": 112.78566, + "inverseInertia": 0.00887, + "inverseMass": 2.37633, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.42081690000000005, + "mass": 0.42082, "motion": 0, "parent": null, "position": { @@ -25142,7 +25142,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072675479731633, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25175,28 +25175,28 @@ } ], { - "x": -0.8660804065600802, - "y": -0.49990472029450383 + "x": -0.86608, + "y": -0.4999 }, { - "x": -0.49991669385048776, - "y": -0.8660734952702328 + "x": -0.49992, + "y": -0.86607 }, { - "x": -0.000006912524326504333, - "y": -0.9999999999761088 + "x": -0.00001, + "y": -1 }, { - "x": 0.49990472029450383, - "y": -0.8660804065600802 + "x": 0.4999, + "y": -0.86608 }, { - "x": 0.8660734952702328, - "y": -0.49991669385048776 + "x": 0.86607, + "y": -0.49992 }, { - "x": 0.9999999999761088, - "y": -0.000006912524326504333 + "x": 1, + "y": -0.00001 }, { "max": { @@ -25207,12 +25207,12 @@ } }, { - "x": 177.43700334068123, - "y": 255.72290193786134 + "x": 177.437, + "y": 255.7229 }, { - "x": 154.55694623828197, - "y": 229.93559201669808 + "x": 154.55695, + "y": 229.93559 }, { "category": 1, @@ -25229,16 +25229,16 @@ "y": 0 }, { - "x": 165.9969674248957, - "y": 241.3756132033118 + "x": 165.99697, + "y": 241.37561 }, { - "x": -0.5858307319802191, - "y": 1.479550332861526 + "x": -0.58583, + "y": 1.47955 }, { - "x": 165.9969664017499, - "y": 238.46833784500674 + "x": 165.99697, + "y": 238.46834 }, { "endCol": 3, @@ -25261,8 +25261,8 @@ "yScale": 1 }, { - "x": -0.0000012409103078425687, - "y": 2.9072768367220476 + "x": 0, + "y": 2.90728 }, [ { @@ -25306,99 +25306,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 177.43698861150943, - "y": 244.44053412396025 + "x": 177.43699, + "y": 244.44053 }, { "body": null, "index": 1, "isInternal": false, - "x": 174.37202531708687, - "y": 249.75055531072044 + "x": 174.37203, + "y": 249.75056 }, { "body": null, "index": 2, "isInternal": false, - "x": 169.06204650410078, - "y": 252.8155920161514 + "x": 169.06205, + "y": 252.81559 }, { "body": null, "index": 3, "isInternal": false, - "x": 162.93204650424724, - "y": 252.8156343899255 + "x": 162.93205, + "y": 252.81563 }, { "body": null, "index": 4, "isInternal": false, - "x": 157.62202531748704, - "y": 249.75067109550295 + "x": 157.62203, + "y": 249.75067 }, { "body": null, "index": 5, "isInternal": false, - "x": 154.55698861205607, - "y": 244.44069228251686 + "x": 154.55699, + "y": 244.44069 }, { "body": null, "index": 6, "isInternal": false, - "x": 154.55694623828197, - "y": 238.31069228266333 + "x": 154.55695, + "y": 238.31069 }, { "body": null, "index": 7, "isInternal": false, - "x": 157.62190953270454, - "y": 233.00067109590313 + "x": 157.62191, + "y": 233.00067 }, { "body": null, "index": 8, "isInternal": false, - "x": 162.93188834569062, - "y": 229.93563439047216 + "x": 162.93189, + "y": 229.93563 }, { "body": null, "index": 9, "isInternal": false, - "x": 169.06188834554416, - "y": 229.93559201669808 + "x": 169.06189, + "y": 229.93559 }, { "body": null, "index": 10, "isInternal": false, - "x": 174.37190953230436, - "y": 233.00055531112062 + "x": 174.37191, + "y": 233.00056 }, { "body": null, "index": 11, "isInternal": false, - "x": 177.43694623773533, - "y": 238.3105341241067 + "x": 177.43695, + "y": 238.31053 }, { - "angle": -2.559882752628626e-8, - "anglePrev": -0.0017141141264197034, - "angularSpeed": 1.4079374514107987e-9, - "angularVelocity": 0.0017142481402748586, - "area": 863.7712119999999, + "angle": 0, + "anglePrev": -0.00171, + "angularSpeed": 0, + "angularVelocity": 0.00171, + "area": 863.77121, "axes": { "#": 2833 }, "bounds": { "#": 2843 }, - "circleRadius": 16.75158607681756, + "circleRadius": 16.75159, "collisionFilter": { "#": 2846 }, @@ -25413,13 +25413,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 475.0222152143297, - "inverseInertia": 0.0021051647017156887, - "inverseMass": 1.1577139711389226, + "inertia": 475.02222, + "inverseInertia": 0.00211, + "inverseMass": 1.15771, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8637712119999998, + "mass": 0.86377, "motion": 0, "parent": null, "position": { @@ -25441,7 +25441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707115933176, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25483,40 +25483,40 @@ } ], { - "x": -0.939682976764892, - "y": -0.3420466388933992 + "x": -0.93968, + "y": -0.34205 }, { - "x": -0.7660468261134582, - "y": -0.6427847697336153 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.49996547537338015, - "y": -0.8660453356693688 + "x": -0.49997, + "y": -0.86605 }, { - "x": -0.17378535911835197, - "y": -0.9847835543692358 + "x": -0.17379, + "y": -0.98478 }, { - "x": 0.173785308699743, - "y": -0.9847835632666373 + "x": 0.17379, + "y": -0.98478 }, { - "x": 0.4999654310338891, - "y": -0.8660453612664277 + "x": 0.49997, + "y": -0.86605 }, { - "x": 0.7660467932043843, - "y": -0.6427848089534156 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9396829592529049, - "y": -0.34204668700296365 + "x": 0.93968, + "y": -0.34205 }, { - "x": 0.9999999999999999, - "y": -2.5598827526286257e-8 + "x": 1, + "y": 0 }, { "max": { @@ -25527,12 +25527,12 @@ } }, { - "x": 221.15336594820138, - "y": 399.0358113746422 + "x": 221.15337, + "y": 399.03581 }, { - "x": 188.1593657617656, - "y": 362.62454066304883 + "x": 188.15937, + "y": 362.62454 }, { "category": 1, @@ -25549,16 +25549,16 @@ "y": 0 }, { - "x": 204.65636583623257, - "y": 379.3765406630489 + "x": 204.65637, + "y": 379.37654 }, { "x": 0, "y": 0 }, { - "x": 205.4467926245372, - "y": 380.6129460723266 + "x": 205.44679, + "y": 380.61295 }, { "endCol": 4, @@ -25581,8 +25581,8 @@ "yScale": 1 }, { - "x": -0.7904320153307935, - "y": -1.236404412169179 + "x": -0.79043, + "y": -1.2364 }, [ { @@ -25644,141 +25644,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 221.15336591069953, - "y": 382.285540240745 + "x": 221.15337, + "y": 382.28554 }, { "body": null, "index": 1, "isInternal": false, - "x": 219.16336605064834, - "y": 387.75254029168667 + "x": 219.16337, + "y": 387.75254 }, { "body": null, "index": 2, "isInternal": false, - "x": 215.42436616471673, - "y": 392.2085403874008 + "x": 215.42437, + "y": 392.20854 }, { "body": null, "index": 3, "isInternal": false, - "x": 210.3853662391837, - "y": 395.1175405163932 + "x": 210.38537, + "y": 395.11754 }, { "body": null, "index": 4, "isInternal": false, - "x": 204.6563662650641, - "y": 396.1285406630489 + "x": 204.65637, + "y": 396.12854 }, { "body": null, "index": 5, "isInternal": false, - "x": 198.92736623918367, - "y": 395.1175408097045 + "x": 198.92737, + "y": 395.11754 }, { "body": null, "index": 6, "isInternal": false, - "x": 193.88836616471673, - "y": 392.208540938697 + "x": 193.88837, + "y": 392.20854 }, { "body": null, "index": 7, "isInternal": false, - "x": 190.14936605064835, - "y": 387.7525410344111 + "x": 190.14937, + "y": 387.75254 }, { "body": null, "index": 8, "isInternal": false, - "x": 188.15936591069956, - "y": 382.2855410853527 + "x": 188.15937, + "y": 382.28554 }, { "body": null, "index": 9, "isInternal": false, - "x": 188.1593657617656, - "y": 376.4675410853527 + "x": 188.15937, + "y": 376.46754 }, { "body": null, "index": 10, "isInternal": false, - "x": 190.1493656218168, - "y": 371.000541034411 + "x": 190.14937, + "y": 371.00054 }, { "body": null, "index": 11, "isInternal": false, - "x": 193.8883655077484, - "y": 366.544540938697 + "x": 193.88837, + "y": 366.54454 }, { "body": null, "index": 12, "isInternal": false, - "x": 198.92736543328144, - "y": 363.6355408097045 + "x": 198.92737, + "y": 363.63554 }, { "body": null, "index": 13, "isInternal": false, - "x": 204.65636540740104, - "y": 362.62454066304883 + "x": 204.65637, + "y": 362.62454 }, { "body": null, "index": 14, "isInternal": false, - "x": 210.38536543328146, - "y": 363.6355405163932 + "x": 210.38537, + "y": 363.63554 }, { "body": null, "index": 15, "isInternal": false, - "x": 215.4243655077484, - "y": 366.5445403874008 + "x": 215.42437, + "y": 366.54454 }, { "body": null, "index": 16, "isInternal": false, - "x": 219.16336562181678, - "y": 371.0005402916867 + "x": 219.16337, + "y": 371.00054 }, { "body": null, "index": 17, "isInternal": false, - "x": 221.15336576176557, - "y": 376.467540240745 + "x": 221.15337, + "y": 376.46754 }, { - "angle": 0.012070970837454714, - "anglePrev": 0.011308651922672316, - "angularSpeed": 0.0017134100948243552, - "angularVelocity": 0.0007621363982755203, - "area": 523.6658279999999, + "angle": 0.01207, + "anglePrev": 0.01131, + "angularSpeed": 0.00171, + "angularVelocity": 0.00076, + "area": 523.66583, "axes": { "#": 2876 }, "bounds": { "#": 2884 }, - "circleRadius": 13.130787037037038, + "circleRadius": 13.13079, "collisionFilter": { "#": 2887 }, @@ -25793,13 +25793,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 174.6179419646033, - "inverseInertia": 0.005726788374373977, - "inverseMass": 1.9096147705861, + "inertia": 174.61794, + "inverseInertia": 0.00573, + "inverseMass": 1.90961, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5236658279999999, + "mass": 0.52367, "motion": 0, "parent": null, "position": { @@ -25821,7 +25821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.40642280985637913, + "speed": 0.40642, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25857,32 +25857,32 @@ } ], { - "x": -0.8956310132123544, - "y": -0.4447978059435671 + "x": -0.89563, + "y": -0.4448 }, { - "x": -0.613937873646813, - "y": -0.789354348377223 + "x": -0.61394, + "y": -0.78935 }, { - "x": -0.2108503411539569, - "y": -0.9775183546283208 + "x": -0.21085, + "y": -0.97752 }, { - "x": 0.23438579760428424, - "y": -0.97214366113317 + "x": 0.23439, + "y": -0.97214 }, { - "x": 0.6328136661646481, - "y": -0.7743041159100582 + "x": 0.63281, + "y": -0.7743 }, { - "x": 0.9061072636916337, - "y": -0.42304801936099423 + "x": 0.90611, + "y": -0.42305 }, { - "x": 0.9999271467161384, - "y": 0.012070677699409326 + "x": 0.99993, + "y": 0.01207 }, { "max": { @@ -25893,12 +25893,12 @@ } }, { - "x": 249.9667291601245, - "y": 147.1327727787556 + "x": 249.96673, + "y": 147.13277 }, { - "x": 223.94129059892418, - "y": 120.67084981200263 + "x": 223.94129, + "y": 120.67085 }, { "category": 1, @@ -25915,16 +25915,16 @@ "y": 0 }, { - "x": 237.13039130762678, - "y": 133.80089317553222 + "x": 237.13039, + "y": 133.80089 }, { "x": 0, "y": 0 }, { - "x": 237.43797860157252, - "y": 133.8344445922493 + "x": 237.43798, + "y": 133.83444 }, { "endCol": 5, @@ -25947,8 +25947,8 @@ "yScale": 1 }, { - "x": -0.3075909444776812, - "y": -0.03355440017855926 + "x": -0.30759, + "y": -0.03355 }, [ { @@ -25998,113 +25998,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 249.89618811964908, - "y": 136.87720911414462 + "x": 249.89619, + "y": 136.87721 }, { "body": null, "index": 1, "isInternal": false, - "x": 247.29682075748957, - "y": 142.1112143029594 + "x": 247.29682, + "y": 142.11121 }, { "body": null, "index": 2, "isInternal": false, - "x": 242.68418014528459, - "y": 145.6987979720377 + "x": 242.68418, + "y": 145.6988 }, { "body": null, "index": 3, "isInternal": false, - "x": 236.9718912387558, - "y": 146.9309365390618 + "x": 236.97189, + "y": 146.93094 }, { "body": null, "index": 4, "isInternal": false, - "x": 231.29101023560088, - "y": 145.56126467033067 + "x": 231.29101, + "y": 145.56126 }, { "body": null, "index": 5, "isInternal": false, - "x": 226.76631658111384, - "y": 141.86337914843511 + "x": 226.76632, + "y": 141.86338 }, { "body": null, "index": 6, "isInternal": false, - "x": 224.29405345512907, - "y": 136.56815148232897 + "x": 224.29405, + "y": 136.56815 }, { "body": null, "index": 7, "isInternal": false, - "x": 224.36459449560448, - "y": 130.72457723691983 + "x": 224.36459, + "y": 130.72458 }, { "body": null, "index": 8, "isInternal": false, - "x": 226.963961857764, - "y": 125.49057204810505 + "x": 226.96396, + "y": 125.49057 }, { "body": null, "index": 9, "isInternal": false, - "x": 231.57660246996898, - "y": 121.9029883790268 + "x": 231.5766, + "y": 121.90299 }, { "body": null, "index": 10, "isInternal": false, - "x": 237.28889137649776, - "y": 120.67084981200263 + "x": 237.28889, + "y": 120.67085 }, { "body": null, "index": 11, "isInternal": false, - "x": 242.96977237965268, - "y": 122.04052168073387 + "x": 242.96977, + "y": 122.04052 }, { "body": null, "index": 12, "isInternal": false, - "x": 247.49446603413972, - "y": 125.73840720262932 + "x": 247.49447, + "y": 125.73841 }, { "body": null, "index": 13, "isInternal": false, - "x": 249.9667291601245, - "y": 131.03363486873548 + "x": 249.96673, + "y": 131.03363 }, { - "angle": -0.07019251149034629, - "anglePrev": -0.06571231707150078, - "angularSpeed": 0.007110669826817289, - "angularVelocity": -0.004308502895048097, - "area": 569.8258799999999, + "angle": -0.07019, + "anglePrev": -0.06571, + "angularSpeed": 0.00711, + "angularVelocity": -0.00431, + "area": 569.82588, "axes": { "#": 2913 }, "bounds": { "#": 2921 }, - "circleRadius": 13.697230795610425, + "circleRadius": 13.69723, "collisionFilter": { "#": 2924 }, @@ -26119,13 +26119,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 206.75914841461585, - "inverseInertia": 0.004836545360472716, - "inverseMass": 1.7549220474156073, + "inertia": 206.75915, + "inverseInertia": 0.00484, + "inverseMass": 1.75492, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5698258799999999, + "mass": 0.56983, "motion": 0, "parent": null, "position": { @@ -26147,7 +26147,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7428910195350937, + "speed": 0.74289, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26183,32 +26183,32 @@ } ], { - "x": -0.9291701337087196, - "y": -0.36965235373756256 + "x": -0.92917, + "y": -0.36965 }, { - "x": -0.6768109628418293, - "y": -0.736156858676951 + "x": -0.67681, + "y": -0.73616 }, { - "x": -0.2902804182678968, - "y": -0.9569416276713095 + "x": -0.29028, + "y": -0.95694 }, { - "x": 0.1535252512597723, - "y": -0.9881447248382311 + "x": 0.15353, + "y": -0.98814 }, { - "x": 0.5671463514522859, - "y": -0.8236170323848095 + "x": 0.56715, + "y": -0.82362 }, { - "x": 0.8683057705016968, - "y": -0.4960293226347156 + "x": 0.86831, + "y": -0.49603 }, { - "x": 0.9975375169666268, - "y": -0.07013488607003725 + "x": 0.99754, + "y": -0.07013 }, { "max": { @@ -26219,12 +26219,12 @@ } }, { - "x": 284.68402461270983, - "y": 154.7996294411089 + "x": 284.68402, + "y": 154.79963 }, { - "x": 257.5781205206729, - "y": 126.73107477233329 + "x": 257.57812, + "y": 126.73107 }, { "category": 1, @@ -26241,16 +26241,16 @@ "y": 0 }, { - "x": 271.149137478396, - "y": 140.39434614222512 + "x": 271.14914, + "y": 140.39435 }, { "x": 0, "y": 0 }, { - "x": 270.6583739890592, - "y": 140.33826406578206 + "x": 270.65837, + "y": 140.33826 }, { "endCol": 5, @@ -26273,8 +26273,8 @@ "yScale": 1 }, { - "x": 0.41675736405710495, - "y": 0.13029485547235709 + "x": 0.41676, + "y": 0.13029 }, [ { @@ -26324,113 +26324,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 284.68402461270983, - "y": 142.49825922536013 + "x": 284.68402, + "y": 142.49826 }, { "body": null, "index": 1, "isInternal": false, - "x": 282.4307186746297, - "y": 148.16224204219608 + "x": 282.43072, + "y": 148.16224 }, { "body": null, "index": 2, "isInternal": false, - "x": 277.943037570719, - "y": 152.28814501119606 + "x": 277.94304, + "y": 152.28815 }, { "body": null, "index": 3, "isInternal": false, - "x": 272.1097750128973, - "y": 154.057617512117 + "x": 272.10978, + "y": 154.05762 }, { "body": null, "index": 4, "isInternal": false, - "x": 266.0863066440538, - "y": 153.12176826702455 + "x": 266.08631, + "y": 153.12177 }, { "body": null, "index": 5, "isInternal": false, - "x": 261.0654601362385, - "y": 149.66439103204414 + "x": 261.06546, + "y": 149.66439 }, { "body": null, "index": 6, "isInternal": false, - "x": 258.04179260956516, - "y": 144.37142176251868 + "x": 258.04179, + "y": 144.37142 }, { "body": null, "index": 7, "isInternal": false, - "x": 257.6142503440822, - "y": 138.2904330590901 + "x": 257.61425, + "y": 138.29043 }, { "body": null, "index": 8, "isInternal": false, - "x": 259.8675562821623, - "y": 132.62645024225415 + "x": 259.86756, + "y": 132.62645 }, { "body": null, "index": 9, "isInternal": false, - "x": 264.35523738607304, - "y": 128.50054727325428 + "x": 264.35524, + "y": 128.50055 }, { "body": null, "index": 10, "isInternal": false, - "x": 270.1884999438948, - "y": 126.73107477233329 + "x": 270.1885, + "y": 126.73107 }, { "body": null, "index": 11, "isInternal": false, - "x": 276.21196831273824, - "y": 127.66692401742586 + "x": 276.21197, + "y": 127.66692 }, { "body": null, "index": 12, "isInternal": false, - "x": 281.2328148205535, - "y": 131.1243012524061 + "x": 281.23281, + "y": 131.1243 }, { "body": null, "index": 13, "isInternal": false, - "x": 284.25648234722695, - "y": 136.41727052193156 + "x": 284.25648, + "y": 136.41727 }, { - "angle": 0.055951525292068656, - "anglePrev": 0.03364811954471427, - "angularSpeed": 0.019086347135453464, - "angularVelocity": 0.022746617155375494, - "area": 349.69686400000006, + "angle": 0.05595, + "anglePrev": 0.03365, + "angularSpeed": 0.01909, + "angularVelocity": 0.02275, + "area": 349.69686, "axes": { "#": 2950 }, "bounds": { "#": 2957 }, - "circleRadius": 10.796596364883403, + "circleRadius": 10.7966, "collisionFilter": { "#": 2960 }, @@ -26445,13 +26445,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 77.88449319287959, - "inverseInertia": 0.012839526316535404, - "inverseMass": 2.859619581833024, + "inertia": 77.88449, + "inverseInertia": 0.01284, + "inverseMass": 2.85962, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.34969686400000005, + "mass": 0.3497, "motion": 0, "parent": null, "position": { @@ -26473,7 +26473,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5716384016103095, + "speed": 0.57164, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26506,28 +26506,28 @@ } ], { - "x": -0.836655996721305, - "y": -0.5477287130964383 + "x": -0.83666, + "y": -0.54773 }, { - "x": -0.45087379861011223, - "y": -0.8925877087025612 + "x": -0.45087, + "y": -0.89259 }, { - "x": 0.05592233647056376, - "y": -0.9984351217198209 + "x": 0.05592, + "y": -0.99844 }, { - "x": 0.5477287130964383, - "y": -0.836655996721305 + "x": 0.54773, + "y": -0.83666 }, { - "x": 0.8925877087025612, - "y": -0.45087379861011223 + "x": 0.89259, + "y": -0.45087 }, { - "x": 0.9984351217198209, - "y": 0.05592233647056376 + "x": 0.99844, + "y": 0.05592 }, { "max": { @@ -26538,12 +26538,12 @@ } }, { - "x": 305.13858050510436, - "y": 158.13873410155114 + "x": 305.13858, + "y": 158.13873 }, { - "x": 283.5736474102623, - "y": 136.62091489003447 + "x": 283.57365, + "y": 136.62091 }, { "category": 1, @@ -26560,16 +26560,16 @@ "y": 0 }, { - "x": 294.142574302777, - "y": 147.18984178254925 + "x": 294.14257, + "y": 147.18984 }, { "x": 0, "y": 0 }, { - "x": 293.65920469760925, - "y": 147.0248840052954 + "x": 293.6592, + "y": 147.02488 }, { "endCol": 6, @@ -26592,8 +26592,8 @@ "yScale": 1 }, { - "x": 0.4832491904934386, - "y": 0.07726992443710401 + "x": 0.48325, + "y": 0.07727 }, [ { @@ -26637,99 +26637,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 304.39900717909416, - "y": 150.56268355968592 + "x": 304.39901, + "y": 150.56268 }, { "body": null, "index": 1, "isInternal": false, - "x": 301.3377169053698, - "y": 155.23880661837458 + "x": 301.33772, + "y": 155.23881 }, { "body": null, "index": 2, "isInternal": false, - "x": 296.34898798581054, - "y": 157.75876867506403 + "x": 296.34899, + "y": 157.75877 }, { "body": null, "index": 3, "isInternal": false, - "x": 290.7697325256403, - "y": 157.44627465886646 + "x": 290.76973, + "y": 157.44627 }, { "body": null, "index": 4, "isInternal": false, - "x": 286.09360946695153, - "y": 154.3849843851421 + "x": 286.09361, + "y": 154.38498 }, { "body": null, "index": 5, "isInternal": false, - "x": 283.5736474102623, - "y": 149.39625546558295 + "x": 283.57365, + "y": 149.39626 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.88614142645986, - "y": 143.81700000541258 + "x": 283.88614, + "y": 143.817 }, { "body": null, "index": 7, "isInternal": false, - "x": 286.9474317001842, - "y": 139.14087694672392 + "x": 286.94743, + "y": 139.14088 }, { "body": null, "index": 8, "isInternal": false, - "x": 291.9361606197435, - "y": 136.62091489003447 + "x": 291.93616, + "y": 136.62091 }, { "body": null, "index": 9, "isInternal": false, - "x": 297.51541607991373, - "y": 136.93340890623205 + "x": 297.51542, + "y": 136.93341 }, { "body": null, "index": 10, "isInternal": false, - "x": 302.1915391386025, - "y": 139.9946991799564 + "x": 302.19154, + "y": 139.9947 }, { "body": null, "index": 11, "isInternal": false, - "x": 304.7115011952917, - "y": 144.98342809951555 + "x": 304.7115, + "y": 144.98343 }, { - "angle": 0.08185430761978, - "anglePrev": 0.0557737727979208, - "angularSpeed": 0.02400663522823378, - "angularVelocity": 0.02646302745079645, - "area": 615.732246, + "angle": 0.08185, + "anglePrev": 0.05577, + "angularSpeed": 0.02401, + "angularVelocity": 0.02646, + "area": 615.73225, "axes": { "#": 2984 }, "bounds": { "#": 2993 }, - "circleRadius": 14.181970164609053, + "circleRadius": 14.18197, "collisionFilter": { "#": 2996 }, @@ -26744,13 +26744,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 241.39171788103542, - "inverseInertia": 0.0041426441999672416, - "inverseMass": 1.6240825561700398, + "inertia": 241.39172, + "inverseInertia": 0.00414, + "inverseMass": 1.62408, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6157322460000001, + "mass": 0.61573, "motion": 0, "parent": null, "position": { @@ -26772,7 +26772,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6286782901436451, + "speed": 0.62868, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26811,36 +26811,36 @@ } ], { - "x": -0.8895319591547088, - "y": -0.4568729513140229 + "x": -0.88953, + "y": -0.45687 }, { - "x": -0.6469241266356796, - "y": -0.7625543747016759 + "x": -0.64692, + "y": -0.76255 }, { - "x": -0.3057899482332307, - "y": -0.9520990009234955 + "x": -0.30579, + "y": -0.9521 }, { - "x": 0.08176293251774878, - "y": -0.9966518062322963 + "x": 0.08176, + "y": -0.99665 }, { - "x": 0.4568729513140229, - "y": -0.8895319591547088 + "x": 0.45687, + "y": -0.88953 }, { - "x": 0.7625543747016759, - "y": -0.6469241266356796 + "x": 0.76255, + "y": -0.64692 }, { - "x": 0.9520990009234955, - "y": -0.3057899482332307 + "x": 0.9521, + "y": -0.30579 }, { - "x": 0.9966518062322963, - "y": 0.08176293251774878 + "x": 0.99665, + "y": 0.08176 }, { "max": { @@ -26851,12 +26851,12 @@ } }, { - "x": 332.6858884454023, - "y": 162.97825675830387 + "x": 332.68589, + "y": 162.97826 }, { - "x": 304.09740706791337, - "y": 134.32532019431181 + "x": 304.09741, + "y": 134.32532 }, { "category": 1, @@ -26873,16 +26873,16 @@ "y": 0 }, { - "x": 318.186075075075, - "y": 148.41398820147347 + "x": 318.18608, + "y": 148.41399 }, { "x": 0, "y": 0 }, { - "x": 317.71511927800356, - "y": 148.35915638691313 + "x": 317.71512, + "y": 148.35916 }, { "endCol": 6, @@ -26905,8 +26905,8 @@ "yScale": 1 }, { - "x": 0.4746830551558219, - "y": 0.009445188260997384 + "x": 0.47468, + "y": 0.00945 }, [ { @@ -26962,127 +26962,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 331.82226701368336, - "y": 152.30896437770764 + "x": 331.82227, + "y": 152.30896 }, { "body": null, "index": 1, "isInternal": false, - "x": 329.29438302885893, - "y": 157.230756283027 + "x": 329.29438, + "y": 157.23076 }, { "body": null, "index": 2, "isInternal": false, - "x": 325.0745461561299, - "y": 160.81071644587203 + "x": 325.07455, + "y": 160.81072 }, { "body": null, "index": 3, "isInternal": false, - "x": 319.8065699945304, - "y": 162.50265620863507 + "x": 319.80657, + "y": 162.50266 }, { "body": null, "index": 4, "isInternal": false, - "x": 314.29109889884086, - "y": 162.05018014008186 + "x": 314.2911, + "y": 162.05018 }, { "body": null, "index": 5, "isInternal": false, - "x": 309.3693069935215, - "y": 159.52229615525735 + "x": 309.36931, + "y": 159.5223 }, { "body": null, "index": 6, "isInternal": false, - "x": 305.78934683067644, - "y": 155.30245928252842 + "x": 305.78935, + "y": 155.30246 }, { "body": null, "index": 7, "isInternal": false, - "x": 304.09740706791337, - "y": 150.03448312092885 + "x": 304.09741, + "y": 150.03448 }, { "body": null, "index": 8, "isInternal": false, - "x": 304.54988313646663, - "y": 144.5190120252393 + "x": 304.54988, + "y": 144.51901 }, { "body": null, "index": 9, "isInternal": false, - "x": 307.07776712129106, - "y": 139.59722011991994 + "x": 307.07777, + "y": 139.59722 }, { "body": null, "index": 10, "isInternal": false, - "x": 311.2976039940201, - "y": 136.0172599570749 + "x": 311.2976, + "y": 136.01726 }, { "body": null, "index": 11, "isInternal": false, - "x": 316.5655801556196, - "y": 134.32532019431181 + "x": 316.56558, + "y": 134.32532 }, { "body": null, "index": 12, "isInternal": false, - "x": 322.08105125130913, - "y": 134.77779626286508 + "x": 322.08105, + "y": 134.7778 }, { "body": null, "index": 13, "isInternal": false, - "x": 327.0028431566285, - "y": 137.3056802476896 + "x": 327.00284, + "y": 137.30568 }, { "body": null, "index": 14, "isInternal": false, - "x": 330.58280331947356, - "y": 141.52551712041853 + "x": 330.5828, + "y": 141.52552 }, { "body": null, "index": 15, "isInternal": false, - "x": 332.2747430822366, - "y": 146.7934932820181 + "x": 332.27474, + "y": 146.79349 }, { - "angle": 0.09676145148221031, - "anglePrev": 0.07765686412774414, - "angularSpeed": 0.019947107173943723, - "angularVelocity": 0.01900064526457905, - "area": 731.546114, + "angle": 0.09676, + "anglePrev": 0.07766, + "angularSpeed": 0.01995, + "angularVelocity": 0.019, + "area": 731.54611, "axes": { "#": 3024 }, "bounds": { "#": 3033 }, - "circleRadius": 15.458290466392318, + "circleRadius": 15.45829, "collisionFilter": { "#": 3036 }, @@ -27097,13 +27097,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 340.7391093603774, - "inverseInertia": 0.0029347966597587294, - "inverseMass": 1.366967824532795, + "inertia": 340.73911, + "inverseInertia": 0.00293, + "inverseMass": 1.36697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.731546114, + "mass": 0.73155, "motion": 0, "parent": null, "position": { @@ -27125,7 +27125,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5488648888203237, + "speed": 0.54886, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27164,36 +27164,36 @@ } ], { - "x": -0.8825864710239831, - "y": -0.47015010492972525 + "x": -0.88259, + "y": -0.47015 }, { - "x": -0.6354851605255929, - "y": -0.7721130815831068 + "x": -0.63549, + "y": -0.77211 }, { - "x": -0.2916371463068542, - "y": -0.9565290245956963 + "x": -0.29164, + "y": -0.95653 }, { - "x": 0.09661052947918844, - "y": -0.9953222621813254 + "x": 0.09661, + "y": -0.99532 }, { - "x": 0.47015010492972525, - "y": -0.8825864710239831 + "x": 0.47015, + "y": -0.88259 }, { - "x": 0.7721130815831068, - "y": -0.6354851605255929 + "x": 0.77211, + "y": -0.63549 }, { - "x": 0.9565290245956963, - "y": -0.2916371463068542 + "x": 0.95653, + "y": -0.29164 }, { - "x": 0.9953222621813254, - "y": 0.09661052947918844 + "x": 0.99532, + "y": 0.09661 }, { "max": { @@ -27204,12 +27204,12 @@ } }, { - "x": 362.3867763735883, - "y": 168.0943810210323 + "x": 362.38678, + "y": 168.09438 }, { - "x": 331.2138176260134, - "y": 136.9666114200172 + "x": 331.21382, + "y": 136.96661 }, { "category": 1, @@ -27226,16 +27226,16 @@ "y": 0 }, { - "x": 346.59527579985377, - "y": 152.34806959385747 + "x": 346.59528, + "y": 152.34807 }, { "x": 0, "y": 0 }, { - "x": 346.04876221173834, - "y": 152.23410602659175 + "x": 346.04876, + "y": 152.23411 }, { "endCol": 7, @@ -27258,8 +27258,8 @@ "yScale": 1 }, { - "x": 0.5435436355333536, - "y": 0.1445984193371146 + "x": 0.54354, + "y": 0.1446 }, [ { @@ -27315,119 +27315,119 @@ "body": null, "index": 0, "isInternal": false, - "x": 361.3939792598756, - "y": 156.8146737740303 + "x": 361.39398, + "y": 156.81467 }, { "body": null, "index": 1, "isInternal": false, - "x": 358.558461608503, - "y": 162.1376323168667 + "x": 358.55846, + "y": 162.13763 }, { "body": null, "index": 2, "isInternal": false, - "x": 353.9013682520711, - "y": 165.9706378568413 + "x": 353.90137, + "y": 165.97064 }, { "body": null, "index": 3, "isInternal": false, - "x": 348.1324555051587, - "y": 167.72952776769776 + "x": 348.13246, + "y": 167.72953 }, { "body": null, "index": 4, "isInternal": false, - "x": 342.1286716196809, - "y": 167.14677305387931 + "x": 342.12867, + "y": 167.14677 }, { "body": null, "index": 5, "isInternal": false, - "x": 336.8057130768446, - "y": 164.31125540250682 + "x": 336.80571, + "y": 164.31126 }, { "body": null, "index": 6, "isInternal": false, - "x": 332.97270753686985, - "y": 159.65416204607467 + "x": 332.97271, + "y": 159.65416 }, { "body": null, "index": 7, "isInternal": false, - "x": 331.2138176260134, - "y": 153.88524929916238 + "x": 331.21382, + "y": 153.88525 }, { "body": null, "index": 8, "isInternal": false, - "x": 331.7965723398319, - "y": 147.88146541368465 + "x": 331.79657, + "y": 147.88147 }, { "body": null, "index": 9, "isInternal": false, - "x": 334.6320899912045, - "y": 142.55850687084825 + "x": 334.63209, + "y": 142.55851 }, { "body": null, "index": 10, "isInternal": false, - "x": 339.2891833476364, - "y": 138.72550133087367 + "x": 339.28918, + "y": 138.7255 }, { "body": null, "index": 11, "isInternal": false, - "x": 345.05809609454883, - "y": 136.9666114200172 + "x": 345.0581, + "y": 136.96661 }, { "body": null, "index": 12, "isInternal": false, - "x": 351.0618799800266, - "y": 137.54936613383563 + "x": 351.06188, + "y": 137.54937 }, { "body": null, "index": 13, "isInternal": false, - "x": 356.38483852286294, - "y": 140.38488378520813 + "x": 356.38484, + "y": 140.38488 }, { "body": null, "index": 14, "isInternal": false, - "x": 360.2178440628377, - "y": 145.04197714164027 + "x": 360.21784, + "y": 145.04198 }, { "body": null, "index": 15, "isInternal": false, - "x": 361.97673397369414, - "y": 150.81088988855257 + "x": 361.97673, + "y": 150.81089 }, { - "angle": 0.021137087441210366, - "anglePrev": 0.018597365512745996, - "angularSpeed": 0.0008277746371674708, - "angularVelocity": 0.002530693303440301, + "angle": 0.02114, + "anglePrev": 0.0186, + "angularSpeed": 0.00083, + "angularVelocity": 0.00253, "area": 1138.37292, "axes": { "#": 3064 @@ -27435,7 +27435,7 @@ "bounds": { "#": 3075 }, - "circleRadius": 19.193458504801097, + "circleRadius": 19.19346, "collisionFilter": { "#": 3078 }, @@ -27450,13 +27450,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 825.0362217611556, - "inverseInertia": 0.0012120679960758083, - "inverseMass": 0.8784467571487908, + "inertia": 825.03622, + "inverseInertia": 0.00121, + "inverseMass": 0.87845, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1383729200000001, + "mass": 1.13837, "motion": 0, "parent": null, "position": { @@ -27478,7 +27478,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5438629535057746, + "speed": 0.54386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27523,44 +27523,44 @@ } ], { - "x": -0.9442928431394457, - "y": -0.32910640588664075 + "x": -0.94429, + "y": -0.32911 }, { - "x": -0.7964574243407848, - "y": -0.6046946098754672 + "x": -0.79646, + "y": -0.60469 }, { - "x": -0.5704948108764545, - "y": -0.8213012058697097 + "x": -0.57049, + "y": -0.8213 }, { - "x": -0.28890506380503067, - "y": -0.9573577513697854 + "x": -0.28891, + "y": -0.95736 }, { - "x": 0.02113551355083333, - "y": -0.9997766200841781 + "x": 0.02114, + "y": -0.99978 }, { - "x": 0.32910640588664075, - "y": -0.9442928431394457 + "x": 0.32911, + "y": -0.94429 }, { - "x": 0.6046946098754672, - "y": -0.7964574243407848 + "x": 0.60469, + "y": -0.79646 }, { - "x": 0.8213012058697097, - "y": -0.5704948108764545 + "x": 0.8213, + "y": -0.57049 }, { - "x": 0.9573577513697854, - "y": -0.28890506380503067 + "x": 0.95736, + "y": -0.28891 }, { - "x": 0.9997766200841781, - "y": 0.02113551355083333 + "x": 0.99978, + "y": 0.02114 }, { "max": { @@ -27571,12 +27571,12 @@ } }, { - "x": 399.7488757430894, - "y": 174.25272813124712 + "x": 399.74888, + "y": 174.25273 }, { - "x": 361.2859032286713, - "y": 135.88790964420784 + "x": 361.2859, + "y": 135.88791 }, { "category": 1, @@ -27593,16 +27593,16 @@ "y": 0 }, { - "x": 380.30213856280034, - "y": 154.90414497833672 + "x": 380.30214, + "y": 154.90414 }, { - "x": 0.14900492740810978, - "y": -0.16453415990657724 + "x": 0.149, + "y": -0.16453 }, { - "x": 379.75807954842645, - "y": 154.79490460737995 + "x": 379.75808, + "y": 154.7949 }, { "endCol": 8, @@ -27625,8 +27625,8 @@ "yScale": 1 }, { - "x": 0.5466255082466773, - "y": 0.12238059726021788 + "x": 0.54663, + "y": 0.12238 }, [ { @@ -27694,155 +27694,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 399.19143400254296, - "y": 158.30714009883266 + "x": 399.19143, + "y": 158.30714 }, { "body": null, "index": 1, "isInternal": false, - "x": 397.2151436777779, - "y": 163.97763686298302 + "x": 397.21514, + "y": 163.97764 }, { "body": null, "index": 2, "isInternal": false, - "x": 393.58425566067086, - "y": 168.75996445603107 + "x": 393.58426, + "y": 168.75996 }, { "body": null, "index": 3, "isInternal": false, - "x": 388.65275361298103, - "y": 172.18549982347818 + "x": 388.65275, + "y": 172.1855 }, { "body": null, "index": 4, "isInternal": false, - "x": 382.90380182252994, - "y": 173.9203803124656 + "x": 382.9038, + "y": 173.92038 }, { "body": null, "index": 5, "isInternal": false, - "x": 376.8991434423044, - "y": 173.7934404180793 + "x": 376.89914, + "y": 173.79344 }, { "body": null, "index": 6, "isInternal": false, - "x": 371.228646678154, - "y": 171.81715009331432 + "x": 371.22865, + "y": 171.81715 }, { "body": null, "index": 7, "isInternal": false, - "x": 366.446319085106, - "y": 168.18626207620727 + "x": 366.44632, + "y": 168.18626 }, { "body": null, "index": 8, "isInternal": false, - "x": 363.02078371765884, - "y": 163.25476002851747 + "x": 363.02078, + "y": 163.25476 }, { "body": null, "index": 9, "isInternal": false, - "x": 361.2859032286713, - "y": 157.5058082380663 + "x": 361.2859, + "y": 157.50581 }, { "body": null, "index": 10, "isInternal": false, - "x": 361.4128431230577, - "y": 151.50114985784074 + "x": 361.41284, + "y": 151.50115 }, { "body": null, "index": 11, "isInternal": false, - "x": 363.38913344782276, - "y": 145.83065309369042 + "x": 363.38913, + "y": 145.83065 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.0200214649298, - "y": 141.04832550064236 + "x": 367.02002, + "y": 141.04833 }, { "body": null, "index": 13, "isInternal": false, - "x": 371.95152351261964, - "y": 137.62279013319525 + "x": 371.95152, + "y": 137.62279 }, { "body": null, "index": 14, "isInternal": false, - "x": 377.70047530307073, - "y": 135.88790964420784 + "x": 377.70048, + "y": 135.88791 }, { "body": null, "index": 15, "isInternal": false, - "x": 383.70513368329625, - "y": 136.01484953859412 + "x": 383.70513, + "y": 136.01485 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.37563044744667, - "y": 137.9911398633591 + "x": 389.37563, + "y": 137.99114 }, { "body": null, "index": 17, "isInternal": false, - "x": 394.1579580404947, - "y": 141.62202788046616 + "x": 394.15796, + "y": 141.62203 }, { "body": null, "index": 18, "isInternal": false, - "x": 397.58349340794183, - "y": 146.55352992815597 + "x": 397.58349, + "y": 146.55353 }, { "body": null, "index": 19, "isInternal": false, - "x": 399.31837389692936, - "y": 152.30248171860708 + "x": 399.31837, + "y": 152.30248 }, { - "angle": -0.01197301269691686, - "anglePrev": 0.01161511253961184, - "angularSpeed": 0.019781848275516233, - "angularVelocity": -0.027032066275302573, - "area": 343.22203199999996, + "angle": -0.01197, + "anglePrev": 0.01162, + "angularSpeed": 0.01978, + "angularVelocity": -0.02703, + "area": 343.22203, "axes": { "#": 3110 }, "bounds": { "#": 3117 }, - "circleRadius": 10.696116255144034, + "circleRadius": 10.69612, "collisionFilter": { "#": 3120 }, @@ -27857,13 +27857,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 75.02704455757933, - "inverseInertia": 0.013328527145069033, - "inverseMass": 2.913565875048488, + "inertia": 75.02704, + "inverseInertia": 0.01333, + "inverseMass": 2.91357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.34322203199999995, + "mass": 0.34322, "motion": 0, "parent": null, "position": { @@ -27885,7 +27885,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.130978619916633, + "speed": 2.13098, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27918,28 +27918,28 @@ } ], { - "x": -0.871903327285216, - "y": -0.48967804511634877 + "x": -0.8719, + "y": -0.48968 }, { - "x": -0.510414282089965, - "y": -0.8599286369452905 + "x": -0.51041, + "y": -0.85993 }, { - "x": -0.011972726637686452, - "y": -0.9999283243397293 + "x": -0.01197, + "y": -0.99993 }, { - "x": 0.48967804511634877, - "y": -0.871903327285216 + "x": 0.48968, + "y": -0.8719 }, { - "x": 0.8599286369452905, - "y": -0.510414282089965 + "x": 0.85993, + "y": -0.51041 }, { - "x": 0.9999283243397293, - "y": -0.011972726637686452 + "x": 0.99993, + "y": -0.01197 }, { "max": { @@ -27950,12 +27950,12 @@ } }, { - "x": 419.9184289588864, - "y": 171.02465395180235 + "x": 419.91843, + "y": 171.02465 }, { - "x": 398.6837279703355, - "y": 148.22579752779217 + "x": 398.68373, + "y": 148.2258 }, { "category": 1, @@ -27972,16 +27972,16 @@ "y": 0 }, { - "x": 409.0481279247467, - "y": 158.59019748220337 + "x": 409.04813, + "y": 158.5902 }, { - "x": 0.1521932296239375, - "y": 0.006721800224075092 + "x": 0.15219, + "y": 0.00672 }, { - "x": 408.2025192765352, - "y": 157.0272296420625 + "x": 408.20252, + "y": 157.02723 }, { "endCol": 8, @@ -28004,8 +28004,8 @@ "yScale": 1 }, { - "x": 0.6065237778460073, - "y": 1.4286992500002214 + "x": 0.60652, + "y": 1.4287 }, [ { @@ -28049,99 +28049,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 419.41252787915795, - "y": 161.23429687235512 + "x": 419.41253, + "y": 161.2343 }, { "body": null, "index": 1, "isInternal": false, - "x": 416.7011355732889, - "y": 166.0621056676239 + "x": 416.70114, + "y": 166.06211 }, { "body": null, "index": 2, "isInternal": false, - "x": 411.93963173813967, - "y": 168.88831642194828 + "x": 411.93963, + "y": 168.88832 }, { "body": null, "index": 3, "isInternal": false, - "x": 406.40402853459494, - "y": 168.95459743661456 + "x": 406.40403, + "y": 168.9546 }, { "body": null, "index": 4, "isInternal": false, - "x": 401.57621973932623, - "y": 166.24320513074554 + "x": 401.57622, + "y": 166.24321 }, { "body": null, "index": 5, "isInternal": false, - "x": 398.7500089850018, - "y": 161.48170129559628 + "x": 398.75001, + "y": 161.4817 }, { "body": null, "index": 6, "isInternal": false, - "x": 398.6837279703355, - "y": 155.9460980920516 + "x": 398.68373, + "y": 155.9461 }, { "body": null, "index": 7, "isInternal": false, - "x": 401.3951202762045, - "y": 151.11828929678282 + "x": 401.39512, + "y": 151.11829 }, { "body": null, "index": 8, "isInternal": false, - "x": 406.1566241113538, - "y": 148.29207854245846 + "x": 406.15662, + "y": 148.29208 }, { "body": null, "index": 9, "isInternal": false, - "x": 411.6922273148985, - "y": 148.22579752779217 + "x": 411.69223, + "y": 148.2258 }, { "body": null, "index": 10, "isInternal": false, - "x": 416.5200361101672, - "y": 150.9371898336612 + "x": 416.52004, + "y": 150.93719 }, { "body": null, "index": 11, "isInternal": false, - "x": 419.34624686449166, - "y": 155.69869366881045 + "x": 419.34625, + "y": 155.69869 }, { - "angle": 0.02531517993812531, - "anglePrev": 0.03125744763336191, - "angularSpeed": 0.0016504906355670724, - "angularVelocity": -0.005941987173540043, - "area": 328.23895999999996, + "angle": 0.02532, + "anglePrev": 0.03126, + "angularSpeed": 0.00165, + "angularVelocity": -0.00594, + "area": 328.23896, "axes": { "#": 3144 }, "bounds": { "#": 3151 }, - "circleRadius": 10.460090877914952, + "circleRadius": 10.46009, "collisionFilter": { "#": 3154 }, @@ -28156,13 +28156,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 68.61953633030359, - "inverseInertia": 0.014573109255452408, - "inverseMass": 3.0465609566883836, + "inertia": 68.61954, + "inverseInertia": 0.01457, + "inverseMass": 3.04656, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.32823895999999997, + "mass": 0.32824, "motion": 0, "parent": null, "position": { @@ -28184,7 +28184,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6797720298466238, + "speed": 0.67977, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28217,28 +28217,28 @@ } ], { - "x": -0.8530245317504659, - "y": -0.5218708156545047 + "x": -0.85302, + "y": -0.52187 }, { - "x": -0.47803157860969836, - "y": -0.8783426494551652 + "x": -0.47803, + "y": -0.87834 }, { - "x": 0.025312476117419574, - "y": -0.9996795879444598 + "x": 0.02531, + "y": -0.99968 }, { - "x": 0.5218708156545047, - "y": -0.8530245317504659 + "x": 0.52187, + "y": -0.85302 }, { - "x": 0.8783426494551652, - "y": -0.47803157860969836 + "x": 0.87834, + "y": -0.47803 }, { - "x": 0.9996795879444598, - "y": 0.025312476117419574 + "x": 0.99968, + "y": 0.02531 }, { "max": { @@ -28249,12 +28249,12 @@ } }, { - "x": 435.2638526724778, - "y": 156.50526283923392 + "x": 435.26385, + "y": 156.50526 }, { - "x": 414.4719325439027, - "y": 135.66017764364645 + "x": 414.47193, + "y": 135.66018 }, { "category": 1, @@ -28271,16 +28271,16 @@ "y": 0 }, { - "x": 425.09456924303726, - "y": 145.8294610730871 + "x": 425.09457, + "y": 145.82946 }, { - "x": 0.7449935136855217, - "y": 0.764797582721755 + "x": 0.74499, + "y": 0.7648 }, { - "x": 424.44006467834004, - "y": 144.4049589174259 + "x": 424.44006, + "y": 144.40496 }, { "endCol": 9, @@ -28303,8 +28303,8 @@ "yScale": 1 }, { - "x": 0.6545095801562866, - "y": 1.4245052240626421 + "x": 0.65451, + "y": 1.42451 }, [ { @@ -28348,99 +28348,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 435.12681092677815, - "y": 148.79135097634313 + "x": 435.12681, + "y": 148.79135 }, { "body": null, "index": 1, "isInternal": false, - "x": 432.3009884021101, - "y": 153.4103023788888 + "x": 432.30099, + "y": 153.4103 }, { "body": null, "index": 2, "isInternal": false, - "x": 427.5449446289125, - "y": 155.99874450252779 + "x": 427.54494, + "y": 155.99874 }, { "body": null, "index": 3, "isInternal": false, - "x": 422.13267933978113, - "y": 155.8617027568281 + "x": 422.13268, + "y": 155.8617 }, { "body": null, "index": 4, "isInternal": false, - "x": 417.51372793723556, - "y": 153.03588023215983 + "x": 417.51373, + "y": 153.03588 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.9252858135967, - "y": 148.2798364589623 + "x": 414.92529, + "y": 148.27984 }, { "body": null, "index": 6, "isInternal": false, - "x": 415.06232755929636, - "y": 142.86757116983105 + "x": 415.06233, + "y": 142.86757 }, { "body": null, "index": 7, "isInternal": false, - "x": 417.88815008396443, - "y": 138.2486197672854 + "x": 417.88815, + "y": 138.24862 }, { "body": null, "index": 8, "isInternal": false, - "x": 422.644193857162, - "y": 135.66017764364645 + "x": 422.64419, + "y": 135.66018 }, { "body": null, "index": 9, "isInternal": false, - "x": 428.0564591462934, - "y": 135.79721938934614 + "x": 428.05646, + "y": 135.79722 }, { "body": null, "index": 10, "isInternal": false, - "x": 432.67541054883895, - "y": 138.62304191401435 + "x": 432.67541, + "y": 138.62304 }, { "body": null, "index": 11, "isInternal": false, - "x": 435.2638526724778, - "y": 143.37908568721187 + "x": 435.26385, + "y": 143.37909 }, { - "angle": -0.06191558898939856, - "anglePrev": -0.03916994921383517, - "angularSpeed": 0.022880895400524636, - "angularVelocity": -0.022851704664222892, - "area": 714.3709199999998, + "angle": -0.06192, + "anglePrev": -0.03917, + "angularSpeed": 0.02288, + "angularVelocity": -0.02285, + "area": 714.37092, "axes": { "#": 3178 }, "bounds": { "#": 3187 }, - "circleRadius": 15.275505829903977, + "circleRadius": 15.27551, "collisionFilter": { "#": 3190 }, @@ -28455,13 +28455,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 324.9272263186872, - "inverseInertia": 0.0030776122128319417, - "inverseMass": 1.3998330167191018, + "inertia": 324.92723, + "inverseInertia": 0.00308, + "inverseMass": 1.39983, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7143709199999999, + "mass": 0.71437, "motion": 0, "parent": null, "position": { @@ -28483,7 +28483,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5237954069009978, + "speed": 1.5238, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28522,36 +28522,36 @@ } ], { - "x": -0.9457918973558598, - "y": -0.32477328537920547 + "x": -0.94579, + "y": -0.32477 }, { - "x": -0.7495048185317325, - "y": -0.6619988874595748 + "x": -0.7495, + "y": -0.662 }, { - "x": -0.43910583794065233, - "y": -0.8984353416281206 + "x": -0.43911, + "y": -0.89844 }, { - "x": -0.06187603725516534, - "y": -0.998083842176396 + "x": -0.06188, + "y": -0.99808 }, { - "x": 0.32477328537920547, - "y": -0.9457918973558598 + "x": 0.32477, + "y": -0.94579 }, { - "x": 0.6619988874595748, - "y": -0.7495048185317325 + "x": 0.662, + "y": -0.7495 }, { - "x": 0.8984353416281206, - "y": -0.43910583794065233 + "x": 0.89844, + "y": -0.43911 }, { - "x": 0.998083842176396, - "y": -0.06187603725516534 + "x": 0.99808, + "y": -0.06188 }, { "max": { @@ -28562,12 +28562,12 @@ } }, { - "x": 448.7726679193731, - "y": 184.49285849492816 + "x": 448.77267, + "y": 184.49286 }, { - "x": 417.0945798915913, - "y": 153.62224374588143 + "x": 417.09458, + "y": 153.62224 }, { "category": 1, @@ -28584,16 +28584,16 @@ "y": 0 }, { - "x": 432.23226260609835, - "y": 168.7599264603886 + "x": 432.23226, + "y": 168.75993 }, { - "x": 0.270363420319051, - "y": -0.45331714040506904 + "x": 0.27036, + "y": -0.45332 }, { - "x": 430.88058458450354, - "y": 168.4631401449489 + "x": 430.88058, + "y": 168.46314 }, { "endCol": 9, @@ -28616,8 +28616,8 @@ "yScale": 1 }, { - "x": 1.362614055985432, - "y": 0.2394887176023417 + "x": 1.36261, + "y": 0.23949 }, [ { @@ -28673,119 +28673,119 @@ "body": null, "index": 0, "isInternal": false, - "x": 447.3699453206054, - "y": 170.8071895199174 + "x": 447.36995, + "y": 170.80719 }, { "body": null, "index": 1, "isInternal": false, - "x": 445.4340674137654, - "y": 176.44477647976183 + "x": 445.43407, + "y": 176.44478 }, { "body": null, "index": 2, "isInternal": false, - "x": 441.4888877238272, - "y": 180.91144741168642 + "x": 441.48889, + "y": 180.91145 }, { "body": null, "index": 3, "isInternal": false, - "x": 436.1335792459409, - "y": 183.52882799285496 + "x": 436.13358, + "y": 183.52883 }, { "body": null, "index": 4, "isInternal": false, - "x": 430.1849995465696, - "y": 183.8976091748958 + "x": 430.185, + "y": 183.89761 }, { "body": null, "index": 5, "isInternal": false, - "x": 424.547412586725, - "y": 181.96173126805562 + "x": 424.54741, + "y": 181.96173 }, { "body": null, "index": 6, "isInternal": false, - "x": 420.0807416548005, - "y": 178.01655157811751 + "x": 420.08074, + "y": 178.01655 }, { "body": null, "index": 7, "isInternal": false, - "x": 417.46336107363203, - "y": 172.66124310023116 + "x": 417.46336, + "y": 172.66124 }, { "body": null, "index": 8, "isInternal": false, - "x": 417.0945798915913, - "y": 166.71266340085984 + "x": 417.09458, + "y": 166.71266 }, { "body": null, "index": 9, "isInternal": false, - "x": 419.0304577984313, - "y": 161.0750764410154 + "x": 419.03046, + "y": 161.07508 }, { "body": null, "index": 10, "isInternal": false, - "x": 422.9756374883694, - "y": 156.6084055090908 + "x": 422.97564, + "y": 156.60841 }, { "body": null, "index": 11, "isInternal": false, - "x": 428.3309459662558, - "y": 153.99102492792227 + "x": 428.33095, + "y": 153.99102 }, { "body": null, "index": 12, "isInternal": false, - "x": 434.2795256656271, - "y": 153.62224374588143 + "x": 434.27953, + "y": 153.62224 }, { "body": null, "index": 13, "isInternal": false, - "x": 439.9171126254716, - "y": 155.5581216527216 + "x": 439.91711, + "y": 155.55812 }, { "body": null, "index": 14, "isInternal": false, - "x": 444.3837835573962, - "y": 159.5033013426597 + "x": 444.38378, + "y": 159.5033 }, { "body": null, "index": 15, "isInternal": false, - "x": 447.00116413856466, - "y": 164.85860982054606 + "x": 447.00116, + "y": 164.85861 }, { - "angle": 0.03680203084208952, - "anglePrev": 0.024654733323762088, - "angularSpeed": 0.012877902625559393, - "angularVelocity": 0.01240922589081719, + "angle": 0.0368, + "anglePrev": 0.02465, + "angularSpeed": 0.01288, + "angularVelocity": 0.01241, "area": 788.65954, "axes": { "#": 3218 @@ -28793,7 +28793,7 @@ "bounds": { "#": 3228 }, - "circleRadius": 16.00655864197531, + "circleRadius": 16.00656, "collisionFilter": { "#": 3231 }, @@ -28808,13 +28808,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 396.00036994809216, - "inverseInertia": 0.0025252501661326234, - "inverseMass": 1.2679742642813907, + "inertia": 396.00037, + "inverseInertia": 0.00253, + "inverseMass": 1.26797, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.78865954, + "mass": 0.78866, "motion": 0, "parent": null, "position": { @@ -28836,7 +28836,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9518405855741366, + "speed": 0.95184, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28878,40 +28878,40 @@ } ], { - "x": -0.9264731949653168, - "y": -0.3763607564701164 + "x": -0.92647, + "y": -0.37636 }, { - "x": -0.741942205364205, - "y": -0.6704638423504279 + "x": -0.74194, + "y": -0.67046 }, { - "x": -0.46774698979747276, - "y": -0.883862406449897 + "x": -0.46775, + "y": -0.88386 }, { - "x": -0.13740284394856547, - "y": -0.9905152489865292 + "x": -0.1374, + "y": -0.99052 }, { - "x": 0.20987095263694727, - "y": -0.9777290950152098 + "x": 0.20987, + "y": -0.97773 }, { - "x": 0.531477676852794, - "y": -0.8470722985714723 + "x": 0.53148, + "y": -0.84707 }, { - "x": 0.7892376707966515, - "y": -0.614087859345449 + "x": 0.78924, + "y": -0.61409 }, { - "x": 0.9516413912041202, - "y": -0.3072111042053763 + "x": 0.95164, + "y": -0.30721 }, { - "x": 0.9993228816916172, - "y": 0.036793724024109804 + "x": 0.99932, + "y": 0.03679 }, { "max": { @@ -28922,12 +28922,12 @@ } }, { - "x": 513.45148413482, - "y": 166.40792693498497 + "x": 513.45148, + "y": 166.40793 }, { - "x": 481.1377653496647, - "y": 133.68035641639716 + "x": 481.13777, + "y": 133.68036 }, { "category": 1, @@ -28944,16 +28944,16 @@ "y": 0 }, { - "x": 496.99237848655656, - "y": 149.67651778363486 + "x": 496.99238, + "y": 149.67652 }, { "x": 0, "y": 0 }, { - "x": 496.09311836273497, - "y": 149.33887188915824 + "x": 496.09312, + "y": 149.33887 }, { "endCol": 10, @@ -28976,8 +28976,8 @@ "yScale": 1 }, { - "x": 0.8840019955221692, - "y": 0.3971680347764561 + "x": 0.884, + "y": 0.39717 }, [ { @@ -29039,141 +29039,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.6424185178746, - "y": 153.03461486652958 + "x": 512.64242, + "y": 153.03461 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.5505320992009, - "y": 158.18413340823514 + "x": 510.55053, + "y": 158.18413 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.82324697229797, - "y": 162.30878558542153 + "x": 506.82325, + "y": 162.30879 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.91025686077154, - "y": 164.90877888619048 + "x": 501.91026, + "y": 164.90878 }, { "body": null, "index": 4, "isInternal": false, - "x": 496.4034213461027, - "y": 165.67267915087257 + "x": 496.40342, + "y": 165.67268 }, { "body": null, "index": 5, "isInternal": false, - "x": 490.96767130624835, - "y": 164.50588760812647 + "x": 490.96767, + "y": 164.50589 }, { "body": null, "index": 6, "isInternal": false, - "x": 486.259180712848, - "y": 161.5516443324534 + "x": 486.25918, + "y": 161.55164 }, { "body": null, "index": 7, "isInternal": false, - "x": 482.84530452718246, - "y": 157.1640642033907 + "x": 482.8453, + "y": 157.16406 }, { "body": null, "index": 8, "isInternal": false, - "x": 481.1377653496647, - "y": 151.87465592294552 + "x": 481.13777, + "y": 151.87466 }, { "body": null, "index": 9, "isInternal": false, - "x": 481.3423384552386, - "y": 146.31842070074015 + "x": 481.34234, + "y": 146.31842 }, { "body": null, "index": 10, "isInternal": false, - "x": 483.4342248739122, - "y": 141.1689021590346 + "x": 483.43422, + "y": 141.1689 }, { "body": null, "index": 11, "isInternal": false, - "x": 487.16151000081516, - "y": 137.0442499818482 + "x": 487.16151, + "y": 137.04425 }, { "body": null, "index": 12, "isInternal": false, - "x": 492.0745001123416, - "y": 134.44425668107925 + "x": 492.0745, + "y": 134.44426 }, { "body": null, "index": 13, "isInternal": false, - "x": 497.58133562701056, - "y": 133.68035641639716 + "x": 497.58134, + "y": 133.68036 }, { "body": null, "index": 14, "isInternal": false, - "x": 503.0170856668649, - "y": 134.84714795914326 + "x": 503.01709, + "y": 134.84715 }, { "body": null, "index": 15, "isInternal": false, - "x": 507.72557626026526, - "y": 137.80139123481632 + "x": 507.72558, + "y": 137.80139 }, { "body": null, "index": 16, "isInternal": false, - "x": 511.1394524459308, - "y": 142.18897136387903 + "x": 511.13945, + "y": 142.18897 }, { "body": null, "index": 17, "isInternal": false, - "x": 512.8469916234487, - "y": 147.47837964432424 + "x": 512.84699, + "y": 147.47838 }, { - "angle": 0.005201866795545071, - "anglePrev": 0.04623715293018909, - "angularSpeed": 0.0006599766993339193, - "angularVelocity": -0.0461131738327405, - "area": 439.96750399999996, + "angle": 0.0052, + "anglePrev": 0.04624, + "angularSpeed": 0.00066, + "angularVelocity": -0.04611, + "area": 439.9675, "axes": { "#": 3261 }, "bounds": { "#": 3269 }, - "circleRadius": 12.03596536351166, + "circleRadius": 12.03597, "collisionFilter": { "#": 3272 }, @@ -29188,13 +29188,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 123.25983907729764, - "inverseInertia": 0.008112942605522052, - "inverseMass": 2.272895136364435, + "inertia": 123.25984, + "inverseInertia": 0.00811, + "inverseMass": 2.2729, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.43996750399999995, + "mass": 0.43997, "motion": 0, "parent": null, "position": { @@ -29216,7 +29216,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.908639183296313, + "speed": 2.90864, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29252,32 +29252,32 @@ } ], { - "x": -0.8987055185879239, - "y": -0.4385526089987503 + "x": -0.89871, + "y": -0.43855 }, { - "x": -0.6194351917032592, - "y": -0.785047796812109 + "x": -0.61944, + "y": -0.78505 }, { - "x": -0.21746650132085965, - "y": -0.9760677849428618 + "x": -0.21747, + "y": -0.97607 }, { - "x": 0.22760929840766997, - "y": -0.9737525390356464 + "x": 0.22761, + "y": -0.97375 }, { - "x": 0.6275689496917487, - "y": -0.778560988865224 + "x": 0.62757, + "y": -0.77856 }, { - "x": 0.9032193843326513, - "y": -0.42917915113125743 + "x": 0.90322, + "y": -0.42918 }, { - "x": 0.9999864703214297, - "y": 0.005201843335662006 + "x": 0.99999, + "y": 0.0052 }, { "max": { @@ -29288,12 +29288,12 @@ } }, { - "x": 540.5333005321737, - "y": 180.3521643688845 + "x": 540.5333, + "y": 180.35216 }, { - "x": 516.9877394948893, - "y": 153.37228095855806 + "x": 516.98774, + "y": 153.37228 }, { "category": 1, @@ -29310,16 +29310,16 @@ "y": 0 }, { - "x": 528.7355112740939, - "y": 165.40811811534678 + "x": 528.73551, + "y": 165.40812 }, { "x": 0, "y": 0 }, { - "x": 529.1738631331172, - "y": 165.2992617835393 + "x": 529.17386, + "y": 165.29926 }, { "endCol": 11, @@ -29342,8 +29342,8 @@ "yScale": 1 }, { - "x": -0.368447367900103, - "y": -0.19535558611906367 + "x": -0.36845, + "y": -0.19536 }, [ { @@ -29393,113 +29393,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 540.4554219803925, - "y": 168.1471203125682 + "x": 540.45542, + "y": 168.14712 }, { "body": null, "index": 1, "isInternal": false, - "x": 538.1063493274277, - "y": 172.96096593442732 + "x": 538.10635, + "y": 172.96097 }, { "body": null, "index": 2, "isInternal": false, - "x": 533.9010318329806, - "y": 176.2791354254112 + "x": 533.90103, + "y": 176.27914 }, { "body": null, "index": 3, "isInternal": false, - "x": 528.672901887706, - "y": 177.4439552721355 + "x": 528.6729, + "y": 177.44396 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4571731369434, - "y": 176.22480737361354 + "x": 523.45717, + "y": 176.22481 }, { "body": null, "index": 5, "isInternal": false, - "x": 519.2866039559783, - "y": 172.8630672428502 + "x": 519.2866, + "y": 172.86307 }, { "body": null, "index": 6, "isInternal": false, - "x": 516.9877394948893, - "y": 168.02504345316692 + "x": 516.98774, + "y": 168.02504 }, { "body": null, "index": 7, "isInternal": false, - "x": 517.0156005677952, - "y": 162.66911591812536 + "x": 517.0156, + "y": 162.66912 }, { "body": null, "index": 8, "isInternal": false, - "x": 519.3646732207601, - "y": 157.85527029626624 + "x": 519.36467, + "y": 157.85527 }, { "body": null, "index": 9, "isInternal": false, - "x": 523.5699907152073, - "y": 154.53710080528236 + "x": 523.56999, + "y": 154.5371 }, { "body": null, "index": 10, "isInternal": false, - "x": 528.7981206604819, - "y": 153.37228095855806 + "x": 528.79812, + "y": 153.37228 }, { "body": null, "index": 11, "isInternal": false, - "x": 534.0138494112445, - "y": 154.59142885708002 + "x": 534.01385, + "y": 154.59143 }, { "body": null, "index": 12, "isInternal": false, - "x": 538.1844185922095, - "y": 157.95316898784336 + "x": 538.18442, + "y": 157.95317 }, { "body": null, "index": 13, "isInternal": false, - "x": 540.4832830532984, - "y": 162.79119277752665 + "x": 540.48328, + "y": 162.79119 }, { - "angle": 0.03349733045254663, - "anglePrev": 0.05061319393595324, - "angularSpeed": 0.009954509023178614, - "angularVelocity": -0.018430300846602465, - "area": 465.1898319999999, + "angle": 0.0335, + "anglePrev": 0.05061, + "angularSpeed": 0.00995, + "angularVelocity": -0.01843, + "area": 465.18983, "axes": { "#": 3298 }, "bounds": { "#": 3306 }, - "circleRadius": 12.376071673525377, + "circleRadius": 12.37607, "collisionFilter": { "#": 3309 }, @@ -29514,13 +29514,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 137.79733623042054, - "inverseInertia": 0.007257034332854085, - "inverseMass": 2.1496600553384413, + "inertia": 137.79734, + "inverseInertia": 0.00726, + "inverseMass": 2.14966, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4651898319999999, + "mass": 0.46519, "motion": 0, "parent": null, "position": { @@ -29542,7 +29542,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3972735871795048, + "speed": 1.39727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29578,32 +29578,32 @@ } ], { - "x": -0.8858998297355402, - "y": -0.4638765909965072 + "x": -0.8859, + "y": -0.46388 }, { - "x": -0.5969647283885215, - "y": -0.8022674822401934 + "x": -0.59696, + "y": -0.80227 }, { - "x": -0.18980251732174203, - "y": -0.981822287595026 + "x": -0.1898, + "y": -0.98182 }, { - "x": 0.2551043908170288, - "y": -0.9669135172216143 + "x": 0.2551, + "y": -0.96691 }, { - "x": 0.6493329967549393, - "y": -0.7605042138773792 + "x": 0.64933, + "y": -0.7605 }, { - "x": 0.9149665008097528, - "y": -0.4035298036031 + "x": 0.91497, + "y": -0.40353 }, { - "x": 0.9994390168844667, - "y": 0.03349106640598937 + "x": 0.99944, + "y": 0.03349 }, { "max": { @@ -29614,12 +29614,12 @@ } }, { - "x": 564.6116846289503, - "y": 175.5562505313058 + "x": 564.61168, + "y": 175.55625 }, { - "x": 540.0097665313965, - "y": 149.45322562856114 + "x": 540.00977, + "y": 149.45323 }, { "category": 1, @@ -29636,16 +29636,16 @@ "y": 0 }, { - "x": 552.4602190543403, - "y": 161.8222829015233 + "x": 552.46022, + "y": 161.82228 }, { "x": 0, "y": 0 }, { - "x": 552.8778532454772, - "y": 160.30481474919705 + "x": 552.87785, + "y": 160.30481 }, { "endCol": 11, @@ -29668,8 +29668,8 @@ "yScale": 1 }, { - "x": -0.5445458776099485, - "y": 1.6920353037890266 + "x": -0.54455, + "y": 1.69204 }, [ { @@ -29719,105 +29719,105 @@ "body": null, "index": 0, "isInternal": false, - "x": 564.4272158351861, - "y": 164.97884116127778 + "x": 564.42722, + "y": 164.97884 }, { "body": null, "index": 1, "isInternal": false, - "x": 561.8723739133258, - "y": 169.8580139143482 + "x": 561.87237, + "y": 169.85801 }, { "body": null, "index": 2, "isInternal": false, - "x": 557.4537811845831, - "y": 173.14587496638526 + "x": 557.45378, + "y": 173.14587 }, { "body": null, "index": 3, "isInternal": false, - "x": 552.0457336164998, - "y": 174.19134017448545 + "x": 552.04573, + "y": 174.19134 }, { "body": null, "index": 4, "isInternal": false, - "x": 546.719806143244, - "y": 172.786180913185 + "x": 546.71981, + "y": 172.78618 }, { "body": null, "index": 5, "isInternal": false, - "x": 542.5312300585776, - "y": 169.20989479725952 + "x": 542.53123, + "y": 169.20989 }, { "body": null, "index": 6, "isInternal": false, - "x": 540.3087534797303, - "y": 164.17063474676843 + "x": 540.30875, + "y": 164.17063 }, { "body": null, "index": 7, "isInternal": false, - "x": 540.4932222734946, - "y": 158.6657246417688 + "x": 540.49322, + "y": 158.66572 }, { "body": null, "index": 8, "isInternal": false, - "x": 543.0480641953549, - "y": 153.7865518886984 + "x": 543.04806, + "y": 153.78655 }, { "body": null, "index": 9, "isInternal": false, - "x": 547.4666569240975, - "y": 150.49869083666132 + "x": 547.46666, + "y": 150.49869 }, { "body": null, "index": 10, "isInternal": false, - "x": 552.8747044921809, - "y": 149.45322562856114 + "x": 552.8747, + "y": 149.45323 }, { "body": null, "index": 11, "isInternal": false, - "x": 558.2006319654366, - "y": 150.85838488986158 + "x": 558.20063, + "y": 150.85838 }, { "body": null, "index": 12, "isInternal": false, - "x": 562.389208050103, - "y": 154.43467100578707 + "x": 562.38921, + "y": 154.43467 }, { "body": null, "index": 13, "isInternal": false, - "x": 564.6116846289503, - "y": 159.47393105627816 + "x": 564.61168, + "y": 159.47393 }, { - "angle": 0.0001507120582033997, - "anglePrev": 0.00012638370283779045, - "angularSpeed": 0.000024328355365609245, - "angularVelocity": 0.000024328355365609245, + "angle": 0.00015, + "anglePrev": 0.00013, + "angularSpeed": 0.00002, + "angularVelocity": 0.00002, "area": 549.15125, "axes": { "#": 3335 @@ -29825,7 +29825,7 @@ "bounds": { "#": 3343 }, - "circleRadius": 13.446630658436213, + "circleRadius": 13.44663, "collisionFilter": { "#": 3346 }, @@ -29840,13 +29840,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 192.02790707024445, - "inverseInertia": 0.005207576415620656, - "inverseMass": 1.8209919398344263, + "inertia": 192.02791, + "inverseInertia": 0.00521, + "inverseMass": 1.82099, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.54915125, + "mass": 0.54915, "motion": 0, "parent": null, "position": { @@ -29868,7 +29868,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9076901296202555, + "speed": 2.90769, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29904,32 +29904,32 @@ } ], { - "x": -0.9009459573431874, - "y": -0.43393131017128483 + "x": -0.90095, + "y": -0.43393 }, { - "x": -0.6233333497154709, - "y": -0.7819562232839448 + "x": -0.62333, + "y": -0.78196 }, { - "x": -0.22244191266235713, - "y": -0.9749459449072613 + "x": -0.22244, + "y": -0.97495 }, { - "x": 0.2227357747727486, - "y": -0.9748788512612138 + "x": 0.22274, + "y": -0.97488 }, { - "x": 0.6235690218586315, - "y": -0.7817683000597233 + "x": 0.62357, + "y": -0.78177 }, { - "x": 0.9010767137745592, - "y": -0.43365972362353516 + "x": 0.90108, + "y": -0.43366 }, { - "x": 0.9999999886429378, - "y": 0.00015071205763285094 + "x": 1, + "y": 0.00015 }, { "max": { @@ -29940,12 +29940,12 @@ } }, { - "x": 628.7502156823508, - "y": 184.2826608575109 + "x": 628.75022, + "y": 184.28266 }, { - "x": 602.4841536689017, - "y": 154.48135351121513 + "x": 602.48415, + "y": 154.48135 }, { "category": 1, @@ -29962,16 +29962,16 @@ "y": 0 }, { - "x": 615.5936044504986, - "y": 167.92835335849674 + "x": 615.5936, + "y": 167.92835 }, { - "x": 2.9687305527786805, - "y": 0.00018007586974672755 + "x": 2.96873, + "y": 0.00018 }, { - "x": 615.5464440002431, - "y": 165.02104570676417 + "x": 615.54644, + "y": 165.02105 }, { "endCol": 13, @@ -29994,8 +29994,8 @@ "yScale": 1 }, { - "x": 0.04716045025545668, - "y": 2.9073076517325718 + "x": 0.04716, + "y": 2.90731 }, [ { @@ -30045,105 +30045,105 @@ "body": null, "index": 0, "isInternal": false, - "x": 628.7021533711423, - "y": 170.92232900887987 + "x": 628.70215, + "y": 170.92233 }, { "body": null, "index": 1, "isInternal": false, - "x": 626.1053407612108, - "y": 176.31393769914098 + "x": 626.10534, + "y": 176.31394 }, { "body": null, "index": 2, "isInternal": false, - "x": 621.4257785076632, - "y": 180.0442324750502 + "x": 621.42578, + "y": 180.04423 }, { "body": null, "index": 3, "isInternal": false, - "x": 615.5915778254596, - "y": 181.37535320577834 + "x": 615.59158, + "y": 181.37535 }, { "body": null, "index": 4, "isInternal": false, - "x": 609.7577786401774, - "y": 180.0424739667617 + "x": 609.75778, + "y": 180.04247 }, { "body": null, "index": 5, "isInternal": false, - "x": 605.0793410000043, - "y": 176.3107688274172 + "x": 605.07934, + "y": 176.31077 }, { "body": null, "index": 6, "isInternal": false, - "x": 602.4841536689017, - "y": 170.91837764015293 + "x": 602.48415, + "y": 170.91838 }, { "body": null, "index": 7, "isInternal": false, - "x": 602.4850555298548, - "y": 164.9343777081136 + "x": 602.48506, + "y": 164.93438 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.0818681397864, - "y": 159.5427690178525 + "x": 605.08187, + "y": 159.54277 }, { "body": null, "index": 9, "isInternal": false, - "x": 609.761430393334, - "y": 155.8124742419433 + "x": 609.76143, + "y": 155.81247 }, { "body": null, "index": 10, "isInternal": false, - "x": 615.5956310755375, - "y": 154.48135351121513 + "x": 615.59563, + "y": 154.48135 }, { "body": null, "index": 11, "isInternal": false, - "x": 621.4294302608197, - "y": 155.8142327502318 + "x": 621.42943, + "y": 155.81423 }, { "body": null, "index": 12, "isInternal": false, - "x": 626.1078679009928, - "y": 159.54593788957627 + "x": 626.10787, + "y": 159.54594 }, { "body": null, "index": 13, "isInternal": false, - "x": 628.7030552320954, - "y": 164.93832907684055 + "x": 628.70306, + "y": 164.93833 }, { - "angle": 0.0001425807305280171, - "anglePrev": 0.0001040261461263438, - "angularSpeed": 0.00003855458440167329, - "angularVelocity": 0.00003855458440167329, + "angle": 0.00014, + "anglePrev": 0.0001, + "angularSpeed": 0.00004, + "angularVelocity": 0.00004, "area": 555.09128, "axes": { "#": 3372 @@ -30151,7 +30151,7 @@ "bounds": { "#": 3380 }, - "circleRadius": 13.519247256515776, + "circleRadius": 13.51925, "collisionFilter": { "#": 3383 }, @@ -30166,13 +30166,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 196.2046090072847, - "inverseInertia": 0.005096720230271818, - "inverseMass": 1.8015055109494786, + "inertia": 196.20461, + "inverseInertia": 0.0051, + "inverseMass": 1.80151, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.55509128, + "mass": 0.55509, "motion": 0, "parent": null, "position": { @@ -30194,7 +30194,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90633827077167, + "speed": 2.90634, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30230,32 +30230,32 @@ } ], { - "x": -0.9009470272159265, - "y": -0.43392908885068426 + "x": -0.90095, + "y": -0.43393 }, { - "x": -0.6233463319592875, - "y": -0.7819458743627349 + "x": -0.62335, + "y": -0.78195 }, { - "x": -0.22240147970510857, - "y": -0.9749551691359857 + "x": -0.2224, + "y": -0.97496 }, { - "x": 0.22267949029931847, - "y": -0.974891709165708 + "x": 0.22268, + "y": -0.97489 }, { - "x": 0.6235692874399205, - "y": -0.7817680882216093 + "x": 0.62357, + "y": -0.78177 }, { - "x": 0.9010707304360397, - "y": -0.4336721558406327 + "x": 0.90107, + "y": -0.43367 }, { - "x": 0.9999999898353675, - "y": 0.0001425807300449235 + "x": 1, + "y": 0.00014 }, { "max": { @@ -30266,12 +30266,12 @@ } }, { - "x": 46.92759393123573, - "y": 222.33262026940739 + "x": 46.92759, + "y": 222.33262 }, { - "x": 20.566621282235214, - "y": 192.38828227574828 + "x": 20.56662, + "y": 192.38828 }, { "category": 1, @@ -30288,16 +30288,16 @@ "y": 0 }, { - "x": 33.74705003110132, - "y": 205.9072821383326 + "x": 33.74705, + "y": 205.90728 }, { - "x": 0.1329853523804014, + "x": 0.13299, "y": 0 }, { - "x": 33.74693487983303, - "y": 203.0009438698421 + "x": 33.74693, + "y": 203.00094 }, { "endCol": 0, @@ -30320,8 +30320,8 @@ "yScale": 1 }, { - "x": 0.00011515126829216626, - "y": 2.906338268490481 + "x": 0.00012, + "y": 2.90634 }, [ { @@ -30371,113 +30371,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 46.926621014295485, - "y": 208.9171613217793 + "x": 46.92662, + "y": 208.91716 }, { "body": null, "index": 1, "isInternal": false, - "x": 44.3158481106876, - "y": 214.3377891309715 + "x": 44.31585, + "y": 214.33779 }, { "body": null, "index": 2, "isInternal": false, - "x": 39.61131333818365, - "y": 218.08811839308987 + "x": 39.61131, + "y": 218.08812 }, { "body": null, "index": 3, "isInternal": false, - "x": 33.745122482211826, - "y": 219.4262820009169 + "x": 33.74512, + "y": 219.42628 }, { "body": null, "index": 4, "isInternal": false, - "x": 27.87931345743512, - "y": 218.08644563596494 + "x": 27.87931, + "y": 218.08645 }, { "body": null, "index": 5, "isInternal": false, - "x": 23.17584832556796, - "y": 214.3347749743383 + "x": 23.17585, + "y": 214.33477 }, { "body": null, "index": 6, "isInternal": false, - "x": 20.566621282235214, - "y": 208.9134028937354 + "x": 20.56662, + "y": 208.9134 }, { "body": null, "index": 7, "isInternal": false, - "x": 20.56747904790716, - "y": 202.89740295488588 + "x": 20.56748, + "y": 202.8974 }, { "body": null, "index": 8, "isInternal": false, - "x": 23.17825195151505, - "y": 197.4767751456937 + "x": 23.17825, + "y": 197.47678 }, { "body": null, "index": 9, "isInternal": false, - "x": 27.88278672401901, - "y": 193.7264458835753 + "x": 27.88279, + "y": 193.72645 }, { "body": null, "index": 10, "isInternal": false, - "x": 33.74897757999081, - "y": 192.38828227574828 + "x": 33.74898, + "y": 192.38828 }, { "body": null, "index": 11, "isInternal": false, - "x": 39.61478660476753, - "y": 193.72811864070025 + "x": 39.61479, + "y": 193.72812 }, { "body": null, "index": 12, "isInternal": false, - "x": 44.31825173663469, - "y": 197.47978930232688 + "x": 44.31825, + "y": 197.47979 }, { "body": null, "index": 13, "isInternal": false, - "x": 46.92747877996744, - "y": 202.90116138292979 + "x": 46.92748, + "y": 202.90116 }, { - "angle": 0.00004983488595836086, - "anglePrev": 0.00003983342242699355, - "angularSpeed": 0.000010001463531367311, - "angularVelocity": 0.000010001463531367311, - "area": 580.8002039999999, + "angle": 0.00005, + "anglePrev": 0.00004, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 580.8002, "axes": { "#": 3409 }, "bounds": { "#": 3417 }, - "circleRadius": 13.828489368998628, + "circleRadius": 13.82849, "collisionFilter": { "#": 3420 }, @@ -30492,13 +30492,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 214.7998214113765, - "inverseInertia": 0.004655497352974227, - "inverseMass": 1.7217624806481648, + "inertia": 214.79982, + "inverseInertia": 0.00466, + "inverseMass": 1.72176, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5808002039999999, + "mass": 0.5808, "motion": 0, "parent": null, "position": { @@ -30520,7 +30520,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9071124575813725, + "speed": 2.90711, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30556,32 +30556,32 @@ } ], { - "x": -0.9009682866381094, - "y": -0.433884946123266 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.6234069420147613, - "y": -0.781897553805998 + "x": -0.62341, + "y": -0.7819 }, { - "x": -0.22240117150133815, - "y": -0.974955239441705 + "x": -0.2224, + "y": -0.97496 }, { - "x": 0.22249834396284773, - "y": -0.9749330679250706 + "x": 0.2225, + "y": -0.97493 }, { - "x": 0.6234848704690003, - "y": -0.7818354150946691 + "x": 0.62348, + "y": -0.78184 }, { - "x": 0.9010115273765178, - "y": -0.4337951446646608 + "x": 0.90101, + "y": -0.4338 }, { - "x": 0.999999998758242, - "y": 0.000049834885937733234 + "x": 1, + "y": 0.00005 }, { "max": { @@ -30592,12 +30592,12 @@ } }, { - "x": 74.53832789452369, - "y": 219.8265339833089 + "x": 74.53833, + "y": 219.82653 }, { - "x": 47.57384700972009, - "y": 189.26342156529074 + "x": 47.57385, + "y": 189.26342 }, { "category": 1, @@ -30614,16 +30614,16 @@ "y": 0 }, { - "x": 61.056000334922736, - "y": 203.09142154811977 + "x": 61.056, + "y": 203.09142 }, { - "x": 0.35842848908853675, - "y": 0.000007454751182214972 + "x": 0.35843, + "y": 0.00001 }, { - "x": 61.05582610052441, - "y": 200.18430909575966 + "x": 61.05583, + "y": 200.18431 }, { "endCol": 1, @@ -30646,8 +30646,8 @@ "yScale": 1 }, { - "x": 0.0001742343983209338, - "y": 2.9071124523601046 + "x": 0.00017, + "y": 2.90711 }, [ { @@ -30697,113 +30697,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 74.53784697623732, - "y": 206.1690934182311 + "x": 74.53785, + "y": 206.16909 }, { "body": null, "index": 1, "isInternal": false, - "x": 71.86757064511028, - "y": 211.71396035220008 + "x": 71.86757, + "y": 211.71396 }, { "body": null, "index": 2, "isInternal": false, - "x": 67.05537943462828, - "y": 215.55072054196432 + "x": 67.05538, + "y": 215.55072 }, { "body": null, "index": 3, "isInternal": false, - "x": 61.05531121811998, - "y": 216.9194215309488 + "x": 61.05531, + "y": 216.91942 }, { "body": null, "index": 4, "isInternal": false, - "x": 55.05537944952938, - "y": 215.55012252333307 + "x": 55.05538, + "y": 215.55012 }, { "body": null, "index": 5, "isInternal": false, - "x": 50.24357067196206, - "y": 211.71288272262655 + "x": 50.24357, + "y": 211.71288 }, { "body": null, "index": 6, "isInternal": false, - "x": 47.57384700972009, - "y": 206.16774967036667 + "x": 47.57385, + "y": 206.16775 }, { "body": null, "index": 7, "isInternal": false, - "x": 47.57415369360816, - "y": 200.01374967800842 + "x": 47.57415, + "y": 200.01375 }, { "body": null, "index": 8, "isInternal": false, - "x": 50.24443002473517, - "y": 194.46888274403946 + "x": 50.24443, + "y": 194.46888 }, { "body": null, "index": 9, "isInternal": false, - "x": 55.056621235217186, - "y": 190.6321225542752 + "x": 55.05662, + "y": 190.63212 }, { "body": null, "index": 10, "isInternal": false, - "x": 61.05668945172549, - "y": 189.26342156529074 + "x": 61.05669, + "y": 189.26342 }, { "body": null, "index": 11, "isInternal": false, - "x": 67.05662122031609, - "y": 190.63272057290646 + "x": 67.05662, + "y": 190.63272 }, { "body": null, "index": 12, "isInternal": false, - "x": 71.86842999788338, - "y": 194.469960373613 + "x": 71.86843, + "y": 194.46996 }, { "body": null, "index": 13, "isInternal": false, - "x": 74.53815366012537, - "y": 200.01509342587286 + "x": 74.53815, + "y": 200.01509 }, { - "angle": 0.000004951003990647638, - "anglePrev": 0.0000039885924856099255, - "angularSpeed": 9.624115050377127e-7, - "angularVelocity": 9.624115050377127e-7, - "area": 822.838178, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 822.83818, "axes": { "#": 3446 }, "bounds": { "#": 3456 }, - "circleRadius": 16.349665637860085, + "circleRadius": 16.34967, "collisionFilter": { "#": 3459 }, @@ -30818,13 +30818,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 431.0675559878762, - "inverseInertia": 0.002319822000308752, - "inverseMass": 1.2153057876223141, + "inertia": 431.06756, + "inverseInertia": 0.00232, + "inverseMass": 1.21531, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.822838178, + "mass": 0.82284, "motion": 0, "parent": null, "position": { @@ -30846,7 +30846,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907259792862336, + "speed": 2.90726, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30888,40 +30888,40 @@ } ], { - "x": -0.9396991437992244, - "y": -0.3420022209620935 + "x": -0.9397, + "y": -0.342 }, { - "x": -0.7660484922451789, - "y": -0.6427827840949755 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.5000180000510733, - "y": -0.8660150112006864 + "x": -0.50002, + "y": -0.86602 }, { - "x": -0.1736398045550084, - "y": -0.9848092293810504 + "x": -0.17364, + "y": -0.98481 }, { - "x": 0.17364955613534494, - "y": -0.9848075099500397 + "x": 0.17365, + "y": -0.98481 }, { - "x": 0.5000265753141128, - "y": -0.8660100599760029 + "x": 0.50003, + "y": -0.86601 }, { - "x": 0.7660548570478819, - "y": -0.642775198645179 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9397025302618773, - "y": -0.34199291603690507 + "x": 0.9397, + "y": -0.34199 }, { - "x": 0.9999999999877438, - "y": 0.000004951003990627412 + "x": 1, + "y": 0 }, { "max": { @@ -30932,12 +30932,12 @@ } }, { - "x": 96.19816094718989, - "y": 249.64230764660786 + "x": 96.19816, + "y": 249.64231 }, { - "x": 63.996100893039916, - "y": 214.03504785432182 + "x": 63.9961, + "y": 214.03505 }, { "category": 1, @@ -30954,16 +30954,16 @@ "y": 0 }, { - "x": 80.0971149487429, - "y": 230.3850478541214 + "x": 80.09711, + "y": 230.38505 }, { - "x": -0.03596288466056039, - "y": 1.0459615898042869 + "x": -0.03596, + "y": 1.04596 }, { - "x": 80.09708300599891, - "y": 227.47778806143455 + "x": 80.09708, + "y": 227.47779 }, { "endCol": 2, @@ -30986,8 +30986,8 @@ "yScale": 1 }, { - "x": 0.00003194274398268249, - "y": 2.9072597926868546 + "x": 0.00003, + "y": 2.90726 }, [ { @@ -31049,141 +31049,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 96.19810089264524, - "y": 233.22412757020186 + "x": 96.1981, + "y": 233.22413 }, { "body": null, "index": 1, "isInternal": false, - "x": 94.25607447411176, - "y": 238.56011795528676 + "x": 94.25607, + "y": 238.56012 }, { "body": null, "index": 2, "isInternal": false, - "x": 90.6060529372891, - "y": 242.9100998840688 + "x": 90.60605, + "y": 242.9101 }, { "body": null, "index": 3, "isInternal": false, - "x": 85.68903888144906, - "y": 245.7490755399474 + "x": 85.68904, + "y": 245.74908 }, { "body": null, "index": 4, "isInternal": false, - "x": 80.09703399982766, - "y": 246.735047853921 + "x": 80.09703, + "y": 246.73505 }, { "body": null, "index": 5, "isInternal": false, - "x": 74.50503888158613, - "y": 245.74902016791881 + "x": 74.50504, + "y": 245.74902 }, { "body": null, "index": 6, "isInternal": false, - "x": 69.5880529375467, - "y": 242.90999582386698 + "x": 69.58805, + "y": 242.91 }, { "body": null, "index": 7, "isInternal": false, - "x": 65.93807447445883, - "y": 238.5599777527557 + "x": 65.93807, + "y": 238.55998 }, { "body": null, "index": 8, "isInternal": false, - "x": 63.996100893039916, - "y": 233.22396813797135 + "x": 63.9961, + "y": 233.22397 }, { "body": null, "index": 9, "isInternal": false, - "x": 63.99612900484055, - "y": 227.54596813804096 + "x": 63.99613, + "y": 227.54597 }, { "body": null, "index": 10, "isInternal": false, - "x": 65.93815542337404, - "y": 222.20997775295606 + "x": 65.93816, + "y": 222.20998 }, { "body": null, "index": 11, "isInternal": false, - "x": 69.58817696019669, - "y": 217.859995824174 + "x": 69.58818, + "y": 217.86 }, { "body": null, "index": 12, "isInternal": false, - "x": 74.50519101603673, - "y": 215.02102016829542 + "x": 74.50519, + "y": 215.02102 }, { "body": null, "index": 13, "isInternal": false, - "x": 80.09719589765814, - "y": 214.03504785432182 + "x": 80.0972, + "y": 214.03505 }, { "body": null, "index": 14, "isInternal": false, - "x": 85.6891910158997, - "y": 215.021075540324 + "x": 85.68919, + "y": 215.02108 }, { "body": null, "index": 15, "isInternal": false, - "x": 90.60617695993909, - "y": 217.86009988437584 + "x": 90.60618, + "y": 217.8601 }, { "body": null, "index": 16, "isInternal": false, - "x": 94.256155423027, - "y": 222.2101179554871 + "x": 94.25616, + "y": 222.21012 }, { "body": null, "index": 17, "isInternal": false, - "x": 96.1981290044459, - "y": 227.54612757027147 + "x": 96.19813, + "y": 227.54613 }, { - "angle": 8.765012189897099e-7, - "anglePrev": 8.026624687824073e-7, - "angularSpeed": 7.383875020730259e-8, - "angularVelocity": 7.383875020730259e-8, - "area": 1028.4780559999997, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1028.47806, "axes": { "#": 3489 }, "bounds": { "#": 3500 }, - "circleRadius": 18.24326989026063, + "circleRadius": 18.24327, "collisionFilter": { "#": 3503 }, @@ -31198,13 +31198,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 673.4323322400562, - "inverseInertia": 0.0014849301884180001, - "inverseMass": 0.9723104874879316, + "inertia": 673.43233, + "inverseInertia": 0.00148, + "inverseMass": 0.97231, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0284780559999998, + "mass": 1.02848, "motion": 0, "parent": null, "position": { @@ -31226,7 +31226,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072749810100116, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31271,44 +31271,44 @@ } ], { - "x": -0.9510389480167585, - "y": -0.30907105874729973 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8090309241243195, - "y": -0.5877660791595152 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877646609254298, - "y": -0.8090319544784463 + "x": -0.58776, + "y": -0.80903 }, { - "x": -0.30906939157323043, - "y": -0.9510394898176168 + "x": -0.30907, + "y": -0.95104 }, { - "x": 8.765012189895975e-7, - "y": -0.9999999999996159 + "x": 0, + "y": -1 }, { - "x": 0.30907105874729973, - "y": -0.9510389480167585 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5877660791595152, - "y": -0.8090309241243195 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090319544784463, - "y": -0.5877646609254298 + "x": 0.80903, + "y": -0.58776 }, { - "x": 0.9510394898176168, - "y": -0.30906939157323043 + "x": 0.95104, + "y": -0.30907 }, { - "x": 0.9999999999996159, - "y": 8.765012189895975e-7 + "x": 1, + "y": 0 }, { "max": { @@ -31319,12 +31319,12 @@ } }, { - "x": 134.12097666180992, - "y": 241.85694333901588 + "x": 134.12098, + "y": 241.85694 }, { - "x": 98.08293804902371, - "y": 202.91166335514504 + "x": 98.08294, + "y": 202.91166 }, { "category": 1, @@ -31341,16 +31341,16 @@ "y": 0 }, { - "x": 116.10194055055125, - "y": 220.9306658566726 + "x": 116.10194, + "y": 220.93067 }, { - "x": 0.2233938351159846, - "y": 0.19717839133815224 + "x": 0.22339, + "y": 0.19718 }, { - "x": 116.1019069408201, - "y": 218.02339087585685 + "x": 116.10191, + "y": 218.02339 }, { "endCol": 2, @@ -31373,8 +31373,8 @@ "yScale": 1 }, { - "x": 0.000033609731145389786, - "y": 2.907274980815738 + "x": 0.00003, + "y": 2.90727 }, [ { @@ -31442,155 +31442,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 134.12093804900982, - "y": 223.78468165034693 + "x": 134.12094, + "y": 223.78468 }, { "body": null, "index": 1, "isInternal": false, - "x": 132.35693329136188, - "y": 229.21268010419672 + "x": 132.35693, + "y": 229.21268 }, { "body": null, "index": 2, "isInternal": false, - "x": 129.00192924368056, - "y": 233.83067716353332 + "x": 129.00193, + "y": 233.83068 }, { "body": null, "index": 3, "isInternal": false, - "x": 124.38392630302079, - "y": 237.18567311584943 + "x": 124.38393, + "y": 237.18567 }, { "body": null, "index": 4, "isInternal": false, - "x": 118.95592475687471, - "y": 238.94966835820014 + "x": 118.95592, + "y": 238.94967 }, { "body": null, "index": 5, "isInternal": false, - "x": 113.24792475687687, - "y": 238.9496633551312 + "x": 113.24792, + "y": 238.94966 }, { "body": null, "index": 6, "isInternal": false, - "x": 107.81992630302713, - "y": 237.18565859748318 + "x": 107.81993, + "y": 237.18566 }, { "body": null, "index": 7, "isInternal": false, - "x": 103.20192924369047, - "y": 233.83065454980192 + "x": 103.20193, + "y": 233.83065 }, { "body": null, "index": 8, "isInternal": false, - "x": 99.84693329137441, - "y": 229.21265160914209 + "x": 99.84693, + "y": 229.21265 }, { "body": null, "index": 9, "isInternal": false, - "x": 98.08293804902371, - "y": 223.784650062996 + "x": 98.08294, + "y": 223.78465 }, { "body": null, "index": 10, "isInternal": false, - "x": 98.08294305209266, - "y": 218.07665006299825 + "x": 98.08294, + "y": 218.07665 }, { "body": null, "index": 11, "isInternal": false, - "x": 99.84694780974058, - "y": 212.64865160914846 + "x": 99.84695, + "y": 212.64865 }, { "body": null, "index": 12, "isInternal": false, - "x": 103.20195185742193, - "y": 208.03065454981186 + "x": 103.20195, + "y": 208.03065 }, { "body": null, "index": 13, "isInternal": false, - "x": 107.81995479808174, - "y": 204.67565859749575 + "x": 107.81995, + "y": 204.67566 }, { "body": null, "index": 14, "isInternal": false, - "x": 113.24795634422782, - "y": 202.91166335514504 + "x": 113.24796, + "y": 202.91166 }, { "body": null, "index": 15, "isInternal": false, - "x": 118.95595634422563, - "y": 202.91166835821397 + "x": 118.95596, + "y": 202.91167 }, { "body": null, "index": 16, "isInternal": false, - "x": 124.3839547980754, - "y": 204.675673115862 + "x": 124.38395, + "y": 204.67567 }, { "body": null, "index": 17, "isInternal": false, - "x": 129.00195185741205, - "y": 208.03067716354326 + "x": 129.00195, + "y": 208.03068 }, { "body": null, "index": 18, "isInternal": false, - "x": 132.35694780972813, - "y": 212.6486801042031 + "x": 132.35695, + "y": 212.64868 }, { "body": null, "index": 19, "isInternal": false, - "x": 134.1209430520788, - "y": 218.07668165034917 + "x": 134.12094, + "y": 218.07668 }, { - "angle": 0.000001183529514812302, - "anglePrev": 0.0000010159643388504381, - "angularSpeed": 1.675651759618637e-7, - "angularVelocity": 1.675651759618637e-7, - "area": 510.6009000000001, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 510.6009, "axes": { "#": 3535 }, "bounds": { "#": 3543 }, - "circleRadius": 12.966092249657065, + "circleRadius": 12.96609, "collisionFilter": { "#": 3546 }, @@ -31605,13 +31605,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 166.01355400407064, - "inverseInertia": 0.00602360455445391, - "inverseMass": 1.958476767275576, + "inertia": 166.01355, + "inverseInertia": 0.00602, + "inverseMass": 1.95848, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5106009000000001, + "mass": 0.5106, "motion": 0, "parent": null, "position": { @@ -31633,7 +31633,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072789949474576, + "speed": 2.90728, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31669,32 +31669,32 @@ } ], { - "x": -0.9009484670133023, - "y": -0.4339260994528683 + "x": -0.90095, + "y": -0.43393 }, { - "x": -0.6235521751172326, - "y": -0.7817817373836305 + "x": -0.62355, + "y": -0.78178 }, { - "x": -0.22250367360223963, - "y": -0.974931851584257 + "x": -0.2225, + "y": -0.97493 }, { - "x": 0.22250598132285884, - "y": -0.974931324902196 + "x": 0.22251, + "y": -0.97493 }, { - "x": 0.6235540256390065, - "y": -0.781780261396634 + "x": 0.62355, + "y": -0.78178 }, { - "x": 0.9009494941394701, - "y": -0.43392396685344864 + "x": 0.90095, + "y": -0.43392 }, { - "x": 0.9999999999992998, - "y": 0.0000011835295148120254 + "x": 1, + "y": 0 }, { "max": { @@ -31705,12 +31705,12 @@ } }, { - "x": 152.58009537733955, - "y": 267.3624761162412 + "x": 152.5801, + "y": 267.36248 }, { - "x": 127.29807339126947, - "y": 238.52319712135133 + "x": 127.29807, + "y": 238.5232 }, { "category": 1, @@ -31727,16 +31727,16 @@ "y": 0 }, { - "x": 139.93907680574327, - "y": 251.4891971213423 + "x": 139.93908, + "y": 251.4892 }, { - "x": 0.06399454824053113, - "y": 1.2989649043048166 + "x": 0.06399, + "y": 1.29896 }, { - "x": 139.9390616486208, - "y": 248.58191812643435 + "x": 139.93906, + "y": 248.58192 }, { "endCol": 3, @@ -31759,8 +31759,8 @@ "yScale": 1 }, { - "x": 0.000015157122464017902, - "y": 2.9072789949079465 + "x": 0.00002, + "y": 2.90728 }, [ { @@ -31810,113 +31810,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 152.58007339125177, - "y": 254.37421208233687 + "x": 152.58007, + "y": 254.37421 }, { "body": null, "index": 1, "isInternal": false, - "x": 150.0760672380836, - "y": 259.5732091187753 + "x": 150.07607, + "y": 259.57321 }, { "body": null, "index": 2, "isInternal": false, - "x": 145.56506297974752, - "y": 263.1712037798711 + "x": 145.56506, + "y": 263.1712 }, { "body": null, "index": 3, "isInternal": false, - "x": 139.9390614600996, - "y": 264.4551971213333 + "x": 139.93906, + "y": 264.4552 }, { "body": null, "index": 4, "isInternal": false, - "x": 134.31306297975541, - "y": 263.1711904627971 + "x": 134.31306, + "y": 263.17119 }, { "body": null, "index": 5, "isInternal": false, - "x": 129.8020672380978, - "y": 259.573185123898 + "x": 129.80207, + "y": 259.57319 }, { "body": null, "index": 6, "isInternal": false, - "x": 127.29807339126947, - "y": 254.37418216034368 + "x": 127.29807, + "y": 254.37418 }, { "body": null, "index": 7, "isInternal": false, - "x": 127.2980802202348, - "y": 248.60418216034773 + "x": 127.29808, + "y": 248.60418 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.80208637340294, - "y": 243.4051851239093 + "x": 129.80209, + "y": 243.40519 }, { "body": null, "index": 9, "isInternal": false, - "x": 134.31309063173902, - "y": 239.80719046281342 + "x": 134.31309, + "y": 239.80719 }, { "body": null, "index": 10, "isInternal": false, - "x": 139.93909215138694, - "y": 238.52319712135133 + "x": 139.93909, + "y": 238.5232 }, { "body": null, "index": 11, "isInternal": false, - "x": 145.56509063173112, - "y": 239.80720377988754 + "x": 145.56509, + "y": 239.8072 }, { "body": null, "index": 12, "isInternal": false, - "x": 150.07608637338873, - "y": 243.40520911878667 + "x": 150.07609, + "y": 243.40521 }, { "body": null, "index": 13, "isInternal": false, - "x": 152.58008022021707, - "y": 248.60421208234092 + "x": 152.58008, + "y": 248.60421 }, { - "angle": 6.42231068839632e-7, - "anglePrev": 5.729368746796914e-7, - "angularSpeed": 6.929419415994059e-8, - "angularVelocity": 6.929419415994059e-8, - "area": 1006.7004680000002, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1006.70047, "axes": { "#": 3572 }, "bounds": { "#": 3583 }, - "circleRadius": 18.048996913580247, + "circleRadius": 18.049, "collisionFilter": { "#": 3586 }, @@ -31931,13 +31931,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 645.2149843764809, - "inverseInertia": 0.0015498710107707343, - "inverseMass": 0.9933441294476479, + "inertia": 645.21498, + "inverseInertia": 0.00155, + "inverseMass": 0.99334, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0067004680000002, + "mass": 1.0067, "motion": 0, "parent": null, "position": { @@ -31959,7 +31959,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90726943347521, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32004,44 +32004,44 @@ } ], { - "x": -0.9510637952219204, - "y": -0.30899459124404965 + "x": -0.95106, + "y": -0.30899 }, { - "x": -0.8090648477958725, - "y": -0.5877193820702544 + "x": -0.80906, + "y": -0.58772 }, { - "x": -0.5877183428566054, - "y": -0.809065602698499 + "x": -0.58772, + "y": -0.80907 }, { - "x": -0.3089933696383592, - "y": -0.951064192112989 + "x": -0.30899, + "y": -0.95106 }, { - "x": 6.422310688395879e-7, - "y": -0.9999999999997938 + "x": 0, + "y": -1 }, { - "x": 0.30899459124404965, - "y": -0.9510637952219204 + "x": 0.30899, + "y": -0.95106 }, { - "x": 0.5877193820702544, - "y": -0.8090648477958725 + "x": 0.58772, + "y": -0.80906 }, { - "x": 0.809065602698499, - "y": -0.5877183428566054 + "x": 0.80907, + "y": -0.58772 }, { - "x": 0.951064192112989, - "y": -0.3089933696383592 + "x": 0.95106, + "y": -0.30899 }, { - "x": 0.9999999999997938, - "y": 6.422310688395879e-7 + "x": 1, + "y": 0 }, { "max": { @@ -32052,12 +32052,12 @@ } }, { - "x": 199.13409119727862, - "y": 296.97558206727695 + "x": 199.13409, + "y": 296.97558 }, { - "x": 163.48008518856454, - "y": 258.4143090077735 + "x": 163.48009, + "y": 258.41431 }, { "category": 1, @@ -32074,16 +32074,16 @@ "y": 0 }, { - "x": 181.30708700157916, - "y": 276.2413108207881 + "x": 181.30709, + "y": 276.24131 }, { - "x": -0.08101077339944283, - "y": 1.5883503021044723 + "x": -0.08101, + "y": 1.58835 }, { - "x": 181.30708461889432, - "y": 273.33404138731385 + "x": 181.30708, + "y": 273.33404 }, { "endCol": 4, @@ -32106,8 +32106,8 @@ "yScale": 1 }, { - "x": 0.0000023826848487829013, - "y": 2.9072694334742333 + "x": 0, + "y": 2.90727 }, [ { @@ -32175,155 +32175,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 199.13408518855718, - "y": 279.0643222698407 + "x": 199.13409, + "y": 279.06432 }, { "body": null, "index": 1, "isInternal": false, - "x": 197.38908173913444, - "y": 284.4353211491465 + "x": 197.38908, + "y": 284.43532 }, { "body": null, "index": 2, "isInternal": false, - "x": 194.0700788047814, - "y": 289.0043190175806 + "x": 194.07008, + "y": 289.00432 }, { "body": null, "index": 3, "isInternal": false, - "x": 189.5010766732174, - "y": 292.32331608322613 + "x": 189.50108, + "y": 292.32332 }, { "body": null, "index": 4, "isInternal": false, - "x": 184.13007555252534, - "y": 294.0683126338027 + "x": 184.13008, + "y": 294.06831 }, { "body": null, "index": 5, "isInternal": false, - "x": 178.48407555252652, - "y": 294.0683090077661 + "x": 178.48408, + "y": 294.06831 }, { "body": null, "index": 6, "isInternal": false, - "x": 173.11307667322083, - "y": 292.32330555834335 + "x": 173.11308, + "y": 292.32331 }, { "body": null, "index": 7, "isInternal": false, - "x": 168.54407880478666, - "y": 289.0043026239903 + "x": 168.54408, + "y": 289.0043 }, { "body": null, "index": 8, "isInternal": false, - "x": 165.22508173914107, - "y": 284.4353004924263 + "x": 165.22508, + "y": 284.4353 }, { "body": null, "index": 9, "isInternal": false, - "x": 163.48008518856454, - "y": 279.0642993717342 + "x": 163.48009, + "y": 279.0643 }, { "body": null, "index": 10, "isInternal": false, - "x": 163.48008881460115, - "y": 273.4182993717355 + "x": 163.48009, + "y": 273.4183 }, { "body": null, "index": 11, "isInternal": false, - "x": 165.22509226402389, - "y": 268.0473004924298 + "x": 165.22509, + "y": 268.0473 }, { "body": null, "index": 12, "isInternal": false, - "x": 168.54409519837694, - "y": 263.47830262399566 + "x": 168.5441, + "y": 263.4783 }, { "body": null, "index": 13, "isInternal": false, - "x": 173.11309732994093, - "y": 260.15930555835007 + "x": 173.1131, + "y": 260.15931 }, { "body": null, "index": 14, "isInternal": false, - "x": 178.48409845063298, - "y": 258.4143090077735 + "x": 178.4841, + "y": 258.41431 }, { "body": null, "index": 15, "isInternal": false, - "x": 184.1300984506318, - "y": 258.41431263381014 + "x": 184.1301, + "y": 258.41431 }, { "body": null, "index": 16, "isInternal": false, - "x": 189.5010973299375, - "y": 260.15931608323285 + "x": 189.5011, + "y": 260.15932 }, { "body": null, "index": 17, "isInternal": false, - "x": 194.07009519837166, - "y": 263.47831901758593 + "x": 194.0701, + "y": 263.47832 }, { "body": null, "index": 18, "isInternal": false, - "x": 197.38909226401725, - "y": 268.04732114915 + "x": 197.38909, + "y": 268.04732 }, { "body": null, "index": 19, "isInternal": false, - "x": 199.13408881459378, - "y": 273.418322269842 + "x": 199.13409, + "y": 273.41832 }, { - "angle": -3.60780225864444e-7, - "anglePrev": -2.9905499117429304e-7, - "angularSpeed": 4.641841085421192e-8, - "angularVelocity": -6.053451176187096e-8, - "area": 1180.0324160000002, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1180.03242, "axes": { "#": 3618 }, "bounds": { "#": 3629 }, - "circleRadius": 19.541366598079563, + "circleRadius": 19.54137, "collisionFilter": { "#": 3632 }, @@ -32338,13 +32338,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 886.5266168317393, - "inverseInertia": 0.0011279977171737843, - "inverseMass": 0.8474343470916987, + "inertia": 886.52662, + "inverseInertia": 0.00113, + "inverseMass": 0.84743, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1800324160000002, + "mass": 1.18003, "motion": 0, "parent": null, "position": { @@ -32366,7 +32366,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072717195706588, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32411,44 +32411,44 @@ } ], { - "x": -0.951028170697313, - "y": -0.30910421954434997 + "x": -0.95103, + "y": -0.3091 }, { - "x": -0.809054490870425, - "y": -0.5877336393319661 + "x": -0.80905, + "y": -0.58773 }, { - "x": -0.587734223113537, - "y": -0.809054066784864 + "x": -0.58773, + "y": -0.80905 }, { - "x": -0.3091049057685859, - "y": -0.9510279476596852 + "x": -0.3091, + "y": -0.95103 }, { - "x": -3.6078022586443603e-7, - "y": -0.9999999999999349 + "x": 0, + "y": -1 }, { - "x": 0.30910421954434997, - "y": -0.951028170697313 + "x": 0.3091, + "y": -0.95103 }, { - "x": 0.5877336393319661, - "y": -0.809054490870425 + "x": 0.58773, + "y": -0.80905 }, { - "x": 0.809054066784864, - "y": -0.587734223113537 + "x": 0.80905, + "y": -0.58773 }, { - "x": 0.9510279476596852, - "y": -0.3091049057685859 + "x": 0.95103, + "y": -0.3091 }, { - "x": 0.9999999999999349, - "y": -3.6078022586443603e-7 + "x": 1, + "y": 0 }, { "max": { @@ -32459,12 +32459,12 @@ } }, { - "x": 211.8796076079134, - "y": 247.81534311068333 + "x": 211.87961, + "y": 247.81534 }, { - "x": 173.27759693048557, - "y": 206.3060691853173 + "x": 173.2776, + "y": 206.30607 }, { "category": 1, @@ -32481,16 +32481,16 @@ "y": 0 }, { - "x": 192.57860650500947, - "y": 225.60707028822117 + "x": 192.57861, + "y": 225.60707 }, { "x": 0, "y": 0 }, { - "x": 192.57861008885914, - "y": 222.6998013539553 + "x": 192.57861, + "y": 222.6998 }, { "endCol": 4, @@ -32513,8 +32513,8 @@ "yScale": 1 }, { - "x": -0.0000027764539822783263, - "y": 2.9072684070406467 + "x": 0, + "y": 2.90727 }, [ { @@ -32582,155 +32582,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 211.8796076079134, - "y": 228.6640633248018 + "x": 211.87961, + "y": 228.66406 }, { "body": null, "index": 1, "isInternal": false, - "x": 209.98960970585048, - "y": 234.47906400667605 + "x": 209.98961, + "y": 234.47906 }, { "body": null, "index": 2, "isInternal": false, - "x": 206.3966114902697, - "y": 239.42506530295913 + "x": 206.39661, + "y": 239.42507 }, { "body": null, "index": 3, "isInternal": false, - "x": 201.45061278655342, - "y": 243.0180670873779 + "x": 201.45061, + "y": 243.01807 }, { "body": null, "index": 4, "isInternal": false, - "x": 195.63561346842835, - "y": 244.90806918531476 + "x": 195.63561, + "y": 244.90807 }, { "body": null, "index": 5, "isInternal": false, - "x": 189.52161346842882, - "y": 244.90807139112502 + "x": 189.52161, + "y": 244.90807 }, { "body": null, "index": 6, "isInternal": false, - "x": 183.70661278655456, - "y": 243.0180734890622 + "x": 183.70661, + "y": 243.01807 }, { "body": null, "index": 7, "isInternal": false, - "x": 178.7606114902715, - "y": 239.4250752734814 + "x": 178.76061, + "y": 239.42508 }, { "body": null, "index": 8, "isInternal": false, - "x": 175.16760970585273, - "y": 234.47907656976508 + "x": 175.16761, + "y": 234.47908 }, { "body": null, "index": 9, "isInternal": false, - "x": 173.27760760791588, - "y": 228.66407725164007 + "x": 173.27761, + "y": 228.66408 }, { "body": null, "index": 10, "isInternal": false, - "x": 173.27760540210554, - "y": 222.55007725164054 + "x": 173.27761, + "y": 222.55008 }, { "body": null, "index": 11, "isInternal": false, - "x": 175.1676033041684, - "y": 216.73507656976628 + "x": 175.1676, + "y": 216.73508 }, { "body": null, "index": 12, "isInternal": false, - "x": 178.7606015197492, - "y": 211.7890752734832 + "x": 178.7606, + "y": 211.78908 }, { "body": null, "index": 13, "isInternal": false, - "x": 183.70660022346553, - "y": 208.19607348906445 + "x": 183.7066, + "y": 208.19607 }, { "body": null, "index": 14, "isInternal": false, - "x": 189.52159954159055, - "y": 206.30607139112757 + "x": 189.5216, + "y": 206.30607 }, { "body": null, "index": 15, "isInternal": false, - "x": 195.63559954159007, - "y": 206.3060691853173 + "x": 195.6356, + "y": 206.30607 }, { "body": null, "index": 16, "isInternal": false, - "x": 201.4506002234644, - "y": 208.19606708738013 + "x": 201.4506, + "y": 208.19607 }, { "body": null, "index": 17, "isInternal": false, - "x": 206.3966015197474, - "y": 211.78906530296092 + "x": 206.3966, + "y": 211.78907 }, { "body": null, "index": 18, "isInternal": false, - "x": 209.98960330416617, - "y": 216.73506400667725 + "x": 209.9896, + "y": 216.73506 }, { "body": null, "index": 19, "isInternal": false, - "x": 211.87960540210307, - "y": 222.55006332480227 + "x": 211.87961, + "y": 222.55006 }, { - "angle": -3.9535836691782057e-7, - "anglePrev": -3.366324225289422e-7, - "angularSpeed": 5.87259443888784e-8, - "angularVelocity": -5.87259443888784e-8, - "area": 522.984246, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 522.98425, "axes": { "#": 3664 }, "bounds": { "#": 3672 }, - "circleRadius": 13.12221364883402, + "circleRadius": 13.12221, "collisionFilter": { "#": 3675 }, @@ -32745,13 +32745,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 174.1636865391301, - "inverseInertia": 0.005741725039653003, - "inverseMass": 1.9121034861918191, + "inertia": 174.16369, + "inverseInertia": 0.00574, + "inverseMass": 1.9121, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.522984246, + "mass": 0.52298, "motion": 0, "parent": null, "position": { @@ -32773,7 +32773,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907272949389987, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32809,32 +32809,32 @@ } ], { - "x": -0.9009720945410657, - "y": -0.43387703886963763 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.6235460076648336, - "y": -0.7817866565280112 + "x": -0.62355, + "y": -0.78179 }, { - "x": -0.2224206853571532, - "y": -0.9749507878479065 + "x": -0.22242, + "y": -0.97495 }, { - "x": 0.222419914447181, - "y": -0.9749509637193597 + "x": 0.22242, + "y": -0.97495 }, { - "x": 0.6235453894928472, - "y": -0.7817871495760292 + "x": 0.62355, + "y": -0.78179 }, { - "x": 0.9009717514669493, - "y": -0.43387775128321393 + "x": 0.90097, + "y": -0.43388 }, { - "x": 0.9999999999999217, - "y": -3.9535836691781035e-7 + "x": 1, + "y": 0 }, { "max": { @@ -32845,12 +32845,12 @@ } }, { - "x": 268.5770291277747, - "y": 216.95273985244557 + "x": 268.57703, + "y": 216.95274 }, { - "x": 242.99102681888377, - "y": 190.70873985244765 + "x": 242.99103, + "y": 190.70874 }, { "category": 1, @@ -32867,16 +32867,16 @@ "y": 0 }, { - "x": 255.78402797332924, - "y": 203.8307398524466 + "x": 255.78403, + "y": 203.83074 }, { "x": 0, "y": 0 }, { - "x": 255.78403621791523, - "y": 200.92346690306832 + "x": 255.78404, + "y": 200.92347 }, { "endCol": 5, @@ -32899,8 +32899,8 @@ "yScale": 1 }, { - "x": -0.000008244585987995379, - "y": 2.9072729493782967 + "x": -0.00001, + "y": 2.90727 }, [ { @@ -32950,113 +32950,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 268.5770291277747, - "y": 206.75073479462674 + "x": 268.57703, + "y": 206.75073 }, { "body": null, "index": 1, "isInternal": false, - "x": 266.0430312081507, - "y": 212.01273579646448 + "x": 266.04303, + "y": 212.01274 }, { "body": null, "index": 2, "isInternal": false, - "x": 261.47803264765076, - "y": 215.65373760127517 + "x": 261.47803, + "y": 215.65374 }, { "body": null, "index": 3, "isInternal": false, - "x": 255.78403316122174, - "y": 216.95273985244557 + "x": 255.78403, + "y": 216.95274 }, { "body": null, "index": 4, "isInternal": false, - "x": 250.09003264765167, - "y": 215.65374210361622 + "x": 250.09003, + "y": 215.65374 }, { "body": null, "index": 5, "isInternal": false, - "x": 245.52503120815214, - "y": 212.01274390842747 + "x": 245.52503, + "y": 212.01274 }, { "body": null, "index": 6, "isInternal": false, - "x": 242.99102912777664, - "y": 206.75074491026595 + "x": 242.99103, + "y": 206.75074 }, { "body": null, "index": 7, "isInternal": false, - "x": 242.99102681888377, - "y": 200.9107449102665 + "x": 242.99103, + "y": 200.91074 }, { "body": null, "index": 8, "isInternal": false, - "x": 245.52502473850788, - "y": 195.64874390842874 + "x": 245.52502, + "y": 195.64874 }, { "body": null, "index": 9, "isInternal": false, - "x": 250.09002329900773, - "y": 192.00774210361806 + "x": 250.09002, + "y": 192.00774 }, { "body": null, "index": 10, "isInternal": false, - "x": 255.78402278543675, - "y": 190.70873985244765 + "x": 255.78402, + "y": 190.70874 }, { "body": null, "index": 11, "isInternal": false, - "x": 261.478023299007, - "y": 192.007737601277 + "x": 261.47802, + "y": 192.00774 }, { "body": null, "index": 12, "isInternal": false, - "x": 266.04302473850635, - "y": 195.64873579646576 + "x": 266.04302, + "y": 195.64874 }, { "body": null, "index": 13, "isInternal": false, - "x": 268.57702681888185, - "y": 200.91073479462727 + "x": 268.57703, + "y": 200.91073 }, { - "angle": -0.000003519874014592788, - "anglePrev": -0.0000033065702335200034, - "angularSpeed": 2.1330378107278455e-7, - "angularVelocity": -2.1330378107278455e-7, - "area": 423.244812, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 423.24481, "axes": { "#": 3701 }, "bounds": { "#": 3708 }, - "circleRadius": 11.87795781893004, + "circleRadius": 11.87796, "collisionFilter": { "#": 3711 }, @@ -33071,13 +33071,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 114.09084813562451, - "inverseInertia": 0.008764944921885922, - "inverseMass": 2.362698777746625, + "inertia": 114.09085, + "inverseInertia": 0.00876, + "inverseMass": 2.3627, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.423244812, + "mass": 0.42324, "motion": 0, "parent": null, "position": { @@ -33099,7 +33099,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907266683441174, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33132,28 +33132,28 @@ } ], { - "x": -0.8660546408192148, - "y": -0.4999493565507417 + "x": -0.86605, + "y": -0.49995 }, { - "x": -0.4999554533448042, - "y": -0.8660511212802574 + "x": -0.49996, + "y": -0.86605 }, { - "x": -0.0000035198740145855203, - "y": -0.9999999999938053 + "x": 0, + "y": -1 }, { - "x": 0.4999493565507417, - "y": -0.8660546408192148 + "x": 0.49995, + "y": -0.86605 }, { - "x": 0.8660511212802574, - "y": -0.4999554533448042 + "x": 0.86605, + "y": -0.49996 }, { - "x": 0.9999999999938053, - "y": -0.0000035198740145855203 + "x": 1, + "y": 0 }, { "max": { @@ -33164,12 +33164,12 @@ } }, { - "x": 295.73534660526764, - "y": 223.7384995961805 + "x": 295.73535, + "y": 223.7385 }, { - "x": 272.78931682361366, - "y": 197.8852112727075 + "x": 272.78932, + "y": 197.88521 }, { "category": 1, @@ -33186,16 +33186,16 @@ "y": 0 }, { - "x": 284.26233578524597, - "y": 209.3582220927291 + "x": 284.26234, + "y": 209.35822 }, { - "x": 0.20791271901111671, - "y": 0.10324658792665238 + "x": 0.20791, + "y": 0.10325 }, { - "x": 284.2623439268566, - "y": 206.45095540929933 + "x": 284.26234, + "y": 206.45096 }, { "endCol": 6, @@ -33218,8 +33218,8 @@ "yScale": 1 }, { - "x": -0.000008141610644543107, - "y": 2.9072666834297736 + "x": -0.00001, + "y": 2.90727 }, [ { @@ -33263,99 +33263,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 295.73534660526764, - "y": 212.43218170919553 + "x": 295.73535, + "y": 212.43218 }, { "body": null, "index": 1, "isInternal": false, - "x": 292.6613653486158, - "y": 217.75719252925524 + "x": 292.66137, + "y": 217.75719 }, { "body": null, "index": 2, "isInternal": false, - "x": 287.3363761687414, - "y": 220.83121127256535 + "x": 287.33638, + "y": 220.83121 }, { "body": null, "index": 3, "isInternal": false, - "x": 281.1883761687796, - "y": 220.83123291275072 + "x": 281.18838, + "y": 220.83123 }, { "body": null, "index": 4, "isInternal": false, - "x": 275.8633653487198, - "y": 217.75725165609896 + "x": 275.86337, + "y": 217.75725 }, { "body": null, "index": 5, "isInternal": false, - "x": 272.7893466054098, - "y": 212.43226247622462 + "x": 272.78935, + "y": 212.43226 }, { "body": null, "index": 6, "isInternal": false, - "x": 272.7893249652243, - "y": 206.28426247626268 + "x": 272.78932, + "y": 206.28426 }, { "body": null, "index": 7, "isInternal": false, - "x": 275.86330622187614, - "y": 200.95925165620298 + "x": 275.86331, + "y": 200.95925 }, { "body": null, "index": 8, "isInternal": false, - "x": 281.1882954017505, - "y": 197.88523291289286 + "x": 281.1883, + "y": 197.88523 }, { "body": null, "index": 9, "isInternal": false, - "x": 287.33629540171233, - "y": 197.8852112727075 + "x": 287.3363, + "y": 197.88521 }, { "body": null, "index": 10, "isInternal": false, - "x": 292.6613062217721, - "y": 200.95919252935926 + "x": 292.66131, + "y": 200.95919 }, { "body": null, "index": 11, "isInternal": false, - "x": 295.73532496508216, - "y": 206.2841817092336 + "x": 295.73532, + "y": 206.28418 }, { - "angle": -0.000006469279291123915, - "anglePrev": -0.0000059432503316169, - "angularSpeed": 5.260289595070154e-7, - "angularVelocity": -5.260289595070154e-7, - "area": 346.487844, + "angle": -0.00001, + "anglePrev": -0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 346.48784, "axes": { "#": 3735 }, "bounds": { "#": 3742 }, - "circleRadius": 10.7468707133059, + "circleRadius": 10.74687, "collisionFilter": { "#": 3745 }, @@ -33370,13 +33370,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 76.46162572822102, - "inverseInertia": 0.013078455898314918, - "inverseMass": 2.886104137032871, + "inertia": 76.46163, + "inverseInertia": 0.01308, + "inverseMass": 2.8861, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.346487844, + "mass": 0.34649, "motion": 0, "parent": null, "position": { @@ -33398,7 +33398,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072585695458715, + "speed": 2.90726, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33431,28 +33431,28 @@ } ], { - "x": -0.8660032333488552, - "y": -0.5000383983548944 + "x": -0.866, + "y": -0.50004 }, { - "x": -0.5000496031466065, - "y": -0.8659967635002577 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.000006469279291078789, - "y": -0.9999999999790742 + "x": -0.00001, + "y": -1 }, { - "x": 0.5000383983548944, - "y": -0.8660032333488552 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.8659967635002577, - "y": -0.5000496031466065 + "x": 0.866, + "y": -0.50005 }, { - "x": 0.9999999999790742, - "y": -0.000006469279291078789 + "x": 1, + "y": -0.00001 }, { "max": { @@ -33463,12 +33463,12 @@ } }, { - "x": 314.595980337254, - "y": 237.25116874794497 + "x": 314.59598, + "y": 237.25117 }, { - "x": 293.83393892819953, - "y": 213.58187419670722 + "x": 293.83394, + "y": 213.58187 }, { "category": 1, @@ -33485,16 +33485,16 @@ "y": 0 }, { - "x": 304.2149623464055, - "y": 223.9628921875557 + "x": 304.21496, + "y": 223.96289 }, { - "x": 0.15115010341838428, - "y": 0.39825567813622614 + "x": 0.15115, + "y": 0.39826 }, { - "x": 304.214967773763, - "y": 221.0556336180149 + "x": 304.21497, + "y": 221.05563 }, { "endCol": 6, @@ -33517,8 +33517,8 @@ "yScale": 1 }, { - "x": -0.000005427357497183038, - "y": 2.9072585695408057 + "x": -0.00001, + "y": 2.90726 }, [ { @@ -33562,99 +33562,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.595980337254, - "y": 226.74382502990917 + "x": 314.59598, + "y": 226.74383 }, { "body": null, "index": 1, "isInternal": false, - "x": 311.81401150629983, - "y": 231.56184302734331 + "x": 311.81401, + "y": 231.56184 }, { "body": null, "index": 2, "isInternal": false, - "x": 306.9960295039357, - "y": 234.34387419627276 + "x": 306.99603, + "y": 234.34387 }, { "body": null, "index": 3, "isInternal": false, - "x": 301.4340295040521, - "y": 234.34391017840417 + "x": 301.43403, + "y": 234.34391 }, { "body": null, "index": 4, "isInternal": false, - "x": 296.6160115066178, - "y": 231.56194134745002 + "x": 296.61601, + "y": 231.56194 }, { "body": null, "index": 5, "isInternal": false, - "x": 293.83398033768844, - "y": 226.74395934508578 + "x": 293.83398, + "y": 226.74396 }, { "body": null, "index": 6, "isInternal": false, - "x": 293.83394435555704, - "y": 221.18195934520222 + "x": 293.83394, + "y": 221.18196 }, { "body": null, "index": 7, "isInternal": false, - "x": 296.6159131865112, - "y": 216.36394134776808 + "x": 296.61591, + "y": 216.36394 }, { "body": null, "index": 8, "isInternal": false, - "x": 301.43389518887534, - "y": 213.58191017883863 + "x": 301.4339, + "y": 213.58191 }, { "body": null, "index": 9, "isInternal": false, - "x": 306.99589518875894, - "y": 213.58187419670722 + "x": 306.9959, + "y": 213.58187 }, { "body": null, "index": 10, "isInternal": false, - "x": 311.81391318619325, - "y": 216.36384302766137 + "x": 311.81391, + "y": 216.36384 }, { "body": null, "index": 11, "isInternal": false, - "x": 314.5959443551226, - "y": 221.1818250300256 + "x": 314.59594, + "y": 221.18183 }, { - "angle": -0.000004702549535572793, - "anglePrev": -0.000004259955467510376, - "angularSpeed": 4.425940680624179e-7, - "angularVelocity": -4.425940680624179e-7, - "area": 956.757512, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 956.75751, "axes": { "#": 3769 }, "bounds": { "#": 3779 }, - "circleRadius": 17.630186899862824, + "circleRadius": 17.63019, "collisionFilter": { "#": 3782 }, @@ -33669,13 +33669,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 582.8009229244419, - "inverseInertia": 0.0017158517783089483, - "inverseMass": 1.0451969150569889, + "inertia": 582.80092, + "inverseInertia": 0.00172, + "inverseMass": 1.0452, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.956757512, + "mass": 0.95676, "motion": 0, "parent": null, "position": { @@ -33697,7 +33697,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072693972383292, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33739,40 +33739,40 @@ } ], { - "x": -0.9397091728653393, - "y": -0.34197466343684 + "x": -0.93971, + "y": -0.34197 }, { - "x": -0.7660648641653405, - "y": -0.642763272046046 + "x": -0.76606, + "y": -0.64276 }, { - "x": -0.49999045878201126, - "y": -0.8660309123391348 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.17361294176352352, - "y": -0.9848139654027128 + "x": -0.17361, + "y": -0.98481 }, { - "x": 0.1736036794829339, - "y": -0.9848155982060739 + "x": 0.1736, + "y": -0.98482 }, { - "x": 0.4999823136533686, - "y": -0.8660356147606315 + "x": 0.49998, + "y": -0.86604 }, { - "x": 0.7660588188792062, - "y": -0.6427704769335602 + "x": 0.76606, + "y": -0.64277 }, { - "x": 0.9397059565181886, - "y": -0.3419835014795839 + "x": 0.93971, + "y": -0.34198 }, { - "x": 0.9999999999889432, - "y": -0.0000047025495355554614 + "x": 1, + "y": 0 }, { "max": { @@ -33783,12 +33783,12 @@ } }, { - "x": 332.7962594224725, - "y": 273.1336531153526 + "x": 332.79626, + "y": 273.13365 }, { - "x": 298.07221012727183, - "y": 234.96638371857648 + "x": 298.07221, + "y": 234.96638 }, { "category": 1, @@ -33805,16 +33805,16 @@ "y": 0 }, { - "x": 315.4342450281603, - "y": 252.59638371838156 + "x": 315.43425, + "y": 252.59638 }, { - "x": -0.25373050166740474, - "y": 0.8001600422065356 + "x": -0.25373, + "y": 0.80016 }, { - "x": 315.43426553473665, - "y": 249.68911432121556 + "x": 315.43427, + "y": 249.68911 }, { "endCol": 6, @@ -33837,8 +33837,8 @@ "yScale": 1 }, { - "x": -0.000020506576333332305, - "y": 2.907269397166007 + "x": -0.00002, + "y": 2.90727 }, [ { @@ -33900,141 +33900,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 332.7962594224725, - "y": 255.65730207268268 + "x": 332.79626, + "y": 255.6573 }, { "body": null, "index": 1, "isInternal": false, - "x": 330.70228648096565, - "y": 261.41131191975785 + "x": 330.70229, + "y": 261.41131 }, { "body": null, "index": 2, "isInternal": false, - "x": 326.7663085406691, - "y": 266.10233042894083 + "x": 326.76631, + "y": 266.10233 }, { "body": null, "index": 3, "isInternal": false, - "x": 321.4643229352318, - "y": 269.16335536182464 + "x": 321.46432, + "y": 269.16336 }, { "body": null, "index": 4, "isInternal": false, - "x": 315.4343279341087, - "y": 270.2263837181866 + "x": 315.43433, + "y": 270.22638 }, { "body": null, "index": 5, "isInternal": false, - "x": 309.4043229353651, - "y": 269.1634120745721 + "x": 309.40432, + "y": 269.16341 }, { "body": null, "index": 6, "isInternal": false, - "x": 304.1023085409197, - "y": 266.1024370075235 + "x": 304.10231, + "y": 266.10244 }, { "body": null, "index": 7, "isInternal": false, - "x": 300.16628648130336, - "y": 261.4114555168104 + "x": 300.16629, + "y": 261.41146 }, { "body": null, "index": 8, "isInternal": false, - "x": 298.07225942285646, - "y": 255.65746536401275 + "x": 298.07226, + "y": 255.65747 }, { "body": null, "index": 9, "isInternal": false, - "x": 298.07223063384816, - "y": 249.53546536408044 + "x": 298.07223, + "y": 249.53547 }, { "body": null, "index": 10, "isInternal": false, - "x": 300.166203575355, - "y": 243.7814555170053 + "x": 300.1662, + "y": 243.78146 }, { "body": null, "index": 11, "isInternal": false, - "x": 304.1021815156515, - "y": 239.09043700782226 + "x": 304.10218, + "y": 239.09044 }, { "body": null, "index": 12, "isInternal": false, - "x": 309.40416712108885, - "y": 236.02941207493842 + "x": 309.40417, + "y": 236.02941 }, { "body": null, "index": 13, "isInternal": false, - "x": 315.43416212221194, - "y": 234.96638371857648 + "x": 315.43416, + "y": 234.96638 }, { "body": null, "index": 14, "isInternal": false, - "x": 321.46416712095555, - "y": 236.029355362191 + "x": 321.46417, + "y": 236.02936 }, { "body": null, "index": 15, "isInternal": false, - "x": 326.76618151540094, - "y": 239.09033042923957 + "x": 326.76618, + "y": 239.09033 }, { "body": null, "index": 16, "isInternal": false, - "x": 330.7022035750173, - "y": 243.7813119199527 + "x": 330.7022, + "y": 243.78131 }, { "body": null, "index": 17, "isInternal": false, - "x": 332.7962306334642, - "y": 249.53530207275037 + "x": 332.79623, + "y": 249.5353 }, { - "angle": -0.000008583133963138185, - "anglePrev": -0.000007777345451611529, - "angularSpeed": 8.057885115266573e-7, - "angularVelocity": -8.057885115266573e-7, - "area": 374.2776119999999, + "angle": -0.00001, + "anglePrev": -0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 374.27761, "axes": { "#": 3812 }, "bounds": { "#": 3819 }, - "circleRadius": 11.169881687242798, + "circleRadius": 11.16988, "collisionFilter": { "#": 3822 }, @@ -34049,13 +34049,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 89.21856250806918, - "inverseInertia": 0.011208429859084056, - "inverseMass": 2.671813562816042, + "inertia": 89.21856, + "inverseInertia": 0.01121, + "inverseMass": 2.67181, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.3742776119999999, + "mass": 0.37428, "motion": 0, "parent": null, "position": { @@ -34077,7 +34077,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072601238176623, + "speed": 2.90726, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34110,28 +34110,28 @@ } ], { - "x": -0.8660141769744426, - "y": -0.5000194449011744 + "x": -0.86601, + "y": -0.50002 }, { - "x": -0.5000343110588907, - "y": -0.8660055933790846 + "x": -0.50003, + "y": -0.86601 }, { - "x": -0.0000085831339630328, - "y": -0.9999999999631649 + "x": -0.00001, + "y": -1 }, { - "x": 0.5000194449011744, - "y": -0.8660141769744426 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.8660055933790846, - "y": -0.5000343110588907 + "x": 0.86601, + "y": -0.50003 }, { - "x": 0.9999999999631649, - "y": -0.0000085831339630328 + "x": 1, + "y": -0.00001 }, { "max": { @@ -34142,12 +34142,12 @@ } }, { - "x": 357.8701410411351, - "y": 285.18091964939936 + "x": 357.87014, + "y": 285.18092 }, { - "x": 336.2920735314639, - "y": 260.6956098987509 + "x": 336.29207, + "y": 260.69561 }, { "category": 1, @@ -34164,16 +34164,16 @@ "y": 0 }, { - "x": 347.08111622769223, - "y": 271.48463471219384 + "x": 347.08112, + "y": 271.48463 }, { - "x": -0.14379176966139529, - "y": 1.2837246816801173 + "x": -0.14379, + "y": 1.28372 }, { - "x": 347.08113411047765, - "y": 268.57737458843116 + "x": 347.08113, + "y": 268.57737 }, { "endCol": 7, @@ -34196,8 +34196,8 @@ "yScale": 1 }, { - "x": -0.000017882785392657752, - "y": 2.9072601237626627 + "x": -0.00002, + "y": 2.90726 }, [ { @@ -34241,99 +34241,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 357.8701410411351, - "y": 274.375542108655 + "x": 357.87014, + "y": 274.37554 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.9791840169933, - "y": 279.38256692231084 + "x": 354.97918, + "y": 279.38257 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.9722088310182, - "y": 282.2736098979561 + "x": 349.97221, + "y": 282.27361 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.1902088312311, - "y": 282.2736595256367 + "x": 344.19021, + "y": 282.27366 }, { "body": null, "index": 4, "isInternal": false, - "x": 339.1831840175752, - "y": 279.38270250149486 + "x": 339.18318, + "y": 279.3827 }, { "body": null, "index": 5, "isInternal": false, - "x": 336.29214104193005, - "y": 274.3757273155196 + "x": 336.29214, + "y": 274.37573 }, { "body": null, "index": 6, "isInternal": false, - "x": 336.29209141424934, - "y": 268.5937273157326 + "x": 336.29209, + "y": 268.59373 }, { "body": null, "index": 7, "isInternal": false, - "x": 339.18304843839115, - "y": 263.5867025020768 + "x": 339.18305, + "y": 263.5867 }, { "body": null, "index": 8, "isInternal": false, - "x": 344.1900236243664, - "y": 260.6956595264315 + "x": 344.19002, + "y": 260.69566 }, { "body": null, "index": 9, "isInternal": false, - "x": 349.9720236241535, - "y": 260.6956098987509 + "x": 349.97202, + "y": 260.69561 }, { "body": null, "index": 10, "isInternal": false, - "x": 354.9790484378093, - "y": 263.58656692289264 + "x": 354.97905, + "y": 263.58657 }, { "body": null, "index": 11, "isInternal": false, - "x": 357.8700914134544, - "y": 268.59354210886795 + "x": 357.87009, + "y": 268.59354 }, { - "angle": -0.08256168439221453, - "anglePrev": -0.062232381655996094, - "angularSpeed": 0.020329302736218448, - "angularVelocity": -0.020329302736218448, - "area": 706.691188, + "angle": -0.08256, + "anglePrev": -0.06223, + "angularSpeed": 0.02033, + "angularVelocity": -0.02033, + "area": 706.69119, "axes": { "#": 3846 }, "bounds": { "#": 3855 }, - "circleRadius": 15.193115569272976, + "circleRadius": 15.19312, "collisionFilter": { "#": 3858 }, @@ -34348,13 +34348,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 317.9786205172635, - "inverseInertia": 0.003144865520748772, - "inverseMass": 1.4150452375528983, + "inertia": 317.97862, + "inverseInertia": 0.00314, + "inverseMass": 1.41505, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7066911880000001, + "mass": 0.70669, "motion": 0, "parent": null, "position": { @@ -34376,7 +34376,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.4977633829109798, + "speed": 2.49776, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34415,36 +34415,36 @@ } ], { - "x": -0.9523224479232903, - "y": -0.3050933548627235 + "x": -0.95232, + "y": -0.30509 }, { - "x": -0.7630118029800266, - "y": -0.6463845515737278 + "x": -0.76301, + "y": -0.64638 }, { - "x": -0.4574805726809911, - "y": -0.8892196160788806 + "x": -0.45748, + "y": -0.88922 }, { - "x": -0.08246792034054201, - "y": -0.996593719684559 + "x": -0.08247, + "y": -0.99659 }, { - "x": 0.3050933548627235, - "y": -0.9523224479232903 + "x": 0.30509, + "y": -0.95232 }, { - "x": 0.6463845515737278, - "y": -0.7630118029800266 + "x": 0.64638, + "y": -0.76301 }, { - "x": 0.8892196160788806, - "y": -0.4574805726809911 + "x": 0.88922, + "y": -0.45748 }, { - "x": 0.996593719684559, - "y": -0.08246792034054201 + "x": 0.99659, + "y": -0.08247 }, { "max": { @@ -34455,12 +34455,12 @@ } }, { - "x": 336.61455413008605, - "y": 365.7236797805349 + "x": 336.61455, + "y": 365.72368 }, { - "x": 305.71230900413, - "y": 333.14045449058574 + "x": 305.71231, + "y": 333.14045 }, { "category": 1, @@ -34477,16 +34477,16 @@ "y": 0 }, { - "x": 321.5198761971771, - "y": 348.2351324234947 + "x": 321.51988, + "y": 348.23513 }, { - "x": -3.143196781104746, - "y": 1.1984728965065683 + "x": -3.1432, + "y": 1.19847 }, { - "x": 322.2327654573152, - "y": 345.84126299936344 + "x": 322.23277, + "y": 345.84126 }, { "endCol": 7, @@ -34509,8 +34509,8 @@ "yScale": 1 }, { - "x": -0.7128892601381495, - "y": 2.393869424131271 + "x": -0.71289, + "y": 2.39387 }, [ { @@ -34566,127 +34566,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.61455413008605, - "y": 349.96018172764525 + "x": 336.61455, + "y": 349.96018 }, { "body": null, "index": 1, "isInternal": false, - "x": 334.8059563735467, - "y": 355.60556277369 + "x": 334.80596, + "y": 355.60556 }, { "body": null, "index": 2, "isInternal": false, - "x": 330.9739410226966, - "y": 360.1289891686752 + "x": 330.97394, + "y": 360.12899 }, { "body": null, "index": 3, "isInternal": false, - "x": 325.70263446331666, - "y": 362.84094052462495 + "x": 325.70263, + "y": 362.84094 }, { "body": null, "index": 4, "isInternal": false, - "x": 319.79482689302654, - "y": 363.32981035640364 + "x": 319.79483, + "y": 363.32981 }, { "body": null, "index": 5, "isInternal": false, - "x": 314.14944584698185, - "y": 361.5212125998642 + "x": 314.14945, + "y": 361.52121 }, { "body": null, "index": 6, "isInternal": false, - "x": 309.62601945199657, - "y": 357.6891972490141 + "x": 309.62602, + "y": 357.6892 }, { "body": null, "index": 7, "isInternal": false, - "x": 306.91406809604683, - "y": 352.41789068963413 + "x": 306.91407, + "y": 352.41789 }, { "body": null, "index": 8, "isInternal": false, - "x": 306.42519826426815, - "y": 346.51008311934413 + "x": 306.4252, + "y": 346.51008 }, { "body": null, "index": 9, "isInternal": false, - "x": 308.23379602080763, - "y": 340.8647020732994 + "x": 308.2338, + "y": 340.8647 }, { "body": null, "index": 10, "isInternal": false, - "x": 312.06581137165773, - "y": 336.3412756783141 + "x": 312.06581, + "y": 336.34128 }, { "body": null, "index": 11, "isInternal": false, - "x": 317.33711793103765, - "y": 333.6293243223644 + "x": 317.33712, + "y": 333.62932 }, { "body": null, "index": 12, "isInternal": false, - "x": 323.24492550132766, - "y": 333.14045449058574 + "x": 323.24493, + "y": 333.14045 }, { "body": null, "index": 13, "isInternal": false, - "x": 328.89030654737246, - "y": 334.94905224712517 + "x": 328.89031, + "y": 334.94905 }, { "body": null, "index": 14, "isInternal": false, - "x": 333.41373294235774, - "y": 338.7810675979752 + "x": 333.41373, + "y": 338.78107 }, { "body": null, "index": 15, "isInternal": false, - "x": 336.12568429830736, - "y": 344.0523741573552 + "x": 336.12568, + "y": 344.05237 }, { - "angle": -0.020223386637190952, - "anglePrev": -0.016586114470665072, - "angularSpeed": 0.003722087429466533, - "angularVelocity": -0.0036492949751292907, - "area": 1214.3271480000003, + "angle": -0.02022, + "anglePrev": -0.01659, + "angularSpeed": 0.00372, + "angularVelocity": -0.00365, + "area": 1214.32715, "axes": { "#": 3886 }, "bounds": { "#": 3897 }, - "circleRadius": 19.82334533607682, + "circleRadius": 19.82335, "collisionFilter": { "#": 3900 }, @@ -34701,13 +34701,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 938.8048244237383, - "inverseInertia": 0.001065184129847037, - "inverseMass": 0.8235013123498081, + "inertia": 938.80482, + "inverseInertia": 0.00107, + "inverseMass": 0.8235, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2143271480000004, + "mass": 1.21433, "motion": 0, "parent": null, "position": { @@ -34729,7 +34729,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.34205544033588975, + "speed": 0.34206, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34774,44 +34774,44 @@ } ], { - "x": -0.95714213239148, - "y": -0.2896186085200516 + "x": -0.95714, + "y": -0.28962 }, { - "x": -0.8206679885891333, - "y": -0.571405331183623 + "x": -0.82067, + "y": -0.57141 }, { - "x": -0.6041223244668131, - "y": -0.7968915968190494 + "x": -0.60412, + "y": -0.79689 }, { - "x": -0.3280844975004141, - "y": -0.9446483803510709 + "x": -0.32808, + "y": -0.94465 }, { - "x": -0.02022200815384567, - "y": -0.9997955142859093 + "x": -0.02022, + "y": -0.9998 }, { - "x": 0.2896186085200516, - "y": -0.95714213239148 + "x": 0.28962, + "y": -0.95714 }, { - "x": 0.571405331183623, - "y": -0.8206679885891333 + "x": 0.57141, + "y": -0.82067 }, { - "x": 0.7968915968190494, - "y": -0.6041223244668131 + "x": 0.79689, + "y": -0.60412 }, { - "x": 0.9446483803510709, - "y": -0.3280844975004141 + "x": 0.94465, + "y": -0.32808 }, { - "x": 0.9997955142859093, - "y": -0.02022200815384567 + "x": 0.9998, + "y": -0.02022 }, { "max": { @@ -34822,12 +34822,12 @@ } }, { - "x": 400.5170413558288, - "y": 362.29447527445024 + "x": 400.51704, + "y": 362.29448 }, { - "x": 361.10469956750296, - "y": 322.70561465949476 + "x": 361.1047, + "y": 322.70561 }, { "category": 1, @@ -34844,16 +34844,16 @@ "y": 0 }, { - "x": 380.8793365343398, - "y": 342.3433194809836 + "x": 380.87934, + "y": 342.34332 }, { "x": 0, "y": 0 }, { - "x": 381.07193072402856, - "y": 342.3217555683261 + "x": 381.07193, + "y": 342.32176 }, { "endCol": 8, @@ -34876,8 +34876,8 @@ "yScale": 1 }, { - "x": -0.184673123500545, - "y": 0.06311169590759391 + "x": -0.18467, + "y": 0.06311 }, [ { @@ -34945,155 +34945,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 400.5170413558288, - "y": 345.04775867314015 + "x": 400.51704, + "y": 345.04776 }, { "body": null, "index": 1, "isInternal": false, - "x": 398.72072277655644, - "y": 350.9842977795354 + "x": 398.72072, + "y": 350.9843 }, { "body": null, "index": 2, "isInternal": false, - "x": 395.1769221463778, - "y": 356.0740013164367 + "x": 395.17692, + "y": 356.074 }, { "body": null, "index": 3, "isInternal": false, - "x": 390.2346774929344, - "y": 359.82070957643094 + "x": 390.23468, + "y": 359.82071 }, { "body": null, "index": 4, "isInternal": false, - "x": 384.3756291217845, - "y": 361.8556074079023 + "x": 384.37563, + "y": 361.85561 }, { "body": null, "index": 5, "isInternal": false, - "x": 378.1748973421833, - "y": 361.98102430247246 + "x": 378.1749, + "y": 361.98102 }, { "body": null, "index": 6, "isInternal": false, - "x": 372.238358235788, - "y": 360.1847057232003 + "x": 372.23836, + "y": 360.18471 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.14865469888673, - "y": 356.6409050930217 + "x": 367.14865, + "y": 356.64091 }, { "body": null, "index": 8, "isInternal": false, - "x": 363.4019464388924, - "y": 351.6986604395782 + "x": 363.40195, + "y": 351.69866 }, { "body": null, "index": 9, "isInternal": false, - "x": 361.36704860742105, - "y": 345.8396120684284 + "x": 361.36705, + "y": 345.83961 }, { "body": null, "index": 10, "isInternal": false, - "x": 361.24163171285085, - "y": 339.63888028882707 + "x": 361.24163, + "y": 339.63888 }, { "body": null, "index": 11, "isInternal": false, - "x": 363.0379502921232, - "y": 333.70234118243184 + "x": 363.03795, + "y": 333.70234 }, { "body": null, "index": 12, "isInternal": false, - "x": 366.5817509223018, - "y": 328.6126376455305 + "x": 366.58175, + "y": 328.61264 }, { "body": null, "index": 13, "isInternal": false, - "x": 371.52399557574523, - "y": 324.8659293855363 + "x": 371.524, + "y": 324.86593 }, { "body": null, "index": 14, "isInternal": false, - "x": 377.3830439468951, - "y": 322.8310315540648 + "x": 377.38304, + "y": 322.83103 }, { "body": null, "index": 15, "isInternal": false, - "x": 383.5837757264963, - "y": 322.70561465949476 + "x": 383.58378, + "y": 322.70561 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.52031483289164, - "y": 324.5019332387669 + "x": 389.52031, + "y": 324.50193 }, { "body": null, "index": 17, "isInternal": false, - "x": 394.6100183697929, - "y": 328.04573386894555 + "x": 394.61002, + "y": 328.04573 }, { "body": null, "index": 18, "isInternal": false, - "x": 398.3567266297872, - "y": 332.987978522389 + "x": 398.35673, + "y": 332.98798 }, { "body": null, "index": 19, "isInternal": false, - "x": 400.3916244612586, - "y": 338.84702689353884 + "x": 400.39162, + "y": 338.84703 }, { - "angle": 0.0058217985809951595, - "anglePrev": 0.007377400762284767, - "angularSpeed": 0.0004861882827123188, - "angularVelocity": -0.0017111714017637265, - "area": 1146.079588, + "angle": 0.00582, + "anglePrev": 0.00738, + "angularSpeed": 0.00049, + "angularVelocity": -0.00171, + "area": 1146.07959, "axes": { "#": 3932 }, "bounds": { "#": 3943 }, - "circleRadius": 19.25810185185185, + "circleRadius": 19.2581, "collisionFilter": { "#": 3946 }, @@ -35108,13 +35108,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 836.2448559249976, - "inverseInertia": 0.0011958220046613829, - "inverseMass": 0.8725397524486754, + "inertia": 836.24486, + "inverseInertia": 0.0012, + "inverseMass": 0.87254, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.146079588, + "mass": 1.14608, "motion": 0, "parent": null, "position": { @@ -35136,7 +35136,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8949318342246433, + "speed": 2.89493, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35181,44 +35181,44 @@ } ], { - "x": -0.9492309400367099, - "y": -0.31458007323577225 + "x": -0.94923, + "y": -0.31458 }, { - "x": -0.8056525162950666, - "y": -0.5923884055140062 + "x": -0.80565, + "y": -0.59239 }, { - "x": -0.5829677685342083, - "y": -0.812495280509521 + "x": -0.58297, + "y": -0.8125 }, { - "x": -0.30350653619413326, - "y": -0.9528293564366279 + "x": -0.30351, + "y": -0.95283 }, { - "x": 0.005821765694352349, - "y": -0.9999830533785059 + "x": 0.00582, + "y": -0.99998 }, { - "x": 0.31458007323577225, - "y": -0.9492309400367099 + "x": 0.31458, + "y": -0.94923 }, { - "x": 0.5923884055140062, - "y": -0.8056525162950666 + "x": 0.59239, + "y": -0.80565 }, { - "x": 0.812495280509521, - "y": -0.5829677685342083 + "x": 0.8125, + "y": -0.58297 }, { - "x": 0.9528293564366279, - "y": -0.30350653619413326 + "x": 0.95283, + "y": -0.30351 }, { - "x": 0.9999830533785059, - "y": 0.005821765694352349 + "x": 0.99998, + "y": 0.00582 }, { "max": { @@ -35229,12 +35229,12 @@ } }, { - "x": 486.4015537251593, - "y": 187.1541861938137 + "x": 486.40155, + "y": 187.15419 }, { - "x": 446.85484132031786, - "y": 146.58397238895986 + "x": 446.85484, + "y": 146.58397 }, { "category": 1, @@ -35251,16 +35251,16 @@ "y": 0 }, { - "x": 465.89305995866755, - "y": 165.62219102730955 + "x": 465.89306, + "y": 165.62219 }, { - "x": 0.14824786966810355, - "y": 0.18590848020007955 + "x": 0.14825, + "y": 0.18591 }, { - "x": 464.30435437732245, - "y": 163.06528939396173 + "x": 464.30435, + "y": 163.06529 }, { "endCol": 10, @@ -35283,8 +35283,8 @@ "yScale": 1 }, { - "x": 1.551312529330744, - "y": 2.5689758389984263 + "x": 1.55131, + "y": 2.56898 }, [ { @@ -35352,155 +35352,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 484.89619663694305, - "y": 168.7458757724113 + "x": 484.8962, + "y": 168.74588 }, { "body": null, "index": 1, "isInternal": false, - "x": 483.0008694741237, - "y": 174.46493854054722 + "x": 483.00087, + "y": 174.46494 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.4315483743504, - "y": 179.31924105344376 + "x": 479.43155, + "y": 179.31924 }, { "body": null, "index": 3, "isInternal": false, - "x": 474.53601611680637, - "y": 182.831799937697 + "x": 474.53602, + "y": 182.8318 }, { "body": null, "index": 4, "isInternal": false, - "x": 468.79527309322464, - "y": 184.66040966565924 + "x": 468.79527, + "y": 184.66041 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.7693752135658, - "y": 184.625327705585 + "x": 462.76938, + "y": 184.62533 }, { "body": null, "index": 6, "isInternal": false, - "x": 457.0503124454299, - "y": 182.7300005427656 + "x": 457.05031, + "y": 182.73 }, { "body": null, "index": 7, "isInternal": false, - "x": 452.1960099325334, - "y": 179.16067944299238 + "x": 452.19601, + "y": 179.16068 }, { "body": null, "index": 8, "isInternal": false, - "x": 448.68345104828006, - "y": 174.26514718544846 + "x": 448.68345, + "y": 174.26515 }, { "body": null, "index": 9, "isInternal": false, - "x": 446.85484132031786, - "y": 168.52440416186673 + "x": 446.85484, + "y": 168.5244 }, { "body": null, "index": 10, "isInternal": false, - "x": 446.88992328039205, - "y": 162.4985062822078 + "x": 446.88992, + "y": 162.49851 }, { "body": null, "index": 11, "isInternal": false, - "x": 448.7852504432114, - "y": 156.7794435140719 + "x": 448.78525, + "y": 156.77944 }, { "body": null, "index": 12, "isInternal": false, - "x": 452.3545715429847, - "y": 151.92514100117535 + "x": 452.35457, + "y": 151.92514 }, { "body": null, "index": 13, "isInternal": false, - "x": 457.25010380052873, - "y": 148.4125821169221 + "x": 457.2501, + "y": 148.41258 }, { "body": null, "index": 14, "isInternal": false, - "x": 462.99084682411046, - "y": 146.58397238895986 + "x": 462.99085, + "y": 146.58397 }, { "body": null, "index": 15, "isInternal": false, - "x": 469.0167447037693, - "y": 146.61905434903412 + "x": 469.01674, + "y": 146.61905 }, { "body": null, "index": 16, "isInternal": false, - "x": 474.7358074719052, - "y": 148.51438151185351 + "x": 474.73581, + "y": 148.51438 }, { "body": null, "index": 17, "isInternal": false, - "x": 479.5901099848017, - "y": 152.08370261162673 + "x": 479.59011, + "y": 152.0837 }, { "body": null, "index": 18, "isInternal": false, - "x": 483.10266886905504, - "y": 156.97923486917065 + "x": 483.10267, + "y": 156.97923 }, { "body": null, "index": 19, "isInternal": false, - "x": 484.93127859701724, - "y": 162.71997789275238 + "x": 484.93128, + "y": 162.71998 }, { - "angle": 0.012189923683245741, - "anglePrev": 0.0030070876744971724, - "angularSpeed": 0.009697198240972893, - "angularVelocity": 0.009175325225342121, - "area": 809.1720039999999, + "angle": 0.01219, + "anglePrev": 0.00301, + "angularSpeed": 0.0097, + "angularVelocity": 0.00918, + "area": 809.172, "axes": { "#": 3978 }, "bounds": { "#": 3988 }, - "circleRadius": 16.21343449931413, + "circleRadius": 16.21343, "collisionFilter": { "#": 3991 }, @@ -35515,13 +35515,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 416.8676232415635, - "inverseInertia": 0.0023988430481216025, - "inverseMass": 1.2358311892362506, + "inertia": 416.86762, + "inverseInertia": 0.0024, + "inverseMass": 1.23583, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8091720039999999, + "mass": 0.80917, "motion": 0, "parent": null, "position": { @@ -35543,7 +35543,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.447668078848976, + "speed": 1.44767, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35585,40 +35585,40 @@ } ], { - "x": -0.935461404077092, - "y": -0.35342886339702834 + "x": -0.93546, + "y": -0.35343 }, { - "x": -0.7581554479697953, - "y": -0.6520738583271981 + "x": -0.75816, + "y": -0.65207 }, { - "x": -0.4894415635469769, - "y": -0.872036097803692 + "x": -0.48944, + "y": -0.87204 }, { - "x": -0.16150430000360536, - "y": -0.9868720084592254 + "x": -0.1615, + "y": -0.98687 }, { - "x": 0.18551371074032857, - "y": -0.9826416758551174 + "x": 0.18551, + "y": -0.98264 }, { - "x": 0.5105541152965914, - "y": -0.8598456229775869 + "x": 0.51055, + "y": -0.85985 }, { - "x": 0.7738260304025338, - "y": -0.6333981959805827 + "x": 0.77383, + "y": -0.6334 }, { - "x": 0.9437990976862268, - "y": -0.330519686564452 + "x": 0.9438, + "y": -0.33052 }, { - "x": 0.9999257038003039, - "y": 0.012189621793415685 + "x": 0.99993, + "y": 0.01219 }, { "max": { @@ -35629,12 +35629,12 @@ } }, { - "x": 516.8658895412459, - "y": 197.7530483952895 + "x": 516.86589, + "y": 197.75305 }, { - "x": 483.5356458706799, - "y": 164.75772944893262 + "x": 483.53565, + "y": 164.75773 }, { "category": 1, @@ -35651,16 +35651,16 @@ "y": 0 }, { - "x": 499.5357733686079, - "y": 180.96952488464694 + "x": 499.53577, + "y": 180.96952 }, { - "x": 0.3179059839922091, - "y": -0.18588952879043705 + "x": 0.31791, + "y": -0.18589 }, { - "x": 498.0750220292332, - "y": 180.6885276589661 + "x": 498.07502, + "y": 180.68853 }, { "endCol": 10, @@ -35683,8 +35683,8 @@ "yScale": 1 }, { - "x": 1.4984928056055082, - "y": 0.29525326587460654 + "x": 1.49849, + "y": 0.29525 }, [ { @@ -35746,141 +35746,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 515.4672732958387, - "y": 183.9789474320203 + "x": 515.46727, + "y": 183.97895 }, { "body": null, "index": 1, "isInternal": false, - "x": 513.4769089117888, - "y": 189.24707704495736 + "x": 513.47691, + "y": 189.24708 }, { "body": null, "index": 2, "isInternal": false, - "x": 509.80560395094057, - "y": 193.5156423641777 + "x": 509.8056, + "y": 193.51564 }, { "body": null, "index": 3, "isInternal": false, - "x": 504.8946403185362, - "y": 196.27198436059288 + "x": 504.89464, + "y": 196.27198 }, { "body": null, "index": 4, "isInternal": false, - "x": 499.3381430304712, - "y": 197.18132032036127 + "x": 499.33814, + "y": 197.18132 }, { "body": null, "index": 5, "isInternal": false, - "x": 493.8054642633907, - "y": 196.1368014549039 + "x": 493.80546, + "y": 196.1368 }, { "body": null, "index": 6, "isInternal": false, - "x": 488.9631525809268, - "y": 193.26156188751568 + "x": 488.96315, + "y": 193.26156 }, { "body": null, "index": 7, "isInternal": false, - "x": 485.3969952976686, - "y": 188.90476808575465 + "x": 485.397, + "y": 188.90477 }, { "body": null, "index": 8, "isInternal": false, - "x": 483.5356458706799, - "y": 183.58968404966936 + "x": 483.53565, + "y": 183.58968 }, { "body": null, "index": 9, "isInternal": false, - "x": 483.6042734413769, - "y": 177.96010233727358 + "x": 483.60427, + "y": 177.9601 }, { "body": null, "index": 10, "isInternal": false, - "x": 485.59463782542707, - "y": 172.69197272433652 + "x": 485.59464, + "y": 172.69197 }, { "body": null, "index": 11, "isInternal": false, - "x": 489.2659427862753, - "y": 168.4234074051162 + "x": 489.26594, + "y": 168.42341 }, { "body": null, "index": 12, "isInternal": false, - "x": 494.17690641867966, - "y": 165.667065408701 + "x": 494.17691, + "y": 165.66707 }, { "body": null, "index": 13, "isInternal": false, - "x": 499.73340370674464, - "y": 164.75772944893262 + "x": 499.7334, + "y": 164.75773 }, { "body": null, "index": 14, "isInternal": false, - "x": 505.2660824738251, - "y": 165.80224831439 + "x": 505.26608, + "y": 165.80225 }, { "body": null, "index": 15, "isInternal": false, - "x": 510.108394156289, - "y": 168.6774878817782 + "x": 510.10839, + "y": 168.67749 }, { "body": null, "index": 16, "isInternal": false, - "x": 513.6745514395474, - "y": 173.03428168353923 + "x": 513.67455, + "y": 173.03428 }, { "body": null, "index": 17, "isInternal": false, - "x": 515.5359008665358, - "y": 178.34936571962453 + "x": 515.5359, + "y": 178.34937 }, { - "angle": 0.0014724811196320333, - "anglePrev": 0.0028708358074632638, - "angularSpeed": 0.0012879266944400745, - "angularVelocity": -0.0007306236965180807, - "area": 516.0449700000001, + "angle": 0.00147, + "anglePrev": 0.00287, + "angularSpeed": 0.00129, + "angularVelocity": -0.00073, + "area": 516.04497, "axes": { "#": 4021 }, "bounds": { "#": 4029 }, - "circleRadius": 13.035022290809328, + "circleRadius": 13.03502, "collisionFilter": { "#": 4032 }, @@ -35895,13 +35895,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 169.572527516552, - "inverseInertia": 0.0058971816640663675, - "inverseMass": 1.9378156132400626, + "inertia": 169.57253, + "inverseInertia": 0.0059, + "inverseMass": 1.93782, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5160449700000002, + "mass": 0.51604, "motion": 0, "parent": null, "position": { @@ -35923,7 +35923,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4778861878601222, + "speed": 1.47789, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35959,32 +35959,32 @@ } ], { - "x": -0.9003093307380239, - "y": -0.43525062778363877 + "x": -0.90031, + "y": -0.43525 }, { - "x": -0.622386230930774, - "y": -0.7827102781666949 + "x": -0.62239, + "y": -0.78271 }, { - "x": -0.22109412930260364, - "y": -0.9752524729463257 + "x": -0.22109, + "y": -0.97525 }, { - "x": 0.22396524810550592, - "y": -0.9745971309423395 + "x": 0.22397, + "y": -0.9746 }, { - "x": 0.6246885808978759, - "y": -0.7808739827243562 + "x": 0.62469, + "y": -0.78087 }, { - "x": 0.9015872214489421, - "y": -0.4325973672134128 + "x": 0.90159, + "y": -0.4326 }, { - "x": 0.9999989158998719, - "y": 0.0014724805875263372 + "x": 1, + "y": 0.00147 }, { "max": { @@ -35995,12 +35995,12 @@ } }, { - "x": 541.0886487957597, - "y": 203.1781716052905 + "x": 541.08865, + "y": 203.17817 }, { - "x": 514.3009895438507, - "y": 176.53724675569003 + "x": 514.30099, + "y": 176.53725 }, { "category": 1, @@ -36017,16 +36017,16 @@ "y": 0 }, { - "x": 527.0132474332908, - "y": 189.57223262444487 + "x": 527.01325, + "y": 189.57223 }, { - "x": 0.1641510669835042, - "y": 0.06901074089006563 + "x": 0.16415, + "y": 0.06901 }, { - "x": 525.5266592432972, - "y": 189.3690591651835 + "x": 525.52666, + "y": 189.36906 }, { "endCol": 11, @@ -36049,8 +36049,8 @@ "yScale": 1 }, { - "x": 1.426989305660186, - "y": 0.4625372085431252 + "x": 1.42699, + "y": 0.46254 }, [ { @@ -36100,105 +36100,105 @@ "body": null, "index": 0, "isInternal": false, - "x": 539.7169619903619, - "y": 192.4919417627767 + "x": 539.71696, + "y": 192.49194 }, { "body": null, "index": 1, "isInternal": false, - "x": 537.1922695354916, - "y": 197.71422986363066 + "x": 537.19227, + "y": 197.71423 }, { "body": null, "index": 2, "isInternal": false, - "x": 532.6519484896006, - "y": 201.32454824297596 + "x": 532.65195, + "y": 201.32455 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.9940536488323, - "y": 202.6072184931997 + "x": 526.99405, + "y": 202.60722 }, { "body": null, "index": 4, "isInternal": false, - "x": 521.3399607529412, - "y": 201.3078915425699 + "x": 521.33996, + "y": 201.30789 }, { "body": null, "index": 5, "isInternal": false, - "x": 516.8102916316204, - "y": 197.68421776429562 + "x": 516.81029, + "y": 197.68422 }, { "body": null, "index": 6, "isInternal": false, - "x": 514.3009895438507, - "y": 192.4545171961641 + "x": 514.30099, + "y": 192.45452 }, { "body": null, "index": 7, "isInternal": false, - "x": 514.3095328762196, - "y": 186.65252348611304 + "x": 514.30953, + "y": 186.65252 }, { "body": null, "index": 8, "isInternal": false, - "x": 516.8342253310902, - "y": 181.43023538525907 + "x": 516.83423, + "y": 181.43024 }, { "body": null, "index": 9, "isInternal": false, - "x": 521.3745463769809, - "y": 177.81991700591377 + "x": 521.37455, + "y": 177.81992 }, { "body": null, "index": 10, "isInternal": false, - "x": 527.0324412177492, - "y": 176.53724675569003 + "x": 527.03244, + "y": 176.53725 }, { "body": null, "index": 11, "isInternal": false, - "x": 532.6865341136403, - "y": 177.83657370631983 + "x": 532.68653, + "y": 177.83657 }, { "body": null, "index": 12, "isInternal": false, - "x": 537.2162032349612, - "y": 181.4602474845941 + "x": 537.2162, + "y": 181.46025 }, { "body": null, "index": 13, "isInternal": false, - "x": 539.7255053227307, - "y": 186.68994805272564 + "x": 539.72551, + "y": 186.68995 }, { - "angle": 0.030794958919349316, - "anglePrev": 0.022944118439146736, - "angularSpeed": 0.004926935441925463, - "angularVelocity": 0.008028514345742713, + "angle": 0.03079, + "anglePrev": 0.02294, + "angularSpeed": 0.00493, + "angularVelocity": 0.00803, "area": 1172.14282, "axes": { "#": 4058 @@ -36206,7 +36206,7 @@ "bounds": { "#": 4069 }, - "circleRadius": 19.475951646090536, + "circleRadius": 19.47595, "collisionFilter": { "#": 4072 }, @@ -36221,13 +36221,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 874.7117635443166, - "inverseInertia": 0.0011432337390182312, - "inverseMass": 0.8531383573206547, + "inertia": 874.71176, + "inverseInertia": 0.00114, + "inverseMass": 0.85314, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1721428200000001, + "mass": 1.17214, "motion": 0, "parent": null, "position": { @@ -36249,7 +36249,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4890710567920733, + "speed": 1.48907, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36294,44 +36294,44 @@ } ], { - "x": -0.941086163485376, - "y": -0.338166871376213 + "x": -0.94109, + "y": -0.33817 }, { - "x": -0.7906049441149673, - "y": -0.6123265651112724 + "x": -0.7906, + "y": -0.61233 }, { - "x": -0.562503042970898, - "y": -0.8267952144566878 + "x": -0.5625, + "y": -0.8268 }, { - "x": -0.27960090477413213, - "y": -0.9601163127712634 + "x": -0.2796, + "y": -0.96012 }, { - "x": 0.03079009185549477, - "y": -0.999525872723428 + "x": 0.03079, + "y": -0.99953 }, { - "x": 0.338166871376213, - "y": -0.941086163485376 + "x": 0.33817, + "y": -0.94109 }, { - "x": 0.6123265651112724, - "y": -0.7906049441149673 + "x": 0.61233, + "y": -0.7906 }, { - "x": 0.8267952144566878, - "y": -0.562503042970898 + "x": 0.8268, + "y": -0.5625 }, { - "x": 0.9601163127712634, - "y": -0.27960090477413213 + "x": 0.96012, + "y": -0.2796 }, { - "x": 0.999525872723428, - "y": 0.03079009185549477 + "x": 0.99953, + "y": 0.03079 }, { "max": { @@ -36342,12 +36342,12 @@ } }, { - "x": 580.0733013054457, - "y": 212.79772178199008 + "x": 580.0733, + "y": 212.79772 }, { - "x": 540.4024603274086, - "y": 173.08042241745076 + "x": 540.40246, + "y": 173.08042 }, { "category": 1, @@ -36364,16 +36364,16 @@ "y": 0 }, { - "x": 559.7231574250002, - "y": 192.4011195150423 + "x": 559.72316, + "y": 192.40112 }, { - "x": 0.20505002326667784, - "y": -0.039418143625601615 + "x": 0.20505, + "y": -0.03942 }, { - "x": 558.2826996875334, - "y": 191.27368306879185 + "x": 558.2827, + "y": 191.27368 }, { "endCol": 12, @@ -36396,8 +36396,8 @@ "yScale": 1 }, { - "x": 1.4591887908610488, - "y": 1.2243185260049074 + "x": 1.45919, + "y": 1.22432 }, [ { @@ -36465,155 +36465,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 578.8562197028245, - "y": 196.03895305616285 + "x": 578.85622, + "y": 196.03895 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.7956839021836, - "y": 201.7732277456313 + "x": 576.79568, + "y": 201.77323 }, { "body": null, "index": 2, "isInternal": false, - "x": 573.0645865991135, - "y": 206.59063097922316 + "x": 573.06459, + "y": 206.59063 }, { "body": null, "index": 3, "isInternal": false, - "x": 568.0266647276525, - "y": 210.01813797659827 + "x": 568.02666, + "y": 210.01814 }, { "body": null, "index": 4, "isInternal": false, - "x": 562.1764345522561, - "y": 211.72181661263383 + "x": 562.17643, + "y": 211.72182 }, { "body": null, "index": 5, "isInternal": false, - "x": 556.0853238838796, - "y": 211.53418179286646 + "x": 556.08532, + "y": 211.53418 }, { "body": null, "index": 6, "isInternal": false, - "x": 550.3510491944112, - "y": 209.47364599222567 + "x": 550.35105, + "y": 209.47365 }, { "body": null, "index": 7, "isInternal": false, - "x": 545.5336459608192, - "y": 205.74254868915548 + "x": 545.53365, + "y": 205.74255 }, { "body": null, "index": 8, "isInternal": false, - "x": 542.1061389634442, - "y": 200.70462681769445 + "x": 542.10614, + "y": 200.70463 }, { "body": null, "index": 9, "isInternal": false, - "x": 540.4024603274086, - "y": 194.85439664229827 + "x": 540.40246, + "y": 194.8544 }, { "body": null, "index": 10, "isInternal": false, - "x": 540.5900951471758, - "y": 188.76328597392174 + "x": 540.5901, + "y": 188.76329 }, { "body": null, "index": 11, "isInternal": false, - "x": 542.6506309478168, - "y": 183.0290112844533 + "x": 542.65063, + "y": 183.02901 }, { "body": null, "index": 12, "isInternal": false, - "x": 546.3817282508869, - "y": 178.21160805086143 + "x": 546.38173, + "y": 178.21161 }, { "body": null, "index": 13, "isInternal": false, - "x": 551.4196501223479, - "y": 174.78410105348632 + "x": 551.41965, + "y": 174.7841 }, { "body": null, "index": 14, "isInternal": false, - "x": 557.2698802977443, - "y": 173.08042241745076 + "x": 557.26988, + "y": 173.08042 }, { "body": null, "index": 15, "isInternal": false, - "x": 563.3609909661208, - "y": 173.26805723721813 + "x": 563.36099, + "y": 173.26806 }, { "body": null, "index": 16, "isInternal": false, - "x": 569.0952656555892, - "y": 175.32859303785892 + "x": 569.09527, + "y": 175.32859 }, { "body": null, "index": 17, "isInternal": false, - "x": 573.9126688891812, - "y": 179.0596903409291 + "x": 573.91267, + "y": 179.05969 }, { "body": null, "index": 18, "isInternal": false, - "x": 577.3401758865562, - "y": 184.09761221239015 + "x": 577.34018, + "y": 184.09761 }, { "body": null, "index": 19, "isInternal": false, - "x": 579.0438545225918, - "y": 189.94784238778632 + "x": 579.04385, + "y": 189.94784 }, { - "angle": 0.00584768962944931, - "anglePrev": 0.004468389988017775, - "angularSpeed": 0.0013792996414315351, - "angularVelocity": 0.0013792996414315351, - "area": 904.4403919999999, + "angle": 0.00585, + "anglePrev": 0.00447, + "angularSpeed": 0.00138, + "angularVelocity": 0.00138, + "area": 904.44039, "axes": { "#": 4104 }, "bounds": { "#": 4114 }, - "circleRadius": 17.141160836762687, + "circleRadius": 17.14116, "collisionFilter": { "#": 4117 }, @@ -36628,13 +36628,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 520.8064673147039, - "inverseInertia": 0.001920099044000038, - "inverseMass": 1.105656059642237, + "inertia": 520.80647, + "inverseInertia": 0.00192, + "inverseMass": 1.10566, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9044403919999999, + "mass": 0.90444, "motion": 0, "parent": null, "position": { @@ -36656,7 +36656,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0546868569722365, + "speed": 3.05469, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36698,40 +36698,40 @@ } ], { - "x": -0.9376792527436143, - "y": -0.3475019697414356 + "x": -0.93768, + "y": -0.3475 }, { - "x": -0.7622137660316565, - "y": -0.647325401071083 + "x": -0.76221, + "y": -0.64733 }, { - "x": -0.4948968096458945, - "y": -0.8689517522868087 + "x": -0.4949, + "y": -0.86895 }, { - "x": -0.16791817551173108, - "y": -0.9858009364637526 + "x": -0.16792, + "y": -0.9858 }, { - "x": 0.17943574455332673, - "y": -0.9837696953945031 + "x": 0.17944, + "y": -0.98377 }, { - "x": 0.5050254521926196, - "y": -0.8631044505954305 + "x": 0.50503, + "y": -0.8631 }, { - "x": 0.7697321815849417, - "y": -0.6383669545273206 + "x": 0.76973, + "y": -0.63837 }, { - "x": 0.9416791993807844, - "y": -0.3365119395408803 + "x": 0.94168, + "y": -0.33651 }, { - "x": 0.999982902311721, - "y": 0.005847656302086511 + "x": 0.99998, + "y": 0.00585 }, { "max": { @@ -36742,12 +36742,12 @@ } }, { - "x": 608.4895013763073, - "y": 232.0674087018566 + "x": 608.4895, + "y": 232.06741 }, { - "x": 574.3695051181442, - "y": 194.748513407665 + "x": 574.36951, + "y": 194.74851 }, { "category": 1, @@ -36764,16 +36764,16 @@ "y": 0 }, { - "x": 591.2676249648796, - "y": 211.8892203361902 + "x": 591.26762, + "y": 211.88922 }, { - "x": 0.1563088767331962, - "y": 0.19184148441919568 + "x": 0.15631, + "y": 0.19184 }, { - "x": 590.9438684001873, - "y": 208.85173889904897 + "x": 590.94387, + "y": 208.85174 }, { "endCol": 12, @@ -36796,8 +36796,8 @@ "yScale": 1 }, { - "x": 0.32375656469227576, - "y": 3.037481437141234 + "x": 0.32376, + "y": 3.03748 }, [ { @@ -36859,141 +36859,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 608.1309278659924, - "y": 214.96488372240768 + "x": 608.13093, + "y": 214.96488 }, { "body": null, "index": 1, "isInternal": false, - "x": 606.062250887532, - "y": 220.54688224970846 + "x": 606.06225, + "y": 220.54688 }, { "body": null, "index": 2, "isInternal": false, - "x": 602.2086510076475, - "y": 225.08442530358178 + "x": 602.20865, + "y": 225.08443 }, { "body": null, "index": 3, "isInternal": false, - "x": 597.0363365210756, - "y": 228.03022975262422 + "x": 597.03634, + "y": 228.03023 }, { "body": null, "index": 4, "isInternal": false, - "x": 591.1673902882053, - "y": 229.02992726471538 + "x": 591.16739, + "y": 229.02993 }, { "body": null, "index": 5, "isInternal": false, - "x": 585.3105370085683, - "y": 227.961660134826 + "x": 585.31054, + "y": 227.96166 }, { "body": null, "index": 6, "isInternal": false, - "x": 580.1730277723062, - "y": 224.955566349309 + "x": 580.17303, + "y": 224.95557 }, { "body": null, "index": 7, "isInternal": false, - "x": 576.372758517897, - "y": 220.37326533409947 + "x": 576.37276, + "y": 220.37327 }, { "body": null, "index": 8, "isInternal": false, - "x": 574.3695051181442, - "y": 214.76745515033667 + "x": 574.36951, + "y": 214.76746 }, { "body": null, "index": 9, "isInternal": false, - "x": 574.4043220637668, - "y": 208.8135569499727 + "x": 574.40432, + "y": 208.81356 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.4729990422272, - "y": 203.23155842267192 + "x": 576.473, + "y": 203.23156 }, { "body": null, "index": 11, "isInternal": false, - "x": 580.3265989221117, - "y": 198.6940153687986 + "x": 580.3266, + "y": 198.69402 }, { "body": null, "index": 12, "isInternal": false, - "x": 585.4989134086836, - "y": 195.74821091975616 + "x": 585.49891, + "y": 195.74821 }, { "body": null, "index": 13, "isInternal": false, - "x": 591.3678596415539, - "y": 194.748513407665 + "x": 591.36786, + "y": 194.74851 }, { "body": null, "index": 14, "isInternal": false, - "x": 597.2247129211909, - "y": 195.8167805375544 + "x": 597.22471, + "y": 195.81678 }, { "body": null, "index": 15, "isInternal": false, - "x": 602.362222157453, - "y": 198.82287432307137 + "x": 602.36222, + "y": 198.82287 }, { "body": null, "index": 16, "isInternal": false, - "x": 606.1624914118622, - "y": 203.4051753382809 + "x": 606.16249, + "y": 203.40518 }, { "body": null, "index": 17, "isInternal": false, - "x": 608.165744811615, - "y": 209.0109855220437 + "x": 608.16574, + "y": 209.01099 }, { - "angle": 0.00034151026960957284, - "anglePrev": -0.00024870234871688935, - "angularSpeed": 0.0005902126183264622, - "angularVelocity": 0.0005902126183264622, - "area": 336.960508, + "angle": 0.00034, + "anglePrev": -0.00025, + "angularSpeed": 0.00059, + "angularVelocity": 0.00059, + "area": 336.96051, "axes": { "#": 4147 }, "bounds": { "#": 4154 }, - "circleRadius": 10.59855109739369, + "circleRadius": 10.59855, "collisionFilter": { "#": 4157 }, @@ -37008,13 +37008,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 72.31452373591827, - "inverseInertia": 0.013828480757915922, - "inverseMass": 2.9677068269377136, + "inertia": 72.31452, + "inverseInertia": 0.01383, + "inverseMass": 2.96771, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.336960508, + "mass": 0.33696, "motion": 0, "parent": null, "position": { @@ -37036,7 +37036,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8311376443208274, + "speed": 2.83114, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37069,28 +37069,28 @@ } ], { - "x": -0.8658538975355635, - "y": -0.5002969399491404 + "x": -0.86585, + "y": -0.5003 }, { - "x": -0.4997054273006199, - "y": -0.8661954086268898 + "x": -0.49971, + "y": -0.8662 }, { - "x": 0.0003415102629712243, - "y": -0.9999999416853683 + "x": 0.00034, + "y": -1 }, { - "x": 0.5002969399491404, - "y": -0.8658538975355635 + "x": 0.5003, + "y": -0.86585 }, { - "x": 0.8661954086268898, - "y": -0.4997054273006199 + "x": 0.8662, + "y": -0.49971 }, { - "x": 0.9999999416853683, - "y": 0.0003415102629712243 + "x": 1, + "y": 0.00034 }, { "max": { @@ -37101,12 +37101,12 @@ } }, { - "x": 626.9104390425871, - "y": 211.724351128529 + "x": 626.91044, + "y": 211.72435 }, { - "x": 606.4345667112182, - "y": 191.24847879716015 + "x": 606.43457, + "y": 191.24848 }, { "category": 1, @@ -37123,16 +37123,16 @@ "y": 0 }, { - "x": 616.6725028769026, - "y": 201.48641496284458 + "x": 616.6725, + "y": 201.48641 }, { "x": 0, "y": 0 }, { - "x": 616.4330972860118, - "y": 198.66541774126836 + "x": 616.4331, + "y": 198.66542 }, { "endCol": 13, @@ -37155,8 +37155,8 @@ "yScale": 1 }, { - "x": 0.2394055908908092, - "y": 2.820997221576212 + "x": 0.23941, + "y": 2.821 }, [ { @@ -37200,85 +37200,85 @@ "body": null, "index": 0, "isInternal": false, - "x": 626.9085655172844, - "y": 204.23291084344956 + "x": 626.90857, + "y": 204.23291 }, { "body": null, "index": 1, "isInternal": false, - "x": 624.1639431619822, - "y": 208.98297380374538 + "x": 624.16394, + "y": 208.98297 }, { "body": null, "index": 2, "isInternal": false, - "x": 619.4120066763837, - "y": 211.724351128529 + "x": 619.41201, + "y": 211.72435 }, { "body": null, "index": 3, "isInternal": false, - "x": 613.9260069962976, - "y": 211.72247760322637 + "x": 613.92601, + "y": 211.72248 }, { "body": null, "index": 4, "isInternal": false, - "x": 609.1759440360016, - "y": 208.97785524792405 + "x": 609.17594, + "y": 208.97786 }, { "body": null, "index": 5, "isInternal": false, - "x": 606.4345667112182, - "y": 204.2259187623255 + "x": 606.43457, + "y": 204.22592 }, { "body": null, "index": 6, "isInternal": false, - "x": 606.4364402365209, - "y": 198.7399190822396 + "x": 606.43644, + "y": 198.73992 }, { "body": null, "index": 7, "isInternal": false, - "x": 609.1810625918231, - "y": 193.98985612194377 + "x": 609.18106, + "y": 193.98986 }, { "body": null, "index": 8, "isInternal": false, - "x": 613.9329990774215, - "y": 191.24847879716015 + "x": 613.933, + "y": 191.24848 }, { "body": null, "index": 9, "isInternal": false, - "x": 619.4189987575077, - "y": 191.2503523224628 + "x": 619.419, + "y": 191.25035 }, { "body": null, "index": 10, "isInternal": false, - "x": 624.1690617178036, - "y": 193.9949746777651 + "x": 624.16906, + "y": 193.99497 }, { "body": null, "index": 11, "isInternal": false, - "x": 626.9104390425871, - "y": 198.74691116336365 + "x": 626.91044, + "y": 198.74691 }, [], [], diff --git a/test/browser/refs/ballPool/ballPool-0.json b/test/browser/refs/ballPool/ballPool-0.json index 67797354..3e85d63e 100644 --- a/test/browser/refs/ballPool/ballPool-0.json +++ b/test/browser/refs/ballPool/ballPool-0.json @@ -853,9 +853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 155, - "inertia": 16835.842152547684, - "inverseInertia": 0.00005939708812538819, - "inverseMass": 0.21383147513781436, + "inertia": 16835.84215, + "inverseInertia": 0.00006, + "inverseMass": 0.21383, "isSleeping": false, "isStatic": false, "label": "Polygon Body", @@ -902,12 +902,12 @@ } ], { - "x": -0.5000034335836021, - "y": 0.866023421394946 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000034335836021, - "y": -0.866023421394946 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -1009,7 +1009,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 8559.455977, + "area": 8559.45598, "axes": { "#": 108 }, @@ -1030,13 +1030,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 156, - "inertia": 47433.138478766494, - "inverseInertia": 0.000021082307265998248, - "inverseMass": 0.1168298549215145, + "inertia": 47433.13848, + "inverseInertia": 0.00002, + "inverseMass": 0.11683, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 8.559455976999999, + "mass": 8.55946, "motion": 0, "parent": null, "position": { @@ -1085,20 +1085,20 @@ } ], { - "x": 0.3090136209349373, - "y": 0.9510576123856423 + "x": 0.30901, + "y": 0.95106 }, { - "x": -0.8090149467093116, - "y": 0.58778807065211 + "x": -0.80901, + "y": 0.58779 }, { - "x": -0.8090149467093116, - "y": -0.58778807065211 + "x": -0.80901, + "y": -0.58779 }, { - "x": 0.3090136209349373, - "y": -0.9510576123856423 + "x": 0.30901, + "y": -0.95106 }, { "x": 1, @@ -1113,11 +1113,11 @@ } }, { - "x": 448.54097878737247, + "x": 448.54098, "y": 617.063 }, { - "x": 339.99997878737247, + "x": 339.99998, "y": 502.937 }, { @@ -1184,35 +1184,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 448.54097878737247, + "x": 448.54098, "y": 595.267 }, { "body": null, "index": 1, "isInternal": false, - "x": 381.4589787873725, + "x": 381.45898, "y": 617.063 }, { "body": null, "index": 2, "isInternal": false, - "x": 339.99997878737247, + "x": 339.99998, "y": 560 }, { "body": null, "index": 3, "isInternal": false, - "x": 381.4589787873725, + "x": 381.45898, "y": 502.937 }, { "body": null, "index": 4, "isInternal": false, - "x": 448.54097878737247, + "x": 448.54098, "y": 524.733 }, { @@ -1241,8 +1241,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 157, - "inertia": 27306.666666666668, - "inverseInertia": 0.00003662109375, + "inertia": 27306.66667, + "inverseInertia": 0.00004, "inverseMass": 0.15625, "isSleeping": false, "isStatic": false, @@ -1889,14 +1889,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1020.1722720000001, + "area": 1020.17227, "axes": { "#": 160 }, "bounds": { "#": 171 }, - "circleRadius": 18.169817386831276, + "circleRadius": 18.16982, "collisionFilter": { "#": 174 }, @@ -1911,13 +1911,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 662.5992415979618, - "inverseInertia": 0.001509207884977869, - "inverseMass": 0.980226602355646, + "inertia": 662.59924, + "inverseInertia": 0.00151, + "inverseMass": 0.98023, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0201722720000002, + "mass": 1.02017, "motion": 0, "parent": null, "position": { @@ -1981,40 +1981,40 @@ } ], { - "x": -0.9510482862449724, - "y": -0.3090423227172957 + "x": -0.95105, + "y": -0.30904 }, { - "x": -0.8090478688341852, - "y": -0.5877427548978066 + "x": -0.80905, + "y": -0.58774 }, { - "x": -0.5877427548978066, - "y": -0.8090478688341852 + "x": -0.58774, + "y": -0.80905 }, { - "x": -0.3090423227172957, - "y": -0.9510482862449724 + "x": -0.30904, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.3090423227172957, - "y": -0.9510482862449724 + "x": 0.30904, + "y": -0.95105 }, { - "x": 0.5877427548978066, - "y": -0.8090478688341852 + "x": 0.58774, + "y": -0.80905 }, { - "x": 0.8090478688341852, - "y": -0.5877427548978066 + "x": 0.80905, + "y": -0.58774 }, { - "x": 0.9510482862449724, - "y": -0.3090423227172957 + "x": 0.95105, + "y": -0.30904 }, { "x": 1, @@ -2159,7 +2159,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 130.79399999999998, + "x": 130.794, "y": 80.794 }, { @@ -2167,7 +2167,7 @@ "index": 3, "isInternal": false, "x": 126.195, - "y": 84.13499999999999 + "y": 84.135 }, { "body": null, @@ -2188,7 +2188,7 @@ "index": 6, "isInternal": false, "x": 109.697, - "y": 84.13499999999999 + "y": 84.135 }, { "body": null, @@ -2223,7 +2223,7 @@ "index": 11, "isInternal": false, "x": 101.757, - "y": 59.696999999999996 + "y": 59.697 }, { "body": null, @@ -2264,7 +2264,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 130.79399999999998, + "x": 130.794, "y": 55.098 }, { @@ -2272,7 +2272,7 @@ "index": 18, "isInternal": false, "x": 134.135, - "y": 59.696999999999996 + "y": 59.697 }, { "body": null, @@ -2286,14 +2286,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1671.8754580000002, + "area": 1671.87546, "axes": { "#": 205 }, "bounds": { "#": 218 }, - "circleRadius": 23.201581790123456, + "circleRadius": 23.20158, "collisionFilter": { "#": 221 }, @@ -2308,13 +2308,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1779.5057490627585, - "inverseInertia": 0.0005619537899929159, - "inverseMass": 0.5981306772672298, + "inertia": 1779.50575, + "inverseInertia": 0.00056, + "inverseMass": 0.59813, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6718754580000001, + "mass": 1.67188, "motion": 0, "parent": null, "position": { @@ -2384,48 +2384,48 @@ } ], { - "x": -0.9659163631346784, - "y": -0.25885435949327934 + "x": -0.96592, + "y": -0.25885 }, { - "x": -0.8660398575651125, - "y": -0.4999749644818225 + "x": -0.86604, + "y": -0.49997 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999749644818225, - "y": -0.8660398575651125 + "x": -0.49997, + "y": -0.86604 }, { - "x": -0.25885435949327934, - "y": -0.9659163631346784 + "x": -0.25885, + "y": -0.96592 }, { "x": 0, "y": -1 }, { - "x": 0.25885435949327934, - "y": -0.9659163631346784 + "x": 0.25885, + "y": -0.96592 }, { - "x": 0.4999749644818225, - "y": -0.8660398575651125 + "x": 0.49997, + "y": -0.86604 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660398575651125, - "y": -0.4999749644818225 + "x": 0.86604, + "y": -0.49997 }, { - "x": 0.9659163631346784, - "y": -0.25885435949327934 + "x": 0.96592, + "y": -0.25885 }, { "x": 1, @@ -2440,7 +2440,7 @@ } }, { - "x": 191.89799999999997, + "x": 191.898, "y": 96.006 }, { @@ -2462,7 +2462,7 @@ "y": 0 }, { - "x": 168.89499999999998, + "x": 168.895, "y": 73.003 }, { @@ -2470,7 +2470,7 @@ "y": 0 }, { - "x": 168.89499999999998, + "x": 168.895, "y": 73.003 }, { @@ -2568,14 +2568,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 191.89799999999997, + "x": 191.898, "y": 76.031 }, { "body": null, "index": 1, "isInternal": false, - "x": 190.32999999999998, + "x": 190.33, "y": 81.882 }, { @@ -2589,21 +2589,21 @@ "body": null, "index": 3, "isInternal": false, - "x": 183.01899999999998, + "x": 183.019, "y": 91.41 }, { "body": null, "index": 4, "isInternal": false, - "x": 177.77399999999997, + "x": 177.774, "y": 94.438 }, { "body": null, "index": 5, "isInternal": false, - "x": 171.92299999999997, + "x": 171.923, "y": 96.006 }, { @@ -2638,7 +2638,7 @@ "body": null, "index": 10, "isInternal": false, - "x": 147.45999999999998, + "x": 147.46, "y": 81.882 }, { @@ -2659,7 +2659,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 147.45999999999998, + "x": 147.46, "y": 64.124 }, { @@ -2674,7 +2674,7 @@ "index": 15, "isInternal": false, "x": 154.771, - "y": 54.596000000000004 + "y": 54.596 }, { "body": null, @@ -2694,22 +2694,22 @@ "body": null, "index": 18, "isInternal": false, - "x": 171.92299999999997, + "x": 171.923, "y": 50 }, { "body": null, "index": 19, "isInternal": false, - "x": 177.77399999999997, + "x": 177.774, "y": 51.568 }, { "body": null, "index": 20, "isInternal": false, - "x": 183.01899999999998, - "y": 54.596000000000004 + "x": 183.019, + "y": 54.596 }, { "body": null, @@ -2722,14 +2722,14 @@ "body": null, "index": 22, "isInternal": false, - "x": 190.32999999999998, + "x": 190.33, "y": 64.124 }, { "body": null, "index": 23, "isInternal": false, - "x": 191.89799999999997, + "x": 191.898, "y": 69.975 }, { @@ -2737,14 +2737,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2317.307802, + "area": 2317.3078, "axes": { "#": 256 }, "bounds": { "#": 270 }, - "circleRadius": 27.29198816872428, + "circleRadius": 27.29199, "collisionFilter": { "#": 273 }, @@ -2759,13 +2759,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 3418.659578448263, - "inverseInertia": 0.0002925123069591802, - "inverseMass": 0.4315352492823481, + "inertia": 3418.65958, + "inverseInertia": 0.00029, + "inverseMass": 0.43154, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.3173078019999998, + "mass": 2.31731, "motion": 0, "parent": null, "position": { @@ -2838,52 +2838,52 @@ } ], { - "x": -0.9709241770545208, - "y": -0.2393872227396477 + "x": -0.97092, + "y": -0.23939 }, { - "x": -0.8855010950678353, - "y": -0.46463728932756176 + "x": -0.8855, + "y": -0.46464 }, { - "x": -0.7484566762798334, - "y": -0.6631836877759771 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5680951506518395, - "y": -0.8229628787532666 + "x": -0.5681, + "y": -0.82296 }, { - "x": -0.35458550726385507, - "y": -0.9350235922362785 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12053563584793033, - "y": -0.9927090009115134 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12053563584793033, - "y": -0.9927090009115134 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.35458550726385507, - "y": -0.9350235922362785 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680951506518395, - "y": -0.8229628787532666 + "x": 0.5681, + "y": -0.82296 }, { - "x": 0.7484566762798334, - "y": -0.6631836877759771 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8855010950678353, - "y": -0.46463728932756176 + "x": 0.8855, + "y": -0.46464 }, { - "x": 0.9709241770545208, - "y": -0.2393872227396477 + "x": 0.97092, + "y": -0.23939 }, { "x": 1, @@ -2898,11 +2898,11 @@ } }, { - "x": 256.08399999999995, + "x": 256.084, "y": 104.584 }, { - "x": 201.89799999999997, + "x": 201.898, "y": 50 }, { @@ -2920,7 +2920,7 @@ "y": 0 }, { - "x": 228.99099999999996, + "x": 228.991, "y": 77.292 }, { @@ -2928,7 +2928,7 @@ "y": 0 }, { - "x": 228.99099999999996, + "x": 228.991, "y": 77.292 }, { @@ -3032,197 +3032,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 256.08399999999995, + "x": 256.084, "y": 80.582 }, { "body": null, "index": 1, "isInternal": false, - "x": 254.50899999999996, + "x": 254.509, "y": 86.97 }, { "body": null, "index": 2, "isInternal": false, - "x": 251.45199999999997, + "x": 251.452, "y": 92.796 }, { "body": null, "index": 3, "isInternal": false, - "x": 247.08899999999997, + "x": 247.089, "y": 97.72 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.67399999999995, + "x": 241.674, "y": 101.458 }, { "body": null, "index": 5, "isInternal": false, - "x": 235.52199999999996, + "x": 235.522, "y": 103.791 }, { "body": null, "index": 6, "isInternal": false, - "x": 228.99099999999996, + "x": 228.991, "y": 104.584 }, { "body": null, "index": 7, "isInternal": false, - "x": 222.45999999999995, + "x": 222.46, "y": 103.791 }, { "body": null, "index": 8, "isInternal": false, - "x": 216.30799999999996, + "x": 216.308, "y": 101.458 }, { "body": null, "index": 9, "isInternal": false, - "x": 210.89299999999994, + "x": 210.893, "y": 97.72 }, { "body": null, "index": 10, "isInternal": false, - "x": 206.52999999999994, + "x": 206.53, "y": 92.796 }, { "body": null, "index": 11, "isInternal": false, - "x": 203.47299999999996, + "x": 203.473, "y": 86.97 }, { "body": null, "index": 12, "isInternal": false, - "x": 201.89799999999997, + "x": 201.898, "y": 80.582 }, { "body": null, "index": 13, "isInternal": false, - "x": 201.89799999999997, - "y": 74.00200000000001 + "x": 201.898, + "y": 74.002 }, { "body": null, "index": 14, "isInternal": false, - "x": 203.47299999999996, + "x": 203.473, "y": 67.614 }, { "body": null, "index": 15, "isInternal": false, - "x": 206.52999999999994, - "y": 61.788000000000004 + "x": 206.53, + "y": 61.788 }, { "body": null, "index": 16, "isInternal": false, - "x": 210.89299999999994, - "y": 56.864000000000004 + "x": 210.893, + "y": 56.864 }, { "body": null, "index": 17, "isInternal": false, - "x": 216.30799999999996, - "y": 53.126000000000005 + "x": 216.308, + "y": 53.126 }, { "body": null, "index": 18, "isInternal": false, - "x": 222.45999999999995, - "y": 50.793000000000006 + "x": 222.46, + "y": 50.793 }, { "body": null, "index": 19, "isInternal": false, - "x": 228.99099999999996, + "x": 228.991, "y": 50 }, { "body": null, "index": 20, "isInternal": false, - "x": 235.52199999999996, - "y": 50.793000000000006 + "x": 235.522, + "y": 50.793 }, { "body": null, "index": 21, "isInternal": false, - "x": 241.67399999999995, - "y": 53.126000000000005 + "x": 241.674, + "y": 53.126 }, { "body": null, "index": 22, "isInternal": false, - "x": 247.08899999999997, - "y": 56.864000000000004 + "x": 247.089, + "y": 56.864 }, { "body": null, "index": 23, "isInternal": false, - "x": 251.45199999999997, - "y": 61.788000000000004 + "x": 251.452, + "y": 61.788 }, { "body": null, "index": 24, "isInternal": false, - "x": 254.50899999999996, + "x": 254.509, "y": 67.614 }, { "body": null, "index": 25, "isInternal": false, - "x": 256.08399999999995, - "y": 74.00200000000001 + "x": 256.084, + "y": 74.002 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1318.440404, + "area": 1318.4404, "axes": { "#": 310 }, "bounds": { "#": 322 }, - "circleRadius": 20.626221707818928, + "circleRadius": 20.62622, "collisionFilter": { "#": 325 }, @@ -3237,13 +3237,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1106.6679682910583, - "inverseInertia": 0.0009036133950314137, - "inverseMass": 0.7584719013207669, + "inertia": 1106.66797, + "inverseInertia": 0.0009, + "inverseMass": 0.75847, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.318440404, + "mass": 1.31844, "motion": 0, "parent": null, "position": { @@ -3310,44 +3310,44 @@ } ], { - "x": -0.9594928831235549, - "y": -0.281732865025095 + "x": -0.95949, + "y": -0.28173 }, { - "x": -0.8412614784395286, - "y": -0.5406284536479176 + "x": -0.84126, + "y": -0.54063 }, { - "x": -0.654891631298853, - "y": -0.7557228005391443 + "x": -0.65489, + "y": -0.75572 }, { - "x": -0.4154578190944267, - "y": -0.9096124452497903 + "x": -0.41546, + "y": -0.90961 }, { - "x": -0.1422321170387564, - "y": -0.9898333318709133 + "x": -0.14223, + "y": -0.98983 }, { - "x": 0.1422321170387564, - "y": -0.9898333318709133 + "x": 0.14223, + "y": -0.98983 }, { - "x": 0.4154578190944267, - "y": -0.9096124452497903 + "x": 0.41546, + "y": -0.90961 }, { - "x": 0.654891631298853, - "y": -0.7557228005391443 + "x": 0.65489, + "y": -0.75572 }, { - "x": 0.8412614784395286, - "y": -0.5406284536479176 + "x": 0.84126, + "y": -0.54063 }, { - "x": 0.9594928831235549, - "y": -0.281732865025095 + "x": 0.95949, + "y": -0.28173 }, { "x": 1, @@ -3362,11 +3362,11 @@ } }, { - "x": 306.91599999999994, - "y": 91.25200000000001 + "x": 306.916, + "y": 91.252 }, { - "x": 266.08399999999995, + "x": 266.084, "y": 50 }, { @@ -3384,7 +3384,7 @@ "y": 0 }, { - "x": 286.49999999999994, + "x": 286.5, "y": 70.626 }, { @@ -3392,7 +3392,7 @@ "y": 0 }, { - "x": 286.49999999999994, + "x": 286.5, "y": 70.626 }, { @@ -3484,154 +3484,154 @@ "body": null, "index": 0, "isInternal": false, - "x": 306.91599999999994, + "x": 306.916, "y": 73.561 }, { "body": null, "index": 1, "isInternal": false, - "x": 305.26199999999994, + "x": 305.262, "y": 79.194 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.08799999999997, - "y": 84.13300000000001 + "x": 302.088, + "y": 84.133 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.65099999999995, - "y": 87.97800000000001 + "x": 297.651, + "y": 87.978 }, { "body": null, "index": 4, "isInternal": false, - "x": 292.3109999999999, + "x": 292.311, "y": 90.417 }, { "body": null, "index": 5, "isInternal": false, - "x": 286.49999999999994, - "y": 91.25200000000001 + "x": 286.5, + "y": 91.252 }, { "body": null, "index": 6, "isInternal": false, - "x": 280.68899999999996, + "x": 280.689, "y": 90.417 }, { "body": null, "index": 7, "isInternal": false, - "x": 275.34899999999993, - "y": 87.97800000000001 + "x": 275.349, + "y": 87.978 }, { "body": null, "index": 8, "isInternal": false, - "x": 270.9119999999999, - "y": 84.13300000000001 + "x": 270.912, + "y": 84.133 }, { "body": null, "index": 9, "isInternal": false, - "x": 267.73799999999994, + "x": 267.738, "y": 79.194 }, { "body": null, "index": 10, "isInternal": false, - "x": 266.08399999999995, + "x": 266.084, "y": 73.561 }, { "body": null, "index": 11, "isInternal": false, - "x": 266.08399999999995, + "x": 266.084, "y": 67.691 }, { "body": null, "index": 12, "isInternal": false, - "x": 267.73799999999994, - "y": 62.05800000000001 + "x": 267.738, + "y": 62.058 }, { "body": null, "index": 13, "isInternal": false, - "x": 270.9119999999999, - "y": 57.11900000000001 + "x": 270.912, + "y": 57.119 }, { "body": null, "index": 14, "isInternal": false, - "x": 275.34899999999993, + "x": 275.349, "y": 53.274 }, { "body": null, "index": 15, "isInternal": false, - "x": 280.68899999999996, - "y": 50.83500000000001 + "x": 280.689, + "y": 50.835 }, { "body": null, "index": 16, "isInternal": false, - "x": 286.49999999999994, + "x": 286.5, "y": 50 }, { "body": null, "index": 17, "isInternal": false, - "x": 292.3109999999999, - "y": 50.83500000000001 + "x": 292.311, + "y": 50.835 }, { "body": null, "index": 18, "isInternal": false, - "x": 297.65099999999995, + "x": 297.651, "y": 53.274 }, { "body": null, "index": 19, "isInternal": false, - "x": 302.08799999999997, - "y": 57.11900000000001 + "x": 302.088, + "y": 57.119 }, { "body": null, "index": 20, "isInternal": false, - "x": 305.26199999999994, - "y": 62.05800000000001 + "x": 305.262, + "y": 62.058 }, { "body": null, "index": 21, "isInternal": false, - "x": 306.91599999999994, + "x": 306.916, "y": 67.691 }, { @@ -3639,14 +3639,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2707.561101999999, + "area": 2707.5611, "axes": { "#": 358 }, "bounds": { "#": 372 }, - "circleRadius": 29.500578703703702, + "circleRadius": 29.50058, "collisionFilter": { "#": 375 }, @@ -3661,13 +3661,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 4667.076739501968, - "inverseInertia": 0.00021426688606511143, - "inverseMass": 0.3693360786064359, + "inertia": 4667.07674, + "inverseInertia": 0.00021, + "inverseMass": 0.36934, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.707561101999999, + "mass": 2.70756, "motion": 0, "parent": null, "position": { @@ -3740,52 +3740,52 @@ } ], { - "x": -0.9709721851597422, - "y": -0.23919242388946008 + "x": -0.97097, + "y": -0.23919 }, { - "x": -0.8854514284236448, - "y": -0.4647319312275919 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485562773053245, - "y": -0.6630712629173385 + "x": -0.74856, + "y": -0.66307 }, { - "x": -0.5679662429393902, - "y": -0.8230518494489357 + "x": -0.56797, + "y": -0.82305 }, { - "x": -0.3546033705984873, - "y": -0.9350168177953764 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12064210006520336, - "y": -0.9926960681355887 + "x": -0.12064, + "y": -0.9927 }, { - "x": 0.12064210006520336, - "y": -0.9926960681355887 + "x": 0.12064, + "y": -0.9927 }, { - "x": 0.3546033705984873, - "y": -0.9350168177953764 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5679662429393902, - "y": -0.8230518494489357 + "x": 0.56797, + "y": -0.82305 }, { - "x": 0.7485562773053245, - "y": -0.6630712629173385 + "x": 0.74856, + "y": -0.66307 }, { - "x": 0.8854514284236448, - "y": -0.4647319312275919 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709721851597422, - "y": -0.23919242388946008 + "x": 0.97097, + "y": -0.23919 }, { "x": 1, @@ -3801,10 +3801,10 @@ }, { "x": 375.486, - "y": 109.00200000000001 + "y": 109.002 }, { - "x": 316.91599999999994, + "x": 316.916, "y": 50 }, { @@ -3822,7 +3822,7 @@ "y": 0 }, { - "x": 346.20099999999996, + "x": 346.201, "y": 79.501 }, { @@ -3830,7 +3830,7 @@ "y": 0 }, { - "x": 346.20099999999996, + "x": 346.201, "y": 79.501 }, { @@ -3941,49 +3941,49 @@ "body": null, "index": 1, "isInternal": false, - "x": 373.78499999999997, + "x": 373.785, "y": 89.962 }, { "body": null, "index": 2, "isInternal": false, - "x": 370.47999999999996, + "x": 370.48, "y": 96.259 }, { "body": null, "index": 3, "isInternal": false, - "x": 365.76399999999995, + "x": 365.764, "y": 101.583 }, { "body": null, "index": 4, "isInternal": false, - "x": 359.91099999999994, + "x": 359.911, "y": 105.622 }, { "body": null, "index": 5, "isInternal": false, - "x": 353.26099999999997, + "x": 353.261, "y": 108.144 }, { "body": null, "index": 6, "isInternal": false, - "x": 346.20099999999996, - "y": 109.00200000000001 + "x": 346.201, + "y": 109.002 }, { "body": null, "index": 7, "isInternal": false, - "x": 339.14099999999996, + "x": 339.141, "y": 108.144 }, { @@ -4004,105 +4004,105 @@ "body": null, "index": 10, "isInternal": false, - "x": 321.92199999999997, + "x": 321.922, "y": 96.259 }, { "body": null, "index": 11, "isInternal": false, - "x": 318.61699999999996, + "x": 318.617, "y": 89.962 }, { "body": null, "index": 12, "isInternal": false, - "x": 316.91599999999994, + "x": 316.916, "y": 83.057 }, { "body": null, "index": 13, "isInternal": false, - "x": 316.91599999999994, - "y": 75.94500000000001 + "x": 316.916, + "y": 75.945 }, { "body": null, "index": 14, "isInternal": false, - "x": 318.61699999999996, + "x": 318.617, "y": 69.04 }, { "body": null, "index": 15, "isInternal": false, - "x": 321.92199999999997, - "y": 62.74300000000001 + "x": 321.922, + "y": 62.743 }, { "body": null, "index": 16, "isInternal": false, "x": 326.638, - "y": 57.419000000000004 + "y": 57.419 }, { "body": null, "index": 17, "isInternal": false, "x": 332.491, - "y": 53.38000000000001 + "y": 53.38 }, { "body": null, "index": 18, "isInternal": false, - "x": 339.14099999999996, - "y": 50.858000000000004 + "x": 339.141, + "y": 50.858 }, { "body": null, "index": 19, "isInternal": false, - "x": 346.20099999999996, + "x": 346.201, "y": 50 }, { "body": null, "index": 20, "isInternal": false, - "x": 353.26099999999997, - "y": 50.858000000000004 + "x": 353.261, + "y": 50.858 }, { "body": null, "index": 21, "isInternal": false, - "x": 359.91099999999994, - "y": 53.38000000000001 + "x": 359.911, + "y": 53.38 }, { "body": null, "index": 22, "isInternal": false, - "x": 365.76399999999995, - "y": 57.419000000000004 + "x": 365.764, + "y": 57.419 }, { "body": null, "index": 23, "isInternal": false, - "x": 370.47999999999996, - "y": 62.74300000000001 + "x": 370.48, + "y": 62.743 }, { "body": null, "index": 24, "isInternal": false, - "x": 373.78499999999997, + "x": 373.785, "y": 69.04 }, { @@ -4110,21 +4110,21 @@ "index": 25, "isInternal": false, "x": 375.486, - "y": 75.94500000000001 + "y": 75.945 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 996.1195440000001, + "area": 996.11954, "axes": { "#": 412 }, "bounds": { "#": 422 }, - "circleRadius": 17.989133230452676, + "circleRadius": 17.98913, "collisionFilter": { "#": 425 }, @@ -4139,13 +4139,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 631.7414771039847, - "inverseInertia": 0.0015829259851421786, - "inverseMass": 1.0038955725980614, + "inertia": 631.74148, + "inverseInertia": 0.00158, + "inverseMass": 1.0039, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9961195440000001, + "mass": 0.99612, "motion": 0, "parent": null, "position": { @@ -4206,36 +4206,36 @@ } ], { - "x": -0.9396858944753611, - "y": -0.3420386231466271 + "x": -0.93969, + "y": -0.34204 }, { - "x": -0.7659728462206221, - "y": -0.6428729258980185 + "x": -0.76597, + "y": -0.64287 }, { - "x": -0.5000642326698002, - "y": -0.8659883158590329 + "x": -0.50006, + "y": -0.86599 }, { - "x": -0.17365750488134477, - "y": -0.9848061083271091 + "x": -0.17366, + "y": -0.98481 }, { - "x": 0.17365750488134477, - "y": -0.9848061083271091 + "x": 0.17366, + "y": -0.98481 }, { - "x": 0.5000642326698002, - "y": -0.8659883158590329 + "x": 0.50006, + "y": -0.86599 }, { - "x": 0.7659728462206221, - "y": -0.6428729258980185 + "x": 0.76597, + "y": -0.64287 }, { - "x": 0.9396858944753611, - "y": -0.3420386231466271 + "x": 0.93969, + "y": -0.34204 }, { "x": 1, @@ -4251,7 +4251,7 @@ }, { "x": 420.918, - "y": 85.97800000000001 + "y": 85.978 }, { "x": 385.486, @@ -4368,7 +4368,7 @@ "index": 1, "isInternal": false, "x": 418.781, - "y": 76.98400000000001 + "y": 76.984 }, { "body": null, @@ -4389,7 +4389,7 @@ "index": 4, "isInternal": false, "x": 403.202, - "y": 85.97800000000001 + "y": 85.978 }, { "body": null, @@ -4410,7 +4410,7 @@ "index": 7, "isInternal": false, "x": 387.623, - "y": 76.98400000000001 + "y": 76.984 }, { "body": null, @@ -4424,14 +4424,14 @@ "index": 9, "isInternal": false, "x": 385.486, - "y": 64.86500000000001 + "y": 64.865 }, { "body": null, "index": 10, "isInternal": false, "x": 387.623, - "y": 58.99400000000001 + "y": 58.994 }, { "body": null, @@ -4445,7 +4445,7 @@ "index": 12, "isInternal": false, "x": 397.049, - "y": 51.08500000000001 + "y": 51.085 }, { "body": null, @@ -4459,7 +4459,7 @@ "index": 14, "isInternal": false, "x": 409.355, - "y": 51.08500000000001 + "y": 51.085 }, { "body": null, @@ -4473,28 +4473,28 @@ "index": 16, "isInternal": false, "x": 418.781, - "y": 58.99400000000001 + "y": 58.994 }, { "body": null, "index": 17, "isInternal": false, "x": 420.918, - "y": 64.86500000000001 + "y": 64.865 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1884.285362, + "area": 1884.28536, "axes": { "#": 454 }, "bounds": { "#": 468 }, - "circleRadius": 24.610403806584365, + "circleRadius": 24.6104, "collisionFilter": { "#": 471 }, @@ -4509,13 +4509,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 2260.38157195383, - "inverseInertia": 0.0004424031820148044, - "inverseMass": 0.5307051788263055, + "inertia": 2260.38157, + "inverseInertia": 0.00044, + "inverseMass": 0.53071, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8842853620000002, + "mass": 1.88429, "motion": 0, "parent": null, "position": { @@ -4588,52 +4588,52 @@ } ], { - "x": -0.9709402105671929, - "y": -0.23932218347603118 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854551295056068, - "y": -0.4647248795063689 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7485427632433443, - "y": -0.6630865189370228 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680086319138514, - "y": -0.8230225963309603 + "x": -0.56801, + "y": -0.82302 }, { - "x": -0.35464915280031695, - "y": -0.934999453699315 + "x": -0.35465, + "y": -0.935 }, { - "x": -0.12050753396518203, - "y": -0.9927124126642269 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050753396518203, - "y": -0.9927124126642269 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.35464915280031695, - "y": -0.934999453699315 + "x": 0.35465, + "y": -0.935 }, { - "x": 0.5680086319138514, - "y": -0.8230225963309603 + "x": 0.56801, + "y": -0.82302 }, { - "x": 0.7485427632433443, - "y": -0.6630865189370228 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854551295056068, - "y": -0.4647248795063689 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709402105671929, - "y": -0.23932218347603118 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -4804,7 +4804,7 @@ "index": 3, "isInternal": false, "x": 471.669, - "y": 93.03099999999999 + "y": 93.031 }, { "body": null, @@ -4846,20 +4846,20 @@ "index": 9, "isInternal": false, "x": 439.029, - "y": 93.03099999999999 + "y": 93.031 }, { "body": null, "index": 10, "isInternal": false, - "x": 435.09499999999997, + "x": 435.095, "y": 88.59 }, { "body": null, "index": 11, "isInternal": false, - "x": 432.33799999999997, + "x": 432.338, "y": 83.337 }, { @@ -4880,15 +4880,15 @@ "body": null, "index": 14, "isInternal": false, - "x": 432.33799999999997, + "x": 432.338, "y": 65.883 }, { "body": null, "index": 15, "isInternal": false, - "x": 435.09499999999997, - "y": 60.629999999999995 + "x": 435.095, + "y": 60.63 }, { "body": null, @@ -4944,7 +4944,7 @@ "index": 23, "isInternal": false, "x": 475.603, - "y": 60.629999999999995 + "y": 60.63 }, { "body": null, @@ -4965,14 +4965,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1788.1176700000005, + "area": 1788.11767, "axes": { "#": 508 }, "bounds": { "#": 521 }, - "circleRadius": 23.994020061728396, + "circleRadius": 23.99402, "collisionFilter": { "#": 524 }, @@ -4987,13 +4987,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 2035.5592109008512, - "inverseInertia": 0.0004912654933567091, - "inverseMass": 0.5592473117275328, + "inertia": 2035.55921, + "inverseInertia": 0.00049, + "inverseMass": 0.55925, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7881176700000005, + "mass": 1.78812, "motion": 0, "parent": null, "position": { @@ -5063,48 +5063,48 @@ } ], { - "x": -0.9659295228350919, - "y": -0.25880524901085716 + "x": -0.96593, + "y": -0.25881 }, { - "x": -0.8660340588347611, - "y": -0.4999850087134508 + "x": -0.86603, + "y": -0.49999 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999850087134508, - "y": -0.8660340588347611 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.25880524901085716, - "y": -0.9659295228350919 + "x": -0.25881, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.25880524901085716, - "y": -0.9659295228350919 + "x": 0.25881, + "y": -0.96593 }, { - "x": 0.4999850087134508, - "y": -0.8660340588347611 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660340588347611, - "y": -0.4999850087134508 + "x": 0.86603, + "y": -0.49999 }, { - "x": 0.9659295228350919, - "y": -0.25880524901085716 + "x": 0.96593, + "y": -0.25881 }, { "x": 1, @@ -5248,7 +5248,7 @@ "index": 0, "isInternal": false, "x": 537.358, - "y": 76.92099999999999 + "y": 76.921 }, { "body": null, @@ -5268,7 +5268,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 528.1759999999999, + "x": 528.176, "y": 92.825 }, { @@ -5276,7 +5276,7 @@ "index": 4, "isInternal": false, "x": 522.751, - "y": 95.95700000000001 + "y": 95.957 }, { "body": null, @@ -5289,15 +5289,15 @@ "body": null, "index": 6, "isInternal": false, - "x": 510.43699999999995, + "x": 510.437, "y": 97.578 }, { "body": null, "index": 7, "isInternal": false, - "x": 504.38699999999994, - "y": 95.95700000000001 + "x": 504.387, + "y": 95.957 }, { "body": null, @@ -5310,14 +5310,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 494.53299999999996, + "x": 494.533, "y": 88.396 }, { "body": null, "index": 10, "isInternal": false, - "x": 491.40099999999995, + "x": 491.401, "y": 82.971 }, { @@ -5325,27 +5325,27 @@ "index": 11, "isInternal": false, "x": 489.78, - "y": 76.92099999999999 + "y": 76.921 }, { "body": null, "index": 12, "isInternal": false, "x": 489.78, - "y": 70.65700000000001 + "y": 70.657 }, { "body": null, "index": 13, "isInternal": false, - "x": 491.40099999999995, + "x": 491.401, "y": 64.607 }, { "body": null, "index": 14, "isInternal": false, - "x": 494.53299999999996, + "x": 494.533, "y": 59.182 }, { @@ -5359,14 +5359,14 @@ "body": null, "index": 16, "isInternal": false, - "x": 504.38699999999994, + "x": 504.387, "y": 51.621 }, { "body": null, "index": 17, "isInternal": false, - "x": 510.43699999999995, + "x": 510.437, "y": 50 }, { @@ -5387,7 +5387,7 @@ "body": null, "index": 20, "isInternal": false, - "x": 528.1759999999999, + "x": 528.176, "y": 54.753 }, { @@ -5409,21 +5409,21 @@ "index": 23, "isInternal": false, "x": 537.358, - "y": 70.65700000000001 + "y": 70.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1722.1149680000003, + "area": 1722.11497, "axes": { "#": 559 }, "bounds": { "#": 572 }, - "circleRadius": 23.54738940329218, + "circleRadius": 23.54739, "collisionFilter": { "#": 575 }, @@ -5438,13 +5438,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1888.0601807772807, - "inverseInertia": 0.0005296441343243189, - "inverseMass": 0.5806813241750999, + "inertia": 1888.06018, + "inverseInertia": 0.00053, + "inverseMass": 0.58068, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7221149680000003, + "mass": 1.72211, "motion": 0, "parent": null, "position": { @@ -5514,48 +5514,48 @@ } ], { - "x": -0.9659182750337034, - "y": -0.25884722512693675 + "x": -0.96592, + "y": -0.25885 }, { - "x": -0.8660122204453936, - "y": -0.5000228335178696 + "x": -0.86601, + "y": -0.50002 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000228335178696, - "y": -0.8660122204453936 + "x": -0.50002, + "y": -0.86601 }, { - "x": -0.25884722512693675, - "y": -0.9659182750337034 + "x": -0.25885, + "y": -0.96592 }, { "x": 0, "y": -1 }, { - "x": 0.25884722512693675, - "y": -0.9659182750337034 + "x": 0.25885, + "y": -0.96592 }, { - "x": 0.5000228335178696, - "y": -0.8660122204453936 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660122204453936, - "y": -0.5000228335178696 + "x": 0.86601, + "y": -0.50002 }, { - "x": 0.9659182750337034, - "y": -0.25884722512693675 + "x": 0.96592, + "y": -0.25885 }, { "x": 1, @@ -5571,7 +5571,7 @@ }, { "x": 594.05, - "y": 96.69200000000001 + "y": 96.692 }, { "x": 547.358, @@ -5713,7 +5713,7 @@ "index": 2, "isInternal": false, "x": 589.385, - "y": 87.68100000000001 + "y": 87.681 }, { "body": null, @@ -5726,22 +5726,22 @@ "body": null, "index": 4, "isInternal": false, - "x": 579.7149999999999, + "x": 579.715, "y": 95.101 }, { "body": null, "index": 5, "isInternal": false, - "x": 573.7779999999999, - "y": 96.69200000000001 + "x": 573.778, + "y": 96.692 }, { "body": null, "index": 6, "isInternal": false, "x": 567.63, - "y": 96.69200000000001 + "y": 96.692 }, { "body": null, @@ -5754,15 +5754,15 @@ "body": null, "index": 8, "isInternal": false, - "x": 556.3689999999999, + "x": 556.369, "y": 92.027 }, { "body": null, "index": 9, "isInternal": false, - "x": 552.0229999999999, - "y": 87.68100000000001 + "x": 552.023, + "y": 87.681 }, { "body": null, @@ -5790,28 +5790,28 @@ "index": 13, "isInternal": false, "x": 548.949, - "y": 64.33500000000001 + "y": 64.335 }, { "body": null, "index": 14, "isInternal": false, - "x": 552.0229999999999, + "x": 552.023, "y": 59.011 }, { "body": null, "index": 15, "isInternal": false, - "x": 556.3689999999999, - "y": 54.665000000000006 + "x": 556.369, + "y": 54.665 }, { "body": null, "index": 16, "isInternal": false, "x": 561.693, - "y": 51.59100000000001 + "y": 51.591 }, { "body": null, @@ -5824,22 +5824,22 @@ "body": null, "index": 18, "isInternal": false, - "x": 573.7779999999999, + "x": 573.778, "y": 50 }, { "body": null, "index": 19, "isInternal": false, - "x": 579.7149999999999, - "y": 51.59100000000001 + "x": 579.715, + "y": 51.591 }, { "body": null, "index": 20, "isInternal": false, "x": 585.039, - "y": 54.665000000000006 + "y": 54.665 }, { "body": null, @@ -5853,7 +5853,7 @@ "index": 22, "isInternal": false, "x": 592.459, - "y": 64.33500000000001 + "y": 64.335 }, { "body": null, @@ -5874,7 +5874,7 @@ "bounds": { "#": 622 }, - "circleRadius": 20.122363683127574, + "circleRadius": 20.12236, "collisionFilter": { "#": 625 }, @@ -5889,13 +5889,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1002.4505113431685, - "inverseInertia": 0.0009975554789833116, - "inverseMass": 0.796923613461095, + "inertia": 1002.45051, + "inverseInertia": 0.001, + "inverseMass": 0.79692, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.25482541, + "mass": 1.25483, "motion": 0, "parent": null, "position": { @@ -5962,44 +5962,44 @@ } ], { - "x": -0.9594683116666392, - "y": -0.28181653412738056 + "x": -0.95947, + "y": -0.28182 }, { - "x": -0.8412011657491608, - "y": -0.5407222935502594 + "x": -0.8412, + "y": -0.54072 }, { - "x": -0.6549371857283655, - "y": -0.7556833217361679 + "x": -0.65494, + "y": -0.75568 }, { - "x": -0.4153677317263388, - "y": -0.9096535865045091 + "x": -0.41537, + "y": -0.90965 }, { - "x": -0.1423012985761668, - "y": -0.9898233885009671 + "x": -0.1423, + "y": -0.98982 }, { - "x": 0.1423012985761668, - "y": -0.9898233885009671 + "x": 0.1423, + "y": -0.98982 }, { - "x": 0.4153677317263388, - "y": -0.9096535865045091 + "x": 0.41537, + "y": -0.90965 }, { - "x": 0.6549371857283655, - "y": -0.7556833217361679 + "x": 0.65494, + "y": -0.75568 }, { - "x": 0.8412011657491608, - "y": -0.5407222935502594 + "x": 0.8412, + "y": -0.54072 }, { - "x": 0.9594683116666392, - "y": -0.28181653412738056 + "x": 0.95947, + "y": -0.28182 }, { "x": 1, @@ -6137,13 +6137,13 @@ "index": 0, "isInternal": false, "x": 643.886, - "y": 72.98599999999999 + "y": 72.986 }, { "body": null, "index": 1, "isInternal": false, - "x": 642.2719999999999, + "x": 642.272, "y": 78.481 }, { @@ -6185,7 +6185,7 @@ "body": null, "index": 7, "isInternal": false, - "x": 613.0889999999999, + "x": 613.089, "y": 87.05 }, { @@ -6207,14 +6207,14 @@ "index": 10, "isInternal": false, "x": 604.05, - "y": 72.98599999999999 + "y": 72.986 }, { "body": null, "index": 11, "isInternal": false, "x": 604.05, - "y": 67.25800000000001 + "y": 67.258 }, { "body": null, @@ -6234,7 +6234,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 613.0889999999999, + "x": 613.089, "y": 53.194 }, { @@ -6276,7 +6276,7 @@ "body": null, "index": 20, "isInternal": false, - "x": 642.2719999999999, + "x": 642.272, "y": 61.763 }, { @@ -6284,21 +6284,21 @@ "index": 21, "isInternal": false, "x": 643.886, - "y": 67.25800000000001 + "y": 67.258 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2214.8878419999996, + "area": 2214.88784, "axes": { "#": 658 }, "bounds": { "#": 672 }, - "circleRadius": 26.68190586419753, + "circleRadius": 26.68191, "collisionFilter": { "#": 675 }, @@ -6313,13 +6313,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 3123.1431295098378, - "inverseInertia": 0.00032019025658838285, - "inverseMass": 0.4514901301264176, + "inertia": 3123.14313, + "inverseInertia": 0.00032, + "inverseMass": 0.45149, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.2148878419999996, + "mass": 2.21489, "motion": 0, "parent": null, "position": { @@ -6392,52 +6392,52 @@ } ], { - "x": -0.9709599017732182, - "y": -0.23924228127265143 + "x": -0.97096, + "y": -0.23924 }, { - "x": -0.8854538871996172, - "y": -0.46472724650389047 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7484889714538617, - "y": -0.6631472382600565 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5681180190217404, - "y": -0.8229470921406876 + "x": -0.56812, + "y": -0.82295 }, { - "x": -0.35457925548170977, - "y": -0.9350259630523831 + "x": -0.35458, + "y": -0.93503 }, { - "x": -0.12049387698901172, - "y": -0.9927140704191499 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12049387698901172, - "y": -0.9927140704191499 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35457925548170977, - "y": -0.9350259630523831 + "x": 0.35458, + "y": -0.93503 }, { - "x": 0.5681180190217404, - "y": -0.8229470921406876 + "x": 0.56812, + "y": -0.82295 }, { - "x": 0.7484889714538617, - "y": -0.6631472382600565 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854538871996172, - "y": -0.46472724650389047 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709599017732182, - "y": -0.23924228127265143 + "x": 0.97096, + "y": -0.23924 }, { "x": 1, @@ -6453,7 +6453,7 @@ }, { "x": 152.974, - "y": 172.36599999999999 + "y": 172.366 }, { "x": 100, @@ -6587,7 +6587,7 @@ "index": 0, "isInternal": false, "x": 152.974, - "y": 148.89999999999998 + "y": 148.9 }, { "body": null, @@ -6629,20 +6629,20 @@ "index": 6, "isInternal": false, "x": 126.487, - "y": 172.36599999999999 + "y": 172.366 }, { "body": null, "index": 7, "isInternal": false, - "x": 120.10199999999999, + "x": 120.102, "y": 171.591 }, { "body": null, "index": 8, "isInternal": false, - "x": 114.08699999999999, + "x": 114.087, "y": 169.31 }, { @@ -6656,14 +6656,14 @@ "body": null, "index": 10, "isInternal": false, - "x": 104.52799999999999, + "x": 104.528, "y": 160.841 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.53899999999999, + "x": 101.539, "y": 155.146 }, { @@ -6671,27 +6671,27 @@ "index": 12, "isInternal": false, "x": 100, - "y": 148.89999999999998 + "y": 148.9 }, { "body": null, "index": 13, "isInternal": false, "x": 100, - "y": 142.46800000000002 + "y": 142.468 }, { "body": null, "index": 14, "isInternal": false, - "x": 101.53899999999999, - "y": 136.22199999999998 + "x": 101.539, + "y": 136.222 }, { "body": null, "index": 15, "isInternal": false, - "x": 104.52799999999999, + "x": 104.528, "y": 130.527 }, { @@ -6699,20 +6699,20 @@ "index": 16, "isInternal": false, "x": 108.794, - "y": 125.71199999999999 + "y": 125.712 }, { "body": null, "index": 17, "isInternal": false, - "x": 114.08699999999999, - "y": 122.05799999999999 + "x": 114.087, + "y": 122.058 }, { "body": null, "index": 18, "isInternal": false, - "x": 120.10199999999999, + "x": 120.102, "y": 119.777 }, { @@ -6734,14 +6734,14 @@ "index": 21, "isInternal": false, "x": 138.887, - "y": 122.05799999999999 + "y": 122.058 }, { "body": null, "index": 22, "isInternal": false, "x": 144.18, - "y": 125.71199999999999 + "y": 125.712 }, { "body": null, @@ -6755,28 +6755,28 @@ "index": 24, "isInternal": false, "x": 151.435, - "y": 136.22199999999998 + "y": 136.222 }, { "body": null, "index": 25, "isInternal": false, "x": 152.974, - "y": 142.46800000000002 + "y": 142.468 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1111.681768, + "area": 1111.68177, "axes": { "#": 712 }, "bounds": { "#": 723 }, - "circleRadius": 18.9667566872428, + "circleRadius": 18.96676, "collisionFilter": { "#": 726 }, @@ -6791,13 +6791,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 786.8009408760354, - "inverseInertia": 0.001270969502002102, - "inverseMass": 0.8995380051964655, + "inertia": 786.80094, + "inverseInertia": 0.00127, + "inverseMass": 0.89954, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.111681768, + "mass": 1.11168, "motion": 0, "parent": null, "position": { @@ -6861,40 +6861,40 @@ } ], { - "x": -0.9510984438586632, - "y": -0.30888792480385036 + "x": -0.9511, + "y": -0.30889 }, { - "x": -0.8090274656982102, - "y": -0.5877708394824734 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877708394824734, - "y": -0.8090274656982102 + "x": -0.58777, + "y": -0.80903 }, { - "x": -0.30888792480385036, - "y": -0.9510984438586632 + "x": -0.30889, + "y": -0.9511 }, { "x": 0, "y": -1 }, { - "x": 0.30888792480385036, - "y": -0.9510984438586632 + "x": 0.30889, + "y": -0.9511 }, { - "x": 0.5877708394824734, - "y": -0.8090274656982102 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090274656982102, - "y": -0.5877708394824734 + "x": 0.80903, + "y": -0.58777 }, { - "x": 0.9510984438586632, - "y": -0.30888792480385036 + "x": 0.9511, + "y": -0.30889 }, { "x": 1, @@ -6910,11 +6910,11 @@ }, { "x": 200.44, - "y": 156.46800000000002 + "y": 156.468 }, { "x": 162.974, - "y": 119.00200000000001 + "y": 119.002 }, { "category": 1, @@ -7040,42 +7040,42 @@ "index": 2, "isInternal": false, "x": 195.119, - "y": 151.14700000000002 + "y": 151.147 }, { "body": null, "index": 3, "isInternal": false, - "x": 190.31799999999998, - "y": 154.63500000000002 + "x": 190.318, + "y": 154.635 }, { "body": null, "index": 4, "isInternal": false, "x": 184.674, - "y": 156.46800000000002 + "y": 156.468 }, { "body": null, "index": 5, "isInternal": false, - "x": 178.73999999999998, - "y": 156.46800000000002 + "x": 178.74, + "y": 156.468 }, { "body": null, "index": 6, "isInternal": false, "x": 173.096, - "y": 154.63500000000002 + "y": 154.635 }, { "body": null, "index": 7, "isInternal": false, "x": 168.295, - "y": 151.14700000000002 + "y": 151.147 }, { "body": null, @@ -7096,84 +7096,84 @@ "index": 10, "isInternal": false, "x": 162.974, - "y": 134.76800000000003 + "y": 134.768 }, { "body": null, "index": 11, "isInternal": false, "x": 164.807, - "y": 129.12400000000002 + "y": 129.124 }, { "body": null, "index": 12, "isInternal": false, "x": 168.295, - "y": 124.32300000000001 + "y": 124.323 }, { "body": null, "index": 13, "isInternal": false, "x": 173.096, - "y": 120.83500000000001 + "y": 120.835 }, { "body": null, "index": 14, "isInternal": false, - "x": 178.73999999999998, - "y": 119.00200000000001 + "x": 178.74, + "y": 119.002 }, { "body": null, "index": 15, "isInternal": false, "x": 184.674, - "y": 119.00200000000001 + "y": 119.002 }, { "body": null, "index": 16, "isInternal": false, - "x": 190.31799999999998, - "y": 120.83500000000001 + "x": 190.318, + "y": 120.835 }, { "body": null, "index": 17, "isInternal": false, "x": 195.119, - "y": 124.32300000000001 + "y": 124.323 }, { "body": null, "index": 18, "isInternal": false, "x": 198.607, - "y": 129.12400000000002 + "y": 129.124 }, { "body": null, "index": 19, "isInternal": false, "x": 200.44, - "y": 134.76800000000003 + "y": 134.768 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2295.319759999999, + "area": 2295.31976, "axes": { "#": 757 }, "bounds": { "#": 771 }, - "circleRadius": 27.16210133744856, + "circleRadius": 27.1621, "collisionFilter": { "#": 774 }, @@ -7188,13 +7188,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 3354.090682779493, - "inverseInertia": 0.00029814339997847423, - "inverseMass": 0.4356691461585293, + "inertia": 3354.09068, + "inverseInertia": 0.0003, + "inverseMass": 0.43567, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.295319759999999, + "mass": 2.29532, "motion": 0, "parent": null, "position": { @@ -7267,52 +7267,52 @@ } ], { - "x": -0.9709455876458091, - "y": -0.23930036738612506 + "x": -0.97095, + "y": -0.2393 }, { - "x": -0.8854576058599221, - "y": -0.4647201611989897 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7485037074240805, - "y": -0.6631306055162939 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680897644063303, - "y": -0.8229665968778805 + "x": -0.56809, + "y": -0.82297 }, { - "x": -0.3545851817432643, - "y": -0.9350237156821726 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12050012358834578, - "y": -0.9927133121980349 + "x": -0.1205, + "y": -0.99271 }, { - "x": 0.12050012358834578, - "y": -0.9927133121980349 + "x": 0.1205, + "y": -0.99271 }, { - "x": 0.3545851817432643, - "y": -0.9350237156821726 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680897644063303, - "y": -0.8229665968778805 + "x": 0.56809, + "y": -0.82297 }, { - "x": 0.7485037074240805, - "y": -0.6631306055162939 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854576058599221, - "y": -0.4647201611989897 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709455876458091, - "y": -0.23930036738612506 + "x": 0.97095, + "y": -0.2393 }, { "x": 1, @@ -7328,11 +7328,11 @@ }, { "x": 264.368, - "y": 173.32600000000002 + "y": 173.326 }, { "x": 210.44, - "y": 119.00200000000001 + "y": 119.002 }, { "category": 1, @@ -7350,7 +7350,7 @@ }, { "x": 237.404, - "y": 146.16400000000002 + "y": 146.164 }, { "x": 0, @@ -7358,7 +7358,7 @@ }, { "x": 237.404, - "y": 146.16400000000002 + "y": 146.164 }, { "fillStyle": "#C7F464", @@ -7462,21 +7462,21 @@ "index": 0, "isInternal": false, "x": 264.368, - "y": 149.43800000000002 + "y": 149.438 }, { "body": null, "index": 1, "isInternal": false, "x": 262.801, - "y": 155.79600000000002 + "y": 155.796 }, { "body": null, "index": 2, "isInternal": false, "x": 259.758, - "y": 161.59400000000002 + "y": 161.594 }, { "body": null, @@ -7504,7 +7504,7 @@ "index": 6, "isInternal": false, "x": 237.404, - "y": 173.32600000000002 + "y": 173.326 }, { "body": null, @@ -7532,28 +7532,28 @@ "index": 10, "isInternal": false, "x": 215.05, - "y": 161.59400000000002 + "y": 161.594 }, { "body": null, "index": 11, "isInternal": false, "x": 212.007, - "y": 155.79600000000002 + "y": 155.796 }, { "body": null, "index": 12, "isInternal": false, "x": 210.44, - "y": 149.43800000000002 + "y": 149.438 }, { "body": null, "index": 13, "isInternal": false, "x": 210.44, - "y": 142.89000000000001 + "y": 142.89 }, { "body": null, @@ -7574,49 +7574,49 @@ "index": 16, "isInternal": false, "x": 219.392, - "y": 125.83300000000001 + "y": 125.833 }, { "body": null, "index": 17, "isInternal": false, "x": 224.781, - "y": 122.11300000000001 + "y": 122.113 }, { "body": null, "index": 18, "isInternal": false, "x": 230.904, - "y": 119.79100000000001 + "y": 119.791 }, { "body": null, "index": 19, "isInternal": false, "x": 237.404, - "y": 119.00200000000001 + "y": 119.002 }, { "body": null, "index": 20, "isInternal": false, "x": 243.904, - "y": 119.79100000000001 + "y": 119.791 }, { "body": null, "index": 21, "isInternal": false, "x": 250.027, - "y": 122.11300000000001 + "y": 122.113 }, { "body": null, "index": 22, "isInternal": false, "x": 255.416, - "y": 125.83300000000001 + "y": 125.833 }, { "body": null, @@ -7637,21 +7637,21 @@ "index": 25, "isInternal": false, "x": 264.368, - "y": 142.89000000000001 + "y": 142.89 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2363.7519140000004, + "area": 2363.75191, "axes": { "#": 811 }, "bounds": { "#": 825 }, - "circleRadius": 27.56423611111111, + "circleRadius": 27.56424, "collisionFilter": { "#": 828 }, @@ -7666,13 +7666,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 3557.0682353306725, - "inverseInertia": 0.0002811303955508849, - "inverseMass": 0.4230562412566279, + "inertia": 3557.06824, + "inverseInertia": 0.00028, + "inverseMass": 0.42306, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.3637519140000003, + "mass": 2.36375, "motion": 0, "parent": null, "position": { @@ -7745,52 +7745,52 @@ } ], { - "x": -0.9709428209429523, - "y": -0.23931159282270878 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854660217302829, - "y": -0.46470412561235797 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7484793383049184, - "y": -0.6631581109589413 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681373331772201, - "y": -0.8229337583610702 + "x": -0.56814, + "y": -0.82293 }, { - "x": -0.35456803389279123, - "y": -0.9350302184108279 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12053359231150376, - "y": -0.9927092490374432 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12053359231150376, - "y": -0.9927092490374432 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35456803389279123, - "y": -0.9350302184108279 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5681373331772201, - "y": -0.8229337583610702 + "x": 0.56814, + "y": -0.82293 }, { - "x": 0.7484793383049184, - "y": -0.6631581109589413 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8854660217302829, - "y": -0.46470412561235797 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.9709428209429523, - "y": -0.23931159282270878 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -7810,7 +7810,7 @@ }, { "x": 274.368, - "y": 119.00200000000001 + "y": 119.002 }, { "category": 1, @@ -8016,7 +8016,7 @@ "body": null, "index": 11, "isInternal": false, - "x": 275.95799999999997, + "x": 275.958, "y": 156.34 }, { @@ -8037,7 +8037,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 275.95799999999997, + "x": 275.958, "y": 136.792 }, { @@ -8045,7 +8045,7 @@ "index": 15, "isInternal": false, "x": 279.046, - "y": 130.90800000000002 + "y": 130.908 }, { "body": null, @@ -8073,7 +8073,7 @@ "index": 19, "isInternal": false, "x": 301.731, - "y": 119.00200000000001 + "y": 119.002 }, { "body": null, @@ -8101,7 +8101,7 @@ "index": 23, "isInternal": false, "x": 324.416, - "y": 130.90800000000002 + "y": 130.908 }, { "body": null, @@ -8122,14 +8122,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1829.106108, + "area": 1829.10611, "axes": { "#": 865 }, "bounds": { "#": 879 }, - "circleRadius": 24.247235082304528, + "circleRadius": 24.24724, "collisionFilter": { "#": 882 }, @@ -8144,13 +8144,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 2129.934309931321, - "inverseInertia": 0.0004694980475863806, - "inverseMass": 0.546715138955733, + "inertia": 2129.93431, + "inverseInertia": 0.00047, + "inverseMass": 0.54672, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.829106108, + "mass": 1.82911, "motion": 0, "parent": null, "position": { @@ -8223,52 +8223,52 @@ } ], { - "x": -0.9709720988374455, - "y": -0.2391927743039204 + "x": -0.97097, + "y": -0.23919 }, { - "x": -0.8854260626172822, - "y": -0.46478025736691625 + "x": -0.88543, + "y": -0.46478 }, { - "x": -0.7485032569212987, - "y": -0.6631311140175887 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.568088667994131, - "y": -0.8229673537247112 + "x": -0.56809, + "y": -0.82297 }, { - "x": -0.3546645491504353, - "y": -0.9349936136551515 + "x": -0.35466, + "y": -0.93499 }, { - "x": -0.12043354466296623, - "y": -0.9927213915897619 + "x": -0.12043, + "y": -0.99272 }, { - "x": 0.12043354466296623, - "y": -0.9927213915897619 + "x": 0.12043, + "y": -0.99272 }, { - "x": 0.3546645491504353, - "y": -0.9349936136551515 + "x": 0.35466, + "y": -0.93499 }, { - "x": 0.568088667994131, - "y": -0.8229673537247112 + "x": 0.56809, + "y": -0.82297 }, { - "x": 0.7485032569212987, - "y": -0.6631311140175887 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854260626172822, - "y": -0.46478025736691625 + "x": 0.88543, + "y": -0.46478 }, { - "x": 0.9709720988374455, - "y": -0.2391927743039204 + "x": 0.97097, + "y": -0.23919 }, { "x": 1, @@ -8284,11 +8284,11 @@ }, { "x": 387.234, - "y": 167.49600000000004 + "y": 167.496 }, { "x": 339.094, - "y": 119.00200000000002 + "y": 119.002 }, { "category": 1, @@ -8306,7 +8306,7 @@ }, { "x": 363.164, - "y": 143.24900000000002 + "y": 143.249 }, { "x": 0, @@ -8314,7 +8314,7 @@ }, { "x": 363.164, - "y": 143.24900000000002 + "y": 143.249 }, { "fillStyle": "#556270", @@ -8418,104 +8418,104 @@ "index": 0, "isInternal": false, "x": 387.234, - "y": 146.17200000000003 + "y": 146.172 }, { "body": null, "index": 1, "isInternal": false, "x": 385.836, - "y": 151.84700000000004 + "y": 151.847 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.11899999999997, - "y": 157.02300000000002 + "x": 383.119, + "y": 157.023 }, { "body": null, "index": 3, "isInternal": false, "x": 379.243, - "y": 161.39800000000002 + "y": 161.398 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.43199999999996, - "y": 164.71900000000002 + "x": 374.432, + "y": 164.719 }, { "body": null, "index": 5, "isInternal": false, "x": 368.967, - "y": 166.79200000000003 + "y": 166.792 }, { "body": null, "index": 6, "isInternal": false, "x": 363.164, - "y": 167.49600000000004 + "y": 167.496 }, { "body": null, "index": 7, "isInternal": false, "x": 357.361, - "y": 166.79200000000003 + "y": 166.792 }, { "body": null, "index": 8, "isInternal": false, "x": 351.896, - "y": 164.71900000000002 + "y": 164.719 }, { "body": null, "index": 9, "isInternal": false, "x": 347.085, - "y": 161.39800000000002 + "y": 161.398 }, { "body": null, "index": 10, "isInternal": false, "x": 343.209, - "y": 157.02300000000002 + "y": 157.023 }, { "body": null, "index": 11, "isInternal": false, - "x": 340.49199999999996, - "y": 151.84700000000004 + "x": 340.492, + "y": 151.847 }, { "body": null, "index": 12, "isInternal": false, "x": 339.094, - "y": 146.17200000000003 + "y": 146.172 }, { "body": null, "index": 13, "isInternal": false, "x": 339.094, - "y": 140.32600000000002 + "y": 140.326 }, { "body": null, "index": 14, "isInternal": false, - "x": 340.49199999999996, + "x": 340.492, "y": 134.651 }, { @@ -8523,63 +8523,63 @@ "index": 15, "isInternal": false, "x": 343.209, - "y": 129.47500000000002 + "y": 129.475 }, { "body": null, "index": 16, "isInternal": false, "x": 347.085, - "y": 125.10000000000002 + "y": 125.1 }, { "body": null, "index": 17, "isInternal": false, "x": 351.896, - "y": 121.77900000000002 + "y": 121.779 }, { "body": null, "index": 18, "isInternal": false, "x": 357.361, - "y": 119.70600000000002 + "y": 119.706 }, { "body": null, "index": 19, "isInternal": false, "x": 363.164, - "y": 119.00200000000002 + "y": 119.002 }, { "body": null, "index": 20, "isInternal": false, "x": 368.967, - "y": 119.70600000000002 + "y": 119.706 }, { "body": null, "index": 21, "isInternal": false, - "x": 374.43199999999996, - "y": 121.77900000000002 + "x": 374.432, + "y": 121.779 }, { "body": null, "index": 22, "isInternal": false, "x": 379.243, - "y": 125.10000000000002 + "y": 125.1 }, { "body": null, "index": 23, "isInternal": false, - "x": 383.11899999999997, - "y": 129.47500000000002 + "x": 383.119, + "y": 129.475 }, { "body": null, @@ -8593,21 +8593,21 @@ "index": 25, "isInternal": false, "x": 387.234, - "y": 140.32600000000002 + "y": 140.326 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1331.712504, + "area": 1331.7125, "axes": { "#": 919 }, "bounds": { "#": 931 }, - "circleRadius": 20.729616769547324, + "circleRadius": 20.72962, "collisionFilter": { "#": 934 }, @@ -8622,13 +8622,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1129.0606916324366, - "inverseInertia": 0.0008856919804321272, - "inverseMass": 0.7509128261515519, + "inertia": 1129.06069, + "inverseInertia": 0.00089, + "inverseMass": 0.75091, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3317125040000002, + "mass": 1.33171, "motion": 0, "parent": null, "position": { @@ -8695,44 +8695,44 @@ } ], { - "x": -0.9594572104893309, - "y": -0.28185432627517293 + "x": -0.95946, + "y": -0.28185 }, { - "x": -0.8412665659715145, - "y": -0.5406205369559092 + "x": -0.84127, + "y": -0.54062 }, { - "x": -0.6548853702477502, - "y": -0.755728226173581 + "x": -0.65489, + "y": -0.75573 }, { - "x": -0.41541125830941705, - "y": -0.9096337100557491 + "x": -0.41541, + "y": -0.90963 }, { - "x": -0.14237042741969902, - "y": -0.9898134477750504 + "x": -0.14237, + "y": -0.98981 }, { - "x": 0.14237042741969902, - "y": -0.9898134477750504 + "x": 0.14237, + "y": -0.98981 }, { - "x": 0.41541125830941705, - "y": -0.9096337100557491 + "x": 0.41541, + "y": -0.90963 }, { - "x": 0.6548853702477502, - "y": -0.755728226173581 + "x": 0.65489, + "y": -0.75573 }, { - "x": 0.8412665659715145, - "y": -0.5406205369559092 + "x": 0.84127, + "y": -0.54062 }, { - "x": 0.9594572104893309, - "y": -0.28185432627517293 + "x": 0.95946, + "y": -0.28185 }, { "x": 1, @@ -8870,14 +8870,14 @@ "index": 0, "isInternal": false, "x": 438.272, - "y": 142.68200000000002 + "y": 142.682 }, { "body": null, "index": 1, "isInternal": false, "x": 436.609, - "y": 148.34300000000002 + "y": 148.343 }, { "body": null, @@ -8897,8 +8897,8 @@ "body": null, "index": 4, "isInternal": false, - "x": 423.59299999999996, - "y": 159.62199999999999 + "x": 423.593, + "y": 159.622 }, { "body": null, @@ -8912,7 +8912,7 @@ "index": 6, "isInternal": false, "x": 411.913, - "y": 159.62199999999999 + "y": 159.622 }, { "body": null, @@ -8933,28 +8933,28 @@ "index": 9, "isInternal": false, "x": 398.897, - "y": 148.34300000000002 + "y": 148.343 }, { "body": null, "index": 10, "isInternal": false, "x": 397.234, - "y": 142.68200000000002 + "y": 142.682 }, { "body": null, "index": 11, "isInternal": false, "x": 397.234, - "y": 136.78199999999998 + "y": 136.782 }, { "body": null, "index": 12, "isInternal": false, "x": 398.897, - "y": 131.12099999999998 + "y": 131.121 }, { "body": null, @@ -8988,7 +8988,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 423.59299999999996, + "x": 423.593, "y": 119.842 }, { @@ -9010,28 +9010,28 @@ "index": 20, "isInternal": false, "x": 436.609, - "y": 131.12099999999998 + "y": 131.121 }, { "body": null, "index": 21, "isInternal": false, "x": 438.272, - "y": 136.78199999999998 + "y": 136.782 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 852.4351440000002, + "area": 852.43514, "axes": { "#": 967 }, "bounds": { "#": 977 }, - "circleRadius": 16.641010802469136, + "circleRadius": 16.64101, "collisionFilter": { "#": 980 }, @@ -9046,13 +9046,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 462.6357210539542, - "inverseInertia": 0.0021615278598069525, - "inverseMass": 1.173109775023541, + "inertia": 462.63572, + "inverseInertia": 0.00216, + "inverseMass": 1.17311, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8524351440000002, + "mass": 0.85244, "motion": 0, "parent": null, "position": { @@ -9113,36 +9113,36 @@ } ], { - "x": -0.9397327846091404, - "y": -0.3419097739620075 + "x": -0.93973, + "y": -0.34191 }, { - "x": -0.7660183763241144, - "y": -0.6428186736038145 + "x": -0.76602, + "y": -0.64282 }, { - "x": -0.4999171846810808, - "y": -0.86607321195182 + "x": -0.49992, + "y": -0.86607 }, { - "x": -0.1737063737965816, - "y": -0.9847974896913791 + "x": -0.17371, + "y": -0.9848 }, { - "x": 0.1737063737965816, - "y": -0.9847974896913791 + "x": 0.17371, + "y": -0.9848 }, { - "x": 0.4999171846810808, - "y": -0.86607321195182 + "x": 0.49992, + "y": -0.86607 }, { - "x": 0.7660183763241144, - "y": -0.6428186736038145 + "x": 0.76602, + "y": -0.64282 }, { - "x": 0.9397327846091404, - "y": -0.3419097739620075 + "x": 0.93973, + "y": -0.34191 }, { "x": 1, @@ -9157,12 +9157,12 @@ } }, { - "x": 481.04799999999994, + "x": 481.048, "y": 152.284 }, { "x": 448.272, - "y": 119.00200000000001 + "y": 119.002 }, { "category": 1, @@ -9179,7 +9179,7 @@ "y": 0 }, { - "x": 464.65999999999997, + "x": 464.66, "y": 135.643 }, { @@ -9187,7 +9187,7 @@ "y": 0 }, { - "x": 464.65999999999997, + "x": 464.66, "y": 135.643 }, { @@ -9267,21 +9267,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 481.04799999999994, - "y": 138.53300000000002 + "x": 481.048, + "y": 138.533 }, { "body": null, "index": 1, "isInternal": false, - "x": 479.07199999999995, + "x": 479.072, "y": 143.964 }, { "body": null, "index": 2, "isInternal": false, - "x": 475.35699999999997, + "x": 475.357, "y": 148.391 }, { @@ -9295,21 +9295,21 @@ "body": null, "index": 4, "isInternal": false, - "x": 464.65999999999997, + "x": 464.66, "y": 152.284 }, { "body": null, "index": 5, "isInternal": false, - "x": 458.96799999999996, + "x": 458.968, "y": 151.28 }, { "body": null, "index": 6, "isInternal": false, - "x": 453.96299999999997, + "x": 453.963, "y": 148.391 }, { @@ -9324,7 +9324,7 @@ "index": 8, "isInternal": false, "x": 448.272, - "y": 138.53300000000002 + "y": 138.533 }, { "body": null, @@ -9344,22 +9344,22 @@ "body": null, "index": 11, "isInternal": false, - "x": 453.96299999999997, + "x": 453.963, "y": 122.895 }, { "body": null, "index": 12, "isInternal": false, - "x": 458.96799999999996, + "x": 458.968, "y": 120.006 }, { "body": null, "index": 13, "isInternal": false, - "x": 464.65999999999997, - "y": 119.00200000000001 + "x": 464.66, + "y": 119.002 }, { "body": null, @@ -9372,21 +9372,21 @@ "body": null, "index": 15, "isInternal": false, - "x": 475.35699999999997, + "x": 475.357, "y": 122.895 }, { "body": null, "index": 16, "isInternal": false, - "x": 479.07199999999995, + "x": 479.072, "y": 127.322 }, { "body": null, "index": 17, "isInternal": false, - "x": 481.04799999999994, + "x": 481.048, "y": 132.753 }, { @@ -9394,14 +9394,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2687.108398, + "area": 2687.1084, "axes": { "#": 1009 }, "bounds": { "#": 1023 }, - "circleRadius": 29.388824588477366, + "circleRadius": 29.38882, "collisionFilter": { "#": 1026 }, @@ -9416,13 +9416,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 4596.833586630778, - "inverseInertia": 0.00021754104888816394, - "inverseMass": 0.3721472497143377, + "inertia": 4596.83359, + "inverseInertia": 0.00022, + "inverseMass": 0.37215, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.687108398, + "mass": 2.68711, "motion": 0, "parent": null, "position": { @@ -9495,52 +9495,52 @@ } ], { - "x": -0.9709261131040956, - "y": -0.23937937023179934 + "x": -0.97093, + "y": -0.23938 }, { - "x": -0.8855053411184941, - "y": -0.4646291971568505 + "x": -0.88551, + "y": -0.46463 }, { - "x": -0.7484440565964828, - "y": -0.6631979298410096 + "x": -0.74844, + "y": -0.6632 }, { - "x": -0.5681452001163276, - "y": -0.8229283271250164 + "x": -0.56815, + "y": -0.82293 }, { - "x": -0.3545393548617785, - "y": -0.9350410931366568 + "x": -0.35454, + "y": -0.93504 }, { - "x": -0.12054213183122658, - "y": -0.9927082121417065 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12054213183122658, - "y": -0.9927082121417065 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.3545393548617785, - "y": -0.9350410931366568 + "x": 0.35454, + "y": -0.93504 }, { - "x": 0.5681452001163276, - "y": -0.8229283271250164 + "x": 0.56815, + "y": -0.82293 }, { - "x": 0.7484440565964828, - "y": -0.6631979298410096 + "x": 0.74844, + "y": -0.6632 }, { - "x": 0.8855053411184941, - "y": -0.4646291971568505 + "x": 0.88551, + "y": -0.46463 }, { - "x": 0.9709261131040956, - "y": -0.23937937023179934 + "x": 0.97093, + "y": -0.23938 }, { "x": 1, @@ -9555,12 +9555,12 @@ } }, { - "x": 549.3979999999999, - "y": 177.78000000000003 + "x": 549.398, + "y": 177.78 }, { - "x": 491.04799999999994, - "y": 119.00200000000002 + "x": 491.048, + "y": 119.002 }, { "category": 1, @@ -9578,7 +9578,7 @@ }, { "x": 520.223, - "y": 148.39100000000002 + "y": 148.391 }, { "x": 0, @@ -9586,7 +9586,7 @@ }, { "x": 520.223, - "y": 148.39100000000002 + "y": 148.391 }, { "fillStyle": "#4ECDC4", @@ -9689,8 +9689,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 549.3979999999999, - "y": 151.93300000000002 + "x": 549.398, + "y": 151.933 }, { "body": null, @@ -9703,7 +9703,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 544.4099999999999, + "x": 544.41, "y": 165.086 }, { @@ -9718,168 +9718,168 @@ "index": 4, "isInternal": false, "x": 533.881, - "y": 174.41400000000002 + "y": 174.414 }, { "body": null, "index": 5, "isInternal": false, "x": 527.256, - "y": 176.92600000000002 + "y": 176.926 }, { "body": null, "index": 6, "isInternal": false, "x": 520.223, - "y": 177.78000000000003 + "y": 177.78 }, { "body": null, "index": 7, "isInternal": false, - "x": 513.1899999999999, - "y": 176.92600000000002 + "x": 513.19, + "y": 176.926 }, { "body": null, "index": 8, "isInternal": false, - "x": 506.56499999999994, - "y": 174.41400000000002 + "x": 506.565, + "y": 174.414 }, { "body": null, "index": 9, "isInternal": false, - "x": 500.73499999999996, + "x": 500.735, "y": 170.389 }, { "body": null, "index": 10, "isInternal": false, - "x": 496.03599999999994, + "x": 496.036, "y": 165.086 }, { "body": null, "index": 11, "isInternal": false, - "x": 492.74399999999997, + "x": 492.744, "y": 158.812 }, { "body": null, "index": 12, "isInternal": false, - "x": 491.04799999999994, - "y": 151.93300000000002 + "x": 491.048, + "y": 151.933 }, { "body": null, "index": 13, "isInternal": false, - "x": 491.04799999999994, - "y": 144.84900000000002 + "x": 491.048, + "y": 144.849 }, { "body": null, "index": 14, "isInternal": false, - "x": 492.74399999999997, - "y": 137.97000000000003 + "x": 492.744, + "y": 137.97 }, { "body": null, "index": 15, "isInternal": false, - "x": 496.03599999999994, - "y": 131.69600000000003 + "x": 496.036, + "y": 131.696 }, { "body": null, "index": 16, "isInternal": false, - "x": 500.73499999999996, - "y": 126.39300000000001 + "x": 500.735, + "y": 126.393 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.56499999999994, - "y": 122.36800000000002 + "x": 506.565, + "y": 122.368 }, { "body": null, "index": 18, "isInternal": false, - "x": 513.1899999999999, - "y": 119.85600000000002 + "x": 513.19, + "y": 119.856 }, { "body": null, "index": 19, "isInternal": false, "x": 520.223, - "y": 119.00200000000002 + "y": 119.002 }, { "body": null, "index": 20, "isInternal": false, "x": 527.256, - "y": 119.85600000000002 + "y": 119.856 }, { "body": null, "index": 21, "isInternal": false, "x": 533.881, - "y": 122.36800000000002 + "y": 122.368 }, { "body": null, "index": 22, "isInternal": false, "x": 539.711, - "y": 126.39300000000001 + "y": 126.393 }, { "body": null, "index": 23, "isInternal": false, - "x": 544.4099999999999, - "y": 131.69600000000003 + "x": 544.41, + "y": 131.696 }, { "body": null, "index": 24, "isInternal": false, "x": 547.702, - "y": 137.97000000000003 + "y": 137.97 }, { "body": null, "index": 25, "isInternal": false, - "x": 549.3979999999999, - "y": 144.84900000000002 + "x": 549.398, + "y": 144.849 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1343.973232, + "area": 1343.97323, "axes": { "#": 1063 }, "bounds": { "#": 1075 }, - "circleRadius": 20.824909979423868, + "circleRadius": 20.82491, "collisionFilter": { "#": 1078 }, @@ -9894,13 +9894,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1149.9463267575188, - "inverseInertia": 0.0008696058039679821, - "inverseMass": 0.7440624382911816, + "inertia": 1149.94633, + "inverseInertia": 0.00087, + "inverseMass": 0.74406, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3439732320000002, + "mass": 1.34397, "motion": 0, "parent": null, "position": { @@ -9967,44 +9967,44 @@ } ], { - "x": -0.9594863085383493, - "y": -0.28175525501301946 + "x": -0.95949, + "y": -0.28176 }, { - "x": -0.841200401216122, - "y": -0.5407234829317434 + "x": -0.8412, + "y": -0.54072 }, { - "x": -0.6549498076310009, - "y": -0.7556723823748722 + "x": -0.65495, + "y": -0.75567 }, { - "x": -0.41535304835231424, - "y": -0.9096602911111599 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.1423896733188219, - "y": -0.9898106793383061 + "x": -0.14239, + "y": -0.98981 }, { - "x": 0.1423896733188219, - "y": -0.9898106793383061 + "x": 0.14239, + "y": -0.98981 }, { - "x": 0.41535304835231424, - "y": -0.9096602911111599 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6549498076310009, - "y": -0.7556723823748722 + "x": 0.65495, + "y": -0.75567 }, { - "x": 0.841200401216122, - "y": -0.5407234829317434 + "x": 0.8412, + "y": -0.54072 }, { - "x": 0.9594863085383493, - "y": -0.28175525501301946 + "x": 0.95949, + "y": -0.28176 }, { "x": 1, @@ -10023,7 +10023,7 @@ "y": 160.652 }, { - "x": 559.3979999999999, + "x": 559.398, "y": 119.002 }, { @@ -10169,7 +10169,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 585.8779999999999, + "x": 585.878, "y": 159.808 }, { @@ -10197,7 +10197,7 @@ "body": null, "index": 8, "isInternal": false, - "x": 564.2729999999999, + "x": 564.273, "y": 153.464 }, { @@ -10211,14 +10211,14 @@ "body": null, "index": 10, "isInternal": false, - "x": 559.3979999999999, + "x": 559.398, "y": 142.791 }, { "body": null, "index": 11, "isInternal": false, - "x": 559.3979999999999, + "x": 559.398, "y": 136.863 }, { @@ -10232,7 +10232,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 564.2729999999999, + "x": 564.273, "y": 126.19 }, { @@ -10240,7 +10240,7 @@ "index": 14, "isInternal": false, "x": 568.752, - "y": 122.30799999999999 + "y": 122.308 }, { "body": null, @@ -10260,7 +10260,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 585.8779999999999, + "x": 585.878, "y": 119.846 }, { @@ -10268,7 +10268,7 @@ "index": 18, "isInternal": false, "x": 591.27, - "y": 122.30799999999999 + "y": 122.308 }, { "body": null, @@ -10296,14 +10296,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2600.5853180000004, + "area": 2600.58532, "axes": { "#": 1111 }, "bounds": { "#": 1125 }, - "circleRadius": 28.912229938271604, + "circleRadius": 28.91223, "collisionFilter": { "#": 1128 }, @@ -10318,13 +10318,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 4305.569679703002, - "inverseInertia": 0.00023225730260832288, - "inverseMass": 0.3845288186003671, + "inertia": 4305.56968, + "inverseInertia": 0.00023, + "inverseMass": 0.38453, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6005853180000003, + "mass": 2.60059, "motion": 0, "parent": null, "position": { @@ -10397,52 +10397,52 @@ } ], { - "x": -0.970939006803869, - "y": -0.23932706714184315 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854746498616403, - "y": -0.4646876848512401 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7485006850783444, - "y": -0.6631340169507588 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5681352009209623, - "y": -0.8229352304249088 + "x": -0.56814, + "y": -0.82294 }, { - "x": -0.35453312532100223, - "y": -0.9350434551667225 + "x": -0.35453, + "y": -0.93504 }, { - "x": -0.12051989679740689, - "y": -0.9927109118348314 + "x": -0.12052, + "y": -0.99271 }, { - "x": 0.12051989679740689, - "y": -0.9927109118348314 + "x": 0.12052, + "y": -0.99271 }, { - "x": 0.35453312532100223, - "y": -0.9350434551667225 + "x": 0.35453, + "y": -0.93504 }, { - "x": 0.5681352009209623, - "y": -0.8229352304249088 + "x": 0.56814, + "y": -0.82294 }, { - "x": 0.7485006850783444, - "y": -0.6631340169507588 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854746498616403, - "y": -0.4646876848512401 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.970939006803869, - "y": -0.23932706714184315 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -10457,12 +10457,12 @@ } }, { - "x": 668.0260000000001, - "y": 176.82600000000002 + "x": 668.026, + "y": 176.826 }, { "x": 610.624, - "y": 119.00200000000001 + "y": 119.002 }, { "category": 1, @@ -10480,7 +10480,7 @@ }, { "x": 639.325, - "y": 147.91400000000002 + "y": 147.914 }, { "x": 0, @@ -10488,7 +10488,7 @@ }, { "x": 639.325, - "y": 147.91400000000002 + "y": 147.914 }, { "fillStyle": "#FF6B6B", @@ -10591,64 +10591,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 668.0260000000001, + "x": 668.026, "y": 151.399 }, { "body": null, "index": 1, "isInternal": false, - "x": 666.3580000000001, - "y": 158.16600000000003 + "x": 666.358, + "y": 158.166 }, { "body": null, "index": 2, "isInternal": false, "x": 663.119, - "y": 164.33800000000002 + "y": 164.338 }, { "body": null, "index": 3, "isInternal": false, - "x": 658.4970000000001, + "x": 658.497, "y": 169.555 }, { "body": null, "index": 4, "isInternal": false, - "x": 652.7610000000001, - "y": 173.51500000000001 + "x": 652.761, + "y": 173.515 }, { "body": null, "index": 5, "isInternal": false, "x": 646.244, - "y": 175.98600000000002 + "y": 175.986 }, { "body": null, "index": 6, "isInternal": false, "x": 639.325, - "y": 176.82600000000002 + "y": 176.826 }, { "body": null, "index": 7, "isInternal": false, - "x": 632.4060000000001, - "y": 175.98600000000002 + "x": 632.406, + "y": 175.986 }, { "body": null, "index": 8, "isInternal": false, "x": 625.889, - "y": 173.51500000000001 + "y": 173.515 }, { "body": null, @@ -10661,15 +10661,15 @@ "body": null, "index": 10, "isInternal": false, - "x": 615.5310000000001, - "y": 164.33800000000002 + "x": 615.531, + "y": 164.338 }, { "body": null, "index": 11, "isInternal": false, "x": 612.292, - "y": 158.16600000000003 + "y": 158.166 }, { "body": null, @@ -10683,20 +10683,20 @@ "index": 13, "isInternal": false, "x": 610.624, - "y": 144.42900000000003 + "y": 144.429 }, { "body": null, "index": 14, "isInternal": false, "x": 612.292, - "y": 137.66200000000003 + "y": 137.662 }, { "body": null, "index": 15, "isInternal": false, - "x": 615.5310000000001, + "x": 615.531, "y": 131.49 }, { @@ -10704,49 +10704,49 @@ "index": 16, "isInternal": false, "x": 620.153, - "y": 126.27300000000002 + "y": 126.273 }, { "body": null, "index": 17, "isInternal": false, "x": 625.889, - "y": 122.31300000000002 + "y": 122.313 }, { "body": null, "index": 18, "isInternal": false, - "x": 632.4060000000001, - "y": 119.84200000000001 + "x": 632.406, + "y": 119.842 }, { "body": null, "index": 19, "isInternal": false, "x": 639.325, - "y": 119.00200000000001 + "y": 119.002 }, { "body": null, "index": 20, "isInternal": false, "x": 646.244, - "y": 119.84200000000001 + "y": 119.842 }, { "body": null, "index": 21, "isInternal": false, - "x": 652.7610000000001, - "y": 122.31300000000002 + "x": 652.761, + "y": 122.313 }, { "body": null, "index": 22, "isInternal": false, - "x": 658.4970000000001, - "y": 126.27300000000002 + "x": 658.497, + "y": 126.273 }, { "body": null, @@ -10759,29 +10759,29 @@ "body": null, "index": 24, "isInternal": false, - "x": 666.3580000000001, - "y": 137.66200000000003 + "x": 666.358, + "y": 137.662 }, { "body": null, "index": 25, "isInternal": false, - "x": 668.0260000000001, - "y": 144.42900000000003 + "x": 668.026, + "y": 144.429 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1850.952944, + "area": 1850.95294, "axes": { "#": 1165 }, "bounds": { "#": 1179 }, - "circleRadius": 24.39152520576132, + "circleRadius": 24.39153, "collisionFilter": { "#": 1182 }, @@ -10796,13 +10796,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2181.118018104605, - "inverseInertia": 0.0004584804635509827, - "inverseMass": 0.5402622488278666, + "inertia": 2181.11802, + "inverseInertia": 0.00046, + "inverseMass": 0.54026, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8509529439999999, + "mass": 1.85095, "motion": 0, "parent": null, "position": { @@ -10875,52 +10875,52 @@ } ], { - "x": -0.9709079069702696, - "y": -0.2394532024897771 + "x": -0.97091, + "y": -0.23945 }, { - "x": -0.8855151102728375, - "y": -0.4646105783110027 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7485061705548478, - "y": -0.663127825265474 + "x": -0.74851, + "y": -0.66313 }, { - "x": -0.568086537608252, - "y": -0.8229688243112665 + "x": -0.56809, + "y": -0.82297 }, { - "x": -0.3545875857376188, - "y": -0.935022804021788 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12058023665523107, - "y": -0.9927035844239549 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12058023665523107, - "y": -0.9927035844239549 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545875857376188, - "y": -0.935022804021788 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.568086537608252, - "y": -0.8229688243112665 + "x": 0.56809, + "y": -0.82297 }, { - "x": 0.7485061705548478, - "y": -0.663127825265474 + "x": 0.74851, + "y": -0.66313 }, { - "x": 0.8855151102728375, - "y": -0.4646105783110027 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709079069702696, - "y": -0.2394532024897771 + "x": 0.97091, + "y": -0.23945 }, { "x": 1, @@ -10936,11 +10936,11 @@ }, { "x": 148.428, - "y": 236.56400000000002 + "y": 236.564 }, { "x": 100, - "y": 187.78000000000003 + "y": 187.78 }, { "category": 1, @@ -10958,7 +10958,7 @@ }, { "x": 124.214, - "y": 212.17200000000003 + "y": 212.172 }, { "x": 0, @@ -10966,7 +10966,7 @@ }, { "x": 124.214, - "y": 212.17200000000003 + "y": 212.172 }, { "fillStyle": "#C7F464", @@ -11070,125 +11070,125 @@ "index": 0, "isInternal": false, "x": 148.428, - "y": 215.11200000000002 + "y": 215.112 }, { "body": null, "index": 1, "isInternal": false, - "x": 147.01999999999998, - "y": 220.82100000000003 + "x": 147.02, + "y": 220.821 }, { "body": null, "index": 2, "isInternal": false, "x": 144.288, - "y": 226.02800000000002 + "y": 226.028 }, { "body": null, "index": 3, "isInternal": false, "x": 140.389, - "y": 230.42900000000003 + "y": 230.429 }, { "body": null, "index": 4, "isInternal": false, "x": 135.549, - "y": 233.77000000000004 + "y": 233.77 }, { "body": null, "index": 5, "isInternal": false, "x": 130.051, - "y": 235.85500000000002 + "y": 235.855 }, { "body": null, "index": 6, "isInternal": false, "x": 124.214, - "y": 236.56400000000002 + "y": 236.564 }, { "body": null, "index": 7, "isInternal": false, "x": 118.377, - "y": 235.85500000000002 + "y": 235.855 }, { "body": null, "index": 8, "isInternal": false, - "x": 112.87899999999999, - "y": 233.77000000000004 + "x": 112.879, + "y": 233.77 }, { "body": null, "index": 9, "isInternal": false, "x": 108.039, - "y": 230.42900000000003 + "y": 230.429 }, { "body": null, "index": 10, "isInternal": false, "x": 104.14, - "y": 226.02800000000002 + "y": 226.028 }, { "body": null, "index": 11, "isInternal": false, "x": 101.408, - "y": 220.82100000000003 + "y": 220.821 }, { "body": null, "index": 12, "isInternal": false, "x": 100, - "y": 215.11200000000002 + "y": 215.112 }, { "body": null, "index": 13, "isInternal": false, "x": 100, - "y": 209.23200000000003 + "y": 209.232 }, { "body": null, "index": 14, "isInternal": false, "x": 101.408, - "y": 203.52300000000002 + "y": 203.523 }, { "body": null, "index": 15, "isInternal": false, "x": 104.14, - "y": 198.31600000000003 + "y": 198.316 }, { "body": null, "index": 16, "isInternal": false, "x": 108.039, - "y": 193.91500000000002 + "y": 193.915 }, { "body": null, "index": 17, "isInternal": false, - "x": 112.87899999999999, + "x": 112.879, "y": 190.574 }, { @@ -11196,21 +11196,21 @@ "index": 18, "isInternal": false, "x": 118.377, - "y": 188.48900000000003 + "y": 188.489 }, { "body": null, "index": 19, "isInternal": false, "x": 124.214, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 20, "isInternal": false, "x": 130.051, - "y": 188.48900000000003 + "y": 188.489 }, { "body": null, @@ -11224,42 +11224,42 @@ "index": 22, "isInternal": false, "x": 140.389, - "y": 193.91500000000002 + "y": 193.915 }, { "body": null, "index": 23, "isInternal": false, "x": 144.288, - "y": 198.31600000000003 + "y": 198.316 }, { "body": null, "index": 24, "isInternal": false, - "x": 147.01999999999998, - "y": 203.52300000000002 + "x": 147.02, + "y": 203.523 }, { "body": null, "index": 25, "isInternal": false, "x": 148.428, - "y": 209.23200000000003 + "y": 209.232 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 937.097596, + "area": 937.0976, "axes": { "#": 1219 }, "bounds": { "#": 1229 }, - "circleRadius": 17.447980967078188, + "circleRadius": 17.44798, "collisionFilter": { "#": 1232 }, @@ -11274,13 +11274,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 559.0956546000535, - "inverseInertia": 0.0017886027046934308, - "inverseMass": 1.0671247096017522, + "inertia": 559.09565, + "inverseInertia": 0.00179, + "inverseMass": 1.06712, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.937097596, + "mass": 0.9371, "motion": 0, "parent": null, "position": { @@ -11341,36 +11341,36 @@ } ], { - "x": -0.9396632611814948, - "y": -0.34210079740590776 + "x": -0.93966, + "y": -0.3421 }, { - "x": -0.7660526086703177, - "y": -0.6427778782358655 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.5000796067932008, - "y": -0.865979437902285 + "x": -0.50008, + "y": -0.86598 }, { - "x": -0.1735970572002205, - "y": -0.9848167655617075 + "x": -0.1736, + "y": -0.98482 }, { - "x": 0.1735970572002205, - "y": -0.9848167655617075 + "x": 0.1736, + "y": -0.98482 }, { - "x": 0.5000796067932008, - "y": -0.865979437902285 + "x": 0.50008, + "y": -0.86598 }, { - "x": 0.7660526086703177, - "y": -0.6427778782358655 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9396632611814948, - "y": -0.34210079740590776 + "x": 0.93966, + "y": -0.3421 }, { "x": 1, @@ -11385,12 +11385,12 @@ } }, { - "x": 192.79399999999998, - "y": 222.67600000000004 + "x": 192.794, + "y": 222.676 }, { "x": 158.428, - "y": 187.78000000000003 + "y": 187.78 }, { "category": 1, @@ -11408,7 +11408,7 @@ }, { "x": 175.611, - "y": 205.22800000000004 + "y": 205.228 }, { "x": 0, @@ -11416,7 +11416,7 @@ }, { "x": 175.611, - "y": 205.22800000000004 + "y": 205.228 }, { "fillStyle": "#556270", @@ -11495,141 +11495,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 192.79399999999998, - "y": 208.25800000000004 + "x": 192.794, + "y": 208.258 }, { "body": null, "index": 1, "isInternal": false, "x": 190.721, - "y": 213.95200000000003 + "y": 213.952 }, { "body": null, "index": 2, "isInternal": false, "x": 186.826, - "y": 218.59400000000002 + "y": 218.594 }, { "body": null, "index": 3, "isInternal": false, - "x": 181.57899999999998, - "y": 221.62400000000005 + "x": 181.579, + "y": 221.624 }, { "body": null, "index": 4, "isInternal": false, "x": 175.611, - "y": 222.67600000000004 + "y": 222.676 }, { "body": null, "index": 5, "isInternal": false, "x": 169.643, - "y": 221.62400000000005 + "y": 221.624 }, { "body": null, "index": 6, "isInternal": false, "x": 164.396, - "y": 218.59400000000002 + "y": 218.594 }, { "body": null, "index": 7, "isInternal": false, - "x": 160.50099999999998, - "y": 213.95200000000003 + "x": 160.501, + "y": 213.952 }, { "body": null, "index": 8, "isInternal": false, "x": 158.428, - "y": 208.25800000000004 + "y": 208.258 }, { "body": null, "index": 9, "isInternal": false, "x": 158.428, - "y": 202.19800000000004 + "y": 202.198 }, { "body": null, "index": 10, "isInternal": false, - "x": 160.50099999999998, - "y": 196.50400000000005 + "x": 160.501, + "y": 196.504 }, { "body": null, "index": 11, "isInternal": false, "x": 164.396, - "y": 191.86200000000005 + "y": 191.862 }, { "body": null, "index": 12, "isInternal": false, "x": 169.643, - "y": 188.83200000000002 + "y": 188.832 }, { "body": null, "index": 13, "isInternal": false, "x": 175.611, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 14, "isInternal": false, - "x": 181.57899999999998, - "y": 188.83200000000002 + "x": 181.579, + "y": 188.832 }, { "body": null, "index": 15, "isInternal": false, "x": 186.826, - "y": 191.86200000000005 + "y": 191.862 }, { "body": null, "index": 16, "isInternal": false, "x": 190.721, - "y": 196.50400000000005 + "y": 196.504 }, { "body": null, "index": 17, "isInternal": false, - "x": 192.79399999999998, - "y": 202.19800000000004 + "x": 192.794, + "y": 202.198 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1848.9085379999997, + "area": 1848.90854, "axes": { "#": 1261 }, "bounds": { "#": 1275 }, - "circleRadius": 24.37789351851852, + "circleRadius": 24.37789, "collisionFilter": { "#": 1278 }, @@ -11644,13 +11644,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 2176.3025218581856, - "inverseInertia": 0.00045949494151492, - "inverseMass": 0.5408596366165951, + "inertia": 2176.30252, + "inverseInertia": 0.00046, + "inverseMass": 0.54086, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8489085379999997, + "mass": 1.84891, "motion": 0, "parent": null, "position": { @@ -11723,52 +11723,52 @@ } ], { - "x": -0.9709674753373843, - "y": -0.23921154202284237 + "x": -0.97097, + "y": -0.23921 }, { - "x": -0.8854381720103849, - "y": -0.4647571877302253 + "x": -0.88544, + "y": -0.46476 }, { - "x": -0.7485254378371649, - "y": -0.6631060766654764 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680947037771794, - "y": -0.8229631872327696 + "x": -0.56809, + "y": -0.82296 }, { - "x": -0.3546080683168747, - "y": -0.9350150361810096 + "x": -0.35461, + "y": -0.93502 }, { - "x": -0.12047365436339115, - "y": -0.9927165247966463 + "x": -0.12047, + "y": -0.99272 }, { - "x": 0.12047365436339115, - "y": -0.9927165247966463 + "x": 0.12047, + "y": -0.99272 }, { - "x": 0.3546080683168747, - "y": -0.9350150361810096 + "x": 0.35461, + "y": -0.93502 }, { - "x": 0.5680947037771794, - "y": -0.8229631872327696 + "x": 0.56809, + "y": -0.82296 }, { - "x": 0.7485254378371649, - "y": -0.6631060766654764 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854381720103849, - "y": -0.4647571877302253 + "x": 0.88544, + "y": -0.46476 }, { - "x": 0.9709674753373843, - "y": -0.23921154202284237 + "x": 0.97097, + "y": -0.23921 }, { "x": 1, @@ -11783,12 +11783,12 @@ } }, { - "x": 251.19399999999996, + "x": 251.194, "y": 236.536 }, { - "x": 202.79399999999998, - "y": 187.78000000000003 + "x": 202.794, + "y": 187.78 }, { "category": 1, @@ -11805,16 +11805,16 @@ "y": 0 }, { - "x": 226.99399999999997, - "y": 212.15800000000002 + "x": 226.994, + "y": 212.158 }, { "x": 0, "y": 0 }, { - "x": 226.99399999999997, - "y": 212.15800000000002 + "x": 226.994, + "y": 212.158 }, { "fillStyle": "#556270", @@ -11917,197 +11917,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 251.19399999999996, + "x": 251.194, "y": 215.096 }, { "body": null, "index": 1, "isInternal": false, - "x": 249.78799999999998, - "y": 220.80300000000003 + "x": 249.788, + "y": 220.803 }, { "body": null, "index": 2, "isInternal": false, - "x": 247.05699999999996, - "y": 226.00600000000003 + "x": 247.057, + "y": 226.006 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.15999999999997, - "y": 230.40500000000003 + "x": 243.16, + "y": 230.405 }, { "body": null, "index": 4, "isInternal": false, - "x": 238.32299999999998, - "y": 233.74400000000003 + "x": 238.323, + "y": 233.744 }, { "body": null, "index": 5, "isInternal": false, - "x": 232.82799999999997, - "y": 235.82800000000003 + "x": 232.828, + "y": 235.828 }, { "body": null, "index": 6, "isInternal": false, - "x": 226.99399999999997, + "x": 226.994, "y": 236.536 }, { "body": null, "index": 7, "isInternal": false, - "x": 221.15999999999997, - "y": 235.82800000000003 + "x": 221.16, + "y": 235.828 }, { "body": null, "index": 8, "isInternal": false, - "x": 215.66499999999996, - "y": 233.74400000000003 + "x": 215.665, + "y": 233.744 }, { "body": null, "index": 9, "isInternal": false, - "x": 210.82799999999997, - "y": 230.40500000000003 + "x": 210.828, + "y": 230.405 }, { "body": null, "index": 10, "isInternal": false, - "x": 206.93099999999998, - "y": 226.00600000000003 + "x": 206.931, + "y": 226.006 }, { "body": null, "index": 11, "isInternal": false, - "x": 204.19999999999996, - "y": 220.80300000000003 + "x": 204.2, + "y": 220.803 }, { "body": null, "index": 12, "isInternal": false, - "x": 202.79399999999998, + "x": 202.794, "y": 215.096 }, { "body": null, "index": 13, "isInternal": false, - "x": 202.79399999999998, - "y": 209.22000000000003 + "x": 202.794, + "y": 209.22 }, { "body": null, "index": 14, "isInternal": false, - "x": 204.19999999999996, + "x": 204.2, "y": 203.513 }, { "body": null, "index": 15, "isInternal": false, - "x": 206.93099999999998, + "x": 206.931, "y": 198.31 }, { "body": null, "index": 16, "isInternal": false, - "x": 210.82799999999997, + "x": 210.828, "y": 193.911 }, { "body": null, "index": 17, "isInternal": false, - "x": 215.66499999999996, + "x": 215.665, "y": 190.572 }, { "body": null, "index": 18, "isInternal": false, - "x": 221.15999999999997, + "x": 221.16, "y": 188.488 }, { "body": null, "index": 19, "isInternal": false, - "x": 226.99399999999997, - "y": 187.78000000000003 + "x": 226.994, + "y": 187.78 }, { "body": null, "index": 20, "isInternal": false, - "x": 232.82799999999997, + "x": 232.828, "y": 188.488 }, { "body": null, "index": 21, "isInternal": false, - "x": 238.32299999999998, + "x": 238.323, "y": 190.572 }, { "body": null, "index": 22, "isInternal": false, - "x": 243.15999999999997, + "x": 243.16, "y": 193.911 }, { "body": null, "index": 23, "isInternal": false, - "x": 247.05699999999996, + "x": 247.057, "y": 198.31 }, { "body": null, "index": 24, "isInternal": false, - "x": 249.78799999999998, + "x": 249.788, "y": 203.513 }, { "body": null, "index": 25, "isInternal": false, - "x": 251.19399999999996, - "y": 209.22000000000003 + "x": 251.194, + "y": 209.22 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2662.7031859999993, + "area": 2662.70319, "axes": { "#": 1315 }, "bounds": { "#": 1329 }, - "circleRadius": 29.25533693415638, + "circleRadius": 29.25534, "collisionFilter": { "#": 1332 }, @@ -12122,13 +12122,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 4513.71283136672, - "inverseInertia": 0.00022154710265367218, - "inverseMass": 0.3755581941155946, + "inertia": 4513.71283, + "inverseInertia": 0.00022, + "inverseMass": 0.37556, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6627031859999994, + "mass": 2.6627, "motion": 0, "parent": null, "position": { @@ -12201,52 +12201,52 @@ } ], { - "x": -0.9709378772487557, - "y": -0.23933164964893425 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854927136371952, - "y": -0.4646532622240331 + "x": -0.88549, + "y": -0.46465 }, { - "x": -0.7484956802859418, - "y": -0.6631396659779034 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.568044391747725, - "y": -0.8229979155526198 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.3545858497834421, - "y": -0.9350234623437822 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12052615754469004, - "y": -0.9927101517298554 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052615754469004, - "y": -0.9927101517298554 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3545858497834421, - "y": -0.9350234623437822 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.568044391747725, - "y": -0.8229979155526198 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.7484956802859418, - "y": -0.6631396659779034 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854927136371952, - "y": -0.4646532622240331 + "x": 0.88549, + "y": -0.46465 }, { - "x": 0.9709378772487557, - "y": -0.23933164964893425 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -12262,11 +12262,11 @@ }, { "x": 319.278, - "y": 246.29000000000002 + "y": 246.29 }, { - "x": 261.19399999999996, - "y": 187.78000000000003 + "x": 261.194, + "y": 187.78 }, { "category": 1, @@ -12284,7 +12284,7 @@ }, { "x": 290.236, - "y": 217.03500000000003 + "y": 217.035 }, { "x": 0, @@ -12292,7 +12292,7 @@ }, { "x": 290.236, - "y": 217.03500000000003 + "y": 217.035 }, { "fillStyle": "#C7F464", @@ -12396,196 +12396,196 @@ "index": 0, "isInternal": false, "x": 319.278, - "y": 220.56100000000004 + "y": 220.561 }, { "body": null, "index": 1, "isInternal": false, "x": 317.59, - "y": 227.40900000000002 + "y": 227.409 }, { "body": null, "index": 2, "isInternal": false, "x": 314.313, - "y": 233.65400000000002 + "y": 233.654 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.63599999999997, - "y": 238.93300000000002 + "x": 309.636, + "y": 238.933 }, { "body": null, "index": 4, "isInternal": false, "x": 303.832, - "y": 242.93900000000002 + "y": 242.939 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.23699999999997, - "y": 245.44000000000003 + "x": 297.237, + "y": 245.44 }, { "body": null, "index": 6, "isInternal": false, "x": 290.236, - "y": 246.29000000000002 + "y": 246.29 }, { "body": null, "index": 7, "isInternal": false, "x": 283.235, - "y": 245.44000000000003 + "y": 245.44 }, { "body": null, "index": 8, "isInternal": false, "x": 276.64, - "y": 242.93900000000002 + "y": 242.939 }, { "body": null, "index": 9, "isInternal": false, "x": 270.836, - "y": 238.93300000000002 + "y": 238.933 }, { "body": null, "index": 10, "isInternal": false, "x": 266.159, - "y": 233.65400000000002 + "y": 233.654 }, { "body": null, "index": 11, "isInternal": false, "x": 262.882, - "y": 227.40900000000002 + "y": 227.409 }, { "body": null, "index": 12, "isInternal": false, - "x": 261.19399999999996, - "y": 220.56100000000004 + "x": 261.194, + "y": 220.561 }, { "body": null, "index": 13, "isInternal": false, - "x": 261.19399999999996, - "y": 213.50900000000001 + "x": 261.194, + "y": 213.509 }, { "body": null, "index": 14, "isInternal": false, "x": 262.882, - "y": 206.66100000000003 + "y": 206.661 }, { "body": null, "index": 15, "isInternal": false, "x": 266.159, - "y": 200.41600000000003 + "y": 200.416 }, { "body": null, "index": 16, "isInternal": false, "x": 270.836, - "y": 195.13700000000003 + "y": 195.137 }, { "body": null, "index": 17, "isInternal": false, "x": 276.64, - "y": 191.13100000000003 + "y": 191.131 }, { "body": null, "index": 18, "isInternal": false, "x": 283.235, - "y": 188.63000000000002 + "y": 188.63 }, { "body": null, "index": 19, "isInternal": false, "x": 290.236, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 20, "isInternal": false, - "x": 297.23699999999997, - "y": 188.63000000000002 + "x": 297.237, + "y": 188.63 }, { "body": null, "index": 21, "isInternal": false, "x": 303.832, - "y": 191.13100000000003 + "y": 191.131 }, { "body": null, "index": 22, "isInternal": false, - "x": 309.63599999999997, - "y": 195.13700000000003 + "x": 309.636, + "y": 195.137 }, { "body": null, "index": 23, "isInternal": false, "x": 314.313, - "y": 200.41600000000003 + "y": 200.416 }, { "body": null, "index": 24, "isInternal": false, "x": 317.59, - "y": 206.66100000000003 + "y": 206.661 }, { "body": null, "index": 25, "isInternal": false, "x": 319.278, - "y": 213.50900000000001 + "y": 213.509 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 744.9158119999998, + "area": 744.91581, "axes": { "#": 1369 }, "bounds": { "#": 1378 }, - "circleRadius": 15.598829732510287, + "circleRadius": 15.59883, "collisionFilter": { "#": 1381 }, @@ -12600,13 +12600,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 353.30757950427443, - "inverseInertia": 0.002830394981627904, - "inverseMass": 1.342433579594898, + "inertia": 353.30758, + "inverseInertia": 0.00283, + "inverseMass": 1.34243, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7449158119999999, + "mass": 0.74492, "motion": 0, "parent": null, "position": { @@ -12664,32 +12664,32 @@ } ], { - "x": -0.9238866694289085, - "y": -0.3826662018673176 + "x": -0.92389, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826662018673176, - "y": -0.9238866694289085 + "x": -0.38267, + "y": -0.92389 }, { "x": 0, "y": -1 }, { - "x": 0.3826662018673176, - "y": -0.9238866694289085 + "x": 0.38267, + "y": -0.92389 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238866694289085, - "y": -0.3826662018673176 + "x": 0.92389, + "y": -0.38267 }, { "x": 1, @@ -12705,11 +12705,11 @@ }, { "x": 359.876, - "y": 218.37800000000004 + "y": 218.378 }, { "x": 329.278, - "y": 187.78000000000003 + "y": 187.78 }, { "category": 1, @@ -12727,7 +12727,7 @@ }, { "x": 344.577, - "y": 203.07900000000004 + "y": 203.079 }, { "x": 0, @@ -12735,7 +12735,7 @@ }, { "x": 344.577, - "y": 203.07900000000004 + "y": 203.079 }, { "fillStyle": "#C7F464", @@ -12809,126 +12809,126 @@ "index": 0, "isInternal": false, "x": 359.876, - "y": 206.12200000000004 + "y": 206.122 }, { "body": null, "index": 1, "isInternal": false, "x": 357.547, - "y": 211.74500000000003 + "y": 211.745 }, { "body": null, "index": 2, "isInternal": false, "x": 353.243, - "y": 216.04900000000004 + "y": 216.049 }, { "body": null, "index": 3, "isInternal": false, "x": 347.62, - "y": 218.37800000000004 + "y": 218.378 }, { "body": null, "index": 4, "isInternal": false, "x": 341.534, - "y": 218.37800000000004 + "y": 218.378 }, { "body": null, "index": 5, "isInternal": false, "x": 335.911, - "y": 216.04900000000004 + "y": 216.049 }, { "body": null, "index": 6, "isInternal": false, - "x": 331.60699999999997, - "y": 211.74500000000003 + "x": 331.607, + "y": 211.745 }, { "body": null, "index": 7, "isInternal": false, "x": 329.278, - "y": 206.12200000000004 + "y": 206.122 }, { "body": null, "index": 8, "isInternal": false, "x": 329.278, - "y": 200.03600000000003 + "y": 200.036 }, { "body": null, "index": 9, "isInternal": false, - "x": 331.60699999999997, - "y": 194.41300000000004 + "x": 331.607, + "y": 194.413 }, { "body": null, "index": 10, "isInternal": false, "x": 335.911, - "y": 190.10900000000004 + "y": 190.109 }, { "body": null, "index": 11, "isInternal": false, "x": 341.534, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 12, "isInternal": false, "x": 347.62, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 13, "isInternal": false, "x": 353.243, - "y": 190.10900000000004 + "y": 190.109 }, { "body": null, "index": 14, "isInternal": false, "x": 357.547, - "y": 194.41300000000004 + "y": 194.413 }, { "body": null, "index": 15, "isInternal": false, "x": 359.876, - "y": 200.03600000000003 + "y": 200.036 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1648.4011000000003, + "area": 1648.4011, "axes": { "#": 1408 }, "bounds": { "#": 1421 }, - "circleRadius": 23.038001543209877, + "circleRadius": 23.038, "collisionFilter": { "#": 1424 }, @@ -12943,13 +12943,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1729.8854325157483, - "inverseInertia": 0.0005780729643729723, - "inverseMass": 0.60664846680823, + "inertia": 1729.88543, + "inverseInertia": 0.00058, + "inverseMass": 0.60665, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6484011000000003, + "mass": 1.6484, "motion": 0, "parent": null, "position": { @@ -13019,48 +13019,48 @@ } ], { - "x": -0.9659057395099124, - "y": -0.25889399835030735 + "x": -0.96591, + "y": -0.25889 }, { - "x": -0.8660554631739814, - "y": -0.4999479319954234 + "x": -0.86606, + "y": -0.49995 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999479319954234, - "y": -0.8660554631739814 + "x": -0.49995, + "y": -0.86606 }, { - "x": -0.25889399835030735, - "y": -0.9659057395099124 + "x": -0.25889, + "y": -0.96591 }, { "x": 0, "y": -1 }, { - "x": 0.25889399835030735, - "y": -0.9659057395099124 + "x": 0.25889, + "y": -0.96591 }, { - "x": 0.4999479319954234, - "y": -0.8660554631739814 + "x": 0.49995, + "y": -0.86606 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660554631739814, - "y": -0.4999479319954234 + "x": 0.86606, + "y": -0.49995 }, { - "x": 0.9659057395099124, - "y": -0.25889399835030735 + "x": 0.96591, + "y": -0.25889 }, { "x": 1, @@ -13076,11 +13076,11 @@ }, { "x": 415.558, - "y": 233.46200000000005 + "y": 233.462 }, { "x": 369.876, - "y": 187.78000000000003 + "y": 187.78 }, { "category": 1, @@ -13098,7 +13098,7 @@ }, { "x": 392.717, - "y": 210.62100000000004 + "y": 210.621 }, { "x": 0, @@ -13106,7 +13106,7 @@ }, { "x": 392.717, - "y": 210.62100000000004 + "y": 210.621 }, { "fillStyle": "#4ECDC4", @@ -13204,182 +13204,182 @@ "index": 0, "isInternal": false, "x": 415.558, - "y": 213.62800000000004 + "y": 213.628 }, { "body": null, "index": 1, "isInternal": false, "x": 414.001, - "y": 219.43700000000004 + "y": 219.437 }, { "body": null, "index": 2, "isInternal": false, - "x": 410.99399999999997, - "y": 224.64600000000004 + "x": 410.994, + "y": 224.646 }, { "body": null, "index": 3, "isInternal": false, - "x": 406.74199999999996, - "y": 228.89800000000002 + "x": 406.742, + "y": 228.898 }, { "body": null, "index": 4, "isInternal": false, - "x": 401.53299999999996, - "y": 231.90500000000003 + "x": 401.533, + "y": 231.905 }, { "body": null, "index": 5, "isInternal": false, "x": 395.724, - "y": 233.46200000000005 + "y": 233.462 }, { "body": null, "index": 6, "isInternal": false, "x": 389.71, - "y": 233.46200000000005 + "y": 233.462 }, { "body": null, "index": 7, "isInternal": false, "x": 383.901, - "y": 231.90500000000003 + "y": 231.905 }, { "body": null, "index": 8, "isInternal": false, "x": 378.692, - "y": 228.89800000000002 + "y": 228.898 }, { "body": null, "index": 9, "isInternal": false, "x": 374.44, - "y": 224.64600000000004 + "y": 224.646 }, { "body": null, "index": 10, "isInternal": false, "x": 371.433, - "y": 219.43700000000004 + "y": 219.437 }, { "body": null, "index": 11, "isInternal": false, "x": 369.876, - "y": 213.62800000000004 + "y": 213.628 }, { "body": null, "index": 12, "isInternal": false, "x": 369.876, - "y": 207.61400000000003 + "y": 207.614 }, { "body": null, "index": 13, "isInternal": false, "x": 371.433, - "y": 201.80500000000004 + "y": 201.805 }, { "body": null, "index": 14, "isInternal": false, "x": 374.44, - "y": 196.59600000000003 + "y": 196.596 }, { "body": null, "index": 15, "isInternal": false, "x": 378.692, - "y": 192.34400000000005 + "y": 192.344 }, { "body": null, "index": 16, "isInternal": false, "x": 383.901, - "y": 189.33700000000005 + "y": 189.337 }, { "body": null, "index": 17, "isInternal": false, "x": 389.71, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 18, "isInternal": false, "x": 395.724, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 19, "isInternal": false, - "x": 401.53299999999996, - "y": 189.33700000000005 + "x": 401.533, + "y": 189.337 }, { "body": null, "index": 20, "isInternal": false, - "x": 406.74199999999996, - "y": 192.34400000000005 + "x": 406.742, + "y": 192.344 }, { "body": null, "index": 21, "isInternal": false, - "x": 410.99399999999997, - "y": 196.59600000000003 + "x": 410.994, + "y": 196.596 }, { "body": null, "index": 22, "isInternal": false, "x": 414.001, - "y": 201.80500000000004 + "y": 201.805 }, { "body": null, "index": 23, "isInternal": false, "x": 415.558, - "y": 207.61400000000003 + "y": 207.614 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1113.272836, + "area": 1113.27284, "axes": { "#": 1459 }, "bounds": { "#": 1470 }, - "circleRadius": 18.980259773662553, + "circleRadius": 18.98026, "collisionFilter": { "#": 1473 }, @@ -13394,13 +13394,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 789.0547317724531, - "inverseInertia": 0.0012673392094787908, - "inverseMass": 0.8982524028817674, + "inertia": 789.05473, + "inverseInertia": 0.00127, + "inverseMass": 0.89825, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1132728360000002, + "mass": 1.11327, "motion": 0, "parent": null, "position": { @@ -13464,40 +13464,40 @@ } ], { - "x": -0.9510637633325844, - "y": -0.30899468939718355 + "x": -0.95106, + "y": -0.30899 }, { - "x": -0.8089617628829073, - "y": -0.5878612644097065 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878612644097065, - "y": -0.8089617628829073 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.30899468939718355, - "y": -0.9510637633325844 + "x": -0.30899, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.30899468939718355, - "y": -0.9510637633325844 + "x": 0.30899, + "y": -0.95106 }, { - "x": 0.5878612644097065, - "y": -0.8089617628829073 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089617628829073, - "y": -0.5878612644097065 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510637633325844, - "y": -0.30899468939718355 + "x": 0.95106, + "y": -0.30899 }, { "x": 1, @@ -13513,11 +13513,11 @@ }, { "x": 463.052, - "y": 225.27400000000006 + "y": 225.274 }, { "x": 425.558, - "y": 187.78000000000003 + "y": 187.78 }, { "category": 1, @@ -13535,7 +13535,7 @@ }, { "x": 444.305, - "y": 206.52700000000004 + "y": 206.527 }, { "x": 0, @@ -13543,7 +13543,7 @@ }, { "x": 444.305, - "y": 206.52700000000004 + "y": 206.527 }, { "fillStyle": "#4ECDC4", @@ -13629,154 +13629,154 @@ "index": 0, "isInternal": false, "x": 463.052, - "y": 209.49600000000004 + "y": 209.496 }, { "body": null, "index": 1, "isInternal": false, "x": 461.217, - "y": 215.14400000000003 + "y": 215.144 }, { "body": null, "index": 2, "isInternal": false, "x": 457.726, - "y": 219.94800000000004 + "y": 219.948 }, { "body": null, "index": 3, "isInternal": false, "x": 452.922, - "y": 223.43900000000005 + "y": 223.439 }, { "body": null, "index": 4, "isInternal": false, "x": 447.274, - "y": 225.27400000000006 + "y": 225.274 }, { "body": null, "index": 5, "isInternal": false, "x": 441.336, - "y": 225.27400000000006 + "y": 225.274 }, { "body": null, "index": 6, "isInternal": false, "x": 435.688, - "y": 223.43900000000005 + "y": 223.439 }, { "body": null, "index": 7, "isInternal": false, "x": 430.884, - "y": 219.94800000000004 + "y": 219.948 }, { "body": null, "index": 8, "isInternal": false, - "x": 427.39300000000003, - "y": 215.14400000000003 + "x": 427.393, + "y": 215.144 }, { "body": null, "index": 9, "isInternal": false, "x": 425.558, - "y": 209.49600000000004 + "y": 209.496 }, { "body": null, "index": 10, "isInternal": false, "x": 425.558, - "y": 203.55800000000005 + "y": 203.558 }, { "body": null, "index": 11, "isInternal": false, - "x": 427.39300000000003, - "y": 197.91000000000005 + "x": 427.393, + "y": 197.91 }, { "body": null, "index": 12, "isInternal": false, "x": 430.884, - "y": 193.10600000000005 + "y": 193.106 }, { "body": null, "index": 13, "isInternal": false, "x": 435.688, - "y": 189.61500000000004 + "y": 189.615 }, { "body": null, "index": 14, "isInternal": false, "x": 441.336, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 15, "isInternal": false, "x": 447.274, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 16, "isInternal": false, "x": 452.922, - "y": 189.61500000000004 + "y": 189.615 }, { "body": null, "index": 17, "isInternal": false, "x": 457.726, - "y": 193.10600000000005 + "y": 193.106 }, { "body": null, "index": 18, "isInternal": false, "x": 461.217, - "y": 197.91000000000005 + "y": 197.91 }, { "body": null, "index": 19, "isInternal": false, "x": 463.052, - "y": 203.55800000000005 + "y": 203.558 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1274.2530860000002, + "area": 1274.25309, "axes": { "#": 1504 }, "bounds": { "#": 1516 }, - "circleRadius": 20.277456275720166, + "circleRadius": 20.27746, "collisionFilter": { "#": 1519 }, @@ -13791,13 +13791,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1033.7314290896877, - "inverseInertia": 0.0009673692526506697, - "inverseMass": 0.7847734574762489, + "inertia": 1033.73143, + "inverseInertia": 0.00097, + "inverseMass": 0.78477, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.274253086, + "mass": 1.27425, "motion": 0, "parent": null, "position": { @@ -13864,44 +13864,44 @@ } ], { - "x": -0.9594978217257012, - "y": -0.28171604516540116 + "x": -0.9595, + "y": -0.28172 }, { - "x": -0.8412629145075053, - "y": -0.5406262190037935 + "x": -0.84126, + "y": -0.54063 }, { - "x": -0.6547919983802524, - "y": -0.7558091285881612 + "x": -0.65479, + "y": -0.75581 }, { - "x": -0.4154731207517202, - "y": -0.9096054561912139 + "x": -0.41547, + "y": -0.90961 }, { - "x": -0.14224602222342572, - "y": -0.9898313336935807 + "x": -0.14225, + "y": -0.98983 }, { - "x": 0.14224602222342572, - "y": -0.9898313336935807 + "x": 0.14225, + "y": -0.98983 }, { - "x": 0.4154731207517202, - "y": -0.9096054561912139 + "x": 0.41547, + "y": -0.90961 }, { - "x": 0.6547919983802524, - "y": -0.7558091285881612 + "x": 0.65479, + "y": -0.75581 }, { - "x": 0.8412629145075053, - "y": -0.5406262190037935 + "x": 0.84126, + "y": -0.54063 }, { - "x": 0.9594978217257012, - "y": -0.28171604516540116 + "x": 0.9595, + "y": -0.28172 }, { "x": 1, @@ -13916,12 +13916,12 @@ } }, { - "x": 513.1940000000001, + "x": 513.194, "y": 228.334 }, { "x": 473.052, - "y": 187.78000000000003 + "y": 187.78 }, { "category": 1, @@ -13938,16 +13938,16 @@ "y": 0 }, { - "x": 493.12300000000005, - "y": 208.05700000000002 + "x": 493.123, + "y": 208.057 }, { "x": 0, "y": 0 }, { - "x": 493.12300000000005, - "y": 208.05700000000002 + "x": 493.123, + "y": 208.057 }, { "fillStyle": "#C7F464", @@ -14038,42 +14038,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 513.1940000000001, + "x": 513.194, "y": 210.943 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.56800000000004, - "y": 216.48100000000002 + "x": 511.568, + "y": 216.481 }, { "body": null, "index": 2, "isInternal": false, - "x": 508.44800000000004, + "x": 508.448, "y": 221.336 }, { "body": null, "index": 3, "isInternal": false, - "x": 504.08600000000007, + "x": 504.086, "y": 225.115 }, { "body": null, "index": 4, "isInternal": false, - "x": 498.83600000000007, + "x": 498.836, "y": 227.513 }, { "body": null, "index": 5, "isInternal": false, - "x": 493.12300000000005, + "x": 493.123, "y": 228.334 }, { @@ -14094,15 +14094,15 @@ "body": null, "index": 8, "isInternal": false, - "x": 477.79800000000006, + "x": 477.798, "y": 221.336 }, { "body": null, "index": 9, "isInternal": false, - "x": 474.67800000000005, - "y": 216.48100000000002 + "x": 474.678, + "y": 216.481 }, { "body": null, @@ -14116,91 +14116,91 @@ "index": 11, "isInternal": false, "x": 473.052, - "y": 205.17100000000002 + "y": 205.171 }, { "body": null, "index": 12, "isInternal": false, - "x": 474.67800000000005, + "x": 474.678, "y": 199.633 }, { "body": null, "index": 13, "isInternal": false, - "x": 477.79800000000006, - "y": 194.77800000000002 + "x": 477.798, + "y": 194.778 }, { "body": null, "index": 14, "isInternal": false, "x": 482.16, - "y": 190.99900000000002 + "y": 190.999 }, { "body": null, "index": 15, "isInternal": false, "x": 487.41, - "y": 188.60100000000003 + "y": 188.601 }, { "body": null, "index": 16, "isInternal": false, - "x": 493.12300000000005, - "y": 187.78000000000003 + "x": 493.123, + "y": 187.78 }, { "body": null, "index": 17, "isInternal": false, - "x": 498.83600000000007, - "y": 188.60100000000003 + "x": 498.836, + "y": 188.601 }, { "body": null, "index": 18, "isInternal": false, - "x": 504.08600000000007, - "y": 190.99900000000002 + "x": 504.086, + "y": 190.999 }, { "body": null, "index": 19, "isInternal": false, - "x": 508.44800000000004, - "y": 194.77800000000002 + "x": 508.448, + "y": 194.778 }, { "body": null, "index": 20, "isInternal": false, - "x": 511.56800000000004, + "x": 511.568, "y": 199.633 }, { "body": null, "index": 21, "isInternal": false, - "x": 513.1940000000001, - "y": 205.17100000000002 + "x": 513.194, + "y": 205.171 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2780.0004800000006, + "area": 2780.00048, "axes": { "#": 1552 }, "bounds": { "#": 1566 }, - "circleRadius": 29.892554012345677, + "circleRadius": 29.89255, "collisionFilter": { "#": 1569 }, @@ -14215,13 +14215,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 4920.147823896497, - "inverseInertia": 0.00020324592589335107, - "inverseMass": 0.35971216810725143, + "inertia": 4920.14782, + "inverseInertia": 0.0002, + "inverseMass": 0.35971, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.780000480000001, + "mass": 2.78, "motion": 0, "parent": null, "position": { @@ -14294,52 +14294,52 @@ } ], { - "x": -0.9709290995295576, - "y": -0.23936725692275093 + "x": -0.97093, + "y": -0.23937 }, { - "x": -0.885456433914103, - "y": -0.4647223941667968 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7484878127877156, - "y": -0.6631485460349451 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5681414925182338, - "y": -0.822930886818057 + "x": -0.56814, + "y": -0.82293 }, { - "x": -0.3545580162719157, - "y": -0.9350340170803005 + "x": -0.35456, + "y": -0.93503 }, { - "x": -0.12058414899262154, - "y": -0.9927031091981757 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12058414899262154, - "y": -0.9927031091981757 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545580162719157, - "y": -0.9350340170803005 + "x": 0.35456, + "y": -0.93503 }, { - "x": 0.5681414925182338, - "y": -0.822930886818057 + "x": 0.56814, + "y": -0.82293 }, { - "x": 0.7484878127877156, - "y": -0.6631485460349451 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.885456433914103, - "y": -0.4647223941667968 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709290995295576, - "y": -0.23936725692275093 + "x": 0.97093, + "y": -0.23937 }, { "x": 1, @@ -14355,11 +14355,11 @@ }, { "x": 582.544, - "y": 247.56600000000003 + "y": 247.566 }, { "x": 523.194, - "y": 187.78000000000003 + "y": 187.78 }, { "category": 1, @@ -14377,7 +14377,7 @@ }, { "x": 552.869, - "y": 217.67300000000003 + "y": 217.673 }, { "x": 0, @@ -14385,7 +14385,7 @@ }, { "x": 552.869, - "y": 217.67300000000003 + "y": 217.673 }, { "fillStyle": "#C7F464", @@ -14489,196 +14489,196 @@ "index": 0, "isInternal": false, "x": 582.544, - "y": 221.27600000000004 + "y": 221.276 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.8190000000001, - "y": 228.27300000000002 + "x": 580.819, + "y": 228.273 }, { "body": null, "index": 2, "isInternal": false, "x": 577.47, - "y": 234.65400000000002 + "y": 234.654 }, { "body": null, "index": 3, "isInternal": false, "x": 572.691, - "y": 240.04800000000003 + "y": 240.048 }, { "body": null, "index": 4, "isInternal": false, - "x": 566.7610000000001, - "y": 244.14200000000002 + "x": 566.761, + "y": 244.142 }, { "body": null, "index": 5, "isInternal": false, "x": 560.023, - "y": 246.69700000000003 + "y": 246.697 }, { "body": null, "index": 6, "isInternal": false, "x": 552.869, - "y": 247.56600000000003 + "y": 247.566 }, { "body": null, "index": 7, "isInternal": false, "x": 545.715, - "y": 246.69700000000003 + "y": 246.697 }, { "body": null, "index": 8, "isInternal": false, - "x": 538.9770000000001, - "y": 244.14200000000002 + "x": 538.977, + "y": 244.142 }, { "body": null, "index": 9, "isInternal": false, "x": 533.047, - "y": 240.04800000000003 + "y": 240.048 }, { "body": null, "index": 10, "isInternal": false, "x": 528.268, - "y": 234.65400000000002 + "y": 234.654 }, { "body": null, "index": 11, "isInternal": false, - "x": 524.9190000000001, - "y": 228.27300000000002 + "x": 524.919, + "y": 228.273 }, { "body": null, "index": 12, "isInternal": false, "x": 523.194, - "y": 221.27600000000004 + "y": 221.276 }, { "body": null, "index": 13, "isInternal": false, "x": 523.194, - "y": 214.07000000000002 + "y": 214.07 }, { "body": null, "index": 14, "isInternal": false, - "x": 524.9190000000001, - "y": 207.07300000000004 + "x": 524.919, + "y": 207.073 }, { "body": null, "index": 15, "isInternal": false, "x": 528.268, - "y": 200.69200000000004 + "y": 200.692 }, { "body": null, "index": 16, "isInternal": false, "x": 533.047, - "y": 195.29800000000003 + "y": 195.298 }, { "body": null, "index": 17, "isInternal": false, - "x": 538.9770000000001, - "y": 191.20400000000004 + "x": 538.977, + "y": 191.204 }, { "body": null, "index": 18, "isInternal": false, "x": 545.715, - "y": 188.64900000000003 + "y": 188.649 }, { "body": null, "index": 19, "isInternal": false, "x": 552.869, - "y": 187.78000000000003 + "y": 187.78 }, { "body": null, "index": 20, "isInternal": false, "x": 560.023, - "y": 188.64900000000003 + "y": 188.649 }, { "body": null, "index": 21, "isInternal": false, - "x": 566.7610000000001, - "y": 191.20400000000004 + "x": 566.761, + "y": 191.204 }, { "body": null, "index": 22, "isInternal": false, "x": 572.691, - "y": 195.29800000000003 + "y": 195.298 }, { "body": null, "index": 23, "isInternal": false, "x": 577.47, - "y": 200.69200000000004 + "y": 200.692 }, { "body": null, "index": 24, "isInternal": false, - "x": 580.8190000000001, - "y": 207.07300000000004 + "x": 580.819, + "y": 207.073 }, { "body": null, "index": 25, "isInternal": false, "x": 582.544, - "y": 214.07000000000002 + "y": 214.07 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2538.757968, + "area": 2538.75797, "axes": { "#": 1606 }, "bounds": { "#": 1620 }, - "circleRadius": 28.566293724279834, + "circleRadius": 28.56629, "collisionFilter": { "#": 1623 }, @@ -14693,13 +14693,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 4103.278629848139, - "inverseInertia": 0.0002437075544238656, - "inverseMass": 0.3938933969305419, + "inertia": 4103.27863, + "inverseInertia": 0.00024, + "inverseMass": 0.39389, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.538757968, + "mass": 2.53876, "motion": 0, "parent": null, "position": { @@ -14772,52 +14772,52 @@ } ], { - "x": -0.9709484794471303, - "y": -0.23928863378628235 + "x": -0.97095, + "y": -0.23929 }, { - "x": -0.8854845432949032, - "y": -0.4646688321652492 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.7484419497782766, - "y": -0.6632003074577784 + "x": -0.74844, + "y": -0.6632 }, { - "x": -0.5680315134165672, - "y": -0.8230068042037588 + "x": -0.56803, + "y": -0.82301 }, { - "x": -0.3546060814505948, - "y": -0.9350157897053153 + "x": -0.35461, + "y": -0.93502 }, { - "x": -0.12053085900440433, - "y": -0.9927095809085659 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12053085900440433, - "y": -0.9927095809085659 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3546060814505948, - "y": -0.9350157897053153 + "x": 0.35461, + "y": -0.93502 }, { - "x": 0.5680315134165672, - "y": -0.8230068042037588 + "x": 0.56803, + "y": -0.82301 }, { - "x": 0.7484419497782766, - "y": -0.6632003074577784 + "x": 0.74844, + "y": -0.6632 }, { - "x": 0.8854845432949032, - "y": -0.4646688321652492 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.9709484794471303, - "y": -0.23928863378628235 + "x": 0.97095, + "y": -0.23929 }, { "x": 1, @@ -14832,12 +14832,12 @@ } }, { - "x": 649.2599999999999, - "y": 244.91200000000003 + "x": 649.26, + "y": 244.912 }, { "x": 592.544, - "y": 187.78000000000003 + "y": 187.78 }, { "category": 1, @@ -14854,16 +14854,16 @@ "y": 0 }, { - "x": 620.9019999999999, - "y": 216.34600000000003 + "x": 620.902, + "y": 216.346 }, { "x": 0, "y": 0 }, { - "x": 620.9019999999999, - "y": 216.34600000000003 + "x": 620.902, + "y": 216.346 }, { "fillStyle": "#4ECDC4", @@ -14966,197 +14966,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 649.2599999999999, - "y": 219.78900000000004 + "x": 649.26, + "y": 219.789 }, { "body": null, "index": 1, "isInternal": false, "x": 647.612, - "y": 226.47600000000003 + "y": 226.476 }, { "body": null, "index": 2, "isInternal": false, - "x": 644.4119999999999, - "y": 232.57400000000004 + "x": 644.412, + "y": 232.574 }, { "body": null, "index": 3, "isInternal": false, - "x": 639.8449999999999, - "y": 237.72800000000004 + "x": 639.845, + "y": 237.728 }, { "body": null, "index": 4, "isInternal": false, - "x": 634.1769999999999, - "y": 241.64000000000004 + "x": 634.177, + "y": 241.64 }, { "body": null, "index": 5, "isInternal": false, - "x": 627.7379999999999, - "y": 244.08200000000002 + "x": 627.738, + "y": 244.082 }, { "body": null, "index": 6, "isInternal": false, - "x": 620.9019999999999, - "y": 244.91200000000003 + "x": 620.902, + "y": 244.912 }, { "body": null, "index": 7, "isInternal": false, - "x": 614.0659999999999, - "y": 244.08200000000002 + "x": 614.066, + "y": 244.082 }, { "body": null, "index": 8, "isInternal": false, "x": 607.627, - "y": 241.64000000000004 + "y": 241.64 }, { "body": null, "index": 9, "isInternal": false, "x": 601.959, - "y": 237.72800000000004 + "y": 237.728 }, { "body": null, "index": 10, "isInternal": false, - "x": 597.3919999999999, - "y": 232.57400000000004 + "x": 597.392, + "y": 232.574 }, { "body": null, "index": 11, "isInternal": false, - "x": 594.1919999999999, - "y": 226.47600000000003 + "x": 594.192, + "y": 226.476 }, { "body": null, "index": 12, "isInternal": false, "x": 592.544, - "y": 219.78900000000004 + "y": 219.789 }, { "body": null, "index": 13, "isInternal": false, "x": 592.544, - "y": 212.90300000000002 + "y": 212.903 }, { "body": null, "index": 14, "isInternal": false, - "x": 594.1919999999999, - "y": 206.21600000000004 + "x": 594.192, + "y": 206.216 }, { "body": null, "index": 15, "isInternal": false, - "x": 597.3919999999999, - "y": 200.11800000000002 + "x": 597.392, + "y": 200.118 }, { "body": null, "index": 16, "isInternal": false, "x": 601.959, - "y": 194.96400000000003 + "y": 194.964 }, { "body": null, "index": 17, "isInternal": false, "x": 607.627, - "y": 191.05200000000002 + "y": 191.052 }, { "body": null, "index": 18, "isInternal": false, - "x": 614.0659999999999, - "y": 188.61000000000004 + "x": 614.066, + "y": 188.61 }, { "body": null, "index": 19, "isInternal": false, - "x": 620.9019999999999, - "y": 187.78000000000003 + "x": 620.902, + "y": 187.78 }, { "body": null, "index": 20, "isInternal": false, - "x": 627.7379999999999, - "y": 188.61000000000004 + "x": 627.738, + "y": 188.61 }, { "body": null, "index": 21, "isInternal": false, - "x": 634.1769999999999, - "y": 191.05200000000002 + "x": 634.177, + "y": 191.052 }, { "body": null, "index": 22, "isInternal": false, - "x": 639.8449999999999, - "y": 194.96400000000003 + "x": 639.845, + "y": 194.964 }, { "body": null, "index": 23, "isInternal": false, - "x": 644.4119999999999, - "y": 200.11800000000002 + "x": 644.412, + "y": 200.118 }, { "body": null, "index": 24, "isInternal": false, "x": 647.612, - "y": 206.21600000000004 + "y": 206.216 }, { "body": null, "index": 25, "isInternal": false, - "x": 649.2599999999999, - "y": 212.90300000000002 + "x": 649.26, + "y": 212.903 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1430.3752400000003, + "area": 1430.37524, "axes": { "#": 1660 }, "bounds": { "#": 1672 }, - "circleRadius": 21.48386059670782, + "circleRadius": 21.48386, "collisionFilter": { "#": 1675 }, @@ -15171,13 +15171,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1302.5556894183874, - "inverseInertia": 0.0007677214940779358, - "inverseMass": 0.6991172470239346, + "inertia": 1302.55569, + "inverseInertia": 0.00077, + "inverseMass": 0.69912, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4303752400000003, + "mass": 1.43038, "motion": 0, "parent": null, "position": { @@ -15244,44 +15244,44 @@ } ], { - "x": -0.9594929851315711, - "y": -0.28173251761787593 + "x": -0.95949, + "y": -0.28173 }, { - "x": -0.8412422318463942, - "y": -0.5406584017270957 + "x": -0.84124, + "y": -0.54066 }, { - "x": -0.6548495904335815, - "y": -0.755759230118277 + "x": -0.65485, + "y": -0.75576 }, { - "x": -0.41553945773574935, - "y": -0.9095751530603061 + "x": -0.41554, + "y": -0.90958 }, { - "x": -0.14226837363223738, - "y": -0.9898281213746344 + "x": -0.14227, + "y": -0.98983 }, { - "x": 0.14226837363223738, - "y": -0.9898281213746344 + "x": 0.14227, + "y": -0.98983 }, { - "x": 0.41553945773574935, - "y": -0.9095751530603061 + "x": 0.41554, + "y": -0.90958 }, { - "x": 0.6548495904335815, - "y": -0.755759230118277 + "x": 0.65485, + "y": -0.75576 }, { - "x": 0.8412422318463942, - "y": -0.5406584017270957 + "x": 0.84124, + "y": -0.54066 }, { - "x": 0.9594929851315711, - "y": -0.28173251761787593 + "x": 0.95949, + "y": -0.28173 }, { "x": 1, @@ -15301,7 +15301,7 @@ }, { "x": 100, - "y": 257.56600000000003 + "y": 257.566 }, { "category": 1, @@ -15425,7 +15425,7 @@ "body": null, "index": 1, "isInternal": false, - "x": 140.80700000000002, + "x": 140.807, "y": 287.975 }, { @@ -15496,7 +15496,7 @@ "index": 11, "isInternal": false, "x": 100, - "y": 275.99300000000005 + "y": 275.993 }, { "body": null, @@ -15524,21 +15524,21 @@ "index": 15, "isInternal": false, "x": 115.212, - "y": 258.43600000000004 + "y": 258.436 }, { "body": null, "index": 16, "isInternal": false, "x": 121.265, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, "index": 17, "isInternal": false, "x": 127.318, - "y": 258.43600000000004 + "y": 258.436 }, { "body": null, @@ -15558,7 +15558,7 @@ "body": null, "index": 20, "isInternal": false, - "x": 140.80700000000002, + "x": 140.807, "y": 270.125 }, { @@ -15566,21 +15566,21 @@ "index": 21, "isInternal": false, "x": 142.53, - "y": 275.99300000000005 + "y": 275.993 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1228.8538520000002, + "area": 1228.85385, "axes": { "#": 1708 }, "bounds": { "#": 1719 }, - "circleRadius": 19.941550925925924, + "circleRadius": 19.94155, "collisionFilter": { "#": 1722 }, @@ -15595,13 +15595,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 961.4005673522398, - "inverseInertia": 0.0010401491677439567, - "inverseMass": 0.8137664201259303, + "inertia": 961.40057, + "inverseInertia": 0.00104, + "inverseMass": 0.81377, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2288538520000003, + "mass": 1.22885, "motion": 0, "parent": null, "position": { @@ -15665,40 +15665,40 @@ } ], { - "x": -0.9510446700932779, - "y": -0.3090534508578865 + "x": -0.95104, + "y": -0.30905 }, { - "x": -0.8090617057669508, - "y": -0.5877237074182664 + "x": -0.80906, + "y": -0.58772 }, { - "x": -0.5877237074182664, - "y": -0.8090617057669508 + "x": -0.58772, + "y": -0.80906 }, { - "x": -0.3090534508578865, - "y": -0.9510446700932779 + "x": -0.30905, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090534508578865, - "y": -0.9510446700932779 + "x": 0.30905, + "y": -0.95104 }, { - "x": 0.5877237074182664, - "y": -0.8090617057669508 + "x": 0.58772, + "y": -0.80906 }, { - "x": 0.8090617057669508, - "y": -0.5877237074182664 + "x": 0.80906, + "y": -0.58772 }, { - "x": 0.9510446700932779, - "y": -0.3090534508578865 + "x": 0.95104, + "y": -0.30905 }, { "x": 1, @@ -15714,11 +15714,11 @@ }, { "x": 191.922, - "y": 296.9580000000001 + "y": 296.958 }, { "x": 152.53, - "y": 257.56600000000003 + "y": 257.566 }, { "category": 1, @@ -15736,7 +15736,7 @@ }, { "x": 172.226, - "y": 277.26200000000006 + "y": 277.262 }, { "x": 0, @@ -15744,7 +15744,7 @@ }, { "x": 172.226, - "y": 277.26200000000006 + "y": 277.262 }, { "fillStyle": "#4ECDC4", @@ -15830,91 +15830,91 @@ "index": 0, "isInternal": false, "x": 191.922, - "y": 280.38200000000006 + "y": 280.382 }, { "body": null, "index": 1, "isInternal": false, "x": 189.994, - "y": 286.31500000000005 + "y": 286.315 }, { "body": null, "index": 2, "isInternal": false, "x": 186.327, - "y": 291.36300000000006 + "y": 291.363 }, { "body": null, "index": 3, "isInternal": false, "x": 181.279, - "y": 295.0300000000001 + "y": 295.03 }, { "body": null, "index": 4, "isInternal": false, "x": 175.346, - "y": 296.9580000000001 + "y": 296.958 }, { "body": null, "index": 5, "isInternal": false, "x": 169.106, - "y": 296.9580000000001 + "y": 296.958 }, { "body": null, "index": 6, "isInternal": false, "x": 163.173, - "y": 295.0300000000001 + "y": 295.03 }, { "body": null, "index": 7, "isInternal": false, "x": 158.125, - "y": 291.36300000000006 + "y": 291.363 }, { "body": null, "index": 8, "isInternal": false, "x": 154.458, - "y": 286.31500000000005 + "y": 286.315 }, { "body": null, "index": 9, "isInternal": false, "x": 152.53, - "y": 280.38200000000006 + "y": 280.382 }, { "body": null, "index": 10, "isInternal": false, "x": 152.53, - "y": 274.14200000000005 + "y": 274.142 }, { "body": null, "index": 11, "isInternal": false, "x": 154.458, - "y": 268.20900000000006 + "y": 268.209 }, { "body": null, "index": 12, "isInternal": false, "x": 158.125, - "y": 263.16100000000006 + "y": 263.161 }, { "body": null, @@ -15928,14 +15928,14 @@ "index": 14, "isInternal": false, "x": 169.106, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, "index": 15, "isInternal": false, "x": 175.346, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, @@ -15949,35 +15949,35 @@ "index": 17, "isInternal": false, "x": 186.327, - "y": 263.16100000000006 + "y": 263.161 }, { "body": null, "index": 18, "isInternal": false, "x": 189.994, - "y": 268.20900000000006 + "y": 268.209 }, { "body": null, "index": 19, "isInternal": false, "x": 191.922, - "y": 274.14200000000005 + "y": 274.142 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1002.7103840000001, + "area": 1002.71038, "axes": { "#": 1753 }, "bounds": { "#": 1764 }, - "circleRadius": 18.01343878600823, + "circleRadius": 18.01344, "collisionFilter": { "#": 1767 }, @@ -15992,13 +15992,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 640.1104675474656, - "inverseInertia": 0.0015622303503822139, - "inverseMass": 0.9972969423242753, + "inertia": 640.11047, + "inverseInertia": 0.00156, + "inverseMass": 0.9973, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.002710384, + "mass": 1.00271, "motion": 0, "parent": null, "position": { @@ -16062,40 +16062,40 @@ } ], { - "x": -0.9510340687309481, - "y": -0.30908607233755825 + "x": -0.95103, + "y": -0.30909 }, { - "x": -0.8089585484139196, - "y": -0.5878656878471851 + "x": -0.80896, + "y": -0.58787 }, { - "x": -0.5878656878471851, - "y": -0.8089585484139196 + "x": -0.58787, + "y": -0.80896 }, { - "x": -0.30908607233755825, - "y": -0.9510340687309481 + "x": -0.30909, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.30908607233755825, - "y": -0.9510340687309481 + "x": 0.30909, + "y": -0.95103 }, { - "x": 0.5878656878471851, - "y": -0.8089585484139196 + "x": 0.58787, + "y": -0.80896 }, { - "x": 0.8089585484139196, - "y": -0.5878656878471851 + "x": 0.80896, + "y": -0.58787 }, { - "x": 0.9510340687309481, - "y": -0.30908607233755825 + "x": 0.95103, + "y": -0.30909 }, { "x": 1, @@ -16111,11 +16111,11 @@ }, { "x": 237.506, - "y": 293.1500000000001 + "y": 293.15 }, { "x": 201.922, - "y": 257.56600000000003 + "y": 257.566 }, { "category": 1, @@ -16133,7 +16133,7 @@ }, { "x": 219.714, - "y": 275.35800000000006 + "y": 275.358 }, { "x": 0, @@ -16141,7 +16141,7 @@ }, { "x": 219.714, - "y": 275.35800000000006 + "y": 275.358 }, { "fillStyle": "#FF6B6B", @@ -16227,154 +16227,154 @@ "index": 0, "isInternal": false, "x": 237.506, - "y": 278.17600000000004 + "y": 278.176 }, { "body": null, "index": 1, "isInternal": false, "x": 235.764, - "y": 283.53600000000006 + "y": 283.536 }, { "body": null, "index": 2, "isInternal": false, "x": 232.451, - "y": 288.0950000000001 + "y": 288.095 }, { "body": null, "index": 3, "isInternal": false, "x": 227.892, - "y": 291.4080000000001 + "y": 291.408 }, { "body": null, "index": 4, "isInternal": false, "x": 222.532, - "y": 293.1500000000001 + "y": 293.15 }, { "body": null, "index": 5, "isInternal": false, "x": 216.896, - "y": 293.1500000000001 + "y": 293.15 }, { "body": null, "index": 6, "isInternal": false, "x": 211.536, - "y": 291.4080000000001 + "y": 291.408 }, { "body": null, "index": 7, "isInternal": false, "x": 206.977, - "y": 288.0950000000001 + "y": 288.095 }, { "body": null, "index": 8, "isInternal": false, "x": 203.664, - "y": 283.53600000000006 + "y": 283.536 }, { "body": null, "index": 9, "isInternal": false, "x": 201.922, - "y": 278.17600000000004 + "y": 278.176 }, { "body": null, "index": 10, "isInternal": false, "x": 201.922, - "y": 272.5400000000001 + "y": 272.54 }, { "body": null, "index": 11, "isInternal": false, "x": 203.664, - "y": 267.18000000000006 + "y": 267.18 }, { "body": null, "index": 12, "isInternal": false, "x": 206.977, - "y": 262.6210000000001 + "y": 262.621 }, { "body": null, "index": 13, "isInternal": false, "x": 211.536, - "y": 259.30800000000005 + "y": 259.308 }, { "body": null, "index": 14, "isInternal": false, "x": 216.896, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, "index": 15, "isInternal": false, "x": 222.532, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, "index": 16, "isInternal": false, "x": 227.892, - "y": 259.30800000000005 + "y": 259.308 }, { "body": null, "index": 17, "isInternal": false, "x": 232.451, - "y": 262.6210000000001 + "y": 262.621 }, { "body": null, "index": 18, "isInternal": false, "x": 235.764, - "y": 267.18000000000006 + "y": 267.18 }, { "body": null, "index": 19, "isInternal": false, "x": 237.506, - "y": 272.5400000000001 + "y": 272.54 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.6785539999998, + "area": 1824.67855, "axes": { "#": 1798 }, "bounds": { "#": 1812 }, - "circleRadius": 24.21804269547325, + "circleRadius": 24.21804, "collisionFilter": { "#": 1815 }, @@ -16389,13 +16389,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 2119.6353057013616, - "inverseInertia": 0.00047177927132569257, - "inverseMass": 0.5480417346977817, + "inertia": 2119.63531, + "inverseInertia": 0.00047, + "inverseMass": 0.54804, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.824678554, + "mass": 1.82468, "motion": 0, "parent": null, "position": { @@ -16468,52 +16468,52 @@ } ], { - "x": -0.9709530792717644, - "y": -0.23926996855576949 + "x": -0.97095, + "y": -0.23927 }, { - "x": -0.8854490104782353, - "y": -0.46473653809778487 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485517419948672, - "y": -0.6630763828975134 + "x": -0.74855, + "y": -0.66308 }, { - "x": -0.5681051115017207, - "y": -0.8229560026426791 + "x": -0.56811, + "y": -0.82296 }, { - "x": -0.3545561271605673, - "y": -0.9350347334152351 + "x": -0.35456, + "y": -0.93503 }, { - "x": -0.12057688237798207, - "y": -0.9927039918505447 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057688237798207, - "y": -0.9927039918505447 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545561271605673, - "y": -0.9350347334152351 + "x": 0.35456, + "y": -0.93503 }, { - "x": 0.5681051115017207, - "y": -0.8229560026426791 + "x": 0.56811, + "y": -0.82296 }, { - "x": 0.7485517419948672, - "y": -0.6630763828975134 + "x": 0.74855, + "y": -0.66308 }, { - "x": 0.8854490104782353, - "y": -0.46473653809778487 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709530792717644, - "y": -0.23926996855576949 + "x": 0.97095, + "y": -0.23927 }, { "x": 1, @@ -16528,12 +16528,12 @@ } }, { - "x": 295.5880000000001, - "y": 306.00200000000007 + "x": 295.588, + "y": 306.002 }, { - "x": 247.50600000000003, - "y": 257.56600000000003 + "x": 247.506, + "y": 257.566 }, { "category": 1, @@ -16551,7 +16551,7 @@ }, { "x": 271.547, - "y": 281.78400000000005 + "y": 281.784 }, { "x": 0, @@ -16559,7 +16559,7 @@ }, { "x": 271.547, - "y": 281.78400000000005 + "y": 281.784 }, { "fillStyle": "#556270", @@ -16662,105 +16662,105 @@ "body": null, "index": 0, "isInternal": false, - "x": 295.5880000000001, - "y": 284.70300000000003 + "x": 295.588, + "y": 284.703 }, { "body": null, "index": 1, "isInternal": false, - "x": 294.19100000000003, - "y": 290.37200000000007 + "x": 294.191, + "y": 290.372 }, { "body": null, "index": 2, "isInternal": false, - "x": 291.47800000000007, - "y": 295.54100000000005 + "x": 291.478, + "y": 295.541 }, { "body": null, "index": 3, "isInternal": false, - "x": 287.60699999999997, - "y": 299.91100000000006 + "x": 287.607, + "y": 299.911 }, { "body": null, "index": 4, "isInternal": false, "x": 282.802, - "y": 303.22800000000007 + "y": 303.228 }, { "body": null, "index": 5, "isInternal": false, "x": 277.343, - "y": 305.29800000000006 + "y": 305.298 }, { "body": null, "index": 6, "isInternal": false, "x": 271.547, - "y": 306.00200000000007 + "y": 306.002 }, { "body": null, "index": 7, "isInternal": false, - "x": 265.75100000000003, - "y": 305.29800000000006 + "x": 265.751, + "y": 305.298 }, { "body": null, "index": 8, "isInternal": false, - "x": 260.29200000000003, - "y": 303.22800000000007 + "x": 260.292, + "y": 303.228 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.48700000000002, - "y": 299.91100000000006 + "x": 255.487, + "y": 299.911 }, { "body": null, "index": 10, "isInternal": false, "x": 251.616, - "y": 295.54100000000005 + "y": 295.541 }, { "body": null, "index": 11, "isInternal": false, - "x": 248.90300000000002, - "y": 290.37200000000007 + "x": 248.903, + "y": 290.372 }, { "body": null, "index": 12, "isInternal": false, - "x": 247.50600000000003, - "y": 284.70300000000003 + "x": 247.506, + "y": 284.703 }, { "body": null, "index": 13, "isInternal": false, - "x": 247.50600000000003, + "x": 247.506, "y": 278.865 }, { "body": null, "index": 14, "isInternal": false, - "x": 248.90300000000002, + "x": 248.903, "y": 273.196 }, { @@ -16768,76 +16768,76 @@ "index": 15, "isInternal": false, "x": 251.616, - "y": 268.02700000000004 + "y": 268.027 }, { "body": null, "index": 16, "isInternal": false, - "x": 255.48700000000002, - "y": 263.65700000000004 + "x": 255.487, + "y": 263.657 }, { "body": null, "index": 17, "isInternal": false, - "x": 260.29200000000003, - "y": 260.34000000000003 + "x": 260.292, + "y": 260.34 }, { "body": null, "index": 18, "isInternal": false, - "x": 265.75100000000003, - "y": 258.27000000000004 + "x": 265.751, + "y": 258.27 }, { "body": null, "index": 19, "isInternal": false, "x": 271.547, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, "index": 20, "isInternal": false, "x": 277.343, - "y": 258.27000000000004 + "y": 258.27 }, { "body": null, "index": 21, "isInternal": false, "x": 282.802, - "y": 260.34000000000003 + "y": 260.34 }, { "body": null, "index": 22, "isInternal": false, - "x": 287.60699999999997, - "y": 263.65700000000004 + "x": 287.607, + "y": 263.657 }, { "body": null, "index": 23, "isInternal": false, - "x": 291.47800000000007, - "y": 268.02700000000004 + "x": 291.478, + "y": 268.027 }, { "body": null, "index": 24, "isInternal": false, - "x": 294.19100000000003, + "x": 294.191, "y": 273.196 }, { "body": null, "index": 25, "isInternal": false, - "x": 295.5880000000001, + "x": 295.588, "y": 278.865 }, { @@ -16845,14 +16845,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2471.436928, + "area": 2471.43693, "axes": { "#": 1852 }, "bounds": { "#": 1866 }, - "circleRadius": 28.184992283950617, + "circleRadius": 28.18499, "collisionFilter": { "#": 1869 }, @@ -16867,13 +16867,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 3888.548074751447, - "inverseInertia": 0.0002571653945834061, - "inverseMass": 0.4046229093166645, + "inertia": 3888.54807, + "inverseInertia": 0.00026, + "inverseMass": 0.40462, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.471436928, + "mass": 2.47144, "motion": 0, "parent": null, "position": { @@ -16946,52 +16946,52 @@ } ], { - "x": -0.970950739329147, - "y": -0.23927946379951362 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854826960522498, - "y": -0.4646723523000254 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.7484963444830224, - "y": -0.6631389162879469 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.5680768171903559, - "y": -0.8229755341265468 + "x": -0.56808, + "y": -0.82298 }, { - "x": -0.3545566221665471, - "y": -0.9350345457136052 + "x": -0.35456, + "y": -0.93503 }, { - "x": -0.12053794545125669, - "y": -0.9927087204746365 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12053794545125669, - "y": -0.9927087204746365 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.3545566221665471, - "y": -0.9350345457136052 + "x": 0.35456, + "y": -0.93503 }, { - "x": 0.5680768171903559, - "y": -0.8229755341265468 + "x": 0.56808, + "y": -0.82298 }, { - "x": 0.7484963444830224, - "y": -0.6631389162879469 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854826960522498, - "y": -0.4646723523000254 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.970950739329147, - "y": -0.23927946379951362 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -17006,12 +17006,12 @@ } }, { - "x": 361.54600000000005, - "y": 313.93600000000004 + "x": 361.546, + "y": 313.936 }, { - "x": 305.5880000000001, - "y": 257.56600000000003 + "x": 305.588, + "y": 257.566 }, { "category": 1, @@ -17028,16 +17028,16 @@ "y": 0 }, { - "x": 333.56700000000006, - "y": 285.75100000000003 + "x": 333.567, + "y": 285.751 }, { "x": 0, "y": 0 }, { - "x": 333.56700000000006, - "y": 285.75100000000003 + "x": 333.567, + "y": 285.751 }, { "fillStyle": "#FF6B6B", @@ -17140,197 +17140,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 361.54600000000005, + "x": 361.546, "y": 289.148 }, { "body": null, "index": 1, "isInternal": false, - "x": 359.9200000000001, - "y": 295.74600000000004 + "x": 359.92, + "y": 295.746 }, { "body": null, "index": 2, "isInternal": false, - "x": 356.7630000000001, - "y": 301.76200000000006 + "x": 356.763, + "y": 301.762 }, { "body": null, "index": 3, "isInternal": false, - "x": 352.25700000000006, + "x": 352.257, "y": 306.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 346.6650000000001, + "x": 346.665, "y": 310.708 }, { "body": null, "index": 5, "isInternal": false, - "x": 340.31200000000007, + "x": 340.312, "y": 313.117 }, { "body": null, "index": 6, "isInternal": false, - "x": 333.56700000000006, - "y": 313.93600000000004 + "x": 333.567, + "y": 313.936 }, { "body": null, "index": 7, "isInternal": false, - "x": 326.82200000000006, + "x": 326.822, "y": 313.117 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.46900000000005, + "x": 320.469, "y": 310.708 }, { "body": null, "index": 9, "isInternal": false, - "x": 314.87700000000007, + "x": 314.877, "y": 306.848 }, { "body": null, "index": 10, "isInternal": false, - "x": 310.37100000000004, - "y": 301.76200000000006 + "x": 310.371, + "y": 301.762 }, { "body": null, "index": 11, "isInternal": false, - "x": 307.21400000000006, - "y": 295.74600000000004 + "x": 307.214, + "y": 295.746 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.5880000000001, + "x": 305.588, "y": 289.148 }, { "body": null, "index": 13, "isInternal": false, - "x": 305.5880000000001, - "y": 282.35400000000004 + "x": 305.588, + "y": 282.354 }, { "body": null, "index": 14, "isInternal": false, - "x": 307.21400000000006, - "y": 275.75600000000003 + "x": 307.214, + "y": 275.756 }, { "body": null, "index": 15, "isInternal": false, - "x": 310.37100000000004, + "x": 310.371, "y": 269.74 }, { "body": null, "index": 16, "isInternal": false, - "x": 314.87700000000007, + "x": 314.877, "y": 264.654 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.46900000000005, - "y": 260.79400000000004 + "x": 320.469, + "y": 260.794 }, { "body": null, "index": 18, "isInternal": false, - "x": 326.82200000000006, - "y": 258.38500000000005 + "x": 326.822, + "y": 258.385 }, { "body": null, "index": 19, "isInternal": false, - "x": 333.56700000000006, - "y": 257.56600000000003 + "x": 333.567, + "y": 257.566 }, { "body": null, "index": 20, "isInternal": false, - "x": 340.31200000000007, - "y": 258.38500000000005 + "x": 340.312, + "y": 258.385 }, { "body": null, "index": 21, "isInternal": false, - "x": 346.6650000000001, - "y": 260.79400000000004 + "x": 346.665, + "y": 260.794 }, { "body": null, "index": 22, "isInternal": false, - "x": 352.25700000000006, + "x": 352.257, "y": 264.654 }, { "body": null, "index": 23, "isInternal": false, - "x": 356.7630000000001, + "x": 356.763, "y": 269.74 }, { "body": null, "index": 24, "isInternal": false, - "x": 359.9200000000001, - "y": 275.75600000000003 + "x": 359.92, + "y": 275.756 }, { "body": null, "index": 25, "isInternal": false, - "x": 361.54600000000005, - "y": 282.35400000000004 + "x": 361.546, + "y": 282.354 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1547.5474520000005, + "area": 1547.54745, "axes": { "#": 1906 }, "bounds": { "#": 1919 }, - "circleRadius": 22.321694958847736, + "circleRadius": 22.32169, "collisionFilter": { "#": 1922 }, @@ -17345,13 +17345,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1524.6827933599404, - "inverseInertia": 0.0006558741295927541, - "inverseMass": 0.646183739766837, + "inertia": 1524.68279, + "inverseInertia": 0.00066, + "inverseMass": 0.64618, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.5475474520000005, + "mass": 1.54755, "motion": 0, "parent": null, "position": { @@ -17421,48 +17421,48 @@ } ], { - "x": -0.9659266009741097, - "y": -0.2588161539212787 + "x": -0.96593, + "y": -0.25882 }, { - "x": -0.8660169934454096, - "y": -0.5000145668515801 + "x": -0.86602, + "y": -0.50001 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000145668515801, - "y": -0.8660169934454096 + "x": -0.50001, + "y": -0.86602 }, { - "x": -0.2588161539212787, - "y": -0.9659266009741097 + "x": -0.25882, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.2588161539212787, - "y": -0.9659266009741097 + "x": 0.25882, + "y": -0.96593 }, { - "x": 0.5000145668515801, - "y": -0.8660169934454096 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660169934454096, - "y": -0.5000145668515801 + "x": 0.86602, + "y": -0.50001 }, { - "x": 0.9659266009741097, - "y": -0.2588161539212787 + "x": 0.96593, + "y": -0.25882 }, { "x": 1, @@ -17481,8 +17481,8 @@ "y": 301.828 }, { - "x": 371.54600000000005, - "y": 257.56600000000003 + "x": 371.546, + "y": 257.566 }, { "category": 1, @@ -17647,14 +17647,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 390.76300000000003, + "x": 390.763, "y": 301.828 }, { "body": null, "index": 7, "isInternal": false, - "x": 385.13500000000005, + "x": 385.135, "y": 300.32 }, { @@ -17675,28 +17675,28 @@ "body": null, "index": 10, "isInternal": false, - "x": 373.05400000000003, + "x": 373.054, "y": 288.239 }, { "body": null, "index": 11, "isInternal": false, - "x": 371.54600000000005, + "x": 371.546, "y": 282.611 }, { "body": null, "index": 12, "isInternal": false, - "x": 371.54600000000005, + "x": 371.546, "y": 276.783 }, { "body": null, "index": 13, "isInternal": false, - "x": 373.05400000000003, + "x": 373.054, "y": 271.155 }, { @@ -17717,22 +17717,22 @@ "body": null, "index": 16, "isInternal": false, - "x": 385.13500000000005, + "x": 385.135, "y": 259.074 }, { "body": null, "index": 17, "isInternal": false, - "x": 390.76300000000003, - "y": 257.56600000000003 + "x": 390.763, + "y": 257.566 }, { "body": null, "index": 18, "isInternal": false, "x": 396.591, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, @@ -17774,14 +17774,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1055.306792, + "area": 1055.30679, "axes": { "#": 1957 }, "bounds": { "#": 1968 }, - "circleRadius": 18.48000257201646, + "circleRadius": 18.48, "collisionFilter": { "#": 1971 }, @@ -17796,13 +17796,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 709.0247094978657, - "inverseInertia": 0.0014103880818317378, - "inverseMass": 0.9475917406963869, + "inertia": 709.02471, + "inverseInertia": 0.00141, + "inverseMass": 0.94759, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.055306792, + "mass": 1.05531, "motion": 0, "parent": null, "position": { @@ -17866,40 +17866,40 @@ } ], { - "x": -0.9510937892878595, - "y": -0.30890225634990265 + "x": -0.95109, + "y": -0.3089 }, { - "x": -0.8089379801350923, - "y": -0.5878939906947145 + "x": -0.80894, + "y": -0.58789 }, { - "x": -0.5878939906947145, - "y": -0.8089379801350923 + "x": -0.58789, + "y": -0.80894 }, { - "x": -0.30890225634990265, - "y": -0.9510937892878595 + "x": -0.3089, + "y": -0.95109 }, { "x": 0, "y": -1 }, { - "x": 0.30890225634990265, - "y": -0.9510937892878595 + "x": 0.3089, + "y": -0.95109 }, { - "x": 0.5878939906947145, - "y": -0.8089379801350923 + "x": 0.58789, + "y": -0.80894 }, { - "x": 0.8089379801350923, - "y": -0.5878939906947145 + "x": 0.80894, + "y": -0.58789 }, { - "x": 0.9510937892878595, - "y": -0.30890225634990265 + "x": 0.95109, + "y": -0.3089 }, { "x": 1, @@ -17915,11 +17915,11 @@ }, { "x": 462.312, - "y": 294.07000000000005 + "y": 294.07 }, { "x": 425.808, - "y": 257.56600000000003 + "y": 257.566 }, { "category": 1, @@ -17937,7 +17937,7 @@ }, { "x": 444.06, - "y": 275.81800000000004 + "y": 275.818 }, { "x": 0, @@ -17945,7 +17945,7 @@ }, { "x": 444.06, - "y": 275.81800000000004 + "y": 275.818 }, { "fillStyle": "#556270", @@ -18031,7 +18031,7 @@ "index": 0, "isInternal": false, "x": 462.312, - "y": 278.70900000000006 + "y": 278.709 }, { "body": null, @@ -18045,42 +18045,42 @@ "index": 2, "isInternal": false, "x": 457.127, - "y": 288.88500000000005 + "y": 288.885 }, { "body": null, "index": 3, "isInternal": false, "x": 452.45, - "y": 292.28400000000005 + "y": 292.284 }, { "body": null, "index": 4, "isInternal": false, "x": 446.951, - "y": 294.07000000000005 + "y": 294.07 }, { "body": null, "index": 5, "isInternal": false, "x": 441.169, - "y": 294.07000000000005 + "y": 294.07 }, { "body": null, "index": 6, "isInternal": false, "x": 435.67, - "y": 292.28400000000005 + "y": 292.284 }, { "body": null, "index": 7, "isInternal": false, "x": 430.993, - "y": 288.88500000000005 + "y": 288.885 }, { "body": null, @@ -18094,7 +18094,7 @@ "index": 9, "isInternal": false, "x": 425.808, - "y": 278.70900000000006 + "y": 278.709 }, { "body": null, @@ -18108,56 +18108,56 @@ "index": 11, "isInternal": false, "x": 427.594, - "y": 267.42800000000005 + "y": 267.428 }, { "body": null, "index": 12, "isInternal": false, "x": 430.993, - "y": 262.75100000000003 + "y": 262.751 }, { "body": null, "index": 13, "isInternal": false, "x": 435.67, - "y": 259.35200000000003 + "y": 259.352 }, { "body": null, "index": 14, "isInternal": false, "x": 441.169, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, "index": 15, "isInternal": false, "x": 446.951, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, "index": 16, "isInternal": false, "x": 452.45, - "y": 259.35200000000003 + "y": 259.352 }, { "body": null, "index": 17, "isInternal": false, "x": 457.127, - "y": 262.75100000000003 + "y": 262.751 }, { "body": null, "index": 18, "isInternal": false, "x": 460.526, - "y": 267.42800000000005 + "y": 267.428 }, { "body": null, @@ -18171,14 +18171,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2730.0490020000007, + "area": 2730.049, "axes": { "#": 2002 }, "bounds": { "#": 2016 }, - "circleRadius": 29.622878086419753, + "circleRadius": 29.62288, "collisionFilter": { "#": 2019 }, @@ -18193,13 +18193,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 4744.924363381941, - "inverseInertia": 0.000210751515391333, - "inverseMass": 0.36629379152806857, + "inertia": 4744.92436, + "inverseInertia": 0.00021, + "inverseMass": 0.36629, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.730049002000001, + "mass": 2.73005, "motion": 0, "parent": null, "position": { @@ -18272,52 +18272,52 @@ } ], { - "x": -0.9709363184970072, - "y": -0.23933797321670056 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854612825518478, - "y": -0.46471315572257776 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485285981139811, - "y": -0.6631025092740324 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680372022951283, - "y": -0.8230028777645456 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.354574024436084, - "y": -0.9350279467455501 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12056973958972958, - "y": -0.992704859409515 + "x": -0.12057, + "y": -0.9927 }, { - "x": 0.12056973958972958, - "y": -0.992704859409515 + "x": 0.12057, + "y": -0.9927 }, { - "x": 0.354574024436084, - "y": -0.9350279467455501 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680372022951283, - "y": -0.8230028777645456 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.7485285981139811, - "y": -0.6631025092740324 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854612825518478, - "y": -0.46471315572257776 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709363184970072, - "y": -0.23933797321670056 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -18337,7 +18337,7 @@ }, { "x": 472.312, - "y": 257.56600000000003 + "y": 257.566 }, { "category": 1, @@ -18467,14 +18467,14 @@ "index": 0, "isInternal": false, "x": 531.126, - "y": 290.76000000000005 + "y": 290.76 }, { "body": null, "index": 1, "isInternal": false, - "x": 529.4169999999999, - "y": 297.69300000000004 + "x": 529.417, + "y": 297.693 }, { "body": null, @@ -18495,7 +18495,7 @@ "index": 4, "isInternal": false, "x": 515.485, - "y": 313.41900000000004 + "y": 313.419 }, { "body": null, @@ -18523,7 +18523,7 @@ "index": 8, "isInternal": false, "x": 487.953, - "y": 313.41900000000004 + "y": 313.419 }, { "body": null, @@ -18544,28 +18544,28 @@ "index": 11, "isInternal": false, "x": 474.021, - "y": 297.69300000000004 + "y": 297.693 }, { "body": null, "index": 12, "isInternal": false, "x": 472.312, - "y": 290.76000000000005 + "y": 290.76 }, { "body": null, "index": 13, "isInternal": false, "x": 472.312, - "y": 283.61800000000005 + "y": 283.618 }, { "body": null, "index": 14, "isInternal": false, "x": 474.021, - "y": 276.68500000000006 + "y": 276.685 }, { "body": null, @@ -18586,7 +18586,7 @@ "index": 17, "isInternal": false, "x": 487.953, - "y": 260.95900000000006 + "y": 260.959 }, { "body": null, @@ -18600,7 +18600,7 @@ "index": 19, "isInternal": false, "x": 501.719, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, @@ -18614,7 +18614,7 @@ "index": 21, "isInternal": false, "x": 515.485, - "y": 260.95900000000006 + "y": 260.959 }, { "body": null, @@ -18634,29 +18634,29 @@ "body": null, "index": 24, "isInternal": false, - "x": 529.4169999999999, - "y": 276.68500000000006 + "x": 529.417, + "y": 276.685 }, { "body": null, "index": 25, "isInternal": false, "x": 531.126, - "y": 283.61800000000005 + "y": 283.618 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 837.1561759999998, + "area": 837.15618, "axes": { "#": 2056 }, "bounds": { "#": 2066 }, - "circleRadius": 16.491062242798353, + "circleRadius": 16.49106, "collisionFilter": { "#": 2069 }, @@ -18671,13 +18671,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 446.1998710095896, - "inverseInertia": 0.0022411481153890972, - "inverseMass": 1.1945202444519745, + "inertia": 446.19987, + "inverseInertia": 0.00224, + "inverseMass": 1.19452, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8371561759999999, + "mass": 0.83716, "motion": 0, "parent": null, "position": { @@ -18738,36 +18738,36 @@ } ], { - "x": -0.9396863246024094, - "y": -0.34203744145227044 + "x": -0.93969, + "y": -0.34204 }, { - "x": -0.7659696479015781, - "y": -0.64287673662494 + "x": -0.76597, + "y": -0.64288 }, { - "x": -0.5000448704318415, - "y": -0.8659994962786081 + "x": -0.50004, + "y": -0.866 }, { - "x": -0.17356618334402651, - "y": -0.9848222073041345 + "x": -0.17357, + "y": -0.98482 }, { - "x": 0.17356618334402651, - "y": -0.9848222073041345 + "x": 0.17357, + "y": -0.98482 }, { - "x": 0.5000448704318415, - "y": -0.8659994962786081 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7659696479015781, - "y": -0.64287673662494 + "x": 0.76597, + "y": -0.64288 }, { - "x": 0.9396863246024094, - "y": -0.34203744145227044 + "x": 0.93969, + "y": -0.34204 }, { "x": 1, @@ -18787,7 +18787,7 @@ }, { "x": 541.126, - "y": 257.56600000000003 + "y": 257.566 }, { "category": 1, @@ -18914,7 +18914,7 @@ "index": 3, "isInternal": false, "x": 563.007, - "y": 289.55400000000003 + "y": 289.554 }, { "body": null, @@ -18928,20 +18928,20 @@ "index": 5, "isInternal": false, "x": 551.727, - "y": 289.55400000000003 + "y": 289.554 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.7669999999999, + "x": 546.767, "y": 286.69 }, { "body": null, "index": 7, "isInternal": false, - "x": 543.0849999999999, + "x": 543.085, "y": 282.303 }, { @@ -18962,14 +18962,14 @@ "body": null, "index": 10, "isInternal": false, - "x": 543.0849999999999, - "y": 265.81100000000004 + "x": 543.085, + "y": 265.811 }, { "body": null, "index": 11, "isInternal": false, - "x": 546.7669999999999, + "x": 546.767, "y": 261.424 }, { @@ -18984,7 +18984,7 @@ "index": 13, "isInternal": false, "x": 557.367, - "y": 257.56600000000003 + "y": 257.566 }, { "body": null, @@ -19005,7 +19005,7 @@ "index": 16, "isInternal": false, "x": 571.649, - "y": 265.81100000000004 + "y": 265.811 }, { "body": null, @@ -19019,14 +19019,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1832.5456639999998, + "area": 1832.54566, "axes": { "#": 2098 }, "bounds": { "#": 2112 }, - "circleRadius": 24.269740226337447, + "circleRadius": 24.26974, "collisionFilter": { "#": 2115 }, @@ -19041,13 +19041,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 2137.952342345815, - "inverseInertia": 0.0004677372737423955, - "inverseMass": 0.5456889940833693, + "inertia": 2137.95234, + "inverseInertia": 0.00047, + "inverseMass": 0.54569, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8325456639999997, + "mass": 1.83255, "motion": 0, "parent": null, "position": { @@ -19120,52 +19120,52 @@ } ], { - "x": -0.970951377249592, - "y": -0.23927687522433155 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854699897202892, - "y": -0.4646965647653864 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7484645502186983, - "y": -0.6631748012899176 + "x": -0.74846, + "y": -0.66317 }, { - "x": -0.568116313280717, - "y": -0.8229482696891259 + "x": -0.56812, + "y": -0.82295 }, { - "x": -0.354623322192599, - "y": -0.9350092509473285 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12049981262239128, - "y": -0.9927133499444684 + "x": -0.1205, + "y": -0.99271 }, { - "x": 0.12049981262239128, - "y": -0.9927133499444684 + "x": 0.1205, + "y": -0.99271 }, { - "x": 0.354623322192599, - "y": -0.9350092509473285 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.568116313280717, - "y": -0.8229482696891259 + "x": 0.56812, + "y": -0.82295 }, { - "x": 0.7484645502186983, - "y": -0.6631748012899176 + "x": 0.74846, + "y": -0.66317 }, { - "x": 0.8854699897202892, - "y": -0.4646965647653864 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.970951377249592, - "y": -0.23927687522433155 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -19180,12 +19180,12 @@ } }, { - "x": 631.7939999999999, + "x": 631.794, "y": 306.106 }, { "x": 583.608, - "y": 257.56600000000003 + "y": 257.566 }, { "category": 1, @@ -19202,7 +19202,7 @@ "y": 0 }, { - "x": 607.7009999999999, + "x": 607.701, "y": 281.836 }, { @@ -19210,7 +19210,7 @@ "y": 0 }, { - "x": 607.7009999999999, + "x": 607.701, "y": 281.836 }, { @@ -19314,14 +19314,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.7939999999999, + "x": 631.794, "y": 284.761 }, { "body": null, "index": 1, "isInternal": false, - "x": 630.3939999999999, + "x": 630.394, "y": 290.442 }, { @@ -19342,56 +19342,56 @@ "body": null, "index": 4, "isInternal": false, - "x": 618.9799999999999, + "x": 618.98, "y": 303.326 }, { "body": null, "index": 5, "isInternal": false, - "x": 613.5089999999999, + "x": 613.509, "y": 305.401 }, { "body": null, "index": 6, "isInternal": false, - "x": 607.7009999999999, + "x": 607.701, "y": 306.106 }, { "body": null, "index": 7, "isInternal": false, - "x": 601.8929999999999, + "x": 601.893, "y": 305.401 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4219999999999, + "x": 596.422, "y": 303.326 }, { "body": null, "index": 9, "isInternal": false, - "x": 591.6069999999999, + "x": 591.607, "y": 300.002 }, { "body": null, "index": 10, "isInternal": false, - "x": 587.7269999999999, + "x": 587.727, "y": 295.623 }, { "body": null, "index": 11, "isInternal": false, - "x": 585.0079999999999, + "x": 585.008, "y": 290.442 }, { @@ -19412,56 +19412,56 @@ "body": null, "index": 14, "isInternal": false, - "x": 585.0079999999999, + "x": 585.008, "y": 273.23 }, { "body": null, "index": 15, "isInternal": false, - "x": 587.7269999999999, + "x": 587.727, "y": 268.049 }, { "body": null, "index": 16, "isInternal": false, - "x": 591.6069999999999, + "x": 591.607, "y": 263.67 }, { "body": null, "index": 17, "isInternal": false, - "x": 596.4219999999999, + "x": 596.422, "y": 260.346 }, { "body": null, "index": 18, "isInternal": false, - "x": 601.8929999999999, + "x": 601.893, "y": 258.271 }, { "body": null, "index": 19, "isInternal": false, - "x": 607.7009999999999, - "y": 257.56600000000003 + "x": 607.701, + "y": 257.566 }, { "body": null, "index": 20, "isInternal": false, - "x": 613.5089999999999, + "x": 613.509, "y": 258.271 }, { "body": null, "index": 21, "isInternal": false, - "x": 618.9799999999999, + "x": 618.98, "y": 260.346 }, { @@ -19482,14 +19482,14 @@ "body": null, "index": 24, "isInternal": false, - "x": 630.3939999999999, + "x": 630.394, "y": 273.23 }, { "body": null, "index": 25, "isInternal": false, - "x": 631.7939999999999, + "x": 631.794, "y": 278.911 }, { @@ -19497,14 +19497,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2662.7031859999993, + "area": 2662.70319, "axes": { "#": 2152 }, "bounds": { "#": 2166 }, - "circleRadius": 29.255208333333336, + "circleRadius": 29.25521, "collisionFilter": { "#": 2169 }, @@ -19519,13 +19519,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 4513.71283136672, - "inverseInertia": 0.00022154710265367218, - "inverseMass": 0.3755581941155946, + "inertia": 4513.71283, + "inverseInertia": 0.00022, + "inverseMass": 0.37556, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6627031859999994, + "mass": 2.6627, "motion": 0, "parent": null, "position": { @@ -19598,52 +19598,52 @@ } ], { - "x": -0.9709378772487557, - "y": -0.23933164964893425 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854927136371952, - "y": -0.4646532622240331 + "x": -0.88549, + "y": -0.46465 }, { - "x": -0.7484956802859418, - "y": -0.6631396659779034 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.568044391747725, - "y": -0.8229979155526198 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.3545858497834421, - "y": -0.9350234623437822 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12052615754469004, - "y": -0.9927101517298554 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052615754469004, - "y": -0.9927101517298554 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3545858497834421, - "y": -0.9350234623437822 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.568044391747725, - "y": -0.8229979155526198 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.7484956802859418, - "y": -0.6631396659779034 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854927136371952, - "y": -0.4646532622240331 + "x": 0.88549, + "y": -0.46465 }, { - "x": 0.9709378772487557, - "y": -0.23933164964893425 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -19799,22 +19799,22 @@ "body": null, "index": 1, "isInternal": false, - "x": 156.39600000000002, - "y": 366.44100000000003 + "x": 156.396, + "y": 366.441 }, { "body": null, "index": 2, "isInternal": false, "x": 153.119, - "y": 372.68600000000004 + "y": 372.686 }, { "body": null, "index": 3, "isInternal": false, "x": 148.442, - "y": 377.96500000000003 + "y": 377.965 }, { "body": null, @@ -19856,21 +19856,21 @@ "index": 9, "isInternal": false, "x": 109.642, - "y": 377.96500000000003 + "y": 377.965 }, { "body": null, "index": 10, "isInternal": false, "x": 104.965, - "y": 372.68600000000004 + "y": 372.686 }, { "body": null, "index": 11, "isInternal": false, "x": 101.688, - "y": 366.44100000000003 + "y": 366.441 }, { "body": null, @@ -19919,7 +19919,7 @@ "index": 18, "isInternal": false, "x": 122.041, - "y": 327.66200000000003 + "y": 327.662 }, { "body": null, @@ -19933,7 +19933,7 @@ "index": 20, "isInternal": false, "x": 136.043, - "y": 327.66200000000003 + "y": 327.662 }, { "body": null, @@ -19960,7 +19960,7 @@ "body": null, "index": 24, "isInternal": false, - "x": 156.39600000000002, + "x": 156.396, "y": 345.693 }, { @@ -19975,14 +19975,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1305.135712, + "area": 1305.13571, "axes": { "#": 2206 }, "bounds": { "#": 2218 }, - "circleRadius": 20.521540637860085, + "circleRadius": 20.52154, "collisionFilter": { "#": 2221 }, @@ -19997,13 +19997,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1084.445370223285, - "inverseInertia": 0.0009221303603279731, - "inverseMass": 0.7662038444014319, + "inertia": 1084.44537, + "inverseInertia": 0.00092, + "inverseMass": 0.7662, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.305135712, + "mass": 1.30514, "motion": 0, "parent": null, "position": { @@ -20070,44 +20070,44 @@ } ], { - "x": -0.9594690362006828, - "y": -0.2818140673780016 + "x": -0.95947, + "y": -0.28181 }, { - "x": -0.8412563391286896, - "y": -0.5406364507465208 + "x": -0.84126, + "y": -0.54064 }, { - "x": -0.654884909729583, - "y": -0.7557286252408836 + "x": -0.65488, + "y": -0.75573 }, { - "x": -0.41536319054833765, - "y": -0.9096556600920512 + "x": -0.41536, + "y": -0.90966 }, { - "x": -0.14242786467425667, - "y": -0.9898051845511477 + "x": -0.14243, + "y": -0.98981 }, { - "x": 0.14242786467425667, - "y": -0.9898051845511477 + "x": 0.14243, + "y": -0.98981 }, { - "x": 0.41536319054833765, - "y": -0.9096556600920512 + "x": 0.41536, + "y": -0.90966 }, { - "x": 0.654884909729583, - "y": -0.7557286252408836 + "x": 0.65488, + "y": -0.75573 }, { - "x": 0.8412563391286896, - "y": -0.5406364507465208 + "x": 0.84126, + "y": -0.54064 }, { - "x": 0.9594690362006828, - "y": -0.2818140673780016 + "x": 0.95947, + "y": -0.28181 }, { "x": 1, @@ -20122,7 +20122,7 @@ } }, { - "x": 208.70999999999998, + "x": 208.71, "y": 367.856 }, { @@ -20244,7 +20244,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 208.70999999999998, + "x": 208.71, "y": 350.255 }, { @@ -20286,7 +20286,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 182.61499999999998, + "x": 182.615, "y": 367.024 }, { @@ -20300,7 +20300,7 @@ "body": null, "index": 8, "isInternal": false, - "x": 172.88799999999998, + "x": 172.888, "y": 360.773 }, { @@ -20335,7 +20335,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 172.88799999999998, + "x": 172.888, "y": 333.895 }, { @@ -20349,7 +20349,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 182.61499999999998, + "x": 182.615, "y": 327.644 }, { @@ -20391,7 +20391,7 @@ "body": null, "index": 21, "isInternal": false, - "x": 208.70999999999998, + "x": 208.71, "y": 344.413 }, { @@ -20399,14 +20399,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 846.9227020000002, + "area": 846.9227, "axes": { "#": 2254 }, "bounds": { "#": 2264 }, - "circleRadius": 16.587255658436213, + "circleRadius": 16.58726, "collisionFilter": { "#": 2267 }, @@ -20421,13 +20421,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 456.671614806992, - "inverseInertia": 0.002189757295124727, - "inverseMass": 1.180745300177347, + "inertia": 456.67161, + "inverseInertia": 0.00219, + "inverseMass": 1.18075, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8469227020000002, + "mass": 0.84692, "motion": 0, "parent": null, "position": { @@ -20488,36 +20488,36 @@ } ], { - "x": -0.9397224538209651, - "y": -0.34193816661014065 + "x": -0.93972, + "y": -0.34194 }, { - "x": -0.7660398849238614, - "y": -0.6427930418928298 + "x": -0.76604, + "y": -0.64279 }, { - "x": -0.49994785700763544, - "y": -0.8660555064621855 + "x": -0.49995, + "y": -0.86606 }, { - "x": -0.17359717004583367, - "y": -0.9848167456700144 + "x": -0.1736, + "y": -0.98482 }, { - "x": 0.17359717004583367, - "y": -0.9848167456700144 + "x": 0.1736, + "y": -0.98482 }, { - "x": 0.49994785700763544, - "y": -0.8660555064621855 + "x": 0.49995, + "y": -0.86606 }, { - "x": 0.7660398849238614, - "y": -0.6427930418928298 + "x": 0.76604, + "y": -0.64279 }, { - "x": 0.9397224538209651, - "y": -0.34193816661014065 + "x": 0.93972, + "y": -0.34194 }, { "x": 1, @@ -20536,7 +20536,7 @@ "y": 359.986 }, { - "x": 218.70999999999998, + "x": 218.71, "y": 326.812 }, { @@ -20677,56 +20677,56 @@ "body": null, "index": 5, "isInternal": false, - "x": 229.37199999999999, + "x": 229.372, "y": 358.986 }, { "body": null, "index": 6, "isInternal": false, - "x": 224.38299999999998, + "x": 224.383, "y": 356.106 }, { "body": null, "index": 7, "isInternal": false, - "x": 220.67999999999998, + "x": 220.68, "y": 351.693 }, { "body": null, "index": 8, "isInternal": false, - "x": 218.70999999999998, + "x": 218.71, "y": 346.279 }, { "body": null, "index": 9, "isInternal": false, - "x": 218.70999999999998, + "x": 218.71, "y": 340.519 }, { "body": null, "index": 10, "isInternal": false, - "x": 220.67999999999998, + "x": 220.68, "y": 335.105 }, { "body": null, "index": 11, "isInternal": false, - "x": 224.38299999999998, + "x": 224.383, "y": 330.692 }, { "body": null, "index": 12, "isInternal": false, - "x": 229.37199999999999, + "x": 229.372, "y": 327.812 }, { @@ -20769,14 +20769,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 898.1826519999998, + "area": 898.18265, "axes": { "#": 2296 }, "bounds": { "#": 2306 }, - "circleRadius": 17.081983024691358, + "circleRadius": 17.08198, "collisionFilter": { "#": 2309 }, @@ -20791,13 +20791,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 513.6245747933785, - "inverseInertia": 0.0019469473406763707, - "inverseMass": 1.113359290310586, + "inertia": 513.62457, + "inverseInertia": 0.00195, + "inverseMass": 1.11336, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8981826519999999, + "mass": 0.89818, "motion": 0, "parent": null, "position": { @@ -20858,36 +20858,36 @@ } ], { - "x": -0.9396998827734749, - "y": -0.3420001905197095 + "x": -0.9397, + "y": -0.342 }, { - "x": -0.7661031888474107, - "y": -0.6427175927558143 + "x": -0.7661, + "y": -0.64272 }, { - "x": -0.4999461844763897, - "y": -0.8660564719621346 + "x": -0.49995, + "y": -0.86606 }, { - "x": -0.17363146536903049, - "y": -0.9848106996950241 + "x": -0.17363, + "y": -0.98481 }, { - "x": 0.17363146536903049, - "y": -0.9848106996950241 + "x": 0.17363, + "y": -0.98481 }, { - "x": 0.4999461844763897, - "y": -0.8660564719621346 + "x": 0.49995, + "y": -0.86606 }, { - "x": 0.7661031888474107, - "y": -0.6427175927558143 + "x": 0.7661, + "y": -0.64272 }, { - "x": 0.9396998827734749, - "y": -0.3420001905197095 + "x": 0.9397, + "y": -0.342 }, { "x": 1, @@ -21146,7 +21146,7 @@ "bounds": { "#": 2352 }, - "circleRadius": 24.41313014403292, + "circleRadius": 24.41313, "collisionFilter": { "#": 2355 }, @@ -21161,13 +21161,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 2188.839254784345, - "inverseInertia": 0.00045686315146907617, - "inverseMass": 0.5393085062914139, + "inertia": 2188.83925, + "inverseInertia": 0.00046, + "inverseMass": 0.53931, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.85422627, + "mass": 1.85423, "motion": 0, "parent": null, "position": { @@ -21240,52 +21240,52 @@ } ], { - "x": -0.9709566027946952, - "y": -0.2392556697120981 + "x": -0.97096, + "y": -0.23926 }, { - "x": -0.8854520946598297, - "y": -0.46473066184890355 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7484676895553821, - "y": -0.6631712581917494 + "x": -0.74847, + "y": -0.66317 }, { - "x": -0.5681140193004913, - "y": -0.8229498533168597 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.35460301319631593, - "y": -0.9350169533393997 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.120478534099192, - "y": -0.9927159325916501 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.120478534099192, - "y": -0.9927159325916501 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.35460301319631593, - "y": -0.9350169533393997 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5681140193004913, - "y": -0.8229498533168597 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484676895553821, - "y": -0.6631712581917494 + "x": 0.74847, + "y": -0.66317 }, { - "x": 0.8854520946598297, - "y": -0.46473066184890355 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709566027946952, - "y": -0.2392556697120981 + "x": 0.97096, + "y": -0.23926 }, { "x": 1, @@ -21301,7 +21301,7 @@ }, { "x": 353.494, - "y": 375.63800000000003 + "y": 375.638 }, { "x": 305.024, @@ -21455,56 +21455,56 @@ "body": null, "index": 3, "isInternal": false, - "x": 345.44800000000004, - "y": 369.49800000000005 + "x": 345.448, + "y": 369.498 }, { "body": null, "index": 4, "isInternal": false, - "x": 340.60400000000004, - "y": 372.84200000000004 + "x": 340.604, + "y": 372.842 }, { "body": null, "index": 5, "isInternal": false, "x": 335.101, - "y": 374.92900000000003 + "y": 374.929 }, { "body": null, "index": 6, "isInternal": false, "x": 329.259, - "y": 375.63800000000003 + "y": 375.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.41700000000003, - "y": 374.92900000000003 + "x": 323.417, + "y": 374.929 }, { "body": null, "index": 8, "isInternal": false, "x": 317.914, - "y": 372.84200000000004 + "y": 372.842 }, { "body": null, "index": 9, "isInternal": false, "x": 313.07, - "y": 369.49800000000005 + "y": 369.498 }, { "body": null, "index": 10, "isInternal": false, - "x": 309.16700000000003, + "x": 309.167, "y": 365.093 }, { @@ -21526,20 +21526,20 @@ "index": 13, "isInternal": false, "x": 305.024, - "y": 348.28200000000004 + "y": 348.282 }, { "body": null, "index": 14, "isInternal": false, "x": 306.432, - "y": 342.56800000000004 + "y": 342.568 }, { "body": null, "index": 15, "isInternal": false, - "x": 309.16700000000003, + "x": 309.167, "y": 337.357 }, { @@ -21560,7 +21560,7 @@ "body": null, "index": 18, "isInternal": false, - "x": 323.41700000000003, + "x": 323.417, "y": 327.521 }, { @@ -21581,14 +21581,14 @@ "body": null, "index": 21, "isInternal": false, - "x": 340.60400000000004, + "x": 340.604, "y": 329.608 }, { "body": null, "index": 22, "isInternal": false, - "x": 345.44800000000004, + "x": 345.448, "y": 332.952 }, { @@ -21603,28 +21603,28 @@ "index": 24, "isInternal": false, "x": 352.086, - "y": 342.56800000000004 + "y": 342.568 }, { "body": null, "index": 25, "isInternal": false, "x": 353.494, - "y": 348.28200000000004 + "y": 348.282 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 729.1471280000001, + "area": 729.14713, "axes": { "#": 2392 }, "bounds": { "#": 2401 }, - "circleRadius": 15.432548868312757, + "circleRadius": 15.43255, "collisionFilter": { "#": 2404 }, @@ -21639,13 +21639,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 338.50797726007636, - "inverseInertia": 0.0029541401301503094, - "inverseMass": 1.3714653210565755, + "inertia": 338.50798, + "inverseInertia": 0.00295, + "inverseMass": 1.37147, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.729147128, + "mass": 0.72915, "motion": 0, "parent": null, "position": { @@ -21703,32 +21703,32 @@ } ], { - "x": -0.9238953882746169, - "y": -0.3826451509230121 + "x": -0.9239, + "y": -0.38265 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826451509230121, - "y": -0.9238953882746169 + "x": -0.38265, + "y": -0.9239 }, { "x": 0, "y": -1 }, { - "x": 0.3826451509230121, - "y": -0.9238953882746169 + "x": 0.38265, + "y": -0.9239 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238953882746169, - "y": -0.3826451509230121 + "x": 0.9239, + "y": -0.38265 }, { "x": 1, @@ -21743,8 +21743,8 @@ } }, { - "x": 393.7660000000001, - "y": 357.08400000000006 + "x": 393.766, + "y": 357.084 }, { "x": 363.494, @@ -21765,16 +21765,16 @@ "y": 0 }, { - "x": 378.63000000000005, - "y": 341.94800000000004 + "x": 378.63, + "y": 341.948 }, { "x": 0, "y": 0 }, { - "x": 378.63000000000005, - "y": 341.94800000000004 + "x": 378.63, + "y": 341.948 }, { "fillStyle": "#C7F464", @@ -21847,57 +21847,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 393.7660000000001, - "y": 344.95900000000006 + "x": 393.766, + "y": 344.959 }, { "body": null, "index": 1, "isInternal": false, - "x": 391.46200000000005, - "y": 350.52200000000005 + "x": 391.462, + "y": 350.522 }, { "body": null, "index": 2, "isInternal": false, - "x": 387.20400000000006, - "y": 354.78000000000003 + "x": 387.204, + "y": 354.78 }, { "body": null, "index": 3, "isInternal": false, - "x": 381.6410000000001, - "y": 357.08400000000006 + "x": 381.641, + "y": 357.084 }, { "body": null, "index": 4, "isInternal": false, "x": 375.619, - "y": 357.08400000000006 + "y": 357.084 }, { "body": null, "index": 5, "isInternal": false, - "x": 370.05600000000004, - "y": 354.78000000000003 + "x": 370.056, + "y": 354.78 }, { "body": null, "index": 6, "isInternal": false, - "x": 365.79800000000006, - "y": 350.52200000000005 + "x": 365.798, + "y": 350.522 }, { "body": null, "index": 7, "isInternal": false, "x": 363.494, - "y": 344.95900000000006 + "y": 344.959 }, { "body": null, @@ -21910,15 +21910,15 @@ "body": null, "index": 9, "isInternal": false, - "x": 365.79800000000006, + "x": 365.798, "y": 333.374 }, { "body": null, "index": 10, "isInternal": false, - "x": 370.05600000000004, - "y": 329.11600000000004 + "x": 370.056, + "y": 329.116 }, { "body": null, @@ -21931,28 +21931,28 @@ "body": null, "index": 12, "isInternal": false, - "x": 381.6410000000001, + "x": 381.641, "y": 326.812 }, { "body": null, "index": 13, "isInternal": false, - "x": 387.20400000000006, - "y": 329.11600000000004 + "x": 387.204, + "y": 329.116 }, { "body": null, "index": 14, "isInternal": false, - "x": 391.46200000000005, + "x": 391.462, "y": 333.374 }, { "body": null, "index": 15, "isInternal": false, - "x": 393.7660000000001, + "x": 393.766, "y": 338.937 }, { @@ -21960,14 +21960,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2457.1139139999996, + "area": 2457.11391, "axes": { "#": 2431 }, "bounds": { "#": 2445 }, - "circleRadius": 28.10320216049383, + "circleRadius": 28.1032, "collisionFilter": { "#": 2448 }, @@ -21982,13 +21982,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 3843.6071437918877, - "inverseInertia": 0.0002601722711477365, - "inverseMass": 0.4069815380973013, + "inertia": 3843.60714, + "inverseInertia": 0.00026, + "inverseMass": 0.40698, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.457113914, + "mass": 2.45711, "motion": 0, "parent": null, "position": { @@ -22061,52 +22061,52 @@ } ], { - "x": -0.9709616307279268, - "y": -0.2392352642362013 + "x": -0.97096, + "y": -0.23924 }, { - "x": -0.8853948651753996, - "y": -0.4648396849678782 + "x": -0.88539, + "y": -0.46484 }, { - "x": -0.7486132968273784, - "y": -0.6630068867012192 + "x": -0.74861, + "y": -0.66301 }, { - "x": -0.5679812762543772, - "y": -0.8230414751544717 + "x": -0.56798, + "y": -0.82304 }, { - "x": -0.35471208146034855, - "y": -0.9349755821763834 + "x": -0.35471, + "y": -0.93498 }, { - "x": -0.12043715406212079, - "y": -0.9927209537032132 + "x": -0.12044, + "y": -0.99272 }, { - "x": 0.12043715406212079, - "y": -0.9927209537032132 + "x": 0.12044, + "y": -0.99272 }, { - "x": 0.35471208146034855, - "y": -0.9349755821763834 + "x": 0.35471, + "y": -0.93498 }, { - "x": 0.5679812762543772, - "y": -0.8230414751544717 + "x": 0.56798, + "y": -0.82304 }, { - "x": 0.7486132968273784, - "y": -0.6630068867012192 + "x": 0.74861, + "y": -0.66301 }, { - "x": 0.8853948651753996, - "y": -0.4648396849678782 + "x": 0.88539, + "y": -0.46484 }, { - "x": 0.9709616307279268, - "y": -0.2392352642362013 + "x": 0.97096, + "y": -0.23924 }, { "x": 1, @@ -22121,11 +22121,11 @@ } }, { - "x": 459.5620000000001, - "y": 383.01800000000003 + "x": 459.562, + "y": 383.018 }, { - "x": 403.7660000000001, + "x": 403.766, "y": 326.812 }, { @@ -22143,7 +22143,7 @@ "y": 0 }, { - "x": 431.6640000000001, + "x": 431.664, "y": 354.915 }, { @@ -22151,7 +22151,7 @@ "y": 0 }, { - "x": 431.6640000000001, + "x": 431.664, "y": 354.915 }, { @@ -22255,182 +22255,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 459.5620000000001, + "x": 459.562, "y": 358.302 }, { "body": null, "index": 1, "isInternal": false, - "x": 457.9410000000001, - "y": 364.88100000000003 + "x": 457.941, + "y": 364.881 }, { "body": null, "index": 2, "isInternal": false, - "x": 454.7920000000001, + "x": 454.792, "y": 370.879 }, { "body": null, "index": 3, "isInternal": false, - "x": 450.3000000000001, + "x": 450.3, "y": 375.951 }, { "body": null, "index": 4, "isInternal": false, - "x": 444.7240000000001, - "y": 379.79900000000004 + "x": 444.724, + "y": 379.799 }, { "body": null, "index": 5, "isInternal": false, - "x": 438.3900000000001, + "x": 438.39, "y": 382.202 }, { "body": null, "index": 6, "isInternal": false, - "x": 431.6640000000001, - "y": 383.01800000000003 + "x": 431.664, + "y": 383.018 }, { "body": null, "index": 7, "isInternal": false, - "x": 424.9380000000001, + "x": 424.938, "y": 382.202 }, { "body": null, "index": 8, "isInternal": false, - "x": 418.6040000000001, - "y": 379.79900000000004 + "x": 418.604, + "y": 379.799 }, { "body": null, "index": 9, "isInternal": false, - "x": 413.0280000000001, + "x": 413.028, "y": 375.951 }, { "body": null, "index": 10, "isInternal": false, - "x": 408.5360000000001, + "x": 408.536, "y": 370.879 }, { "body": null, "index": 11, "isInternal": false, - "x": 405.3870000000001, - "y": 364.88100000000003 + "x": 405.387, + "y": 364.881 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.7660000000001, + "x": 403.766, "y": 358.302 }, { "body": null, "index": 13, "isInternal": false, - "x": 403.7660000000001, + "x": 403.766, "y": 351.528 }, { "body": null, "index": 14, "isInternal": false, - "x": 405.3870000000001, + "x": 405.387, "y": 344.949 }, { "body": null, "index": 15, "isInternal": false, - "x": 408.5360000000001, + "x": 408.536, "y": 338.951 }, { "body": null, "index": 16, "isInternal": false, - "x": 413.0280000000001, + "x": 413.028, "y": 333.879 }, { "body": null, "index": 17, "isInternal": false, - "x": 418.6040000000001, + "x": 418.604, "y": 330.031 }, { "body": null, "index": 18, "isInternal": false, - "x": 424.9380000000001, - "y": 327.62800000000004 + "x": 424.938, + "y": 327.628 }, { "body": null, "index": 19, "isInternal": false, - "x": 431.6640000000001, + "x": 431.664, "y": 326.812 }, { "body": null, "index": 20, "isInternal": false, - "x": 438.3900000000001, - "y": 327.62800000000004 + "x": 438.39, + "y": 327.628 }, { "body": null, "index": 21, "isInternal": false, - "x": 444.7240000000001, + "x": 444.724, "y": 330.031 }, { "body": null, "index": 22, "isInternal": false, - "x": 450.3000000000001, + "x": 450.3, "y": 333.879 }, { "body": null, "index": 23, "isInternal": false, - "x": 454.7920000000001, + "x": 454.792, "y": 338.951 }, { "body": null, "index": 24, "isInternal": false, - "x": 457.9410000000001, + "x": 457.941, "y": 344.949 }, { "body": null, "index": 25, "isInternal": false, - "x": 459.5620000000001, + "x": 459.562, "y": 351.528 }, { @@ -22438,14 +22438,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1019.7387239999998, + "area": 1019.73872, "axes": { "#": 2485 }, "bounds": { "#": 2496 }, - "circleRadius": 18.165830761316872, + "circleRadius": 18.16583, "collisionFilter": { "#": 2499 }, @@ -22460,13 +22460,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 662.0361846508167, - "inverseInertia": 0.0015104914552781406, - "inverseMass": 0.9806433515414879, + "inertia": 662.03618, + "inverseInertia": 0.00151, + "inverseMass": 0.98064, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0197387239999998, + "mass": 1.01974, "motion": 0, "parent": null, "position": { @@ -22530,40 +22530,40 @@ } ], { - "x": -0.9510663909208378, - "y": -0.3089866017496747 + "x": -0.95107, + "y": -0.30899 }, { - "x": -0.808987086398412, - "y": -0.5878264148884501 + "x": -0.80899, + "y": -0.58783 }, { - "x": -0.5878264148884501, - "y": -0.808987086398412 + "x": -0.58783, + "y": -0.80899 }, { - "x": -0.3089866017496747, - "y": -0.9510663909208378 + "x": -0.30899, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089866017496747, - "y": -0.9510663909208378 + "x": 0.30899, + "y": -0.95107 }, { - "x": 0.5878264148884501, - "y": -0.808987086398412 + "x": 0.58783, + "y": -0.80899 }, { - "x": 0.808987086398412, - "y": -0.5878264148884501 + "x": 0.80899, + "y": -0.58783 }, { - "x": 0.9510663909208378, - "y": -0.3089866017496747 + "x": 0.95107, + "y": -0.30899 }, { "x": 1, @@ -22578,11 +22578,11 @@ } }, { - "x": 505.44600000000014, + "x": 505.446, "y": 362.696 }, { - "x": 469.5620000000001, + "x": 469.562, "y": 326.812 }, { @@ -22600,7 +22600,7 @@ "y": 0 }, { - "x": 487.50400000000013, + "x": 487.504, "y": 344.754 }, { @@ -22608,7 +22608,7 @@ "y": 0 }, { - "x": 487.50400000000013, + "x": 487.504, "y": 344.754 }, { @@ -22694,155 +22694,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.44600000000014, + "x": 505.446, "y": 347.596 }, { "body": null, "index": 1, "isInternal": false, - "x": 503.6900000000001, - "y": 353.00100000000003 + "x": 503.69, + "y": 353.001 }, { "body": null, "index": 2, "isInternal": false, - "x": 500.34900000000016, - "y": 357.59900000000005 + "x": 500.349, + "y": 357.599 }, { "body": null, "index": 3, "isInternal": false, - "x": 495.75100000000015, + "x": 495.751, "y": 360.94 }, { "body": null, "index": 4, "isInternal": false, - "x": 490.3460000000001, + "x": 490.346, "y": 362.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 484.66200000000015, + "x": 484.662, "y": 362.696 }, { "body": null, "index": 6, "isInternal": false, - "x": 479.2570000000001, + "x": 479.257, "y": 360.94 }, { "body": null, "index": 7, "isInternal": false, - "x": 474.6590000000001, - "y": 357.59900000000005 + "x": 474.659, + "y": 357.599 }, { "body": null, "index": 8, "isInternal": false, - "x": 471.31800000000015, - "y": 353.00100000000003 + "x": 471.318, + "y": 353.001 }, { "body": null, "index": 9, "isInternal": false, - "x": 469.5620000000001, + "x": 469.562, "y": 347.596 }, { "body": null, "index": 10, "isInternal": false, - "x": 469.5620000000001, - "y": 341.91200000000003 + "x": 469.562, + "y": 341.912 }, { "body": null, "index": 11, "isInternal": false, - "x": 471.31800000000015, + "x": 471.318, "y": 336.507 }, { "body": null, "index": 12, "isInternal": false, - "x": 474.6590000000001, + "x": 474.659, "y": 331.909 }, { "body": null, "index": 13, "isInternal": false, - "x": 479.2570000000001, - "y": 328.56800000000004 + "x": 479.257, + "y": 328.568 }, { "body": null, "index": 14, "isInternal": false, - "x": 484.66200000000015, + "x": 484.662, "y": 326.812 }, { "body": null, "index": 15, "isInternal": false, - "x": 490.3460000000001, + "x": 490.346, "y": 326.812 }, { "body": null, "index": 16, "isInternal": false, - "x": 495.75100000000015, - "y": 328.56800000000004 + "x": 495.751, + "y": 328.568 }, { "body": null, "index": 17, "isInternal": false, - "x": 500.34900000000016, + "x": 500.349, "y": 331.909 }, { "body": null, "index": 18, "isInternal": false, - "x": 503.6900000000001, + "x": 503.69, "y": 336.507 }, { "body": null, "index": 19, "isInternal": false, - "x": 505.44600000000014, - "y": 341.91200000000003 + "x": 505.446, + "y": 341.912 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2071.7926880000005, + "area": 2071.79269, "axes": { "#": 2530 }, "bounds": { "#": 2544 }, - "circleRadius": 25.80561985596708, + "circleRadius": 25.80562, "collisionFilter": { "#": 2547 }, @@ -22857,13 +22857,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 2732.6310663398754, - "inverseInertia": 0.00036594768035752963, - "inverseMass": 0.48267377609356626, + "inertia": 2732.63107, + "inverseInertia": 0.00037, + "inverseMass": 0.48267, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.0717926880000004, + "mass": 2.07179, "motion": 0, "parent": null, "position": { @@ -22936,52 +22936,52 @@ } ], { - "x": -0.9709689408513394, - "y": -0.23920559337529684 + "x": -0.97097, + "y": -0.23921 }, { - "x": -0.8854442113024813, - "y": -0.46474568171304914 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.7484901643729688, - "y": -0.663145891819384 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680559468352687, - "y": -0.8229899399537556 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.3546445414924918, - "y": -0.935001202774403 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12055217685565543, - "y": -0.9927069923473707 + "x": -0.12055, + "y": -0.99271 }, { - "x": 0.12055217685565543, - "y": -0.9927069923473707 + "x": 0.12055, + "y": -0.99271 }, { - "x": 0.3546445414924918, - "y": -0.935001202774403 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680559468352687, - "y": -0.8229899399537556 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7484901643729688, - "y": -0.663145891819384 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854442113024813, - "y": -0.46474568171304914 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.9709689408513394, - "y": -0.23920559337529684 + "x": 0.97097, + "y": -0.23921 }, { "x": 1, @@ -22996,11 +22996,11 @@ } }, { - "x": 566.6800000000001, + "x": 566.68, "y": 378.424 }, { - "x": 515.4460000000001, + "x": 515.446, "y": 326.812 }, { @@ -23018,7 +23018,7 @@ "y": 0 }, { - "x": 541.0630000000001, + "x": 541.063, "y": 352.618 }, { @@ -23026,7 +23026,7 @@ "y": 0 }, { - "x": 541.0630000000001, + "x": 541.063, "y": 352.618 }, { @@ -23130,63 +23130,63 @@ "body": null, "index": 0, "isInternal": false, - "x": 566.6800000000001, + "x": 566.68, "y": 355.729 }, { "body": null, "index": 1, "isInternal": false, - "x": 565.1920000000001, + "x": 565.192, "y": 361.769 }, { "body": null, "index": 2, "isInternal": false, - "x": 562.3010000000002, + "x": 562.301, "y": 367.277 }, { "body": null, "index": 3, "isInternal": false, - "x": 558.1750000000001, - "y": 371.93399999999997 + "x": 558.175, + "y": 371.934 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.0550000000001, + "x": 553.055, "y": 375.468 }, { "body": null, "index": 5, "isInternal": false, - "x": 547.2390000000001, + "x": 547.239, "y": 377.674 }, { "body": null, "index": 6, "isInternal": false, - "x": 541.0630000000001, + "x": 541.063, "y": 378.424 }, { "body": null, "index": 7, "isInternal": false, - "x": 534.8870000000002, + "x": 534.887, "y": 377.674 }, { "body": null, "index": 8, "isInternal": false, - "x": 529.0710000000001, + "x": 529.071, "y": 375.468 }, { @@ -23194,7 +23194,7 @@ "index": 9, "isInternal": false, "x": 523.951, - "y": 371.93399999999997 + "y": 371.934 }, { "body": null, @@ -23207,28 +23207,28 @@ "body": null, "index": 11, "isInternal": false, - "x": 516.9340000000001, + "x": 516.934, "y": 361.769 }, { "body": null, "index": 12, "isInternal": false, - "x": 515.4460000000001, + "x": 515.446, "y": 355.729 }, { "body": null, "index": 13, "isInternal": false, - "x": 515.4460000000001, + "x": 515.446, "y": 349.507 }, { "body": null, "index": 14, "isInternal": false, - "x": 516.9340000000001, + "x": 516.934, "y": 343.467 }, { @@ -23249,63 +23249,63 @@ "body": null, "index": 17, "isInternal": false, - "x": 529.0710000000001, + "x": 529.071, "y": 329.768 }, { "body": null, "index": 18, "isInternal": false, - "x": 534.8870000000002, + "x": 534.887, "y": 327.562 }, { "body": null, "index": 19, "isInternal": false, - "x": 541.0630000000001, + "x": 541.063, "y": 326.812 }, { "body": null, "index": 20, "isInternal": false, - "x": 547.2390000000001, + "x": 547.239, "y": 327.562 }, { "body": null, "index": 21, "isInternal": false, - "x": 553.0550000000001, + "x": 553.055, "y": 329.768 }, { "body": null, "index": 22, "isInternal": false, - "x": 558.1750000000001, + "x": 558.175, "y": 333.302 }, { "body": null, "index": 23, "isInternal": false, - "x": 562.3010000000002, + "x": 562.301, "y": 337.959 }, { "body": null, "index": 24, "isInternal": false, - "x": 565.1920000000001, + "x": 565.192, "y": 343.467 }, { "body": null, "index": 25, "isInternal": false, - "x": 566.6800000000001, + "x": 566.68, "y": 349.507 }, { @@ -23320,7 +23320,7 @@ "bounds": { "#": 2597 }, - "circleRadius": 22.31886574074074, + "circleRadius": 22.31887, "collisionFilter": { "#": 2600 }, @@ -23335,13 +23335,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1523.8575386219945, - "inverseInertia": 0.0006562293223973467, - "inverseMass": 0.6463586885583873, + "inertia": 1523.85754, + "inverseInertia": 0.00066, + "inverseMass": 0.64636, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.54712858, + "mass": 1.54713, "motion": 0, "parent": null, "position": { @@ -23411,48 +23411,48 @@ } ], { - "x": -0.9659266009741097, - "y": -0.2588161539212787 + "x": -0.96593, + "y": -0.25882 }, { - "x": -0.8660484012741211, - "y": -0.4999601650637169 + "x": -0.86605, + "y": -0.49996 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999601650637169, - "y": -0.8660484012741211 + "x": -0.49996, + "y": -0.86605 }, { - "x": -0.2588161539212787, - "y": -0.9659266009741097 + "x": -0.25882, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.2588161539212787, - "y": -0.9659266009741097 + "x": 0.25882, + "y": -0.96593 }, { - "x": 0.4999601650637169, - "y": -0.8660484012741211 + "x": 0.49996, + "y": -0.86605 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660484012741211, - "y": -0.4999601650637169 + "x": 0.86605, + "y": -0.49996 }, { - "x": 0.9659266009741097, - "y": -0.2588161539212787 + "x": 0.96593, + "y": -0.25882 }, { "x": 1, @@ -23467,11 +23467,11 @@ } }, { - "x": 620.9360000000001, + "x": 620.936, "y": 371.068 }, { - "x": 576.6800000000001, + "x": 576.68, "y": 326.812 }, { @@ -23489,7 +23489,7 @@ "y": 0 }, { - "x": 598.8080000000001, + "x": 598.808, "y": 348.94 }, { @@ -23497,7 +23497,7 @@ "y": 0 }, { - "x": 598.8080000000001, + "x": 598.808, "y": 348.94 }, { @@ -23595,49 +23595,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 620.9360000000001, + "x": 620.936, "y": 351.853 }, { "body": null, "index": 1, "isInternal": false, - "x": 619.4280000000001, + "x": 619.428, "y": 357.481 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.5150000000001, + "x": 616.515, "y": 362.527 }, { "body": null, "index": 3, "isInternal": false, - "x": 612.3950000000001, + "x": 612.395, "y": 366.647 }, { "body": null, "index": 4, "isInternal": false, - "x": 607.3490000000002, + "x": 607.349, "y": 369.56 }, { "body": null, "index": 5, "isInternal": false, - "x": 601.7210000000001, + "x": 601.721, "y": 371.068 }, { "body": null, "index": 6, "isInternal": false, - "x": 595.8950000000001, + "x": 595.895, "y": 371.068 }, { @@ -23651,56 +23651,56 @@ "body": null, "index": 8, "isInternal": false, - "x": 585.2210000000001, + "x": 585.221, "y": 366.647 }, { "body": null, "index": 9, "isInternal": false, - "x": 581.1010000000001, + "x": 581.101, "y": 362.527 }, { "body": null, "index": 10, "isInternal": false, - "x": 578.1880000000001, + "x": 578.188, "y": 357.481 }, { "body": null, "index": 11, "isInternal": false, - "x": 576.6800000000001, + "x": 576.68, "y": 351.853 }, { "body": null, "index": 12, "isInternal": false, - "x": 576.6800000000001, + "x": 576.68, "y": 346.027 }, { "body": null, "index": 13, "isInternal": false, - "x": 578.1880000000001, + "x": 578.188, "y": 340.399 }, { "body": null, "index": 14, "isInternal": false, - "x": 581.1010000000001, + "x": 581.101, "y": 335.353 }, { "body": null, "index": 15, "isInternal": false, - "x": 585.2210000000001, + "x": 585.221, "y": 331.233 }, { @@ -23714,49 +23714,49 @@ "body": null, "index": 17, "isInternal": false, - "x": 595.8950000000001, + "x": 595.895, "y": 326.812 }, { "body": null, "index": 18, "isInternal": false, - "x": 601.7210000000001, + "x": 601.721, "y": 326.812 }, { "body": null, "index": 19, "isInternal": false, - "x": 607.3490000000002, + "x": 607.349, "y": 328.32 }, { "body": null, "index": 20, "isInternal": false, - "x": 612.3950000000001, + "x": 612.395, "y": 331.233 }, { "body": null, "index": 21, "isInternal": false, - "x": 616.5150000000001, + "x": 616.515, "y": 335.353 }, { "body": null, "index": 22, "isInternal": false, - "x": 619.4280000000001, + "x": 619.428, "y": 340.399 }, { "body": null, "index": 23, "isInternal": false, - "x": 620.9360000000001, + "x": 620.936, "y": 346.027 }, { @@ -23771,7 +23771,7 @@ "bounds": { "#": 2647 }, - "circleRadius": 21.779642489711932, + "circleRadius": 21.77964, "collisionFilter": { "#": 2650 }, @@ -23786,13 +23786,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 1375.7995858087013, - "inverseInertia": 0.0007268500516462908, - "inverseMass": 0.6802531774438849, + "inertia": 1375.79959, + "inverseInertia": 0.00073, + "inverseMass": 0.68025, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.47004091, + "mass": 1.47004, "motion": 0, "parent": null, "position": { @@ -23859,44 +23859,44 @@ } ], { - "x": -0.959470748479457, - "y": -0.28180823765864343 + "x": -0.95947, + "y": -0.28181 }, { - "x": -0.8412885288941503, - "y": -0.5405863586432017 + "x": -0.84129, + "y": -0.54059 }, { - "x": -0.654807695437231, - "y": -0.7557955292247914 + "x": -0.65481, + "y": -0.7558 }, { - "x": -0.4153823096539656, - "y": -0.909646929762607 + "x": -0.41538, + "y": -0.90965 }, { - "x": -0.14243754050093502, - "y": -0.989803792201285 + "x": -0.14244, + "y": -0.9898 }, { - "x": 0.14243754050093502, - "y": -0.989803792201285 + "x": 0.14244, + "y": -0.9898 }, { - "x": 0.4153823096539656, - "y": -0.909646929762607 + "x": 0.41538, + "y": -0.90965 }, { - "x": 0.654807695437231, - "y": -0.7557955292247914 + "x": 0.65481, + "y": -0.7558 }, { - "x": 0.8412885288941503, - "y": -0.5405863586432017 + "x": 0.84129, + "y": -0.54059 }, { - "x": 0.959470748479457, - "y": -0.28180823765864343 + "x": 0.95947, + "y": -0.28181 }, { "x": 1, @@ -23911,8 +23911,8 @@ } }, { - "x": 143.11599999999999, - "y": 438.88199999999995 + "x": 143.116, + "y": 438.882 }, { "x": 100, @@ -23933,7 +23933,7 @@ "y": 0 }, { - "x": 121.55799999999999, + "x": 121.558, "y": 417.102 }, { @@ -23941,7 +23941,7 @@ "y": 0 }, { - "x": 121.55799999999999, + "x": 121.558, "y": 417.102 }, { @@ -24033,7 +24033,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 143.11599999999999, + "x": 143.116, "y": 420.202 }, { @@ -24048,7 +24048,7 @@ "index": 2, "isInternal": false, "x": 138.018, - "y": 431.36499999999995 + "y": 431.365 }, { "body": null, @@ -24061,42 +24061,42 @@ "body": null, "index": 4, "isInternal": false, - "x": 127.69399999999999, - "y": 437.99899999999997 + "x": 127.694, + "y": 437.999 }, { "body": null, "index": 5, "isInternal": false, - "x": 121.55799999999999, - "y": 438.88199999999995 + "x": 121.558, + "y": 438.882 }, { "body": null, "index": 6, "isInternal": false, "x": 115.422, - "y": 437.99899999999997 + "y": 437.999 }, { "body": null, "index": 7, "isInternal": false, - "x": 109.78299999999999, + "x": 109.783, "y": 435.424 }, { "body": null, "index": 8, "isInternal": false, - "x": 105.09799999999998, - "y": 431.36499999999995 + "x": 105.098, + "y": 431.365 }, { "body": null, "index": 9, "isInternal": false, - "x": 101.74699999999999, + "x": 101.747, "y": 426.15 }, { @@ -24111,27 +24111,27 @@ "index": 11, "isInternal": false, "x": 100, - "y": 414.00199999999995 + "y": 414.002 }, { "body": null, "index": 12, "isInternal": false, - "x": 101.74699999999999, + "x": 101.747, "y": 408.054 }, { "body": null, "index": 13, "isInternal": false, - "x": 105.09799999999998, + "x": 105.098, "y": 402.839 }, { "body": null, "index": 14, "isInternal": false, - "x": 109.78299999999999, + "x": 109.783, "y": 398.78 }, { @@ -24145,14 +24145,14 @@ "body": null, "index": 16, "isInternal": false, - "x": 121.55799999999999, + "x": 121.558, "y": 395.322 }, { "body": null, "index": 17, "isInternal": false, - "x": 127.69399999999999, + "x": 127.694, "y": 396.205 }, { @@ -24180,22 +24180,22 @@ "body": null, "index": 21, "isInternal": false, - "x": 143.11599999999999, - "y": 414.00199999999995 + "x": 143.116, + "y": 414.002 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1601.2929020000001, + "area": 1601.2929, "axes": { "#": 2683 }, "bounds": { "#": 2696 }, - "circleRadius": 22.706468621399175, + "circleRadius": 22.70647, "collisionFilter": { "#": 2699 }, @@ -24210,13 +24210,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1632.4245112896238, - "inverseInertia": 0.0006125857539409249, - "inverseMass": 0.6244953679311319, + "inertia": 1632.42451, + "inverseInertia": 0.00061, + "inverseMass": 0.6245, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6012929020000002, + "mass": 1.60129, "motion": 0, "parent": null, "position": { @@ -24286,48 +24286,48 @@ } ], { - "x": -0.9659262112525419, - "y": -0.25881760839500406 + "x": -0.96593, + "y": -0.25882 }, { - "x": -0.866033897267781, - "y": -0.499985288566752 + "x": -0.86603, + "y": -0.49999 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.499985288566752, - "y": -0.866033897267781 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.25881760839500406, - "y": -0.9659262112525419 + "x": -0.25882, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.25881760839500406, - "y": -0.9659262112525419 + "x": 0.25882, + "y": -0.96593 }, { - "x": 0.499985288566752, - "y": -0.866033897267781 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.866033897267781, - "y": -0.499985288566752 + "x": 0.86603, + "y": -0.49999 }, { - "x": 0.9659262112525419, - "y": -0.25881760839500406 + "x": 0.96593, + "y": -0.25882 }, { "x": 1, @@ -24346,7 +24346,7 @@ "y": 440.346 }, { - "x": 153.11599999999999, + "x": 153.116, "y": 395.322 }, { @@ -24498,14 +24498,14 @@ "body": null, "index": 4, "isInternal": false, - "x": 184.31699999999998, + "x": 184.317, "y": 438.812 }, { "body": null, "index": 5, "isInternal": false, - "x": 178.59199999999998, + "x": 178.592, "y": 440.346 }, { @@ -24526,56 +24526,56 @@ "body": null, "index": 8, "isInternal": false, - "x": 161.80499999999998, + "x": 161.805, "y": 435.848 }, { "body": null, "index": 9, "isInternal": false, - "x": 157.61399999999998, + "x": 157.614, "y": 431.657 }, { "body": null, "index": 10, "isInternal": false, - "x": 154.64999999999998, + "x": 154.65, "y": 426.523 }, { "body": null, "index": 11, "isInternal": false, - "x": 153.11599999999999, + "x": 153.116, "y": 420.798 }, { "body": null, "index": 12, "isInternal": false, - "x": 153.11599999999999, + "x": 153.116, "y": 414.87 }, { "body": null, "index": 13, "isInternal": false, - "x": 154.64999999999998, + "x": 154.65, "y": 409.145 }, { "body": null, "index": 14, "isInternal": false, - "x": 157.61399999999998, + "x": 157.614, "y": 404.011 }, { "body": null, "index": 15, "isInternal": false, - "x": 161.80499999999998, + "x": 161.805, "y": 399.82 }, { @@ -24596,14 +24596,14 @@ "body": null, "index": 18, "isInternal": false, - "x": 178.59199999999998, + "x": 178.592, "y": 395.322 }, { "body": null, "index": 19, "isInternal": false, - "x": 184.31699999999998, + "x": 184.317, "y": 396.856 }, { @@ -24639,14 +24639,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1202.792016, + "area": 1202.79202, "axes": { "#": 2734 }, "bounds": { "#": 2745 }, - "circleRadius": 19.728973765432098, + "circleRadius": 19.72897, "collisionFilter": { "#": 2748 }, @@ -24661,13 +24661,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 921.0537546528394, - "inverseInertia": 0.0010857129618639, - "inverseMass": 0.8313989340614313, + "inertia": 921.05375, + "inverseInertia": 0.00109, + "inverseMass": 0.8314, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.202792016, + "mass": 1.20279, "motion": 0, "parent": null, "position": { @@ -24731,40 +24731,40 @@ } ], { - "x": -0.951085246419531, - "y": -0.3089285581539849 + "x": -0.95109, + "y": -0.30893 }, { - "x": -0.8089111933674096, - "y": -0.5879308473323315 + "x": -0.80891, + "y": -0.58793 }, { - "x": -0.5879308473323315, - "y": -0.8089111933674096 + "x": -0.58793, + "y": -0.80891 }, { - "x": -0.3089285581539849, - "y": -0.951085246419531 + "x": -0.30893, + "y": -0.95109 }, { "x": 0, "y": -1 }, { - "x": 0.3089285581539849, - "y": -0.951085246419531 + "x": 0.30893, + "y": -0.95109 }, { - "x": 0.5879308473323315, - "y": -0.8089111933674096 + "x": 0.58793, + "y": -0.80891 }, { - "x": 0.8089111933674096, - "y": -0.5879308473323315 + "x": 0.80891, + "y": -0.58793 }, { - "x": 0.951085246419531, - "y": -0.3089285581539849 + "x": 0.95109, + "y": -0.30893 }, { "x": 1, @@ -24779,7 +24779,7 @@ } }, { - "x": 247.11199999999997, + "x": 247.112, "y": 434.294 }, { @@ -24801,7 +24801,7 @@ "y": 0 }, { - "x": 227.62599999999998, + "x": 227.626, "y": 414.808 }, { @@ -24809,7 +24809,7 @@ "y": 0 }, { - "x": 227.62599999999998, + "x": 227.626, "y": 414.808 }, { @@ -24895,28 +24895,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 247.11199999999997, + "x": 247.112, "y": 417.894 }, { "body": null, "index": 1, "isInternal": false, - "x": 245.20499999999998, + "x": 245.205, "y": 423.765 }, { "body": null, "index": 2, "isInternal": false, - "x": 241.57599999999996, + "x": 241.576, "y": 428.758 }, { "body": null, "index": 3, "isInternal": false, - "x": 236.58299999999997, + "x": 236.583, "y": 432.387 }, { @@ -24930,14 +24930,14 @@ "body": null, "index": 5, "isInternal": false, - "x": 224.53999999999996, + "x": 224.54, "y": 434.294 }, { "body": null, "index": 6, "isInternal": false, - "x": 218.66899999999998, + "x": 218.669, "y": 432.387 }, { @@ -24951,7 +24951,7 @@ "body": null, "index": 8, "isInternal": false, - "x": 210.04699999999997, + "x": 210.047, "y": 423.765 }, { @@ -24972,7 +24972,7 @@ "body": null, "index": 11, "isInternal": false, - "x": 210.04699999999997, + "x": 210.047, "y": 405.851 }, { @@ -24986,14 +24986,14 @@ "body": null, "index": 13, "isInternal": false, - "x": 218.66899999999998, + "x": 218.669, "y": 397.229 }, { "body": null, "index": 14, "isInternal": false, - "x": 224.53999999999996, + "x": 224.54, "y": 395.322 }, { @@ -25007,28 +25007,28 @@ "body": null, "index": 16, "isInternal": false, - "x": 236.58299999999997, + "x": 236.583, "y": 397.229 }, { "body": null, "index": 17, "isInternal": false, - "x": 241.57599999999996, + "x": 241.576, "y": 400.858 }, { "body": null, "index": 18, "isInternal": false, - "x": 245.20499999999998, + "x": 245.205, "y": 405.851 }, { "body": null, "index": 19, "isInternal": false, - "x": 247.11199999999997, + "x": 247.112, "y": 411.722 }, { @@ -25036,14 +25036,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1984.2207600000002, + "area": 1984.22076, "axes": { "#": 2779 }, "bounds": { "#": 2793 }, - "circleRadius": 25.254565329218106, + "circleRadius": 25.25457, "collisionFilter": { "#": 2796 }, @@ -25058,13 +25058,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 2506.50391811075, - "inverseInertia": 0.0003989620733382851, - "inverseMass": 0.5039761805536194, + "inertia": 2506.50392, + "inverseInertia": 0.0004, + "inverseMass": 0.50398, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9842207600000001, + "mass": 1.98422, "motion": 0, "parent": null, "position": { @@ -25137,52 +25137,52 @@ } ], { - "x": -0.9709391703785378, - "y": -0.2393264035258891 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854840778178918, - "y": -0.4646697191887992 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.7485229543185438, - "y": -0.6631088800930351 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.5680821480971469, - "y": -0.8229718543263379 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.354649282244037, - "y": -0.9349994046007674 + "x": -0.35465, + "y": -0.935 }, { - "x": -0.1205569990969585, - "y": -0.9927064067329957 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.1205569990969585, - "y": -0.9927064067329957 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.354649282244037, - "y": -0.9349994046007674 + "x": 0.35465, + "y": -0.935 }, { - "x": 0.5680821480971469, - "y": -0.8229718543263379 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485229543185438, - "y": -0.6631088800930351 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854840778178918, - "y": -0.4646697191887992 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.9709391703785378, - "y": -0.2393264035258891 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -25197,11 +25197,11 @@ } }, { - "x": 307.25199999999995, + "x": 307.252, "y": 445.832 }, { - "x": 257.11199999999997, + "x": 257.112, "y": 395.322 }, { @@ -25219,7 +25219,7 @@ "y": 0 }, { - "x": 282.18199999999996, + "x": 282.182, "y": 420.577 }, { @@ -25227,7 +25227,7 @@ "y": 0 }, { - "x": 282.18199999999996, + "x": 282.182, "y": 420.577 }, { @@ -25331,21 +25331,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 307.25199999999995, + "x": 307.252, "y": 423.621 }, { "body": null, "index": 1, "isInternal": false, - "x": 305.79499999999996, + "x": 305.795, "y": 429.532 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.96599999999995, + "x": 302.966, "y": 434.923 }, { @@ -25359,126 +25359,126 @@ "body": null, "index": 4, "isInternal": false, - "x": 293.91799999999995, + "x": 293.918, "y": 442.939 }, { "body": null, "index": 5, "isInternal": false, - "x": 288.22599999999994, + "x": 288.226, "y": 445.098 }, { "body": null, "index": 6, "isInternal": false, - "x": 282.18199999999996, + "x": 282.182, "y": 445.832 }, { "body": null, "index": 7, "isInternal": false, - "x": 276.1379999999999, + "x": 276.138, "y": 445.098 }, { "body": null, "index": 8, "isInternal": false, - "x": 270.44599999999997, + "x": 270.446, "y": 442.939 }, { "body": null, "index": 9, "isInternal": false, - "x": 265.43499999999995, + "x": 265.435, "y": 439.48 }, { "body": null, "index": 10, "isInternal": false, - "x": 261.39799999999997, + "x": 261.398, "y": 434.923 }, { "body": null, "index": 11, "isInternal": false, - "x": 258.56899999999996, + "x": 258.569, "y": 429.532 }, { "body": null, "index": 12, "isInternal": false, - "x": 257.11199999999997, + "x": 257.112, "y": 423.621 }, { "body": null, "index": 13, "isInternal": false, - "x": 257.11199999999997, + "x": 257.112, "y": 417.533 }, { "body": null, "index": 14, "isInternal": false, - "x": 258.56899999999996, + "x": 258.569, "y": 411.622 }, { "body": null, "index": 15, "isInternal": false, - "x": 261.39799999999997, + "x": 261.398, "y": 406.231 }, { "body": null, "index": 16, "isInternal": false, - "x": 265.43499999999995, + "x": 265.435, "y": 401.674 }, { "body": null, "index": 17, "isInternal": false, - "x": 270.44599999999997, + "x": 270.446, "y": 398.215 }, { "body": null, "index": 18, "isInternal": false, - "x": 276.1379999999999, + "x": 276.138, "y": 396.056 }, { "body": null, "index": 19, "isInternal": false, - "x": 282.18199999999996, + "x": 282.182, "y": 395.322 }, { "body": null, "index": 20, "isInternal": false, - "x": 288.22599999999994, + "x": 288.226, "y": 396.056 }, { "body": null, "index": 21, "isInternal": false, - "x": 293.91799999999995, + "x": 293.918, "y": 398.215 }, { @@ -25492,21 +25492,21 @@ "body": null, "index": 23, "isInternal": false, - "x": 302.96599999999995, + "x": 302.966, "y": 406.231 }, { "body": null, "index": 24, "isInternal": false, - "x": 305.79499999999996, + "x": 305.795, "y": 411.622 }, { "body": null, "index": 25, "isInternal": false, - "x": 307.25199999999995, + "x": 307.252, "y": 417.533 }, { @@ -25514,14 +25514,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2125.037534, + "area": 2125.03753, "axes": { "#": 2833 }, "bounds": { "#": 2847 }, - "circleRadius": 26.135095164609055, + "circleRadius": 26.1351, "collisionFilter": { "#": 2850 }, @@ -25536,13 +25536,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 2874.892566904298, - "inverseInertia": 0.0003478390850190295, - "inverseMass": 0.4705799234132492, + "inertia": 2874.89257, + "inverseInertia": 0.00035, + "inverseMass": 0.47058, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.125037534, + "mass": 2.12504, "motion": 0, "parent": null, "position": { @@ -25615,52 +25615,52 @@ } ], { - "x": -0.9709400313336894, - "y": -0.23932291063275624 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854272994332363, - "y": -0.4647779011725559 + "x": -0.88543, + "y": -0.46478 }, { - "x": -0.7485116480933186, - "y": -0.6631216424372106 + "x": -0.74851, + "y": -0.66312 }, { - "x": -0.5680704347550564, - "y": -0.8229799397052162 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35472121559407893, - "y": -0.9349721168074794 + "x": -0.35472, + "y": -0.93497 }, { - "x": -0.12045933827365674, - "y": -0.9927182620576055 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.12045933827365674, - "y": -0.9927182620576055 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35472121559407893, - "y": -0.9349721168074794 + "x": 0.35472, + "y": -0.93497 }, { - "x": 0.5680704347550564, - "y": -0.8229799397052162 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485116480933186, - "y": -0.6631216424372106 + "x": 0.74851, + "y": -0.66312 }, { - "x": 0.8854272994332363, - "y": -0.4647779011725559 + "x": 0.88543, + "y": -0.46478 }, { - "x": 0.9709400313336894, - "y": -0.23932291063275624 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -25675,11 +25675,11 @@ } }, { - "x": 369.14199999999994, + "x": 369.142, "y": 447.592 }, { - "x": 317.25199999999995, + "x": 317.252, "y": 395.322 }, { @@ -25697,7 +25697,7 @@ "y": 0 }, { - "x": 343.19699999999995, + "x": 343.197, "y": 421.457 }, { @@ -25705,7 +25705,7 @@ "y": 0 }, { - "x": 343.19699999999995, + "x": 343.197, "y": 421.457 }, { @@ -25809,182 +25809,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 369.14199999999994, - "y": 424.60699999999997 + "x": 369.142, + "y": 424.607 }, { "body": null, "index": 1, "isInternal": false, - "x": 367.63399999999996, + "x": 367.634, "y": 430.725 }, { "body": null, "index": 2, "isInternal": false, - "x": 364.70599999999996, + "x": 364.706, "y": 436.303 }, { "body": null, "index": 3, "isInternal": false, - "x": 360.52799999999996, + "x": 360.528, "y": 441.019 }, { "body": null, "index": 4, "isInternal": false, - "x": 355.34299999999996, + "x": 355.343, "y": 444.598 }, { "body": null, "index": 5, "isInternal": false, - "x": 349.45199999999994, - "y": 446.83299999999997 + "x": 349.452, + "y": 446.833 }, { "body": null, "index": 6, "isInternal": false, - "x": 343.19699999999995, + "x": 343.197, "y": 447.592 }, { "body": null, "index": 7, "isInternal": false, - "x": 336.94199999999995, - "y": 446.83299999999997 + "x": 336.942, + "y": 446.833 }, { "body": null, "index": 8, "isInternal": false, - "x": 331.05099999999993, + "x": 331.051, "y": 444.598 }, { "body": null, "index": 9, "isInternal": false, - "x": 325.86599999999993, + "x": 325.866, "y": 441.019 }, { "body": null, "index": 10, "isInternal": false, - "x": 321.68799999999993, + "x": 321.688, "y": 436.303 }, { "body": null, "index": 11, "isInternal": false, - "x": 318.75999999999993, + "x": 318.76, "y": 430.725 }, { "body": null, "index": 12, "isInternal": false, - "x": 317.25199999999995, - "y": 424.60699999999997 + "x": 317.252, + "y": 424.607 }, { "body": null, "index": 13, "isInternal": false, - "x": 317.25199999999995, + "x": 317.252, "y": 418.307 }, { "body": null, "index": 14, "isInternal": false, - "x": 318.75999999999993, - "y": 412.18899999999996 + "x": 318.76, + "y": 412.189 }, { "body": null, "index": 15, "isInternal": false, - "x": 321.68799999999993, + "x": 321.688, "y": 406.611 }, { "body": null, "index": 16, "isInternal": false, - "x": 325.86599999999993, + "x": 325.866, "y": 401.895 }, { "body": null, "index": 17, "isInternal": false, - "x": 331.05099999999993, + "x": 331.051, "y": 398.316 }, { "body": null, "index": 18, "isInternal": false, - "x": 336.94199999999995, + "x": 336.942, "y": 396.081 }, { "body": null, "index": 19, "isInternal": false, - "x": 343.19699999999995, + "x": 343.197, "y": 395.322 }, { "body": null, "index": 20, "isInternal": false, - "x": 349.45199999999994, + "x": 349.452, "y": 396.081 }, { "body": null, "index": 21, "isInternal": false, - "x": 355.34299999999996, + "x": 355.343, "y": 398.316 }, { "body": null, "index": 22, "isInternal": false, - "x": 360.52799999999996, + "x": 360.528, "y": 401.895 }, { "body": null, "index": 23, "isInternal": false, - "x": 364.70599999999996, + "x": 364.706, "y": 406.611 }, { "body": null, "index": 24, "isInternal": false, - "x": 367.63399999999996, - "y": 412.18899999999996 + "x": 367.634, + "y": 412.189 }, { "body": null, "index": 25, "isInternal": false, - "x": 369.14199999999994, + "x": 369.142, "y": 418.307 }, { @@ -25992,14 +25992,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1996.653286, + "area": 1996.65329, "axes": { "#": 2887 }, "bounds": { "#": 2901 }, - "circleRadius": 25.3335262345679, + "circleRadius": 25.33353, "collisionFilter": { "#": 2904 }, @@ -26014,13 +26014,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 2538.0123080923295, - "inverseInertia": 0.0003940091215521487, - "inverseMass": 0.500838080908555, + "inertia": 2538.01231, + "inverseInertia": 0.00039, + "inverseMass": 0.50084, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.996653286, + "mass": 1.99665, "motion": 0, "parent": null, "position": { @@ -26093,52 +26093,52 @@ } ], { - "x": -0.9709177357808948, - "y": -0.23941334621549468 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8854787541421058, - "y": -0.46467986395253275 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7484743872094407, - "y": -0.6631636990151467 + "x": -0.74847, + "y": -0.66316 }, { - "x": -0.5681537587183745, - "y": -0.822922418247421 + "x": -0.56815, + "y": -0.82292 }, { - "x": -0.35453081856604124, - "y": -0.9350443297977334 + "x": -0.35453, + "y": -0.93504 }, { - "x": -0.12066874735597947, - "y": -0.9926928293341998 + "x": -0.12067, + "y": -0.99269 }, { - "x": 0.12066874735597947, - "y": -0.9926928293341998 + "x": 0.12067, + "y": -0.99269 }, { - "x": 0.35453081856604124, - "y": -0.9350443297977334 + "x": 0.35453, + "y": -0.93504 }, { - "x": 0.5681537587183745, - "y": -0.822922418247421 + "x": 0.56815, + "y": -0.82292 }, { - "x": 0.7484743872094407, - "y": -0.6631636990151467 + "x": 0.74847, + "y": -0.66316 }, { - "x": 0.8854787541421058, - "y": -0.46467986395253275 + "x": 0.88548, + "y": -0.46468 }, { - "x": 0.9709177357808948, - "y": -0.23941334621549468 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -26153,11 +26153,11 @@ } }, { - "x": 429.43999999999994, + "x": 429.44, "y": 445.99 }, { - "x": 379.14199999999994, + "x": 379.142, "y": 395.322 }, { @@ -26175,7 +26175,7 @@ "y": 0 }, { - "x": 404.29099999999994, + "x": 404.291, "y": 420.656 }, { @@ -26183,7 +26183,7 @@ "y": 0 }, { - "x": 404.29099999999994, + "x": 404.291, "y": 420.656 }, { @@ -26287,197 +26287,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 429.43999999999994, + "x": 429.44, "y": 423.71 }, { "body": null, "index": 1, "isInternal": false, - "x": 427.97799999999995, + "x": 427.978, "y": 429.639 }, { "body": null, "index": 2, "isInternal": false, - "x": 425.13999999999993, + "x": 425.14, "y": 435.047 }, { "body": null, "index": 3, "isInternal": false, - "x": 421.0899999999999, + "x": 421.09, "y": 439.618 }, { "body": null, "index": 4, "isInternal": false, - "x": 416.06399999999996, + "x": 416.064, "y": 443.088 }, { "body": null, "index": 5, "isInternal": false, - "x": 410.3539999999999, + "x": 410.354, "y": 445.253 }, { "body": null, "index": 6, "isInternal": false, - "x": 404.29099999999994, + "x": 404.291, "y": 445.99 }, { "body": null, "index": 7, "isInternal": false, - "x": 398.22799999999995, + "x": 398.228, "y": 445.253 }, { "body": null, "index": 8, "isInternal": false, - "x": 392.5179999999999, + "x": 392.518, "y": 443.088 }, { "body": null, "index": 9, "isInternal": false, - "x": 387.49199999999996, + "x": 387.492, "y": 439.618 }, { "body": null, "index": 10, "isInternal": false, - "x": 383.44199999999995, + "x": 383.442, "y": 435.047 }, { "body": null, "index": 11, "isInternal": false, - "x": 380.6039999999999, + "x": 380.604, "y": 429.639 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.14199999999994, + "x": 379.142, "y": 423.71 }, { "body": null, "index": 13, "isInternal": false, - "x": 379.14199999999994, - "y": 417.60200000000003 + "x": 379.142, + "y": 417.602 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.6039999999999, + "x": 380.604, "y": 411.673 }, { "body": null, "index": 15, "isInternal": false, - "x": 383.44199999999995, + "x": 383.442, "y": 406.265 }, { "body": null, "index": 16, "isInternal": false, - "x": 387.49199999999996, + "x": 387.492, "y": 401.694 }, { "body": null, "index": 17, "isInternal": false, - "x": 392.5179999999999, + "x": 392.518, "y": 398.224 }, { "body": null, "index": 18, "isInternal": false, - "x": 398.22799999999995, + "x": 398.228, "y": 396.059 }, { "body": null, "index": 19, "isInternal": false, - "x": 404.29099999999994, + "x": 404.291, "y": 395.322 }, { "body": null, "index": 20, "isInternal": false, - "x": 410.3539999999999, + "x": 410.354, "y": 396.059 }, { "body": null, "index": 21, "isInternal": false, - "x": 416.06399999999996, + "x": 416.064, "y": 398.224 }, { "body": null, "index": 22, "isInternal": false, - "x": 421.0899999999999, + "x": 421.09, "y": 401.694 }, { "body": null, "index": 23, "isInternal": false, - "x": 425.13999999999993, + "x": 425.14, "y": 406.265 }, { "body": null, "index": 24, "isInternal": false, - "x": 427.97799999999995, + "x": 427.978, "y": 411.673 }, { "body": null, "index": 25, "isInternal": false, - "x": 429.43999999999994, - "y": 417.60200000000003 + "x": 429.44, + "y": 417.602 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1068.0078720000001, + "area": 1068.00787, "axes": { "#": 2941 }, "bounds": { "#": 2952 }, - "circleRadius": 18.59059927983539, + "circleRadius": 18.5906, "collisionFilter": { "#": 2955 }, @@ -26492,13 +26492,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 726.1942595046386, - "inverseInertia": 0.001377042006201114, - "inverseMass": 0.9363226865803475, + "inertia": 726.19426, + "inverseInertia": 0.00138, + "inverseMass": 0.93632, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0680078720000001, + "mass": 1.06801, "motion": 0, "parent": null, "position": { @@ -26562,40 +26562,40 @@ } ], { - "x": -0.9510290151639218, - "y": -0.30910162134214203 + "x": -0.95103, + "y": -0.3091 }, { - "x": -0.8091076656500449, - "y": -0.5876604337424249 + "x": -0.80911, + "y": -0.58766 }, { - "x": -0.5876604337424249, - "y": -0.8091076656500449 + "x": -0.58766, + "y": -0.80911 }, { - "x": -0.30910162134214203, - "y": -0.9510290151639218 + "x": -0.3091, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.30910162134214203, - "y": -0.9510290151639218 + "x": 0.3091, + "y": -0.95103 }, { - "x": 0.5876604337424249, - "y": -0.8091076656500449 + "x": 0.58766, + "y": -0.80911 }, { - "x": 0.8091076656500449, - "y": -0.5876604337424249 + "x": 0.80911, + "y": -0.58766 }, { - "x": 0.9510290151639218, - "y": -0.30910162134214203 + "x": 0.95103, + "y": -0.3091 }, { "x": 1, @@ -26611,10 +26611,10 @@ }, { "x": 476.164, - "y": 432.04600000000005 + "y": 432.046 }, { - "x": 439.43999999999994, + "x": 439.44, "y": 395.322 }, { @@ -26632,7 +26632,7 @@ "y": 0 }, { - "x": 457.80199999999996, + "x": 457.802, "y": 413.684 }, { @@ -26640,7 +26640,7 @@ "y": 0 }, { - "x": 457.80199999999996, + "x": 457.802, "y": 413.684 }, { @@ -26727,7 +26727,7 @@ "index": 0, "isInternal": false, "x": 476.164, - "y": 416.59200000000004 + "y": 416.592 }, { "body": null, @@ -26741,90 +26741,90 @@ "index": 2, "isInternal": false, "x": 470.948, - "y": 426.83000000000004 + "y": 426.83 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.24199999999996, - "y": 430.24800000000005 + "x": 466.242, + "y": 430.248 }, { "body": null, "index": 4, "isInternal": false, "x": 460.71, - "y": 432.04600000000005 + "y": 432.046 }, { "body": null, "index": 5, "isInternal": false, - "x": 454.89399999999995, - "y": 432.04600000000005 + "x": 454.894, + "y": 432.046 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.36199999999997, - "y": 430.24800000000005 + "x": 449.362, + "y": 430.248 }, { "body": null, "index": 7, "isInternal": false, - "x": 444.65599999999995, - "y": 426.83000000000004 + "x": 444.656, + "y": 426.83 }, { "body": null, "index": 8, "isInternal": false, - "x": 441.23799999999994, + "x": 441.238, "y": 422.124 }, { "body": null, "index": 9, "isInternal": false, - "x": 439.43999999999994, - "y": 416.59200000000004 + "x": 439.44, + "y": 416.592 }, { "body": null, "index": 10, "isInternal": false, - "x": 439.43999999999994, + "x": 439.44, "y": 410.776 }, { "body": null, "index": 11, "isInternal": false, - "x": 441.23799999999994, + "x": 441.238, "y": 405.244 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.65599999999995, + "x": 444.656, "y": 400.538 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.36199999999997, + "x": 449.362, "y": 397.12 }, { "body": null, "index": 14, "isInternal": false, - "x": 454.89399999999995, + "x": 454.894, "y": 395.322 }, { @@ -26838,7 +26838,7 @@ "body": null, "index": 16, "isInternal": false, - "x": 466.24199999999996, + "x": 466.242, "y": 397.12 }, { @@ -26867,14 +26867,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2117.925184, + "area": 2117.92518, "axes": { "#": 2986 }, "bounds": { "#": 3000 }, - "circleRadius": 26.091499485596707, + "circleRadius": 26.0915, "collisionFilter": { "#": 3003 }, @@ -26889,13 +26889,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 2855.6806480399814, - "inverseInertia": 0.000350179212331168, - "inverseMass": 0.47216021016916143, + "inertia": 2855.68065, + "inverseInertia": 0.00035, + "inverseMass": 0.47216, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.117925184, + "mass": 2.11793, "motion": 0, "parent": null, "position": { @@ -26968,52 +26968,52 @@ } ], { - "x": -0.9709506945423793, - "y": -0.23927964553566064 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854796733875594, - "y": -0.4646781122642439 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7485047540208849, - "y": -0.6631294241761065 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680189747008447, - "y": -0.8230154581657634 + "x": -0.56802, + "y": -0.82302 }, { - "x": -0.3545535808015822, - "y": -0.9350356989659677 + "x": -0.35455, + "y": -0.93504 }, { - "x": -0.12051179006506187, - "y": -0.992711895997683 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051179006506187, - "y": -0.992711895997683 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545535808015822, - "y": -0.9350356989659677 + "x": 0.35455, + "y": -0.93504 }, { - "x": 0.5680189747008447, - "y": -0.8230154581657634 + "x": 0.56802, + "y": -0.82302 }, { - "x": 0.7485047540208849, - "y": -0.6631294241761065 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854796733875594, - "y": -0.4646781122642439 + "x": 0.88548, + "y": -0.46468 }, { - "x": 0.9709506945423793, - "y": -0.23927964553566064 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -27028,11 +27028,11 @@ } }, { - "x": 537.9659999999999, + "x": 537.966, "y": 447.504 }, { - "x": 486.16399999999993, + "x": 486.164, "y": 395.322 }, { @@ -27050,7 +27050,7 @@ "y": 0 }, { - "x": 512.0649999999999, + "x": 512.065, "y": 421.413 }, { @@ -27058,7 +27058,7 @@ "y": 0 }, { - "x": 512.0649999999999, + "x": 512.065, "y": 421.413 }, { @@ -27162,7 +27162,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 537.9659999999999, + "x": 537.966, "y": 424.558 }, { @@ -27190,7 +27190,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 524.1899999999999, + "x": 524.19, "y": 444.516 }, { @@ -27204,98 +27204,98 @@ "body": null, "index": 6, "isInternal": false, - "x": 512.0649999999999, + "x": 512.065, "y": 447.504 }, { "body": null, "index": 7, "isInternal": false, - "x": 505.8209999999999, + "x": 505.821, "y": 446.746 }, { "body": null, "index": 8, "isInternal": false, - "x": 499.93999999999994, + "x": 499.94, "y": 444.516 }, { "body": null, "index": 9, "isInternal": false, - "x": 494.7629999999999, + "x": 494.763, "y": 440.943 }, { "body": null, "index": 10, "isInternal": false, - "x": 490.5919999999999, + "x": 490.592, "y": 436.235 }, { "body": null, "index": 11, "isInternal": false, - "x": 487.6689999999999, + "x": 487.669, "y": 430.665 }, { "body": null, "index": 12, "isInternal": false, - "x": 486.16399999999993, + "x": 486.164, "y": 424.558 }, { "body": null, "index": 13, "isInternal": false, - "x": 486.16399999999993, - "y": 418.26800000000003 + "x": 486.164, + "y": 418.268 }, { "body": null, "index": 14, "isInternal": false, - "x": 487.6689999999999, + "x": 487.669, "y": 412.161 }, { "body": null, "index": 15, "isInternal": false, - "x": 490.5919999999999, + "x": 490.592, "y": 406.591 }, { "body": null, "index": 16, "isInternal": false, - "x": 494.7629999999999, - "y": 401.88300000000004 + "x": 494.763, + "y": 401.883 }, { "body": null, "index": 17, "isInternal": false, - "x": 499.93999999999994, + "x": 499.94, "y": 398.31 }, { "body": null, "index": 18, "isInternal": false, - "x": 505.8209999999999, - "y": 396.08000000000004 + "x": 505.821, + "y": 396.08 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.0649999999999, + "x": 512.065, "y": 395.322 }, { @@ -27303,13 +27303,13 @@ "index": 20, "isInternal": false, "x": 518.309, - "y": 396.08000000000004 + "y": 396.08 }, { "body": null, "index": 21, "isInternal": false, - "x": 524.1899999999999, + "x": 524.19, "y": 398.31 }, { @@ -27317,7 +27317,7 @@ "index": 22, "isInternal": false, "x": 529.367, - "y": 401.88300000000004 + "y": 401.883 }, { "body": null, @@ -27337,22 +27337,22 @@ "body": null, "index": 25, "isInternal": false, - "x": 537.9659999999999, - "y": 418.26800000000003 + "x": 537.966, + "y": 418.268 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2640.4216659999993, + "area": 2640.42167, "axes": { "#": 3040 }, "bounds": { "#": 3054 }, - "circleRadius": 29.13252314814815, + "circleRadius": 29.13252, "collisionFilter": { "#": 3057 }, @@ -27367,13 +27367,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 4438.487332970961, - "inverseInertia": 0.00022530198353199686, - "inverseMass": 0.37872738770353664, + "inertia": 4438.48733, + "inverseInertia": 0.00023, + "inverseMass": 0.37873, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6404216659999995, + "mass": 2.64042, "motion": 0, "parent": null, "position": { @@ -27446,52 +27446,52 @@ } ], { - "x": -0.9709329680777526, - "y": -0.2393515646485853 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.885482871367978, - "y": -0.4646720182170656 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.748460967524138, - "y": -0.6631788447265422 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5681654624657904, - "y": -0.8229143377418058 + "x": -0.56817, + "y": -0.82291 }, { - "x": -0.3545383401721488, - "y": -0.9350414778757025 + "x": -0.35454, + "y": -0.93504 }, { - "x": -0.12059925123212459, - "y": -0.9927012746049291 + "x": -0.1206, + "y": -0.9927 }, { - "x": 0.12059925123212459, - "y": -0.9927012746049291 + "x": 0.1206, + "y": -0.9927 }, { - "x": 0.3545383401721488, - "y": -0.9350414778757025 + "x": 0.35454, + "y": -0.93504 }, { - "x": 0.5681654624657904, - "y": -0.8229143377418058 + "x": 0.56817, + "y": -0.82291 }, { - "x": 0.748460967524138, - "y": -0.6631788447265422 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.885482871367978, - "y": -0.4646720182170656 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.9709329680777526, - "y": -0.2393515646485853 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -27506,11 +27506,11 @@ } }, { - "x": 605.8059999999998, - "y": 453.58799999999997 + "x": 605.806, + "y": 453.588 }, { - "x": 547.9659999999999, + "x": 547.966, "y": 395.322 }, { @@ -27528,7 +27528,7 @@ "y": 0 }, { - "x": 576.8859999999999, + "x": 576.886, "y": 424.455 }, { @@ -27536,7 +27536,7 @@ "y": 0 }, { - "x": 576.8859999999999, + "x": 576.886, "y": 424.455 }, { @@ -27640,182 +27640,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 605.8059999999998, + "x": 605.806, "y": 427.967 }, { "body": null, "index": 1, "isInternal": false, - "x": 604.1249999999999, + "x": 604.125, "y": 434.786 }, { "body": null, "index": 2, "isInternal": false, - "x": 600.8619999999999, - "y": 441.00399999999996 + "x": 600.862, + "y": 441.004 }, { "body": null, "index": 3, "isInternal": false, - "x": 596.2039999999998, - "y": 446.26099999999997 + "x": 596.204, + "y": 446.261 }, { "body": null, "index": 4, "isInternal": false, - "x": 590.4249999999998, + "x": 590.425, "y": 450.251 }, { "body": null, "index": 5, "isInternal": false, - "x": 583.8579999999998, + "x": 583.858, "y": 452.741 }, { "body": null, "index": 6, "isInternal": false, - "x": 576.8859999999999, - "y": 453.58799999999997 + "x": 576.886, + "y": 453.588 }, { "body": null, "index": 7, "isInternal": false, - "x": 569.9139999999999, + "x": 569.914, "y": 452.741 }, { "body": null, "index": 8, "isInternal": false, - "x": 563.3469999999999, + "x": 563.347, "y": 450.251 }, { "body": null, "index": 9, "isInternal": false, - "x": 557.5679999999999, - "y": 446.26099999999997 + "x": 557.568, + "y": 446.261 }, { "body": null, "index": 10, "isInternal": false, - "x": 552.9099999999999, - "y": 441.00399999999996 + "x": 552.91, + "y": 441.004 }, { "body": null, "index": 11, "isInternal": false, - "x": 549.6469999999998, + "x": 549.647, "y": 434.786 }, { "body": null, "index": 12, "isInternal": false, - "x": 547.9659999999999, + "x": 547.966, "y": 427.967 }, { "body": null, "index": 13, "isInternal": false, - "x": 547.9659999999999, + "x": 547.966, "y": 420.943 }, { "body": null, "index": 14, "isInternal": false, - "x": 549.6469999999998, - "y": 414.12399999999997 + "x": 549.647, + "y": 414.124 }, { "body": null, "index": 15, "isInternal": false, - "x": 552.9099999999999, + "x": 552.91, "y": 407.906 }, { "body": null, "index": 16, "isInternal": false, - "x": 557.5679999999999, + "x": 557.568, "y": 402.649 }, { "body": null, "index": 17, "isInternal": false, - "x": 563.3469999999999, + "x": 563.347, "y": 398.659 }, { "body": null, "index": 18, "isInternal": false, - "x": 569.9139999999999, + "x": 569.914, "y": 396.169 }, { "body": null, "index": 19, "isInternal": false, - "x": 576.8859999999999, + "x": 576.886, "y": 395.322 }, { "body": null, "index": 20, "isInternal": false, - "x": 583.8579999999998, + "x": 583.858, "y": 396.169 }, { "body": null, "index": 21, "isInternal": false, - "x": 590.4249999999998, + "x": 590.425, "y": 398.659 }, { "body": null, "index": 22, "isInternal": false, - "x": 596.2039999999998, + "x": 596.204, "y": 402.649 }, { "body": null, "index": 23, "isInternal": false, - "x": 600.8619999999999, + "x": 600.862, "y": 407.906 }, { "body": null, "index": 24, "isInternal": false, - "x": 604.1249999999999, - "y": 414.12399999999997 + "x": 604.125, + "y": 414.124 }, { "body": null, "index": 25, "isInternal": false, - "x": 605.8059999999998, + "x": 605.806, "y": 420.943 }, { @@ -27823,14 +27823,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1471.137836, + "area": 1471.13784, "axes": { "#": 3094 }, "bounds": { "#": 3106 }, - "circleRadius": 21.787744341563787, + "circleRadius": 21.78774, "collisionFilter": { "#": 3109 }, @@ -27845,13 +27845,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 1377.853560326475, - "inverseInertia": 0.0007257665319404883, - "inverseMass": 0.6797459595757416, + "inertia": 1377.85356, + "inverseInertia": 0.00073, + "inverseMass": 0.67975, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.471137836, + "mass": 1.47114, "motion": 0, "parent": null, "position": { @@ -27918,44 +27918,44 @@ } ], { - "x": -0.9594963577098565, - "y": -0.281721031414978 + "x": -0.9595, + "y": -0.28172 }, { - "x": -0.8412361011132161, - "y": -0.5406679407768089 + "x": -0.84124, + "y": -0.54067 }, { - "x": -0.6548323101262885, - "y": -0.7557742027978122 + "x": -0.65483, + "y": -0.75577 }, { - "x": -0.4153938805090625, - "y": -0.9096416459439524 + "x": -0.41539, + "y": -0.90964 }, { - "x": -0.14239206996108283, - "y": -0.9898103345652631 + "x": -0.14239, + "y": -0.98981 }, { - "x": 0.14239206996108283, - "y": -0.9898103345652631 + "x": 0.14239, + "y": -0.98981 }, { - "x": 0.4153938805090625, - "y": -0.9096416459439524 + "x": 0.41539, + "y": -0.90964 }, { - "x": 0.6548323101262885, - "y": -0.7557742027978122 + "x": 0.65483, + "y": -0.75577 }, { - "x": 0.8412361011132161, - "y": -0.5406679407768089 + "x": 0.84124, + "y": -0.54067 }, { - "x": 0.9594963577098565, - "y": -0.281721031414978 + "x": 0.9595, + "y": -0.28172 }, { "x": 1, @@ -27970,11 +27970,11 @@ } }, { - "x": 658.9379999999999, + "x": 658.938, "y": 438.898 }, { - "x": 615.8059999999998, + "x": 615.806, "y": 395.322 }, { @@ -27992,7 +27992,7 @@ "y": 0 }, { - "x": 637.3719999999998, + "x": 637.372, "y": 417.11 }, { @@ -28000,7 +28000,7 @@ "y": 0 }, { - "x": 637.3719999999998, + "x": 637.372, "y": 417.11 }, { @@ -28092,154 +28092,154 @@ "body": null, "index": 0, "isInternal": false, - "x": 658.9379999999999, + "x": 658.938, "y": 420.211 }, { "body": null, "index": 1, "isInternal": false, - "x": 657.1909999999998, + "x": 657.191, "y": 426.161 }, { "body": null, "index": 2, "isInternal": false, - "x": 653.8379999999999, - "y": 431.37800000000004 + "x": 653.838, + "y": 431.378 }, { "body": null, "index": 3, "isInternal": false, - "x": 649.1509999999998, + "x": 649.151, "y": 435.439 }, { "body": null, "index": 4, "isInternal": false, - "x": 643.5099999999999, + "x": 643.51, "y": 438.015 }, { "body": null, "index": 5, "isInternal": false, - "x": 637.3719999999998, + "x": 637.372, "y": 438.898 }, { "body": null, "index": 6, "isInternal": false, - "x": 631.2339999999998, + "x": 631.234, "y": 438.015 }, { "body": null, "index": 7, "isInternal": false, - "x": 625.5929999999998, + "x": 625.593, "y": 435.439 }, { "body": null, "index": 8, "isInternal": false, - "x": 620.9059999999998, - "y": 431.37800000000004 + "x": 620.906, + "y": 431.378 }, { "body": null, "index": 9, "isInternal": false, - "x": 617.5529999999999, + "x": 617.553, "y": 426.161 }, { "body": null, "index": 10, "isInternal": false, - "x": 615.8059999999998, + "x": 615.806, "y": 420.211 }, { "body": null, "index": 11, "isInternal": false, - "x": 615.8059999999998, + "x": 615.806, "y": 414.009 }, { "body": null, "index": 12, "isInternal": false, - "x": 617.5529999999999, + "x": 617.553, "y": 408.059 }, { "body": null, "index": 13, "isInternal": false, - "x": 620.9059999999998, + "x": 620.906, "y": 402.842 }, { "body": null, "index": 14, "isInternal": false, - "x": 625.5929999999998, + "x": 625.593, "y": 398.781 }, { "body": null, "index": 15, "isInternal": false, - "x": 631.2339999999998, - "y": 396.20500000000004 + "x": 631.234, + "y": 396.205 }, { "body": null, "index": 16, "isInternal": false, - "x": 637.3719999999998, + "x": 637.372, "y": 395.322 }, { "body": null, "index": 17, "isInternal": false, - "x": 643.5099999999999, - "y": 396.20500000000004 + "x": 643.51, + "y": 396.205 }, { "body": null, "index": 18, "isInternal": false, - "x": 649.1509999999998, + "x": 649.151, "y": 398.781 }, { "body": null, "index": 19, "isInternal": false, - "x": 653.8379999999999, + "x": 653.838, "y": 402.842 }, { "body": null, "index": 20, "isInternal": false, - "x": 657.1909999999998, + "x": 657.191, "y": 408.059 }, { "body": null, "index": 21, "isInternal": false, - "x": 658.9379999999999, + "x": 658.938, "y": 414.009 }, { @@ -28247,14 +28247,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2365.7444480000004, + "area": 2365.74445, "axes": { "#": 3142 }, "bounds": { "#": 3156 }, - "circleRadius": 27.57568158436214, + "circleRadius": 27.57568, "collisionFilter": { "#": 3159 }, @@ -28269,13 +28269,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 3563.0676528597355, - "inverseInertia": 0.00028065703417037147, - "inverseMass": 0.4226999246877234, + "inertia": 3563.06765, + "inverseInertia": 0.00028, + "inverseMass": 0.4227, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.3657444480000005, + "mass": 2.36574, "motion": 0, "parent": null, "position": { @@ -28348,52 +28348,52 @@ } ], { - "x": -0.9709337114917155, - "y": -0.2393485489592997 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854396827786457, - "y": -0.46475430945915 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.7485369796265419, - "y": -0.663093047868528 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680282056614427, - "y": -0.8230090871752521 + "x": -0.56803, + "y": -0.82301 }, { - "x": -0.3545499356888958, - "y": -0.9350370811379621 + "x": -0.35455, + "y": -0.93504 }, { - "x": -0.12064583760460713, - "y": -0.992695613906238 + "x": -0.12065, + "y": -0.9927 }, { - "x": 0.12064583760460713, - "y": -0.992695613906238 + "x": 0.12065, + "y": -0.9927 }, { - "x": 0.3545499356888958, - "y": -0.9350370811379621 + "x": 0.35455, + "y": -0.93504 }, { - "x": 0.5680282056614427, - "y": -0.8230090871752521 + "x": 0.56803, + "y": -0.82301 }, { - "x": 0.7485369796265419, - "y": -0.663093047868528 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854396827786457, - "y": -0.46475430945915 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.9709337114917155, - "y": -0.2393485489592997 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -28413,7 +28413,7 @@ }, { "x": 100, - "y": 463.58799999999997 + "y": 463.588 }, { "category": 1, @@ -28556,7 +28556,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 150.06900000000002, + "x": 150.069, "y": 506.829 }, { @@ -28619,7 +28619,7 @@ "body": null, "index": 11, "isInternal": false, - "x": 101.59100000000001, + "x": 101.591, "y": 500.942 }, { @@ -28640,29 +28640,29 @@ "body": null, "index": 14, "isInternal": false, - "x": 101.59100000000001, - "y": 481.38599999999997 + "x": 101.591, + "y": 481.386 }, { "body": null, "index": 15, "isInternal": false, "x": 104.681, - "y": 475.49899999999997 + "y": 475.499 }, { "body": null, "index": 16, "isInternal": false, "x": 109.089, - "y": 470.52299999999997 + "y": 470.523 }, { "body": null, "index": 17, "isInternal": false, "x": 114.56, - "y": 466.74699999999996 + "y": 466.747 }, { "body": null, @@ -28676,7 +28676,7 @@ "index": 19, "isInternal": false, "x": 127.375, - "y": 463.58799999999997 + "y": 463.588 }, { "body": null, @@ -28690,28 +28690,28 @@ "index": 21, "isInternal": false, "x": 140.19, - "y": 466.74699999999996 + "y": 466.747 }, { "body": null, "index": 22, "isInternal": false, "x": 145.661, - "y": 470.52299999999997 + "y": 470.523 }, { "body": null, "index": 23, "isInternal": false, - "x": 150.06900000000002, - "y": 475.49899999999997 + "x": 150.069, + "y": 475.499 }, { "body": null, "index": 24, "isInternal": false, "x": 153.159, - "y": 481.38599999999997 + "y": 481.386 }, { "body": null, @@ -28725,14 +28725,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1383.139406, + "area": 1383.13941, "axes": { "#": 3196 }, "bounds": { "#": 3208 }, - "circleRadius": 21.125964506172842, + "circleRadius": 21.12596, "collisionFilter": { "#": 3211 }, @@ -28747,13 +28747,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 1217.9465841027236, - "inverseInertia": 0.0008210540700655706, - "inverseMass": 0.7229929215103282, + "inertia": 1217.94658, + "inverseInertia": 0.00082, + "inverseMass": 0.72299, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.383139406, + "mass": 1.38314, "motion": 0, "parent": null, "position": { @@ -28820,44 +28820,44 @@ } ], { - "x": -0.9594898820606332, - "y": -0.28174308549327703 + "x": -0.95949, + "y": -0.28174 }, { - "x": -0.8412703139582507, - "y": -0.5406147046211252 + "x": -0.84127, + "y": -0.54061 }, { - "x": -0.654822884658635, - "y": -0.7557823692885035 + "x": -0.65482, + "y": -0.75578 }, { - "x": -0.41540602817806926, - "y": -0.9096360985324412 + "x": -0.41541, + "y": -0.90964 }, { - "x": -0.14235257216933223, - "y": -0.9898160158316165 + "x": -0.14235, + "y": -0.98982 }, { - "x": 0.14235257216933223, - "y": -0.9898160158316165 + "x": 0.14235, + "y": -0.98982 }, { - "x": 0.41540602817806926, - "y": -0.9096360985324412 + "x": 0.41541, + "y": -0.90964 }, { - "x": 0.654822884658635, - "y": -0.7557823692885035 + "x": 0.65482, + "y": -0.75578 }, { - "x": 0.8412703139582507, - "y": -0.5406147046211252 + "x": 0.84127, + "y": -0.54061 }, { - "x": 0.9594898820606332, - "y": -0.28174308549327703 + "x": 0.95949, + "y": -0.28174 }, { "x": 1, @@ -28873,11 +28873,11 @@ }, { "x": 206.572, - "y": 505.8399999999999 + "y": 505.84 }, { "x": 164.75, - "y": 463.58799999999997 + "y": 463.588 }, { "category": 1, @@ -28895,7 +28895,7 @@ }, { "x": 185.661, - "y": 484.71399999999994 + "y": 484.714 }, { "x": 0, @@ -28903,7 +28903,7 @@ }, { "x": 185.661, - "y": 484.71399999999994 + "y": 484.714 }, { "fillStyle": "#FF6B6B", @@ -28995,168 +28995,168 @@ "index": 0, "isInternal": false, "x": 206.572, - "y": 487.72099999999995 + "y": 487.721 }, { "body": null, "index": 1, "isInternal": false, "x": 204.878, - "y": 493.48999999999995 + "y": 493.49 }, { "body": null, "index": 2, "isInternal": false, "x": 201.627, - "y": 498.5489999999999 + "y": 498.549 }, { "body": null, "index": 3, "isInternal": false, "x": 197.083, - "y": 502.48599999999993 + "y": 502.486 }, { "body": null, "index": 4, "isInternal": false, "x": 191.613, - "y": 504.9839999999999 + "y": 504.984 }, { "body": null, "index": 5, "isInternal": false, "x": 185.661, - "y": 505.8399999999999 + "y": 505.84 }, { "body": null, "index": 6, "isInternal": false, "x": 179.709, - "y": 504.9839999999999 + "y": 504.984 }, { "body": null, "index": 7, "isInternal": false, "x": 174.239, - "y": 502.48599999999993 + "y": 502.486 }, { "body": null, "index": 8, "isInternal": false, "x": 169.695, - "y": 498.5489999999999 + "y": 498.549 }, { "body": null, "index": 9, "isInternal": false, - "x": 166.44400000000002, - "y": 493.48999999999995 + "x": 166.444, + "y": 493.49 }, { "body": null, "index": 10, "isInternal": false, "x": 164.75, - "y": 487.72099999999995 + "y": 487.721 }, { "body": null, "index": 11, "isInternal": false, "x": 164.75, - "y": 481.70699999999994 + "y": 481.707 }, { "body": null, "index": 12, "isInternal": false, - "x": 166.44400000000002, - "y": 475.93799999999993 + "x": 166.444, + "y": 475.938 }, { "body": null, "index": 13, "isInternal": false, "x": 169.695, - "y": 470.87899999999996 + "y": 470.879 }, { "body": null, "index": 14, "isInternal": false, "x": 174.239, - "y": 466.94199999999995 + "y": 466.942 }, { "body": null, "index": 15, "isInternal": false, "x": 179.709, - "y": 464.44399999999996 + "y": 464.444 }, { "body": null, "index": 16, "isInternal": false, "x": 185.661, - "y": 463.58799999999997 + "y": 463.588 }, { "body": null, "index": 17, "isInternal": false, "x": 191.613, - "y": 464.44399999999996 + "y": 464.444 }, { "body": null, "index": 18, "isInternal": false, "x": 197.083, - "y": 466.94199999999995 + "y": 466.942 }, { "body": null, "index": 19, "isInternal": false, "x": 201.627, - "y": 470.87899999999996 + "y": 470.879 }, { "body": null, "index": 20, "isInternal": false, "x": 204.878, - "y": 475.93799999999993 + "y": 475.938 }, { "body": null, "index": 21, "isInternal": false, "x": 206.572, - "y": 481.70699999999994 + "y": 481.707 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1920.5538560000002, + "area": 1920.55386, "axes": { "#": 3244 }, "bounds": { "#": 3258 }, - "circleRadius": 24.846000514403293, + "circleRadius": 24.846, "collisionFilter": { "#": 3261 }, @@ -29171,13 +29171,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 2348.234095514853, - "inverseInertia": 0.0004258519207731497, - "inverseMass": 0.5206831336053925, + "inertia": 2348.2341, + "inverseInertia": 0.00043, + "inverseMass": 0.52068, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9205538560000002, + "mass": 1.92055, "motion": 0, "parent": null, "position": { @@ -29250,52 +29250,52 @@ } ], { - "x": -0.9709230108162477, - "y": -0.23939195280441827 + "x": -0.97092, + "y": -0.23939 }, { - "x": -0.8854717667145438, - "y": -0.4646931787227185 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.748476889134433, - "y": -0.6631608752268501 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681503393898027, - "y": -0.8229247789751213 + "x": -0.56815, + "y": -0.82292 }, { - "x": -0.3545787459288591, - "y": -0.9350261562841531 + "x": -0.35458, + "y": -0.93503 }, { - "x": -0.1205407749950231, - "y": -0.9927083768980692 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.1205407749950231, - "y": -0.9927083768980692 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.3545787459288591, - "y": -0.9350261562841531 + "x": 0.35458, + "y": -0.93503 }, { - "x": 0.5681503393898027, - "y": -0.8229247789751213 + "x": 0.56815, + "y": -0.82292 }, { - "x": 0.748476889134433, - "y": -0.6631608752268501 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8854717667145438, - "y": -0.4646931787227185 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709230108162477, - "y": -0.23939195280441827 + "x": 0.97092, + "y": -0.23939 }, { "x": 1, @@ -29315,7 +29315,7 @@ }, { "x": 216.572, - "y": 463.58799999999997 + "y": 463.588 }, { "category": 1, @@ -29333,7 +29333,7 @@ }, { "x": 241.237, - "y": 488.43399999999997 + "y": 488.434 }, { "x": 0, @@ -29341,7 +29341,7 @@ }, { "x": 241.237, - "y": 488.43399999999997 + "y": 488.434 }, { "fillStyle": "#4ECDC4", @@ -29451,29 +29451,29 @@ "body": null, "index": 1, "isInternal": false, - "x": 264.46799999999996, - "y": 497.24499999999995 + "x": 264.468, + "y": 497.245 }, { "body": null, "index": 2, "isInternal": false, "x": 261.685, - "y": 502.54799999999994 + "y": 502.548 }, { "body": null, "index": 3, "isInternal": false, - "x": 257.71299999999997, - "y": 507.03099999999995 + "x": 257.713, + "y": 507.031 }, { "body": null, "index": 4, "isInternal": false, "x": 252.784, - "y": 510.43399999999997 + "y": 510.434 }, { "body": null, @@ -29501,28 +29501,28 @@ "index": 8, "isInternal": false, "x": 229.69, - "y": 510.43399999999997 + "y": 510.434 }, { "body": null, "index": 9, "isInternal": false, "x": 224.761, - "y": 507.03099999999995 + "y": 507.031 }, { "body": null, "index": 10, "isInternal": false, "x": 220.789, - "y": 502.54799999999994 + "y": 502.548 }, { "body": null, "index": 11, "isInternal": false, "x": 218.006, - "y": 497.24499999999995 + "y": 497.245 }, { "body": null, @@ -29536,7 +29536,7 @@ "index": 13, "isInternal": false, "x": 216.572, - "y": 485.43899999999996 + "y": 485.439 }, { "body": null, @@ -29564,41 +29564,41 @@ "index": 17, "isInternal": false, "x": 229.69, - "y": 466.43399999999997 + "y": 466.434 }, { "body": null, "index": 18, "isInternal": false, "x": 235.291, - "y": 464.30999999999995 + "y": 464.31 }, { "body": null, "index": 19, "isInternal": false, "x": 241.237, - "y": 463.58799999999997 + "y": 463.588 }, { "body": null, "index": 20, "isInternal": false, "x": 247.183, - "y": 464.30999999999995 + "y": 464.31 }, { "body": null, "index": 21, "isInternal": false, "x": 252.784, - "y": 466.43399999999997 + "y": 466.434 }, { "body": null, "index": 22, "isInternal": false, - "x": 257.71299999999997, + "x": 257.713, "y": 469.837 }, { @@ -29612,7 +29612,7 @@ "body": null, "index": 24, "isInternal": false, - "x": 264.46799999999996, + "x": 264.468, "y": 479.623 }, { @@ -29620,21 +29620,21 @@ "index": 25, "isInternal": false, "x": 265.902, - "y": 485.43899999999996 + "y": 485.439 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1313.5341700000001, + "area": 1313.53417, "axes": { "#": 3298 }, "bounds": { "#": 3310 }, - "circleRadius": 20.58764146090535, + "circleRadius": 20.58764, "collisionFilter": { "#": 3313 }, @@ -29649,13 +29649,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1098.4469373075985, - "inverseInertia": 0.000910376246713472, - "inverseMass": 0.7613049000468712, + "inertia": 1098.44694, + "inverseInertia": 0.00091, + "inverseMass": 0.7613, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.31353417, + "mass": 1.31353, "motion": 0, "parent": null, "position": { @@ -29722,44 +29722,44 @@ } ], { - "x": -0.959482276351351, - "y": -0.2817689858157382 + "x": -0.95948, + "y": -0.28177 }, { - "x": -0.8412782604654073, - "y": -0.5406023385708745 + "x": -0.84128, + "y": -0.5406 }, { - "x": -0.6548720571511801, - "y": -0.7557397625919795 + "x": -0.65487, + "y": -0.75574 }, { - "x": -0.415473443431926, - "y": -0.9096053088031193 + "x": -0.41547, + "y": -0.90961 }, { - "x": -0.14232920005229774, - "y": -0.9898193768625027 + "x": -0.14233, + "y": -0.98982 }, { - "x": 0.14232920005229774, - "y": -0.9898193768625027 + "x": 0.14233, + "y": -0.98982 }, { - "x": 0.415473443431926, - "y": -0.9096053088031193 + "x": 0.41547, + "y": -0.90961 }, { - "x": 0.6548720571511801, - "y": -0.7557397625919795 + "x": 0.65487, + "y": -0.75574 }, { - "x": 0.8412782604654073, - "y": -0.5406023385708745 + "x": 0.84128, + "y": -0.5406 }, { - "x": 0.959482276351351, - "y": -0.2817689858157382 + "x": 0.95948, + "y": -0.28177 }, { "x": 1, @@ -29774,12 +29774,12 @@ } }, { - "x": 316.65799999999996, + "x": 316.658, "y": 504.764 }, { "x": 275.902, - "y": 463.58799999999997 + "y": 463.588 }, { "category": 1, @@ -29896,14 +29896,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.65799999999996, + "x": 316.658, "y": 487.106 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.00699999999995, + "x": 315.007, "y": 492.728 }, { @@ -29911,7 +29911,7 @@ "index": 2, "isInternal": false, "x": 311.839, - "y": 497.65799999999996 + "y": 497.658 }, { "body": null, @@ -29938,22 +29938,22 @@ "body": null, "index": 6, "isInternal": false, - "x": 290.47999999999996, + "x": 290.48, "y": 503.93 }, { "body": null, "index": 7, "isInternal": false, - "x": 285.14899999999994, + "x": 285.149, "y": 501.495 }, { "body": null, "index": 8, "isInternal": false, - "x": 280.72099999999995, - "y": 497.65799999999996 + "x": 280.721, + "y": 497.658 }, { "body": null, @@ -29981,49 +29981,49 @@ "index": 12, "isInternal": false, "x": 277.553, - "y": 475.62399999999997 + "y": 475.624 }, { "body": null, "index": 13, "isInternal": false, - "x": 280.72099999999995, + "x": 280.721, "y": 470.694 }, { "body": null, "index": 14, "isInternal": false, - "x": 285.14899999999994, - "y": 466.85699999999997 + "x": 285.149, + "y": 466.857 }, { "body": null, "index": 15, "isInternal": false, - "x": 290.47999999999996, - "y": 464.42199999999997 + "x": 290.48, + "y": 464.422 }, { "body": null, "index": 16, "isInternal": false, "x": 296.28, - "y": 463.58799999999997 + "y": 463.588 }, { "body": null, "index": 17, "isInternal": false, "x": 302.08, - "y": 464.42199999999997 + "y": 464.422 }, { "body": null, "index": 18, "isInternal": false, "x": 307.411, - "y": 466.85699999999997 + "y": 466.857 }, { "body": null, @@ -30036,14 +30036,14 @@ "body": null, "index": 20, "isInternal": false, - "x": 315.00699999999995, - "y": 475.62399999999997 + "x": 315.007, + "y": 475.624 }, { "body": null, "index": 21, "isInternal": false, - "x": 316.65799999999996, + "x": 316.658, "y": 481.246 }, { @@ -30051,14 +30051,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1407.836766, + "area": 1407.83677, "axes": { "#": 3346 }, "bounds": { "#": 3358 }, - "circleRadius": 21.313850308641975, + "circleRadius": 21.31385, "collisionFilter": { "#": 3361 }, @@ -30073,13 +30073,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 1261.8302598027851, - "inverseInertia": 0.0007924996188919204, - "inverseMass": 0.7103096212220956, + "inertia": 1261.83026, + "inverseInertia": 0.00079, + "inverseMass": 0.71031, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.407836766, + "mass": 1.40784, "motion": 0, "parent": null, "position": { @@ -30146,44 +30146,44 @@ } ], { - "x": -0.959501876537905, - "y": -0.28170223449635445 + "x": -0.9595, + "y": -0.2817 }, { - "x": -0.841264149745226, - "y": -0.5406242968582174 + "x": -0.84126, + "y": -0.54062 }, { - "x": -0.6547736264547386, - "y": -0.7558250446361977 + "x": -0.65477, + "y": -0.75583 }, { - "x": -0.41541690036651785, - "y": -0.9096311334216055 + "x": -0.41542, + "y": -0.90963 }, { - "x": -0.14241356489316964, - "y": -0.9898072421105126 + "x": -0.14241, + "y": -0.98981 }, { - "x": 0.14241356489316964, - "y": -0.9898072421105126 + "x": 0.14241, + "y": -0.98981 }, { - "x": 0.41541690036651785, - "y": -0.9096311334216055 + "x": 0.41542, + "y": -0.90963 }, { - "x": 0.6547736264547386, - "y": -0.7558250446361977 + "x": 0.65477, + "y": -0.75583 }, { - "x": 0.841264149745226, - "y": -0.5406242968582174 + "x": 0.84126, + "y": -0.54062 }, { - "x": 0.959501876537905, - "y": -0.28170223449635445 + "x": 0.9595, + "y": -0.2817 }, { "x": 1, @@ -30198,12 +30198,12 @@ } }, { - "x": 368.8519999999999, + "x": 368.852, "y": 506.216 }, { - "x": 326.65799999999996, - "y": 463.58799999999997 + "x": 326.658, + "y": 463.588 }, { "category": 1, @@ -30220,7 +30220,7 @@ "y": 0 }, { - "x": 347.75499999999994, + "x": 347.755, "y": 484.902 }, { @@ -30228,7 +30228,7 @@ "y": 0 }, { - "x": 347.75499999999994, + "x": 347.755, "y": 484.902 }, { @@ -30320,169 +30320,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 368.8519999999999, + "x": 368.852, "y": 487.935 }, { "body": null, "index": 1, "isInternal": false, - "x": 367.1429999999999, + "x": 367.143, "y": 493.756 }, { "body": null, "index": 2, "isInternal": false, - "x": 363.86299999999994, + "x": 363.863, "y": 498.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 359.27799999999996, + "x": 359.278, "y": 502.832 }, { "body": null, "index": 4, "isInternal": false, - "x": 353.75999999999993, + "x": 353.76, "y": 505.352 }, { "body": null, "index": 5, "isInternal": false, - "x": 347.75499999999994, + "x": 347.755, "y": 506.216 }, { "body": null, "index": 6, "isInternal": false, - "x": 341.74999999999994, + "x": 341.75, "y": 505.352 }, { "body": null, "index": 7, "isInternal": false, - "x": 336.2319999999999, + "x": 336.232, "y": 502.832 }, { "body": null, "index": 8, "isInternal": false, - "x": 331.64699999999993, + "x": 331.647, "y": 498.86 }, { "body": null, "index": 9, "isInternal": false, - "x": 328.36699999999996, + "x": 328.367, "y": 493.756 }, { "body": null, "index": 10, "isInternal": false, - "x": 326.65799999999996, + "x": 326.658, "y": 487.935 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.65799999999996, - "y": 481.86899999999997 + "x": 326.658, + "y": 481.869 }, { "body": null, "index": 12, "isInternal": false, - "x": 328.36699999999996, + "x": 328.367, "y": 476.048 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.64699999999993, - "y": 470.94399999999996 + "x": 331.647, + "y": 470.944 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.2319999999999, + "x": 336.232, "y": 466.972 }, { "body": null, "index": 15, "isInternal": false, - "x": 341.74999999999994, + "x": 341.75, "y": 464.452 }, { "body": null, "index": 16, "isInternal": false, - "x": 347.75499999999994, - "y": 463.58799999999997 + "x": 347.755, + "y": 463.588 }, { "body": null, "index": 17, "isInternal": false, - "x": 353.75999999999993, + "x": 353.76, "y": 464.452 }, { "body": null, "index": 18, "isInternal": false, - "x": 359.27799999999996, + "x": 359.278, "y": 466.972 }, { "body": null, "index": 19, "isInternal": false, - "x": 363.86299999999994, - "y": 470.94399999999996 + "x": 363.863, + "y": 470.944 }, { "body": null, "index": 20, "isInternal": false, - "x": 367.1429999999999, + "x": 367.143, "y": 476.048 }, { "body": null, "index": 21, "isInternal": false, - "x": 368.8519999999999, - "y": 481.86899999999997 + "x": 368.852, + "y": 481.869 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 971.4751299999998, + "area": 971.47513, "axes": { "#": 3394 }, "bounds": { "#": 3404 }, - "circleRadius": 17.76536779835391, + "circleRadius": 17.76537, "collisionFilter": { "#": 3407 }, @@ -30497,13 +30497,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 600.8690619118768, - "inverseInertia": 0.0016642560973569639, - "inverseMass": 1.029362429483913, + "inertia": 600.86906, + "inverseInertia": 0.00166, + "inverseMass": 1.02936, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9714751299999999, + "mass": 0.97148, "motion": 0, "parent": null, "position": { @@ -30564,36 +30564,36 @@ } ], { - "x": -0.9397082164334566, - "y": -0.3419772915961702 + "x": -0.93971, + "y": -0.34198 }, { - "x": -0.7660113091054872, - "y": -0.6428270951993993 + "x": -0.76601, + "y": -0.64283 }, { - "x": -0.500026441001429, - "y": -0.8660101375269487 + "x": -0.50003, + "y": -0.86601 }, { - "x": -0.1735911569772105, - "y": -0.9848178055961994 + "x": -0.17359, + "y": -0.98482 }, { - "x": 0.1735911569772105, - "y": -0.9848178055961994 + "x": 0.17359, + "y": -0.98482 }, { - "x": 0.500026441001429, - "y": -0.8660101375269487 + "x": 0.50003, + "y": -0.86601 }, { - "x": 0.7660113091054872, - "y": -0.6428270951993993 + "x": 0.76601, + "y": -0.64283 }, { - "x": 0.9397082164334566, - "y": -0.3419772915961702 + "x": 0.93971, + "y": -0.34198 }, { "x": 1, @@ -30608,12 +30608,12 @@ } }, { - "x": 413.8419999999999, - "y": 499.11799999999994 + "x": 413.842, + "y": 499.118 }, { - "x": 378.8519999999999, - "y": 463.58799999999997 + "x": 378.852, + "y": 463.588 }, { "category": 1, @@ -30630,16 +30630,16 @@ "y": 0 }, { - "x": 396.3469999999999, - "y": 481.35299999999995 + "x": 396.347, + "y": 481.353 }, { "x": 0, "y": 0 }, { - "x": 396.3469999999999, - "y": 481.35299999999995 + "x": 396.347, + "y": 481.353 }, { "fillStyle": "#C44D58", @@ -30718,126 +30718,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.8419999999999, - "y": 484.43799999999993 + "x": 413.842, + "y": 484.438 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.7319999999999, - "y": 490.23599999999993 + "x": 411.732, + "y": 490.236 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.7659999999999, - "y": 494.96199999999993 + "x": 407.766, + "y": 494.962 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.42299999999994, - "y": 498.04699999999997 + "x": 402.423, + "y": 498.047 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.3469999999999, - "y": 499.11799999999994 + "x": 396.347, + "y": 499.118 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.2709999999999, - "y": 498.04699999999997 + "x": 390.271, + "y": 498.047 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.92799999999994, - "y": 494.96199999999993 + "x": 384.928, + "y": 494.962 }, { "body": null, "index": 7, "isInternal": false, - "x": 380.96199999999993, - "y": 490.23599999999993 + "x": 380.962, + "y": 490.236 }, { "body": null, "index": 8, "isInternal": false, - "x": 378.8519999999999, - "y": 484.43799999999993 + "x": 378.852, + "y": 484.438 }, { "body": null, "index": 9, "isInternal": false, - "x": 378.8519999999999, + "x": 378.852, "y": 478.268 }, { "body": null, "index": 10, "isInternal": false, - "x": 380.96199999999993, - "y": 472.46999999999997 + "x": 380.962, + "y": 472.47 }, { "body": null, "index": 11, "isInternal": false, - "x": 384.92799999999994, - "y": 467.74399999999997 + "x": 384.928, + "y": 467.744 }, { "body": null, "index": 12, "isInternal": false, - "x": 390.2709999999999, - "y": 464.65899999999993 + "x": 390.271, + "y": 464.659 }, { "body": null, "index": 13, "isInternal": false, - "x": 396.3469999999999, - "y": 463.58799999999997 + "x": 396.347, + "y": 463.588 }, { "body": null, "index": 14, "isInternal": false, - "x": 402.42299999999994, - "y": 464.65899999999993 + "x": 402.423, + "y": 464.659 }, { "body": null, "index": 15, "isInternal": false, - "x": 407.7659999999999, - "y": 467.74399999999997 + "x": 407.766, + "y": 467.744 }, { "body": null, "index": 16, "isInternal": false, - "x": 411.7319999999999, - "y": 472.46999999999997 + "x": 411.732, + "y": 472.47 }, { "body": null, "index": 17, "isInternal": false, - "x": 413.8419999999999, + "x": 413.842, "y": 478.268 }, { @@ -30845,14 +30845,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1964.2880500000006, + "area": 1964.28805, "axes": { "#": 3436 }, "bounds": { "#": 3450 }, - "circleRadius": 25.12737911522634, + "circleRadius": 25.12738, "collisionFilter": { "#": 3453 }, @@ -30867,13 +30867,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 2456.3981324941856, - "inverseInertia": 0.00040710013037854604, - "inverseMass": 0.5090903037362569, + "inertia": 2456.39813, + "inverseInertia": 0.00041, + "inverseMass": 0.50909, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9642880500000006, + "mass": 1.96429, "motion": 0, "parent": null, "position": { @@ -30946,52 +30946,52 @@ } ], { - "x": -0.9709623885358947, - "y": -0.23923218857141804 + "x": -0.97096, + "y": -0.23923 }, { - "x": -0.8854046961769618, - "y": -0.4648209590668022 + "x": -0.8854, + "y": -0.46482 }, { - "x": -0.7485741319537845, - "y": -0.6630511058505507 + "x": -0.74857, + "y": -0.66305 }, { - "x": -0.5679990833611438, - "y": -0.8230291861780483 + "x": -0.568, + "y": -0.82303 }, { - "x": -0.3545945158571323, - "y": -0.9350201758914327 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12051872107728642, - "y": -0.9927110545722231 + "x": -0.12052, + "y": -0.99271 }, { - "x": 0.12051872107728642, - "y": -0.9927110545722231 + "x": 0.12052, + "y": -0.99271 }, { - "x": 0.3545945158571323, - "y": -0.9350201758914327 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5679990833611438, - "y": -0.8230291861780483 + "x": 0.568, + "y": -0.82303 }, { - "x": 0.7485741319537845, - "y": -0.6630511058505507 + "x": 0.74857, + "y": -0.66305 }, { - "x": 0.8854046961769618, - "y": -0.4648209590668022 + "x": 0.8854, + "y": -0.46482 }, { - "x": 0.9709623885358947, - "y": -0.23923218857141804 + "x": 0.97096, + "y": -0.23923 }, { "x": 1, @@ -31006,12 +31006,12 @@ } }, { - "x": 473.72999999999996, + "x": 473.73, "y": 513.842 }, { - "x": 423.8419999999999, - "y": 463.58799999999997 + "x": 423.842, + "y": 463.588 }, { "category": 1, @@ -31028,7 +31028,7 @@ "y": 0 }, { - "x": 448.78599999999994, + "x": 448.786, "y": 488.715 }, { @@ -31036,7 +31036,7 @@ "y": 0 }, { - "x": 448.78599999999994, + "x": 448.786, "y": 488.715 }, { @@ -31140,182 +31140,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 473.72999999999996, - "y": 491.74399999999997 + "x": 473.73, + "y": 491.744 }, { "body": null, "index": 1, "isInternal": false, - "x": 472.28099999999995, + "x": 472.281, "y": 497.625 }, { "body": null, "index": 2, "isInternal": false, - "x": 469.4649999999999, + "x": 469.465, "y": 502.989 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.44899999999996, - "y": 507.52299999999997 + "x": 465.449, + "y": 507.523 }, { "body": null, "index": 4, "isInternal": false, - "x": 460.46299999999997, + "x": 460.463, "y": 510.964 }, { "body": null, "index": 5, "isInternal": false, - "x": 454.7989999999999, + "x": 454.799, "y": 513.112 }, { "body": null, "index": 6, "isInternal": false, - "x": 448.78599999999994, + "x": 448.786, "y": 513.842 }, { "body": null, "index": 7, "isInternal": false, - "x": 442.77299999999997, + "x": 442.773, "y": 513.112 }, { "body": null, "index": 8, "isInternal": false, - "x": 437.1089999999999, + "x": 437.109, "y": 510.964 }, { "body": null, "index": 9, "isInternal": false, - "x": 432.12299999999993, - "y": 507.52299999999997 + "x": 432.123, + "y": 507.523 }, { "body": null, "index": 10, "isInternal": false, - "x": 428.10699999999997, + "x": 428.107, "y": 502.989 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.29099999999994, + "x": 425.291, "y": 497.625 }, { "body": null, "index": 12, "isInternal": false, - "x": 423.8419999999999, - "y": 491.74399999999997 + "x": 423.842, + "y": 491.744 }, { "body": null, "index": 13, "isInternal": false, - "x": 423.8419999999999, + "x": 423.842, "y": 485.686 }, { "body": null, "index": 14, "isInternal": false, - "x": 425.29099999999994, - "y": 479.80499999999995 + "x": 425.291, + "y": 479.805 }, { "body": null, "index": 15, "isInternal": false, - "x": 428.10699999999997, + "x": 428.107, "y": 474.441 }, { "body": null, "index": 16, "isInternal": false, - "x": 432.12299999999993, + "x": 432.123, "y": 469.907 }, { "body": null, "index": 17, "isInternal": false, - "x": 437.1089999999999, - "y": 466.46599999999995 + "x": 437.109, + "y": 466.466 }, { "body": null, "index": 18, "isInternal": false, - "x": 442.77299999999997, + "x": 442.773, "y": 464.318 }, { "body": null, "index": 19, "isInternal": false, - "x": 448.78599999999994, - "y": 463.58799999999997 + "x": 448.786, + "y": 463.588 }, { "body": null, "index": 20, "isInternal": false, - "x": 454.7989999999999, + "x": 454.799, "y": 464.318 }, { "body": null, "index": 21, "isInternal": false, - "x": 460.46299999999997, - "y": 466.46599999999995 + "x": 460.463, + "y": 466.466 }, { "body": null, "index": 22, "isInternal": false, - "x": 465.44899999999996, + "x": 465.449, "y": 469.907 }, { "body": null, "index": 23, "isInternal": false, - "x": 469.4649999999999, + "x": 469.465, "y": 474.441 }, { "body": null, "index": 24, "isInternal": false, - "x": 472.28099999999995, - "y": 479.80499999999995 + "x": 472.281, + "y": 479.805 }, { "body": null, "index": 25, "isInternal": false, - "x": 473.72999999999996, + "x": 473.73, "y": 485.686 }, { @@ -31323,14 +31323,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1198.7866480000002, + "area": 1198.78665, "axes": { "#": 3490 }, "bounds": { "#": 3501 }, - "circleRadius": 19.696180555555557, + "circleRadius": 19.69618, "collisionFilter": { "#": 3504 }, @@ -31345,13 +31345,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 914.9296424326485, - "inverseInertia": 0.0010929802179555177, - "inverseMass": 0.834176791732168, + "inertia": 914.92964, + "inverseInertia": 0.00109, + "inverseMass": 0.83418, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1987866480000002, + "mass": 1.19879, "motion": 0, "parent": null, "position": { @@ -31415,40 +31415,40 @@ } ], { - "x": -0.9510257213132782, - "y": -0.3091117555198423 + "x": -0.95103, + "y": -0.30911 }, { - "x": -0.8090026788463934, - "y": -0.5878049554225953 + "x": -0.809, + "y": -0.5878 }, { - "x": -0.5878049554225953, - "y": -0.8090026788463934 + "x": -0.5878, + "y": -0.809 }, { - "x": -0.3091117555198423, - "y": -0.9510257213132782 + "x": -0.30911, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.3091117555198423, - "y": -0.9510257213132782 + "x": 0.30911, + "y": -0.95103 }, { - "x": 0.5878049554225953, - "y": -0.8090026788463934 + "x": 0.5878, + "y": -0.809 }, { - "x": 0.8090026788463934, - "y": -0.5878049554225953 + "x": 0.809, + "y": -0.5878 }, { - "x": 0.9510257213132782, - "y": -0.3091117555198423 + "x": 0.95103, + "y": -0.30911 }, { "x": 1, @@ -31463,12 +31463,12 @@ } }, { - "x": 522.6379999999999, + "x": 522.638, "y": 502.496 }, { - "x": 483.72999999999996, - "y": 463.58799999999997 + "x": 483.73, + "y": 463.588 }, { "category": 1, @@ -31485,7 +31485,7 @@ "y": 0 }, { - "x": 503.18399999999997, + "x": 503.184, "y": 483.042 }, { @@ -31493,7 +31493,7 @@ "y": 0 }, { - "x": 503.18399999999997, + "x": 503.184, "y": 483.042 }, { @@ -31579,7 +31579,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.6379999999999, + "x": 522.638, "y": 486.123 }, { @@ -31601,7 +31601,7 @@ "index": 3, "isInternal": false, "x": 512.126, - "y": 500.59099999999995 + "y": 500.591 }, { "body": null, @@ -31614,21 +31614,21 @@ "body": null, "index": 5, "isInternal": false, - "x": 500.10299999999995, + "x": 500.103, "y": 502.496 }, { "body": null, "index": 6, "isInternal": false, - "x": 494.24199999999996, - "y": 500.59099999999995 + "x": 494.242, + "y": 500.591 }, { "body": null, "index": 7, "isInternal": false, - "x": 489.25699999999995, + "x": 489.257, "y": 496.969 }, { @@ -31642,50 +31642,50 @@ "body": null, "index": 9, "isInternal": false, - "x": 483.72999999999996, + "x": 483.73, "y": 486.123 }, { "body": null, "index": 10, "isInternal": false, - "x": 483.72999999999996, - "y": 479.96099999999996 + "x": 483.73, + "y": 479.961 }, { "body": null, "index": 11, "isInternal": false, "x": 485.635, - "y": 474.09999999999997 + "y": 474.1 }, { "body": null, "index": 12, "isInternal": false, - "x": 489.25699999999995, - "y": 469.11499999999995 + "x": 489.257, + "y": 469.115 }, { "body": null, "index": 13, "isInternal": false, - "x": 494.24199999999996, + "x": 494.242, "y": 465.493 }, { "body": null, "index": 14, "isInternal": false, - "x": 500.10299999999995, - "y": 463.58799999999997 + "x": 500.103, + "y": 463.588 }, { "body": null, "index": 15, "isInternal": false, "x": 506.265, - "y": 463.58799999999997 + "y": 463.588 }, { "body": null, @@ -31699,35 +31699,35 @@ "index": 17, "isInternal": false, "x": 517.111, - "y": 469.11499999999995 + "y": 469.115 }, { "body": null, "index": 18, "isInternal": false, "x": 520.733, - "y": 474.09999999999997 + "y": 474.1 }, { "body": null, "index": 19, "isInternal": false, - "x": 522.6379999999999, - "y": 479.96099999999996 + "x": 522.638, + "y": 479.961 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1308.2308839999998, + "area": 1308.23088, "axes": { "#": 3535 }, "bounds": { "#": 3547 }, - "circleRadius": 20.54584619341564, + "circleRadius": 20.54585, "collisionFilter": { "#": 3550 }, @@ -31742,13 +31742,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 1089.5950647298523, - "inverseInertia": 0.0009177721452399695, - "inverseMass": 0.7643910660039119, + "inertia": 1089.59506, + "inverseInertia": 0.00092, + "inverseMass": 0.76439, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3082308839999999, + "mass": 1.30823, "motion": 0, "parent": null, "position": { @@ -31815,44 +31815,44 @@ } ], { - "x": -0.95947162685952, - "y": -0.2818052470262856 + "x": -0.95947, + "y": -0.28181 }, { - "x": -0.8413229007345037, - "y": -0.5405328636629605 + "x": -0.84132, + "y": -0.54053 }, { - "x": -0.6547677672416276, - "y": -0.7558301204512914 + "x": -0.65477, + "y": -0.75583 }, { - "x": -0.41547689312826774, - "y": -0.909603733103862 + "x": -0.41548, + "y": -0.9096 }, { - "x": -0.14228321054537532, - "y": -0.9898259887459515 + "x": -0.14228, + "y": -0.98983 }, { - "x": 0.14228321054537532, - "y": -0.9898259887459515 + "x": 0.14228, + "y": -0.98983 }, { - "x": 0.41547689312826774, - "y": -0.909603733103862 + "x": 0.41548, + "y": -0.9096 }, { - "x": 0.6547677672416276, - "y": -0.7558301204512914 + "x": 0.65477, + "y": -0.75583 }, { - "x": 0.8413229007345037, - "y": -0.5405328636629605 + "x": 0.84132, + "y": -0.54053 }, { - "x": 0.95947162685952, - "y": -0.2818052470262856 + "x": 0.95947, + "y": -0.28181 }, { "x": 1, @@ -31867,12 +31867,12 @@ } }, { - "x": 573.3119999999999, - "y": 504.67999999999995 + "x": 573.312, + "y": 504.68 }, { - "x": 532.6379999999999, - "y": 463.58799999999997 + "x": 532.638, + "y": 463.588 }, { "category": 1, @@ -31889,16 +31889,16 @@ "y": 0 }, { - "x": 552.9749999999999, - "y": 484.13399999999996 + "x": 552.975, + "y": 484.134 }, { "x": 0, "y": 0 }, { - "x": 552.9749999999999, - "y": 484.13399999999996 + "x": 552.975, + "y": 484.134 }, { "fillStyle": "#556270", @@ -31989,64 +31989,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 573.3119999999999, - "y": 487.05799999999994 + "x": 573.312, + "y": 487.058 }, { "body": null, "index": 1, "isInternal": false, - "x": 571.6639999999999, + "x": 571.664, "y": 492.669 }, { "body": null, "index": 2, "isInternal": false, - "x": 568.5029999999999, - "y": 497.58899999999994 + "x": 568.503, + "y": 497.589 }, { "body": null, "index": 3, "isInternal": false, - "x": 564.0829999999999, - "y": 501.41799999999995 + "x": 564.083, + "y": 501.418 }, { "body": null, "index": 4, "isInternal": false, - "x": 558.7629999999999, - "y": 503.84799999999996 + "x": 558.763, + "y": 503.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 552.9749999999999, - "y": 504.67999999999995 + "x": 552.975, + "y": 504.68 }, { "body": null, "index": 6, "isInternal": false, - "x": 547.1869999999999, - "y": 503.84799999999996 + "x": 547.187, + "y": 503.848 }, { "body": null, "index": 7, "isInternal": false, "x": 541.867, - "y": 501.41799999999995 + "y": 501.418 }, { "body": null, "index": 8, "isInternal": false, - "x": 537.4469999999999, - "y": 497.58899999999994 + "x": 537.447, + "y": 497.589 }, { "body": null, @@ -32059,14 +32059,14 @@ "body": null, "index": 10, "isInternal": false, - "x": 532.6379999999999, - "y": 487.05799999999994 + "x": 532.638, + "y": 487.058 }, { "body": null, "index": 11, "isInternal": false, - "x": 532.6379999999999, + "x": 532.638, "y": 481.21 }, { @@ -32074,13 +32074,13 @@ "index": 12, "isInternal": false, "x": 534.286, - "y": 475.59899999999993 + "y": 475.599 }, { "body": null, "index": 13, "isInternal": false, - "x": 537.4469999999999, + "x": 537.447, "y": 470.679 }, { @@ -32088,55 +32088,55 @@ "index": 14, "isInternal": false, "x": 541.867, - "y": 466.84999999999997 + "y": 466.85 }, { "body": null, "index": 15, "isInternal": false, - "x": 547.1869999999999, - "y": 464.41999999999996 + "x": 547.187, + "y": 464.42 }, { "body": null, "index": 16, "isInternal": false, - "x": 552.9749999999999, - "y": 463.58799999999997 + "x": 552.975, + "y": 463.588 }, { "body": null, "index": 17, "isInternal": false, - "x": 558.7629999999999, - "y": 464.41999999999996 + "x": 558.763, + "y": 464.42 }, { "body": null, "index": 18, "isInternal": false, - "x": 564.0829999999999, - "y": 466.84999999999997 + "x": 564.083, + "y": 466.85 }, { "body": null, "index": 19, "isInternal": false, - "x": 568.5029999999999, + "x": 568.503, "y": 470.679 }, { "body": null, "index": 20, "isInternal": false, - "x": 571.6639999999999, - "y": 475.59899999999993 + "x": 571.664, + "y": 475.599 }, { "body": null, "index": 21, "isInternal": false, - "x": 573.3119999999999, + "x": 573.312, "y": 481.21 }, { @@ -32144,14 +32144,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 807.3207440000001, + "area": 807.32074, "axes": { "#": 3583 }, "bounds": { "#": 3593 }, - "circleRadius": 16.194894547325102, + "circleRadius": 16.19489, "collisionFilter": { "#": 3596 }, @@ -32166,13 +32166,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 414.96234834778403, - "inverseInertia": 0.002409857193023908, - "inverseMass": 1.2386650627176252, + "inertia": 414.96235, + "inverseInertia": 0.00241, + "inverseMass": 1.23867, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8073207440000001, + "mass": 0.80732, "motion": 0, "parent": null, "position": { @@ -32233,36 +32233,36 @@ } ], { - "x": -0.9396687718134943, - "y": -0.34208566073210267 + "x": -0.93967, + "y": -0.34209 }, { - "x": -0.7661039978199309, - "y": -0.6427166284797051 + "x": -0.7661, + "y": -0.64272 }, { - "x": -0.4999635742391255, - "y": -0.8660464331859108 + "x": -0.49996, + "y": -0.86605 }, { - "x": -0.17370419268796775, - "y": -0.9847978744100849 + "x": -0.1737, + "y": -0.9848 }, { - "x": 0.17370419268796775, - "y": -0.9847978744100849 + "x": 0.1737, + "y": -0.9848 }, { - "x": 0.4999635742391255, - "y": -0.8660464331859108 + "x": 0.49996, + "y": -0.86605 }, { - "x": 0.7661039978199309, - "y": -0.6427166284797051 + "x": 0.7661, + "y": -0.64272 }, { - "x": 0.9396687718134943, - "y": -0.34208566073210267 + "x": 0.93967, + "y": -0.34209 }, { "x": 1, @@ -32277,12 +32277,12 @@ } }, { - "x": 615.2099999999998, - "y": 495.97799999999995 + "x": 615.21, + "y": 495.978 }, { - "x": 583.3119999999999, - "y": 463.58799999999997 + "x": 583.312, + "y": 463.588 }, { "category": 1, @@ -32299,16 +32299,16 @@ "y": 0 }, { - "x": 599.2609999999999, - "y": 479.78299999999996 + "x": 599.261, + "y": 479.783 }, { "x": 0, "y": 0 }, { - "x": 599.2609999999999, - "y": 479.78299999999996 + "x": 599.261, + "y": 479.783 }, { "fillStyle": "#556270", @@ -32387,141 +32387,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.2099999999998, - "y": 482.59499999999997 + "x": 615.21, + "y": 482.595 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.2859999999998, - "y": 487.87999999999994 + "x": 613.286, + "y": 487.88 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.6709999999998, - "y": 492.18899999999996 + "x": 609.671, + "y": 492.189 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.7999999999998, + "x": 604.8, "y": 495.001 }, { "body": null, "index": 4, "isInternal": false, - "x": 599.2609999999999, - "y": 495.97799999999995 + "x": 599.261, + "y": 495.978 }, { "body": null, "index": 5, "isInternal": false, - "x": 593.7219999999999, + "x": 593.722, "y": 495.001 }, { "body": null, "index": 6, "isInternal": false, - "x": 588.8509999999999, - "y": 492.18899999999996 + "x": 588.851, + "y": 492.189 }, { "body": null, "index": 7, "isInternal": false, - "x": 585.2359999999999, - "y": 487.87999999999994 + "x": 585.236, + "y": 487.88 }, { "body": null, "index": 8, "isInternal": false, - "x": 583.3119999999999, - "y": 482.59499999999997 + "x": 583.312, + "y": 482.595 }, { "body": null, "index": 9, "isInternal": false, - "x": 583.3119999999999, - "y": 476.97099999999995 + "x": 583.312, + "y": 476.971 }, { "body": null, "index": 10, "isInternal": false, - "x": 585.2359999999999, + "x": 585.236, "y": 471.686 }, { "body": null, "index": 11, "isInternal": false, - "x": 588.8509999999999, - "y": 467.37699999999995 + "x": 588.851, + "y": 467.377 }, { "body": null, "index": 12, "isInternal": false, - "x": 593.7219999999999, - "y": 464.56499999999994 + "x": 593.722, + "y": 464.565 }, { "body": null, "index": 13, "isInternal": false, - "x": 599.2609999999999, - "y": 463.58799999999997 + "x": 599.261, + "y": 463.588 }, { "body": null, "index": 14, "isInternal": false, - "x": 604.7999999999998, - "y": 464.56499999999994 + "x": 604.8, + "y": 464.565 }, { "body": null, "index": 15, "isInternal": false, - "x": 609.6709999999998, - "y": 467.37699999999995 + "x": 609.671, + "y": 467.377 }, { "body": null, "index": 16, "isInternal": false, - "x": 613.2859999999998, + "x": 613.286, "y": 471.686 }, { "body": null, "index": 17, "isInternal": false, - "x": 615.2099999999998, - "y": 476.97099999999995 + "x": 615.21, + "y": 476.971 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1402.4361439999998, + "area": 1402.43614, "axes": { "#": 3625 }, "bounds": { "#": 3637 }, - "circleRadius": 21.27295524691358, + "circleRadius": 21.27296, "collisionFilter": { "#": 3640 }, @@ -32536,13 +32536,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 1252.1677796786169, - "inverseInertia": 0.0007986150228659145, - "inverseMass": 0.7130449427435751, + "inertia": 1252.16778, + "inverseInertia": 0.0008, + "inverseMass": 0.71304, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4024361439999997, + "mass": 1.40244, "motion": 0, "parent": null, "position": { @@ -32609,44 +32609,44 @@ } ], { - "x": -0.9595362636667195, - "y": -0.28158508253902903 + "x": -0.95954, + "y": -0.28159 }, { - "x": -0.8412321274033122, - "y": -0.5406741235018536 + "x": -0.84123, + "y": -0.54067 }, { - "x": -0.6548487942859689, - "y": -0.7557599199628232 + "x": -0.65485, + "y": -0.75576 }, { - "x": -0.4153577118331273, - "y": -0.9096581617403039 + "x": -0.41536, + "y": -0.90966 }, { - "x": -0.14236931910518327, - "y": -0.9898136071895186 + "x": -0.14237, + "y": -0.98981 }, { - "x": 0.14236931910518327, - "y": -0.9898136071895186 + "x": 0.14237, + "y": -0.98981 }, { - "x": 0.4153577118331273, - "y": -0.9096581617403039 + "x": 0.41536, + "y": -0.90966 }, { - "x": 0.6548487942859689, - "y": -0.7557599199628232 + "x": 0.65485, + "y": -0.75576 }, { - "x": 0.8412321274033122, - "y": -0.5406741235018536 + "x": 0.84123, + "y": -0.54067 }, { - "x": 0.9595362636667195, - "y": -0.28158508253902903 + "x": 0.95954, + "y": -0.28159 }, { "x": 1, @@ -32662,7 +32662,7 @@ }, { "x": 142.112, - "y": 571.2860000000001 + "y": 571.286 }, { "x": 100, @@ -32784,55 +32784,55 @@ "index": 0, "isInternal": false, "x": 142.112, - "y": 553.0400000000001 + "y": 553.04 }, { "body": null, "index": 1, "isInternal": false, - "x": 140.40699999999998, + "x": 140.407, "y": 558.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 137.13299999999998, - "y": 563.9440000000001 + "x": 137.133, + "y": 563.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 132.55700000000002, + "x": 132.557, "y": 567.909 }, { "body": null, "index": 4, "isInternal": false, - "x": 127.04899999999999, - "y": 570.4240000000001 + "x": 127.049, + "y": 570.424 }, { "body": null, "index": 5, "isInternal": false, "x": 121.056, - "y": 571.2860000000001 + "y": 571.286 }, { "body": null, "index": 6, "isInternal": false, "x": 115.063, - "y": 570.4240000000001 + "y": 570.424 }, { "body": null, "index": 7, "isInternal": false, - "x": 109.55499999999999, + "x": 109.555, "y": 567.909 }, { @@ -32840,7 +32840,7 @@ "index": 8, "isInternal": false, "x": 104.979, - "y": 563.9440000000001 + "y": 563.944 }, { "body": null, @@ -32854,7 +32854,7 @@ "index": 10, "isInternal": false, "x": 100, - "y": 553.0400000000001 + "y": 553.04 }, { "body": null, @@ -32881,7 +32881,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 109.55499999999999, + "x": 109.555, "y": 532.117 }, { @@ -32889,7 +32889,7 @@ "index": 15, "isInternal": false, "x": 115.063, - "y": 529.6020000000001 + "y": 529.602 }, { "body": null, @@ -32902,28 +32902,28 @@ "body": null, "index": 17, "isInternal": false, - "x": 127.04899999999999, - "y": 529.6020000000001 + "x": 127.049, + "y": 529.602 }, { "body": null, "index": 18, "isInternal": false, - "x": 132.55700000000002, + "x": 132.557, "y": 532.117 }, { "body": null, "index": 19, "isInternal": false, - "x": 137.13299999999998, + "x": 137.133, "y": 536.082 }, { "body": null, "index": 20, "isInternal": false, - "x": 140.40699999999998, + "x": 140.407, "y": 541.176 }, { @@ -32938,14 +32938,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1669.8625200000004, + "area": 1669.86252, "axes": { "#": 3673 }, "bounds": { "#": 3686 }, - "circleRadius": 23.187435699588477, + "circleRadius": 23.18744, "collisionFilter": { "#": 3689 }, @@ -32960,13 +32960,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 1775.22327984156, - "inverseInertia": 0.0005633094221754746, - "inverseMass": 0.598851694689213, + "inertia": 1775.22328, + "inverseInertia": 0.00056, + "inverseMass": 0.59885, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6698625200000003, + "mass": 1.66986, "motion": 0, "parent": null, "position": { @@ -33036,48 +33036,48 @@ } ], { - "x": -0.9659023182542247, - "y": -0.2589067623510726 + "x": -0.9659, + "y": -0.25891 }, { - "x": -0.866100319102001, - "y": -0.49987022040866963 + "x": -0.8661, + "y": -0.49987 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.49987022040866963, - "y": -0.866100319102001 + "x": -0.49987, + "y": -0.8661 }, { - "x": -0.2589067623510726, - "y": -0.9659023182542247 + "x": -0.25891, + "y": -0.9659 }, { "x": 0, "y": -1 }, { - "x": 0.2589067623510726, - "y": -0.9659023182542247 + "x": 0.25891, + "y": -0.9659 }, { - "x": 0.49987022040866963, - "y": -0.866100319102001 + "x": 0.49987, + "y": -0.8661 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.866100319102001, - "y": -0.49987022040866963 + "x": 0.8661, + "y": -0.49987 }, { - "x": 0.9659023182542247, - "y": -0.2589067623510726 + "x": 0.9659, + "y": -0.25891 }, { "x": 1, @@ -33093,7 +33093,7 @@ }, { "x": 198.09, - "y": 574.7180000000001 + "y": 574.718 }, { "x": 152.112, @@ -33221,20 +33221,20 @@ "index": 0, "isInternal": false, "x": 198.09, - "y": 554.7560000000001 + "y": 554.756 }, { "body": null, "index": 1, "isInternal": false, "x": 196.523, - "y": 560.6020000000001 + "y": 560.602 }, { "body": null, "index": 2, "isInternal": false, - "x": 193.49699999999999, + "x": 193.497, "y": 565.845 }, { @@ -33249,34 +33249,34 @@ "index": 4, "isInternal": false, "x": 183.974, - "y": 573.1510000000001 + "y": 573.151 }, { "body": null, "index": 5, "isInternal": false, "x": 178.128, - "y": 574.7180000000001 + "y": 574.718 }, { "body": null, "index": 6, "isInternal": false, "x": 172.074, - "y": 574.7180000000001 + "y": 574.718 }, { "body": null, "index": 7, "isInternal": false, "x": 166.228, - "y": 573.1510000000001 + "y": 573.151 }, { "body": null, "index": 8, "isInternal": false, - "x": 160.98499999999999, + "x": 160.985, "y": 570.125 }, { @@ -33291,14 +33291,14 @@ "index": 10, "isInternal": false, "x": 153.679, - "y": 560.6020000000001 + "y": 560.602 }, { "body": null, "index": 11, "isInternal": false, "x": 152.112, - "y": 554.7560000000001 + "y": 554.756 }, { "body": null, @@ -33325,8 +33325,8 @@ "body": null, "index": 15, "isInternal": false, - "x": 160.98499999999999, - "y": 533.3330000000001 + "x": 160.985, + "y": 533.333 }, { "body": null, @@ -33361,13 +33361,13 @@ "index": 20, "isInternal": false, "x": 189.217, - "y": 533.3330000000001 + "y": 533.333 }, { "body": null, "index": 21, "isInternal": false, - "x": 193.49699999999999, + "x": 193.497, "y": 537.613 }, { @@ -33389,14 +33389,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2578.6951839999997, + "area": 2578.69518, "axes": { "#": 3724 }, "bounds": { "#": 3738 }, - "circleRadius": 28.790187757201647, + "circleRadius": 28.79019, "collisionFilter": { "#": 3741 }, @@ -33411,13 +33411,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 4233.391444164257, - "inverseInertia": 0.00023621722989460446, - "inverseMass": 0.3877930226901917, + "inertia": 4233.39144, + "inverseInertia": 0.00024, + "inverseMass": 0.38779, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.578695184, + "mass": 2.5787, "motion": 0, "parent": null, "position": { @@ -33490,52 +33490,52 @@ } ], { - "x": -0.9709422967977464, - "y": -0.23931371939175763 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854957227054148, - "y": -0.46464752777822377 + "x": -0.8855, + "y": -0.46465 }, { - "x": -0.7484655790656051, - "y": -0.6631736401229987 + "x": -0.74847, + "y": -0.66317 }, { - "x": -0.5679955598174117, - "y": -0.8230316178785023 + "x": -0.568, + "y": -0.82303 }, { - "x": -0.3547367594758017, - "y": -0.9349662194307382 + "x": -0.35474, + "y": -0.93497 }, { - "x": -0.12045184716607447, - "y": -0.9927191710218356 + "x": -0.12045, + "y": -0.99272 }, { - "x": 0.12045184716607447, - "y": -0.9927191710218356 + "x": 0.12045, + "y": -0.99272 }, { - "x": 0.3547367594758017, - "y": -0.9349662194307382 + "x": 0.35474, + "y": -0.93497 }, { - "x": 0.5679955598174117, - "y": -0.8230316178785023 + "x": 0.568, + "y": -0.82303 }, { - "x": 0.7484655790656051, - "y": -0.6631736401229987 + "x": 0.74847, + "y": -0.66317 }, { - "x": 0.8854957227054148, - "y": -0.46464752777822377 + "x": 0.8855, + "y": -0.46465 }, { - "x": 0.9709422967977464, - "y": -0.23931371939175763 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -33551,7 +33551,7 @@ }, { "x": 265.25, - "y": 586.3199999999999 + "y": 586.32 }, { "x": 208.09, @@ -33572,7 +33572,7 @@ "y": 0 }, { - "x": 236.67000000000002, + "x": 236.67, "y": 557.53 }, { @@ -33580,7 +33580,7 @@ "y": 0 }, { - "x": 236.67000000000002, + "x": 236.67, "y": 557.53 }, { @@ -33691,70 +33691,70 @@ "body": null, "index": 1, "isInternal": false, - "x": 263.58900000000006, - "y": 567.7389999999999 + "x": 263.589, + "y": 567.739 }, { "body": null, "index": 2, "isInternal": false, - "x": 260.36400000000003, + "x": 260.364, "y": 573.885 }, { "body": null, "index": 3, "isInternal": false, - "x": 255.76100000000002, - "y": 579.0799999999999 + "x": 255.761, + "y": 579.08 }, { "body": null, "index": 4, "isInternal": false, "x": 250.049, - "y": 583.0219999999999 + "y": 583.022 }, { "body": null, "index": 5, "isInternal": false, "x": 243.56, - "y": 585.4839999999999 + "y": 585.484 }, { "body": null, "index": 6, "isInternal": false, - "x": 236.67000000000002, - "y": 586.3199999999999 + "x": 236.67, + "y": 586.32 }, { "body": null, "index": 7, "isInternal": false, - "x": 229.78000000000003, - "y": 585.4839999999999 + "x": 229.78, + "y": 585.484 }, { "body": null, "index": 8, "isInternal": false, - "x": 223.29100000000003, - "y": 583.0219999999999 + "x": 223.291, + "y": 583.022 }, { "body": null, "index": 9, "isInternal": false, "x": 217.579, - "y": 579.0799999999999 + "y": 579.08 }, { "body": null, "index": 10, "isInternal": false, - "x": 212.97600000000003, + "x": 212.976, "y": 573.885 }, { @@ -33762,7 +33762,7 @@ "index": 11, "isInternal": false, "x": 209.751, - "y": 567.7389999999999 + "y": 567.739 }, { "body": null, @@ -33789,7 +33789,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 212.97600000000003, + "x": 212.976, "y": 541.175 }, { @@ -33803,21 +33803,21 @@ "body": null, "index": 17, "isInternal": false, - "x": 223.29100000000003, + "x": 223.291, "y": 532.038 }, { "body": null, "index": 18, "isInternal": false, - "x": 229.78000000000003, + "x": 229.78, "y": 529.576 }, { "body": null, "index": 19, "isInternal": false, - "x": 236.67000000000002, + "x": 236.67, "y": 528.74 }, { @@ -33838,21 +33838,21 @@ "body": null, "index": 22, "isInternal": false, - "x": 255.76100000000002, + "x": 255.761, "y": 535.98 }, { "body": null, "index": 23, "isInternal": false, - "x": 260.36400000000003, + "x": 260.364, "y": 541.175 }, { "body": null, "index": 24, "isInternal": false, - "x": 263.58900000000006, + "x": 263.589, "y": 547.321 }, { @@ -33867,14 +33867,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 792.3786020000001, + "area": 792.3786, "axes": { "#": 3778 }, "bounds": { "#": 3788 }, - "circleRadius": 16.04417438271605, + "circleRadius": 16.04417, "collisionFilter": { "#": 3791 }, @@ -33889,13 +33889,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 399.7439941436189, - "inverseInertia": 0.0025016010613050583, - "inverseMass": 1.2620229742145408, + "inertia": 399.74399, + "inverseInertia": 0.0025, + "inverseMass": 1.26202, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7923786020000001, + "mass": 0.79238, "motion": 0, "parent": null, "position": { @@ -33956,36 +33956,36 @@ } ], { - "x": -0.9397357682278553, - "y": -0.3419015734289659 + "x": -0.93974, + "y": -0.3419 }, { - "x": -0.7660547215275308, - "y": -0.6427753601573236 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.4999606451996678, - "y": -0.8660481240967687 + "x": -0.49996, + "y": -0.86605 }, { - "x": -0.17356007216033498, - "y": -0.9848232843265331 + "x": -0.17356, + "y": -0.98482 }, { - "x": 0.17356007216033498, - "y": -0.9848232843265331 + "x": 0.17356, + "y": -0.98482 }, { - "x": 0.4999606451996678, - "y": -0.8660481240967687 + "x": 0.49996, + "y": -0.86605 }, { - "x": 0.7660547215275308, - "y": -0.6427753601573236 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9397357682278553, - "y": -0.3419015734289659 + "x": 0.93974, + "y": -0.3419 }, { "x": 1, @@ -34111,7 +34111,7 @@ "index": 0, "isInternal": false, "x": 306.85, - "y": 547.5699999999999 + "y": 547.57 }, { "body": null, @@ -34131,7 +34131,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 296.53700000000003, + "x": 296.537, "y": 559.861 }, { @@ -34159,7 +34159,7 @@ "body": null, "index": 7, "isInternal": false, - "x": 277.15500000000003, + "x": 277.155, "y": 552.806 }, { @@ -34167,7 +34167,7 @@ "index": 8, "isInternal": false, "x": 275.25, - "y": 547.5699999999999 + "y": 547.57 }, { "body": null, @@ -34180,7 +34180,7 @@ "body": null, "index": 10, "isInternal": false, - "x": 277.15500000000003, + "x": 277.155, "y": 536.762 }, { @@ -34188,7 +34188,7 @@ "index": 11, "isInternal": false, "x": 280.737, - "y": 532.4929999999999 + "y": 532.493 }, { "body": null, @@ -34208,7 +34208,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 296.53700000000003, + "x": 296.537, "y": 529.707 }, { @@ -34216,7 +34216,7 @@ "index": 15, "isInternal": false, "x": 301.363, - "y": 532.4929999999999 + "y": 532.493 }, { "body": null, @@ -34237,14 +34237,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 753.695398, + "area": 753.6954, "axes": { "#": 3820 }, "bounds": { "#": 3829 }, - "circleRadius": 15.690136316872428, + "circleRadius": 15.69014, "collisionFilter": { "#": 3832 }, @@ -34259,13 +34259,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 361.68483161032174, - "inverseInertia": 0.002764838092733171, - "inverseMass": 1.326795947877076, + "inertia": 361.68483, + "inverseInertia": 0.00276, + "inverseMass": 1.3268, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.753695398, + "mass": 0.7537, "motion": 0, "parent": null, "position": { @@ -34323,32 +34323,32 @@ } ], { - "x": -0.9238675146962287, - "y": -0.38271244464873827 + "x": -0.92387, + "y": -0.38271 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38271244464873827, - "y": -0.9238675146962287 + "x": -0.38271, + "y": -0.92387 }, { "x": 0, "y": -1 }, { - "x": 0.38271244464873827, - "y": -0.9238675146962287 + "x": 0.38271, + "y": -0.92387 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238675146962287, - "y": -0.38271244464873827 + "x": 0.92387, + "y": -0.38271 }, { "x": 1, @@ -34363,7 +34363,7 @@ } }, { - "x": 347.62800000000004, + "x": 347.628, "y": 559.518 }, { @@ -34385,7 +34385,7 @@ "y": 0 }, { - "x": 332.23900000000003, + "x": 332.239, "y": 544.129 }, { @@ -34393,7 +34393,7 @@ "y": 0 }, { - "x": 332.23900000000003, + "x": 332.239, "y": 544.129 }, { @@ -34467,7 +34467,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 347.62800000000004, + "x": 347.628, "y": 547.19 }, { @@ -34482,7 +34482,7 @@ "index": 2, "isInternal": false, "x": 340.956, - "y": 557.1750000000001 + "y": 557.175 }, { "body": null, @@ -34495,21 +34495,21 @@ "body": null, "index": 4, "isInternal": false, - "x": 329.17800000000005, + "x": 329.178, "y": 559.518 }, { "body": null, "index": 5, "isInternal": false, - "x": 323.52200000000005, - "y": 557.1750000000001 + "x": 323.522, + "y": 557.175 }, { "body": null, "index": 6, "isInternal": false, - "x": 319.19300000000004, + "x": 319.193, "y": 552.846 }, { @@ -34530,21 +34530,21 @@ "body": null, "index": 9, "isInternal": false, - "x": 319.19300000000004, + "x": 319.193, "y": 535.412 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.52200000000005, + "x": 323.522, "y": 531.083 }, { "body": null, "index": 11, "isInternal": false, - "x": 329.17800000000005, + "x": 329.178, "y": 528.74 }, { @@ -34572,7 +34572,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 347.62800000000004, + "x": 347.628, "y": 541.068 }, { @@ -34580,14 +34580,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1630.6059260000002, + "area": 1630.60593, "axes": { "#": 3859 }, "bounds": { "#": 3872 }, - "circleRadius": 22.913258744855966, + "circleRadius": 22.91326, "collisionFilter": { "#": 3875 }, @@ -34602,13 +34602,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 1692.7373724676456, - "inverseInertia": 0.0005907590960446605, - "inverseMass": 0.6132689597498738, + "inertia": 1692.73737, + "inverseInertia": 0.00059, + "inverseMass": 0.61327, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6306059260000003, + "mass": 1.63061, "motion": 0, "parent": null, "position": { @@ -34678,48 +34678,48 @@ } ], { - "x": -0.9659346205288032, - "y": -0.25878622232235815 + "x": -0.96593, + "y": -0.25879 }, { - "x": -0.8660018316298927, - "y": -0.500040825946913 + "x": -0.866, + "y": -0.50004 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.500040825946913, - "y": -0.8660018316298927 + "x": -0.50004, + "y": -0.866 }, { - "x": -0.25878622232235815, - "y": -0.9659346205288032 + "x": -0.25879, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.25878622232235815, - "y": -0.9659346205288032 + "x": 0.25879, + "y": -0.96593 }, { - "x": 0.500040825946913, - "y": -0.8660018316298927 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660018316298927, - "y": -0.500040825946913 + "x": 0.866, + "y": -0.50004 }, { - "x": 0.9659346205288032, - "y": -0.25878622232235815 + "x": 0.96593, + "y": -0.25879 }, { "x": 1, @@ -34738,7 +34738,7 @@ "y": 574.174 }, { - "x": 357.62800000000004, + "x": 357.628, "y": 528.74 }, { @@ -34883,14 +34883,14 @@ "body": null, "index": 3, "isInternal": false, - "x": 394.29400000000004, + "x": 394.294, "y": 569.635 }, { "body": null, "index": 4, "isInternal": false, - "x": 389.11400000000003, + "x": 389.114, "y": 572.626 }, { @@ -34904,7 +34904,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 377.35400000000004, + "x": 377.354, "y": 574.174 }, { @@ -34925,42 +34925,42 @@ "body": null, "index": 9, "isInternal": false, - "x": 362.16700000000003, + "x": 362.167, "y": 565.406 }, { "body": null, "index": 10, "isInternal": false, - "x": 359.17600000000004, + "x": 359.176, "y": 560.226 }, { "body": null, "index": 11, "isInternal": false, - "x": 357.62800000000004, + "x": 357.628, "y": 554.448 }, { "body": null, "index": 12, "isInternal": false, - "x": 357.62800000000004, + "x": 357.628, "y": 548.466 }, { "body": null, "index": 13, "isInternal": false, - "x": 359.17600000000004, + "x": 359.176, "y": 542.688 }, { "body": null, "index": 14, "isInternal": false, - "x": 362.16700000000003, + "x": 362.167, "y": 537.508 }, { @@ -34981,7 +34981,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 377.35400000000004, + "x": 377.354, "y": 528.74 }, { @@ -34995,14 +34995,14 @@ "body": null, "index": 19, "isInternal": false, - "x": 389.11400000000003, + "x": 389.114, "y": 530.288 }, { "body": null, "index": 20, "isInternal": false, - "x": 394.29400000000004, + "x": 394.294, "y": 533.279 }, { @@ -35031,14 +35031,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1793.4883420000006, + "area": 1793.48834, "axes": { "#": 3910 }, "bounds": { "#": 3924 }, - "circleRadius": 24.009837962962962, + "circleRadius": 24.00984, "collisionFilter": { "#": 3927 }, @@ -35053,13 +35053,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 2047.790506990953, - "inverseInertia": 0.000488331202135228, - "inverseMass": 0.5575726234634202, + "inertia": 2047.79051, + "inverseInertia": 0.00049, + "inverseMass": 0.55757, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7934883420000005, + "mass": 1.79349, "motion": 0, "parent": null, "position": { @@ -35132,52 +35132,52 @@ } ], { - "x": -0.9709500701443841, - "y": -0.23928217920818035 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.885442339677996, - "y": -0.46474924755781605 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.7484852853686965, - "y": -0.6631513986915363 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5681043565520763, - "y": -0.8229565238009547 + "x": -0.5681, + "y": -0.82296 }, { - "x": -0.354529231282999, - "y": -0.9350449316294303 + "x": -0.35453, + "y": -0.93504 }, { - "x": -0.12058933698905597, - "y": -0.9927024789958672 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12058933698905597, - "y": -0.9927024789958672 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.354529231282999, - "y": -0.9350449316294303 + "x": 0.35453, + "y": -0.93504 }, { - "x": 0.5681043565520763, - "y": -0.8229565238009547 + "x": 0.5681, + "y": -0.82296 }, { - "x": 0.7484852853686965, - "y": -0.6631513986915363 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.885442339677996, - "y": -0.46474924755781605 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.9709500701443841, - "y": -0.23928217920818035 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -35192,7 +35192,7 @@ } }, { - "x": 460.73199999999997, + "x": 460.732, "y": 576.76 }, { @@ -35326,7 +35326,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 460.73199999999997, + "x": 460.732, "y": 555.644 }, { @@ -35501,7 +35501,7 @@ "body": null, "index": 25, "isInternal": false, - "x": 460.73199999999997, + "x": 460.732, "y": 549.856 }, { @@ -35509,14 +35509,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1007.2220640000002, + "area": 1007.22206, "axes": { "#": 3964 }, "bounds": { "#": 3975 }, - "circleRadius": 18.05394804526749, + "circleRadius": 18.05395, "collisionFilter": { "#": 3978 }, @@ -35531,13 +35531,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 645.8837609881251, - "inverseInertia": 0.0015482662057799987, - "inverseMass": 0.9928297202194726, + "inertia": 645.88376, + "inverseInertia": 0.00155, + "inverseMass": 0.99283, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0072220640000003, + "mass": 1.00722, "motion": 0, "parent": null, "position": { @@ -35601,40 +35601,40 @@ } ], { - "x": -0.9510288646450753, - "y": -0.3091020844509128 + "x": -0.95103, + "y": -0.3091 }, { - "x": -0.8090421944642641, - "y": -0.5877505657814782 + "x": -0.80904, + "y": -0.58775 }, { - "x": -0.5877505657814782, - "y": -0.8090421944642641 + "x": -0.58775, + "y": -0.80904 }, { - "x": -0.3091020844509128, - "y": -0.9510288646450753 + "x": -0.3091, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.3091020844509128, - "y": -0.9510288646450753 + "x": 0.3091, + "y": -0.95103 }, { - "x": 0.5877505657814782, - "y": -0.8090421944642641 + "x": 0.58775, + "y": -0.80904 }, { - "x": 0.8090421944642641, - "y": -0.5877505657814782 + "x": 0.80904, + "y": -0.58775 }, { - "x": 0.9510288646450753, - "y": -0.3091020844509128 + "x": 0.95103, + "y": -0.3091 }, { "x": 1, @@ -35649,11 +35649,11 @@ } }, { - "x": 506.39599999999996, + "x": 506.396, "y": 564.404 }, { - "x": 470.73199999999997, + "x": 470.732, "y": 528.74 }, { @@ -35671,7 +35671,7 @@ "y": 0 }, { - "x": 488.56399999999996, + "x": 488.564, "y": 546.572 }, { @@ -35679,7 +35679,7 @@ "y": 0 }, { - "x": 488.56399999999996, + "x": 488.564, "y": 546.572 }, { @@ -35765,7 +35765,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 506.39599999999996, + "x": 506.396, "y": 549.396 }, { @@ -35800,70 +35800,70 @@ "body": null, "index": 5, "isInternal": false, - "x": 485.73999999999995, + "x": 485.74, "y": 564.404 }, { "body": null, "index": 6, "isInternal": false, - "x": 480.36799999999994, + "x": 480.368, "y": 562.658 }, { "body": null, "index": 7, "isInternal": false, - "x": 475.79799999999994, + "x": 475.798, "y": 559.338 }, { "body": null, "index": 8, "isInternal": false, - "x": 472.47799999999995, + "x": 472.478, "y": 554.768 }, { "body": null, "index": 9, "isInternal": false, - "x": 470.73199999999997, + "x": 470.732, "y": 549.396 }, { "body": null, "index": 10, "isInternal": false, - "x": 470.73199999999997, + "x": 470.732, "y": 543.748 }, { "body": null, "index": 11, "isInternal": false, - "x": 472.47799999999995, + "x": 472.478, "y": 538.376 }, { "body": null, "index": 12, "isInternal": false, - "x": 475.79799999999994, + "x": 475.798, "y": 533.806 }, { "body": null, "index": 13, "isInternal": false, - "x": 480.36799999999994, + "x": 480.368, "y": 530.486 }, { "body": null, "index": 14, "isInternal": false, - "x": 485.73999999999995, + "x": 485.74, "y": 528.74 }, { @@ -35898,7 +35898,7 @@ "body": null, "index": 19, "isInternal": false, - "x": 506.39599999999996, + "x": 506.396, "y": 543.748 }, { @@ -35906,14 +35906,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1064.9913560000002, + "area": 1064.99136, "axes": { "#": 4009 }, "bounds": { "#": 4020 }, - "circleRadius": 18.564107510288068, + "circleRadius": 18.56411, "collisionFilter": { "#": 4023 }, @@ -35928,13 +35928,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 722.0978790866207, - "inverseInertia": 0.0013848538113211146, - "inverseMass": 0.9389747572749312, + "inertia": 722.09788, + "inverseInertia": 0.00138, + "inverseMass": 0.93897, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0649913560000002, + "mass": 1.06499, "motion": 0, "parent": null, "position": { @@ -35998,40 +35998,40 @@ } ], { - "x": -0.9510492501819376, - "y": -0.30903935627743956 + "x": -0.95105, + "y": -0.30904 }, { - "x": -0.8090189051635235, - "y": -0.5877826223086335 + "x": -0.80902, + "y": -0.58778 }, { - "x": -0.5877826223086335, - "y": -0.8090189051635235 + "x": -0.58778, + "y": -0.80902 }, { - "x": -0.30903935627743956, - "y": -0.9510492501819376 + "x": -0.30904, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.30903935627743956, - "y": -0.9510492501819376 + "x": 0.30904, + "y": -0.95105 }, { - "x": 0.5877826223086335, - "y": -0.8090189051635235 + "x": 0.58778, + "y": -0.80902 }, { - "x": 0.8090189051635235, - "y": -0.5877826223086335 + "x": 0.80902, + "y": -0.58778 }, { - "x": 0.9510492501819376, - "y": -0.30903935627743956 + "x": 0.95105, + "y": -0.30904 }, { "x": 1, @@ -36176,7 +36176,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 547.8589999999999, + "x": 547.859, "y": 560.203 }, { @@ -36184,7 +36184,7 @@ "index": 3, "isInternal": false, "x": 543.16, - "y": 563.6170000000001 + "y": 563.617 }, { "body": null, @@ -36205,7 +36205,7 @@ "index": 6, "isInternal": false, "x": 526.304, - "y": 563.6170000000001 + "y": 563.617 }, { "body": null, @@ -36247,7 +36247,7 @@ "index": 12, "isInternal": false, "x": 521.605, - "y": 533.9490000000001 + "y": 533.949 }, { "body": null, @@ -36281,8 +36281,8 @@ "body": null, "index": 17, "isInternal": false, - "x": 547.8589999999999, - "y": 533.9490000000001 + "x": 547.859, + "y": 533.949 }, { "body": null, @@ -36303,14 +36303,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1260.7906620000003, + "area": 1260.79066, "axes": { "#": 4054 }, "bounds": { "#": 4066 }, - "circleRadius": 20.169945987654323, + "circleRadius": 20.16995, "collisionFilter": { "#": 4069 }, @@ -36325,13 +36325,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 1012.0041641764243, - "inverseInertia": 0.000988138226500092, - "inverseMass": 0.7931530825376621, + "inertia": 1012.00416, + "inverseInertia": 0.00099, + "inverseMass": 0.79315, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2607906620000005, + "mass": 1.26079, "motion": 0, "parent": null, "position": { @@ -36398,44 +36398,44 @@ } ], { - "x": -0.9594735907257443, - "y": -0.28179856049995516 + "x": -0.95947, + "y": -0.2818 }, { - "x": -0.8412576932540721, - "y": -0.5406343436564474 + "x": -0.84126, + "y": -0.54063 }, { - "x": -0.6548708437223062, - "y": -0.7557408140642099 + "x": -0.65487, + "y": -0.75574 }, { - "x": -0.4154427589137636, - "y": -0.9096193237097158 + "x": -0.41544, + "y": -0.90962 }, { - "x": -0.1422991312627322, - "y": -0.9898237000809141 + "x": -0.1423, + "y": -0.98982 }, { - "x": 0.1422991312627322, - "y": -0.9898237000809141 + "x": 0.1423, + "y": -0.98982 }, { - "x": 0.4154427589137636, - "y": -0.9096193237097158 + "x": 0.41544, + "y": -0.90962 }, { - "x": 0.6548708437223062, - "y": -0.7557408140642099 + "x": 0.65487, + "y": -0.75574 }, { - "x": 0.8412576932540721, - "y": -0.5406343436564474 + "x": 0.84126, + "y": -0.54063 }, { - "x": 0.9594735907257443, - "y": -0.28179856049995516 + "x": 0.95947, + "y": -0.2818 }, { "x": 1, @@ -36451,7 +36451,7 @@ }, { "x": 602.998, - "y": 569.0799999999999 + "y": 569.08 }, { "x": 563.068, @@ -36586,50 +36586,50 @@ "body": null, "index": 2, "isInternal": false, - "x": 598.2760000000001, - "y": 562.1189999999999 + "x": 598.276, + "y": 562.119 }, { "body": null, "index": 3, "isInternal": false, "x": 593.938, - "y": 565.8779999999999 + "y": 565.878 }, { "body": null, "index": 4, "isInternal": false, "x": 588.716, - "y": 568.2629999999999 + "y": 568.263 }, { "body": null, "index": 5, "isInternal": false, "x": 583.033, - "y": 569.0799999999999 + "y": 569.08 }, { "body": null, "index": 6, "isInternal": false, "x": 577.35, - "y": 568.2629999999999 + "y": 568.263 }, { "body": null, "index": 7, "isInternal": false, "x": 572.128, - "y": 565.8779999999999 + "y": 565.878 }, { "body": null, "index": 8, "isInternal": false, "x": 567.79, - "y": 562.1189999999999 + "y": 562.119 }, { "body": null, @@ -36705,7 +36705,7 @@ "body": null, "index": 19, "isInternal": false, - "x": 598.2760000000001, + "x": 598.276, "y": 535.701 }, { @@ -36727,14 +36727,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1274.4243100000003, + "area": 1274.42431, "axes": { "#": 4102 }, "bounds": { "#": 4114 }, - "circleRadius": 20.278870884773664, + "circleRadius": 20.27887, "collisionFilter": { "#": 4117 }, @@ -36749,13 +36749,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 1034.0092576280601, - "inverseInertia": 0.0009671093296533197, - "inverseMass": 0.7846680200254496, + "inertia": 1034.00926, + "inverseInertia": 0.00097, + "inverseMass": 0.78467, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2744243100000003, + "mass": 1.27442, "motion": 0, "parent": null, "position": { @@ -36822,44 +36822,44 @@ } ], { - "x": -0.9594978217257015, - "y": -0.2817160451654006 + "x": -0.9595, + "y": -0.28172 }, { - "x": -0.8413135484521326, - "y": -0.540547419928059 + "x": -0.84131, + "y": -0.54055 }, { - "x": -0.6548909622863403, - "y": -0.7557233802891579 + "x": -0.65489, + "y": -0.75572 }, { - "x": -0.41526429982431406, - "y": -0.9097008086681149 + "x": -0.41526, + "y": -0.9097 }, { - "x": -0.14241576969235267, - "y": -0.9898069248812793 + "x": -0.14242, + "y": -0.98981 }, { - "x": 0.14241576969235267, - "y": -0.9898069248812793 + "x": 0.14242, + "y": -0.98981 }, { - "x": 0.41526429982431406, - "y": -0.9097008086681149 + "x": 0.41526, + "y": -0.9097 }, { - "x": 0.6548909622863403, - "y": -0.7557233802891579 + "x": 0.65489, + "y": -0.75572 }, { - "x": 0.8413135484521326, - "y": -0.540547419928059 + "x": 0.84131, + "y": -0.54055 }, { - "x": 0.9594978217257015, - "y": -0.2817160451654006 + "x": 0.9595, + "y": -0.28172 }, { "x": 1, @@ -36875,11 +36875,11 @@ }, { "x": 140.144, - "y": 636.8779999999999 + "y": 636.878 }, { "x": 100, - "y": 596.3199999999999 + "y": 596.32 }, { "category": 1, @@ -36897,7 +36897,7 @@ }, { "x": 120.072, - "y": 616.5989999999999 + "y": 616.599 }, { "x": 0, @@ -36905,7 +36905,7 @@ }, { "x": 120.072, - "y": 616.5989999999999 + "y": 616.599 }, { "fillStyle": "#C7F464", @@ -36997,77 +36997,77 @@ "index": 0, "isInternal": false, "x": 140.144, - "y": 619.4849999999999 + "y": 619.485 }, { "body": null, "index": 1, "isInternal": false, "x": 138.518, - "y": 625.0229999999999 + "y": 625.023 }, { "body": null, "index": 2, "isInternal": false, "x": 135.398, - "y": 629.8789999999999 + "y": 629.879 }, { "body": null, "index": 3, "isInternal": false, "x": 131.036, - "y": 633.6589999999999 + "y": 633.659 }, { "body": null, "index": 4, "isInternal": false, "x": 125.785, - "y": 636.0559999999999 + "y": 636.056 }, { "body": null, "index": 5, "isInternal": false, "x": 120.072, - "y": 636.8779999999999 + "y": 636.878 }, { "body": null, "index": 6, "isInternal": false, - "x": 114.35900000000001, - "y": 636.0559999999999 + "x": 114.359, + "y": 636.056 }, { "body": null, "index": 7, "isInternal": false, "x": 109.108, - "y": 633.6589999999999 + "y": 633.659 }, { "body": null, "index": 8, "isInternal": false, - "x": 104.74600000000001, - "y": 629.8789999999999 + "x": 104.746, + "y": 629.879 }, { "body": null, "index": 9, "isInternal": false, "x": 101.626, - "y": 625.0229999999999 + "y": 625.023 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 619.4849999999999 + "y": 619.485 }, { "body": null, @@ -37087,7 +37087,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 104.74600000000001, + "x": 104.746, "y": 603.319 }, { @@ -37101,22 +37101,22 @@ "body": null, "index": 15, "isInternal": false, - "x": 114.35900000000001, - "y": 597.1419999999999 + "x": 114.359, + "y": 597.142 }, { "body": null, "index": 16, "isInternal": false, "x": 120.072, - "y": 596.3199999999999 + "y": 596.32 }, { "body": null, "index": 17, "isInternal": false, "x": 125.785, - "y": 597.1419999999999 + "y": 597.142 }, { "body": null, @@ -37158,7 +37158,7 @@ "bounds": { "#": 4162 }, - "circleRadius": 20.74273405349794, + "circleRadius": 20.74273, "collisionFilter": { "#": 4165 }, @@ -37173,13 +37173,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 1131.961092953285, - "inverseInertia": 0.0008834225895441347, - "inverseMass": 0.7499501845589907, + "inertia": 1131.96109, + "inverseInertia": 0.00088, + "inverseMass": 0.74995, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3334219, + "mass": 1.33342, "motion": 0, "parent": null, "position": { @@ -37246,44 +37246,44 @@ } ], { - "x": -0.9594652279920087, - "y": -0.28182703254699093 + "x": -0.95947, + "y": -0.28183 }, { - "x": -0.8412610105438605, - "y": -0.5406291817306226 + "x": -0.84126, + "y": -0.54063 }, { - "x": -0.6548273560052427, - "y": -0.7557784952135005 + "x": -0.65483, + "y": -0.75578 }, { - "x": -0.41549954801129746, - "y": -0.9095933847617887 + "x": -0.4155, + "y": -0.90959 }, { - "x": -0.14227495337783921, - "y": -0.9898271756429674 + "x": -0.14227, + "y": -0.98983 }, { - "x": 0.14227495337783921, - "y": -0.9898271756429674 + "x": 0.14227, + "y": -0.98983 }, { - "x": 0.41549954801129746, - "y": -0.9095933847617887 + "x": 0.4155, + "y": -0.90959 }, { - "x": 0.6548273560052427, - "y": -0.7557784952135005 + "x": 0.65483, + "y": -0.75578 }, { - "x": 0.8412610105438605, - "y": -0.5406291817306226 + "x": 0.84126, + "y": -0.54063 }, { - "x": 0.9594652279920087, - "y": -0.28182703254699093 + "x": 0.95947, + "y": -0.28183 }, { "x": 1, @@ -37298,12 +37298,12 @@ } }, { - "x": 191.20800000000003, + "x": 191.208, "y": 637.806 }, { "x": 150.144, - "y": 596.3199999999999 + "y": 596.32 }, { "category": 1, @@ -37320,7 +37320,7 @@ "y": 0 }, { - "x": 170.67600000000002, + "x": 170.676, "y": 617.063 }, { @@ -37328,7 +37328,7 @@ "y": 0 }, { - "x": 170.67600000000002, + "x": 170.676, "y": 617.063 }, { @@ -37420,7 +37420,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 191.20800000000003, + "x": 191.208, "y": 620.015 }, { @@ -37435,13 +37435,13 @@ "index": 2, "isInternal": false, "x": 186.352, - "y": 630.6469999999999 + "y": 630.647 }, { "body": null, "index": 3, "isInternal": false, - "x": 181.89000000000001, + "x": 181.89, "y": 634.513 }, { @@ -37455,35 +37455,35 @@ "body": null, "index": 5, "isInternal": false, - "x": 170.67600000000002, + "x": 170.676, "y": 637.806 }, { "body": null, "index": 6, "isInternal": false, - "x": 164.83200000000002, + "x": 164.832, "y": 636.966 }, { "body": null, "index": 7, "isInternal": false, - "x": 159.46200000000002, + "x": 159.462, "y": 634.513 }, { "body": null, "index": 8, "isInternal": false, - "x": 155.00000000000003, - "y": 630.6469999999999 + "x": 155, + "y": 630.647 }, { "body": null, "index": 9, "isInternal": false, - "x": 151.80800000000002, + "x": 151.808, "y": 625.68 }, { @@ -37504,36 +37504,36 @@ "body": null, "index": 12, "isInternal": false, - "x": 151.80800000000002, + "x": 151.808, "y": 608.446 }, { "body": null, "index": 13, "isInternal": false, - "x": 155.00000000000003, + "x": 155, "y": 603.479 }, { "body": null, "index": 14, "isInternal": false, - "x": 159.46200000000002, - "y": 599.6129999999999 + "x": 159.462, + "y": 599.613 }, { "body": null, "index": 15, "isInternal": false, - "x": 164.83200000000002, + "x": 164.832, "y": 597.16 }, { "body": null, "index": 16, "isInternal": false, - "x": 170.67600000000002, - "y": 596.3199999999999 + "x": 170.676, + "y": 596.32 }, { "body": null, @@ -37546,8 +37546,8 @@ "body": null, "index": 18, "isInternal": false, - "x": 181.89000000000001, - "y": 599.6129999999999 + "x": 181.89, + "y": 599.613 }, { "body": null, @@ -37567,7 +37567,7 @@ "body": null, "index": 21, "isInternal": false, - "x": 191.20800000000003, + "x": 191.208, "y": 614.111 }, { @@ -37575,14 +37575,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1871.187918, + "area": 1871.18792, "axes": { "#": 4198 }, "bounds": { "#": 4212 }, - "circleRadius": 24.524498456790123, + "circleRadius": 24.5245, "collisionFilter": { "#": 4215 }, @@ -37597,13 +37597,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 2229.0674939927567, - "inverseInertia": 0.00044861808926600834, - "inverseMass": 0.5344198679247778, + "inertia": 2229.06749, + "inverseInertia": 0.00045, + "inverseMass": 0.53442, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8711879180000002, + "mass": 1.87119, "motion": 0, "parent": null, "position": { @@ -37676,52 +37676,52 @@ } ], { - "x": -0.9709429732345612, - "y": -0.23931097493936654 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854240051469862, - "y": -0.4647841769138335 + "x": -0.88542, + "y": -0.46478 }, { - "x": -0.7485282053999598, - "y": -0.6631029525803032 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5679779885552098, - "y": -0.8230437439873886 + "x": -0.56798, + "y": -0.82304 }, { - "x": -0.35467972757101507, - "y": -0.9349878559907345 + "x": -0.35468, + "y": -0.93499 }, { - "x": -0.12043239564837492, - "y": -0.9927215309835852 + "x": -0.12043, + "y": -0.99272 }, { - "x": 0.12043239564837492, - "y": -0.9927215309835852 + "x": 0.12043, + "y": -0.99272 }, { - "x": 0.35467972757101507, - "y": -0.9349878559907345 + "x": 0.35468, + "y": -0.93499 }, { - "x": 0.5679779885552098, - "y": -0.8230437439873886 + "x": 0.56798, + "y": -0.82304 }, { - "x": 0.7485282053999598, - "y": -0.6631029525803032 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854240051469862, - "y": -0.4647841769138335 + "x": 0.88542, + "y": -0.46478 }, { - "x": 0.9709429732345612, - "y": -0.23931097493936654 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -37736,12 +37736,12 @@ } }, { - "x": 249.90000000000003, - "y": 645.3679999999999 + "x": 249.9, + "y": 645.368 }, { - "x": 201.20800000000003, - "y": 596.3199999999999 + "x": 201.208, + "y": 596.32 }, { "category": 1, @@ -37758,16 +37758,16 @@ "y": 0 }, { - "x": 225.55400000000003, - "y": 620.8439999999999 + "x": 225.554, + "y": 620.844 }, { "x": 0, "y": 0 }, { - "x": 225.55400000000003, - "y": 620.8439999999999 + "x": 225.554, + "y": 620.844 }, { "fillStyle": "#556270", @@ -37870,197 +37870,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 249.90000000000003, + "x": 249.9, "y": 623.8 }, { "body": null, "index": 1, "isInternal": false, - "x": 248.48500000000004, - "y": 629.5409999999999 + "x": 248.485, + "y": 629.541 }, { "body": null, "index": 2, "isInternal": false, - "x": 245.73700000000002, + "x": 245.737, "y": 634.776 }, { "body": null, "index": 3, "isInternal": false, - "x": 241.81700000000004, - "y": 639.2009999999999 + "x": 241.817, + "y": 639.201 }, { "body": null, "index": 4, "isInternal": false, - "x": 236.95100000000002, + "x": 236.951, "y": 642.559 }, { "body": null, "index": 5, "isInternal": false, - "x": 231.42300000000003, + "x": 231.423, "y": 644.656 }, { "body": null, "index": 6, "isInternal": false, - "x": 225.55400000000003, - "y": 645.3679999999999 + "x": 225.554, + "y": 645.368 }, { "body": null, "index": 7, "isInternal": false, - "x": 219.68500000000003, + "x": 219.685, "y": 644.656 }, { "body": null, "index": 8, "isInternal": false, - "x": 214.15700000000004, + "x": 214.157, "y": 642.559 }, { "body": null, "index": 9, "isInternal": false, - "x": 209.29100000000003, - "y": 639.2009999999999 + "x": 209.291, + "y": 639.201 }, { "body": null, "index": 10, "isInternal": false, - "x": 205.37100000000004, + "x": 205.371, "y": 634.776 }, { "body": null, "index": 11, "isInternal": false, - "x": 202.62300000000002, - "y": 629.5409999999999 + "x": 202.623, + "y": 629.541 }, { "body": null, "index": 12, "isInternal": false, - "x": 201.20800000000003, + "x": 201.208, "y": 623.8 }, { "body": null, "index": 13, "isInternal": false, - "x": 201.20800000000003, - "y": 617.8879999999999 + "x": 201.208, + "y": 617.888 }, { "body": null, "index": 14, "isInternal": false, - "x": 202.62300000000002, - "y": 612.1469999999999 + "x": 202.623, + "y": 612.147 }, { "body": null, "index": 15, "isInternal": false, - "x": 205.37100000000004, - "y": 606.9119999999999 + "x": 205.371, + "y": 606.912 }, { "body": null, "index": 16, "isInternal": false, - "x": 209.29100000000003, + "x": 209.291, "y": 602.487 }, { "body": null, "index": 17, "isInternal": false, - "x": 214.15700000000004, - "y": 599.1289999999999 + "x": 214.157, + "y": 599.129 }, { "body": null, "index": 18, "isInternal": false, - "x": 219.68500000000003, - "y": 597.0319999999999 + "x": 219.685, + "y": 597.032 }, { "body": null, "index": 19, "isInternal": false, - "x": 225.55400000000003, - "y": 596.3199999999999 + "x": 225.554, + "y": 596.32 }, { "body": null, "index": 20, "isInternal": false, - "x": 231.42300000000003, - "y": 597.0319999999999 + "x": 231.423, + "y": 597.032 }, { "body": null, "index": 21, "isInternal": false, - "x": 236.95100000000002, - "y": 599.1289999999999 + "x": 236.951, + "y": 599.129 }, { "body": null, "index": 22, "isInternal": false, - "x": 241.81700000000004, + "x": 241.817, "y": 602.487 }, { "body": null, "index": 23, "isInternal": false, - "x": 245.73700000000002, - "y": 606.9119999999999 + "x": 245.737, + "y": 606.912 }, { "body": null, "index": 24, "isInternal": false, - "x": 248.48500000000004, - "y": 612.1469999999999 + "x": 248.485, + "y": 612.147 }, { "body": null, "index": 25, "isInternal": false, - "x": 249.90000000000003, - "y": 617.8879999999999 + "x": 249.9, + "y": 617.888 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2329.709364, + "area": 2329.70936, "axes": { "#": 4252 }, "bounds": { "#": 4266 }, - "circleRadius": 27.364904835390945, + "circleRadius": 27.3649, "collisionFilter": { "#": 4269 }, @@ -38075,13 +38075,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 3455.3488495656693, - "inverseInertia": 0.0002894063793662102, - "inverseMass": 0.4292380910050719, + "inertia": 3455.34885, + "inverseInertia": 0.00029, + "inverseMass": 0.42924, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.3297093639999997, + "mass": 2.32971, "motion": 0, "parent": null, "position": { @@ -38154,52 +38154,52 @@ } ], { - "x": -0.9709748157400481, - "y": -0.23918174511985563 + "x": -0.97097, + "y": -0.23918 }, { - "x": -0.885430654533355, - "y": -0.46477150946743123 + "x": -0.88543, + "y": -0.46477 }, { - "x": -0.748487143274187, - "y": -0.6631493017060688 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680269481764096, - "y": -0.8230099550706507 + "x": -0.56803, + "y": -0.82301 }, { - "x": -0.3547090688589646, - "y": -0.9349767250949119 + "x": -0.35471, + "y": -0.93498 }, { - "x": -0.12050791439215353, - "y": -0.9927123664832898 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050791439215353, - "y": -0.9927123664832898 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3547090688589646, - "y": -0.9349767250949119 + "x": 0.35471, + "y": -0.93498 }, { - "x": 0.5680269481764096, - "y": -0.8230099550706507 + "x": 0.56803, + "y": -0.82301 }, { - "x": 0.748487143274187, - "y": -0.6631493017060688 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.885430654533355, - "y": -0.46477150946743123 + "x": 0.88543, + "y": -0.46477 }, { - "x": 0.9709748157400481, - "y": -0.23918174511985563 + "x": 0.97097, + "y": -0.23918 }, { "x": 1, @@ -38214,12 +38214,12 @@ } }, { - "x": 314.2300000000001, + "x": 314.23, "y": 651.05 }, { - "x": 259.9000000000001, - "y": 596.3199999999999 + "x": 259.9, + "y": 596.32 }, { "category": 1, @@ -38236,7 +38236,7 @@ "y": 0 }, { - "x": 287.06500000000005, + "x": 287.065, "y": 623.685 }, { @@ -38244,7 +38244,7 @@ "y": 0 }, { - "x": 287.06500000000005, + "x": 287.065, "y": 623.685 }, { @@ -38348,182 +38348,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.2300000000001, + "x": 314.23, "y": 626.983 }, { "body": null, "index": 1, "isInternal": false, - "x": 312.65200000000004, - "y": 633.3889999999999 + "x": 312.652, + "y": 633.389 }, { "body": null, "index": 2, "isInternal": false, - "x": 309.58600000000007, - "y": 639.2299999999999 + "x": 309.586, + "y": 639.23 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.21100000000007, - "y": 644.1679999999999 + "x": 305.211, + "y": 644.168 }, { "body": null, "index": 4, "isInternal": false, - "x": 299.78200000000004, + "x": 299.782, "y": 647.915 }, { "body": null, "index": 5, "isInternal": false, - "x": 293.61400000000003, + "x": 293.614, "y": 650.255 }, { "body": null, "index": 6, "isInternal": false, - "x": 287.06500000000005, + "x": 287.065, "y": 651.05 }, { "body": null, "index": 7, "isInternal": false, - "x": 280.5160000000001, + "x": 280.516, "y": 650.255 }, { "body": null, "index": 8, "isInternal": false, - "x": 274.34800000000007, + "x": 274.348, "y": 647.915 }, { "body": null, "index": 9, "isInternal": false, - "x": 268.91900000000004, - "y": 644.1679999999999 + "x": 268.919, + "y": 644.168 }, { "body": null, "index": 10, "isInternal": false, - "x": 264.54400000000004, - "y": 639.2299999999999 + "x": 264.544, + "y": 639.23 }, { "body": null, "index": 11, "isInternal": false, - "x": 261.47800000000007, - "y": 633.3889999999999 + "x": 261.478, + "y": 633.389 }, { "body": null, "index": 12, "isInternal": false, - "x": 259.9000000000001, + "x": 259.9, "y": 626.983 }, { "body": null, "index": 13, "isInternal": false, - "x": 259.9000000000001, + "x": 259.9, "y": 620.387 }, { "body": null, "index": 14, "isInternal": false, - "x": 261.47800000000007, + "x": 261.478, "y": 613.981 }, { "body": null, "index": 15, "isInternal": false, - "x": 264.54400000000004, + "x": 264.544, "y": 608.14 }, { "body": null, "index": 16, "isInternal": false, - "x": 268.91900000000004, + "x": 268.919, "y": 603.202 }, { "body": null, "index": 17, "isInternal": false, - "x": 274.34800000000007, - "y": 599.4549999999999 + "x": 274.348, + "y": 599.455 }, { "body": null, "index": 18, "isInternal": false, - "x": 280.5160000000001, - "y": 597.1149999999999 + "x": 280.516, + "y": 597.115 }, { "body": null, "index": 19, "isInternal": false, - "x": 287.06500000000005, - "y": 596.3199999999999 + "x": 287.065, + "y": 596.32 }, { "body": null, "index": 20, "isInternal": false, - "x": 293.61400000000003, - "y": 597.1149999999999 + "x": 293.614, + "y": 597.115 }, { "body": null, "index": 21, "isInternal": false, - "x": 299.78200000000004, - "y": 599.4549999999999 + "x": 299.782, + "y": 599.455 }, { "body": null, "index": 22, "isInternal": false, - "x": 305.21100000000007, + "x": 305.211, "y": 603.202 }, { "body": null, "index": 23, "isInternal": false, - "x": 309.58600000000007, + "x": 309.586, "y": 608.14 }, { "body": null, "index": 24, "isInternal": false, - "x": 312.65200000000004, + "x": 312.652, "y": 613.981 }, { "body": null, "index": 25, "isInternal": false, - "x": 314.2300000000001, + "x": 314.23, "y": 620.387 }, { @@ -38538,7 +38538,7 @@ "bounds": { "#": 4317 }, - "circleRadius": 19.449138374485596, + "circleRadius": 19.44914, "collisionFilter": { "#": 4320 }, @@ -38553,13 +38553,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 869.9376675929504, - "inverseInertia": 0.001149507645492489, - "inverseMass": 0.855476106158836, + "inertia": 869.93767, + "inverseInertia": 0.00115, + "inverseMass": 0.85548, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.16893972, + "mass": 1.16894, "motion": 0, "parent": null, "position": { @@ -38623,40 +38623,40 @@ } ], { - "x": -0.9510231989910347, - "y": -0.3091195156907096 + "x": -0.95102, + "y": -0.30912 }, { - "x": -0.8090770780014305, - "y": -0.5877025453855608 + "x": -0.80908, + "y": -0.5877 }, { - "x": -0.5877025453855608, - "y": -0.8090770780014305 + "x": -0.5877, + "y": -0.80908 }, { - "x": -0.3091195156907096, - "y": -0.9510231989910347 + "x": -0.30912, + "y": -0.95102 }, { "x": 0, "y": -1 }, { - "x": 0.3091195156907096, - "y": -0.9510231989910347 + "x": 0.30912, + "y": -0.95102 }, { - "x": 0.5877025453855608, - "y": -0.8090770780014305 + "x": 0.5877, + "y": -0.80908 }, { - "x": 0.8090770780014305, - "y": -0.5877025453855608 + "x": 0.80908, + "y": -0.5877 }, { - "x": 0.9510231989910347, - "y": -0.3091195156907096 + "x": 0.95102, + "y": -0.30912 }, { "x": 1, @@ -38671,12 +38671,12 @@ } }, { - "x": 362.65000000000003, + "x": 362.65, "y": 634.74 }, { - "x": 324.2300000000001, - "y": 596.3199999999999 + "x": 324.23, + "y": 596.32 }, { "category": 1, @@ -38693,7 +38693,7 @@ "y": 0 }, { - "x": 343.44000000000005, + "x": 343.44, "y": 615.53 }, { @@ -38701,7 +38701,7 @@ "y": 0 }, { - "x": 343.44000000000005, + "x": 343.44, "y": 615.53 }, { @@ -38787,140 +38787,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 362.65000000000003, + "x": 362.65, "y": 618.573 }, { "body": null, "index": 1, "isInternal": false, - "x": 360.76900000000006, + "x": 360.769, "y": 624.36 }, { "body": null, "index": 2, "isInternal": false, - "x": 357.19300000000004, + "x": 357.193, "y": 629.283 }, { "body": null, "index": 3, "isInternal": false, - "x": 352.27000000000004, - "y": 632.8589999999999 + "x": 352.27, + "y": 632.859 }, { "body": null, "index": 4, "isInternal": false, - "x": 346.48300000000006, + "x": 346.483, "y": 634.74 }, { "body": null, "index": 5, "isInternal": false, - "x": 340.39700000000005, + "x": 340.397, "y": 634.74 }, { "body": null, "index": 6, "isInternal": false, - "x": 334.61000000000007, - "y": 632.8589999999999 + "x": 334.61, + "y": 632.859 }, { "body": null, "index": 7, "isInternal": false, - "x": 329.68700000000007, + "x": 329.687, "y": 629.283 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.11100000000005, + "x": 326.111, "y": 624.36 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.2300000000001, + "x": 324.23, "y": 618.573 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.2300000000001, + "x": 324.23, "y": 612.487 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.11100000000005, - "y": 606.6999999999999 + "x": 326.111, + "y": 606.7 }, { "body": null, "index": 12, "isInternal": false, - "x": 329.68700000000007, - "y": 601.7769999999999 + "x": 329.687, + "y": 601.777 }, { "body": null, "index": 13, "isInternal": false, - "x": 334.61000000000007, + "x": 334.61, "y": 598.201 }, { "body": null, "index": 14, "isInternal": false, - "x": 340.39700000000005, - "y": 596.3199999999999 + "x": 340.397, + "y": 596.32 }, { "body": null, "index": 15, "isInternal": false, - "x": 346.48300000000006, - "y": 596.3199999999999 + "x": 346.483, + "y": 596.32 }, { "body": null, "index": 16, "isInternal": false, - "x": 352.27000000000004, + "x": 352.27, "y": 598.201 }, { "body": null, "index": 17, "isInternal": false, - "x": 357.19300000000004, - "y": 601.7769999999999 + "x": 357.193, + "y": 601.777 }, { "body": null, "index": 18, "isInternal": false, - "x": 360.76900000000006, - "y": 606.6999999999999 + "x": 360.769, + "y": 606.7 }, { "body": null, "index": 19, "isInternal": false, - "x": 362.65000000000003, + "x": 362.65, "y": 612.487 }, { @@ -38928,14 +38928,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2280.335178, + "area": 2280.33518, "axes": { "#": 4351 }, "bounds": { "#": 4365 }, - "circleRadius": 27.07349537037037, + "circleRadius": 27.0735, "collisionFilter": { "#": 4368 }, @@ -38950,13 +38950,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 3310.4404760562484, - "inverseInertia": 0.0003020746052474888, - "inverseMass": 0.4385320235585121, + "inertia": 3310.44048, + "inverseInertia": 0.0003, + "inverseMass": 0.43853, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.280335178, + "mass": 2.28034, "motion": 0, "parent": null, "position": { @@ -39029,52 +39029,52 @@ } ], { - "x": -0.970939333005755, - "y": -0.2393257437517738 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854593783468863, - "y": -0.46471678396368005 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7485577627321482, - "y": -0.6630695859813214 + "x": -0.74856, + "y": -0.66307 }, { - "x": -0.5680301217357667, - "y": -0.8230077647269495 + "x": -0.56803, + "y": -0.82301 }, { - "x": -0.35466347083614963, - "y": -0.9349940226838114 + "x": -0.35466, + "y": -0.93499 }, { - "x": -0.12043203545286181, - "y": -0.9927215746807765 + "x": -0.12043, + "y": -0.99272 }, { - "x": 0.12043203545286181, - "y": -0.9927215746807765 + "x": 0.12043, + "y": -0.99272 }, { - "x": 0.35466347083614963, - "y": -0.9349940226838114 + "x": 0.35466, + "y": -0.93499 }, { - "x": 0.5680301217357667, - "y": -0.8230077647269495 + "x": 0.56803, + "y": -0.82301 }, { - "x": 0.7485577627321482, - "y": -0.6630695859813214 + "x": 0.74856, + "y": -0.66307 }, { - "x": 0.8854593783468863, - "y": -0.46471678396368005 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.970939333005755, - "y": -0.2393257437517738 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -39090,11 +39090,11 @@ }, { "x": 426.402, - "y": 650.4659999999999 + "y": 650.466 }, { - "x": 372.65000000000003, - "y": 596.3199999999999 + "x": 372.65, + "y": 596.32 }, { "category": 1, @@ -39112,7 +39112,7 @@ }, { "x": 399.526, - "y": 623.3929999999999 + "y": 623.393 }, { "x": 0, @@ -39120,7 +39120,7 @@ }, { "x": 399.526, - "y": 623.3929999999999 + "y": 623.393 }, { "fillStyle": "#C7F464", @@ -39230,29 +39230,29 @@ "body": null, "index": 1, "isInternal": false, - "x": 424.84000000000003, - "y": 632.9929999999999 + "x": 424.84, + "y": 632.993 }, { "body": null, "index": 2, "isInternal": false, "x": 421.807, - "y": 638.7719999999999 + "y": 638.772 }, { "body": null, "index": 3, "isInternal": false, "x": 417.479, - "y": 643.6579999999999 + "y": 643.658 }, { "body": null, "index": 4, "isInternal": false, "x": 412.108, - "y": 647.3649999999999 + "y": 647.365 }, { "body": null, @@ -39266,7 +39266,7 @@ "index": 6, "isInternal": false, "x": 399.526, - "y": 650.4659999999999 + "y": 650.466 }, { "body": null, @@ -39280,140 +39280,140 @@ "index": 8, "isInternal": false, "x": 386.944, - "y": 647.3649999999999 + "y": 647.365 }, { "body": null, "index": 9, "isInternal": false, - "x": 381.57300000000004, - "y": 643.6579999999999 + "x": 381.573, + "y": 643.658 }, { "body": null, "index": 10, "isInternal": false, "x": 377.245, - "y": 638.7719999999999 + "y": 638.772 }, { "body": null, "index": 11, "isInternal": false, "x": 374.212, - "y": 632.9929999999999 + "y": 632.993 }, { "body": null, "index": 12, "isInternal": false, - "x": 372.65000000000003, + "x": 372.65, "y": 626.656 }, { "body": null, "index": 13, "isInternal": false, - "x": 372.65000000000003, - "y": 620.1299999999999 + "x": 372.65, + "y": 620.13 }, { "body": null, "index": 14, "isInternal": false, "x": 374.212, - "y": 613.7929999999999 + "y": 613.793 }, { "body": null, "index": 15, "isInternal": false, "x": 377.245, - "y": 608.0139999999999 + "y": 608.014 }, { "body": null, "index": 16, "isInternal": false, - "x": 381.57300000000004, - "y": 603.1279999999999 + "x": 381.573, + "y": 603.128 }, { "body": null, "index": 17, "isInternal": false, "x": 386.944, - "y": 599.4209999999999 + "y": 599.421 }, { "body": null, "index": 18, "isInternal": false, "x": 393.047, - "y": 597.1059999999999 + "y": 597.106 }, { "body": null, "index": 19, "isInternal": false, "x": 399.526, - "y": 596.3199999999999 + "y": 596.32 }, { "body": null, "index": 20, "isInternal": false, "x": 406.005, - "y": 597.1059999999999 + "y": 597.106 }, { "body": null, "index": 21, "isInternal": false, "x": 412.108, - "y": 599.4209999999999 + "y": 599.421 }, { "body": null, "index": 22, "isInternal": false, "x": 417.479, - "y": 603.1279999999999 + "y": 603.128 }, { "body": null, "index": 23, "isInternal": false, "x": 421.807, - "y": 608.0139999999999 + "y": 608.014 }, { "body": null, "index": 24, "isInternal": false, - "x": 424.84000000000003, - "y": 613.7929999999999 + "x": 424.84, + "y": 613.793 }, { "body": null, "index": 25, "isInternal": false, "x": 426.402, - "y": 620.1299999999999 + "y": 620.13 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2673.0073460000003, + "area": 2673.00735, "axes": { "#": 4405 }, "bounds": { "#": 4419 }, - "circleRadius": 29.312049897119344, + "circleRadius": 29.31205, "collisionFilter": { "#": 4422 }, @@ -39428,13 +39428,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 4548.714864282256, - "inverseInertia": 0.0002198423136724334, - "inverseMass": 0.37411045708364465, + "inertia": 4548.71486, + "inverseInertia": 0.00022, + "inverseMass": 0.37411, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6730073460000003, + "mass": 2.67301, "motion": 0, "parent": null, "position": { @@ -39507,52 +39507,52 @@ } ], { - "x": -0.9709445998623041, - "y": -0.2393043752174836 + "x": -0.97094, + "y": -0.2393 }, { - "x": -0.8854517705871909, - "y": -0.4647312793045124 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7484858203406575, - "y": -0.6631507948792438 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5681793089776269, - "y": -0.8229047775105613 + "x": -0.56818, + "y": -0.8229 }, { - "x": -0.3545177081937125, - "y": -0.9350493006131162 + "x": -0.35452, + "y": -0.93505 }, { - "x": -0.12056802812804521, - "y": -0.9927050672749258 + "x": -0.12057, + "y": -0.99271 }, { - "x": 0.12056802812804521, - "y": -0.9927050672749258 + "x": 0.12057, + "y": -0.99271 }, { - "x": 0.3545177081937125, - "y": -0.9350493006131162 + "x": 0.35452, + "y": -0.93505 }, { - "x": 0.5681793089776269, - "y": -0.8229047775105613 + "x": 0.56818, + "y": -0.8229 }, { - "x": 0.7484858203406575, - "y": -0.6631507948792438 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854517705871909, - "y": -0.4647312793045124 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709445998623041, - "y": -0.2393043752174836 + "x": 0.97094, + "y": -0.2393 }, { "x": 1, @@ -39572,7 +39572,7 @@ }, { "x": 436.402, - "y": 596.3199999999999 + "y": 596.32 }, { "category": 1, @@ -39716,7 +39716,7 @@ "index": 2, "isInternal": false, "x": 489.623, - "y": 642.2829999999999 + "y": 642.283 }, { "body": null, @@ -39772,7 +39772,7 @@ "index": 10, "isInternal": false, "x": 441.377, - "y": 642.2829999999999 + "y": 642.283 }, { "body": null, @@ -39793,14 +39793,14 @@ "index": 13, "isInternal": false, "x": 436.402, - "y": 622.0989999999999 + "y": 622.099 }, { "body": null, "index": 14, "isInternal": false, "x": 438.093, - "y": 615.2379999999999 + "y": 615.238 }, { "body": null, @@ -39814,49 +39814,49 @@ "index": 16, "isInternal": false, "x": 446.063, - "y": 603.6919999999999 + "y": 603.692 }, { "body": null, "index": 17, "isInternal": false, "x": 451.878, - "y": 599.6769999999999 + "y": 599.677 }, { "body": null, "index": 18, "isInternal": false, "x": 458.485, - "y": 597.1719999999999 + "y": 597.172 }, { "body": null, "index": 19, "isInternal": false, "x": 465.5, - "y": 596.3199999999999 + "y": 596.32 }, { "body": null, "index": 20, "isInternal": false, "x": 472.515, - "y": 597.1719999999999 + "y": 597.172 }, { "body": null, "index": 21, "isInternal": false, "x": 479.122, - "y": 599.6769999999999 + "y": 599.677 }, { "body": null, "index": 22, "isInternal": false, "x": 484.937, - "y": 603.6919999999999 + "y": 603.692 }, { "body": null, @@ -39870,28 +39870,28 @@ "index": 24, "isInternal": false, "x": 492.907, - "y": 615.2379999999999 + "y": 615.238 }, { "body": null, "index": 25, "isInternal": false, "x": 494.598, - "y": 622.0989999999999 + "y": 622.099 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1197.2269959999996, + "area": 1197.227, "axes": { "#": 4459 }, "bounds": { "#": 4470 }, - "circleRadius": 19.68332047325103, + "circleRadius": 19.68332, "collisionFilter": { "#": 4473 }, @@ -39906,13 +39906,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 912.5504968907098, - "inverseInertia": 0.00109582976877143, - "inverseMass": 0.8352634908342814, + "inertia": 912.5505, + "inverseInertia": 0.0011, + "inverseMass": 0.83526, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1972269959999997, + "mass": 1.19723, "motion": 0, "parent": null, "position": { @@ -39976,40 +39976,40 @@ } ], { - "x": -0.9510591247997812, - "y": -0.30900896610790207 + "x": -0.95106, + "y": -0.30901 }, { - "x": -0.8089887994080501, - "y": -0.5878240573779894 + "x": -0.80899, + "y": -0.58782 }, { - "x": -0.5878240573779894, - "y": -0.8089887994080501 + "x": -0.58782, + "y": -0.80899 }, { - "x": -0.30900896610790207, - "y": -0.9510591247997812 + "x": -0.30901, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.30900896610790207, - "y": -0.9510591247997812 + "x": 0.30901, + "y": -0.95106 }, { - "x": 0.5878240573779894, - "y": -0.8089887994080501 + "x": 0.58782, + "y": -0.80899 }, { - "x": 0.8089887994080501, - "y": -0.5878240573779894 + "x": 0.80899, + "y": -0.58782 }, { - "x": 0.9510591247997812, - "y": -0.30900896610790207 + "x": 0.95106, + "y": -0.30901 }, { "x": 1, @@ -40029,7 +40029,7 @@ }, { "x": 504.598, - "y": 596.3199999999999 + "y": 596.32 }, { "category": 1, @@ -40141,7 +40141,7 @@ "index": 0, "isInternal": false, "x": 543.48, - "y": 618.8399999999999 + "y": 618.84 }, { "body": null, @@ -40154,21 +40154,21 @@ "body": null, "index": 2, "isInternal": false, - "x": 537.9569999999999, + "x": 537.957, "y": 629.679 }, { "body": null, "index": 3, "isInternal": false, - "x": 532.9749999999999, + "x": 532.975, "y": 633.299 }, { "body": null, "index": 4, "isInternal": false, - "x": 527.1179999999999, + "x": 527.118, "y": 635.202 }, { @@ -40182,7 +40182,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 515.1030000000001, + "x": 515.103, "y": 633.299 }, { @@ -40204,7 +40204,7 @@ "index": 9, "isInternal": false, "x": 504.598, - "y": 618.8399999999999 + "y": 618.84 }, { "body": null, @@ -40218,7 +40218,7 @@ "index": 11, "isInternal": false, "x": 506.501, - "y": 606.8249999999999 + "y": 606.825 }, { "body": null, @@ -40231,7 +40231,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 515.1030000000001, + "x": 515.103, "y": 598.223 }, { @@ -40239,27 +40239,27 @@ "index": 14, "isInternal": false, "x": 520.96, - "y": 596.3199999999999 + "y": 596.32 }, { "body": null, "index": 15, "isInternal": false, - "x": 527.1179999999999, - "y": 596.3199999999999 + "x": 527.118, + "y": 596.32 }, { "body": null, "index": 16, "isInternal": false, - "x": 532.9749999999999, + "x": 532.975, "y": 598.223 }, { "body": null, "index": 17, "isInternal": false, - "x": 537.9569999999999, + "x": 537.957, "y": 601.843 }, { @@ -40267,7 +40267,7 @@ "index": 18, "isInternal": false, "x": 541.577, - "y": 606.8249999999999 + "y": 606.825 }, { "body": null, @@ -40281,14 +40281,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 977.1466719999999, + "area": 977.14667, "axes": { "#": 4504 }, "bounds": { "#": 4514 }, - "circleRadius": 17.816936728395063, + "circleRadius": 17.81694, "collisionFilter": { "#": 4517 }, @@ -40303,13 +40303,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 607.9053757880243, - "inverseInertia": 0.0016449928555142411, - "inverseMass": 1.0233878174637023, + "inertia": 607.90538, + "inverseInertia": 0.00164, + "inverseMass": 1.02339, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9771466719999998, + "mass": 0.97715, "motion": 0, "parent": null, "position": { @@ -40370,36 +40370,36 @@ } ], { - "x": -0.939699006955668, - "y": -0.3420025969587535 + "x": -0.9397, + "y": -0.342 }, { - "x": -0.7661376414182273, - "y": -0.6426765239232842 + "x": -0.76614, + "y": -0.64268 }, { - "x": -0.49987634792101643, - "y": -0.8660967825763741 + "x": -0.49988, + "y": -0.8661 }, { - "x": -0.173720801694498, - "y": -0.9847949446756015 + "x": -0.17372, + "y": -0.98479 }, { - "x": 0.173720801694498, - "y": -0.9847949446756015 + "x": 0.17372, + "y": -0.98479 }, { - "x": 0.49987634792101643, - "y": -0.8660967825763741 + "x": 0.49988, + "y": -0.8661 }, { - "x": 0.7661376414182273, - "y": -0.6426765239232842 + "x": 0.76614, + "y": -0.64268 }, { - "x": 0.939699006955668, - "y": -0.3420025969587535 + "x": 0.9397, + "y": -0.342 }, { "x": 1, @@ -40414,12 +40414,12 @@ } }, { - "x": 588.5720000000001, + "x": 588.572, "y": 631.954 }, { "x": 553.48, - "y": 596.3199999999999 + "y": 596.32 }, { "category": 1, @@ -40436,7 +40436,7 @@ "y": 0 }, { - "x": 571.0260000000001, + "x": 571.026, "y": 614.137 }, { @@ -40444,7 +40444,7 @@ "y": 0 }, { - "x": 571.0260000000001, + "x": 571.026, "y": 614.137 }, { @@ -40524,7 +40524,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 588.5720000000001, + "x": 588.572, "y": 617.231 }, { @@ -40545,14 +40545,14 @@ "body": null, "index": 3, "isInternal": false, - "x": 577.1200000000001, - "y": 630.8789999999999 + "x": 577.12, + "y": 630.879 }, { "body": null, "index": 4, "isInternal": false, - "x": 571.0260000000001, + "x": 571.026, "y": 631.954 }, { @@ -40560,20 +40560,20 @@ "index": 5, "isInternal": false, "x": 564.932, - "y": 630.8789999999999 + "y": 630.879 }, { "body": null, "index": 6, "isInternal": false, - "x": 559.5730000000001, + "x": 559.573, "y": 627.786 }, { "body": null, "index": 7, "isInternal": false, - "x": 555.5960000000001, + "x": 555.596, "y": 623.045 }, { @@ -40588,21 +40588,21 @@ "index": 9, "isInternal": false, "x": 553.48, - "y": 611.0429999999999 + "y": 611.043 }, { "body": null, "index": 10, "isInternal": false, - "x": 555.5960000000001, - "y": 605.2289999999999 + "x": 555.596, + "y": 605.229 }, { "body": null, "index": 11, "isInternal": false, - "x": 559.5730000000001, - "y": 600.4879999999999 + "x": 559.573, + "y": 600.488 }, { "body": null, @@ -40615,14 +40615,14 @@ "body": null, "index": 13, "isInternal": false, - "x": 571.0260000000001, - "y": 596.3199999999999 + "x": 571.026, + "y": 596.32 }, { "body": null, "index": 14, "isInternal": false, - "x": 577.1200000000001, + "x": 577.12, "y": 597.395 }, { @@ -40630,35 +40630,35 @@ "index": 15, "isInternal": false, "x": 582.479, - "y": 600.4879999999999 + "y": 600.488 }, { "body": null, "index": 16, "isInternal": false, "x": 586.456, - "y": 605.2289999999999 + "y": 605.229 }, { "body": null, "index": 17, "isInternal": false, - "x": 588.5720000000001, - "y": 611.0429999999999 + "x": 588.572, + "y": 611.043 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 799.8991080000001, + "area": 799.89911, "axes": { "#": 4546 }, "bounds": { "#": 4556 }, - "circleRadius": 16.120306069958847, + "circleRadius": 16.12031, "collisionFilter": { "#": 4559 }, @@ -40673,13 +40673,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 407.3679845696958, - "inverseInertia": 0.0024547829919827975, - "inverseMass": 1.250157663633749, + "inertia": 407.36798, + "inverseInertia": 0.00245, + "inverseMass": 1.25016, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7998991080000001, + "mass": 0.7999, "motion": 0, "parent": null, "position": { @@ -40740,36 +40740,36 @@ } ], { - "x": -0.9397412595301448, - "y": -0.34188647989749027 + "x": -0.93974, + "y": -0.34189 }, { - "x": -0.7660355005667748, - "y": -0.6427982668547034 + "x": -0.76604, + "y": -0.6428 }, { - "x": -0.4999234482331141, - "y": -0.8660695964567241 + "x": -0.49992, + "y": -0.86607 }, { - "x": -0.17363247366383563, - "y": -0.984810521922556 + "x": -0.17363, + "y": -0.98481 }, { - "x": 0.17363247366383563, - "y": -0.984810521922556 + "x": 0.17363, + "y": -0.98481 }, { - "x": 0.4999234482331141, - "y": -0.8660695964567241 + "x": 0.49992, + "y": -0.86607 }, { - "x": 0.7660355005667748, - "y": -0.6427982668547034 + "x": 0.76604, + "y": -0.6428 }, { - "x": 0.9397412595301448, - "y": -0.34188647989749027 + "x": 0.93974, + "y": -0.34189 }, { "x": 1, @@ -40784,12 +40784,12 @@ } }, { - "x": 630.3220000000001, + "x": 630.322, "y": 628.56 }, { - "x": 598.5720000000001, - "y": 596.3199999999999 + "x": 598.572, + "y": 596.32 }, { "category": 1, @@ -40806,16 +40806,16 @@ "y": 0 }, { - "x": 614.4470000000001, - "y": 612.4399999999999 + "x": 614.447, + "y": 612.44 }, { "x": 0, "y": 0 }, { - "x": 614.4470000000001, - "y": 612.4399999999999 + "x": 614.447, + "y": 612.44 }, { "fillStyle": "#C44D58", @@ -40894,126 +40894,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 630.3220000000001, - "y": 615.2389999999999 + "x": 630.322, + "y": 615.239 }, { "body": null, "index": 1, "isInternal": false, - "x": 628.4080000000001, - "y": 620.4999999999999 + "x": 628.408, + "y": 620.5 }, { "body": null, "index": 2, "isInternal": false, - "x": 624.8090000000001, + "x": 624.809, "y": 624.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 619.9600000000002, + "x": 619.96, "y": 627.588 }, { "body": null, "index": 4, "isInternal": false, - "x": 614.4470000000001, + "x": 614.447, "y": 628.56 }, { "body": null, "index": 5, "isInternal": false, - "x": 608.9340000000001, + "x": 608.934, "y": 627.588 }, { "body": null, "index": 6, "isInternal": false, - "x": 604.0850000000002, + "x": 604.085, "y": 624.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 600.4860000000001, - "y": 620.4999999999999 + "x": 600.486, + "y": 620.5 }, { "body": null, "index": 8, "isInternal": false, - "x": 598.5720000000001, - "y": 615.2389999999999 + "x": 598.572, + "y": 615.239 }, { "body": null, "index": 9, "isInternal": false, - "x": 598.5720000000001, + "x": 598.572, "y": 609.641 }, { "body": null, "index": 10, "isInternal": false, - "x": 600.4860000000001, + "x": 600.486, "y": 604.38 }, { "body": null, "index": 11, "isInternal": false, - "x": 604.0850000000002, - "y": 600.0909999999999 + "x": 604.085, + "y": 600.091 }, { "body": null, "index": 12, "isInternal": false, - "x": 608.9340000000001, - "y": 597.2919999999999 + "x": 608.934, + "y": 597.292 }, { "body": null, "index": 13, "isInternal": false, - "x": 614.4470000000001, - "y": 596.3199999999999 + "x": 614.447, + "y": 596.32 }, { "body": null, "index": 14, "isInternal": false, - "x": 619.9600000000002, - "y": 597.2919999999999 + "x": 619.96, + "y": 597.292 }, { "body": null, "index": 15, "isInternal": false, - "x": 624.8090000000001, - "y": 600.0909999999999 + "x": 624.809, + "y": 600.091 }, { "body": null, "index": 16, "isInternal": false, - "x": 628.4080000000001, + "x": 628.408, "y": 604.38 }, { "body": null, "index": 17, "isInternal": false, - "x": 630.3220000000001, + "x": 630.322, "y": 609.641 }, { @@ -41021,14 +41021,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2175.764468, + "area": 2175.76447, "axes": { "#": 4588 }, "bounds": { "#": 4602 }, - "circleRadius": 26.44528034979424, + "circleRadius": 26.44528, "collisionFilter": { "#": 4605 }, @@ -41043,13 +41043,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 3013.784323849708, - "inverseInertia": 0.0003318087469254048, - "inverseMass": 0.45960857193298, + "inertia": 3013.78432, + "inverseInertia": 0.00033, + "inverseMass": 0.45961, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.175764468, + "mass": 2.17576, "motion": 0, "parent": null, "position": { @@ -41122,52 +41122,52 @@ } ], { - "x": -0.9709672518969629, - "y": -0.2392124489729995 + "x": -0.97097, + "y": -0.23921 }, { - "x": -0.8854382464451883, - "y": -0.46475704591976863 + "x": -0.88544, + "y": -0.46476 }, { - "x": -0.7484814043741432, - "y": -0.6631557790640977 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5680591843232271, - "y": -0.8229877053188766 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.35464477726487137, - "y": -0.9350011133462621 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12046252617652502, - "y": -0.9927178752229507 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.12046252617652502, - "y": -0.9927178752229507 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35464477726487137, - "y": -0.9350011133462621 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680591843232271, - "y": -0.8229877053188766 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7484814043741432, - "y": -0.6631557790640977 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8854382464451883, - "y": -0.46475704591976863 + "x": 0.88544, + "y": -0.46476 }, { - "x": 0.9709672518969629, - "y": -0.2392124489729995 + "x": 0.97097, + "y": -0.23921 }, { "x": 1, @@ -41183,7 +41183,7 @@ }, { "x": 152.504, - "y": 717.8340000000001 + "y": 717.834 }, { "x": 100, @@ -41323,7 +41323,7 @@ "body": null, "index": 1, "isInternal": false, - "x": 150.97899999999998, + "x": 150.979, "y": 700.767 }, { @@ -41344,8 +41344,8 @@ "body": null, "index": 4, "isInternal": false, - "x": 138.54199999999997, - "y": 714.8050000000001 + "x": 138.542, + "y": 714.805 }, { "body": null, @@ -41359,7 +41359,7 @@ "index": 6, "isInternal": false, "x": 126.252, - "y": 717.8340000000001 + "y": 717.834 }, { "body": null, @@ -41373,7 +41373,7 @@ "index": 8, "isInternal": false, "x": 113.962, - "y": 714.8050000000001 + "y": 714.805 }, { "body": null, @@ -41393,7 +41393,7 @@ "body": null, "index": 11, "isInternal": false, - "x": 101.52499999999999, + "x": 101.525, "y": 700.767 }, { @@ -41414,7 +41414,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 101.52499999999999, + "x": 101.525, "y": 682.011 }, { @@ -41463,7 +41463,7 @@ "body": null, "index": 21, "isInternal": false, - "x": 138.54199999999997, + "x": 138.542, "y": 667.973 }, { @@ -41484,7 +41484,7 @@ "body": null, "index": 24, "isInternal": false, - "x": 150.97899999999998, + "x": 150.979, "y": 682.011 }, { @@ -41499,14 +41499,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 864.0989000000001, + "area": 864.0989, "axes": { "#": 4642 }, "bounds": { "#": 4652 }, - "circleRadius": 16.754822530864196, + "circleRadius": 16.75482, "collisionFilter": { "#": 4655 }, @@ -41521,13 +41521,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 475.38270097285647, - "inverseInertia": 0.0021035683417876374, - "inverseMass": 1.157274936931409, + "inertia": 475.3827, + "inverseInertia": 0.0021, + "inverseMass": 1.15727, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8640989000000001, + "mass": 0.8641, "motion": 0, "parent": null, "position": { @@ -41588,36 +41588,36 @@ } ], { - "x": -0.9397030727177501, - "y": -0.3419914255135923 + "x": -0.9397, + "y": -0.34199 }, { - "x": -0.7661041941914353, - "y": -0.642716394409145 + "x": -0.7661, + "y": -0.64272 }, { - "x": -0.49989104462044864, - "y": -0.8660883000643045 + "x": -0.49989, + "y": -0.86609 }, { - "x": -0.17375592062528475, - "y": -0.984788748944493 + "x": -0.17376, + "y": -0.98479 }, { - "x": 0.17375592062528475, - "y": -0.984788748944493 + "x": 0.17376, + "y": -0.98479 }, { - "x": 0.49989104462044864, - "y": -0.8660883000643045 + "x": 0.49989, + "y": -0.86609 }, { - "x": 0.7661041941914353, - "y": -0.642716394409145 + "x": 0.7661, + "y": -0.64272 }, { - "x": 0.9397030727177501, - "y": -0.3419914255135923 + "x": 0.9397, + "y": -0.34199 }, { "x": 1, @@ -41749,8 +41749,8 @@ "body": null, "index": 1, "isInternal": false, - "x": 193.51399999999998, - "y": 690.0759999999999 + "x": 193.514, + "y": 690.076 }, { "body": null, @@ -41763,7 +41763,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 184.73399999999998, + "x": 184.734, "y": 697.443 }, { @@ -41784,7 +41784,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 168.23399999999998, + "x": 168.234, "y": 694.534 }, { @@ -41792,7 +41792,7 @@ "index": 7, "isInternal": false, "x": 164.494, - "y": 690.0759999999999 + "y": 690.076 }, { "body": null, @@ -41819,15 +41819,15 @@ "body": null, "index": 11, "isInternal": false, - "x": 168.23399999999998, - "y": 668.8639999999999 + "x": 168.234, + "y": 668.864 }, { "body": null, "index": 12, "isInternal": false, "x": 173.274, - "y": 665.9549999999999 + "y": 665.955 }, { "body": null, @@ -41840,21 +41840,21 @@ "body": null, "index": 14, "isInternal": false, - "x": 184.73399999999998, - "y": 665.9549999999999 + "x": 184.734, + "y": 665.955 }, { "body": null, "index": 15, "isInternal": false, "x": 189.774, - "y": 668.8639999999999 + "y": 668.864 }, { "body": null, "index": 16, "isInternal": false, - "x": 193.51399999999998, + "x": 193.514, "y": 673.322 }, { @@ -41869,14 +41869,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1613.0638619999995, + "area": 1613.06386, "axes": { "#": 4684 }, "bounds": { "#": 4697 }, - "circleRadius": 22.789673353909464, + "circleRadius": 22.78967, "collisionFilter": { "#": 4700 }, @@ -41891,13 +41891,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 1656.5123333603722, - "inverseInertia": 0.0006036779683803605, - "inverseMass": 0.6199382575964003, + "inertia": 1656.51233, + "inverseInertia": 0.0006, + "inverseMass": 0.61994, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6130638619999995, + "mass": 1.61306, "motion": 0, "parent": null, "position": { @@ -41967,48 +41967,48 @@ } ], { - "x": -0.9659105298862138, - "y": -0.2588761253088702 + "x": -0.96591, + "y": -0.25888 }, { - "x": -0.8659896344268858, - "y": -0.5000619492274819 + "x": -0.86599, + "y": -0.50006 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000619492274819, - "y": -0.8659896344268858 + "x": -0.50006, + "y": -0.86599 }, { - "x": -0.2588761253088702, - "y": -0.9659105298862138 + "x": -0.25888, + "y": -0.96591 }, { "x": 0, "y": -1 }, { - "x": 0.2588761253088702, - "y": -0.9659105298862138 + "x": 0.25888, + "y": -0.96591 }, { - "x": 0.5000619492274819, - "y": -0.8659896344268858 + "x": 0.50006, + "y": -0.86599 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8659896344268858, - "y": -0.5000619492274819 + "x": 0.86599, + "y": -0.50006 }, { - "x": 0.9659105298862138, - "y": -0.2588761253088702 + "x": 0.96591, + "y": -0.25888 }, { "x": 1, @@ -42172,7 +42172,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 241.97199999999998, + "x": 241.972, "y": 705.619 }, { @@ -42180,13 +42180,13 @@ "index": 4, "isInternal": false, "x": 236.82, - "y": 708.5939999999999 + "y": 708.594 }, { "body": null, "index": 5, "isInternal": false, - "x": 231.07399999999998, + "x": 231.074, "y": 710.134 }, { @@ -42201,7 +42201,7 @@ "index": 7, "isInternal": false, "x": 219.378, - "y": 708.5939999999999 + "y": 708.594 }, { "body": null, @@ -42214,14 +42214,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 210.01899999999998, + "x": 210.019, "y": 701.412 }, { "body": null, "index": 10, "isInternal": false, - "x": 207.04399999999998, + "x": 207.044, "y": 696.26 }, { @@ -42242,15 +42242,15 @@ "body": null, "index": 13, "isInternal": false, - "x": 207.04399999999998, + "x": 207.044, "y": 678.818 }, { "body": null, "index": 14, "isInternal": false, - "x": 210.01899999999998, - "y": 673.6659999999999 + "x": 210.019, + "y": 673.666 }, { "body": null, @@ -42277,7 +42277,7 @@ "body": null, "index": 18, "isInternal": false, - "x": 231.07399999999998, + "x": 231.074, "y": 664.944 }, { @@ -42291,7 +42291,7 @@ "body": null, "index": 20, "isInternal": false, - "x": 241.97199999999998, + "x": 241.972, "y": 669.459 }, { @@ -42299,7 +42299,7 @@ "index": 21, "isInternal": false, "x": 246.179, - "y": 673.6659999999999 + "y": 673.666 }, { "body": null, @@ -42320,14 +42320,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2750.736188, + "area": 2750.73619, "axes": { "#": 4735 }, "bounds": { "#": 4749 }, - "circleRadius": 29.735018004115226, + "circleRadius": 29.73502, "collisionFilter": { "#": 4752 }, @@ -42342,13 +42342,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 4817.10697868961, - "inverseInertia": 0.0002075934797429034, - "inverseMass": 0.3635390425161339, + "inertia": 4817.10698, + "inverseInertia": 0.00021, + "inverseMass": 0.36354, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.750736188, + "mass": 2.75074, "motion": 0, "parent": null, "position": { @@ -42421,52 +42421,52 @@ } ], { - "x": -0.9709575669748816, - "y": -0.23925175680487376 + "x": -0.97096, + "y": -0.23925 }, { - "x": -0.8854079499283124, - "y": -0.46481476117238674 + "x": -0.88541, + "y": -0.46481 }, { - "x": -0.7485703751478012, - "y": -0.6630553472004281 + "x": -0.74857, + "y": -0.66306 }, { - "x": -0.5680849953598571, - "y": -0.82296988890663 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.35459115696568627, - "y": -0.9350214497014152 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12053134166278366, - "y": -0.9927095223059812 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12053134166278366, - "y": -0.9927095223059812 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35459115696568627, - "y": -0.9350214497014152 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680849953598571, - "y": -0.82296988890663 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485703751478012, - "y": -0.6630553472004281 + "x": 0.74857, + "y": -0.66306 }, { - "x": 0.8854079499283124, - "y": -0.46481476117238674 + "x": 0.88541, + "y": -0.46481 }, { - "x": 0.9709575669748816, - "y": -0.23925175680487376 + "x": 0.97096, + "y": -0.23925 }, { "x": 1, @@ -42485,7 +42485,7 @@ "y": 724.414 }, { - "x": 260.69399999999996, + "x": 260.694, "y": 664.944 }, { @@ -42616,7 +42616,7 @@ "index": 0, "isInternal": false, "x": 319.73, - "y": 698.2629999999999 + "y": 698.263 }, { "body": null, @@ -42630,21 +42630,21 @@ "index": 2, "isInternal": false, "x": 314.683, - "y": 711.5699999999999 + "y": 711.57 }, { "body": null, "index": 3, "isInternal": false, "x": 309.93, - "y": 716.9359999999999 + "y": 716.936 }, { "body": null, "index": 4, "isInternal": false, "x": 304.031, - "y": 721.0079999999999 + "y": 721.008 }, { "body": null, @@ -42671,22 +42671,22 @@ "body": null, "index": 8, "isInternal": false, - "x": 276.39300000000003, - "y": 721.0079999999999 + "x": 276.393, + "y": 721.008 }, { "body": null, "index": 9, "isInternal": false, "x": 270.494, - "y": 716.9359999999999 + "y": 716.936 }, { "body": null, "index": 10, "isInternal": false, "x": 265.741, - "y": 711.5699999999999 + "y": 711.57 }, { "body": null, @@ -42699,14 +42699,14 @@ "body": null, "index": 12, "isInternal": false, - "x": 260.69399999999996, - "y": 698.2629999999999 + "x": 260.694, + "y": 698.263 }, { "body": null, "index": 13, "isInternal": false, - "x": 260.69399999999996, + "x": 260.694, "y": 691.095 }, { @@ -42734,7 +42734,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 276.39300000000003, + "x": 276.393, "y": 668.35 }, { @@ -42798,14 +42798,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2596.145458000001, + "area": 2596.14546, "axes": { "#": 4789 }, "bounds": { "#": 4803 }, - "circleRadius": 28.88715277777778, + "circleRadius": 28.88715, "collisionFilter": { "#": 4806 }, @@ -42820,13 +42820,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 4290.880825641059, - "inverseInertia": 0.00023305238263069205, - "inverseMass": 0.38518642971968625, + "inertia": 4290.88083, + "inverseInertia": 0.00023, + "inverseMass": 0.38519, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.596145458000001, + "mass": 2.59615, "motion": 0, "parent": null, "position": { @@ -42899,52 +42899,52 @@ } ], { - "x": -0.9709312504399928, - "y": -0.23935853216259484 + "x": -0.97093, + "y": -0.23936 }, { - "x": -0.8854658610494066, - "y": -0.4647044317800649 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7484700520718455, - "y": -0.6631685918011866 + "x": -0.74847, + "y": -0.66317 }, { - "x": -0.5680818957818234, - "y": -0.8229720284948507 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.354645577442224, - "y": -0.9350008098395806 + "x": -0.35465, + "y": -0.935 }, { - "x": -0.12048146520842735, - "y": -0.9927155768603768 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12048146520842735, - "y": -0.9927155768603768 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.354645577442224, - "y": -0.9350008098395806 + "x": 0.35465, + "y": -0.935 }, { - "x": 0.5680818957818234, - "y": -0.8229720284948507 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7484700520718455, - "y": -0.6631685918011866 + "x": 0.74847, + "y": -0.66317 }, { - "x": 0.8854658610494066, - "y": -0.4647044317800649 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.9709312504399928, - "y": -0.23935853216259484 + "x": 0.97093, + "y": -0.23936 }, { "x": 1, @@ -42959,8 +42959,8 @@ } }, { - "x": 387.08400000000006, - "y": 722.7179999999998 + "x": 387.084, + "y": 722.718 }, { "x": 329.73, @@ -42981,16 +42981,16 @@ "y": 0 }, { - "x": 358.40700000000004, - "y": 693.8309999999999 + "x": 358.407, + "y": 693.831 }, { "x": 0, "y": 0 }, { - "x": 358.40700000000004, - "y": 693.8309999999999 + "x": 358.407, + "y": 693.831 }, { "fillStyle": "#556270", @@ -43093,119 +43093,119 @@ "body": null, "index": 0, "isInternal": false, - "x": 387.08400000000006, - "y": 697.3129999999999 + "x": 387.084, + "y": 697.313 }, { "body": null, "index": 1, "isInternal": false, - "x": 385.41700000000003, - "y": 704.0749999999999 + "x": 385.417, + "y": 704.075 }, { "body": null, "index": 2, "isInternal": false, - "x": 382.18100000000004, - "y": 710.2409999999999 + "x": 382.181, + "y": 710.241 }, { "body": null, "index": 3, "isInternal": false, - "x": 377.56300000000005, - "y": 715.4529999999999 + "x": 377.563, + "y": 715.453 }, { "body": null, "index": 4, "isInternal": false, - "x": 371.83200000000005, - "y": 719.4089999999999 + "x": 371.832, + "y": 719.409 }, { "body": null, "index": 5, "isInternal": false, - "x": 365.32000000000005, - "y": 721.8789999999999 + "x": 365.32, + "y": 721.879 }, { "body": null, "index": 6, "isInternal": false, - "x": 358.40700000000004, - "y": 722.7179999999998 + "x": 358.407, + "y": 722.718 }, { "body": null, "index": 7, "isInternal": false, "x": 351.494, - "y": 721.8789999999999 + "y": 721.879 }, { "body": null, "index": 8, "isInternal": false, "x": 344.982, - "y": 719.4089999999999 + "y": 719.409 }, { "body": null, "index": 9, "isInternal": false, - "x": 339.25100000000003, - "y": 715.4529999999999 + "x": 339.251, + "y": 715.453 }, { "body": null, "index": 10, "isInternal": false, - "x": 334.63300000000004, - "y": 710.2409999999999 + "x": 334.633, + "y": 710.241 }, { "body": null, "index": 11, "isInternal": false, - "x": 331.39700000000005, - "y": 704.0749999999999 + "x": 331.397, + "y": 704.075 }, { "body": null, "index": 12, "isInternal": false, "x": 329.73, - "y": 697.3129999999999 + "y": 697.313 }, { "body": null, "index": 13, "isInternal": false, "x": 329.73, - "y": 690.3489999999999 + "y": 690.349 }, { "body": null, "index": 14, "isInternal": false, - "x": 331.39700000000005, - "y": 683.5869999999999 + "x": 331.397, + "y": 683.587 }, { "body": null, "index": 15, "isInternal": false, - "x": 334.63300000000004, - "y": 677.4209999999999 + "x": 334.633, + "y": 677.421 }, { "body": null, "index": 16, "isInternal": false, - "x": 339.25100000000003, + "x": 339.251, "y": 672.209 }, { @@ -43213,77 +43213,77 @@ "index": 17, "isInternal": false, "x": 344.982, - "y": 668.2529999999999 + "y": 668.253 }, { "body": null, "index": 18, "isInternal": false, "x": 351.494, - "y": 665.7829999999999 + "y": 665.783 }, { "body": null, "index": 19, "isInternal": false, - "x": 358.40700000000004, + "x": 358.407, "y": 664.944 }, { "body": null, "index": 20, "isInternal": false, - "x": 365.32000000000005, - "y": 665.7829999999999 + "x": 365.32, + "y": 665.783 }, { "body": null, "index": 21, "isInternal": false, - "x": 371.83200000000005, - "y": 668.2529999999999 + "x": 371.832, + "y": 668.253 }, { "body": null, "index": 22, "isInternal": false, - "x": 377.56300000000005, + "x": 377.563, "y": 672.209 }, { "body": null, "index": 23, "isInternal": false, - "x": 382.18100000000004, - "y": 677.4209999999999 + "x": 382.181, + "y": 677.421 }, { "body": null, "index": 24, "isInternal": false, - "x": 385.41700000000003, - "y": 683.5869999999999 + "x": 385.417, + "y": 683.587 }, { "body": null, "index": 25, "isInternal": false, - "x": 387.08400000000006, - "y": 690.3489999999999 + "x": 387.084, + "y": 690.349 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1840.099152, + "area": 1840.09915, "axes": { "#": 4843 }, "bounds": { "#": 4857 }, - "circleRadius": 24.320151748971192, + "circleRadius": 24.32015, "collisionFilter": { "#": 4860 }, @@ -43298,13 +43298,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 2155.6133263472666, - "inverseInertia": 0.0004639050927071979, - "inverseMass": 0.5434489760582205, + "inertia": 2155.61333, + "inverseInertia": 0.00046, + "inverseMass": 0.54345, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.840099152, + "mass": 1.8401, "motion": 0, "parent": null, "position": { @@ -43377,52 +43377,52 @@ } ], { - "x": -0.9709496823597511, - "y": -0.239283752740336 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854172069009322, - "y": -0.464797127490857 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.7485373879143113, - "y": -0.663092586969889 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680119445784095, - "y": -0.8230203100873354 + "x": -0.56801, + "y": -0.82302 }, { - "x": -0.35459767508594825, - "y": -0.9350189777879593 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12059115066736013, - "y": -0.992702258676146 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12059115066736013, - "y": -0.992702258676146 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.35459767508594825, - "y": -0.9350189777879593 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680119445784095, - "y": -0.8230203100873354 + "x": 0.56801, + "y": -0.82302 }, { - "x": 0.7485373879143113, - "y": -0.663092586969889 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854172069009322, - "y": -0.464797127490857 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.9709496823597511, - "y": -0.239283752740336 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -43437,11 +43437,11 @@ } }, { - "x": 445.3700000000001, - "y": 713.5840000000001 + "x": 445.37, + "y": 713.584 }, { - "x": 397.08400000000006, + "x": 397.084, "y": 664.944 }, { @@ -43459,7 +43459,7 @@ "y": 0 }, { - "x": 421.2270000000001, + "x": 421.227, "y": 689.264 }, { @@ -43467,7 +43467,7 @@ "y": 0 }, { - "x": 421.2270000000001, + "x": 421.227, "y": 689.264 }, { @@ -43571,182 +43571,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 445.3700000000001, + "x": 445.37, "y": 692.195 }, { "body": null, "index": 1, "isInternal": false, - "x": 443.9670000000001, + "x": 443.967, "y": 697.888 }, { "body": null, "index": 2, "isInternal": false, - "x": 441.2420000000001, - "y": 703.0790000000001 + "x": 441.242, + "y": 703.079 }, { "body": null, "index": 3, "isInternal": false, - "x": 437.3540000000001, + "x": 437.354, "y": 707.468 }, { "body": null, "index": 4, "isInternal": false, - "x": 432.5290000000001, + "x": 432.529, "y": 710.798 }, { "body": null, "index": 5, "isInternal": false, - "x": 427.0470000000001, - "y": 712.8770000000001 + "x": 427.047, + "y": 712.877 }, { "body": null, "index": 6, "isInternal": false, - "x": 421.2270000000001, - "y": 713.5840000000001 + "x": 421.227, + "y": 713.584 }, { "body": null, "index": 7, "isInternal": false, - "x": 415.4070000000001, - "y": 712.8770000000001 + "x": 415.407, + "y": 712.877 }, { "body": null, "index": 8, "isInternal": false, - "x": 409.92500000000007, + "x": 409.925, "y": 710.798 }, { "body": null, "index": 9, "isInternal": false, - "x": 405.1000000000001, + "x": 405.1, "y": 707.468 }, { "body": null, "index": 10, "isInternal": false, - "x": 401.2120000000001, - "y": 703.0790000000001 + "x": 401.212, + "y": 703.079 }, { "body": null, "index": 11, "isInternal": false, - "x": 398.4870000000001, + "x": 398.487, "y": 697.888 }, { "body": null, "index": 12, "isInternal": false, - "x": 397.08400000000006, + "x": 397.084, "y": 692.195 }, { "body": null, "index": 13, "isInternal": false, - "x": 397.08400000000006, + "x": 397.084, "y": 686.333 }, { "body": null, "index": 14, "isInternal": false, - "x": 398.4870000000001, + "x": 398.487, "y": 680.64 }, { "body": null, "index": 15, "isInternal": false, - "x": 401.2120000000001, + "x": 401.212, "y": 675.449 }, { "body": null, "index": 16, "isInternal": false, - "x": 405.1000000000001, - "y": 671.0600000000001 + "x": 405.1, + "y": 671.06 }, { "body": null, "index": 17, "isInternal": false, - "x": 409.92500000000007, + "x": 409.925, "y": 667.73 }, { "body": null, "index": 18, "isInternal": false, - "x": 415.4070000000001, + "x": 415.407, "y": 665.651 }, { "body": null, "index": 19, "isInternal": false, - "x": 421.2270000000001, + "x": 421.227, "y": 664.944 }, { "body": null, "index": 20, "isInternal": false, - "x": 427.0470000000001, + "x": 427.047, "y": 665.651 }, { "body": null, "index": 21, "isInternal": false, - "x": 432.5290000000001, + "x": 432.529, "y": 667.73 }, { "body": null, "index": 22, "isInternal": false, - "x": 437.3540000000001, - "y": 671.0600000000001 + "x": 437.354, + "y": 671.06 }, { "body": null, "index": 23, "isInternal": false, - "x": 441.2420000000001, + "x": 441.242, "y": 675.449 }, { "body": null, "index": 24, "isInternal": false, - "x": 443.9670000000001, + "x": 443.967, "y": 680.64 }, { "body": null, "index": 25, "isInternal": false, - "x": 445.3700000000001, + "x": 445.37, "y": 686.333 }, { @@ -43754,14 +43754,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1181.3861480000003, + "area": 1181.38615, "axes": { "#": 4897 }, "bounds": { "#": 4908 }, - "circleRadius": 19.55253343621399, + "circleRadius": 19.55253, "collisionFilter": { "#": 4911 }, @@ -43776,13 +43776,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 888.5618284630193, - "inverseInertia": 0.0011254140882123417, - "inverseMass": 0.8464632852627622, + "inertia": 888.56183, + "inverseInertia": 0.00113, + "inverseMass": 0.84646, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1813861480000003, + "mass": 1.18139, "motion": 0, "parent": null, "position": { @@ -43846,40 +43846,40 @@ } ], { - "x": -0.951026860952708, - "y": -0.30910824923712144 + "x": -0.95103, + "y": -0.30911 }, { - "x": -0.8090682196544235, - "y": -0.5877147402824109 + "x": -0.80907, + "y": -0.58771 }, { - "x": -0.5877147402824109, - "y": -0.8090682196544235 + "x": -0.58771, + "y": -0.80907 }, { - "x": -0.30910824923712144, - "y": -0.951026860952708 + "x": -0.30911, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.30910824923712144, - "y": -0.951026860952708 + "x": 0.30911, + "y": -0.95103 }, { - "x": 0.5877147402824109, - "y": -0.8090682196544235 + "x": 0.58771, + "y": -0.80907 }, { - "x": 0.8090682196544235, - "y": -0.5877147402824109 + "x": 0.80907, + "y": -0.58771 }, { - "x": 0.951026860952708, - "y": -0.30910824923712144 + "x": 0.95103, + "y": -0.30911 }, { "x": 1, @@ -43894,11 +43894,11 @@ } }, { - "x": 493.99400000000014, + "x": 493.994, "y": 703.568 }, { - "x": 455.3700000000001, + "x": 455.37, "y": 664.944 }, { @@ -43916,7 +43916,7 @@ "y": 0 }, { - "x": 474.68200000000013, + "x": 474.682, "y": 684.256 }, { @@ -43924,7 +43924,7 @@ "y": 0 }, { - "x": 474.68200000000013, + "x": 474.682, "y": 684.256 }, { @@ -44010,140 +44010,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 493.99400000000014, - "y": 687.3149999999999 + "x": 493.994, + "y": 687.315 }, { "body": null, "index": 1, "isInternal": false, - "x": 492.1030000000001, - "y": 693.1329999999999 + "x": 492.103, + "y": 693.133 }, { "body": null, "index": 2, "isInternal": false, - "x": 488.50800000000015, + "x": 488.508, "y": 698.082 }, { "body": null, "index": 3, "isInternal": false, - "x": 483.55900000000014, + "x": 483.559, "y": 701.677 }, { "body": null, "index": 4, "isInternal": false, - "x": 477.74100000000016, + "x": 477.741, "y": 703.568 }, { "body": null, "index": 5, "isInternal": false, - "x": 471.6230000000001, + "x": 471.623, "y": 703.568 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.8050000000001, + "x": 465.805, "y": 701.677 }, { "body": null, "index": 7, "isInternal": false, - "x": 460.8560000000001, + "x": 460.856, "y": 698.082 }, { "body": null, "index": 8, "isInternal": false, - "x": 457.26100000000014, - "y": 693.1329999999999 + "x": 457.261, + "y": 693.133 }, { "body": null, "index": 9, "isInternal": false, - "x": 455.3700000000001, - "y": 687.3149999999999 + "x": 455.37, + "y": 687.315 }, { "body": null, "index": 10, "isInternal": false, - "x": 455.3700000000001, + "x": 455.37, "y": 681.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 457.26100000000014, + "x": 457.261, "y": 675.379 }, { "body": null, "index": 12, "isInternal": false, - "x": 460.8560000000001, + "x": 460.856, "y": 670.43 }, { "body": null, "index": 13, "isInternal": false, - "x": 465.8050000000001, - "y": 666.8349999999999 + "x": 465.805, + "y": 666.835 }, { "body": null, "index": 14, "isInternal": false, - "x": 471.6230000000001, + "x": 471.623, "y": 664.944 }, { "body": null, "index": 15, "isInternal": false, - "x": 477.74100000000016, + "x": 477.741, "y": 664.944 }, { "body": null, "index": 16, "isInternal": false, - "x": 483.55900000000014, - "y": 666.8349999999999 + "x": 483.559, + "y": 666.835 }, { "body": null, "index": 17, "isInternal": false, - "x": 488.50800000000015, + "x": 488.508, "y": 670.43 }, { "body": null, "index": 18, "isInternal": false, - "x": 492.1030000000001, + "x": 492.103, "y": 675.379 }, { "body": null, "index": 19, "isInternal": false, - "x": 493.99400000000014, + "x": 493.994, "y": 681.197 }, { @@ -44151,14 +44151,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2655.1646479999995, + "area": 2655.16465, "axes": { "#": 4942 }, "bounds": { "#": 4956 }, - "circleRadius": 29.213927469135804, + "circleRadius": 29.21393, "collisionFilter": { "#": 4959 }, @@ -44173,13 +44173,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 4488.190926884284, - "inverseInertia": 0.00022280692071498018, - "inverseMass": 0.3766244781668245, + "inertia": 4488.19093, + "inverseInertia": 0.00022, + "inverseMass": 0.37662, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6551646479999995, + "mass": 2.65516, "motion": 0, "parent": null, "position": { @@ -44252,52 +44252,52 @@ } ], { - "x": -0.9709225341587072, - "y": -0.2393938860180726 + "x": -0.97092, + "y": -0.23939 }, { - "x": -0.8855089168758408, - "y": -0.46462238229919073 + "x": -0.88551, + "y": -0.46462 }, { - "x": -0.7484814634434337, - "y": -0.6631557123945897 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5680945646106238, - "y": -0.8229632832999694 + "x": -0.56809, + "y": -0.82296 }, { - "x": -0.3545600613876296, - "y": -0.9350332415849184 + "x": -0.35456, + "y": -0.93503 }, { - "x": -0.12055611930014841, - "y": -0.9927065135775469 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12055611930014841, - "y": -0.9927065135775469 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545600613876296, - "y": -0.9350332415849184 + "x": 0.35456, + "y": -0.93503 }, { - "x": 0.5680945646106238, - "y": -0.8229632832999694 + "x": 0.56809, + "y": -0.82296 }, { - "x": 0.7484814634434337, - "y": -0.6631557123945897 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855089168758408, - "y": -0.46462238229919073 + "x": 0.88551, + "y": -0.46462 }, { - "x": 0.9709225341587072, - "y": -0.2393938860180726 + "x": 0.97092, + "y": -0.23939 }, { "x": 1, @@ -44312,11 +44312,11 @@ } }, { - "x": 561.9960000000001, - "y": 723.3719999999998 + "x": 561.996, + "y": 723.372 }, { - "x": 503.99400000000014, + "x": 503.994, "y": 664.944 }, { @@ -44334,16 +44334,16 @@ "y": 0 }, { - "x": 532.9950000000001, - "y": 694.1579999999999 + "x": 532.995, + "y": 694.158 }, { "x": 0, "y": 0 }, { - "x": 532.9950000000001, - "y": 694.1579999999999 + "x": 532.995, + "y": 694.158 }, { "fillStyle": "#FF6B6B", @@ -44446,63 +44446,63 @@ "body": null, "index": 0, "isInternal": false, - "x": 561.9960000000001, - "y": 697.6789999999999 + "x": 561.996, + "y": 697.679 }, { "body": null, "index": 1, "isInternal": false, - "x": 560.3100000000002, - "y": 704.5169999999999 + "x": 560.31, + "y": 704.517 }, { "body": null, "index": 2, "isInternal": false, - "x": 557.0380000000001, - "y": 710.7529999999999 + "x": 557.038, + "y": 710.753 }, { "body": null, "index": 3, "isInternal": false, - "x": 552.3670000000001, - "y": 716.0249999999999 + "x": 552.367, + "y": 716.025 }, { "body": null, "index": 4, "isInternal": false, - "x": 546.5710000000001, + "x": 546.571, "y": 720.026 }, { "body": null, "index": 5, "isInternal": false, - "x": 539.9860000000001, - "y": 722.5229999999999 + "x": 539.986, + "y": 722.523 }, { "body": null, "index": 6, "isInternal": false, - "x": 532.9950000000001, - "y": 723.3719999999998 + "x": 532.995, + "y": 723.372 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.0040000000001, - "y": 722.5229999999999 + "x": 526.004, + "y": 722.523 }, { "body": null, "index": 8, "isInternal": false, - "x": 519.4190000000001, + "x": 519.419, "y": 720.026 }, { @@ -44510,118 +44510,118 @@ "index": 9, "isInternal": false, "x": 513.623, - "y": 716.0249999999999 + "y": 716.025 }, { "body": null, "index": 10, "isInternal": false, - "x": 508.9520000000001, - "y": 710.7529999999999 + "x": 508.952, + "y": 710.753 }, { "body": null, "index": 11, "isInternal": false, - "x": 505.6800000000001, - "y": 704.5169999999999 + "x": 505.68, + "y": 704.517 }, { "body": null, "index": 12, "isInternal": false, - "x": 503.99400000000014, - "y": 697.6789999999999 + "x": 503.994, + "y": 697.679 }, { "body": null, "index": 13, "isInternal": false, - "x": 503.99400000000014, + "x": 503.994, "y": 690.637 }, { "body": null, "index": 14, "isInternal": false, - "x": 505.6800000000001, - "y": 683.7989999999999 + "x": 505.68, + "y": 683.799 }, { "body": null, "index": 15, "isInternal": false, - "x": 508.9520000000001, - "y": 677.5629999999999 + "x": 508.952, + "y": 677.563 }, { "body": null, "index": 16, "isInternal": false, "x": 513.623, - "y": 672.2909999999999 + "y": 672.291 }, { "body": null, "index": 17, "isInternal": false, - "x": 519.4190000000001, - "y": 668.2899999999998 + "x": 519.419, + "y": 668.29 }, { "body": null, "index": 18, "isInternal": false, - "x": 526.0040000000001, - "y": 665.7929999999999 + "x": 526.004, + "y": 665.793 }, { "body": null, "index": 19, "isInternal": false, - "x": 532.9950000000001, + "x": 532.995, "y": 664.944 }, { "body": null, "index": 20, "isInternal": false, - "x": 539.9860000000001, - "y": 665.7929999999999 + "x": 539.986, + "y": 665.793 }, { "body": null, "index": 21, "isInternal": false, - "x": 546.5710000000001, - "y": 668.2899999999998 + "x": 546.571, + "y": 668.29 }, { "body": null, "index": 22, "isInternal": false, - "x": 552.3670000000001, - "y": 672.2909999999999 + "x": 552.367, + "y": 672.291 }, { "body": null, "index": 23, "isInternal": false, - "x": 557.0380000000001, - "y": 677.5629999999999 + "x": 557.038, + "y": 677.563 }, { "body": null, "index": 24, "isInternal": false, - "x": 560.3100000000002, - "y": 683.7989999999999 + "x": 560.31, + "y": 683.799 }, { "body": null, "index": 25, "isInternal": false, - "x": 561.9960000000001, + "x": 561.996, "y": 690.637 }, { @@ -44629,14 +44629,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2056.753882, + "area": 2056.75388, "axes": { "#": 4996 }, "bounds": { "#": 5010 }, - "circleRadius": 25.711741255144034, + "circleRadius": 25.71174, "collisionFilter": { "#": 5013 }, @@ -44651,13 +44651,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 2693.1036021662526, - "inverseInertia": 0.0003713188008050005, - "inverseMass": 0.48620304488138066, + "inertia": 2693.1036, + "inverseInertia": 0.00037, + "inverseMass": 0.4862, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.056753882, + "mass": 2.05675, "motion": 0, "parent": null, "position": { @@ -44730,52 +44730,52 @@ } ], { - "x": -0.9709624395087223, - "y": -0.23923198168988796 + "x": -0.97096, + "y": -0.23923 }, { - "x": -0.88541118244915, - "y": -0.46480860361443177 + "x": -0.88541, + "y": -0.46481 }, { - "x": -0.7485653014540001, - "y": -0.6630610752103321 + "x": -0.74857, + "y": -0.66306 }, { - "x": -0.5680684537179983, - "y": -0.8229813071330615 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35458614918379344, - "y": -0.935023348803124 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12051927635431298, - "y": -0.9927109871594214 + "x": -0.12052, + "y": -0.99271 }, { - "x": 0.12051927635431298, - "y": -0.9927109871594214 + "x": 0.12052, + "y": -0.99271 }, { - "x": 0.35458614918379344, - "y": -0.935023348803124 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680684537179983, - "y": -0.8229813071330615 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485653014540001, - "y": -0.6630610752103321 + "x": 0.74857, + "y": -0.66306 }, { - "x": 0.88541118244915, - "y": -0.46480860361443177 + "x": 0.88541, + "y": -0.46481 }, { - "x": 0.9709624395087223, - "y": -0.23923198168988796 + "x": 0.97096, + "y": -0.23923 }, { "x": 1, @@ -44790,11 +44790,11 @@ } }, { - "x": 623.0440000000001, - "y": 716.3679999999999 + "x": 623.044, + "y": 716.368 }, { - "x": 571.9960000000001, + "x": 571.996, "y": 664.944 }, { @@ -44812,7 +44812,7 @@ "y": 0 }, { - "x": 597.5200000000001, + "x": 597.52, "y": 690.656 }, { @@ -44820,7 +44820,7 @@ "y": 0 }, { - "x": 597.5200000000001, + "x": 597.52, "y": 690.656 }, { @@ -44924,21 +44924,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 623.0440000000001, + "x": 623.044, "y": 693.755 }, { "body": null, "index": 1, "isInternal": false, - "x": 621.5610000000001, + "x": 621.561, "y": 699.774 }, { "body": null, "index": 2, "isInternal": false, - "x": 618.6800000000001, + "x": 618.68, "y": 705.262 }, { @@ -44946,7 +44946,7 @@ "index": 3, "isInternal": false, "x": 614.57, - "y": 709.9019999999999 + "y": 709.902 }, { "body": null, @@ -44959,42 +44959,42 @@ "body": null, "index": 5, "isInternal": false, - "x": 603.6730000000001, + "x": 603.673, "y": 715.621 }, { "body": null, "index": 6, "isInternal": false, - "x": 597.5200000000001, - "y": 716.3679999999999 + "x": 597.52, + "y": 716.368 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.3670000000001, + "x": 591.367, "y": 715.621 }, { "body": null, "index": 8, "isInternal": false, - "x": 585.5710000000001, + "x": 585.571, "y": 713.423 }, { "body": null, "index": 9, "isInternal": false, - "x": 580.4700000000001, - "y": 709.9019999999999 + "x": 580.47, + "y": 709.902 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.3600000000001, + "x": 576.36, "y": 705.262 }, { @@ -45008,71 +45008,71 @@ "body": null, "index": 12, "isInternal": false, - "x": 571.9960000000001, + "x": 571.996, "y": 693.755 }, { "body": null, "index": 13, "isInternal": false, - "x": 571.9960000000001, - "y": 687.5569999999999 + "x": 571.996, + "y": 687.557 }, { "body": null, "index": 14, "isInternal": false, "x": 573.479, - "y": 681.5379999999999 + "y": 681.538 }, { "body": null, "index": 15, "isInternal": false, - "x": 576.3600000000001, + "x": 576.36, "y": 676.05 }, { "body": null, "index": 16, "isInternal": false, - "x": 580.4700000000001, + "x": 580.47, "y": 671.41 }, { "body": null, "index": 17, "isInternal": false, - "x": 585.5710000000001, - "y": 667.8889999999999 + "x": 585.571, + "y": 667.889 }, { "body": null, "index": 18, "isInternal": false, - "x": 591.3670000000001, - "y": 665.6909999999999 + "x": 591.367, + "y": 665.691 }, { "body": null, "index": 19, "isInternal": false, - "x": 597.5200000000001, + "x": 597.52, "y": 664.944 }, { "body": null, "index": 20, "isInternal": false, - "x": 603.6730000000001, - "y": 665.6909999999999 + "x": 603.673, + "y": 665.691 }, { "body": null, "index": 21, "isInternal": false, "x": 609.469, - "y": 667.8889999999999 + "y": 667.889 }, { "body": null, @@ -45085,36 +45085,36 @@ "body": null, "index": 23, "isInternal": false, - "x": 618.6800000000001, + "x": 618.68, "y": 676.05 }, { "body": null, "index": 24, "isInternal": false, - "x": 621.5610000000001, - "y": 681.5379999999999 + "x": 621.561, + "y": 681.538 }, { "body": null, "index": 25, "isInternal": false, - "x": 623.0440000000001, - "y": 687.5569999999999 + "x": 623.044, + "y": 687.557 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 773.7538339999998, + "area": 773.75383, "axes": { "#": 5050 }, "bounds": { "#": 5059 }, - "circleRadius": 15.897826646090534, + "circleRadius": 15.89783, "collisionFilter": { "#": 5062 }, @@ -45129,13 +45129,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 381.1923679213431, - "inverseInertia": 0.0026233473808855074, - "inverseMass": 1.2924007042787724, + "inertia": 381.19237, + "inverseInertia": 0.00262, + "inverseMass": 1.2924, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7737538339999998, + "mass": 0.77375, "motion": 0, "parent": null, "position": { @@ -45193,32 +45193,32 @@ } ], { - "x": -0.9239048251727244, - "y": -0.38262236477048445 + "x": -0.9239, + "y": -0.38262 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38262236477048445, - "y": -0.9239048251727244 + "x": -0.38262, + "y": -0.9239 }, { "x": 0, "y": -1 }, { - "x": 0.38262236477048445, - "y": -0.9239048251727244 + "x": 0.38262, + "y": -0.9239 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9239048251727244, - "y": -0.38262236477048445 + "x": 0.9239, + "y": -0.38262 }, { "x": 1, @@ -45233,11 +45233,11 @@ } }, { - "x": 664.2280000000001, - "y": 696.1279999999999 + "x": 664.228, + "y": 696.128 }, { - "x": 633.0440000000001, + "x": 633.044, "y": 664.944 }, { @@ -45255,7 +45255,7 @@ "y": 0 }, { - "x": 648.6360000000001, + "x": 648.636, "y": 680.536 }, { @@ -45263,7 +45263,7 @@ "y": 0 }, { - "x": 648.6360000000001, + "x": 648.636, "y": 680.536 }, { @@ -45337,21 +45337,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 664.2280000000001, - "y": 683.6379999999999 + "x": 664.228, + "y": 683.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 661.8550000000001, - "y": 689.3679999999999 + "x": 661.855, + "y": 689.368 }, { "body": null, "index": 2, "isInternal": false, - "x": 657.4680000000001, + "x": 657.468, "y": 693.755 }, { @@ -45359,20 +45359,20 @@ "index": 3, "isInternal": false, "x": 651.738, - "y": 696.1279999999999 + "y": 696.128 }, { "body": null, "index": 4, "isInternal": false, - "x": 645.5340000000001, - "y": 696.1279999999999 + "x": 645.534, + "y": 696.128 }, { "body": null, "index": 5, "isInternal": false, - "x": 639.8040000000001, + "x": 639.804, "y": 693.755 }, { @@ -45380,20 +45380,20 @@ "index": 6, "isInternal": false, "x": 635.417, - "y": 689.3679999999999 + "y": 689.368 }, { "body": null, "index": 7, "isInternal": false, - "x": 633.0440000000001, - "y": 683.6379999999999 + "x": 633.044, + "y": 683.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 633.0440000000001, + "x": 633.044, "y": 677.434 }, { @@ -45407,14 +45407,14 @@ "body": null, "index": 10, "isInternal": false, - "x": 639.8040000000001, - "y": 667.3169999999999 + "x": 639.804, + "y": 667.317 }, { "body": null, "index": 11, "isInternal": false, - "x": 645.5340000000001, + "x": 645.534, "y": 664.944 }, { @@ -45428,21 +45428,21 @@ "body": null, "index": 13, "isInternal": false, - "x": 657.4680000000001, - "y": 667.3169999999999 + "x": 657.468, + "y": 667.317 }, { "body": null, "index": 14, "isInternal": false, - "x": 661.8550000000001, + "x": 661.855, "y": 671.704 }, { "body": null, "index": 15, "isInternal": false, - "x": 664.2280000000001, + "x": 664.228, "y": 677.434 }, { @@ -45450,14 +45450,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1605.3869300000001, + "area": 1605.38693, "axes": { "#": 5089 }, "bounds": { "#": 5102 }, - "circleRadius": 22.735146604938272, + "circleRadius": 22.73515, "collisionFilter": { "#": 5105 }, @@ -45472,13 +45472,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 105, - "inertia": 1640.7824271648174, - "inverseInertia": 0.0006094653279094082, - "inverseMass": 0.6229027914161478, + "inertia": 1640.78243, + "inverseInertia": 0.00061, + "inverseMass": 0.6229, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.60538693, + "mass": 1.60539, "motion": 0, "parent": null, "position": { @@ -45548,48 +45548,48 @@ } ], { - "x": -0.9659209717012952, - "y": -0.2588371619911359 + "x": -0.96592, + "y": -0.25884 }, { - "x": -0.8659947892090337, - "y": -0.500053022251442 + "x": -0.86599, + "y": -0.50005 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.500053022251442, - "y": -0.8659947892090337 + "x": -0.50005, + "y": -0.86599 }, { - "x": -0.2588371619911359, - "y": -0.9659209717012952 + "x": -0.25884, + "y": -0.96592 }, { "x": 0, "y": -1 }, { - "x": 0.2588371619911359, - "y": -0.9659209717012952 + "x": 0.25884, + "y": -0.96592 }, { - "x": 0.500053022251442, - "y": -0.8659947892090337 + "x": 0.50005, + "y": -0.86599 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8659947892090337, - "y": -0.500053022251442 + "x": 0.86599, + "y": -0.50005 }, { - "x": 0.9659209717012952, - "y": -0.2588371619911359 + "x": 0.96592, + "y": -0.25884 }, { "x": 1, @@ -45605,7 +45605,7 @@ }, { "x": 145.082, - "y": 779.4960000000001 + "y": 779.496 }, { "x": 100, @@ -45740,27 +45740,27 @@ "index": 1, "isInternal": false, "x": 143.546, - "y": 765.6550000000001 + "y": 765.655 }, { "body": null, "index": 2, "isInternal": false, "x": 140.578, - "y": 770.7950000000001 + "y": 770.795 }, { "body": null, "index": 3, "isInternal": false, "x": 136.381, - "y": 774.9920000000001 + "y": 774.992 }, { "body": null, "index": 4, "isInternal": false, - "x": 131.24099999999999, + "x": 131.241, "y": 777.96 }, { @@ -45768,14 +45768,14 @@ "index": 5, "isInternal": false, "x": 125.509, - "y": 779.4960000000001 + "y": 779.496 }, { "body": null, "index": 6, "isInternal": false, "x": 119.573, - "y": 779.4960000000001 + "y": 779.496 }, { "body": null, @@ -45789,21 +45789,21 @@ "index": 8, "isInternal": false, "x": 108.701, - "y": 774.9920000000001 + "y": 774.992 }, { "body": null, "index": 9, "isInternal": false, - "x": 104.50399999999999, - "y": 770.7950000000001 + "x": 104.504, + "y": 770.795 }, { "body": null, "index": 10, "isInternal": false, "x": 101.536, - "y": 765.6550000000001 + "y": 765.655 }, { "body": null, @@ -45817,7 +45817,7 @@ "index": 12, "isInternal": false, "x": 100, - "y": 753.9870000000001 + "y": 753.987 }, { "body": null, @@ -45830,7 +45830,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 104.50399999999999, + "x": 104.504, "y": 743.115 }, { @@ -45865,7 +45865,7 @@ "body": null, "index": 19, "isInternal": false, - "x": 131.24099999999999, + "x": 131.241, "y": 735.95 }, { @@ -45894,21 +45894,21 @@ "index": 23, "isInternal": false, "x": 145.082, - "y": 753.9870000000001 + "y": 753.987 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 885.8898539999999, + "area": 885.88985, "axes": { "#": 5140 }, "bounds": { "#": 5150 }, - "circleRadius": 16.964441872427983, + "circleRadius": 16.96444, "collisionFilter": { "#": 5153 }, @@ -45923,13 +45923,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 106, - "inertia": 499.66154369180117, - "inverseInertia": 0.0020013547422749333, - "inverseMass": 1.1288085030941106, + "inertia": 499.66154, + "inverseInertia": 0.002, + "inverseMass": 1.12881, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8858898539999999, + "mass": 0.88589, "motion": 0, "parent": null, "position": { @@ -45990,36 +45990,36 @@ } ], { - "x": -0.939689304787221, - "y": -0.3420292538197708 + "x": -0.93969, + "y": -0.34203 }, { - "x": -0.7661025820927431, - "y": -0.6427183159914085 + "x": -0.7661, + "y": -0.64272 }, { - "x": -0.4998448927833589, - "y": -0.8661149364595858 + "x": -0.49984, + "y": -0.86611 }, { - "x": -0.17364008799244365, - "y": -0.984809179405826 + "x": -0.17364, + "y": -0.98481 }, { - "x": 0.17364008799244365, - "y": -0.984809179405826 + "x": 0.17364, + "y": -0.98481 }, { - "x": 0.4998448927833589, - "y": -0.8661149364595858 + "x": 0.49984, + "y": -0.86611 }, { - "x": 0.7661025820927431, - "y": -0.6427183159914085 + "x": 0.7661, + "y": -0.64272 }, { - "x": 0.939689304787221, - "y": -0.3420292538197708 + "x": 0.93969, + "y": -0.34203 }, { "x": 1, @@ -46034,8 +46034,8 @@ } }, { - "x": 188.49599999999998, - "y": 768.3419999999999 + "x": 188.496, + "y": 768.342 }, { "x": 155.082, @@ -46057,7 +46057,7 @@ }, { "x": 171.789, - "y": 751.3779999999999 + "y": 751.378 }, { "x": 0, @@ -46065,7 +46065,7 @@ }, { "x": 171.789, - "y": 751.3779999999999 + "y": 751.378 }, { "fillStyle": "#4ECDC4", @@ -46144,7 +46144,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 188.49599999999998, + "x": 188.496, "y": 754.324 }, { @@ -46152,20 +46152,20 @@ "index": 1, "isInternal": false, "x": 186.481, - "y": 759.8599999999999 + "y": 759.86 }, { "body": null, "index": 2, "isInternal": false, "x": 182.694, - "y": 764.3739999999999 + "y": 764.374 }, { "body": null, "index": 3, "isInternal": false, - "x": 177.59099999999998, + "x": 177.591, "y": 767.319 }, { @@ -46173,7 +46173,7 @@ "index": 4, "isInternal": false, "x": 171.789, - "y": 768.3419999999999 + "y": 768.342 }, { "body": null, @@ -46187,14 +46187,14 @@ "index": 6, "isInternal": false, "x": 160.884, - "y": 764.3739999999999 + "y": 764.374 }, { "body": null, "index": 7, "isInternal": false, - "x": 157.09699999999998, - "y": 759.8599999999999 + "x": 157.097, + "y": 759.86 }, { "body": null, @@ -46208,13 +46208,13 @@ "index": 9, "isInternal": false, "x": 155.082, - "y": 748.4319999999999 + "y": 748.432 }, { "body": null, "index": 10, "isInternal": false, - "x": 157.09699999999998, + "x": 157.097, "y": 742.896 }, { @@ -46229,7 +46229,7 @@ "index": 12, "isInternal": false, "x": 165.987, - "y": 735.4369999999999 + "y": 735.437 }, { "body": null, @@ -46242,8 +46242,8 @@ "body": null, "index": 14, "isInternal": false, - "x": 177.59099999999998, - "y": 735.4369999999999 + "x": 177.591, + "y": 735.437 }, { "body": null, @@ -46263,8 +46263,8 @@ "body": null, "index": 17, "isInternal": false, - "x": 188.49599999999998, - "y": 748.4319999999999 + "x": 188.496, + "y": 748.432 }, { "angle": 0, @@ -46278,7 +46278,7 @@ "bounds": { "#": 5195 }, - "circleRadius": 23.770897633744855, + "circleRadius": 23.7709, "collisionFilter": { "#": 5198 }, @@ -46293,13 +46293,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 107, - "inertia": 1960.838039917572, - "inverseInertia": 0.0005099860262003267, - "inverseMass": 0.5698032386225763, + "inertia": 1960.83804, + "inverseInertia": 0.00051, + "inverseMass": 0.5698, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7549917800000001, + "mass": 1.75499, "motion": 0, "parent": null, "position": { @@ -46369,48 +46369,48 @@ } ], { - "x": -0.9658890542435851, - "y": -0.25895624126951017 + "x": -0.96589, + "y": -0.25896 }, { - "x": -0.8660728773588139, - "y": -0.4999177643407215 + "x": -0.86607, + "y": -0.49992 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999177643407215, - "y": -0.8660728773588139 + "x": -0.49992, + "y": -0.86607 }, { - "x": -0.25895624126951017, - "y": -0.9658890542435851 + "x": -0.25896, + "y": -0.96589 }, { "x": 0, "y": -1 }, { - "x": 0.25895624126951017, - "y": -0.9658890542435851 + "x": 0.25896, + "y": -0.96589 }, { - "x": 0.4999177643407215, - "y": -0.8660728773588139 + "x": 0.49992, + "y": -0.86607 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660728773588139, - "y": -0.4999177643407215 + "x": 0.86607, + "y": -0.49992 }, { - "x": 0.9658890542435851, - "y": -0.25895624126951017 + "x": 0.96589, + "y": -0.25896 }, { "x": 1, @@ -46429,7 +46429,7 @@ "y": 781.55 }, { - "x": 198.49599999999998, + "x": 198.496, "y": 734.414 }, { @@ -46554,7 +46554,7 @@ "index": 0, "isInternal": false, "x": 245.632, - "y": 761.0849999999999 + "y": 761.085 }, { "body": null, @@ -46595,14 +46595,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 218.96099999999998, + "x": 218.961, "y": 781.55 }, { "body": null, "index": 7, "isInternal": false, - "x": 212.96699999999998, + "x": 212.967, "y": 779.943 }, { @@ -46616,42 +46616,42 @@ "body": null, "index": 9, "isInternal": false, - "x": 203.20499999999998, + "x": 203.205, "y": 772.453 }, { "body": null, "index": 10, "isInternal": false, - "x": 200.10299999999998, + "x": 200.103, "y": 767.079 }, { "body": null, "index": 11, "isInternal": false, - "x": 198.49599999999998, - "y": 761.0849999999999 + "x": 198.496, + "y": 761.085 }, { "body": null, "index": 12, "isInternal": false, - "x": 198.49599999999998, + "x": 198.496, "y": 754.879 }, { "body": null, "index": 13, "isInternal": false, - "x": 200.10299999999998, + "x": 200.103, "y": 748.885 }, { "body": null, "index": 14, "isInternal": false, - "x": 203.20499999999998, + "x": 203.205, "y": 743.511 }, { @@ -46659,20 +46659,20 @@ "index": 15, "isInternal": false, "x": 207.593, - "y": 739.1229999999999 + "y": 739.123 }, { "body": null, "index": 16, "isInternal": false, - "x": 212.96699999999998, + "x": 212.967, "y": 736.021 }, { "body": null, "index": 17, "isInternal": false, - "x": 218.96099999999998, + "x": 218.961, "y": 734.414 }, { @@ -46694,7 +46694,7 @@ "index": 20, "isInternal": false, "x": 236.535, - "y": 739.1229999999999 + "y": 739.123 }, { "body": null, @@ -46722,14 +46722,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2698.393094000001, + "area": 2698.39309, "axes": { "#": 5233 }, "bounds": { "#": 5247 }, - "circleRadius": 29.450810185185183, + "circleRadius": 29.45081, "collisionFilter": { "#": 5250 }, @@ -46744,13 +46744,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 108, - "inertia": 4635.524094588275, - "inverseInertia": 0.000215725337544345, - "inverseMass": 0.37059092769824575, + "inertia": 4635.52409, + "inverseInertia": 0.00022, + "inverseMass": 0.37059, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.698393094000001, + "mass": 2.69839, "motion": 0, "parent": null, "position": { @@ -46823,52 +46823,52 @@ } ], { - "x": -0.9709408980232213, - "y": -0.23931939442063754 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854949778226265, - "y": -0.46464894732572676 + "x": -0.88549, + "y": -0.46465 }, { - "x": -0.748426378165209, - "y": -0.6632178800865579 + "x": -0.74843, + "y": -0.66322 }, { - "x": -0.5680521829952273, - "y": -0.8229925378728272 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.3546712185765775, - "y": -0.9349910837614472 + "x": -0.35467, + "y": -0.93499 }, { - "x": -0.12056692008849908, - "y": -0.9927052018501633 + "x": -0.12057, + "y": -0.99271 }, { - "x": 0.12056692008849908, - "y": -0.9927052018501633 + "x": 0.12057, + "y": -0.99271 }, { - "x": 0.3546712185765775, - "y": -0.9349910837614472 + "x": 0.35467, + "y": -0.93499 }, { - "x": 0.5680521829952273, - "y": -0.8229925378728272 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.748426378165209, - "y": -0.6632178800865579 + "x": 0.74843, + "y": -0.66322 }, { - "x": 0.8854949778226265, - "y": -0.46464894732572676 + "x": 0.88549, + "y": -0.46465 }, { - "x": 0.9709408980232213, - "y": -0.23931939442063754 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -47200,14 +47200,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1009.944076, + "area": 1009.94408, "axes": { "#": 5287 }, "bounds": { "#": 5298 }, - "circleRadius": 18.078253600823047, + "circleRadius": 18.07825, "collisionFilter": { "#": 5301 }, @@ -47222,13 +47222,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 649.379472717892, - "inverseInertia": 0.0015399316455363644, - "inverseMass": 0.9901538350129399, + "inertia": 649.37947, + "inverseInertia": 0.00154, + "inverseMass": 0.99015, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.009944076, + "mass": 1.00994, "motion": 0, "parent": null, "position": { @@ -47292,40 +47292,40 @@ } ], { - "x": -0.9510431635189839, - "y": -0.30905808697363535 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8089882931594037, - "y": -0.5878247540985618 + "x": -0.80899, + "y": -0.58782 }, { - "x": -0.5878247540985618, - "y": -0.8089882931594037 + "x": -0.58782, + "y": -0.80899 }, { - "x": -0.30905808697363535, - "y": -0.9510431635189839 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30905808697363535, - "y": -0.9510431635189839 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5878247540985618, - "y": -0.8089882931594037 + "x": 0.58782, + "y": -0.80899 }, { - "x": 0.8089882931594037, - "y": -0.5878247540985618 + "x": 0.80899, + "y": -0.58782 }, { - "x": 0.9510431635189839, - "y": -0.30905808697363535 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -47478,13 +47478,13 @@ "index": 3, "isInternal": false, "x": 350.167, - "y": 768.3779999999999 + "y": 768.378 }, { "body": null, "index": 4, "isInternal": false, - "x": 344.78799999999995, + "x": 344.788, "y": 770.126 }, { @@ -47499,13 +47499,13 @@ "index": 6, "isInternal": false, "x": 333.753, - "y": 768.3779999999999 + "y": 768.378 }, { "body": null, "index": 7, "isInternal": false, - "x": 329.17699999999996, + "x": 329.177, "y": 765.053 }, { @@ -47540,7 +47540,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 329.17699999999996, + "x": 329.177, "y": 739.487 }, { @@ -47561,7 +47561,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 344.78799999999995, + "x": 344.788, "y": 734.414 }, { @@ -47597,14 +47597,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1020.4002399999998, + "area": 1020.40024, "axes": { "#": 5332 }, "bounds": { "#": 5343 }, - "circleRadius": 18.171746399176953, + "circleRadius": 18.17175, "collisionFilter": { "#": 5346 }, @@ -47619,13 +47619,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 110, - "inertia": 662.8954040469373, - "inverseInertia": 0.001508533614647287, - "inverseMass": 0.9800076095630869, + "inertia": 662.8954, + "inverseInertia": 0.00151, + "inverseMass": 0.98001, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0204002399999998, + "mass": 1.0204, "motion": 0, "parent": null, "position": { @@ -47689,40 +47689,40 @@ } ], { - "x": -0.9510482862449724, - "y": -0.3090423227172957 + "x": -0.95105, + "y": -0.30904 }, { - "x": -0.8089642180644331, - "y": -0.5878578857950281 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878578857950281, - "y": -0.8089642180644331 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.3090423227172957, - "y": -0.9510482862449724 + "x": -0.30904, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.3090423227172957, - "y": -0.9510482862449724 + "x": 0.30904, + "y": -0.95105 }, { - "x": 0.5878578857950281, - "y": -0.8089642180644331 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089642180644331, - "y": -0.5878578857950281 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510482862449724, - "y": -0.3090423227172957 + "x": 0.95105, + "y": -0.30904 }, { "x": 1, @@ -47737,7 +47737,7 @@ } }, { - "x": 405.71199999999993, + "x": 405.712, "y": 770.31 }, { @@ -47759,7 +47759,7 @@ "y": 0 }, { - "x": 387.76399999999995, + "x": 387.764, "y": 752.362 }, { @@ -47767,7 +47767,7 @@ "y": 0 }, { - "x": 387.76399999999995, + "x": 387.764, "y": 752.362 }, { @@ -47853,56 +47853,56 @@ "body": null, "index": 0, "isInternal": false, - "x": 405.71199999999993, - "y": 755.2049999999999 + "x": 405.712, + "y": 755.205 }, { "body": null, "index": 1, "isInternal": false, - "x": 403.9549999999999, + "x": 403.955, "y": 760.612 }, { "body": null, "index": 2, "isInternal": false, - "x": 400.61299999999994, + "x": 400.613, "y": 765.211 }, { "body": null, "index": 3, "isInternal": false, - "x": 396.01399999999995, + "x": 396.014, "y": 768.553 }, { "body": null, "index": 4, "isInternal": false, - "x": 390.60699999999997, + "x": 390.607, "y": 770.31 }, { "body": null, "index": 5, "isInternal": false, - "x": 384.92099999999994, + "x": 384.921, "y": 770.31 }, { "body": null, "index": 6, "isInternal": false, - "x": 379.51399999999995, + "x": 379.514, "y": 768.553 }, { "body": null, "index": 7, "isInternal": false, - "x": 374.91499999999996, + "x": 374.915, "y": 765.211 }, { @@ -47917,7 +47917,7 @@ "index": 9, "isInternal": false, "x": 369.816, - "y": 755.2049999999999 + "y": 755.205 }, { "body": null, @@ -47937,56 +47937,56 @@ "body": null, "index": 12, "isInternal": false, - "x": 374.91499999999996, - "y": 739.5129999999999 + "x": 374.915, + "y": 739.513 }, { "body": null, "index": 13, "isInternal": false, - "x": 379.51399999999995, - "y": 736.1709999999999 + "x": 379.514, + "y": 736.171 }, { "body": null, "index": 14, "isInternal": false, - "x": 384.92099999999994, + "x": 384.921, "y": 734.414 }, { "body": null, "index": 15, "isInternal": false, - "x": 390.60699999999997, + "x": 390.607, "y": 734.414 }, { "body": null, "index": 16, "isInternal": false, - "x": 396.01399999999995, - "y": 736.1709999999999 + "x": 396.014, + "y": 736.171 }, { "body": null, "index": 17, "isInternal": false, - "x": 400.61299999999994, - "y": 739.5129999999999 + "x": 400.613, + "y": 739.513 }, { "body": null, "index": 18, "isInternal": false, - "x": 403.9549999999999, + "x": 403.955, "y": 744.112 }, { "body": null, "index": 19, "isInternal": false, - "x": 405.71199999999993, + "x": 405.712, "y": 749.519 }, { @@ -47994,14 +47994,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1846.3076820000003, + "area": 1846.30768, "axes": { "#": 5377 }, "bounds": { "#": 5391 }, - "circleRadius": 24.360918209876544, + "circleRadius": 24.36092, "collisionFilter": { "#": 5394 }, @@ -48016,13 +48016,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 111, - "inertia": 2170.1840279388884, - "inverseInertia": 0.0004607904155251481, - "inverseMass": 0.5416215345628399, + "inertia": 2170.18403, + "inverseInertia": 0.00046, + "inverseMass": 0.54162, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8463076820000004, + "mass": 1.84631, "motion": 0, "parent": null, "position": { @@ -48095,52 +48095,52 @@ } ], { - "x": -0.9709680504547509, - "y": -0.23920920759055342 + "x": -0.97097, + "y": -0.23921 }, { - "x": -0.8854679746634831, - "y": -0.4647004043955085 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7483949633546547, - "y": -0.6632533292983798 + "x": -0.74839, + "y": -0.66325 }, { - "x": -0.5681824814692611, - "y": -0.8229025870365416 + "x": -0.56818, + "y": -0.8229 }, { - "x": -0.35453616373576663, - "y": -0.9350423031090763 + "x": -0.35454, + "y": -0.93504 }, { - "x": -0.12055511119895662, - "y": -0.992706636002705 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12055511119895662, - "y": -0.992706636002705 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.35453616373576663, - "y": -0.9350423031090763 + "x": 0.35454, + "y": -0.93504 }, { - "x": 0.5681824814692611, - "y": -0.8229025870365416 + "x": 0.56818, + "y": -0.8229 }, { - "x": 0.7483949633546547, - "y": -0.6632533292983798 + "x": 0.74839, + "y": -0.66325 }, { - "x": 0.8854679746634831, - "y": -0.4647004043955085 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.9709680504547509, - "y": -0.23920920759055342 + "x": 0.97097, + "y": -0.23921 }, { "x": 1, @@ -48155,11 +48155,11 @@ } }, { - "x": 464.0779999999999, + "x": 464.078, "y": 783.136 }, { - "x": 415.71199999999993, + "x": 415.712, "y": 734.414 }, { @@ -48177,7 +48177,7 @@ "y": 0 }, { - "x": 439.8949999999999, + "x": 439.895, "y": 758.775 }, { @@ -48185,7 +48185,7 @@ "y": 0 }, { - "x": 439.8949999999999, + "x": 439.895, "y": 758.775 }, { @@ -48289,197 +48289,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 464.0779999999999, + "x": 464.078, "y": 761.711 }, { "body": null, "index": 1, "isInternal": false, - "x": 462.67299999999994, + "x": 462.673, "y": 767.414 }, { "body": null, "index": 2, "isInternal": false, - "x": 459.9439999999999, + "x": 459.944, "y": 772.614 }, { "body": null, "index": 3, "isInternal": false, - "x": 456.0489999999999, + "x": 456.049, "y": 777.009 }, { "body": null, "index": 4, "isInternal": false, - "x": 451.21599999999995, + "x": 451.216, "y": 780.346 }, { "body": null, "index": 5, "isInternal": false, - "x": 445.7249999999999, + "x": 445.725, "y": 782.428 }, { "body": null, "index": 6, "isInternal": false, - "x": 439.8949999999999, + "x": 439.895, "y": 783.136 }, { "body": null, "index": 7, "isInternal": false, - "x": 434.06499999999994, + "x": 434.065, "y": 782.428 }, { "body": null, "index": 8, "isInternal": false, - "x": 428.5739999999999, + "x": 428.574, "y": 780.346 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.74099999999993, + "x": 423.741, "y": 777.009 }, { "body": null, "index": 10, "isInternal": false, - "x": 419.84599999999995, + "x": 419.846, "y": 772.614 }, { "body": null, "index": 11, "isInternal": false, - "x": 417.1169999999999, + "x": 417.117, "y": 767.414 }, { "body": null, "index": 12, "isInternal": false, - "x": 415.71199999999993, + "x": 415.712, "y": 761.711 }, { "body": null, "index": 13, "isInternal": false, - "x": 415.71199999999993, - "y": 755.8389999999999 + "x": 415.712, + "y": 755.839 }, { "body": null, "index": 14, "isInternal": false, - "x": 417.1169999999999, + "x": 417.117, "y": 750.136 }, { "body": null, "index": 15, "isInternal": false, - "x": 419.84599999999995, - "y": 744.9359999999999 + "x": 419.846, + "y": 744.936 }, { "body": null, "index": 16, "isInternal": false, - "x": 423.74099999999993, - "y": 740.5409999999999 + "x": 423.741, + "y": 740.541 }, { "body": null, "index": 17, "isInternal": false, - "x": 428.5739999999999, + "x": 428.574, "y": 737.204 }, { "body": null, "index": 18, "isInternal": false, - "x": 434.06499999999994, + "x": 434.065, "y": 735.122 }, { "body": null, "index": 19, "isInternal": false, - "x": 439.8949999999999, + "x": 439.895, "y": 734.414 }, { "body": null, "index": 20, "isInternal": false, - "x": 445.7249999999999, + "x": 445.725, "y": 735.122 }, { "body": null, "index": 21, "isInternal": false, - "x": 451.21599999999995, + "x": 451.216, "y": 737.204 }, { "body": null, "index": 22, "isInternal": false, - "x": 456.0489999999999, - "y": 740.5409999999999 + "x": 456.049, + "y": 740.541 }, { "body": null, "index": 23, "isInternal": false, - "x": 459.9439999999999, - "y": 744.9359999999999 + "x": 459.944, + "y": 744.936 }, { "body": null, "index": 24, "isInternal": false, - "x": 462.67299999999994, + "x": 462.673, "y": 750.136 }, { "body": null, "index": 25, "isInternal": false, - "x": 464.0779999999999, - "y": 755.8389999999999 + "x": 464.078, + "y": 755.839 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1121.860092, + "area": 1121.86009, "axes": { "#": 5431 }, "bounds": { "#": 5442 }, - "circleRadius": 19.053176440329217, + "circleRadius": 19.05318, "collisionFilter": { "#": 5445 }, @@ -48494,13 +48494,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 112, - "inertia": 801.2744632606872, - "inverseInertia": 0.0012480118184855459, - "inverseMass": 0.8913767475383196, + "inertia": 801.27446, + "inverseInertia": 0.00125, + "inverseMass": 0.89138, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.121860092, + "mass": 1.12186, "motion": 0, "parent": null, "position": { @@ -48564,40 +48564,40 @@ } ], { - "x": -0.9510550252101229, - "y": -0.309021583425127 + "x": -0.95106, + "y": -0.30902 }, { - "x": -0.8090261365434558, - "y": -0.5877726689712355 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877726689712355, - "y": -0.8090261365434558 + "x": -0.58777, + "y": -0.80903 }, { - "x": -0.309021583425127, - "y": -0.9510550252101229 + "x": -0.30902, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.309021583425127, - "y": -0.9510550252101229 + "x": 0.30902, + "y": -0.95106 }, { - "x": 0.5877726689712355, - "y": -0.8090261365434558 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090261365434558, - "y": -0.5877726689712355 + "x": 0.80903, + "y": -0.58777 }, { - "x": 0.9510550252101229, - "y": -0.309021583425127 + "x": 0.95106, + "y": -0.30902 }, { "x": 1, @@ -48612,11 +48612,11 @@ } }, { - "x": 511.71599999999995, - "y": 772.0519999999999 + "x": 511.716, + "y": 772.052 }, { - "x": 474.0779999999999, + "x": 474.078, "y": 734.414 }, { @@ -48634,7 +48634,7 @@ "y": 0 }, { - "x": 492.89699999999993, + "x": 492.897, "y": 753.233 }, { @@ -48642,7 +48642,7 @@ "y": 0 }, { - "x": 492.89699999999993, + "x": 492.897, "y": 753.233 }, { @@ -48728,140 +48728,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 511.71599999999995, - "y": 756.2139999999999 + "x": 511.716, + "y": 756.214 }, { "body": null, "index": 1, "isInternal": false, - "x": 509.8739999999999, - "y": 761.8829999999999 + "x": 509.874, + "y": 761.883 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.36999999999995, - "y": 766.7059999999999 + "x": 506.37, + "y": 766.706 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.5469999999999, - "y": 770.2099999999999 + "x": 501.547, + "y": 770.21 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.87799999999993, - "y": 772.0519999999999 + "x": 495.878, + "y": 772.052 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.91599999999994, - "y": 772.0519999999999 + "x": 489.916, + "y": 772.052 }, { "body": null, "index": 6, "isInternal": false, - "x": 484.24699999999996, - "y": 770.2099999999999 + "x": 484.247, + "y": 770.21 }, { "body": null, "index": 7, "isInternal": false, - "x": 479.4239999999999, - "y": 766.7059999999999 + "x": 479.424, + "y": 766.706 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.91999999999996, - "y": 761.8829999999999 + "x": 475.92, + "y": 761.883 }, { "body": null, "index": 9, "isInternal": false, - "x": 474.0779999999999, - "y": 756.2139999999999 + "x": 474.078, + "y": 756.214 }, { "body": null, "index": 10, "isInternal": false, - "x": 474.0779999999999, + "x": 474.078, "y": 750.252 }, { "body": null, "index": 11, "isInternal": false, - "x": 475.91999999999996, + "x": 475.92, "y": 744.583 }, { "body": null, "index": 12, "isInternal": false, - "x": 479.4239999999999, + "x": 479.424, "y": 739.76 }, { "body": null, "index": 13, "isInternal": false, - "x": 484.24699999999996, + "x": 484.247, "y": 736.256 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.91599999999994, + "x": 489.916, "y": 734.414 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.87799999999993, + "x": 495.878, "y": 734.414 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.5469999999999, + "x": 501.547, "y": 736.256 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.36999999999995, + "x": 506.37, "y": 739.76 }, { "body": null, "index": 18, "isInternal": false, - "x": 509.8739999999999, + "x": 509.874, "y": 744.583 }, { "body": null, "index": 19, "isInternal": false, - "x": 511.71599999999995, + "x": 511.716, "y": 750.252 }, { @@ -48869,14 +48869,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1127.3694039999998, + "area": 1127.3694, "axes": { "#": 5476 }, "bounds": { "#": 5487 }, - "circleRadius": 19.100372942386834, + "circleRadius": 19.10037, "collisionFilter": { "#": 5490 }, @@ -48891,13 +48891,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 113, - "inertia": 809.1637011361704, - "inverseInertia": 0.0012358438701536793, - "inverseMass": 0.8870207018674778, + "inertia": 809.1637, + "inverseInertia": 0.00124, + "inverseMass": 0.88702, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1273694039999997, + "mass": 1.12737, "motion": 0, "parent": null, "position": { @@ -48961,40 +48961,40 @@ } ], { - "x": -0.9510820218373812, - "y": -0.3089384853619226 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.809003716338754, - "y": -0.5878035275073508 + "x": -0.809, + "y": -0.5878 }, { - "x": -0.5878035275073508, - "y": -0.809003716338754 + "x": -0.5878, + "y": -0.809 }, { - "x": -0.3089384853619226, - "y": -0.9510820218373812 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.3089384853619226, - "y": -0.9510820218373812 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5878035275073508, - "y": -0.809003716338754 + "x": 0.5878, + "y": -0.809 }, { - "x": 0.809003716338754, - "y": -0.5878035275073508 + "x": 0.809, + "y": -0.5878 }, { - "x": 0.9510820218373812, - "y": -0.3089384853619226 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -49009,11 +49009,11 @@ } }, { - "x": 559.4459999999999, + "x": 559.446, "y": 772.144 }, { - "x": 521.7159999999999, + "x": 521.716, "y": 734.414 }, { @@ -49031,7 +49031,7 @@ "y": 0 }, { - "x": 540.5809999999999, + "x": 540.581, "y": 753.279 }, { @@ -49039,7 +49039,7 @@ "y": 0 }, { - "x": 540.5809999999999, + "x": 540.581, "y": 753.279 }, { @@ -49125,21 +49125,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 559.4459999999999, + "x": 559.446, "y": 756.267 }, { "body": null, "index": 1, "isInternal": false, - "x": 557.5999999999999, + "x": 557.6, "y": 761.95 }, { "body": null, "index": 2, "isInternal": false, - "x": 554.0869999999999, + "x": 554.087, "y": 766.785 }, { @@ -49160,70 +49160,70 @@ "body": null, "index": 5, "isInternal": false, - "x": 537.5929999999998, + "x": 537.593, "y": 772.144 }, { "body": null, "index": 6, "isInternal": false, - "x": 531.9099999999999, + "x": 531.91, "y": 770.298 }, { "body": null, "index": 7, "isInternal": false, - "x": 527.0749999999999, + "x": 527.075, "y": 766.785 }, { "body": null, "index": 8, "isInternal": false, - "x": 523.5619999999999, + "x": 523.562, "y": 761.95 }, { "body": null, "index": 9, "isInternal": false, - "x": 521.7159999999999, + "x": 521.716, "y": 756.267 }, { "body": null, "index": 10, "isInternal": false, - "x": 521.7159999999999, - "y": 750.2909999999999 + "x": 521.716, + "y": 750.291 }, { "body": null, "index": 11, "isInternal": false, - "x": 523.5619999999999, + "x": 523.562, "y": 744.608 }, { "body": null, "index": 12, "isInternal": false, - "x": 527.0749999999999, + "x": 527.075, "y": 739.773 }, { "body": null, "index": 13, "isInternal": false, - "x": 531.9099999999999, + "x": 531.91, "y": 736.26 }, { "body": null, "index": 14, "isInternal": false, - "x": 537.5929999999998, + "x": 537.593, "y": 734.414 }, { @@ -49244,36 +49244,36 @@ "body": null, "index": 17, "isInternal": false, - "x": 554.0869999999999, + "x": 554.087, "y": 739.773 }, { "body": null, "index": 18, "isInternal": false, - "x": 557.5999999999999, + "x": 557.6, "y": 744.608 }, { "body": null, "index": 19, "isInternal": false, - "x": 559.4459999999999, - "y": 750.2909999999999 + "x": 559.446, + "y": 750.291 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2346.845503999999, + "area": 2346.8455, "axes": { "#": 5521 }, "bounds": { "#": 5535 }, - "circleRadius": 27.46547067901235, + "circleRadius": 27.46547, "collisionFilter": { "#": 5538 }, @@ -49288,13 +49288,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 114, - "inertia": 3506.367321067902, - "inverseInertia": 0.0002851954482896102, - "inverseMass": 0.42610389064622484, + "inertia": 3506.36732, + "inverseInertia": 0.00029, + "inverseMass": 0.4261, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.346845503999999, + "mass": 2.34685, "motion": 0, "parent": null, "position": { @@ -49367,52 +49367,52 @@ } ], { - "x": -0.9709544410946516, - "y": -0.23926444223614307 + "x": -0.97095, + "y": -0.23926 }, { - "x": -0.8854647120961671, - "y": -0.46470662103358484 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7484832266084929, - "y": -0.6631537223643849 + "x": -0.74848, + "y": -0.66315 }, { - "x": -0.5680470356281455, - "y": -0.822996090704006 + "x": -0.56805, + "y": -0.823 }, { - "x": -0.3546132584639368, - "y": -0.9350130677811883 + "x": -0.35461, + "y": -0.93501 }, { - "x": -0.12052080026097065, - "y": -0.9927108021495763 + "x": -0.12052, + "y": -0.99271 }, { - "x": 0.12052080026097065, - "y": -0.9927108021495763 + "x": 0.12052, + "y": -0.99271 }, { - "x": 0.3546132584639368, - "y": -0.9350130677811883 + "x": 0.35461, + "y": -0.93501 }, { - "x": 0.5680470356281455, - "y": -0.822996090704006 + "x": 0.56805, + "y": -0.823 }, { - "x": 0.7484832266084929, - "y": -0.6631537223643849 + "x": 0.74848, + "y": -0.66315 }, { - "x": 0.8854647120961671, - "y": -0.46470662103358484 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709544410946516, - "y": -0.23926444223614307 + "x": 0.97095, + "y": -0.23926 }, { "x": 1, @@ -49427,11 +49427,11 @@ } }, { - "x": 623.9759999999999, + "x": 623.976, "y": 789.344 }, { - "x": 569.4459999999999, + "x": 569.446, "y": 734.414 }, { @@ -49449,7 +49449,7 @@ "y": 0 }, { - "x": 596.7109999999999, + "x": 596.711, "y": 761.879 }, { @@ -49457,7 +49457,7 @@ "y": 0 }, { - "x": 596.7109999999999, + "x": 596.711, "y": 761.879 }, { @@ -49561,182 +49561,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 623.9759999999999, + "x": 623.976, "y": 765.19 }, { "body": null, "index": 1, "isInternal": false, - "x": 622.3919999999999, + "x": 622.392, "y": 771.618 }, { "body": null, "index": 2, "isInternal": false, - "x": 619.3149999999999, + "x": 619.315, "y": 777.481 }, { "body": null, "index": 3, "isInternal": false, - "x": 614.9239999999999, + "x": 614.924, "y": 782.437 }, { "body": null, "index": 4, "isInternal": false, - "x": 609.4749999999999, + "x": 609.475, "y": 786.198 }, { "body": null, "index": 5, "isInternal": false, - "x": 603.2839999999999, + "x": 603.284, "y": 788.546 }, { "body": null, "index": 6, "isInternal": false, - "x": 596.7109999999999, + "x": 596.711, "y": 789.344 }, { "body": null, "index": 7, "isInternal": false, - "x": 590.1379999999999, + "x": 590.138, "y": 788.546 }, { "body": null, "index": 8, "isInternal": false, - "x": 583.9469999999999, + "x": 583.947, "y": 786.198 }, { "body": null, "index": 9, "isInternal": false, - "x": 578.4979999999999, + "x": 578.498, "y": 782.437 }, { "body": null, "index": 10, "isInternal": false, - "x": 574.1069999999999, + "x": 574.107, "y": 777.481 }, { "body": null, "index": 11, "isInternal": false, - "x": 571.0299999999999, + "x": 571.03, "y": 771.618 }, { "body": null, "index": 12, "isInternal": false, - "x": 569.4459999999999, + "x": 569.446, "y": 765.19 }, { "body": null, "index": 13, "isInternal": false, - "x": 569.4459999999999, + "x": 569.446, "y": 758.568 }, { "body": null, "index": 14, "isInternal": false, - "x": 571.0299999999999, + "x": 571.03, "y": 752.14 }, { "body": null, "index": 15, "isInternal": false, - "x": 574.1069999999999, + "x": 574.107, "y": 746.277 }, { "body": null, "index": 16, "isInternal": false, - "x": 578.4979999999999, + "x": 578.498, "y": 741.321 }, { "body": null, "index": 17, "isInternal": false, - "x": 583.9469999999999, - "y": 737.5600000000001 + "x": 583.947, + "y": 737.56 }, { "body": null, "index": 18, "isInternal": false, - "x": 590.1379999999999, + "x": 590.138, "y": 735.212 }, { "body": null, "index": 19, "isInternal": false, - "x": 596.7109999999999, + "x": 596.711, "y": 734.414 }, { "body": null, "index": 20, "isInternal": false, - "x": 603.2839999999999, + "x": 603.284, "y": 735.212 }, { "body": null, "index": 21, "isInternal": false, - "x": 609.4749999999999, - "y": 737.5600000000001 + "x": 609.475, + "y": 737.56 }, { "body": null, "index": 22, "isInternal": false, - "x": 614.9239999999999, + "x": 614.924, "y": 741.321 }, { "body": null, "index": 23, "isInternal": false, - "x": 619.3149999999999, + "x": 619.315, "y": 746.277 }, { "body": null, "index": 24, "isInternal": false, - "x": 622.3919999999999, + "x": 622.392, "y": 752.14 }, { "body": null, "index": 25, "isInternal": false, - "x": 623.9759999999999, + "x": 623.976, "y": 758.568 }, { @@ -49744,14 +49744,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1927.254822, + "area": 1927.25482, "axes": { "#": 5575 }, "bounds": { "#": 5589 }, - "circleRadius": 24.889210390946502, + "circleRadius": 24.88921, "collisionFilter": { "#": 5592 }, @@ -49766,13 +49766,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 2364.649035490592, - "inverseInertia": 0.0004228957384335603, - "inverseMass": 0.5188727451008551, + "inertia": 2364.64904, + "inverseInertia": 0.00042, + "inverseMass": 0.51887, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.927254822, + "mass": 1.92725, "motion": 0, "parent": null, "position": { @@ -49845,52 +49845,52 @@ } ], { - "x": -0.9709410440920686, - "y": -0.2393188018050481 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854201928043248, - "y": -0.4647914394374667 + "x": -0.88542, + "y": -0.46479 }, { - "x": -0.7485669061572402, - "y": -0.6630592635701409 + "x": -0.74857, + "y": -0.66306 }, { - "x": -0.5680133484705358, - "y": -0.8230193411817792 + "x": -0.56801, + "y": -0.82302 }, { - "x": -0.3546090227600297, - "y": -0.9350146742041948 + "x": -0.35461, + "y": -0.93501 }, { - "x": -0.12050558188088281, - "y": -0.9927126496300679 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050558188088281, - "y": -0.9927126496300679 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546090227600297, - "y": -0.9350146742041948 + "x": 0.35461, + "y": -0.93501 }, { - "x": 0.5680133484705358, - "y": -0.8230193411817792 + "x": 0.56801, + "y": -0.82302 }, { - "x": 0.7485669061572402, - "y": -0.6630592635701409 + "x": 0.74857, + "y": -0.66306 }, { - "x": 0.8854201928043248, - "y": -0.4647914394374667 + "x": 0.88542, + "y": -0.46479 }, { - "x": 0.9709410440920686, - "y": -0.2393188018050481 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -50047,7 +50047,7 @@ "index": 1, "isInternal": false, "x": 147.98, - "y": 837.0310000000001 + "y": 837.031 }, { "body": null, @@ -50075,7 +50075,7 @@ "index": 5, "isInternal": false, "x": 130.664, - "y": 852.3710000000001 + "y": 852.371 }, { "body": null, @@ -50089,13 +50089,13 @@ "index": 7, "isInternal": false, "x": 118.752, - "y": 852.3710000000001 + "y": 852.371 }, { "body": null, "index": 8, "isInternal": false, - "x": 113.14099999999999, + "x": 113.141, "y": 850.243 }, { @@ -50117,7 +50117,7 @@ "index": 11, "isInternal": false, "x": 101.436, - "y": 837.0310000000001 + "y": 837.031 }, { "body": null, @@ -50158,7 +50158,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 113.14099999999999, + "x": 113.141, "y": 806.167 }, { @@ -50222,14 +50222,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 843.7975979999999, + "area": 843.7976, "axes": { "#": 5629 }, "bounds": { "#": 5639 }, - "circleRadius": 16.556777263374485, + "circleRadius": 16.55678, "collisionFilter": { "#": 5642 }, @@ -50244,13 +50244,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 116, - "inertia": 453.30764014503984, - "inverseInertia": 0.0022060073809478283, - "inverseMass": 1.1851183297632475, + "inertia": 453.30764, + "inverseInertia": 0.00221, + "inverseMass": 1.18512, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8437975979999999, + "mass": 0.8438, "motion": 0, "parent": null, "position": { @@ -50311,36 +50311,36 @@ } ], { - "x": -0.9397223093030161, - "y": -0.34193856377748083 + "x": -0.93972, + "y": -0.34194 }, { - "x": -0.7659788409533199, - "y": -0.6428657832019126 + "x": -0.76598, + "y": -0.64287 }, { - "x": -0.5000486573852558, - "y": -0.86599730960737 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.17372581087187394, - "y": -0.9847940610284518 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.17372581087187394, - "y": -0.9847940610284518 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.5000486573852558, - "y": -0.86599730960737 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7659788409533199, - "y": -0.6428657832019126 + "x": 0.76598, + "y": -0.64287 }, { - "x": 0.9397223093030161, - "y": -0.34193856377748083 + "x": 0.93972, + "y": -0.34194 }, { "x": 1, @@ -50356,7 +50356,7 @@ }, { "x": 192.026, - "y": 836.4300000000001 + "y": 836.43 }, { "x": 159.416, @@ -50473,7 +50473,7 @@ "index": 1, "isInternal": false, "x": 190.06, - "y": 828.1510000000001 + "y": 828.151 }, { "body": null, @@ -50486,7 +50486,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 181.38400000000001, + "x": 181.384, "y": 835.431 }, { @@ -50494,7 +50494,7 @@ "index": 4, "isInternal": false, "x": 175.721, - "y": 836.4300000000001 + "y": 836.43 }, { "body": null, @@ -50515,7 +50515,7 @@ "index": 7, "isInternal": false, "x": 161.382, - "y": 828.1510000000001 + "y": 828.151 }, { "body": null, @@ -50563,7 +50563,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 181.38400000000001, + "x": 181.384, "y": 804.315 }, { @@ -50592,14 +50592,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2574.1385259999997, + "area": 2574.13853, "axes": { "#": 5671 }, "bounds": { "#": 5685 }, - "circleRadius": 28.76446759259259, + "circleRadius": 28.76447, "collisionFilter": { "#": 5688 }, @@ -50614,13 +50614,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 117, - "inertia": 4218.443516923933, - "inverseInertia": 0.00023705425851694103, - "inverseMass": 0.3884794815428671, + "inertia": 4218.44352, + "inverseInertia": 0.00024, + "inverseMass": 0.38848, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.5741385259999996, + "mass": 2.57414, "motion": 0, "parent": null, "position": { @@ -50693,52 +50693,52 @@ } ], { - "x": -0.9709262495255735, - "y": -0.2393788169036763 + "x": -0.97093, + "y": -0.23938 }, { - "x": -0.8854869176113325, - "y": -0.46466430758040944 + "x": -0.88549, + "y": -0.46466 }, { - "x": -0.7484982019915674, - "y": -0.6631368196800649 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.568107002044931, - "y": -0.8229546975548051 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.35459772108079973, - "y": -0.9350189603448174 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12041319340062481, - "y": -0.992723860323234 + "x": -0.12041, + "y": -0.99272 }, { - "x": 0.12041319340062481, - "y": -0.992723860323234 + "x": 0.12041, + "y": -0.99272 }, { - "x": 0.35459772108079973, - "y": -0.9350189603448174 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568107002044931, - "y": -0.8229546975548051 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484982019915674, - "y": -0.6631368196800649 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854869176113325, - "y": -0.46466430758040944 + "x": 0.88549, + "y": -0.46466 }, { - "x": 0.9709262495255735, - "y": -0.2393788169036763 + "x": 0.97093, + "y": -0.23938 }, { "x": 1, @@ -50775,7 +50775,7 @@ "y": 0 }, { - "x": 230.58100000000002, + "x": 230.581, "y": 832.08 }, { @@ -50783,7 +50783,7 @@ "y": 0 }, { - "x": 230.58100000000002, + "x": 230.581, "y": 832.08 }, { @@ -50895,20 +50895,20 @@ "index": 1, "isInternal": false, "x": 257.476, - "y": 842.2800000000001 + "y": 842.28 }, { "body": null, "index": 2, "isInternal": false, - "x": 254.25400000000002, - "y": 848.4200000000001 + "x": 254.254, + "y": 848.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 249.65500000000003, + "x": 249.655, "y": 853.611 }, { @@ -50916,20 +50916,20 @@ "index": 4, "isInternal": false, "x": 243.949, - "y": 857.5500000000001 + "y": 857.55 }, { "body": null, "index": 5, "isInternal": false, - "x": 237.46500000000003, + "x": 237.465, "y": 860.009 }, { "body": null, "index": 6, "isInternal": false, - "x": 230.58100000000002, + "x": 230.581, "y": 860.844 }, { @@ -50943,8 +50943,8 @@ "body": null, "index": 8, "isInternal": false, - "x": 217.21300000000002, - "y": 857.5500000000001 + "x": 217.213, + "y": 857.55 }, { "body": null, @@ -50957,15 +50957,15 @@ "body": null, "index": 10, "isInternal": false, - "x": 206.90800000000002, - "y": 848.4200000000001 + "x": 206.908, + "y": 848.42 }, { "body": null, "index": 11, "isInternal": false, "x": 203.686, - "y": 842.2800000000001 + "y": 842.28 }, { "body": null, @@ -50992,7 +50992,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 206.90800000000002, + "x": 206.908, "y": 815.74 }, { @@ -51000,13 +51000,13 @@ "index": 16, "isInternal": false, "x": 211.507, - "y": 810.5490000000001 + "y": 810.549 }, { "body": null, "index": 17, "isInternal": false, - "x": 217.21300000000002, + "x": 217.213, "y": 806.61 }, { @@ -51014,21 +51014,21 @@ "index": 18, "isInternal": false, "x": 223.697, - "y": 804.1510000000001 + "y": 804.151 }, { "body": null, "index": 19, "isInternal": false, - "x": 230.58100000000002, + "x": 230.581, "y": 803.316 }, { "body": null, "index": 20, "isInternal": false, - "x": 237.46500000000003, - "y": 804.1510000000001 + "x": 237.465, + "y": 804.151 }, { "body": null, @@ -51041,14 +51041,14 @@ "body": null, "index": 22, "isInternal": false, - "x": 249.65500000000003, - "y": 810.5490000000001 + "x": 249.655, + "y": 810.549 }, { "body": null, "index": 23, "isInternal": false, - "x": 254.25400000000002, + "x": 254.254, "y": 815.74 }, { @@ -51070,14 +51070,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2036.7522099999999, + "area": 2036.75221, "axes": { "#": 5725 }, "bounds": { "#": 5739 }, - "circleRadius": 25.586355452674898, + "circleRadius": 25.58636, "collisionFilter": { "#": 5742 }, @@ -51092,13 +51092,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 2640.978111739055, - "inverseInertia": 0.00037864759104024194, - "inverseMass": 0.49097774147008294, + "inertia": 2640.97811, + "inverseInertia": 0.00038, + "inverseMass": 0.49098, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.03675221, + "mass": 2.03675, "motion": 0, "parent": null, "position": { @@ -51171,52 +51171,52 @@ } ], { - "x": -0.9709476908423734, - "y": -0.23929183364223444 + "x": -0.97095, + "y": -0.23929 }, { - "x": -0.8854345948146193, - "y": -0.4647640028073076 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485352977514667, - "y": -0.6630949464594971 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680966106501801, - "y": -0.8229618709076244 + "x": -0.5681, + "y": -0.82296 }, { - "x": -0.35453205966073653, - "y": -0.9350438592241093 + "x": -0.35453, + "y": -0.93504 }, { - "x": -0.12046209700872805, - "y": -0.9927179273007313 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.12046209700872805, - "y": -0.9927179273007313 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35453205966073653, - "y": -0.9350438592241093 + "x": 0.35453, + "y": -0.93504 }, { - "x": 0.5680966106501801, - "y": -0.8229618709076244 + "x": 0.5681, + "y": -0.82296 }, { - "x": 0.7485352977514667, - "y": -0.6630949464594971 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854345948146193, - "y": -0.4647640028073076 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709476908423734, - "y": -0.23929183364223444 + "x": 0.97095, + "y": -0.23929 }, { "x": 1, @@ -51235,7 +51235,7 @@ "y": 854.488 }, { - "x": 269.13599999999997, + "x": 269.136, "y": 803.316 }, { @@ -51387,7 +51387,7 @@ "index": 3, "isInternal": false, "x": 311.503, - "y": 848.0540000000001 + "y": 848.054 }, { "body": null, @@ -51429,49 +51429,49 @@ "index": 9, "isInternal": false, "x": 277.569, - "y": 848.0540000000001 + "y": 848.054 }, { "body": null, "index": 10, "isInternal": false, - "x": 273.47900000000004, + "x": 273.479, "y": 843.437 }, { "body": null, "index": 11, "isInternal": false, - "x": 270.61199999999997, + "x": 270.612, "y": 837.975 }, { "body": null, "index": 12, "isInternal": false, - "x": 269.13599999999997, + "x": 269.136, "y": 831.986 }, { "body": null, "index": 13, "isInternal": false, - "x": 269.13599999999997, - "y": 825.8180000000001 + "x": 269.136, + "y": 825.818 }, { "body": null, "index": 14, "isInternal": false, - "x": 270.61199999999997, - "y": 819.8290000000001 + "x": 270.612, + "y": 819.829 }, { "body": null, "index": 15, "isInternal": false, - "x": 273.47900000000004, - "y": 814.3670000000001 + "x": 273.479, + "y": 814.367 }, { "body": null, @@ -51485,14 +51485,14 @@ "index": 17, "isInternal": false, "x": 282.645, - "y": 806.2460000000001 + "y": 806.246 }, { "body": null, "index": 18, "isInternal": false, "x": 288.413, - "y": 804.0590000000001 + "y": 804.059 }, { "body": null, @@ -51506,14 +51506,14 @@ "index": 20, "isInternal": false, "x": 300.659, - "y": 804.0590000000001 + "y": 804.059 }, { "body": null, "index": 21, "isInternal": false, "x": 306.427, - "y": 806.2460000000001 + "y": 806.246 }, { "body": null, @@ -51527,35 +51527,35 @@ "index": 23, "isInternal": false, "x": 315.593, - "y": 814.3670000000001 + "y": 814.367 }, { "body": null, "index": 24, "isInternal": false, "x": 318.46, - "y": 819.8290000000001 + "y": 819.829 }, { "body": null, "index": 25, "isInternal": false, "x": 319.936, - "y": 825.8180000000001 + "y": 825.818 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 739.3989280000001, + "area": 739.39893, "axes": { "#": 5779 }, "bounds": { "#": 5788 }, - "circleRadius": 15.540959362139917, + "circleRadius": 15.54096, "collisionFilter": { "#": 5791 }, @@ -51570,13 +51570,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 119, - "inertia": 348.0937309995225, - "inverseInertia": 0.00287278945566926, - "inverseMass": 1.3524498915692234, + "inertia": 348.09373, + "inverseInertia": 0.00287, + "inverseMass": 1.35245, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7393989280000001, + "mass": 0.7394, "motion": 0, "parent": null, "position": { @@ -51634,32 +51634,32 @@ } ], { - "x": -0.9239042757313624, - "y": -0.3826236914846057 + "x": -0.9239, + "y": -0.38262 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826236914846057, - "y": -0.9239042757313624 + "x": -0.38262, + "y": -0.9239 }, { "x": 0, "y": -1 }, { - "x": 0.3826236914846057, - "y": -0.9239042757313624 + "x": 0.38262, + "y": -0.9239 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9239042757313624, - "y": -0.3826236914846057 + "x": 0.9239, + "y": -0.38262 }, { "x": 1, @@ -51891,14 +51891,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.101068, + "area": 1030.10107, "axes": { "#": 5818 }, "bounds": { "#": 5829 }, - "circleRadius": 18.257908950617285, + "circleRadius": 18.25791, "collisionFilter": { "#": 5832 }, @@ -51913,13 +51913,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 120, - "inertia": 675.5594581193772, - "inverseInertia": 0.0014802546067281784, - "inverseMass": 0.9707785294714402, + "inertia": 675.55946, + "inverseInertia": 0.00148, + "inverseMass": 0.97078, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.030101068, + "mass": 1.0301, "motion": 0, "parent": null, "position": { @@ -51983,40 +51983,40 @@ } ], { - "x": -0.9510713685106887, - "y": -0.3089712802174427 + "x": -0.95107, + "y": -0.30897 }, { - "x": -0.8089631319319196, - "y": -0.5878593804430613 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878593804430613, - "y": -0.8089631319319196 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.3089712802174427, - "y": -0.9510713685106887 + "x": -0.30897, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089712802174427, - "y": -0.9510713685106887 + "x": 0.30897, + "y": -0.95107 }, { - "x": 0.5878593804430613, - "y": -0.8089631319319196 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089631319319196, - "y": -0.5878593804430613 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510713685106887, - "y": -0.3089712802174427 + "x": 0.95107, + "y": -0.30897 }, { "x": 1, @@ -52031,8 +52031,8 @@ } }, { - "x": 406.48600000000005, - "y": 839.3820000000001 + "x": 406.486, + "y": 839.382 }, { "x": 370.42, @@ -52053,7 +52053,7 @@ "y": 0 }, { - "x": 388.45300000000003, + "x": 388.453, "y": 821.349 }, { @@ -52061,7 +52061,7 @@ "y": 0 }, { - "x": 388.45300000000003, + "x": 388.453, "y": 821.349 }, { @@ -52147,7 +52147,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 406.48600000000005, + "x": 406.486, "y": 824.205 }, { @@ -52161,7 +52161,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 401.36300000000006, + "x": 401.363, "y": 834.259 }, { @@ -52169,28 +52169,28 @@ "index": 3, "isInternal": false, "x": 396.742, - "y": 837.6170000000001 + "y": 837.617 }, { "body": null, "index": 4, "isInternal": false, "x": 391.309, - "y": 839.3820000000001 + "y": 839.382 }, { "body": null, "index": 5, "isInternal": false, - "x": 385.59700000000004, - "y": 839.3820000000001 + "x": 385.597, + "y": 839.382 }, { "body": null, "index": 6, "isInternal": false, - "x": 380.16400000000004, - "y": 837.6170000000001 + "x": 380.164, + "y": 837.617 }, { "body": null, @@ -52203,7 +52203,7 @@ "body": null, "index": 8, "isInternal": false, - "x": 372.18500000000006, + "x": 372.185, "y": 829.638 }, { @@ -52224,28 +52224,28 @@ "body": null, "index": 11, "isInternal": false, - "x": 372.18500000000006, - "y": 813.0600000000001 + "x": 372.185, + "y": 813.06 }, { "body": null, "index": 12, "isInternal": false, "x": 375.543, - "y": 808.4390000000001 + "y": 808.439 }, { "body": null, "index": 13, "isInternal": false, - "x": 380.16400000000004, + "x": 380.164, "y": 805.081 }, { "body": null, "index": 14, "isInternal": false, - "x": 385.59700000000004, + "x": 385.597, "y": 803.316 }, { @@ -52266,21 +52266,21 @@ "body": null, "index": 17, "isInternal": false, - "x": 401.36300000000006, - "y": 808.4390000000001 + "x": 401.363, + "y": 808.439 }, { "body": null, "index": 18, "isInternal": false, "x": 404.721, - "y": 813.0600000000001 + "y": 813.06 }, { "body": null, "index": 19, "isInternal": false, - "x": 406.48600000000005, + "x": 406.486, "y": 818.493 }, { @@ -52288,14 +52288,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2126.6024159999997, + "area": 2126.60242, "axes": { "#": 5863 }, "bounds": { "#": 5877 }, - "circleRadius": 26.144611625514404, + "circleRadius": 26.14461, "collisionFilter": { "#": 5880 }, @@ -52310,13 +52310,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 121, - "inertia": 2879.1282788678996, - "inverseInertia": 0.00034732735159449357, - "inverseMass": 0.47023364239420673, + "inertia": 2879.12828, + "inverseInertia": 0.00035, + "inverseMass": 0.47023, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.126602416, + "mass": 2.1266, "motion": 0, "parent": null, "position": { @@ -52389,52 +52389,52 @@ } ], { - "x": -0.9709582024143185, - "y": -0.23924917798052142 + "x": -0.97096, + "y": -0.23925 }, { - "x": -0.8854648234459604, - "y": -0.46470640886457987 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7484936814443321, - "y": -0.6631419220935371 + "x": -0.74849, + "y": -0.66314 }, { - "x": -0.5680295414542833, - "y": -0.8230081652299912 + "x": -0.56803, + "y": -0.82301 }, { - "x": -0.3546159695321858, - "y": -0.9350120395763618 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12057774558444306, - "y": -0.9927038870024502 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057774558444306, - "y": -0.9927038870024502 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3546159695321858, - "y": -0.9350120395763618 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.5680295414542833, - "y": -0.8230081652299912 + "x": 0.56803, + "y": -0.82301 }, { - "x": 0.7484936814443321, - "y": -0.6631419220935371 + "x": 0.74849, + "y": -0.66314 }, { - "x": 0.8854648234459604, - "y": -0.46470640886457987 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709582024143185, - "y": -0.23924917798052142 + "x": 0.97096, + "y": -0.23925 }, { "x": 1, @@ -52449,11 +52449,11 @@ } }, { - "x": 468.39400000000006, + "x": 468.394, "y": 855.606 }, { - "x": 416.48600000000005, + "x": 416.486, "y": 803.316 }, { @@ -52471,7 +52471,7 @@ "y": 0 }, { - "x": 442.44000000000005, + "x": 442.44, "y": 829.461 }, { @@ -52479,7 +52479,7 @@ "y": 0 }, { - "x": 442.44000000000005, + "x": 442.44, "y": 829.461 }, { @@ -52583,77 +52583,77 @@ "body": null, "index": 0, "isInternal": false, - "x": 468.39400000000006, + "x": 468.394, "y": 832.612 }, { "body": null, "index": 1, "isInternal": false, - "x": 466.8860000000001, + "x": 466.886, "y": 838.732 }, { "body": null, "index": 2, "isInternal": false, - "x": 463.95700000000005, + "x": 463.957, "y": 844.313 }, { "body": null, "index": 3, "isInternal": false, - "x": 459.77700000000004, - "y": 849.0310000000001 + "x": 459.777, + "y": 849.031 }, { "body": null, "index": 4, "isInternal": false, - "x": 454.59000000000003, + "x": 454.59, "y": 852.611 }, { "body": null, "index": 5, "isInternal": false, - "x": 448.69700000000006, + "x": 448.697, "y": 854.846 }, { "body": null, "index": 6, "isInternal": false, - "x": 442.44000000000005, + "x": 442.44, "y": 855.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 436.18300000000005, + "x": 436.183, "y": 854.846 }, { "body": null, "index": 8, "isInternal": false, - "x": 430.2900000000001, + "x": 430.29, "y": 852.611 }, { "body": null, "index": 9, "isInternal": false, - "x": 425.10300000000007, - "y": 849.0310000000001 + "x": 425.103, + "y": 849.031 }, { "body": null, "index": 10, "isInternal": false, - "x": 420.92300000000006, + "x": 420.923, "y": 844.313 }, { @@ -52667,15 +52667,15 @@ "body": null, "index": 12, "isInternal": false, - "x": 416.48600000000005, + "x": 416.486, "y": 832.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 416.48600000000005, - "y": 826.3100000000001 + "x": 416.486, + "y": 826.31 }, { "body": null, @@ -52688,92 +52688,92 @@ "body": null, "index": 15, "isInternal": false, - "x": 420.92300000000006, + "x": 420.923, "y": 814.609 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.10300000000007, + "x": 425.103, "y": 809.891 }, { "body": null, "index": 17, "isInternal": false, - "x": 430.2900000000001, + "x": 430.29, "y": 806.311 }, { "body": null, "index": 18, "isInternal": false, - "x": 436.18300000000005, + "x": 436.183, "y": 804.076 }, { "body": null, "index": 19, "isInternal": false, - "x": 442.44000000000005, + "x": 442.44, "y": 803.316 }, { "body": null, "index": 20, "isInternal": false, - "x": 448.69700000000006, + "x": 448.697, "y": 804.076 }, { "body": null, "index": 21, "isInternal": false, - "x": 454.59000000000003, + "x": 454.59, "y": 806.311 }, { "body": null, "index": 22, "isInternal": false, - "x": 459.77700000000004, + "x": 459.777, "y": 809.891 }, { "body": null, "index": 23, "isInternal": false, - "x": 463.95700000000005, + "x": 463.957, "y": 814.609 }, { "body": null, "index": 24, "isInternal": false, - "x": 466.8860000000001, + "x": 466.886, "y": 820.19 }, { "body": null, "index": 25, "isInternal": false, - "x": 468.39400000000006, - "y": 826.3100000000001 + "x": 468.394, + "y": 826.31 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1373.590942, + "area": 1373.59094, "axes": { "#": 5917 }, "bounds": { "#": 5929 }, - "circleRadius": 21.052919238683128, + "circleRadius": 21.05292, "collisionFilter": { "#": 5932 }, @@ -52788,13 +52788,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 122, - "inertia": 1201.1885090560147, - "inverseInertia": 0.0008325087964634927, - "inverseMass": 0.7280187786794534, + "inertia": 1201.18851, + "inverseInertia": 0.00083, + "inverseMass": 0.72802, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.373590942, + "mass": 1.37359, "motion": 0, "parent": null, "position": { @@ -52861,44 +52861,44 @@ } ], { - "x": -0.959463754498267, - "y": -0.2818320489300127 + "x": -0.95946, + "y": -0.28183 }, { - "x": -0.8413031702195424, - "y": -0.5405635723747464 + "x": -0.8413, + "y": -0.54056 }, { - "x": -0.6548225280442858, - "y": -0.7557826782651814 + "x": -0.65482, + "y": -0.75578 }, { - "x": -0.41536139719957405, - "y": -0.909656478961381 + "x": -0.41536, + "y": -0.90966 }, { - "x": -0.14235586867265246, - "y": -0.9898155417321223 + "x": -0.14236, + "y": -0.98982 }, { - "x": 0.14235586867265246, - "y": -0.9898155417321223 + "x": 0.14236, + "y": -0.98982 }, { - "x": 0.41536139719957405, - "y": -0.909656478961381 + "x": 0.41536, + "y": -0.90966 }, { - "x": 0.6548225280442858, - "y": -0.7557826782651814 + "x": 0.65482, + "y": -0.75578 }, { - "x": 0.8413031702195424, - "y": -0.5405635723747464 + "x": 0.8413, + "y": -0.54056 }, { - "x": 0.959463754498267, - "y": -0.2818320489300127 + "x": 0.95946, + "y": -0.28183 }, { "x": 1, @@ -52913,11 +52913,11 @@ } }, { - "x": 520.0720000000001, + "x": 520.072, "y": 845.422 }, { - "x": 478.39400000000006, + "x": 478.394, "y": 803.316 }, { @@ -52935,7 +52935,7 @@ "y": 0 }, { - "x": 499.23300000000006, + "x": 499.233, "y": 824.369 }, { @@ -52943,7 +52943,7 @@ "y": 0 }, { - "x": 499.23300000000006, + "x": 499.233, "y": 824.369 }, { @@ -53035,7 +53035,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 520.0720000000001, + "x": 520.072, "y": 827.365 }, { @@ -53050,118 +53050,118 @@ "index": 2, "isInternal": false, "x": 515.144, - "y": 838.1560000000001 + "y": 838.156 }, { "body": null, "index": 3, "isInternal": false, - "x": 510.61500000000007, + "x": 510.615, "y": 842.08 }, { "body": null, "index": 4, "isInternal": false, - "x": 505.16400000000004, - "y": 844.5690000000001 + "x": 505.164, + "y": 844.569 }, { "body": null, "index": 5, "isInternal": false, - "x": 499.23300000000006, + "x": 499.233, "y": 845.422 }, { "body": null, "index": 6, "isInternal": false, - "x": 493.3020000000001, - "y": 844.5690000000001 + "x": 493.302, + "y": 844.569 }, { "body": null, "index": 7, "isInternal": false, - "x": 487.85100000000006, + "x": 487.851, "y": 842.08 }, { "body": null, "index": 8, "isInternal": false, - "x": 483.32200000000006, - "y": 838.1560000000001 + "x": 483.322, + "y": 838.156 }, { "body": null, "index": 9, "isInternal": false, - "x": 480.0830000000001, + "x": 480.083, "y": 833.115 }, { "body": null, "index": 10, "isInternal": false, - "x": 478.39400000000006, + "x": 478.394, "y": 827.365 }, { "body": null, "index": 11, "isInternal": false, - "x": 478.39400000000006, + "x": 478.394, "y": 821.373 }, { "body": null, "index": 12, "isInternal": false, - "x": 480.0830000000001, + "x": 480.083, "y": 815.623 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.32200000000006, + "x": 483.322, "y": 810.582 }, { "body": null, "index": 14, "isInternal": false, - "x": 487.85100000000006, + "x": 487.851, "y": 806.658 }, { "body": null, "index": 15, "isInternal": false, - "x": 493.3020000000001, + "x": 493.302, "y": 804.169 }, { "body": null, "index": 16, "isInternal": false, - "x": 499.23300000000006, + "x": 499.233, "y": 803.316 }, { "body": null, "index": 17, "isInternal": false, - "x": 505.16400000000004, + "x": 505.164, "y": 804.169 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.61500000000007, + "x": 510.615, "y": 806.658 }, { @@ -53182,7 +53182,7 @@ "body": null, "index": 21, "isInternal": false, - "x": 520.0720000000001, + "x": 520.072, "y": 821.373 }, { @@ -53190,14 +53190,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 778.398134, + "area": 778.39813, "axes": { "#": 5965 }, "bounds": { "#": 5974 }, - "circleRadius": 15.94579475308642, + "circleRadius": 15.94579, "collisionFilter": { "#": 5977 }, @@ -53212,13 +53212,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 123, - "inertia": 385.78216043090396, - "inverseInertia": 0.002592136450485523, - "inverseMass": 1.2846896161752617, + "inertia": 385.78216, + "inverseInertia": 0.00259, + "inverseMass": 1.28469, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.778398134, + "mass": 0.7784, "motion": 0, "parent": null, "position": { @@ -53276,32 +53276,32 @@ } ], { - "x": -0.9238738245571152, - "y": -0.38269721229479675 + "x": -0.92387, + "y": -0.3827 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38269721229479675, - "y": -0.9238738245571152 + "x": -0.3827, + "y": -0.92387 }, { "x": 0, "y": -1 }, { - "x": 0.38269721229479675, - "y": -0.9238738245571152 + "x": 0.3827, + "y": -0.92387 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238738245571152, - "y": -0.38269721229479675 + "x": 0.92387, + "y": -0.3827 }, { "x": 1, @@ -53316,11 +53316,11 @@ } }, { - "x": 561.3500000000001, + "x": 561.35, "y": 834.594 }, { - "x": 530.0720000000001, + "x": 530.072, "y": 803.316 }, { @@ -53338,7 +53338,7 @@ "y": 0 }, { - "x": 545.7110000000001, + "x": 545.711, "y": 818.955 }, { @@ -53346,7 +53346,7 @@ "y": 0 }, { - "x": 545.7110000000001, + "x": 545.711, "y": 818.955 }, { @@ -53420,112 +53420,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 561.3500000000001, + "x": 561.35, "y": 822.066 }, { "body": null, "index": 1, "isInternal": false, - "x": 558.9690000000002, - "y": 827.8140000000001 + "x": 558.969, + "y": 827.814 }, { "body": null, "index": 2, "isInternal": false, - "x": 554.5700000000002, - "y": 832.2130000000001 + "x": 554.57, + "y": 832.213 }, { "body": null, "index": 3, "isInternal": false, - "x": 548.8220000000001, + "x": 548.822, "y": 834.594 }, { "body": null, "index": 4, "isInternal": false, - "x": 542.6000000000001, + "x": 542.6, "y": 834.594 }, { "body": null, "index": 5, "isInternal": false, - "x": 536.8520000000001, - "y": 832.2130000000001 + "x": 536.852, + "y": 832.213 }, { "body": null, "index": 6, "isInternal": false, - "x": 532.4530000000001, - "y": 827.8140000000001 + "x": 532.453, + "y": 827.814 }, { "body": null, "index": 7, "isInternal": false, - "x": 530.0720000000001, + "x": 530.072, "y": 822.066 }, { "body": null, "index": 8, "isInternal": false, - "x": 530.0720000000001, + "x": 530.072, "y": 815.844 }, { "body": null, "index": 9, "isInternal": false, - "x": 532.4530000000001, + "x": 532.453, "y": 810.096 }, { "body": null, "index": 10, "isInternal": false, - "x": 536.8520000000001, + "x": 536.852, "y": 805.697 }, { "body": null, "index": 11, "isInternal": false, - "x": 542.6000000000001, + "x": 542.6, "y": 803.316 }, { "body": null, "index": 12, "isInternal": false, - "x": 548.8220000000001, + "x": 548.822, "y": 803.316 }, { "body": null, "index": 13, "isInternal": false, - "x": 554.5700000000002, + "x": 554.57, "y": 805.697 }, { "body": null, "index": 14, "isInternal": false, - "x": 558.9690000000002, + "x": 558.969, "y": 810.096 }, { "body": null, "index": 15, "isInternal": false, - "x": 561.3500000000001, + "x": 561.35, "y": 815.844 }, { @@ -53533,14 +53533,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 844.5415139999999, + "area": 844.54151, "axes": { "#": 6004 }, "bounds": { "#": 6014 }, - "circleRadius": 16.56397890946502, + "circleRadius": 16.56398, "collisionFilter": { "#": 6017 }, @@ -53555,13 +53555,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 124, - "inertia": 454.10729029624963, - "inverseInertia": 0.002202122761225925, - "inverseMass": 1.1840744160268717, + "inertia": 454.10729, + "inverseInertia": 0.0022, + "inverseMass": 1.18407, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8445415139999999, + "mass": 0.84454, "motion": 0, "parent": null, "position": { @@ -53622,36 +53622,36 @@ } ], { - "x": -0.9397274265311816, - "y": -0.3419245001825443 + "x": -0.93973, + "y": -0.34192 }, { - "x": -0.7660369174432036, - "y": -0.6427965783310567 + "x": -0.76604, + "y": -0.6428 }, { - "x": -0.499953188487916, - "y": -0.866052428736717 + "x": -0.49995, + "y": -0.86605 }, { - "x": -0.17366632796128756, - "y": -0.9848045524531466 + "x": -0.17367, + "y": -0.9848 }, { - "x": 0.17366632796128756, - "y": -0.9848045524531466 + "x": 0.17367, + "y": -0.9848 }, { - "x": 0.499953188487916, - "y": -0.866052428736717 + "x": 0.49995, + "y": -0.86605 }, { - "x": 0.7660369174432036, - "y": -0.6427965783310567 + "x": 0.76604, + "y": -0.6428 }, { - "x": 0.9397274265311816, - "y": -0.3419245001825443 + "x": 0.93973, + "y": -0.34192 }, { "x": 1, @@ -53666,11 +53666,11 @@ } }, { - "x": 603.9740000000002, + "x": 603.974, "y": 836.444 }, { - "x": 571.3500000000001, + "x": 571.35, "y": 803.316 }, { @@ -53688,7 +53688,7 @@ "y": 0 }, { - "x": 587.6620000000001, + "x": 587.662, "y": 819.88 }, { @@ -53696,7 +53696,7 @@ "y": 0 }, { - "x": 587.6620000000001, + "x": 587.662, "y": 819.88 }, { @@ -53776,126 +53776,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 603.9740000000002, + "x": 603.974, "y": 822.756 }, { "body": null, "index": 1, "isInternal": false, - "x": 602.0070000000002, + "x": 602.007, "y": 828.162 }, { "body": null, "index": 2, "isInternal": false, - "x": 598.3090000000002, + "x": 598.309, "y": 832.569 }, { "body": null, "index": 3, "isInternal": false, - "x": 593.3270000000001, + "x": 593.327, "y": 835.445 }, { "body": null, "index": 4, "isInternal": false, - "x": 587.6620000000001, + "x": 587.662, "y": 836.444 }, { "body": null, "index": 5, "isInternal": false, - "x": 581.9970000000002, + "x": 581.997, "y": 835.445 }, { "body": null, "index": 6, "isInternal": false, - "x": 577.0150000000001, + "x": 577.015, "y": 832.569 }, { "body": null, "index": 7, "isInternal": false, - "x": 573.3170000000001, + "x": 573.317, "y": 828.162 }, { "body": null, "index": 8, "isInternal": false, - "x": 571.3500000000001, + "x": 571.35, "y": 822.756 }, { "body": null, "index": 9, "isInternal": false, - "x": 571.3500000000001, + "x": 571.35, "y": 817.004 }, { "body": null, "index": 10, "isInternal": false, - "x": 573.3170000000001, + "x": 573.317, "y": 811.598 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.0150000000001, + "x": 577.015, "y": 807.191 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.9970000000002, - "y": 804.3149999999999 + "x": 581.997, + "y": 804.315 }, { "body": null, "index": 13, "isInternal": false, - "x": 587.6620000000001, + "x": 587.662, "y": 803.316 }, { "body": null, "index": 14, "isInternal": false, - "x": 593.3270000000001, - "y": 804.3149999999999 + "x": 593.327, + "y": 804.315 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.3090000000002, + "x": 598.309, "y": 807.191 }, { "body": null, "index": 16, "isInternal": false, - "x": 602.0070000000002, + "x": 602.007, "y": 811.598 }, { "body": null, "index": 17, "isInternal": false, - "x": 603.9740000000002, + "x": 603.974, "y": 817.004 }, { @@ -53903,14 +53903,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1656.262186, + "area": 1656.26219, "axes": { "#": 6046 }, "bounds": { "#": 6059 }, - "circleRadius": 23.092656893004115, + "circleRadius": 23.09266, "collisionFilter": { "#": 6062 }, @@ -53925,13 +53925,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 125, - "inertia": 1746.424130354942, - "inverseInertia": 0.0005725985931016429, - "inverseMass": 0.6037691426229301, + "inertia": 1746.42413, + "inverseInertia": 0.00057, + "inverseMass": 0.60377, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.656262186, + "mass": 1.65626, "motion": 0, "parent": null, "position": { @@ -54001,48 +54001,48 @@ } ], { - "x": -0.9659369456792598, - "y": -0.2587775434071173 + "x": -0.96594, + "y": -0.25878 }, { - "x": -0.8660502374236335, - "y": -0.4999569844081269 + "x": -0.86605, + "y": -0.49996 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999569844081269, - "y": -0.8660502374236335 + "x": -0.49996, + "y": -0.86605 }, { - "x": -0.2587775434071173, - "y": -0.9659369456792598 + "x": -0.25878, + "y": -0.96594 }, { "x": 0, "y": -1 }, { - "x": 0.2587775434071173, - "y": -0.9659369456792598 + "x": 0.25878, + "y": -0.96594 }, { - "x": 0.4999569844081269, - "y": -0.8660502374236335 + "x": 0.49996, + "y": -0.86605 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660502374236335, - "y": -0.4999569844081269 + "x": 0.86605, + "y": -0.49996 }, { - "x": 0.9659369456792598, - "y": -0.2587775434071173 + "x": 0.96594, + "y": -0.25878 }, { "x": 1, @@ -54192,7 +54192,7 @@ "body": null, "index": 1, "isInternal": false, - "x": 144.23000000000002, + "x": 144.23, "y": 902.576 }, { @@ -54206,21 +54206,21 @@ "body": null, "index": 3, "isInternal": false, - "x": 136.95299999999997, - "y": 912.0600000000001 + "x": 136.953, + "y": 912.06 }, { "body": null, "index": 4, "isInternal": false, "x": 131.732, - "y": 915.0740000000001 + "y": 915.074 }, { "body": null, "index": 5, "isInternal": false, - "x": 125.90899999999999, + "x": 125.909, "y": 916.634 }, { @@ -54234,15 +54234,15 @@ "body": null, "index": 7, "isInternal": false, - "x": 114.05799999999999, - "y": 915.0740000000001 + "x": 114.058, + "y": 915.074 }, { "body": null, "index": 8, "isInternal": false, "x": 108.837, - "y": 912.0600000000001 + "y": 912.06 }, { "body": null, @@ -54255,7 +54255,7 @@ "body": null, "index": 10, "isInternal": false, - "x": 101.55999999999999, + "x": 101.56, "y": 902.576 }, { @@ -54276,7 +54276,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 101.55999999999999, + "x": 101.56, "y": 884.902 }, { @@ -54297,7 +54297,7 @@ "body": null, "index": 16, "isInternal": false, - "x": 114.05799999999999, + "x": 114.058, "y": 872.404 }, { @@ -54311,7 +54311,7 @@ "body": null, "index": 18, "isInternal": false, - "x": 125.90899999999999, + "x": 125.909, "y": 870.844 }, { @@ -54325,7 +54325,7 @@ "body": null, "index": 20, "isInternal": false, - "x": 136.95299999999997, + "x": 136.953, "y": 875.418 }, { @@ -54339,7 +54339,7 @@ "body": null, "index": 22, "isInternal": false, - "x": 144.23000000000002, + "x": 144.23, "y": 884.902 }, { @@ -54354,14 +54354,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2239.2235339999997, + "area": 2239.22353, "axes": { "#": 6097 }, "bounds": { "#": 6111 }, - "circleRadius": 26.828125, + "circleRadius": 26.82813, "collisionFilter": { "#": 6114 }, @@ -54376,13 +54376,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 126, - "inertia": 3192.150135161649, - "inverseInertia": 0.00031326847349219696, - "inverseMass": 0.4465833735739936, + "inertia": 3192.15014, + "inverseInertia": 0.00031, + "inverseMass": 0.44658, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.2392235339999997, + "mass": 2.23922, "motion": 0, "parent": null, "position": { @@ -54455,52 +54455,52 @@ } ], { - "x": -0.9709286835003857, - "y": -0.23936894442723292 + "x": -0.97093, + "y": -0.23937 }, { - "x": -0.8854408499737555, - "y": -0.4647520857379272 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.7484916969532377, - "y": -0.6631441619980248 + "x": -0.74849, + "y": -0.66314 }, { - "x": -0.5681159217920753, - "y": -0.822948539950306 + "x": -0.56812, + "y": -0.82295 }, { - "x": -0.3546449133017613, - "y": -0.935001061747625 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12045604938082696, - "y": -0.9927186611359553 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.12045604938082696, - "y": -0.9927186611359553 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.3546449133017613, - "y": -0.935001061747625 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5681159217920753, - "y": -0.822948539950306 + "x": 0.56812, + "y": -0.82295 }, { - "x": 0.7484916969532377, - "y": -0.6631441619980248 + "x": 0.74849, + "y": -0.66314 }, { - "x": 0.8854408499737555, - "y": -0.4647520857379272 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.9709286835003857, - "y": -0.23936894442723292 + "x": 0.97093, + "y": -0.23937 }, { "x": 1, @@ -54650,14 +54650,14 @@ "index": 0, "isInternal": false, "x": 209.056, - "y": 900.9060000000001 + "y": 900.906 }, { "body": null, "index": 1, "isInternal": false, "x": 207.508, - "y": 907.1850000000001 + "y": 907.185 }, { "body": null, @@ -54698,7 +54698,7 @@ "body": null, "index": 7, "isInternal": false, - "x": 176.00300000000001, + "x": 176.003, "y": 923.721 }, { @@ -54727,14 +54727,14 @@ "index": 11, "isInternal": false, "x": 157.338, - "y": 907.1850000000001 + "y": 907.185 }, { "body": null, "index": 12, "isInternal": false, "x": 155.79, - "y": 900.9060000000001 + "y": 900.906 }, { "body": null, @@ -54775,7 +54775,7 @@ "body": null, "index": 18, "isInternal": false, - "x": 176.00300000000001, + "x": 176.003, "y": 871.623 }, { @@ -54832,14 +54832,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 873.4059279999999, + "area": 873.40593, "axes": { "#": 6151 }, "bounds": { "#": 6161 }, - "circleRadius": 16.84445730452675, + "circleRadius": 16.84446, "collisionFilter": { "#": 6164 }, @@ -54854,13 +54854,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 127, - "inertia": 485.6783448642292, - "inverseInertia": 0.002058975885119088, - "inverseMass": 1.144942996081886, + "inertia": 485.67834, + "inverseInertia": 0.00206, + "inverseMass": 1.14494, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8734059279999999, + "mass": 0.87341, "motion": 0, "parent": null, "position": { @@ -54921,36 +54921,36 @@ } ], { - "x": -0.9396785760291978, - "y": -0.3420587285127204 + "x": -0.93968, + "y": -0.34206 }, { - "x": -0.7660313603186713, - "y": -0.6428032008385816 + "x": -0.76603, + "y": -0.6428 }, { - "x": -0.5000184026522734, - "y": -0.8660147787474928 + "x": -0.50002, + "y": -0.86601 }, { - "x": -0.17351226927177887, - "y": -0.9848317076598203 + "x": -0.17351, + "y": -0.98483 }, { - "x": 0.17351226927177887, - "y": -0.9848317076598203 + "x": 0.17351, + "y": -0.98483 }, { - "x": 0.5000184026522734, - "y": -0.8660147787474928 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.7660313603186713, - "y": -0.6428032008385816 + "x": 0.76603, + "y": -0.6428 }, { - "x": 0.9396785760291978, - "y": -0.3420587285127204 + "x": 0.93968, + "y": -0.34206 }, { "x": 1, @@ -54966,7 +54966,7 @@ }, { "x": 252.234, - "y": 904.5320000000002 + "y": 904.532 }, { "x": 219.056, @@ -54988,7 +54988,7 @@ }, { "x": 235.645, - "y": 887.6880000000001 + "y": 887.688 }, { "x": 0, @@ -54996,7 +54996,7 @@ }, { "x": 235.645, - "y": 887.6880000000001 + "y": 887.688 }, { "fillStyle": "#C44D58", @@ -55083,14 +55083,14 @@ "index": 1, "isInternal": false, "x": 250.233, - "y": 896.1100000000001 + "y": 896.11 }, { "body": null, "index": 2, "isInternal": false, "x": 246.472, - "y": 900.5920000000001 + "y": 900.592 }, { "body": null, @@ -55104,13 +55104,13 @@ "index": 4, "isInternal": false, "x": 235.645, - "y": 904.5320000000002 + "y": 904.532 }, { "body": null, "index": 5, "isInternal": false, - "x": 229.88400000000001, + "x": 229.884, "y": 903.517 }, { @@ -55118,14 +55118,14 @@ "index": 6, "isInternal": false, "x": 224.818, - "y": 900.5920000000001 + "y": 900.592 }, { "body": null, "index": 7, "isInternal": false, - "x": 221.05700000000002, - "y": 896.1100000000001 + "x": 221.057, + "y": 896.11 }, { "body": null, @@ -55139,28 +55139,28 @@ "index": 9, "isInternal": false, "x": 219.056, - "y": 884.7630000000001 + "y": 884.763 }, { "body": null, "index": 10, "isInternal": false, - "x": 221.05700000000002, - "y": 879.2660000000001 + "x": 221.057, + "y": 879.266 }, { "body": null, "index": 11, "isInternal": false, "x": 224.818, - "y": 874.7840000000001 + "y": 874.784 }, { "body": null, "index": 12, "isInternal": false, - "x": 229.88400000000001, - "y": 871.8590000000002 + "x": 229.884, + "y": 871.859 }, { "body": null, @@ -55174,42 +55174,42 @@ "index": 14, "isInternal": false, "x": 241.406, - "y": 871.8590000000002 + "y": 871.859 }, { "body": null, "index": 15, "isInternal": false, "x": 246.472, - "y": 874.7840000000001 + "y": 874.784 }, { "body": null, "index": 16, "isInternal": false, "x": 250.233, - "y": 879.2660000000001 + "y": 879.266 }, { "body": null, "index": 17, "isInternal": false, "x": 252.234, - "y": 884.7630000000001 + "y": 884.763 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2211.257872, + "area": 2211.25787, "axes": { "#": 6193 }, "bounds": { "#": 6207 }, - "circleRadius": 26.66017232510288, + "circleRadius": 26.66017, "collisionFilter": { "#": 6210 }, @@ -55224,13 +55224,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 128, - "inertia": 3112.9145076000996, - "inverseInertia": 0.0003212423590684955, - "inverseMass": 0.45223129001030415, + "inertia": 3112.91451, + "inverseInertia": 0.00032, + "inverseMass": 0.45223, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.211257872, + "mass": 2.21126, "motion": 0, "parent": null, "position": { @@ -55303,52 +55303,52 @@ } ], { - "x": -0.9709426079703678, - "y": -0.23931245690038877 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854475241297156, - "y": -0.4647393699833883 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.748455766509334, - "y": -0.663184714524487 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5680928736896659, - "y": -0.8229644505463267 + "x": -0.56809, + "y": -0.82296 }, { - "x": -0.3545651221465421, - "y": -0.935031322554067 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12058693531691808, - "y": -0.9927027707379855 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12058693531691808, - "y": -0.9927027707379855 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.3545651221465421, - "y": -0.935031322554067 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680928736896659, - "y": -0.8229644505463267 + "x": 0.56809, + "y": -0.82296 }, { - "x": 0.748455766509334, - "y": -0.663184714524487 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8854475241297156, - "y": -0.4647393699833883 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709426079703678, - "y": -0.23931245690038877 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -55363,11 +55363,11 @@ } }, { - "x": 315.16600000000005, + "x": 315.166, "y": 924.164 }, { - "x": 262.23400000000004, + "x": 262.234, "y": 870.844 }, { @@ -55385,7 +55385,7 @@ "y": 0 }, { - "x": 288.70000000000005, + "x": 288.7, "y": 897.504 }, { @@ -55393,7 +55393,7 @@ "y": 0 }, { - "x": 288.70000000000005, + "x": 288.7, "y": 897.504 }, { @@ -55497,14 +55497,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.16600000000005, - "y": 900.7180000000001 + "x": 315.166, + "y": 900.718 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.62800000000004, + "x": 313.628, "y": 906.958 }, { @@ -55519,49 +55519,49 @@ "index": 3, "isInternal": false, "x": 306.379, - "y": 917.4590000000001 + "y": 917.459 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.09000000000003, + "x": 301.09, "y": 921.11 }, { "body": null, "index": 5, "isInternal": false, - "x": 295.08000000000004, + "x": 295.08, "y": 923.389 }, { "body": null, "index": 6, "isInternal": false, - "x": 288.70000000000005, + "x": 288.7, "y": 924.164 }, { "body": null, "index": 7, "isInternal": false, - "x": 282.32000000000005, + "x": 282.32, "y": 923.389 }, { "body": null, "index": 8, "isInternal": false, - "x": 276.31000000000006, + "x": 276.31, "y": 921.11 }, { "body": null, "index": 9, "isInternal": false, - "x": 271.0210000000001, - "y": 917.4590000000001 + "x": 271.021, + "y": 917.459 }, { "body": null, @@ -55574,29 +55574,29 @@ "body": null, "index": 11, "isInternal": false, - "x": 263.77200000000005, + "x": 263.772, "y": 906.958 }, { "body": null, "index": 12, "isInternal": false, - "x": 262.23400000000004, - "y": 900.7180000000001 + "x": 262.234, + "y": 900.718 }, { "body": null, "index": 13, "isInternal": false, - "x": 262.23400000000004, + "x": 262.234, "y": 894.29 }, { "body": null, "index": 14, "isInternal": false, - "x": 263.77200000000005, - "y": 888.0500000000001 + "x": 263.772, + "y": 888.05 }, { "body": null, @@ -55609,42 +55609,42 @@ "body": null, "index": 16, "isInternal": false, - "x": 271.0210000000001, + "x": 271.021, "y": 877.549 }, { "body": null, "index": 17, "isInternal": false, - "x": 276.31000000000006, + "x": 276.31, "y": 873.898 }, { "body": null, "index": 18, "isInternal": false, - "x": 282.32000000000005, + "x": 282.32, "y": 871.619 }, { "body": null, "index": 19, "isInternal": false, - "x": 288.70000000000005, + "x": 288.7, "y": 870.844 }, { "body": null, "index": 20, "isInternal": false, - "x": 295.08000000000004, + "x": 295.08, "y": 871.619 }, { "body": null, "index": 21, "isInternal": false, - "x": 301.09000000000003, + "x": 301.09, "y": 873.898 }, { @@ -55665,14 +55665,14 @@ "body": null, "index": 24, "isInternal": false, - "x": 313.62800000000004, - "y": 888.0500000000001 + "x": 313.628, + "y": 888.05 }, { "body": null, "index": 25, "isInternal": false, - "x": 315.16600000000005, + "x": 315.166, "y": 894.29 }, { @@ -55680,14 +55680,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2087.7602780000007, + "area": 2087.76028, "axes": { "#": 6247 }, "bounds": { "#": 6261 }, - "circleRadius": 25.904899691358025, + "circleRadius": 25.9049, "collisionFilter": { "#": 6264 }, @@ -55702,13 +55702,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 129, - "inertia": 2774.914907983639, - "inverseInertia": 0.00036037141071350504, - "inverseMass": 0.47898219471728054, + "inertia": 2774.91491, + "inverseInertia": 0.00036, + "inverseMass": 0.47898, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.0877602780000006, + "mass": 2.08776, "motion": 0, "parent": null, "position": { @@ -55781,52 +55781,52 @@ } ], { - "x": -0.9709656897513776, - "y": -0.23921878965840337 + "x": -0.97097, + "y": -0.23922 }, { - "x": -0.885414376231309, - "y": -0.46480251974674364 + "x": -0.88541, + "y": -0.4648 }, { - "x": -0.748495062942329, - "y": -0.6631403627822384 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.5681519894635099, - "y": -0.8229236397556311 + "x": -0.56815, + "y": -0.82292 }, { - "x": -0.35449012118282963, - "y": -0.9350597595789174 + "x": -0.35449, + "y": -0.93506 }, { - "x": -0.12058483282429677, - "y": -0.9927030261325572 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12058483282429677, - "y": -0.9927030261325572 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.35449012118282963, - "y": -0.9350597595789174 + "x": 0.35449, + "y": -0.93506 }, { - "x": 0.5681519894635099, - "y": -0.8229236397556311 + "x": 0.56815, + "y": -0.82292 }, { - "x": 0.748495062942329, - "y": -0.6631403627822384 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.885414376231309, - "y": -0.46480251974674364 + "x": 0.88541, + "y": -0.4648 }, { - "x": 0.9709656897513776, - "y": -0.23921878965840337 + "x": 0.97097, + "y": -0.23922 }, { "x": 1, @@ -55841,11 +55841,11 @@ } }, { - "x": 376.59800000000007, + "x": 376.598, "y": 922.654 }, { - "x": 325.16600000000005, + "x": 325.166, "y": 870.844 }, { @@ -55863,7 +55863,7 @@ "y": 0 }, { - "x": 350.88200000000006, + "x": 350.882, "y": 896.749 }, { @@ -55871,7 +55871,7 @@ "y": 0 }, { - "x": 350.88200000000006, + "x": 350.882, "y": 896.749 }, { @@ -55975,197 +55975,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.59800000000007, + "x": 376.598, "y": 899.871 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.10400000000004, - "y": 905.9350000000001 + "x": 375.104, + "y": 905.935 }, { "body": null, "index": 2, "isInternal": false, - "x": 372.2010000000001, + "x": 372.201, "y": 911.465 }, { "body": null, "index": 3, "isInternal": false, - "x": 368.06000000000006, + "x": 368.06, "y": 916.139 }, { "body": null, "index": 4, "isInternal": false, - "x": 362.92100000000005, + "x": 362.921, "y": 919.687 }, { "body": null, "index": 5, "isInternal": false, - "x": 357.0810000000001, - "y": 921.9010000000001 + "x": 357.081, + "y": 921.901 }, { "body": null, "index": 6, "isInternal": false, - "x": 350.88200000000006, + "x": 350.882, "y": 922.654 }, { "body": null, "index": 7, "isInternal": false, - "x": 344.68300000000005, - "y": 921.9010000000001 + "x": 344.683, + "y": 921.901 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.8430000000001, + "x": 338.843, "y": 919.687 }, { "body": null, "index": 9, "isInternal": false, - "x": 333.70400000000006, + "x": 333.704, "y": 916.139 }, { "body": null, "index": 10, "isInternal": false, - "x": 329.56300000000005, + "x": 329.563, "y": 911.465 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.6600000000001, - "y": 905.9350000000001 + "x": 326.66, + "y": 905.935 }, { "body": null, "index": 12, "isInternal": false, - "x": 325.16600000000005, + "x": 325.166, "y": 899.871 }, { "body": null, "index": 13, "isInternal": false, - "x": 325.16600000000005, - "y": 893.6270000000001 + "x": 325.166, + "y": 893.627 }, { "body": null, "index": 14, "isInternal": false, - "x": 326.6600000000001, + "x": 326.66, "y": 887.563 }, { "body": null, "index": 15, "isInternal": false, - "x": 329.56300000000005, + "x": 329.563, "y": 882.033 }, { "body": null, "index": 16, "isInternal": false, - "x": 333.70400000000006, + "x": 333.704, "y": 877.359 }, { "body": null, "index": 17, "isInternal": false, - "x": 338.8430000000001, + "x": 338.843, "y": 873.811 }, { "body": null, "index": 18, "isInternal": false, - "x": 344.68300000000005, + "x": 344.683, "y": 871.597 }, { "body": null, "index": 19, "isInternal": false, - "x": 350.88200000000006, + "x": 350.882, "y": 870.844 }, { "body": null, "index": 20, "isInternal": false, - "x": 357.0810000000001, + "x": 357.081, "y": 871.597 }, { "body": null, "index": 21, "isInternal": false, - "x": 362.92100000000005, + "x": 362.921, "y": 873.811 }, { "body": null, "index": 22, "isInternal": false, - "x": 368.06000000000006, + "x": 368.06, "y": 877.359 }, { "body": null, "index": 23, "isInternal": false, - "x": 372.2010000000001, + "x": 372.201, "y": 882.033 }, { "body": null, "index": 24, "isInternal": false, - "x": 375.10400000000004, + "x": 375.104, "y": 887.563 }, { "body": null, "index": 25, "isInternal": false, - "x": 376.59800000000007, - "y": 893.6270000000001 + "x": 376.598, + "y": 893.627 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 888.132012, + "area": 888.13201, "axes": { "#": 6301 }, "bounds": { "#": 6311 }, - "circleRadius": 16.986046810699587, + "circleRadius": 16.98605, "collisionFilter": { "#": 6314 }, @@ -56180,13 +56180,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 130, - "inertia": 502.19399774347886, - "inverseInertia": 0.0019912623497957476, - "inverseMass": 1.1259587386655308, + "inertia": 502.194, + "inverseInertia": 0.00199, + "inverseMass": 1.12596, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.888132012, + "mass": 0.88813, "motion": 0, "parent": null, "position": { @@ -56247,36 +56247,36 @@ } ], { - "x": -0.9396646680443769, - "y": -0.3420969330892212 + "x": -0.93966, + "y": -0.3421 }, { - "x": -0.7660353643369744, - "y": -0.6427984292024359 + "x": -0.76604, + "y": -0.6428 }, { - "x": -0.5001137705057033, - "y": -0.8659597083875026 + "x": -0.50011, + "y": -0.86596 }, { - "x": -0.17357259603329547, - "y": -0.9848210771029743 + "x": -0.17357, + "y": -0.98482 }, { - "x": 0.17357259603329547, - "y": -0.9848210771029743 + "x": 0.17357, + "y": -0.98482 }, { - "x": 0.5001137705057033, - "y": -0.8659597083875026 + "x": 0.50011, + "y": -0.86596 }, { - "x": 0.7660353643369744, - "y": -0.6427984292024359 + "x": 0.76604, + "y": -0.6428 }, { - "x": 0.9396646680443769, - "y": -0.3420969330892212 + "x": 0.93966, + "y": -0.3421 }, { "x": 1, @@ -56291,11 +56291,11 @@ } }, { - "x": 420.0540000000001, + "x": 420.054, "y": 904.816 }, { - "x": 386.59800000000007, + "x": 386.598, "y": 870.844 }, { @@ -56313,7 +56313,7 @@ "y": 0 }, { - "x": 403.3260000000001, + "x": 403.326, "y": 887.83 }, { @@ -56321,7 +56321,7 @@ "y": 0 }, { - "x": 403.3260000000001, + "x": 403.326, "y": 887.83 }, { @@ -56401,126 +56401,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 420.0540000000001, - "y": 890.7800000000001 + "x": 420.054, + "y": 890.78 }, { "body": null, "index": 1, "isInternal": false, - "x": 418.03600000000006, - "y": 896.3230000000001 + "x": 418.036, + "y": 896.323 }, { "body": null, "index": 2, "isInternal": false, - "x": 414.2440000000001, + "x": 414.244, "y": 900.842 }, { "body": null, "index": 3, "isInternal": false, - "x": 409.1360000000001, + "x": 409.136, "y": 903.792 }, { "body": null, "index": 4, "isInternal": false, - "x": 403.3260000000001, + "x": 403.326, "y": 904.816 }, { "body": null, "index": 5, "isInternal": false, - "x": 397.5160000000001, + "x": 397.516, "y": 903.792 }, { "body": null, "index": 6, "isInternal": false, - "x": 392.4080000000001, + "x": 392.408, "y": 900.842 }, { "body": null, "index": 7, "isInternal": false, - "x": 388.6160000000001, - "y": 896.3230000000001 + "x": 388.616, + "y": 896.323 }, { "body": null, "index": 8, "isInternal": false, - "x": 386.59800000000007, - "y": 890.7800000000001 + "x": 386.598, + "y": 890.78 }, { "body": null, "index": 9, "isInternal": false, - "x": 386.59800000000007, + "x": 386.598, "y": 884.88 }, { "body": null, "index": 10, "isInternal": false, - "x": 388.6160000000001, + "x": 388.616, "y": 879.337 }, { "body": null, "index": 11, "isInternal": false, - "x": 392.4080000000001, - "y": 874.8180000000001 + "x": 392.408, + "y": 874.818 }, { "body": null, "index": 12, "isInternal": false, - "x": 397.5160000000001, + "x": 397.516, "y": 871.868 }, { "body": null, "index": 13, "isInternal": false, - "x": 403.3260000000001, + "x": 403.326, "y": 870.844 }, { "body": null, "index": 14, "isInternal": false, - "x": 409.1360000000001, + "x": 409.136, "y": 871.868 }, { "body": null, "index": 15, "isInternal": false, - "x": 414.2440000000001, - "y": 874.8180000000001 + "x": 414.244, + "y": 874.818 }, { "body": null, "index": 16, "isInternal": false, - "x": 418.03600000000006, + "x": 418.036, "y": 879.337 }, { "body": null, "index": 17, "isInternal": false, - "x": 420.0540000000001, + "x": 420.054, "y": 884.88 }, { @@ -56528,14 +56528,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1466.7791880000002, + "area": 1466.77919, "axes": { "#": 6343 }, "bounds": { "#": 6355 }, - "circleRadius": 21.75546553497942, + "circleRadius": 21.75547, "collisionFilter": { "#": 6358 }, @@ -56550,13 +56550,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 131, - "inertia": 1369.701119864889, - "inverseInertia": 0.0007300862834211909, - "inverseMass": 0.6817658773598578, + "inertia": 1369.70112, + "inverseInertia": 0.00073, + "inverseMass": 0.68177, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4667791880000003, + "mass": 1.46678, "motion": 0, "parent": null, "position": { @@ -56623,44 +56623,44 @@ } ], { - "x": -0.9594811271190482, - "y": -0.2817728991623589 + "x": -0.95948, + "y": -0.28177 }, { - "x": -0.8412991486989921, - "y": -0.5405698311951483 + "x": -0.8413, + "y": -0.54057 }, { - "x": -0.6548383126065617, - "y": -0.7557690019725546 + "x": -0.65484, + "y": -0.75577 }, { - "x": -0.4153475465770035, - "y": -0.9096628032147208 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.14228047679615582, - "y": -0.9898263817067409 + "x": -0.14228, + "y": -0.98983 }, { - "x": 0.14228047679615582, - "y": -0.9898263817067409 + "x": 0.14228, + "y": -0.98983 }, { - "x": 0.4153475465770035, - "y": -0.9096628032147208 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6548383126065617, - "y": -0.7557690019725546 + "x": 0.65484, + "y": -0.75577 }, { - "x": 0.8412991486989921, - "y": -0.5405698311951483 + "x": 0.8413, + "y": -0.54057 }, { - "x": 0.9594811271190482, - "y": -0.2817728991623589 + "x": 0.95948, + "y": -0.28177 }, { "x": 1, @@ -56675,11 +56675,11 @@ } }, { - "x": 473.12200000000007, + "x": 473.122, "y": 914.354 }, { - "x": 430.0540000000001, + "x": 430.054, "y": 870.844 }, { @@ -56697,7 +56697,7 @@ "y": 0 }, { - "x": 451.5880000000001, + "x": 451.588, "y": 892.599 }, { @@ -56705,7 +56705,7 @@ "y": 0 }, { - "x": 451.5880000000001, + "x": 451.588, "y": 892.599 }, { @@ -56797,154 +56797,154 @@ "body": null, "index": 0, "isInternal": false, - "x": 473.12200000000007, + "x": 473.122, "y": 895.695 }, { "body": null, "index": 1, "isInternal": false, - "x": 471.37700000000007, - "y": 901.6370000000001 + "x": 471.377, + "y": 901.637 }, { "body": null, "index": 2, "isInternal": false, - "x": 468.0300000000001, + "x": 468.03, "y": 906.846 }, { "body": null, "index": 3, "isInternal": false, - "x": 463.3500000000001, - "y": 910.9010000000001 + "x": 463.35, + "y": 910.901 }, { "body": null, "index": 4, "isInternal": false, - "x": 457.7170000000001, - "y": 913.4730000000001 + "x": 457.717, + "y": 913.473 }, { "body": null, "index": 5, "isInternal": false, - "x": 451.5880000000001, + "x": 451.588, "y": 914.354 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.45900000000006, - "y": 913.4730000000001 + "x": 445.459, + "y": 913.473 }, { "body": null, "index": 7, "isInternal": false, - "x": 439.8260000000001, - "y": 910.9010000000001 + "x": 439.826, + "y": 910.901 }, { "body": null, "index": 8, "isInternal": false, - "x": 435.1460000000001, + "x": 435.146, "y": 906.846 }, { "body": null, "index": 9, "isInternal": false, - "x": 431.7990000000001, - "y": 901.6370000000001 + "x": 431.799, + "y": 901.637 }, { "body": null, "index": 10, "isInternal": false, - "x": 430.0540000000001, + "x": 430.054, "y": 895.695 }, { "body": null, "index": 11, "isInternal": false, - "x": 430.0540000000001, + "x": 430.054, "y": 889.503 }, { "body": null, "index": 12, "isInternal": false, - "x": 431.7990000000001, + "x": 431.799, "y": 883.561 }, { "body": null, "index": 13, "isInternal": false, - "x": 435.1460000000001, - "y": 878.3520000000001 + "x": 435.146, + "y": 878.352 }, { "body": null, "index": 14, "isInternal": false, - "x": 439.8260000000001, + "x": 439.826, "y": 874.297 }, { "body": null, "index": 15, "isInternal": false, - "x": 445.45900000000006, + "x": 445.459, "y": 871.725 }, { "body": null, "index": 16, "isInternal": false, - "x": 451.5880000000001, + "x": 451.588, "y": 870.844 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.7170000000001, + "x": 457.717, "y": 871.725 }, { "body": null, "index": 18, "isInternal": false, - "x": 463.3500000000001, + "x": 463.35, "y": 874.297 }, { "body": null, "index": 19, "isInternal": false, - "x": 468.0300000000001, - "y": 878.3520000000001 + "x": 468.03, + "y": 878.352 }, { "body": null, "index": 20, "isInternal": false, - "x": 471.37700000000007, + "x": 471.377, "y": 883.561 }, { "body": null, "index": 21, "isInternal": false, - "x": 473.12200000000007, + "x": 473.122, "y": 889.503 }, { @@ -56952,14 +56952,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1020.8739640000001, + "area": 1020.87396, "axes": { "#": 6391 }, "bounds": { "#": 6402 }, - "circleRadius": 18.176118827160494, + "circleRadius": 18.17612, "collisionFilter": { "#": 6405 }, @@ -56974,13 +56974,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 132, - "inertia": 663.511049477857, - "inverseInertia": 0.0015071339064917449, - "inverseMass": 0.9795528490919568, + "inertia": 663.51105, + "inverseInertia": 0.00151, + "inverseMass": 0.97955, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0208739640000002, + "mass": 1.02087, "motion": 0, "parent": null, "position": { @@ -57044,40 +57044,40 @@ } ], { - "x": -0.9510818672896958, - "y": -0.3089389611440186 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8089413597418736, - "y": -0.58788934035154 + "x": -0.80894, + "y": -0.58789 }, { - "x": -0.58788934035154, - "y": -0.8089413597418736 + "x": -0.58789, + "y": -0.80894 }, { - "x": -0.3089389611440186, - "y": -0.9510818672896958 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.3089389611440186, - "y": -0.9510818672896958 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.58788934035154, - "y": -0.8089413597418736 + "x": 0.58789, + "y": -0.80894 }, { - "x": 0.8089413597418736, - "y": -0.58788934035154 + "x": 0.80894, + "y": -0.58789 }, { - "x": 0.9510818672896958, - "y": -0.3089389611440186 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -57092,11 +57092,11 @@ } }, { - "x": 519.0260000000001, + "x": 519.026, "y": 906.748 }, { - "x": 483.12200000000007, + "x": 483.122, "y": 870.844 }, { @@ -57114,7 +57114,7 @@ "y": 0 }, { - "x": 501.07400000000007, + "x": 501.074, "y": 888.796 }, { @@ -57122,7 +57122,7 @@ "y": 0 }, { - "x": 501.07400000000007, + "x": 501.074, "y": 888.796 }, { @@ -57208,7 +57208,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 519.0260000000001, + "x": 519.026, "y": 891.639 }, { @@ -57229,98 +57229,98 @@ "body": null, "index": 3, "isInternal": false, - "x": 509.3260000000001, - "y": 904.9910000000001 + "x": 509.326, + "y": 904.991 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.9170000000001, + "x": 503.917, "y": 906.748 }, { "body": null, "index": 5, "isInternal": false, - "x": 498.23100000000005, + "x": 498.231, "y": 906.748 }, { "body": null, "index": 6, "isInternal": false, - "x": 492.82200000000006, - "y": 904.9910000000001 + "x": 492.822, + "y": 904.991 }, { "body": null, "index": 7, "isInternal": false, - "x": 488.2220000000001, + "x": 488.222, "y": 901.648 }, { "body": null, "index": 8, "isInternal": false, - "x": 484.8790000000001, + "x": 484.879, "y": 897.048 }, { "body": null, "index": 9, "isInternal": false, - "x": 483.12200000000007, + "x": 483.122, "y": 891.639 }, { "body": null, "index": 10, "isInternal": false, - "x": 483.12200000000007, - "y": 885.9530000000001 + "x": 483.122, + "y": 885.953 }, { "body": null, "index": 11, "isInternal": false, - "x": 484.8790000000001, - "y": 880.5440000000001 + "x": 484.879, + "y": 880.544 }, { "body": null, "index": 12, "isInternal": false, - "x": 488.2220000000001, - "y": 875.9440000000001 + "x": 488.222, + "y": 875.944 }, { "body": null, "index": 13, "isInternal": false, - "x": 492.82200000000006, + "x": 492.822, "y": 872.601 }, { "body": null, "index": 14, "isInternal": false, - "x": 498.23100000000005, + "x": 498.231, "y": 870.844 }, { "body": null, "index": 15, "isInternal": false, - "x": 503.9170000000001, + "x": 503.917, "y": 870.844 }, { "body": null, "index": 16, "isInternal": false, - "x": 509.3260000000001, + "x": 509.326, "y": 872.601 }, { @@ -57328,35 +57328,35 @@ "index": 17, "isInternal": false, "x": 513.926, - "y": 875.9440000000001 + "y": 875.944 }, { "body": null, "index": 18, "isInternal": false, "x": 517.269, - "y": 880.5440000000001 + "y": 880.544 }, { "body": null, "index": 19, "isInternal": false, - "x": 519.0260000000001, - "y": 885.9530000000001 + "x": 519.026, + "y": 885.953 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1498.420516, + "area": 1498.42052, "axes": { "#": 6436 }, "bounds": { "#": 6448 }, - "circleRadius": 21.98874742798354, + "circleRadius": 21.98875, "collisionFilter": { "#": 6451 }, @@ -57371,13 +57371,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 133, - "inertia": 1429.4328342080482, - "inverseInertia": 0.0006995781655974289, - "inverseMass": 0.6673693995257604, + "inertia": 1429.43283, + "inverseInertia": 0.0007, + "inverseMass": 0.66737, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.498420516, + "mass": 1.49842, "motion": 0, "parent": null, "position": { @@ -57444,44 +57444,44 @@ } ], { - "x": -0.9595027817059244, - "y": -0.28169915139842566 + "x": -0.9595, + "y": -0.2817 }, { - "x": -0.8412718937722633, - "y": -0.5406122462068628 + "x": -0.84127, + "y": -0.54061 }, { - "x": -0.6548088643782468, - "y": -0.7557945164736715 + "x": -0.65481, + "y": -0.75579 }, { - "x": -0.41542744234917584, - "y": -0.9096263189591769 + "x": -0.41543, + "y": -0.90963 }, { - "x": -0.14236077781981005, - "y": -0.9898148356831892 + "x": -0.14236, + "y": -0.98981 }, { - "x": 0.14236077781981005, - "y": -0.9898148356831892 + "x": 0.14236, + "y": -0.98981 }, { - "x": 0.41542744234917584, - "y": -0.9096263189591769 + "x": 0.41543, + "y": -0.90963 }, { - "x": 0.6548088643782468, - "y": -0.7557945164736715 + "x": 0.65481, + "y": -0.75579 }, { - "x": 0.8412718937722633, - "y": -0.5406122462068628 + "x": 0.84127, + "y": -0.54061 }, { - "x": 0.9595027817059244, - "y": -0.28169915139842566 + "x": 0.9595, + "y": -0.2817 }, { "x": 1, @@ -57497,10 +57497,10 @@ }, { "x": 572.556, - "y": 914.8220000000001 + "y": 914.822 }, { - "x": 529.0260000000001, + "x": 529.026, "y": 870.844 }, { @@ -57519,7 +57519,7 @@ }, { "x": 550.791, - "y": 892.8330000000001 + "y": 892.833 }, { "x": 0, @@ -57527,7 +57527,7 @@ }, { "x": 550.791, - "y": 892.8330000000001 + "y": 892.833 }, { "fillStyle": "#FF6B6B", @@ -57619,34 +57619,34 @@ "index": 0, "isInternal": false, "x": 572.556, - "y": 895.9620000000001 + "y": 895.962 }, { "body": null, "index": 1, "isInternal": false, "x": 570.793, - "y": 901.9670000000001 + "y": 901.967 }, { "body": null, "index": 2, "isInternal": false, - "x": 567.4090000000001, - "y": 907.2330000000001 + "x": 567.409, + "y": 907.233 }, { "body": null, "index": 3, "isInternal": false, - "x": 562.6790000000001, - "y": 911.3310000000001 + "x": 562.679, + "y": 911.331 }, { "body": null, "index": 4, "isInternal": false, - "x": 556.9860000000001, + "x": 556.986, "y": 913.931 }, { @@ -57654,7 +57654,7 @@ "index": 5, "isInternal": false, "x": 550.791, - "y": 914.8220000000001 + "y": 914.822 }, { "body": null, @@ -57668,49 +57668,49 @@ "index": 7, "isInternal": false, "x": 538.903, - "y": 911.3310000000001 + "y": 911.331 }, { "body": null, "index": 8, "isInternal": false, "x": 534.173, - "y": 907.2330000000001 + "y": 907.233 }, { "body": null, "index": 9, "isInternal": false, "x": 530.789, - "y": 901.9670000000001 + "y": 901.967 }, { "body": null, "index": 10, "isInternal": false, - "x": 529.0260000000001, - "y": 895.9620000000001 + "x": 529.026, + "y": 895.962 }, { "body": null, "index": 11, "isInternal": false, - "x": 529.0260000000001, - "y": 889.7040000000001 + "x": 529.026, + "y": 889.704 }, { "body": null, "index": 12, "isInternal": false, "x": 530.789, - "y": 883.6990000000001 + "y": 883.699 }, { "body": null, "index": 13, "isInternal": false, "x": 534.173, - "y": 878.4330000000001 + "y": 878.433 }, { "body": null, @@ -57724,7 +57724,7 @@ "index": 15, "isInternal": false, "x": 544.596, - "y": 871.7350000000001 + "y": 871.735 }, { "body": null, @@ -57737,50 +57737,50 @@ "body": null, "index": 17, "isInternal": false, - "x": 556.9860000000001, - "y": 871.7350000000001 + "x": 556.986, + "y": 871.735 }, { "body": null, "index": 18, "isInternal": false, - "x": 562.6790000000001, + "x": 562.679, "y": 874.335 }, { "body": null, "index": 19, "isInternal": false, - "x": 567.4090000000001, - "y": 878.4330000000001 + "x": 567.409, + "y": 878.433 }, { "body": null, "index": 20, "isInternal": false, "x": 570.793, - "y": 883.6990000000001 + "y": 883.699 }, { "body": null, "index": 21, "isInternal": false, "x": 572.556, - "y": 889.7040000000001 + "y": 889.704 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2505.505032, + "area": 2505.50503, "axes": { "#": 6484 }, "bounds": { "#": 6498 }, - "circleRadius": 28.378536522633745, + "circleRadius": 28.37854, "collisionFilter": { "#": 6501 }, @@ -57795,13 +57795,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 134, - "inertia": 3996.4921843040015, - "inverseInertia": 0.00025021943091179907, - "inverseMass": 0.3991211301626314, + "inertia": 3996.49218, + "inverseInertia": 0.00025, + "inverseMass": 0.39912, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.5055050320000003, + "mass": 2.50551, "motion": 0, "parent": null, "position": { @@ -57874,52 +57874,52 @@ } ], { - "x": -0.9709114428121552, - "y": -0.2394388653005588 + "x": -0.97091, + "y": -0.23944 }, { - "x": -0.8854851153219822, - "y": -0.4646677420945165 + "x": -0.88549, + "y": -0.46467 }, { - "x": -0.7484969721157183, - "y": -0.663138207867411 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.5680540130587589, - "y": -0.822991274709422 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.3545969524696042, - "y": -0.9350192518334953 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12059766028596937, - "y": -0.9927014678812306 + "x": -0.1206, + "y": -0.9927 }, { - "x": 0.12059766028596937, - "y": -0.9927014678812306 + "x": 0.1206, + "y": -0.9927 }, { - "x": 0.3545969524696042, - "y": -0.9350192518334953 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680540130587589, - "y": -0.822991274709422 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7484969721157183, - "y": -0.663138207867411 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854851153219822, - "y": -0.4646677420945165 + "x": 0.88549, + "y": -0.46467 }, { - "x": 0.9709114428121552, - "y": -0.2394388653005588 + "x": 0.97091, + "y": -0.23944 }, { "x": 1, @@ -57934,8 +57934,8 @@ } }, { - "x": 638.9000000000001, - "y": 927.6020000000001 + "x": 638.9, + "y": 927.602 }, { "x": 582.556, @@ -57956,16 +57956,16 @@ "y": 0 }, { - "x": 610.7280000000001, - "y": 899.2230000000001 + "x": 610.728, + "y": 899.223 }, { "x": 0, "y": 0 }, { - "x": 610.7280000000001, - "y": 899.2230000000001 + "x": 610.728, + "y": 899.223 }, { "fillStyle": "#FF6B6B", @@ -58068,21 +58068,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.9000000000001, - "y": 902.6440000000001 + "x": 638.9, + "y": 902.644 }, { "body": null, "index": 1, "isInternal": false, - "x": 637.2620000000001, - "y": 909.2860000000001 + "x": 637.262, + "y": 909.286 }, { "body": null, "index": 2, "isInternal": false, - "x": 634.0830000000001, + "x": 634.083, "y": 915.344 }, { @@ -58097,21 +58097,21 @@ "index": 4, "isInternal": false, "x": 623.916, - "y": 924.3510000000001 + "y": 924.351 }, { "body": null, "index": 5, "isInternal": false, - "x": 617.5190000000001, + "x": 617.519, "y": 926.777 }, { "body": null, "index": 6, "isInternal": false, - "x": 610.7280000000001, - "y": 927.6020000000001 + "x": 610.728, + "y": 927.602 }, { "body": null, @@ -58124,14 +58124,14 @@ "body": null, "index": 8, "isInternal": false, - "x": 597.5400000000001, - "y": 924.3510000000001 + "x": 597.54, + "y": 924.351 }, { "body": null, "index": 9, "isInternal": false, - "x": 591.9100000000001, + "x": 591.91, "y": 920.465 }, { @@ -58145,15 +58145,15 @@ "body": null, "index": 11, "isInternal": false, - "x": 584.1940000000001, - "y": 909.2860000000001 + "x": 584.194, + "y": 909.286 }, { "body": null, "index": 12, "isInternal": false, "x": 582.556, - "y": 902.6440000000001 + "y": 902.644 }, { "body": null, @@ -58166,28 +58166,28 @@ "body": null, "index": 14, "isInternal": false, - "x": 584.1940000000001, - "y": 889.1600000000001 + "x": 584.194, + "y": 889.16 }, { "body": null, "index": 15, "isInternal": false, "x": 587.373, - "y": 883.1020000000001 + "y": 883.102 }, { "body": null, "index": 16, "isInternal": false, - "x": 591.9100000000001, - "y": 877.9810000000001 + "x": 591.91, + "y": 877.981 }, { "body": null, "index": 17, "isInternal": false, - "x": 597.5400000000001, + "x": 597.54, "y": 874.095 }, { @@ -58195,21 +58195,21 @@ "index": 18, "isInternal": false, "x": 603.937, - "y": 871.6690000000001 + "y": 871.669 }, { "body": null, "index": 19, "isInternal": false, - "x": 610.7280000000001, + "x": 610.728, "y": 870.844 }, { "body": null, "index": 20, "isInternal": false, - "x": 617.5190000000001, - "y": 871.6690000000001 + "x": 617.519, + "y": 871.669 }, { "body": null, @@ -58223,27 +58223,27 @@ "index": 22, "isInternal": false, "x": 629.546, - "y": 877.9810000000001 + "y": 877.981 }, { "body": null, "index": 23, "isInternal": false, - "x": 634.0830000000001, - "y": 883.1020000000001 + "x": 634.083, + "y": 883.102 }, { "body": null, "index": 24, "isInternal": false, - "x": 637.2620000000001, - "y": 889.1600000000001 + "x": 637.262, + "y": 889.16 }, { "body": null, "index": 25, "isInternal": false, - "x": 638.9000000000001, + "x": 638.9, "y": 895.802 }, { @@ -58251,14 +58251,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1735.9463039999998, + "area": 1735.9463, "axes": { "#": 6538 }, "bounds": { "#": 6551 }, - "circleRadius": 23.641782407407405, + "circleRadius": 23.64178, "collisionFilter": { "#": 6554 }, @@ -58273,13 +58273,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 135, - "inertia": 1918.5102571158823, - "inverseInertia": 0.0005212377657564944, - "inverseMass": 0.5760546842352101, + "inertia": 1918.51026, + "inverseInertia": 0.00052, + "inverseMass": 0.57605, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7359463039999998, + "mass": 1.73595, "motion": 0, "parent": null, "position": { @@ -58349,48 +58349,48 @@ } ], { - "x": -0.9658952408079529, - "y": -0.2589331647057727 + "x": -0.9659, + "y": -0.25893 }, { - "x": -0.8660209970018438, - "y": -0.5000076326936743 + "x": -0.86602, + "y": -0.50001 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000076326936743, - "y": -0.8660209970018438 + "x": -0.50001, + "y": -0.86602 }, { - "x": -0.2589331647057727, - "y": -0.9658952408079529 + "x": -0.25893, + "y": -0.9659 }, { "x": 0, "y": -1 }, { - "x": 0.2589331647057727, - "y": -0.9658952408079529 + "x": 0.25893, + "y": -0.9659 }, { - "x": 0.5000076326936743, - "y": -0.8660209970018438 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660209970018438, - "y": -0.5000076326936743 + "x": 0.86602, + "y": -0.50001 }, { - "x": 0.9658952408079529, - "y": -0.2589331647057727 + "x": 0.9659, + "y": -0.25893 }, { "x": 1, @@ -58406,11 +58406,11 @@ }, { "x": 146.88, - "y": 984.4820000000002 + "y": 984.482 }, { "x": 100, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -58428,7 +58428,7 @@ }, { "x": 123.44, - "y": 961.0420000000001 + "y": 961.042 }, { "x": 0, @@ -58436,7 +58436,7 @@ }, { "x": 123.44, - "y": 961.0420000000001 + "y": 961.042 }, { "fillStyle": "#FF6B6B", @@ -58534,182 +58534,182 @@ "index": 0, "isInternal": false, "x": 146.88, - "y": 964.1280000000002 + "y": 964.128 }, { "body": null, "index": 1, "isInternal": false, - "x": 145.28199999999998, - "y": 970.0890000000002 + "x": 145.282, + "y": 970.089 }, { "body": null, "index": 2, "isInternal": false, "x": 142.196, - "y": 975.4340000000002 + "y": 975.434 }, { "body": null, "index": 3, "isInternal": false, "x": 137.832, - "y": 979.7980000000001 + "y": 979.798 }, { "body": null, "index": 4, "isInternal": false, "x": 132.487, - "y": 982.8840000000001 + "y": 982.884 }, { "body": null, "index": 5, "isInternal": false, "x": 126.526, - "y": 984.4820000000002 + "y": 984.482 }, { "body": null, "index": 6, "isInternal": false, "x": 120.354, - "y": 984.4820000000002 + "y": 984.482 }, { "body": null, "index": 7, "isInternal": false, "x": 114.393, - "y": 982.8840000000001 + "y": 982.884 }, { "body": null, "index": 8, "isInternal": false, "x": 109.048, - "y": 979.7980000000001 + "y": 979.798 }, { "body": null, "index": 9, "isInternal": false, "x": 104.684, - "y": 975.4340000000002 + "y": 975.434 }, { "body": null, "index": 10, "isInternal": false, "x": 101.598, - "y": 970.0890000000002 + "y": 970.089 }, { "body": null, "index": 11, "isInternal": false, "x": 100, - "y": 964.1280000000002 + "y": 964.128 }, { "body": null, "index": 12, "isInternal": false, "x": 100, - "y": 957.9560000000001 + "y": 957.956 }, { "body": null, "index": 13, "isInternal": false, "x": 101.598, - "y": 951.9950000000001 + "y": 951.995 }, { "body": null, "index": 14, "isInternal": false, "x": 104.684, - "y": 946.6500000000001 + "y": 946.65 }, { "body": null, "index": 15, "isInternal": false, "x": 109.048, - "y": 942.2860000000002 + "y": 942.286 }, { "body": null, "index": 16, "isInternal": false, "x": 114.393, - "y": 939.2000000000002 + "y": 939.2 }, { "body": null, "index": 17, "isInternal": false, "x": 120.354, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, "index": 18, "isInternal": false, "x": 126.526, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, "index": 19, "isInternal": false, "x": 132.487, - "y": 939.2000000000002 + "y": 939.2 }, { "body": null, "index": 20, "isInternal": false, "x": 137.832, - "y": 942.2860000000002 + "y": 942.286 }, { "body": null, "index": 21, "isInternal": false, "x": 142.196, - "y": 946.6500000000001 + "y": 946.65 }, { "body": null, "index": 22, "isInternal": false, - "x": 145.28199999999998, - "y": 951.9950000000001 + "x": 145.282, + "y": 951.995 }, { "body": null, "index": 23, "isInternal": false, "x": 146.88, - "y": 957.9560000000001 + "y": 957.956 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1479.9061220000003, + "area": 1479.90612, "axes": { "#": 6589 }, "bounds": { "#": 6601 }, - "circleRadius": 21.8525591563786, + "circleRadius": 21.85256, "collisionFilter": { "#": 6604 }, @@ -58724,13 +58724,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 136, - "inertia": 1394.3270921480123, - "inverseInertia": 0.0007171918308346596, - "inverseMass": 0.6757185372329988, + "inertia": 1394.32709, + "inverseInertia": 0.00072, + "inverseMass": 0.67572, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4799061220000003, + "mass": 1.47991, "motion": 0, "parent": null, "position": { @@ -58797,44 +58797,44 @@ } ], { - "x": -0.9595087445086674, - "y": -0.28167884054611 + "x": -0.95951, + "y": -0.28168 }, { - "x": -0.8412098176870567, - "y": -0.5407088335018292 + "x": -0.84121, + "y": -0.54071 }, { - "x": -0.6549121779854049, - "y": -0.7557049947740277 + "x": -0.65491, + "y": -0.7557 }, { - "x": -0.4153530977073672, - "y": -0.9096602685755238 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.14243407531189364, - "y": -0.9898042908525129 + "x": -0.14243, + "y": -0.9898 }, { - "x": 0.14243407531189364, - "y": -0.9898042908525129 + "x": 0.14243, + "y": -0.9898 }, { - "x": 0.4153530977073672, - "y": -0.9096602685755238 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6549121779854049, - "y": -0.7557049947740277 + "x": 0.65491, + "y": -0.7557 }, { - "x": 0.8412098176870567, - "y": -0.5407088335018292 + "x": 0.84121, + "y": -0.54071 }, { - "x": 0.9595087445086674, - "y": -0.28167884054611 + "x": 0.95951, + "y": -0.28168 }, { "x": 1, @@ -58854,7 +58854,7 @@ }, { "x": 156.88, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -58978,21 +58978,21 @@ "body": null, "index": 1, "isInternal": false, - "x": 198.38799999999998, + "x": 198.388, "y": 968.533 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.02499999999998, + "x": 195.025, "y": 973.765 }, { "body": null, "index": 3, "isInternal": false, - "x": 190.32399999999998, + "x": 190.324, "y": 977.839 }, { @@ -59013,7 +59013,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 172.35299999999998, + "x": 172.353, "y": 980.422 }, { @@ -59056,14 +59056,14 @@ "index": 12, "isInternal": false, "x": 158.632, - "y": 950.3770000000001 + "y": 950.377 }, { "body": null, "index": 13, "isInternal": false, "x": 161.995, - "y": 945.1450000000001 + "y": 945.145 }, { "body": null, @@ -59076,7 +59076,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 172.35299999999998, + "x": 172.353, "y": 938.488 }, { @@ -59084,7 +59084,7 @@ "index": 16, "isInternal": false, "x": 178.51, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, @@ -59097,22 +59097,22 @@ "body": null, "index": 18, "isInternal": false, - "x": 190.32399999999998, + "x": 190.324, "y": 941.071 }, { "body": null, "index": 19, "isInternal": false, - "x": 195.02499999999998, - "y": 945.1450000000001 + "x": 195.025, + "y": 945.145 }, { "body": null, "index": 20, "isInternal": false, - "x": 198.38799999999998, - "y": 950.3770000000001 + "x": 198.388, + "y": 950.377 }, { "body": null, @@ -59126,14 +59126,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1436.4701799999998, + "area": 1436.47018, "axes": { "#": 6637 }, "bounds": { "#": 6649 }, - "circleRadius": 21.529385288065843, + "circleRadius": 21.52939, "collisionFilter": { "#": 6652 }, @@ -59148,13 +59148,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 137, - "inertia": 1313.679921724599, - "inverseInertia": 0.0007612204338840774, - "inverseMass": 0.6961508939921051, + "inertia": 1313.67992, + "inverseInertia": 0.00076, + "inverseMass": 0.69615, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.43647018, + "mass": 1.43647, "motion": 0, "parent": null, "position": { @@ -59221,44 +59221,44 @@ } ], { - "x": -0.9595160751453637, - "y": -0.28165386831647904 + "x": -0.95952, + "y": -0.28165 }, { - "x": -0.841247397412524, - "y": -0.5406503642342757 + "x": -0.84125, + "y": -0.54065 }, { - "x": -0.6548808345114404, - "y": -0.7557321566465194 + "x": -0.65488, + "y": -0.75573 }, { - "x": -0.41533932355594355, - "y": -0.9096665577606396 + "x": -0.41534, + "y": -0.90967 }, { - "x": -0.1422893977298045, - "y": -0.9898250993451769 + "x": -0.14229, + "y": -0.98983 }, { - "x": 0.1422893977298045, - "y": -0.9898250993451769 + "x": 0.14229, + "y": -0.98983 }, { - "x": 0.41533932355594355, - "y": -0.9096665577606396 + "x": 0.41534, + "y": -0.90967 }, { - "x": 0.6548808345114404, - "y": -0.7557321566465194 + "x": 0.65488, + "y": -0.75573 }, { - "x": 0.841247397412524, - "y": -0.5406503642342757 + "x": 0.84125, + "y": -0.54065 }, { - "x": 0.9595160751453637, - "y": -0.28165386831647904 + "x": 0.95952, + "y": -0.28165 }, { "x": 1, @@ -59274,11 +59274,11 @@ }, { "x": 252.76, - "y": 980.6600000000001 + "y": 980.66 }, { "x": 210.14, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -59296,7 +59296,7 @@ }, { "x": 231.45, - "y": 959.1310000000001 + "y": 959.131 }, { "x": 0, @@ -59304,7 +59304,7 @@ }, { "x": 231.45, - "y": 959.1310000000001 + "y": 959.131 }, { "fillStyle": "#C44D58", @@ -59410,13 +59410,13 @@ "index": 2, "isInternal": false, "x": 247.721, - "y": 973.2300000000001 + "y": 973.23 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.08999999999997, + "x": 243.09, "y": 977.243 }, { @@ -59424,21 +59424,21 @@ "index": 4, "isInternal": false, "x": 237.516, - "y": 979.7880000000001 + "y": 979.788 }, { "body": null, "index": 5, "isInternal": false, "x": 231.45, - "y": 980.6600000000001 + "y": 980.66 }, { "body": null, "index": 6, "isInternal": false, "x": 225.384, - "y": 979.7880000000001 + "y": 979.788 }, { "body": null, @@ -59451,14 +59451,14 @@ "body": null, "index": 8, "isInternal": false, - "x": 215.17899999999997, - "y": 973.2300000000001 + "x": 215.179, + "y": 973.23 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.86599999999999, + "x": 211.866, "y": 968.075 }, { @@ -59473,20 +59473,20 @@ "index": 11, "isInternal": false, "x": 210.14, - "y": 956.0670000000001 + "y": 956.067 }, { "body": null, "index": 12, "isInternal": false, - "x": 211.86599999999999, - "y": 950.1870000000001 + "x": 211.866, + "y": 950.187 }, { "body": null, "index": 13, "isInternal": false, - "x": 215.17899999999997, + "x": 215.179, "y": 945.032 }, { @@ -59494,7 +59494,7 @@ "index": 14, "isInternal": false, "x": 219.81, - "y": 941.0190000000001 + "y": 941.019 }, { "body": null, @@ -59508,7 +59508,7 @@ "index": 16, "isInternal": false, "x": 231.45, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, @@ -59521,8 +59521,8 @@ "body": null, "index": 18, "isInternal": false, - "x": 243.08999999999997, - "y": 941.0190000000001 + "x": 243.09, + "y": 941.019 }, { "body": null, @@ -59536,28 +59536,28 @@ "index": 20, "isInternal": false, "x": 251.034, - "y": 950.1870000000001 + "y": 950.187 }, { "body": null, "index": 21, "isInternal": false, "x": 252.76, - "y": 956.0670000000001 + "y": 956.067 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 921.4581120000001, + "area": 921.45811, "axes": { "#": 6685 }, "bounds": { "#": 6695 }, - "circleRadius": 17.301890432098766, + "circleRadius": 17.30189, "collisionFilter": { "#": 6698 }, @@ -59572,13 +59572,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 138, - "inertia": 540.5895727979165, - "inverseInertia": 0.0018498322023200039, - "inverseMass": 1.085236525651206, + "inertia": 540.58957, + "inverseInertia": 0.00185, + "inverseMass": 1.08524, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9214581120000002, + "mass": 0.92146, "motion": 0, "parent": null, "position": { @@ -59639,36 +59639,36 @@ } ], { - "x": -0.9397107989436047, - "y": -0.34197019511760385 + "x": -0.93971, + "y": -0.34197 }, { - "x": -0.765993276427864, - "y": -0.6428485828461521 + "x": -0.76599, + "y": -0.64285 }, { - "x": -0.5000058109841717, - "y": -0.8660220487851684 + "x": -0.50001, + "y": -0.86602 }, { - "x": -0.17372837569222055, - "y": -0.9847936085695026 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.17372837569222055, - "y": -0.9847936085695026 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.5000058109841717, - "y": -0.8660220487851684 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.765993276427864, - "y": -0.6428485828461521 + "x": 0.76599, + "y": -0.64285 }, { - "x": 0.9397107989436047, - "y": -0.34197019511760385 + "x": 0.93971, + "y": -0.34197 }, { "x": 1, @@ -59683,12 +59683,12 @@ } }, { - "x": 296.83799999999997, - "y": 972.2060000000001 + "x": 296.838, + "y": 972.206 }, { "x": 262.76, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -59706,7 +59706,7 @@ }, { "x": 279.799, - "y": 954.9040000000001 + "y": 954.904 }, { "x": 0, @@ -59714,7 +59714,7 @@ }, { "x": 279.799, - "y": 954.9040000000001 + "y": 954.904 }, { "fillStyle": "#C7F464", @@ -59793,141 +59793,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.83799999999997, - "y": 957.9080000000001 + "x": 296.838, + "y": 957.908 }, { "body": null, "index": 1, "isInternal": false, - "x": 294.78299999999996, - "y": 963.5550000000001 + "x": 294.783, + "y": 963.555 }, { "body": null, "index": 2, "isInternal": false, - "x": 290.91999999999996, - "y": 968.1580000000001 + "x": 290.92, + "y": 968.158 }, { "body": null, "index": 3, "isInternal": false, "x": 285.717, - "y": 971.1620000000001 + "y": 971.162 }, { "body": null, "index": 4, "isInternal": false, "x": 279.799, - "y": 972.2060000000001 + "y": 972.206 }, { "body": null, "index": 5, "isInternal": false, "x": 273.881, - "y": 971.1620000000001 + "y": 971.162 }, { "body": null, "index": 6, "isInternal": false, "x": 268.678, - "y": 968.1580000000001 + "y": 968.158 }, { "body": null, "index": 7, "isInternal": false, - "x": 264.81499999999994, - "y": 963.5550000000001 + "x": 264.815, + "y": 963.555 }, { "body": null, "index": 8, "isInternal": false, "x": 262.76, - "y": 957.9080000000001 + "y": 957.908 }, { "body": null, "index": 9, "isInternal": false, "x": 262.76, - "y": 951.9000000000001 + "y": 951.9 }, { "body": null, "index": 10, "isInternal": false, - "x": 264.81499999999994, - "y": 946.2530000000002 + "x": 264.815, + "y": 946.253 }, { "body": null, "index": 11, "isInternal": false, "x": 268.678, - "y": 941.6500000000001 + "y": 941.65 }, { "body": null, "index": 12, "isInternal": false, "x": 273.881, - "y": 938.6460000000001 + "y": 938.646 }, { "body": null, "index": 13, "isInternal": false, "x": 279.799, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, "index": 14, "isInternal": false, "x": 285.717, - "y": 938.6460000000001 + "y": 938.646 }, { "body": null, "index": 15, "isInternal": false, - "x": 290.91999999999996, - "y": 941.6500000000001 + "x": 290.92, + "y": 941.65 }, { "body": null, "index": 16, "isInternal": false, - "x": 294.78299999999996, - "y": 946.2530000000002 + "x": 294.783, + "y": 946.253 }, { "body": null, "index": 17, "isInternal": false, - "x": 296.83799999999997, - "y": 951.9000000000001 + "x": 296.838, + "y": 951.9 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1442.878982, + "area": 1442.87898, "axes": { "#": 6727 }, "bounds": { "#": 6739 }, - "circleRadius": 21.577481995884774, + "circleRadius": 21.57748, "collisionFilter": { "#": 6742 }, @@ -59942,13 +59942,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 139, - "inertia": 1325.4280188451355, - "inverseInertia": 0.0007544732613026503, - "inverseMass": 0.6930588167649946, + "inertia": 1325.42802, + "inverseInertia": 0.00075, + "inverseMass": 0.69306, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.442878982, + "mass": 1.44288, "motion": 0, "parent": null, "position": { @@ -60015,44 +60015,44 @@ } ], { - "x": -0.95950797763849, - "y": -0.281681452793923 + "x": -0.95951, + "y": -0.28168 }, { - "x": -0.8411784753765534, - "y": -0.5407575913134989 + "x": -0.84118, + "y": -0.54076 }, { - "x": -0.6549119406095831, - "y": -0.7557052004895758 + "x": -0.65491, + "y": -0.75571 }, { - "x": -0.41534800101678154, - "y": -0.9096625957196237 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.14231033171555763, - "y": -0.9898220898156436 + "x": -0.14231, + "y": -0.98982 }, { - "x": 0.14231033171555763, - "y": -0.9898220898156436 + "x": 0.14231, + "y": -0.98982 }, { - "x": 0.41534800101678154, - "y": -0.9096625957196237 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6549119406095831, - "y": -0.7557052004895758 + "x": 0.65491, + "y": -0.75571 }, { - "x": 0.8411784753765534, - "y": -0.5407575913134989 + "x": 0.84118, + "y": -0.54076 }, { - "x": 0.95950797763849, - "y": -0.281681452793923 + "x": 0.95951, + "y": -0.28168 }, { "x": 1, @@ -60068,11 +60068,11 @@ }, { "x": 349.554, - "y": 980.7560000000001 + "y": 980.756 }, { - "x": 306.83799999999997, - "y": 937.6020000000001 + "x": 306.838, + "y": 937.602 }, { "category": 1, @@ -60089,16 +60089,16 @@ "y": 0 }, { - "x": 328.19599999999997, - "y": 959.1790000000001 + "x": 328.196, + "y": 959.179 }, { "x": 0, "y": 0 }, { - "x": 328.19599999999997, - "y": 959.1790000000001 + "x": 328.196, + "y": 959.179 }, { "fillStyle": "#FF6B6B", @@ -60190,84 +60190,84 @@ "index": 0, "isInternal": false, "x": 349.554, - "y": 962.2500000000001 + "y": 962.25 }, { "body": null, "index": 1, "isInternal": false, - "x": 347.82399999999996, - "y": 968.1430000000001 + "x": 347.824, + "y": 968.143 }, { "body": null, "index": 2, "isInternal": false, "x": 344.503, - "y": 973.3090000000001 + "y": 973.309 }, { "body": null, "index": 3, "isInternal": false, - "x": 339.86199999999997, - "y": 977.3310000000001 + "x": 339.862, + "y": 977.331 }, { "body": null, "index": 4, "isInternal": false, "x": 334.275, - "y": 979.8820000000001 + "y": 979.882 }, { "body": null, "index": 5, "isInternal": false, - "x": 328.19599999999997, - "y": 980.7560000000001 + "x": 328.196, + "y": 980.756 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.11699999999996, - "y": 979.8820000000001 + "x": 322.117, + "y": 979.882 }, { "body": null, "index": 7, "isInternal": false, "x": 316.53, - "y": 977.3310000000001 + "y": 977.331 }, { "body": null, "index": 8, "isInternal": false, - "x": 311.88899999999995, - "y": 973.3090000000001 + "x": 311.889, + "y": 973.309 }, { "body": null, "index": 9, "isInternal": false, "x": 308.568, - "y": 968.1430000000001 + "y": 968.143 }, { "body": null, "index": 10, "isInternal": false, - "x": 306.83799999999997, - "y": 962.2500000000001 + "x": 306.838, + "y": 962.25 }, { "body": null, "index": 11, "isInternal": false, - "x": 306.83799999999997, - "y": 956.1080000000001 + "x": 306.838, + "y": 956.108 }, { "body": null, @@ -60280,8 +60280,8 @@ "body": null, "index": 13, "isInternal": false, - "x": 311.88899999999995, - "y": 945.0490000000001 + "x": 311.889, + "y": 945.049 }, { "body": null, @@ -60294,28 +60294,28 @@ "body": null, "index": 15, "isInternal": false, - "x": 322.11699999999996, - "y": 938.4760000000001 + "x": 322.117, + "y": 938.476 }, { "body": null, "index": 16, "isInternal": false, - "x": 328.19599999999997, - "y": 937.6020000000001 + "x": 328.196, + "y": 937.602 }, { "body": null, "index": 17, "isInternal": false, "x": 334.275, - "y": 938.4760000000001 + "y": 938.476 }, { "body": null, "index": 18, "isInternal": false, - "x": 339.86199999999997, + "x": 339.862, "y": 941.027 }, { @@ -60323,13 +60323,13 @@ "index": 19, "isInternal": false, "x": 344.503, - "y": 945.0490000000001 + "y": 945.049 }, { "body": null, "index": 20, "isInternal": false, - "x": 347.82399999999996, + "x": 347.824, "y": 950.215 }, { @@ -60337,21 +60337,21 @@ "index": 21, "isInternal": false, "x": 349.554, - "y": 956.1080000000001 + "y": 956.108 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1393.8701299999998, + "area": 1393.87013, "axes": { "#": 6775 }, "bounds": { "#": 6787 }, - "circleRadius": 21.20801183127572, + "circleRadius": 21.20801, "collisionFilter": { "#": 6790 }, @@ -60366,13 +60366,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 140, - "inertia": 1236.9181303326188, - "inverseInertia": 0.0008084609445663883, - "inverseMass": 0.717426952825225, + "inertia": 1236.91813, + "inverseInertia": 0.00081, + "inverseMass": 0.71743, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3938701299999998, + "mass": 1.39387, "motion": 0, "parent": null, "position": { @@ -60439,44 +60439,44 @@ } ], { - "x": -0.9594788508542671, - "y": -0.2817806500868627 + "x": -0.95948, + "y": -0.28178 }, { - "x": -0.8412861160751645, - "y": -0.540590113578823 + "x": -0.84129, + "y": -0.54059 }, { - "x": -0.6548611595165944, - "y": -0.75574920559441 + "x": -0.65486, + "y": -0.75575 }, { - "x": -0.41546220815076035, - "y": -0.9096104405724983 + "x": -0.41546, + "y": -0.90961 }, { - "x": -0.14230261557828927, - "y": -0.9898231991621421 + "x": -0.1423, + "y": -0.98982 }, { - "x": 0.14230261557828927, - "y": -0.9898231991621421 + "x": 0.1423, + "y": -0.98982 }, { - "x": 0.41546220815076035, - "y": -0.9096104405724983 + "x": 0.41546, + "y": -0.90961 }, { - "x": 0.6548611595165944, - "y": -0.75574920559441 + "x": 0.65486, + "y": -0.75575 }, { - "x": 0.8412861160751645, - "y": -0.540590113578823 + "x": 0.84129, + "y": -0.54059 }, { - "x": 0.9594788508542671, - "y": -0.2817806500868627 + "x": 0.95948, + "y": -0.28178 }, { "x": 1, @@ -60496,7 +60496,7 @@ }, { "x": 359.554, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -60514,7 +60514,7 @@ }, { "x": 380.546, - "y": 958.8100000000001 + "y": 958.81 }, { "x": 0, @@ -60522,7 +60522,7 @@ }, { "x": 380.546, - "y": 958.8100000000001 + "y": 958.81 }, { "fillStyle": "#C7F464", @@ -60614,7 +60614,7 @@ "index": 0, "isInternal": false, "x": 401.538, - "y": 961.8280000000001 + "y": 961.828 }, { "body": null, @@ -60628,21 +60628,21 @@ "index": 2, "isInternal": false, "x": 396.574, - "y": 972.6980000000001 + "y": 972.698 }, { "body": null, "index": 3, "isInternal": false, "x": 392.012, - "y": 976.6510000000001 + "y": 976.651 }, { "body": null, "index": 4, "isInternal": false, "x": 386.521, - "y": 979.1590000000001 + "y": 979.159 }, { "body": null, @@ -60655,22 +60655,22 @@ "body": null, "index": 6, "isInternal": false, - "x": 374.57099999999997, - "y": 979.1590000000001 + "x": 374.571, + "y": 979.159 }, { "body": null, "index": 7, "isInternal": false, "x": 369.08, - "y": 976.6510000000001 + "y": 976.651 }, { "body": null, "index": 8, "isInternal": false, "x": 364.518, - "y": 972.6980000000001 + "y": 972.698 }, { "body": null, @@ -60684,7 +60684,7 @@ "index": 10, "isInternal": false, "x": 359.554, - "y": 961.8280000000001 + "y": 961.828 }, { "body": null, @@ -60698,7 +60698,7 @@ "index": 12, "isInternal": false, "x": 361.255, - "y": 950.0000000000001 + "y": 950 }, { "body": null, @@ -60718,7 +60718,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 374.57099999999997, + "x": 374.571, "y": 938.461 }, { @@ -60726,7 +60726,7 @@ "index": 16, "isInternal": false, "x": 380.546, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, @@ -60754,7 +60754,7 @@ "index": 20, "isInternal": false, "x": 399.837, - "y": 950.0000000000001 + "y": 950 }, { "body": null, @@ -60768,14 +60768,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1134.053972, + "area": 1134.05397, "axes": { "#": 6823 }, "bounds": { "#": 6834 }, - "circleRadius": 19.15644290123457, + "circleRadius": 19.15644, "collisionFilter": { "#": 6837 }, @@ -60790,13 +60790,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 141, - "inertia": 818.7877787916739, - "inverseInertia": 0.0012213176917170773, - "inverseMass": 0.8817922468332045, + "inertia": 818.78778, + "inverseInertia": 0.00122, + "inverseMass": 0.88179, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.134053972, + "mass": 1.13405, "motion": 0, "parent": null, "position": { @@ -60860,40 +60860,40 @@ } ], { - "x": -0.9510585889822449, - "y": -0.30901061522721374 + "x": -0.95106, + "y": -0.30901 }, { - "x": -0.8090173687157503, - "y": -0.5877847370562153 + "x": -0.80902, + "y": -0.58778 }, { - "x": -0.5877847370562153, - "y": -0.8090173687157503 + "x": -0.58778, + "y": -0.80902 }, { - "x": -0.30901061522721374, - "y": -0.9510585889822449 + "x": -0.30901, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.30901061522721374, - "y": -0.9510585889822449 + "x": 0.30901, + "y": -0.95106 }, { - "x": 0.5877847370562153, - "y": -0.8090173687157503 + "x": 0.58778, + "y": -0.80902 }, { - "x": 0.8090173687157503, - "y": -0.5877847370562153 + "x": 0.80902, + "y": -0.58778 }, { - "x": 0.9510585889822449, - "y": -0.30901061522721374 + "x": 0.95106, + "y": -0.30901 }, { "x": 1, @@ -60909,11 +60909,11 @@ }, { "x": 449.38, - "y": 975.4440000000002 + "y": 975.444 }, { "x": 411.538, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -60931,7 +60931,7 @@ }, { "x": 430.459, - "y": 956.5230000000001 + "y": 956.523 }, { "x": 0, @@ -60939,7 +60939,7 @@ }, { "x": 430.459, - "y": 956.5230000000001 + "y": 956.523 }, { "fillStyle": "#C7F464", @@ -61025,154 +61025,154 @@ "index": 0, "isInternal": false, "x": 449.38, - "y": 959.5200000000001 + "y": 959.52 }, { "body": null, "index": 1, "isInternal": false, "x": 447.528, - "y": 965.2200000000001 + "y": 965.22 }, { "body": null, "index": 2, "isInternal": false, "x": 444.005, - "y": 970.0690000000002 + "y": 970.069 }, { "body": null, "index": 3, "isInternal": false, "x": 439.156, - "y": 973.5920000000001 + "y": 973.592 }, { "body": null, "index": 4, "isInternal": false, "x": 433.456, - "y": 975.4440000000002 + "y": 975.444 }, { "body": null, "index": 5, "isInternal": false, "x": 427.462, - "y": 975.4440000000002 + "y": 975.444 }, { "body": null, "index": 6, "isInternal": false, "x": 421.762, - "y": 973.5920000000001 + "y": 973.592 }, { "body": null, "index": 7, "isInternal": false, "x": 416.913, - "y": 970.0690000000002 + "y": 970.069 }, { "body": null, "index": 8, "isInternal": false, "x": 413.39, - "y": 965.2200000000001 + "y": 965.22 }, { "body": null, "index": 9, "isInternal": false, "x": 411.538, - "y": 959.5200000000001 + "y": 959.52 }, { "body": null, "index": 10, "isInternal": false, "x": 411.538, - "y": 953.5260000000002 + "y": 953.526 }, { "body": null, "index": 11, "isInternal": false, "x": 413.39, - "y": 947.8260000000001 + "y": 947.826 }, { "body": null, "index": 12, "isInternal": false, "x": 416.913, - "y": 942.9770000000001 + "y": 942.977 }, { "body": null, "index": 13, "isInternal": false, "x": 421.762, - "y": 939.4540000000002 + "y": 939.454 }, { "body": null, "index": 14, "isInternal": false, "x": 427.462, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, "index": 15, "isInternal": false, "x": 433.456, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, "index": 16, "isInternal": false, "x": 439.156, - "y": 939.4540000000002 + "y": 939.454 }, { "body": null, "index": 17, "isInternal": false, "x": 444.005, - "y": 942.9770000000001 + "y": 942.977 }, { "body": null, "index": 18, "isInternal": false, "x": 447.528, - "y": 947.8260000000001 + "y": 947.826 }, { "body": null, "index": 19, "isInternal": false, "x": 449.38, - "y": 953.5260000000002 + "y": 953.526 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2129.6684660000005, + "area": 2129.66847, "axes": { "#": 6868 }, "bounds": { "#": 6882 }, - "circleRadius": 26.16351594650206, + "circleRadius": 26.16352, "collisionFilter": { "#": 6885 }, @@ -61187,13 +61187,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 142, - "inertia": 2887.4362873780287, - "inverseInertia": 0.0003463279880395429, - "inverseMass": 0.4695566544581591, + "inertia": 2887.43629, + "inverseInertia": 0.00035, + "inverseMass": 0.46956, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.1296684660000005, + "mass": 2.12967, "motion": 0, "parent": null, "position": { @@ -61266,52 +61266,52 @@ } ], { - "x": -0.9709208311748809, - "y": -0.23940079279458984 + "x": -0.97092, + "y": -0.2394 }, { - "x": -0.8854712992435021, - "y": -0.464694069486608 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7485454568415367, - "y": -0.6630834781849833 + "x": -0.74855, + "y": -0.66308 }, { - "x": -0.5680552337492909, - "y": -0.8229904321497539 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.35449173520305777, - "y": -0.9350591476867789 + "x": -0.35449, + "y": -0.93506 }, { - "x": -0.12065807858052943, - "y": -0.9926941261401997 + "x": -0.12066, + "y": -0.99269 }, { - "x": 0.12065807858052943, - "y": -0.9926941261401997 + "x": 0.12066, + "y": -0.99269 }, { - "x": 0.35449173520305777, - "y": -0.9350591476867789 + "x": 0.35449, + "y": -0.93506 }, { - "x": 0.5680552337492909, - "y": -0.8229904321497539 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7485454568415367, - "y": -0.6630834781849833 + "x": 0.74855, + "y": -0.66308 }, { - "x": 0.8854712992435021, - "y": -0.464694069486608 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709208311748809, - "y": -0.23940079279458984 + "x": 0.97092, + "y": -0.2394 }, { "x": 1, @@ -61327,11 +61327,11 @@ }, { "x": 511.326, - "y": 989.9300000000001 + "y": 989.93 }, { "x": 459.38, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -61349,7 +61349,7 @@ }, { "x": 485.353, - "y": 963.7660000000001 + "y": 963.766 }, { "x": 0, @@ -61357,7 +61357,7 @@ }, { "x": 485.353, - "y": 963.7660000000001 + "y": 963.766 }, { "fillStyle": "#4ECDC4", @@ -61461,27 +61461,27 @@ "index": 0, "isInternal": false, "x": 511.326, - "y": 966.9200000000001 + "y": 966.92 }, { "body": null, "index": 1, "isInternal": false, - "x": 509.81600000000003, - "y": 973.0440000000001 + "x": 509.816, + "y": 973.044 }, { "body": null, "index": 2, "isInternal": false, "x": 506.885, - "y": 978.6290000000001 + "y": 978.629 }, { "body": null, "index": 3, "isInternal": false, - "x": 502.70300000000003, + "x": 502.703, "y": 983.35 }, { @@ -61489,35 +61489,35 @@ "index": 4, "isInternal": false, "x": 497.512, - "y": 986.9330000000001 + "y": 986.933 }, { "body": null, "index": 5, "isInternal": false, - "x": 491.61400000000003, - "y": 989.1690000000001 + "x": 491.614, + "y": 989.169 }, { "body": null, "index": 6, "isInternal": false, "x": 485.353, - "y": 989.9300000000001 + "y": 989.93 }, { "body": null, "index": 7, "isInternal": false, "x": 479.092, - "y": 989.1690000000001 + "y": 989.169 }, { "body": null, "index": 8, "isInternal": false, "x": 473.194, - "y": 986.9330000000001 + "y": 986.933 }, { "body": null, @@ -61531,28 +61531,28 @@ "index": 10, "isInternal": false, "x": 463.821, - "y": 978.6290000000001 + "y": 978.629 }, { "body": null, "index": 11, "isInternal": false, "x": 460.89, - "y": 973.0440000000001 + "y": 973.044 }, { "body": null, "index": 12, "isInternal": false, "x": 459.38, - "y": 966.9200000000001 + "y": 966.92 }, { "body": null, "index": 13, "isInternal": false, "x": 459.38, - "y": 960.6120000000001 + "y": 960.612 }, { "body": null, @@ -61573,7 +61573,7 @@ "index": 16, "isInternal": false, "x": 468.003, - "y": 944.1820000000001 + "y": 944.182 }, { "body": null, @@ -61594,13 +61594,13 @@ "index": 19, "isInternal": false, "x": 485.353, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, "index": 20, "isInternal": false, - "x": 491.61400000000003, + "x": 491.614, "y": 938.363 }, { @@ -61614,8 +61614,8 @@ "body": null, "index": 22, "isInternal": false, - "x": 502.70300000000003, - "y": 944.1820000000001 + "x": 502.703, + "y": 944.182 }, { "body": null, @@ -61628,7 +61628,7 @@ "body": null, "index": 24, "isInternal": false, - "x": 509.81600000000003, + "x": 509.816, "y": 954.488 }, { @@ -61636,21 +61636,21 @@ "index": 25, "isInternal": false, "x": 511.326, - "y": 960.6120000000001 + "y": 960.612 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 933.4788960000001, + "area": 933.4789, "axes": { "#": 6922 }, "bounds": { "#": 6932 }, - "circleRadius": 17.414416152263374, + "circleRadius": 17.41442, "collisionFilter": { "#": 6935 }, @@ -61665,13 +61665,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 143, - "inertia": 554.7859794487026, - "inverseInertia": 0.0018024968853641756, - "inverseMass": 1.0712614974854235, + "inertia": 554.78598, + "inverseInertia": 0.0018, + "inverseMass": 1.07126, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9334788960000001, + "mass": 0.93348, "motion": 0, "parent": null, "position": { @@ -61732,36 +61732,36 @@ } ], { - "x": -0.93966300914261, - "y": -0.3421014896913706 + "x": -0.93966, + "y": -0.3421 }, { - "x": -0.7660891083247972, - "y": -0.642734376010897 + "x": -0.76609, + "y": -0.64273 }, { - "x": -0.4999800713445785, - "y": -0.8660369092932876 + "x": -0.49998, + "y": -0.86604 }, { - "x": -0.17361554431251713, - "y": -0.9848135065955729 + "x": -0.17362, + "y": -0.98481 }, { - "x": 0.17361554431251713, - "y": -0.9848135065955729 + "x": 0.17362, + "y": -0.98481 }, { - "x": 0.4999800713445785, - "y": -0.8660369092932876 + "x": 0.49998, + "y": -0.86604 }, { - "x": 0.7660891083247972, - "y": -0.642734376010897 + "x": 0.76609, + "y": -0.64273 }, { - "x": 0.93966300914261, - "y": -0.3421014896913706 + "x": 0.93966, + "y": -0.3421 }, { "x": 1, @@ -61777,11 +61777,11 @@ }, { "x": 555.626, - "y": 972.4300000000001 + "y": 972.43 }, { "x": 521.326, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -61799,7 +61799,7 @@ }, { "x": 538.476, - "y": 955.0160000000001 + "y": 955.016 }, { "x": 0, @@ -61807,7 +61807,7 @@ }, { "x": 538.476, - "y": 955.0160000000001 + "y": 955.016 }, { "fillStyle": "#4ECDC4", @@ -61887,83 +61887,83 @@ "index": 0, "isInternal": false, "x": 555.626, - "y": 958.0400000000001 + "y": 958.04 }, { "body": null, "index": 1, "isInternal": false, "x": 553.557, - "y": 963.7230000000001 + "y": 963.723 }, { "body": null, "index": 2, "isInternal": false, "x": 549.67, - "y": 968.3560000000001 + "y": 968.356 }, { "body": null, "index": 3, "isInternal": false, "x": 544.432, - "y": 971.3800000000001 + "y": 971.38 }, { "body": null, "index": 4, "isInternal": false, "x": 538.476, - "y": 972.4300000000001 + "y": 972.43 }, { "body": null, "index": 5, "isInternal": false, "x": 532.52, - "y": 971.3800000000001 + "y": 971.38 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2819999999999, - "y": 968.3560000000001 + "x": 527.282, + "y": 968.356 }, { "body": null, "index": 7, "isInternal": false, "x": 523.395, - "y": 963.7230000000001 + "y": 963.723 }, { "body": null, "index": 8, "isInternal": false, "x": 521.326, - "y": 958.0400000000001 + "y": 958.04 }, { "body": null, "index": 9, "isInternal": false, "x": 521.326, - "y": 951.9920000000001 + "y": 951.992 }, { "body": null, "index": 10, "isInternal": false, "x": 523.395, - "y": 946.3090000000001 + "y": 946.309 }, { "body": null, "index": 11, "isInternal": false, - "x": 527.2819999999999, + "x": 527.282, "y": 941.676 }, { @@ -61978,7 +61978,7 @@ "index": 13, "isInternal": false, "x": 538.476, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, @@ -61999,28 +61999,28 @@ "index": 16, "isInternal": false, "x": 553.557, - "y": 946.3090000000001 + "y": 946.309 }, { "body": null, "index": 17, "isInternal": false, "x": 555.626, - "y": 951.9920000000001 + "y": 951.992 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1139.7843160000002, + "area": 1139.78432, "axes": { "#": 6964 }, "bounds": { "#": 6975 }, - "circleRadius": 19.205439814814817, + "circleRadius": 19.20544, "collisionFilter": { "#": 6978 }, @@ -62035,13 +62035,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 144, - "inertia": 827.0833095807079, - "inverseInertia": 0.0012090680447982352, - "inverseMass": 0.8773589756958893, + "inertia": 827.08331, + "inverseInertia": 0.00121, + "inverseMass": 0.87736, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1397843160000003, + "mass": 1.13978, "motion": 0, "parent": null, "position": { @@ -62105,40 +62105,40 @@ } ], { - "x": -0.9510524110962663, - "y": -0.30902962859243555 + "x": -0.95105, + "y": -0.30903 }, { - "x": -0.8089950900996454, - "y": -0.5878153997597091 + "x": -0.809, + "y": -0.58782 }, { - "x": -0.5878153997597091, - "y": -0.8089950900996454 + "x": -0.58782, + "y": -0.809 }, { - "x": -0.30902962859243555, - "y": -0.9510524110962663 + "x": -0.30903, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.30902962859243555, - "y": -0.9510524110962663 + "x": 0.30903, + "y": -0.95105 }, { - "x": 0.5878153997597091, - "y": -0.8089950900996454 + "x": 0.58782, + "y": -0.809 }, { - "x": 0.8089950900996454, - "y": -0.5878153997597091 + "x": 0.809, + "y": -0.58782 }, { - "x": 0.9510524110962663, - "y": -0.30902962859243555 + "x": 0.95105, + "y": -0.30903 }, { "x": 1, @@ -62153,12 +62153,12 @@ } }, { - "x": 603.5640000000001, - "y": 975.5400000000002 + "x": 603.564, + "y": 975.54 }, { "x": 565.626, - "y": 937.6020000000001 + "y": 937.602 }, { "category": 1, @@ -62176,7 +62176,7 @@ }, { "x": 584.595, - "y": 956.5710000000001 + "y": 956.571 }, { "x": 0, @@ -62184,7 +62184,7 @@ }, { "x": 584.595, - "y": 956.5710000000001 + "y": 956.571 }, { "fillStyle": "#C44D58", @@ -62269,155 +62269,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 603.5640000000001, - "y": 959.5750000000002 + "x": 603.564, + "y": 959.575 }, { "body": null, "index": 1, "isInternal": false, "x": 601.707, - "y": 965.2900000000002 + "y": 965.29 }, { "body": null, "index": 2, "isInternal": false, - "x": 598.1750000000001, - "y": 970.1510000000002 + "x": 598.175, + "y": 970.151 }, { "body": null, "index": 3, "isInternal": false, - "x": 593.3140000000001, - "y": 973.6830000000001 + "x": 593.314, + "y": 973.683 }, { "body": null, "index": 4, "isInternal": false, "x": 587.599, - "y": 975.5400000000002 + "y": 975.54 }, { "body": null, "index": 5, "isInternal": false, "x": 581.591, - "y": 975.5400000000002 + "y": 975.54 }, { "body": null, "index": 6, "isInternal": false, "x": 575.876, - "y": 973.6830000000001 + "y": 973.683 }, { "body": null, "index": 7, "isInternal": false, "x": 571.015, - "y": 970.1510000000002 + "y": 970.151 }, { "body": null, "index": 8, "isInternal": false, - "x": 567.4830000000001, - "y": 965.2900000000002 + "x": 567.483, + "y": 965.29 }, { "body": null, "index": 9, "isInternal": false, "x": 565.626, - "y": 959.5750000000002 + "y": 959.575 }, { "body": null, "index": 10, "isInternal": false, "x": 565.626, - "y": 953.5670000000001 + "y": 953.567 }, { "body": null, "index": 11, "isInternal": false, - "x": 567.4830000000001, - "y": 947.8520000000001 + "x": 567.483, + "y": 947.852 }, { "body": null, "index": 12, "isInternal": false, "x": 571.015, - "y": 942.9910000000001 + "y": 942.991 }, { "body": null, "index": 13, "isInternal": false, "x": 575.876, - "y": 939.4590000000002 + "y": 939.459 }, { "body": null, "index": 14, "isInternal": false, "x": 581.591, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, "index": 15, "isInternal": false, "x": 587.599, - "y": 937.6020000000001 + "y": 937.602 }, { "body": null, "index": 16, "isInternal": false, - "x": 593.3140000000001, - "y": 939.4590000000002 + "x": 593.314, + "y": 939.459 }, { "body": null, "index": 17, "isInternal": false, - "x": 598.1750000000001, - "y": 942.9910000000001 + "x": 598.175, + "y": 942.991 }, { "body": null, "index": 18, "isInternal": false, "x": 601.707, - "y": 947.8520000000001 + "y": 947.852 }, { "body": null, "index": 19, "isInternal": false, - "x": 603.5640000000001, - "y": 953.5670000000001 + "x": 603.564, + "y": 953.567 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2040.5851720000007, + "area": 2040.58517, "axes": { "#": 7009 }, "bounds": { "#": 7023 }, - "circleRadius": 25.61066100823045, + "circleRadius": 25.61066, "collisionFilter": { "#": 7026 }, @@ -62432,13 +62432,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 145, - "inertia": 2650.9275730068207, - "inverseInertia": 0.0003772264509157252, - "inverseMass": 0.4900555064897823, + "inertia": 2650.92757, + "inverseInertia": 0.00038, + "inverseMass": 0.49006, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.040585172000001, + "mass": 2.04059, "motion": 0, "parent": null, "position": { @@ -62511,52 +62511,52 @@ } ], { - "x": -0.9709280720447603, - "y": -0.2393714246008596 + "x": -0.97093, + "y": -0.23937 }, { - "x": -0.885476215551765, - "y": -0.46468470137516266 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7484985891937153, - "y": -0.6631363826355918 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.5680470758958883, - "y": -0.8229960629104679 + "x": -0.56805, + "y": -0.823 }, { - "x": -0.3545468146776685, - "y": -0.9350382645656374 + "x": -0.35455, + "y": -0.93504 }, { - "x": -0.12066511451121047, - "y": -0.9926932709251113 + "x": -0.12067, + "y": -0.99269 }, { - "x": 0.12066511451121047, - "y": -0.9926932709251113 + "x": 0.12067, + "y": -0.99269 }, { - "x": 0.3545468146776685, - "y": -0.9350382645656374 + "x": 0.35455, + "y": -0.93504 }, { - "x": 0.5680470758958883, - "y": -0.8229960629104679 + "x": 0.56805, + "y": -0.823 }, { - "x": 0.7484985891937153, - "y": -0.6631363826355918 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.885476215551765, - "y": -0.46468470137516266 + "x": 0.88548, + "y": -0.46468 }, { - "x": 0.9709280720447603, - "y": -0.2393714246008596 + "x": 0.97093, + "y": -0.23937 }, { "x": 1, @@ -62572,11 +62572,11 @@ }, { "x": 150.848, - "y": 1051.1520000000003 + "y": 1051.152 }, { "x": 100, - "y": 999.9300000000002 + "y": 999.93 }, { "category": 1, @@ -62594,7 +62594,7 @@ }, { "x": 125.424, - "y": 1025.5410000000002 + "y": 1025.541 }, { "x": 0, @@ -62602,7 +62602,7 @@ }, { "x": 125.424, - "y": 1025.5410000000002 + "y": 1025.541 }, { "fillStyle": "#C7F464", @@ -62706,7 +62706,7 @@ "index": 0, "isInternal": false, "x": 150.848, - "y": 1028.6280000000002 + "y": 1028.628 }, { "body": null, @@ -62720,69 +62720,69 @@ "index": 2, "isInternal": false, "x": 146.501, - "y": 1040.0900000000001 + "y": 1040.09 }, { "body": null, "index": 3, "isInternal": false, "x": 142.407, - "y": 1044.7110000000002 + "y": 1044.711 }, { "body": null, "index": 4, "isInternal": false, - "x": 137.32600000000002, - "y": 1048.2180000000003 + "x": 137.326, + "y": 1048.218 }, { "body": null, "index": 5, "isInternal": false, "x": 131.553, - "y": 1050.4070000000002 + "y": 1050.407 }, { "body": null, "index": 6, "isInternal": false, "x": 125.424, - "y": 1051.1520000000003 + "y": 1051.152 }, { "body": null, "index": 7, "isInternal": false, "x": 119.295, - "y": 1050.4070000000002 + "y": 1050.407 }, { "body": null, "index": 8, "isInternal": false, "x": 113.522, - "y": 1048.2180000000003 + "y": 1048.218 }, { "body": null, "index": 9, "isInternal": false, "x": 108.441, - "y": 1044.7110000000002 + "y": 1044.711 }, { "body": null, "index": 10, "isInternal": false, - "x": 104.34700000000001, - "y": 1040.0900000000001 + "x": 104.347, + "y": 1040.09 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.47800000000001, + "x": 101.478, "y": 1034.623 }, { @@ -62790,112 +62790,112 @@ "index": 12, "isInternal": false, "x": 100, - "y": 1028.6280000000002 + "y": 1028.628 }, { "body": null, "index": 13, "isInternal": false, "x": 100, - "y": 1022.4540000000002 + "y": 1022.454 }, { "body": null, "index": 14, "isInternal": false, - "x": 101.47800000000001, - "y": 1016.4590000000002 + "x": 101.478, + "y": 1016.459 }, { "body": null, "index": 15, "isInternal": false, - "x": 104.34700000000001, - "y": 1010.9920000000002 + "x": 104.347, + "y": 1010.992 }, { "body": null, "index": 16, "isInternal": false, "x": 108.441, - "y": 1006.3710000000002 + "y": 1006.371 }, { "body": null, "index": 17, "isInternal": false, "x": 113.522, - "y": 1002.8640000000001 + "y": 1002.864 }, { "body": null, "index": 18, "isInternal": false, "x": 119.295, - "y": 1000.6750000000002 + "y": 1000.675 }, { "body": null, "index": 19, "isInternal": false, "x": 125.424, - "y": 999.9300000000002 + "y": 999.93 }, { "body": null, "index": 20, "isInternal": false, "x": 131.553, - "y": 1000.6750000000002 + "y": 1000.675 }, { "body": null, "index": 21, "isInternal": false, - "x": 137.32600000000002, - "y": 1002.8640000000001 + "x": 137.326, + "y": 1002.864 }, { "body": null, "index": 22, "isInternal": false, "x": 142.407, - "y": 1006.3710000000002 + "y": 1006.371 }, { "body": null, "index": 23, "isInternal": false, "x": 146.501, - "y": 1010.9920000000002 + "y": 1010.992 }, { "body": null, "index": 24, "isInternal": false, "x": 149.37, - "y": 1016.4590000000002 + "y": 1016.459 }, { "body": null, "index": 25, "isInternal": false, "x": 150.848, - "y": 1022.4540000000002 + "y": 1022.454 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 702.576872, + "area": 702.57687, "axes": { "#": 7063 }, "bounds": { "#": 7072 }, - "circleRadius": 15.148598251028806, + "circleRadius": 15.1486, "collisionFilter": { "#": 7075 }, @@ -62910,13 +62910,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 146, - "inertia": 314.28689116356384, - "inverseInertia": 0.0031818062671903537, - "inverseMass": 1.4233317945029083, + "inertia": 314.28689, + "inverseInertia": 0.00318, + "inverseMass": 1.42333, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.702576872, + "mass": 0.70258, "motion": 0, "parent": null, "position": { @@ -62974,32 +62974,32 @@ } ], { - "x": -0.9238807445732501, - "y": -0.3826805061755525 + "x": -0.92388, + "y": -0.38268 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826805061755525, - "y": -0.9238807445732501 + "x": -0.38268, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826805061755525, - "y": -0.9238807445732501 + "x": 0.38268, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238807445732501, - "y": -0.3826805061755525 + "x": 0.92388, + "y": -0.38268 }, { "x": 1, @@ -63014,12 +63014,12 @@ } }, { - "x": 190.56400000000002, + "x": 190.564, "y": 1029.646 }, { "x": 160.848, - "y": 999.9300000000001 + "y": 999.93 }, { "category": 1, @@ -63036,7 +63036,7 @@ "y": 0 }, { - "x": 175.70600000000002, + "x": 175.706, "y": 1014.788 }, { @@ -63044,7 +63044,7 @@ "y": 0 }, { - "x": 175.70600000000002, + "x": 175.706, "y": 1014.788 }, { @@ -63118,15 +63118,15 @@ "body": null, "index": 0, "isInternal": false, - "x": 190.56400000000002, + "x": 190.564, "y": 1017.743 }, { "body": null, "index": 1, "isInternal": false, - "x": 188.30200000000002, - "y": 1023.2040000000001 + "x": 188.302, + "y": 1023.204 }, { "body": null, @@ -63139,7 +63139,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 178.66100000000003, + "x": 178.661, "y": 1029.646 }, { @@ -63153,7 +63153,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 167.29000000000002, + "x": 167.29, "y": 1027.384 }, { @@ -63161,7 +63161,7 @@ "index": 6, "isInternal": false, "x": 163.11, - "y": 1023.2040000000001 + "y": 1023.204 }, { "body": null, @@ -63188,7 +63188,7 @@ "body": null, "index": 10, "isInternal": false, - "x": 167.29000000000002, + "x": 167.29, "y": 1002.192 }, { @@ -63196,14 +63196,14 @@ "index": 11, "isInternal": false, "x": 172.751, - "y": 999.9300000000001 + "y": 999.93 }, { "body": null, "index": 12, "isInternal": false, - "x": 178.66100000000003, - "y": 999.9300000000001 + "x": 178.661, + "y": 999.93 }, { "body": null, @@ -63216,14 +63216,14 @@ "body": null, "index": 14, "isInternal": false, - "x": 188.30200000000002, + "x": 188.302, "y": 1006.372 }, { "body": null, "index": 15, "isInternal": false, - "x": 190.56400000000002, + "x": 190.564, "y": 1011.833 }, { @@ -63231,14 +63231,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1565.200396, + "area": 1565.2004, "axes": { "#": 7102 }, "bounds": { "#": 7115 }, - "circleRadius": 22.448881172839506, + "circleRadius": 22.44888, "collisionFilter": { "#": 7118 }, @@ -63253,13 +63253,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 147, - "inertia": 1559.6654377284024, - "inverseInertia": 0.0006411631467941385, - "inverseMass": 0.638895826090757, + "inertia": 1559.66544, + "inverseInertia": 0.00064, + "inverseMass": 0.6389, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.565200396, + "mass": 1.5652, "motion": 0, "parent": null, "position": { @@ -63329,48 +63329,48 @@ } ], { - "x": -0.9659198702250078, - "y": -0.2588412724132379 + "x": -0.96592, + "y": -0.25884 }, { - "x": -0.8660292916676339, - "y": -0.49999326592830867 + "x": -0.86603, + "y": -0.49999 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.49999326592830867, - "y": -0.8660292916676339 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.2588412724132379, - "y": -0.9659198702250078 + "x": -0.25884, + "y": -0.96592 }, { "x": 0, "y": -1 }, { - "x": 0.2588412724132379, - "y": -0.9659198702250078 + "x": 0.25884, + "y": -0.96592 }, { - "x": 0.49999326592830867, - "y": -0.8660292916676339 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660292916676339, - "y": -0.49999326592830867 + "x": 0.86603, + "y": -0.49999 }, { - "x": 0.9659198702250078, - "y": -0.2588412724132379 + "x": 0.96592, + "y": -0.25884 }, { "x": 1, @@ -63385,12 +63385,12 @@ } }, { - "x": 245.07800000000003, + "x": 245.078, "y": 1044.444 }, { - "x": 200.56400000000002, - "y": 999.9300000000001 + "x": 200.564, + "y": 999.93 }, { "category": 1, @@ -63407,7 +63407,7 @@ "y": 0 }, { - "x": 222.82100000000003, + "x": 222.821, "y": 1022.187 }, { @@ -63415,7 +63415,7 @@ "y": 0 }, { - "x": 222.82100000000003, + "x": 222.821, "y": 1022.187 }, { @@ -63513,183 +63513,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.07800000000003, + "x": 245.078, "y": 1025.117 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.56100000000004, + "x": 243.561, "y": 1030.778 }, { "body": null, "index": 2, "isInternal": false, - "x": 240.63100000000003, + "x": 240.631, "y": 1035.853 }, { "body": null, "index": 3, "isInternal": false, - "x": 236.48700000000002, - "y": 1039.9969999999998 + "x": 236.487, + "y": 1039.997 }, { "body": null, "index": 4, "isInternal": false, - "x": 231.41200000000003, - "y": 1042.9270000000001 + "x": 231.412, + "y": 1042.927 }, { "body": null, "index": 5, "isInternal": false, - "x": 225.75100000000003, + "x": 225.751, "y": 1044.444 }, { "body": null, "index": 6, "isInternal": false, - "x": 219.89100000000002, + "x": 219.891, "y": 1044.444 }, { "body": null, "index": 7, "isInternal": false, - "x": 214.23000000000002, - "y": 1042.9270000000001 + "x": 214.23, + "y": 1042.927 }, { "body": null, "index": 8, "isInternal": false, - "x": 209.15500000000003, - "y": 1039.9969999999998 + "x": 209.155, + "y": 1039.997 }, { "body": null, "index": 9, "isInternal": false, - "x": 205.01100000000002, + "x": 205.011, "y": 1035.853 }, { "body": null, "index": 10, "isInternal": false, - "x": 202.08100000000002, + "x": 202.081, "y": 1030.778 }, { "body": null, "index": 11, "isInternal": false, - "x": 200.56400000000002, + "x": 200.564, "y": 1025.117 }, { "body": null, "index": 12, "isInternal": false, - "x": 200.56400000000002, - "y": 1019.2570000000001 + "x": 200.564, + "y": 1019.257 }, { "body": null, "index": 13, "isInternal": false, - "x": 202.08100000000002, + "x": 202.081, "y": 1013.596 }, { "body": null, "index": 14, "isInternal": false, - "x": 205.01100000000002, + "x": 205.011, "y": 1008.521 }, { "body": null, "index": 15, "isInternal": false, - "x": 209.15500000000003, - "y": 1004.3770000000001 + "x": 209.155, + "y": 1004.377 }, { "body": null, "index": 16, "isInternal": false, - "x": 214.23000000000002, + "x": 214.23, "y": 1001.447 }, { "body": null, "index": 17, "isInternal": false, - "x": 219.89100000000002, - "y": 999.9300000000001 + "x": 219.891, + "y": 999.93 }, { "body": null, "index": 18, "isInternal": false, - "x": 225.75100000000003, - "y": 999.9300000000001 + "x": 225.751, + "y": 999.93 }, { "body": null, "index": 19, "isInternal": false, - "x": 231.41200000000003, + "x": 231.412, "y": 1001.447 }, { "body": null, "index": 20, "isInternal": false, - "x": 236.48700000000002, - "y": 1004.3770000000001 + "x": 236.487, + "y": 1004.377 }, { "body": null, "index": 21, "isInternal": false, - "x": 240.63100000000003, + "x": 240.631, "y": 1008.521 }, { "body": null, "index": 22, "isInternal": false, - "x": 243.56100000000004, + "x": 243.561, "y": 1013.596 }, { "body": null, "index": 23, "isInternal": false, - "x": 245.07800000000003, - "y": 1019.2570000000001 + "x": 245.078, + "y": 1019.257 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1931.8577320000002, + "area": 1931.85773, "axes": { "#": 7153 }, "bounds": { "#": 7167 }, - "circleRadius": 24.918917181069958, + "circleRadius": 24.91892, "collisionFilter": { "#": 7170 }, @@ -63704,13 +63704,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 148, - "inertia": 2375.9576222951223, - "inverseInertia": 0.00042088292763152154, - "inverseMass": 0.517636461233989, + "inertia": 2375.95762, + "inverseInertia": 0.00042, + "inverseMass": 0.51764, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.931857732, + "mass": 1.93186, "motion": 0, "parent": null, "position": { @@ -63783,52 +63783,52 @@ } ], { - "x": -0.970959567412021, - "y": -0.23924363826664466 + "x": -0.97096, + "y": -0.23924 }, { - "x": -0.8854663941956201, - "y": -0.46470341590116027 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7484370760332898, - "y": -0.6632058075882173 + "x": -0.74844, + "y": -0.66321 }, { - "x": -0.5681102026406644, - "y": -0.8229524880912525 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.35456892402501616, - "y": -0.9350298808678482 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.1205302350208059, - "y": -0.9927096566699799 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.1205302350208059, - "y": -0.9927096566699799 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35456892402501616, - "y": -0.9350298808678482 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5681102026406644, - "y": -0.8229524880912525 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484370760332898, - "y": -0.6632058075882173 + "x": 0.74844, + "y": -0.66321 }, { - "x": 0.8854663941956201, - "y": -0.46470341590116027 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.970959567412021, - "y": -0.23924363826664466 + "x": 0.97096, + "y": -0.23924 }, { "x": 1, @@ -63843,12 +63843,12 @@ } }, { - "x": 304.5520000000001, - "y": 1049.7680000000003 + "x": 304.552, + "y": 1049.768 }, { - "x": 255.07800000000006, - "y": 999.9300000000002 + "x": 255.078, + "y": 999.93 }, { "category": 1, @@ -63865,16 +63865,16 @@ "y": 0 }, { - "x": 279.81500000000005, - "y": 1024.8490000000002 + "x": 279.815, + "y": 1024.849 }, { "x": 0, "y": 0 }, { - "x": 279.81500000000005, - "y": 1024.8490000000002 + "x": 279.815, + "y": 1024.849 }, { "fillStyle": "#FF6B6B", @@ -63977,56 +63977,56 @@ "body": null, "index": 0, "isInternal": false, - "x": 304.5520000000001, + "x": 304.552, "y": 1027.853 }, { "body": null, "index": 1, "isInternal": false, - "x": 303.11500000000007, - "y": 1033.6850000000002 + "x": 303.115, + "y": 1033.685 }, { "body": null, "index": 2, "isInternal": false, - "x": 300.32300000000004, + "x": 300.323, "y": 1039.005 }, { "body": null, "index": 3, "isInternal": false, - "x": 296.33900000000006, - "y": 1043.5010000000002 + "x": 296.339, + "y": 1043.501 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.39500000000004, - "y": 1046.9140000000002 + "x": 291.395, + "y": 1046.914 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.7780000000001, + "x": 285.778, "y": 1049.044 }, { "body": null, "index": 6, "isInternal": false, - "x": 279.81500000000005, - "y": 1049.7680000000003 + "x": 279.815, + "y": 1049.768 }, { "body": null, "index": 7, "isInternal": false, - "x": 273.8520000000001, + "x": 273.852, "y": 1049.044 }, { @@ -64034,14 +64034,14 @@ "index": 8, "isInternal": false, "x": 268.235, - "y": 1046.9140000000002 + "y": 1046.914 }, { "body": null, "index": 9, "isInternal": false, - "x": 263.29100000000005, - "y": 1043.5010000000002 + "x": 263.291, + "y": 1043.501 }, { "body": null, @@ -64054,120 +64054,120 @@ "body": null, "index": 11, "isInternal": false, - "x": 256.51500000000004, - "y": 1033.6850000000002 + "x": 256.515, + "y": 1033.685 }, { "body": null, "index": 12, "isInternal": false, - "x": 255.07800000000006, + "x": 255.078, "y": 1027.853 }, { "body": null, "index": 13, "isInternal": false, - "x": 255.07800000000006, - "y": 1021.8450000000001 + "x": 255.078, + "y": 1021.845 }, { "body": null, "index": 14, "isInternal": false, - "x": 256.51500000000004, - "y": 1016.0130000000001 + "x": 256.515, + "y": 1016.013 }, { "body": null, "index": 15, "isInternal": false, "x": 259.307, - "y": 1010.6930000000002 + "y": 1010.693 }, { "body": null, "index": 16, "isInternal": false, - "x": 263.29100000000005, - "y": 1006.1970000000001 + "x": 263.291, + "y": 1006.197 }, { "body": null, "index": 17, "isInternal": false, "x": 268.235, - "y": 1002.7840000000001 + "y": 1002.784 }, { "body": null, "index": 18, "isInternal": false, - "x": 273.8520000000001, - "y": 1000.6540000000001 + "x": 273.852, + "y": 1000.654 }, { "body": null, "index": 19, "isInternal": false, - "x": 279.81500000000005, - "y": 999.9300000000002 + "x": 279.815, + "y": 999.93 }, { "body": null, "index": 20, "isInternal": false, - "x": 285.7780000000001, - "y": 1000.6540000000001 + "x": 285.778, + "y": 1000.654 }, { "body": null, "index": 21, "isInternal": false, - "x": 291.39500000000004, - "y": 1002.7840000000001 + "x": 291.395, + "y": 1002.784 }, { "body": null, "index": 22, "isInternal": false, - "x": 296.33900000000006, - "y": 1006.1970000000001 + "x": 296.339, + "y": 1006.197 }, { "body": null, "index": 23, "isInternal": false, - "x": 300.32300000000004, - "y": 1010.6930000000002 + "x": 300.323, + "y": 1010.693 }, { "body": null, "index": 24, "isInternal": false, - "x": 303.11500000000007, - "y": 1016.0130000000001 + "x": 303.115, + "y": 1016.013 }, { "body": null, "index": 25, "isInternal": false, - "x": 304.5520000000001, - "y": 1021.8450000000001 + "x": 304.552, + "y": 1021.845 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1164.285644, + "area": 1164.28564, "axes": { "#": 7207 }, "bounds": { "#": 7218 }, - "circleRadius": 19.410558127572017, + "circleRadius": 19.41056, "collisionFilter": { "#": 7221 }, @@ -64182,13 +64182,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 149, - "inertia": 863.0242301481517, - "inverseInertia": 0.001158716018701276, - "inverseMass": 0.8588957573713758, + "inertia": 863.02423, + "inverseInertia": 0.00116, + "inverseMass": 0.8589, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.164285644, + "mass": 1.16429, "motion": 0, "parent": null, "position": { @@ -64252,40 +64252,40 @@ } ], { - "x": -0.9510437483416532, - "y": -0.3090562873333244 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8089781115544842, - "y": -0.5878387661814595 + "x": -0.80898, + "y": -0.58784 }, { - "x": -0.5878387661814595, - "y": -0.8089781115544842 + "x": -0.58784, + "y": -0.80898 }, { - "x": -0.3090562873333244, - "y": -0.9510437483416532 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090562873333244, - "y": -0.9510437483416532 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5878387661814595, - "y": -0.8089781115544842 + "x": 0.58784, + "y": -0.80898 }, { - "x": 0.8089781115544842, - "y": -0.5878387661814595 + "x": 0.80898, + "y": -0.58784 }, { - "x": 0.9510437483416532, - "y": -0.3090562873333244 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -64300,12 +64300,12 @@ } }, { - "x": 352.89600000000013, - "y": 1038.2740000000001 + "x": 352.896, + "y": 1038.274 }, { - "x": 314.5520000000001, - "y": 999.9300000000001 + "x": 314.552, + "y": 999.93 }, { "category": 1, @@ -64322,16 +64322,16 @@ "y": 0 }, { - "x": 333.7240000000001, - "y": 1019.1020000000001 + "x": 333.724, + "y": 1019.102 }, { "x": 0, "y": 0 }, { - "x": 333.7240000000001, - "y": 1019.1020000000001 + "x": 333.724, + "y": 1019.102 }, { "fillStyle": "#556270", @@ -64416,155 +64416,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 352.89600000000013, + "x": 352.896, "y": 1022.138 }, { "body": null, "index": 1, "isInternal": false, - "x": 351.0190000000001, - "y": 1027.9140000000002 + "x": 351.019, + "y": 1027.914 }, { "body": null, "index": 2, "isInternal": false, - "x": 347.4490000000001, - "y": 1032.8270000000002 + "x": 347.449, + "y": 1032.827 }, { "body": null, "index": 3, "isInternal": false, - "x": 342.5360000000001, + "x": 342.536, "y": 1036.397 }, { "body": null, "index": 4, "isInternal": false, - "x": 336.7600000000001, - "y": 1038.2740000000001 + "x": 336.76, + "y": 1038.274 }, { "body": null, "index": 5, "isInternal": false, - "x": 330.6880000000001, - "y": 1038.2740000000001 + "x": 330.688, + "y": 1038.274 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.9120000000001, + "x": 324.912, "y": 1036.397 }, { "body": null, "index": 7, "isInternal": false, - "x": 319.9990000000001, - "y": 1032.8270000000002 + "x": 319.999, + "y": 1032.827 }, { "body": null, "index": 8, "isInternal": false, - "x": 316.4290000000001, - "y": 1027.9140000000002 + "x": 316.429, + "y": 1027.914 }, { "body": null, "index": 9, "isInternal": false, - "x": 314.5520000000001, + "x": 314.552, "y": 1022.138 }, { "body": null, "index": 10, "isInternal": false, - "x": 314.5520000000001, - "y": 1016.0660000000001 + "x": 314.552, + "y": 1016.066 }, { "body": null, "index": 11, "isInternal": false, - "x": 316.4290000000001, - "y": 1010.2900000000001 + "x": 316.429, + "y": 1010.29 }, { "body": null, "index": 12, "isInternal": false, - "x": 319.9990000000001, - "y": 1005.3770000000001 + "x": 319.999, + "y": 1005.377 }, { "body": null, "index": 13, "isInternal": false, - "x": 324.9120000000001, - "y": 1001.8070000000001 + "x": 324.912, + "y": 1001.807 }, { "body": null, "index": 14, "isInternal": false, - "x": 330.6880000000001, - "y": 999.9300000000001 + "x": 330.688, + "y": 999.93 }, { "body": null, "index": 15, "isInternal": false, - "x": 336.7600000000001, - "y": 999.9300000000001 + "x": 336.76, + "y": 999.93 }, { "body": null, "index": 16, "isInternal": false, - "x": 342.5360000000001, - "y": 1001.8070000000001 + "x": 342.536, + "y": 1001.807 }, { "body": null, "index": 17, "isInternal": false, - "x": 347.4490000000001, - "y": 1005.3770000000001 + "x": 347.449, + "y": 1005.377 }, { "body": null, "index": 18, "isInternal": false, - "x": 351.0190000000001, - "y": 1010.2900000000001 + "x": 351.019, + "y": 1010.29 }, { "body": null, "index": 19, "isInternal": false, - "x": 352.89600000000013, - "y": 1016.0660000000001 + "x": 352.896, + "y": 1016.066 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1102.2695840000001, + "area": 1102.26958, "axes": { "#": 7252 }, "bounds": { "#": 7263 }, - "circleRadius": 18.886766975308642, + "circleRadius": 18.88677, "collisionFilter": { "#": 7266 }, @@ -64579,13 +64579,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 150, - "inertia": 773.5342557734692, - "inverseInertia": 0.0012927675698086365, - "inverseMass": 0.9072190818974825, + "inertia": 773.53426, + "inverseInertia": 0.00129, + "inverseMass": 0.90722, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.102269584, + "mass": 1.10227, "motion": 0, "parent": null, "position": { @@ -64649,40 +64649,40 @@ } ], { - "x": -0.9510427750736182, - "y": -0.30905928230724816 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8090652604703894, - "y": -0.5877188139748298 + "x": -0.80907, + "y": -0.58772 }, { - "x": -0.5877188139748298, - "y": -0.8090652604703894 + "x": -0.58772, + "y": -0.80907 }, { - "x": -0.30905928230724816, - "y": -0.9510427750736182 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30905928230724816, - "y": -0.9510427750736182 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5877188139748298, - "y": -0.8090652604703894 + "x": 0.58772, + "y": -0.80907 }, { - "x": 0.8090652604703894, - "y": -0.5877188139748298 + "x": 0.80907, + "y": -0.58772 }, { - "x": 0.9510427750736182, - "y": -0.30905928230724816 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -64697,12 +64697,12 @@ } }, { - "x": 400.2040000000001, + "x": 400.204, "y": 1037.238 }, { - "x": 362.89600000000013, - "y": 999.9300000000001 + "x": 362.896, + "y": 999.93 }, { "category": 1, @@ -64719,16 +64719,16 @@ "y": 0 }, { - "x": 381.5500000000001, - "y": 1018.5840000000001 + "x": 381.55, + "y": 1018.584 }, { "x": 0, "y": 0 }, { - "x": 381.5500000000001, - "y": 1018.5840000000001 + "x": 381.55, + "y": 1018.584 }, { "fillStyle": "#4ECDC4", @@ -64813,140 +64813,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 400.2040000000001, - "y": 1021.5390000000001 + "x": 400.204, + "y": 1021.539 }, { "body": null, "index": 1, "isInternal": false, - "x": 398.3780000000001, + "x": 398.378, "y": 1027.158 }, { "body": null, "index": 2, "isInternal": false, - "x": 394.90500000000014, + "x": 394.905, "y": 1031.939 }, { "body": null, "index": 3, "isInternal": false, - "x": 390.12400000000014, + "x": 390.124, "y": 1035.412 }, { "body": null, "index": 4, "isInternal": false, - "x": 384.5050000000001, + "x": 384.505, "y": 1037.238 }, { "body": null, "index": 5, "isInternal": false, - "x": 378.59500000000014, + "x": 378.595, "y": 1037.238 }, { "body": null, "index": 6, "isInternal": false, - "x": 372.9760000000001, + "x": 372.976, "y": 1035.412 }, { "body": null, "index": 7, "isInternal": false, - "x": 368.1950000000001, + "x": 368.195, "y": 1031.939 }, { "body": null, "index": 8, "isInternal": false, - "x": 364.72200000000015, + "x": 364.722, "y": 1027.158 }, { "body": null, "index": 9, "isInternal": false, - "x": 362.89600000000013, - "y": 1021.5390000000001 + "x": 362.896, + "y": 1021.539 }, { "body": null, "index": 10, "isInternal": false, - "x": 362.89600000000013, + "x": 362.896, "y": 1015.629 }, { "body": null, "index": 11, "isInternal": false, - "x": 364.72200000000015, - "y": 1010.0100000000001 + "x": 364.722, + "y": 1010.01 }, { "body": null, "index": 12, "isInternal": false, - "x": 368.1950000000001, + "x": 368.195, "y": 1005.229 }, { "body": null, "index": 13, "isInternal": false, - "x": 372.9760000000001, - "y": 1001.7560000000001 + "x": 372.976, + "y": 1001.756 }, { "body": null, "index": 14, "isInternal": false, - "x": 378.59500000000014, - "y": 999.9300000000001 + "x": 378.595, + "y": 999.93 }, { "body": null, "index": 15, "isInternal": false, - "x": 384.5050000000001, - "y": 999.9300000000001 + "x": 384.505, + "y": 999.93 }, { "body": null, "index": 16, "isInternal": false, - "x": 390.12400000000014, - "y": 1001.7560000000001 + "x": 390.124, + "y": 1001.756 }, { "body": null, "index": 17, "isInternal": false, - "x": 394.90500000000014, + "x": 394.905, "y": 1005.229 }, { "body": null, "index": 18, "isInternal": false, - "x": 398.3780000000001, - "y": 1010.0100000000001 + "x": 398.378, + "y": 1010.01 }, { "body": null, "index": 19, "isInternal": false, - "x": 400.2040000000001, + "x": 400.204, "y": 1015.629 }, { @@ -64954,14 +64954,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2632.366764, + "area": 2632.36676, "axes": { "#": 7297 }, "bounds": { "#": 7311 }, - "circleRadius": 29.08828446502058, + "circleRadius": 29.08828, "collisionFilter": { "#": 7314 }, @@ -64976,13 +64976,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 151, - "inertia": 4411.448432356564, - "inverseInertia": 0.0002266829172625752, - "inverseMass": 0.37988627332479113, + "inertia": 4411.44843, + "inverseInertia": 0.00023, + "inverseMass": 0.37989, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.632366764, + "mass": 2.63237, "motion": 0, "parent": null, "position": { @@ -65055,52 +65055,52 @@ } ], { - "x": -0.9709506891175149, - "y": -0.2392796675487136 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854404503453225, - "y": -0.4647528471050742 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.7485254861082281, - "y": -0.6631060221762737 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680228558108505, - "y": -0.8230127795341247 + "x": -0.56802, + "y": -0.82301 }, { - "x": -0.3546370394943198, - "y": -0.9350040482365326 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12050598301835631, - "y": -0.9927126009358296 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050598301835631, - "y": -0.9927126009358296 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546370394943198, - "y": -0.9350040482365326 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680228558108505, - "y": -0.8230127795341247 + "x": 0.56802, + "y": -0.82301 }, { - "x": 0.7485254861082281, - "y": -0.6631060221762737 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854404503453225, - "y": -0.4647528471050742 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.9709506891175149, - "y": -0.2392796675487136 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -65115,12 +65115,12 @@ } }, { - "x": 467.9560000000001, + "x": 467.956, "y": 1058.106 }, { - "x": 410.2040000000001, - "y": 999.9300000000001 + "x": 410.204, + "y": 999.93 }, { "category": 1, @@ -65137,7 +65137,7 @@ "y": 0 }, { - "x": 439.0800000000001, + "x": 439.08, "y": 1029.018 }, { @@ -65145,7 +65145,7 @@ "y": 0 }, { - "x": 439.0800000000001, + "x": 439.08, "y": 1029.018 }, { @@ -65249,197 +65249,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 467.9560000000001, + "x": 467.956, "y": 1032.524 }, { "body": null, "index": 1, "isInternal": false, - "x": 466.2780000000001, + "x": 466.278, "y": 1039.333 }, { "body": null, "index": 2, "isInternal": false, - "x": 463.0190000000001, + "x": 463.019, "y": 1045.542 }, { "body": null, "index": 3, "isInternal": false, - "x": 458.3690000000001, - "y": 1050.7910000000002 + "x": 458.369, + "y": 1050.791 }, { "body": null, "index": 4, "isInternal": false, - "x": 452.59800000000007, - "y": 1054.7740000000001 + "x": 452.598, + "y": 1054.774 }, { "body": null, "index": 5, "isInternal": false, - "x": 446.0410000000001, + "x": 446.041, "y": 1057.261 }, { "body": null, "index": 6, "isInternal": false, - "x": 439.0800000000001, + "x": 439.08, "y": 1058.106 }, { "body": null, "index": 7, "isInternal": false, - "x": 432.1190000000001, + "x": 432.119, "y": 1057.261 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.5620000000001, - "y": 1054.7740000000001 + "x": 425.562, + "y": 1054.774 }, { "body": null, "index": 9, "isInternal": false, - "x": 419.7910000000001, - "y": 1050.7910000000002 + "x": 419.791, + "y": 1050.791 }, { "body": null, "index": 10, "isInternal": false, - "x": 415.1410000000001, + "x": 415.141, "y": 1045.542 }, { "body": null, "index": 11, "isInternal": false, - "x": 411.8820000000001, + "x": 411.882, "y": 1039.333 }, { "body": null, "index": 12, "isInternal": false, - "x": 410.2040000000001, + "x": 410.204, "y": 1032.524 }, { "body": null, "index": 13, "isInternal": false, - "x": 410.2040000000001, - "y": 1025.5120000000002 + "x": 410.204, + "y": 1025.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 411.8820000000001, + "x": 411.882, "y": 1018.703 }, { "body": null, "index": 15, "isInternal": false, - "x": 415.1410000000001, + "x": 415.141, "y": 1012.494 }, { "body": null, "index": 16, "isInternal": false, - "x": 419.7910000000001, + "x": 419.791, "y": 1007.245 }, { "body": null, "index": 17, "isInternal": false, - "x": 425.5620000000001, - "y": 1003.2620000000001 + "x": 425.562, + "y": 1003.262 }, { "body": null, "index": 18, "isInternal": false, - "x": 432.1190000000001, + "x": 432.119, "y": 1000.775 }, { "body": null, "index": 19, "isInternal": false, - "x": 439.0800000000001, - "y": 999.9300000000001 + "x": 439.08, + "y": 999.93 }, { "body": null, "index": 20, "isInternal": false, - "x": 446.0410000000001, + "x": 446.041, "y": 1000.775 }, { "body": null, "index": 21, "isInternal": false, - "x": 452.59800000000007, - "y": 1003.2620000000001 + "x": 452.598, + "y": 1003.262 }, { "body": null, "index": 22, "isInternal": false, - "x": 458.3690000000001, + "x": 458.369, "y": 1007.245 }, { "body": null, "index": 23, "isInternal": false, - "x": 463.0190000000001, + "x": 463.019, "y": 1012.494 }, { "body": null, "index": 24, "isInternal": false, - "x": 466.2780000000001, + "x": 466.278, "y": 1018.703 }, { "body": null, "index": 25, "isInternal": false, - "x": 467.9560000000001, - "y": 1025.5120000000002 + "x": 467.956, + "y": 1025.512 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1264.582704, + "area": 1264.5827, "axes": { "#": 7351 }, "bounds": { "#": 7363 }, - "circleRadius": 20.200295781893004, + "circleRadius": 20.2003, "collisionFilter": { "#": 7366 }, @@ -65454,13 +65454,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 152, - "inertia": 1018.1008680363917, - "inverseInertia": 0.0009822209482334469, - "inverseMass": 0.7907746933726844, + "inertia": 1018.10087, + "inverseInertia": 0.00098, + "inverseMass": 0.79077, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.264582704, + "mass": 1.26458, "motion": 0, "parent": null, "position": { @@ -65527,44 +65527,44 @@ } ], { - "x": -0.9594900287513833, - "y": -0.2817425859302596 + "x": -0.95949, + "y": -0.28174 }, { - "x": -0.8411671723221078, - "y": -0.5407751734386752 + "x": -0.84117, + "y": -0.54078 }, { - "x": -0.6549636434241192, - "y": -0.7556603905145507 + "x": -0.65496, + "y": -0.75566 }, { - "x": -0.4153486707992586, - "y": -0.909662289899548 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.14227355372381703, - "y": -0.9898273768242603 + "x": -0.14227, + "y": -0.98983 }, { - "x": 0.14227355372381703, - "y": -0.9898273768242603 + "x": 0.14227, + "y": -0.98983 }, { - "x": 0.4153486707992586, - "y": -0.909662289899548 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6549636434241192, - "y": -0.7556603905145507 + "x": 0.65496, + "y": -0.75566 }, { - "x": 0.8411671723221078, - "y": -0.5407751734386752 + "x": 0.84117, + "y": -0.54078 }, { - "x": 0.9594900287513833, - "y": -0.2817425859302596 + "x": 0.95949, + "y": -0.28174 }, { "x": 1, @@ -65579,12 +65579,12 @@ } }, { - "x": 517.9460000000001, - "y": 1040.3300000000002 + "x": 517.946, + "y": 1040.33 }, { - "x": 477.9560000000001, - "y": 999.9300000000001 + "x": 477.956, + "y": 999.93 }, { "category": 1, @@ -65601,16 +65601,16 @@ "y": 0 }, { - "x": 497.9510000000001, - "y": 1020.1300000000001 + "x": 497.951, + "y": 1020.13 }, { "x": 0, "y": 0 }, { - "x": 497.9510000000001, - "y": 1020.1300000000001 + "x": 497.951, + "y": 1020.13 }, { "fillStyle": "#FF6B6B", @@ -65701,141 +65701,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 517.9460000000001, - "y": 1023.0050000000001 + "x": 517.946, + "y": 1023.005 }, { "body": null, "index": 1, "isInternal": false, "x": 516.326, - "y": 1028.5220000000002 + "y": 1028.522 }, { "body": null, "index": 2, "isInternal": false, - "x": 513.2170000000001, - "y": 1033.3580000000002 + "x": 513.217, + "y": 1033.358 }, { "body": null, "index": 3, "isInternal": false, - "x": 508.87200000000007, - "y": 1037.1240000000003 + "x": 508.872, + "y": 1037.124 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.64200000000005, - "y": 1039.5120000000002 + "x": 503.642, + "y": 1039.512 }, { "body": null, "index": 5, "isInternal": false, - "x": 497.9510000000001, - "y": 1040.3300000000002 + "x": 497.951, + "y": 1040.33 }, { "body": null, "index": 6, "isInternal": false, - "x": 492.2600000000001, - "y": 1039.5120000000002 + "x": 492.26, + "y": 1039.512 }, { "body": null, "index": 7, "isInternal": false, - "x": 487.0300000000001, - "y": 1037.1240000000003 + "x": 487.03, + "y": 1037.124 }, { "body": null, "index": 8, "isInternal": false, - "x": 482.68500000000006, - "y": 1033.3580000000002 + "x": 482.685, + "y": 1033.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 479.5760000000001, - "y": 1028.5220000000002 + "x": 479.576, + "y": 1028.522 }, { "body": null, "index": 10, "isInternal": false, - "x": 477.9560000000001, - "y": 1023.0050000000001 + "x": 477.956, + "y": 1023.005 }, { "body": null, "index": 11, "isInternal": false, - "x": 477.9560000000001, - "y": 1017.2550000000001 + "x": 477.956, + "y": 1017.255 }, { "body": null, "index": 12, "isInternal": false, - "x": 479.5760000000001, + "x": 479.576, "y": 1011.738 }, { "body": null, "index": 13, "isInternal": false, - "x": 482.68500000000006, - "y": 1006.9020000000002 + "x": 482.685, + "y": 1006.902 }, { "body": null, "index": 14, "isInternal": false, - "x": 487.0300000000001, - "y": 1003.1360000000001 + "x": 487.03, + "y": 1003.136 }, { "body": null, "index": 15, "isInternal": false, - "x": 492.2600000000001, - "y": 1000.7480000000002 + "x": 492.26, + "y": 1000.748 }, { "body": null, "index": 16, "isInternal": false, - "x": 497.9510000000001, - "y": 999.9300000000001 + "x": 497.951, + "y": 999.93 }, { "body": null, "index": 17, "isInternal": false, - "x": 503.64200000000005, - "y": 1000.7480000000002 + "x": 503.642, + "y": 1000.748 }, { "body": null, "index": 18, "isInternal": false, - "x": 508.87200000000007, - "y": 1003.1360000000001 + "x": 508.872, + "y": 1003.136 }, { "body": null, "index": 19, "isInternal": false, - "x": 513.2170000000001, - "y": 1006.9020000000002 + "x": 513.217, + "y": 1006.902 }, { "body": null, @@ -65848,22 +65848,22 @@ "body": null, "index": 21, "isInternal": false, - "x": 517.9460000000001, - "y": 1017.2550000000001 + "x": 517.946, + "y": 1017.255 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2530.374598000001, + "area": 2530.3746, "axes": { "#": 7399 }, "bounds": { "#": 7413 }, - "circleRadius": 28.51909722222222, + "circleRadius": 28.5191, "collisionFilter": { "#": 7416 }, @@ -65878,13 +65878,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 153, - "inertia": 4076.2240565460306, - "inverseInertia": 0.00024532508177368083, - "inverseMass": 0.39519840295203584, + "inertia": 4076.22406, + "inverseInertia": 0.00025, + "inverseMass": 0.3952, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.5303745980000008, + "mass": 2.53037, "motion": 0, "parent": null, "position": { @@ -65957,52 +65957,52 @@ } ], { - "x": -0.9709499198104373, - "y": -0.23928278922669202 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854697240415134, - "y": -0.4646970710106168 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7485077289974239, - "y": -0.6631260661677528 + "x": -0.74851, + "y": -0.66313 }, { - "x": -0.567953853605749, - "y": -0.8230603988616991 + "x": -0.56795, + "y": -0.82306 }, { - "x": -0.35462792443102925, - "y": -0.9350075054317694 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12057895971706822, - "y": -0.9927037395283396 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057895971706822, - "y": -0.9927037395283396 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.35462792443102925, - "y": -0.9350075054317694 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.567953853605749, - "y": -0.8230603988616991 + "x": 0.56795, + "y": -0.82306 }, { - "x": 0.7485077289974239, - "y": -0.6631260661677528 + "x": 0.74851, + "y": -0.66313 }, { - "x": 0.8854697240415134, - "y": -0.4646970710106168 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.9709499198104373, - "y": -0.23928278922669202 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -66017,12 +66017,12 @@ } }, { - "x": 584.5680000000002, + "x": 584.568, "y": 1056.968 }, { - "x": 527.9460000000001, - "y": 999.9300000000001 + "x": 527.946, + "y": 999.93 }, { "category": 1, @@ -66039,7 +66039,7 @@ "y": 0 }, { - "x": 556.2570000000002, + "x": 556.257, "y": 1028.449 }, { @@ -66047,7 +66047,7 @@ "y": 0 }, { - "x": 556.2570000000002, + "x": 556.257, "y": 1028.449 }, { @@ -66151,182 +66151,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 584.5680000000002, - "y": 1031.8870000000002 + "x": 584.568, + "y": 1031.887 }, { "body": null, "index": 1, "isInternal": false, - "x": 582.9230000000002, - "y": 1038.5620000000001 + "x": 582.923, + "y": 1038.562 }, { "body": null, "index": 2, "isInternal": false, - "x": 579.7280000000002, + "x": 579.728, "y": 1044.65 }, { "body": null, "index": 3, "isInternal": false, - "x": 575.1690000000002, + "x": 575.169, "y": 1049.796 }, { "body": null, "index": 4, "isInternal": false, - "x": 569.5100000000002, + "x": 569.51, "y": 1053.701 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.0820000000002, - "y": 1056.1390000000001 + "x": 563.082, + "y": 1056.139 }, { "body": null, "index": 6, "isInternal": false, - "x": 556.2570000000002, + "x": 556.257, "y": 1056.968 }, { "body": null, "index": 7, "isInternal": false, - "x": 549.4320000000001, - "y": 1056.1390000000001 + "x": 549.432, + "y": 1056.139 }, { "body": null, "index": 8, "isInternal": false, - "x": 543.0040000000001, + "x": 543.004, "y": 1053.701 }, { "body": null, "index": 9, "isInternal": false, - "x": 537.3450000000003, + "x": 537.345, "y": 1049.796 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.7860000000002, + "x": 532.786, "y": 1044.65 }, { "body": null, "index": 11, "isInternal": false, - "x": 529.5910000000001, - "y": 1038.5620000000001 + "x": 529.591, + "y": 1038.562 }, { "body": null, "index": 12, "isInternal": false, - "x": 527.9460000000001, - "y": 1031.8870000000002 + "x": 527.946, + "y": 1031.887 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.9460000000001, + "x": 527.946, "y": 1025.011 }, { "body": null, "index": 14, "isInternal": false, - "x": 529.5910000000001, + "x": 529.591, "y": 1018.336 }, { "body": null, "index": 15, "isInternal": false, - "x": 532.7860000000002, + "x": 532.786, "y": 1012.248 }, { "body": null, "index": 16, "isInternal": false, - "x": 537.3450000000003, - "y": 1007.1020000000001 + "x": 537.345, + "y": 1007.102 }, { "body": null, "index": 17, "isInternal": false, - "x": 543.0040000000001, - "y": 1003.1970000000001 + "x": 543.004, + "y": 1003.197 }, { "body": null, "index": 18, "isInternal": false, - "x": 549.4320000000001, + "x": 549.432, "y": 1000.759 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.2570000000002, - "y": 999.9300000000001 + "x": 556.257, + "y": 999.93 }, { "body": null, "index": 20, "isInternal": false, - "x": 563.0820000000002, + "x": 563.082, "y": 1000.759 }, { "body": null, "index": 21, "isInternal": false, - "x": 569.5100000000002, - "y": 1003.1970000000001 + "x": 569.51, + "y": 1003.197 }, { "body": null, "index": 22, "isInternal": false, - "x": 575.1690000000002, - "y": 1007.1020000000001 + "x": 575.169, + "y": 1007.102 }, { "body": null, "index": 23, "isInternal": false, - "x": 579.7280000000002, + "x": 579.728, "y": 1012.248 }, { "body": null, "index": 24, "isInternal": false, - "x": 582.9230000000002, + "x": 582.923, "y": 1018.336 }, { "body": null, "index": 25, "isInternal": false, - "x": 584.5680000000002, + "x": 584.568, "y": 1025.011 }, { @@ -66334,14 +66334,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2459.8208880000007, + "area": 2459.82089, "axes": { "#": 7453 }, "bounds": { "#": 7467 }, - "circleRadius": 28.118762860082306, + "circleRadius": 28.11876, "collisionFilter": { "#": 7470 }, @@ -66356,13 +66356,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 154, - "inertia": 3852.0807238730777, - "inverseInertia": 0.00025959995952383604, - "inverseMass": 0.4065336646576195, + "inertia": 3852.08072, + "inverseInertia": 0.00026, + "inverseMass": 0.40653, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.4598208880000008, + "mass": 2.45982, "motion": 0, "parent": null, "position": { @@ -66435,52 +66435,52 @@ } ], { - "x": -0.970918412420747, - "y": -0.2394106021511506 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8854616473223555, - "y": -0.46471246069067335 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485233238858229, - "y": -0.6631084629221072 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.5680741729531639, - "y": -0.8229773593626856 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3546453397852063, - "y": -0.9350008999827945 + "x": -0.35465, + "y": -0.935 }, { - "x": -0.12052962549589565, - "y": -0.9927097306754977 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052962549589565, - "y": -0.9927097306754977 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3546453397852063, - "y": -0.9350008999827945 + "x": 0.35465, + "y": -0.935 }, { - "x": 0.5680741729531639, - "y": -0.8229773593626856 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485233238858229, - "y": -0.6631084629221072 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854616473223555, - "y": -0.46471246069067335 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.970918412420747, - "y": -0.2394106021511506 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -66495,11 +66495,11 @@ } }, { - "x": 650.3960000000002, + "x": 650.396, "y": 1056.168 }, { - "x": 594.5680000000002, + "x": 594.568, "y": 999.93 }, { @@ -66517,7 +66517,7 @@ "y": 0 }, { - "x": 622.4820000000002, + "x": 622.482, "y": 1028.049 }, { @@ -66525,7 +66525,7 @@ "y": 0 }, { - "x": 622.4820000000002, + "x": 622.482, "y": 1028.049 }, { @@ -66629,183 +66629,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 650.3960000000002, + "x": 650.396, "y": 1031.438 }, { "body": null, "index": 1, "isInternal": false, - "x": 648.7730000000003, + "x": 648.773, "y": 1038.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 645.6230000000002, + "x": 645.623, "y": 1044.022 }, { "body": null, "index": 3, "isInternal": false, - "x": 641.1280000000002, + "x": 641.128, "y": 1049.096 }, { "body": null, "index": 4, "isInternal": false, - "x": 635.5490000000002, + "x": 635.549, "y": 1052.947 }, { "body": null, "index": 5, "isInternal": false, - "x": 629.2110000000002, - "y": 1055.3509999999999 + "x": 629.211, + "y": 1055.351 }, { "body": null, "index": 6, "isInternal": false, - "x": 622.4820000000002, + "x": 622.482, "y": 1056.168 }, { "body": null, "index": 7, "isInternal": false, - "x": 615.7530000000002, - "y": 1055.3509999999999 + "x": 615.753, + "y": 1055.351 }, { "body": null, "index": 8, "isInternal": false, - "x": 609.4150000000002, + "x": 609.415, "y": 1052.947 }, { "body": null, "index": 9, "isInternal": false, - "x": 603.8360000000002, + "x": 603.836, "y": 1049.096 }, { "body": null, "index": 10, "isInternal": false, - "x": 599.3410000000002, + "x": 599.341, "y": 1044.022 }, { "body": null, "index": 11, "isInternal": false, - "x": 596.1910000000001, + "x": 596.191, "y": 1038.02 }, { "body": null, "index": 12, "isInternal": false, - "x": 594.5680000000002, + "x": 594.568, "y": 1031.438 }, { "body": null, "index": 13, "isInternal": false, - "x": 594.5680000000002, - "y": 1024.6599999999999 + "x": 594.568, + "y": 1024.66 }, { "body": null, "index": 14, "isInternal": false, - "x": 596.1910000000001, + "x": 596.191, "y": 1018.078 }, { "body": null, "index": 15, "isInternal": false, - "x": 599.3410000000002, + "x": 599.341, "y": 1012.076 }, { "body": null, "index": 16, "isInternal": false, - "x": 603.8360000000002, + "x": 603.836, "y": 1007.002 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.4150000000002, + "x": 609.415, "y": 1003.151 }, { "body": null, "index": 18, "isInternal": false, - "x": 615.7530000000002, + "x": 615.753, "y": 1000.747 }, { "body": null, "index": 19, "isInternal": false, - "x": 622.4820000000002, + "x": 622.482, "y": 999.93 }, { "body": null, "index": 20, "isInternal": false, - "x": 629.2110000000002, + "x": 629.211, "y": 1000.747 }, { "body": null, "index": 21, "isInternal": false, - "x": 635.5490000000002, + "x": 635.549, "y": 1003.151 }, { "body": null, "index": 22, "isInternal": false, - "x": 641.1280000000002, + "x": 641.128, "y": 1007.002 }, { "body": null, "index": 23, "isInternal": false, - "x": 645.6230000000002, + "x": 645.623, "y": 1012.076 }, { "body": null, "index": 24, "isInternal": false, - "x": 648.7730000000003, + "x": 648.773, "y": 1018.078 }, { "body": null, "index": 25, "isInternal": false, - "x": 650.3960000000002, - "y": 1024.6599999999999 + "x": 650.396, + "y": 1024.66 }, [], [], diff --git a/test/browser/refs/ballPool/ballPool-10.json b/test/browser/refs/ballPool/ballPool-10.json index 680572e1..3422a418 100644 --- a/test/browser/refs/ballPool/ballPool-10.json +++ b/test/browser/refs/ballPool/ballPool-10.json @@ -868,10 +868,10 @@ "y": 605.25 }, { - "angle": -0.07328585498342383, - "anglePrev": -0.0594578049385605, - "angularSpeed": 0.012369990512984293, - "angularVelocity": -0.013984200710894047, + "angle": -0.07329, + "anglePrev": -0.05946, + "angularSpeed": 0.01237, + "angularVelocity": -0.01398, "area": 4676.58, "axes": { "#": 91 @@ -893,9 +893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 155, - "inertia": 16835.842152547684, - "inverseInertia": 0.00005939708812538819, - "inverseMass": 0.21383147513781436, + "inertia": 16835.84215, + "inverseInertia": 0.00006, + "inverseMass": 0.21383, "isSleeping": false, "isStatic": false, "label": "Polygon Body", @@ -921,7 +921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9304403174776642, + "speed": 0.93044, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -945,16 +945,16 @@ } ], { - "x": -0.4352508507900517, - "y": 0.9003092229265098 + "x": -0.43525, + "y": 0.90031 }, { - "x": -0.5620717913617084, - "y": -0.8270884483266829 + "x": -0.56207, + "y": -0.82709 }, { - "x": 0.9973157934174516, - "y": -0.07322027178397791 + "x": 0.99732, + "y": -0.07322 }, { "max": { @@ -965,12 +965,12 @@ } }, { - "x": 226.91983175500792, - "y": 580.7333949464995 + "x": 226.91983, + "y": 580.73339 }, { - "x": 132.74705742092746, - "y": 476.3854913601637 + "x": 132.74706, + "y": 476.38549 }, { "category": 1, @@ -987,16 +987,16 @@ "y": 0 }, { - "x": 193.19568619004536, - "y": 530.4046227712405 + "x": 193.19569, + "y": 530.40462 }, { "x": 0, "y": 0 }, { - "x": 193.9135821654509, - "y": 529.9390119404924 + "x": 193.91358, + "y": 529.93901 }, { "endCol": 4, @@ -1019,8 +1019,8 @@ "yScale": 1 }, { - "x": -0.7361493779566786, - "y": 0.4582694080992269 + "x": -0.73615, + "y": 0.45827 }, [ { @@ -1037,29 +1037,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 226.91983175500792, - "y": 580.0305378752787 + "x": 226.91983, + "y": 580.03054 }, { "body": null, "index": 1, "isInternal": false, - "x": 133.35673858499828, - "y": 534.7978390782794 + "x": 133.35674, + "y": 534.79784 }, { "body": null, "index": 2, "isInternal": false, - "x": 219.3104882301299, - "y": 476.3854913601637 + "x": 219.31049, + "y": 476.38549 }, { - "angle": 0.019534519811095833, - "anglePrev": 0.017613588340702403, - "angularSpeed": 0.003405216253869354, - "angularVelocity": 0.0019766763607237496, - "area": 8559.455977, + "angle": 0.01953, + "anglePrev": 0.01761, + "angularSpeed": 0.00341, + "angularVelocity": 0.00198, + "area": 8559.45598, "axes": { "#": 113 }, @@ -1080,13 +1080,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 156, - "inertia": 47433.138478766494, - "inverseInertia": 0.000021082307265998248, - "inverseMass": 0.1168298549215145, + "inertia": 47433.13848, + "inverseInertia": 0.00002, + "inverseMass": 0.11683, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 8.559455976999999, + "mass": 8.55946, "motion": 0, "parent": null, "position": { @@ -1108,7 +1108,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4640663512189906, + "speed": 0.46407, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1138,24 +1138,24 @@ } ], { - "x": 0.2903773911913494, - "y": 0.9569122063621646 + "x": 0.29038, + "y": 0.95691 }, { - "x": -0.8203420200561661, - "y": 0.5718732115864225 + "x": -0.82034, + "y": 0.57187 }, { - "x": -0.7973791651272966, - "y": -0.6034786384130727 + "x": -0.79738, + "y": -0.60348 }, { - "x": 0.3275319356141033, - "y": -0.944840108776548 + "x": 0.32753, + "y": -0.94484 }, { - "x": 0.9998092073351572, - "y": 0.019533277447595997 + "x": 0.99981, + "y": 0.01953 }, { "max": { @@ -1166,12 +1166,12 @@ } }, { - "x": 445.75369088700097, - "y": 580.9286746486783 + "x": 445.75369, + "y": 580.92867 }, { - "x": 336.5232873535997, - "y": 466.3608686717362 + "x": 336.52329, + "y": 466.36087 }, { "category": 1, @@ -1188,16 +1188,16 @@ "y": 0 }, { - "x": 396.5118610022895, - "y": 523.77514838141 + "x": 396.51186, + "y": 523.77515 }, { "x": 0, "y": 0 }, { - "x": 396.26992844420676, - "y": 523.6966499110498 + "x": 396.26993, + "y": 523.69665 }, { "endCol": 9, @@ -1220,8 +1220,8 @@ "yScale": 1 }, { - "x": 0.2457874418076358, - "y": 0.07340499435190395 + "x": 0.24579, + "y": 0.0734 }, [ { @@ -1244,42 +1244,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 444.3546984312207, - "y": 559.9835841027307 + "x": 444.3547, + "y": 559.98358 }, { "body": null, "index": 1, "isInternal": false, - "x": 376.8597498695159, - "y": 580.4650942680681 + "x": 376.85975, + "y": 580.46509 }, { "body": null, "index": 2, "isInternal": false, - "x": 336.5232873535997, - "y": 522.6031513202021 + "x": 336.52329, + "y": 522.60315 }, { "body": null, "index": 3, "isInternal": false, - "x": 379.08900469150024, - "y": 466.3608686717362 + "x": 379.089, + "y": 466.36087 }, { "body": null, "index": 4, "isInternal": false, - "x": 445.7324586227093, - "y": 489.4630414725531 + "x": 445.73246, + "y": 489.46304 }, { - "angle": -0.00042462434054575736, - "anglePrev": -0.00039623089146740886, - "angularSpeed": 0.00008959057187586456, - "angularVelocity": 0.000032525374177576935, + "angle": -0.00042, + "anglePrev": -0.0004, + "angularSpeed": 0.00009, + "angularVelocity": 0.00003, "area": 6400, "axes": { "#": 139 @@ -1301,8 +1301,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 157, - "inertia": 27306.666666666668, - "inverseInertia": 0.00003662109375, + "inertia": 27306.66667, + "inverseInertia": 0.00004, "inverseMass": 0.15625, "isSleeping": false, "isStatic": false, @@ -1329,7 +1329,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.27756284287886035, + "speed": 0.27756, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1350,12 +1350,12 @@ } ], { - "x": 0.00042462432778538333, - "y": 0.999999909847086 + "x": 0.00042, + "y": 1 }, { - "x": -0.999999909847086, - "y": 0.00042462432778538333 + "x": -1, + "y": 0.00042 }, { "max": { @@ -1366,12 +1366,12 @@ } }, { - "x": 648.8255262526461, - "y": 580.0908141062209 + "x": 648.82553, + "y": 580.09081 }, { - "x": 568.7892324247995, - "y": 499.7792983182962 + "x": 568.78923, + "y": 499.7793 }, { "category": 1, @@ -1388,16 +1388,16 @@ "y": 0 }, { - "x": 608.8062137917943, - "y": 539.7962796852913 + "x": 608.80621, + "y": 539.79628 }, { "x": 0, "y": 0 }, { - "x": 608.8071023214394, - "y": 539.7961651364593 + "x": 608.8071, + "y": 539.79617 }, { "endCol": 13, @@ -1420,8 +1420,8 @@ "yScale": 1 }, { - "x": 0.005626604685403436, - "y": 0.00014342948850298853 + "x": 0.00563, + "y": 0.00014 }, [ { @@ -1441,29 +1441,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 568.7892324247995, - "y": 499.81326826451897 + "x": 568.78923, + "y": 499.81327 }, { "body": null, "index": 1, "isInternal": false, - "x": 648.7892252125664, - "y": 499.7792983182962 + "x": 648.78923, + "y": 499.7793 }, { "body": null, "index": 2, "isInternal": false, - "x": 648.8231951587892, - "y": 579.7792911060634 + "x": 648.8232, + "y": 579.77929 }, { "body": null, "index": 3, "isInternal": false, - "x": 568.8232023710223, - "y": 579.8132610522863 + "x": 568.8232, + "y": 579.81326 }, { "max": { @@ -1959,14 +1959,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1020.1722720000001, + "area": 1020.17227, "axes": { "#": 167 }, "bounds": { "#": 178 }, - "circleRadius": 18.169817386831276, + "circleRadius": 18.16982, "collisionFilter": { "#": 181 }, @@ -1981,13 +1981,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 662.5992415979618, - "inverseInertia": 0.001509207884977869, - "inverseMass": 0.980226602355646, + "inertia": 662.59924, + "inverseInertia": 0.00151, + "inverseMass": 0.98023, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0201722720000002, + "mass": 1.02017, "motion": 0, "parent": null, "position": { @@ -2009,7 +2009,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2054,40 +2054,40 @@ } ], { - "x": -0.9510482862449724, - "y": -0.3090423227172957 + "x": -0.95105, + "y": -0.30904 }, { - "x": -0.8090478688341852, - "y": -0.5877427548978066 + "x": -0.80905, + "y": -0.58774 }, { - "x": -0.5877427548978066, - "y": -0.8090478688341852 + "x": -0.58774, + "y": -0.80905 }, { - "x": -0.3090423227172957, - "y": -0.9510482862449724 + "x": -0.30904, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.3090423227172957, - "y": -0.9510482862449724 + "x": 0.30904, + "y": -0.95105 }, { - "x": 0.5877427548978066, - "y": -0.8090478688341852 + "x": 0.58774, + "y": -0.80905 }, { - "x": 0.8090478688341852, - "y": -0.5877427548978066 + "x": 0.80905, + "y": -0.58774 }, { - "x": 0.9510482862449724, - "y": -0.3090423227172957 + "x": 0.95105, + "y": -0.30904 }, { "x": 1, @@ -2103,11 +2103,11 @@ }, { "x": 135.892, - "y": 103.62775476702572 + "y": 103.62775 }, { "x": 100, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -2125,7 +2125,7 @@ }, { "x": 117.946, - "y": 85.68175476702572 + "y": 85.68175 }, { "x": 0, @@ -2133,7 +2133,7 @@ }, { "x": 117.946, - "y": 82.77448405199007 + "y": 82.77448 }, { "endCol": 2, @@ -2157,7 +2157,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2226,154 +2226,154 @@ "index": 0, "isInternal": false, "x": 135.892, - "y": 88.52375476702572 + "y": 88.52375 }, { "body": null, "index": 1, "isInternal": false, "x": 134.135, - "y": 93.93075476702572 + "y": 93.93075 }, { "body": null, "index": 2, "isInternal": false, - "x": 130.79399999999998, - "y": 98.52975476702572 + "x": 130.794, + "y": 98.52975 }, { "body": null, "index": 3, "isInternal": false, "x": 126.195, - "y": 101.87075476702572 + "y": 101.87075 }, { "body": null, "index": 4, "isInternal": false, "x": 120.788, - "y": 103.62775476702572 + "y": 103.62775 }, { "body": null, "index": 5, "isInternal": false, "x": 115.104, - "y": 103.62775476702572 + "y": 103.62775 }, { "body": null, "index": 6, "isInternal": false, "x": 109.697, - "y": 101.87075476702572 + "y": 101.87075 }, { "body": null, "index": 7, "isInternal": false, "x": 105.098, - "y": 98.52975476702572 + "y": 98.52975 }, { "body": null, "index": 8, "isInternal": false, "x": 101.757, - "y": 93.93075476702572 + "y": 93.93075 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 88.52375476702572 + "y": 88.52375 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 82.83975476702572 + "y": 82.83975 }, { "body": null, "index": 11, "isInternal": false, "x": 101.757, - "y": 77.43275476702573 + "y": 77.43275 }, { "body": null, "index": 12, "isInternal": false, "x": 105.098, - "y": 72.83375476702572 + "y": 72.83375 }, { "body": null, "index": 13, "isInternal": false, "x": 109.697, - "y": 69.49275476702573 + "y": 69.49275 }, { "body": null, "index": 14, "isInternal": false, "x": 115.104, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 15, "isInternal": false, "x": 120.788, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 16, "isInternal": false, "x": 126.195, - "y": 69.49275476702573 + "y": 69.49275 }, { "body": null, "index": 17, "isInternal": false, - "x": 130.79399999999998, - "y": 72.83375476702572 + "x": 130.794, + "y": 72.83375 }, { "body": null, "index": 18, "isInternal": false, "x": 134.135, - "y": 77.43275476702573 + "y": 77.43275 }, { "body": null, "index": 19, "isInternal": false, "x": 135.892, - "y": 82.83975476702572 + "y": 82.83975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1671.8754580000002, + "area": 1671.87546, "axes": { "#": 213 }, "bounds": { "#": 226 }, - "circleRadius": 23.201581790123456, + "circleRadius": 23.20158, "collisionFilter": { "#": 229 }, @@ -2388,13 +2388,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1779.5057490627585, - "inverseInertia": 0.0005619537899929159, - "inverseMass": 0.5981306772672298, + "inertia": 1779.50575, + "inverseInertia": 0.00056, + "inverseMass": 0.59813, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6718754580000001, + "mass": 1.67188, "motion": 0, "parent": null, "position": { @@ -2416,7 +2416,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2467,48 +2467,48 @@ } ], { - "x": -0.9659163631346784, - "y": -0.25885435949327934 + "x": -0.96592, + "y": -0.25885 }, { - "x": -0.8660398575651125, - "y": -0.4999749644818225 + "x": -0.86604, + "y": -0.49997 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999749644818225, - "y": -0.8660398575651125 + "x": -0.49997, + "y": -0.86604 }, { - "x": -0.25885435949327934, - "y": -0.9659163631346784 + "x": -0.25885, + "y": -0.96592 }, { "x": 0, "y": -1 }, { - "x": 0.25885435949327934, - "y": -0.9659163631346784 + "x": 0.25885, + "y": -0.96592 }, { - "x": 0.4999749644818225, - "y": -0.8660398575651125 + "x": 0.49997, + "y": -0.86604 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660398575651125, - "y": -0.4999749644818225 + "x": 0.86604, + "y": -0.49997 }, { - "x": 0.9659163631346784, - "y": -0.25885435949327934 + "x": 0.96592, + "y": -0.25885 }, { "x": 1, @@ -2523,12 +2523,12 @@ } }, { - "x": 191.89799999999997, - "y": 113.74175476702572 + "x": 191.898, + "y": 113.74175 }, { "x": 145.892, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -2545,16 +2545,16 @@ "y": 0 }, { - "x": 168.89499999999998, - "y": 90.73875476702572 + "x": 168.895, + "y": 90.73875 }, { "x": 0, "y": 0 }, { - "x": 168.89499999999998, - "y": 87.83148405199007 + "x": 168.895, + "y": 87.83148 }, { "endCol": 3, @@ -2578,7 +2578,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2658,183 +2658,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 191.89799999999997, - "y": 93.76675476702573 + "x": 191.898, + "y": 93.76675 }, { "body": null, "index": 1, "isInternal": false, - "x": 190.32999999999998, - "y": 99.61775476702573 + "x": 190.33, + "y": 99.61775 }, { "body": null, "index": 2, "isInternal": false, "x": 187.302, - "y": 104.86275476702572 + "y": 104.86275 }, { "body": null, "index": 3, "isInternal": false, - "x": 183.01899999999998, - "y": 109.14575476702572 + "x": 183.019, + "y": 109.14575 }, { "body": null, "index": 4, "isInternal": false, - "x": 177.77399999999997, - "y": 112.17375476702573 + "x": 177.774, + "y": 112.17375 }, { "body": null, "index": 5, "isInternal": false, - "x": 171.92299999999997, - "y": 113.74175476702572 + "x": 171.923, + "y": 113.74175 }, { "body": null, "index": 6, "isInternal": false, "x": 165.867, - "y": 113.74175476702572 + "y": 113.74175 }, { "body": null, "index": 7, "isInternal": false, "x": 160.016, - "y": 112.17375476702573 + "y": 112.17375 }, { "body": null, "index": 8, "isInternal": false, "x": 154.771, - "y": 109.14575476702572 + "y": 109.14575 }, { "body": null, "index": 9, "isInternal": false, "x": 150.488, - "y": 104.86275476702572 + "y": 104.86275 }, { "body": null, "index": 10, "isInternal": false, - "x": 147.45999999999998, - "y": 99.61775476702573 + "x": 147.46, + "y": 99.61775 }, { "body": null, "index": 11, "isInternal": false, "x": 145.892, - "y": 93.76675476702573 + "y": 93.76675 }, { "body": null, "index": 12, "isInternal": false, "x": 145.892, - "y": 87.71075476702572 + "y": 87.71075 }, { "body": null, "index": 13, "isInternal": false, - "x": 147.45999999999998, - "y": 81.85975476702572 + "x": 147.46, + "y": 81.85975 }, { "body": null, "index": 14, "isInternal": false, "x": 150.488, - "y": 76.61475476702573 + "y": 76.61475 }, { "body": null, "index": 15, "isInternal": false, "x": 154.771, - "y": 72.33175476702573 + "y": 72.33175 }, { "body": null, "index": 16, "isInternal": false, "x": 160.016, - "y": 69.30375476702574 + "y": 69.30375 }, { "body": null, "index": 17, "isInternal": false, "x": 165.867, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 18, "isInternal": false, - "x": 171.92299999999997, - "y": 67.73575476702574 + "x": 171.923, + "y": 67.73575 }, { "body": null, "index": 19, "isInternal": false, - "x": 177.77399999999997, - "y": 69.30375476702574 + "x": 177.774, + "y": 69.30375 }, { "body": null, "index": 20, "isInternal": false, - "x": 183.01899999999998, - "y": 72.33175476702573 + "x": 183.019, + "y": 72.33175 }, { "body": null, "index": 21, "isInternal": false, "x": 187.302, - "y": 76.61475476702573 + "y": 76.61475 }, { "body": null, "index": 22, "isInternal": false, - "x": 190.32999999999998, - "y": 81.85975476702572 + "x": 190.33, + "y": 81.85975 }, { "body": null, "index": 23, "isInternal": false, - "x": 191.89799999999997, - "y": 87.71075476702572 + "x": 191.898, + "y": 87.71075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2317.307802, + "area": 2317.3078, "axes": { "#": 265 }, "bounds": { "#": 279 }, - "circleRadius": 27.29198816872428, + "circleRadius": 27.29199, "collisionFilter": { "#": 282 }, @@ -2849,13 +2849,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 3418.659578448263, - "inverseInertia": 0.0002925123069591802, - "inverseMass": 0.4315352492823481, + "inertia": 3418.65958, + "inverseInertia": 0.00029, + "inverseMass": 0.43154, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.3173078019999998, + "mass": 2.31731, "motion": 0, "parent": null, "position": { @@ -2877,7 +2877,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2931,52 +2931,52 @@ } ], { - "x": -0.9709241770545208, - "y": -0.2393872227396477 + "x": -0.97092, + "y": -0.23939 }, { - "x": -0.8855010950678353, - "y": -0.46463728932756176 + "x": -0.8855, + "y": -0.46464 }, { - "x": -0.7484566762798334, - "y": -0.6631836877759771 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5680951506518395, - "y": -0.8229628787532666 + "x": -0.5681, + "y": -0.82296 }, { - "x": -0.35458550726385507, - "y": -0.9350235922362785 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12053563584793033, - "y": -0.9927090009115134 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12053563584793033, - "y": -0.9927090009115134 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.35458550726385507, - "y": -0.9350235922362785 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680951506518395, - "y": -0.8229628787532666 + "x": 0.5681, + "y": -0.82296 }, { - "x": 0.7484566762798334, - "y": -0.6631836877759771 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8855010950678353, - "y": -0.46463728932756176 + "x": 0.8855, + "y": -0.46464 }, { - "x": 0.9709241770545208, - "y": -0.2393872227396477 + "x": 0.97092, + "y": -0.23939 }, { "x": 1, @@ -2991,12 +2991,12 @@ } }, { - "x": 256.08399999999995, - "y": 122.31975476702573 + "x": 256.084, + "y": 122.31975 }, { - "x": 201.89799999999997, - "y": 67.73575476702574 + "x": 201.898, + "y": 67.73575 }, { "category": 1, @@ -3013,16 +3013,16 @@ "y": 0 }, { - "x": 228.99099999999996, - "y": 95.02775476702573 + "x": 228.991, + "y": 95.02775 }, { "x": 0, "y": 0 }, { - "x": 228.99099999999996, - "y": 92.12048405199008 + "x": 228.991, + "y": 92.12048 }, { "endCol": 5, @@ -3046,7 +3046,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -3132,197 +3132,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 256.08399999999995, - "y": 98.31775476702572 + "x": 256.084, + "y": 98.31775 }, { "body": null, "index": 1, "isInternal": false, - "x": 254.50899999999996, - "y": 104.70575476702572 + "x": 254.509, + "y": 104.70575 }, { "body": null, "index": 2, "isInternal": false, - "x": 251.45199999999997, - "y": 110.53175476702573 + "x": 251.452, + "y": 110.53175 }, { "body": null, "index": 3, "isInternal": false, - "x": 247.08899999999997, - "y": 115.45575476702572 + "x": 247.089, + "y": 115.45575 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.67399999999995, - "y": 119.19375476702572 + "x": 241.674, + "y": 119.19375 }, { "body": null, "index": 5, "isInternal": false, - "x": 235.52199999999996, - "y": 121.52675476702572 + "x": 235.522, + "y": 121.52675 }, { "body": null, "index": 6, "isInternal": false, - "x": 228.99099999999996, - "y": 122.31975476702573 + "x": 228.991, + "y": 122.31975 }, { "body": null, "index": 7, "isInternal": false, - "x": 222.45999999999995, - "y": 121.52675476702572 + "x": 222.46, + "y": 121.52675 }, { "body": null, "index": 8, "isInternal": false, - "x": 216.30799999999996, - "y": 119.19375476702572 + "x": 216.308, + "y": 119.19375 }, { "body": null, "index": 9, "isInternal": false, - "x": 210.89299999999994, - "y": 115.45575476702572 + "x": 210.893, + "y": 115.45575 }, { "body": null, "index": 10, "isInternal": false, - "x": 206.52999999999994, - "y": 110.53175476702573 + "x": 206.53, + "y": 110.53175 }, { "body": null, "index": 11, "isInternal": false, - "x": 203.47299999999996, - "y": 104.70575476702572 + "x": 203.473, + "y": 104.70575 }, { "body": null, "index": 12, "isInternal": false, - "x": 201.89799999999997, - "y": 98.31775476702572 + "x": 201.898, + "y": 98.31775 }, { "body": null, "index": 13, "isInternal": false, - "x": 201.89799999999997, - "y": 91.73775476702573 + "x": 201.898, + "y": 91.73775 }, { "body": null, "index": 14, "isInternal": false, - "x": 203.47299999999996, - "y": 85.34975476702573 + "x": 203.473, + "y": 85.34975 }, { "body": null, "index": 15, "isInternal": false, - "x": 206.52999999999994, - "y": 79.52375476702574 + "x": 206.53, + "y": 79.52375 }, { "body": null, "index": 16, "isInternal": false, - "x": 210.89299999999994, - "y": 74.59975476702574 + "x": 210.893, + "y": 74.59975 }, { "body": null, "index": 17, "isInternal": false, - "x": 216.30799999999996, - "y": 70.86175476702573 + "x": 216.308, + "y": 70.86175 }, { "body": null, "index": 18, "isInternal": false, - "x": 222.45999999999995, - "y": 68.52875476702575 + "x": 222.46, + "y": 68.52875 }, { "body": null, "index": 19, "isInternal": false, - "x": 228.99099999999996, - "y": 67.73575476702574 + "x": 228.991, + "y": 67.73575 }, { "body": null, "index": 20, "isInternal": false, - "x": 235.52199999999996, - "y": 68.52875476702575 + "x": 235.522, + "y": 68.52875 }, { "body": null, "index": 21, "isInternal": false, - "x": 241.67399999999995, - "y": 70.86175476702573 + "x": 241.674, + "y": 70.86175 }, { "body": null, "index": 22, "isInternal": false, - "x": 247.08899999999997, - "y": 74.59975476702574 + "x": 247.089, + "y": 74.59975 }, { "body": null, "index": 23, "isInternal": false, - "x": 251.45199999999997, - "y": 79.52375476702574 + "x": 251.452, + "y": 79.52375 }, { "body": null, "index": 24, "isInternal": false, - "x": 254.50899999999996, - "y": 85.34975476702573 + "x": 254.509, + "y": 85.34975 }, { "body": null, "index": 25, "isInternal": false, - "x": 256.08399999999995, - "y": 91.73775476702573 + "x": 256.084, + "y": 91.73775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1318.440404, + "area": 1318.4404, "axes": { "#": 320 }, "bounds": { "#": 332 }, - "circleRadius": 20.626221707818928, + "circleRadius": 20.62622, "collisionFilter": { "#": 335 }, @@ -3337,13 +3337,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1106.6679682910583, - "inverseInertia": 0.0009036133950314137, - "inverseMass": 0.7584719013207669, + "inertia": 1106.66797, + "inverseInertia": 0.0009, + "inverseMass": 0.75847, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.318440404, + "mass": 1.31844, "motion": 0, "parent": null, "position": { @@ -3365,7 +3365,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3413,44 +3413,44 @@ } ], { - "x": -0.9594928831235549, - "y": -0.281732865025095 + "x": -0.95949, + "y": -0.28173 }, { - "x": -0.8412614784395286, - "y": -0.5406284536479176 + "x": -0.84126, + "y": -0.54063 }, { - "x": -0.654891631298853, - "y": -0.7557228005391443 + "x": -0.65489, + "y": -0.75572 }, { - "x": -0.4154578190944267, - "y": -0.9096124452497903 + "x": -0.41546, + "y": -0.90961 }, { - "x": -0.1422321170387564, - "y": -0.9898333318709133 + "x": -0.14223, + "y": -0.98983 }, { - "x": 0.1422321170387564, - "y": -0.9898333318709133 + "x": 0.14223, + "y": -0.98983 }, { - "x": 0.4154578190944267, - "y": -0.9096124452497903 + "x": 0.41546, + "y": -0.90961 }, { - "x": 0.654891631298853, - "y": -0.7557228005391443 + "x": 0.65489, + "y": -0.75572 }, { - "x": 0.8412614784395286, - "y": -0.5406284536479176 + "x": 0.84126, + "y": -0.54063 }, { - "x": 0.9594928831235549, - "y": -0.281732865025095 + "x": 0.95949, + "y": -0.28173 }, { "x": 1, @@ -3465,12 +3465,12 @@ } }, { - "x": 306.91599999999994, - "y": 108.98775476702573 + "x": 306.916, + "y": 108.98775 }, { - "x": 266.08399999999995, - "y": 67.73575476702574 + "x": 266.084, + "y": 67.73575 }, { "category": 1, @@ -3487,16 +3487,16 @@ "y": 0 }, { - "x": 286.49999999999994, - "y": 88.36175476702573 + "x": 286.5, + "y": 88.36175 }, { "x": 0, "y": 0 }, { - "x": 286.49999999999994, - "y": 85.45448405199008 + "x": 286.5, + "y": 85.45448 }, { "endCol": 6, @@ -3520,7 +3520,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -3594,169 +3594,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 306.91599999999994, - "y": 91.29675476702573 + "x": 306.916, + "y": 91.29675 }, { "body": null, "index": 1, "isInternal": false, - "x": 305.26199999999994, - "y": 96.92975476702573 + "x": 305.262, + "y": 96.92975 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.08799999999997, - "y": 101.86875476702573 + "x": 302.088, + "y": 101.86875 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.65099999999995, - "y": 105.71375476702573 + "x": 297.651, + "y": 105.71375 }, { "body": null, "index": 4, "isInternal": false, - "x": 292.3109999999999, - "y": 108.15275476702573 + "x": 292.311, + "y": 108.15275 }, { "body": null, "index": 5, "isInternal": false, - "x": 286.49999999999994, - "y": 108.98775476702573 + "x": 286.5, + "y": 108.98775 }, { "body": null, "index": 6, "isInternal": false, - "x": 280.68899999999996, - "y": 108.15275476702573 + "x": 280.689, + "y": 108.15275 }, { "body": null, "index": 7, "isInternal": false, - "x": 275.34899999999993, - "y": 105.71375476702573 + "x": 275.349, + "y": 105.71375 }, { "body": null, "index": 8, "isInternal": false, - "x": 270.9119999999999, - "y": 101.86875476702573 + "x": 270.912, + "y": 101.86875 }, { "body": null, "index": 9, "isInternal": false, - "x": 267.73799999999994, - "y": 96.92975476702573 + "x": 267.738, + "y": 96.92975 }, { "body": null, "index": 10, "isInternal": false, - "x": 266.08399999999995, - "y": 91.29675476702573 + "x": 266.084, + "y": 91.29675 }, { "body": null, "index": 11, "isInternal": false, - "x": 266.08399999999995, - "y": 85.42675476702573 + "x": 266.084, + "y": 85.42675 }, { "body": null, "index": 12, "isInternal": false, - "x": 267.73799999999994, - "y": 79.79375476702573 + "x": 267.738, + "y": 79.79375 }, { "body": null, "index": 13, "isInternal": false, - "x": 270.9119999999999, - "y": 74.85475476702574 + "x": 270.912, + "y": 74.85475 }, { "body": null, "index": 14, "isInternal": false, - "x": 275.34899999999993, - "y": 71.00975476702573 + "x": 275.349, + "y": 71.00975 }, { "body": null, "index": 15, "isInternal": false, - "x": 280.68899999999996, - "y": 68.57075476702575 + "x": 280.689, + "y": 68.57075 }, { "body": null, "index": 16, "isInternal": false, - "x": 286.49999999999994, - "y": 67.73575476702574 + "x": 286.5, + "y": 67.73575 }, { "body": null, "index": 17, "isInternal": false, - "x": 292.3109999999999, - "y": 68.57075476702575 + "x": 292.311, + "y": 68.57075 }, { "body": null, "index": 18, "isInternal": false, - "x": 297.65099999999995, - "y": 71.00975476702573 + "x": 297.651, + "y": 71.00975 }, { "body": null, "index": 19, "isInternal": false, - "x": 302.08799999999997, - "y": 74.85475476702574 + "x": 302.088, + "y": 74.85475 }, { "body": null, "index": 20, "isInternal": false, - "x": 305.26199999999994, - "y": 79.79375476702573 + "x": 305.262, + "y": 79.79375 }, { "body": null, "index": 21, "isInternal": false, - "x": 306.91599999999994, - "y": 85.42675476702573 + "x": 306.916, + "y": 85.42675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2707.561101999999, + "area": 2707.5611, "axes": { "#": 369 }, "bounds": { "#": 383 }, - "circleRadius": 29.500578703703702, + "circleRadius": 29.50058, "collisionFilter": { "#": 386 }, @@ -3771,13 +3771,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 4667.076739501968, - "inverseInertia": 0.00021426688606511143, - "inverseMass": 0.3693360786064359, + "inertia": 4667.07674, + "inverseInertia": 0.00021, + "inverseMass": 0.36934, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.707561101999999, + "mass": 2.70756, "motion": 0, "parent": null, "position": { @@ -3799,7 +3799,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3853,52 +3853,52 @@ } ], { - "x": -0.9709721851597422, - "y": -0.23919242388946008 + "x": -0.97097, + "y": -0.23919 }, { - "x": -0.8854514284236448, - "y": -0.4647319312275919 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485562773053245, - "y": -0.6630712629173385 + "x": -0.74856, + "y": -0.66307 }, { - "x": -0.5679662429393902, - "y": -0.8230518494489357 + "x": -0.56797, + "y": -0.82305 }, { - "x": -0.3546033705984873, - "y": -0.9350168177953764 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12064210006520336, - "y": -0.9926960681355887 + "x": -0.12064, + "y": -0.9927 }, { - "x": 0.12064210006520336, - "y": -0.9926960681355887 + "x": 0.12064, + "y": -0.9927 }, { - "x": 0.3546033705984873, - "y": -0.9350168177953764 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5679662429393902, - "y": -0.8230518494489357 + "x": 0.56797, + "y": -0.82305 }, { - "x": 0.7485562773053245, - "y": -0.6630712629173385 + "x": 0.74856, + "y": -0.66307 }, { - "x": 0.8854514284236448, - "y": -0.4647319312275919 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709721851597422, - "y": -0.23919242388946008 + "x": 0.97097, + "y": -0.23919 }, { "x": 1, @@ -3914,11 +3914,11 @@ }, { "x": 375.486, - "y": 126.73775476702573 + "y": 126.73775 }, { - "x": 316.91599999999994, - "y": 67.73575476702574 + "x": 316.916, + "y": 67.73575 }, { "category": 1, @@ -3935,16 +3935,16 @@ "y": 0 }, { - "x": 346.20099999999996, - "y": 97.23675476702573 + "x": 346.201, + "y": 97.23675 }, { "x": 0, "y": 0 }, { - "x": 346.20099999999996, - "y": 94.32948405199008 + "x": 346.201, + "y": 94.32948 }, { "endCol": 7, @@ -3968,7 +3968,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -4055,196 +4055,196 @@ "index": 0, "isInternal": false, "x": 375.486, - "y": 100.79275476702573 + "y": 100.79275 }, { "body": null, "index": 1, "isInternal": false, - "x": 373.78499999999997, - "y": 107.69775476702573 + "x": 373.785, + "y": 107.69775 }, { "body": null, "index": 2, "isInternal": false, - "x": 370.47999999999996, - "y": 113.99475476702573 + "x": 370.48, + "y": 113.99475 }, { "body": null, "index": 3, "isInternal": false, - "x": 365.76399999999995, - "y": 119.31875476702572 + "x": 365.764, + "y": 119.31875 }, { "body": null, "index": 4, "isInternal": false, - "x": 359.91099999999994, - "y": 123.35775476702572 + "x": 359.911, + "y": 123.35775 }, { "body": null, "index": 5, "isInternal": false, - "x": 353.26099999999997, - "y": 125.87975476702573 + "x": 353.261, + "y": 125.87975 }, { "body": null, "index": 6, "isInternal": false, - "x": 346.20099999999996, - "y": 126.73775476702573 + "x": 346.201, + "y": 126.73775 }, { "body": null, "index": 7, "isInternal": false, - "x": 339.14099999999996, - "y": 125.87975476702573 + "x": 339.141, + "y": 125.87975 }, { "body": null, "index": 8, "isInternal": false, "x": 332.491, - "y": 123.35775476702572 + "y": 123.35775 }, { "body": null, "index": 9, "isInternal": false, "x": 326.638, - "y": 119.31875476702572 + "y": 119.31875 }, { "body": null, "index": 10, "isInternal": false, - "x": 321.92199999999997, - "y": 113.99475476702573 + "x": 321.922, + "y": 113.99475 }, { "body": null, "index": 11, "isInternal": false, - "x": 318.61699999999996, - "y": 107.69775476702573 + "x": 318.617, + "y": 107.69775 }, { "body": null, "index": 12, "isInternal": false, - "x": 316.91599999999994, - "y": 100.79275476702573 + "x": 316.916, + "y": 100.79275 }, { "body": null, "index": 13, "isInternal": false, - "x": 316.91599999999994, - "y": 93.68075476702573 + "x": 316.916, + "y": 93.68075 }, { "body": null, "index": 14, "isInternal": false, - "x": 318.61699999999996, - "y": 86.77575476702573 + "x": 318.617, + "y": 86.77575 }, { "body": null, "index": 15, "isInternal": false, - "x": 321.92199999999997, - "y": 80.47875476702573 + "x": 321.922, + "y": 80.47875 }, { "body": null, "index": 16, "isInternal": false, "x": 326.638, - "y": 75.15475476702574 + "y": 75.15475 }, { "body": null, "index": 17, "isInternal": false, "x": 332.491, - "y": 71.11575476702573 + "y": 71.11575 }, { "body": null, "index": 18, "isInternal": false, - "x": 339.14099999999996, - "y": 68.59375476702574 + "x": 339.141, + "y": 68.59375 }, { "body": null, "index": 19, "isInternal": false, - "x": 346.20099999999996, - "y": 67.73575476702574 + "x": 346.201, + "y": 67.73575 }, { "body": null, "index": 20, "isInternal": false, - "x": 353.26099999999997, - "y": 68.59375476702574 + "x": 353.261, + "y": 68.59375 }, { "body": null, "index": 21, "isInternal": false, - "x": 359.91099999999994, - "y": 71.11575476702573 + "x": 359.911, + "y": 71.11575 }, { "body": null, "index": 22, "isInternal": false, - "x": 365.76399999999995, - "y": 75.15475476702574 + "x": 365.764, + "y": 75.15475 }, { "body": null, "index": 23, "isInternal": false, - "x": 370.47999999999996, - "y": 80.47875476702573 + "x": 370.48, + "y": 80.47875 }, { "body": null, "index": 24, "isInternal": false, - "x": 373.78499999999997, - "y": 86.77575476702573 + "x": 373.785, + "y": 86.77575 }, { "body": null, "index": 25, "isInternal": false, "x": 375.486, - "y": 93.68075476702573 + "y": 93.68075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 996.1195440000001, + "area": 996.11954, "axes": { "#": 424 }, "bounds": { "#": 434 }, - "circleRadius": 17.989133230452676, + "circleRadius": 17.98913, "collisionFilter": { "#": 437 }, @@ -4259,13 +4259,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 631.7414771039847, - "inverseInertia": 0.0015829259851421786, - "inverseMass": 1.0038955725980614, + "inertia": 631.74148, + "inverseInertia": 0.00158, + "inverseMass": 1.0039, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9961195440000001, + "mass": 0.99612, "motion": 0, "parent": null, "position": { @@ -4287,7 +4287,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4329,36 +4329,36 @@ } ], { - "x": -0.9396858944753611, - "y": -0.3420386231466271 + "x": -0.93969, + "y": -0.34204 }, { - "x": -0.7659728462206221, - "y": -0.6428729258980185 + "x": -0.76597, + "y": -0.64287 }, { - "x": -0.5000642326698002, - "y": -0.8659883158590329 + "x": -0.50006, + "y": -0.86599 }, { - "x": -0.17365750488134477, - "y": -0.9848061083271091 + "x": -0.17366, + "y": -0.98481 }, { - "x": 0.17365750488134477, - "y": -0.9848061083271091 + "x": 0.17366, + "y": -0.98481 }, { - "x": 0.5000642326698002, - "y": -0.8659883158590329 + "x": 0.50006, + "y": -0.86599 }, { - "x": 0.7659728462206221, - "y": -0.6428729258980185 + "x": 0.76597, + "y": -0.64287 }, { - "x": 0.9396858944753611, - "y": -0.3420386231466271 + "x": 0.93969, + "y": -0.34204 }, { "x": 1, @@ -4374,11 +4374,11 @@ }, { "x": 420.918, - "y": 103.71375476702573 + "y": 103.71375 }, { "x": 385.486, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -4396,7 +4396,7 @@ }, { "x": 403.202, - "y": 85.72475476702573 + "y": 85.72475 }, { "x": 0, @@ -4404,7 +4404,7 @@ }, { "x": 403.202, - "y": 82.81748405199008 + "y": 82.81748 }, { "endCol": 8, @@ -4428,7 +4428,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -4491,140 +4491,140 @@ "index": 0, "isInternal": false, "x": 420.918, - "y": 88.84875476702572 + "y": 88.84875 }, { "body": null, "index": 1, "isInternal": false, "x": 418.781, - "y": 94.71975476702573 + "y": 94.71975 }, { "body": null, "index": 2, "isInternal": false, "x": 414.765, - "y": 99.50475476702573 + "y": 99.50475 }, { "body": null, "index": 3, "isInternal": false, "x": 409.355, - "y": 102.62875476702573 + "y": 102.62875 }, { "body": null, "index": 4, "isInternal": false, "x": 403.202, - "y": 103.71375476702573 + "y": 103.71375 }, { "body": null, "index": 5, "isInternal": false, "x": 397.049, - "y": 102.62875476702573 + "y": 102.62875 }, { "body": null, "index": 6, "isInternal": false, "x": 391.639, - "y": 99.50475476702573 + "y": 99.50475 }, { "body": null, "index": 7, "isInternal": false, "x": 387.623, - "y": 94.71975476702573 + "y": 94.71975 }, { "body": null, "index": 8, "isInternal": false, "x": 385.486, - "y": 88.84875476702572 + "y": 88.84875 }, { "body": null, "index": 9, "isInternal": false, "x": 385.486, - "y": 82.60075476702573 + "y": 82.60075 }, { "body": null, "index": 10, "isInternal": false, "x": 387.623, - "y": 76.72975476702574 + "y": 76.72975 }, { "body": null, "index": 11, "isInternal": false, "x": 391.639, - "y": 71.94475476702573 + "y": 71.94475 }, { "body": null, "index": 12, "isInternal": false, "x": 397.049, - "y": 68.82075476702575 + "y": 68.82075 }, { "body": null, "index": 13, "isInternal": false, "x": 403.202, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 14, "isInternal": false, "x": 409.355, - "y": 68.82075476702575 + "y": 68.82075 }, { "body": null, "index": 15, "isInternal": false, "x": 414.765, - "y": 71.94475476702573 + "y": 71.94475 }, { "body": null, "index": 16, "isInternal": false, "x": 418.781, - "y": 76.72975476702574 + "y": 76.72975 }, { "body": null, "index": 17, "isInternal": false, "x": 420.918, - "y": 82.60075476702573 + "y": 82.60075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1884.285362, + "area": 1884.28536, "axes": { "#": 467 }, "bounds": { "#": 481 }, - "circleRadius": 24.610403806584365, + "circleRadius": 24.6104, "collisionFilter": { "#": 484 }, @@ -4639,13 +4639,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 2260.38157195383, - "inverseInertia": 0.0004424031820148044, - "inverseMass": 0.5307051788263055, + "inertia": 2260.38157, + "inverseInertia": 0.00044, + "inverseMass": 0.53071, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8842853620000002, + "mass": 1.88429, "motion": 0, "parent": null, "position": { @@ -4667,7 +4667,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4721,52 +4721,52 @@ } ], { - "x": -0.9709402105671929, - "y": -0.23932218347603118 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854551295056068, - "y": -0.4647248795063689 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7485427632433443, - "y": -0.6630865189370228 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680086319138514, - "y": -0.8230225963309603 + "x": -0.56801, + "y": -0.82302 }, { - "x": -0.35464915280031695, - "y": -0.934999453699315 + "x": -0.35465, + "y": -0.935 }, { - "x": -0.12050753396518203, - "y": -0.9927124126642269 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050753396518203, - "y": -0.9927124126642269 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.35464915280031695, - "y": -0.934999453699315 + "x": 0.35465, + "y": -0.935 }, { - "x": 0.5680086319138514, - "y": -0.8230225963309603 + "x": 0.56801, + "y": -0.82302 }, { - "x": 0.7485427632433443, - "y": -0.6630865189370228 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854551295056068, - "y": -0.4647248795063689 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709402105671929, - "y": -0.23932218347603118 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -4782,11 +4782,11 @@ }, { "x": 479.78, - "y": 116.95575476702572 + "y": 116.95575 }, { "x": 430.918, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -4804,7 +4804,7 @@ }, { "x": 455.349, - "y": 92.34575476702572 + "y": 92.34575 }, { "x": 0, @@ -4812,7 +4812,7 @@ }, { "x": 455.349, - "y": 89.43848405199007 + "y": 89.43848 }, { "endCol": 9, @@ -4836,7 +4836,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -4923,196 +4923,196 @@ "index": 0, "isInternal": false, "x": 479.78, - "y": 95.31175476702572 + "y": 95.31175 }, { "body": null, "index": 1, "isInternal": false, "x": 478.36, - "y": 101.07275476702573 + "y": 101.07275 }, { "body": null, "index": 2, "isInternal": false, "x": 475.603, - "y": 106.32575476702573 + "y": 106.32575 }, { "body": null, "index": 3, "isInternal": false, "x": 471.669, - "y": 110.76675476702572 + "y": 110.76675 }, { "body": null, "index": 4, "isInternal": false, "x": 466.786, - "y": 114.13675476702572 + "y": 114.13675 }, { "body": null, "index": 5, "isInternal": false, "x": 461.239, - "y": 116.24075476702572 + "y": 116.24075 }, { "body": null, "index": 6, "isInternal": false, "x": 455.349, - "y": 116.95575476702572 + "y": 116.95575 }, { "body": null, "index": 7, "isInternal": false, "x": 449.459, - "y": 116.24075476702572 + "y": 116.24075 }, { "body": null, "index": 8, "isInternal": false, "x": 443.912, - "y": 114.13675476702572 + "y": 114.13675 }, { "body": null, "index": 9, "isInternal": false, "x": 439.029, - "y": 110.76675476702572 + "y": 110.76675 }, { "body": null, "index": 10, "isInternal": false, - "x": 435.09499999999997, - "y": 106.32575476702573 + "x": 435.095, + "y": 106.32575 }, { "body": null, "index": 11, "isInternal": false, - "x": 432.33799999999997, - "y": 101.07275476702573 + "x": 432.338, + "y": 101.07275 }, { "body": null, "index": 12, "isInternal": false, "x": 430.918, - "y": 95.31175476702572 + "y": 95.31175 }, { "body": null, "index": 13, "isInternal": false, "x": 430.918, - "y": 89.37975476702573 + "y": 89.37975 }, { "body": null, "index": 14, "isInternal": false, - "x": 432.33799999999997, - "y": 83.61875476702572 + "x": 432.338, + "y": 83.61875 }, { "body": null, "index": 15, "isInternal": false, - "x": 435.09499999999997, - "y": 78.36575476702572 + "x": 435.095, + "y": 78.36575 }, { "body": null, "index": 16, "isInternal": false, "x": 439.029, - "y": 73.92475476702573 + "y": 73.92475 }, { "body": null, "index": 17, "isInternal": false, "x": 443.912, - "y": 70.55475476702573 + "y": 70.55475 }, { "body": null, "index": 18, "isInternal": false, "x": 449.459, - "y": 68.45075476702574 + "y": 68.45075 }, { "body": null, "index": 19, "isInternal": false, "x": 455.349, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 20, "isInternal": false, "x": 461.239, - "y": 68.45075476702574 + "y": 68.45075 }, { "body": null, "index": 21, "isInternal": false, "x": 466.786, - "y": 70.55475476702573 + "y": 70.55475 }, { "body": null, "index": 22, "isInternal": false, "x": 471.669, - "y": 73.92475476702573 + "y": 73.92475 }, { "body": null, "index": 23, "isInternal": false, "x": 475.603, - "y": 78.36575476702572 + "y": 78.36575 }, { "body": null, "index": 24, "isInternal": false, "x": 478.36, - "y": 83.61875476702572 + "y": 83.61875 }, { "body": null, "index": 25, "isInternal": false, "x": 479.78, - "y": 89.37975476702573 + "y": 89.37975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1788.1176700000005, + "area": 1788.11767, "axes": { "#": 522 }, "bounds": { "#": 535 }, - "circleRadius": 23.994020061728396, + "circleRadius": 23.99402, "collisionFilter": { "#": 538 }, @@ -5127,13 +5127,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 2035.5592109008512, - "inverseInertia": 0.0004912654933567091, - "inverseMass": 0.5592473117275328, + "inertia": 2035.55921, + "inverseInertia": 0.00049, + "inverseMass": 0.55925, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7881176700000005, + "mass": 1.78812, "motion": 0, "parent": null, "position": { @@ -5155,7 +5155,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5206,48 +5206,48 @@ } ], { - "x": -0.9659295228350919, - "y": -0.25880524901085716 + "x": -0.96593, + "y": -0.25881 }, { - "x": -0.8660340588347611, - "y": -0.4999850087134508 + "x": -0.86603, + "y": -0.49999 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999850087134508, - "y": -0.8660340588347611 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.25880524901085716, - "y": -0.9659295228350919 + "x": -0.25881, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.25880524901085716, - "y": -0.9659295228350919 + "x": 0.25881, + "y": -0.96593 }, { - "x": 0.4999850087134508, - "y": -0.8660340588347611 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660340588347611, - "y": -0.4999850087134508 + "x": 0.86603, + "y": -0.49999 }, { - "x": 0.9659295228350919, - "y": -0.25880524901085716 + "x": 0.96593, + "y": -0.25881 }, { "x": 1, @@ -5263,11 +5263,11 @@ }, { "x": 537.358, - "y": 115.31375476702573 + "y": 115.31375 }, { "x": 489.78, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -5285,7 +5285,7 @@ }, { "x": 513.569, - "y": 91.52475476702573 + "y": 91.52475 }, { "x": 0, @@ -5293,7 +5293,7 @@ }, { "x": 513.569, - "y": 88.61748405199008 + "y": 88.61748 }, { "endCol": 11, @@ -5317,7 +5317,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -5398,182 +5398,182 @@ "index": 0, "isInternal": false, "x": 537.358, - "y": 94.65675476702572 + "y": 94.65675 }, { "body": null, "index": 1, "isInternal": false, "x": 535.737, - "y": 100.70675476702573 + "y": 100.70675 }, { "body": null, "index": 2, "isInternal": false, "x": 532.605, - "y": 106.13175476702573 + "y": 106.13175 }, { "body": null, "index": 3, "isInternal": false, - "x": 528.1759999999999, - "y": 110.56075476702573 + "x": 528.176, + "y": 110.56075 }, { "body": null, "index": 4, "isInternal": false, "x": 522.751, - "y": 113.69275476702573 + "y": 113.69275 }, { "body": null, "index": 5, "isInternal": false, "x": 516.701, - "y": 115.31375476702573 + "y": 115.31375 }, { "body": null, "index": 6, "isInternal": false, - "x": 510.43699999999995, - "y": 115.31375476702573 + "x": 510.437, + "y": 115.31375 }, { "body": null, "index": 7, "isInternal": false, - "x": 504.38699999999994, - "y": 113.69275476702573 + "x": 504.387, + "y": 113.69275 }, { "body": null, "index": 8, "isInternal": false, "x": 498.962, - "y": 110.56075476702573 + "y": 110.56075 }, { "body": null, "index": 9, "isInternal": false, - "x": 494.53299999999996, - "y": 106.13175476702573 + "x": 494.533, + "y": 106.13175 }, { "body": null, "index": 10, "isInternal": false, - "x": 491.40099999999995, - "y": 100.70675476702573 + "x": 491.401, + "y": 100.70675 }, { "body": null, "index": 11, "isInternal": false, "x": 489.78, - "y": 94.65675476702572 + "y": 94.65675 }, { "body": null, "index": 12, "isInternal": false, "x": 489.78, - "y": 88.39275476702574 + "y": 88.39275 }, { "body": null, "index": 13, "isInternal": false, - "x": 491.40099999999995, - "y": 82.34275476702572 + "x": 491.401, + "y": 82.34275 }, { "body": null, "index": 14, "isInternal": false, - "x": 494.53299999999996, - "y": 76.91775476702574 + "x": 494.533, + "y": 76.91775 }, { "body": null, "index": 15, "isInternal": false, "x": 498.962, - "y": 72.48875476702572 + "y": 72.48875 }, { "body": null, "index": 16, "isInternal": false, - "x": 504.38699999999994, - "y": 69.35675476702573 + "x": 504.387, + "y": 69.35675 }, { "body": null, "index": 17, "isInternal": false, - "x": 510.43699999999995, - "y": 67.73575476702574 + "x": 510.437, + "y": 67.73575 }, { "body": null, "index": 18, "isInternal": false, "x": 516.701, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 19, "isInternal": false, "x": 522.751, - "y": 69.35675476702573 + "y": 69.35675 }, { "body": null, "index": 20, "isInternal": false, - "x": 528.1759999999999, - "y": 72.48875476702572 + "x": 528.176, + "y": 72.48875 }, { "body": null, "index": 21, "isInternal": false, "x": 532.605, - "y": 76.91775476702574 + "y": 76.91775 }, { "body": null, "index": 22, "isInternal": false, "x": 535.737, - "y": 82.34275476702572 + "y": 82.34275 }, { "body": null, "index": 23, "isInternal": false, "x": 537.358, - "y": 88.39275476702574 + "y": 88.39275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1722.1149680000003, + "area": 1722.11497, "axes": { "#": 574 }, "bounds": { "#": 587 }, - "circleRadius": 23.54738940329218, + "circleRadius": 23.54739, "collisionFilter": { "#": 590 }, @@ -5588,13 +5588,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1888.0601807772807, - "inverseInertia": 0.0005296441343243189, - "inverseMass": 0.5806813241750999, + "inertia": 1888.06018, + "inverseInertia": 0.00053, + "inverseMass": 0.58068, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7221149680000003, + "mass": 1.72211, "motion": 0, "parent": null, "position": { @@ -5616,7 +5616,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5667,48 +5667,48 @@ } ], { - "x": -0.9659182750337034, - "y": -0.25884722512693675 + "x": -0.96592, + "y": -0.25885 }, { - "x": -0.8660122204453936, - "y": -0.5000228335178696 + "x": -0.86601, + "y": -0.50002 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000228335178696, - "y": -0.8660122204453936 + "x": -0.50002, + "y": -0.86601 }, { - "x": -0.25884722512693675, - "y": -0.9659182750337034 + "x": -0.25885, + "y": -0.96592 }, { "x": 0, "y": -1 }, { - "x": 0.25884722512693675, - "y": -0.9659182750337034 + "x": 0.25885, + "y": -0.96592 }, { - "x": 0.5000228335178696, - "y": -0.8660122204453936 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660122204453936, - "y": -0.5000228335178696 + "x": 0.86601, + "y": -0.50002 }, { - "x": 0.9659182750337034, - "y": -0.25884722512693675 + "x": 0.96592, + "y": -0.25885 }, { "x": 1, @@ -5724,11 +5724,11 @@ }, { "x": 594.05, - "y": 114.42775476702573 + "y": 114.42775 }, { "x": 547.358, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -5746,7 +5746,7 @@ }, { "x": 570.704, - "y": 91.08175476702573 + "y": 91.08175 }, { "x": 0, @@ -5754,7 +5754,7 @@ }, { "x": 570.704, - "y": 88.17448405199008 + "y": 88.17448 }, { "endCol": 12, @@ -5778,7 +5778,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -5859,168 +5859,168 @@ "index": 0, "isInternal": false, "x": 594.05, - "y": 94.15575476702573 + "y": 94.15575 }, { "body": null, "index": 1, "isInternal": false, "x": 592.459, - "y": 100.09275476702572 + "y": 100.09275 }, { "body": null, "index": 2, "isInternal": false, "x": 589.385, - "y": 105.41675476702574 + "y": 105.41675 }, { "body": null, "index": 3, "isInternal": false, "x": 585.039, - "y": 109.76275476702573 + "y": 109.76275 }, { "body": null, "index": 4, "isInternal": false, - "x": 579.7149999999999, - "y": 112.83675476702572 + "x": 579.715, + "y": 112.83675 }, { "body": null, "index": 5, "isInternal": false, - "x": 573.7779999999999, - "y": 114.42775476702573 + "x": 573.778, + "y": 114.42775 }, { "body": null, "index": 6, "isInternal": false, "x": 567.63, - "y": 114.42775476702573 + "y": 114.42775 }, { "body": null, "index": 7, "isInternal": false, "x": 561.693, - "y": 112.83675476702572 + "y": 112.83675 }, { "body": null, "index": 8, "isInternal": false, - "x": 556.3689999999999, - "y": 109.76275476702573 + "x": 556.369, + "y": 109.76275 }, { "body": null, "index": 9, "isInternal": false, - "x": 552.0229999999999, - "y": 105.41675476702574 + "x": 552.023, + "y": 105.41675 }, { "body": null, "index": 10, "isInternal": false, "x": 548.949, - "y": 100.09275476702572 + "y": 100.09275 }, { "body": null, "index": 11, "isInternal": false, "x": 547.358, - "y": 94.15575476702573 + "y": 94.15575 }, { "body": null, "index": 12, "isInternal": false, "x": 547.358, - "y": 88.00775476702573 + "y": 88.00775 }, { "body": null, "index": 13, "isInternal": false, "x": 548.949, - "y": 82.07075476702573 + "y": 82.07075 }, { "body": null, "index": 14, "isInternal": false, - "x": 552.0229999999999, - "y": 76.74675476702573 + "x": 552.023, + "y": 76.74675 }, { "body": null, "index": 15, "isInternal": false, - "x": 556.3689999999999, - "y": 72.40075476702573 + "x": 556.369, + "y": 72.40075 }, { "body": null, "index": 16, "isInternal": false, "x": 561.693, - "y": 69.32675476702575 + "y": 69.32675 }, { "body": null, "index": 17, "isInternal": false, "x": 567.63, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 18, "isInternal": false, - "x": 573.7779999999999, - "y": 67.73575476702574 + "x": 573.778, + "y": 67.73575 }, { "body": null, "index": 19, "isInternal": false, - "x": 579.7149999999999, - "y": 69.32675476702575 + "x": 579.715, + "y": 69.32675 }, { "body": null, "index": 20, "isInternal": false, "x": 585.039, - "y": 72.40075476702573 + "y": 72.40075 }, { "body": null, "index": 21, "isInternal": false, "x": 589.385, - "y": 76.74675476702573 + "y": 76.74675 }, { "body": null, "index": 22, "isInternal": false, "x": 592.459, - "y": 82.07075476702573 + "y": 82.07075 }, { "body": null, "index": 23, "isInternal": false, "x": 594.05, - "y": 88.00775476702573 + "y": 88.00775 }, { "angle": 0, @@ -6034,7 +6034,7 @@ "bounds": { "#": 638 }, - "circleRadius": 20.122363683127574, + "circleRadius": 20.12236, "collisionFilter": { "#": 641 }, @@ -6049,13 +6049,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1002.4505113431685, - "inverseInertia": 0.0009975554789833116, - "inverseMass": 0.796923613461095, + "inertia": 1002.45051, + "inverseInertia": 0.001, + "inverseMass": 0.79692, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.25482541, + "mass": 1.25483, "motion": 0, "parent": null, "position": { @@ -6077,7 +6077,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6125,44 +6125,44 @@ } ], { - "x": -0.9594683116666392, - "y": -0.28181653412738056 + "x": -0.95947, + "y": -0.28182 }, { - "x": -0.8412011657491608, - "y": -0.5407222935502594 + "x": -0.8412, + "y": -0.54072 }, { - "x": -0.6549371857283655, - "y": -0.7556833217361679 + "x": -0.65494, + "y": -0.75568 }, { - "x": -0.4153677317263388, - "y": -0.9096535865045091 + "x": -0.41537, + "y": -0.90965 }, { - "x": -0.1423012985761668, - "y": -0.9898233885009671 + "x": -0.1423, + "y": -0.98982 }, { - "x": 0.1423012985761668, - "y": -0.9898233885009671 + "x": 0.1423, + "y": -0.98982 }, { - "x": 0.4153677317263388, - "y": -0.9096535865045091 + "x": 0.41537, + "y": -0.90965 }, { - "x": 0.6549371857283655, - "y": -0.7556833217361679 + "x": 0.65494, + "y": -0.75568 }, { - "x": 0.8412011657491608, - "y": -0.5407222935502594 + "x": 0.8412, + "y": -0.54072 }, { - "x": 0.9594683116666392, - "y": -0.28181653412738056 + "x": 0.95947, + "y": -0.28182 }, { "x": 1, @@ -6178,11 +6178,11 @@ }, { "x": 643.886, - "y": 107.97975476702572 + "y": 107.97975 }, { "x": 604.05, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -6200,7 +6200,7 @@ }, { "x": 623.968, - "y": 87.85775476702572 + "y": 87.85775 }, { "x": 0, @@ -6208,7 +6208,7 @@ }, { "x": 623.968, - "y": 84.95048405199007 + "y": 84.95048 }, { "endCol": 13, @@ -6232,7 +6232,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6307,168 +6307,168 @@ "index": 0, "isInternal": false, "x": 643.886, - "y": 90.72175476702571 + "y": 90.72175 }, { "body": null, "index": 1, "isInternal": false, - "x": 642.2719999999999, - "y": 96.21675476702572 + "x": 642.272, + "y": 96.21675 }, { "body": null, "index": 2, "isInternal": false, "x": 639.175, - "y": 101.03475476702573 + "y": 101.03475 }, { "body": null, "index": 3, "isInternal": false, "x": 634.847, - "y": 104.78575476702572 + "y": 104.78575 }, { "body": null, "index": 4, "isInternal": false, "x": 629.637, - "y": 107.16475476702573 + "y": 107.16475 }, { "body": null, "index": 5, "isInternal": false, "x": 623.968, - "y": 107.97975476702572 + "y": 107.97975 }, { "body": null, "index": 6, "isInternal": false, "x": 618.299, - "y": 107.16475476702573 + "y": 107.16475 }, { "body": null, "index": 7, "isInternal": false, - "x": 613.0889999999999, - "y": 104.78575476702572 + "x": 613.089, + "y": 104.78575 }, { "body": null, "index": 8, "isInternal": false, "x": 608.761, - "y": 101.03475476702573 + "y": 101.03475 }, { "body": null, "index": 9, "isInternal": false, "x": 605.664, - "y": 96.21675476702572 + "y": 96.21675 }, { "body": null, "index": 10, "isInternal": false, "x": 604.05, - "y": 90.72175476702571 + "y": 90.72175 }, { "body": null, "index": 11, "isInternal": false, "x": 604.05, - "y": 84.99375476702573 + "y": 84.99375 }, { "body": null, "index": 12, "isInternal": false, "x": 605.664, - "y": 79.49875476702573 + "y": 79.49875 }, { "body": null, "index": 13, "isInternal": false, "x": 608.761, - "y": 74.68075476702573 + "y": 74.68075 }, { "body": null, "index": 14, "isInternal": false, - "x": 613.0889999999999, - "y": 70.92975476702573 + "x": 613.089, + "y": 70.92975 }, { "body": null, "index": 15, "isInternal": false, "x": 618.299, - "y": 68.55075476702574 + "y": 68.55075 }, { "body": null, "index": 16, "isInternal": false, "x": 623.968, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 17, "isInternal": false, "x": 629.637, - "y": 68.55075476702574 + "y": 68.55075 }, { "body": null, "index": 18, "isInternal": false, "x": 634.847, - "y": 70.92975476702573 + "y": 70.92975 }, { "body": null, "index": 19, "isInternal": false, "x": 639.175, - "y": 74.68075476702573 + "y": 74.68075 }, { "body": null, "index": 20, "isInternal": false, - "x": 642.2719999999999, - "y": 79.49875476702573 + "x": 642.272, + "y": 79.49875 }, { "body": null, "index": 21, "isInternal": false, "x": 643.886, - "y": 84.99375476702573 + "y": 84.99375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2214.8878419999996, + "area": 2214.88784, "axes": { "#": 675 }, "bounds": { "#": 689 }, - "circleRadius": 26.68190586419753, + "circleRadius": 26.68191, "collisionFilter": { "#": 692 }, @@ -6483,13 +6483,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 3123.1431295098378, - "inverseInertia": 0.00032019025658838285, - "inverseMass": 0.4514901301264176, + "inertia": 3123.14313, + "inverseInertia": 0.00032, + "inverseMass": 0.45149, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.2148878419999996, + "mass": 2.21489, "motion": 0, "parent": null, "position": { @@ -6511,7 +6511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6565,52 +6565,52 @@ } ], { - "x": -0.9709599017732182, - "y": -0.23924228127265143 + "x": -0.97096, + "y": -0.23924 }, { - "x": -0.8854538871996172, - "y": -0.46472724650389047 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7484889714538617, - "y": -0.6631472382600565 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5681180190217404, - "y": -0.8229470921406876 + "x": -0.56812, + "y": -0.82295 }, { - "x": -0.35457925548170977, - "y": -0.9350259630523831 + "x": -0.35458, + "y": -0.93503 }, { - "x": -0.12049387698901172, - "y": -0.9927140704191499 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12049387698901172, - "y": -0.9927140704191499 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35457925548170977, - "y": -0.9350259630523831 + "x": 0.35458, + "y": -0.93503 }, { - "x": 0.5681180190217404, - "y": -0.8229470921406876 + "x": 0.56812, + "y": -0.82295 }, { - "x": 0.7484889714538617, - "y": -0.6631472382600565 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854538871996172, - "y": -0.46472724650389047 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709599017732182, - "y": -0.23924228127265143 + "x": 0.97096, + "y": -0.23924 }, { "x": 1, @@ -6626,11 +6626,11 @@ }, { "x": 152.974, - "y": 190.10175476702597 + "y": 190.10175 }, { "x": 100, - "y": 136.73775476702593 + "y": 136.73775 }, { "category": 1, @@ -6648,7 +6648,7 @@ }, { "x": 126.487, - "y": 163.41975476702598 + "y": 163.41975 }, { "x": 0, @@ -6656,7 +6656,7 @@ }, { "x": 126.487, - "y": 160.5124840519903 + "y": 160.51248 }, { "endCol": 3, @@ -6680,7 +6680,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6767,196 +6767,196 @@ "index": 0, "isInternal": false, "x": 152.974, - "y": 166.63575476702596 + "y": 166.63575 }, { "body": null, "index": 1, "isInternal": false, "x": 151.435, - "y": 172.88175476702597 + "y": 172.88175 }, { "body": null, "index": 2, "isInternal": false, "x": 148.446, - "y": 178.576754767026 + "y": 178.57675 }, { "body": null, "index": 3, "isInternal": false, "x": 144.18, - "y": 183.391754767026 + "y": 183.39175 }, { "body": null, "index": 4, "isInternal": false, "x": 138.887, - "y": 187.04575476702598 + "y": 187.04575 }, { "body": null, "index": 5, "isInternal": false, "x": 132.872, - "y": 189.326754767026 + "y": 189.32675 }, { "body": null, "index": 6, "isInternal": false, "x": 126.487, - "y": 190.10175476702597 + "y": 190.10175 }, { "body": null, "index": 7, "isInternal": false, - "x": 120.10199999999999, - "y": 189.326754767026 + "x": 120.102, + "y": 189.32675 }, { "body": null, "index": 8, "isInternal": false, - "x": 114.08699999999999, - "y": 187.04575476702598 + "x": 114.087, + "y": 187.04575 }, { "body": null, "index": 9, "isInternal": false, "x": 108.794, - "y": 183.391754767026 + "y": 183.39175 }, { "body": null, "index": 10, "isInternal": false, - "x": 104.52799999999999, - "y": 178.576754767026 + "x": 104.528, + "y": 178.57675 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.53899999999999, - "y": 172.88175476702597 + "x": 101.539, + "y": 172.88175 }, { "body": null, "index": 12, "isInternal": false, "x": 100, - "y": 166.63575476702596 + "y": 166.63575 }, { "body": null, "index": 13, "isInternal": false, "x": 100, - "y": 160.203754767026 + "y": 160.20375 }, { "body": null, "index": 14, "isInternal": false, - "x": 101.53899999999999, - "y": 153.95775476702596 + "x": 101.539, + "y": 153.95775 }, { "body": null, "index": 15, "isInternal": false, - "x": 104.52799999999999, - "y": 148.26275476702597 + "x": 104.528, + "y": 148.26275 }, { "body": null, "index": 16, "isInternal": false, "x": 108.794, - "y": 143.44775476702594 + "y": 143.44775 }, { "body": null, "index": 17, "isInternal": false, - "x": 114.08699999999999, - "y": 139.79375476702594 + "x": 114.087, + "y": 139.79375 }, { "body": null, "index": 18, "isInternal": false, - "x": 120.10199999999999, - "y": 137.51275476702594 + "x": 120.102, + "y": 137.51275 }, { "body": null, "index": 19, "isInternal": false, "x": 126.487, - "y": 136.73775476702593 + "y": 136.73775 }, { "body": null, "index": 20, "isInternal": false, "x": 132.872, - "y": 137.51275476702594 + "y": 137.51275 }, { "body": null, "index": 21, "isInternal": false, "x": 138.887, - "y": 139.79375476702594 + "y": 139.79375 }, { "body": null, "index": 22, "isInternal": false, "x": 144.18, - "y": 143.44775476702594 + "y": 143.44775 }, { "body": null, "index": 23, "isInternal": false, "x": 148.446, - "y": 148.26275476702597 + "y": 148.26275 }, { "body": null, "index": 24, "isInternal": false, "x": 151.435, - "y": 153.95775476702596 + "y": 153.95775 }, { "body": null, "index": 25, "isInternal": false, "x": 152.974, - "y": 160.203754767026 + "y": 160.20375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1111.681768, + "area": 1111.68177, "axes": { "#": 730 }, "bounds": { "#": 741 }, - "circleRadius": 18.9667566872428, + "circleRadius": 18.96676, "collisionFilter": { "#": 744 }, @@ -6971,13 +6971,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 786.8009408760354, - "inverseInertia": 0.001270969502002102, - "inverseMass": 0.8995380051964655, + "inertia": 786.80094, + "inverseInertia": 0.00127, + "inverseMass": 0.89954, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.111681768, + "mass": 1.11168, "motion": 0, "parent": null, "position": { @@ -6999,7 +6999,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7044,40 +7044,40 @@ } ], { - "x": -0.9510984438586632, - "y": -0.30888792480385036 + "x": -0.9511, + "y": -0.30889 }, { - "x": -0.8090274656982102, - "y": -0.5877708394824734 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877708394824734, - "y": -0.8090274656982102 + "x": -0.58777, + "y": -0.80903 }, { - "x": -0.30888792480385036, - "y": -0.9510984438586632 + "x": -0.30889, + "y": -0.9511 }, { "x": 0, "y": -1 }, { - "x": 0.30888792480385036, - "y": -0.9510984438586632 + "x": 0.30889, + "y": -0.9511 }, { - "x": 0.5877708394824734, - "y": -0.8090274656982102 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090274656982102, - "y": -0.5877708394824734 + "x": 0.80903, + "y": -0.58777 }, { - "x": 0.9510984438586632, - "y": -0.30888792480385036 + "x": 0.9511, + "y": -0.30889 }, { "x": 1, @@ -7093,11 +7093,11 @@ }, { "x": 200.44, - "y": 174.203754767026 + "y": 174.20375 }, { "x": 162.974, - "y": 136.73775476702596 + "y": 136.73775 }, { "category": 1, @@ -7115,7 +7115,7 @@ }, { "x": 181.707, - "y": 155.470754767026 + "y": 155.47075 }, { "x": 0, @@ -7123,7 +7123,7 @@ }, { "x": 181.707, - "y": 152.56348405199032 + "y": 152.56348 }, { "endCol": 4, @@ -7147,7 +7147,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7216,154 +7216,154 @@ "index": 0, "isInternal": false, "x": 200.44, - "y": 158.43775476702598 + "y": 158.43775 }, { "body": null, "index": 1, "isInternal": false, "x": 198.607, - "y": 164.08175476702598 + "y": 164.08175 }, { "body": null, "index": 2, "isInternal": false, "x": 195.119, - "y": 168.882754767026 + "y": 168.88275 }, { "body": null, "index": 3, "isInternal": false, - "x": 190.31799999999998, - "y": 172.370754767026 + "x": 190.318, + "y": 172.37075 }, { "body": null, "index": 4, "isInternal": false, "x": 184.674, - "y": 174.203754767026 + "y": 174.20375 }, { "body": null, "index": 5, "isInternal": false, - "x": 178.73999999999998, - "y": 174.203754767026 + "x": 178.74, + "y": 174.20375 }, { "body": null, "index": 6, "isInternal": false, "x": 173.096, - "y": 172.370754767026 + "y": 172.37075 }, { "body": null, "index": 7, "isInternal": false, "x": 168.295, - "y": 168.882754767026 + "y": 168.88275 }, { "body": null, "index": 8, "isInternal": false, "x": 164.807, - "y": 164.08175476702598 + "y": 164.08175 }, { "body": null, "index": 9, "isInternal": false, "x": 162.974, - "y": 158.43775476702598 + "y": 158.43775 }, { "body": null, "index": 10, "isInternal": false, "x": 162.974, - "y": 152.503754767026 + "y": 152.50375 }, { "body": null, "index": 11, "isInternal": false, "x": 164.807, - "y": 146.859754767026 + "y": 146.85975 }, { "body": null, "index": 12, "isInternal": false, "x": 168.295, - "y": 142.05875476702596 + "y": 142.05875 }, { "body": null, "index": 13, "isInternal": false, "x": 173.096, - "y": 138.57075476702596 + "y": 138.57075 }, { "body": null, "index": 14, "isInternal": false, - "x": 178.73999999999998, - "y": 136.73775476702596 + "x": 178.74, + "y": 136.73775 }, { "body": null, "index": 15, "isInternal": false, "x": 184.674, - "y": 136.73775476702596 + "y": 136.73775 }, { "body": null, "index": 16, "isInternal": false, - "x": 190.31799999999998, - "y": 138.57075476702596 + "x": 190.318, + "y": 138.57075 }, { "body": null, "index": 17, "isInternal": false, "x": 195.119, - "y": 142.05875476702596 + "y": 142.05875 }, { "body": null, "index": 18, "isInternal": false, "x": 198.607, - "y": 146.859754767026 + "y": 146.85975 }, { "body": null, "index": 19, "isInternal": false, "x": 200.44, - "y": 152.503754767026 + "y": 152.50375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2295.319759999999, + "area": 2295.31976, "axes": { "#": 776 }, "bounds": { "#": 790 }, - "circleRadius": 27.16210133744856, + "circleRadius": 27.1621, "collisionFilter": { "#": 793 }, @@ -7378,13 +7378,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 3354.090682779493, - "inverseInertia": 0.00029814339997847423, - "inverseMass": 0.4356691461585293, + "inertia": 3354.09068, + "inverseInertia": 0.0003, + "inverseMass": 0.43567, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.295319759999999, + "mass": 2.29532, "motion": 0, "parent": null, "position": { @@ -7406,7 +7406,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7460,52 +7460,52 @@ } ], { - "x": -0.9709455876458091, - "y": -0.23930036738612506 + "x": -0.97095, + "y": -0.2393 }, { - "x": -0.8854576058599221, - "y": -0.4647201611989897 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7485037074240805, - "y": -0.6631306055162939 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680897644063303, - "y": -0.8229665968778805 + "x": -0.56809, + "y": -0.82297 }, { - "x": -0.3545851817432643, - "y": -0.9350237156821726 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12050012358834578, - "y": -0.9927133121980349 + "x": -0.1205, + "y": -0.99271 }, { - "x": 0.12050012358834578, - "y": -0.9927133121980349 + "x": 0.1205, + "y": -0.99271 }, { - "x": 0.3545851817432643, - "y": -0.9350237156821726 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680897644063303, - "y": -0.8229665968778805 + "x": 0.56809, + "y": -0.82297 }, { - "x": 0.7485037074240805, - "y": -0.6631306055162939 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854576058599221, - "y": -0.4647201611989897 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709455876458091, - "y": -0.23930036738612506 + "x": 0.97095, + "y": -0.2393 }, { "x": 1, @@ -7521,11 +7521,11 @@ }, { "x": 264.368, - "y": 191.061754767026 + "y": 191.06175 }, { "x": 210.44, - "y": 136.73775476702596 + "y": 136.73775 }, { "category": 1, @@ -7543,7 +7543,7 @@ }, { "x": 237.404, - "y": 163.899754767026 + "y": 163.89975 }, { "x": 0, @@ -7551,7 +7551,7 @@ }, { "x": 237.404, - "y": 160.99248405199032 + "y": 160.99248 }, { "endCol": 5, @@ -7575,7 +7575,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7662,196 +7662,196 @@ "index": 0, "isInternal": false, "x": 264.368, - "y": 167.173754767026 + "y": 167.17375 }, { "body": null, "index": 1, "isInternal": false, "x": 262.801, - "y": 173.531754767026 + "y": 173.53175 }, { "body": null, "index": 2, "isInternal": false, "x": 259.758, - "y": 179.329754767026 + "y": 179.32975 }, { "body": null, "index": 3, "isInternal": false, "x": 255.416, - "y": 184.23075476702599 + "y": 184.23075 }, { "body": null, "index": 4, "isInternal": false, "x": 250.027, - "y": 187.95075476702598 + "y": 187.95075 }, { "body": null, "index": 5, "isInternal": false, "x": 243.904, - "y": 190.272754767026 + "y": 190.27275 }, { "body": null, "index": 6, "isInternal": false, "x": 237.404, - "y": 191.061754767026 + "y": 191.06175 }, { "body": null, "index": 7, "isInternal": false, "x": 230.904, - "y": 190.272754767026 + "y": 190.27275 }, { "body": null, "index": 8, "isInternal": false, "x": 224.781, - "y": 187.95075476702598 + "y": 187.95075 }, { "body": null, "index": 9, "isInternal": false, "x": 219.392, - "y": 184.23075476702599 + "y": 184.23075 }, { "body": null, "index": 10, "isInternal": false, "x": 215.05, - "y": 179.329754767026 + "y": 179.32975 }, { "body": null, "index": 11, "isInternal": false, "x": 212.007, - "y": 173.531754767026 + "y": 173.53175 }, { "body": null, "index": 12, "isInternal": false, "x": 210.44, - "y": 167.173754767026 + "y": 167.17375 }, { "body": null, "index": 13, "isInternal": false, "x": 210.44, - "y": 160.625754767026 + "y": 160.62575 }, { "body": null, "index": 14, "isInternal": false, "x": 212.007, - "y": 154.267754767026 + "y": 154.26775 }, { "body": null, "index": 15, "isInternal": false, "x": 215.05, - "y": 148.469754767026 + "y": 148.46975 }, { "body": null, "index": 16, "isInternal": false, "x": 219.392, - "y": 143.56875476702598 + "y": 143.56875 }, { "body": null, "index": 17, "isInternal": false, "x": 224.781, - "y": 139.84875476702598 + "y": 139.84875 }, { "body": null, "index": 18, "isInternal": false, "x": 230.904, - "y": 137.52675476702595 + "y": 137.52675 }, { "body": null, "index": 19, "isInternal": false, "x": 237.404, - "y": 136.73775476702596 + "y": 136.73775 }, { "body": null, "index": 20, "isInternal": false, "x": 243.904, - "y": 137.52675476702595 + "y": 137.52675 }, { "body": null, "index": 21, "isInternal": false, "x": 250.027, - "y": 139.84875476702598 + "y": 139.84875 }, { "body": null, "index": 22, "isInternal": false, "x": 255.416, - "y": 143.56875476702598 + "y": 143.56875 }, { "body": null, "index": 23, "isInternal": false, "x": 259.758, - "y": 148.469754767026 + "y": 148.46975 }, { "body": null, "index": 24, "isInternal": false, "x": 262.801, - "y": 154.267754767026 + "y": 154.26775 }, { "body": null, "index": 25, "isInternal": false, "x": 264.368, - "y": 160.625754767026 + "y": 160.62575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2363.7519140000004, + "area": 2363.75191, "axes": { "#": 831 }, "bounds": { "#": 845 }, - "circleRadius": 27.56423611111111, + "circleRadius": 27.56424, "collisionFilter": { "#": 848 }, @@ -7866,13 +7866,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 3557.0682353306725, - "inverseInertia": 0.0002811303955508849, - "inverseMass": 0.4230562412566279, + "inertia": 3557.06824, + "inverseInertia": 0.00028, + "inverseMass": 0.42306, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.3637519140000003, + "mass": 2.36375, "motion": 0, "parent": null, "position": { @@ -7894,7 +7894,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7948,52 +7948,52 @@ } ], { - "x": -0.9709428209429523, - "y": -0.23931159282270878 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854660217302829, - "y": -0.46470412561235797 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7484793383049184, - "y": -0.6631581109589413 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681373331772201, - "y": -0.8229337583610702 + "x": -0.56814, + "y": -0.82293 }, { - "x": -0.35456803389279123, - "y": -0.9350302184108279 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12053359231150376, - "y": -0.9927092490374432 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12053359231150376, - "y": -0.9927092490374432 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35456803389279123, - "y": -0.9350302184108279 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5681373331772201, - "y": -0.8229337583610702 + "x": 0.56814, + "y": -0.82293 }, { - "x": 0.7484793383049184, - "y": -0.6631581109589413 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8854660217302829, - "y": -0.46470412561235797 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.9709428209429523, - "y": -0.23931159282270878 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -8009,11 +8009,11 @@ }, { "x": 329.094, - "y": 191.86575476702598 + "y": 191.86575 }, { "x": 274.368, - "y": 136.73775476702596 + "y": 136.73775 }, { "category": 1, @@ -8031,7 +8031,7 @@ }, { "x": 301.731, - "y": 164.30175476702598 + "y": 164.30175 }, { "x": 0, @@ -8039,7 +8039,7 @@ }, { "x": 301.731, - "y": 161.3944840519903 + "y": 161.39448 }, { "endCol": 6, @@ -8063,7 +8063,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8150,196 +8150,196 @@ "index": 0, "isInternal": false, "x": 329.094, - "y": 167.624754767026 + "y": 167.62475 }, { "body": null, "index": 1, "isInternal": false, "x": 327.504, - "y": 174.07575476702598 + "y": 174.07575 }, { "body": null, "index": 2, "isInternal": false, "x": 324.416, - "y": 179.95975476702597 + "y": 179.95975 }, { "body": null, "index": 3, "isInternal": false, "x": 320.009, - "y": 184.933754767026 + "y": 184.93375 }, { "body": null, "index": 4, "isInternal": false, "x": 314.541, - "y": 188.708754767026 + "y": 188.70875 }, { "body": null, "index": 5, "isInternal": false, "x": 308.328, - "y": 191.064754767026 + "y": 191.06475 }, { "body": null, "index": 6, "isInternal": false, "x": 301.731, - "y": 191.86575476702598 + "y": 191.86575 }, { "body": null, "index": 7, "isInternal": false, "x": 295.134, - "y": 191.064754767026 + "y": 191.06475 }, { "body": null, "index": 8, "isInternal": false, "x": 288.921, - "y": 188.708754767026 + "y": 188.70875 }, { "body": null, "index": 9, "isInternal": false, "x": 283.453, - "y": 184.933754767026 + "y": 184.93375 }, { "body": null, "index": 10, "isInternal": false, "x": 279.046, - "y": 179.95975476702597 + "y": 179.95975 }, { "body": null, "index": 11, "isInternal": false, - "x": 275.95799999999997, - "y": 174.07575476702598 + "x": 275.958, + "y": 174.07575 }, { "body": null, "index": 12, "isInternal": false, "x": 274.368, - "y": 167.624754767026 + "y": 167.62475 }, { "body": null, "index": 13, "isInternal": false, "x": 274.368, - "y": 160.97875476702598 + "y": 160.97875 }, { "body": null, "index": 14, "isInternal": false, - "x": 275.95799999999997, - "y": 154.52775476702598 + "x": 275.958, + "y": 154.52775 }, { "body": null, "index": 15, "isInternal": false, "x": 279.046, - "y": 148.643754767026 + "y": 148.64375 }, { "body": null, "index": 16, "isInternal": false, "x": 283.453, - "y": 143.66975476702595 + "y": 143.66975 }, { "body": null, "index": 17, "isInternal": false, "x": 288.921, - "y": 139.89475476702597 + "y": 139.89475 }, { "body": null, "index": 18, "isInternal": false, "x": 295.134, - "y": 137.53875476702595 + "y": 137.53875 }, { "body": null, "index": 19, "isInternal": false, "x": 301.731, - "y": 136.73775476702596 + "y": 136.73775 }, { "body": null, "index": 20, "isInternal": false, "x": 308.328, - "y": 137.53875476702595 + "y": 137.53875 }, { "body": null, "index": 21, "isInternal": false, "x": 314.541, - "y": 139.89475476702597 + "y": 139.89475 }, { "body": null, "index": 22, "isInternal": false, "x": 320.009, - "y": 143.66975476702595 + "y": 143.66975 }, { "body": null, "index": 23, "isInternal": false, "x": 324.416, - "y": 148.643754767026 + "y": 148.64375 }, { "body": null, "index": 24, "isInternal": false, "x": 327.504, - "y": 154.52775476702598 + "y": 154.52775 }, { "body": null, "index": 25, "isInternal": false, "x": 329.094, - "y": 160.97875476702598 + "y": 160.97875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1829.106108, + "area": 1829.10611, "axes": { "#": 886 }, "bounds": { "#": 900 }, - "circleRadius": 24.247235082304528, + "circleRadius": 24.24724, "collisionFilter": { "#": 903 }, @@ -8354,13 +8354,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 2129.934309931321, - "inverseInertia": 0.0004694980475863806, - "inverseMass": 0.546715138955733, + "inertia": 2129.93431, + "inverseInertia": 0.00047, + "inverseMass": 0.54672, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.829106108, + "mass": 1.82911, "motion": 0, "parent": null, "position": { @@ -8382,7 +8382,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8436,52 +8436,52 @@ } ], { - "x": -0.9709720988374455, - "y": -0.2391927743039204 + "x": -0.97097, + "y": -0.23919 }, { - "x": -0.8854260626172822, - "y": -0.46478025736691625 + "x": -0.88543, + "y": -0.46478 }, { - "x": -0.7485032569212987, - "y": -0.6631311140175887 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.568088667994131, - "y": -0.8229673537247112 + "x": -0.56809, + "y": -0.82297 }, { - "x": -0.3546645491504353, - "y": -0.9349936136551515 + "x": -0.35466, + "y": -0.93499 }, { - "x": -0.12043354466296623, - "y": -0.9927213915897619 + "x": -0.12043, + "y": -0.99272 }, { - "x": 0.12043354466296623, - "y": -0.9927213915897619 + "x": 0.12043, + "y": -0.99272 }, { - "x": 0.3546645491504353, - "y": -0.9349936136551515 + "x": 0.35466, + "y": -0.93499 }, { - "x": 0.568088667994131, - "y": -0.8229673537247112 + "x": 0.56809, + "y": -0.82297 }, { - "x": 0.7485032569212987, - "y": -0.6631311140175887 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854260626172822, - "y": -0.46478025736691625 + "x": 0.88543, + "y": -0.46478 }, { - "x": 0.9709720988374455, - "y": -0.2391927743039204 + "x": 0.97097, + "y": -0.23919 }, { "x": 1, @@ -8497,11 +8497,11 @@ }, { "x": 387.234, - "y": 185.23175476702602 + "y": 185.23175 }, { "x": 339.094, - "y": 136.73775476702596 + "y": 136.73775 }, { "category": 1, @@ -8519,7 +8519,7 @@ }, { "x": 363.164, - "y": 160.984754767026 + "y": 160.98475 }, { "x": 0, @@ -8527,7 +8527,7 @@ }, { "x": 363.164, - "y": 158.07748405199033 + "y": 158.07748 }, { "endCol": 8, @@ -8551,7 +8551,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8638,196 +8638,196 @@ "index": 0, "isInternal": false, "x": 387.234, - "y": 163.907754767026 + "y": 163.90775 }, { "body": null, "index": 1, "isInternal": false, "x": 385.836, - "y": 169.58275476702602 + "y": 169.58275 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.11899999999997, - "y": 174.758754767026 + "x": 383.119, + "y": 174.75875 }, { "body": null, "index": 3, "isInternal": false, "x": 379.243, - "y": 179.133754767026 + "y": 179.13375 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.43199999999996, - "y": 182.454754767026 + "x": 374.432, + "y": 182.45475 }, { "body": null, "index": 5, "isInternal": false, "x": 368.967, - "y": 184.527754767026 + "y": 184.52775 }, { "body": null, "index": 6, "isInternal": false, "x": 363.164, - "y": 185.23175476702602 + "y": 185.23175 }, { "body": null, "index": 7, "isInternal": false, "x": 357.361, - "y": 184.527754767026 + "y": 184.52775 }, { "body": null, "index": 8, "isInternal": false, "x": 351.896, - "y": 182.454754767026 + "y": 182.45475 }, { "body": null, "index": 9, "isInternal": false, "x": 347.085, - "y": 179.133754767026 + "y": 179.13375 }, { "body": null, "index": 10, "isInternal": false, "x": 343.209, - "y": 174.758754767026 + "y": 174.75875 }, { "body": null, "index": 11, "isInternal": false, - "x": 340.49199999999996, - "y": 169.58275476702602 + "x": 340.492, + "y": 169.58275 }, { "body": null, "index": 12, "isInternal": false, "x": 339.094, - "y": 163.907754767026 + "y": 163.90775 }, { "body": null, "index": 13, "isInternal": false, "x": 339.094, - "y": 158.061754767026 + "y": 158.06175 }, { "body": null, "index": 14, "isInternal": false, - "x": 340.49199999999996, - "y": 152.386754767026 + "x": 340.492, + "y": 152.38675 }, { "body": null, "index": 15, "isInternal": false, "x": 343.209, - "y": 147.210754767026 + "y": 147.21075 }, { "body": null, "index": 16, "isInternal": false, "x": 347.085, - "y": 142.83575476702597 + "y": 142.83575 }, { "body": null, "index": 17, "isInternal": false, "x": 351.896, - "y": 139.51475476702598 + "y": 139.51475 }, { "body": null, "index": 18, "isInternal": false, "x": 357.361, - "y": 137.44175476702597 + "y": 137.44175 }, { "body": null, "index": 19, "isInternal": false, "x": 363.164, - "y": 136.73775476702596 + "y": 136.73775 }, { "body": null, "index": 20, "isInternal": false, "x": 368.967, - "y": 137.44175476702597 + "y": 137.44175 }, { "body": null, "index": 21, "isInternal": false, - "x": 374.43199999999996, - "y": 139.51475476702598 + "x": 374.432, + "y": 139.51475 }, { "body": null, "index": 22, "isInternal": false, "x": 379.243, - "y": 142.83575476702597 + "y": 142.83575 }, { "body": null, "index": 23, "isInternal": false, - "x": 383.11899999999997, - "y": 147.210754767026 + "x": 383.119, + "y": 147.21075 }, { "body": null, "index": 24, "isInternal": false, "x": 385.836, - "y": 152.386754767026 + "y": 152.38675 }, { "body": null, "index": 25, "isInternal": false, "x": 387.234, - "y": 158.061754767026 + "y": 158.06175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1331.712504, + "area": 1331.7125, "axes": { "#": 941 }, "bounds": { "#": 953 }, - "circleRadius": 20.729616769547324, + "circleRadius": 20.72962, "collisionFilter": { "#": 956 }, @@ -8842,13 +8842,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1129.0606916324366, - "inverseInertia": 0.0008856919804321272, - "inverseMass": 0.7509128261515519, + "inertia": 1129.06069, + "inverseInertia": 0.00089, + "inverseMass": 0.75091, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3317125040000002, + "mass": 1.33171, "motion": 0, "parent": null, "position": { @@ -8870,7 +8870,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8918,44 +8918,44 @@ } ], { - "x": -0.9594572104893309, - "y": -0.28185432627517293 + "x": -0.95946, + "y": -0.28185 }, { - "x": -0.8412665659715145, - "y": -0.5406205369559092 + "x": -0.84127, + "y": -0.54062 }, { - "x": -0.6548853702477502, - "y": -0.755728226173581 + "x": -0.65489, + "y": -0.75573 }, { - "x": -0.41541125830941705, - "y": -0.9096337100557491 + "x": -0.41541, + "y": -0.90963 }, { - "x": -0.14237042741969902, - "y": -0.9898134477750504 + "x": -0.14237, + "y": -0.98981 }, { - "x": 0.14237042741969902, - "y": -0.9898134477750504 + "x": 0.14237, + "y": -0.98981 }, { - "x": 0.41541125830941705, - "y": -0.9096337100557491 + "x": 0.41541, + "y": -0.90963 }, { - "x": 0.6548853702477502, - "y": -0.755728226173581 + "x": 0.65489, + "y": -0.75573 }, { - "x": 0.8412665659715145, - "y": -0.5406205369559092 + "x": 0.84127, + "y": -0.54062 }, { - "x": 0.9594572104893309, - "y": -0.28185432627517293 + "x": 0.95946, + "y": -0.28185 }, { "x": 1, @@ -8971,11 +8971,11 @@ }, { "x": 438.272, - "y": 178.19775476702597 + "y": 178.19775 }, { "x": 397.234, - "y": 136.73775476702593 + "y": 136.73775 }, { "category": 1, @@ -8993,7 +8993,7 @@ }, { "x": 417.753, - "y": 157.46775476702598 + "y": 157.46775 }, { "x": 0, @@ -9001,7 +9001,7 @@ }, { "x": 417.753, - "y": 154.5604840519903 + "y": 154.56048 }, { "endCol": 9, @@ -9025,7 +9025,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9100,168 +9100,168 @@ "index": 0, "isInternal": false, "x": 438.272, - "y": 160.417754767026 + "y": 160.41775 }, { "body": null, "index": 1, "isInternal": false, "x": 436.609, - "y": 166.078754767026 + "y": 166.07875 }, { "body": null, "index": 2, "isInternal": false, "x": 433.419, - "y": 171.04275476702597 + "y": 171.04275 }, { "body": null, "index": 3, "isInternal": false, "x": 428.96, - "y": 174.90675476702597 + "y": 174.90675 }, { "body": null, "index": 4, "isInternal": false, - "x": 423.59299999999996, - "y": 177.35775476702597 + "x": 423.593, + "y": 177.35775 }, { "body": null, "index": 5, "isInternal": false, "x": 417.753, - "y": 178.19775476702597 + "y": 178.19775 }, { "body": null, "index": 6, "isInternal": false, "x": 411.913, - "y": 177.35775476702597 + "y": 177.35775 }, { "body": null, "index": 7, "isInternal": false, "x": 406.546, - "y": 174.90675476702597 + "y": 174.90675 }, { "body": null, "index": 8, "isInternal": false, "x": 402.087, - "y": 171.04275476702597 + "y": 171.04275 }, { "body": null, "index": 9, "isInternal": false, "x": 398.897, - "y": 166.078754767026 + "y": 166.07875 }, { "body": null, "index": 10, "isInternal": false, "x": 397.234, - "y": 160.417754767026 + "y": 160.41775 }, { "body": null, "index": 11, "isInternal": false, "x": 397.234, - "y": 154.51775476702596 + "y": 154.51775 }, { "body": null, "index": 12, "isInternal": false, "x": 398.897, - "y": 148.85675476702596 + "y": 148.85675 }, { "body": null, "index": 13, "isInternal": false, "x": 402.087, - "y": 143.89275476702596 + "y": 143.89275 }, { "body": null, "index": 14, "isInternal": false, "x": 406.546, - "y": 140.02875476702596 + "y": 140.02875 }, { "body": null, "index": 15, "isInternal": false, "x": 411.913, - "y": 137.57775476702594 + "y": 137.57775 }, { "body": null, "index": 16, "isInternal": false, "x": 417.753, - "y": 136.73775476702593 + "y": 136.73775 }, { "body": null, "index": 17, "isInternal": false, - "x": 423.59299999999996, - "y": 137.57775476702594 + "x": 423.593, + "y": 137.57775 }, { "body": null, "index": 18, "isInternal": false, "x": 428.96, - "y": 140.02875476702596 + "y": 140.02875 }, { "body": null, "index": 19, "isInternal": false, "x": 433.419, - "y": 143.89275476702596 + "y": 143.89275 }, { "body": null, "index": 20, "isInternal": false, "x": 436.609, - "y": 148.85675476702596 + "y": 148.85675 }, { "body": null, "index": 21, "isInternal": false, "x": 438.272, - "y": 154.51775476702596 + "y": 154.51775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 852.4351440000002, + "area": 852.43514, "axes": { "#": 990 }, "bounds": { "#": 1000 }, - "circleRadius": 16.641010802469136, + "circleRadius": 16.64101, "collisionFilter": { "#": 1003 }, @@ -9276,13 +9276,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 462.6357210539542, - "inverseInertia": 0.0021615278598069525, - "inverseMass": 1.173109775023541, + "inertia": 462.63572, + "inverseInertia": 0.00216, + "inverseMass": 1.17311, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8524351440000002, + "mass": 0.85244, "motion": 0, "parent": null, "position": { @@ -9304,7 +9304,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9346,36 +9346,36 @@ } ], { - "x": -0.9397327846091404, - "y": -0.3419097739620075 + "x": -0.93973, + "y": -0.34191 }, { - "x": -0.7660183763241144, - "y": -0.6428186736038145 + "x": -0.76602, + "y": -0.64282 }, { - "x": -0.4999171846810808, - "y": -0.86607321195182 + "x": -0.49992, + "y": -0.86607 }, { - "x": -0.1737063737965816, - "y": -0.9847974896913791 + "x": -0.17371, + "y": -0.9848 }, { - "x": 0.1737063737965816, - "y": -0.9847974896913791 + "x": 0.17371, + "y": -0.9848 }, { - "x": 0.4999171846810808, - "y": -0.86607321195182 + "x": 0.49992, + "y": -0.86607 }, { - "x": 0.7660183763241144, - "y": -0.6428186736038145 + "x": 0.76602, + "y": -0.64282 }, { - "x": 0.9397327846091404, - "y": -0.3419097739620075 + "x": 0.93973, + "y": -0.34191 }, { "x": 1, @@ -9390,12 +9390,12 @@ } }, { - "x": 481.04799999999994, - "y": 170.01975476702597 + "x": 481.048, + "y": 170.01975 }, { "x": 448.272, - "y": 136.73775476702596 + "y": 136.73775 }, { "category": 1, @@ -9412,16 +9412,16 @@ "y": 0 }, { - "x": 464.65999999999997, - "y": 153.37875476702598 + "x": 464.66, + "y": 153.37875 }, { "x": 0, "y": 0 }, { - "x": 464.65999999999997, - "y": 150.4714840519903 + "x": 464.66, + "y": 150.47148 }, { "endCol": 10, @@ -9445,7 +9445,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9507,141 +9507,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 481.04799999999994, - "y": 156.268754767026 + "x": 481.048, + "y": 156.26875 }, { "body": null, "index": 1, "isInternal": false, - "x": 479.07199999999995, - "y": 161.69975476702598 + "x": 479.072, + "y": 161.69975 }, { "body": null, "index": 2, "isInternal": false, - "x": 475.35699999999997, - "y": 166.12675476702597 + "x": 475.357, + "y": 166.12675 }, { "body": null, "index": 3, "isInternal": false, "x": 470.352, - "y": 169.01575476702598 + "y": 169.01575 }, { "body": null, "index": 4, "isInternal": false, - "x": 464.65999999999997, - "y": 170.01975476702597 + "x": 464.66, + "y": 170.01975 }, { "body": null, "index": 5, "isInternal": false, - "x": 458.96799999999996, - "y": 169.01575476702598 + "x": 458.968, + "y": 169.01575 }, { "body": null, "index": 6, "isInternal": false, - "x": 453.96299999999997, - "y": 166.12675476702597 + "x": 453.963, + "y": 166.12675 }, { "body": null, "index": 7, "isInternal": false, "x": 450.248, - "y": 161.69975476702598 + "y": 161.69975 }, { "body": null, "index": 8, "isInternal": false, "x": 448.272, - "y": 156.268754767026 + "y": 156.26875 }, { "body": null, "index": 9, "isInternal": false, "x": 448.272, - "y": 150.48875476702597 + "y": 150.48875 }, { "body": null, "index": 10, "isInternal": false, "x": 450.248, - "y": 145.05775476702598 + "y": 145.05775 }, { "body": null, "index": 11, "isInternal": false, - "x": 453.96299999999997, - "y": 140.63075476702596 + "x": 453.963, + "y": 140.63075 }, { "body": null, "index": 12, "isInternal": false, - "x": 458.96799999999996, - "y": 137.74175476702595 + "x": 458.968, + "y": 137.74175 }, { "body": null, "index": 13, "isInternal": false, - "x": 464.65999999999997, - "y": 136.73775476702596 + "x": 464.66, + "y": 136.73775 }, { "body": null, "index": 14, "isInternal": false, "x": 470.352, - "y": 137.74175476702595 + "y": 137.74175 }, { "body": null, "index": 15, "isInternal": false, - "x": 475.35699999999997, - "y": 140.63075476702596 + "x": 475.357, + "y": 140.63075 }, { "body": null, "index": 16, "isInternal": false, - "x": 479.07199999999995, - "y": 145.05775476702598 + "x": 479.072, + "y": 145.05775 }, { "body": null, "index": 17, "isInternal": false, - "x": 481.04799999999994, - "y": 150.48875476702597 + "x": 481.048, + "y": 150.48875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2687.108398, + "area": 2687.1084, "axes": { "#": 1033 }, "bounds": { "#": 1047 }, - "circleRadius": 29.388824588477366, + "circleRadius": 29.38882, "collisionFilter": { "#": 1050 }, @@ -9656,13 +9656,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 4596.833586630778, - "inverseInertia": 0.00021754104888816394, - "inverseMass": 0.3721472497143377, + "inertia": 4596.83359, + "inverseInertia": 0.00022, + "inverseMass": 0.37215, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.687108398, + "mass": 2.68711, "motion": 0, "parent": null, "position": { @@ -9684,7 +9684,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9738,52 +9738,52 @@ } ], { - "x": -0.9709261131040956, - "y": -0.23937937023179934 + "x": -0.97093, + "y": -0.23938 }, { - "x": -0.8855053411184941, - "y": -0.4646291971568505 + "x": -0.88551, + "y": -0.46463 }, { - "x": -0.7484440565964828, - "y": -0.6631979298410096 + "x": -0.74844, + "y": -0.6632 }, { - "x": -0.5681452001163276, - "y": -0.8229283271250164 + "x": -0.56815, + "y": -0.82293 }, { - "x": -0.3545393548617785, - "y": -0.9350410931366568 + "x": -0.35454, + "y": -0.93504 }, { - "x": -0.12054213183122658, - "y": -0.9927082121417065 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12054213183122658, - "y": -0.9927082121417065 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.3545393548617785, - "y": -0.9350410931366568 + "x": 0.35454, + "y": -0.93504 }, { - "x": 0.5681452001163276, - "y": -0.8229283271250164 + "x": 0.56815, + "y": -0.82293 }, { - "x": 0.7484440565964828, - "y": -0.6631979298410096 + "x": 0.74844, + "y": -0.6632 }, { - "x": 0.8855053411184941, - "y": -0.4646291971568505 + "x": 0.88551, + "y": -0.46463 }, { - "x": 0.9709261131040956, - "y": -0.23937937023179934 + "x": 0.97093, + "y": -0.23938 }, { "x": 1, @@ -9798,12 +9798,12 @@ } }, { - "x": 549.3979999999999, - "y": 195.515754767026 + "x": 549.398, + "y": 195.51575 }, { - "x": 491.04799999999994, - "y": 136.73775476702596 + "x": 491.048, + "y": 136.73775 }, { "category": 1, @@ -9821,7 +9821,7 @@ }, { "x": 520.223, - "y": 166.126754767026 + "y": 166.12675 }, { "x": 0, @@ -9829,7 +9829,7 @@ }, { "x": 520.223, - "y": 163.21948405199032 + "y": 163.21948 }, { "endCol": 11, @@ -9853,7 +9853,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9939,197 +9939,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 549.3979999999999, - "y": 169.668754767026 + "x": 549.398, + "y": 169.66875 }, { "body": null, "index": 1, "isInternal": false, "x": 547.702, - "y": 176.547754767026 + "y": 176.54775 }, { "body": null, "index": 2, "isInternal": false, - "x": 544.4099999999999, - "y": 182.821754767026 + "x": 544.41, + "y": 182.82175 }, { "body": null, "index": 3, "isInternal": false, "x": 539.711, - "y": 188.124754767026 + "y": 188.12475 }, { "body": null, "index": 4, "isInternal": false, "x": 533.881, - "y": 192.149754767026 + "y": 192.14975 }, { "body": null, "index": 5, "isInternal": false, "x": 527.256, - "y": 194.661754767026 + "y": 194.66175 }, { "body": null, "index": 6, "isInternal": false, "x": 520.223, - "y": 195.515754767026 + "y": 195.51575 }, { "body": null, "index": 7, "isInternal": false, - "x": 513.1899999999999, - "y": 194.661754767026 + "x": 513.19, + "y": 194.66175 }, { "body": null, "index": 8, "isInternal": false, - "x": 506.56499999999994, - "y": 192.149754767026 + "x": 506.565, + "y": 192.14975 }, { "body": null, "index": 9, "isInternal": false, - "x": 500.73499999999996, - "y": 188.124754767026 + "x": 500.735, + "y": 188.12475 }, { "body": null, "index": 10, "isInternal": false, - "x": 496.03599999999994, - "y": 182.821754767026 + "x": 496.036, + "y": 182.82175 }, { "body": null, "index": 11, "isInternal": false, - "x": 492.74399999999997, - "y": 176.547754767026 + "x": 492.744, + "y": 176.54775 }, { "body": null, "index": 12, "isInternal": false, - "x": 491.04799999999994, - "y": 169.668754767026 + "x": 491.048, + "y": 169.66875 }, { "body": null, "index": 13, "isInternal": false, - "x": 491.04799999999994, - "y": 162.584754767026 + "x": 491.048, + "y": 162.58475 }, { "body": null, "index": 14, "isInternal": false, - "x": 492.74399999999997, - "y": 155.705754767026 + "x": 492.744, + "y": 155.70575 }, { "body": null, "index": 15, "isInternal": false, - "x": 496.03599999999994, - "y": 149.431754767026 + "x": 496.036, + "y": 149.43175 }, { "body": null, "index": 16, "isInternal": false, - "x": 500.73499999999996, - "y": 144.12875476702598 + "x": 500.735, + "y": 144.12875 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.56499999999994, - "y": 140.10375476702598 + "x": 506.565, + "y": 140.10375 }, { "body": null, "index": 18, "isInternal": false, - "x": 513.1899999999999, - "y": 137.59175476702598 + "x": 513.19, + "y": 137.59175 }, { "body": null, "index": 19, "isInternal": false, "x": 520.223, - "y": 136.73775476702596 + "y": 136.73775 }, { "body": null, "index": 20, "isInternal": false, "x": 527.256, - "y": 137.59175476702598 + "y": 137.59175 }, { "body": null, "index": 21, "isInternal": false, "x": 533.881, - "y": 140.10375476702598 + "y": 140.10375 }, { "body": null, "index": 22, "isInternal": false, "x": 539.711, - "y": 144.12875476702598 + "y": 144.12875 }, { "body": null, "index": 23, "isInternal": false, - "x": 544.4099999999999, - "y": 149.431754767026 + "x": 544.41, + "y": 149.43175 }, { "body": null, "index": 24, "isInternal": false, "x": 547.702, - "y": 155.705754767026 + "y": 155.70575 }, { "body": null, "index": 25, "isInternal": false, - "x": 549.3979999999999, - "y": 162.584754767026 + "x": 549.398, + "y": 162.58475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1343.973232, + "area": 1343.97323, "axes": { "#": 1088 }, "bounds": { "#": 1100 }, - "circleRadius": 20.824909979423868, + "circleRadius": 20.82491, "collisionFilter": { "#": 1103 }, @@ -10144,13 +10144,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1149.9463267575188, - "inverseInertia": 0.0008696058039679821, - "inverseMass": 0.7440624382911816, + "inertia": 1149.94633, + "inverseInertia": 0.00087, + "inverseMass": 0.74406, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3439732320000002, + "mass": 1.34397, "motion": 0, "parent": null, "position": { @@ -10172,7 +10172,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10220,44 +10220,44 @@ } ], { - "x": -0.9594863085383493, - "y": -0.28175525501301946 + "x": -0.95949, + "y": -0.28176 }, { - "x": -0.841200401216122, - "y": -0.5407234829317434 + "x": -0.8412, + "y": -0.54072 }, { - "x": -0.6549498076310009, - "y": -0.7556723823748722 + "x": -0.65495, + "y": -0.75567 }, { - "x": -0.41535304835231424, - "y": -0.9096602911111599 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.1423896733188219, - "y": -0.9898106793383061 + "x": -0.14239, + "y": -0.98981 }, { - "x": 0.1423896733188219, - "y": -0.9898106793383061 + "x": 0.14239, + "y": -0.98981 }, { - "x": 0.41535304835231424, - "y": -0.9096602911111599 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6549498076310009, - "y": -0.7556723823748722 + "x": 0.65495, + "y": -0.75567 }, { - "x": 0.841200401216122, - "y": -0.5407234829317434 + "x": 0.8412, + "y": -0.54072 }, { - "x": 0.9594863085383493, - "y": -0.28175525501301946 + "x": 0.95949, + "y": -0.28176 }, { "x": 1, @@ -10273,11 +10273,11 @@ }, { "x": 600.624, - "y": 178.38775476702597 + "y": 178.38775 }, { - "x": 559.3979999999999, - "y": 136.73775476702593 + "x": 559.398, + "y": 136.73775 }, { "category": 1, @@ -10295,7 +10295,7 @@ }, { "x": 580.011, - "y": 157.56275476702598 + "y": 157.56275 }, { "x": 0, @@ -10303,7 +10303,7 @@ }, { "x": 580.011, - "y": 154.6554840519903 + "y": 154.65548 }, { "endCol": 12, @@ -10327,7 +10327,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10402,168 +10402,168 @@ "index": 0, "isInternal": false, "x": 600.624, - "y": 160.52675476702598 + "y": 160.52675 }, { "body": null, "index": 1, "isInternal": false, "x": 598.954, - "y": 166.213754767026 + "y": 166.21375 }, { "body": null, "index": 2, "isInternal": false, "x": 595.749, - "y": 171.19975476702598 + "y": 171.19975 }, { "body": null, "index": 3, "isInternal": false, "x": 591.27, - "y": 175.08175476702598 + "y": 175.08175 }, { "body": null, "index": 4, "isInternal": false, - "x": 585.8779999999999, - "y": 177.54375476702597 + "x": 585.878, + "y": 177.54375 }, { "body": null, "index": 5, "isInternal": false, "x": 580.011, - "y": 178.38775476702597 + "y": 178.38775 }, { "body": null, "index": 6, "isInternal": false, "x": 574.144, - "y": 177.54375476702597 + "y": 177.54375 }, { "body": null, "index": 7, "isInternal": false, "x": 568.752, - "y": 175.08175476702598 + "y": 175.08175 }, { "body": null, "index": 8, "isInternal": false, - "x": 564.2729999999999, - "y": 171.19975476702598 + "x": 564.273, + "y": 171.19975 }, { "body": null, "index": 9, "isInternal": false, "x": 561.068, - "y": 166.213754767026 + "y": 166.21375 }, { "body": null, "index": 10, "isInternal": false, - "x": 559.3979999999999, - "y": 160.52675476702598 + "x": 559.398, + "y": 160.52675 }, { "body": null, "index": 11, "isInternal": false, - "x": 559.3979999999999, - "y": 154.59875476702598 + "x": 559.398, + "y": 154.59875 }, { "body": null, "index": 12, "isInternal": false, "x": 561.068, - "y": 148.91175476702597 + "y": 148.91175 }, { "body": null, "index": 13, "isInternal": false, - "x": 564.2729999999999, - "y": 143.92575476702595 + "x": 564.273, + "y": 143.92575 }, { "body": null, "index": 14, "isInternal": false, "x": 568.752, - "y": 140.04375476702594 + "y": 140.04375 }, { "body": null, "index": 15, "isInternal": false, "x": 574.144, - "y": 137.58175476702596 + "y": 137.58175 }, { "body": null, "index": 16, "isInternal": false, "x": 580.011, - "y": 136.73775476702593 + "y": 136.73775 }, { "body": null, "index": 17, "isInternal": false, - "x": 585.8779999999999, - "y": 137.58175476702596 + "x": 585.878, + "y": 137.58175 }, { "body": null, "index": 18, "isInternal": false, "x": 591.27, - "y": 140.04375476702594 + "y": 140.04375 }, { "body": null, "index": 19, "isInternal": false, "x": 595.749, - "y": 143.92575476702595 + "y": 143.92575 }, { "body": null, "index": 20, "isInternal": false, "x": 598.954, - "y": 148.91175476702597 + "y": 148.91175 }, { "body": null, "index": 21, "isInternal": false, "x": 600.624, - "y": 154.59875476702598 + "y": 154.59875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2600.5853180000004, + "area": 2600.58532, "axes": { "#": 1137 }, "bounds": { "#": 1151 }, - "circleRadius": 28.912229938271604, + "circleRadius": 28.91223, "collisionFilter": { "#": 1154 }, @@ -10578,13 +10578,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 4305.569679703002, - "inverseInertia": 0.00023225730260832288, - "inverseMass": 0.3845288186003671, + "inertia": 4305.56968, + "inverseInertia": 0.00023, + "inverseMass": 0.38453, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6005853180000003, + "mass": 2.60059, "motion": 0, "parent": null, "position": { @@ -10606,7 +10606,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10660,52 +10660,52 @@ } ], { - "x": -0.970939006803869, - "y": -0.23932706714184315 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854746498616403, - "y": -0.4646876848512401 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7485006850783444, - "y": -0.6631340169507588 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5681352009209623, - "y": -0.8229352304249088 + "x": -0.56814, + "y": -0.82294 }, { - "x": -0.35453312532100223, - "y": -0.9350434551667225 + "x": -0.35453, + "y": -0.93504 }, { - "x": -0.12051989679740689, - "y": -0.9927109118348314 + "x": -0.12052, + "y": -0.99271 }, { - "x": 0.12051989679740689, - "y": -0.9927109118348314 + "x": 0.12052, + "y": -0.99271 }, { - "x": 0.35453312532100223, - "y": -0.9350434551667225 + "x": 0.35453, + "y": -0.93504 }, { - "x": 0.5681352009209623, - "y": -0.8229352304249088 + "x": 0.56814, + "y": -0.82294 }, { - "x": 0.7485006850783444, - "y": -0.6631340169507588 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854746498616403, - "y": -0.4646876848512401 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.970939006803869, - "y": -0.23932706714184315 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -10720,12 +10720,12 @@ } }, { - "x": 668.0260000000001, - "y": 194.561754767026 + "x": 668.026, + "y": 194.56175 }, { "x": 610.624, - "y": 136.73775476702596 + "y": 136.73775 }, { "category": 1, @@ -10743,7 +10743,7 @@ }, { "x": 639.325, - "y": 165.649754767026 + "y": 165.64975 }, { "x": 0, @@ -10751,7 +10751,7 @@ }, { "x": 639.325, - "y": 162.74248405199032 + "y": 162.74248 }, { "endCol": 13, @@ -10775,7 +10775,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10861,197 +10861,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 668.0260000000001, - "y": 169.13475476702598 + "x": 668.026, + "y": 169.13475 }, { "body": null, "index": 1, "isInternal": false, - "x": 666.3580000000001, - "y": 175.901754767026 + "x": 666.358, + "y": 175.90175 }, { "body": null, "index": 2, "isInternal": false, "x": 663.119, - "y": 182.073754767026 + "y": 182.07375 }, { "body": null, "index": 3, "isInternal": false, - "x": 658.4970000000001, - "y": 187.290754767026 + "x": 658.497, + "y": 187.29075 }, { "body": null, "index": 4, "isInternal": false, - "x": 652.7610000000001, - "y": 191.250754767026 + "x": 652.761, + "y": 191.25075 }, { "body": null, "index": 5, "isInternal": false, "x": 646.244, - "y": 193.721754767026 + "y": 193.72175 }, { "body": null, "index": 6, "isInternal": false, "x": 639.325, - "y": 194.561754767026 + "y": 194.56175 }, { "body": null, "index": 7, "isInternal": false, - "x": 632.4060000000001, - "y": 193.721754767026 + "x": 632.406, + "y": 193.72175 }, { "body": null, "index": 8, "isInternal": false, "x": 625.889, - "y": 191.250754767026 + "y": 191.25075 }, { "body": null, "index": 9, "isInternal": false, "x": 620.153, - "y": 187.290754767026 + "y": 187.29075 }, { "body": null, "index": 10, "isInternal": false, - "x": 615.5310000000001, - "y": 182.073754767026 + "x": 615.531, + "y": 182.07375 }, { "body": null, "index": 11, "isInternal": false, "x": 612.292, - "y": 175.901754767026 + "y": 175.90175 }, { "body": null, "index": 12, "isInternal": false, "x": 610.624, - "y": 169.13475476702598 + "y": 169.13475 }, { "body": null, "index": 13, "isInternal": false, "x": 610.624, - "y": 162.164754767026 + "y": 162.16475 }, { "body": null, "index": 14, "isInternal": false, "x": 612.292, - "y": 155.39775476702602 + "y": 155.39775 }, { "body": null, "index": 15, "isInternal": false, - "x": 615.5310000000001, - "y": 149.225754767026 + "x": 615.531, + "y": 149.22575 }, { "body": null, "index": 16, "isInternal": false, "x": 620.153, - "y": 144.00875476702598 + "y": 144.00875 }, { "body": null, "index": 17, "isInternal": false, "x": 625.889, - "y": 140.04875476702597 + "y": 140.04875 }, { "body": null, "index": 18, "isInternal": false, - "x": 632.4060000000001, - "y": 137.57775476702597 + "x": 632.406, + "y": 137.57775 }, { "body": null, "index": 19, "isInternal": false, "x": 639.325, - "y": 136.73775476702596 + "y": 136.73775 }, { "body": null, "index": 20, "isInternal": false, "x": 646.244, - "y": 137.57775476702597 + "y": 137.57775 }, { "body": null, "index": 21, "isInternal": false, - "x": 652.7610000000001, - "y": 140.04875476702597 + "x": 652.761, + "y": 140.04875 }, { "body": null, "index": 22, "isInternal": false, - "x": 658.4970000000001, - "y": 144.00875476702598 + "x": 658.497, + "y": 144.00875 }, { "body": null, "index": 23, "isInternal": false, "x": 663.119, - "y": 149.225754767026 + "y": 149.22575 }, { "body": null, "index": 24, "isInternal": false, - "x": 666.3580000000001, - "y": 155.39775476702602 + "x": 666.358, + "y": 155.39775 }, { "body": null, "index": 25, "isInternal": false, - "x": 668.0260000000001, - "y": 162.164754767026 + "x": 668.026, + "y": 162.16475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1850.952944, + "area": 1850.95294, "axes": { "#": 1192 }, "bounds": { "#": 1206 }, - "circleRadius": 24.39152520576132, + "circleRadius": 24.39153, "collisionFilter": { "#": 1209 }, @@ -11066,13 +11066,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2181.118018104605, - "inverseInertia": 0.0004584804635509827, - "inverseMass": 0.5402622488278666, + "inertia": 2181.11802, + "inverseInertia": 0.00046, + "inverseMass": 0.54026, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8509529439999999, + "mass": 1.85095, "motion": 0, "parent": null, "position": { @@ -11094,7 +11094,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11148,52 +11148,52 @@ } ], { - "x": -0.9709079069702696, - "y": -0.2394532024897771 + "x": -0.97091, + "y": -0.23945 }, { - "x": -0.8855151102728375, - "y": -0.4646105783110027 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7485061705548478, - "y": -0.663127825265474 + "x": -0.74851, + "y": -0.66313 }, { - "x": -0.568086537608252, - "y": -0.8229688243112665 + "x": -0.56809, + "y": -0.82297 }, { - "x": -0.3545875857376188, - "y": -0.935022804021788 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12058023665523107, - "y": -0.9927035844239549 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12058023665523107, - "y": -0.9927035844239549 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545875857376188, - "y": -0.935022804021788 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.568086537608252, - "y": -0.8229688243112665 + "x": 0.56809, + "y": -0.82297 }, { - "x": 0.7485061705548478, - "y": -0.663127825265474 + "x": 0.74851, + "y": -0.66313 }, { - "x": 0.8855151102728375, - "y": -0.4646105783110027 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709079069702696, - "y": -0.2394532024897771 + "x": 0.97091, + "y": -0.23945 }, { "x": 1, @@ -11209,11 +11209,11 @@ }, { "x": 148.428, - "y": 254.299754767026 + "y": 254.29975 }, { "x": 100, - "y": 205.515754767026 + "y": 205.51575 }, { "category": 1, @@ -11231,7 +11231,7 @@ }, { "x": 124.214, - "y": 229.907754767026 + "y": 229.90775 }, { "x": 0, @@ -11239,7 +11239,7 @@ }, { "x": 124.214, - "y": 227.00048405199033 + "y": 227.00048 }, { "endCol": 3, @@ -11263,7 +11263,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11350,196 +11350,196 @@ "index": 0, "isInternal": false, "x": 148.428, - "y": 232.847754767026 + "y": 232.84775 }, { "body": null, "index": 1, "isInternal": false, - "x": 147.01999999999998, - "y": 238.556754767026 + "x": 147.02, + "y": 238.55675 }, { "body": null, "index": 2, "isInternal": false, "x": 144.288, - "y": 243.763754767026 + "y": 243.76375 }, { "body": null, "index": 3, "isInternal": false, "x": 140.389, - "y": 248.164754767026 + "y": 248.16475 }, { "body": null, "index": 4, "isInternal": false, "x": 135.549, - "y": 251.50575476702602 + "y": 251.50575 }, { "body": null, "index": 5, "isInternal": false, "x": 130.051, - "y": 253.590754767026 + "y": 253.59075 }, { "body": null, "index": 6, "isInternal": false, "x": 124.214, - "y": 254.299754767026 + "y": 254.29975 }, { "body": null, "index": 7, "isInternal": false, "x": 118.377, - "y": 253.590754767026 + "y": 253.59075 }, { "body": null, "index": 8, "isInternal": false, - "x": 112.87899999999999, - "y": 251.50575476702602 + "x": 112.879, + "y": 251.50575 }, { "body": null, "index": 9, "isInternal": false, "x": 108.039, - "y": 248.164754767026 + "y": 248.16475 }, { "body": null, "index": 10, "isInternal": false, "x": 104.14, - "y": 243.763754767026 + "y": 243.76375 }, { "body": null, "index": 11, "isInternal": false, "x": 101.408, - "y": 238.556754767026 + "y": 238.55675 }, { "body": null, "index": 12, "isInternal": false, "x": 100, - "y": 232.847754767026 + "y": 232.84775 }, { "body": null, "index": 13, "isInternal": false, "x": 100, - "y": 226.967754767026 + "y": 226.96775 }, { "body": null, "index": 14, "isInternal": false, "x": 101.408, - "y": 221.258754767026 + "y": 221.25875 }, { "body": null, "index": 15, "isInternal": false, "x": 104.14, - "y": 216.051754767026 + "y": 216.05175 }, { "body": null, "index": 16, "isInternal": false, "x": 108.039, - "y": 211.650754767026 + "y": 211.65075 }, { "body": null, "index": 17, "isInternal": false, - "x": 112.87899999999999, - "y": 208.309754767026 + "x": 112.879, + "y": 208.30975 }, { "body": null, "index": 18, "isInternal": false, "x": 118.377, - "y": 206.224754767026 + "y": 206.22475 }, { "body": null, "index": 19, "isInternal": false, "x": 124.214, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 20, "isInternal": false, "x": 130.051, - "y": 206.224754767026 + "y": 206.22475 }, { "body": null, "index": 21, "isInternal": false, "x": 135.549, - "y": 208.309754767026 + "y": 208.30975 }, { "body": null, "index": 22, "isInternal": false, "x": 140.389, - "y": 211.650754767026 + "y": 211.65075 }, { "body": null, "index": 23, "isInternal": false, "x": 144.288, - "y": 216.051754767026 + "y": 216.05175 }, { "body": null, "index": 24, "isInternal": false, - "x": 147.01999999999998, - "y": 221.258754767026 + "x": 147.02, + "y": 221.25875 }, { "body": null, "index": 25, "isInternal": false, "x": 148.428, - "y": 226.967754767026 + "y": 226.96775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 937.097596, + "area": 937.0976, "axes": { "#": 1247 }, "bounds": { "#": 1257 }, - "circleRadius": 17.447980967078188, + "circleRadius": 17.44798, "collisionFilter": { "#": 1260 }, @@ -11554,13 +11554,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 559.0956546000535, - "inverseInertia": 0.0017886027046934308, - "inverseMass": 1.0671247096017522, + "inertia": 559.09565, + "inverseInertia": 0.00179, + "inverseMass": 1.06712, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.937097596, + "mass": 0.9371, "motion": 0, "parent": null, "position": { @@ -11582,7 +11582,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11624,36 +11624,36 @@ } ], { - "x": -0.9396632611814948, - "y": -0.34210079740590776 + "x": -0.93966, + "y": -0.3421 }, { - "x": -0.7660526086703177, - "y": -0.6427778782358655 + "x": -0.76605, + "y": -0.64278 }, { - "x": -0.5000796067932008, - "y": -0.865979437902285 + "x": -0.50008, + "y": -0.86598 }, { - "x": -0.1735970572002205, - "y": -0.9848167655617075 + "x": -0.1736, + "y": -0.98482 }, { - "x": 0.1735970572002205, - "y": -0.9848167655617075 + "x": 0.1736, + "y": -0.98482 }, { - "x": 0.5000796067932008, - "y": -0.865979437902285 + "x": 0.50008, + "y": -0.86598 }, { - "x": 0.7660526086703177, - "y": -0.6427778782358655 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9396632611814948, - "y": -0.34210079740590776 + "x": 0.93966, + "y": -0.3421 }, { "x": 1, @@ -11668,12 +11668,12 @@ } }, { - "x": 192.79399999999998, - "y": 240.41175476702603 + "x": 192.794, + "y": 240.41175 }, { "x": 158.428, - "y": 205.515754767026 + "y": 205.51575 }, { "category": 1, @@ -11691,7 +11691,7 @@ }, { "x": 175.611, - "y": 222.96375476702602 + "y": 222.96375 }, { "x": 0, @@ -11699,7 +11699,7 @@ }, { "x": 175.611, - "y": 220.05648405199034 + "y": 220.05648 }, { "endCol": 4, @@ -11723,7 +11723,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11785,141 +11785,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 192.79399999999998, - "y": 225.99375476702602 + "x": 192.794, + "y": 225.99375 }, { "body": null, "index": 1, "isInternal": false, "x": 190.721, - "y": 231.687754767026 + "y": 231.68775 }, { "body": null, "index": 2, "isInternal": false, "x": 186.826, - "y": 236.329754767026 + "y": 236.32975 }, { "body": null, "index": 3, "isInternal": false, - "x": 181.57899999999998, - "y": 239.35975476702603 + "x": 181.579, + "y": 239.35975 }, { "body": null, "index": 4, "isInternal": false, "x": 175.611, - "y": 240.41175476702603 + "y": 240.41175 }, { "body": null, "index": 5, "isInternal": false, "x": 169.643, - "y": 239.35975476702603 + "y": 239.35975 }, { "body": null, "index": 6, "isInternal": false, "x": 164.396, - "y": 236.329754767026 + "y": 236.32975 }, { "body": null, "index": 7, "isInternal": false, - "x": 160.50099999999998, - "y": 231.687754767026 + "x": 160.501, + "y": 231.68775 }, { "body": null, "index": 8, "isInternal": false, "x": 158.428, - "y": 225.99375476702602 + "y": 225.99375 }, { "body": null, "index": 9, "isInternal": false, "x": 158.428, - "y": 219.93375476702602 + "y": 219.93375 }, { "body": null, "index": 10, "isInternal": false, - "x": 160.50099999999998, - "y": 214.23975476702603 + "x": 160.501, + "y": 214.23975 }, { "body": null, "index": 11, "isInternal": false, "x": 164.396, - "y": 209.59775476702603 + "y": 209.59775 }, { "body": null, "index": 12, "isInternal": false, "x": 169.643, - "y": 206.567754767026 + "y": 206.56775 }, { "body": null, "index": 13, "isInternal": false, "x": 175.611, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 14, "isInternal": false, - "x": 181.57899999999998, - "y": 206.567754767026 + "x": 181.579, + "y": 206.56775 }, { "body": null, "index": 15, "isInternal": false, "x": 186.826, - "y": 209.59775476702603 + "y": 209.59775 }, { "body": null, "index": 16, "isInternal": false, "x": 190.721, - "y": 214.23975476702603 + "y": 214.23975 }, { "body": null, "index": 17, "isInternal": false, - "x": 192.79399999999998, - "y": 219.93375476702602 + "x": 192.794, + "y": 219.93375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1848.9085379999997, + "area": 1848.90854, "axes": { "#": 1290 }, "bounds": { "#": 1304 }, - "circleRadius": 24.37789351851852, + "circleRadius": 24.37789, "collisionFilter": { "#": 1307 }, @@ -11934,13 +11934,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 2176.3025218581856, - "inverseInertia": 0.00045949494151492, - "inverseMass": 0.5408596366165951, + "inertia": 2176.30252, + "inverseInertia": 0.00046, + "inverseMass": 0.54086, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8489085379999997, + "mass": 1.84891, "motion": 0, "parent": null, "position": { @@ -11962,7 +11962,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12016,52 +12016,52 @@ } ], { - "x": -0.9709674753373843, - "y": -0.23921154202284237 + "x": -0.97097, + "y": -0.23921 }, { - "x": -0.8854381720103849, - "y": -0.4647571877302253 + "x": -0.88544, + "y": -0.46476 }, { - "x": -0.7485254378371649, - "y": -0.6631060766654764 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680947037771794, - "y": -0.8229631872327696 + "x": -0.56809, + "y": -0.82296 }, { - "x": -0.3546080683168747, - "y": -0.9350150361810096 + "x": -0.35461, + "y": -0.93502 }, { - "x": -0.12047365436339115, - "y": -0.9927165247966463 + "x": -0.12047, + "y": -0.99272 }, { - "x": 0.12047365436339115, - "y": -0.9927165247966463 + "x": 0.12047, + "y": -0.99272 }, { - "x": 0.3546080683168747, - "y": -0.9350150361810096 + "x": 0.35461, + "y": -0.93502 }, { - "x": 0.5680947037771794, - "y": -0.8229631872327696 + "x": 0.56809, + "y": -0.82296 }, { - "x": 0.7485254378371649, - "y": -0.6631060766654764 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854381720103849, - "y": -0.4647571877302253 + "x": 0.88544, + "y": -0.46476 }, { - "x": 0.9709674753373843, - "y": -0.23921154202284237 + "x": 0.97097, + "y": -0.23921 }, { "x": 1, @@ -12076,12 +12076,12 @@ } }, { - "x": 251.19399999999996, - "y": 254.27175476702598 + "x": 251.194, + "y": 254.27175 }, { - "x": 202.79399999999998, - "y": 205.515754767026 + "x": 202.794, + "y": 205.51575 }, { "category": 1, @@ -12098,16 +12098,16 @@ "y": 0 }, { - "x": 226.99399999999997, - "y": 229.893754767026 + "x": 226.994, + "y": 229.89375 }, { "x": 0, "y": 0 }, { - "x": 226.99399999999997, - "y": 226.98648405199032 + "x": 226.994, + "y": 226.98648 }, { "endCol": 5, @@ -12131,7 +12131,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12217,197 +12217,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 251.19399999999996, - "y": 232.83175476702598 + "x": 251.194, + "y": 232.83175 }, { "body": null, "index": 1, "isInternal": false, - "x": 249.78799999999998, - "y": 238.538754767026 + "x": 249.788, + "y": 238.53875 }, { "body": null, "index": 2, "isInternal": false, - "x": 247.05699999999996, - "y": 243.741754767026 + "x": 247.057, + "y": 243.74175 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.15999999999997, - "y": 248.140754767026 + "x": 243.16, + "y": 248.14075 }, { "body": null, "index": 4, "isInternal": false, - "x": 238.32299999999998, - "y": 251.479754767026 + "x": 238.323, + "y": 251.47975 }, { "body": null, "index": 5, "isInternal": false, - "x": 232.82799999999997, - "y": 253.563754767026 + "x": 232.828, + "y": 253.56375 }, { "body": null, "index": 6, "isInternal": false, - "x": 226.99399999999997, - "y": 254.27175476702598 + "x": 226.994, + "y": 254.27175 }, { "body": null, "index": 7, "isInternal": false, - "x": 221.15999999999997, - "y": 253.563754767026 + "x": 221.16, + "y": 253.56375 }, { "body": null, "index": 8, "isInternal": false, - "x": 215.66499999999996, - "y": 251.479754767026 + "x": 215.665, + "y": 251.47975 }, { "body": null, "index": 9, "isInternal": false, - "x": 210.82799999999997, - "y": 248.140754767026 + "x": 210.828, + "y": 248.14075 }, { "body": null, "index": 10, "isInternal": false, - "x": 206.93099999999998, - "y": 243.741754767026 + "x": 206.931, + "y": 243.74175 }, { "body": null, "index": 11, "isInternal": false, - "x": 204.19999999999996, - "y": 238.538754767026 + "x": 204.2, + "y": 238.53875 }, { "body": null, "index": 12, "isInternal": false, - "x": 202.79399999999998, - "y": 232.83175476702598 + "x": 202.794, + "y": 232.83175 }, { "body": null, "index": 13, "isInternal": false, - "x": 202.79399999999998, - "y": 226.955754767026 + "x": 202.794, + "y": 226.95575 }, { "body": null, "index": 14, "isInternal": false, - "x": 204.19999999999996, - "y": 221.24875476702599 + "x": 204.2, + "y": 221.24875 }, { "body": null, "index": 15, "isInternal": false, - "x": 206.93099999999998, - "y": 216.04575476702598 + "x": 206.931, + "y": 216.04575 }, { "body": null, "index": 16, "isInternal": false, - "x": 210.82799999999997, - "y": 211.64675476702598 + "x": 210.828, + "y": 211.64675 }, { "body": null, "index": 17, "isInternal": false, - "x": 215.66499999999996, - "y": 208.30775476702598 + "x": 215.665, + "y": 208.30775 }, { "body": null, "index": 18, "isInternal": false, - "x": 221.15999999999997, - "y": 206.22375476702598 + "x": 221.16, + "y": 206.22375 }, { "body": null, "index": 19, "isInternal": false, - "x": 226.99399999999997, - "y": 205.515754767026 + "x": 226.994, + "y": 205.51575 }, { "body": null, "index": 20, "isInternal": false, - "x": 232.82799999999997, - "y": 206.22375476702598 + "x": 232.828, + "y": 206.22375 }, { "body": null, "index": 21, "isInternal": false, - "x": 238.32299999999998, - "y": 208.30775476702598 + "x": 238.323, + "y": 208.30775 }, { "body": null, "index": 22, "isInternal": false, - "x": 243.15999999999997, - "y": 211.64675476702598 + "x": 243.16, + "y": 211.64675 }, { "body": null, "index": 23, "isInternal": false, - "x": 247.05699999999996, - "y": 216.04575476702598 + "x": 247.057, + "y": 216.04575 }, { "body": null, "index": 24, "isInternal": false, - "x": 249.78799999999998, - "y": 221.24875476702599 + "x": 249.788, + "y": 221.24875 }, { "body": null, "index": 25, "isInternal": false, - "x": 251.19399999999996, - "y": 226.955754767026 + "x": 251.194, + "y": 226.95575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2662.7031859999993, + "area": 2662.70319, "axes": { "#": 1345 }, "bounds": { "#": 1359 }, - "circleRadius": 29.25533693415638, + "circleRadius": 29.25534, "collisionFilter": { "#": 1362 }, @@ -12422,13 +12422,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 4513.71283136672, - "inverseInertia": 0.00022154710265367218, - "inverseMass": 0.3755581941155946, + "inertia": 4513.71283, + "inverseInertia": 0.00022, + "inverseMass": 0.37556, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6627031859999994, + "mass": 2.6627, "motion": 0, "parent": null, "position": { @@ -12450,7 +12450,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12504,52 +12504,52 @@ } ], { - "x": -0.9709378772487557, - "y": -0.23933164964893425 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854927136371952, - "y": -0.4646532622240331 + "x": -0.88549, + "y": -0.46465 }, { - "x": -0.7484956802859418, - "y": -0.6631396659779034 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.568044391747725, - "y": -0.8229979155526198 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.3545858497834421, - "y": -0.9350234623437822 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12052615754469004, - "y": -0.9927101517298554 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052615754469004, - "y": -0.9927101517298554 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3545858497834421, - "y": -0.9350234623437822 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.568044391747725, - "y": -0.8229979155526198 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.7484956802859418, - "y": -0.6631396659779034 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854927136371952, - "y": -0.4646532622240331 + "x": 0.88549, + "y": -0.46465 }, { - "x": 0.9709378772487557, - "y": -0.23933164964893425 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -12565,11 +12565,11 @@ }, { "x": 319.278, - "y": 264.02575476702594 + "y": 264.02575 }, { - "x": 261.19399999999996, - "y": 205.515754767026 + "x": 261.194, + "y": 205.51575 }, { "category": 1, @@ -12587,7 +12587,7 @@ }, { "x": 290.236, - "y": 234.770754767026 + "y": 234.77075 }, { "x": 0, @@ -12595,7 +12595,7 @@ }, { "x": 290.236, - "y": 231.86348405199033 + "y": 231.86348 }, { "endCol": 6, @@ -12619,7 +12619,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12706,196 +12706,196 @@ "index": 0, "isInternal": false, "x": 319.278, - "y": 238.29675476702602 + "y": 238.29675 }, { "body": null, "index": 1, "isInternal": false, "x": 317.59, - "y": 245.144754767026 + "y": 245.14475 }, { "body": null, "index": 2, "isInternal": false, "x": 314.313, - "y": 251.389754767026 + "y": 251.38975 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.63599999999997, - "y": 256.66875476702603 + "x": 309.636, + "y": 256.66875 }, { "body": null, "index": 4, "isInternal": false, "x": 303.832, - "y": 260.674754767026 + "y": 260.67475 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.23699999999997, - "y": 263.175754767026 + "x": 297.237, + "y": 263.17575 }, { "body": null, "index": 6, "isInternal": false, "x": 290.236, - "y": 264.02575476702594 + "y": 264.02575 }, { "body": null, "index": 7, "isInternal": false, "x": 283.235, - "y": 263.175754767026 + "y": 263.17575 }, { "body": null, "index": 8, "isInternal": false, "x": 276.64, - "y": 260.674754767026 + "y": 260.67475 }, { "body": null, "index": 9, "isInternal": false, "x": 270.836, - "y": 256.66875476702603 + "y": 256.66875 }, { "body": null, "index": 10, "isInternal": false, "x": 266.159, - "y": 251.389754767026 + "y": 251.38975 }, { "body": null, "index": 11, "isInternal": false, "x": 262.882, - "y": 245.144754767026 + "y": 245.14475 }, { "body": null, "index": 12, "isInternal": false, - "x": 261.19399999999996, - "y": 238.29675476702602 + "x": 261.194, + "y": 238.29675 }, { "body": null, "index": 13, "isInternal": false, - "x": 261.19399999999996, - "y": 231.244754767026 + "x": 261.194, + "y": 231.24475 }, { "body": null, "index": 14, "isInternal": false, "x": 262.882, - "y": 224.396754767026 + "y": 224.39675 }, { "body": null, "index": 15, "isInternal": false, "x": 266.159, - "y": 218.151754767026 + "y": 218.15175 }, { "body": null, "index": 16, "isInternal": false, "x": 270.836, - "y": 212.872754767026 + "y": 212.87275 }, { "body": null, "index": 17, "isInternal": false, "x": 276.64, - "y": 208.866754767026 + "y": 208.86675 }, { "body": null, "index": 18, "isInternal": false, "x": 283.235, - "y": 206.365754767026 + "y": 206.36575 }, { "body": null, "index": 19, "isInternal": false, "x": 290.236, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 20, "isInternal": false, - "x": 297.23699999999997, - "y": 206.365754767026 + "x": 297.237, + "y": 206.36575 }, { "body": null, "index": 21, "isInternal": false, "x": 303.832, - "y": 208.866754767026 + "y": 208.86675 }, { "body": null, "index": 22, "isInternal": false, - "x": 309.63599999999997, - "y": 212.872754767026 + "x": 309.636, + "y": 212.87275 }, { "body": null, "index": 23, "isInternal": false, "x": 314.313, - "y": 218.151754767026 + "y": 218.15175 }, { "body": null, "index": 24, "isInternal": false, "x": 317.59, - "y": 224.396754767026 + "y": 224.39675 }, { "body": null, "index": 25, "isInternal": false, "x": 319.278, - "y": 231.244754767026 + "y": 231.24475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 744.9158119999998, + "area": 744.91581, "axes": { "#": 1400 }, "bounds": { "#": 1409 }, - "circleRadius": 15.598829732510287, + "circleRadius": 15.59883, "collisionFilter": { "#": 1412 }, @@ -12910,13 +12910,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 353.30757950427443, - "inverseInertia": 0.002830394981627904, - "inverseMass": 1.342433579594898, + "inertia": 353.30758, + "inverseInertia": 0.00283, + "inverseMass": 1.34243, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7449158119999999, + "mass": 0.74492, "motion": 0, "parent": null, "position": { @@ -12938,7 +12938,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12977,32 +12977,32 @@ } ], { - "x": -0.9238866694289085, - "y": -0.3826662018673176 + "x": -0.92389, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826662018673176, - "y": -0.9238866694289085 + "x": -0.38267, + "y": -0.92389 }, { "x": 0, "y": -1 }, { - "x": 0.3826662018673176, - "y": -0.9238866694289085 + "x": 0.38267, + "y": -0.92389 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238866694289085, - "y": -0.3826662018673176 + "x": 0.92389, + "y": -0.38267 }, { "x": 1, @@ -13018,11 +13018,11 @@ }, { "x": 359.876, - "y": 236.11375476702602 + "y": 236.11375 }, { "x": 329.278, - "y": 205.515754767026 + "y": 205.51575 }, { "category": 1, @@ -13040,7 +13040,7 @@ }, { "x": 344.577, - "y": 220.81475476702602 + "y": 220.81475 }, { "x": 0, @@ -13048,7 +13048,7 @@ }, { "x": 344.577, - "y": 217.90748405199034 + "y": 217.90748 }, { "endCol": 7, @@ -13072,7 +13072,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13129,126 +13129,126 @@ "index": 0, "isInternal": false, "x": 359.876, - "y": 223.85775476702602 + "y": 223.85775 }, { "body": null, "index": 1, "isInternal": false, "x": 357.547, - "y": 229.480754767026 + "y": 229.48075 }, { "body": null, "index": 2, "isInternal": false, "x": 353.243, - "y": 233.78475476702602 + "y": 233.78475 }, { "body": null, "index": 3, "isInternal": false, "x": 347.62, - "y": 236.11375476702602 + "y": 236.11375 }, { "body": null, "index": 4, "isInternal": false, "x": 341.534, - "y": 236.11375476702602 + "y": 236.11375 }, { "body": null, "index": 5, "isInternal": false, "x": 335.911, - "y": 233.78475476702602 + "y": 233.78475 }, { "body": null, "index": 6, "isInternal": false, - "x": 331.60699999999997, - "y": 229.480754767026 + "x": 331.607, + "y": 229.48075 }, { "body": null, "index": 7, "isInternal": false, "x": 329.278, - "y": 223.85775476702602 + "y": 223.85775 }, { "body": null, "index": 8, "isInternal": false, "x": 329.278, - "y": 217.771754767026 + "y": 217.77175 }, { "body": null, "index": 9, "isInternal": false, - "x": 331.60699999999997, - "y": 212.14875476702602 + "x": 331.607, + "y": 212.14875 }, { "body": null, "index": 10, "isInternal": false, "x": 335.911, - "y": 207.84475476702602 + "y": 207.84475 }, { "body": null, "index": 11, "isInternal": false, "x": 341.534, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 12, "isInternal": false, "x": 347.62, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 13, "isInternal": false, "x": 353.243, - "y": 207.84475476702602 + "y": 207.84475 }, { "body": null, "index": 14, "isInternal": false, "x": 357.547, - "y": 212.14875476702602 + "y": 212.14875 }, { "body": null, "index": 15, "isInternal": false, "x": 359.876, - "y": 217.771754767026 + "y": 217.77175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1648.4011000000003, + "area": 1648.4011, "axes": { "#": 1440 }, "bounds": { "#": 1453 }, - "circleRadius": 23.038001543209877, + "circleRadius": 23.038, "collisionFilter": { "#": 1456 }, @@ -13263,13 +13263,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1729.8854325157483, - "inverseInertia": 0.0005780729643729723, - "inverseMass": 0.60664846680823, + "inertia": 1729.88543, + "inverseInertia": 0.00058, + "inverseMass": 0.60665, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6484011000000003, + "mass": 1.6484, "motion": 0, "parent": null, "position": { @@ -13291,7 +13291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13342,48 +13342,48 @@ } ], { - "x": -0.9659057395099124, - "y": -0.25889399835030735 + "x": -0.96591, + "y": -0.25889 }, { - "x": -0.8660554631739814, - "y": -0.4999479319954234 + "x": -0.86606, + "y": -0.49995 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999479319954234, - "y": -0.8660554631739814 + "x": -0.49995, + "y": -0.86606 }, { - "x": -0.25889399835030735, - "y": -0.9659057395099124 + "x": -0.25889, + "y": -0.96591 }, { "x": 0, "y": -1 }, { - "x": 0.25889399835030735, - "y": -0.9659057395099124 + "x": 0.25889, + "y": -0.96591 }, { - "x": 0.4999479319954234, - "y": -0.8660554631739814 + "x": 0.49995, + "y": -0.86606 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660554631739814, - "y": -0.4999479319954234 + "x": 0.86606, + "y": -0.49995 }, { - "x": 0.9659057395099124, - "y": -0.25889399835030735 + "x": 0.96591, + "y": -0.25889 }, { "x": 1, @@ -13399,11 +13399,11 @@ }, { "x": 415.558, - "y": 251.19775476702603 + "y": 251.19775 }, { "x": 369.876, - "y": 205.515754767026 + "y": 205.51575 }, { "category": 1, @@ -13421,7 +13421,7 @@ }, { "x": 392.717, - "y": 228.35675476702602 + "y": 228.35675 }, { "x": 0, @@ -13429,7 +13429,7 @@ }, { "x": 392.717, - "y": 225.44948405199034 + "y": 225.44948 }, { "endCol": 8, @@ -13453,7 +13453,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13534,182 +13534,182 @@ "index": 0, "isInternal": false, "x": 415.558, - "y": 231.36375476702602 + "y": 231.36375 }, { "body": null, "index": 1, "isInternal": false, "x": 414.001, - "y": 237.17275476702602 + "y": 237.17275 }, { "body": null, "index": 2, "isInternal": false, - "x": 410.99399999999997, - "y": 242.38175476702602 + "x": 410.994, + "y": 242.38175 }, { "body": null, "index": 3, "isInternal": false, - "x": 406.74199999999996, - "y": 246.633754767026 + "x": 406.742, + "y": 246.63375 }, { "body": null, "index": 4, "isInternal": false, - "x": 401.53299999999996, - "y": 249.640754767026 + "x": 401.533, + "y": 249.64075 }, { "body": null, "index": 5, "isInternal": false, "x": 395.724, - "y": 251.19775476702603 + "y": 251.19775 }, { "body": null, "index": 6, "isInternal": false, "x": 389.71, - "y": 251.19775476702603 + "y": 251.19775 }, { "body": null, "index": 7, "isInternal": false, "x": 383.901, - "y": 249.640754767026 + "y": 249.64075 }, { "body": null, "index": 8, "isInternal": false, "x": 378.692, - "y": 246.633754767026 + "y": 246.63375 }, { "body": null, "index": 9, "isInternal": false, "x": 374.44, - "y": 242.38175476702602 + "y": 242.38175 }, { "body": null, "index": 10, "isInternal": false, "x": 371.433, - "y": 237.17275476702602 + "y": 237.17275 }, { "body": null, "index": 11, "isInternal": false, "x": 369.876, - "y": 231.36375476702602 + "y": 231.36375 }, { "body": null, "index": 12, "isInternal": false, "x": 369.876, - "y": 225.349754767026 + "y": 225.34975 }, { "body": null, "index": 13, "isInternal": false, "x": 371.433, - "y": 219.54075476702602 + "y": 219.54075 }, { "body": null, "index": 14, "isInternal": false, "x": 374.44, - "y": 214.331754767026 + "y": 214.33175 }, { "body": null, "index": 15, "isInternal": false, "x": 378.692, - "y": 210.07975476702603 + "y": 210.07975 }, { "body": null, "index": 16, "isInternal": false, "x": 383.901, - "y": 207.07275476702603 + "y": 207.07275 }, { "body": null, "index": 17, "isInternal": false, "x": 389.71, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 18, "isInternal": false, "x": 395.724, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 19, "isInternal": false, - "x": 401.53299999999996, - "y": 207.07275476702603 + "x": 401.533, + "y": 207.07275 }, { "body": null, "index": 20, "isInternal": false, - "x": 406.74199999999996, - "y": 210.07975476702603 + "x": 406.742, + "y": 210.07975 }, { "body": null, "index": 21, "isInternal": false, - "x": 410.99399999999997, - "y": 214.331754767026 + "x": 410.994, + "y": 214.33175 }, { "body": null, "index": 22, "isInternal": false, "x": 414.001, - "y": 219.54075476702602 + "y": 219.54075 }, { "body": null, "index": 23, "isInternal": false, "x": 415.558, - "y": 225.349754767026 + "y": 225.34975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1113.272836, + "area": 1113.27284, "axes": { "#": 1492 }, "bounds": { "#": 1503 }, - "circleRadius": 18.980259773662553, + "circleRadius": 18.98026, "collisionFilter": { "#": 1506 }, @@ -13724,13 +13724,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 789.0547317724531, - "inverseInertia": 0.0012673392094787908, - "inverseMass": 0.8982524028817674, + "inertia": 789.05473, + "inverseInertia": 0.00127, + "inverseMass": 0.89825, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1132728360000002, + "mass": 1.11327, "motion": 0, "parent": null, "position": { @@ -13752,7 +13752,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13797,40 +13797,40 @@ } ], { - "x": -0.9510637633325844, - "y": -0.30899468939718355 + "x": -0.95106, + "y": -0.30899 }, { - "x": -0.8089617628829073, - "y": -0.5878612644097065 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878612644097065, - "y": -0.8089617628829073 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.30899468939718355, - "y": -0.9510637633325844 + "x": -0.30899, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.30899468939718355, - "y": -0.9510637633325844 + "x": 0.30899, + "y": -0.95106 }, { - "x": 0.5878612644097065, - "y": -0.8089617628829073 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089617628829073, - "y": -0.5878612644097065 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510637633325844, - "y": -0.30899468939718355 + "x": 0.95106, + "y": -0.30899 }, { "x": 1, @@ -13846,11 +13846,11 @@ }, { "x": 463.052, - "y": 243.00975476702604 + "y": 243.00975 }, { "x": 425.558, - "y": 205.515754767026 + "y": 205.51575 }, { "category": 1, @@ -13868,7 +13868,7 @@ }, { "x": 444.305, - "y": 224.26275476702602 + "y": 224.26275 }, { "x": 0, @@ -13876,7 +13876,7 @@ }, { "x": 444.305, - "y": 221.35548405199035 + "y": 221.35548 }, { "endCol": 9, @@ -13900,7 +13900,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13969,154 +13969,154 @@ "index": 0, "isInternal": false, "x": 463.052, - "y": 227.23175476702602 + "y": 227.23175 }, { "body": null, "index": 1, "isInternal": false, "x": 461.217, - "y": 232.87975476702601 + "y": 232.87975 }, { "body": null, "index": 2, "isInternal": false, "x": 457.726, - "y": 237.68375476702602 + "y": 237.68375 }, { "body": null, "index": 3, "isInternal": false, "x": 452.922, - "y": 241.17475476702603 + "y": 241.17475 }, { "body": null, "index": 4, "isInternal": false, "x": 447.274, - "y": 243.00975476702604 + "y": 243.00975 }, { "body": null, "index": 5, "isInternal": false, "x": 441.336, - "y": 243.00975476702604 + "y": 243.00975 }, { "body": null, "index": 6, "isInternal": false, "x": 435.688, - "y": 241.17475476702603 + "y": 241.17475 }, { "body": null, "index": 7, "isInternal": false, "x": 430.884, - "y": 237.68375476702602 + "y": 237.68375 }, { "body": null, "index": 8, "isInternal": false, - "x": 427.39300000000003, - "y": 232.87975476702601 + "x": 427.393, + "y": 232.87975 }, { "body": null, "index": 9, "isInternal": false, "x": 425.558, - "y": 227.23175476702602 + "y": 227.23175 }, { "body": null, "index": 10, "isInternal": false, "x": 425.558, - "y": 221.29375476702603 + "y": 221.29375 }, { "body": null, "index": 11, "isInternal": false, - "x": 427.39300000000003, - "y": 215.64575476702603 + "x": 427.393, + "y": 215.64575 }, { "body": null, "index": 12, "isInternal": false, "x": 430.884, - "y": 210.84175476702603 + "y": 210.84175 }, { "body": null, "index": 13, "isInternal": false, "x": 435.688, - "y": 207.35075476702602 + "y": 207.35075 }, { "body": null, "index": 14, "isInternal": false, "x": 441.336, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 15, "isInternal": false, "x": 447.274, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 16, "isInternal": false, "x": 452.922, - "y": 207.35075476702602 + "y": 207.35075 }, { "body": null, "index": 17, "isInternal": false, "x": 457.726, - "y": 210.84175476702603 + "y": 210.84175 }, { "body": null, "index": 18, "isInternal": false, "x": 461.217, - "y": 215.64575476702603 + "y": 215.64575 }, { "body": null, "index": 19, "isInternal": false, "x": 463.052, - "y": 221.29375476702603 + "y": 221.29375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1274.2530860000002, + "area": 1274.25309, "axes": { "#": 1538 }, "bounds": { "#": 1550 }, - "circleRadius": 20.277456275720166, + "circleRadius": 20.27746, "collisionFilter": { "#": 1553 }, @@ -14131,13 +14131,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1033.7314290896877, - "inverseInertia": 0.0009673692526506697, - "inverseMass": 0.7847734574762489, + "inertia": 1033.73143, + "inverseInertia": 0.00097, + "inverseMass": 0.78477, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.274253086, + "mass": 1.27425, "motion": 0, "parent": null, "position": { @@ -14159,7 +14159,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14207,44 +14207,44 @@ } ], { - "x": -0.9594978217257012, - "y": -0.28171604516540116 + "x": -0.9595, + "y": -0.28172 }, { - "x": -0.8412629145075053, - "y": -0.5406262190037935 + "x": -0.84126, + "y": -0.54063 }, { - "x": -0.6547919983802524, - "y": -0.7558091285881612 + "x": -0.65479, + "y": -0.75581 }, { - "x": -0.4154731207517202, - "y": -0.9096054561912139 + "x": -0.41547, + "y": -0.90961 }, { - "x": -0.14224602222342572, - "y": -0.9898313336935807 + "x": -0.14225, + "y": -0.98983 }, { - "x": 0.14224602222342572, - "y": -0.9898313336935807 + "x": 0.14225, + "y": -0.98983 }, { - "x": 0.4154731207517202, - "y": -0.9096054561912139 + "x": 0.41547, + "y": -0.90961 }, { - "x": 0.6547919983802524, - "y": -0.7558091285881612 + "x": 0.65479, + "y": -0.75581 }, { - "x": 0.8412629145075053, - "y": -0.5406262190037935 + "x": 0.84126, + "y": -0.54063 }, { - "x": 0.9594978217257012, - "y": -0.28171604516540116 + "x": 0.9595, + "y": -0.28172 }, { "x": 1, @@ -14259,12 +14259,12 @@ } }, { - "x": 513.1940000000001, - "y": 246.06975476702598 + "x": 513.194, + "y": 246.06975 }, { "x": 473.052, - "y": 205.515754767026 + "y": 205.51575 }, { "category": 1, @@ -14281,16 +14281,16 @@ "y": 0 }, { - "x": 493.12300000000005, - "y": 225.792754767026 + "x": 493.123, + "y": 225.79275 }, { "x": 0, "y": 0 }, { - "x": 493.12300000000005, - "y": 222.88548405199032 + "x": 493.123, + "y": 222.88548 }, { "endCol": 10, @@ -14314,7 +14314,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14388,169 +14388,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 513.1940000000001, - "y": 228.678754767026 + "x": 513.194, + "y": 228.67875 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.56800000000004, - "y": 234.216754767026 + "x": 511.568, + "y": 234.21675 }, { "body": null, "index": 2, "isInternal": false, - "x": 508.44800000000004, - "y": 239.071754767026 + "x": 508.448, + "y": 239.07175 }, { "body": null, "index": 3, "isInternal": false, - "x": 504.08600000000007, - "y": 242.850754767026 + "x": 504.086, + "y": 242.85075 }, { "body": null, "index": 4, "isInternal": false, - "x": 498.83600000000007, - "y": 245.24875476702599 + "x": 498.836, + "y": 245.24875 }, { "body": null, "index": 5, "isInternal": false, - "x": 493.12300000000005, - "y": 246.06975476702598 + "x": 493.123, + "y": 246.06975 }, { "body": null, "index": 6, "isInternal": false, "x": 487.41, - "y": 245.24875476702599 + "y": 245.24875 }, { "body": null, "index": 7, "isInternal": false, "x": 482.16, - "y": 242.850754767026 + "y": 242.85075 }, { "body": null, "index": 8, "isInternal": false, - "x": 477.79800000000006, - "y": 239.071754767026 + "x": 477.798, + "y": 239.07175 }, { "body": null, "index": 9, "isInternal": false, - "x": 474.67800000000005, - "y": 234.216754767026 + "x": 474.678, + "y": 234.21675 }, { "body": null, "index": 10, "isInternal": false, "x": 473.052, - "y": 228.678754767026 + "y": 228.67875 }, { "body": null, "index": 11, "isInternal": false, "x": 473.052, - "y": 222.906754767026 + "y": 222.90675 }, { "body": null, "index": 12, "isInternal": false, - "x": 474.67800000000005, - "y": 217.368754767026 + "x": 474.678, + "y": 217.36875 }, { "body": null, "index": 13, "isInternal": false, - "x": 477.79800000000006, - "y": 212.513754767026 + "x": 477.798, + "y": 212.51375 }, { "body": null, "index": 14, "isInternal": false, "x": 482.16, - "y": 208.734754767026 + "y": 208.73475 }, { "body": null, "index": 15, "isInternal": false, "x": 487.41, - "y": 206.336754767026 + "y": 206.33675 }, { "body": null, "index": 16, "isInternal": false, - "x": 493.12300000000005, - "y": 205.515754767026 + "x": 493.123, + "y": 205.51575 }, { "body": null, "index": 17, "isInternal": false, - "x": 498.83600000000007, - "y": 206.336754767026 + "x": 498.836, + "y": 206.33675 }, { "body": null, "index": 18, "isInternal": false, - "x": 504.08600000000007, - "y": 208.734754767026 + "x": 504.086, + "y": 208.73475 }, { "body": null, "index": 19, "isInternal": false, - "x": 508.44800000000004, - "y": 212.513754767026 + "x": 508.448, + "y": 212.51375 }, { "body": null, "index": 20, "isInternal": false, - "x": 511.56800000000004, - "y": 217.368754767026 + "x": 511.568, + "y": 217.36875 }, { "body": null, "index": 21, "isInternal": false, - "x": 513.1940000000001, - "y": 222.906754767026 + "x": 513.194, + "y": 222.90675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2780.0004800000006, + "area": 2780.00048, "axes": { "#": 1587 }, "bounds": { "#": 1601 }, - "circleRadius": 29.892554012345677, + "circleRadius": 29.89255, "collisionFilter": { "#": 1604 }, @@ -14565,13 +14565,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 4920.147823896497, - "inverseInertia": 0.00020324592589335107, - "inverseMass": 0.35971216810725143, + "inertia": 4920.14782, + "inverseInertia": 0.0002, + "inverseMass": 0.35971, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.780000480000001, + "mass": 2.78, "motion": 0, "parent": null, "position": { @@ -14593,7 +14593,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14647,52 +14647,52 @@ } ], { - "x": -0.9709290995295576, - "y": -0.23936725692275093 + "x": -0.97093, + "y": -0.23937 }, { - "x": -0.885456433914103, - "y": -0.4647223941667968 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7484878127877156, - "y": -0.6631485460349451 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5681414925182338, - "y": -0.822930886818057 + "x": -0.56814, + "y": -0.82293 }, { - "x": -0.3545580162719157, - "y": -0.9350340170803005 + "x": -0.35456, + "y": -0.93503 }, { - "x": -0.12058414899262154, - "y": -0.9927031091981757 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12058414899262154, - "y": -0.9927031091981757 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545580162719157, - "y": -0.9350340170803005 + "x": 0.35456, + "y": -0.93503 }, { - "x": 0.5681414925182338, - "y": -0.822930886818057 + "x": 0.56814, + "y": -0.82293 }, { - "x": 0.7484878127877156, - "y": -0.6631485460349451 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.885456433914103, - "y": -0.4647223941667968 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709290995295576, - "y": -0.23936725692275093 + "x": 0.97093, + "y": -0.23937 }, { "x": 1, @@ -14708,11 +14708,11 @@ }, { "x": 582.544, - "y": 265.30175476702595 + "y": 265.30175 }, { "x": 523.194, - "y": 205.515754767026 + "y": 205.51575 }, { "category": 1, @@ -14730,7 +14730,7 @@ }, { "x": 552.869, - "y": 235.408754767026 + "y": 235.40875 }, { "x": 0, @@ -14738,7 +14738,7 @@ }, { "x": 552.869, - "y": 232.50148405199033 + "y": 232.50148 }, { "endCol": 12, @@ -14762,7 +14762,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14849,196 +14849,196 @@ "index": 0, "isInternal": false, "x": 582.544, - "y": 239.01175476702602 + "y": 239.01175 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.8190000000001, - "y": 246.008754767026 + "x": 580.819, + "y": 246.00875 }, { "body": null, "index": 2, "isInternal": false, "x": 577.47, - "y": 252.389754767026 + "y": 252.38975 }, { "body": null, "index": 3, "isInternal": false, "x": 572.691, - "y": 257.78375476702604 + "y": 257.78375 }, { "body": null, "index": 4, "isInternal": false, - "x": 566.7610000000001, - "y": 261.877754767026 + "x": 566.761, + "y": 261.87775 }, { "body": null, "index": 5, "isInternal": false, "x": 560.023, - "y": 264.432754767026 + "y": 264.43275 }, { "body": null, "index": 6, "isInternal": false, "x": 552.869, - "y": 265.30175476702595 + "y": 265.30175 }, { "body": null, "index": 7, "isInternal": false, "x": 545.715, - "y": 264.432754767026 + "y": 264.43275 }, { "body": null, "index": 8, "isInternal": false, - "x": 538.9770000000001, - "y": 261.877754767026 + "x": 538.977, + "y": 261.87775 }, { "body": null, "index": 9, "isInternal": false, "x": 533.047, - "y": 257.78375476702604 + "y": 257.78375 }, { "body": null, "index": 10, "isInternal": false, "x": 528.268, - "y": 252.389754767026 + "y": 252.38975 }, { "body": null, "index": 11, "isInternal": false, - "x": 524.9190000000001, - "y": 246.008754767026 + "x": 524.919, + "y": 246.00875 }, { "body": null, "index": 12, "isInternal": false, "x": 523.194, - "y": 239.01175476702602 + "y": 239.01175 }, { "body": null, "index": 13, "isInternal": false, "x": 523.194, - "y": 231.805754767026 + "y": 231.80575 }, { "body": null, "index": 14, "isInternal": false, - "x": 524.9190000000001, - "y": 224.80875476702602 + "x": 524.919, + "y": 224.80875 }, { "body": null, "index": 15, "isInternal": false, "x": 528.268, - "y": 218.42775476702602 + "y": 218.42775 }, { "body": null, "index": 16, "isInternal": false, "x": 533.047, - "y": 213.033754767026 + "y": 213.03375 }, { "body": null, "index": 17, "isInternal": false, - "x": 538.9770000000001, - "y": 208.93975476702602 + "x": 538.977, + "y": 208.93975 }, { "body": null, "index": 18, "isInternal": false, "x": 545.715, - "y": 206.384754767026 + "y": 206.38475 }, { "body": null, "index": 19, "isInternal": false, "x": 552.869, - "y": 205.515754767026 + "y": 205.51575 }, { "body": null, "index": 20, "isInternal": false, "x": 560.023, - "y": 206.384754767026 + "y": 206.38475 }, { "body": null, "index": 21, "isInternal": false, - "x": 566.7610000000001, - "y": 208.93975476702602 + "x": 566.761, + "y": 208.93975 }, { "body": null, "index": 22, "isInternal": false, "x": 572.691, - "y": 213.033754767026 + "y": 213.03375 }, { "body": null, "index": 23, "isInternal": false, "x": 577.47, - "y": 218.42775476702602 + "y": 218.42775 }, { "body": null, "index": 24, "isInternal": false, - "x": 580.8190000000001, - "y": 224.80875476702602 + "x": 580.819, + "y": 224.80875 }, { "body": null, "index": 25, "isInternal": false, "x": 582.544, - "y": 231.805754767026 + "y": 231.80575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2538.757968, + "area": 2538.75797, "axes": { "#": 1642 }, "bounds": { "#": 1656 }, - "circleRadius": 28.566293724279834, + "circleRadius": 28.56629, "collisionFilter": { "#": 1659 }, @@ -15053,13 +15053,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 4103.278629848139, - "inverseInertia": 0.0002437075544238656, - "inverseMass": 0.3938933969305419, + "inertia": 4103.27863, + "inverseInertia": 0.00024, + "inverseMass": 0.39389, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.538757968, + "mass": 2.53876, "motion": 0, "parent": null, "position": { @@ -15081,7 +15081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15135,52 +15135,52 @@ } ], { - "x": -0.9709484794471303, - "y": -0.23928863378628235 + "x": -0.97095, + "y": -0.23929 }, { - "x": -0.8854845432949032, - "y": -0.4646688321652492 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.7484419497782766, - "y": -0.6632003074577784 + "x": -0.74844, + "y": -0.6632 }, { - "x": -0.5680315134165672, - "y": -0.8230068042037588 + "x": -0.56803, + "y": -0.82301 }, { - "x": -0.3546060814505948, - "y": -0.9350157897053153 + "x": -0.35461, + "y": -0.93502 }, { - "x": -0.12053085900440433, - "y": -0.9927095809085659 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12053085900440433, - "y": -0.9927095809085659 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3546060814505948, - "y": -0.9350157897053153 + "x": 0.35461, + "y": -0.93502 }, { - "x": 0.5680315134165672, - "y": -0.8230068042037588 + "x": 0.56803, + "y": -0.82301 }, { - "x": 0.7484419497782766, - "y": -0.6632003074577784 + "x": 0.74844, + "y": -0.6632 }, { - "x": 0.8854845432949032, - "y": -0.4646688321652492 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.9709484794471303, - "y": -0.23928863378628235 + "x": 0.97095, + "y": -0.23929 }, { "x": 1, @@ -15195,12 +15195,12 @@ } }, { - "x": 649.2599999999999, - "y": 262.647754767026 + "x": 649.26, + "y": 262.64775 }, { "x": 592.544, - "y": 205.515754767026 + "y": 205.51575 }, { "category": 1, @@ -15217,16 +15217,16 @@ "y": 0 }, { - "x": 620.9019999999999, - "y": 234.081754767026 + "x": 620.902, + "y": 234.08175 }, { "x": 0, "y": 0 }, { - "x": 620.9019999999999, - "y": 231.17448405199033 + "x": 620.902, + "y": 231.17448 }, { "endCol": 13, @@ -15250,7 +15250,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15336,197 +15336,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 649.2599999999999, - "y": 237.52475476702602 + "x": 649.26, + "y": 237.52475 }, { "body": null, "index": 1, "isInternal": false, "x": 647.612, - "y": 244.211754767026 + "y": 244.21175 }, { "body": null, "index": 2, "isInternal": false, - "x": 644.4119999999999, - "y": 250.30975476702602 + "x": 644.412, + "y": 250.30975 }, { "body": null, "index": 3, "isInternal": false, - "x": 639.8449999999999, - "y": 255.46375476702602 + "x": 639.845, + "y": 255.46375 }, { "body": null, "index": 4, "isInternal": false, - "x": 634.1769999999999, - "y": 259.375754767026 + "x": 634.177, + "y": 259.37575 }, { "body": null, "index": 5, "isInternal": false, - "x": 627.7379999999999, - "y": 261.817754767026 + "x": 627.738, + "y": 261.81775 }, { "body": null, "index": 6, "isInternal": false, - "x": 620.9019999999999, - "y": 262.647754767026 + "x": 620.902, + "y": 262.64775 }, { "body": null, "index": 7, "isInternal": false, - "x": 614.0659999999999, - "y": 261.817754767026 + "x": 614.066, + "y": 261.81775 }, { "body": null, "index": 8, "isInternal": false, "x": 607.627, - "y": 259.375754767026 + "y": 259.37575 }, { "body": null, "index": 9, "isInternal": false, "x": 601.959, - "y": 255.46375476702602 + "y": 255.46375 }, { "body": null, "index": 10, "isInternal": false, - "x": 597.3919999999999, - "y": 250.30975476702602 + "x": 597.392, + "y": 250.30975 }, { "body": null, "index": 11, "isInternal": false, - "x": 594.1919999999999, - "y": 244.211754767026 + "x": 594.192, + "y": 244.21175 }, { "body": null, "index": 12, "isInternal": false, "x": 592.544, - "y": 237.52475476702602 + "y": 237.52475 }, { "body": null, "index": 13, "isInternal": false, "x": 592.544, - "y": 230.638754767026 + "y": 230.63875 }, { "body": null, "index": 14, "isInternal": false, - "x": 594.1919999999999, - "y": 223.95175476702602 + "x": 594.192, + "y": 223.95175 }, { "body": null, "index": 15, "isInternal": false, - "x": 597.3919999999999, - "y": 217.853754767026 + "x": 597.392, + "y": 217.85375 }, { "body": null, "index": 16, "isInternal": false, "x": 601.959, - "y": 212.699754767026 + "y": 212.69975 }, { "body": null, "index": 17, "isInternal": false, "x": 607.627, - "y": 208.787754767026 + "y": 208.78775 }, { "body": null, "index": 18, "isInternal": false, - "x": 614.0659999999999, - "y": 206.34575476702602 + "x": 614.066, + "y": 206.34575 }, { "body": null, "index": 19, "isInternal": false, - "x": 620.9019999999999, - "y": 205.515754767026 + "x": 620.902, + "y": 205.51575 }, { "body": null, "index": 20, "isInternal": false, - "x": 627.7379999999999, - "y": 206.34575476702602 + "x": 627.738, + "y": 206.34575 }, { "body": null, "index": 21, "isInternal": false, - "x": 634.1769999999999, - "y": 208.787754767026 + "x": 634.177, + "y": 208.78775 }, { "body": null, "index": 22, "isInternal": false, - "x": 639.8449999999999, - "y": 212.699754767026 + "x": 639.845, + "y": 212.69975 }, { "body": null, "index": 23, "isInternal": false, - "x": 644.4119999999999, - "y": 217.853754767026 + "x": 644.412, + "y": 217.85375 }, { "body": null, "index": 24, "isInternal": false, "x": 647.612, - "y": 223.95175476702602 + "y": 223.95175 }, { "body": null, "index": 25, "isInternal": false, - "x": 649.2599999999999, - "y": 230.638754767026 + "x": 649.26, + "y": 230.63875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1430.3752400000003, + "area": 1430.37524, "axes": { "#": 1697 }, "bounds": { "#": 1709 }, - "circleRadius": 21.48386059670782, + "circleRadius": 21.48386, "collisionFilter": { "#": 1712 }, @@ -15541,13 +15541,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1302.5556894183874, - "inverseInertia": 0.0007677214940779358, - "inverseMass": 0.6991172470239346, + "inertia": 1302.55569, + "inverseInertia": 0.00077, + "inverseMass": 0.69912, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4303752400000003, + "mass": 1.43038, "motion": 0, "parent": null, "position": { @@ -15569,7 +15569,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15617,44 +15617,44 @@ } ], { - "x": -0.9594929851315711, - "y": -0.28173251761787593 + "x": -0.95949, + "y": -0.28173 }, { - "x": -0.8412422318463942, - "y": -0.5406584017270957 + "x": -0.84124, + "y": -0.54066 }, { - "x": -0.6548495904335815, - "y": -0.755759230118277 + "x": -0.65485, + "y": -0.75576 }, { - "x": -0.41553945773574935, - "y": -0.9095751530603061 + "x": -0.41554, + "y": -0.90958 }, { - "x": -0.14226837363223738, - "y": -0.9898281213746344 + "x": -0.14227, + "y": -0.98983 }, { - "x": 0.14226837363223738, - "y": -0.9898281213746344 + "x": 0.14227, + "y": -0.98983 }, { - "x": 0.41553945773574935, - "y": -0.9095751530603061 + "x": 0.41554, + "y": -0.90958 }, { - "x": 0.6548495904335815, - "y": -0.755759230118277 + "x": 0.65485, + "y": -0.75576 }, { - "x": 0.8412422318463942, - "y": -0.5406584017270957 + "x": 0.84124, + "y": -0.54066 }, { - "x": 0.9594929851315711, - "y": -0.28173251761787593 + "x": 0.95949, + "y": -0.28173 }, { "x": 1, @@ -15670,11 +15670,11 @@ }, { "x": 142.53, - "y": 318.26975476702495 + "y": 318.26975 }, { "x": 100, - "y": 275.301754767025 + "y": 275.30175 }, { "category": 1, @@ -15692,7 +15692,7 @@ }, { "x": 121.265, - "y": 296.78575476702497 + "y": 296.78575 }, { "x": 0, @@ -15700,7 +15700,7 @@ }, { "x": 121.265, - "y": 293.8784840519894 + "y": 293.87848 }, { "endCol": 2, @@ -15724,7 +15724,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -15799,168 +15799,168 @@ "index": 0, "isInternal": false, "x": 142.53, - "y": 299.842754767025 + "y": 299.84275 }, { "body": null, "index": 1, "isInternal": false, - "x": 140.80700000000002, - "y": 305.710754767025 + "x": 140.807, + "y": 305.71075 }, { "body": null, "index": 2, "isInternal": false, "x": 137.501, - "y": 310.854754767025 + "y": 310.85475 }, { "body": null, "index": 3, "isInternal": false, "x": 132.88, - "y": 314.85875476702495 + "y": 314.85875 }, { "body": null, "index": 4, "isInternal": false, "x": 127.318, - "y": 317.39975476702494 + "y": 317.39975 }, { "body": null, "index": 5, "isInternal": false, "x": 121.265, - "y": 318.26975476702495 + "y": 318.26975 }, { "body": null, "index": 6, "isInternal": false, "x": 115.212, - "y": 317.39975476702494 + "y": 317.39975 }, { "body": null, "index": 7, "isInternal": false, "x": 109.65, - "y": 314.85875476702495 + "y": 314.85875 }, { "body": null, "index": 8, "isInternal": false, "x": 105.029, - "y": 310.854754767025 + "y": 310.85475 }, { "body": null, "index": 9, "isInternal": false, "x": 101.723, - "y": 305.710754767025 + "y": 305.71075 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 299.842754767025 + "y": 299.84275 }, { "body": null, "index": 11, "isInternal": false, "x": 100, - "y": 293.728754767025 + "y": 293.72875 }, { "body": null, "index": 12, "isInternal": false, "x": 101.723, - "y": 287.86075476702496 + "y": 287.86075 }, { "body": null, "index": 13, "isInternal": false, "x": 105.029, - "y": 282.71675476702495 + "y": 282.71675 }, { "body": null, "index": 14, "isInternal": false, "x": 109.65, - "y": 278.71275476702493 + "y": 278.71275 }, { "body": null, "index": 15, "isInternal": false, "x": 115.212, - "y": 276.171754767025 + "y": 276.17175 }, { "body": null, "index": 16, "isInternal": false, "x": 121.265, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 17, "isInternal": false, "x": 127.318, - "y": 276.171754767025 + "y": 276.17175 }, { "body": null, "index": 18, "isInternal": false, "x": 132.88, - "y": 278.71275476702493 + "y": 278.71275 }, { "body": null, "index": 19, "isInternal": false, "x": 137.501, - "y": 282.71675476702495 + "y": 282.71675 }, { "body": null, "index": 20, "isInternal": false, - "x": 140.80700000000002, - "y": 287.86075476702496 + "x": 140.807, + "y": 287.86075 }, { "body": null, "index": 21, "isInternal": false, "x": 142.53, - "y": 293.728754767025 + "y": 293.72875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1228.8538520000002, + "area": 1228.85385, "axes": { "#": 1746 }, "bounds": { "#": 1757 }, - "circleRadius": 19.941550925925924, + "circleRadius": 19.94155, "collisionFilter": { "#": 1760 }, @@ -15975,13 +15975,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 961.4005673522398, - "inverseInertia": 0.0010401491677439567, - "inverseMass": 0.8137664201259303, + "inertia": 961.40057, + "inverseInertia": 0.00104, + "inverseMass": 0.81377, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2288538520000003, + "mass": 1.22885, "motion": 0, "parent": null, "position": { @@ -16003,7 +16003,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16048,40 +16048,40 @@ } ], { - "x": -0.9510446700932779, - "y": -0.3090534508578865 + "x": -0.95104, + "y": -0.30905 }, { - "x": -0.8090617057669508, - "y": -0.5877237074182664 + "x": -0.80906, + "y": -0.58772 }, { - "x": -0.5877237074182664, - "y": -0.8090617057669508 + "x": -0.58772, + "y": -0.80906 }, { - "x": -0.3090534508578865, - "y": -0.9510446700932779 + "x": -0.30905, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090534508578865, - "y": -0.9510446700932779 + "x": 0.30905, + "y": -0.95104 }, { - "x": 0.5877237074182664, - "y": -0.8090617057669508 + "x": 0.58772, + "y": -0.80906 }, { - "x": 0.8090617057669508, - "y": -0.5877237074182664 + "x": 0.80906, + "y": -0.58772 }, { - "x": 0.9510446700932779, - "y": -0.3090534508578865 + "x": 0.95104, + "y": -0.30905 }, { "x": 1, @@ -16097,11 +16097,11 @@ }, { "x": 191.922, - "y": 314.69375476702504 + "y": 314.69375 }, { "x": 152.53, - "y": 275.301754767025 + "y": 275.30175 }, { "category": 1, @@ -16119,7 +16119,7 @@ }, { "x": 172.226, - "y": 294.997754767025 + "y": 294.99775 }, { "x": 0, @@ -16127,7 +16127,7 @@ }, { "x": 172.226, - "y": 292.09048405198945 + "y": 292.09048 }, { "endCol": 3, @@ -16151,7 +16151,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16220,154 +16220,154 @@ "index": 0, "isInternal": false, "x": 191.922, - "y": 298.117754767025 + "y": 298.11775 }, { "body": null, "index": 1, "isInternal": false, "x": 189.994, - "y": 304.050754767025 + "y": 304.05075 }, { "body": null, "index": 2, "isInternal": false, "x": 186.327, - "y": 309.098754767025 + "y": 309.09875 }, { "body": null, "index": 3, "isInternal": false, "x": 181.279, - "y": 312.76575476702504 + "y": 312.76575 }, { "body": null, "index": 4, "isInternal": false, "x": 175.346, - "y": 314.69375476702504 + "y": 314.69375 }, { "body": null, "index": 5, "isInternal": false, "x": 169.106, - "y": 314.69375476702504 + "y": 314.69375 }, { "body": null, "index": 6, "isInternal": false, "x": 163.173, - "y": 312.76575476702504 + "y": 312.76575 }, { "body": null, "index": 7, "isInternal": false, "x": 158.125, - "y": 309.098754767025 + "y": 309.09875 }, { "body": null, "index": 8, "isInternal": false, "x": 154.458, - "y": 304.050754767025 + "y": 304.05075 }, { "body": null, "index": 9, "isInternal": false, "x": 152.53, - "y": 298.117754767025 + "y": 298.11775 }, { "body": null, "index": 10, "isInternal": false, "x": 152.53, - "y": 291.877754767025 + "y": 291.87775 }, { "body": null, "index": 11, "isInternal": false, "x": 154.458, - "y": 285.944754767025 + "y": 285.94475 }, { "body": null, "index": 12, "isInternal": false, "x": 158.125, - "y": 280.896754767025 + "y": 280.89675 }, { "body": null, "index": 13, "isInternal": false, "x": 163.173, - "y": 277.229754767025 + "y": 277.22975 }, { "body": null, "index": 14, "isInternal": false, "x": 169.106, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 15, "isInternal": false, "x": 175.346, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 16, "isInternal": false, "x": 181.279, - "y": 277.229754767025 + "y": 277.22975 }, { "body": null, "index": 17, "isInternal": false, "x": 186.327, - "y": 280.896754767025 + "y": 280.89675 }, { "body": null, "index": 18, "isInternal": false, "x": 189.994, - "y": 285.944754767025 + "y": 285.94475 }, { "body": null, "index": 19, "isInternal": false, "x": 191.922, - "y": 291.877754767025 + "y": 291.87775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1002.7103840000001, + "area": 1002.71038, "axes": { "#": 1792 }, "bounds": { "#": 1803 }, - "circleRadius": 18.01343878600823, + "circleRadius": 18.01344, "collisionFilter": { "#": 1806 }, @@ -16382,13 +16382,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 640.1104675474656, - "inverseInertia": 0.0015622303503822139, - "inverseMass": 0.9972969423242753, + "inertia": 640.11047, + "inverseInertia": 0.00156, + "inverseMass": 0.9973, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.002710384, + "mass": 1.00271, "motion": 0, "parent": null, "position": { @@ -16410,7 +16410,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16455,40 +16455,40 @@ } ], { - "x": -0.9510340687309481, - "y": -0.30908607233755825 + "x": -0.95103, + "y": -0.30909 }, { - "x": -0.8089585484139196, - "y": -0.5878656878471851 + "x": -0.80896, + "y": -0.58787 }, { - "x": -0.5878656878471851, - "y": -0.8089585484139196 + "x": -0.58787, + "y": -0.80896 }, { - "x": -0.30908607233755825, - "y": -0.9510340687309481 + "x": -0.30909, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.30908607233755825, - "y": -0.9510340687309481 + "x": 0.30909, + "y": -0.95103 }, { - "x": 0.5878656878471851, - "y": -0.8089585484139196 + "x": 0.58787, + "y": -0.80896 }, { - "x": 0.8089585484139196, - "y": -0.5878656878471851 + "x": 0.80896, + "y": -0.58787 }, { - "x": 0.9510340687309481, - "y": -0.30908607233755825 + "x": 0.95103, + "y": -0.30909 }, { "x": 1, @@ -16504,11 +16504,11 @@ }, { "x": 237.506, - "y": 310.88575476702505 + "y": 310.88575 }, { "x": 201.922, - "y": 275.301754767025 + "y": 275.30175 }, { "category": 1, @@ -16526,7 +16526,7 @@ }, { "x": 219.714, - "y": 293.093754767025 + "y": 293.09375 }, { "x": 0, @@ -16534,7 +16534,7 @@ }, { "x": 219.714, - "y": 290.18648405198945 + "y": 290.18648 }, { "endCol": 4, @@ -16558,7 +16558,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16627,154 +16627,154 @@ "index": 0, "isInternal": false, "x": 237.506, - "y": 295.911754767025 + "y": 295.91175 }, { "body": null, "index": 1, "isInternal": false, "x": 235.764, - "y": 301.271754767025 + "y": 301.27175 }, { "body": null, "index": 2, "isInternal": false, "x": 232.451, - "y": 305.83075476702504 + "y": 305.83075 }, { "body": null, "index": 3, "isInternal": false, "x": 227.892, - "y": 309.14375476702503 + "y": 309.14375 }, { "body": null, "index": 4, "isInternal": false, "x": 222.532, - "y": 310.88575476702505 + "y": 310.88575 }, { "body": null, "index": 5, "isInternal": false, "x": 216.896, - "y": 310.88575476702505 + "y": 310.88575 }, { "body": null, "index": 6, "isInternal": false, "x": 211.536, - "y": 309.14375476702503 + "y": 309.14375 }, { "body": null, "index": 7, "isInternal": false, "x": 206.977, - "y": 305.83075476702504 + "y": 305.83075 }, { "body": null, "index": 8, "isInternal": false, "x": 203.664, - "y": 301.271754767025 + "y": 301.27175 }, { "body": null, "index": 9, "isInternal": false, "x": 201.922, - "y": 295.911754767025 + "y": 295.91175 }, { "body": null, "index": 10, "isInternal": false, "x": 201.922, - "y": 290.27575476702503 + "y": 290.27575 }, { "body": null, "index": 11, "isInternal": false, "x": 203.664, - "y": 284.915754767025 + "y": 284.91575 }, { "body": null, "index": 12, "isInternal": false, "x": 206.977, - "y": 280.35675476702505 + "y": 280.35675 }, { "body": null, "index": 13, "isInternal": false, "x": 211.536, - "y": 277.043754767025 + "y": 277.04375 }, { "body": null, "index": 14, "isInternal": false, "x": 216.896, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 15, "isInternal": false, "x": 222.532, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 16, "isInternal": false, "x": 227.892, - "y": 277.043754767025 + "y": 277.04375 }, { "body": null, "index": 17, "isInternal": false, "x": 232.451, - "y": 280.35675476702505 + "y": 280.35675 }, { "body": null, "index": 18, "isInternal": false, "x": 235.764, - "y": 284.915754767025 + "y": 284.91575 }, { "body": null, "index": 19, "isInternal": false, "x": 237.506, - "y": 290.27575476702503 + "y": 290.27575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.6785539999998, + "area": 1824.67855, "axes": { "#": 1838 }, "bounds": { "#": 1852 }, - "circleRadius": 24.21804269547325, + "circleRadius": 24.21804, "collisionFilter": { "#": 1855 }, @@ -16789,13 +16789,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 2119.6353057013616, - "inverseInertia": 0.00047177927132569257, - "inverseMass": 0.5480417346977817, + "inertia": 2119.63531, + "inverseInertia": 0.00047, + "inverseMass": 0.54804, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.824678554, + "mass": 1.82468, "motion": 0, "parent": null, "position": { @@ -16817,7 +16817,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16871,52 +16871,52 @@ } ], { - "x": -0.9709530792717644, - "y": -0.23926996855576949 + "x": -0.97095, + "y": -0.23927 }, { - "x": -0.8854490104782353, - "y": -0.46473653809778487 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485517419948672, - "y": -0.6630763828975134 + "x": -0.74855, + "y": -0.66308 }, { - "x": -0.5681051115017207, - "y": -0.8229560026426791 + "x": -0.56811, + "y": -0.82296 }, { - "x": -0.3545561271605673, - "y": -0.9350347334152351 + "x": -0.35456, + "y": -0.93503 }, { - "x": -0.12057688237798207, - "y": -0.9927039918505447 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057688237798207, - "y": -0.9927039918505447 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545561271605673, - "y": -0.9350347334152351 + "x": 0.35456, + "y": -0.93503 }, { - "x": 0.5681051115017207, - "y": -0.8229560026426791 + "x": 0.56811, + "y": -0.82296 }, { - "x": 0.7485517419948672, - "y": -0.6630763828975134 + "x": 0.74855, + "y": -0.66308 }, { - "x": 0.8854490104782353, - "y": -0.46473653809778487 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709530792717644, - "y": -0.23926996855576949 + "x": 0.97095, + "y": -0.23927 }, { "x": 1, @@ -16931,12 +16931,12 @@ } }, { - "x": 295.5880000000001, - "y": 323.737754767025 + "x": 295.588, + "y": 323.73775 }, { - "x": 247.50600000000003, - "y": 275.301754767025 + "x": 247.506, + "y": 275.30175 }, { "category": 1, @@ -16954,7 +16954,7 @@ }, { "x": 271.547, - "y": 299.519754767025 + "y": 299.51975 }, { "x": 0, @@ -16962,7 +16962,7 @@ }, { "x": 271.547, - "y": 296.61248405198944 + "y": 296.61248 }, { "endCol": 6, @@ -16986,7 +16986,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17072,197 +17072,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 295.5880000000001, - "y": 302.438754767025 + "x": 295.588, + "y": 302.43875 }, { "body": null, "index": 1, "isInternal": false, - "x": 294.19100000000003, - "y": 308.107754767025 + "x": 294.191, + "y": 308.10775 }, { "body": null, "index": 2, "isInternal": false, - "x": 291.47800000000007, - "y": 313.276754767025 + "x": 291.478, + "y": 313.27675 }, { "body": null, "index": 3, "isInternal": false, - "x": 287.60699999999997, - "y": 317.646754767025 + "x": 287.607, + "y": 317.64675 }, { "body": null, "index": 4, "isInternal": false, "x": 282.802, - "y": 320.963754767025 + "y": 320.96375 }, { "body": null, "index": 5, "isInternal": false, "x": 277.343, - "y": 323.033754767025 + "y": 323.03375 }, { "body": null, "index": 6, "isInternal": false, "x": 271.547, - "y": 323.737754767025 + "y": 323.73775 }, { "body": null, "index": 7, "isInternal": false, - "x": 265.75100000000003, - "y": 323.033754767025 + "x": 265.751, + "y": 323.03375 }, { "body": null, "index": 8, "isInternal": false, - "x": 260.29200000000003, - "y": 320.963754767025 + "x": 260.292, + "y": 320.96375 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.48700000000002, - "y": 317.646754767025 + "x": 255.487, + "y": 317.64675 }, { "body": null, "index": 10, "isInternal": false, "x": 251.616, - "y": 313.276754767025 + "y": 313.27675 }, { "body": null, "index": 11, "isInternal": false, - "x": 248.90300000000002, - "y": 308.107754767025 + "x": 248.903, + "y": 308.10775 }, { "body": null, "index": 12, "isInternal": false, - "x": 247.50600000000003, - "y": 302.438754767025 + "x": 247.506, + "y": 302.43875 }, { "body": null, "index": 13, "isInternal": false, - "x": 247.50600000000003, - "y": 296.60075476702497 + "x": 247.506, + "y": 296.60075 }, { "body": null, "index": 14, "isInternal": false, - "x": 248.90300000000002, - "y": 290.931754767025 + "x": 248.903, + "y": 290.93175 }, { "body": null, "index": 15, "isInternal": false, "x": 251.616, - "y": 285.762754767025 + "y": 285.76275 }, { "body": null, "index": 16, "isInternal": false, - "x": 255.48700000000002, - "y": 281.392754767025 + "x": 255.487, + "y": 281.39275 }, { "body": null, "index": 17, "isInternal": false, - "x": 260.29200000000003, - "y": 278.075754767025 + "x": 260.292, + "y": 278.07575 }, { "body": null, "index": 18, "isInternal": false, - "x": 265.75100000000003, - "y": 276.005754767025 + "x": 265.751, + "y": 276.00575 }, { "body": null, "index": 19, "isInternal": false, "x": 271.547, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 20, "isInternal": false, "x": 277.343, - "y": 276.005754767025 + "y": 276.00575 }, { "body": null, "index": 21, "isInternal": false, "x": 282.802, - "y": 278.075754767025 + "y": 278.07575 }, { "body": null, "index": 22, "isInternal": false, - "x": 287.60699999999997, - "y": 281.392754767025 + "x": 287.607, + "y": 281.39275 }, { "body": null, "index": 23, "isInternal": false, - "x": 291.47800000000007, - "y": 285.762754767025 + "x": 291.478, + "y": 285.76275 }, { "body": null, "index": 24, "isInternal": false, - "x": 294.19100000000003, - "y": 290.931754767025 + "x": 294.191, + "y": 290.93175 }, { "body": null, "index": 25, "isInternal": false, - "x": 295.5880000000001, - "y": 296.60075476702497 + "x": 295.588, + "y": 296.60075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2471.436928, + "area": 2471.43693, "axes": { "#": 1893 }, "bounds": { "#": 1907 }, - "circleRadius": 28.184992283950617, + "circleRadius": 28.18499, "collisionFilter": { "#": 1910 }, @@ -17277,13 +17277,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 3888.548074751447, - "inverseInertia": 0.0002571653945834061, - "inverseMass": 0.4046229093166645, + "inertia": 3888.54807, + "inverseInertia": 0.00026, + "inverseMass": 0.40462, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.471436928, + "mass": 2.47144, "motion": 0, "parent": null, "position": { @@ -17305,7 +17305,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17359,52 +17359,52 @@ } ], { - "x": -0.970950739329147, - "y": -0.23927946379951362 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854826960522498, - "y": -0.4646723523000254 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.7484963444830224, - "y": -0.6631389162879469 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.5680768171903559, - "y": -0.8229755341265468 + "x": -0.56808, + "y": -0.82298 }, { - "x": -0.3545566221665471, - "y": -0.9350345457136052 + "x": -0.35456, + "y": -0.93503 }, { - "x": -0.12053794545125669, - "y": -0.9927087204746365 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12053794545125669, - "y": -0.9927087204746365 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.3545566221665471, - "y": -0.9350345457136052 + "x": 0.35456, + "y": -0.93503 }, { - "x": 0.5680768171903559, - "y": -0.8229755341265468 + "x": 0.56808, + "y": -0.82298 }, { - "x": 0.7484963444830224, - "y": -0.6631389162879469 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854826960522498, - "y": -0.4646723523000254 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.970950739329147, - "y": -0.23927946379951362 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -17419,12 +17419,12 @@ } }, { - "x": 361.54600000000005, - "y": 331.671754767025 + "x": 361.546, + "y": 331.67175 }, { - "x": 305.5880000000001, - "y": 275.301754767025 + "x": 305.588, + "y": 275.30175 }, { "category": 1, @@ -17441,16 +17441,16 @@ "y": 0 }, { - "x": 333.56700000000006, - "y": 303.486754767025 + "x": 333.567, + "y": 303.48675 }, { "x": 0, "y": 0 }, { - "x": 333.56700000000006, - "y": 300.5794840519894 + "x": 333.567, + "y": 300.57948 }, { "endCol": 7, @@ -17474,7 +17474,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17560,197 +17560,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 361.54600000000005, - "y": 306.883754767025 + "x": 361.546, + "y": 306.88375 }, { "body": null, "index": 1, "isInternal": false, - "x": 359.9200000000001, - "y": 313.481754767025 + "x": 359.92, + "y": 313.48175 }, { "body": null, "index": 2, "isInternal": false, - "x": 356.7630000000001, - "y": 319.497754767025 + "x": 356.763, + "y": 319.49775 }, { "body": null, "index": 3, "isInternal": false, - "x": 352.25700000000006, - "y": 324.58375476702497 + "x": 352.257, + "y": 324.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 346.6650000000001, - "y": 328.443754767025 + "x": 346.665, + "y": 328.44375 }, { "body": null, "index": 5, "isInternal": false, - "x": 340.31200000000007, - "y": 330.852754767025 + "x": 340.312, + "y": 330.85275 }, { "body": null, "index": 6, "isInternal": false, - "x": 333.56700000000006, - "y": 331.671754767025 + "x": 333.567, + "y": 331.67175 }, { "body": null, "index": 7, "isInternal": false, - "x": 326.82200000000006, - "y": 330.852754767025 + "x": 326.822, + "y": 330.85275 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.46900000000005, - "y": 328.443754767025 + "x": 320.469, + "y": 328.44375 }, { "body": null, "index": 9, "isInternal": false, - "x": 314.87700000000007, - "y": 324.58375476702497 + "x": 314.877, + "y": 324.58375 }, { "body": null, "index": 10, "isInternal": false, - "x": 310.37100000000004, - "y": 319.497754767025 + "x": 310.371, + "y": 319.49775 }, { "body": null, "index": 11, "isInternal": false, - "x": 307.21400000000006, - "y": 313.481754767025 + "x": 307.214, + "y": 313.48175 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.5880000000001, - "y": 306.883754767025 + "x": 305.588, + "y": 306.88375 }, { "body": null, "index": 13, "isInternal": false, - "x": 305.5880000000001, - "y": 300.089754767025 + "x": 305.588, + "y": 300.08975 }, { "body": null, "index": 14, "isInternal": false, - "x": 307.21400000000006, - "y": 293.491754767025 + "x": 307.214, + "y": 293.49175 }, { "body": null, "index": 15, "isInternal": false, - "x": 310.37100000000004, - "y": 287.47575476702497 + "x": 310.371, + "y": 287.47575 }, { "body": null, "index": 16, "isInternal": false, - "x": 314.87700000000007, - "y": 282.38975476702495 + "x": 314.877, + "y": 282.38975 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.46900000000005, - "y": 278.529754767025 + "x": 320.469, + "y": 278.52975 }, { "body": null, "index": 18, "isInternal": false, - "x": 326.82200000000006, - "y": 276.120754767025 + "x": 326.822, + "y": 276.12075 }, { "body": null, "index": 19, "isInternal": false, - "x": 333.56700000000006, - "y": 275.301754767025 + "x": 333.567, + "y": 275.30175 }, { "body": null, "index": 20, "isInternal": false, - "x": 340.31200000000007, - "y": 276.120754767025 + "x": 340.312, + "y": 276.12075 }, { "body": null, "index": 21, "isInternal": false, - "x": 346.6650000000001, - "y": 278.529754767025 + "x": 346.665, + "y": 278.52975 }, { "body": null, "index": 22, "isInternal": false, - "x": 352.25700000000006, - "y": 282.38975476702495 + "x": 352.257, + "y": 282.38975 }, { "body": null, "index": 23, "isInternal": false, - "x": 356.7630000000001, - "y": 287.47575476702497 + "x": 356.763, + "y": 287.47575 }, { "body": null, "index": 24, "isInternal": false, - "x": 359.9200000000001, - "y": 293.491754767025 + "x": 359.92, + "y": 293.49175 }, { "body": null, "index": 25, "isInternal": false, - "x": 361.54600000000005, - "y": 300.089754767025 + "x": 361.546, + "y": 300.08975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1547.5474520000005, + "area": 1547.54745, "axes": { "#": 1948 }, "bounds": { "#": 1961 }, - "circleRadius": 22.321694958847736, + "circleRadius": 22.32169, "collisionFilter": { "#": 1964 }, @@ -17765,13 +17765,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1524.6827933599404, - "inverseInertia": 0.0006558741295927541, - "inverseMass": 0.646183739766837, + "inertia": 1524.68279, + "inverseInertia": 0.00066, + "inverseMass": 0.64618, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.5475474520000005, + "mass": 1.54755, "motion": 0, "parent": null, "position": { @@ -17793,7 +17793,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17844,48 +17844,48 @@ } ], { - "x": -0.9659266009741097, - "y": -0.2588161539212787 + "x": -0.96593, + "y": -0.25882 }, { - "x": -0.8660169934454096, - "y": -0.5000145668515801 + "x": -0.86602, + "y": -0.50001 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000145668515801, - "y": -0.8660169934454096 + "x": -0.50001, + "y": -0.86602 }, { - "x": -0.2588161539212787, - "y": -0.9659266009741097 + "x": -0.25882, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.2588161539212787, - "y": -0.9659266009741097 + "x": 0.25882, + "y": -0.96593 }, { - "x": 0.5000145668515801, - "y": -0.8660169934454096 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660169934454096, - "y": -0.5000145668515801 + "x": 0.86602, + "y": -0.50001 }, { - "x": 0.9659266009741097, - "y": -0.2588161539212787 + "x": 0.96593, + "y": -0.25882 }, { "x": 1, @@ -17901,11 +17901,11 @@ }, { "x": 415.808, - "y": 319.56375476702493 + "y": 319.56375 }, { - "x": 371.54600000000005, - "y": 275.301754767025 + "x": 371.546, + "y": 275.30175 }, { "category": 1, @@ -17923,7 +17923,7 @@ }, { "x": 393.677, - "y": 297.43275476702496 + "y": 297.43275 }, { "x": 0, @@ -17931,7 +17931,7 @@ }, { "x": 393.677, - "y": 294.5254840519894 + "y": 294.52548 }, { "endCol": 8, @@ -17955,7 +17955,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18036,182 +18036,182 @@ "index": 0, "isInternal": false, "x": 415.808, - "y": 300.34675476702495 + "y": 300.34675 }, { "body": null, "index": 1, "isInternal": false, "x": 414.3, - "y": 305.97475476702493 + "y": 305.97475 }, { "body": null, "index": 2, "isInternal": false, "x": 411.386, - "y": 311.02175476702496 + "y": 311.02175 }, { "body": null, "index": 3, "isInternal": false, "x": 407.266, - "y": 315.14175476702496 + "y": 315.14175 }, { "body": null, "index": 4, "isInternal": false, "x": 402.219, - "y": 318.05575476702495 + "y": 318.05575 }, { "body": null, "index": 5, "isInternal": false, "x": 396.591, - "y": 319.56375476702493 + "y": 319.56375 }, { "body": null, "index": 6, "isInternal": false, - "x": 390.76300000000003, - "y": 319.56375476702493 + "x": 390.763, + "y": 319.56375 }, { "body": null, "index": 7, "isInternal": false, - "x": 385.13500000000005, - "y": 318.05575476702495 + "x": 385.135, + "y": 318.05575 }, { "body": null, "index": 8, "isInternal": false, "x": 380.088, - "y": 315.14175476702496 + "y": 315.14175 }, { "body": null, "index": 9, "isInternal": false, "x": 375.968, - "y": 311.02175476702496 + "y": 311.02175 }, { "body": null, "index": 10, "isInternal": false, - "x": 373.05400000000003, - "y": 305.97475476702493 + "x": 373.054, + "y": 305.97475 }, { "body": null, "index": 11, "isInternal": false, - "x": 371.54600000000005, - "y": 300.34675476702495 + "x": 371.546, + "y": 300.34675 }, { "body": null, "index": 12, "isInternal": false, - "x": 371.54600000000005, - "y": 294.518754767025 + "x": 371.546, + "y": 294.51875 }, { "body": null, "index": 13, "isInternal": false, - "x": 373.05400000000003, - "y": 288.89075476702493 + "x": 373.054, + "y": 288.89075 }, { "body": null, "index": 14, "isInternal": false, "x": 375.968, - "y": 283.84375476702496 + "y": 283.84375 }, { "body": null, "index": 15, "isInternal": false, "x": 380.088, - "y": 279.72375476702496 + "y": 279.72375 }, { "body": null, "index": 16, "isInternal": false, - "x": 385.13500000000005, - "y": 276.80975476702497 + "x": 385.135, + "y": 276.80975 }, { "body": null, "index": 17, "isInternal": false, - "x": 390.76300000000003, - "y": 275.301754767025 + "x": 390.763, + "y": 275.30175 }, { "body": null, "index": 18, "isInternal": false, "x": 396.591, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 19, "isInternal": false, "x": 402.219, - "y": 276.80975476702497 + "y": 276.80975 }, { "body": null, "index": 20, "isInternal": false, "x": 407.266, - "y": 279.72375476702496 + "y": 279.72375 }, { "body": null, "index": 21, "isInternal": false, "x": 411.386, - "y": 283.84375476702496 + "y": 283.84375 }, { "body": null, "index": 22, "isInternal": false, "x": 414.3, - "y": 288.89075476702493 + "y": 288.89075 }, { "body": null, "index": 23, "isInternal": false, "x": 415.808, - "y": 294.518754767025 + "y": 294.51875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1055.306792, + "area": 1055.30679, "axes": { "#": 2000 }, "bounds": { "#": 2011 }, - "circleRadius": 18.48000257201646, + "circleRadius": 18.48, "collisionFilter": { "#": 2014 }, @@ -18226,13 +18226,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 709.0247094978657, - "inverseInertia": 0.0014103880818317378, - "inverseMass": 0.9475917406963869, + "inertia": 709.02471, + "inverseInertia": 0.00141, + "inverseMass": 0.94759, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.055306792, + "mass": 1.05531, "motion": 0, "parent": null, "position": { @@ -18254,7 +18254,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18299,40 +18299,40 @@ } ], { - "x": -0.9510937892878595, - "y": -0.30890225634990265 + "x": -0.95109, + "y": -0.3089 }, { - "x": -0.8089379801350923, - "y": -0.5878939906947145 + "x": -0.80894, + "y": -0.58789 }, { - "x": -0.5878939906947145, - "y": -0.8089379801350923 + "x": -0.58789, + "y": -0.80894 }, { - "x": -0.30890225634990265, - "y": -0.9510937892878595 + "x": -0.3089, + "y": -0.95109 }, { "x": 0, "y": -1 }, { - "x": 0.30890225634990265, - "y": -0.9510937892878595 + "x": 0.3089, + "y": -0.95109 }, { - "x": 0.5878939906947145, - "y": -0.8089379801350923 + "x": 0.58789, + "y": -0.80894 }, { - "x": 0.8089379801350923, - "y": -0.5878939906947145 + "x": 0.80894, + "y": -0.58789 }, { - "x": 0.9510937892878595, - "y": -0.30890225634990265 + "x": 0.95109, + "y": -0.3089 }, { "x": 1, @@ -18348,11 +18348,11 @@ }, { "x": 462.312, - "y": 311.805754767025 + "y": 311.80575 }, { "x": 425.808, - "y": 275.301754767025 + "y": 275.30175 }, { "category": 1, @@ -18370,7 +18370,7 @@ }, { "x": 444.06, - "y": 293.553754767025 + "y": 293.55375 }, { "x": 0, @@ -18378,7 +18378,7 @@ }, { "x": 444.06, - "y": 290.64648405198943 + "y": 290.64648 }, { "endCol": 9, @@ -18402,7 +18402,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18471,154 +18471,154 @@ "index": 0, "isInternal": false, "x": 462.312, - "y": 296.444754767025 + "y": 296.44475 }, { "body": null, "index": 1, "isInternal": false, "x": 460.526, - "y": 301.943754767025 + "y": 301.94375 }, { "body": null, "index": 2, "isInternal": false, "x": 457.127, - "y": 306.620754767025 + "y": 306.62075 }, { "body": null, "index": 3, "isInternal": false, "x": 452.45, - "y": 310.019754767025 + "y": 310.01975 }, { "body": null, "index": 4, "isInternal": false, "x": 446.951, - "y": 311.805754767025 + "y": 311.80575 }, { "body": null, "index": 5, "isInternal": false, "x": 441.169, - "y": 311.805754767025 + "y": 311.80575 }, { "body": null, "index": 6, "isInternal": false, "x": 435.67, - "y": 310.019754767025 + "y": 310.01975 }, { "body": null, "index": 7, "isInternal": false, "x": 430.993, - "y": 306.620754767025 + "y": 306.62075 }, { "body": null, "index": 8, "isInternal": false, "x": 427.594, - "y": 301.943754767025 + "y": 301.94375 }, { "body": null, "index": 9, "isInternal": false, "x": 425.808, - "y": 296.444754767025 + "y": 296.44475 }, { "body": null, "index": 10, "isInternal": false, "x": 425.808, - "y": 290.662754767025 + "y": 290.66275 }, { "body": null, "index": 11, "isInternal": false, "x": 427.594, - "y": 285.163754767025 + "y": 285.16375 }, { "body": null, "index": 12, "isInternal": false, "x": 430.993, - "y": 280.486754767025 + "y": 280.48675 }, { "body": null, "index": 13, "isInternal": false, "x": 435.67, - "y": 277.087754767025 + "y": 277.08775 }, { "body": null, "index": 14, "isInternal": false, "x": 441.169, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 15, "isInternal": false, "x": 446.951, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 16, "isInternal": false, "x": 452.45, - "y": 277.087754767025 + "y": 277.08775 }, { "body": null, "index": 17, "isInternal": false, "x": 457.127, - "y": 280.486754767025 + "y": 280.48675 }, { "body": null, "index": 18, "isInternal": false, "x": 460.526, - "y": 285.163754767025 + "y": 285.16375 }, { "body": null, "index": 19, "isInternal": false, "x": 462.312, - "y": 290.662754767025 + "y": 290.66275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2730.0490020000007, + "area": 2730.049, "axes": { "#": 2046 }, "bounds": { "#": 2060 }, - "circleRadius": 29.622878086419753, + "circleRadius": 29.62288, "collisionFilter": { "#": 2063 }, @@ -18633,13 +18633,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 4744.924363381941, - "inverseInertia": 0.000210751515391333, - "inverseMass": 0.36629379152806857, + "inertia": 4744.92436, + "inverseInertia": 0.00021, + "inverseMass": 0.36629, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.730049002000001, + "mass": 2.73005, "motion": 0, "parent": null, "position": { @@ -18661,7 +18661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18715,52 +18715,52 @@ } ], { - "x": -0.9709363184970072, - "y": -0.23933797321670056 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854612825518478, - "y": -0.46471315572257776 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485285981139811, - "y": -0.6631025092740324 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680372022951283, - "y": -0.8230028777645456 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.354574024436084, - "y": -0.9350279467455501 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12056973958972958, - "y": -0.992704859409515 + "x": -0.12057, + "y": -0.9927 }, { - "x": 0.12056973958972958, - "y": -0.992704859409515 + "x": 0.12057, + "y": -0.9927 }, { - "x": 0.354574024436084, - "y": -0.9350279467455501 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680372022951283, - "y": -0.8230028777645456 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.7485285981139811, - "y": -0.6631025092740324 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854612825518478, - "y": -0.46471315572257776 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709363184970072, - "y": -0.23933797321670056 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -18776,11 +18776,11 @@ }, { "x": 531.126, - "y": 334.54775476702497 + "y": 334.54775 }, { "x": 472.312, - "y": 275.301754767025 + "y": 275.30175 }, { "category": 1, @@ -18798,7 +18798,7 @@ }, { "x": 501.719, - "y": 304.924754767025 + "y": 304.92475 }, { "x": 0, @@ -18806,7 +18806,7 @@ }, { "x": 501.719, - "y": 302.0174840519894 + "y": 302.01748 }, { "endCol": 11, @@ -18830,7 +18830,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18917,196 +18917,196 @@ "index": 0, "isInternal": false, "x": 531.126, - "y": 308.495754767025 + "y": 308.49575 }, { "body": null, "index": 1, "isInternal": false, - "x": 529.4169999999999, - "y": 315.428754767025 + "x": 529.417, + "y": 315.42875 }, { "body": null, "index": 2, "isInternal": false, "x": 526.098, - "y": 321.75275476702495 + "y": 321.75275 }, { "body": null, "index": 3, "isInternal": false, "x": 521.363, - "y": 327.097754767025 + "y": 327.09775 }, { "body": null, "index": 4, "isInternal": false, "x": 515.485, - "y": 331.154754767025 + "y": 331.15475 }, { "body": null, "index": 5, "isInternal": false, "x": 508.808, - "y": 333.686754767025 + "y": 333.68675 }, { "body": null, "index": 6, "isInternal": false, "x": 501.719, - "y": 334.54775476702497 + "y": 334.54775 }, { "body": null, "index": 7, "isInternal": false, "x": 494.63, - "y": 333.686754767025 + "y": 333.68675 }, { "body": null, "index": 8, "isInternal": false, "x": 487.953, - "y": 331.154754767025 + "y": 331.15475 }, { "body": null, "index": 9, "isInternal": false, "x": 482.075, - "y": 327.097754767025 + "y": 327.09775 }, { "body": null, "index": 10, "isInternal": false, "x": 477.34, - "y": 321.75275476702495 + "y": 321.75275 }, { "body": null, "index": 11, "isInternal": false, "x": 474.021, - "y": 315.428754767025 + "y": 315.42875 }, { "body": null, "index": 12, "isInternal": false, "x": 472.312, - "y": 308.495754767025 + "y": 308.49575 }, { "body": null, "index": 13, "isInternal": false, "x": 472.312, - "y": 301.353754767025 + "y": 301.35375 }, { "body": null, "index": 14, "isInternal": false, "x": 474.021, - "y": 294.420754767025 + "y": 294.42075 }, { "body": null, "index": 15, "isInternal": false, "x": 477.34, - "y": 288.09675476702495 + "y": 288.09675 }, { "body": null, "index": 16, "isInternal": false, "x": 482.075, - "y": 282.751754767025 + "y": 282.75175 }, { "body": null, "index": 17, "isInternal": false, "x": 487.953, - "y": 278.694754767025 + "y": 278.69475 }, { "body": null, "index": 18, "isInternal": false, "x": 494.63, - "y": 276.162754767025 + "y": 276.16275 }, { "body": null, "index": 19, "isInternal": false, "x": 501.719, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 20, "isInternal": false, "x": 508.808, - "y": 276.162754767025 + "y": 276.16275 }, { "body": null, "index": 21, "isInternal": false, "x": 515.485, - "y": 278.694754767025 + "y": 278.69475 }, { "body": null, "index": 22, "isInternal": false, "x": 521.363, - "y": 282.751754767025 + "y": 282.75175 }, { "body": null, "index": 23, "isInternal": false, "x": 526.098, - "y": 288.09675476702495 + "y": 288.09675 }, { "body": null, "index": 24, "isInternal": false, - "x": 529.4169999999999, - "y": 294.420754767025 + "x": 529.417, + "y": 294.42075 }, { "body": null, "index": 25, "isInternal": false, "x": 531.126, - "y": 301.353754767025 + "y": 301.35375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 837.1561759999998, + "area": 837.15618, "axes": { "#": 2101 }, "bounds": { "#": 2111 }, - "circleRadius": 16.491062242798353, + "circleRadius": 16.49106, "collisionFilter": { "#": 2114 }, @@ -19121,13 +19121,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 446.1998710095896, - "inverseInertia": 0.0022411481153890972, - "inverseMass": 1.1945202444519745, + "inertia": 446.19987, + "inverseInertia": 0.00224, + "inverseMass": 1.19452, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8371561759999999, + "mass": 0.83716, "motion": 0, "parent": null, "position": { @@ -19149,7 +19149,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19191,36 +19191,36 @@ } ], { - "x": -0.9396863246024094, - "y": -0.34203744145227044 + "x": -0.93969, + "y": -0.34204 }, { - "x": -0.7659696479015781, - "y": -0.64287673662494 + "x": -0.76597, + "y": -0.64288 }, { - "x": -0.5000448704318415, - "y": -0.8659994962786081 + "x": -0.50004, + "y": -0.866 }, { - "x": -0.17356618334402651, - "y": -0.9848222073041345 + "x": -0.17357, + "y": -0.98482 }, { - "x": 0.17356618334402651, - "y": -0.9848222073041345 + "x": 0.17357, + "y": -0.98482 }, { - "x": 0.5000448704318415, - "y": -0.8659994962786081 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7659696479015781, - "y": -0.64287673662494 + "x": 0.76597, + "y": -0.64288 }, { - "x": 0.9396863246024094, - "y": -0.34203744145227044 + "x": 0.93969, + "y": -0.34204 }, { "x": 1, @@ -19236,11 +19236,11 @@ }, { "x": 573.608, - "y": 308.28375476702496 + "y": 308.28375 }, { "x": 541.126, - "y": 275.301754767025 + "y": 275.30175 }, { "category": 1, @@ -19258,7 +19258,7 @@ }, { "x": 557.367, - "y": 291.792754767025 + "y": 291.79275 }, { "x": 0, @@ -19266,7 +19266,7 @@ }, { "x": 557.367, - "y": 288.8854840519894 + "y": 288.88548 }, { "endCol": 11, @@ -19290,7 +19290,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -19353,140 +19353,140 @@ "index": 0, "isInternal": false, "x": 573.608, - "y": 294.65675476702495 + "y": 294.65675 }, { "body": null, "index": 1, "isInternal": false, "x": 571.649, - "y": 300.03875476702495 + "y": 300.03875 }, { "body": null, "index": 2, "isInternal": false, "x": 567.967, - "y": 304.42575476702496 + "y": 304.42575 }, { "body": null, "index": 3, "isInternal": false, "x": 563.007, - "y": 307.289754767025 + "y": 307.28975 }, { "body": null, "index": 4, "isInternal": false, "x": 557.367, - "y": 308.28375476702496 + "y": 308.28375 }, { "body": null, "index": 5, "isInternal": false, "x": 551.727, - "y": 307.289754767025 + "y": 307.28975 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.7669999999999, - "y": 304.42575476702496 + "x": 546.767, + "y": 304.42575 }, { "body": null, "index": 7, "isInternal": false, - "x": 543.0849999999999, - "y": 300.03875476702495 + "x": 543.085, + "y": 300.03875 }, { "body": null, "index": 8, "isInternal": false, "x": 541.126, - "y": 294.65675476702495 + "y": 294.65675 }, { "body": null, "index": 9, "isInternal": false, "x": 541.126, - "y": 288.92875476702494 + "y": 288.92875 }, { "body": null, "index": 10, "isInternal": false, - "x": 543.0849999999999, - "y": 283.546754767025 + "x": 543.085, + "y": 283.54675 }, { "body": null, "index": 11, "isInternal": false, - "x": 546.7669999999999, - "y": 279.15975476702494 + "x": 546.767, + "y": 279.15975 }, { "body": null, "index": 12, "isInternal": false, "x": 551.727, - "y": 276.29575476702496 + "y": 276.29575 }, { "body": null, "index": 13, "isInternal": false, "x": 557.367, - "y": 275.301754767025 + "y": 275.30175 }, { "body": null, "index": 14, "isInternal": false, "x": 563.007, - "y": 276.29575476702496 + "y": 276.29575 }, { "body": null, "index": 15, "isInternal": false, "x": 567.967, - "y": 279.15975476702494 + "y": 279.15975 }, { "body": null, "index": 16, "isInternal": false, "x": 571.649, - "y": 283.546754767025 + "y": 283.54675 }, { "body": null, "index": 17, "isInternal": false, "x": 573.608, - "y": 288.92875476702494 + "y": 288.92875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1832.5456639999998, + "area": 1832.54566, "axes": { "#": 2144 }, "bounds": { "#": 2158 }, - "circleRadius": 24.269740226337447, + "circleRadius": 24.26974, "collisionFilter": { "#": 2161 }, @@ -19501,13 +19501,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 2137.952342345815, - "inverseInertia": 0.0004677372737423955, - "inverseMass": 0.5456889940833693, + "inertia": 2137.95234, + "inverseInertia": 0.00047, + "inverseMass": 0.54569, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8325456639999997, + "mass": 1.83255, "motion": 0, "parent": null, "position": { @@ -19529,7 +19529,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19583,52 +19583,52 @@ } ], { - "x": -0.970951377249592, - "y": -0.23927687522433155 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854699897202892, - "y": -0.4646965647653864 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7484645502186983, - "y": -0.6631748012899176 + "x": -0.74846, + "y": -0.66317 }, { - "x": -0.568116313280717, - "y": -0.8229482696891259 + "x": -0.56812, + "y": -0.82295 }, { - "x": -0.354623322192599, - "y": -0.9350092509473285 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12049981262239128, - "y": -0.9927133499444684 + "x": -0.1205, + "y": -0.99271 }, { - "x": 0.12049981262239128, - "y": -0.9927133499444684 + "x": 0.1205, + "y": -0.99271 }, { - "x": 0.354623322192599, - "y": -0.9350092509473285 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.568116313280717, - "y": -0.8229482696891259 + "x": 0.56812, + "y": -0.82295 }, { - "x": 0.7484645502186983, - "y": -0.6631748012899176 + "x": 0.74846, + "y": -0.66317 }, { - "x": 0.8854699897202892, - "y": -0.4646965647653864 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.970951377249592, - "y": -0.23927687522433155 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -19643,12 +19643,12 @@ } }, { - "x": 631.7939999999999, - "y": 323.84175476702495 + "x": 631.794, + "y": 323.84175 }, { "x": 583.608, - "y": 275.301754767025 + "y": 275.30175 }, { "category": 1, @@ -19665,16 +19665,16 @@ "y": 0 }, { - "x": 607.7009999999999, - "y": 299.57175476702497 + "x": 607.701, + "y": 299.57175 }, { "x": 0, "y": 0 }, { - "x": 607.7009999999999, - "y": 296.6644840519894 + "x": 607.701, + "y": 296.66448 }, { "endCol": 13, @@ -19698,7 +19698,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -19784,197 +19784,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.7939999999999, - "y": 302.496754767025 + "x": 631.794, + "y": 302.49675 }, { "body": null, "index": 1, "isInternal": false, - "x": 630.3939999999999, - "y": 308.17775476702496 + "x": 630.394, + "y": 308.17775 }, { "body": null, "index": 2, "isInternal": false, "x": 627.675, - "y": 313.35875476702495 + "y": 313.35875 }, { "body": null, "index": 3, "isInternal": false, "x": 623.795, - "y": 317.73775476702497 + "y": 317.73775 }, { "body": null, "index": 4, "isInternal": false, - "x": 618.9799999999999, - "y": 321.061754767025 + "x": 618.98, + "y": 321.06175 }, { "body": null, "index": 5, "isInternal": false, - "x": 613.5089999999999, - "y": 323.13675476702497 + "x": 613.509, + "y": 323.13675 }, { "body": null, "index": 6, "isInternal": false, - "x": 607.7009999999999, - "y": 323.84175476702495 + "x": 607.701, + "y": 323.84175 }, { "body": null, "index": 7, "isInternal": false, - "x": 601.8929999999999, - "y": 323.13675476702497 + "x": 601.893, + "y": 323.13675 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4219999999999, - "y": 321.061754767025 + "x": 596.422, + "y": 321.06175 }, { "body": null, "index": 9, "isInternal": false, - "x": 591.6069999999999, - "y": 317.73775476702497 + "x": 591.607, + "y": 317.73775 }, { "body": null, "index": 10, "isInternal": false, - "x": 587.7269999999999, - "y": 313.35875476702495 + "x": 587.727, + "y": 313.35875 }, { "body": null, "index": 11, "isInternal": false, - "x": 585.0079999999999, - "y": 308.17775476702496 + "x": 585.008, + "y": 308.17775 }, { "body": null, "index": 12, "isInternal": false, "x": 583.608, - "y": 302.496754767025 + "y": 302.49675 }, { "body": null, "index": 13, "isInternal": false, "x": 583.608, - "y": 296.64675476702496 + "y": 296.64675 }, { "body": null, "index": 14, "isInternal": false, - "x": 585.0079999999999, - "y": 290.965754767025 + "x": 585.008, + "y": 290.96575 }, { "body": null, "index": 15, "isInternal": false, - "x": 587.7269999999999, - "y": 285.78475476702494 + "x": 587.727, + "y": 285.78475 }, { "body": null, "index": 16, "isInternal": false, - "x": 591.6069999999999, - "y": 281.405754767025 + "x": 591.607, + "y": 281.40575 }, { "body": null, "index": 17, "isInternal": false, - "x": 596.4219999999999, - "y": 278.08175476702496 + "x": 596.422, + "y": 278.08175 }, { "body": null, "index": 18, "isInternal": false, - "x": 601.8929999999999, - "y": 276.006754767025 + "x": 601.893, + "y": 276.00675 }, { "body": null, "index": 19, "isInternal": false, - "x": 607.7009999999999, - "y": 275.301754767025 + "x": 607.701, + "y": 275.30175 }, { "body": null, "index": 20, "isInternal": false, - "x": 613.5089999999999, - "y": 276.006754767025 + "x": 613.509, + "y": 276.00675 }, { "body": null, "index": 21, "isInternal": false, - "x": 618.9799999999999, - "y": 278.08175476702496 + "x": 618.98, + "y": 278.08175 }, { "body": null, "index": 22, "isInternal": false, "x": 623.795, - "y": 281.405754767025 + "y": 281.40575 }, { "body": null, "index": 23, "isInternal": false, "x": 627.675, - "y": 285.78475476702494 + "y": 285.78475 }, { "body": null, "index": 24, "isInternal": false, - "x": 630.3939999999999, - "y": 290.965754767025 + "x": 630.394, + "y": 290.96575 }, { "body": null, "index": 25, "isInternal": false, - "x": 631.7939999999999, - "y": 296.64675476702496 + "x": 631.794, + "y": 296.64675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2662.7031859999993, + "area": 2662.70319, "axes": { "#": 2199 }, "bounds": { "#": 2213 }, - "circleRadius": 29.255208333333336, + "circleRadius": 29.25521, "collisionFilter": { "#": 2216 }, @@ -19989,13 +19989,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 4513.71283136672, - "inverseInertia": 0.00022154710265367218, - "inverseMass": 0.3755581941155946, + "inertia": 4513.71283, + "inverseInertia": 0.00022, + "inverseMass": 0.37556, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6627031859999994, + "mass": 2.6627, "motion": 0, "parent": null, "position": { @@ -20017,7 +20017,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20071,52 +20071,52 @@ } ], { - "x": -0.9709378772487557, - "y": -0.23933164964893425 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854927136371952, - "y": -0.4646532622240331 + "x": -0.88549, + "y": -0.46465 }, { - "x": -0.7484956802859418, - "y": -0.6631396659779034 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.568044391747725, - "y": -0.8229979155526198 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.3545858497834421, - "y": -0.9350234623437822 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12052615754469004, - "y": -0.9927101517298554 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052615754469004, - "y": -0.9927101517298554 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3545858497834421, - "y": -0.9350234623437822 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.568044391747725, - "y": -0.8229979155526198 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.7484956802859418, - "y": -0.6631396659779034 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854927136371952, - "y": -0.4646532622240331 + "x": 0.88549, + "y": -0.46465 }, { - "x": 0.9709378772487557, - "y": -0.23933164964893425 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -20132,11 +20132,11 @@ }, { "x": 158.084, - "y": 403.05775476702496 + "y": 403.05775 }, { "x": 100, - "y": 344.54775476702497 + "y": 344.54775 }, { "category": 1, @@ -20154,7 +20154,7 @@ }, { "x": 129.042, - "y": 373.80275476702496 + "y": 373.80275 }, { "x": 0, @@ -20162,7 +20162,7 @@ }, { "x": 129.042, - "y": 370.8954840519894 + "y": 370.89548 }, { "endCol": 3, @@ -20186,7 +20186,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -20273,196 +20273,196 @@ "index": 0, "isInternal": false, "x": 158.084, - "y": 377.328754767025 + "y": 377.32875 }, { "body": null, "index": 1, "isInternal": false, - "x": 156.39600000000002, - "y": 384.176754767025 + "x": 156.396, + "y": 384.17675 }, { "body": null, "index": 2, "isInternal": false, "x": 153.119, - "y": 390.421754767025 + "y": 390.42175 }, { "body": null, "index": 3, "isInternal": false, "x": 148.442, - "y": 395.700754767025 + "y": 395.70075 }, { "body": null, "index": 4, "isInternal": false, "x": 142.638, - "y": 399.70675476702496 + "y": 399.70675 }, { "body": null, "index": 5, "isInternal": false, "x": 136.043, - "y": 402.20775476702494 + "y": 402.20775 }, { "body": null, "index": 6, "isInternal": false, "x": 129.042, - "y": 403.05775476702496 + "y": 403.05775 }, { "body": null, "index": 7, "isInternal": false, "x": 122.041, - "y": 402.20775476702494 + "y": 402.20775 }, { "body": null, "index": 8, "isInternal": false, "x": 115.446, - "y": 399.70675476702496 + "y": 399.70675 }, { "body": null, "index": 9, "isInternal": false, "x": 109.642, - "y": 395.700754767025 + "y": 395.70075 }, { "body": null, "index": 10, "isInternal": false, "x": 104.965, - "y": 390.421754767025 + "y": 390.42175 }, { "body": null, "index": 11, "isInternal": false, "x": 101.688, - "y": 384.176754767025 + "y": 384.17675 }, { "body": null, "index": 12, "isInternal": false, "x": 100, - "y": 377.328754767025 + "y": 377.32875 }, { "body": null, "index": 13, "isInternal": false, "x": 100, - "y": 370.27675476702495 + "y": 370.27675 }, { "body": null, "index": 14, "isInternal": false, "x": 101.688, - "y": 363.42875476702494 + "y": 363.42875 }, { "body": null, "index": 15, "isInternal": false, "x": 104.965, - "y": 357.18375476702494 + "y": 357.18375 }, { "body": null, "index": 16, "isInternal": false, "x": 109.642, - "y": 351.90475476702494 + "y": 351.90475 }, { "body": null, "index": 17, "isInternal": false, "x": 115.446, - "y": 347.89875476702497 + "y": 347.89875 }, { "body": null, "index": 18, "isInternal": false, "x": 122.041, - "y": 345.397754767025 + "y": 345.39775 }, { "body": null, "index": 19, "isInternal": false, "x": 129.042, - "y": 344.54775476702497 + "y": 344.54775 }, { "body": null, "index": 20, "isInternal": false, "x": 136.043, - "y": 345.397754767025 + "y": 345.39775 }, { "body": null, "index": 21, "isInternal": false, "x": 142.638, - "y": 347.89875476702497 + "y": 347.89875 }, { "body": null, "index": 22, "isInternal": false, "x": 148.442, - "y": 351.90475476702494 + "y": 351.90475 }, { "body": null, "index": 23, "isInternal": false, "x": 153.119, - "y": 357.18375476702494 + "y": 357.18375 }, { "body": null, "index": 24, "isInternal": false, - "x": 156.39600000000002, - "y": 363.42875476702494 + "x": 156.396, + "y": 363.42875 }, { "body": null, "index": 25, "isInternal": false, "x": 158.084, - "y": 370.27675476702495 + "y": 370.27675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1305.135712, + "area": 1305.13571, "axes": { "#": 2254 }, "bounds": { "#": 2266 }, - "circleRadius": 20.521540637860085, + "circleRadius": 20.52154, "collisionFilter": { "#": 2269 }, @@ -20477,13 +20477,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1084.445370223285, - "inverseInertia": 0.0009221303603279731, - "inverseMass": 0.7662038444014319, + "inertia": 1084.44537, + "inverseInertia": 0.00092, + "inverseMass": 0.7662, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.305135712, + "mass": 1.30514, "motion": 0, "parent": null, "position": { @@ -20505,7 +20505,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20553,44 +20553,44 @@ } ], { - "x": -0.9594690362006828, - "y": -0.2818140673780016 + "x": -0.95947, + "y": -0.28181 }, { - "x": -0.8412563391286896, - "y": -0.5406364507465208 + "x": -0.84126, + "y": -0.54064 }, { - "x": -0.654884909729583, - "y": -0.7557286252408836 + "x": -0.65488, + "y": -0.75573 }, { - "x": -0.41536319054833765, - "y": -0.9096556600920512 + "x": -0.41536, + "y": -0.90966 }, { - "x": -0.14242786467425667, - "y": -0.9898051845511477 + "x": -0.14243, + "y": -0.98981 }, { - "x": 0.14242786467425667, - "y": -0.9898051845511477 + "x": 0.14243, + "y": -0.98981 }, { - "x": 0.41536319054833765, - "y": -0.9096556600920512 + "x": 0.41536, + "y": -0.90966 }, { - "x": 0.654884909729583, - "y": -0.7557286252408836 + "x": 0.65488, + "y": -0.75573 }, { - "x": 0.8412563391286896, - "y": -0.5406364507465208 + "x": 0.84126, + "y": -0.54064 }, { - "x": 0.9594690362006828, - "y": -0.2818140673780016 + "x": 0.95947, + "y": -0.28181 }, { "x": 1, @@ -20605,12 +20605,12 @@ } }, { - "x": 208.70999999999998, - "y": 385.59175476702495 + "x": 208.71, + "y": 385.59175 }, { "x": 168.084, - "y": 344.54775476702497 + "y": 344.54775 }, { "category": 1, @@ -20628,7 +20628,7 @@ }, { "x": 188.397, - "y": 365.06975476702496 + "y": 365.06975 }, { "x": 0, @@ -20636,7 +20636,7 @@ }, { "x": 188.397, - "y": 362.1624840519894 + "y": 362.16248 }, { "endCol": 4, @@ -20660,7 +20660,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -20734,169 +20734,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 208.70999999999998, - "y": 367.99075476702495 + "x": 208.71, + "y": 367.99075 }, { "body": null, "index": 1, "isInternal": false, "x": 207.064, - "y": 373.59475476702494 + "y": 373.59475 }, { "body": null, "index": 2, "isInternal": false, "x": 203.906, - "y": 378.508754767025 + "y": 378.50875 }, { "body": null, "index": 3, "isInternal": false, "x": 199.492, - "y": 382.33375476702497 + "y": 382.33375 }, { "body": null, "index": 4, "isInternal": false, "x": 194.179, - "y": 384.75975476702496 + "y": 384.75975 }, { "body": null, "index": 5, "isInternal": false, "x": 188.397, - "y": 385.59175476702495 + "y": 385.59175 }, { "body": null, "index": 6, "isInternal": false, - "x": 182.61499999999998, - "y": 384.75975476702496 + "x": 182.615, + "y": 384.75975 }, { "body": null, "index": 7, "isInternal": false, "x": 177.302, - "y": 382.33375476702497 + "y": 382.33375 }, { "body": null, "index": 8, "isInternal": false, - "x": 172.88799999999998, - "y": 378.508754767025 + "x": 172.888, + "y": 378.50875 }, { "body": null, "index": 9, "isInternal": false, "x": 169.73, - "y": 373.59475476702494 + "y": 373.59475 }, { "body": null, "index": 10, "isInternal": false, "x": 168.084, - "y": 367.99075476702495 + "y": 367.99075 }, { "body": null, "index": 11, "isInternal": false, "x": 168.084, - "y": 362.14875476702497 + "y": 362.14875 }, { "body": null, "index": 12, "isInternal": false, "x": 169.73, - "y": 356.544754767025 + "y": 356.54475 }, { "body": null, "index": 13, "isInternal": false, - "x": 172.88799999999998, - "y": 351.63075476702494 + "x": 172.888, + "y": 351.63075 }, { "body": null, "index": 14, "isInternal": false, "x": 177.302, - "y": 347.80575476702495 + "y": 347.80575 }, { "body": null, "index": 15, "isInternal": false, - "x": 182.61499999999998, - "y": 345.37975476702496 + "x": 182.615, + "y": 345.37975 }, { "body": null, "index": 16, "isInternal": false, "x": 188.397, - "y": 344.54775476702497 + "y": 344.54775 }, { "body": null, "index": 17, "isInternal": false, "x": 194.179, - "y": 345.37975476702496 + "y": 345.37975 }, { "body": null, "index": 18, "isInternal": false, "x": 199.492, - "y": 347.80575476702495 + "y": 347.80575 }, { "body": null, "index": 19, "isInternal": false, "x": 203.906, - "y": 351.63075476702494 + "y": 351.63075 }, { "body": null, "index": 20, "isInternal": false, "x": 207.064, - "y": 356.544754767025 + "y": 356.54475 }, { "body": null, "index": 21, "isInternal": false, - "x": 208.70999999999998, - "y": 362.14875476702497 + "x": 208.71, + "y": 362.14875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 846.9227020000002, + "area": 846.9227, "axes": { "#": 2303 }, "bounds": { "#": 2313 }, - "circleRadius": 16.587255658436213, + "circleRadius": 16.58726, "collisionFilter": { "#": 2316 }, @@ -20911,13 +20911,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 456.671614806992, - "inverseInertia": 0.002189757295124727, - "inverseMass": 1.180745300177347, + "inertia": 456.67161, + "inverseInertia": 0.00219, + "inverseMass": 1.18075, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8469227020000002, + "mass": 0.84692, "motion": 0, "parent": null, "position": { @@ -20939,7 +20939,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20981,36 +20981,36 @@ } ], { - "x": -0.9397224538209651, - "y": -0.34193816661014065 + "x": -0.93972, + "y": -0.34194 }, { - "x": -0.7660398849238614, - "y": -0.6427930418928298 + "x": -0.76604, + "y": -0.64279 }, { - "x": -0.49994785700763544, - "y": -0.8660555064621855 + "x": -0.49995, + "y": -0.86606 }, { - "x": -0.17359717004583367, - "y": -0.9848167456700144 + "x": -0.1736, + "y": -0.98482 }, { - "x": 0.17359717004583367, - "y": -0.9848167456700144 + "x": 0.1736, + "y": -0.98482 }, { - "x": 0.49994785700763544, - "y": -0.8660555064621855 + "x": 0.49995, + "y": -0.86606 }, { - "x": 0.7660398849238614, - "y": -0.6427930418928298 + "x": 0.76604, + "y": -0.64279 }, { - "x": 0.9397224538209651, - "y": -0.34193816661014065 + "x": 0.93972, + "y": -0.34194 }, { "x": 1, @@ -21026,11 +21026,11 @@ }, { "x": 251.38, - "y": 377.72175476702495 + "y": 377.72175 }, { - "x": 218.70999999999998, - "y": 344.54775476702497 + "x": 218.71, + "y": 344.54775 }, { "category": 1, @@ -21048,7 +21048,7 @@ }, { "x": 235.045, - "y": 361.13475476702496 + "y": 361.13475 }, { "x": 0, @@ -21056,7 +21056,7 @@ }, { "x": 235.045, - "y": 358.2274840519894 + "y": 358.22748 }, { "endCol": 5, @@ -21080,7 +21080,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -21143,140 +21143,140 @@ "index": 0, "isInternal": false, "x": 251.38, - "y": 364.01475476702495 + "y": 364.01475 }, { "body": null, "index": 1, "isInternal": false, "x": 249.41, - "y": 369.42875476702494 + "y": 369.42875 }, { "body": null, "index": 2, "isInternal": false, "x": 245.707, - "y": 373.84175476702495 + "y": 373.84175 }, { "body": null, "index": 3, "isInternal": false, "x": 240.718, - "y": 376.72175476702495 + "y": 376.72175 }, { "body": null, "index": 4, "isInternal": false, "x": 235.045, - "y": 377.72175476702495 + "y": 377.72175 }, { "body": null, "index": 5, "isInternal": false, - "x": 229.37199999999999, - "y": 376.72175476702495 + "x": 229.372, + "y": 376.72175 }, { "body": null, "index": 6, "isInternal": false, - "x": 224.38299999999998, - "y": 373.84175476702495 + "x": 224.383, + "y": 373.84175 }, { "body": null, "index": 7, "isInternal": false, - "x": 220.67999999999998, - "y": 369.42875476702494 + "x": 220.68, + "y": 369.42875 }, { "body": null, "index": 8, "isInternal": false, - "x": 218.70999999999998, - "y": 364.01475476702495 + "x": 218.71, + "y": 364.01475 }, { "body": null, "index": 9, "isInternal": false, - "x": 218.70999999999998, - "y": 358.25475476702496 + "x": 218.71, + "y": 358.25475 }, { "body": null, "index": 10, "isInternal": false, - "x": 220.67999999999998, - "y": 352.840754767025 + "x": 220.68, + "y": 352.84075 }, { "body": null, "index": 11, "isInternal": false, - "x": 224.38299999999998, - "y": 348.42775476702496 + "x": 224.383, + "y": 348.42775 }, { "body": null, "index": 12, "isInternal": false, - "x": 229.37199999999999, - "y": 345.54775476702497 + "x": 229.372, + "y": 345.54775 }, { "body": null, "index": 13, "isInternal": false, "x": 235.045, - "y": 344.54775476702497 + "y": 344.54775 }, { "body": null, "index": 14, "isInternal": false, "x": 240.718, - "y": 345.54775476702497 + "y": 345.54775 }, { "body": null, "index": 15, "isInternal": false, "x": 245.707, - "y": 348.42775476702496 + "y": 348.42775 }, { "body": null, "index": 16, "isInternal": false, "x": 249.41, - "y": 352.840754767025 + "y": 352.84075 }, { "body": null, "index": 17, "isInternal": false, "x": 251.38, - "y": 358.25475476702496 + "y": 358.25475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 898.1826519999998, + "area": 898.18265, "axes": { "#": 2346 }, "bounds": { "#": 2356 }, - "circleRadius": 17.081983024691358, + "circleRadius": 17.08198, "collisionFilter": { "#": 2359 }, @@ -21291,13 +21291,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 513.6245747933785, - "inverseInertia": 0.0019469473406763707, - "inverseMass": 1.113359290310586, + "inertia": 513.62457, + "inverseInertia": 0.00195, + "inverseMass": 1.11336, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8981826519999999, + "mass": 0.89818, "motion": 0, "parent": null, "position": { @@ -21319,7 +21319,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21361,36 +21361,36 @@ } ], { - "x": -0.9396998827734749, - "y": -0.3420001905197095 + "x": -0.9397, + "y": -0.342 }, { - "x": -0.7661031888474107, - "y": -0.6427175927558143 + "x": -0.7661, + "y": -0.64272 }, { - "x": -0.4999461844763897, - "y": -0.8660564719621346 + "x": -0.49995, + "y": -0.86606 }, { - "x": -0.17363146536903049, - "y": -0.9848106996950241 + "x": -0.17363, + "y": -0.98481 }, { - "x": 0.17363146536903049, - "y": -0.9848106996950241 + "x": 0.17363, + "y": -0.98481 }, { - "x": 0.4999461844763897, - "y": -0.8660564719621346 + "x": 0.49995, + "y": -0.86606 }, { - "x": 0.7661031888474107, - "y": -0.6427175927558143 + "x": 0.7661, + "y": -0.64272 }, { - "x": 0.9396998827734749, - "y": -0.3420001905197095 + "x": 0.9397, + "y": -0.342 }, { "x": 1, @@ -21406,11 +21406,11 @@ }, { "x": 295.024, - "y": 378.71175476702496 + "y": 378.71175 }, { "x": 261.38, - "y": 344.54775476702497 + "y": 344.54775 }, { "category": 1, @@ -21428,7 +21428,7 @@ }, { "x": 278.202, - "y": 361.62975476702496 + "y": 361.62975 }, { "x": 0, @@ -21436,7 +21436,7 @@ }, { "x": 278.202, - "y": 358.7224840519894 + "y": 358.72248 }, { "endCol": 6, @@ -21460,7 +21460,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -21523,126 +21523,126 @@ "index": 0, "isInternal": false, "x": 295.024, - "y": 364.59575476702497 + "y": 364.59575 }, { "body": null, "index": 1, "isInternal": false, "x": 292.995, - "y": 370.17075476702496 + "y": 370.17075 }, { "body": null, "index": 2, "isInternal": false, "x": 289.182, - "y": 374.715754767025 + "y": 374.71575 }, { "body": null, "index": 3, "isInternal": false, "x": 284.044, - "y": 377.681754767025 + "y": 377.68175 }, { "body": null, "index": 4, "isInternal": false, "x": 278.202, - "y": 378.71175476702496 + "y": 378.71175 }, { "body": null, "index": 5, "isInternal": false, "x": 272.36, - "y": 377.681754767025 + "y": 377.68175 }, { "body": null, "index": 6, "isInternal": false, "x": 267.222, - "y": 374.715754767025 + "y": 374.71575 }, { "body": null, "index": 7, "isInternal": false, "x": 263.409, - "y": 370.17075476702496 + "y": 370.17075 }, { "body": null, "index": 8, "isInternal": false, "x": 261.38, - "y": 364.59575476702497 + "y": 364.59575 }, { "body": null, "index": 9, "isInternal": false, "x": 261.38, - "y": 358.66375476702495 + "y": 358.66375 }, { "body": null, "index": 10, "isInternal": false, "x": 263.409, - "y": 353.08875476702497 + "y": 353.08875 }, { "body": null, "index": 11, "isInternal": false, "x": 267.222, - "y": 348.54375476702495 + "y": 348.54375 }, { "body": null, "index": 12, "isInternal": false, "x": 272.36, - "y": 345.57775476702494 + "y": 345.57775 }, { "body": null, "index": 13, "isInternal": false, "x": 278.202, - "y": 344.54775476702497 + "y": 344.54775 }, { "body": null, "index": 14, "isInternal": false, "x": 284.044, - "y": 345.57775476702494 + "y": 345.57775 }, { "body": null, "index": 15, "isInternal": false, "x": 289.182, - "y": 348.54375476702495 + "y": 348.54375 }, { "body": null, "index": 16, "isInternal": false, "x": 292.995, - "y": 353.08875476702497 + "y": 353.08875 }, { "body": null, "index": 17, "isInternal": false, "x": 295.024, - "y": 358.66375476702495 + "y": 358.66375 }, { "angle": 0, @@ -21656,7 +21656,7 @@ "bounds": { "#": 2403 }, - "circleRadius": 24.41313014403292, + "circleRadius": 24.41313, "collisionFilter": { "#": 2406 }, @@ -21671,13 +21671,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 2188.839254784345, - "inverseInertia": 0.00045686315146907617, - "inverseMass": 0.5393085062914139, + "inertia": 2188.83925, + "inverseInertia": 0.00046, + "inverseMass": 0.53931, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.85422627, + "mass": 1.85423, "motion": 0, "parent": null, "position": { @@ -21699,7 +21699,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21753,52 +21753,52 @@ } ], { - "x": -0.9709566027946952, - "y": -0.2392556697120981 + "x": -0.97096, + "y": -0.23926 }, { - "x": -0.8854520946598297, - "y": -0.46473066184890355 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7484676895553821, - "y": -0.6631712581917494 + "x": -0.74847, + "y": -0.66317 }, { - "x": -0.5681140193004913, - "y": -0.8229498533168597 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.35460301319631593, - "y": -0.9350169533393997 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.120478534099192, - "y": -0.9927159325916501 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.120478534099192, - "y": -0.9927159325916501 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.35460301319631593, - "y": -0.9350169533393997 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5681140193004913, - "y": -0.8229498533168597 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484676895553821, - "y": -0.6631712581917494 + "x": 0.74847, + "y": -0.66317 }, { - "x": 0.8854520946598297, - "y": -0.46473066184890355 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709566027946952, - "y": -0.2392556697120981 + "x": 0.97096, + "y": -0.23926 }, { "x": 1, @@ -21814,11 +21814,11 @@ }, { "x": 353.494, - "y": 393.373754767025 + "y": 393.37375 }, { "x": 305.024, - "y": 344.54775476702497 + "y": 344.54775 }, { "category": 1, @@ -21836,7 +21836,7 @@ }, { "x": 329.259, - "y": 368.960754767025 + "y": 368.96075 }, { "x": 0, @@ -21844,7 +21844,7 @@ }, { "x": 329.259, - "y": 366.0534840519894 + "y": 366.05348 }, { "endCol": 7, @@ -21868,7 +21868,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -21955,196 +21955,196 @@ "index": 0, "isInternal": false, "x": 353.494, - "y": 371.90375476702496 + "y": 371.90375 }, { "body": null, "index": 1, "isInternal": false, "x": 352.086, - "y": 377.61775476702496 + "y": 377.61775 }, { "body": null, "index": 2, "isInternal": false, "x": 349.351, - "y": 382.828754767025 + "y": 382.82875 }, { "body": null, "index": 3, "isInternal": false, - "x": 345.44800000000004, - "y": 387.233754767025 + "x": 345.448, + "y": 387.23375 }, { "body": null, "index": 4, "isInternal": false, - "x": 340.60400000000004, - "y": 390.577754767025 + "x": 340.604, + "y": 390.57775 }, { "body": null, "index": 5, "isInternal": false, "x": 335.101, - "y": 392.664754767025 + "y": 392.66475 }, { "body": null, "index": 6, "isInternal": false, "x": 329.259, - "y": 393.373754767025 + "y": 393.37375 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.41700000000003, - "y": 392.664754767025 + "x": 323.417, + "y": 392.66475 }, { "body": null, "index": 8, "isInternal": false, "x": 317.914, - "y": 390.577754767025 + "y": 390.57775 }, { "body": null, "index": 9, "isInternal": false, "x": 313.07, - "y": 387.233754767025 + "y": 387.23375 }, { "body": null, "index": 10, "isInternal": false, - "x": 309.16700000000003, - "y": 382.828754767025 + "x": 309.167, + "y": 382.82875 }, { "body": null, "index": 11, "isInternal": false, "x": 306.432, - "y": 377.61775476702496 + "y": 377.61775 }, { "body": null, "index": 12, "isInternal": false, "x": 305.024, - "y": 371.90375476702496 + "y": 371.90375 }, { "body": null, "index": 13, "isInternal": false, "x": 305.024, - "y": 366.017754767025 + "y": 366.01775 }, { "body": null, "index": 14, "isInternal": false, "x": 306.432, - "y": 360.303754767025 + "y": 360.30375 }, { "body": null, "index": 15, "isInternal": false, - "x": 309.16700000000003, - "y": 355.092754767025 + "x": 309.167, + "y": 355.09275 }, { "body": null, "index": 16, "isInternal": false, "x": 313.07, - "y": 350.68775476702496 + "y": 350.68775 }, { "body": null, "index": 17, "isInternal": false, "x": 317.914, - "y": 347.34375476702496 + "y": 347.34375 }, { "body": null, "index": 18, "isInternal": false, - "x": 323.41700000000003, - "y": 345.256754767025 + "x": 323.417, + "y": 345.25675 }, { "body": null, "index": 19, "isInternal": false, "x": 329.259, - "y": 344.54775476702497 + "y": 344.54775 }, { "body": null, "index": 20, "isInternal": false, "x": 335.101, - "y": 345.256754767025 + "y": 345.25675 }, { "body": null, "index": 21, "isInternal": false, - "x": 340.60400000000004, - "y": 347.34375476702496 + "x": 340.604, + "y": 347.34375 }, { "body": null, "index": 22, "isInternal": false, - "x": 345.44800000000004, - "y": 350.68775476702496 + "x": 345.448, + "y": 350.68775 }, { "body": null, "index": 23, "isInternal": false, "x": 349.351, - "y": 355.092754767025 + "y": 355.09275 }, { "body": null, "index": 24, "isInternal": false, "x": 352.086, - "y": 360.303754767025 + "y": 360.30375 }, { "body": null, "index": 25, "isInternal": false, "x": 353.494, - "y": 366.017754767025 + "y": 366.01775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 729.1471280000001, + "area": 729.14713, "axes": { "#": 2444 }, "bounds": { "#": 2453 }, - "circleRadius": 15.432548868312757, + "circleRadius": 15.43255, "collisionFilter": { "#": 2456 }, @@ -22159,13 +22159,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 338.50797726007636, - "inverseInertia": 0.0029541401301503094, - "inverseMass": 1.3714653210565755, + "inertia": 338.50798, + "inverseInertia": 0.00295, + "inverseMass": 1.37147, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.729147128, + "mass": 0.72915, "motion": 0, "parent": null, "position": { @@ -22187,7 +22187,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22226,32 +22226,32 @@ } ], { - "x": -0.9238953882746169, - "y": -0.3826451509230121 + "x": -0.9239, + "y": -0.38265 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826451509230121, - "y": -0.9238953882746169 + "x": -0.38265, + "y": -0.9239 }, { "x": 0, "y": -1 }, { - "x": 0.3826451509230121, - "y": -0.9238953882746169 + "x": 0.38265, + "y": -0.9239 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238953882746169, - "y": -0.3826451509230121 + "x": 0.9239, + "y": -0.38265 }, { "x": 1, @@ -22266,12 +22266,12 @@ } }, { - "x": 393.7660000000001, - "y": 374.819754767025 + "x": 393.766, + "y": 374.81975 }, { "x": 363.494, - "y": 344.54775476702497 + "y": 344.54775 }, { "category": 1, @@ -22288,16 +22288,16 @@ "y": 0 }, { - "x": 378.63000000000005, - "y": 359.683754767025 + "x": 378.63, + "y": 359.68375 }, { "x": 0, "y": 0 }, { - "x": 378.63000000000005, - "y": 356.7764840519894 + "x": 378.63, + "y": 356.77648 }, { "endCol": 8, @@ -22321,7 +22321,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -22377,127 +22377,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 393.7660000000001, - "y": 362.694754767025 + "x": 393.766, + "y": 362.69475 }, { "body": null, "index": 1, "isInternal": false, - "x": 391.46200000000005, - "y": 368.257754767025 + "x": 391.462, + "y": 368.25775 }, { "body": null, "index": 2, "isInternal": false, - "x": 387.20400000000006, - "y": 372.515754767025 + "x": 387.204, + "y": 372.51575 }, { "body": null, "index": 3, "isInternal": false, - "x": 381.6410000000001, - "y": 374.819754767025 + "x": 381.641, + "y": 374.81975 }, { "body": null, "index": 4, "isInternal": false, "x": 375.619, - "y": 374.819754767025 + "y": 374.81975 }, { "body": null, "index": 5, "isInternal": false, - "x": 370.05600000000004, - "y": 372.515754767025 + "x": 370.056, + "y": 372.51575 }, { "body": null, "index": 6, "isInternal": false, - "x": 365.79800000000006, - "y": 368.257754767025 + "x": 365.798, + "y": 368.25775 }, { "body": null, "index": 7, "isInternal": false, "x": 363.494, - "y": 362.694754767025 + "y": 362.69475 }, { "body": null, "index": 8, "isInternal": false, "x": 363.494, - "y": 356.67275476702497 + "y": 356.67275 }, { "body": null, "index": 9, "isInternal": false, - "x": 365.79800000000006, - "y": 351.109754767025 + "x": 365.798, + "y": 351.10975 }, { "body": null, "index": 10, "isInternal": false, - "x": 370.05600000000004, - "y": 346.851754767025 + "x": 370.056, + "y": 346.85175 }, { "body": null, "index": 11, "isInternal": false, "x": 375.619, - "y": 344.54775476702497 + "y": 344.54775 }, { "body": null, "index": 12, "isInternal": false, - "x": 381.6410000000001, - "y": 344.54775476702497 + "x": 381.641, + "y": 344.54775 }, { "body": null, "index": 13, "isInternal": false, - "x": 387.20400000000006, - "y": 346.851754767025 + "x": 387.204, + "y": 346.85175 }, { "body": null, "index": 14, "isInternal": false, - "x": 391.46200000000005, - "y": 351.109754767025 + "x": 391.462, + "y": 351.10975 }, { "body": null, "index": 15, "isInternal": false, - "x": 393.7660000000001, - "y": 356.67275476702497 + "x": 393.766, + "y": 356.67275 }, { - "angle": -0.0001856931632692789, + "angle": -0.00019, "anglePrev": 0, - "angularSpeed": 0.0001856931632692789, - "angularVelocity": -0.0001856931632692789, - "area": 2457.1139139999996, + "angularSpeed": 0.00019, + "angularVelocity": -0.00019, + "area": 2457.11391, "axes": { "#": 2484 }, "bounds": { "#": 2498 }, - "circleRadius": 28.10320216049383, + "circleRadius": 28.1032, "collisionFilter": { "#": 2501 }, @@ -22512,13 +22512,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 3843.6071437918877, - "inverseInertia": 0.0002601722711477365, - "inverseMass": 0.4069815380973013, + "inertia": 3843.60714, + "inverseInertia": 0.00026, + "inverseMass": 0.40698, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.457113914, + "mass": 2.45711, "motion": 0, "parent": null, "position": { @@ -22540,7 +22540,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.706740283153162, + "speed": 1.70674, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22594,56 +22594,56 @@ } ], { - "x": -0.9710060383403275, - "y": -0.23905495917596523 + "x": -0.97101, + "y": -0.23905 }, { - "x": -0.8854811674613472, - "y": -0.4646752651812767 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7487363997659082, - "y": -0.6628678628999793 + "x": -0.74874, + "y": -0.66287 }, { - "x": -0.568134099635971, - "y": -0.8229359907251746 + "x": -0.56813, + "y": -0.82294 }, { - "x": -0.35488569391720237, - "y": -0.9349096984484146 + "x": -0.35489, + "y": -0.93491 }, { - "x": -0.12062149347874421, - "y": -0.9926985722317512 + "x": -0.12062, + "y": -0.9927 }, { - "x": 0.12025281049258935, - "y": -0.9927433009437201 + "x": 0.12025, + "y": -0.99274 }, { - "x": 0.3545384567723302, - "y": -0.93504143366457 + "x": 0.35454, + "y": -0.93504 }, { - "x": 0.5678284332876811, - "y": -0.8231469312036931 + "x": 0.56783, + "y": -0.82315 }, { - "x": 0.7484901680752016, - "y": -0.6631458876406882 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8853085323593097, - "y": -0.46500408872590054 + "x": 0.88531, + "y": -0.465 }, { - "x": 0.970917189634875, - "y": -0.23941556104713876 + "x": 0.97092, + "y": -0.23942 }, { - "x": 0.9999999827590246, - "y": -0.0001856931622021018 + "x": 1, + "y": -0.00019 }, { "max": { @@ -22654,12 +22654,12 @@ } }, { - "x": 460.58141457712463, - "y": 399.01707878517664 + "x": 460.58141, + "y": 399.01708 }, { - "x": 404.78415765362126, - "y": 342.8110797542229 + "x": 404.78416, + "y": 342.81108 }, { "category": 1, @@ -22676,16 +22676,16 @@ "y": 0 }, { - "x": 432.68278611537295, - "y": 370.91407926969976 + "x": 432.68279, + "y": 370.91408 }, { "x": 0, "y": 0 }, { - "x": 431.88035747782425, - "y": 369.40773579101386 + "x": 431.88036, + "y": 369.40774 }, { "endCol": 9, @@ -22708,8 +22708,8 @@ "yScale": 1 }, { - "x": 0.8024286375487191, - "y": 1.5063434786858678 + "x": 0.80243, + "y": 1.50634 }, [ { @@ -22795,197 +22795,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 460.58141457712463, - "y": 374.29589874346544 + "x": 460.58141, + "y": 374.2959 }, { "body": null, "index": 1, "isInternal": false, - "x": 458.9616362803863, - "y": 380.87519963865304 + "x": 458.96164, + "y": 380.8752 }, { "body": null, "index": 2, "isInternal": false, - "x": 455.81375012226505, - "y": 386.8737842830094 + "x": 455.81375, + "y": 386.87378 }, { "body": null, "index": 3, "isInternal": false, - "x": 451.32269203543024, - "y": 391.9466183292478 + "x": 451.32269, + "y": 391.94662 }, { "body": null, "index": 4, "isInternal": false, - "x": 445.7474066788541, - "y": 395.795653687977 + "x": 445.74741, + "y": 395.79565 }, { "body": null, "index": 5, "isInternal": false, - "x": 439.41385300872713, - "y": 398.1998298270363 + "x": 439.41385, + "y": 398.19983 }, { "body": null, "index": 6, "isInternal": false, - "x": 432.6880046503103, - "y": 399.01707878517664 + "x": 432.688, + "y": 399.01708 }, { "body": null, "index": 7, "isInternal": false, - "x": 425.9618532406528, - "y": 398.2023277714542 + "x": 425.96185, + "y": 398.20233 }, { "body": null, "index": 8, "isInternal": false, - "x": 419.6274071291883, - "y": 395.8005039933737 + "x": 419.62741, + "y": 395.8005 }, { "body": null, "index": 9, "isInternal": false, - "x": 414.05069267803583, - "y": 391.9535394847894 + "x": 414.05069, + "y": 391.95354 }, { "body": null, "index": 10, "isInternal": false, - "x": 409.55775091976363, - "y": 386.88237370592026 + "x": 409.55775, + "y": 386.88237 }, { "body": null, "index": 11, "isInternal": false, - "x": 406.4076371864686, - "y": 380.88495855709937 + "x": 406.40764, + "y": 380.88496 }, { "body": null, "index": 12, "isInternal": false, - "x": 404.785415539102, - "y": 374.3062596791437 + "x": 404.78542, + "y": 374.30626 }, { "body": null, "index": 13, "isInternal": false, - "x": 404.78415765362126, - "y": 367.53225979593407 + "x": 404.78416, + "y": 367.53226 }, { "body": null, "index": 14, "isInternal": false, - "x": 406.4039359503596, - "y": 360.95295890074647 + "x": 406.40394, + "y": 360.95296 }, { "body": null, "index": 15, "isInternal": false, - "x": 409.55182210848085, - "y": 354.9543742563901 + "x": 409.55182, + "y": 354.95437 }, { "body": null, "index": 16, "isInternal": false, - "x": 414.04288019531566, - "y": 349.8815402101517 + "x": 414.04288, + "y": 349.88154 }, { "body": null, "index": 17, "isInternal": false, - "x": 419.6181655518918, - "y": 346.0325048514225 + "x": 419.61817, + "y": 346.0325 }, { "body": null, "index": 18, "isInternal": false, - "x": 425.95171922201877, - "y": 343.6283287123632 + "x": 425.95172, + "y": 343.62833 }, { "body": null, "index": 19, "isInternal": false, - "x": 432.6775675804356, - "y": 342.8110797542229 + "x": 432.67757, + "y": 342.81108 }, { "body": null, "index": 20, "isInternal": false, - "x": 439.4037189900931, - "y": 343.62583076794533 + "x": 439.40372, + "y": 343.62583 }, { "body": null, "index": 21, "isInternal": false, - "x": 445.73816510155757, - "y": 346.0276545460258 + "x": 445.73817, + "y": 346.02765 }, { "body": null, "index": 22, "isInternal": false, - "x": 451.31487955271007, - "y": 349.8746190546101 + "x": 451.31488, + "y": 349.87462 }, { "body": null, "index": 23, "isInternal": false, - "x": 455.80782131098226, - "y": 354.94578483347925 + "x": 455.80782, + "y": 354.94578 }, { "body": null, "index": 24, "isInternal": false, - "x": 458.9579350442773, - "y": 360.94319998230014 + "x": 458.95794, + "y": 360.9432 }, { "body": null, "index": 25, "isInternal": false, - "x": 460.5801566916439, - "y": 367.5218988602558 + "x": 460.58016, + "y": 367.5219 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1019.7387239999998, + "area": 1019.73872, "axes": { "#": 2539 }, "bounds": { "#": 2550 }, - "circleRadius": 18.165830761316872, + "circleRadius": 18.16583, "collisionFilter": { "#": 2553 }, @@ -23000,13 +23000,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 662.0361846508167, - "inverseInertia": 0.0015104914552781406, - "inverseMass": 0.9806433515414879, + "inertia": 662.03618, + "inverseInertia": 0.00151, + "inverseMass": 0.98064, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0197387239999998, + "mass": 1.01974, "motion": 0, "parent": null, "position": { @@ -23028,7 +23028,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23073,40 +23073,40 @@ } ], { - "x": -0.9510663909208378, - "y": -0.3089866017496747 + "x": -0.95107, + "y": -0.30899 }, { - "x": -0.808987086398412, - "y": -0.5878264148884501 + "x": -0.80899, + "y": -0.58783 }, { - "x": -0.5878264148884501, - "y": -0.808987086398412 + "x": -0.58783, + "y": -0.80899 }, { - "x": -0.3089866017496747, - "y": -0.9510663909208378 + "x": -0.30899, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089866017496747, - "y": -0.9510663909208378 + "x": 0.30899, + "y": -0.95107 }, { - "x": 0.5878264148884501, - "y": -0.808987086398412 + "x": 0.58783, + "y": -0.80899 }, { - "x": 0.808987086398412, - "y": -0.5878264148884501 + "x": 0.80899, + "y": -0.58783 }, { - "x": 0.9510663909208378, - "y": -0.3089866017496747 + "x": 0.95107, + "y": -0.30899 }, { "x": 1, @@ -23121,12 +23121,12 @@ } }, { - "x": 505.44600000000014, - "y": 380.431754767025 + "x": 505.446, + "y": 380.43175 }, { - "x": 469.5620000000001, - "y": 344.54775476702497 + "x": 469.562, + "y": 344.54775 }, { "category": 1, @@ -23143,16 +23143,16 @@ "y": 0 }, { - "x": 487.50400000000013, - "y": 362.489754767025 + "x": 487.504, + "y": 362.48975 }, { "x": 0, "y": 0 }, { - "x": 487.50400000000013, - "y": 359.5824840519894 + "x": 487.504, + "y": 359.58248 }, { "endCol": 10, @@ -23176,7 +23176,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -23244,155 +23244,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.44600000000014, - "y": 365.33175476702496 + "x": 505.446, + "y": 365.33175 }, { "body": null, "index": 1, "isInternal": false, - "x": 503.6900000000001, - "y": 370.736754767025 + "x": 503.69, + "y": 370.73675 }, { "body": null, "index": 2, "isInternal": false, - "x": 500.34900000000016, - "y": 375.334754767025 + "x": 500.349, + "y": 375.33475 }, { "body": null, "index": 3, "isInternal": false, - "x": 495.75100000000015, - "y": 378.67575476702496 + "x": 495.751, + "y": 378.67575 }, { "body": null, "index": 4, "isInternal": false, - "x": 490.3460000000001, - "y": 380.431754767025 + "x": 490.346, + "y": 380.43175 }, { "body": null, "index": 5, "isInternal": false, - "x": 484.66200000000015, - "y": 380.431754767025 + "x": 484.662, + "y": 380.43175 }, { "body": null, "index": 6, "isInternal": false, - "x": 479.2570000000001, - "y": 378.67575476702496 + "x": 479.257, + "y": 378.67575 }, { "body": null, "index": 7, "isInternal": false, - "x": 474.6590000000001, - "y": 375.334754767025 + "x": 474.659, + "y": 375.33475 }, { "body": null, "index": 8, "isInternal": false, - "x": 471.31800000000015, - "y": 370.736754767025 + "x": 471.318, + "y": 370.73675 }, { "body": null, "index": 9, "isInternal": false, - "x": 469.5620000000001, - "y": 365.33175476702496 + "x": 469.562, + "y": 365.33175 }, { "body": null, "index": 10, "isInternal": false, - "x": 469.5620000000001, - "y": 359.647754767025 + "x": 469.562, + "y": 359.64775 }, { "body": null, "index": 11, "isInternal": false, - "x": 471.31800000000015, - "y": 354.24275476702496 + "x": 471.318, + "y": 354.24275 }, { "body": null, "index": 12, "isInternal": false, - "x": 474.6590000000001, - "y": 349.64475476702495 + "x": 474.659, + "y": 349.64475 }, { "body": null, "index": 13, "isInternal": false, - "x": 479.2570000000001, - "y": 346.303754767025 + "x": 479.257, + "y": 346.30375 }, { "body": null, "index": 14, "isInternal": false, - "x": 484.66200000000015, - "y": 344.54775476702497 + "x": 484.662, + "y": 344.54775 }, { "body": null, "index": 15, "isInternal": false, - "x": 490.3460000000001, - "y": 344.54775476702497 + "x": 490.346, + "y": 344.54775 }, { "body": null, "index": 16, "isInternal": false, - "x": 495.75100000000015, - "y": 346.303754767025 + "x": 495.751, + "y": 346.30375 }, { "body": null, "index": 17, "isInternal": false, - "x": 500.34900000000016, - "y": 349.64475476702495 + "x": 500.349, + "y": 349.64475 }, { "body": null, "index": 18, "isInternal": false, - "x": 503.6900000000001, - "y": 354.24275476702496 + "x": 503.69, + "y": 354.24275 }, { "body": null, "index": 19, "isInternal": false, - "x": 505.44600000000014, - "y": 359.647754767025 + "x": 505.446, + "y": 359.64775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2071.7926880000005, + "area": 2071.79269, "axes": { "#": 2585 }, "bounds": { "#": 2599 }, - "circleRadius": 25.80561985596708, + "circleRadius": 25.80562, "collisionFilter": { "#": 2602 }, @@ -23407,13 +23407,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 2732.6310663398754, - "inverseInertia": 0.00036594768035752963, - "inverseMass": 0.48267377609356626, + "inertia": 2732.63107, + "inverseInertia": 0.00037, + "inverseMass": 0.48267, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.0717926880000004, + "mass": 2.07179, "motion": 0, "parent": null, "position": { @@ -23435,7 +23435,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23489,52 +23489,52 @@ } ], { - "x": -0.9709689408513394, - "y": -0.23920559337529684 + "x": -0.97097, + "y": -0.23921 }, { - "x": -0.8854442113024813, - "y": -0.46474568171304914 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.7484901643729688, - "y": -0.663145891819384 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680559468352687, - "y": -0.8229899399537556 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.3546445414924918, - "y": -0.935001202774403 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12055217685565543, - "y": -0.9927069923473707 + "x": -0.12055, + "y": -0.99271 }, { - "x": 0.12055217685565543, - "y": -0.9927069923473707 + "x": 0.12055, + "y": -0.99271 }, { - "x": 0.3546445414924918, - "y": -0.935001202774403 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680559468352687, - "y": -0.8229899399537556 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7484901643729688, - "y": -0.663145891819384 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854442113024813, - "y": -0.46474568171304914 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.9709689408513394, - "y": -0.23920559337529684 + "x": 0.97097, + "y": -0.23921 }, { "x": 1, @@ -23549,12 +23549,12 @@ } }, { - "x": 566.6800000000001, - "y": 396.15975476702494 + "x": 566.68, + "y": 396.15975 }, { - "x": 515.4460000000001, - "y": 344.54775476702497 + "x": 515.446, + "y": 344.54775 }, { "category": 1, @@ -23571,16 +23571,16 @@ "y": 0 }, { - "x": 541.0630000000001, - "y": 370.35375476702495 + "x": 541.063, + "y": 370.35375 }, { "x": 0, "y": 0 }, { - "x": 541.0630000000001, - "y": 367.4464840519894 + "x": 541.063, + "y": 367.44648 }, { "endCol": 11, @@ -23604,7 +23604,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -23690,183 +23690,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 566.6800000000001, - "y": 373.46475476702494 + "x": 566.68, + "y": 373.46475 }, { "body": null, "index": 1, "isInternal": false, - "x": 565.1920000000001, - "y": 379.50475476702496 + "x": 565.192, + "y": 379.50475 }, { "body": null, "index": 2, "isInternal": false, - "x": 562.3010000000002, - "y": 385.01275476702494 + "x": 562.301, + "y": 385.01275 }, { "body": null, "index": 3, "isInternal": false, - "x": 558.1750000000001, - "y": 389.6697547670249 + "x": 558.175, + "y": 389.66975 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.0550000000001, - "y": 393.203754767025 + "x": 553.055, + "y": 393.20375 }, { "body": null, "index": 5, "isInternal": false, - "x": 547.2390000000001, - "y": 395.40975476702494 + "x": 547.239, + "y": 395.40975 }, { "body": null, "index": 6, "isInternal": false, - "x": 541.0630000000001, - "y": 396.15975476702494 + "x": 541.063, + "y": 396.15975 }, { "body": null, "index": 7, "isInternal": false, - "x": 534.8870000000002, - "y": 395.40975476702494 + "x": 534.887, + "y": 395.40975 }, { "body": null, "index": 8, "isInternal": false, - "x": 529.0710000000001, - "y": 393.203754767025 + "x": 529.071, + "y": 393.20375 }, { "body": null, "index": 9, "isInternal": false, "x": 523.951, - "y": 389.6697547670249 + "y": 389.66975 }, { "body": null, "index": 10, "isInternal": false, "x": 519.825, - "y": 385.01275476702494 + "y": 385.01275 }, { "body": null, "index": 11, "isInternal": false, - "x": 516.9340000000001, - "y": 379.50475476702496 + "x": 516.934, + "y": 379.50475 }, { "body": null, "index": 12, "isInternal": false, - "x": 515.4460000000001, - "y": 373.46475476702494 + "x": 515.446, + "y": 373.46475 }, { "body": null, "index": 13, "isInternal": false, - "x": 515.4460000000001, - "y": 367.24275476702496 + "x": 515.446, + "y": 367.24275 }, { "body": null, "index": 14, "isInternal": false, - "x": 516.9340000000001, - "y": 361.20275476702494 + "x": 516.934, + "y": 361.20275 }, { "body": null, "index": 15, "isInternal": false, "x": 519.825, - "y": 355.69475476702496 + "y": 355.69475 }, { "body": null, "index": 16, "isInternal": false, "x": 523.951, - "y": 351.037754767025 + "y": 351.03775 }, { "body": null, "index": 17, "isInternal": false, - "x": 529.0710000000001, - "y": 347.50375476702493 + "x": 529.071, + "y": 347.50375 }, { "body": null, "index": 18, "isInternal": false, - "x": 534.8870000000002, - "y": 345.29775476702497 + "x": 534.887, + "y": 345.29775 }, { "body": null, "index": 19, "isInternal": false, - "x": 541.0630000000001, - "y": 344.54775476702497 + "x": 541.063, + "y": 344.54775 }, { "body": null, "index": 20, "isInternal": false, - "x": 547.2390000000001, - "y": 345.29775476702497 + "x": 547.239, + "y": 345.29775 }, { "body": null, "index": 21, "isInternal": false, - "x": 553.0550000000001, - "y": 347.50375476702493 + "x": 553.055, + "y": 347.50375 }, { "body": null, "index": 22, "isInternal": false, - "x": 558.1750000000001, - "y": 351.037754767025 + "x": 558.175, + "y": 351.03775 }, { "body": null, "index": 23, "isInternal": false, - "x": 562.3010000000002, - "y": 355.69475476702496 + "x": 562.301, + "y": 355.69475 }, { "body": null, "index": 24, "isInternal": false, - "x": 565.1920000000001, - "y": 361.20275476702494 + "x": 565.192, + "y": 361.20275 }, { "body": null, "index": 25, "isInternal": false, - "x": 566.6800000000001, - "y": 367.24275476702496 + "x": 566.68, + "y": 367.24275 }, { "angle": 0, @@ -23880,7 +23880,7 @@ "bounds": { "#": 2653 }, - "circleRadius": 22.31886574074074, + "circleRadius": 22.31887, "collisionFilter": { "#": 2656 }, @@ -23895,13 +23895,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1523.8575386219945, - "inverseInertia": 0.0006562293223973467, - "inverseMass": 0.6463586885583873, + "inertia": 1523.85754, + "inverseInertia": 0.00066, + "inverseMass": 0.64636, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.54712858, + "mass": 1.54713, "motion": 0, "parent": null, "position": { @@ -23923,7 +23923,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23974,48 +23974,48 @@ } ], { - "x": -0.9659266009741097, - "y": -0.2588161539212787 + "x": -0.96593, + "y": -0.25882 }, { - "x": -0.8660484012741211, - "y": -0.4999601650637169 + "x": -0.86605, + "y": -0.49996 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999601650637169, - "y": -0.8660484012741211 + "x": -0.49996, + "y": -0.86605 }, { - "x": -0.2588161539212787, - "y": -0.9659266009741097 + "x": -0.25882, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.2588161539212787, - "y": -0.9659266009741097 + "x": 0.25882, + "y": -0.96593 }, { - "x": 0.4999601650637169, - "y": -0.8660484012741211 + "x": 0.49996, + "y": -0.86605 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660484012741211, - "y": -0.4999601650637169 + "x": 0.86605, + "y": -0.49996 }, { - "x": 0.9659266009741097, - "y": -0.2588161539212787 + "x": 0.96593, + "y": -0.25882 }, { "x": 1, @@ -24030,12 +24030,12 @@ } }, { - "x": 620.9360000000001, - "y": 388.80375476702494 + "x": 620.936, + "y": 388.80375 }, { - "x": 576.6800000000001, - "y": 344.54775476702497 + "x": 576.68, + "y": 344.54775 }, { "category": 1, @@ -24052,16 +24052,16 @@ "y": 0 }, { - "x": 598.8080000000001, - "y": 366.67575476702496 + "x": 598.808, + "y": 366.67575 }, { "x": 0, "y": 0 }, { - "x": 598.8080000000001, - "y": 363.7684840519894 + "x": 598.808, + "y": 363.76848 }, { "endCol": 12, @@ -24085,7 +24085,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -24165,169 +24165,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 620.9360000000001, - "y": 369.58875476702497 + "x": 620.936, + "y": 369.58875 }, { "body": null, "index": 1, "isInternal": false, - "x": 619.4280000000001, - "y": 375.21675476702495 + "x": 619.428, + "y": 375.21675 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.5150000000001, - "y": 380.26275476702494 + "x": 616.515, + "y": 380.26275 }, { "body": null, "index": 3, "isInternal": false, - "x": 612.3950000000001, - "y": 384.38275476702495 + "x": 612.395, + "y": 384.38275 }, { "body": null, "index": 4, "isInternal": false, - "x": 607.3490000000002, - "y": 387.29575476702496 + "x": 607.349, + "y": 387.29575 }, { "body": null, "index": 5, "isInternal": false, - "x": 601.7210000000001, - "y": 388.80375476702494 + "x": 601.721, + "y": 388.80375 }, { "body": null, "index": 6, "isInternal": false, - "x": 595.8950000000001, - "y": 388.80375476702494 + "x": 595.895, + "y": 388.80375 }, { "body": null, "index": 7, "isInternal": false, "x": 590.267, - "y": 387.29575476702496 + "y": 387.29575 }, { "body": null, "index": 8, "isInternal": false, - "x": 585.2210000000001, - "y": 384.38275476702495 + "x": 585.221, + "y": 384.38275 }, { "body": null, "index": 9, "isInternal": false, - "x": 581.1010000000001, - "y": 380.26275476702494 + "x": 581.101, + "y": 380.26275 }, { "body": null, "index": 10, "isInternal": false, - "x": 578.1880000000001, - "y": 375.21675476702495 + "x": 578.188, + "y": 375.21675 }, { "body": null, "index": 11, "isInternal": false, - "x": 576.6800000000001, - "y": 369.58875476702497 + "x": 576.68, + "y": 369.58875 }, { "body": null, "index": 12, "isInternal": false, - "x": 576.6800000000001, - "y": 363.76275476702494 + "x": 576.68, + "y": 363.76275 }, { "body": null, "index": 13, "isInternal": false, - "x": 578.1880000000001, - "y": 358.13475476702496 + "x": 578.188, + "y": 358.13475 }, { "body": null, "index": 14, "isInternal": false, - "x": 581.1010000000001, - "y": 353.08875476702497 + "x": 581.101, + "y": 353.08875 }, { "body": null, "index": 15, "isInternal": false, - "x": 585.2210000000001, - "y": 348.96875476702496 + "x": 585.221, + "y": 348.96875 }, { "body": null, "index": 16, "isInternal": false, "x": 590.267, - "y": 346.05575476702495 + "y": 346.05575 }, { "body": null, "index": 17, "isInternal": false, - "x": 595.8950000000001, - "y": 344.54775476702497 + "x": 595.895, + "y": 344.54775 }, { "body": null, "index": 18, "isInternal": false, - "x": 601.7210000000001, - "y": 344.54775476702497 + "x": 601.721, + "y": 344.54775 }, { "body": null, "index": 19, "isInternal": false, - "x": 607.3490000000002, - "y": 346.05575476702495 + "x": 607.349, + "y": 346.05575 }, { "body": null, "index": 20, "isInternal": false, - "x": 612.3950000000001, - "y": 348.96875476702496 + "x": 612.395, + "y": 348.96875 }, { "body": null, "index": 21, "isInternal": false, - "x": 616.5150000000001, - "y": 353.08875476702497 + "x": 616.515, + "y": 353.08875 }, { "body": null, "index": 22, "isInternal": false, - "x": 619.4280000000001, - "y": 358.13475476702496 + "x": 619.428, + "y": 358.13475 }, { "body": null, "index": 23, "isInternal": false, - "x": 620.9360000000001, - "y": 363.76275476702494 + "x": 620.936, + "y": 363.76275 }, { "angle": 0, @@ -24341,7 +24341,7 @@ "bounds": { "#": 2704 }, - "circleRadius": 21.779642489711932, + "circleRadius": 21.77964, "collisionFilter": { "#": 2707 }, @@ -24356,13 +24356,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 1375.7995858087013, - "inverseInertia": 0.0007268500516462908, - "inverseMass": 0.6802531774438849, + "inertia": 1375.79959, + "inverseInertia": 0.00073, + "inverseMass": 0.68025, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.47004091, + "mass": 1.47004, "motion": 0, "parent": null, "position": { @@ -24384,7 +24384,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24432,44 +24432,44 @@ } ], { - "x": -0.959470748479457, - "y": -0.28180823765864343 + "x": -0.95947, + "y": -0.28181 }, { - "x": -0.8412885288941503, - "y": -0.5405863586432017 + "x": -0.84129, + "y": -0.54059 }, { - "x": -0.654807695437231, - "y": -0.7557955292247914 + "x": -0.65481, + "y": -0.7558 }, { - "x": -0.4153823096539656, - "y": -0.909646929762607 + "x": -0.41538, + "y": -0.90965 }, { - "x": -0.14243754050093502, - "y": -0.989803792201285 + "x": -0.14244, + "y": -0.9898 }, { - "x": 0.14243754050093502, - "y": -0.989803792201285 + "x": 0.14244, + "y": -0.9898 }, { - "x": 0.4153823096539656, - "y": -0.909646929762607 + "x": 0.41538, + "y": -0.90965 }, { - "x": 0.654807695437231, - "y": -0.7557955292247914 + "x": 0.65481, + "y": -0.7558 }, { - "x": 0.8412885288941503, - "y": -0.5405863586432017 + "x": 0.84129, + "y": -0.54059 }, { - "x": 0.959470748479457, - "y": -0.28180823765864343 + "x": 0.95947, + "y": -0.28181 }, { "x": 1, @@ -24484,12 +24484,12 @@ } }, { - "x": 143.11599999999999, - "y": 456.6177547670249 + "x": 143.116, + "y": 456.61775 }, { "x": 100, - "y": 413.05775476702496 + "y": 413.05775 }, { "category": 1, @@ -24506,16 +24506,16 @@ "y": 0 }, { - "x": 121.55799999999999, - "y": 434.83775476702493 + "x": 121.558, + "y": 434.83775 }, { "x": 0, "y": 0 }, { - "x": 121.55799999999999, - "y": 431.93048405198937 + "x": 121.558, + "y": 431.93048 }, { "endCol": 2, @@ -24539,7 +24539,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -24613,169 +24613,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 143.11599999999999, - "y": 437.93775476702496 + "x": 143.116, + "y": 437.93775 }, { "body": null, "index": 1, "isInternal": false, "x": 141.369, - "y": 443.88575476702493 + "y": 443.88575 }, { "body": null, "index": 2, "isInternal": false, "x": 138.018, - "y": 449.1007547670249 + "y": 449.10075 }, { "body": null, "index": 3, "isInternal": false, "x": 133.333, - "y": 453.15975476702494 + "y": 453.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 127.69399999999999, - "y": 455.7347547670249 + "x": 127.694, + "y": 455.73475 }, { "body": null, "index": 5, "isInternal": false, - "x": 121.55799999999999, - "y": 456.6177547670249 + "x": 121.558, + "y": 456.61775 }, { "body": null, "index": 6, "isInternal": false, "x": 115.422, - "y": 455.7347547670249 + "y": 455.73475 }, { "body": null, "index": 7, "isInternal": false, - "x": 109.78299999999999, - "y": 453.15975476702494 + "x": 109.783, + "y": 453.15975 }, { "body": null, "index": 8, "isInternal": false, - "x": 105.09799999999998, - "y": 449.1007547670249 + "x": 105.098, + "y": 449.10075 }, { "body": null, "index": 9, "isInternal": false, - "x": 101.74699999999999, - "y": 443.88575476702493 + "x": 101.747, + "y": 443.88575 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 437.93775476702496 + "y": 437.93775 }, { "body": null, "index": 11, "isInternal": false, "x": 100, - "y": 431.7377547670249 + "y": 431.73775 }, { "body": null, "index": 12, "isInternal": false, - "x": 101.74699999999999, - "y": 425.78975476702493 + "x": 101.747, + "y": 425.78975 }, { "body": null, "index": 13, "isInternal": false, - "x": 105.09799999999998, - "y": 420.57475476702496 + "x": 105.098, + "y": 420.57475 }, { "body": null, "index": 14, "isInternal": false, - "x": 109.78299999999999, - "y": 416.51575476702493 + "x": 109.783, + "y": 416.51575 }, { "body": null, "index": 15, "isInternal": false, "x": 115.422, - "y": 413.94075476702494 + "y": 413.94075 }, { "body": null, "index": 16, "isInternal": false, - "x": 121.55799999999999, - "y": 413.05775476702496 + "x": 121.558, + "y": 413.05775 }, { "body": null, "index": 17, "isInternal": false, - "x": 127.69399999999999, - "y": 413.94075476702494 + "x": 127.694, + "y": 413.94075 }, { "body": null, "index": 18, "isInternal": false, "x": 133.333, - "y": 416.51575476702493 + "y": 416.51575 }, { "body": null, "index": 19, "isInternal": false, "x": 138.018, - "y": 420.57475476702496 + "y": 420.57475 }, { "body": null, "index": 20, "isInternal": false, "x": 141.369, - "y": 425.78975476702493 + "y": 425.78975 }, { "body": null, "index": 21, "isInternal": false, - "x": 143.11599999999999, - "y": 431.7377547670249 + "x": 143.116, + "y": 431.73775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1601.2929020000001, + "area": 1601.2929, "axes": { "#": 2741 }, "bounds": { "#": 2754 }, - "circleRadius": 22.706468621399175, + "circleRadius": 22.70647, "collisionFilter": { "#": 2757 }, @@ -24790,13 +24790,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1632.4245112896238, - "inverseInertia": 0.0006125857539409249, - "inverseMass": 0.6244953679311319, + "inertia": 1632.42451, + "inverseInertia": 0.00061, + "inverseMass": 0.6245, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6012929020000002, + "mass": 1.60129, "motion": 0, "parent": null, "position": { @@ -24818,7 +24818,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24869,48 +24869,48 @@ } ], { - "x": -0.9659262112525419, - "y": -0.25881760839500406 + "x": -0.96593, + "y": -0.25882 }, { - "x": -0.866033897267781, - "y": -0.499985288566752 + "x": -0.86603, + "y": -0.49999 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.499985288566752, - "y": -0.866033897267781 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.25881760839500406, - "y": -0.9659262112525419 + "x": -0.25882, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.25881760839500406, - "y": -0.9659262112525419 + "x": 0.25882, + "y": -0.96593 }, { - "x": 0.499985288566752, - "y": -0.866033897267781 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.866033897267781, - "y": -0.499985288566752 + "x": 0.86603, + "y": -0.49999 }, { - "x": 0.9659262112525419, - "y": -0.25881760839500406 + "x": 0.96593, + "y": -0.25882 }, { "x": 1, @@ -24926,11 +24926,11 @@ }, { "x": 198.14, - "y": 458.08175476702496 + "y": 458.08175 }, { - "x": 153.11599999999999, - "y": 413.05775476702496 + "x": 153.116, + "y": 413.05775 }, { "category": 1, @@ -24948,7 +24948,7 @@ }, { "x": 175.628, - "y": 435.56975476702496 + "y": 435.56975 }, { "x": 0, @@ -24956,7 +24956,7 @@ }, { "x": 175.628, - "y": 432.6624840519894 + "y": 432.66248 }, { "endCol": 4, @@ -24980,7 +24980,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -25061,182 +25061,182 @@ "index": 0, "isInternal": false, "x": 198.14, - "y": 438.53375476702496 + "y": 438.53375 }, { "body": null, "index": 1, "isInternal": false, "x": 196.606, - "y": 444.258754767025 + "y": 444.25875 }, { "body": null, "index": 2, "isInternal": false, "x": 193.642, - "y": 449.39275476702494 + "y": 449.39275 }, { "body": null, "index": 3, "isInternal": false, "x": 189.451, - "y": 453.58375476702497 + "y": 453.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 184.31699999999998, - "y": 456.54775476702497 + "x": 184.317, + "y": 456.54775 }, { "body": null, "index": 5, "isInternal": false, - "x": 178.59199999999998, - "y": 458.08175476702496 + "x": 178.592, + "y": 458.08175 }, { "body": null, "index": 6, "isInternal": false, "x": 172.664, - "y": 458.08175476702496 + "y": 458.08175 }, { "body": null, "index": 7, "isInternal": false, "x": 166.939, - "y": 456.54775476702497 + "y": 456.54775 }, { "body": null, "index": 8, "isInternal": false, - "x": 161.80499999999998, - "y": 453.58375476702497 + "x": 161.805, + "y": 453.58375 }, { "body": null, "index": 9, "isInternal": false, - "x": 157.61399999999998, - "y": 449.39275476702494 + "x": 157.614, + "y": 449.39275 }, { "body": null, "index": 10, "isInternal": false, - "x": 154.64999999999998, - "y": 444.258754767025 + "x": 154.65, + "y": 444.25875 }, { "body": null, "index": 11, "isInternal": false, - "x": 153.11599999999999, - "y": 438.53375476702496 + "x": 153.116, + "y": 438.53375 }, { "body": null, "index": 12, "isInternal": false, - "x": 153.11599999999999, - "y": 432.60575476702496 + "x": 153.116, + "y": 432.60575 }, { "body": null, "index": 13, "isInternal": false, - "x": 154.64999999999998, - "y": 426.88075476702494 + "x": 154.65, + "y": 426.88075 }, { "body": null, "index": 14, "isInternal": false, - "x": 157.61399999999998, - "y": 421.746754767025 + "x": 157.614, + "y": 421.74675 }, { "body": null, "index": 15, "isInternal": false, - "x": 161.80499999999998, - "y": 417.55575476702495 + "x": 161.805, + "y": 417.55575 }, { "body": null, "index": 16, "isInternal": false, "x": 166.939, - "y": 414.59175476702495 + "y": 414.59175 }, { "body": null, "index": 17, "isInternal": false, "x": 172.664, - "y": 413.05775476702496 + "y": 413.05775 }, { "body": null, "index": 18, "isInternal": false, - "x": 178.59199999999998, - "y": 413.05775476702496 + "x": 178.592, + "y": 413.05775 }, { "body": null, "index": 19, "isInternal": false, - "x": 184.31699999999998, - "y": 414.59175476702495 + "x": 184.317, + "y": 414.59175 }, { "body": null, "index": 20, "isInternal": false, "x": 189.451, - "y": 417.55575476702495 + "y": 417.55575 }, { "body": null, "index": 21, "isInternal": false, "x": 193.642, - "y": 421.746754767025 + "y": 421.74675 }, { "body": null, "index": 22, "isInternal": false, "x": 196.606, - "y": 426.88075476702494 + "y": 426.88075 }, { "body": null, "index": 23, "isInternal": false, "x": 198.14, - "y": 432.60575476702496 + "y": 432.60575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1202.792016, + "area": 1202.79202, "axes": { "#": 2793 }, "bounds": { "#": 2804 }, - "circleRadius": 19.728973765432098, + "circleRadius": 19.72897, "collisionFilter": { "#": 2807 }, @@ -25251,13 +25251,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 921.0537546528394, - "inverseInertia": 0.0010857129618639, - "inverseMass": 0.8313989340614313, + "inertia": 921.05375, + "inverseInertia": 0.00109, + "inverseMass": 0.8314, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.202792016, + "mass": 1.20279, "motion": 0, "parent": null, "position": { @@ -25279,7 +25279,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25324,40 +25324,40 @@ } ], { - "x": -0.951085246419531, - "y": -0.3089285581539849 + "x": -0.95109, + "y": -0.30893 }, { - "x": -0.8089111933674096, - "y": -0.5879308473323315 + "x": -0.80891, + "y": -0.58793 }, { - "x": -0.5879308473323315, - "y": -0.8089111933674096 + "x": -0.58793, + "y": -0.80891 }, { - "x": -0.3089285581539849, - "y": -0.951085246419531 + "x": -0.30893, + "y": -0.95109 }, { "x": 0, "y": -1 }, { - "x": 0.3089285581539849, - "y": -0.951085246419531 + "x": 0.30893, + "y": -0.95109 }, { - "x": 0.5879308473323315, - "y": -0.8089111933674096 + "x": 0.58793, + "y": -0.80891 }, { - "x": 0.8089111933674096, - "y": -0.5879308473323315 + "x": 0.80891, + "y": -0.58793 }, { - "x": 0.951085246419531, - "y": -0.3089285581539849 + "x": 0.95109, + "y": -0.30893 }, { "x": 1, @@ -25372,12 +25372,12 @@ } }, { - "x": 247.11199999999997, - "y": 452.02975476702494 + "x": 247.112, + "y": 452.02975 }, { "x": 208.14, - "y": 413.05775476702496 + "y": 413.05775 }, { "category": 1, @@ -25394,16 +25394,16 @@ "y": 0 }, { - "x": 227.62599999999998, - "y": 432.54375476702495 + "x": 227.626, + "y": 432.54375 }, { "x": 0, "y": 0 }, { - "x": 227.62599999999998, - "y": 429.6364840519894 + "x": 227.626, + "y": 429.63648 }, { "endCol": 5, @@ -25427,7 +25427,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -25495,155 +25495,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 247.11199999999997, - "y": 435.62975476702496 + "x": 247.112, + "y": 435.62975 }, { "body": null, "index": 1, "isInternal": false, - "x": 245.20499999999998, - "y": 441.50075476702494 + "x": 245.205, + "y": 441.50075 }, { "body": null, "index": 2, "isInternal": false, - "x": 241.57599999999996, - "y": 446.49375476702494 + "x": 241.576, + "y": 446.49375 }, { "body": null, "index": 3, "isInternal": false, - "x": 236.58299999999997, - "y": 450.12275476702496 + "x": 236.583, + "y": 450.12275 }, { "body": null, "index": 4, "isInternal": false, "x": 230.712, - "y": 452.02975476702494 + "y": 452.02975 }, { "body": null, "index": 5, "isInternal": false, - "x": 224.53999999999996, - "y": 452.02975476702494 + "x": 224.54, + "y": 452.02975 }, { "body": null, "index": 6, "isInternal": false, - "x": 218.66899999999998, - "y": 450.12275476702496 + "x": 218.669, + "y": 450.12275 }, { "body": null, "index": 7, "isInternal": false, "x": 213.676, - "y": 446.49375476702494 + "y": 446.49375 }, { "body": null, "index": 8, "isInternal": false, - "x": 210.04699999999997, - "y": 441.50075476702494 + "x": 210.047, + "y": 441.50075 }, { "body": null, "index": 9, "isInternal": false, "x": 208.14, - "y": 435.62975476702496 + "y": 435.62975 }, { "body": null, "index": 10, "isInternal": false, "x": 208.14, - "y": 429.45775476702494 + "y": 429.45775 }, { "body": null, "index": 11, "isInternal": false, - "x": 210.04699999999997, - "y": 423.58675476702496 + "x": 210.047, + "y": 423.58675 }, { "body": null, "index": 12, "isInternal": false, "x": 213.676, - "y": 418.59375476702496 + "y": 418.59375 }, { "body": null, "index": 13, "isInternal": false, - "x": 218.66899999999998, - "y": 414.96475476702494 + "x": 218.669, + "y": 414.96475 }, { "body": null, "index": 14, "isInternal": false, - "x": 224.53999999999996, - "y": 413.05775476702496 + "x": 224.54, + "y": 413.05775 }, { "body": null, "index": 15, "isInternal": false, "x": 230.712, - "y": 413.05775476702496 + "y": 413.05775 }, { "body": null, "index": 16, "isInternal": false, - "x": 236.58299999999997, - "y": 414.96475476702494 + "x": 236.583, + "y": 414.96475 }, { "body": null, "index": 17, "isInternal": false, - "x": 241.57599999999996, - "y": 418.59375476702496 + "x": 241.576, + "y": 418.59375 }, { "body": null, "index": 18, "isInternal": false, - "x": 245.20499999999998, - "y": 423.58675476702496 + "x": 245.205, + "y": 423.58675 }, { "body": null, "index": 19, "isInternal": false, - "x": 247.11199999999997, - "y": 429.45775476702494 + "x": 247.112, + "y": 429.45775 }, { "angle": 0, - "anglePrev": -0.0017487774058539635, + "anglePrev": -0.00175, "angularSpeed": 0, - "angularVelocity": 0.0013833988196512818, - "area": 1984.2207600000002, + "angularVelocity": 0.00138, + "area": 1984.22076, "axes": { "#": 2839 }, "bounds": { "#": 2853 }, - "circleRadius": 25.254565329218106, + "circleRadius": 25.25457, "collisionFilter": { "#": 2856 }, @@ -25658,13 +25658,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 2506.50391811075, - "inverseInertia": 0.0003989620733382851, - "inverseMass": 0.5039761805536194, + "inertia": 2506.50392, + "inverseInertia": 0.0004, + "inverseMass": 0.50398, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9842207600000001, + "mass": 1.98422, "motion": 0, "parent": null, "position": { @@ -25686,7 +25686,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25740,52 +25740,52 @@ } ], { - "x": -0.9709391703785378, - "y": -0.2393264035258891 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854840778178918, - "y": -0.4646697191887992 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.7485229543185438, - "y": -0.6631088800930351 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.5680821480971469, - "y": -0.8229718543263379 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.354649282244037, - "y": -0.9349994046007674 + "x": -0.35465, + "y": -0.935 }, { - "x": -0.1205569990969585, - "y": -0.9927064067329957 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.1205569990969585, - "y": -0.9927064067329957 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.354649282244037, - "y": -0.9349994046007674 + "x": 0.35465, + "y": -0.935 }, { - "x": 0.5680821480971469, - "y": -0.8229718543263379 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485229543185438, - "y": -0.6631088800930351 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854840778178918, - "y": -0.4646697191887992 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.9709391703785378, - "y": -0.2393264035258891 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -25800,12 +25800,12 @@ } }, { - "x": 307.0055470162062, - "y": 464.44564968635274 + "x": 307.00555, + "y": 464.44565 }, { - "x": 256.8655470162062, - "y": 411.0283789713172 + "x": 256.86555, + "y": 411.02838 }, { "category": 1, @@ -25822,16 +25822,16 @@ "y": 0 }, { - "x": 281.9355470162062, - "y": 436.2833789713172 + "x": 281.93555, + "y": 436.28338 }, { "x": 0, "y": 0 }, { - "x": 282.19887866360426, - "y": 434.8107720249877 + "x": 282.19888, + "y": 434.81077 }, { "endCol": 6, @@ -25854,8 +25854,8 @@ "yScale": 1 }, { - "x": -0.25136388159199896, - "y": 1.3877293698590734 + "x": -0.25136, + "y": 1.38773 }, [ { @@ -25941,197 +25941,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 307.0055470162062, - "y": 439.32737897131716 + "x": 307.00555, + "y": 439.32738 }, { "body": null, "index": 1, "isInternal": false, - "x": 305.5485470162062, - "y": 445.23837897131716 + "x": 305.54855, + "y": 445.23838 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.7195470162062, - "y": 450.6293789713172 + "x": 302.71955, + "y": 450.62938 }, { "body": null, "index": 3, "isInternal": false, - "x": 298.68254701620623, - "y": 455.1863789713172 + "x": 298.68255, + "y": 455.18638 }, { "body": null, "index": 4, "isInternal": false, - "x": 293.6715470162062, - "y": 458.6453789713172 + "x": 293.67155, + "y": 458.64538 }, { "body": null, "index": 5, "isInternal": false, - "x": 287.9795470162062, - "y": 460.8043789713172 + "x": 287.97955, + "y": 460.80438 }, { "body": null, "index": 6, "isInternal": false, - "x": 281.9355470162062, - "y": 461.5383789713172 + "x": 281.93555, + "y": 461.53838 }, { "body": null, "index": 7, "isInternal": false, - "x": 275.8915470162062, - "y": 460.8043789713172 + "x": 275.89155, + "y": 460.80438 }, { "body": null, "index": 8, "isInternal": false, - "x": 270.1995470162062, - "y": 458.6453789713172 + "x": 270.19955, + "y": 458.64538 }, { "body": null, "index": 9, "isInternal": false, - "x": 265.1885470162062, - "y": 455.1863789713172 + "x": 265.18855, + "y": 455.18638 }, { "body": null, "index": 10, "isInternal": false, - "x": 261.1515470162062, - "y": 450.6293789713172 + "x": 261.15155, + "y": 450.62938 }, { "body": null, "index": 11, "isInternal": false, - "x": 258.3225470162062, - "y": 445.23837897131716 + "x": 258.32255, + "y": 445.23838 }, { "body": null, "index": 12, "isInternal": false, - "x": 256.8655470162062, - "y": 439.32737897131716 + "x": 256.86555, + "y": 439.32738 }, { "body": null, "index": 13, "isInternal": false, - "x": 256.8655470162062, - "y": 433.2393789713172 + "x": 256.86555, + "y": 433.23938 }, { "body": null, "index": 14, "isInternal": false, - "x": 258.3225470162062, - "y": 427.3283789713172 + "x": 258.32255, + "y": 427.32838 }, { "body": null, "index": 15, "isInternal": false, - "x": 261.1515470162062, - "y": 421.9373789713172 + "x": 261.15155, + "y": 421.93738 }, { "body": null, "index": 16, "isInternal": false, - "x": 265.1885470162062, - "y": 417.38037897131716 + "x": 265.18855, + "y": 417.38038 }, { "body": null, "index": 17, "isInternal": false, - "x": 270.1995470162062, - "y": 413.92137897131715 + "x": 270.19955, + "y": 413.92138 }, { "body": null, "index": 18, "isInternal": false, - "x": 275.8915470162062, - "y": 411.76237897131716 + "x": 275.89155, + "y": 411.76238 }, { "body": null, "index": 19, "isInternal": false, - "x": 281.9355470162062, - "y": 411.0283789713172 + "x": 281.93555, + "y": 411.02838 }, { "body": null, "index": 20, "isInternal": false, - "x": 287.9795470162062, - "y": 411.76237897131716 + "x": 287.97955, + "y": 411.76238 }, { "body": null, "index": 21, "isInternal": false, - "x": 293.6715470162062, - "y": 413.92137897131715 + "x": 293.67155, + "y": 413.92138 }, { "body": null, "index": 22, "isInternal": false, - "x": 298.68254701620623, - "y": 417.38037897131716 + "x": 298.68255, + "y": 417.38038 }, { "body": null, "index": 23, "isInternal": false, - "x": 302.7195470162062, - "y": 421.9373789713172 + "x": 302.71955, + "y": 421.93738 }, { "body": null, "index": 24, "isInternal": false, - "x": 305.5485470162062, - "y": 427.3283789713172 + "x": 305.54855, + "y": 427.32838 }, { "body": null, "index": 25, "isInternal": false, - "x": 307.0055470162062, - "y": 433.2393789713172 + "x": 307.00555, + "y": 433.23938 }, { - "angle": 0.01108837256759295, - "anglePrev": 0.009041869471351221, - "angularSpeed": 0.0029158058805618483, - "angularVelocity": 0.002058186515953483, - "area": 2125.037534, + "angle": 0.01109, + "anglePrev": 0.00904, + "angularSpeed": 0.00292, + "angularVelocity": 0.00206, + "area": 2125.03753, "axes": { "#": 2894 }, "bounds": { "#": 2908 }, - "circleRadius": 26.135095164609055, + "circleRadius": 26.1351, "collisionFilter": { "#": 2911 }, @@ -26146,13 +26146,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 2874.892566904298, - "inverseInertia": 0.0003478390850190295, - "inverseMass": 0.4705799234132492, + "inertia": 2874.89257, + "inverseInertia": 0.00035, + "inverseMass": 0.47058, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.125037534, + "mass": 2.12504, "motion": 0, "parent": null, "position": { @@ -26174,7 +26174,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7163338379427144, + "speed": 0.71633, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26228,56 +26228,56 @@ } ], { - "x": -0.9682266952151556, - "y": -0.2500741223572295 + "x": -0.96823, + "y": -0.25007 }, { - "x": -0.8802193425377135, - "y": -0.47456707536709203 + "x": -0.88022, + "y": -0.47457 }, { - "x": -0.7411128439069403, - "y": -0.6713804827340213 + "x": -0.74111, + "y": -0.67138 }, { - "x": -0.5589101912247325, - "y": -0.8292281942536285 + "x": -0.55891, + "y": -0.82923 }, { - "x": -0.3443323022492986, - "y": -0.9388478394434839 + "x": -0.34433, + "y": -0.93885 }, { - "x": -0.10944452861350813, - "y": -0.9939929049830122 + "x": -0.10944, + "y": -0.99399 }, { - "x": 0.13145933736824936, - "y": -0.9913215636808779 + "x": 0.13146, + "y": -0.99132 }, { - "x": 0.3650665157006251, - "y": -0.9309814386518162 + "x": 0.36507, + "y": -0.93098 }, { - "x": 0.5771608336013987, - "y": -0.8166304991589154 + "x": 0.57716, + "y": -0.81663 }, { - "x": 0.7558184222138474, - "y": -0.6547812708394842 + "x": 0.75582, + "y": -0.65478 }, { - "x": 0.8905263923813783, - "y": -0.4549315821881435 + "x": 0.89053, + "y": -0.45493 }, { - "x": 0.973533989650626, - "y": -0.22854227397778135 + "x": 0.97353, + "y": -0.22854 }, { - "x": 0.9999385246267818, - "y": 0.011088145346047715 + "x": 0.99994, + "y": 0.01109 }, { "max": { @@ -26288,12 +26288,12 @@ } }, { - "x": 368.0511291123346, - "y": 457.38518031915186 + "x": 368.05113, + "y": 457.38518 }, { - "x": 315.8450783167059, - "y": 404.4468721769686 + "x": 315.84508, + "y": 404.44687 }, { "category": 1, @@ -26310,16 +26310,16 @@ "y": 0 }, { - "x": 342.07279643305264, - "y": 430.58026551808956 + "x": 342.0728, + "y": 430.58027 }, { "x": 0, "y": 0 }, { - "x": 342.2974740194708, - "y": 430.1801370190402 + "x": 342.29747, + "y": 430.18014 }, { "endCol": 7, @@ -26342,8 +26342,8 @@ "yScale": 1 }, { - "x": -0.2247508009726289, - "y": 0.407804583329721 + "x": -0.22475, + "y": 0.4078 }, [ { @@ -26429,197 +26429,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.9812737966544, - "y": 434.01775380166714 + "x": 367.98127, + "y": 434.01775 }, { "body": null, "index": 1, "isInternal": false, - "x": 366.4055292282901, - "y": 440.11865677215195 + "x": 366.40553, + "y": 440.11866 }, { "body": null, "index": 2, "isInternal": false, - "x": 363.41585955344266, - "y": 445.6638477729469 + "x": 363.41586, + "y": 445.66385 }, { "body": null, "index": 3, "isInternal": false, - "x": 359.1858247041, - "y": 450.333231583831 + "x": 359.18582, + "y": 450.33323 }, { "body": null, "index": 4, "isInternal": false, - "x": 353.96145898171665, - "y": 453.854519529851 + "x": 353.96146, + "y": 453.85452 }, { "body": null, "index": 5, "isInternal": false, - "x": 348.04603912829185, - "y": 456.02406186815824 + "x": 348.04604, + "y": 456.02406 }, { "body": null, "index": 6, "isInternal": false, - "x": 341.7830077544337, - "y": 456.7136588592105 + "x": 341.78301, + "y": 456.71366 }, { "body": null, "index": 7, "isInternal": false, - "x": 335.5368081852109, - "y": 455.8853491698792 + "x": 335.53681, + "y": 455.88535 }, { "body": null, "index": 8, "isInternal": false, - "x": 329.6709523414828, - "y": 453.58516630310487 + "x": 329.67095, + "y": 453.58517 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.52595556348643, - "y": 449.94889428984635 + "x": 324.52596, + "y": 449.94889 }, { "body": null, "index": 10, "isInternal": false, - "x": 320.4005041010477, - "y": 445.1868579364506 + "x": 320.4005, + "y": 445.18686 }, { "body": null, "index": 11, "isInternal": false, - "x": 317.5345337756808, - "y": 439.5767347565092 + "x": 317.53453, + "y": 439.57673 }, { "body": null, "index": 12, "isInternal": false, - "x": 316.0944637537707, - "y": 433.4423899396607 + "x": 316.09446, + "y": 433.44239 }, { "body": null, "index": 13, "isInternal": false, - "x": 316.16431906945087, - "y": 427.142777234512 + "x": 316.16432, + "y": 427.14278 }, { "body": null, "index": 14, "isInternal": false, - "x": 317.7400636378152, - "y": 421.0418742640272 + "x": 317.74006, + "y": 421.04187 }, { "body": null, "index": 15, "isInternal": false, - "x": 320.72973331266263, - "y": 415.4966832632322 + "x": 320.72973, + "y": 415.49668 }, { "body": null, "index": 16, "isInternal": false, - "x": 324.9597681620053, - "y": 410.82729945234814 + "x": 324.95977, + "y": 410.8273 }, { "body": null, "index": 17, "isInternal": false, - "x": 330.18413388438864, - "y": 407.3060115063281 + "x": 330.18413, + "y": 407.30601 }, { "body": null, "index": 18, "isInternal": false, - "x": 336.09955373781344, - "y": 405.1364691680209 + "x": 336.09955, + "y": 405.13647 }, { "body": null, "index": 19, "isInternal": false, - "x": 342.3625851116716, - "y": 404.4468721769686 + "x": 342.36259, + "y": 404.44687 }, { "body": null, "index": 20, "isInternal": false, - "x": 348.6087846808944, - "y": 405.27518186629993 + "x": 348.60878, + "y": 405.27518 }, { "body": null, "index": 21, "isInternal": false, - "x": 354.4746405246225, - "y": 407.57536473307425 + "x": 354.47464, + "y": 407.57536 }, { "body": null, "index": 22, "isInternal": false, - "x": 359.61963730261886, - "y": 411.2116367463328 + "x": 359.61964, + "y": 411.21164 }, { "body": null, "index": 23, "isInternal": false, - "x": 363.7450887650576, - "y": 415.9736730997285 + "x": 363.74509, + "y": 415.97367 }, { "body": null, "index": 24, "isInternal": false, - "x": 366.6110590904245, - "y": 421.5837962796699 + "x": 366.61106, + "y": 421.5838 }, { "body": null, "index": 25, "isInternal": false, - "x": 368.0511291123346, - "y": 427.7181410965184 + "x": 368.05113, + "y": 427.71814 }, { - "angle": -0.04047466930945126, - "anglePrev": -0.02893355293007469, - "angularSpeed": 0.008645217396081716, - "angularVelocity": -0.011329997904895677, - "area": 1996.653286, + "angle": -0.04047, + "anglePrev": -0.02893, + "angularSpeed": 0.00865, + "angularVelocity": -0.01133, + "area": 1996.65329, "axes": { "#": 2949 }, "bounds": { "#": 2963 }, - "circleRadius": 25.3335262345679, + "circleRadius": 25.33353, "collisionFilter": { "#": 2966 }, @@ -26634,13 +26634,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 2538.0123080923295, - "inverseInertia": 0.0003940091215521487, - "inverseMass": 0.500838080908555, + "inertia": 2538.01231, + "inverseInertia": 0.00039, + "inverseMass": 0.50084, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.996653286, + "mass": 1.99665, "motion": 0, "parent": null, "position": { @@ -26662,7 +26662,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2214065458550487, + "speed": 1.22141, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26716,56 +26716,56 @@ } ], { - "x": -0.9798100966755771, - "y": -0.19993042402945077 + "x": -0.97981, + "y": -0.19993 }, { - "x": -0.9035561871165879, - "y": -0.4284696217041913 + "x": -0.90356, + "y": -0.42847 }, { - "x": -0.7746953994002939, - "y": -0.6323345935088626 + "x": -0.7747, + "y": -0.63233 }, { - "x": -0.6009868672634104, - "y": -0.799258897590081 + "x": -0.60099, + "y": -0.79926 }, { - "x": -0.3920757399958459, - "y": -0.9199329400052536 + "x": -0.39208, + "y": -0.91993 }, { - "x": -0.1607378658631228, - "y": -0.9869971319501233 + "x": -0.16074, + "y": -0.987 }, { - "x": 0.08040197643003856, - "y": -0.9967625204561732 + "x": 0.0804, + "y": -0.99676 }, { - "x": 0.31640518443834825, - "y": -0.9486241401422032 + "x": 0.31641, + "y": -0.94862 }, { - "x": 0.5343900283916407, - "y": -0.8452380123702325 + "x": 0.53439, + "y": -0.84524 }, { - "x": 0.7210273925145708, - "y": -0.6929065588112431 + "x": 0.72103, + "y": -0.69291 }, { - "x": 0.865950928904631, - "y": -0.5001289720954057 + "x": 0.86595, + "y": -0.50013 }, { - "x": 0.960435035687907, - "y": -0.27850411527151286 + "x": 0.96044, + "y": -0.2785 }, { - "x": 0.9991810123866848, - "y": -0.04046361928843868 + "x": 0.99918, + "y": -0.04046 }, { "max": { @@ -26776,12 +26776,12 @@ } }, { - "x": 430.83765367980294, - "y": 442.80148428349605 + "x": 430.83765, + "y": 442.80148 }, { - "x": 379.60190513570495, - "y": 391.19706609996337 + "x": 379.60191, + "y": 391.19707 }, { "category": 1, @@ -26798,16 +26798,16 @@ "y": 0 }, { - "x": 405.5856745059833, - "y": 416.5103178677677 + "x": 405.58567, + "y": 416.51032 }, { "x": 0, "y": 0 }, { - "x": 406.21516323253377, - "y": 415.870565598585 + "x": 406.21516, + "y": 415.87057 }, { "endCol": 8, @@ -26830,8 +26830,8 @@ "yScale": 1 }, { - "x": -0.6409205765551746, - "y": 0.7081725057582844 + "x": -0.64092, + "y": 0.70817 }, [ { @@ -26917,197 +26917,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 430.83765367980294, - "y": 418.54419711811164 + "x": 430.83765, + "y": 418.5442 }, { "body": null, "index": 1, "isInternal": false, - "x": 429.6167598384548, - "y": 424.5274991519521 + "x": 429.61676, + "y": 424.5275 }, { "body": null, "index": 2, "isInternal": false, - "x": 426.9999113784133, - "y": 430.0459058184798 + "x": 426.99991, + "y": 430.04591 }, { "body": null, "index": 3, "isInternal": false, - "x": 423.1381874820146, - "y": 434.77703988421746 + "x": 423.13819, + "y": 434.77704 }, { "body": null, "index": 4, "isInternal": false, - "x": 418.25671247269, - "y": 438.447568147743 + "x": 418.25671, + "y": 438.44757 }, { "body": null, "index": 5, "isInternal": false, - "x": 412.63899262772145, - "y": 440.8418423056972 + "x": 412.63899, + "y": 440.84184 }, { "body": null, "index": 6, "isInternal": false, - "x": 406.6107798370366, - "y": 441.823569635572 + "x": 406.61078, + "y": 441.82357 }, { "body": null, "index": 7, "isInternal": false, - "x": 400.5229236715206, - "y": 441.3325041531887 + "x": 400.52292, + "y": 441.3325 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.7299963550331, - "y": 439.4003245275086 + "x": 394.73, + "y": 439.40032 }, { "body": null, "index": 9, "isInternal": false, - "x": 389.56770382784674, - "y": 436.13653656507046 + "x": 389.5677, + "y": 436.13654 }, { "body": null, "index": 10, "isInternal": false, - "x": 385.3360615239134, - "y": 431.7331578155691 + "x": 385.33606, + "y": 431.73316 }, { "body": null, "index": 11, "isInternal": false, - "x": 382.2815585576479, - "y": 426.44442265212257 + "x": 382.28156, + "y": 426.44442 }, { "body": null, "index": 12, "isInternal": false, - "x": 380.5808471187775, - "y": 420.57943624108157 + "x": 380.58085, + "y": 420.57944 }, { "body": null, "index": 13, "isInternal": false, - "x": 380.3336953321637, - "y": 414.47643861742375 + "x": 380.3337, + "y": 414.47644 }, { "body": null, "index": 14, "isInternal": false, - "x": 381.55458917351183, - "y": 408.4931365835833 + "x": 381.55459, + "y": 408.49314 }, { "body": null, "index": 15, "isInternal": false, - "x": 384.17143763355335, - "y": 402.9747299170556 + "x": 384.17144, + "y": 402.97473 }, { "body": null, "index": 16, "isInternal": false, - "x": 388.03316152995205, - "y": 398.24359585131793 + "x": 388.03316, + "y": 398.2436 }, { "body": null, "index": 17, "isInternal": false, - "x": 392.9146365392766, - "y": 394.57306758779237 + "x": 392.91464, + "y": 394.57307 }, { "body": null, "index": 18, "isInternal": false, - "x": 398.5323563842452, - "y": 392.1787934298382 + "x": 398.53236, + "y": 392.17879 }, { "body": null, "index": 19, "isInternal": false, - "x": 404.56056917493004, - "y": 391.19706609996337 + "x": 404.56057, + "y": 391.19707 }, { "body": null, "index": 20, "isInternal": false, - "x": 410.64842534044607, - "y": 391.68813158234667 + "x": 410.64843, + "y": 391.68813 }, { "body": null, "index": 21, "isInternal": false, - "x": 416.44135265693353, - "y": 393.6203112080268 + "x": 416.44135, + "y": 393.62031 }, { "body": null, "index": 22, "isInternal": false, - "x": 421.6036451841199, - "y": 396.88409917046494 + "x": 421.60365, + "y": 396.8841 }, { "body": null, "index": 23, "isInternal": false, - "x": 425.83528748805327, - "y": 401.2874779199663 + "x": 425.83529, + "y": 401.28748 }, { "body": null, "index": 24, "isInternal": false, - "x": 428.88979045431876, - "y": 406.5762130834128 + "x": 428.88979, + "y": 406.57621 }, { "body": null, "index": 25, "isInternal": false, - "x": 430.5905018931891, - "y": 412.4411994944538 + "x": 430.5905, + "y": 412.4412 }, { - "angle": -0.01999177216553569, - "anglePrev": -0.004054000061013576, - "angularSpeed": 0.009945655499437354, - "angularVelocity": -0.015237521012290452, - "area": 1068.0078720000001, + "angle": -0.01999, + "anglePrev": -0.00405, + "angularSpeed": 0.00995, + "angularVelocity": -0.01524, + "area": 1068.00787, "axes": { "#": 3004 }, "bounds": { "#": 3015 }, - "circleRadius": 18.59059927983539, + "circleRadius": 18.5906, "collisionFilter": { "#": 3018 }, @@ -27122,13 +27122,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 726.1942595046386, - "inverseInertia": 0.001377042006201114, - "inverseMass": 0.9363226865803475, + "inertia": 726.19426, + "inverseInertia": 0.00138, + "inverseMass": 0.93632, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0680078720000001, + "mass": 1.06801, "motion": 0, "parent": null, "position": { @@ -27150,7 +27150,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1694447642403463, + "speed": 1.16944, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27195,44 +27195,44 @@ } ], { - "x": -0.957018049727605, - "y": -0.290028364984481 + "x": -0.95702, + "y": -0.29003 }, { - "x": -0.820693573555824, - "y": -0.5713685835992135 + "x": -0.82069, + "y": -0.57137 }, { - "x": -0.6037174209017496, - "y": -0.7971983916816061 + "x": -0.60372, + "y": -0.7972 }, { - "x": -0.3280513428743422, - "y": -0.9446598945855279 + "x": -0.32805, + "y": -0.94466 }, { - "x": -0.019990440503703976, - "y": -0.999800171178455 + "x": -0.01999, + "y": -0.9998 }, { - "x": 0.290028364984481, - "y": -0.957018049727605 + "x": 0.29003, + "y": -0.95702 }, { - "x": 0.5713685835992135, - "y": -0.820693573555824 + "x": 0.57137, + "y": -0.82069 }, { - "x": 0.7971983916816061, - "y": -0.6037174209017496 + "x": 0.7972, + "y": -0.60372 }, { - "x": 0.9446598945855279, - "y": -0.3280513428743422 + "x": 0.94466, + "y": -0.32805 }, { - "x": 0.999800171178455, - "y": -0.019990440503703976 + "x": 0.9998, + "y": -0.01999 }, { "max": { @@ -27243,12 +27243,12 @@ } }, { - "x": 476.6412950490822, - "y": 446.893926590904 + "x": 476.6413, + "y": 446.89393 }, { - "x": 439.6587745628381, - "y": 408.901163423954 + "x": 439.65877, + "y": 408.90116 }, { "category": 1, @@ -27265,16 +27265,16 @@ "y": 0 }, { - "x": 458.0752375070017, - "y": 427.3176263681176 + "x": 458.07524, + "y": 427.31763 }, { "x": 0, "y": 0 }, { - "x": 457.71128781142585, - "y": 426.33210886010386 + "x": 457.71129, + "y": 426.33211 }, { "endCol": 9, @@ -27297,8 +27297,8 @@ "yScale": 1 }, { - "x": 0.3248675131880532, - "y": 0.9748796440364913 + "x": 0.32487, + "y": 0.97488 }, [ { @@ -27366,155 +27366,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.4917004511653, - "y": 429.85798079737555 + "x": 476.4917, + "y": 429.85798 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.8046468602529, - "y": 435.4248181563604 + "x": 474.80465, + "y": 435.42482 }, { "body": null, "index": 2, "isInternal": false, - "x": 471.4814048881754, - "y": 440.1982050875679 + "x": 471.4814, + "y": 440.19821 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.8446726082512, - "y": 443.7095970856663 + "x": 466.84467, + "y": 443.7096 }, { "body": null, "index": 4, "isInternal": false, - "x": 461.34972087331766, - "y": 445.61782491031164 + "x": 461.34972, + "y": 445.61782 }, { "body": null, "index": 5, "isInternal": false, - "x": 455.53488307774376, - "y": 445.7340893122812 + "x": 455.53488, + "y": 445.73409 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.9680457187589, - "y": 444.0470357213688 + "x": 449.96805, + "y": 444.04704 }, { "body": null, "index": 7, "isInternal": false, - "x": 445.1946587875514, - "y": 440.7237937492913 + "x": 445.19466, + "y": 440.72379 }, { "body": null, "index": 8, "isInternal": false, - "x": 441.683266789453, - "y": 436.0870614693671 + "x": 441.68327, + "y": 436.08706 }, { "body": null, "index": 9, "isInternal": false, - "x": 439.77503896480766, - "y": 430.59210973443356 + "x": 439.77504, + "y": 430.59211 }, { "body": null, "index": 10, "isInternal": false, - "x": 439.6587745628381, - "y": 424.77727193885966 + "x": 439.65877, + "y": 424.77727 }, { "body": null, "index": 11, "isInternal": false, - "x": 441.3458281537505, - "y": 419.2104345798748 + "x": 441.34583, + "y": 419.21043 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.669070125828, - "y": 414.4370476486673 + "x": 444.66907, + "y": 414.43705 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.3058024057522, - "y": 410.9256556505689 + "x": 449.3058, + "y": 410.92566 }, { "body": null, "index": 14, "isInternal": false, - "x": 454.80075414068574, - "y": 409.01742782592356 + "x": 454.80075, + "y": 409.01743 }, { "body": null, "index": 15, "isInternal": false, - "x": 460.61559193625965, - "y": 408.901163423954 + "x": 460.61559, + "y": 408.90116 }, { "body": null, "index": 16, "isInternal": false, - "x": 466.1824292952445, - "y": 410.5882170148664 + "x": 466.18243, + "y": 410.58822 }, { "body": null, "index": 17, "isInternal": false, - "x": 470.955816226452, - "y": 413.9114589869439 + "x": 470.95582, + "y": 413.91146 }, { "body": null, "index": 18, "isInternal": false, - "x": 474.4672082245504, - "y": 418.5481912668681 + "x": 474.46721, + "y": 418.54819 }, { "body": null, "index": 19, "isInternal": false, - "x": 476.37543604919574, - "y": 424.04314300180164 + "x": 476.37544, + "y": 424.04314 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2117.925184, + "area": 2117.92518, "axes": { "#": 3050 }, "bounds": { "#": 3064 }, - "circleRadius": 26.091499485596707, + "circleRadius": 26.0915, "collisionFilter": { "#": 3067 }, @@ -27529,13 +27529,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 2855.6806480399814, - "inverseInertia": 0.000350179212331168, - "inverseMass": 0.47216021016916143, + "inertia": 2855.68065, + "inverseInertia": 0.00035, + "inverseMass": 0.47216, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.117925184, + "mass": 2.11793, "motion": 0, "parent": null, "position": { @@ -27557,7 +27557,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27611,52 +27611,52 @@ } ], { - "x": -0.9709506945423793, - "y": -0.23927964553566064 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854796733875594, - "y": -0.4646781122642439 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7485047540208849, - "y": -0.6631294241761065 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680189747008447, - "y": -0.8230154581657634 + "x": -0.56802, + "y": -0.82302 }, { - "x": -0.3545535808015822, - "y": -0.9350356989659677 + "x": -0.35455, + "y": -0.93504 }, { - "x": -0.12051179006506187, - "y": -0.992711895997683 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051179006506187, - "y": -0.992711895997683 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545535808015822, - "y": -0.9350356989659677 + "x": 0.35455, + "y": -0.93504 }, { - "x": 0.5680189747008447, - "y": -0.8230154581657634 + "x": 0.56802, + "y": -0.82302 }, { - "x": 0.7485047540208849, - "y": -0.6631294241761065 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854796733875594, - "y": -0.4646781122642439 + "x": 0.88548, + "y": -0.46468 }, { - "x": 0.9709506945423793, - "y": -0.23927964553566064 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -27671,12 +27671,12 @@ } }, { - "x": 537.9659999999999, - "y": 465.239754767025 + "x": 537.966, + "y": 465.23975 }, { - "x": 486.16399999999993, - "y": 413.05775476702496 + "x": 486.164, + "y": 413.05775 }, { "category": 1, @@ -27693,16 +27693,16 @@ "y": 0 }, { - "x": 512.0649999999999, - "y": 439.14875476702497 + "x": 512.065, + "y": 439.14875 }, { "x": 0, "y": 0 }, { - "x": 512.0649999999999, - "y": 436.2414840519894 + "x": 512.065, + "y": 436.24148 }, { "endCol": 11, @@ -27726,7 +27726,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -27812,197 +27812,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 537.9659999999999, - "y": 442.29375476702495 + "x": 537.966, + "y": 442.29375 }, { "body": null, "index": 1, "isInternal": false, "x": 536.461, - "y": 448.400754767025 + "y": 448.40075 }, { "body": null, "index": 2, "isInternal": false, "x": 533.538, - "y": 453.97075476702497 + "y": 453.97075 }, { "body": null, "index": 3, "isInternal": false, "x": 529.367, - "y": 458.67875476702494 + "y": 458.67875 }, { "body": null, "index": 4, "isInternal": false, - "x": 524.1899999999999, - "y": 462.251754767025 + "x": 524.19, + "y": 462.25175 }, { "body": null, "index": 5, "isInternal": false, "x": 518.309, - "y": 464.48175476702494 + "y": 464.48175 }, { "body": null, "index": 6, "isInternal": false, - "x": 512.0649999999999, - "y": 465.239754767025 + "x": 512.065, + "y": 465.23975 }, { "body": null, "index": 7, "isInternal": false, - "x": 505.8209999999999, - "y": 464.48175476702494 + "x": 505.821, + "y": 464.48175 }, { "body": null, "index": 8, "isInternal": false, - "x": 499.93999999999994, - "y": 462.251754767025 + "x": 499.94, + "y": 462.25175 }, { "body": null, "index": 9, "isInternal": false, - "x": 494.7629999999999, - "y": 458.67875476702494 + "x": 494.763, + "y": 458.67875 }, { "body": null, "index": 10, "isInternal": false, - "x": 490.5919999999999, - "y": 453.97075476702497 + "x": 490.592, + "y": 453.97075 }, { "body": null, "index": 11, "isInternal": false, - "x": 487.6689999999999, - "y": 448.400754767025 + "x": 487.669, + "y": 448.40075 }, { "body": null, "index": 12, "isInternal": false, - "x": 486.16399999999993, - "y": 442.29375476702495 + "x": 486.164, + "y": 442.29375 }, { "body": null, "index": 13, "isInternal": false, - "x": 486.16399999999993, - "y": 436.003754767025 + "x": 486.164, + "y": 436.00375 }, { "body": null, "index": 14, "isInternal": false, - "x": 487.6689999999999, - "y": 429.89675476702496 + "x": 487.669, + "y": 429.89675 }, { "body": null, "index": 15, "isInternal": false, - "x": 490.5919999999999, - "y": 424.32675476702497 + "x": 490.592, + "y": 424.32675 }, { "body": null, "index": 16, "isInternal": false, - "x": 494.7629999999999, - "y": 419.618754767025 + "x": 494.763, + "y": 419.61875 }, { "body": null, "index": 17, "isInternal": false, - "x": 499.93999999999994, - "y": 416.04575476702496 + "x": 499.94, + "y": 416.04575 }, { "body": null, "index": 18, "isInternal": false, - "x": 505.8209999999999, - "y": 413.815754767025 + "x": 505.821, + "y": 413.81575 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.0649999999999, - "y": 413.05775476702496 + "x": 512.065, + "y": 413.05775 }, { "body": null, "index": 20, "isInternal": false, "x": 518.309, - "y": 413.815754767025 + "y": 413.81575 }, { "body": null, "index": 21, "isInternal": false, - "x": 524.1899999999999, - "y": 416.04575476702496 + "x": 524.19, + "y": 416.04575 }, { "body": null, "index": 22, "isInternal": false, "x": 529.367, - "y": 419.618754767025 + "y": 419.61875 }, { "body": null, "index": 23, "isInternal": false, "x": 533.538, - "y": 424.32675476702497 + "y": 424.32675 }, { "body": null, "index": 24, "isInternal": false, "x": 536.461, - "y": 429.89675476702496 + "y": 429.89675 }, { "body": null, "index": 25, "isInternal": false, - "x": 537.9659999999999, - "y": 436.003754767025 + "x": 537.966, + "y": 436.00375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2640.4216659999993, + "area": 2640.42167, "axes": { "#": 3105 }, "bounds": { "#": 3119 }, - "circleRadius": 29.13252314814815, + "circleRadius": 29.13252, "collisionFilter": { "#": 3122 }, @@ -28017,13 +28017,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 4438.487332970961, - "inverseInertia": 0.00022530198353199686, - "inverseMass": 0.37872738770353664, + "inertia": 4438.48733, + "inverseInertia": 0.00023, + "inverseMass": 0.37873, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6404216659999995, + "mass": 2.64042, "motion": 0, "parent": null, "position": { @@ -28045,7 +28045,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28099,52 +28099,52 @@ } ], { - "x": -0.9709329680777526, - "y": -0.2393515646485853 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.885482871367978, - "y": -0.4646720182170656 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.748460967524138, - "y": -0.6631788447265422 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5681654624657904, - "y": -0.8229143377418058 + "x": -0.56817, + "y": -0.82291 }, { - "x": -0.3545383401721488, - "y": -0.9350414778757025 + "x": -0.35454, + "y": -0.93504 }, { - "x": -0.12059925123212459, - "y": -0.9927012746049291 + "x": -0.1206, + "y": -0.9927 }, { - "x": 0.12059925123212459, - "y": -0.9927012746049291 + "x": 0.1206, + "y": -0.9927 }, { - "x": 0.3545383401721488, - "y": -0.9350414778757025 + "x": 0.35454, + "y": -0.93504 }, { - "x": 0.5681654624657904, - "y": -0.8229143377418058 + "x": 0.56817, + "y": -0.82291 }, { - "x": 0.748460967524138, - "y": -0.6631788447265422 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.885482871367978, - "y": -0.4646720182170656 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.9709329680777526, - "y": -0.2393515646485853 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -28159,12 +28159,12 @@ } }, { - "x": 605.8059999999998, - "y": 471.3237547670249 + "x": 605.806, + "y": 471.32375 }, { - "x": 547.9659999999999, - "y": 413.05775476702496 + "x": 547.966, + "y": 413.05775 }, { "category": 1, @@ -28181,16 +28181,16 @@ "y": 0 }, { - "x": 576.8859999999999, - "y": 442.19075476702494 + "x": 576.886, + "y": 442.19075 }, { "x": 0, "y": 0 }, { - "x": 576.8859999999999, - "y": 439.2834840519894 + "x": 576.886, + "y": 439.28348 }, { "endCol": 12, @@ -28214,7 +28214,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -28300,197 +28300,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 605.8059999999998, - "y": 445.70275476702494 + "x": 605.806, + "y": 445.70275 }, { "body": null, "index": 1, "isInternal": false, - "x": 604.1249999999999, - "y": 452.52175476702496 + "x": 604.125, + "y": 452.52175 }, { "body": null, "index": 2, "isInternal": false, - "x": 600.8619999999999, - "y": 458.7397547670249 + "x": 600.862, + "y": 458.73975 }, { "body": null, "index": 3, "isInternal": false, - "x": 596.2039999999998, - "y": 463.9967547670249 + "x": 596.204, + "y": 463.99675 }, { "body": null, "index": 4, "isInternal": false, - "x": 590.4249999999998, - "y": 467.98675476702493 + "x": 590.425, + "y": 467.98675 }, { "body": null, "index": 5, "isInternal": false, - "x": 583.8579999999998, - "y": 470.47675476702494 + "x": 583.858, + "y": 470.47675 }, { "body": null, "index": 6, "isInternal": false, - "x": 576.8859999999999, - "y": 471.3237547670249 + "x": 576.886, + "y": 471.32375 }, { "body": null, "index": 7, "isInternal": false, - "x": 569.9139999999999, - "y": 470.47675476702494 + "x": 569.914, + "y": 470.47675 }, { "body": null, "index": 8, "isInternal": false, - "x": 563.3469999999999, - "y": 467.98675476702493 + "x": 563.347, + "y": 467.98675 }, { "body": null, "index": 9, "isInternal": false, - "x": 557.5679999999999, - "y": 463.9967547670249 + "x": 557.568, + "y": 463.99675 }, { "body": null, "index": 10, "isInternal": false, - "x": 552.9099999999999, - "y": 458.7397547670249 + "x": 552.91, + "y": 458.73975 }, { "body": null, "index": 11, "isInternal": false, - "x": 549.6469999999998, - "y": 452.52175476702496 + "x": 549.647, + "y": 452.52175 }, { "body": null, "index": 12, "isInternal": false, - "x": 547.9659999999999, - "y": 445.70275476702494 + "x": 547.966, + "y": 445.70275 }, { "body": null, "index": 13, "isInternal": false, - "x": 547.9659999999999, - "y": 438.67875476702494 + "x": 547.966, + "y": 438.67875 }, { "body": null, "index": 14, "isInternal": false, - "x": 549.6469999999998, - "y": 431.8597547670249 + "x": 549.647, + "y": 431.85975 }, { "body": null, "index": 15, "isInternal": false, - "x": 552.9099999999999, - "y": 425.64175476702496 + "x": 552.91, + "y": 425.64175 }, { "body": null, "index": 16, "isInternal": false, - "x": 557.5679999999999, - "y": 420.38475476702496 + "x": 557.568, + "y": 420.38475 }, { "body": null, "index": 17, "isInternal": false, - "x": 563.3469999999999, - "y": 416.39475476702495 + "x": 563.347, + "y": 416.39475 }, { "body": null, "index": 18, "isInternal": false, - "x": 569.9139999999999, - "y": 413.90475476702494 + "x": 569.914, + "y": 413.90475 }, { "body": null, "index": 19, "isInternal": false, - "x": 576.8859999999999, - "y": 413.05775476702496 + "x": 576.886, + "y": 413.05775 }, { "body": null, "index": 20, "isInternal": false, - "x": 583.8579999999998, - "y": 413.90475476702494 + "x": 583.858, + "y": 413.90475 }, { "body": null, "index": 21, "isInternal": false, - "x": 590.4249999999998, - "y": 416.39475476702495 + "x": 590.425, + "y": 416.39475 }, { "body": null, "index": 22, "isInternal": false, - "x": 596.2039999999998, - "y": 420.38475476702496 + "x": 596.204, + "y": 420.38475 }, { "body": null, "index": 23, "isInternal": false, - "x": 600.8619999999999, - "y": 425.64175476702496 + "x": 600.862, + "y": 425.64175 }, { "body": null, "index": 24, "isInternal": false, - "x": 604.1249999999999, - "y": 431.8597547670249 + "x": 604.125, + "y": 431.85975 }, { "body": null, "index": 25, "isInternal": false, - "x": 605.8059999999998, - "y": 438.67875476702494 + "x": 605.806, + "y": 438.67875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1471.137836, + "area": 1471.13784, "axes": { "#": 3160 }, "bounds": { "#": 3172 }, - "circleRadius": 21.787744341563787, + "circleRadius": 21.78774, "collisionFilter": { "#": 3175 }, @@ -28505,13 +28505,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 1377.853560326475, - "inverseInertia": 0.0007257665319404883, - "inverseMass": 0.6797459595757416, + "inertia": 1377.85356, + "inverseInertia": 0.00073, + "inverseMass": 0.67975, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.471137836, + "mass": 1.47114, "motion": 0, "parent": null, "position": { @@ -28533,7 +28533,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28581,44 +28581,44 @@ } ], { - "x": -0.9594963577098565, - "y": -0.281721031414978 + "x": -0.9595, + "y": -0.28172 }, { - "x": -0.8412361011132161, - "y": -0.5406679407768089 + "x": -0.84124, + "y": -0.54067 }, { - "x": -0.6548323101262885, - "y": -0.7557742027978122 + "x": -0.65483, + "y": -0.75577 }, { - "x": -0.4153938805090625, - "y": -0.9096416459439524 + "x": -0.41539, + "y": -0.90964 }, { - "x": -0.14239206996108283, - "y": -0.9898103345652631 + "x": -0.14239, + "y": -0.98981 }, { - "x": 0.14239206996108283, - "y": -0.9898103345652631 + "x": 0.14239, + "y": -0.98981 }, { - "x": 0.4153938805090625, - "y": -0.9096416459439524 + "x": 0.41539, + "y": -0.90964 }, { - "x": 0.6548323101262885, - "y": -0.7557742027978122 + "x": 0.65483, + "y": -0.75577 }, { - "x": 0.8412361011132161, - "y": -0.5406679407768089 + "x": 0.84124, + "y": -0.54067 }, { - "x": 0.9594963577098565, - "y": -0.281721031414978 + "x": 0.9595, + "y": -0.28172 }, { "x": 1, @@ -28633,12 +28633,12 @@ } }, { - "x": 658.9379999999999, - "y": 456.633754767025 + "x": 658.938, + "y": 456.63375 }, { - "x": 615.8059999999998, - "y": 413.05775476702496 + "x": 615.806, + "y": 413.05775 }, { "category": 1, @@ -28655,16 +28655,16 @@ "y": 0 }, { - "x": 637.3719999999998, - "y": 434.84575476702497 + "x": 637.372, + "y": 434.84575 }, { "x": 0, "y": 0 }, { - "x": 637.3719999999998, - "y": 431.9384840519894 + "x": 637.372, + "y": 431.93848 }, { "endCol": 13, @@ -28688,7 +28688,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -28762,169 +28762,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 658.9379999999999, - "y": 437.94675476702497 + "x": 658.938, + "y": 437.94675 }, { "body": null, "index": 1, "isInternal": false, - "x": 657.1909999999998, - "y": 443.89675476702496 + "x": 657.191, + "y": 443.89675 }, { "body": null, "index": 2, "isInternal": false, - "x": 653.8379999999999, - "y": 449.113754767025 + "x": 653.838, + "y": 449.11375 }, { "body": null, "index": 3, "isInternal": false, - "x": 649.1509999999998, - "y": 453.174754767025 + "x": 649.151, + "y": 453.17475 }, { "body": null, "index": 4, "isInternal": false, - "x": 643.5099999999999, - "y": 455.75075476702494 + "x": 643.51, + "y": 455.75075 }, { "body": null, "index": 5, "isInternal": false, - "x": 637.3719999999998, - "y": 456.633754767025 + "x": 637.372, + "y": 456.63375 }, { "body": null, "index": 6, "isInternal": false, - "x": 631.2339999999998, - "y": 455.75075476702494 + "x": 631.234, + "y": 455.75075 }, { "body": null, "index": 7, "isInternal": false, - "x": 625.5929999999998, - "y": 453.174754767025 + "x": 625.593, + "y": 453.17475 }, { "body": null, "index": 8, "isInternal": false, - "x": 620.9059999999998, - "y": 449.113754767025 + "x": 620.906, + "y": 449.11375 }, { "body": null, "index": 9, "isInternal": false, - "x": 617.5529999999999, - "y": 443.89675476702496 + "x": 617.553, + "y": 443.89675 }, { "body": null, "index": 10, "isInternal": false, - "x": 615.8059999999998, - "y": 437.94675476702497 + "x": 615.806, + "y": 437.94675 }, { "body": null, "index": 11, "isInternal": false, - "x": 615.8059999999998, - "y": 431.744754767025 + "x": 615.806, + "y": 431.74475 }, { "body": null, "index": 12, "isInternal": false, - "x": 617.5529999999999, - "y": 425.794754767025 + "x": 617.553, + "y": 425.79475 }, { "body": null, "index": 13, "isInternal": false, - "x": 620.9059999999998, - "y": 420.57775476702494 + "x": 620.906, + "y": 420.57775 }, { "body": null, "index": 14, "isInternal": false, - "x": 625.5929999999998, - "y": 416.51675476702496 + "x": 625.593, + "y": 416.51675 }, { "body": null, "index": 15, "isInternal": false, - "x": 631.2339999999998, - "y": 413.940754767025 + "x": 631.234, + "y": 413.94075 }, { "body": null, "index": 16, "isInternal": false, - "x": 637.3719999999998, - "y": 413.05775476702496 + "x": 637.372, + "y": 413.05775 }, { "body": null, "index": 17, "isInternal": false, - "x": 643.5099999999999, - "y": 413.940754767025 + "x": 643.51, + "y": 413.94075 }, { "body": null, "index": 18, "isInternal": false, - "x": 649.1509999999998, - "y": 416.51675476702496 + "x": 649.151, + "y": 416.51675 }, { "body": null, "index": 19, "isInternal": false, - "x": 653.8379999999999, - "y": 420.57775476702494 + "x": 653.838, + "y": 420.57775 }, { "body": null, "index": 20, "isInternal": false, - "x": 657.1909999999998, - "y": 425.794754767025 + "x": 657.191, + "y": 425.79475 }, { "body": null, "index": 21, "isInternal": false, - "x": 658.9379999999999, - "y": 431.744754767025 + "x": 658.938, + "y": 431.74475 }, { - "angle": -0.045521055083534614, - "anglePrev": -0.0385573076670497, - "angularSpeed": 0.006963747416484915, - "angularVelocity": -0.006963747416484915, - "area": 2365.7444480000004, + "angle": -0.04552, + "anglePrev": -0.03856, + "angularSpeed": 0.00696, + "angularVelocity": -0.00696, + "area": 2365.74445, "axes": { "#": 3209 }, "bounds": { "#": 3223 }, - "circleRadius": 27.57568158436214, + "circleRadius": 27.57568, "collisionFilter": { "#": 3226 }, @@ -28939,13 +28939,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 3563.0676528597355, - "inverseInertia": 0.00028065703417037147, - "inverseMass": 0.4226999246877234, + "inertia": 3563.06765, + "inverseInertia": 0.00028, + "inverseMass": 0.4227, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.3657444480000005, + "mass": 2.36574, "motion": 0, "parent": null, "position": { @@ -28967,7 +28967,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1180864547259532, + "speed": 2.11809, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29021,56 +29021,56 @@ } ], { - "x": -0.9808195530815397, - "y": -0.19491794246022778 + "x": -0.98082, + "y": -0.19492 }, { - "x": -0.9056712527607337, - "y": -0.423980638617854 + "x": -0.90567, + "y": -0.42398 }, { - "x": -0.7779358385477578, - "y": -0.6283437205089238 + "x": -0.77794, + "y": -0.62834 }, { - "x": -0.6048910874253753, - "y": -0.7963082144203629 + "x": -0.60489, + "y": -0.79631 }, { - "x": -0.3967318319688009, - "y": -0.9179345583987342 + "x": -0.39673, + "y": -0.91793 }, { - "x": -0.16569380703100176, - "y": -0.986177246904213 + "x": -0.16569, + "y": -0.98618 }, { - "x": 0.07534791308733403, - "y": -0.9971573055407977 + "x": 0.07535, + "y": -0.99716 }, { - "x": 0.311633479782603, - "y": -0.950202385957111 + "x": 0.31163, + "y": -0.9502 }, { - "x": 0.5299884781431377, - "y": -0.8480048425778717 + "x": 0.52999, + "y": -0.848 }, { - "x": 0.7175872953102413, - "y": -0.6964685733106213 + "x": 0.71759, + "y": -0.69647 }, { - "x": 0.8633736511958047, - "y": -0.5045650982983519 + "x": 0.86337, + "y": -0.50457 }, { - "x": 0.9590362810322587, - "y": -0.2832832710624025 + "x": 0.95904, + "y": -0.28328 }, { - "x": 0.9989640956710928, - "y": -0.0455053355117378 + "x": 0.99896, + "y": -0.04551 }, { "max": { @@ -29081,12 +29081,12 @@ } }, { - "x": 121.25230993699977, - "y": 509.6343086754629 + "x": 121.25231, + "y": 509.63431 }, { - "x": 65.10046841051863, - "y": 452.76465446328945 + "x": 65.10047, + "y": 452.76465 }, { "category": 1, @@ -29103,16 +29103,16 @@ "y": 0 }, { - "x": 93.75440808276261, - "y": 480.31208836551554 + "x": 93.75441, + "y": 480.31209 }, { - "x": -0.43133552065710745, - "y": -0.2444344725333618 + "x": -0.43134, + "y": -0.24443 }, { - "x": 94.9104459007694, - "y": 478.5373019577944 + "x": 94.91045, + "y": 478.5373 }, { "endCol": 2, @@ -29135,8 +29135,8 @@ "yScale": 1 }, { - "x": -1.1560378180068, - "y": 1.7747864077211188 + "x": -1.15604, + "y": 1.77479 }, [ { @@ -29222,197 +29222,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 121.25230993699977, - "y": 482.3869364598924 + "x": 121.25231, + "y": 482.38694 }, { "body": null, "index": 1, "isInternal": false, - "x": 119.95664949617978, - "y": 488.90664972215285 + "x": 119.95665, + "y": 488.90665 }, { "body": null, "index": 2, "isInternal": false, - "x": 117.13774035071378, - "y": 494.9281628400998 + "x": 117.13774, + "y": 494.92816 }, { "body": null, "index": 3, "isInternal": false, - "x": 112.960741166502, - "y": 500.099595699095 + "x": 112.96074, + "y": 500.0996 }, { "body": null, "index": 4, "isInternal": false, - "x": 107.66723674597777, - "y": 504.1206438149338 + "x": 107.66724, + "y": 504.12064 }, { "body": null, "index": 5, "isInternal": false, - "x": 101.5649320030874, - "y": 506.7580633539716 + "x": 101.56493, + "y": 506.75806 }, { "body": null, "index": 6, "isInternal": false, - "x": 95.0092632148343, - "y": 507.85952226774174 + "x": 95.00926, + "y": 507.85952 }, { "body": null, "index": 7, "isInternal": false, - "x": 88.38060386842035, - "y": 507.3586427720555 + "x": 88.3806, + "y": 507.35864 }, { "body": null, "index": 8, "isInternal": false, - "x": 82.06378697392766, - "y": 505.2869455640996 + "x": 82.06379, + "y": 505.28695 }, { "body": null, "index": 9, "isInternal": false, - "x": 76.42662625961876, - "y": 501.7638168294303 + "x": 76.42663, + "y": 501.76382 }, { "body": null, "index": 10, "isInternal": false, - "x": 71.7967579763942, - "y": 496.99355900830665 + "x": 71.79676, + "y": 496.99356 }, { "body": null, "index": 11, "isInternal": false, - "x": 68.44206901061293, - "y": 491.25326886382214 + "x": 68.44207, + "y": 491.25327 }, { "body": null, "index": 12, "isInternal": false, - "x": 66.55902569900744, - "y": 484.8783535791601 + "x": 66.55903, + "y": 484.87835 }, { "body": null, "index": 13, "isInternal": false, - "x": 66.25650622852542, - "y": 478.23724027113866 + "x": 66.25651, + "y": 478.23724 }, { "body": null, "index": 14, "isInternal": false, - "x": 67.55216666934541, - "y": 471.7175270088782 + "x": 67.55217, + "y": 471.71753 }, { "body": null, "index": 15, "isInternal": false, - "x": 70.37107581481143, - "y": 465.6960138909313 + "x": 70.37108, + "y": 465.69601 }, { "body": null, "index": 16, "isInternal": false, - "x": 74.54807499902321, - "y": 460.5245810319361 + "x": 74.54807, + "y": 460.52458 }, { "body": null, "index": 17, "isInternal": false, - "x": 79.84157941954746, - "y": 456.50353291609736 + "x": 79.84158, + "y": 456.50353 }, { "body": null, "index": 18, "isInternal": false, - "x": 85.94388416243778, - "y": 453.8661133770596 + "x": 85.94388, + "y": 453.86611 }, { "body": null, "index": 19, "isInternal": false, - "x": 92.49955295069088, - "y": 452.76465446328945 + "x": 92.49955, + "y": 452.76465 }, { "body": null, "index": 20, "isInternal": false, - "x": 99.12821229710484, - "y": 453.2655339589757 + "x": 99.12821, + "y": 453.26553 }, { "body": null, "index": 21, "isInternal": false, - "x": 105.44502919159756, - "y": 455.3372311669316 + "x": 105.44503, + "y": 455.33723 }, { "body": null, "index": 22, "isInternal": false, - "x": 111.08218990590646, - "y": 458.8603599016009 + "x": 111.08219, + "y": 458.86036 }, { "body": null, "index": 23, "isInternal": false, - "x": 115.71205818913099, - "y": 463.6306177227244 + "x": 115.71206, + "y": 463.63062 }, { "body": null, "index": 24, "isInternal": false, - "x": 119.06674715491229, - "y": 469.3709078672089 + "x": 119.06675, + "y": 469.37091 }, { "body": null, "index": 25, "isInternal": false, - "x": 120.9497904665177, - "y": 475.745823151871 + "x": 120.94979, + "y": 475.74582 }, { - "angle": -0.026761234486610896, - "anglePrev": -0.016061216177095324, - "angularSpeed": 0.009808162469204806, - "angularVelocity": -0.011588490937321878, - "area": 1383.139406, + "angle": -0.02676, + "anglePrev": -0.01606, + "angularSpeed": 0.00981, + "angularVelocity": -0.01159, + "area": 1383.13941, "axes": { "#": 3264 }, "bounds": { "#": 3276 }, - "circleRadius": 21.125964506172842, + "circleRadius": 21.12596, "collisionFilter": { "#": 3279 }, @@ -29427,13 +29427,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 1217.9465841027236, - "inverseInertia": 0.0008210540700655706, - "inverseMass": 0.7229929215103282, + "inertia": 1217.94658, + "inverseInertia": 0.00082, + "inverseMass": 0.72299, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.383139406, + "mass": 1.38314, "motion": 0, "parent": null, "position": { @@ -29455,7 +29455,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4722168108482485, + "speed": 1.47222, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29503,48 +29503,48 @@ } ], { - "x": -0.9666852195204407, - "y": -0.25596813544017 + "x": -0.96669, + "y": -0.25597 }, { - "x": -0.8554348784052984, - "y": -0.5179103868505754 + "x": -0.85543, + "y": -0.51791 }, { - "x": -0.6748116736151721, - "y": -0.7379899763226399 + "x": -0.67481, + "y": -0.73799 }, { - "x": -0.4395973671429438, - "y": -0.8981949425380839 + "x": -0.4396, + "y": -0.89819 }, { - "x": -0.16878713824527303, - "y": -0.9856525259760515 + "x": -0.16879, + "y": -0.98565 }, { - "x": 0.11581606443682223, - "y": -0.9932706777200089 + "x": 0.11582, + "y": -0.99327 }, { - "x": 0.39091720826138643, - "y": -0.9204258450766817 + "x": 0.39092, + "y": -0.92043 }, { - "x": 0.6343651633280342, - "y": -0.7730335306801359 + "x": 0.63437, + "y": -0.77303 }, { - "x": 0.8265032982304115, - "y": -0.5629318768858727 + "x": 0.8265, + "y": -0.56293 }, { - "x": 0.9516074338128148, - "y": -0.307316273425585 + "x": 0.95161, + "y": -0.30732 }, { - "x": 0.9996419395342997, - "y": -0.02675804036366594 + "x": 0.99964, + "y": -0.02676 }, { "max": { @@ -29555,12 +29555,12 @@ } }, { - "x": 197.40552469654716, - "y": 502.1697846945647 + "x": 197.40552, + "y": 502.16978 }, { - "x": 154.24742503803188, - "y": 459.0663331247266 + "x": 154.24743, + "y": 459.06633 }, { "category": 1, @@ -29577,16 +29577,16 @@ "y": 0 }, { - "x": 176.42155067157188, - "y": 480.1847687393282 + "x": 176.42155, + "y": 480.18477 }, { "x": 0, "y": 0 }, { - "x": 177.8063918783166, - "y": 479.5404006624681 + "x": 177.80639, + "y": 479.5404 }, { "endCol": 4, @@ -29609,8 +29609,8 @@ "yScale": 1 }, { - "x": -1.3231240024395277, - "y": 0.6691904123255767 + "x": -1.32312, + "y": 0.66919 }, [ { @@ -29684,169 +29684,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 197.40552469654716, - "y": 482.63115466946317 + "x": 197.40552, + "y": 482.63115 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.86649838583406, - "y": 488.44341713901264 + "x": 195.8665, + "y": 488.44342 }, { "body": null, "index": 2, "isInternal": false, - "x": 192.7520313666078, - "y": 493.58759610033894 + "x": 192.75203, + "y": 493.5876 }, { "body": null, "index": 3, "isInternal": false, - "x": 188.3150047982757, - "y": 497.64477495169797 + "x": 188.315, + "y": 497.64477 }, { "body": null, "index": 4, "isInternal": false, - "x": 182.9138049738515, - "y": 500.2882469974439 + "x": 182.9138, + "y": 500.28825 }, { "body": null, "index": 5, "isInternal": false, - "x": 176.98684103229468, - "y": 501.3032043539298 + "x": 176.98684, + "y": 501.3032 }, { "body": null, "index": 6, "isInternal": false, - "x": 171.01406732563524, - "y": 500.606774709933 + "x": 171.01407, + "y": 500.60677 }, { "body": null, "index": 7, "isInternal": false, - "x": 165.4791843315542, - "y": 498.25603562576566 + "x": 165.47918, + "y": 498.25604 }, { "body": null, "index": 8, "isInternal": false, - "x": 160.83146495339858, - "y": 494.44203384523155 + "x": 160.83146, + "y": 494.44203 }, { "body": null, "index": 9, "isInternal": false, - "x": 157.4462600817728, - "y": 489.47183566234986 + "x": 157.44626, + "y": 489.47184 }, { "body": null, "index": 10, "isInternal": false, - "x": 155.5984995013437, - "y": 483.7502294335524 + "x": 155.5985, + "y": 483.75023 }, { "body": null, "index": 11, "isInternal": false, - "x": 155.4375766465966, - "y": 477.73838280919324 + "x": 155.43758, + "y": 477.73838 }, { "body": null, "index": 12, "isInternal": false, - "x": 156.9766029573097, - "y": 471.9261203396438 + "x": 156.9766, + "y": 471.92612 }, { "body": null, "index": 13, "isInternal": false, - "x": 160.09106997653595, - "y": 466.78194137831747 + "x": 160.09107, + "y": 466.78194 }, { "body": null, "index": 14, "isInternal": false, - "x": 164.52809654486805, - "y": 462.72476252695844 + "x": 164.5281, + "y": 462.72476 }, { "body": null, "index": 15, "isInternal": false, - "x": 169.92929636929225, - "y": 460.08129048121253 + "x": 169.9293, + "y": 460.08129 }, { "body": null, "index": 16, "isInternal": false, - "x": 175.85626031084908, - "y": 459.0663331247266 + "x": 175.85626, + "y": 459.06633 }, { "body": null, "index": 17, "isInternal": false, - "x": 181.82903401750852, - "y": 459.7627627687234 + "x": 181.82903, + "y": 459.76276 }, { "body": null, "index": 18, "isInternal": false, - "x": 187.36391701158956, - "y": 462.11350185289075 + "x": 187.36392, + "y": 462.1135 }, { "body": null, "index": 19, "isInternal": false, - "x": 192.01163638974518, - "y": 465.92750363342486 + "x": 192.01164, + "y": 465.9275 }, { "body": null, "index": 20, "isInternal": false, - "x": 195.39684126137095, - "y": 470.89770181630655 + "x": 195.39684, + "y": 470.8977 }, { "body": null, "index": 21, "isInternal": false, - "x": 197.24460184180006, - "y": 476.619308045104 + "x": 197.2446, + "y": 476.61931 }, { - "angle": 0.12320538727523647, - "anglePrev": 0.09667162508386491, - "angularSpeed": 0.02287040601984309, - "angularVelocity": 0.026119163060810732, - "area": 1920.5538560000002, + "angle": 0.12321, + "anglePrev": 0.09667, + "angularSpeed": 0.02287, + "angularVelocity": 0.02612, + "area": 1920.55386, "axes": { "#": 3313 }, "bounds": { "#": 3327 }, - "circleRadius": 24.846000514403293, + "circleRadius": 24.846, "collisionFilter": { "#": 3330 }, @@ -29861,13 +29861,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 2348.234095514853, - "inverseInertia": 0.0004258519207731497, - "inverseMass": 0.5206831336053925, + "inertia": 2348.2341, + "inverseInertia": 0.00043, + "inverseMass": 0.52068, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9205538560000002, + "mass": 1.92055, "motion": 0, "parent": null, "position": { @@ -29889,7 +29889,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3086531723425416, + "speed": 1.30865, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29943,56 +29943,56 @@ } ], { - "x": -0.9341434158552027, - "y": -0.3568978545948035 + "x": -0.93414, + "y": -0.3569 }, { - "x": -0.8216517567164382, - "y": -0.5699898162991951 + "x": -0.82165, + "y": -0.56999 }, { - "x": -0.661304852217999, - "y": -0.7501172524565279 + "x": -0.6613, + "y": -0.75012 }, { - "x": -0.4627111986942606, - "y": -0.8865090786917642 + "x": -0.46271, + "y": -0.88651 }, { - "x": -0.23698193998332653, - "y": -0.9715140555451263 + "x": -0.23698, + "y": -0.97151 }, { - "x": 0.00237077356257865, - "y": -0.9999971897124086 + "x": 0.00237, + "y": -1 }, { - "x": 0.24162488013327785, - "y": -0.9703697322673346 + "x": 0.24162, + "y": -0.97037 }, { - "x": 0.46680000492013685, - "y": -0.8843629093344882 + "x": 0.4668, + "y": -0.88436 }, { - "x": 0.6649761075650458, - "y": -0.7468646305507048 + "x": 0.66498, + "y": -0.74686 }, { - "x": 0.8243017353128074, - "y": -0.566150730071325 + "x": 0.8243, + "y": -0.56615 }, { - "x": 0.9358676921805321, - "y": -0.3523516180361378 + "x": 0.93587, + "y": -0.35235 }, { - "x": 0.9929830482924329, - "y": -0.11825677910321998 + "x": 0.99298, + "y": -0.11826 }, { - "x": 0.9924198122194648, - "y": 0.12289392301607921 + "x": 0.99242, + "y": 0.12289 }, { "max": { @@ -30003,12 +30003,12 @@ } }, { - "x": 268.9962245001381, - "y": 508.0084266395404 + "x": 268.99622, + "y": 508.00843 }, { - "x": 218.3773476750646, - "y": 457.7406607041083 + "x": 218.37735, + "y": 457.74066 }, { "category": 1, @@ -30025,16 +30025,16 @@ "y": 0 }, { - "x": 244.15012253231183, - "y": 482.41252352034434 + "x": 244.15012, + "y": 482.41252 }, { - "x": -0.19188246266587328, - "y": -0.01191514284039886 + "x": -0.19188, + "y": -0.01192 }, { - "x": 245.4329048063965, - "y": 481.6262534159907 + "x": 245.4329, + "y": 481.62625 }, { "endCol": 5, @@ -30057,8 +30057,8 @@ "yScale": 1 }, { - "x": -1.2213514251237996, - "y": 0.7596551685246027 + "x": -1.22135, + "y": 0.75966 }, [ { @@ -30144,197 +30144,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 268.26008990127167, - "y": 488.4159994691332 + "x": 268.26009, + "y": 488.416 }, { "body": null, "index": 1, "isInternal": false, - "x": 266.1222088342875, - "y": 494.01168321139653 + "x": 266.12221, + "y": 494.01168 }, { "body": null, "index": 2, "isInternal": false, - "x": 262.70859802312646, - "y": 498.9324716878427 + "x": 262.7086, + "y": 498.93247 }, { "body": null, "index": 3, "isInternal": false, - "x": 258.2157730721097, - "y": 502.8933550438026 + "x": 258.21577, + "y": 502.89336 }, { "body": null, "index": 4, "isInternal": false, - "x": 252.90592779765626, - "y": 505.6648155182392 + "x": 252.90593, + "y": 505.66482 }, { "body": null, "index": 5, "isInternal": false, - "x": 247.0863577369288, - "y": 507.0843863365804 + "x": 247.08636, + "y": 507.08439 }, { "body": null, "index": 6, "isInternal": false, - "x": 241.09670012105434, - "y": 507.0701861747492 + "x": 241.0967, + "y": 507.07019 }, { "body": null, "index": 7, "isInternal": false, - "x": 235.28450133001502, - "y": 505.6229318040732 + "x": 235.2845, + "y": 505.62293 }, { "body": null, "index": 8, "isInternal": false, - "x": 229.9869846542599, - "y": 502.82670326010583 + "x": 229.98698, + "y": 502.8267 }, { "body": null, "index": 9, "isInternal": false, - "x": 225.51355541985393, - "y": 498.8437544925768 + "x": 225.51356, + "y": 498.84375 }, { "body": null, "index": 10, "isInternal": false, - "x": 222.12259738259928, - "y": 493.90660181217703 + "x": 222.1226, + "y": 493.9066 }, { "body": null, "index": 11, "isInternal": false, - "x": 220.01239951894678, - "y": 488.30178576022354 + "x": 220.0124, + "y": 488.30179 }, { "body": null, "index": 12, "isInternal": false, - "x": 219.30402056448554, - "y": 482.35364224675 + "x": 219.30402, + "y": 482.35364 }, { "body": null, "index": 13, "isInternal": false, - "x": 220.0401551633519, - "y": 476.40904757155545 + "x": 220.04016, + "y": 476.40905 }, { "body": null, "index": 14, "isInternal": false, - "x": 222.17803623033606, - "y": 470.81336382929214 + "x": 222.17804, + "y": 470.81336 }, { "body": null, "index": 15, "isInternal": false, - "x": 225.59164704149717, - "y": 465.892575352846 + "x": 225.59165, + "y": 465.89258 }, { "body": null, "index": 16, "isInternal": false, - "x": 230.08447199251393, - "y": 461.931691996886 + "x": 230.08447, + "y": 461.93169 }, { "body": null, "index": 17, "isInternal": false, - "x": 235.39431726696745, - "y": 459.16023152244946 + "x": 235.39432, + "y": 459.16023 }, { "body": null, "index": 18, "isInternal": false, - "x": 241.2138873276948, - "y": 457.7406607041083 + "x": 241.21389, + "y": 457.74066 }, { "body": null, "index": 19, "isInternal": false, - "x": 247.20354494356928, - "y": 457.7548608659395 + "x": 247.20354, + "y": 457.75486 }, { "body": null, "index": 20, "isInternal": false, - "x": 253.0157437346086, - "y": 459.20211523661555 + "x": 253.01574, + "y": 459.20212 }, { "body": null, "index": 21, "isInternal": false, - "x": 258.3132604103636, - "y": 461.99834378058284 + "x": 258.31326, + "y": 461.99834 }, { "body": null, "index": 22, "isInternal": false, - "x": 262.78668964476964, - "y": 465.98129254811187 + "x": 262.78669, + "y": 465.98129 }, { "body": null, "index": 23, "isInternal": false, - "x": 266.17764768202437, - "y": 470.91844522851164 + "x": 266.17765, + "y": 470.91845 }, { "body": null, "index": 24, "isInternal": false, - "x": 268.28784554567676, - "y": 476.52326128046514 + "x": 268.28785, + "y": 476.52326 }, { "body": null, "index": 25, "isInternal": false, - "x": 268.9962245001381, - "y": 482.4714047939387 + "x": 268.99622, + "y": 482.4714 }, { - "angle": -0.06182817553520137, - "anglePrev": -0.051840405523907965, - "angularSpeed": 0.014238487839508481, - "angularVelocity": -0.011172565582075515, - "area": 1313.5341700000001, + "angle": -0.06183, + "anglePrev": -0.05184, + "angularSpeed": 0.01424, + "angularVelocity": -0.01117, + "area": 1313.53417, "axes": { "#": 3368 }, "bounds": { "#": 3380 }, - "circleRadius": 20.58764146090535, + "circleRadius": 20.58764, "collisionFilter": { "#": 3383 }, @@ -30349,13 +30349,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1098.4469373075985, - "inverseInertia": 0.000910376246713472, - "inverseMass": 0.7613049000468712, + "inertia": 1098.44694, + "inverseInertia": 0.00091, + "inverseMass": 0.7613, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.31353417, + "mass": 1.31353, "motion": 0, "parent": null, "position": { @@ -30377,7 +30377,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4358897356664855, + "speed": 1.43589, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30425,48 +30425,48 @@ } ], { - "x": -0.9750591078606371, - "y": -0.22194534502444216 + "x": -0.97506, + "y": -0.22195 }, { - "x": -0.8730739505870259, - "y": -0.4875878144563951 + "x": -0.87307, + "y": -0.48759 }, { - "x": -0.7003170047975296, - "y": -0.7138319779832067 + "x": -0.70032, + "y": -0.71383 }, { - "x": -0.47088298874560064, - "y": -0.8821956760889335 + "x": -0.47088, + "y": -0.8822 }, { - "x": -0.20321698679599046, - "y": -0.9791337274742192 + "x": -0.20322, + "y": -0.97913 }, { - "x": 0.08089750146254619, - "y": -0.9967224258825111 + "x": 0.0809, + "y": -0.99672 }, { - "x": 0.3584761639953697, - "y": -0.9335388796655254 + "x": 0.35848, + "y": -0.93354 }, { - "x": 0.6069245122204606, - "y": -0.7947594834073743 + "x": 0.60692, + "y": -0.79476 }, { - "x": 0.8062676206951516, - "y": -0.5915509477792926 + "x": 0.80627, + "y": -0.59155 }, { - "x": 0.9402387778756287, - "y": -0.3405158448280258 + "x": 0.94024, + "y": -0.34052 }, { - "x": 0.9980892471613028, - "y": -0.06178879106265255 + "x": 0.99809, + "y": -0.06179 }, { "max": { @@ -30477,12 +30477,12 @@ } }, { - "x": 309.2950856221561, - "y": 502.89025327362464 + "x": 309.29509, + "y": 502.89025 }, { - "x": 267.4565245900857, - "y": 460.5994434208736 + "x": 267.45652, + "y": 460.59944 }, { "category": 1, @@ -30499,16 +30499,16 @@ "y": 0 }, { - "x": 288.77498178568953, - "y": 481.14810484143055 + "x": 288.77498, + "y": 481.1481 }, { - "x": -0.22553777595636101, - "y": -0.0997215144340898 + "x": -0.22554, + "y": -0.09972 }, { - "x": 290.0102127105214, - "y": 479.65394313054253 + "x": 290.01021, + "y": 479.65394 }, { "endCol": 6, @@ -30531,8 +30531,8 @@ "yScale": 1 }, { - "x": -1.2533093958039103, - "y": 1.6223775221988035 + "x": -1.25331, + "y": 1.62238 }, [ { @@ -30606,169 +30606,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 309.2950856221561, - "y": 482.8133743513385 + "x": 309.29509, + "y": 482.81337 }, { "body": null, "index": 1, "isInternal": false, - "x": 307.99461685844693, - "y": 488.5266453929237 + "x": 307.99462, + "y": 488.52665 }, { "body": null, "index": 2, "isInternal": false, - "x": 305.1372888633789, - "y": 493.64297227151536 + "x": 305.13729, + "y": 493.64297 }, { "body": null, "index": 3, "isInternal": false, - "x": 300.9548332682561, - "y": 497.7462414796987 + "x": 300.95483, + "y": 497.74624 }, { "body": null, "index": 4, "isInternal": false, - "x": 295.78447519787676, - "y": 500.5059848416916 + "x": 295.78448, + "y": 500.50598 }, { "body": null, "index": 5, "isInternal": false, - "x": 290.04708941608743, - "y": 501.6967662619875 + "x": 290.04709, + "y": 501.69677 }, { "body": null, "index": 6, "isInternal": false, - "x": 284.2066399308055, - "y": 501.22273481801835 + "x": 284.20664, + "y": 501.22273 }, { "body": null, "index": 7, "isInternal": false, - "x": 278.73537044795114, - "y": 499.1217835463355 + "x": 278.73537, + "y": 499.12178 }, { "body": null, "index": 8, "isInternal": false, - "x": 274.07874767021343, - "y": 495.5657158718031 + "x": 274.07875, + "y": 495.56572 }, { "body": null, "index": 9, "isInternal": false, - "x": 270.6121821952677, - "y": 490.8408827733843 + "x": 270.61218, + "y": 490.84088 }, { "body": null, "index": 10, "isInternal": false, - "x": 268.61696026485, - "y": 485.3316383198879 + "x": 268.61696, + "y": 485.33164 }, { "body": null, "index": 11, "isInternal": false, - "x": 268.254877949223, - "y": 479.4828353315226 + "x": 268.25488, + "y": 479.48284 }, { "body": null, "index": 12, "isInternal": false, - "x": 269.55534671293213, - "y": 473.7695642899374 + "x": 269.55535, + "y": 473.76956 }, { "body": null, "index": 13, "isInternal": false, - "x": 272.41267470800017, - "y": 468.65323741134574 + "x": 272.41267, + "y": 468.65324 }, { "body": null, "index": 14, "isInternal": false, - "x": 276.59513030312297, - "y": 464.5499682031624 + "x": 276.59513, + "y": 464.54997 }, { "body": null, "index": 15, "isInternal": false, - "x": 281.7654883735023, - "y": 461.7902248411695 + "x": 281.76549, + "y": 461.79022 }, { "body": null, "index": 16, "isInternal": false, - "x": 287.50287415529164, - "y": 460.5994434208736 + "x": 287.50287, + "y": 460.59944 }, { "body": null, "index": 17, "isInternal": false, - "x": 293.34332364057354, - "y": 461.07347486484275 + "x": 293.34332, + "y": 461.07347 }, { "body": null, "index": 18, "isInternal": false, - "x": 298.8145931234279, - "y": 463.1744261365256 + "x": 298.81459, + "y": 463.17443 }, { "body": null, "index": 19, "isInternal": false, - "x": 303.47121590116564, - "y": 466.730493811058 + "x": 303.47122, + "y": 466.73049 }, { "body": null, "index": 20, "isInternal": false, - "x": 306.9377813761114, - "y": 471.4553269094768 + "x": 306.93778, + "y": 471.45533 }, { "body": null, "index": 21, "isInternal": false, - "x": 308.9330033065291, - "y": 476.96457136297323 + "x": 308.933, + "y": 476.96457 }, { - "angle": -0.0009043305130170126, - "anglePrev": 0.005927210850577193, - "angularSpeed": 0.006034567571687996, - "angularVelocity": -0.00682651659024416, - "area": 1407.836766, + "angle": -0.0009, + "anglePrev": 0.00593, + "angularSpeed": 0.00603, + "angularVelocity": -0.00683, + "area": 1407.83677, "axes": { "#": 3417 }, "bounds": { "#": 3429 }, - "circleRadius": 21.313850308641975, + "circleRadius": 21.31385, "collisionFilter": { "#": 3432 }, @@ -30783,13 +30783,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 1261.8302598027851, - "inverseInertia": 0.0007924996188919204, - "inverseMass": 0.7103096212220956, + "inertia": 1261.83026, + "inverseInertia": 0.00079, + "inverseMass": 0.71031, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.407836766, + "mass": 1.40784, "motion": 0, "parent": null, "position": { @@ -30811,7 +30811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6890136627698129, + "speed": 0.68901, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30859,48 +30859,48 @@ } ], { - "x": -0.9597562360825697, - "y": -0.2808344126004124 + "x": -0.95976, + "y": -0.28083 }, { - "x": -0.8417527087276742, - "y": -0.5398632950568348 + "x": -0.84175, + "y": -0.53986 }, { - "x": -0.6554568742705458, - "y": -0.7552326038853763 + "x": -0.65546, + "y": -0.75523 }, { - "x": -0.41623933757713827, - "y": -0.9092550873398207 + "x": -0.41624, + "y": -0.90926 }, { - "x": -0.14330861942833295, - "y": -0.9896780484569438 + "x": -0.14331, + "y": -0.98968 }, { - "x": 0.14151839389025322, - "y": -0.9899356262862363 + "x": 0.14152, + "y": -0.98994 }, { - "x": 0.41459412342229773, - "y": -0.9100064355946592 + "x": 0.41459, + "y": -0.91001 }, { - "x": 0.6540898431561409, - "y": -0.7564168672630022 + "x": 0.65409, + "y": -0.75642 }, { - "x": 0.8407749027654972, - "y": -0.5413848565296866 + "x": 0.84077, + "y": -0.54138 }, { - "x": 0.9592467322995359, - "y": -0.28256982601237207 + "x": 0.95925, + "y": -0.28257 }, { - "x": 0.9999995910931895, - "y": -0.0009043303897547043 + "x": 1, + "y": -0.0009 }, { "max": { @@ -30911,12 +30911,12 @@ } }, { - "x": 365.1710788901671, - "y": 499.67210516148987 + "x": 365.17108, + "y": 499.67211 }, { - "x": 322.8242612777305, - "y": 456.37104901435663 + "x": 322.82426, + "y": 456.37105 }, { "category": 1, @@ -30933,16 +30933,16 @@ "y": 0 }, { - "x": 344.071344682802, - "y": 477.68504029891693 + "x": 344.07134, + "y": 477.68504 }, { "x": 0, "y": 0 }, { - "x": 344.20241027455717, - "y": 477.28417775944337 + "x": 344.20241, + "y": 477.28418 }, { "endCol": 7, @@ -30965,8 +30965,8 @@ "yScale": 1 }, { - "x": -0.1309550791730203, - "y": 0.38927599222324716 + "x": -0.13096, + "y": 0.38928 }, [ { @@ -31040,169 +31040,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 365.1710788901671, - "y": 480.69896040046996 + "x": 365.17108, + "y": 480.69896 }, { "body": null, "index": 1, "isInternal": false, - "x": 363.46734369618764, - "y": 486.5215035208594 + "x": 363.46734, + "y": 486.5215 }, { "body": null, "index": 2, "isInternal": false, - "x": 360.19196073971136, - "y": 491.62846763747757 + "x": 360.19196, + "y": 491.62847 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.6105546148571, - "y": 495.60461236813666 + "x": 355.61055, + "y": 495.60461 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.0948357837872, - "y": 498.1296014327822 + "x": 350.09484, + "y": 498.1296 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.0906195807293, - "y": 498.99903158347723 + "x": 344.09062, + "y": 498.99903 }, { "body": null, "index": 6, "isInternal": false, - "x": 338.0848406947579, - "y": 498.1404624407631 + "x": 338.08484, + "y": 498.14046 }, { "body": null, "index": 7, "isInternal": false, - "x": 332.5645640385235, - "y": 495.6254535662991 + "x": 332.56456, + "y": 495.62545 }, { "body": null, "index": 8, "isInternal": false, - "x": 327.9759739130532, - "y": 491.6576015453139 + "x": 327.97597, + "y": 491.6576 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.6913595519582, - "y": 486.55656983605263 + "x": 324.69136, + "y": 486.55657 }, { "body": null, "index": 10, "isInternal": false, - "x": 322.9770961435812, - "y": 480.7371177169353 + "x": 322.9771, + "y": 480.73712 }, { "body": null, "index": 11, "isInternal": false, - "x": 322.97161047543693, - "y": 474.6711201973639 + "x": 322.97161, + "y": 474.67112 }, { "body": null, "index": 12, "isInternal": false, - "x": 324.6753456694164, - "y": 468.84857707697444 + "x": 324.67535, + "y": 468.84858 }, { "body": null, "index": 13, "isInternal": false, - "x": 327.9507286258927, - "y": 463.7416129603563 + "x": 327.95073, + "y": 463.74161 }, { "body": null, "index": 14, "isInternal": false, - "x": 332.53213475074693, - "y": 459.7654682296972 + "x": 332.53213, + "y": 459.76547 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.04785358181687, - "y": 457.2404791650517 + "x": 338.04785, + "y": 457.24048 }, { "body": null, "index": 16, "isInternal": false, - "x": 344.05206978487473, - "y": 456.37104901435663 + "x": 344.05207, + "y": 456.37105 }, { "body": null, "index": 17, "isInternal": false, - "x": 350.05784867084617, - "y": 457.2296181570708 + "x": 350.05785, + "y": 457.22962 }, { "body": null, "index": 18, "isInternal": false, - "x": 355.57812532708056, - "y": 459.7446270315348 + "x": 355.57813, + "y": 459.74463 }, { "body": null, "index": 19, "isInternal": false, - "x": 360.1667154525508, - "y": 463.71247905251994 + "x": 360.16672, + "y": 463.71248 }, { "body": null, "index": 20, "isInternal": false, - "x": 363.4513298136458, - "y": 468.81351076178123 + "x": 363.45133, + "y": 468.81351 }, { "body": null, "index": 21, "isInternal": false, - "x": 365.16559322202284, - "y": 474.63296288089856 + "x": 365.16559, + "y": 474.63296 }, { - "angle": 0.05295319757221982, - "anglePrev": 0.027017906866309883, - "angularSpeed": 0.021618357986010403, - "angularVelocity": 0.027715245492435207, - "area": 971.4751299999998, + "angle": 0.05295, + "anglePrev": 0.02702, + "angularSpeed": 0.02162, + "angularVelocity": 0.02772, + "area": 971.47513, "axes": { "#": 3466 }, "bounds": { "#": 3476 }, - "circleRadius": 17.76536779835391, + "circleRadius": 17.76537, "collisionFilter": { "#": 3479 }, @@ -31217,13 +31217,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 600.8690619118768, - "inverseInertia": 0.0016642560973569639, - "inverseMass": 1.029362429483913, + "inertia": 600.86906, + "inverseInertia": 0.00166, + "inverseMass": 1.02936, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9714751299999999, + "mass": 0.97148, "motion": 0, "parent": null, "position": { @@ -31245,7 +31245,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5235616740999804, + "speed": 1.52356, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31287,40 +31287,40 @@ } ], { - "x": -0.9202907047090432, - "y": -0.39123524742299637 + "x": -0.92029, + "y": -0.39124 }, { - "x": -0.7309137521618267, - "y": -0.6824698432170608 + "x": -0.73091, + "y": -0.68247 }, { - "x": -0.4534889798184349, - "y": -0.8912618836140338 + "x": -0.45349, + "y": -0.89126 }, { - "x": -0.12122295166201356, - "y": -0.992625304931498 + "x": -0.12122, + "y": -0.99263 }, { - "x": 0.22547271927776086, - "y": -0.9742494818379389 + "x": 0.22547, + "y": -0.97425 }, { - "x": 0.545162135073188, - "y": -0.8383306307671476 + "x": 0.54516, + "y": -0.83833 }, { - "x": 0.7989614406894251, - "y": -0.6013822547194737 + "x": 0.79896, + "y": -0.60138 }, { - "x": 0.9564913633244512, - "y": -0.29176064142672337 + "x": 0.95649, + "y": -0.29176 }, { - "x": 0.9985983070130973, - "y": 0.05292845388423674 + "x": 0.9986, + "y": 0.05293 }, { "max": { @@ -31331,12 +31331,12 @@ } }, { - "x": 429.3275360195283, - "y": 477.0945921854307 + "x": 429.32754, + "y": 477.09459 }, { - "x": 392.6342709244476, - "y": 441.0772718431121 + "x": 392.63427, + "y": 441.07727 }, { "category": 1, @@ -31353,16 +31353,16 @@ "y": 0 }, { - "x": 410.26803258587466, - "y": 458.8173707671998 + "x": 410.26803, + "y": 458.81737 }, { - "x": 0.19812611525105772, - "y": -0.1968973016711735 + "x": 0.19813, + "y": -0.1969 }, { - "x": 409.18999101499554, - "y": 458.30556862634336 + "x": 409.18999, + "y": 458.30557 }, { "endCol": 8, @@ -31385,8 +31385,8 @@ "yScale": 1 }, { - "x": 1.1015372221543203, - "y": 0.37117940542151473 + "x": 1.10154, + "y": 0.37118 }, [ { @@ -31448,141 +31448,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.575225686836, - "y": 462.8240298450399 + "x": 427.57523, + "y": 462.82403 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.16130408341746, - "y": 468.50222379140615 + "x": 425.1613, + "y": 468.50222 }, { "body": null, "index": 2, "isInternal": false, - "x": 420.9507233247465, - "y": 473.01168514224514 + "x": 420.95072, + "y": 473.01169 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.4519282901427, - "y": 475.80956419027706 + "x": 415.45193, + "y": 475.80956 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.32775860262115, - "y": 476.5574696912875 + "x": 409.32776, + "y": 476.55747 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.31696166331955, - "y": 475.1663776186758 + "x": 403.31696, + "y": 475.16638 }, { "body": null, "index": 6, "isInternal": false, - "x": 398.1447351891815, - "y": 471.802905112437 + "x": 398.14474, + "y": 471.80291 }, { "body": null, "index": 7, "isInternal": false, - "x": 394.43443417662456, - "y": 466.87361526538814 + "x": 394.43443, + "y": 466.87362 }, { "body": null, "index": 8, "isInternal": false, - "x": 392.6342709244476, - "y": 460.9720632436304 + "x": 392.63427, + "y": 460.97206 }, { "body": null, "index": 9, "isInternal": false, - "x": 392.9608394849133, - "y": 454.8107116893597 + "x": 392.96084, + "y": 454.81071 }, { "body": null, "index": 10, "isInternal": false, - "x": 395.37476108833187, - "y": 449.13251774299346 + "x": 395.37476, + "y": 449.13252 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.5853418470027, - "y": 444.62305639215447 + "x": 399.58534, + "y": 444.62306 }, { "body": null, "index": 12, "isInternal": false, - "x": 405.0841368816065, - "y": 441.82517734412255 + "x": 405.08414, + "y": 441.82518 }, { "body": null, "index": 13, "isInternal": false, - "x": 411.2083065691282, - "y": 441.0772718431121 + "x": 411.20831, + "y": 441.07727 }, { "body": null, "index": 14, "isInternal": false, - "x": 417.21910350842967, - "y": 442.4683639157238 + "x": 417.2191, + "y": 442.46836 }, { "body": null, "index": 15, "isInternal": false, - "x": 422.3913299825678, - "y": 445.83183642196263 + "x": 422.39133, + "y": 445.83184 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.10163099512476, - "y": 450.76112626901147 + "x": 426.10163, + "y": 450.76113 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.9017942473017, - "y": 456.66267829076924 + "x": 427.90179, + "y": 456.66268 }, { - "angle": 0.03477447465451514, - "anglePrev": 0.025424137592529726, - "angularSpeed": 0.011843287491575908, - "angularVelocity": 0.009865332547065935, - "area": 1964.2880500000006, + "angle": 0.03477, + "anglePrev": 0.02542, + "angularSpeed": 0.01184, + "angularVelocity": 0.00987, + "area": 1964.28805, "axes": { "#": 3509 }, "bounds": { "#": 3523 }, - "circleRadius": 25.12737911522634, + "circleRadius": 25.12738, "collisionFilter": { "#": 3526 }, @@ -31597,13 +31597,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 2456.3981324941856, - "inverseInertia": 0.00040710013037854604, - "inverseMass": 0.5090903037362569, + "inertia": 2456.39813, + "inverseInertia": 0.00041, + "inverseMass": 0.50909, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9642880500000006, + "mass": 1.96429, "motion": 0, "parent": null, "position": { @@ -31625,7 +31625,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1405595491372567, + "speed": 1.14056, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31679,56 +31679,56 @@ } ], { - "x": -0.9620578756211154, - "y": -0.2728454580076173 + "x": -0.96206, + "y": -0.27285 }, { - "x": -0.8687087589528005, - "y": -0.4953232198460766 + "x": -0.86871, + "y": -0.49532 }, { - "x": -0.725068958550751, - "y": -0.6886762703521366 + "x": -0.72507, + "y": -0.68868 }, { - "x": -0.5390410478697129, - "y": -0.8422794956019778 + "x": -0.53904, + "y": -0.84228 }, { - "x": -0.3218718556211256, - "y": -0.9467832426479739 + "x": -0.32187, + "y": -0.94678 }, { - "x": -0.08593181061443686, - "y": -0.9963010207384736 + "x": -0.08593, + "y": -0.9963 }, { - "x": 0.15495990726468178, - "y": -0.9879207595452791 + "x": 0.15496, + "y": -0.98792 }, { - "x": 0.3868884208886247, - "y": -0.9221265367520373 + "x": 0.38689, + "y": -0.92213 }, { - "x": 0.5962703271728953, - "y": -0.8027837174065802 + "x": 0.59627, + "y": -0.80278 }, { - "x": 0.7711741727597603, - "y": -0.6366242182546147 + "x": 0.77117, + "y": -0.63662 }, { - "x": 0.9010300531901746, - "y": -0.43375666363539683 + "x": 0.90103, + "y": -0.43376 }, { - "x": 0.9786928698205845, - "y": -0.20532965339265796 + "x": 0.97869, + "y": -0.20533 }, { - "x": 0.9993954288837797, - "y": 0.034767466491037693 + "x": 0.9994, + "y": 0.03477 }, { "max": { @@ -31739,12 +31739,12 @@ } }, { - "x": 486.8540657342872, - "y": 496.6103547679655 + "x": 486.85407, + "y": 496.61035 }, { - "x": 436.0498755557533, - "y": 445.51519923310224 + "x": 436.04988, + "y": 445.5152 }, { "category": 1, @@ -31761,16 +31761,16 @@ "y": 0 }, { - "x": 461.08410578983154, - "y": 470.627008174665 + "x": 461.08411, + "y": 470.62701 }, { - "x": 0.021970196301369496, - "y": 0.25472440117771294 + "x": 0.02197, + "y": 0.25472 }, { - "x": 460.46492361519023, - "y": 469.66069069302625 + "x": 460.46492, + "y": 469.66069 }, { "endCol": 10, @@ -31793,8 +31793,8 @@ "yScale": 1 }, { - "x": 0.6404316438549245, - "y": 0.9721014207453322 + "x": 0.64043, + "y": 0.9721 }, [ { @@ -31880,197 +31880,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 485.9077147119073, - "y": 474.5214166129064 + "x": 485.90771, + "y": 474.52142 }, { "body": null, "index": 1, "isInternal": false, - "x": 484.25512326502076, - "y": 480.3484830712265 + "x": 484.25512, + "y": 480.34848 }, { "body": null, "index": 2, "isInternal": false, - "x": 481.25433304702614, - "y": 485.61133496612024 + "x": 481.25433, + "y": 485.61133 }, { "body": null, "index": 3, "isInternal": false, - "x": 477.08312531155843, - "y": 490.0029676952513 + "x": 477.08313, + "y": 490.00297 }, { "body": null, "index": 4, "isInternal": false, - "x": 471.9805048509483, - "y": 493.26853677811613 + "x": 471.9805, + "y": 493.26854 }, { "body": null, "index": 5, "isInternal": false, - "x": 466.2452486237279, - "y": 495.2183152291533 + "x": 466.24525, + "y": 495.21832 }, { "body": null, "index": 6, "isInternal": false, - "x": 460.2105036593112, - "y": 495.73881711622784 + "x": 460.2105, + "y": 495.73882 }, { "body": null, "index": 7, "isInternal": false, - "x": 454.2265191959715, - "y": 494.800201677132 + "x": 454.22652, + "y": 494.8002 }, { "body": null, "index": 8, "isInternal": false, - "x": 448.6406240047965, - "y": 492.4565773656844 + "x": 448.64062, + "y": 492.45658 }, { "body": null, "index": 9, "isInternal": false, - "x": 443.7772732485776, - "y": 488.8443071069709 + "x": 443.77727, + "y": 488.84431 }, { "body": null, "index": 10, "isInternal": false, - "x": 439.9213368992508, - "y": 484.17342208698386 + "x": 439.92134, + "y": 484.17342 }, { "body": null, "index": 11, "isInternal": false, - "x": 437.29353206177194, - "y": 478.7147598208125 + "x": 437.29353, + "y": 478.71476 }, { "body": null, "index": 12, "isInternal": false, - "x": 436.0498755557533, - "y": 472.78693724460146 + "x": 436.04988, + "y": 472.78694 }, { "body": null, "index": 13, "isInternal": false, - "x": 436.2604968677559, - "y": 466.73259973642354 + "x": 436.2605, + "y": 466.7326 }, { "body": null, "index": 14, "isInternal": false, - "x": 437.9130883146423, - "y": 460.90553327810346 + "x": 437.91309, + "y": 460.90553 }, { "body": null, "index": 15, "isInternal": false, - "x": 440.91387853263694, - "y": 455.6426813832097 + "x": 440.91388, + "y": 455.64268 }, { "body": null, "index": 16, "isInternal": false, - "x": 445.08508626810465, - "y": 451.25104865407866 + "x": 445.08509, + "y": 451.25105 }, { "body": null, "index": 17, "isInternal": false, - "x": 450.1877067287148, - "y": 447.98547957121383 + "x": 450.18771, + "y": 447.98548 }, { "body": null, "index": 18, "isInternal": false, - "x": 455.9229629559353, - "y": 446.03570112017684 + "x": 455.92296, + "y": 446.0357 }, { "body": null, "index": 19, "isInternal": false, - "x": 461.9577079203519, - "y": 445.51519923310224 + "x": 461.95771, + "y": 445.5152 }, { "body": null, "index": 20, "isInternal": false, - "x": 467.9416923836917, - "y": 446.45381467219806 + "x": 467.94169, + "y": 446.45381 }, { "body": null, "index": 21, "isInternal": false, - "x": 473.5275875748666, - "y": 448.7974389836456 + "x": 473.52759, + "y": 448.79744 }, { "body": null, "index": 22, "isInternal": false, - "x": 478.39093833108547, - "y": 452.40970924235904 + "x": 478.39094, + "y": 452.40971 }, { "body": null, "index": 23, "isInternal": false, - "x": 482.2468746804123, - "y": 457.0805942623461 + "x": 482.24687, + "y": 457.08059 }, { "body": null, "index": 24, "isInternal": false, - "x": 484.87467951789114, - "y": 462.53925652851746 + "x": 484.87468, + "y": 462.53926 }, { "body": null, "index": 25, "isInternal": false, - "x": 486.1183360239099, - "y": 468.4670791047285 + "x": 486.11834, + "y": 468.46708 }, { - "angle": -0.011700579207132834, - "anglePrev": -0.008929731922411572, - "angularSpeed": 0.002068237787369895, - "angularVelocity": -0.002011036932616334, - "area": 1198.7866480000002, + "angle": -0.0117, + "anglePrev": -0.00893, + "angularSpeed": 0.00207, + "angularVelocity": -0.00201, + "area": 1198.78665, "axes": { "#": 3564 }, "bounds": { "#": 3575 }, - "circleRadius": 19.696180555555557, + "circleRadius": 19.69618, "collisionFilter": { "#": 3578 }, @@ -32085,13 +32085,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 914.9296424326485, - "inverseInertia": 0.0010929802179555177, - "inverseMass": 0.834176791732168, + "inertia": 914.92964, + "inverseInertia": 0.00109, + "inverseMass": 0.83418, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1987866480000002, + "mass": 1.19879, "motion": 0, "parent": null, "position": { @@ -32113,7 +32113,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7296920963237923, + "speed": 0.72969, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32158,44 +32158,44 @@ } ], { - "x": -0.9545773267102013, - "y": -0.2979632986305619 + "x": -0.95458, + "y": -0.29796 }, { - "x": -0.815824803318325, - "y": -0.5782991356474748 + "x": -0.81582, + "y": -0.5783 }, { - "x": -0.5972303035284652, - "y": -0.8020698002962694 + "x": -0.59723, + "y": -0.80207 }, { - "x": -0.32021789439407, - "y": -0.947343918600752 + "x": -0.32022, + "y": -0.94734 }, { - "x": -0.011700312233814526, - "y": -0.9999315490040461 + "x": -0.0117, + "y": -0.99993 }, { - "x": 0.2979632986305619, - "y": -0.9545773267102013 + "x": 0.29796, + "y": -0.95458 }, { - "x": 0.5782991356474748, - "y": -0.815824803318325 + "x": 0.5783, + "y": -0.81582 }, { - "x": 0.8020698002962694, - "y": -0.5972303035284652 + "x": 0.80207, + "y": -0.59723 }, { - "x": 0.947343918600752, - "y": -0.32021789439407 + "x": 0.94734, + "y": -0.32022 }, { - "x": 0.9999315490040461, - "y": -0.011700312233814526 + "x": 0.99993, + "y": -0.0117 }, { "max": { @@ -32206,12 +32206,12 @@ } }, { - "x": 525.1189538204629, - "y": 511.7733730385653 + "x": 525.11895, + "y": 511.77337 }, { - "x": 485.72339665406366, - "y": 472.19792261782146 + "x": 485.7234, + "y": 472.19792 }, { "category": 1, @@ -32228,16 +32228,16 @@ "y": 0 }, { - "x": 505.21211367038075, - "y": 491.68663963413854 + "x": 505.21211, + "y": 491.68664 }, { "x": 0, "y": 0 }, { - "x": 504.7194073777297, - "y": 491.5000018324005 + "x": 504.71941, + "y": 491.5 }, { "endCol": 10, @@ -32260,8 +32260,8 @@ "yScale": 1 }, { - "x": 0.46202830285102436, - "y": 0.19194590534499412 + "x": 0.46203, + "y": 0.19195 }, [ { @@ -32329,155 +32329,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 524.7008306866977, - "y": 494.5398108624234 + "x": 524.70083, + "y": 494.53981 }, { "body": null, "index": 1, "isInternal": false, - "x": 522.8645366158474, - "y": 500.4226987659415 + "x": 522.86454, + "y": 500.4227 }, { "body": null, "index": 2, "isInternal": false, - "x": 519.3011106018405, - "y": 505.4497360686376 + "x": 519.30111, + "y": 505.44974 }, { "body": null, "index": 3, "isInternal": false, - "x": 514.3588303609662, - "y": 509.1298141956158 + "x": 514.35883, + "y": 509.12981 }, { "body": null, "index": 4, "isInternal": false, - "x": 508.52052064705885, - "y": 511.1032593264709 + "x": 508.52052, + "y": 511.10326 }, { "body": null, "index": 5, "isInternal": false, - "x": 502.3589424420959, - "y": 511.1753566504556 + "x": 502.35894, + "y": 511.17536 }, { "body": null, "index": 6, "isInternal": false, - "x": 496.4760545385778, - "y": 509.3390625796053 + "x": 496.47605, + "y": 509.33906 }, { "body": null, "index": 7, "isInternal": false, - "x": 491.4490172358817, - "y": 505.7756365655983 + "x": 491.44902, + "y": 505.77564 }, { "body": null, "index": 8, "isInternal": false, - "x": 487.7689391089035, - "y": 500.8333563247239 + "x": 487.76894, + "y": 500.83336 }, { "body": null, "index": 9, "isInternal": false, - "x": 485.7954939780484, - "y": 494.99504661081664 + "x": 485.79549, + "y": 494.99505 }, { "body": null, "index": 10, "isInternal": false, - "x": 485.72339665406366, - "y": 488.8334684058537 + "x": 485.7234, + "y": 488.83347 }, { "body": null, "index": 11, "isInternal": false, - "x": 487.559690724914, - "y": 482.9505805023356 + "x": 487.55969, + "y": 482.95058 }, { "body": null, "index": 12, "isInternal": false, - "x": 491.123116738921, - "y": 477.9235431996395 + "x": 491.12312, + "y": 477.92354 }, { "body": null, "index": 13, "isInternal": false, - "x": 496.06539697979537, - "y": 474.2434650726613 + "x": 496.0654, + "y": 474.24347 }, { "body": null, "index": 14, "isInternal": false, - "x": 501.90370669370265, - "y": 472.2700199418062 + "x": 501.90371, + "y": 472.27002 }, { "body": null, "index": 15, "isInternal": false, - "x": 508.0652848986656, - "y": 472.19792261782146 + "x": 508.06528, + "y": 472.19792 }, { "body": null, "index": 16, "isInternal": false, - "x": 513.9481728021838, - "y": 474.0342166886718 + "x": 513.94817, + "y": 474.03422 }, { "body": null, "index": 17, "isInternal": false, - "x": 518.9752101048798, - "y": 477.5976427026788 + "x": 518.97521, + "y": 477.59764 }, { "body": null, "index": 18, "isInternal": false, - "x": 522.655288231858, - "y": 482.53992294355317 + "x": 522.65529, + "y": 482.53992 }, { "body": null, "index": 19, "isInternal": false, - "x": 524.628733362713, - "y": 488.37823265746044 + "x": 524.62873, + "y": 488.37823 }, { - "angle": -0.11020230385616278, - "anglePrev": -0.09743702848807426, - "angularSpeed": 0.01642753679253891, - "angularVelocity": -0.010621752208428412, - "area": 1308.2308839999998, + "angle": -0.1102, + "anglePrev": -0.09744, + "angularSpeed": 0.01643, + "angularVelocity": -0.01062, + "area": 1308.23088, "axes": { "#": 3610 }, "bounds": { "#": 3622 }, - "circleRadius": 20.54584619341564, + "circleRadius": 20.54585, "collisionFilter": { "#": 3625 }, @@ -32492,13 +32492,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 1089.5950647298523, - "inverseInertia": 0.0009177721452399695, - "inverseMass": 0.7643910660039119, + "inertia": 1089.59506, + "inverseInertia": 0.00092, + "inverseMass": 0.76439, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3082308839999999, + "mass": 1.30823, "motion": 0, "parent": null, "position": { @@ -32520,7 +32520,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.16731836847740555, + "speed": 0.16732, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32568,48 +32568,48 @@ } ], { - "x": -0.9846441125976273, - "y": -0.1745736850926597 + "x": -0.98464, + "y": -0.17457 }, { - "x": -0.8956667949171531, - "y": -0.44472574974115775 + "x": -0.89567, + "y": -0.44473 }, { - "x": -0.7339215880561325, - "y": -0.6792342030442552 + "x": -0.73392, + "y": -0.67923 }, { - "x": -0.5129942102618723, - "y": -0.8583920667374542 + "x": -0.51299, + "y": -0.85839 }, { - "x": -0.2502805502509384, - "y": -0.968173355430776 + "x": -0.25028, + "y": -0.96817 }, { - "x": 0.032559653663658816, - "y": -0.9994697939174065 + "x": 0.03256, + "y": -0.99947 }, { - "x": 0.31291890150844814, - "y": -0.9497798487432477 + "x": 0.31292, + "y": -0.94978 }, { - "x": 0.567670132382783, - "y": -0.8232561088753084 + "x": 0.56767, + "y": -0.82326 }, { - "x": 0.7767718567667722, - "y": -0.6297820913102419 + "x": 0.77677, + "y": -0.62978 }, { - "x": 0.9226585800462991, - "y": -0.3856178738945421 + "x": 0.92266, + "y": -0.38562 }, { - "x": 0.9939338690435202, - "y": -0.10997937974083632 + "x": 0.99393, + "y": -0.10998 }, { "max": { @@ -32620,12 +32620,12 @@ } }, { - "x": 571.7979414786618, - "y": 509.92053762668365 + "x": 571.79794, + "y": 509.92054 }, { - "x": 530.6464486639044, - "y": 468.9314392437325 + "x": 530.64645, + "y": 468.93144 }, { "category": 1, @@ -32642,16 +32642,16 @@ "y": 0 }, { - "x": 551.2627286775615, - "y": 489.3528045171007 + "x": 551.26273, + "y": 489.3528 }, { "x": 0, "y": 0 }, { - "x": 551.3823888721599, - "y": 489.4803954752673 + "x": 551.38239, + "y": 489.4804 }, { "endCol": 11, @@ -32674,8 +32674,8 @@ "yScale": 1 }, { - "x": -0.23342794215727736, - "y": -0.08945224326748757 + "x": -0.23343, + "y": -0.08945 }, [ { @@ -32749,169 +32749,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 571.7979414786618, - "y": 490.0224165043946 + "x": 571.79794, + "y": 490.02242 }, { "body": null, "index": 1, "isInternal": false, - "x": 570.7770327622038, - "y": 495.78062546141064 + "x": 570.77703, + "y": 495.78063 }, { "body": null, "index": 2, "isInternal": false, - "x": 568.1763063504822, - "y": 501.01842491646556 + "x": 568.17631, + "y": 501.01842 }, { "body": null, "index": 3, "isInternal": false, - "x": 564.2042296943376, - "y": 505.3103065594877 + "x": 564.20423, + "y": 505.31031 }, { "body": null, "index": 4, "isInternal": false, - "x": 559.1837514037961, - "y": 508.3106561614847 + "x": 559.18375, + "y": 508.31066 }, { "body": null, "index": 5, "isInternal": false, - "x": 553.5223650137168, - "y": 509.77416979046893 + "x": 553.52237, + "y": 509.77417 }, { "body": null, "index": 6, "isInternal": false, - "x": 547.6779729357485, - "y": 509.58377746136466 + "x": 547.67797, + "y": 509.58378 }, { "body": null, "index": 7, "isInternal": false, - "x": 542.1229948596666, - "y": 507.75360845981004 + "x": 542.12299, + "y": 507.75361 }, { "body": null, "index": 8, "isInternal": false, - "x": 537.3086961134666, - "y": 504.433944533697 + "x": 537.3087, + "y": 504.43394 }, { "body": null, "index": 9, "isInternal": false, - "x": 533.6257726050953, - "y": 499.8914347173636 + "x": 533.62577, + "y": 499.89143 }, { "body": null, "index": 10, "isInternal": false, - "x": 531.3706752891857, - "y": 494.49571779597335 + "x": 531.37068, + "y": 494.49572 }, { "body": null, "index": 11, "isInternal": false, - "x": 530.7275158764613, - "y": 488.68319252980683 + "x": 530.72752, + "y": 488.68319 }, { "body": null, "index": 12, "isInternal": false, - "x": 531.7484245929193, - "y": 482.9249835727908 + "x": 531.74842, + "y": 482.92498 }, { "body": null, "index": 13, "isInternal": false, - "x": 534.3491510046409, - "y": 477.68718411773585 + "x": 534.34915, + "y": 477.68718 }, { "body": null, "index": 14, "isInternal": false, - "x": 538.3212276607854, - "y": 473.39530247471373 + "x": 538.32123, + "y": 473.3953 }, { "body": null, "index": 15, "isInternal": false, - "x": 543.341705951327, - "y": 470.3949528727167 + "x": 543.34171, + "y": 470.39495 }, { "body": null, "index": 16, "isInternal": false, - "x": 549.0030923414063, - "y": 468.9314392437325 + "x": 549.00309, + "y": 468.93144 }, { "body": null, "index": 17, "isInternal": false, - "x": 554.8474844193746, - "y": 469.12183157283675 + "x": 554.84748, + "y": 469.12183 }, { "body": null, "index": 18, "isInternal": false, - "x": 560.4024624954565, - "y": 470.9520005743914 + "x": 560.40246, + "y": 470.952 }, { "body": null, "index": 19, "isInternal": false, - "x": 565.2167612416565, - "y": 474.2716645005044 + "x": 565.21676, + "y": 474.27166 }, { "body": null, "index": 20, "isInternal": false, - "x": 568.8996847500277, - "y": 478.8141743168378 + "x": 568.89968, + "y": 478.81417 }, { "body": null, "index": 21, "isInternal": false, - "x": 571.1547820659374, - "y": 484.20989123822807 + "x": 571.15478, + "y": 484.20989 }, { - "angle": 0.0007305574762849312, - "anglePrev": 0.0015496376253757247, - "angularSpeed": 0.00013038671040296532, - "angularVelocity": 0.0008082546017418213, - "area": 807.3207440000001, + "angle": 0.00073, + "anglePrev": 0.00155, + "angularSpeed": 0.00013, + "angularVelocity": 0.00081, + "area": 807.32074, "axes": { "#": 3659 }, "bounds": { "#": 3669 }, - "circleRadius": 16.194894547325102, + "circleRadius": 16.19489, "collisionFilter": { "#": 3672 }, @@ -32926,13 +32926,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 414.96234834778403, - "inverseInertia": 0.002409857193023908, - "inverseMass": 1.2386650627176252, + "inertia": 414.96235, + "inverseInertia": 0.00241, + "inverseMass": 1.23867, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8073207440000001, + "mass": 0.80732, "motion": 0, "parent": null, "position": { @@ -32954,7 +32954,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.27632361430027247, + "speed": 0.27632, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32996,40 +32996,40 @@ } ], { - "x": -0.9394186078414625, - "y": -0.34277205142953054 + "x": -0.93942, + "y": -0.34277 }, { - "x": -0.7656342519833372, - "y": -0.6432761399196428 + "x": -0.76563, + "y": -0.64328 }, { - "x": -0.49933074418000145, - "y": -0.8664114541698108 + "x": -0.49933, + "y": -0.86641 }, { - "x": -0.17298469494798754, - "y": -0.984924512495121 + "x": -0.17298, + "y": -0.98492 }, { - "x": 0.17442359771955332, - "y": -0.9846707107244368 + "x": 0.17442, + "y": -0.98467 }, { - "x": 0.5005961374605893, - "y": -0.8656809499807296 + "x": 0.5006, + "y": -0.86568 }, { - "x": 0.7665733347759405, - "y": -0.6421567740127748 + "x": 0.76657, + "y": -0.64216 }, { - "x": 0.9399184342709573, - "y": -0.34139908745869935 + "x": 0.93992, + "y": -0.3414 }, { - "x": 0.9999997331428988, - "y": 0.0007305574113001135 + "x": 1, + "y": 0.00073 }, { "max": { @@ -33040,12 +33040,12 @@ } }, { - "x": 615.1903224351363, - "y": 500.13524552425235 + "x": 615.19032, + "y": 500.13525 }, { - "x": 583.2842814638764, - "y": 467.4689586562266 + "x": 583.28428, + "y": 467.46896 }, { "category": 1, @@ -33062,16 +33062,16 @@ "y": 0 }, { - "x": 599.235331535213, - "y": 483.66395433447593 + "x": 599.23533, + "y": 483.66395 }, { "x": 0, "y": 0 }, { - "x": 599.2093309305076, - "y": 483.6640416883557 + "x": 599.20933, + "y": 483.66404 }, { "endCol": 12, @@ -33094,8 +33094,8 @@ "yScale": 1 }, { - "x": -0.025647838648978905, - "y": -0.00031630402480686826 + "x": -0.02565, + "y": -0.00032 }, [ { @@ -33157,141 +33157,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.1822729516686, - "y": 486.4876052442266 + "x": 615.18227, + "y": 486.48761 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.2544124691829, - "y": 491.77119824142744 + "x": 613.25441, + "y": 491.7712 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.636265461986, - "y": 496.07755612649834 + "x": 609.63627, + "y": 496.07756 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.7632124344063, - "y": 498.8859968309457 + "x": 604.76321, + "y": 498.886 }, { "body": null, "index": 4, "isInternal": false, - "x": 599.223500157937, - "y": 499.85895001272524 + "x": 599.2235, + "y": 499.85895 }, { "body": null, "index": 5, "isInternal": false, - "x": 593.6852153906492, - "y": 498.8779037159434 + "x": 593.68522, + "y": 498.8779 }, { "body": null, "index": 6, "isInternal": false, - "x": 588.8162710179508, - "y": 496.0623459211951 + "x": 588.81627, + "y": 496.06235 }, { "body": null, "index": 7, "isInternal": false, - "x": 585.2044199545246, - "y": 491.75070610604047 + "x": 585.20442, + "y": 491.75071 }, { "body": null, "index": 8, "isInternal": false, - "x": 583.2842814638764, - "y": 486.46430192392097 + "x": 583.28428, + "y": 486.4643 }, { "body": null, "index": 9, "isInternal": false, - "x": 583.2883901187575, - "y": 480.8403034247253 + "x": 583.28839, + "y": 480.8403 }, { "body": null, "index": 10, "isInternal": false, - "x": 585.2162506012432, - "y": 475.5567104275244 + "x": 585.21625, + "y": 475.55671 }, { "body": null, "index": 11, "isInternal": false, - "x": 588.8343976084401, - "y": 471.2503525424535 + "x": 588.8344, + "y": 471.25035 }, { "body": null, "index": 12, "isInternal": false, - "x": 593.7074506360198, - "y": 468.44191183800615 + "x": 593.70745, + "y": 468.44191 }, { "body": null, "index": 13, "isInternal": false, - "x": 599.2471629124891, - "y": 467.4689586562266 + "x": 599.24716, + "y": 467.46896 }, { "body": null, "index": 14, "isInternal": false, - "x": 604.7854476797769, - "y": 468.4500049530085 + "x": 604.78545, + "y": 468.45 }, { "body": null, "index": 15, "isInternal": false, - "x": 609.6543920524753, - "y": 471.26556274775675 + "x": 609.65439, + "y": 471.26556 }, { "body": null, "index": 16, "isInternal": false, - "x": 613.2662431159015, - "y": 475.5772025629114 + "x": 613.26624, + "y": 475.5772 }, { "body": null, "index": 17, "isInternal": false, - "x": 615.1863816065497, - "y": 480.8636067450309 + "x": 615.18638, + "y": 480.86361 }, { - "angle": 0.0035190368269367787, - "anglePrev": 0.0013299708347567225, - "angularSpeed": 0.002148897557137382, - "angularVelocity": 0.0022015808832429673, - "area": 1402.4361439999998, + "angle": 0.00352, + "anglePrev": 0.00133, + "angularSpeed": 0.00215, + "angularVelocity": 0.0022, + "area": 1402.43614, "axes": { "#": 3702 }, "bounds": { "#": 3714 }, - "circleRadius": 21.27295524691358, + "circleRadius": 21.27296, "collisionFilter": { "#": 3717 }, @@ -33306,13 +33306,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 1252.1677796786169, - "inverseInertia": 0.0007986150228659145, - "inverseMass": 0.7130449427435751, + "inertia": 1252.16778, + "inverseInertia": 0.0008, + "inverseMass": 0.71304, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4024361439999997, + "mass": 1.40244, "motion": 0, "parent": null, "position": { @@ -33334,7 +33334,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.27675873259710454, + "speed": 0.27676, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33382,48 +33382,48 @@ } ], { - "x": -0.9585394161763271, - "y": -0.2849599754989222 + "x": -0.95854, + "y": -0.28496 }, { - "x": -0.8393242704340854, - "y": -0.5436310964802237 + "x": -0.83932, + "y": -0.54363 }, { - "x": -0.6521851980892397, - "y": -0.758059672712709 + "x": -0.65219, + "y": -0.75806 }, { - "x": -0.41215402605552665, - "y": -0.9111141853830509 + "x": -0.41215, + "y": -0.91111 }, { - "x": -0.13888525423588308, - "y": -0.9903084803008779 + "x": -0.13889, + "y": -0.99031 }, { - "x": 0.1458516209287285, - "y": -0.9893064766150389 + "x": 0.14585, + "y": -0.98931 }, { - "x": 0.41855625398388996, - "y": -0.9081908732480047 + "x": 0.41856, + "y": -0.90819 }, { - "x": 0.6575042810923172, - "y": -0.7534508081787925 + "x": 0.6575, + "y": -0.75345 }, { - "x": 0.8431295668841325, - "y": -0.5377104550274014 + "x": 0.84313, + "y": -0.53771 }, { - "x": 0.9605212286367273, - "y": -0.2782067025400212 + "x": 0.96052, + "y": -0.27821 }, { - "x": 0.9999938081962951, - "y": 0.003519029563872027 + "x": 0.99999, + "y": 0.00352 }, { "max": { @@ -33434,12 +33434,12 @@ } }, { - "x": 138.7314427190636, - "y": 580.0731983339779 + "x": 138.73144, + "y": 580.0732 }, { - "x": 96.54926193783147, - "y": 537.2551000269763 + "x": 96.54926, + "y": 537.2551 }, { "category": 1, @@ -33456,16 +33456,16 @@ "y": 0 }, { - "x": 117.61578366570251, - "y": 558.5279683087361 + "x": 117.61578, + "y": 558.52797 }, { "x": 0, "y": 0 }, { - "x": 117.56726455883937, - "y": 558.5590140510996 + "x": 117.56726, + "y": 558.55901 }, { "endCol": 2, @@ -33488,8 +33488,8 @@ "yScale": 1 }, { - "x": 0.04770095228806781, - "y": 0.05218327070429041 + "x": 0.0477, + "y": 0.05218 }, [ { @@ -33563,169 +33563,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 138.66100118859393, - "y": 561.6290462526434 + "x": 138.661, + "y": 561.62905 }, { "body": null, "index": 1, "isInternal": false, - "x": 136.93556618385313, - "y": 567.4330103328574 + "x": 136.93557, + "y": 567.43301 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.64366051922008, - "y": 572.515457489017 + "x": 133.64366, + "y": 572.51546 }, { "body": null, "index": 3, "isInternal": false, - "x": 129.05373590069308, - "y": 576.4643298592312 + "x": 129.05374, + "y": 576.46433 }, { "body": null, "index": 4, "isInternal": false, - "x": 123.53691964579468, - "y": 578.9599314720073 + "x": 123.53692, + "y": 578.95993 }, { "body": null, "index": 5, "isInternal": false, - "x": 117.54092334979026, - "y": 579.800836590496 + "x": 117.54092, + "y": 579.80084 }, { "body": null, "index": 6, "isInternal": false, - "x": 111.55099386075393, - "y": 578.9177523836547 + "x": 111.55099, + "y": 578.91775 }, { "body": null, "index": 7, "isInternal": false, - "x": 106.05187832456188, - "y": 576.383385141203 + "x": 106.05188, + "y": 576.38339 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.48985961047636, - "y": 572.4023066124206 + "x": 101.48986, + "y": 572.40231 }, { "body": null, "index": 9, "isInternal": false, - "x": 98.23380581904004, - "y": 567.2968168506761 + "x": 98.23381, + "y": 567.29682 }, { "body": null, "index": 10, "isInternal": false, - "x": 96.54926193783147, - "y": 561.4808528796497 + "x": 96.54926, + "y": 561.48085 }, { "body": null, "index": 11, "isInternal": false, - "x": 96.57056614281117, - "y": 555.4268903648289 + "x": 96.57057, + "y": 555.42689 }, { "body": null, "index": 12, "isInternal": false, - "x": 98.29600114755195, - "y": 549.6229262846149 + "x": 98.296, + "y": 549.62293 }, { "body": null, "index": 13, "isInternal": false, - "x": 101.58790681218497, - "y": 544.5404791284553 + "x": 101.58791, + "y": 544.54048 }, { "body": null, "index": 14, "isInternal": false, - "x": 106.17783143071196, - "y": 540.591606758241 + "x": 106.17783, + "y": 540.59161 }, { "body": null, "index": 15, "isInternal": false, - "x": 111.69464768561032, - "y": 538.0960051454651 + "x": 111.69465, + "y": 538.09601 }, { "body": null, "index": 16, "isInternal": false, - "x": 117.69064398161476, - "y": 537.2551000269763 + "x": 117.69064, + "y": 537.2551 }, { "body": null, "index": 17, "isInternal": false, - "x": 123.68057347065108, - "y": 538.1381842338177 + "x": 123.68057, + "y": 538.13818 }, { "body": null, "index": 18, "isInternal": false, - "x": 129.1796890068432, - "y": 540.6725514762692 + "x": 129.17969, + "y": 540.67255 }, { "body": null, "index": 19, "isInternal": false, - "x": 133.74170772092873, - "y": 544.6536300050517 + "x": 133.74171, + "y": 544.65363 }, { "body": null, "index": 20, "isInternal": false, - "x": 136.99776151236495, - "y": 549.7591197667962 + "x": 136.99776, + "y": 549.75912 }, { "body": null, "index": 21, "isInternal": false, - "x": 138.68230539357359, - "y": 555.5750837378226 + "x": 138.68231, + "y": 555.57508 }, { - "angle": -0.04421632207071538, - "anglePrev": -0.03285578213954713, - "angularSpeed": 0.010189644476547535, - "angularVelocity": -0.011017940426596484, - "area": 1669.8625200000004, + "angle": -0.04422, + "anglePrev": -0.03286, + "angularSpeed": 0.01019, + "angularVelocity": -0.01102, + "area": 1669.86252, "axes": { "#": 3751 }, "bounds": { "#": 3764 }, - "circleRadius": 23.187435699588477, + "circleRadius": 23.18744, "collisionFilter": { "#": 3767 }, @@ -33740,13 +33740,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 1775.22327984156, - "inverseInertia": 0.0005633094221754746, - "inverseMass": 0.598851694689213, + "inertia": 1775.22328, + "inverseInertia": 0.00056, + "inverseMass": 0.59885, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6698625200000003, + "mass": 1.66986, "motion": 0, "parent": null, "position": { @@ -33768,7 +33768,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6026088139626835, + "speed": 1.60261, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33819,52 +33819,52 @@ } ], { - "x": -0.9764024372982373, - "y": -0.21595897860024826 + "x": -0.9764, + "y": -0.21596 }, { - "x": -0.8873490293183447, - "y": -0.46109836279018723 + "x": -0.88735, + "y": -0.4611 }, { - "x": -0.7376711418674997, - "y": -0.6751601931807734 + "x": -0.73767, + "y": -0.67516 }, { - "x": -0.5376649494011836, - "y": -0.8431585866166714 + "x": -0.53766, + "y": -0.84316 }, { - "x": -0.3013484443206322, - "y": -0.9535140875233754 + "x": -0.30135, + "y": -0.95351 }, { - "x": -0.0442019157147885, - "y": -0.999022617685477 + "x": -0.0442, + "y": -0.99902 }, { - "x": 0.21595897860024826, - "y": -0.9764024372982373 + "x": 0.21596, + "y": -0.9764 }, { - "x": 0.46109836279018723, - "y": -0.8873490293183447 + "x": 0.4611, + "y": -0.88735 }, { - "x": 0.6751601931807734, - "y": -0.7376711418674997 + "x": 0.67516, + "y": -0.73767 }, { - "x": 0.8431585866166714, - "y": -0.5376649494011836 + "x": 0.84316, + "y": -0.53766 }, { - "x": 0.9535140875233754, - "y": -0.3013484443206322 + "x": 0.95351, + "y": -0.30135 }, { - "x": 0.999022617685477, - "y": -0.0442019157147885 + "x": 0.99902, + "y": -0.0442 }, { "max": { @@ -33875,12 +33875,12 @@ } }, { - "x": 162.17166492538533, - "y": 527.7279451913939 + "x": 162.17166, + "y": 527.72795 }, { - "x": 115.04263444490266, - "y": 480.22096032233605 + "x": 115.04263, + "y": 480.22096 }, { "category": 1, @@ -33897,16 +33897,16 @@ "y": 0 }, { - "x": 139.07133476854526, - "y": 503.32129047917624 + "x": 139.07133, + "y": 503.32129 }, { "x": 0, "y": 0 }, { - "x": 140.12665936579018, - "y": 502.17061928301365 + "x": 140.12666, + "y": 502.17062 }, { "endCol": 3, @@ -33929,8 +33929,8 @@ "yScale": 1 }, { - "x": -1.046787902382249, - "y": 1.1640583205842177 + "x": -1.04679, + "y": 1.16406 }, [ { @@ -34010,183 +34010,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 162.17166492538533, - "y": 505.32917410254294 + "x": 162.17166, + "y": 505.32917 }, { "body": null, "index": 1, "isInternal": false, - "x": 160.86460088274083, - "y": 511.2387247274576 + "x": 160.8646, + "y": 511.23872 }, { "body": null, "index": 2, "isInternal": false, - "x": 158.07330908571726, - "y": 516.6103553089355 + "x": 158.07331, + "y": 516.61036 }, { "body": null, "index": 3, "isInternal": false, - "x": 153.9866764812827, - "y": 521.0753563118884 + "x": 153.98668, + "y": 521.07536 }, { "body": null, "index": 4, "isInternal": false, - "x": 148.8825558937107, - "y": 524.3301493970973 + "x": 148.88256, + "y": 524.33015 }, { "body": null, "index": 5, "isInternal": false, - "x": 143.11153407264646, - "y": 526.154022238279 + "x": 143.11153, + "y": 526.15402 }, { "body": null, "index": 6, "isInternal": false, - "x": 137.0634511451786, - "y": 526.4216206360165 + "x": 137.06345, + "y": 526.42162 }, { "body": null, "index": 7, "isInternal": false, - "x": 131.15390052026427, - "y": 525.114556593372 + "x": 131.1539, + "y": 525.11456 }, { "body": null, "index": 8, "isInternal": false, - "x": 125.78226993878633, - "y": 522.3232647963482 + "x": 125.78227, + "y": 522.32326 }, { "body": null, "index": 9, "isInternal": false, - "x": 121.3172689358332, - "y": 518.2366321919138 + "x": 121.31727, + "y": 518.23663 }, { "body": null, "index": 10, "isInternal": false, - "x": 118.06247585062431, - "y": 513.1325116043419 + "x": 118.06248, + "y": 513.13251 }, { "body": null, "index": 11, "isInternal": false, - "x": 116.2386030094425, - "y": 507.3614897832775 + "x": 116.2386, + "y": 507.36149 }, { "body": null, "index": 12, "isInternal": false, - "x": 115.97100461170515, - "y": 501.31340685580943 + "x": 115.971, + "y": 501.31341 }, { "body": null, "index": 13, "isInternal": false, - "x": 117.2780686543497, - "y": 495.403856230895 + "x": 117.27807, + "y": 495.40386 }, { "body": null, "index": 14, "isInternal": false, - "x": 120.06936045137327, - "y": 490.0322256494173 + "x": 120.06936, + "y": 490.03223 }, { "body": null, "index": 15, "isInternal": false, - "x": 124.15599305580783, - "y": 485.5672246464641 + "x": 124.15599, + "y": 485.56722 }, { "body": null, "index": 16, "isInternal": false, - "x": 129.2601136433798, - "y": 482.31243156125515 + "x": 129.26011, + "y": 482.31243 }, { "body": null, "index": 17, "isInternal": false, - "x": 135.03113546444405, - "y": 480.4885587200734 + "x": 135.03114, + "y": 480.48856 }, { "body": null, "index": 18, "isInternal": false, - "x": 141.07921839191192, - "y": 480.22096032233605 + "x": 141.07922, + "y": 480.22096 }, { "body": null, "index": 19, "isInternal": false, - "x": 146.98876901682624, - "y": 481.5280243649806 + "x": 146.98877, + "y": 481.52802 }, { "body": null, "index": 20, "isInternal": false, - "x": 152.3603995983042, - "y": 484.31931616200427 + "x": 152.3604, + "y": 484.31932 }, { "body": null, "index": 21, "isInternal": false, - "x": 156.82540060125731, - "y": 488.40594876643877 + "x": 156.8254, + "y": 488.40595 }, { "body": null, "index": 22, "isInternal": false, - "x": 160.0801936864662, - "y": 493.5100693540106 + "x": 160.08019, + "y": 493.51007 }, { "body": null, "index": 23, "isInternal": false, - "x": 161.904066527648, - "y": 499.2810911750749 + "x": 161.90407, + "y": 499.28109 }, { - "angle": -0.012219614206802962, - "anglePrev": -0.009556639879515823, - "angularSpeed": 0.002778890755303193, - "angularVelocity": -0.00293227520459482, - "area": 2578.6951839999997, + "angle": -0.01222, + "anglePrev": -0.00956, + "angularSpeed": 0.00278, + "angularVelocity": -0.00293, + "area": 2578.69518, "axes": { "#": 3803 }, "bounds": { "#": 3817 }, - "circleRadius": 28.790187757201647, + "circleRadius": 28.79019, "collisionFilter": { "#": 3820 }, @@ -34201,13 +34201,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 4233.391444164257, - "inverseInertia": 0.00023621722989460446, - "inverseMass": 0.3877930226901917, + "inertia": 4233.39144, + "inverseInertia": 0.00024, + "inverseMass": 0.38779, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.578695184, + "mass": 2.5787, "motion": 0, "parent": null, "position": { @@ -34229,7 +34229,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4112915451488255, + "speed": 0.41129, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34283,56 +34283,56 @@ } ], { - "x": -0.9737940561970453, - "y": -0.22743160755555922 + "x": -0.97379, + "y": -0.22743 }, { - "x": -0.8911072851045818, - "y": -0.4537926910314244 + "x": -0.89111, + "y": -0.45379 }, { - "x": -0.7565132240683383, - "y": -0.6539783955221522 + "x": -0.75651, + "y": -0.65398 }, { - "x": -0.578010032654371, - "y": -0.8160296576417387 + "x": -0.57801, + "y": -0.81603 }, { - "x": -0.36613491751491867, - "y": -0.9305617777323243 + "x": -0.36613, + "y": -0.93056 }, { - "x": -0.1325731978036076, - "y": -0.9911732175680117 + "x": -0.13257, + "y": -0.99117 }, { - "x": 0.10831251100642367, - "y": -0.9941168945146656 + "x": 0.10831, + "y": -0.99412 }, { - "x": 0.34328563316775734, - "y": -0.9392310546721782 + "x": 0.34329, + "y": -0.93923 }, { - "x": 0.5578962755230598, - "y": -0.829910685409881 + "x": 0.5579, + "y": -0.82991 }, { - "x": 0.740306175343157, - "y": -0.6722698615502463 + "x": 0.74031, + "y": -0.67227 }, { - "x": 0.8797519406410412, - "y": -0.475432984697446 + "x": 0.87975, + "y": -0.47543 }, { - "x": 0.9679455590974511, - "y": -0.2511600975941891 + "x": 0.96795, + "y": -0.25116 }, { - "x": 0.9999253414433202, - "y": -0.012219310105702739 + "x": 0.99993, + "y": -0.01222 }, { "max": { @@ -34343,12 +34343,12 @@ } }, { - "x": 282.2451355383032, - "y": 580.0331513291591 + "x": 282.24514, + "y": 580.03315 }, { - "x": 224.66088135879716, - "y": 522.2315795488284 + "x": 224.66088, + "y": 522.23158 }, { "category": 1, @@ -34365,16 +34365,16 @@ "y": 0 }, { - "x": 253.62486827378643, - "y": 551.0194301289818 + "x": 253.62487, + "y": 551.01943 }, { - "x": -0.3715296223354799, - "y": -0.18784959627180187 + "x": -0.37153, + "y": -0.18785 }, { - "x": 253.98498577161644, - "y": 551.0262547313698 + "x": 253.98499, + "y": 551.02625 }, { "endCol": 5, @@ -34397,8 +34397,8 @@ "yScale": 1 }, { - "x": -0.34294122898819523, - "y": -0.02494184427791879 + "x": -0.34294, + "y": -0.02494 }, [ { @@ -34484,197 +34484,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 282.2451355383032, - "y": 554.1399431809692 + "x": 282.24514, + "y": 554.13994 }, { "body": null, "index": 1, "isInternal": false, - "x": 280.66660547696824, - "y": 560.8987363310413 + "x": 280.66661, + "y": 560.89874 }, { "body": null, "index": 2, "isInternal": false, - "x": 277.5169461307231, - "y": 567.0836847546427 + "x": 277.51695, + "y": 567.08368 }, { "body": null, "index": 3, "isInternal": false, - "x": 272.9777691000586, - "y": 572.3345423878571 + "x": 272.97777, + "y": 572.33454 }, { "body": null, "index": 4, "isInternal": false, - "x": 267.31436407017105, - "y": 576.3460447831505 + "x": 267.31436, + "y": 576.34604 }, { "body": null, "index": 5, "isInternal": false, - "x": 260.85593247102565, - "y": 578.8871520770601 + "x": 260.85593, + "y": 578.88715 }, { "body": null, "index": 6, "isInternal": false, - "x": 253.9766622117296, - "y": 579.8072807091351 + "x": 253.97666, + "y": 579.80728 }, { "body": null, "index": 7, "isInternal": false, - "x": 247.07696126593677, - "y": 579.0555341703166 + "x": 247.07696, + "y": 579.05553 }, { "body": null, "index": 8, "isInternal": false, - "x": 240.5583617838308, - "y": 576.6730090829591 + "x": 240.55836, + "y": 576.67301 }, { "body": null, "index": 9, "isInternal": false, - "x": 234.79861971306985, - "y": 572.8011000863132 + "x": 234.79862, + "y": 572.8011 }, { "body": null, "index": 10, "isInternal": false, - "x": 230.1324840504072, - "y": 567.6627334219316 + "x": 230.13248, + "y": 567.66273 }, { "body": null, "index": 11, "isInternal": false, - "x": 226.83262494434283, - "y": 561.556599548512 + "x": 226.83262, + "y": 561.5566 }, { "body": null, "index": 12, "isInternal": false, - "x": 225.08940302140311, - "y": 554.8383989466112 + "x": 225.0894, + "y": 554.8384 }, { "body": null, "index": 13, "isInternal": false, - "x": 225.00460100926958, - "y": 547.8989170769943 + "x": 225.0046, + "y": 547.89892 }, { "body": null, "index": 14, "isInternal": false, - "x": 226.58313107060457, - "y": 541.1401239269222 + "x": 226.58313, + "y": 541.14012 }, { "body": null, "index": 15, "isInternal": false, - "x": 229.73279041684967, - "y": 534.9551755033208 + "x": 229.73279, + "y": 534.95518 }, { "body": null, "index": 16, "isInternal": false, - "x": 234.27196744751407, - "y": 529.7043178701064 + "x": 234.27197, + "y": 529.70432 }, { "body": null, "index": 17, "isInternal": false, - "x": 239.93537247740167, - "y": 525.692815474813 + "x": 239.93537, + "y": 525.69282 }, { "body": null, "index": 18, "isInternal": false, - "x": 246.3938040765472, - "y": 523.1517081809034 + "x": 246.3938, + "y": 523.15171 }, { "body": null, "index": 19, "isInternal": false, - "x": 253.2730743358432, - "y": 522.2315795488284 + "x": 253.27307, + "y": 522.23158 }, { "body": null, "index": 20, "isInternal": false, - "x": 260.17277528163595, - "y": 522.9833260876469 + "x": 260.17278, + "y": 522.98333 }, { "body": null, "index": 21, "isInternal": false, - "x": 266.691374763742, - "y": 525.3658511750044 + "x": 266.69137, + "y": 525.36585 }, { "body": null, "index": 22, "isInternal": false, - "x": 272.4511168345029, - "y": 529.2377601716503 + "x": 272.45112, + "y": 529.23776 }, { "body": null, "index": 23, "isInternal": false, - "x": 277.1172524971656, - "y": 534.3761268360319 + "x": 277.11725, + "y": 534.37613 }, { "body": null, "index": 24, "isInternal": false, - "x": 280.41711160323, - "y": 540.4822607094515 + "x": 280.41711, + "y": 540.48226 }, { "body": null, "index": 25, "isInternal": false, - "x": 282.16033352616955, - "y": 547.2004613113523 + "x": 282.16033, + "y": 547.20046 }, { - "angle": 0.15952516077951354, - "anglePrev": 0.13919729001357495, - "angularSpeed": 0.017946489534699146, - "angularVelocity": 0.019514148821397292, - "area": 792.3786020000001, + "angle": 0.15953, + "anglePrev": 0.1392, + "angularSpeed": 0.01795, + "angularVelocity": 0.01951, + "area": 792.3786, "axes": { "#": 3858 }, "bounds": { "#": 3868 }, - "circleRadius": 16.04417438271605, + "circleRadius": 16.04417, "collisionFilter": { "#": 3871 }, @@ -34689,13 +34689,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 399.7439941436189, - "inverseInertia": 0.0025016010613050583, - "inverseMass": 1.2620229742145408, + "inertia": 399.74399, + "inverseInertia": 0.0025, + "inverseMass": 1.26202, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7923786020000001, + "mass": 0.79238, "motion": 0, "parent": null, "position": { @@ -34717,7 +34717,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.671020397653281, + "speed": 0.67102, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34759,40 +34759,40 @@ } ], { - "x": -0.8734929117442195, - "y": -0.48683686500983564 + "x": -0.87349, + "y": -0.48684 }, { - "x": -0.6542234992618733, - "y": -0.7563012713287933 + "x": -0.65422, + "y": -0.7563 }, { - "x": -0.35604131881210294, - "y": -0.9344702131681558 + "x": -0.35604, + "y": -0.93447 }, { - "x": -0.014917747096779437, - "y": -0.9998887242196286 + "x": -0.01492, + "y": -0.99989 }, { - "x": 0.32779495117567964, - "y": -0.9447488925549127 + "x": 0.32779, + "y": -0.94475 }, { - "x": 0.6311837935866232, - "y": -0.7756333017048708 + "x": 0.63118, + "y": -0.77563 }, { - "x": 0.8584324784132547, - "y": -0.5129265834456987 + "x": 0.85843, + "y": -0.51293 }, { - "x": 0.9821146412129583, - "y": -0.18828391199234662 + "x": 0.98211, + "y": -0.18828 }, { - "x": 0.9873028226096283, - "y": 0.1588494144372611 + "x": 0.9873, + "y": 0.15885 }, { "max": { @@ -34803,12 +34803,12 @@ } }, { - "x": 313.92625266837166, - "y": 562.4008330019782 + "x": 313.92625, + "y": 562.40083 }, { - "x": 281.5850756371991, - "y": 530.1005297255111 + "x": 281.58508, + "y": 530.10053 }, { "category": 1, @@ -34825,16 +34825,16 @@ "y": 0 }, { - "x": 297.8843136025173, - "y": 545.9408162114601 + "x": 297.88431, + "y": 545.94082 }, { - "x": -0.30288310998367574, - "y": 0.07234889839116226 + "x": -0.30288, + "y": 0.07235 }, { - "x": 298.28125838721576, - "y": 545.5816543776648 + "x": 298.28126, + "y": 545.58165 }, { "endCol": 6, @@ -34857,8 +34857,8 @@ "yScale": 1 }, { - "x": -0.3436319287053493, - "y": 0.21512747881183714 + "x": -0.34363, + "y": 0.21513 }, [ { @@ -34920,141 +34920,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 313.04114373112725, - "y": 551.2012626233591 + "x": 313.04114, + "y": 551.20126 }, { "body": null, "index": 1, "isInternal": false, - "x": 310.32859632006233, - "y": 556.0681720680402 + "x": 310.3286, + "y": 556.06817 }, { "body": null, "index": 2, "isInternal": false, - "x": 306.1139494592421, - "y": 559.7139692152465 + "x": 306.11395, + "y": 559.71397 }, { "body": null, "index": 3, "isInternal": false, - "x": 300.90667156870575, - "y": 561.6979876049626 + "x": 300.90667, + "y": 561.69799 }, { "body": null, "index": 4, "isInternal": false, - "x": 295.3357335972859, - "y": 561.781102697409 + "x": 295.33573, + "y": 561.7811 }, { "body": null, "index": 5, "isInternal": false, - "x": 290.07201039338764, - "y": 559.9547741309283 + "x": 290.07201, + "y": 559.95477 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.74984144009574, - "y": 556.4375411930637 + "x": 285.74984, + "y": 556.43754 }, { "body": null, "index": 7, "isInternal": false, - "x": 282.8914508797408, - "y": 551.6537468408288 + "x": 282.89145, + "y": 551.65375 }, { "body": null, "index": 8, "isInternal": false, - "x": 281.84237453666293, - "y": 546.1816211271419 + "x": 281.84237, + "y": 546.18162 }, { "body": null, "index": 9, "isInternal": false, - "x": 282.72748347390734, - "y": 540.680369799561 + "x": 282.72748, + "y": 540.68037 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.44003088497226, - "y": 535.8134603548799 + "x": 285.44003, + "y": 535.81346 }, { "body": null, "index": 11, "isInternal": false, - "x": 289.65467774579247, - "y": 532.1676632076736 + "x": 289.65468, + "y": 532.16766 }, { "body": null, "index": 12, "isInternal": false, - "x": 294.86195563632884, - "y": 530.1836448179575 + "x": 294.86196, + "y": 530.18364 }, { "body": null, "index": 13, "isInternal": false, - "x": 300.43289360774867, - "y": 530.1005297255111 + "x": 300.43289, + "y": 530.10053 }, { "body": null, "index": 14, "isInternal": false, - "x": 305.69661681164695, - "y": 531.9268582919918 + "x": 305.69662, + "y": 531.92686 }, { "body": null, "index": 15, "isInternal": false, - "x": 310.01878576493885, - "y": 535.4440912298564 + "x": 310.01879, + "y": 535.44409 }, { "body": null, "index": 16, "isInternal": false, - "x": 312.8771763252938, - "y": 540.2278855820913 + "x": 312.87718, + "y": 540.22789 }, { "body": null, "index": 17, "isInternal": false, - "x": 313.92625266837166, - "y": 545.7000112957783 + "x": 313.92625, + "y": 545.70001 }, { - "angle": -0.01497846726476404, - "anglePrev": 0.002241994369899648, - "angularSpeed": 0.008144711450322065, - "angularVelocity": -0.01962595569169997, - "area": 753.695398, + "angle": -0.01498, + "anglePrev": 0.00224, + "angularSpeed": 0.00814, + "angularVelocity": -0.01963, + "area": 753.6954, "axes": { "#": 3901 }, "bounds": { "#": 3910 }, - "circleRadius": 15.690136316872428, + "circleRadius": 15.69014, "collisionFilter": { "#": 3913 }, @@ -35069,13 +35069,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 361.68483161032174, - "inverseInertia": 0.002764838092733171, - "inverseMass": 1.326795947877076, + "inertia": 361.68483, + "inverseInertia": 0.00276, + "inverseMass": 1.3268, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.753695398, + "mass": 0.7537, "motion": 0, "parent": null, "position": { @@ -35097,7 +35097,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.15803798926424173, + "speed": 0.15804, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35136,36 +35136,36 @@ } ], { - "x": -0.9294961112015754, - "y": -0.36883191193435055 + "x": -0.9295, + "y": -0.36883 }, { - "x": -0.717618441123913, - "y": -0.6964364816398441 + "x": -0.71762, + "y": -0.69644 }, { - "x": -0.39650711571630953, - "y": -0.9180316482487588 + "x": -0.39651, + "y": -0.91803 }, { - "x": -0.014977907190003775, - "y": -0.9998878248564722 + "x": -0.01498, + "y": -0.99989 }, { - "x": 0.36883191193435055, - "y": -0.9294961112015754 + "x": 0.36883, + "y": -0.9295 }, { - "x": 0.6964364816398441, - "y": -0.717618441123913 + "x": 0.69644, + "y": -0.71762 }, { - "x": 0.9180316482487588, - "y": -0.39650711571630953 + "x": 0.91803, + "y": -0.39651 }, { - "x": 0.9998878248564722, - "y": -0.014977907190003775 + "x": 0.99989, + "y": -0.01498 }, { "max": { @@ -35176,12 +35176,12 @@ } }, { - "x": 338.9287566805042, - "y": 580.0053279042183 + "x": 338.92876, + "y": 580.00533 }, { - "x": 308.02194762559736, - "y": 548.9863429644588 + "x": 308.02195, + "y": 548.98634 }, { "category": 1, @@ -35198,16 +35198,16 @@ "y": 0 }, { - "x": 323.4550687362222, - "y": 564.4194640750837 + "x": 323.45507, + "y": 564.41946 }, { "x": 0, "y": 0 }, { - "x": 323.60656950714326, - "y": 564.4181475884182 + "x": 323.60657, + "y": 564.41815 }, { "endCol": 7, @@ -35230,8 +35230,8 @@ "yScale": 1 }, { - "x": -0.09510943011565587, - "y": 0.009680670297711913 + "x": -0.09511, + "y": 0.00968 }, [ { @@ -35287,127 +35287,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.888189846847, - "y": 567.2496256932222 + "x": 338.88819, + "y": 567.24963 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.630167716275, - "y": 572.9400844671569 + "x": 336.63017, + "y": 572.94008 }, { "body": null, "index": 2, "isInternal": false, - "x": 332.3664926826969, - "y": 577.333438221186 + "x": 332.36649, + "y": 577.33344 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.7462203818547, - "y": 579.7608904378914 + "x": 326.74622, + "y": 579.76089 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.6249071180835, - "y": 579.8525851857087 + "x": 320.62491, + "y": 579.85259 }, { "body": null, "index": 5, "isInternal": false, - "x": 314.9344483441492, - "y": 577.5945630551366 + "x": 314.93445, + "y": 577.59456 }, { "body": null, "index": 6, "isInternal": false, - "x": 310.5410945901198, - "y": 573.3308880215583 + "x": 310.54109, + "y": 573.33089 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.1136423734146, - "y": 567.7106157207166 + "x": 308.11364, + "y": 567.71062 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.02194762559736, - "y": 561.5893024569452 + "x": 308.02195, + "y": 561.5893 }, { "body": null, "index": 9, "isInternal": false, - "x": 310.27996975616935, - "y": 555.8988436830106 + "x": 310.27997, + "y": 555.89884 }, { "body": null, "index": 10, "isInternal": false, - "x": 314.5436447897475, - "y": 551.5054899289814 + "x": 314.54364, + "y": 551.50549 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.1639170905897, - "y": 549.0780377122761 + "x": 320.16392, + "y": 549.07804 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.28523035436086, - "y": 548.9863429644588 + "x": 326.28523, + "y": 548.98634 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.9756891282952, - "y": 551.2443650950308 + "x": 331.97569, + "y": 551.24437 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.36904288232455, - "y": 555.5080401286092 + "x": 336.36904, + "y": 555.50804 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.79649509902976, - "y": 561.1283124294508 + "x": 338.7965, + "y": 561.12831 }, { - "angle": -0.14245149625422837, - "anglePrev": -0.11523339874192366, - "angularSpeed": 0.020778821001354388, - "angularVelocity": -0.027495273154778607, - "area": 1630.6059260000002, + "angle": -0.14245, + "anglePrev": -0.11523, + "angularSpeed": 0.02078, + "angularVelocity": -0.0275, + "area": 1630.60593, "axes": { "#": 3941 }, "bounds": { "#": 3954 }, - "circleRadius": 22.913258744855966, + "circleRadius": 22.91326, "collisionFilter": { "#": 3957 }, @@ -35422,13 +35422,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 1692.7373724676456, - "inverseInertia": 0.0005907590960446605, - "inverseMass": 0.6132689597498738, + "inertia": 1692.73737, + "inverseInertia": 0.00059, + "inverseMass": 0.61327, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6306059260000003, + "mass": 1.63061, "motion": 0, "parent": null, "position": { @@ -35450,7 +35450,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7618004561500358, + "speed": 0.7618, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35501,52 +35501,52 @@ } ], { - "x": -0.9928905354027124, - "y": -0.11903102413957048 + "x": -0.99289, + "y": -0.11903 }, { - "x": -0.928220937777137, - "y": -0.3720294217829183 + "x": -0.92822, + "y": -0.37203 }, { - "x": -0.8003325420107806, - "y": -0.5995563544810132 + "x": -0.80033, + "y": -0.59956 }, { - "x": -0.6179223346703918, - "y": -0.7862391419380572 + "x": -0.61792, + "y": -0.78624 }, { - "x": -0.39329889382023486, - "y": -0.9194106700054009 + "x": -0.3933, + "y": -0.91941 }, { - "x": -0.14197020370308075, - "y": -0.9898709316171003 + "x": -0.14197, + "y": -0.98987 }, { - "x": 0.11903102413957048, - "y": -0.9928905354027124 + "x": 0.11903, + "y": -0.99289 }, { - "x": 0.3720294217829183, - "y": -0.928220937777137 + "x": 0.37203, + "y": -0.92822 }, { - "x": 0.5995563544810132, - "y": -0.8003325420107806 + "x": 0.59956, + "y": -0.80033 }, { - "x": 0.7862391419380572, - "y": -0.6179223346703918 + "x": 0.78624, + "y": -0.61792 }, { - "x": 0.9194106700054009, - "y": -0.39329889382023486 + "x": 0.91941, + "y": -0.3933 }, { - "x": 0.9898709316171003, - "y": -0.14197020370308075 + "x": 0.98987, + "y": -0.14197 }, { "max": { @@ -35557,12 +35557,12 @@ } }, { - "x": 340.15632749505477, - "y": 536.0568044180812 + "x": 340.15633, + "y": 536.0568 }, { - "x": 294.04146802516743, - "y": 489.5300425489215 + "x": 294.04147, + "y": 489.53004 }, { "category": 1, @@ -35579,16 +35579,16 @@ "y": 0 }, { - "x": 317.2447966622333, - "y": 512.4415733817433 + "x": 317.2448, + "y": 512.44157 }, { - "x": -0.3454833011025513, - "y": -0.10946645133772986 + "x": -0.34548, + "y": -0.10947 }, { - "x": 317.2907350412966, - "y": 511.87316796764816 + "x": 317.29074, + "y": 511.87317 }, { "endCol": 7, @@ -35611,8 +35611,8 @@ "yScale": 1 }, { - "x": -0.07184529233211379, - "y": 0.6383976415376651 + "x": -0.07185, + "y": 0.6384 }, [ { @@ -35692,183 +35692,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 340.15632749505477, - "y": 512.1771402206873 + "x": 340.15633, + "y": 512.17714 }, { "body": null, "index": 1, "isInternal": false, - "x": 339.44431112990804, - "y": 518.116384338903 + "x": 339.44431, + "y": 518.11638 }, { "body": null, "index": 2, "isInternal": false, - "x": 337.21901282862314, - "y": 523.6685486439557 + "x": 337.21901, + "y": 523.66855 }, { "body": null, "index": 3, "isInternal": false, - "x": 333.63324065027484, - "y": 528.4551048052248 + "x": 333.63324, + "y": 528.4551 }, { "body": null, "index": 4, "isInternal": false, - "x": 328.93034210377414, - "y": 532.1512144168735 + "x": 328.93034, + "y": 532.15121 }, { "body": null, "index": 5, "isInternal": false, - "x": 323.4306377362228, - "y": 534.5038384560131 + "x": 323.43064, + "y": 534.50384 }, { "body": null, "index": 6, "isInternal": false, - "x": 317.5092298232895, - "y": 535.3531042145652 + "x": 317.50923, + "y": 535.3531 }, { "body": null, "index": 7, "isInternal": false, - "x": 311.5699857050734, - "y": 534.6410878494181 + "x": 311.56999, + "y": 534.64109 }, { "body": null, "index": 8, "isInternal": false, - "x": 306.0178214000209, - "y": 532.4157895481334 + "x": 306.01782, + "y": 532.41579 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.2312652387519, - "y": 528.830017369785 + "x": 301.23127, + "y": 528.83002 }, { "body": null, "index": 10, "isInternal": false, - "x": 297.5351556271033, - "y": 524.1271188232843 + "x": 297.53516, + "y": 524.12712 }, { "body": null, "index": 11, "isInternal": false, - "x": 295.1825315879635, - "y": 518.6274144557331 + "x": 295.18253, + "y": 518.62741 }, { "body": null, "index": 12, "isInternal": false, - "x": 294.33326582941174, - "y": 512.7060065427994 + "x": 294.33327, + "y": 512.70601 }, { "body": null, "index": 13, "isInternal": false, - "x": 295.0452821945585, - "y": 506.7667624245832 + "x": 295.04528, + "y": 506.76676 }, { "body": null, "index": 14, "isInternal": false, - "x": 297.27058049584343, - "y": 501.21459811953065 + "x": 297.27058, + "y": 501.2146 }, { "body": null, "index": 15, "isInternal": false, - "x": 300.8563526741917, - "y": 496.4280419582616 + "x": 300.85635, + "y": 496.42804 }, { "body": null, "index": 16, "isInternal": false, - "x": 305.55925122069243, - "y": 492.731932346613 + "x": 305.55925, + "y": 492.73193 }, { "body": null, "index": 17, "isInternal": false, - "x": 311.05895558824363, - "y": 490.3793083074732 + "x": 311.05896, + "y": 490.37931 }, { "body": null, "index": 18, "isInternal": false, - "x": 316.98036350117707, - "y": 489.5300425489215 + "x": 316.98036, + "y": 489.53004 }, { "body": null, "index": 19, "isInternal": false, - "x": 322.9196076193931, - "y": 490.2420589140683 + "x": 322.91961, + "y": 490.24206 }, { "body": null, "index": 20, "isInternal": false, - "x": 328.47177192444565, - "y": 492.46735721535316 + "x": 328.47177, + "y": 492.46736 }, { "body": null, "index": 21, "isInternal": false, - "x": 333.25832808571465, - "y": 496.0531293937015 + "x": 333.25833, + "y": 496.05313 }, { "body": null, "index": 22, "isInternal": false, - "x": 336.9544376973633, - "y": 500.75602794020216 + "x": 336.95444, + "y": 500.75603 }, { "body": null, "index": 23, "isInternal": false, - "x": 339.3070617365031, - "y": 506.2557323077535 + "x": 339.30706, + "y": 506.25573 }, { - "angle": -0.004128661818922115, - "anglePrev": -0.005430399088443044, - "angularSpeed": 0.0019519076026039452, - "angularVelocity": 0.000820105470894482, - "area": 1793.4883420000006, + "angle": -0.00413, + "anglePrev": -0.00543, + "angularSpeed": 0.00195, + "angularVelocity": 0.00082, + "area": 1793.48834, "axes": { "#": 3993 }, "bounds": { "#": 4007 }, - "circleRadius": 24.009837962962962, + "circleRadius": 24.00984, "collisionFilter": { "#": 4010 }, @@ -35883,13 +35883,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 2047.790506990953, - "inverseInertia": 0.000488331202135228, - "inverseMass": 0.5575726234634202, + "inertia": 2047.79051, + "inverseInertia": 0.00049, + "inverseMass": 0.55757, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7934883420000005, + "mass": 1.79349, "motion": 0, "parent": null, "position": { @@ -35911,7 +35911,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.23162062833761968, + "speed": 0.23162, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35965,56 +35965,56 @@ } ], { - "x": -0.9719297072128874, - "y": -0.23527142673319007 + "x": -0.97193, + "y": -0.23527 }, { - "x": -0.887353580153293, - "y": -0.46108960494586443 + "x": -0.88735, + "y": -0.46109 }, { - "x": -0.7512168261759659, - "y": -0.6600555128700226 + "x": -0.75122, + "y": -0.66006 }, { - "x": -0.5714972141742335, - "y": -0.8206040057123112 + "x": -0.5715, + "y": -0.8206 }, { - "x": -0.3583866830021897, - "y": -0.9335732351811981 + "x": -0.35839, + "y": -0.93357 }, { - "x": -0.12468683039549784, - "y": -0.9921961471029429 + "x": -0.12469, + "y": -0.9922 }, { - "x": 0.11648978803797527, - "y": -0.9931918894568501 + "x": 0.11649, + "y": -0.99319 }, { - "x": 0.35066573632085757, - "y": -0.936500689466138 + "x": 0.35067, + "y": -0.9365 }, { - "x": 0.5647018151229293, - "y": -0.8252950139173684 + "x": 0.5647, + "y": -0.8253 }, { - "x": 0.7457409860128354, - "y": -0.6662359805508891 + "x": 0.74574, + "y": -0.66624 }, { - "x": 0.8835160061082363, - "y": -0.4684009681357963 + "x": 0.88352, + "y": -0.4684 }, { - "x": 0.9699538824316761, - "y": -0.24328885292120933 + "x": 0.96995, + "y": -0.24329 }, { - "x": 0.9999914770878994, - "y": -0.00412865008950819 + "x": 0.99999, + "y": -0.00413 }, { "max": { @@ -36025,12 +36025,12 @@ } }, { - "x": 491.36262021700105, - "y": 580.3624107019144 + "x": 491.36262, + "y": 580.36241 }, { - "x": 443.65869594595665, - "y": 532.1114344744575 + "x": 443.6587, + "y": 532.11143 }, { "category": 1, @@ -36047,16 +36047,16 @@ "y": 0 }, { - "x": 467.51587504725194, - "y": 556.121229839338 + "x": 467.51588, + "y": 556.12123 }, { "x": 0, "y": 0 }, { - "x": 467.364131031683, - "y": 556.1433100877896 + "x": 467.36413, + "y": 556.14331 }, { "endCol": 10, @@ -36079,8 +36079,8 @@ "yScale": 1 }, { - "x": 0.18868343682169098, - "y": -0.08008471923153593 + "x": 0.18868, + "y": -0.08008 }, [ { @@ -36166,197 +36166,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 491.36262021700105, - "y": 558.9167987991469 + "x": 491.36262, + "y": 558.9168 }, { "body": null, "index": 1, "isInternal": false, - "x": 490.00083503473724, - "y": 564.5424690807549 + "x": 490.00084, + "y": 564.54247 }, { "body": null, "index": 2, "isInternal": false, - "x": 487.3320172930795, - "y": 569.6785314695712 + "x": 487.33202, + "y": 569.67853 }, { "body": null, "index": 3, "isInternal": false, - "x": 483.51093945337703, - "y": 574.0273444274867 + "x": 483.51094, + "y": 574.02734 }, { "body": null, "index": 4, "isInternal": false, - "x": 478.7615550495016, - "y": 577.3349811645279 + "x": 478.76156, + "y": 577.33498 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.35807316548545, - "y": 579.4093079297967 + "x": 473.35807, + "y": 579.40931 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.61500393590086, - "y": 580.1310252042184 + "x": 467.615, + "y": 580.13103 }, { "body": null, "index": 7, "isInternal": false, - "x": 461.86617111079147, - "y": 579.4567543766256 + "x": 461.86617, + "y": 579.45675 }, { "body": null, "index": 8, "isInternal": false, - "x": 456.4457452468079, - "y": 577.4271161199255 + "x": 456.44575, + "y": 577.42712 }, { "body": null, "index": 9, "isInternal": false, - "x": 451.66921083994396, - "y": 574.1588089036367 + "x": 451.66921, + "y": 574.15881 }, { "body": null, "index": 10, "isInternal": false, - "x": 447.8123541185657, - "y": 569.8416957211087 + "x": 447.81235, + "y": 569.8417 }, { "body": null, "index": 11, "isInternal": false, - "x": 445.1012177134907, - "y": 564.7278454697738 + "x": 445.10122, + "y": 564.72785 }, { "body": null, "index": 12, "isInternal": false, - "x": 443.6930265042209, - "y": 559.1136115489139 + "x": 443.69303, + "y": 559.11361 }, { "body": null, "index": 13, "isInternal": false, - "x": 443.6691298775027, - "y": 553.325660879529 + "x": 443.66913, + "y": 553.32566 }, { "body": null, "index": 14, "isInternal": false, - "x": 445.0309150597665, - "y": 547.699990597921 + "x": 445.03092, + "y": 547.69999 }, { "body": null, "index": 15, "isInternal": false, - "x": 447.69973280142415, - "y": 542.5639282091047 + "x": 447.69973, + "y": 542.56393 }, { "body": null, "index": 16, "isInternal": false, - "x": 451.52081064112684, - "y": 538.2151152511892 + "x": 451.52081, + "y": 538.21512 }, { "body": null, "index": 17, "isInternal": false, - "x": 456.27019504500214, - "y": 534.907478514148 + "x": 456.2702, + "y": 534.90748 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.6736769290182, - "y": 532.8331517488792 + "x": 461.67368, + "y": 532.83315 }, { "body": null, "index": 19, "isInternal": false, - "x": 467.4167461586028, - "y": 532.1114344744575 + "x": 467.41675, + "y": 532.11143 }, { "body": null, "index": 20, "isInternal": false, - "x": 473.1655789837123, - "y": 532.7857053020504 + "x": 473.16558, + "y": 532.78571 }, { "body": null, "index": 21, "isInternal": false, - "x": 478.58600484769573, - "y": 534.8153435587504 + "x": 478.586, + "y": 534.81534 }, { "body": null, "index": 22, "isInternal": false, - "x": 483.3625392545597, - "y": 538.0836507750392 + "x": 483.36254, + "y": 538.08365 }, { "body": null, "index": 23, "isInternal": false, - "x": 487.21939597593797, - "y": 542.4007639575672 + "x": 487.2194, + "y": 542.40076 }, { "body": null, "index": 24, "isInternal": false, - "x": 489.93053238101317, - "y": 547.5146142089021 + "x": 489.93053, + "y": 547.51461 }, { "body": null, "index": 25, "isInternal": false, - "x": 491.338723590283, - "y": 553.128848129762 + "x": 491.33872, + "y": 553.12885 }, { - "angle": 0.025146653338851403, - "anglePrev": 0.045592684672792476, - "angularSpeed": 0.01580853216798863, - "angularVelocity": -0.017377068133794457, - "area": 1007.2220640000002, + "angle": 0.02515, + "anglePrev": 0.04559, + "angularSpeed": 0.01581, + "angularVelocity": -0.01738, + "area": 1007.22206, "axes": { "#": 4048 }, "bounds": { "#": 4059 }, - "circleRadius": 18.05394804526749, + "circleRadius": 18.05395, "collisionFilter": { "#": 4062 }, @@ -36371,13 +36371,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 645.8837609881251, - "inverseInertia": 0.0015482662057799987, - "inverseMass": 0.9928297202194726, + "inertia": 645.88376, + "inverseInertia": 0.00155, + "inverseMass": 0.99283, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0072220640000003, + "mass": 1.00722, "motion": 0, "parent": null, "position": { @@ -36399,7 +36399,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5413781262475503, + "speed": 0.54138, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36444,44 +36444,44 @@ } ], { - "x": -0.9429561231665908, - "y": -0.3329170313796418 + "x": -0.94296, + "y": -0.33292 }, { - "x": -0.7940080052575316, - "y": -0.6079073018042768 + "x": -0.79401, + "y": -0.60791 }, { - "x": -0.5672221828200458, - "y": -0.8235648094211306 + "x": -0.56722, + "y": -0.82356 }, { - "x": -0.2850916858287283, - "y": -0.958500250741404 + "x": -0.28509, + "y": -0.9585 }, { - "x": 0.025144003157444694, - "y": -0.999683839573902 + "x": 0.02514, + "y": -0.99968 }, { - "x": 0.3329170313796418, - "y": -0.9429561231665908 + "x": 0.33292, + "y": -0.94296 }, { - "x": 0.6079073018042768, - "y": -0.7940080052575316 + "x": 0.60791, + "y": -0.79401 }, { - "x": 0.8235648094211306, - "y": -0.5672221828200458 + "x": 0.82356, + "y": -0.56722 }, { - "x": 0.958500250741404, - "y": -0.2850916858287283 + "x": 0.9585, + "y": -0.28509 }, { - "x": 0.999683839573902, - "y": 0.025144003157444694 + "x": 0.99968, + "y": 0.02514 }, { "max": { @@ -36492,12 +36492,12 @@ } }, { - "x": 552.9230857689757, - "y": 542.2639993068652 + "x": 552.92309, + "y": 542.264 }, { - "x": 516.8598788613293, - "y": 505.99913961759574 + "x": 516.85988, + "y": 505.99914 }, { "category": 1, @@ -36514,16 +36514,16 @@ "y": 0 }, { - "x": 534.7572477535277, - "y": 523.8965085097942 + "x": 534.75725, + "y": 523.89651 }, { "x": 0, "y": 0 }, { - "x": 534.5491267097796, - "y": 523.7801060320945 + "x": 534.54913, + "y": 523.78011 }, { "endCol": 11, @@ -36546,8 +36546,8 @@ "yScale": 1 }, { - "x": 0.3558883398384296, - "y": 0.06686598868657256 + "x": 0.35589, + "y": 0.06687 }, [ { @@ -36615,155 +36615,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 552.5126033158929, - "y": 527.1679835370543 + "x": 552.5126, + "y": 527.16798 }, { "body": null, "index": 1, "isInternal": false, - "x": 550.6320817470353, - "y": 532.4943836937327 + "x": 550.63208, + "y": 532.49438 }, { "body": null, "index": 2, "isInternal": false, - "x": 547.19822330522, - "y": 536.9794607501026 + "x": 547.19822, + "y": 536.97946 }, { "body": null, "index": 3, "isInternal": false, - "x": 542.5461900678847, - "y": 540.1835030030584 + "x": 542.54619, + "y": 540.1835 }, { "body": null, "index": 4, "isInternal": false, - "x": 537.1319870521809, - "y": 541.7938774019927 + "x": 537.13199, + "y": 541.79388 }, { "body": null, "index": 5, "isInternal": false, - "x": 531.4857727262676, - "y": 541.6518640721594 + "x": 531.48577, + "y": 541.65186 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.1593725695892, - "y": 539.7713425033018 + "x": 526.15937, + "y": 539.77134 }, { "body": null, "index": 7, "isInternal": false, - "x": 521.6742955132194, - "y": 536.3374840614865 + "x": 521.6743, + "y": 536.33748 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4702532602636, - "y": 531.6854508241512 + "x": 518.47025, + "y": 531.68545 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.8598788613293, - "y": 526.2712478084474 + "x": 516.85988, + "y": 526.27125 }, { "body": null, "index": 10, "isInternal": false, - "x": 517.0018921911626, - "y": 520.6250334825341 + "x": 517.00189, + "y": 520.62503 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.8824137600204, - "y": 515.2986333258557 + "x": 518.88241, + "y": 515.29863 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.3162722018353, - "y": 510.8135562694857 + "x": 522.31627, + "y": 510.81356 }, { "body": null, "index": 13, "isInternal": false, - "x": 526.9683054391708, - "y": 507.60951401653017 + "x": 526.96831, + "y": 507.60951 }, { "body": null, "index": 14, "isInternal": false, - "x": 532.3825084548745, - "y": 505.99913961759574 + "x": 532.38251, + "y": 505.99914 }, { "body": null, "index": 15, "isInternal": false, - "x": 538.0287227807878, - "y": 506.141152947429 + "x": 538.02872, + "y": 506.14115 }, { "body": null, "index": 16, "isInternal": false, - "x": 543.3551229374663, - "y": 508.02167451628685 + "x": 543.35512, + "y": 508.02167 }, { "body": null, "index": 17, "isInternal": false, - "x": 547.8401999938361, - "y": 511.45553295810174 + "x": 547.8402, + "y": 511.45553 }, { "body": null, "index": 18, "isInternal": false, - "x": 551.044242246792, - "y": 516.1075661954372 + "x": 551.04424, + "y": 516.10757 }, { "body": null, "index": 19, "isInternal": false, - "x": 552.6546166457262, - "y": 521.5217692111411 + "x": 552.65462, + "y": 521.52177 }, { - "angle": 0.09996174240893974, - "anglePrev": 0.0871425039386053, - "angularSpeed": 0.00992150942125203, - "angularVelocity": 0.013708229725522603, - "area": 1064.9913560000002, + "angle": 0.09996, + "anglePrev": 0.08714, + "angularSpeed": 0.00992, + "angularVelocity": 0.01371, + "area": 1064.99136, "axes": { "#": 4094 }, "bounds": { "#": 4105 }, - "circleRadius": 18.564107510288068, + "circleRadius": 18.56411, "collisionFilter": { "#": 4108 }, @@ -36778,13 +36778,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 722.0978790866207, - "inverseInertia": 0.0013848538113211146, - "inverseMass": 0.9389747572749312, + "inertia": 722.09788, + "inverseInertia": 0.00138, + "inverseMass": 0.93897, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0649913560000002, + "mass": 1.06499, "motion": 0, "parent": null, "position": { @@ -36806,7 +36806,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6296469302119831, + "speed": 0.62965, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36851,44 +36851,44 @@ } ], { - "x": -0.915460906289384, - "y": -0.4024069197414734 + "x": -0.91546, + "y": -0.40241 }, { - "x": -0.7463222972101374, - "y": -0.6655847269033323 + "x": -0.74632, + "y": -0.66558 }, { - "x": -0.5041120771283931, - "y": -0.8636382423754156 + "x": -0.50411, + "y": -0.86364 }, { - "x": -0.21258633395144608, - "y": -0.9771422878051512 + "x": -0.21259, + "y": -0.97714 }, { - "x": 0.09979535011131875, - "y": -0.9950079839358877 + "x": 0.0998, + "y": -0.99501 }, { - "x": 0.4024069197414734, - "y": -0.915460906289384 + "x": 0.40241, + "y": -0.91546 }, { - "x": 0.6655847269033323, - "y": -0.7463222972101374 + "x": 0.66558, + "y": -0.74632 }, { - "x": 0.8636382423754156, - "y": -0.5041120771283931 + "x": 0.86364, + "y": -0.50411 }, { - "x": 0.9771422878051512, - "y": -0.21258633395144608 + "x": 0.97714, + "y": -0.21259 }, { - "x": 0.9950079839358877, - "y": 0.09979535011131875 + "x": 0.99501, + "y": 0.0998 }, { "max": { @@ -36899,12 +36899,12 @@ } }, { - "x": 517.883176558176, - "y": 548.2169801328188 + "x": 517.88318, + "y": 548.21698 }, { - "x": 480.5747582885924, - "y": 510.56627130391166 + "x": 480.57476, + "y": 510.56627 }, { "category": 1, @@ -36921,16 +36921,16 @@ "y": 0 }, { - "x": 499.1090303787641, - "y": 529.1005433940838 + "x": 499.10903, + "y": 529.10054 }, { "x": 0, "y": 0 }, { - "x": 498.7453161291598, - "y": 528.9498066044514 + "x": 498.74532, + "y": 528.94981 }, { "endCol": 10, @@ -36953,8 +36953,8 @@ "yScale": 1 }, { - "x": 0.39824632759024325, - "y": 0.14476182683631578 + "x": 0.39825, + "y": 0.14476 }, [ { @@ -37022,155 +37022,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 517.0636910754893, - "y": 533.8198941190748 + "x": 517.06369, + "y": 533.81989 }, { "body": null, "index": 1, "isInternal": false, - "x": 514.7263822303096, - "y": 539.1371855688868 + "x": 514.72638, + "y": 539.13719 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.86048662297924, - "y": 543.4720267601214 + "x": 510.86049, + "y": 543.47203 }, { "body": null, "index": 3, "isInternal": false, - "x": 505.84424278118433, - "y": 546.4000456671058 + "x": 505.84424, + "y": 546.40005 }, { "body": null, "index": 4, "isInternal": false, - "x": 500.1686860244728, - "y": 547.6348154842557 + "x": 500.16869, + "y": 547.63482 }, { "body": null, "index": 5, "isInternal": false, - "x": 494.3896796537731, - "y": 547.0552040908091 + "x": 494.38968, + "y": 547.0552 }, { "body": null, "index": 6, "isInternal": false, - "x": 489.07238820396105, - "y": 544.7178952456292 + "x": 489.07239, + "y": 544.7179 }, { "body": null, "index": 7, "isInternal": false, - "x": 484.7375470127264, - "y": 540.8519996382989 + "x": 484.73755, + "y": 540.852 }, { "body": null, "index": 8, "isInternal": false, - "x": 481.80952810574246, - "y": 535.835755796504 + "x": 481.80953, + "y": 535.83576 }, { "body": null, "index": 9, "isInternal": false, - "x": 480.5747582885924, - "y": 530.1601990397925 + "x": 480.57476, + "y": 530.1602 }, { "body": null, "index": 10, "isInternal": false, - "x": 481.15436968203886, - "y": 524.3811926690929 + "x": 481.15437, + "y": 524.38119 }, { "body": null, "index": 11, "isInternal": false, - "x": 483.4916785272188, - "y": 519.0639012192809 + "x": 483.49168, + "y": 519.0639 }, { "body": null, "index": 12, "isInternal": false, - "x": 487.357574134549, - "y": 514.7290600280463 + "x": 487.35757, + "y": 514.72906 }, { "body": null, "index": 13, "isInternal": false, - "x": 492.37381797634384, - "y": 511.8010411210616 + "x": 492.37382, + "y": 511.80104 }, { "body": null, "index": 14, "isInternal": false, - "x": 498.04937473305546, - "y": 510.56627130391166 + "x": 498.04937, + "y": 510.56627 }, { "body": null, "index": 15, "isInternal": false, - "x": 503.8283811037551, - "y": 511.1458826973583 + "x": 503.82838, + "y": 511.14588 }, { "body": null, "index": 16, "isInternal": false, - "x": 509.1456725535671, - "y": 513.4831915425385 + "x": 509.14567, + "y": 513.48319 }, { "body": null, "index": 17, "isInternal": false, - "x": 513.4805137448018, - "y": 517.3490871498688 + "x": 513.48051, + "y": 517.34909 }, { "body": null, "index": 18, "isInternal": false, - "x": 516.408532651786, - "y": 522.3653309916637 + "x": 516.40853, + "y": 522.36533 }, { "body": null, "index": 19, "isInternal": false, - "x": 517.6433024689359, - "y": 528.0408877483752 + "x": 517.6433, + "y": 528.04089 }, { - "angle": 0.011750076416389647, - "anglePrev": -0.00227846363565489, - "angularSpeed": 0.011392852329237826, - "angularVelocity": 0.012951194125884082, - "area": 1260.7906620000003, + "angle": 0.01175, + "anglePrev": -0.00228, + "angularSpeed": 0.01139, + "angularVelocity": 0.01295, + "area": 1260.79066, "axes": { "#": 4140 }, "bounds": { "#": 4152 }, - "circleRadius": 20.169945987654323, + "circleRadius": 20.16995, "collisionFilter": { "#": 4155 }, @@ -37185,13 +37185,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 1012.0041641764243, - "inverseInertia": 0.000988138226500092, - "inverseMass": 0.7931530825376621, + "inertia": 1012.00416, + "inverseInertia": 0.00099, + "inverseMass": 0.79315, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2607906620000005, + "mass": 1.26079, "motion": 0, "parent": null, "position": { @@ -37213,7 +37213,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4672381720049674, + "speed": 0.46724, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37261,48 +37261,48 @@ } ], { - "x": -0.9560962785365854, - "y": -0.29305273615595584 + "x": -0.9561, + "y": -0.29305 }, { - "x": -0.834847271419888, - "y": -0.5504816376617555 + "x": -0.83485, + "y": -0.55048 }, { - "x": -0.6459458291192838, - "y": -0.7633832496481704 + "x": -0.64595, + "y": -0.76338 }, { - "x": -0.4047262297133903, - "y": -0.9144379032946874 + "x": -0.40473, + "y": -0.91444 }, { - "x": -0.13065907167075144, - "y": -0.991427358403094 + "x": -0.13066, + "y": -0.99143 }, { - "x": 0.1539195446514016, - "y": -0.9880833840189324 + "x": 0.15392, + "y": -0.98808 }, { - "x": 0.42610193096210514, - "y": -0.9046751596182829 + "x": 0.4261, + "y": -0.90468 }, { - "x": 0.6637054450837, - "y": -0.7479940388574278 + "x": 0.66371, + "y": -0.74799 }, { - "x": 0.8475519687735725, - "y": -0.5307124082099847 + "x": 0.84755, + "y": -0.53071 }, { - "x": 0.9627184353933667, - "y": -0.27050547897177324 + "x": 0.96272, + "y": -0.27051 }, { - "x": 0.9999309686463403, - "y": 0.011749806040585127 + "x": 0.99993, + "y": 0.01175 }, { "max": { @@ -37313,12 +37313,12 @@ } }, { - "x": 566.5781355542506, - "y": 580.2167913408475 + "x": 566.57814, + "y": 580.21679 }, { - "x": 526.1945070859954, - "y": 539.6206621704144 + "x": 526.19451, + "y": 539.62066 }, { "category": 1, @@ -37335,16 +37335,16 @@ "y": 0 }, { - "x": 546.1918508183561, - "y": 559.7892698080109 + "x": 546.19185, + "y": 559.78927 }, { - "x": 0.14881395430874086, - "y": -0.18310928179531716 + "x": 0.14881, + "y": -0.18311 }, { - "x": 545.7848843228496, - "y": 559.7429784594573 + "x": 545.78488, + "y": 559.74298 }, { "endCol": 11, @@ -37367,8 +37367,8 @@ "yScale": 1 }, { - "x": 0.45119743943462254, - "y": -0.06898075768526724 + "x": 0.4512, + "y": -0.06898 }, [ { @@ -37442,169 +37442,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 566.1217506640436, - "y": 562.8936565656262 + "x": 566.12175, + "y": 562.89366 }, { "body": null, "index": 1, "isInternal": false, - "x": 564.4391326752965, - "y": 568.3832650857252 + "x": 564.43913, + "y": 568.38327 }, { "body": null, "index": 2, "isInternal": false, - "x": 561.2785953854421, - "y": 573.1764602663368 + "x": 561.2786, + "y": 573.17646 }, { "body": null, "index": 3, "isInternal": false, - "x": 556.8967273225477, - "y": 576.8842301188745 + "x": 556.89673, + "y": 576.88423 }, { "body": null, "index": 4, "isInternal": false, - "x": 551.6470645168699, - "y": 579.207707991952 + "x": 551.64706, + "y": 579.20771 }, { "body": null, "index": 5, "isInternal": false, - "x": 545.9548572305175, - "y": 579.9578774456073 + "x": 545.95486, + "y": 579.95788 }, { "body": null, "index": 6, "isInternal": false, - "x": 540.2818491272355, - "y": 579.0741596964949 + "x": 540.28185, + "y": 579.07416 }, { "body": null, "index": 7, "isInternal": false, - "x": 535.0882328963711, - "y": 576.6279668491293 + "x": 535.08823, + "y": 576.62797 }, { "body": null, "index": 8, "isInternal": false, - "x": 530.7946998752897, - "y": 572.8182556793838 + "x": 530.7947, + "y": 572.81826 }, { "body": null, "index": 9, "isInternal": false, - "x": 527.7476657117877, - "y": 567.952117702872 + "x": 527.74767, + "y": 567.95212 }, { "body": null, "index": 10, "isInternal": false, - "x": 526.1945070859954, - "y": 562.4244868104255 + "x": 526.19451, + "y": 562.42449 }, { "body": null, "index": 11, "isInternal": false, - "x": 526.2619509726684, - "y": 556.6848830503956 + "x": 526.26195, + "y": 556.68488 }, { "body": null, "index": 12, "isInternal": false, - "x": 527.9445689614157, - "y": 551.1952745302966 + "x": 527.94457, + "y": 551.19527 }, { "body": null, "index": 13, "isInternal": false, - "x": 531.1051062512698, - "y": 546.402079349685 + "x": 531.10511, + "y": 546.40208 }, { "body": null, "index": 14, "isInternal": false, - "x": 535.4869743141645, - "y": 542.6943094971473 + "x": 535.48697, + "y": 542.69431 }, { "body": null, "index": 15, "isInternal": false, - "x": 540.7366371198423, - "y": 540.3708316240698 + "x": 540.73664, + "y": 540.37083 }, { "body": null, "index": 16, "isInternal": false, - "x": 546.4288444061947, - "y": 539.6206621704144 + "x": 546.42884, + "y": 539.62066 }, { "body": null, "index": 17, "isInternal": false, - "x": 552.1018525094767, - "y": 540.5043799195269 + "x": 552.10185, + "y": 540.50438 }, { "body": null, "index": 18, "isInternal": false, - "x": 557.2954687403411, - "y": 542.9505727668925 + "x": 557.29547, + "y": 542.95057 }, { "body": null, "index": 19, "isInternal": false, - "x": 561.5890017614223, - "y": 546.760283936638 + "x": 561.589, + "y": 546.76028 }, { "body": null, "index": 20, "isInternal": false, - "x": 564.6360359249245, - "y": 551.6264219131498 + "x": 564.63604, + "y": 551.62642 }, { "body": null, "index": 21, "isInternal": false, - "x": 566.1891945507166, - "y": 557.1540528055963 + "x": 566.18919, + "y": 557.15405 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1274.4243100000003, + "area": 1274.42431, "axes": { "#": 4189 }, "bounds": { "#": 4201 }, - "circleRadius": 20.278870884773664, + "circleRadius": 20.27887, "collisionFilter": { "#": 4204 }, @@ -37619,13 +37619,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 1034.0092576280601, - "inverseInertia": 0.0009671093296533197, - "inverseMass": 0.7846680200254496, + "inertia": 1034.00926, + "inverseInertia": 0.00097, + "inverseMass": 0.78467, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2744243100000003, + "mass": 1.27442, "motion": 0, "parent": null, "position": { @@ -37647,7 +37647,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37695,44 +37695,44 @@ } ], { - "x": -0.9594978217257015, - "y": -0.2817160451654006 + "x": -0.9595, + "y": -0.28172 }, { - "x": -0.8413135484521326, - "y": -0.540547419928059 + "x": -0.84131, + "y": -0.54055 }, { - "x": -0.6548909622863403, - "y": -0.7557233802891579 + "x": -0.65489, + "y": -0.75572 }, { - "x": -0.41526429982431406, - "y": -0.9097008086681149 + "x": -0.41526, + "y": -0.9097 }, { - "x": -0.14241576969235267, - "y": -0.9898069248812793 + "x": -0.14242, + "y": -0.98981 }, { - "x": 0.14241576969235267, - "y": -0.9898069248812793 + "x": 0.14242, + "y": -0.98981 }, { - "x": 0.41526429982431406, - "y": -0.9097008086681149 + "x": 0.41526, + "y": -0.9097 }, { - "x": 0.6548909622863403, - "y": -0.7557233802891579 + "x": 0.65489, + "y": -0.75572 }, { - "x": 0.8413135484521326, - "y": -0.540547419928059 + "x": 0.84131, + "y": -0.54055 }, { - "x": 0.9594978217257015, - "y": -0.2817160451654006 + "x": 0.9595, + "y": -0.28172 }, { "x": 1, @@ -37747,12 +37747,12 @@ } }, { - "x": 126.62934708373015, - "y": 734.1516700867514 + "x": 126.62935, + "y": 734.15167 }, { - "x": 86.48534708373015, - "y": 690.6863993717155 + "x": 86.48535, + "y": 690.6864 }, { "category": 1, @@ -37769,16 +37769,16 @@ "y": 0 }, { - "x": 106.55734708373015, - "y": 710.9653993717155 + "x": 106.55735, + "y": 710.9654 }, { - "x": -0.4286531548182416, - "y": 0.8084107969142998 + "x": -0.42865, + "y": 0.80841 }, { - "x": 106.55734708373015, - "y": 708.0581286566796 + "x": 106.55735, + "y": 708.05813 }, { "endCol": 2, @@ -37802,7 +37802,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -37876,161 +37876,161 @@ "body": null, "index": 0, "isInternal": false, - "x": 126.62934708373015, - "y": 713.8513993717155 + "x": 126.62935, + "y": 713.8514 }, { "body": null, "index": 1, "isInternal": false, - "x": 125.00334708373013, - "y": 719.3893993717155 + "x": 125.00335, + "y": 719.3894 }, { "body": null, "index": 2, "isInternal": false, - "x": 121.88334708373013, - "y": 724.2453993717155 + "x": 121.88335, + "y": 724.2454 }, { "body": null, "index": 3, "isInternal": false, - "x": 117.52134708373015, - "y": 728.0253993717155 + "x": 117.52135, + "y": 728.0254 }, { "body": null, "index": 4, "isInternal": false, - "x": 112.27034708373014, - "y": 730.4223993717155 + "x": 112.27035, + "y": 730.4224 }, { "body": null, "index": 5, "isInternal": false, - "x": 106.55734708373015, - "y": 731.2443993717155 + "x": 106.55735, + "y": 731.2444 }, { "body": null, "index": 6, "isInternal": false, - "x": 100.84434708373016, - "y": 730.4223993717155 + "x": 100.84435, + "y": 730.4224 }, { "body": null, "index": 7, "isInternal": false, - "x": 95.59334708373015, - "y": 728.0253993717155 + "x": 95.59335, + "y": 728.0254 }, { "body": null, "index": 8, "isInternal": false, - "x": 91.23134708373016, - "y": 724.2453993717155 + "x": 91.23135, + "y": 724.2454 }, { "body": null, "index": 9, "isInternal": false, - "x": 88.11134708373015, - "y": 719.3893993717155 + "x": 88.11135, + "y": 719.3894 }, { "body": null, "index": 10, "isInternal": false, - "x": 86.48534708373015, - "y": 713.8513993717155 + "x": 86.48535, + "y": 713.8514 }, { "body": null, "index": 11, "isInternal": false, - "x": 86.48534708373015, - "y": 708.0793993717156 + "x": 86.48535, + "y": 708.0794 }, { "body": null, "index": 12, "isInternal": false, - "x": 88.11134708373015, - "y": 702.5413993717156 + "x": 88.11135, + "y": 702.5414 }, { "body": null, "index": 13, "isInternal": false, - "x": 91.23134708373016, - "y": 697.6853993717156 + "x": 91.23135, + "y": 697.6854 }, { "body": null, "index": 14, "isInternal": false, - "x": 95.59334708373015, - "y": 693.9053993717156 + "x": 95.59335, + "y": 693.9054 }, { "body": null, "index": 15, "isInternal": false, - "x": 100.84434708373016, - "y": 691.5083993717155 + "x": 100.84435, + "y": 691.5084 }, { "body": null, "index": 16, "isInternal": false, - "x": 106.55734708373015, - "y": 690.6863993717155 + "x": 106.55735, + "y": 690.6864 }, { "body": null, "index": 17, "isInternal": false, - "x": 112.27034708373014, - "y": 691.5083993717155 + "x": 112.27035, + "y": 691.5084 }, { "body": null, "index": 18, "isInternal": false, - "x": 117.52134708373015, - "y": 693.9053993717156 + "x": 117.52135, + "y": 693.9054 }, { "body": null, "index": 19, "isInternal": false, - "x": 121.88334708373013, - "y": 697.6853993717156 + "x": 121.88335, + "y": 697.6854 }, { "body": null, "index": 20, "isInternal": false, - "x": 125.00334708373013, - "y": 702.5413993717156 + "x": 125.00335, + "y": 702.5414 }, { "body": null, "index": 21, "isInternal": false, - "x": 126.62934708373015, - "y": 708.0793993717156 + "x": 126.62935, + "y": 708.0794 }, { - "angle": -0.0007847588042648546, - "anglePrev": -0.0003598994022468246, - "angularSpeed": 0.00042485940201802996, - "angularVelocity": -0.00042485940201802996, + "angle": -0.00078, + "anglePrev": -0.00036, + "angularSpeed": 0.00042, + "angularVelocity": -0.00042, "area": 1333.4219, "axes": { "#": 4238 @@ -38038,7 +38038,7 @@ "bounds": { "#": 4250 }, - "circleRadius": 20.74273405349794, + "circleRadius": 20.74273, "collisionFilter": { "#": 4253 }, @@ -38053,13 +38053,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 1131.961092953285, - "inverseInertia": 0.0008834225895441347, - "inverseMass": 0.7499501845589907, + "inertia": 1131.96109, + "inverseInertia": 0.00088, + "inverseMass": 0.74995, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3334219, + "mass": 1.33342, "motion": 0, "parent": null, "position": { @@ -38081,7 +38081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8914353259750567, + "speed": 2.89144, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38129,48 +38129,48 @@ } ], { - "x": -0.9596860987728001, - "y": -0.28107399705814706 + "x": -0.95969, + "y": -0.28107 }, { - "x": -0.8416850149667581, - "y": -0.5399688283414219 + "x": -0.84169, + "y": -0.53997 }, { - "x": -0.6554202581360402, - "y": -0.7552643810116336 + "x": -0.65542, + "y": -0.75526 }, { - "x": -0.4162132314130841, - "y": -0.9092670377819039 + "x": -0.41621, + "y": -0.90927 }, { - "x": -0.14305168507914126, - "y": -0.9897152193414115 + "x": -0.14305, + "y": -0.98972 }, { - "x": 0.14149813405702652, - "y": -0.9899385223630707 + "x": 0.1415, + "y": -0.98994 }, { - "x": 0.4147856087256311, - "y": -0.9099191715719082 + "x": 0.41479, + "y": -0.90992 }, { - "x": 0.6542340506014084, - "y": -0.7562921439719401 + "x": 0.65423, + "y": -0.75629 }, { - "x": 0.8408364880334406, - "y": -0.5412892021753154 + "x": 0.84084, + "y": -0.54129 }, { - "x": 0.9592437663280594, - "y": -0.2825798944736856 + "x": 0.95924, + "y": -0.28258 }, { - "x": 0.9999996920768254, - "y": -0.0007847587237163788 + "x": 1, + "y": -0.00078 }, { "max": { @@ -38181,12 +38181,12 @@ } }, { - "x": 184.68843338372892, - "y": 731.7479119778477 + "x": 184.68843, + "y": 731.74791 }, { - "x": 143.60806567617223, - "y": 687.3705132892256 + "x": 143.60807, + "y": 687.37051 }, { "category": 1, @@ -38203,16 +38203,16 @@ "y": 0 }, { - "x": 164.15412309825513, - "y": 708.1135069019753 + "x": 164.15412, + "y": 708.11351 }, { - "x": -0.19485159789969822, - "y": 0.5201094610296372 + "x": -0.19485, + "y": 0.52011 }, { - "x": 164.16587023486423, - "y": 705.2220954388524 + "x": 164.16587, + "y": 705.2221 }, { "endCol": 3, @@ -38235,8 +38235,8 @@ "yScale": 1 }, { - "x": -0.011747136609091057, - "y": 2.891411463122807 + "x": -0.01175, + "y": 2.89141 }, [ { @@ -38310,169 +38310,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 184.68843338372892, - "y": 711.0493933268707 + "x": 184.68843, + "y": 711.04939 }, { "body": null, "index": 1, "isInternal": false, - "x": 183.02887955428292, - "y": 716.7156974210021 + "x": 183.02888, + "y": 716.7157 }, { "body": null, "index": 2, "isInternal": false, - "x": 179.8407784337544, - "y": 721.6852008413938 + "x": 179.84078, + "y": 721.6852 }, { "body": null, "index": 3, "isInternal": false, - "x": 175.3818136849335, - "y": 725.5547012443882 + "x": 175.38181, + "y": 725.5547 }, { "body": null, "index": 4, "isInternal": false, - "x": 170.01374035163022, - "y": 728.0119146433989 + "x": 170.01374, + "y": 728.01191 }, { "body": null, "index": 5, "isInternal": false, - "x": 164.17040134846118, - "y": 728.8565005147249 + "x": 164.1704, + "y": 728.8565 }, { "body": null, "index": 6, "isInternal": false, - "x": 158.3257439506363, - "y": 728.0210869033617 + "x": 158.32574, + "y": 728.02109 }, { "body": null, "index": 7, "isInternal": false, - "x": 152.95382059103449, - "y": 725.5723018130436 + "x": 152.95382, + "y": 725.5723 }, { "body": null, "index": 8, "isInternal": false, - "x": 148.48878808776178, - "y": 721.7098045968997 + "x": 148.48879, + "y": 721.7098 }, { "body": null, "index": 9, "isInternal": false, - "x": 145.29289117407185, - "y": 716.7453110762003 + "x": 145.29289, + "y": 716.74531 }, { "body": null, "index": 10, "isInternal": false, - "x": 143.62444602828617, - "y": 711.0816186591013 + "x": 143.62445, + "y": 711.08162 }, { "body": null, "index": 11, "isInternal": false, - "x": 143.61981281278133, - "y": 705.1776204770798 + "x": 143.61981, + "y": 705.17762 }, { "body": null, "index": 12, "isInternal": false, - "x": 145.27936664222733, - "y": 699.5113163829484 + "x": 145.27937, + "y": 699.51132 }, { "body": null, "index": 13, "isInternal": false, - "x": 148.46746776275586, - "y": 694.5418129625567 + "x": 148.46747, + "y": 694.54181 }, { "body": null, "index": 14, "isInternal": false, - "x": 152.92643251157676, - "y": 690.6723125595623 + "x": 152.92643, + "y": 690.67231 }, { "body": null, "index": 15, "isInternal": false, - "x": 158.29450584488004, - "y": 688.2150991605516 + "x": 158.29451, + "y": 688.2151 }, { "body": null, "index": 16, "isInternal": false, - "x": 164.13784484804907, - "y": 687.3705132892256 + "x": 164.13784, + "y": 687.37051 }, { "body": null, "index": 17, "isInternal": false, - "x": 169.98250224587395, - "y": 688.2059269005888 + "x": 169.9825, + "y": 688.20593 }, { "body": null, "index": 18, "isInternal": false, - "x": 175.35442560547577, - "y": 690.6547119909069 + "x": 175.35443, + "y": 690.65471 }, { "body": null, "index": 19, "isInternal": false, - "x": 179.81945810874848, - "y": 694.5172092070508 + "x": 179.81946, + "y": 694.51721 }, { "body": null, "index": 20, "isInternal": false, - "x": 183.0153550224384, - "y": 699.4817027277502 + "x": 183.01536, + "y": 699.4817 }, { "body": null, "index": 21, "isInternal": false, - "x": 184.68380016822408, - "y": 705.1453951448492 + "x": 184.6838, + "y": 705.1454 }, { - "angle": -0.01005226766914592, - "anglePrev": -0.008886778111950419, - "angularSpeed": 0.001165489557195501, - "angularVelocity": -0.001165489557195501, - "area": 1871.187918, + "angle": -0.01005, + "anglePrev": -0.00889, + "angularSpeed": 0.00117, + "angularVelocity": -0.00117, + "area": 1871.18792, "axes": { "#": 4287 }, "bounds": { "#": 4301 }, - "circleRadius": 24.524498456790123, + "circleRadius": 24.5245, "collisionFilter": { "#": 4304 }, @@ -38487,13 +38487,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 2229.0674939927567, - "inverseInertia": 0.00044861808926600834, - "inverseMass": 0.5344198679247778, + "inertia": 2229.06749, + "inverseInertia": 0.00045, + "inverseMass": 0.53442, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8711879180000002, + "mass": 1.87119, "motion": 0, "parent": null, "position": { @@ -38515,7 +38515,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.91237626490917, + "speed": 2.91238, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38569,56 +38569,56 @@ } ], { - "x": -0.9732994951460688, - "y": -0.22953886979857696 + "x": -0.9733, + "y": -0.22954 }, { - "x": -0.8900513265935603, - "y": -0.45586032513155145 + "x": -0.89005, + "y": -0.45586 }, { - "x": -0.755155963160377, - "y": -0.6555451710624707 + "x": -0.75516, + "y": -0.65555 }, { - "x": -0.5762226089352704, - "y": -0.817292790223816 + "x": -0.57622, + "y": -0.81729 }, { - "x": -0.364060397777265, - "y": -0.9313753415085992 + "x": -0.36406, + "y": -0.93138 }, { - "x": -0.1304052454578048, - "y": -0.9914607768122197 + "x": -0.13041, + "y": -0.99146 }, { - "x": 0.11044737647843242, - "y": -0.9938819733897137 + "x": 0.11045, + "y": -0.99388 }, { - "x": 0.34526321795919585, - "y": -0.9385058925358228 + "x": 0.34526, + "y": -0.93851 }, { - "x": 0.5596759755702044, - "y": -0.8287115314568395 + "x": 0.55968, + "y": -0.82871 }, { - "x": 0.7418248109345152, - "y": -0.6705937293786538 + "x": 0.74182, + "y": -0.67059 }, { - "x": 0.8807072140534191, - "y": -0.4736610635404446 + "x": 0.88071, + "y": -0.47366 }, { - "x": 0.9684883402208468, - "y": -0.24905889836797646 + "x": 0.96849, + "y": -0.24906 }, { - "x": 0.9999494763827991, - "y": -0.010052098376267792 + "x": 0.99995, + "y": -0.01005 }, { "max": { @@ -38629,12 +38629,12 @@ } }, { - "x": 234.06916289493344, - "y": 729.7356928183829 + "x": 234.06916, + "y": 729.73569 }, { - "x": 185.30776543359045, - "y": 677.7778211596307 + "x": 185.30777, + "y": 677.77782 }, { "category": 1, @@ -38651,16 +38651,16 @@ "y": 0 }, { - "x": 209.69467894011757, - "y": 702.3005821184425 + "x": 209.69468, + "y": 702.30058 }, { - "x": 0.0720149579603536, - "y": 0.6230774205828666 + "x": 0.07201, + "y": 0.62308 }, { - "x": 209.70710849182882, - "y": 699.3882323773141 + "x": 209.70711, + "y": 699.38823 }, { "endCol": 4, @@ -38683,8 +38683,8 @@ "yScale": 1 }, { - "x": -0.012429551711258568, - "y": 2.9123497411283807 + "x": -0.01243, + "y": 2.91235 }, [ { @@ -38770,197 +38770,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 234.06916289493344, - "y": 705.0117043835614 + "x": 234.06916, + "y": 705.0117 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.71194348262995, - "y": 710.7666380466773 + "x": 232.71194, + "y": 710.76664 }, { "body": null, "index": 2, "isInternal": false, - "x": 230.0167050565298, - "y": 716.0289967218795 + "x": 230.01671, + "y": 716.029 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.14138364442417, - "y": 720.4931773805084 + "x": 226.14138, + "y": 720.49318 }, { "body": null, "index": 4, "isInternal": false, - "x": 221.309384438693, - "y": 723.8999212329006 + "x": 221.30938, + "y": 723.89992 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.8027429835439, - "y": 726.0523832846993 + "x": 215.80274, + "y": 726.05238 }, { "body": null, "index": 6, "isInternal": false, - "x": 209.94119660069714, - "y": 726.8233430772544 + "x": 209.9412, + "y": 726.82334 }, { "body": null, "index": 7, "isInternal": false, - "x": 204.0653360297626, - "y": 726.1703748154399 + "x": 204.06534, + "y": 726.17037 }, { "body": null, "index": 8, "isInternal": false, - "x": 198.5165360740235, - "y": 724.1290487632892 + "x": 198.51654, + "y": 724.12905 }, { "body": null, "index": 9, "isInternal": false, - "x": 193.61702697559727, - "y": 720.8201319322948 + "x": 193.61703, + "y": 720.82013 }, { "body": null, "index": 10, "isInternal": false, - "x": 189.65274449286164, - "y": 716.4347597249359 + "x": 189.65274, + "y": 716.43476 }, { "body": null, "index": 11, "isInternal": false, - "x": 186.85226059676197, - "y": 711.2276473824098 + "x": 186.85226, + "y": 711.22765 }, { "body": null, "index": 12, "isInternal": false, - "x": 185.3796229909022, - "y": 705.5011611576987 + "x": 185.37962, + "y": 705.50116 }, { "body": null, "index": 13, "isInternal": false, - "x": 185.3201949853017, - "y": 699.5894598533234 + "x": 185.32019, + "y": 699.58946 }, { "body": null, "index": 14, "isInternal": false, - "x": 186.67741439760513, - "y": 693.8345261902076 + "x": 186.67741, + "y": 693.83453 }, { "body": null, "index": 15, "isInternal": false, - "x": 189.37265282370535, - "y": 688.5721675150054 + "x": 189.37265, + "y": 688.57217 }, { "body": null, "index": 16, "isInternal": false, - "x": 193.24797423581091, - "y": 684.1079868563764 + "x": 193.24797, + "y": 684.10799 }, { "body": null, "index": 17, "isInternal": false, - "x": 198.07997344154214, - "y": 680.7012430039842 + "x": 198.07997, + "y": 680.70124 }, { "body": null, "index": 18, "isInternal": false, - "x": 203.58661489669117, - "y": 678.5487809521858 + "x": 203.58661, + "y": 678.54878 }, { "body": null, "index": 19, "isInternal": false, - "x": 209.44816127953794, - "y": 677.7778211596307 + "x": 209.44816, + "y": 677.77782 }, { "body": null, "index": 20, "isInternal": false, - "x": 215.3240218504725, - "y": 678.430789421445 + "x": 215.32402, + "y": 678.43079 }, { "body": null, "index": 21, "isInternal": false, - "x": 220.87282180621165, - "y": 680.4721154735956 + "x": 220.87282, + "y": 680.47212 }, { "body": null, "index": 22, "isInternal": false, - "x": 225.77233090463787, - "y": 683.7810323045903 + "x": 225.77233, + "y": 683.78103 }, { "body": null, "index": 23, "isInternal": false, - "x": 229.73661338737344, - "y": 688.1664045119489 + "x": 229.73661, + "y": 688.1664 }, { "body": null, "index": 24, "isInternal": false, - "x": 232.53709728347317, - "y": 693.373516854475 + "x": 232.5371, + "y": 693.37352 }, { "body": null, "index": 25, "isInternal": false, - "x": 234.0097348893329, - "y": 699.1000030791862 + "x": 234.00973, + "y": 699.1 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2329.709364, + "area": 2329.70936, "axes": { "#": 4342 }, "bounds": { "#": 4356 }, - "circleRadius": 27.364904835390945, + "circleRadius": 27.3649, "collisionFilter": { "#": 4359 }, @@ -38975,13 +38975,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 3455.3488495656693, - "inverseInertia": 0.0002894063793662102, - "inverseMass": 0.4292380910050719, + "inertia": 3455.34885, + "inverseInertia": 0.00029, + "inverseMass": 0.42924, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.3297093639999997, + "mass": 2.32971, "motion": 0, "parent": null, "position": { @@ -39003,7 +39003,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39057,52 +39057,52 @@ } ], { - "x": -0.9709748157400481, - "y": -0.23918174511985563 + "x": -0.97097, + "y": -0.23918 }, { - "x": -0.885430654533355, - "y": -0.46477150946743123 + "x": -0.88543, + "y": -0.46477 }, { - "x": -0.748487143274187, - "y": -0.6631493017060688 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680269481764096, - "y": -0.8230099550706507 + "x": -0.56803, + "y": -0.82301 }, { - "x": -0.3547090688589646, - "y": -0.9349767250949119 + "x": -0.35471, + "y": -0.93498 }, { - "x": -0.12050791439215353, - "y": -0.9927123664832898 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050791439215353, - "y": -0.9927123664832898 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3547090688589646, - "y": -0.9349767250949119 + "x": 0.35471, + "y": -0.93498 }, { - "x": 0.5680269481764096, - "y": -0.8230099550706507 + "x": 0.56803, + "y": -0.82301 }, { - "x": 0.748487143274187, - "y": -0.6631493017060688 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.885430654533355, - "y": -0.46477150946743123 + "x": 0.88543, + "y": -0.46477 }, { - "x": 0.9709748157400481, - "y": -0.23918174511985563 + "x": 0.97097, + "y": -0.23918 }, { "x": 1, @@ -39117,12 +39117,12 @@ } }, { - "x": 301.90772861369237, - "y": 723.7643217215791 + "x": 301.90773, + "y": 723.76432 }, { - "x": 247.5777286136924, - "y": 666.1270510065432 + "x": 247.57773, + "y": 666.12705 }, { "category": 1, @@ -39139,16 +39139,16 @@ "y": 0 }, { - "x": 274.74272861369235, - "y": 693.4920510065432 + "x": 274.74273, + "y": 693.49205 }, { - "x": -0.2964498201436977, - "y": 0.4443307130943467 + "x": -0.29645, + "y": 0.44433 }, { - "x": 274.74272861369235, - "y": 690.5847802915073 + "x": 274.74273, + "y": 690.58478 }, { "endCol": 6, @@ -39172,7 +39172,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -39258,189 +39258,189 @@ "body": null, "index": 0, "isInternal": false, - "x": 301.90772861369237, - "y": 696.7900510065432 + "x": 301.90773, + "y": 696.79005 }, { "body": null, "index": 1, "isInternal": false, - "x": 300.32972861369234, - "y": 703.1960510065431 + "x": 300.32973, + "y": 703.19605 }, { "body": null, "index": 2, "isInternal": false, - "x": 297.26372861369236, - "y": 709.0370510065432 + "x": 297.26373, + "y": 709.03705 }, { "body": null, "index": 3, "isInternal": false, - "x": 292.88872861369236, - "y": 713.9750510065431 + "x": 292.88873, + "y": 713.97505 }, { "body": null, "index": 4, "isInternal": false, - "x": 287.45972861369233, - "y": 717.7220510065432 + "x": 287.45973, + "y": 717.72205 }, { "body": null, "index": 5, "isInternal": false, - "x": 281.2917286136923, - "y": 720.0620510065432 + "x": 281.29173, + "y": 720.06205 }, { "body": null, "index": 6, "isInternal": false, - "x": 274.74272861369235, - "y": 720.8570510065432 + "x": 274.74273, + "y": 720.85705 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.1937286136924, - "y": 720.0620510065432 + "x": 268.19373, + "y": 720.06205 }, { "body": null, "index": 8, "isInternal": false, - "x": 262.02572861369237, - "y": 717.7220510065432 + "x": 262.02573, + "y": 717.72205 }, { "body": null, "index": 9, "isInternal": false, - "x": 256.59672861369233, - "y": 713.9750510065431 + "x": 256.59673, + "y": 713.97505 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.2217286136923, - "y": 709.0370510065432 + "x": 252.22173, + "y": 709.03705 }, { "body": null, "index": 11, "isInternal": false, - "x": 249.15572861369233, - "y": 703.1960510065431 + "x": 249.15573, + "y": 703.19605 }, { "body": null, "index": 12, "isInternal": false, - "x": 247.5777286136924, - "y": 696.7900510065432 + "x": 247.57773, + "y": 696.79005 }, { "body": null, "index": 13, "isInternal": false, - "x": 247.5777286136924, - "y": 690.1940510065432 + "x": 247.57773, + "y": 690.19405 }, { "body": null, "index": 14, "isInternal": false, - "x": 249.15572861369233, - "y": 683.7880510065432 + "x": 249.15573, + "y": 683.78805 }, { "body": null, "index": 15, "isInternal": false, - "x": 252.2217286136923, - "y": 677.9470510065432 + "x": 252.22173, + "y": 677.94705 }, { "body": null, "index": 16, "isInternal": false, - "x": 256.59672861369233, - "y": 673.0090510065432 + "x": 256.59673, + "y": 673.00905 }, { "body": null, "index": 17, "isInternal": false, - "x": 262.02572861369237, - "y": 669.2620510065432 + "x": 262.02573, + "y": 669.26205 }, { "body": null, "index": 18, "isInternal": false, - "x": 268.1937286136924, - "y": 666.9220510065431 + "x": 268.19373, + "y": 666.92205 }, { "body": null, "index": 19, "isInternal": false, - "x": 274.74272861369235, - "y": 666.1270510065432 + "x": 274.74273, + "y": 666.12705 }, { "body": null, "index": 20, "isInternal": false, - "x": 281.2917286136923, - "y": 666.9220510065431 + "x": 281.29173, + "y": 666.92205 }, { "body": null, "index": 21, "isInternal": false, - "x": 287.45972861369233, - "y": 669.2620510065432 + "x": 287.45973, + "y": 669.26205 }, { "body": null, "index": 22, "isInternal": false, - "x": 292.88872861369236, - "y": 673.0090510065432 + "x": 292.88873, + "y": 673.00905 }, { "body": null, "index": 23, "isInternal": false, - "x": 297.26372861369236, - "y": 677.9470510065432 + "x": 297.26373, + "y": 677.94705 }, { "body": null, "index": 24, "isInternal": false, - "x": 300.32972861369234, - "y": 683.7880510065432 + "x": 300.32973, + "y": 683.78805 }, { "body": null, "index": 25, "isInternal": false, - "x": 301.90772861369237, - "y": 690.1940510065432 + "x": 301.90773, + "y": 690.19405 }, { - "angle": -0.00004989405763695609, - "anglePrev": -0.00005412186899608491, - "angularSpeed": 0.000004227811359128822, - "angularVelocity": 0.000004227811359128822, + "angle": -0.00005, + "anglePrev": -0.00005, + "angularSpeed": 0, + "angularVelocity": 0, "area": 1168.93972, "axes": { "#": 4397 @@ -39448,7 +39448,7 @@ "bounds": { "#": 4408 }, - "circleRadius": 19.449138374485596, + "circleRadius": 19.44914, "collisionFilter": { "#": 4411 }, @@ -39463,13 +39463,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 869.9376675929504, - "inverseInertia": 0.001149507645492489, - "inverseMass": 0.855476106158836, + "inertia": 869.93767, + "inverseInertia": 0.00115, + "inverseMass": 0.85548, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.16893972, + "mass": 1.16894, "motion": 0, "parent": null, "position": { @@ -39491,7 +39491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905169522609058, + "speed": 2.90517, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39536,44 +39536,44 @@ } ], { - "x": -0.9510386210342142, - "y": -0.30907206489966105 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.809106399859026, - "y": -0.5876621765156965 + "x": -0.80911, + "y": -0.58766 }, { - "x": -0.5877429127923882, - "y": -0.8090477541297046 + "x": -0.58774, + "y": -0.80905 }, { - "x": -0.3091669657122308, - "y": -0.9510077745803618 + "x": -0.30917, + "y": -0.95101 }, { - "x": -0.00004989405761625489, - "y": -0.9999999987552914 + "x": -0.00005, + "y": -1 }, { - "x": 0.30907206489966105, - "y": -0.9510386210342142 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5876621765156965, - "y": -0.809106399859026 + "x": 0.58766, + "y": -0.80911 }, { - "x": 0.8090477541297046, - "y": -0.5877429127923882 + "x": 0.80905, + "y": -0.58774 }, { - "x": 0.9510077745803618, - "y": -0.3091669657122308 + "x": 0.95101, + "y": -0.30917 }, { - "x": 0.9999999987552914, - "y": -0.00004989405761625489 + "x": 1, + "y": -0.00005 }, { "max": { @@ -39584,12 +39584,12 @@ } }, { - "x": 344.4685388959445, - "y": 747.0998673343462 + "x": 344.46854, + "y": 747.09987 }, { - "x": 306.0476797888496, - "y": 705.774394257433 + "x": 306.04768, + "y": 705.77439 }, { "category": 1, @@ -39606,16 +39606,16 @@ "y": 0 }, { - "x": 325.258387092238, - "y": 724.9845460611394 + "x": 325.25839, + "y": 724.98455 }, { - "x": -0.2016241681652141, - "y": 0.6331481423821572 + "x": -0.20162, + "y": 0.63315 }, { - "x": 325.25894259191995, - "y": 722.0793765916392 + "x": 325.25894, + "y": 722.07938 }, { "endCol": 7, @@ -39638,8 +39638,8 @@ "yScale": 1 }, { - "x": -0.0005554996819194003, - "y": 2.9051694695002985 + "x": -0.00056, + "y": 2.90517 }, [ { @@ -39707,155 +39707,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 344.4685388959445, - "y": 728.026587592505 + "x": 344.46854, + "y": 728.02659 }, { "body": null, "index": 1, "isInternal": false, - "x": 342.58782763519724, - "y": 733.8136814360242 + "x": 342.58783, + "y": 733.81368 }, { "body": null, "index": 2, "isInternal": false, - "x": 339.01207326809396, - "y": 738.7368598510467 + "x": 339.01207, + "y": 738.73686 }, { "body": null, "index": 3, "isInternal": false, - "x": 334.08925169537173, - "y": 742.3131054750411 + "x": 334.08925, + "y": 742.31311 }, { "body": null, "index": 4, "isInternal": false, - "x": 328.3023455532972, - "y": 744.1943942096112 + "x": 328.30235, + "y": 744.19439 }, { "body": null, "index": 5, "isInternal": false, - "x": 322.21634556087247, - "y": 744.1946978648459 + "x": 322.21635, + "y": 744.1947 }, { "body": null, "index": 6, "isInternal": false, - "x": 316.4292517173533, - "y": 742.3139866040987 + "x": 316.42925, + "y": 742.31399 }, { "body": null, "index": 7, "isInternal": false, - "x": 311.50607330233095, - "y": 738.7382322369954 + "x": 311.50607, + "y": 738.73823 }, { "body": null, "index": 8, "isInternal": false, - "x": 307.92982767833627, - "y": 733.8154106642731 + "x": 307.92983, + "y": 733.81541 }, { "body": null, "index": 9, "isInternal": false, - "x": 306.04853894376623, - "y": 728.0285045221987 + "x": 306.04854, + "y": 728.0285 }, { "body": null, "index": 10, "isInternal": false, - "x": 306.04823528853154, - "y": 721.9425045297738 + "x": 306.04824, + "y": 721.9425 }, { "body": null, "index": 11, "isInternal": false, - "x": 307.9289465492788, - "y": 716.1554106862546 + "x": 307.92895, + "y": 716.15541 }, { "body": null, "index": 12, "isInternal": false, - "x": 311.5047009163821, - "y": 711.2322322712322 + "x": 311.5047, + "y": 711.23223 }, { "body": null, "index": 13, "isInternal": false, - "x": 316.4275224891043, - "y": 707.6559866472378 + "x": 316.42752, + "y": 707.65599 }, { "body": null, "index": 14, "isInternal": false, - "x": 322.21442863117886, - "y": 705.7746979126676 + "x": 322.21443, + "y": 705.7747 }, { "body": null, "index": 15, "isInternal": false, - "x": 328.3004286236036, - "y": 705.774394257433 + "x": 328.30043, + "y": 705.77439 }, { "body": null, "index": 16, "isInternal": false, - "x": 334.08752246712277, - "y": 707.6551055181802 + "x": 334.08752, + "y": 707.65511 }, { "body": null, "index": 17, "isInternal": false, - "x": 339.0107008821451, - "y": 711.2308598852835 + "x": 339.0107, + "y": 711.23086 }, { "body": null, "index": 18, "isInternal": false, - "x": 342.5869465061398, - "y": 716.1536814580057 + "x": 342.58695, + "y": 716.15368 }, { "body": null, "index": 19, "isInternal": false, - "x": 344.4682352407098, - "y": 721.9405876000802 + "x": 344.46824, + "y": 721.94059 }, { - "angle": 0.006926795713580147, - "anglePrev": 0.006370496403051084, - "angularSpeed": 0.000556299310529063, - "angularVelocity": 0.000556299310529063, - "area": 2280.335178, + "angle": 0.00693, + "anglePrev": 0.00637, + "angularSpeed": 0.00056, + "angularVelocity": 0.00056, + "area": 2280.33518, "axes": { "#": 4443 }, "bounds": { "#": 4457 }, - "circleRadius": 27.07349537037037, + "circleRadius": 27.0735, "collisionFilter": { "#": 4460 }, @@ -39870,13 +39870,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 3310.4404760562484, - "inverseInertia": 0.0003020746052474888, - "inverseMass": 0.4385320235585121, + "inertia": 3310.44048, + "inverseInertia": 0.0003, + "inverseMass": 0.43853, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.280335178, + "mass": 2.28034, "motion": 0, "parent": null, "position": { @@ -39898,7 +39898,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8931198408281285, + "speed": 2.89312, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39952,56 +39952,56 @@ } ], { - "x": -0.9692582927428056, - "y": -0.24604544691845454 + "x": -0.96926, + "y": -0.24605 }, { - "x": -0.882219163554749, - "y": -0.47083898251606054 + "x": -0.88222, + "y": -0.47084 }, { - "x": -0.7439468938790952, - "y": -0.6682387440785267 + "x": -0.74395, + "y": -0.66824 }, { - "x": -0.5623157335368112, - "y": -0.826922617792595 + "x": -0.56232, + "y": -0.82692 }, { - "x": -0.34817850160741826, - "y": -0.937428253797811 + "x": -0.34818, + "y": -0.93743 }, { - "x": -0.11355282171012172, - "y": -0.9935319605738253 + "x": -0.11355, + "y": -0.99353 }, { - "x": 0.12730547082956659, - "y": -0.9918635577017951 + "x": 0.12731, + "y": -0.99186 }, { - "x": 0.36113142320266367, - "y": -0.932514930269547 + "x": 0.36113, + "y": -0.93251 }, { - "x": 0.5737172556750882, - "y": -0.8190534234960776 + "x": 0.57372, + "y": -0.81905 }, { - "x": 0.7531327155539277, - "y": -0.657868613601809 + "x": 0.75313, + "y": -0.65787 }, { - "x": 0.8886571085262022, - "y": -0.4585722881573302 + "x": 0.88866, + "y": -0.45857 }, { - "x": 0.972573787301415, - "y": -0.23259455766243148 + "x": 0.97257, + "y": -0.23259 }, { - "x": 0.999976009846493, - "y": 0.006926740321860729 + "x": 0.99998, + "y": 0.00693 }, { "max": { @@ -40012,12 +40012,12 @@ } }, { - "x": 394.155062692734, - "y": 727.0912912088485 + "x": 394.15506, + "y": 727.09129 }, { - "x": 340.3400338573008, - "y": 670.0535334828284 + "x": 340.34003, + "y": 670.05353 }, { "category": 1, @@ -40034,16 +40034,16 @@ "y": 0 }, { - "x": 367.23799105160543, - "y": 697.1258839974024 + "x": 367.23799, + "y": 697.12588 }, { - "x": -0.6539260506672687, - "y": 0.23651310978070647 + "x": -0.65393, + "y": 0.23651 }, { - "x": 367.2188766047815, - "y": 694.2328273005304 + "x": 367.21888, + "y": 694.23283 }, { "endCol": 8, @@ -40066,8 +40066,8 @@ "yScale": 1 }, { - "x": 0.019114446823970184, - "y": 2.8930566968720104 + "x": 0.01911, + "y": 2.89306 }, [ { @@ -40153,197 +40153,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 394.0907443385694, - "y": 700.574968790422 + "x": 394.09074, + "y": 700.57497 }, { "body": null, "index": 1, "isInternal": false, - "x": 392.4848870577697, - "y": 706.9009971964364 + "x": 392.48489, + "y": 706.901 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.4119301875853, - "y": 712.6588497539428 + "x": 389.41193, + "y": 712.65885 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.05018996375696, - "y": 717.5147536059397 + "x": 385.05019, + "y": 717.51475 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.65364138849833, - "y": 721.1844611521723 + "x": 379.65364, + "y": 721.18446 }, { "body": null, "index": 5, "isInternal": false, - "x": 373.5347523965601, - "y": 723.4571317187825 + "x": 373.53475, + "y": 723.45713 }, { "body": null, "index": 6, "isInternal": false, - "x": 367.0504634108716, - "y": 724.1982345119765 + "x": 367.05046, + "y": 724.19823 }, { "body": null, "index": 7, "isInternal": false, - "x": 360.5770632609693, - "y": 723.3673750176918 + "x": 360.57706, + "y": 723.36738 }, { "body": null, "index": 8, "isInternal": false, - "x": 354.4902450767211, - "y": 721.010156658713 + "x": 354.49025, + "y": 721.01016 }, { "body": null, "index": 9, "isInternal": false, - "x": 349.1450513542088, - "y": 717.2660420679432 + "x": 349.14505, + "y": 717.26604 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.8509992368057, - "y": 712.3501803517203 + "x": 344.851, + "y": 712.35018 }, { "body": null, "index": 11, "isInternal": false, - "x": 341.8581016312614, - "y": 706.5503101874211 + "x": 341.8581, + "y": 706.55031 }, { "body": null, "index": 12, "isInternal": false, - "x": 340.3400338573008, - "y": 700.2026426446414 + "x": 340.34003, + "y": 700.20264 }, { "body": null, "index": 13, "isInternal": false, - "x": 340.3852377646415, - "y": 693.6767992043829 + "x": 340.38524, + "y": 693.6768 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.99109504544117, - "y": 687.3507707983684 + "x": 341.9911, + "y": 687.35077 }, { "body": null, "index": 15, "isInternal": false, - "x": 345.06405191562556, - "y": 681.592918240862 + "x": 345.06405, + "y": 681.59292 }, { "body": null, "index": 16, "isInternal": false, - "x": 349.4257921394539, - "y": 676.7370143888651 + "x": 349.42579, + "y": 676.73701 }, { "body": null, "index": 17, "isInternal": false, - "x": 354.82234071471254, - "y": 673.0673068426325 + "x": 354.82234, + "y": 673.06731 }, { "body": null, "index": 18, "isInternal": false, - "x": 360.94122970665063, - "y": 670.7946362760223 + "x": 360.94123, + "y": 670.79464 }, { "body": null, "index": 19, "isInternal": false, - "x": 367.42551869233927, - "y": 670.0535334828284 + "x": 367.42552, + "y": 670.05353 }, { "body": null, "index": 20, "isInternal": false, - "x": 373.8989188422416, - "y": 670.8843929771131 + "x": 373.89892, + "y": 670.88439 }, { "body": null, "index": 21, "isInternal": false, - "x": 379.98573702648963, - "y": 673.2416113360919 + "x": 379.98574, + "y": 673.24161 }, { "body": null, "index": 22, "isInternal": false, - "x": 385.33093074900194, - "y": 676.9857259268616 + "x": 385.33093, + "y": 676.98573 }, { "body": null, "index": 23, "isInternal": false, - "x": 389.62498286640505, - "y": 681.9015876430846 + "x": 389.62498, + "y": 681.90159 }, { "body": null, "index": 24, "isInternal": false, - "x": 392.6178804719494, - "y": 687.7014578073837 + "x": 392.61788, + "y": 687.70146 }, { "body": null, "index": 25, "isInternal": false, - "x": 394.1359482459101, - "y": 694.0491253501634 + "x": 394.13595, + "y": 694.04913 }, { - "angle": -0.00010792433350934371, - "anglePrev": -0.00014783262528174013, - "angularSpeed": 0.000039908291772396416, - "angularVelocity": 0.000039908291772396416, - "area": 2673.0073460000003, + "angle": -0.00011, + "anglePrev": -0.00015, + "angularSpeed": 0.00004, + "angularVelocity": 0.00004, + "area": 2673.00735, "axes": { "#": 4498 }, "bounds": { "#": 4512 }, - "circleRadius": 29.312049897119344, + "circleRadius": 29.31205, "collisionFilter": { "#": 4515 }, @@ -40358,13 +40358,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 4548.714864282256, - "inverseInertia": 0.0002198423136724334, - "inverseMass": 0.37411045708364465, + "inertia": 4548.71486, + "inverseInertia": 0.00022, + "inverseMass": 0.37411, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6730073460000003, + "mass": 2.67301, "motion": 0, "parent": null, "position": { @@ -40386,7 +40386,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.925234950168427, + "speed": 2.92523, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40440,56 +40440,56 @@ } ], { - "x": -0.970970420972838, - "y": -0.23919958527520419 + "x": -0.97097, + "y": -0.2392 }, { - "x": -0.8855019212439521, - "y": -0.4646357148059863 + "x": -0.8855, + "y": -0.46464 }, { - "x": -0.7485573860890173, - "y": -0.663070011184021 + "x": -0.74856, + "y": -0.66307 }, { - "x": -0.568268117118129, - "y": -0.8228434523449869 + "x": -0.56827, + "y": -0.82284 }, { - "x": -0.3546186207014325, - "y": -0.9350110340802475 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12067516445842642, - "y": -0.9926920492695263 + "x": -0.12068, + "y": -0.99269 }, { - "x": 0.12046089039332841, - "y": -0.9927180737176322 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.3544167915566902, - "y": -0.9350875562548472 + "x": 0.35442, + "y": -0.93509 }, { - "x": 0.5680904942191649, - "y": -0.822966093091219 + "x": 0.56809, + "y": -0.82297 }, { - "x": 0.7484142458741884, - "y": -0.6632315708503105 + "x": 0.74841, + "y": -0.66323 }, { - "x": 0.8854016096169872, - "y": -0.46482683839000594 + "x": 0.8854, + "y": -0.46483 }, { - "x": 0.9709187674425357, - "y": -0.23940916237242663 + "x": 0.97092, + "y": -0.23941 }, { - "x": 0.9999999941761695, - "y": -0.00010792433329983269 + "x": 1, + "y": -0.00011 }, { "max": { @@ -40500,12 +40500,12 @@ } }, { - "x": 494.64608290458403, - "y": 750.321808231442 + "x": 494.64608, + "y": 750.32181 }, { - "x": 436.44900299404134, - "y": 688.7725736399375 + "x": 436.449, + "y": 688.77257 }, { "category": 1, @@ -40522,16 +40522,16 @@ "y": 0 }, { - "x": 465.5473841212491, - "y": 718.0845734692292 + "x": 465.54738, + "y": 718.08457 }, { - "x": -0.1301860942373012, - "y": 0.9272053970898112 + "x": -0.13019, + "y": 0.92721 }, { - "x": 465.5470664651219, - "y": 715.1593385363082 + "x": 465.54707, + "y": 715.15934 }, { "endCol": 10, @@ -40554,8 +40554,8 @@ "yScale": 1 }, { - "x": 0.00031765612719937054, - "y": 2.9252349329210237 + "x": 0.00032, + "y": 2.92523 }, [ { @@ -40641,197 +40641,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 494.6457652484568, - "y": 721.6144330664033 + "x": 494.64577, + "y": 721.61443 }, { "body": null, "index": 1, "isInternal": false, - "x": 492.95550572715575, - "y": 728.4756155264936 + "x": 492.95551, + "y": 728.47562 }, { "body": null, "index": 2, "isInternal": false, - "x": 489.6721810288346, - "y": 734.7329699135644 + "x": 489.67218, + "y": 734.73297 }, { "body": null, "index": 3, "isInternal": false, - "x": 484.9867518679239, - "y": 740.0224756161881 + "x": 484.98675, + "y": 740.02248 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.1721852179877, - "y": 744.0381031728034 + "x": 479.17219, + "y": 744.0381 }, { "body": null, "index": 5, "isInternal": false, - "x": 472.5654556069205, - "y": 746.543816214285 + "x": 472.56546, + "y": 746.54382 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.55054759930675, - "y": 747.3965732985209 + "x": 465.55055, + "y": 747.39657 }, { "body": null, "index": 7, "isInternal": false, - "x": 458.535455688629, - "y": 746.5453303926811 + "x": 458.53546, + "y": 746.54533 }, { "body": null, "index": 8, "isInternal": false, - "x": 451.9281853766521, - "y": 744.04104346334 + "x": 451.92819, + "y": 744.04104 }, { "body": null, "index": 9, "isInternal": false, - "x": 446.1127520943194, - "y": 740.0266710667207 + "x": 446.11275, + "y": 740.02667 }, { "body": null, "index": 10, "isInternal": false, - "x": 441.4261813098111, - "y": 734.7381768309486 + "x": 441.42618, + "y": 734.73818 }, { "body": null, "index": 11, "isInternal": false, - "x": 438.1415060463832, - "y": 728.4815312908993 + "x": 438.14151, + "y": 728.48153 }, { "body": null, "index": 12, "isInternal": false, - "x": 436.4497655873805, - "y": 721.6207138309039 + "x": 436.44977, + "y": 721.62071 }, { "body": null, "index": 13, "isInternal": false, - "x": 436.44900299404134, - "y": 714.5547138720551 + "x": 436.449, + "y": 714.55471 }, { "body": null, "index": 14, "isInternal": false, - "x": 438.1392625153424, - "y": 707.6935314119648 + "x": 438.13926, + "y": 707.69353 }, { "body": null, "index": 15, "isInternal": false, - "x": 441.4225872136636, - "y": 701.436177024894 + "x": 441.42259, + "y": 701.43618 }, { "body": null, "index": 16, "isInternal": false, - "x": 446.1080163745743, - "y": 696.1466713222703 + "x": 446.10802, + "y": 696.14667 }, { "body": null, "index": 17, "isInternal": false, - "x": 451.92258302451046, - "y": 692.131043765655 + "x": 451.92258, + "y": 692.13104 }, { "body": null, "index": 18, "isInternal": false, - "x": 458.52931263557764, - "y": 689.6253307241734 + "x": 458.52931, + "y": 689.62533 }, { "body": null, "index": 19, "isInternal": false, - "x": 465.5442206431914, - "y": 688.7725736399375 + "x": 465.54422, + "y": 688.77257 }, { "body": null, "index": 20, "isInternal": false, - "x": 472.5593125538692, - "y": 689.6238165457773 + "x": 472.55931, + "y": 689.62382 }, { "body": null, "index": 21, "isInternal": false, - "x": 479.16658286584607, - "y": 692.1281034751185 + "x": 479.16658, + "y": 692.1281 }, { "body": null, "index": 22, "isInternal": false, - "x": 484.9820161481788, - "y": 696.1424758717377 + "x": 484.98202, + "y": 696.14248 }, { "body": null, "index": 23, "isInternal": false, - "x": 489.66858693268705, - "y": 701.4309701075098 + "x": 489.66859, + "y": 701.43097 }, { "body": null, "index": 24, "isInternal": false, - "x": 492.95326219611496, - "y": 707.6876156475591 + "x": 492.95326, + "y": 707.68762 }, { "body": null, "index": 25, "isInternal": false, - "x": 494.64500265511765, - "y": 714.5484331075545 + "x": 494.645, + "y": 714.54843 }, { - "angle": 0.005815970727656315, - "anglePrev": 0.004592049514071911, - "angularSpeed": 0.0012239212135844038, - "angularVelocity": 0.0012239212135844038, - "area": 1197.2269959999996, + "angle": 0.00582, + "anglePrev": 0.00459, + "angularSpeed": 0.00122, + "angularVelocity": 0.00122, + "area": 1197.227, "axes": { "#": 4553 }, "bounds": { "#": 4564 }, - "circleRadius": 19.68332047325103, + "circleRadius": 19.68332, "collisionFilter": { "#": 4567 }, @@ -40846,13 +40846,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 912.5504968907098, - "inverseInertia": 0.00109582976877143, - "inverseMass": 0.8352634908342814, + "inertia": 912.5505, + "inverseInertia": 0.0011, + "inverseMass": 0.83526, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1972269959999997, + "mass": 1.19723, "motion": 0, "parent": null, "position": { @@ -40874,7 +40874,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.886123196607046, + "speed": 2.88612, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40919,44 +40919,44 @@ } ], { - "x": -0.9492458628428478, - "y": -0.31453504077564565 + "x": -0.94925, + "y": -0.31454 }, { - "x": -0.8055563689778692, - "y": -0.5925191443313805 + "x": -0.80556, + "y": -0.59252 }, { - "x": -0.5831090870288783, - "y": -0.8123938654521882 + "x": -0.58311, + "y": -0.81239 }, { - "x": -0.30347243908204746, - "y": -0.9528402167822227 + "x": -0.30347, + "y": -0.95284 }, { - "x": 0.0058159379396770985, - "y": -0.999983087289921 + "x": 0.00582, + "y": -0.99998 }, { - "x": 0.31453504077564565, - "y": -0.9492458628428478 + "x": 0.31454, + "y": -0.94925 }, { - "x": 0.5925191443313805, - "y": -0.8055563689778692 + "x": 0.59252, + "y": -0.80556 }, { - "x": 0.8123938654521882, - "y": -0.5831090870288783 + "x": 0.81239, + "y": -0.58311 }, { - "x": 0.9528402167822227, - "y": -0.30347243908204746 + "x": 0.95284, + "y": -0.30347 }, { - "x": 0.999983087289921, - "y": 0.0058159379396770985 + "x": 0.99998, + "y": 0.00582 }, { "max": { @@ -40967,12 +40967,12 @@ } }, { - "x": 532.0691403152059, - "y": 725.2769104947511 + "x": 532.06914, + "y": 725.27691 }, { - "x": 493.14207373239213, - "y": 683.4736473649523 + "x": 493.14207, + "y": 683.47365 }, { "category": 1, @@ -40989,16 +40989,16 @@ "y": 0 }, { - "x": 512.6105618422862, - "y": 702.932225837872 + "x": 512.61056, + "y": 702.93223 }, { - "x": -0.08865496504364605, - "y": 0.5084494927560311 + "x": -0.08865, + "y": 0.50845 }, { - "x": 512.6204714792607, - "y": 700.0461196539127 + "x": 512.62047, + "y": 700.04612 }, { "endCol": 11, @@ -41021,8 +41021,8 @@ "yScale": 1 }, { - "x": -0.009909636974514342, - "y": 2.886106183959334 + "x": -0.00991, + "y": 2.88611 }, [ { @@ -41090,155 +41090,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 532.0333257693733, - "y": 706.124241413123 + "x": 532.03333, + "y": 706.12424 }, { "body": null, "index": 1, "isInternal": false, - "x": 530.096294005748, - "y": 711.9700746254807 + "x": 530.09629, + "y": 711.97007 }, { "body": null, "index": 2, "isInternal": false, - "x": 526.4473802269429, - "y": 716.9309366710175 + "x": 526.44738, + "y": 716.93094 }, { "body": null, "index": 3, "isInternal": false, - "x": 521.4444107907228, - "y": 720.5219004441915 + "x": 521.44441, + "y": 720.5219 }, { "body": null, "index": 4, "isInternal": false, - "x": 515.5764421185664, - "y": 722.3908043107917 + "x": 515.57644, + "y": 722.3908 }, { "body": null, "index": 5, "isInternal": false, - "x": 509.4185462670354, - "y": 722.3549897649591 + "x": 509.41855, + "y": 722.35499 }, { "body": null, "index": 6, "isInternal": false, - "x": 503.5727130546775, - "y": 720.4179580013339 + "x": 503.57271, + "y": 720.41796 }, { "body": null, "index": 7, "isInternal": false, - "x": 498.61185100914065, - "y": 716.7690442225288 + "x": 498.61185, + "y": 716.76904 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.0208872359666, - "y": 711.7660747863088 + "x": 495.02089, + "y": 711.76607 }, { "body": null, "index": 9, "isInternal": false, - "x": 493.15198336936663, - "y": 705.8981061141523 + "x": 493.15198, + "y": 705.89811 }, { "body": null, "index": 10, "isInternal": false, - "x": 493.1877979151991, - "y": 699.7402102626211 + "x": 493.1878, + "y": 699.74021 }, { "body": null, "index": 11, "isInternal": false, - "x": 495.1248296788245, - "y": 693.8943770502633 + "x": 495.12483, + "y": 693.89438 }, { "body": null, "index": 12, "isInternal": false, - "x": 498.77374345762956, - "y": 688.9335150047265 + "x": 498.77374, + "y": 688.93352 }, { "body": null, "index": 13, "isInternal": false, - "x": 503.77671289384966, - "y": 685.3425512315525 + "x": 503.77671, + "y": 685.34255 }, { "body": null, "index": 14, "isInternal": false, - "x": 509.64468156600606, - "y": 683.4736473649523 + "x": 509.64468, + "y": 683.47365 }, { "body": null, "index": 15, "isInternal": false, - "x": 515.8025774175371, - "y": 683.5094619107849 + "x": 515.80258, + "y": 683.50946 }, { "body": null, "index": 16, "isInternal": false, - "x": 521.6484106298948, - "y": 685.4464936744101 + "x": 521.64841, + "y": 685.44649 }, { "body": null, "index": 17, "isInternal": false, - "x": 526.6092726754316, - "y": 689.0954074532152 + "x": 526.60927, + "y": 689.09541 }, { "body": null, "index": 18, "isInternal": false, - "x": 530.2002364486057, - "y": 694.0983768894353 + "x": 530.20024, + "y": 694.09838 }, { "body": null, "index": 19, "isInternal": false, - "x": 532.0691403152059, - "y": 699.9663455615918 + "x": 532.06914, + "y": 699.96635 }, { - "angle": -0.014545348283061353, - "anglePrev": -0.012652242954895452, - "angularSpeed": 0.0018931053281659013, - "angularVelocity": -0.0018931053281659013, - "area": 977.1466719999999, + "angle": -0.01455, + "anglePrev": -0.01265, + "angularSpeed": 0.00189, + "angularVelocity": -0.00189, + "area": 977.14667, "axes": { "#": 4599 }, "bounds": { "#": 4609 }, - "circleRadius": 17.816936728395063, + "circleRadius": 17.81694, "collisionFilter": { "#": 4612 }, @@ -41253,13 +41253,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 607.9053757880243, - "inverseInertia": 0.0016449928555142411, - "inverseMass": 1.0233878174637023, + "inertia": 607.90538, + "inverseInertia": 0.00164, + "inverseMass": 1.02339, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9771466719999998, + "mass": 0.97715, "motion": 0, "parent": null, "position": { @@ -41281,7 +41281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9130530910518377, + "speed": 2.91305, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41323,40 +41323,40 @@ } ], { - "x": -0.9445739754645792, - "y": -0.32829865195434554 + "x": -0.94457, + "y": -0.3283 }, { - "x": -0.7754042223231709, - "y": -0.6314651946096462 + "x": -0.7754, + "y": -0.63147 }, { - "x": -0.5124207052893947, - "y": -0.858734546172867 + "x": -0.51242, + "y": -0.85873 }, { - "x": -0.18802610558563776, - "y": -0.9821640309125041 + "x": -0.18803, + "y": -0.98216 }, { - "x": 0.1593787448352719, - "y": -0.9872175118456586 + "x": 0.15938, + "y": -0.98722 }, { - "x": 0.4872262349995724, - "y": -0.8732757845767519 + "x": 0.48723, + "y": -0.87328 }, { - "x": 0.7567089738085817, - "y": -0.6537518863892959 + "x": 0.75671, + "y": -0.65375 }, { - "x": 0.9346252325048288, - "y": -0.3556341867218267 + "x": 0.93463, + "y": -0.35563 }, { - "x": 0.9998942182866766, - "y": -0.014544835402156973 + "x": 0.99989, + "y": -0.01454 }, { "max": { @@ -41367,12 +41367,12 @@ } }, { - "x": 573.3687641356521, - "y": 712.9903462618036 + "x": 573.36876, + "y": 712.99035 }, { - "x": 538.1904727860674, - "y": 677.3601156873758 + "x": 538.19047, + "y": 677.36012 }, { "category": 1, @@ -41389,16 +41389,16 @@ "y": 0 }, { - "x": 555.7796184608598, - "y": 695.1752309745897 + "x": 555.77962, + "y": 695.17523 }, { "x": 0, "y": 0 }, { - "x": 555.7636893202512, - "y": 692.2622214356821 + "x": 555.76369, + "y": 692.26222 }, { "endCol": 11, @@ -41421,8 +41421,8 @@ "yScale": 1 }, { - "x": 0.015929140608554916, - "y": 2.913009538907509 + "x": 0.01593, + "y": 2.91301 }, [ { @@ -41484,141 +41484,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 573.3687641356521, - "y": 698.0137000040024 + "x": 573.36876, + "y": 698.0137 }, { "body": null, "index": 1, "isInternal": false, - "x": 571.3375516427855, - "y": 703.8578618608321 + "x": 571.33755, + "y": 703.85786 }, { "body": null, "index": 2, "isInternal": false, - "x": 567.4299294013011, - "y": 708.6562051601236 + "x": 567.42993, + "y": 708.65621 }, { "body": null, "index": 3, "isInternal": false, - "x": 562.1164834614017, - "y": 711.8268237502042 + "x": 562.11648, + "y": 711.82682 }, { "body": null, "index": 4, "isInternal": false, - "x": 556.0387637932199, - "y": 712.9903462618036 + "x": 556.03876, + "y": 712.99035 }, { "body": null, "index": 5, "isInternal": false, - "x": 549.9297727289235, - "y": 712.0040962040861 + "x": 549.92977, + "y": 712.0041 }, { "body": null, "index": 6, "isInternal": false, - "x": 544.5263524372266, - "y": 708.9893691598453 + "x": 544.52635, + "y": 708.98937 }, { "body": null, "index": 7, "isInternal": false, - "x": 540.4808160664588, - "y": 704.3067154813427 + "x": 540.48082, + "y": 704.30672 }, { "body": null, "index": 8, "isInternal": false, - "x": 538.280476227536, - "y": 698.524107367935 + "x": 538.28048, + "y": 698.52411 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.1904727860674, - "y": 692.3367619451769 + "x": 538.19047, + "y": 692.33676 }, { "body": null, "index": 10, "isInternal": false, - "x": 540.221685278934, - "y": 686.4926000883472 + "x": 540.22169, + "y": 686.4926 }, { "body": null, "index": 11, "isInternal": false, - "x": 544.1293075204184, - "y": 681.6942567890558 + "x": 544.12931, + "y": 681.69426 }, { "body": null, "index": 12, "isInternal": false, - "x": 549.4427534603178, - "y": 678.5236381989752 + "x": 549.44275, + "y": 678.52364 }, { "body": null, "index": 13, "isInternal": false, - "x": 555.5204731284996, - "y": 677.3601156873758 + "x": 555.52047, + "y": 677.36012 }, { "body": null, "index": 14, "isInternal": false, - "x": 561.629464192796, - "y": 678.3463657450933 + "x": 561.62946, + "y": 678.34637 }, { "body": null, "index": 15, "isInternal": false, - "x": 567.0328844844929, - "y": 681.3610927893341 + "x": 567.03288, + "y": 681.36109 }, { "body": null, "index": 16, "isInternal": false, - "x": 571.0784208552607, - "y": 686.0437464678366 + "x": 571.07842, + "y": 686.04375 }, { "body": null, "index": 17, "isInternal": false, - "x": 573.2787606941835, - "y": 691.8263545812443 + "x": 573.27876, + "y": 691.82635 }, { - "angle": 0.013427229320804002, - "anglePrev": 0.012874476561824373, - "angularSpeed": 0.0011607760045724452, - "angularVelocity": 0.001997844612734969, - "area": 799.8991080000001, + "angle": 0.01343, + "anglePrev": 0.01287, + "angularSpeed": 0.00116, + "angularVelocity": 0.002, + "area": 799.89911, "axes": { "#": 4642 }, "bounds": { "#": 4652 }, - "circleRadius": 16.120306069958847, + "circleRadius": 16.12031, "collisionFilter": { "#": 4655 }, @@ -41633,13 +41633,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 407.3679845696958, - "inverseInertia": 0.0024547829919827975, - "inverseMass": 1.250157663633749, + "inertia": 407.36798, + "inverseInertia": 0.00245, + "inverseMass": 1.25016, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7998991080000001, + "mass": 0.7999, "motion": 0, "parent": null, "position": { @@ -41661,7 +41661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907481118562754, + "speed": 2.90748, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41703,40 +41703,40 @@ } ], { - "x": -0.9350660973694959, - "y": -0.3544734031633136 + "x": -0.93507, + "y": -0.35447 }, { - "x": -0.7573357067568859, - "y": -0.653025747785681 + "x": -0.75734, + "y": -0.65303 }, { - "x": -0.4882498175370665, - "y": -0.8727039106564274 + "x": -0.48825, + "y": -0.8727 }, { - "x": -0.16039394237688076, - "y": -0.9870530802590112 + "x": -0.16039, + "y": -0.98705 }, { - "x": 0.1868397011378334, - "y": -0.9823904142848325 + "x": 0.18684, + "y": -0.98239 }, { - "x": 0.5115069488412458, - "y": -0.8592791404934251 + "x": 0.51151, + "y": -0.85928 }, { - "x": 0.774597187537993, - "y": -0.6324548972521529 + "x": 0.7746, + "y": -0.63245 }, { - "x": 0.9442469978267223, - "y": -0.32923791867769764 + "x": 0.94425, + "y": -0.32924 }, { - "x": 0.9999098561107362, - "y": 0.013426825857488311 + "x": 0.99991, + "y": 0.01343 }, { "max": { @@ -41747,12 +41747,12 @@ } }, { - "x": 646.0996381211943, - "y": 738.6616275738381 + "x": 646.09964, + "y": 738.66163 }, { - "x": 614.2508613185822, - "y": 703.5171732396102 + "x": 614.25086, + "y": 703.51717 }, { "category": 1, @@ -41769,16 +41769,16 @@ "y": 0 }, { - "x": 630.1620119699153, - "y": 719.6357201201153 + "x": 630.16201, + "y": 719.63572 }, { - "x": 0.2947526155312819, - "y": 0.7858123276555884 + "x": 0.29475, + "y": 0.78581 }, { - "x": 630.1266121340524, - "y": 716.7113421721004 + "x": 630.12661, + "y": 716.71134 }, { "endCol": 13, @@ -41801,8 +41801,8 @@ "yScale": 1 }, { - "x": 0.014189322568881835, - "y": 2.8839326692038867 + "x": 0.01419, + "y": 2.88393 }, [ { @@ -41864,141 +41864,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 645.9979992500982, - "y": 722.6476186678568 + "x": 645.998, + "y": 722.64762 }, { "body": null, "index": 1, "isInternal": false, - "x": 644.0135332546662, - "y": 727.8824454761642 + "x": 644.01353, + "y": 727.88245 }, { "body": null, "index": 2, "isInternal": false, - "x": 640.3572700264203, - "y": 732.122735702762 + "x": 640.35727, + "y": 732.12274 }, { "body": null, "index": 3, "isInternal": false, - "x": 635.4711254485645, - "y": 734.856376711433 + "x": 635.47113, + "y": 734.85638 }, { "body": null, "index": 4, "isInternal": false, - "x": 629.9455715370925, - "y": 735.7542670006203 + "x": 629.94557, + "y": 735.75427 }, { "body": null, "index": 5, "isInternal": false, - "x": 624.4461193750875, - "y": 734.7083325295283 + "x": 624.44612, + "y": 734.70833 }, { "body": null, "index": 6, "isInternal": false, - "x": 619.6351381683816, - "y": 731.8444781636915 + "x": 619.63514, + "y": 731.84448 }, { "body": null, "index": 7, "isInternal": false, - "x": 616.094050252342, - "y": 727.5075416445716 + "x": 616.09405, + "y": 727.50754 }, { "body": null, "index": 8, "isInternal": false, - "x": 614.2508613185822, - "y": 722.2213169468815 + "x": 614.25086, + "y": 722.22132 }, { "body": null, "index": 9, "isInternal": false, - "x": 614.3260246897323, - "y": 716.6238215723737 + "x": 614.32602, + "y": 716.62382 }, { "body": null, "index": 10, "isInternal": false, - "x": 616.3104906851644, - "y": 711.3889947640663 + "x": 616.31049, + "y": 711.38899 }, { "body": null, "index": 11, "isInternal": false, - "x": 619.9667539134102, - "y": 707.1487045374685 + "x": 619.96675, + "y": 707.1487 }, { "body": null, "index": 12, "isInternal": false, - "x": 624.852898491266, - "y": 704.4150635287975 + "x": 624.8529, + "y": 704.41506 }, { "body": null, "index": 13, "isInternal": false, - "x": 630.378452402738, - "y": 703.5171732396102 + "x": 630.37845, + "y": 703.51717 }, { "body": null, "index": 14, "isInternal": false, - "x": 635.8779045647431, - "y": 704.5631077107022 + "x": 635.8779, + "y": 704.56311 }, { "body": null, "index": 15, "isInternal": false, - "x": 640.688885771449, - "y": 707.426962076539 + "x": 640.68889, + "y": 707.42696 }, { "body": null, "index": 16, "isInternal": false, - "x": 644.2299736874886, - "y": 711.7638985956589 + "x": 644.22997, + "y": 711.7639 }, { "body": null, "index": 17, "isInternal": false, - "x": 646.0731626212483, - "y": 717.050123293349 + "x": 646.07316, + "y": 717.05012 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2175.764468, + "area": 2175.76447, "axes": { "#": 4685 }, "bounds": { "#": 4699 }, - "circleRadius": 26.44528034979424, + "circleRadius": 26.44528, "collisionFilter": { "#": 4702 }, @@ -42013,13 +42013,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 3013.784323849708, - "inverseInertia": 0.0003318087469254048, - "inverseMass": 0.45960857193298, + "inertia": 3013.78432, + "inverseInertia": 0.00033, + "inverseMass": 0.45961, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.175764468, + "mass": 2.17576, "motion": 0, "parent": null, "position": { @@ -42041,7 +42041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42095,52 +42095,52 @@ } ], { - "x": -0.9709672518969629, - "y": -0.2392124489729995 + "x": -0.97097, + "y": -0.23921 }, { - "x": -0.8854382464451883, - "y": -0.46475704591976863 + "x": -0.88544, + "y": -0.46476 }, { - "x": -0.7484814043741432, - "y": -0.6631557790640977 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5680591843232271, - "y": -0.8229877053188766 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.35464477726487137, - "y": -0.9350011133462621 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12046252617652502, - "y": -0.9927178752229507 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.12046252617652502, - "y": -0.9927178752229507 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35464477726487137, - "y": -0.9350011133462621 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680591843232271, - "y": -0.8229877053188766 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7484814043741432, - "y": -0.6631557790640977 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8854382464451883, - "y": -0.46475704591976863 + "x": 0.88544, + "y": -0.46476 }, { - "x": 0.9709672518969629, - "y": -0.2392124489729995 + "x": 0.97097, + "y": -0.23921 }, { "x": 1, @@ -42155,12 +42155,12 @@ } }, { - "x": 164.0460383879898, - "y": 781.5880510053233 + "x": 164.04604, + "y": 781.58805 }, { - "x": 111.54203838798978, - "y": 725.7907802902873 + "x": 111.54204, + "y": 725.79078 }, { "category": 1, @@ -42177,16 +42177,16 @@ "y": 0 }, { - "x": 137.7940383879898, - "y": 752.2357802902874 + "x": 137.79404, + "y": 752.23578 }, { - "x": -0.10850839132425782, - "y": 0.8585650694535529 + "x": -0.10851, + "y": 0.85857 }, { - "x": 137.7940383879898, - "y": 749.3285095752515 + "x": 137.79404, + "y": 749.32851 }, { "endCol": 3, @@ -42210,7 +42210,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -42296,197 +42296,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 164.0460383879898, - "y": 755.4237802902874 + "x": 164.04604, + "y": 755.42378 }, { "body": null, "index": 1, "isInternal": false, - "x": 162.5210383879898, - "y": 761.6137802902874 + "x": 162.52104, + "y": 761.61378 }, { "body": null, "index": 2, "isInternal": false, - "x": 159.5580383879898, - "y": 767.2587802902874 + "x": 159.55804, + "y": 767.25878 }, { "body": null, "index": 3, "isInternal": false, - "x": 155.33003838798982, - "y": 772.0307802902873 + "x": 155.33004, + "y": 772.03078 }, { "body": null, "index": 4, "isInternal": false, - "x": 150.08403838798978, - "y": 775.6517802902874 + "x": 150.08404, + "y": 775.65178 }, { "body": null, "index": 5, "isInternal": false, - "x": 144.1230383879898, - "y": 777.9127802902874 + "x": 144.12304, + "y": 777.91278 }, { "body": null, "index": 6, "isInternal": false, - "x": 137.7940383879898, - "y": 778.6807802902874 + "x": 137.79404, + "y": 778.68078 }, { "body": null, "index": 7, "isInternal": false, - "x": 131.46503838798978, - "y": 777.9127802902874 + "x": 131.46504, + "y": 777.91278 }, { "body": null, "index": 8, "isInternal": false, - "x": 125.50403838798978, - "y": 775.6517802902874 + "x": 125.50404, + "y": 775.65178 }, { "body": null, "index": 9, "isInternal": false, - "x": 120.25803838798977, - "y": 772.0307802902873 + "x": 120.25804, + "y": 772.03078 }, { "body": null, "index": 10, "isInternal": false, - "x": 116.03003838798978, - "y": 767.2587802902874 + "x": 116.03004, + "y": 767.25878 }, { "body": null, "index": 11, "isInternal": false, - "x": 113.06703838798977, - "y": 761.6137802902874 + "x": 113.06704, + "y": 761.61378 }, { "body": null, "index": 12, "isInternal": false, - "x": 111.54203838798978, - "y": 755.4237802902874 + "x": 111.54204, + "y": 755.42378 }, { "body": null, "index": 13, "isInternal": false, - "x": 111.54203838798978, - "y": 749.0477802902874 + "x": 111.54204, + "y": 749.04778 }, { "body": null, "index": 14, "isInternal": false, - "x": 113.06703838798977, - "y": 742.8577802902873 + "x": 113.06704, + "y": 742.85778 }, { "body": null, "index": 15, "isInternal": false, - "x": 116.03003838798978, - "y": 737.2127802902874 + "x": 116.03004, + "y": 737.21278 }, { "body": null, "index": 16, "isInternal": false, - "x": 120.25803838798977, - "y": 732.4407802902874 + "x": 120.25804, + "y": 732.44078 }, { "body": null, "index": 17, "isInternal": false, - "x": 125.50403838798978, - "y": 728.8197802902873 + "x": 125.50404, + "y": 728.81978 }, { "body": null, "index": 18, "isInternal": false, - "x": 131.46503838798978, - "y": 726.5587802902874 + "x": 131.46504, + "y": 726.55878 }, { "body": null, "index": 19, "isInternal": false, - "x": 137.7940383879898, - "y": 725.7907802902873 + "x": 137.79404, + "y": 725.79078 }, { "body": null, "index": 20, "isInternal": false, - "x": 144.1230383879898, - "y": 726.5587802902874 + "x": 144.12304, + "y": 726.55878 }, { "body": null, "index": 21, "isInternal": false, - "x": 150.08403838798978, - "y": 728.8197802902873 + "x": 150.08404, + "y": 728.81978 }, { "body": null, "index": 22, "isInternal": false, - "x": 155.33003838798982, - "y": 732.4407802902874 + "x": 155.33004, + "y": 732.44078 }, { "body": null, "index": 23, "isInternal": false, - "x": 159.5580383879898, - "y": 737.2127802902874 + "x": 159.55804, + "y": 737.21278 }, { "body": null, "index": 24, "isInternal": false, - "x": 162.5210383879898, - "y": 742.8577802902873 + "x": 162.52104, + "y": 742.85778 }, { "body": null, "index": 25, "isInternal": false, - "x": 164.0460383879898, - "y": 749.0477802902874 + "x": 164.04604, + "y": 749.04778 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 864.0989000000001, + "area": 864.0989, "axes": { "#": 4740 }, "bounds": { "#": 4750 }, - "circleRadius": 16.754822530864196, + "circleRadius": 16.75482, "collisionFilter": { "#": 4753 }, @@ -42501,13 +42501,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 475.38270097285647, - "inverseInertia": 0.0021035683417876374, - "inverseMass": 1.157274936931409, + "inertia": 475.3827, + "inverseInertia": 0.0021, + "inverseMass": 1.15727, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8640989000000001, + "mass": 0.8641, "motion": 0, "parent": null, "position": { @@ -42529,7 +42529,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42571,36 +42571,36 @@ } ], { - "x": -0.9397030727177501, - "y": -0.3419914255135923 + "x": -0.9397, + "y": -0.34199 }, { - "x": -0.7661041941914353, - "y": -0.642716394409145 + "x": -0.7661, + "y": -0.64272 }, { - "x": -0.49989104462044864, - "y": -0.8660883000643045 + "x": -0.49989, + "y": -0.86609 }, { - "x": -0.17375592062528475, - "y": -0.984788748944493 + "x": -0.17376, + "y": -0.98479 }, { - "x": 0.17375592062528475, - "y": -0.984788748944493 + "x": 0.17376, + "y": -0.98479 }, { - "x": 0.49989104462044864, - "y": -0.8660883000643045 + "x": 0.49989, + "y": -0.86609 }, { - "x": 0.7661041941914353, - "y": -0.642716394409145 + "x": 0.7661, + "y": -0.64272 }, { - "x": 0.9397030727177501, - "y": -0.3419914255135923 + "x": 0.9397, + "y": -0.34199 }, { "x": 1, @@ -42615,12 +42615,12 @@ } }, { - "x": 216.76595559727002, - "y": 772.7316844495211 + "x": 216.76596, + "y": 772.73168 }, { - "x": 183.76595559727002, - "y": 736.3144137344852 + "x": 183.76596, + "y": 736.31441 }, { "category": 1, @@ -42637,16 +42637,16 @@ "y": 0 }, { - "x": 200.26595559727002, - "y": 753.0694137344852 + "x": 200.26596, + "y": 753.06941 }, { - "x": 0.9362068542036452, - "y": 0.554554394750512 + "x": 0.93621, + "y": 0.55455 }, { - "x": 200.26595559727002, - "y": 750.1621430194493 + "x": 200.26596, + "y": 750.16214 }, { "endCol": 4, @@ -42670,7 +42670,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -42732,141 +42732,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 216.76595559727002, - "y": 755.9784137344852 + "x": 216.76596, + "y": 755.97841 }, { "body": null, "index": 1, "isInternal": false, - "x": 214.77595559727, - "y": 761.4464137344852 + "x": 214.77596, + "y": 761.44641 }, { "body": null, "index": 2, "isInternal": false, - "x": 211.03595559727003, - "y": 765.9044137344853 + "x": 211.03596, + "y": 765.90441 }, { "body": null, "index": 3, "isInternal": false, - "x": 205.99595559727, - "y": 768.8134137344853 + "x": 205.99596, + "y": 768.81341 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.26595559727002, - "y": 769.8244137344852 + "x": 200.26596, + "y": 769.82441 }, { "body": null, "index": 5, "isInternal": false, - "x": 194.53595559727003, - "y": 768.8134137344853 + "x": 194.53596, + "y": 768.81341 }, { "body": null, "index": 6, "isInternal": false, - "x": 189.49595559727, - "y": 765.9044137344853 + "x": 189.49596, + "y": 765.90441 }, { "body": null, "index": 7, "isInternal": false, - "x": 185.75595559727003, - "y": 761.4464137344852 + "x": 185.75596, + "y": 761.44641 }, { "body": null, "index": 8, "isInternal": false, - "x": 183.76595559727002, - "y": 755.9784137344852 + "x": 183.76596, + "y": 755.97841 }, { "body": null, "index": 9, "isInternal": false, - "x": 183.76595559727002, - "y": 750.1604137344852 + "x": 183.76596, + "y": 750.16041 }, { "body": null, "index": 10, "isInternal": false, - "x": 185.75595559727003, - "y": 744.6924137344853 + "x": 185.75596, + "y": 744.69241 }, { "body": null, "index": 11, "isInternal": false, - "x": 189.49595559727, - "y": 740.2344137344852 + "x": 189.49596, + "y": 740.23441 }, { "body": null, "index": 12, "isInternal": false, - "x": 194.53595559727003, - "y": 737.3254137344852 + "x": 194.53596, + "y": 737.32541 }, { "body": null, "index": 13, "isInternal": false, - "x": 200.26595559727002, - "y": 736.3144137344852 + "x": 200.26596, + "y": 736.31441 }, { "body": null, "index": 14, "isInternal": false, - "x": 205.99595559727, - "y": 737.3254137344852 + "x": 205.99596, + "y": 737.32541 }, { "body": null, "index": 15, "isInternal": false, - "x": 211.03595559727003, - "y": 740.2344137344852 + "x": 211.03596, + "y": 740.23441 }, { "body": null, "index": 16, "isInternal": false, - "x": 214.77595559727, - "y": 744.6924137344853 + "x": 214.77596, + "y": 744.69241 }, { "body": null, "index": 17, "isInternal": false, - "x": 216.76595559727002, - "y": 750.1604137344852 + "x": 216.76596, + "y": 750.16041 }, { - "angle": 0.0026505628015361573, - "anglePrev": 0.002519181957485807, - "angularSpeed": 0.0003401501094390939, - "angularVelocity": 0.00047646678937351104, - "area": 1613.0638619999995, + "angle": 0.00265, + "anglePrev": 0.00252, + "angularSpeed": 0.00034, + "angularVelocity": 0.00048, + "area": 1613.06386, "axes": { "#": 4783 }, "bounds": { "#": 4796 }, - "circleRadius": 22.789673353909464, + "circleRadius": 22.78967, "collisionFilter": { "#": 4799 }, @@ -42881,13 +42881,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 1656.5123333603722, - "inverseInertia": 0.0006036779683803605, - "inverseMass": 0.6199382575964003, + "inertia": 1656.51233, + "inverseInertia": 0.0006, + "inverseMass": 0.61994, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.6130638619999995, + "mass": 1.61306, "motion": 0, "parent": null, "position": { @@ -42909,7 +42909,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8978309892675718, + "speed": 2.89783, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42960,52 +42960,52 @@ } ], { - "x": -0.9652209702696102, - "y": -0.26143541946682075 + "x": -0.96522, + "y": -0.26144 }, { - "x": -0.864661148381764, - "y": -0.5023555498639676 + "x": -0.86466, + "y": -0.50236 }, { - "x": -0.705230068568243, - "y": -0.7089785260409729 + "x": -0.70523, + "y": -0.70898 }, { - "x": -0.4977648354162474, - "y": -0.8673120364799719 + "x": -0.49776, + "y": -0.86731 }, { - "x": -0.2563150124221244, - "y": -0.9665933035186238 + "x": -0.25632, + "y": -0.96659 }, { - "x": 0.002650559697956524, - "y": -0.9999964872604741 + "x": 0.00265, + "y": -1 }, { - "x": 0.26143541946682075, - "y": -0.9652209702696102 + "x": 0.26144, + "y": -0.96522 }, { - "x": 0.5023555498639676, - "y": -0.864661148381764 + "x": 0.50236, + "y": -0.86466 }, { - "x": 0.7089785260409729, - "y": -0.705230068568243 + "x": 0.70898, + "y": -0.70523 }, { - "x": 0.8673120364799719, - "y": -0.4977648354162474 + "x": 0.86731, + "y": -0.49776 }, { - "x": 0.9665933035186238, - "y": -0.2563150124221244 + "x": 0.96659, + "y": -0.25632 }, { - "x": 0.9999964872604741, - "y": 0.002650559697956524 + "x": 1, + "y": 0.00265 }, { "max": { @@ -43016,12 +43016,12 @@ } }, { - "x": 270.63354989776434, - "y": 774.8886871509029 + "x": 270.63355, + "y": 774.88869 }, { - "x": 225.41572203885568, - "y": 726.7852698199556 + "x": 225.41572, + "y": 726.78527 }, { "category": 1, @@ -43038,16 +43038,16 @@ "y": 0 }, { - "x": 248.0307438530125, - "y": 749.3880758647075 + "x": 248.03074, + "y": 749.38808 }, { - "x": -0.20468234167566962, - "y": 0.11035874867295264 + "x": -0.20468, + "y": 0.11036 }, { - "x": 248.0405689781971, - "y": 746.499096894542 + "x": 248.04057, + "y": 746.4991 }, { "endCol": 5, @@ -43070,8 +43070,8 @@ "yScale": 1 }, { - "x": -0.013776749573196412, - "y": 2.9035683885934986 + "x": -0.01378, + "y": 2.90357 }, [ { @@ -43151,183 +43151,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 270.61777906756157, - "y": 752.4229548106827 + "x": 270.61778, + "y": 752.42295 }, { "body": null, "index": 1, "isInternal": false, - "x": 269.06255436115595, - "y": 758.1648527645465 + "x": 269.06255, + "y": 758.16485 }, { "body": null, "index": 2, "isInternal": false, - "x": 266.0739091279922, - "y": 763.308949251811 + "x": 266.07391, + "y": 763.30895 }, { "body": null, "index": 3, "isInternal": false, - "x": 261.855773001438, - "y": 767.5047835690666 + "x": 261.85577, + "y": 767.50478 }, { "body": null, "index": 4, "isInternal": false, - "x": 256.69590568397075, - "y": 770.4661174351027 + "x": 256.69591, + "y": 770.46612 }, { "body": null, "index": 5, "isInternal": false, - "x": 250.9458440062371, - "y": 771.9908819094594 + "x": 250.94584, + "y": 771.99088 }, { "body": null, "index": 6, "isInternal": false, - "x": 244.99586490703726, - "y": 771.9751110792565 + "x": 244.99586, + "y": 771.97511 }, { "body": null, "index": 7, "isInternal": false, - "x": 239.2539669531734, - "y": 770.4198863728509 + "x": 239.25397, + "y": 770.41989 }, { "body": null, "index": 8, "isInternal": false, - "x": 234.1098704659089, - "y": 767.4312411396869 + "x": 234.10987, + "y": 767.43124 }, { "body": null, "index": 9, "isInternal": false, - "x": 229.9140361486534, - "y": 763.2131050131331 + "x": 229.91404, + "y": 763.21311 }, { "body": null, "index": 10, "isInternal": false, - "x": 226.95270228261734, - "y": 758.0532376956655 + "x": 226.9527, + "y": 758.05324 }, { "body": null, "index": 11, "isInternal": false, - "x": 225.42793780826062, - "y": 752.3031760179322 + "x": 225.42794, + "y": 752.30318 }, { "body": null, "index": 12, "isInternal": false, - "x": 225.4437086384635, - "y": 746.3531969187324 + "x": 225.44371, + "y": 746.3532 }, { "body": null, "index": 13, "isInternal": false, - "x": 226.9989333448691, - "y": 740.6112989648685 + "x": 226.99893, + "y": 740.6113 }, { "body": null, "index": 14, "isInternal": false, - "x": 229.98757857803284, - "y": 735.467202477604 + "x": 229.98758, + "y": 735.4672 }, { "body": null, "index": 15, "isInternal": false, - "x": 234.20571470458702, - "y": 731.2713681603484 + "x": 234.20571, + "y": 731.27137 }, { "body": null, "index": 16, "isInternal": false, - "x": 239.36558202205438, - "y": 728.3100342943123 + "x": 239.36558, + "y": 728.31003 }, { "body": null, "index": 17, "isInternal": false, - "x": 245.11564369978788, - "y": 726.7852698199556 + "x": 245.11564, + "y": 726.78527 }, { "body": null, "index": 18, "isInternal": false, - "x": 251.06562279898773, - "y": 726.8010406501585 + "x": 251.06562, + "y": 726.80104 }, { "body": null, "index": 19, "isInternal": false, - "x": 256.8075207528517, - "y": 728.3562653565641 + "x": 256.80752, + "y": 728.35627 }, { "body": null, "index": 20, "isInternal": false, - "x": 261.9516172401161, - "y": 731.3449105897281 + "x": 261.95162, + "y": 731.34491 }, { "body": null, "index": 21, "isInternal": false, - "x": 266.1474515573717, - "y": 735.5630467162819 + "x": 266.14745, + "y": 735.56305 }, { "body": null, "index": 22, "isInternal": false, - "x": 269.1087854234078, - "y": 740.7229140337495 + "x": 269.10879, + "y": 740.72291 }, { "body": null, "index": 23, "isInternal": false, - "x": 270.63354989776434, - "y": 746.4729757114828 + "x": 270.63355, + "y": 746.47298 }, { - "angle": 0.0018422637879341632, - "anglePrev": 0.001656964488334867, - "angularSpeed": 0.0002758975341861816, - "angularVelocity": 0.0003350539934657932, - "area": 2750.736188, + "angle": 0.00184, + "anglePrev": 0.00166, + "angularSpeed": 0.00028, + "angularVelocity": 0.00034, + "area": 2750.73619, "axes": { "#": 4835 }, "bounds": { "#": 4849 }, - "circleRadius": 29.735018004115226, + "circleRadius": 29.73502, "collisionFilter": { "#": 4852 }, @@ -43342,13 +43342,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 4817.10697868961, - "inverseInertia": 0.0002075934797429034, - "inverseMass": 0.3635390425161339, + "inertia": 4817.10698, + "inverseInertia": 0.00021, + "inverseMass": 0.36354, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.750736188, + "mass": 2.75074, "motion": 0, "parent": null, "position": { @@ -43370,7 +43370,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9128974038050197, + "speed": 2.9129, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43424,56 +43424,56 @@ } ], { - "x": -0.9705151546930528, - "y": -0.2410401097558655 + "x": -0.97052, + "y": -0.24104 }, { - "x": -0.8845501365016119, - "y": -0.46644512647789527 + "x": -0.88455, + "y": -0.46645 }, { - "x": -0.7473475826836569, - "y": -0.6644332853318643 + "x": -0.74735, + "y": -0.66443 }, { - "x": -0.5665679045708234, - "y": -0.8240150541769402 + "x": -0.56657, + "y": -0.82402 }, { - "x": -0.3528680000526815, - "y": -0.9356731130789323 + "x": -0.35287, + "y": -0.93567 }, { - "x": -0.11870230535462818, - "y": -0.9929298881106845 + "x": -0.1187, + "y": -0.99293 }, { - "x": 0.12235996889541159, - "y": -0.9924857873097801 + "x": 0.12236, + "y": -0.99249 }, { - "x": 0.3563131104193866, - "y": -0.9343666129219633 + "x": 0.35631, + "y": -0.93437 }, { - "x": 0.5696001581053965, - "y": -0.8219219305300882 + "x": 0.5696, + "y": -0.82192 }, { - "x": 0.749790627012821, - "y": -0.6616751587023056 + "x": 0.74979, + "y": -0.66168 }, { - "x": 0.8862627583380669, - "y": -0.46318281831583613 + "x": 0.88626, + "y": -0.46318 }, { - "x": 0.9713966838899327, - "y": -0.23746259184899365 + "x": 0.9714, + "y": -0.23746 }, { - "x": 0.9999983030325478, - "y": 0.0018422627458468163 + "x": 1, + "y": 0.00184 }, { "max": { @@ -43484,12 +43484,12 @@ } }, { - "x": 327.65370399864116, - "y": 799.9242396552257 + "x": 327.6537, + "y": 799.92424 }, { - "x": 268.5874582427035, - "y": 737.5414936014198 + "x": 268.58746, + "y": 737.54149 }, { "category": 1, @@ -43506,16 +43506,16 @@ "y": 0 }, { - "x": 298.12915142004533, - "y": 767.2764431420928 + "x": 298.12915, + "y": 767.27644 }, { - "x": 0.1633975397547034, - "y": 1.5094884355486253 + "x": 0.1634, + "y": 1.50949 }, { - "x": 298.1476939205133, - "y": 764.3584203409596 + "x": 298.14769, + "y": 764.35842 }, { "endCol": 6, @@ -43538,8 +43538,8 @@ "yScale": 1 }, { - "x": -0.016225221724482708, - "y": 2.9094673955888766 + "x": -0.01623, + "y": 2.90947 }, [ { @@ -43625,197 +43625,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 327.64049865927905, - "y": 770.9148169718933 + "x": 327.6405, + "y": 770.91482 }, { "body": null, "index": 1, "isInternal": false, - "x": 325.91267942086705, - "y": 777.8716456803908 + "x": 325.91268, + "y": 777.87165 }, { "body": null, "index": 2, "isInternal": false, - "x": 322.56899223351473, - "y": 784.2124964902692 + "x": 322.56899, + "y": 784.2125 }, { "body": null, "index": 3, "isInternal": false, - "x": 317.80611471730685, - "y": 789.5697311095109 + "x": 317.80611, + "y": 789.56973 }, { "body": null, "index": 4, "isInternal": false, - "x": 311.8996230338167, - "y": 793.6308566915217 + "x": 311.89962, + "y": 793.63086 }, { "body": null, "index": 5, "isInternal": false, - "x": 305.19195137668964, - "y": 796.1605036906451 + "x": 305.19195, + "y": 796.1605 }, { "body": null, "index": 6, "isInternal": false, - "x": 298.0743717372975, - "y": 797.0113926827659 + "x": 298.07437, + "y": 797.01139 }, { "body": null, "index": 7, "isInternal": false, - "x": 290.9599755279304, - "y": 796.1342846072462 + "x": 290.95998, + "y": 796.13428 }, { "body": null, "index": 8, "isInternal": false, - "x": 284.26166993460316, - "y": 793.5799402337518 + "x": 284.26167, + "y": 793.57994 }, { "body": null, "index": 9, "isInternal": false, - "x": 278.37018163891526, - "y": 789.4970796358656 + "x": 278.37018, + "y": 789.49708 }, { "body": null, "index": 10, "isInternal": false, - "x": 273.62707528649577, - "y": 784.122332466962 + "x": 273.62708, + "y": 784.12233 }, { "body": null, "index": 11, "isInternal": false, - "x": 270.3067737824392, - "y": 777.7692048181453 + "x": 270.30677, + "y": 777.7692 }, { "body": null, "index": 12, "isInternal": false, - "x": 268.6045988414495, - "y": 770.8060571484295 + "x": 268.6046, + "y": 770.80606 }, { "body": null, "index": 13, "isInternal": false, - "x": 268.6178041808116, - "y": 763.6380693122924 + "x": 268.6178, + "y": 763.63807 }, { "body": null, "index": 14, "isInternal": false, - "x": 270.3456234192236, - "y": 756.6812406037949 + "x": 270.34562, + "y": 756.68124 }, { "body": null, "index": 15, "isInternal": false, - "x": 273.68931060657593, - "y": 750.3403897939164 + "x": 273.68931, + "y": 750.34039 }, { "body": null, "index": 16, "isInternal": false, - "x": 278.45218812278387, - "y": 744.9831551746747 + "x": 278.45219, + "y": 744.98316 }, { "body": null, "index": 17, "isInternal": false, - "x": 284.3586798062741, - "y": 740.922029592664 + "x": 284.35868, + "y": 740.92203 }, { "body": null, "index": 18, "isInternal": false, - "x": 291.066351463401, - "y": 738.3923825935406 + "x": 291.06635, + "y": 738.39238 }, { "body": null, "index": 19, "isInternal": false, - "x": 298.18393110279317, - "y": 737.5414936014198 + "x": 298.18393, + "y": 737.54149 }, { "body": null, "index": 20, "isInternal": false, - "x": 305.29832731216027, - "y": 738.4186016769395 + "x": 305.29833, + "y": 738.4186 }, { "body": null, "index": 21, "isInternal": false, - "x": 311.99663290548756, - "y": 740.9729460504338 + "x": 311.99663, + "y": 740.97295 }, { "body": null, "index": 22, "isInternal": false, - "x": 317.8881212011755, - "y": 745.0558066483201 + "x": 317.88812, + "y": 745.05581 }, { "body": null, "index": 23, "isInternal": false, - "x": 322.6312275535949, - "y": 750.4305538172237 + "x": 322.63123, + "y": 750.43055 }, { "body": null, "index": 24, "isInternal": false, - "x": 325.95152905765144, - "y": 756.7836814660403 + "x": 325.95153, + "y": 756.78368 }, { "body": null, "index": 25, "isInternal": false, - "x": 327.65370399864116, - "y": 763.7468291357561 + "x": 327.6537, + "y": 763.74683 }, { - "angle": -0.003012941131509366, - "anglePrev": -0.0025575047412174537, - "angularSpeed": 0.00045543639029191254, - "angularVelocity": -0.00045543639029191254, - "area": 2596.145458000001, + "angle": -0.00301, + "anglePrev": -0.00256, + "angularSpeed": 0.00046, + "angularVelocity": -0.00046, + "area": 2596.14546, "axes": { "#": 4890 }, "bounds": { "#": 4904 }, - "circleRadius": 28.88715277777778, + "circleRadius": 28.88715, "collisionFilter": { "#": 4907 }, @@ -43830,13 +43830,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 4290.880825641059, - "inverseInertia": 0.00023305238263069205, - "inverseMass": 0.38518642971968625, + "inertia": 4290.88083, + "inverseInertia": 0.00023, + "inverseMass": 0.38519, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.596145458000001, + "mass": 2.59615, "motion": 0, "parent": null, "position": { @@ -43858,7 +43858,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.914072697712416, + "speed": 2.91407, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43912,56 +43912,56 @@ } ], { - "x": -0.9716480155521687, - "y": -0.2364320914629249 + "x": -0.97165, + "y": -0.23643 }, { - "x": -0.8868619669832927, - "y": -0.4620344700544806 + "x": -0.88686, + "y": -0.46203 }, { - "x": -0.7504647397426781, - "y": -0.6609104889491123 + "x": -0.75046, + "y": -0.66091 }, { - "x": -0.5705588798360346, - "y": -0.8212566983837937 + "x": -0.57056, + "y": -0.82126 }, { - "x": -0.35746106587587473, - "y": -0.9339280413302105 + "x": -0.35746, + "y": -0.93393 }, { - "x": -0.12347190742279347, - "y": -0.9923480680070765 + "x": -0.12347, + "y": -0.99235 }, { - "x": 0.11748992928652546, - "y": -0.9930740740328727 + "x": 0.11749, + "y": -0.99307 }, { - "x": 0.35182686960432796, - "y": -0.936065090591685 + "x": 0.35183, + "y": -0.93607 }, { - "x": 0.5655997547895778, - "y": -0.8246798878243421 + "x": 0.5656, + "y": -0.82468 }, { - "x": 0.7464685699340396, - "y": -0.6654206745365143 + "x": 0.74647, + "y": -0.66542 }, { - "x": 0.884061717026979, - "y": -0.4673701750083219 + "x": 0.88406, + "y": -0.46737 }, { - "x": 0.9702056714009321, - "y": -0.24228280001161157 + "x": 0.97021, + "y": -0.24228 }, { - "x": 0.9999954610963026, - "y": -0.0030129365730247725 + "x": 1, + "y": -0.00301 }, { "max": { @@ -43972,12 +43972,12 @@ } }, { - "x": 391.1001937583774, - "y": 793.0383796814848 + "x": 391.10019, + "y": 793.03838 }, { - "x": 333.72012082492085, - "y": 732.3505741276247 + "x": 333.72012, + "y": 732.35057 }, { "category": 1, @@ -43994,16 +43994,16 @@ "y": 0 }, { - "x": 362.41283287537135, - "y": 761.2374430123134 + "x": 362.41283, + "y": 761.23744 }, { - "x": 0.14161553438267988, - "y": 1.0462070395631842 + "x": 0.14162, + "y": 1.04621 }, { - "x": 362.4181840428158, - "y": 758.3233752278308 + "x": 362.41818, + "y": 758.32338 }, { "endCol": 8, @@ -44026,8 +44026,8 @@ "yScale": 1 }, { - "x": -0.005351167444454745, - "y": 2.9140677844826977 + "x": -0.00535, + "y": 2.91407 }, [ { @@ -44113,197 +44113,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.1001937583774, - "y": 764.6330252257461 + "x": 391.10019, + "y": 764.63303 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.4535748018365, - "y": 771.4000170989465 + "x": 389.45357, + "y": 771.40002 }, { "body": null, "index": 2, "isInternal": false, - "x": 386.23616725663817, - "y": 777.5757389748167 + "x": 386.23617, + "y": 777.57574 }, { "body": null, "index": 3, "isInternal": false, - "x": 381.633891642714, - "y": 782.8016290591448 + "x": 381.63389, + "y": 782.80163 }, { "body": null, "index": 4, "isInternal": false, - "x": 375.914836832254, - "y": 786.7748782427417 + "x": 375.91484, + "y": 786.77488 }, { "body": null, "index": 5, "isInternal": false, - "x": 369.41030834293036, - "y": 789.2644872746132 + "x": 369.41031, + "y": 789.26449 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.49986757415627, - "y": 790.1243118970021 + "x": 362.49987, + "y": 790.12431 }, { "body": null, "index": 7, "isInternal": false, - "x": 355.5843710978128, - "y": 789.3061441356717 + "x": 355.58437, + "y": 789.30614 }, { "body": null, "index": 8, "isInternal": false, - "x": 349.0649587018183, - "y": 786.8557755897275 + "x": 349.06496, + "y": 786.85578 }, { "body": null, "index": 9, "isInternal": false, - "x": 343.3220655371925, - "y": 782.9170606851305 + "x": 343.32207, + "y": 782.91706 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.6883830724312, - "y": 777.7189980829908 + "x": 338.68838, + "y": 777.719 }, { "body": null, "index": 11, "isInternal": false, - "x": 335.4338199934144, - "y": 771.5627759326215 + "x": 335.43382, + "y": 771.56278 }, { "body": null, "index": 12, "isInternal": false, - "x": 333.74645408265997, - "y": 764.8058291899553 + "x": 333.74645, + "y": 764.80583 }, { "body": null, "index": 13, "isInternal": false, - "x": 333.7254719923653, - "y": 757.8418607988807 + "x": 333.72547, + "y": 757.84186 }, { "body": null, "index": 14, "isInternal": false, - "x": 335.3720909489062, - "y": 751.0748689256803 + "x": 335.37209, + "y": 751.07487 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.58949849410453, - "y": 744.8991470498102 + "x": 338.5895, + "y": 744.89915 }, { "body": null, "index": 16, "isInternal": false, - "x": 343.1917741080287, - "y": 739.673256965482 + "x": 343.19177, + "y": 739.67326 }, { "body": null, "index": 17, "isInternal": false, - "x": 348.9108289184887, - "y": 735.7000077818851 + "x": 348.91083, + "y": 735.70001 }, { "body": null, "index": 18, "isInternal": false, - "x": 355.41535740781234, - "y": 733.2103987500136 + "x": 355.41536, + "y": 733.2104 }, { "body": null, "index": 19, "isInternal": false, - "x": 362.32579817658643, - "y": 732.3505741276247 + "x": 362.3258, + "y": 732.35057 }, { "body": null, "index": 20, "isInternal": false, - "x": 369.2412946529299, - "y": 733.1687418889551 + "x": 369.24129, + "y": 733.16874 }, { "body": null, "index": 21, "isInternal": false, - "x": 375.7607070489244, - "y": 735.6191104348993 + "x": 375.76071, + "y": 735.61911 }, { "body": null, "index": 22, "isInternal": false, - "x": 381.5036002135502, - "y": 739.5578253394963 + "x": 381.5036, + "y": 739.55783 }, { "body": null, "index": 23, "isInternal": false, - "x": 386.1372826783115, - "y": 744.755887941636 + "x": 386.13728, + "y": 744.75589 }, { "body": null, "index": 24, "isInternal": false, - "x": 389.3918457573283, - "y": 750.9121100920053 + "x": 389.39185, + "y": 750.91211 }, { "body": null, "index": 25, "isInternal": false, - "x": 391.07921166808273, - "y": 757.6690568346716 + "x": 391.07921, + "y": 757.66906 }, { - "angle": 0.002151847588661878, - "anglePrev": 0.0019339527664082694, - "angularSpeed": 0.0002178948222536089, - "angularVelocity": 0.0002178948222536089, - "area": 1840.099152, + "angle": 0.00215, + "anglePrev": 0.00193, + "angularSpeed": 0.00022, + "angularVelocity": 0.00022, + "area": 1840.09915, "axes": { "#": 4945 }, "bounds": { "#": 4959 }, - "circleRadius": 24.320151748971192, + "circleRadius": 24.32015, "collisionFilter": { "#": 4962 }, @@ -44318,13 +44318,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 2155.6133263472666, - "inverseInertia": 0.0004639050927071979, - "inverseMass": 0.5434489760582205, + "inertia": 2155.61333, + "inverseInertia": 0.00046, + "inverseMass": 0.54345, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.840099152, + "mass": 1.8401, "motion": 0, "parent": null, "position": { @@ -44346,7 +44346,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.898971110810957, + "speed": 2.89897, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44400,56 +44400,56 @@ } ], { - "x": -0.9704325326256203, - "y": -0.2413725328653287 + "x": -0.97043, + "y": -0.24137 }, { - "x": -0.884414985156402, - "y": -0.4667013327930414 + "x": -0.88441, + "y": -0.4667 }, { - "x": -0.7471087818000848, - "y": -0.6647017888927284 + "x": -0.74711, + "y": -0.6647 }, { - "x": -0.5662396166011012, - "y": -0.8242406788016701 + "x": -0.56624, + "y": -0.82424 }, { - "x": -0.3525848373332607, - "y": -0.935779852573605 + "x": -0.35258, + "y": -0.93578 }, { - "x": -0.1184547291588977, - "y": -0.9929594539254321 + "x": -0.11845, + "y": -0.99296 }, { - "x": 0.12272701378498017, - "y": -0.992440466772401 + "x": 0.12273, + "y": -0.99244 }, { - "x": 0.35660887089315807, - "y": -0.9342537734471865 + "x": 0.35661, + "y": -0.93425 }, { - "x": 0.5697816424069343, - "y": -0.8217961304216856 + "x": 0.56978, + "y": -0.8218 }, { - "x": 0.749962527966391, - "y": -0.6614803146324615 + "x": 0.74996, + "y": -0.66148 }, { - "x": 0.8864153287686698, - "y": -0.46289076997055295 + "x": 0.88642, + "y": -0.46289 }, { - "x": 0.9714623361635584, - "y": -0.2371938646247858 + "x": 0.97146, + "y": -0.23719 }, { - "x": 0.999997684776871, - "y": 0.0021518459279925195 + "x": 1, + "y": 0.00215 }, { "max": { @@ -44460,12 +44460,12 @@ } }, { - "x": 445.9489738832581, - "y": 777.5573707712225 + "x": 445.94897, + "y": 777.55737 }, { - "x": 397.63663882942177, - "y": 726.0185452751585 + "x": 397.63664, + "y": 726.01855 }, { "category": 1, @@ -44482,16 +44482,16 @@ "y": 0 }, { - "x": 421.79972271927505, - "y": 750.3384889689321 + "x": 421.79972, + "y": 750.33849 }, { - "x": -0.29065408483993527, - "y": 0.7486789556288255 + "x": -0.29065, + "y": 0.74868 }, { - "x": 421.8135554451453, - "y": 747.4395508604152 + "x": 421.81356, + "y": 747.43955 }, { "endCol": 9, @@ -44514,8 +44514,8 @@ "yScale": 1 }, { - "x": -0.013832725870272497, - "y": 2.898938108516895 + "x": -0.01383, + "y": 2.89894 }, [ { @@ -44601,197 +44601,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 445.93635976242814, - "y": 753.3214341992526 + "x": 445.93636, + "y": 753.32143 }, { "body": null, "index": 1, "isInternal": false, - "x": 444.5211125518181, - "y": 759.0114019788505 + "x": 444.52111, + "y": 759.0114 }, { "body": null, "index": 2, "isInternal": false, - "x": 441.7849486285889, - "y": 764.1965261803733 + "x": 441.78495, + "y": 764.19653 }, { "body": null, "index": 3, "isInternal": false, - "x": 437.88751317839836, - "y": 768.5771496418909 + "x": 437.88751, + "y": 768.57715 }, { "body": null, "index": 4, "isInternal": false, - "x": 433.05535870240993, - "y": 771.8967592755954 + "x": 433.05536, + "y": 771.89676 }, { "body": null, "index": 5, "isInternal": false, - "x": 427.5688977067787, - "y": 773.9639580428694 + "x": 427.5689, + "y": 773.96396 }, { "body": null, "index": 6, "isInternal": false, - "x": 421.7473898263063, - "y": 774.6584326627056 + "x": 421.74739, + "y": 774.65843 }, { "body": null, "index": 7, "isInternal": false, - "x": 415.92892465597595, - "y": 773.9389105562674 + "x": 415.92892, + "y": 773.93891 }, { "body": null, "index": 8, "isInternal": false, - "x": 410.4514110357135, - "y": 771.848118950239 + "x": 410.45141, + "y": 771.84812 }, { "body": null, "index": 9, "isInternal": false, - "x": 405.63358785360515, - "y": 768.5077440033295 + "x": 405.63359, + "y": 768.50774 }, { "body": null, "index": 10, "isInternal": false, - "x": 401.7550413069708, - "y": 764.1103877878758 + "x": 401.75504, + "y": 764.11039 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.04121784816596, - "y": 758.9135360260452 + "x": 399.04122, + "y": 758.91354 }, { "body": null, "index": 12, "isInternal": false, - "x": 397.65047155529203, - "y": 753.2175301667736 + "x": 397.65047, + "y": 753.21753 }, { "body": null, "index": 13, "isInternal": false, - "x": 397.66308567612197, - "y": 747.3555437386116 + "x": 397.66309, + "y": 747.35554 }, { "body": null, "index": 14, "isInternal": false, - "x": 399.078332886732, - "y": 741.6655759590137 + "x": 399.07833, + "y": 741.66558 }, { "body": null, "index": 15, "isInternal": false, - "x": 401.8144968099612, - "y": 736.4804517574909 + "x": 401.8145, + "y": 736.48045 }, { "body": null, "index": 16, "isInternal": false, - "x": 405.7119322601516, - "y": 732.0998282959733 + "x": 405.71193, + "y": 732.09983 }, { "body": null, "index": 17, "isInternal": false, - "x": 410.5440867361402, - "y": 728.7802186622688 + "x": 410.54409, + "y": 728.78022 }, { "body": null, "index": 18, "isInternal": false, - "x": 416.03054773177126, - "y": 726.7130198949948 + "x": 416.03055, + "y": 726.71302 }, { "body": null, "index": 19, "isInternal": false, - "x": 421.8520556122438, - "y": 726.0185452751585 + "x": 421.85206, + "y": 726.01855 }, { "body": null, "index": 20, "isInternal": false, - "x": 427.67052078257404, - "y": 726.7380673815968 + "x": 427.67052, + "y": 726.73807 }, { "body": null, "index": 21, "isInternal": false, - "x": 433.14803440283663, - "y": 728.8288589876252 + "x": 433.14803, + "y": 728.82886 }, { "body": null, "index": 22, "isInternal": false, - "x": 437.96585758494484, - "y": 732.1692339345346 + "x": 437.96586, + "y": 732.16923 }, { "body": null, "index": 23, "isInternal": false, - "x": 441.8444041315793, - "y": 736.5665901499884 + "x": 441.8444, + "y": 736.56659 }, { "body": null, "index": 24, "isInternal": false, - "x": 444.55822759038415, - "y": 741.763441911819 + "x": 444.55823, + "y": 741.76344 }, { "body": null, "index": 25, "isInternal": false, - "x": 445.9489738832581, - "y": 747.4594477710906 + "x": 445.94897, + "y": 747.45945 }, { - "angle": -0.0040962406278117315, - "anglePrev": -0.0033916429431446286, - "angularSpeed": 0.0007045976846671029, - "angularVelocity": -0.0007045976846671029, - "area": 1181.3861480000003, + "angle": -0.0041, + "anglePrev": -0.00339, + "angularSpeed": 0.0007, + "angularVelocity": -0.0007, + "area": 1181.38615, "axes": { "#": 5000 }, "bounds": { "#": 5011 }, - "circleRadius": 19.55253343621399, + "circleRadius": 19.55253, "collisionFilter": { "#": 5014 }, @@ -44806,13 +44806,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 888.5618284630193, - "inverseInertia": 0.0011254140882123417, - "inverseMass": 0.8464632852627622, + "inertia": 888.56183, + "inverseInertia": 0.00113, + "inverseMass": 0.84646, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1813861480000003, + "mass": 1.18139, "motion": 0, "parent": null, "position": { @@ -44834,7 +44834,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9009405418465968, + "speed": 2.90094, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44879,44 +44879,44 @@ } ], { - "x": -0.9522850604629628, - "y": -0.30521003197642604 + "x": -0.95229, + "y": -0.30521 }, { - "x": -0.8114688461746105, - "y": -0.5843956807575208 + "x": -0.81147, + "y": -0.5844 }, { - "x": -0.5910239384453947, - "y": -0.8066540176460378 + "x": -0.59102, + "y": -0.80665 }, { - "x": -0.3130012799198648, - "y": -0.9497527040069568 + "x": -0.313, + "y": -0.94975 }, { - "x": -0.004096229172556569, - "y": -0.9999916104180904 + "x": -0.0041, + "y": -0.99999 }, { - "x": 0.30521003197642604, - "y": -0.9522850604629628 + "x": 0.30521, + "y": -0.95229 }, { - "x": 0.5843956807575208, - "y": -0.8114688461746105 + "x": 0.5844, + "y": -0.81147 }, { - "x": 0.8066540176460378, - "y": -0.5910239384453947 + "x": 0.80665, + "y": -0.59102 }, { - "x": 0.9497527040069568, - "y": -0.3130012799198648 + "x": 0.94975, + "y": -0.313 }, { - "x": 0.9999916104180904, - "y": -0.004096229172556569 + "x": 0.99999, + "y": -0.0041 }, { "max": { @@ -44927,12 +44927,12 @@ } }, { - "x": 517.2268888983906, - "y": 808.5931953181241 + "x": 517.22689, + "y": 808.5932 }, { - "x": 478.57176949120304, - "y": 767.0435251071198 + "x": 478.57177, + "y": 767.04353 }, { "category": 1, @@ -44949,16 +44949,16 @@ "y": 0 }, { - "x": 497.90252055295736, - "y": 786.3678934525528 + "x": 497.90252, + "y": 786.36789 }, { - "x": 0.08800862995473996, - "y": 1.3413827777401006 + "x": 0.08801, + "y": 1.34138 }, { - "x": 497.9089032692786, - "y": 783.4669599324146 + "x": 497.9089, + "y": 783.46696 }, { "endCol": 10, @@ -44981,8 +44981,8 @@ "yScale": 1 }, { - "x": -0.006382716321220982, - "y": 2.900933520138231 + "x": -0.00638, + "y": 2.90093 }, [ { @@ -45050,155 +45050,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 517.2268888983906, - "y": 789.3477614110412 + "x": 517.22689, + "y": 789.34776 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.3597366244156, - "y": 795.1734585698191 + "x": 515.35974, + "y": 795.17346 }, { "body": null, "index": 2, "isInternal": false, - "x": 511.78503902313764, - "y": 800.1371429936538 + "x": 511.78504, + "y": 800.13714 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.8508064870538, - "y": 803.7523850712818 + "x": 506.85081, + "y": 803.75239 }, { "body": null, "index": 4, "isInternal": false, - "x": 501.0406012670068, - "y": 805.6672010679081 + "x": 501.0406, + "y": 805.6672 }, { "body": null, "index": 5, "isInternal": false, - "x": 494.92265259446873, - "y": 805.6922617979859 + "x": 494.92265, + "y": 805.69226 }, { "body": null, "index": 6, "isInternal": false, - "x": 489.0969554356911, - "y": 803.8251095240112 + "x": 489.09696, + "y": 803.82511 }, { "body": null, "index": 7, "isInternal": false, - "x": 484.1332710118566, - "y": 800.2504119227332 + "x": 484.13327, + "y": 800.25041 }, { "body": null, "index": 8, "isInternal": false, - "x": 480.51802893422854, - "y": 795.3161793866494 + "x": 480.51803, + "y": 795.31618 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.60321293760205, - "y": 789.5059741666022 + "x": 478.60321, + "y": 789.50597 }, { "body": null, "index": 10, "isInternal": false, - "x": 478.5781522075243, - "y": 783.3880254940644 + "x": 478.57815, + "y": 783.38803 }, { "body": null, "index": 11, "isInternal": false, - "x": 480.4453044814991, - "y": 777.5623283352866 + "x": 480.4453, + "y": 777.56233 }, { "body": null, "index": 12, "isInternal": false, - "x": 484.02000208277707, - "y": 772.5986439114519 + "x": 484.02, + "y": 772.59864 }, { "body": null, "index": 13, "isInternal": false, - "x": 488.95423461886094, - "y": 768.9834018338239 + "x": 488.95423, + "y": 768.9834 }, { "body": null, "index": 14, "isInternal": false, - "x": 494.7644398389079, - "y": 767.0685858371976 + "x": 494.76444, + "y": 767.06859 }, { "body": null, "index": 15, "isInternal": false, - "x": 500.882388511446, - "y": 767.0435251071198 + "x": 500.88239, + "y": 767.04353 }, { "body": null, "index": 16, "isInternal": false, - "x": 506.7080856702236, - "y": 768.9106773810945 + "x": 506.70809, + "y": 768.91068 }, { "body": null, "index": 17, "isInternal": false, - "x": 511.6717700940581, - "y": 772.4853749823725 + "x": 511.67177, + "y": 772.48537 }, { "body": null, "index": 18, "isInternal": false, - "x": 515.2870121716863, - "y": 777.4196075184562 + "x": 515.28701, + "y": 777.41961 }, { "body": null, "index": 19, "isInternal": false, - "x": 517.2018281683127, - "y": 783.2298127385035 + "x": 517.20183, + "y": 783.22981 }, { - "angle": 0.00022230801436562468, - "anglePrev": 0.00006388955464854421, - "angularSpeed": 0.00008651561939891141, - "angularVelocity": -0.00012402498943841746, - "area": 2655.1646479999995, + "angle": 0.00022, + "anglePrev": 0.00006, + "angularSpeed": 0.00009, + "angularVelocity": -0.00012, + "area": 2655.16465, "axes": { "#": 5046 }, "bounds": { "#": 5060 }, - "circleRadius": 29.213927469135804, + "circleRadius": 29.21393, "collisionFilter": { "#": 5063 }, @@ -45213,13 +45213,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 4488.190926884284, - "inverseInertia": 0.00022280692071498018, - "inverseMass": 0.3766244781668245, + "inertia": 4488.19093, + "inverseInertia": 0.00022, + "inverseMass": 0.37662, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.6551646479999995, + "mass": 2.65516, "motion": 0, "parent": null, "position": { @@ -45241,7 +45241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9134523218916892, + "speed": 2.91345, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45295,56 +45295,56 @@ } ], { - "x": -0.9708692909877839, - "y": -0.23960972396144134 + "x": -0.97087, + "y": -0.23961 }, { - "x": -0.8854056057161498, - "y": -0.4648192265455657 + "x": -0.88541, + "y": -0.46482 }, { - "x": -0.7483340201197142, - "y": -0.6633220894342864 + "x": -0.74833, + "y": -0.66332 }, { - "x": -0.5679115992408654, - "y": -0.8230895549377857 + "x": -0.56791, + "y": -0.82309 }, { - "x": -0.35435218724470874, - "y": -0.9351120400224193 + "x": -0.35435, + "y": -0.93511 }, { - "x": -0.12033542970909178, - "y": -0.992733289638626 + "x": -0.12034, + "y": -0.99273 }, { - "x": 0.12077680293321877, - "y": -0.9926796884560649 + "x": 0.12078, + "y": -0.99268 }, { - "x": 0.3547679180078896, - "y": -0.9349543969372771 + "x": 0.35477, + "y": -0.93495 }, { - "x": 0.5682775019046641, - "y": -0.8228369709906053 + "x": 0.56828, + "y": -0.82284 }, { - "x": 0.748628869776561, - "y": -0.6629893025811723 + "x": 0.74863, + "y": -0.66299 }, { - "x": 0.8856121842729259, - "y": -0.4644255150907812 + "x": 0.88561, + "y": -0.46443 }, { - "x": 0.9709757293458108, - "y": -0.23917803624365377 + "x": 0.97098, + "y": -0.23918 }, { - "x": 0.9999999752895734, - "y": 0.00022230801253451607 + "x": 1, + "y": 0.00022 }, { "max": { @@ -45355,12 +45355,12 @@ } }, { - "x": 569.0997141629092, - "y": 788.8363551902453 + "x": 569.09971, + "y": 788.83636 }, { - "x": 511.09291161972703, - "y": 727.4949061120232 + "x": 511.09291, + "y": 727.49491 }, { "category": 1, @@ -45377,16 +45377,16 @@ "y": 0 }, { - "x": 540.0979321330242, - "y": 756.7089053901326 + "x": 540.09793, + "y": 756.70891 }, { - "x": -0.18540045960030926, - "y": 0.24256349057251755 + "x": -0.1854, + "y": 0.24256 }, { - "x": 540.1054034995924, - "y": 753.7961026256254 + "x": 540.1054, + "y": 753.7961 }, { "endCol": 11, @@ -45409,8 +45409,8 @@ "yScale": 1 }, { - "x": 0.008859715687322023, - "y": 2.909658465172811 + "x": 0.00886, + "y": 2.90966 }, [ { @@ -45496,197 +45496,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 569.0981486698848, - "y": 760.2363524577985 + "x": 569.09815, + "y": 760.23635 }, { "body": null, "index": 1, "isInternal": false, - "x": 567.410628569357, - "y": 767.0739774775197 + "x": 567.41063, + "y": 767.07398 }, { "body": null, "index": 2, "isInternal": false, - "x": 564.1372423374434, - "y": 773.3092499316083 + "x": 564.13724, + "y": 773.30925 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.4650704450236, - "y": 778.5802114006085 + "x": 559.46507, + "y": 778.58021 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.6681811338873, - "y": 782.5799228045015 + "x": 553.66818, + "y": 782.57992 }, { "body": null, "index": 5, "isInternal": false, - "x": 547.082626193498, - "y": 785.075458844537 + "x": 547.08263, + "y": 785.07546 }, { "body": null, "index": 6, "isInternal": false, - "x": 540.091437626746, - "y": 785.922904668242 + "x": 540.09144, + "y": 785.9229 }, { "body": null, "index": 7, "isInternal": false, - "x": 533.1006265389994, - "y": 785.0723505339058 + "x": 533.10063, + "y": 785.07235 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5161818048247, - "y": 782.5738866973451 + "x": 526.51618, + "y": 782.57389 }, { "body": null, "index": 9, "isInternal": false, - "x": 520.7210714024044, - "y": 778.5715982989709 + "x": 520.72107, + "y": 778.5716 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.051243525669, - "y": 773.2985600285176 + "x": 516.05124, + "y": 773.29856 }, { "body": null, "index": 11, "isInternal": false, - "x": 512.7806299192874, - "y": 767.061832790795 + "x": 512.78063, + "y": 767.06183 }, { "body": null, "index": 12, "isInternal": false, - "x": 511.096150103139, - "y": 760.2234581484555 + "x": 511.09615, + "y": 760.22346 }, { "body": null, "index": 13, "isInternal": false, - "x": 511.09771559616325, - "y": 753.1814583224667 + "x": 511.09772, + "y": 753.18146 }, { "body": null, "index": 14, "isInternal": false, - "x": 512.7852356966913, - "y": 746.3438333027455 + "x": 512.78524, + "y": 746.34383 }, { "body": null, "index": 15, "isInternal": false, - "x": 516.0586219286051, - "y": 740.1085608486569 + "x": 516.05862, + "y": 740.10856 }, { "body": null, "index": 16, "isInternal": false, - "x": 520.7307938210247, - "y": 734.8375993796567 + "x": 520.73079, + "y": 734.8376 }, { "body": null, "index": 17, "isInternal": false, - "x": 526.5276831321611, - "y": 730.8378879757637 + "x": 526.52768, + "y": 730.83789 }, { "body": null, "index": 18, "isInternal": false, - "x": 533.1132380725504, - "y": 728.3423519357282 + "x": 533.11324, + "y": 728.34235 }, { "body": null, "index": 19, "isInternal": false, - "x": 540.1044266393023, - "y": 727.4949061120232 + "x": 540.10443, + "y": 727.49491 }, { "body": null, "index": 20, "isInternal": false, - "x": 547.0952377270489, - "y": 728.3454602463594 + "x": 547.09524, + "y": 728.34546 }, { "body": null, "index": 21, "isInternal": false, - "x": 553.6796824612237, - "y": 730.8439240829201 + "x": 553.67968, + "y": 730.84392 }, { "body": null, "index": 22, "isInternal": false, - "x": 559.4747928636439, - "y": 734.8462124812943 + "x": 559.47479, + "y": 734.84621 }, { "body": null, "index": 23, "isInternal": false, - "x": 564.1446207403795, - "y": 740.1192507517476 + "x": 564.14462, + "y": 740.11925 }, { "body": null, "index": 24, "isInternal": false, - "x": 567.4152343467608, - "y": 746.3559779894701 + "x": 567.41523, + "y": 746.35598 }, { "body": null, "index": 25, "isInternal": false, - "x": 569.0997141629092, - "y": 753.1943526318097 + "x": 569.09971, + "y": 753.19435 }, { - "angle": 0.00042233649362665685, - "anglePrev": 0.00039099920552478084, - "angularSpeed": 0.00017876015670558447, - "angularVelocity": 0.00038171794874380813, - "area": 2056.753882, + "angle": 0.00042, + "anglePrev": 0.00039, + "angularSpeed": 0.00018, + "angularVelocity": 0.00038, + "area": 2056.75388, "axes": { "#": 5101 }, "bounds": { "#": 5115 }, - "circleRadius": 25.711741255144034, + "circleRadius": 25.71174, "collisionFilter": { "#": 5118 }, @@ -45701,13 +45701,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 2693.1036021662526, - "inverseInertia": 0.0003713188008050005, - "inverseMass": 0.48620304488138066, + "inertia": 2693.1036, + "inverseInertia": 0.00037, + "inverseMass": 0.4862, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.056753882, + "mass": 2.05675, "motion": 0, "parent": null, "position": { @@ -45729,7 +45729,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8958004558217767, + "speed": 2.8958, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45783,56 +45783,56 @@ } ], { - "x": -0.9708613165210472, - "y": -0.23964203321416427 + "x": -0.97086, + "y": -0.23964 }, { - "x": -0.8852147978545678, - "y": -0.46518250360401237 + "x": -0.88521, + "y": -0.46518 }, { - "x": -0.7482851998126709, - "y": -0.6633771625111247 + "x": -0.74829, + "y": -0.66338 }, { - "x": -0.5677208280261077, - "y": -0.8232211497680021 + "x": -0.56772, + "y": -0.82322 }, { - "x": -0.35419122308950945, - "y": -0.9351730200804326 + "x": -0.35419, + "y": -0.93517 }, { - "x": -0.12010000754087731, - "y": -0.9927617983125063 + "x": -0.1201, + "y": -0.99276 }, { - "x": 0.12093852367095297, - "y": -0.9926599989383529 + "x": 0.12094, + "y": -0.99266 }, { - "x": 0.3549810120312156, - "y": -0.9348735107474667 + "x": 0.35498, + "y": -0.93487 }, { - "x": 0.5684159780845919, - "y": -0.8227413177044999 + "x": 0.56842, + "y": -0.82274 }, { - "x": 0.7488452695751505, - "y": -0.6627448696405882 + "x": 0.74885, + "y": -0.66274 }, { - "x": 0.8856074091146121, - "y": -0.46443462071781855 + "x": 0.88561, + "y": -0.46443 }, { - "x": 0.9710633893076611, - "y": -0.23882188749425504 + "x": 0.97106, + "y": -0.23882 }, { - "x": 0.9999999108159444, - "y": 0.0004223364810714297 + "x": 1, + "y": 0.00042 }, { "max": { @@ -45843,12 +45843,12 @@ } }, { - "x": 618.1690399672592, - "y": 767.01599239962 + "x": 618.16904, + "y": 767.01599 }, { - "x": 567.1169269873783, - "y": 712.6961969184364 + "x": 567.11693, + "y": 712.6962 }, { "category": 1, @@ -45865,16 +45865,16 @@ "y": 0 }, { - "x": 592.6437334228382, - "y": 738.4081946253359 + "x": 592.64373, + "y": 738.40819 }, { - "x": -0.1691674188568122, - "y": 0.4818859428357442 + "x": -0.16917, + "y": 0.48189 }, { - "x": 592.6487041075397, - "y": 735.5190128427348 + "x": 592.6487, + "y": 735.51901 }, { "endCol": 12, @@ -45897,8 +45897,8 @@ "yScale": 1 }, { - "x": 0.0032783677556835755, - "y": 2.9049114927656774 + "x": 0.00328, + "y": 2.90491 }, [ { @@ -45984,197 +45984,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 618.1664223257494, - "y": 741.5179740652974 + "x": 618.16642, + "y": 741.51797 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.6808804147299, - "y": 747.5363472034973 + "x": 616.68088, + "y": 747.53635 }, { "body": null, "index": 2, "isInternal": false, - "x": 613.7975628890609, - "y": 753.023129962653 + "x": 613.79756, + "y": 753.02313 }, { "body": null, "index": 3, "isInternal": false, - "x": 609.6856036143353, - "y": 757.6613937459017 + "x": 609.6856, + "y": 757.66139 }, { "body": null, "index": 4, "isInternal": false, - "x": 604.5831170225134, - "y": 761.1802390934948 + "x": 604.58312, + "y": 761.18024 }, { "body": null, "index": 5, "isInternal": false, - "x": 598.7861892438387, - "y": 763.3757910352241 + "x": 598.78619, + "y": 763.37579 }, { "body": null, "index": 6, "isInternal": false, - "x": 592.6328743072368, - "y": 764.1201923322354 + "x": 592.63287, + "y": 764.12019 }, { "body": null, "index": 7, "isInternal": false, - "x": 586.4801903413376, - "y": 763.370593762488 + "x": 586.48019, + "y": 763.37059 }, { "body": null, "index": 8, "isInternal": false, - "x": 580.6851191538339, - "y": 761.1701460962703 + "x": 580.68512, + "y": 761.17015 }, { "body": null, "index": 9, "isInternal": false, - "x": 575.5856066555115, - "y": 757.6469920718972 + "x": 575.58561, + "y": 757.64699 }, { "body": null, "index": 10, "isInternal": false, - "x": 571.4775666633303, - "y": 753.0052566827741 + "x": 571.47757, + "y": 753.00526 }, { "body": null, "index": 11, "isInternal": false, - "x": 568.5988847028776, - "y": 747.5160404208143 + "x": 568.59888, + "y": 747.51604 }, { "body": null, "index": 12, "isInternal": false, - "x": 567.1184268784172, - "y": 741.4964146326118 + "x": 567.11843, + "y": 741.49641 }, { "body": null, "index": 13, "isInternal": false, - "x": 567.121044519927, - "y": 735.2984151853744 + "x": 567.12104, + "y": 735.29842 }, { "body": null, "index": 14, "isInternal": false, - "x": 568.6065864309464, - "y": 729.2800420471746 + "x": 568.60659, + "y": 729.28004 }, { "body": null, "index": 15, "isInternal": false, - "x": 571.4899039566154, - "y": 723.7932592880188 + "x": 571.4899, + "y": 723.79326 }, { "body": null, "index": 16, "isInternal": false, - "x": 575.6018632313411, - "y": 719.1549955047701 + "x": 575.60186, + "y": 719.155 }, { "body": null, "index": 17, "isInternal": false, - "x": 580.7043498231629, - "y": 715.636150157177 + "x": 580.70435, + "y": 715.63615 }, { "body": null, "index": 18, "isInternal": false, - "x": 586.5012776018376, - "y": 713.4405982154477 + "x": 586.50128, + "y": 713.4406 }, { "body": null, "index": 19, "isInternal": false, - "x": 592.6545925384396, - "y": 712.6961969184364 + "x": 592.65459, + "y": 712.6962 }, { "body": null, "index": 20, "isInternal": false, - "x": 598.8072765043388, - "y": 713.4457954881838 + "x": 598.80728, + "y": 713.4458 }, { "body": null, "index": 21, "isInternal": false, - "x": 604.6023476918425, - "y": 715.6462431544015 + "x": 604.60235, + "y": 715.64624 }, { "body": null, "index": 22, "isInternal": false, - "x": 609.7018601901649, - "y": 719.1693971787746 + "x": 609.70186, + "y": 719.1694 }, { "body": null, "index": 23, "isInternal": false, - "x": 613.809900182346, - "y": 723.8111325678977 + "x": 613.8099, + "y": 723.81113 }, { "body": null, "index": 24, "isInternal": false, - "x": 616.6885821427987, - "y": 729.3003488298575 + "x": 616.68858, + "y": 729.30035 }, { "body": null, "index": 25, "isInternal": false, - "x": 618.1690399672592, - "y": 735.31997461806 + "x": 618.16904, + "y": 735.31997 }, { - "angle": 0.0005412727273293918, - "anglePrev": 0.0004662598270653163, - "angularSpeed": 0.00007501290026407548, - "angularVelocity": 0.00007501290026407548, - "area": 773.7538339999998, + "angle": 0.00054, + "anglePrev": 0.00047, + "angularSpeed": 0.00008, + "angularVelocity": 0.00008, + "area": 773.75383, "axes": { "#": 5156 }, "bounds": { "#": 5165 }, - "circleRadius": 15.897826646090534, + "circleRadius": 15.89783, "collisionFilter": { "#": 5168 }, @@ -46189,13 +46189,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 381.1923679213431, - "inverseInertia": 0.0026233473808855074, - "inverseMass": 1.2924007042787724, + "inertia": 381.19237, + "inverseInertia": 0.00262, + "inverseMass": 1.2924, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7737538339999998, + "mass": 0.77375, "motion": 0, "parent": null, "position": { @@ -46217,7 +46217,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9073918862764923, + "speed": 2.90739, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46256,36 +46256,36 @@ } ], { - "x": -0.9236975867908777, - "y": -0.38312239318096447 + "x": -0.9237, + "y": -0.38312 }, { - "x": -0.7067239400065565, - "y": -0.7074894152011109 + "x": -0.70672, + "y": -0.70749 }, { - "x": -0.382122224260774, - "y": -0.9241117928724852 + "x": -0.38212, + "y": -0.92411 }, { - "x": 0.0005412727008993908, - "y": -0.9999998535119209 + "x": 0.00054, + "y": -1 }, { - "x": 0.38312239318096447, - "y": -0.9236975867908777 + "x": 0.38312, + "y": -0.9237 }, { - "x": 0.7074894152011109, - "y": -0.7067239400065565 + "x": 0.70749, + "y": -0.70672 }, { - "x": 0.9241117928724852, - "y": -0.382122224260774 + "x": 0.92411, + "y": -0.38212 }, { - "x": 0.9999998535119209, - "y": 0.0005412727008993908 + "x": 1, + "y": 0.00054 }, { "max": { @@ -46296,12 +46296,12 @@ } }, { - "x": 716.870061955068, - "y": 717.0032445251962 + "x": 716.87006, + "y": 717.00324 }, { - "x": 685.6660015752835, - "y": 682.9085471533904 + "x": 685.666, + "y": 682.90855 }, { "category": 1, @@ -46318,16 +46318,16 @@ "y": 0 }, { - "x": 701.2596783191594, - "y": 698.5022238972664 + "x": 701.25968, + "y": 698.50222 }, { - "x": 2.11686329612025, - "y": 0.00927095289191408 + "x": 2.11686, + "y": 0.00927 }, { - "x": 701.2429714271268, - "y": 695.5948800132126 + "x": 701.24297, + "y": 695.59488 }, { "endCol": 14, @@ -46350,8 +46350,8 @@ "yScale": 1 }, { - "x": 0.016706892032660788, - "y": 2.907343884053792 + "x": 0.01671, + "y": 2.90734 }, [ { @@ -46407,127 +46407,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 716.8499970071991, - "y": 701.6126629668126 + "x": 716.85, + "y": 701.61266 }, { "body": null, "index": 1, "isInternal": false, - "x": 714.4738958622393, - "y": 707.3413776873169 + "x": 714.4739, + "y": 707.34138 }, { "body": null, "index": 2, "isInternal": false, - "x": 710.0845219415435, - "y": 711.726002481335 + "x": 710.08452, + "y": 711.726 }, { "body": null, "index": 3, "isInternal": false, - "x": 704.3532383408009, - "y": 714.0959006411424 + "x": 704.35324, + "y": 714.0959 }, { "body": null, "index": 4, "isInternal": false, - "x": 698.1492392496132, - "y": 714.0925425853061 + "x": 698.14924, + "y": 714.09254 }, { "body": null, "index": 5, "isInternal": false, - "x": 692.420524529109, - "y": 711.7164414403462 + "x": 692.42052, + "y": 711.71644 }, { "body": null, "index": 6, "isInternal": false, - "x": 688.0358997350909, - "y": 707.3270675196504 + "x": 688.0359, + "y": 707.32707 }, { "body": null, "index": 7, "isInternal": false, - "x": 685.6660015752835, - "y": 701.5957839189078 + "x": 685.666, + "y": 701.59578 }, { "body": null, "index": 8, "isInternal": false, - "x": 685.6693596311197, - "y": 695.3917848277201 + "x": 685.66936, + "y": 695.39178 }, { "body": null, "index": 9, "isInternal": false, - "x": 688.0454607760796, - "y": 689.6630701072158 + "x": 688.04546, + "y": 689.66307 }, { "body": null, "index": 10, "isInternal": false, - "x": 692.4348346967754, - "y": 685.2784453131978 + "x": 692.43483, + "y": 685.27845 }, { "body": null, "index": 11, "isInternal": false, - "x": 698.166118297518, - "y": 682.9085471533904 + "x": 698.16612, + "y": 682.90855 }, { "body": null, "index": 12, "isInternal": false, - "x": 704.3701173887057, - "y": 682.9119052092267 + "x": 704.37012, + "y": 682.91191 }, { "body": null, "index": 13, "isInternal": false, - "x": 710.0988321092099, - "y": 685.2880063541866 + "x": 710.09883, + "y": 685.28801 }, { "body": null, "index": 14, "isInternal": false, - "x": 714.483456903228, - "y": 689.6773802748824 + "x": 714.48346, + "y": 689.67738 }, { "body": null, "index": 15, "isInternal": false, - "x": 716.8533550630353, - "y": 695.4086638756249 + "x": 716.85336, + "y": 695.40866 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1605.3869300000001, + "area": 1605.38693, "axes": { "#": 5196 }, "bounds": { "#": 5209 }, - "circleRadius": 22.735146604938272, + "circleRadius": 22.73515, "collisionFilter": { "#": 5212 }, @@ -46542,13 +46542,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 105, - "inertia": 1640.7824271648174, - "inverseInertia": 0.0006094653279094082, - "inverseMass": 0.6229027914161478, + "inertia": 1640.78243, + "inverseInertia": 0.00061, + "inverseMass": 0.6229, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.60538693, + "mass": 1.60539, "motion": 0, "parent": null, "position": { @@ -46570,7 +46570,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46621,48 +46621,48 @@ } ], { - "x": -0.9659209717012952, - "y": -0.2588371619911359 + "x": -0.96592, + "y": -0.25884 }, { - "x": -0.8659947892090337, - "y": -0.500053022251442 + "x": -0.86599, + "y": -0.50005 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.500053022251442, - "y": -0.8659947892090337 + "x": -0.50005, + "y": -0.86599 }, { - "x": -0.2588371619911359, - "y": -0.9659209717012952 + "x": -0.25884, + "y": -0.96592 }, { "x": 0, "y": -1 }, { - "x": 0.2588371619911359, - "y": -0.9659209717012952 + "x": 0.25884, + "y": -0.96592 }, { - "x": 0.500053022251442, - "y": -0.8659947892090337 + "x": 0.50005, + "y": -0.86599 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8659947892090337, - "y": -0.500053022251442 + "x": 0.86599, + "y": -0.50005 }, { - "x": 0.9659209717012952, - "y": -0.2588371619911359 + "x": 0.96592, + "y": -0.25884 }, { "x": 1, @@ -46677,12 +46677,12 @@ } }, { - "x": 131.88367836119872, - "y": 830.2212680783623 + "x": 131.88368, + "y": 830.22127 }, { - "x": 86.80167836119873, - "y": 782.2319973633263 + "x": 86.80168, + "y": 782.232 }, { "category": 1, @@ -46699,16 +46699,16 @@ "y": 0 }, { - "x": 109.34267836119872, - "y": 804.7729973633263 + "x": 109.34268, + "y": 804.773 }, { - "x": -0.7849798364974497, - "y": 0.2693418228513162 + "x": -0.78498, + "y": 0.26934 }, { - "x": 109.34267836119872, - "y": 801.8657266482904 + "x": 109.34268, + "y": 801.86573 }, { "endCol": 2, @@ -46732,7 +46732,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -46812,183 +46812,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 131.88367836119872, - "y": 807.7409973633263 + "x": 131.88368, + "y": 807.741 }, { "body": null, "index": 1, "isInternal": false, - "x": 130.34767836119872, - "y": 813.4729973633264 + "x": 130.34768, + "y": 813.473 }, { "body": null, "index": 2, "isInternal": false, - "x": 127.37967836119873, - "y": 818.6129973633264 + "x": 127.37968, + "y": 818.613 }, { "body": null, "index": 3, "isInternal": false, - "x": 123.18267836119871, - "y": 822.8099973633264 + "x": 123.18268, + "y": 822.81 }, { "body": null, "index": 4, "isInternal": false, - "x": 118.0426783611987, - "y": 825.7779973633263 + "x": 118.04268, + "y": 825.778 }, { "body": null, "index": 5, "isInternal": false, - "x": 112.31067836119873, - "y": 827.3139973633264 + "x": 112.31068, + "y": 827.314 }, { "body": null, "index": 6, "isInternal": false, - "x": 106.37467836119872, - "y": 827.3139973633264 + "x": 106.37468, + "y": 827.314 }, { "body": null, "index": 7, "isInternal": false, - "x": 100.64267836119872, - "y": 825.7779973633263 + "x": 100.64268, + "y": 825.778 }, { "body": null, "index": 8, "isInternal": false, - "x": 95.50267836119872, - "y": 822.8099973633264 + "x": 95.50268, + "y": 822.81 }, { "body": null, "index": 9, "isInternal": false, - "x": 91.30567836119872, - "y": 818.6129973633264 + "x": 91.30568, + "y": 818.613 }, { "body": null, "index": 10, "isInternal": false, - "x": 88.33767836119873, - "y": 813.4729973633264 + "x": 88.33768, + "y": 813.473 }, { "body": null, "index": 11, "isInternal": false, - "x": 86.80167836119873, - "y": 807.7409973633263 + "x": 86.80168, + "y": 807.741 }, { "body": null, "index": 12, "isInternal": false, - "x": 86.80167836119873, - "y": 801.8049973633264 + "x": 86.80168, + "y": 801.805 }, { "body": null, "index": 13, "isInternal": false, - "x": 88.33767836119873, - "y": 796.0729973633263 + "x": 88.33768, + "y": 796.073 }, { "body": null, "index": 14, "isInternal": false, - "x": 91.30567836119872, - "y": 790.9329973633263 + "x": 91.30568, + "y": 790.933 }, { "body": null, "index": 15, "isInternal": false, - "x": 95.50267836119872, - "y": 786.7359973633263 + "x": 95.50268, + "y": 786.736 }, { "body": null, "index": 16, "isInternal": false, - "x": 100.64267836119872, - "y": 783.7679973633263 + "x": 100.64268, + "y": 783.768 }, { "body": null, "index": 17, "isInternal": false, - "x": 106.37467836119872, - "y": 782.2319973633263 + "x": 106.37468, + "y": 782.232 }, { "body": null, "index": 18, "isInternal": false, - "x": 112.31067836119873, - "y": 782.2319973633263 + "x": 112.31068, + "y": 782.232 }, { "body": null, "index": 19, "isInternal": false, - "x": 118.0426783611987, - "y": 783.7679973633263 + "x": 118.04268, + "y": 783.768 }, { "body": null, "index": 20, "isInternal": false, - "x": 123.18267836119871, - "y": 786.7359973633263 + "x": 123.18268, + "y": 786.736 }, { "body": null, "index": 21, "isInternal": false, - "x": 127.37967836119873, - "y": 790.9329973633263 + "x": 127.37968, + "y": 790.933 }, { "body": null, "index": 22, "isInternal": false, - "x": 130.34767836119872, - "y": 796.0729973633263 + "x": 130.34768, + "y": 796.073 }, { "body": null, "index": 23, "isInternal": false, - "x": 131.88367836119872, - "y": 801.8049973633264 + "x": 131.88368, + "y": 801.805 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 885.8898539999999, + "area": 885.88985, "axes": { "#": 5248 }, "bounds": { "#": 5258 }, - "circleRadius": 16.964441872427983, + "circleRadius": 16.96444, "collisionFilter": { "#": 5261 }, @@ -47003,13 +47003,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 106, - "inertia": 499.66154369180117, - "inverseInertia": 0.0020013547422749333, - "inverseMass": 1.1288085030941106, + "inertia": 499.66154, + "inverseInertia": 0.002, + "inverseMass": 1.12881, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8858898539999999, + "mass": 0.88589, "motion": 0, "parent": null, "position": { @@ -47031,7 +47031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47073,36 +47073,36 @@ } ], { - "x": -0.939689304787221, - "y": -0.3420292538197708 + "x": -0.93969, + "y": -0.34203 }, { - "x": -0.7661025820927431, - "y": -0.6427183159914085 + "x": -0.7661, + "y": -0.64272 }, { - "x": -0.4998448927833589, - "y": -0.8661149364595858 + "x": -0.49984, + "y": -0.86611 }, { - "x": -0.17364008799244365, - "y": -0.984809179405826 + "x": -0.17364, + "y": -0.98481 }, { - "x": 0.17364008799244365, - "y": -0.984809179405826 + "x": 0.17364, + "y": -0.98481 }, { - "x": 0.4998448927833589, - "y": -0.8661149364595858 + "x": 0.49984, + "y": -0.86611 }, { - "x": 0.7661025820927431, - "y": -0.6427183159914085 + "x": 0.7661, + "y": -0.64272 }, { - "x": 0.939689304787221, - "y": -0.3420292538197708 + "x": 0.93969, + "y": -0.34203 }, { "x": 1, @@ -47117,12 +47117,12 @@ } }, { - "x": 182.0614275858146, - "y": 806.9461349225381 + "x": 182.06143, + "y": 806.94613 }, { - "x": 148.64742758581463, - "y": 770.1108642075023 + "x": 148.64743, + "y": 770.11086 }, { "category": 1, @@ -47139,16 +47139,16 @@ "y": 0 }, { - "x": 165.35442758581462, - "y": 787.0748642075023 + "x": 165.35443, + "y": 787.07486 }, { - "x": -0.388469126508428, - "y": 1.3371440412859594 + "x": -0.38847, + "y": 1.33714 }, { - "x": 165.35442758581462, - "y": 784.1675934924664 + "x": 165.35443, + "y": 784.16759 }, { "endCol": 3, @@ -47172,7 +47172,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -47234,133 +47234,133 @@ "body": null, "index": 0, "isInternal": false, - "x": 182.0614275858146, - "y": 790.0208642075023 + "x": 182.06143, + "y": 790.02086 }, { "body": null, "index": 1, "isInternal": false, - "x": 180.04642758581463, - "y": 795.5568642075023 + "x": 180.04643, + "y": 795.55686 }, { "body": null, "index": 2, "isInternal": false, - "x": 176.25942758581462, - "y": 800.0708642075023 + "x": 176.25943, + "y": 800.07086 }, { "body": null, "index": 3, "isInternal": false, - "x": 171.1564275858146, - "y": 803.0158642075023 + "x": 171.15643, + "y": 803.01586 }, { "body": null, "index": 4, "isInternal": false, - "x": 165.35442758581462, - "y": 804.0388642075022 + "x": 165.35443, + "y": 804.03886 }, { "body": null, "index": 5, "isInternal": false, - "x": 159.55242758581463, - "y": 803.0158642075023 + "x": 159.55243, + "y": 803.01586 }, { "body": null, "index": 6, "isInternal": false, - "x": 154.44942758581462, - "y": 800.0708642075023 + "x": 154.44943, + "y": 800.07086 }, { "body": null, "index": 7, "isInternal": false, - "x": 150.6624275858146, - "y": 795.5568642075023 + "x": 150.66243, + "y": 795.55686 }, { "body": null, "index": 8, "isInternal": false, - "x": 148.64742758581463, - "y": 790.0208642075023 + "x": 148.64743, + "y": 790.02086 }, { "body": null, "index": 9, "isInternal": false, - "x": 148.64742758581463, - "y": 784.1288642075023 + "x": 148.64743, + "y": 784.12886 }, { "body": null, "index": 10, "isInternal": false, - "x": 150.6624275858146, - "y": 778.5928642075023 + "x": 150.66243, + "y": 778.59286 }, { "body": null, "index": 11, "isInternal": false, - "x": 154.44942758581462, - "y": 774.0788642075023 + "x": 154.44943, + "y": 774.07886 }, { "body": null, "index": 12, "isInternal": false, - "x": 159.55242758581463, - "y": 771.1338642075023 + "x": 159.55243, + "y": 771.13386 }, { "body": null, "index": 13, "isInternal": false, - "x": 165.35442758581462, - "y": 770.1108642075023 + "x": 165.35443, + "y": 770.11086 }, { "body": null, "index": 14, "isInternal": false, - "x": 171.1564275858146, - "y": 771.1338642075023 + "x": 171.15643, + "y": 771.13386 }, { "body": null, "index": 15, "isInternal": false, - "x": 176.25942758581462, - "y": 774.0788642075023 + "x": 176.25943, + "y": 774.07886 }, { "body": null, "index": 16, "isInternal": false, - "x": 180.04642758581463, - "y": 778.5928642075023 + "x": 180.04643, + "y": 778.59286 }, { "body": null, "index": 17, "isInternal": false, - "x": 182.0614275858146, - "y": 784.1288642075023 + "x": 182.06143, + "y": 784.12886 }, { - "angle": 0.0023731186013470056, - "anglePrev": 0.0019090463706773143, - "angularSpeed": 0.0004640722306696914, - "angularVelocity": 0.0004640722306696914, + "angle": 0.00237, + "anglePrev": 0.00191, + "angularSpeed": 0.00046, + "angularVelocity": 0.00046, "area": 1754.99178, "axes": { "#": 5291 @@ -47368,7 +47368,7 @@ "bounds": { "#": 5304 }, - "circleRadius": 23.770897633744855, + "circleRadius": 23.7709, "collisionFilter": { "#": 5307 }, @@ -47383,13 +47383,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 107, - "inertia": 1960.838039917572, - "inverseInertia": 0.0005099860262003267, - "inverseMass": 0.5698032386225763, + "inertia": 1960.83804, + "inverseInertia": 0.00051, + "inverseMass": 0.5698, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7549917800000001, + "mass": 1.75499, "motion": 0, "parent": null, "position": { @@ -47411,7 +47411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9090352766356746, + "speed": 2.90904, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47462,52 +47462,52 @@ } ], { - "x": -0.9652718011538012, - "y": -0.2612476792189681 + "x": -0.96527, + "y": -0.26125 }, { - "x": -0.8648840755999945, - "y": -0.5019716483762238 + "x": -0.86488, + "y": -0.50197 }, { - "x": -0.7054267434031866, - "y": -0.7087828367642486 + "x": -0.70543, + "y": -0.70878 }, { - "x": -0.49786106492371834, - "y": -0.8672568016643174 + "x": -0.49786, + "y": -0.86726 }, { - "x": -0.2566633449589714, - "y": -0.9665008677463629 + "x": -0.25666, + "y": -0.9665 }, { - "x": 0.0023731163739021677, - "y": -0.9999971841553736 + "x": 0.00237, + "y": -1 }, { - "x": 0.2612476792189681, - "y": -0.9652718011538012 + "x": 0.26125, + "y": -0.96527 }, { - "x": 0.5019716483762238, - "y": -0.8648840755999945 + "x": 0.50197, + "y": -0.86488 }, { - "x": 0.7087828367642486, - "y": -0.7054267434031866 + "x": 0.70878, + "y": -0.70543 }, { - "x": 0.8672568016643174, - "y": -0.49786106492371834 + "x": 0.86726, + "y": -0.49786 }, { - "x": 0.9665008677463629, - "y": -0.2566633449589714 + "x": 0.9665, + "y": -0.25666 }, { - "x": 0.9999971841553736, - "y": 0.0023731163739021677 + "x": 1, + "y": 0.00237 }, { "max": { @@ -47518,12 +47518,12 @@ } }, { - "x": 231.84558327445674, - "y": 838.359635968881 + "x": 231.84558, + "y": 838.35964 }, { - "x": 184.68848499133293, - "y": 788.3000131292602 + "x": 184.68848, + "y": 788.30001 }, { "category": 1, @@ -47540,16 +47540,16 @@ "y": 0 }, { - "x": 208.26378240761503, - "y": 811.8753105455421 + "x": 208.26378, + "y": 811.87531 }, { - "x": -0.7640505246035024, - "y": 0.6888461521525415 + "x": -0.76405, + "y": 0.68885 }, { - "x": 208.2572789570554, - "y": 808.9662825384852 + "x": 208.25728, + "y": 808.96628 }, { "endCol": 4, @@ -47572,8 +47572,8 @@ "yScale": 1 }, { - "x": 0.006503450559617931, - "y": 2.90902800705693 + "x": 0.0065, + "y": 2.90903 }, [ { @@ -47653,183 +47653,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 231.82435226368068, - "y": 815.0342314146762 + "x": 231.82435, + "y": 815.03423 }, { "body": null, "index": 1, "isInternal": false, - "x": 230.20313232919779, - "y": 821.0244009384908 + "x": 230.20313, + "y": 821.0244 }, { "body": null, "index": 2, "isInternal": false, - "x": 227.0883879365545, - "y": 826.39102439915 + "x": 227.08839, + "y": 826.39102 }, { "body": null, "index": 3, "isInternal": false, - "x": 222.68998705783196, - "y": 830.768598808575 + "x": 222.68999, + "y": 830.7686 }, { "body": null, "index": 4, "isInternal": false, - "x": 217.30864078318922, - "y": 833.8578369464318 + "x": 217.30864, + "y": 833.85784 }, { "body": null, "index": 5, "isInternal": false, - "x": 211.31084406334904, - "y": 835.4506079618241 + "x": 211.31084, + "y": 835.45061 }, { "body": null, "index": 6, "isInternal": false, - "x": 205.10486153848078, - "y": 835.4358804016076 + "x": 205.10486, + "y": 835.43588 }, { "body": null, "index": 7, "isInternal": false, - "x": 199.11469201466636, - "y": 833.8146604671248 + "x": 199.11469, + "y": 833.81466 }, { "body": null, "index": 8, "isInternal": false, - "x": 193.7480685540072, - "y": 830.6999160744816 + "x": 193.74807, + "y": 830.69992 }, { "body": null, "index": 9, "isInternal": false, - "x": 189.3704941445821, - "y": 826.3015151957593 + "x": 189.37049, + "y": 826.30152 }, { "body": null, "index": 10, "isInternal": false, - "x": 186.2812560067255, - "y": 820.9201689211161 + "x": 186.28126, + "y": 820.92017 }, { "body": null, "index": 11, "isInternal": false, - "x": 184.68848499133293, - "y": 814.9223722012762 + "x": 184.68848, + "y": 814.92237 }, { "body": null, "index": 12, "isInternal": false, - "x": 184.70321255154937, - "y": 808.716389676408 + "x": 184.70321, + "y": 808.71639 }, { "body": null, "index": 13, "isInternal": false, - "x": 186.32443248603226, - "y": 802.7262201525934 + "x": 186.32443, + "y": 802.72622 }, { "body": null, "index": 14, "isInternal": false, - "x": 189.43917687867554, - "y": 797.3595966919343 + "x": 189.43918, + "y": 797.3596 }, { "body": null, "index": 15, "isInternal": false, - "x": 193.8375777573981, - "y": 792.9820222825092 + "x": 193.83758, + "y": 792.98202 }, { "body": null, "index": 16, "isInternal": false, - "x": 199.21892403204083, - "y": 789.8927841446524 + "x": 199.21892, + "y": 789.89278 }, { "body": null, "index": 17, "isInternal": false, - "x": 205.216720751881, - "y": 788.3000131292602 + "x": 205.21672, + "y": 788.30001 }, { "body": null, "index": 18, "isInternal": false, - "x": 211.42270327674927, - "y": 788.3147406894766 + "x": 211.4227, + "y": 788.31474 }, { "body": null, "index": 19, "isInternal": false, - "x": 217.4128728005637, - "y": 789.9359606239594 + "x": 217.41287, + "y": 789.93596 }, { "body": null, "index": 20, "isInternal": false, - "x": 222.77949626122285, - "y": 793.0507050166026 + "x": 222.7795, + "y": 793.05071 }, { "body": null, "index": 21, "isInternal": false, - "x": 227.15707067064795, - "y": 797.4491058953249 + "x": 227.15707, + "y": 797.44911 }, { "body": null, "index": 22, "isInternal": false, - "x": 230.24630880850455, - "y": 802.8304521699681 + "x": 230.24631, + "y": 802.83045 }, { "body": null, "index": 23, "isInternal": false, - "x": 231.83907982389712, - "y": 808.828248889808 + "x": 231.83908, + "y": 808.82825 }, { - "angle": -0.00023877519690436655, - "anglePrev": -0.00005582002716617752, - "angularSpeed": 0.00018295516973818903, - "angularVelocity": -0.00018295516973818903, - "area": 2698.393094000001, + "angle": -0.00024, + "anglePrev": -0.00006, + "angularSpeed": 0.00018, + "angularVelocity": -0.00018, + "area": 2698.39309, "axes": { "#": 5343 }, "bounds": { "#": 5357 }, - "circleRadius": 29.450810185185183, + "circleRadius": 29.45081, "collisionFilter": { "#": 5360 }, @@ -47844,13 +47844,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 108, - "inertia": 4635.524094588275, - "inverseInertia": 0.000215725337544345, - "inverseMass": 0.37059092769824575, + "inertia": 4635.52409, + "inverseInertia": 0.00022, + "inverseMass": 0.37059, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.698393094000001, + "mass": 2.69839, "motion": 0, "parent": null, "position": { @@ -47872,7 +47872,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8972953935075294, + "speed": 2.8973, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47926,56 +47926,56 @@ } ], { - "x": -0.9709980138797889, - "y": -0.23908755099650308 + "x": -0.971, + "y": -0.23909 }, { - "x": -0.8856058992228356, - "y": -0.4644374998443951 + "x": -0.88561, + "y": -0.46444 }, { - "x": -0.7485847168083735, - "y": -0.6630391555262236 + "x": -0.74858, + "y": -0.66304 }, { - "x": -0.5682486770052931, - "y": -0.8228568776413882 + "x": -0.56825, + "y": -0.82286 }, { - "x": -0.3548944611440446, - "y": -0.9349063704185988 + "x": -0.35489, + "y": -0.93491 }, { - "x": -0.12080395002930974, - "y": -0.9926763851615068 + "x": -0.1208, + "y": -0.99268 }, { - "x": 0.12032988327373495, - "y": -0.9927339619411282 + "x": 0.12033, + "y": -0.99273 }, { - "x": 0.35444795578802946, - "y": -0.9350757437970934 + "x": 0.35445, + "y": -0.93508 }, { - "x": 0.5678556565984648, - "y": -0.8231281511825038 + "x": 0.56786, + "y": -0.82313 }, { - "x": 0.7482679968515666, - "y": -0.663396566834457 + "x": 0.74827, + "y": -0.6634 }, { - "x": 0.8853840059371658, - "y": -0.46486036831575184 + "x": 0.88538, + "y": -0.46486 }, { - "x": 0.9708837268098232, - "y": -0.23955122420031313 + "x": 0.97088, + "y": -0.23955 }, { - "x": 0.9999999714932029, - "y": -0.0002387751946354612 + "x": 1, + "y": -0.00024 }, { "max": { @@ -47986,12 +47986,12 @@ } }, { - "x": 299.2623093279934, - "y": 860.8071735066183 + "x": 299.26231, + "y": 860.80717 }, { - "x": 240.78615629206362, - "y": 799.0078808360614 + "x": 240.78616, + "y": 799.00788 }, { "category": 1, @@ -48008,16 +48008,16 @@ "y": 0 }, { - "x": 270.0254625094772, - "y": 828.4588799965077 + "x": 270.02546, + "y": 828.45888 }, { - "x": -1.2032549740307927, - "y": 1.0355633854772686 + "x": -1.20325, + "y": 1.03556 }, { - "x": 270.02792190837465, - "y": 825.5615856468434 + "x": 270.02792, + "y": 825.56159 }, { "endCol": 6, @@ -48040,8 +48040,8 @@ "yScale": 1 }, { - "x": -0.002459398897420897, - "y": 2.897294349664358 + "x": -0.00246, + "y": 2.89729 }, [ { @@ -48127,197 +48127,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 299.2623093279934, - "y": 832.0018990637182 + "x": 299.26231, + "y": 832.0019 }, { "body": null, "index": 1, "isInternal": false, - "x": 297.5649552538431, - "y": 838.8953045462765 + "x": 297.56496, + "y": 838.8953 }, { "body": null, "index": 2, "isInternal": false, - "x": 294.2674565275357, - "y": 845.1830920864214 + "x": 294.26746, + "y": 845.18309 }, { "body": null, "index": 3, "isInternal": false, - "x": 289.5597255131585, - "y": 850.4982163273278 + "x": 289.55973, + "y": 850.49822 }, { "body": null, "index": 4, "isInternal": false, - "x": 283.7176886600837, - "y": 854.5326113758222 + "x": 283.71769, + "y": 854.53261 }, { "body": null, "index": 5, "isInternal": false, - "x": 277.08029008525193, - "y": 857.052196293784 + "x": 277.08029, + "y": 857.0522 }, { "body": null, "index": 6, "isInternal": false, - "x": 270.0324946777344, - "y": 857.9098791569539 + "x": 270.03249, + "y": 857.90988 }, { "body": null, "index": 7, "isInternal": false, - "x": 262.9842904870837, - "y": 857.0555620689275 + "x": 262.98429, + "y": 857.05556 }, { "body": null, "index": 8, "isInternal": false, - "x": 256.34568944037176, - "y": 854.5391471304497 + "x": 256.34569, + "y": 854.53915 }, { "body": null, "index": 9, "isInternal": false, - "x": 250.50172662657704, - "y": 850.5075424088799 + "x": 250.50173, + "y": 850.50754 }, { "body": null, "index": 10, "isInternal": false, - "x": 245.79145790943127, - "y": 845.1946669527566 + "x": 245.79146, + "y": 845.19467 }, { "body": null, "index": 11, "isInternal": false, - "x": 242.49095682382654, - "y": 838.9084548513458 + "x": 242.49096, + "y": 838.90845 }, { "body": null, "index": 12, "isInternal": false, - "x": 240.79031099484297, - "y": 832.0158607268988 + "x": 240.79031, + "y": 832.01586 }, { "body": null, "index": 13, "isInternal": false, - "x": 240.78861569096105, - "y": 824.9158609292972 + "x": 240.78862, + "y": 824.91586 }, { "body": null, "index": 14, "isInternal": false, - "x": 242.48596976511138, - "y": 818.0224554467388 + "x": 242.48597, + "y": 818.02246 }, { "body": null, "index": 15, "isInternal": false, - "x": 245.78346849141877, - "y": 811.7346679065939 + "x": 245.78347, + "y": 811.73467 }, { "body": null, "index": 16, "isInternal": false, - "x": 250.49119950579595, - "y": 806.4195436656876 + "x": 250.4912, + "y": 806.41954 }, { "body": null, "index": 17, "isInternal": false, - "x": 256.33323635887075, - "y": 802.3851486171932 + "x": 256.33324, + "y": 802.38515 }, { "body": null, "index": 18, "isInternal": false, - "x": 262.9706349337025, - "y": 799.8655636992313 + "x": 262.97063, + "y": 799.86556 }, { "body": null, "index": 19, "isInternal": false, - "x": 270.01843034122004, - "y": 799.0078808360614 + "x": 270.01843, + "y": 799.00788 }, { "body": null, "index": 20, "isInternal": false, - "x": 277.06663453187076, - "y": 799.8621979240878 + "x": 277.06663, + "y": 799.8622 }, { "body": null, "index": 21, "isInternal": false, - "x": 283.7052355785827, - "y": 802.3786128625657 + "x": 283.70524, + "y": 802.37861 }, { "body": null, "index": 22, "isInternal": false, - "x": 289.54919839237743, - "y": 806.4102175841355 + "x": 289.5492, + "y": 806.41022 }, { "body": null, "index": 23, "isInternal": false, - "x": 294.2594671095232, - "y": 811.7230930402587 + "x": 294.25947, + "y": 811.72309 }, { "body": null, "index": 24, "isInternal": false, - "x": 297.55996819512796, - "y": 818.0093051416695 + "x": 297.55997, + "y": 818.00931 }, { "body": null, "index": 25, "isInternal": false, - "x": 299.26061402411153, - "y": 824.9018992661165 + "x": 299.26061, + "y": 824.9019 }, { - "angle": -0.0011267413468951707, - "anglePrev": -0.00033783702325601724, - "angularSpeed": 0.0007751053223663456, - "angularVelocity": 0.000006479703198282796, - "area": 1009.944076, + "angle": -0.00113, + "anglePrev": -0.00034, + "angularSpeed": 0.00078, + "angularVelocity": 0.00001, + "area": 1009.94408, "axes": { "#": 5398 }, "bounds": { "#": 5409 }, - "circleRadius": 18.078253600823047, + "circleRadius": 18.07825, "collisionFilter": { "#": 5412 }, @@ -48332,13 +48332,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 649.379472717892, - "inverseInertia": 0.0015399316455363644, - "inverseMass": 0.9901538350129399, + "inertia": 649.37947, + "inverseInertia": 0.00154, + "inverseMass": 0.99015, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.009944076, + "mass": 1.00994, "motion": 0, "parent": null, "position": { @@ -48360,7 +48360,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.909614293658297, + "speed": 2.90961, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48405,44 +48405,44 @@ } ], { - "x": -0.9513907882739996, - "y": -0.3079863113636352 + "x": -0.95139, + "y": -0.30799 }, { - "x": -0.8096501059505359, - "y": -0.586912860597113 + "x": -0.80965, + "y": -0.58691 }, { - "x": -0.5887359013294875, - "y": -0.8083254533204777 + "x": -0.58874, + "y": -0.80833 }, { - "x": -0.3101294702201995, - "y": -0.9506943313709925 + "x": -0.31013, + "y": -0.95069 }, { - "x": -0.0011267411084868455, - "y": -0.9999993652270356 + "x": -0.00113, + "y": -1 }, { - "x": 0.3079863113636352, - "y": -0.9513907882739996 + "x": 0.30799, + "y": -0.95139 }, { - "x": 0.586912860597113, - "y": -0.8096501059505359 + "x": 0.58691, + "y": -0.80965 }, { - "x": 0.8083254533204777, - "y": -0.5887359013294875 + "x": 0.80833, + "y": -0.58874 }, { - "x": 0.9506943313709925, - "y": -0.3101294702201995 + "x": 0.95069, + "y": -0.31013 }, { - "x": 0.9999993652270356, - "y": -0.0011267411084868455 + "x": 1, + "y": -0.00113 }, { "max": { @@ -48453,12 +48453,12 @@ } }, { - "x": 336.64007718031587, - "y": 839.711671135434 + "x": 336.64008, + "y": 839.71167 }, { - "x": 300.89066169606104, - "y": 801.0838725064882 + "x": 300.89066, + "y": 801.08387 }, { "category": 1, @@ -48475,16 +48475,16 @@ "y": 0 }, { - "x": 318.7498367854098, - "y": 818.943047595837 + "x": 318.74984, + "y": 818.94305 }, { - "x": -0.8833755847269225, - "y": 0.980856498881522 + "x": -0.88338, + "y": 0.98086 }, { - "x": 318.7260388444955, - "y": 816.038867235768 + "x": 318.72604, + "y": 816.03887 }, { "endCol": 7, @@ -48507,8 +48507,8 @@ "yScale": 1 }, { - "x": 0.0046453059032955935, - "y": 2.926055368155744 + "x": 0.00465, + "y": 2.92606 }, [ { @@ -48576,155 +48576,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.60901187475855, - "y": 821.750926711466 + "x": 336.60901, + "y": 821.75093 }, { "body": null, "index": 1, "isInternal": false, - "x": 334.8670737247642, - "y": 827.1318928404797 + "x": 334.86707, + "y": 827.13189 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.54723180269684, - "y": 831.7116363499446 + "x": 331.54723, + "y": 831.71164 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.97498112160355, - "y": 835.0417902066366 + "x": 326.97498, + "y": 835.04179 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.59795407950503, - "y": 836.7958498374761 + "x": 321.59795, + "y": 836.79585 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.94195766978083, - "y": 836.8022226851858 + "x": 315.94196, + "y": 836.80222 }, { "body": null, "index": 6, "isInternal": false, - "x": 310.560991540767, - "y": 835.0602845351915 + "x": 310.56099, + "y": 835.06028 }, { "body": null, "index": 7, "isInternal": false, - "x": 305.98124803130247, - "y": 831.7404426131241 + "x": 305.98125, + "y": 831.74044 }, { "body": null, "index": 8, "isInternal": false, - "x": 302.65109417461, - "y": 827.1681919320307 + "x": 302.65109, + "y": 827.16819 }, { "body": null, "index": 9, "isInternal": false, - "x": 300.89703454377064, - "y": 821.7911648899322 + "x": 300.89703, + "y": 821.79116 }, { "body": null, "index": 10, "isInternal": false, - "x": 300.89066169606104, - "y": 816.135168480208 + "x": 300.89066, + "y": 816.13517 }, { "body": null, "index": 11, "isInternal": false, - "x": 302.63259984605537, - "y": 810.7542023511943 + "x": 302.6326, + "y": 810.7542 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.95244176812275, - "y": 806.1744588417295 + "x": 305.95244, + "y": 806.17446 }, { "body": null, "index": 13, "isInternal": false, - "x": 310.52469244921605, - "y": 802.8443049850374 + "x": 310.52469, + "y": 802.8443 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.90171949131457, - "y": 801.0902453541979 + "x": 315.90172, + "y": 801.09025 }, { "body": null, "index": 15, "isInternal": false, - "x": 321.55771590103876, - "y": 801.0838725064882 + "x": 321.55772, + "y": 801.08387 }, { "body": null, "index": 16, "isInternal": false, - "x": 326.9386820300526, - "y": 802.8258106564825 + "x": 326.93868, + "y": 802.82581 }, { "body": null, "index": 17, "isInternal": false, - "x": 331.5184255395171, - "y": 806.14565257855 + "x": 331.51843, + "y": 806.14565 }, { "body": null, "index": 18, "isInternal": false, - "x": 334.8485793962096, - "y": 810.7179032596433 + "x": 334.84858, + "y": 810.7179 }, { "body": null, "index": 19, "isInternal": false, - "x": 336.60263902704895, - "y": 816.0949303017418 + "x": 336.60264, + "y": 816.09493 }, { - "angle": -0.0004817847197267542, - "anglePrev": -0.0011671397540455844, - "angularSpeed": 0.00021019260181551563, - "angularVelocity": -0.00038431185124576954, - "area": 1020.4002399999998, + "angle": -0.00048, + "anglePrev": -0.00117, + "angularSpeed": 0.00021, + "angularVelocity": -0.00038, + "area": 1020.40024, "axes": { "#": 5444 }, "bounds": { "#": 5455 }, - "circleRadius": 18.171746399176953, + "circleRadius": 18.17175, "collisionFilter": { "#": 5458 }, @@ -48739,13 +48739,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 110, - "inertia": 662.8954040469373, - "inverseInertia": 0.001508533614647287, - "inverseMass": 0.9800076095630869, + "inertia": 662.8954, + "inverseInertia": 0.00151, + "inverseMass": 0.98001, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0204002399999998, + "mass": 1.0204, "motion": 0, "parent": null, "position": { @@ -48767,7 +48767,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.898335352264375, + "speed": 2.89834, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48812,44 +48812,44 @@ } ], { - "x": -0.9511970677310413, - "y": -0.30858408633607354 + "x": -0.9512, + "y": -0.30858 }, { - "x": -0.8092473451132469, - "y": -0.587468070985276 + "x": -0.80925, + "y": -0.58747 }, { - "x": -0.5882475641532586, - "y": -0.8086809032416667 + "x": -0.58825, + "y": -0.80868 }, { - "x": -0.30950048736469193, - "y": -0.9508992840048931 + "x": -0.3095, + "y": -0.9509 }, { - "x": -0.0004817847010883892, - "y": -0.999999883941744 + "x": -0.00048, + "y": -1 }, { - "x": 0.30858408633607354, - "y": -0.9511970677310413 + "x": 0.30858, + "y": -0.9512 }, { - "x": 0.587468070985276, - "y": -0.8092473451132469 + "x": 0.58747, + "y": -0.80925 }, { - "x": 0.8086809032416667, - "y": -0.5882475641532586 + "x": 0.80868, + "y": -0.58825 }, { - "x": 0.9508992840048931, - "y": -0.30950048736469193 + "x": 0.9509, + "y": -0.3095 }, { - "x": 0.999999883941744, - "y": -0.0004817847010883892 + "x": 1, + "y": -0.00048 }, { "max": { @@ -48860,12 +48860,12 @@ } }, { - "x": 424.92946976312896, - "y": 824.4965537825512 + "x": 424.92947, + "y": 824.49655 }, { - "x": 389.01671867142494, - "y": 785.6995170577216 + "x": 389.01672, + "y": 785.69952 }, { "category": 1, @@ -48882,16 +48882,16 @@ "y": 0 }, { - "x": 406.9801021322374, - "y": 803.6488846886132 + "x": 406.9801, + "y": 803.64888 }, { - "x": 0.024884784026613368, - "y": 1.3533206396038429 + "x": 0.02488, + "y": 1.35332 }, { - "x": 406.99410237655513, - "y": 800.718233503027 + "x": 406.9941, + "y": 800.71823 }, { "endCol": 8, @@ -48914,8 +48914,8 @@ "yScale": 1 }, { - "x": -0.01401886026280863, - "y": 2.892011637849464 + "x": -0.01402, + "y": 2.89201 }, [ { @@ -48983,155 +48983,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 424.92946976312896, - "y": 806.4832372868445 + "x": 424.92947, + "y": 806.48324 }, { "body": null, "index": 1, "isInternal": false, - "x": 423.17507497692213, - "y": 811.8910831550372 + "x": 423.17507, + "y": 811.89108 }, { "body": null, "index": 2, "isInternal": false, - "x": 419.8352910926291, - "y": 816.4916927457565 + "x": 419.83529, + "y": 816.49169 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.23790175085213, - "y": 819.8359080857301 + "x": 415.2379, + "y": 819.83591 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.8317488740989, - "y": 821.5955128916944 + "x": 409.83175, + "y": 821.59551 }, { "body": null, "index": 5, "isInternal": false, - "x": 404.1457495340062, - "y": 821.5982523195048 + "x": 404.14575, + "y": 821.59825 }, { "body": null, "index": 6, "isInternal": false, - "x": 398.73790366581335, - "y": 819.843857533298 + "x": 398.7379, + "y": 819.84386 }, { "body": null, "index": 7, "isInternal": false, - "x": 394.1372940750943, - "y": 816.504073649005 + "x": 394.13729, + "y": 816.50407 }, { "body": null, "index": 8, "isInternal": false, - "x": 390.7930787351207, - "y": 811.9066843072278 + "x": 390.79308, + "y": 811.90668 }, { "body": null, "index": 9, "isInternal": false, - "x": 389.0334739291562, - "y": 806.5005314304747 + "x": 389.03347, + "y": 806.50053 }, { "body": null, "index": 10, "isInternal": false, - "x": 389.0307345013458, - "y": 800.8145320903818 + "x": 389.03073, + "y": 800.81453 }, { "body": null, "index": 11, "isInternal": false, - "x": 390.78512928755265, - "y": 795.4066862221891 + "x": 390.78513, + "y": 795.40669 }, { "body": null, "index": 12, "isInternal": false, - "x": 394.12491317184566, - "y": 790.8060766314699 + "x": 394.12491, + "y": 790.80608 }, { "body": null, "index": 13, "isInternal": false, - "x": 398.72230251362265, - "y": 787.4618612914962 + "x": 398.7223, + "y": 787.46186 }, { "body": null, "index": 14, "isInternal": false, - "x": 404.1284553903759, - "y": 785.702256485532 + "x": 404.12846, + "y": 785.70226 }, { "body": null, "index": 15, "isInternal": false, - "x": 409.8144547304686, - "y": 785.6995170577216 + "x": 409.81445, + "y": 785.69952 }, { "body": null, "index": 16, "isInternal": false, - "x": 415.22230059866143, - "y": 787.4539118439284 + "x": 415.2223, + "y": 787.45391 }, { "body": null, "index": 17, "isInternal": false, - "x": 419.8229101893805, - "y": 790.7936957282213 + "x": 419.82291, + "y": 790.7937 }, { "body": null, "index": 18, "isInternal": false, - "x": 423.1671255293541, - "y": 795.3910850699986 + "x": 423.16713, + "y": 795.39109 }, { "body": null, "index": 19, "isInternal": false, - "x": 424.9267303353186, - "y": 800.7972379467517 + "x": 424.92673, + "y": 800.79724 }, { - "angle": 0.001965048375844521, - "anglePrev": 0.00093731520627935, - "angularSpeed": 0.0006592393713886146, - "angularVelocity": 0.0005875911252714956, - "area": 1846.3076820000003, + "angle": 0.00197, + "anglePrev": 0.00094, + "angularSpeed": 0.00066, + "angularVelocity": 0.00059, + "area": 1846.30768, "axes": { "#": 5490 }, "bounds": { "#": 5504 }, - "circleRadius": 24.360918209876544, + "circleRadius": 24.36092, "collisionFilter": { "#": 5507 }, @@ -49146,13 +49146,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 111, - "inertia": 2170.1840279388884, - "inverseInertia": 0.0004607904155251481, - "inverseMass": 0.5416215345628399, + "inertia": 2170.18403, + "inverseInertia": 0.00046, + "inverseMass": 0.54162, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8463076820000004, + "mass": 1.84631, "motion": 0, "parent": null, "position": { @@ -49174,7 +49174,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9145950821541358, + "speed": 2.9146, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49228,56 +49228,56 @@ } ], { - "x": -0.9704961184376506, - "y": -0.24111674371029035 + "x": -0.9705, + "y": -0.24112 }, { - "x": -0.8845531068970901, - "y": -0.4664394934808862 + "x": -0.88455, + "y": -0.46644 }, { - "x": -0.7470901943845744, - "y": -0.664722680111352 + "x": -0.74709, + "y": -0.66472 }, { - "x": -0.5665643421239467, - "y": -0.8240175035966527 + "x": -0.56656, + "y": -0.82402 }, { - "x": -0.3526980770537608, - "y": -0.9357371780807792 + "x": -0.3527, + "y": -0.93574 }, { - "x": -0.11860416313502059, - "y": -0.992941615850117 + "x": -0.1186, + "y": -0.99294 }, { - "x": 0.12250559374971336, - "y": -0.9924678229041132 + "x": 0.12251, + "y": -0.99247 }, { - "x": 0.35637288140691, - "y": -0.9343438175520491 + "x": 0.35637, + "y": -0.93434 }, { - "x": 0.569798426826857, - "y": -0.8217844929089615 + "x": 0.5698, + "y": -0.82178 }, { - "x": 0.7496968424620379, - "y": -0.6617814173897979 + "x": 0.7497, + "y": -0.66178 }, { - "x": 0.8863794232715516, - "y": -0.4629595209095408 + "x": 0.88638, + "y": -0.46296 }, { - "x": 0.9714362331623474, - "y": -0.23730074778506283 + "x": 0.97144, + "y": -0.2373 }, { - "x": 0.9999980692930616, - "y": 0.0019650471112001803 + "x": 1, + "y": 0.00197 }, { "max": { @@ -49288,12 +49288,12 @@ } }, { - "x": 473.37666025031007, - "y": 825.4367018948009 + "x": 473.37666, + "y": 825.4367 }, { - "x": 424.9982335829259, - "y": 773.8002010457418 + "x": 424.99823, + "y": 773.8002 }, { "category": 1, @@ -49310,16 +49310,16 @@ "y": 0 }, { - "x": 449.1879375622775, - "y": 798.16115401179 + "x": 449.18794, + "y": 798.16115 }, { - "x": 0.11336995748716205, - "y": 0.12687270271831522 + "x": 0.11337, + "y": 0.12687 }, { - "x": 449.18892746730353, - "y": 795.2644378400471 + "x": 449.18893, + "y": 795.26444 }, { "endCol": 9, @@ -49342,8 +49342,8 @@ "yScale": 1 }, { - "x": -0.0009796165377906618, - "y": 2.9180711193329216 + "x": -0.00098, + "y": 2.91807 }, [ { @@ -49429,197 +49429,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 473.3651214936732, - "y": 801.1446690775246 + "x": 473.36512, + "y": 801.14467 }, { "body": null, "index": 1, "isInternal": false, - "x": 471.94891754264125, - "y": 806.8448971755117 + "x": 471.94892, + "y": 806.8449 }, { "body": null, "index": 2, "isInternal": false, - "x": 469.20970456656227, - "y": 812.0395245222692 + "x": 469.2097, + "y": 812.03952 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.30607570461206, - "y": 816.4268621783141 + "x": 465.30608, + "y": 816.42686 }, { "body": null, "index": 4, "isInternal": false, - "x": 460.4665276735086, - "y": 819.7543586628566 + "x": 460.46653, + "y": 819.75436 }, { "body": null, "index": 5, "isInternal": false, - "x": 454.97144704693477, - "y": 821.8255645694371 + "x": 454.97145, + "y": 821.82556 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.14006704960156, - "y": 822.5221069778382 + "x": 449.14007, + "y": 822.52211 }, { "body": null, "index": 7, "isInternal": false, - "x": 443.31146955897776, - "y": 821.8026521201205 + "x": 443.31147, + "y": 821.80265 }, { "body": null, "index": 8, "isInternal": false, - "x": 437.82457138857507, - "y": 819.7098660661648 + "x": 437.82457, + "y": 819.70987 }, { "body": null, "index": 9, "isInternal": false, - "x": 432.9981380818918, - "y": 816.3633754362454 + "x": 432.99814, + "y": 816.36338 }, { "body": null, "index": 10, "isInternal": false, - "x": 429.1117819840491, - "y": 811.9607300632043 + "x": 429.11178, + "y": 811.96073 }, { "body": null, "index": 11, "isInternal": false, - "x": 426.3930054979264, - "y": 806.7553774893139 + "x": 426.39301, + "y": 806.75538 }, { "body": null, "index": 12, "isInternal": false, - "x": 424.99921487424496, - "y": 801.0496276089444 + "x": 424.99921, + "y": 801.04963 }, { "body": null, "index": 13, "isInternal": false, - "x": 425.0107536308818, - "y": 795.1776389460555 + "x": 425.01075, + "y": 795.17764 }, { "body": null, "index": 14, "isInternal": false, - "x": 426.42695758191377, - "y": 789.4774108480683 + "x": 426.42696, + "y": 789.47741 }, { "body": null, "index": 15, "isInternal": false, - "x": 429.16617055799276, - "y": 784.2827835013109 + "x": 429.16617, + "y": 784.28278 }, { "body": null, "index": 16, "isInternal": false, - "x": 433.06979941994297, - "y": 779.895445845266 + "x": 433.0698, + "y": 779.89545 }, { "body": null, "index": 17, "isInternal": false, - "x": 437.9093474510464, - "y": 776.5679493607234 + "x": 437.90935, + "y": 776.56795 }, { "body": null, "index": 18, "isInternal": false, - "x": 443.40442807762025, - "y": 774.4967434541429 + "x": 443.40443, + "y": 774.49674 }, { "body": null, "index": 19, "isInternal": false, - "x": 449.23580807495347, - "y": 773.8002010457418 + "x": 449.23581, + "y": 773.8002 }, { "body": null, "index": 20, "isInternal": false, - "x": 455.06440556557726, - "y": 774.5196559034596 + "x": 455.06441, + "y": 774.51966 }, { "body": null, "index": 21, "isInternal": false, - "x": 460.55130373597996, - "y": 776.6124419574153 + "x": 460.5513, + "y": 776.61244 }, { "body": null, "index": 22, "isInternal": false, - "x": 465.3777370426632, - "y": 779.9589325873346 + "x": 465.37774, + "y": 779.95893 }, { "body": null, "index": 23, "isInternal": false, - "x": 469.2640931405059, - "y": 784.3615779603757 + "x": 469.26409, + "y": 784.36158 }, { "body": null, "index": 24, "isInternal": false, - "x": 471.9828696266286, - "y": 789.5669305342661 + "x": 471.98287, + "y": 789.56693 }, { "body": null, "index": 25, "isInternal": false, - "x": 473.37666025031007, - "y": 795.2726804146356 + "x": 473.37666, + "y": 795.27268 }, { - "angle": -0.0015405007352836011, - "anglePrev": -0.0020655937141794262, - "angularSpeed": 0.000525092978895825, - "angularVelocity": 0.000525092978895825, - "area": 1121.860092, + "angle": -0.00154, + "anglePrev": -0.00207, + "angularSpeed": 0.00053, + "angularVelocity": 0.00053, + "area": 1121.86009, "axes": { "#": 5545 }, "bounds": { "#": 5556 }, - "circleRadius": 19.053176440329217, + "circleRadius": 19.05318, "collisionFilter": { "#": 5559 }, @@ -49634,13 +49634,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 112, - "inertia": 801.2744632606872, - "inverseInertia": 0.0012480118184855459, - "inverseMass": 0.8913767475383196, + "inertia": 801.27446, + "inverseInertia": 0.00125, + "inverseMass": 0.89138, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.121860092, + "mass": 1.12186, "motion": 0, "parent": null, "position": { @@ -49662,7 +49662,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8881149938620343, + "speed": 2.88811, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49707,44 +49707,44 @@ } ], { - "x": -0.9515299445039851, - "y": -0.3075561163629214 + "x": -0.95153, + "y": -0.30756 }, { - "x": -0.8099306404470826, - "y": -0.5865256666719529 + "x": -0.80993, + "y": -0.58653 }, { - "x": -0.5890182764024838, - "y": -0.8081197127058879 + "x": -0.58902, + "y": -0.80812 }, { - "x": -0.3104863171352198, - "y": -0.9505778489275921 + "x": -0.31049, + "y": -0.95058 }, { - "x": -0.001540500125979042, - "y": -0.9999988134289771 + "x": -0.00154, + "y": -1 }, { - "x": 0.3075561163629214, - "y": -0.9515299445039851 + "x": 0.30756, + "y": -0.95153 }, { - "x": 0.5865256666719529, - "y": -0.8099306404470826 + "x": 0.58653, + "y": -0.80993 }, { - "x": 0.8081197127058879, - "y": -0.5890182764024838 + "x": 0.80812, + "y": -0.58902 }, { - "x": 0.9505778489275921, - "y": -0.3104863171352198 + "x": 0.95058, + "y": -0.31049 }, { - "x": 0.9999988134289771, - "y": -0.001540500125979042 + "x": 1, + "y": -0.00154 }, { "max": { @@ -49755,12 +49755,12 @@ } }, { - "x": 500.9182818885602, - "y": 851.044991834735 + "x": 500.91828, + "y": 851.04499 }, { - "x": 463.2451864815772, - "y": 810.509853673671 + "x": 463.24519, + "y": 810.50985 }, { "category": 1, @@ -49777,16 +49777,16 @@ "y": 0 }, { - "x": 482.0687563823727, - "y": 829.3334235744665 + "x": 482.06876, + "y": 829.33342 }, { - "x": 0.45934037975631914, - "y": 1.1073488404145173 + "x": 0.45934, + "y": 1.10735 }, { - "x": 482.04280077698076, - "y": 826.4454252149933 + "x": 482.0428, + "y": 826.44543 }, { "endCol": 10, @@ -49809,8 +49809,8 @@ "yScale": 1 }, { - "x": 0.025955605391997663, - "y": 2.8879983594731202 + "x": 0.02596, + "y": 2.888 }, [ { @@ -49878,155 +49878,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 500.89232628316825, - "y": 832.2854293654275 + "x": 500.89233, + "y": 832.28543 }, { "body": null, "index": 1, "isInternal": false, - "x": 499.05906156404615, - "y": 837.9572602399883 + "x": 499.05906, + "y": 837.95726 }, { "body": null, "index": 2, "isInternal": false, - "x": 495.56249555389866, - "y": 842.7856524295978 + "x": 495.5625, + "y": 842.78565 }, { "body": null, "index": 3, "isInternal": false, - "x": 490.7448991891721, - "y": 846.2970781039604 + "x": 490.7449, + "y": 846.29708 }, { "body": null, "index": 4, "isInternal": false, - "x": 485.0787435170753, - "y": 848.1478090135108 + "x": 485.07874, + "y": 848.14781 }, { "body": null, "index": 5, "isInternal": false, - "x": 479.1167505914118, - "y": 848.1569934752619 + "x": 479.11675, + "y": 848.15699 }, { "body": null, "index": 6, "isInternal": false, - "x": 473.44491971685085, - "y": 846.3237287561399 + "x": 473.44492, + "y": 846.32373 }, { "body": null, "index": 7, "isInternal": false, - "x": 468.61652752724143, - "y": 842.8271627459923 + "x": 468.61653, + "y": 842.82716 }, { "body": null, "index": 8, "isInternal": false, - "x": 465.10510185287876, - "y": 838.0095663812656 + "x": 465.1051, + "y": 838.00957 }, { "body": null, "index": 9, "isInternal": false, - "x": 463.25437094332835, - "y": 832.343410709169 + "x": 463.25437, + "y": 832.34341 }, { "body": null, "index": 10, "isInternal": false, - "x": 463.2451864815772, - "y": 826.3814177835054 + "x": 463.24519, + "y": 826.38142 }, { "body": null, "index": 11, "isInternal": false, - "x": 465.0784512006993, - "y": 820.7095869089444 + "x": 465.07845, + "y": 820.70959 }, { "body": null, "index": 12, "isInternal": false, - "x": 468.5750172108468, - "y": 815.8811947193351 + "x": 468.57502, + "y": 815.88119 }, { "body": null, "index": 13, "isInternal": false, - "x": 473.39261357557336, - "y": 812.3697690449725 + "x": 473.39261, + "y": 812.36977 }, { "body": null, "index": 14, "isInternal": false, - "x": 479.05876924767017, - "y": 810.5190381354221 + "x": 479.05877, + "y": 810.51904 }, { "body": null, "index": 15, "isInternal": false, - "x": 485.02076217333365, - "y": 810.509853673671 + "x": 485.02076, + "y": 810.50985 }, { "body": null, "index": 16, "isInternal": false, - "x": 490.6925930478946, - "y": 812.3431183927928 + "x": 490.69259, + "y": 812.34312 }, { "body": null, "index": 17, "isInternal": false, - "x": 495.520985237504, - "y": 815.8396844029404 + "x": 495.52099, + "y": 815.83968 }, { "body": null, "index": 18, "isInternal": false, - "x": 499.0324109118667, - "y": 820.6572807676671 + "x": 499.03241, + "y": 820.65728 }, { "body": null, "index": 19, "isInternal": false, - "x": 500.8831418214171, - "y": 826.3234364397639 + "x": 500.88314, + "y": 826.32344 }, { - "angle": 0.003290489433563218, - "anglePrev": 0.0024560828242784875, - "angularSpeed": 0.0005463867148183464, - "angularVelocity": 0.00010005057991701628, - "area": 1127.3694039999998, + "angle": 0.00329, + "anglePrev": 0.00246, + "angularSpeed": 0.00055, + "angularVelocity": 0.0001, + "area": 1127.3694, "axes": { "#": 5591 }, "bounds": { "#": 5602 }, - "circleRadius": 19.100372942386834, + "circleRadius": 19.10037, "collisionFilter": { "#": 5605 }, @@ -50041,13 +50041,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 113, - "inertia": 809.1637011361704, - "inverseInertia": 0.0012358438701536793, - "inverseMass": 0.8870207018674778, + "inertia": 809.1637, + "inverseInertia": 0.00124, + "inverseMass": 0.88702, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1273694039999997, + "mass": 1.12737, "motion": 0, "parent": null, "position": { @@ -50069,7 +50069,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9059554138005286, + "speed": 2.90596, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50114,44 +50114,44 @@ } ], { - "x": -0.9500603160197189, - "y": -0.3120663325713161 + "x": -0.95006, + "y": -0.31207 }, { - "x": -0.8070651788653798, - "y": -0.5904623587181427 + "x": -0.80707, + "y": -0.59046 }, { - "x": -0.5851383319649933, - "y": -0.8109334944773372 + "x": -0.58514, + "y": -0.81093 }, { - "x": -0.30580729317948574, - "y": -0.9520934299942605 + "x": -0.30581, + "y": -0.95209 }, { - "x": 0.0032904834957023666, - "y": -0.9999945863445284 + "x": 0.00329, + "y": -0.99999 }, { - "x": 0.3120663325713161, - "y": -0.9500603160197189 + "x": 0.31207, + "y": -0.95006 }, { - "x": 0.5904623587181427, - "y": -0.8070651788653798 + "x": 0.59046, + "y": -0.80707 }, { - "x": 0.8109334944773372, - "y": -0.5851383319649933 + "x": 0.81093, + "y": -0.58514 }, { - "x": 0.9520934299942605, - "y": -0.30580729317948574 + "x": 0.95209, + "y": -0.30581 }, { - "x": 0.9999945863445284, - "y": 0.0032904834957023666 + "x": 0.99999, + "y": 0.00329 }, { "max": { @@ -50162,12 +50162,12 @@ } }, { - "x": 563.9796612061273, - "y": 826.2747511512757 + "x": 563.97966, + "y": 826.27475 }, { - "x": 526.2144863047674, - "y": 785.6193785591361 + "x": 526.21449, + "y": 785.61938 }, { "category": 1, @@ -50184,16 +50184,16 @@ "y": 0 }, { - "x": 545.089216140842, - "y": 804.4941083952107 + "x": 545.08922, + "y": 804.49411 }, { - "x": 0.19146596037952288, - "y": 0.6332684355896245 + "x": 0.19147, + "y": 0.63327 }, { - "x": 545.0647918225277, - "y": 801.5866700328382 + "x": 545.06479, + "y": 801.58667 }, { "endCol": 11, @@ -50216,8 +50216,8 @@ "yScale": 1 }, { - "x": 0.052142520759161926, - "y": 2.9028364173886985 + "x": 0.05214, + "y": 2.90284 }, [ { @@ -50285,155 +50285,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 563.9442820475464, - "y": 807.5441671903546 + "x": 563.94428, + "y": 807.54417 }, { "body": null, "index": 1, "isInternal": false, - "x": 562.0795922234485, - "y": 813.2210621920174 + "x": 562.07959, + "y": 813.22106 }, { "body": null, "index": 2, "isInternal": false, - "x": 558.5507017539182, - "y": 818.0444765484729 + "x": 558.5507, + "y": 818.04448 }, { "body": null, "index": 3, "isInternal": false, - "x": 553.7041684604221, - "y": 821.5415480425995 + "x": 553.70417, + "y": 821.54155 }, { "body": null, "index": 4, "isInternal": false, - "x": 548.015124993693, - "y": 823.3688382312853 + "x": 548.01512, + "y": 823.36884 }, { "body": null, "index": 5, "isInternal": false, - "x": 542.0391573456981, - "y": 823.349174301915 + "x": 542.03916, + "y": 823.34917 }, { "body": null, "index": 6, "isInternal": false, - "x": 536.3622623440353, - "y": 821.4844844778171 + "x": 536.36226, + "y": 821.48448 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.5388479875799, - "y": 817.9555940082869 + "x": 531.53885, + "y": 817.95559 }, { "body": null, "index": 8, "isInternal": false, - "x": 528.0417764934532, - "y": 813.1090607147908 + "x": 528.04178, + "y": 813.10906 }, { "body": null, "index": 9, "isInternal": false, - "x": 526.2144863047674, - "y": 807.4200172480616 + "x": 526.21449, + "y": 807.42002 }, { "body": null, "index": 10, "isInternal": false, - "x": 526.2341502341377, - "y": 801.4440496000667 + "x": 526.23415, + "y": 801.44405 }, { "body": null, "index": 11, "isInternal": false, - "x": 528.0988400582356, - "y": 795.767154598404 + "x": 528.09884, + "y": 795.76715 }, { "body": null, "index": 12, "isInternal": false, - "x": 531.6277305277658, - "y": 790.9437402419485 + "x": 531.62773, + "y": 790.94374 }, { "body": null, "index": 13, "isInternal": false, - "x": 536.474263821262, - "y": 787.4466687478218 + "x": 536.47426, + "y": 787.44667 }, { "body": null, "index": 14, "isInternal": false, - "x": 542.1633072879911, - "y": 785.6193785591361 + "x": 542.16331, + "y": 785.61938 }, { "body": null, "index": 15, "isInternal": false, - "x": 548.139274935986, - "y": 785.6390424885063 + "x": 548.13927, + "y": 785.63904 }, { "body": null, "index": 16, "isInternal": false, - "x": 553.8161699376487, - "y": 787.5037323126043 + "x": 553.81617, + "y": 787.50373 }, { "body": null, "index": 17, "isInternal": false, - "x": 558.6395842941042, - "y": 791.0326227821345 + "x": 558.63958, + "y": 791.03262 }, { "body": null, "index": 18, "isInternal": false, - "x": 562.1366557882309, - "y": 795.8791560756306 + "x": 562.13666, + "y": 795.87916 }, { "body": null, "index": 19, "isInternal": false, - "x": 563.9639459769166, - "y": 801.5681995423597 + "x": 563.96395, + "y": 801.5682 }, { - "angle": -0.00033467858561443844, - "anglePrev": -0.00010246546398224943, - "angularSpeed": 0.000232213121632189, - "angularVelocity": -0.000232213121632189, - "area": 2346.845503999999, + "angle": -0.00033, + "anglePrev": -0.0001, + "angularSpeed": 0.00023, + "angularVelocity": -0.00023, + "area": 2346.8455, "axes": { "#": 5637 }, "bounds": { "#": 5651 }, - "circleRadius": 27.46547067901235, + "circleRadius": 27.46547, "collisionFilter": { "#": 5654 }, @@ -50448,13 +50448,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 114, - "inertia": 3506.367321067902, - "inverseInertia": 0.0002851954482896102, - "inverseMass": 0.42610389064622484, + "inertia": 3506.36732, + "inverseInertia": 0.00029, + "inverseMass": 0.4261, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.346845503999999, + "mass": 2.34685, "motion": 0, "parent": null, "position": { @@ -50476,7 +50476,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9117316987910424, + "speed": 2.91173, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50530,56 +50530,56 @@ } ], { - "x": -0.9710344634000879, - "y": -0.23893947118319217 + "x": -0.97103, + "y": -0.23894 }, { - "x": -0.8856201898575744, - "y": -0.4644102489358241 + "x": -0.88562, + "y": -0.46441 }, { - "x": -0.7487051280354844, - "y": -0.662903183921581 + "x": -0.74871, + "y": -0.6629 }, { - "x": -0.568322442977202, - "y": -0.8228059314373135 + "x": -0.56832, + "y": -0.82281 }, { - "x": -0.35492616744907896, - "y": -0.9348943339543289 + "x": -0.35493, + "y": -0.93489 }, { - "x": -0.12085303255220328, - "y": -0.992670410822714 + "x": -0.12085, + "y": -0.99267 }, { - "x": 0.12018855447023279, - "y": -0.9927510822831452 + "x": 0.12019, + "y": -0.99275 }, { - "x": 0.3543003097586506, - "y": -0.9351316968774634 + "x": 0.3543, + "y": -0.93513 }, { - "x": 0.56777156465228, - "y": -0.8231861577871085 + "x": 0.56777, + "y": -0.82319 }, { - "x": 0.748261241344079, - "y": -0.6634041865275031 + "x": 0.74826, + "y": -0.6634 }, { - "x": 0.8853091351540747, - "y": -0.4650029410796711 + "x": 0.88531, + "y": -0.465 }, { - "x": 0.9708743100328469, - "y": -0.23958938648914258 + "x": 0.97087, + "y": -0.23959 }, { - "x": 0.9999999439951227, - "y": -0.00033467857936656073 + "x": 1, + "y": -0.00033 }, { "max": { @@ -50590,12 +50590,12 @@ } }, { - "x": 627.8053417951261, - "y": 828.4022620527895 + "x": 627.80534, + "y": 828.40226 }, { - "x": 573.2638650276339, - "y": 770.560548166273 + "x": 573.26387, + "y": 770.56055 }, { "category": 1, @@ -50612,16 +50612,16 @@ "y": 0 }, { - "x": 600.5299716214371, - "y": 798.025546628099 + "x": 600.52997, + "y": 798.02555 }, { - "x": 0.34924167133710377, - "y": 0.14422281277728644 + "x": 0.34924, + "y": 0.14422 }, { - "x": 600.5207080415513, - "y": 795.1138296652347 + "x": 600.52071, + "y": 795.11383 }, { "endCol": 13, @@ -50644,8 +50644,8 @@ "yScale": 1 }, { - "x": 0.009263579885742956, - "y": 2.9117169628643973 + "x": 0.00926, + "y": 2.91172 }, [ { @@ -50731,197 +50731,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 627.7960782152403, - "y": 801.3274214312005 + "x": 627.79608, + "y": 801.32742 }, { "body": null, "index": 1, "isInternal": false, - "x": 626.2142296178605, - "y": 807.7559512020708 + "x": 626.21423, + "y": 807.75595 }, { "body": null, "index": 2, "isInternal": false, - "x": 623.1391920106983, - "y": 813.619980679703 + "x": 623.13919, + "y": 813.61998 }, { "body": null, "index": 3, "isInternal": false, - "x": 618.749850923655, - "y": 818.5774499757848 + "x": 618.74985, + "y": 818.57745 }, { "body": null, "index": 4, "isInternal": false, - "x": 613.3021099549624, - "y": 822.3402734287292 + "x": 613.30211, + "y": 822.34027 }, { "body": null, "index": 5, "isInternal": false, - "x": 607.111896126993, - "y": 824.6903452923148 + "x": 607.1119, + "y": 824.69035 }, { "body": null, "index": 6, "isInternal": false, - "x": 600.5391635686195, - "y": 825.4905450899251 + "x": 600.53916, + "y": 825.49055 }, { "body": null, "index": 7, "isInternal": false, - "x": 593.9658968632332, - "y": 824.6947449769192 + "x": 593.9659, + "y": 824.69474 }, { "body": null, "index": 8, "isInternal": false, - "x": 587.774111384655, - "y": 822.3488171035035 + "x": 587.77411, + "y": 822.34882 }, { "body": null, "index": 9, "isInternal": false, - "x": 582.3238529636886, - "y": 818.5896409777166 + "x": 582.32385, + "y": 818.58964 }, { "body": null, "index": 10, "isInternal": false, - "x": 577.9311945425666, - "y": 813.635110828919 + "x": 577.93119, + "y": 813.63511 }, { "body": null, "index": 11, "isInternal": false, - "x": 574.8522324943825, - "y": 807.7731409632643 + "x": 574.85223, + "y": 807.77314 }, { "body": null, "index": 12, "isInternal": false, - "x": 573.2660812691863, - "y": 801.3456714541333 + "x": 573.26608, + "y": 801.34567 }, { "body": null, "index": 13, "isInternal": false, - "x": 573.2638650276339, - "y": 794.7236718249976 + "x": 573.26387, + "y": 794.72367 }, { "body": null, "index": 14, "isInternal": false, - "x": 574.8457136250137, - "y": 788.2951420541273 + "x": 574.84571, + "y": 788.29514 }, { "body": null, "index": 15, "isInternal": false, - "x": 577.9207512321759, - "y": 782.4311125764951 + "x": 577.92075, + "y": 782.43111 }, { "body": null, "index": 16, "isInternal": false, - "x": 582.3100923192192, - "y": 777.4736432804133 + "x": 582.31009, + "y": 777.47364 }, { "body": null, "index": 17, "isInternal": false, - "x": 587.7578332879118, - "y": 773.7108198274689 + "x": 587.75783, + "y": 773.71082 }, { "body": null, "index": 18, "isInternal": false, - "x": 593.9480471158812, - "y": 771.3607479638833 + "x": 593.94805, + "y": 771.36075 }, { "body": null, "index": 19, "isInternal": false, - "x": 600.5207796742546, - "y": 770.560548166273 + "x": 600.52078, + "y": 770.56055 }, { "body": null, "index": 20, "isInternal": false, - "x": 607.094046379641, - "y": 771.3563482792789 + "x": 607.09405, + "y": 771.35635 }, { "body": null, "index": 21, "isInternal": false, - "x": 613.2858318582191, - "y": 773.7022761526946 + "x": 613.28583, + "y": 773.70228 }, { "body": null, "index": 22, "isInternal": false, - "x": 618.7360902791855, - "y": 777.4614522784815 + "x": 618.73609, + "y": 777.46145 }, { "body": null, "index": 23, "isInternal": false, - "x": 623.1287487003076, - "y": 782.4159824272791 + "x": 623.12875, + "y": 782.41598 }, { "body": null, "index": 24, "isInternal": false, - "x": 626.2077107484916, - "y": 788.2779522929338 + "x": 626.20771, + "y": 788.27795 }, { "body": null, "index": 25, "isInternal": false, - "x": 627.7938619736879, - "y": 794.7054218020648 + "x": 627.79386, + "y": 794.70542 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1927.254822, + "area": 1927.25482, "axes": { "#": 5692 }, "bounds": { "#": 5706 }, - "circleRadius": 24.889210390946502, + "circleRadius": 24.88921, "collisionFilter": { "#": 5709 }, @@ -50936,13 +50936,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 2364.649035490592, - "inverseInertia": 0.0004228957384335603, - "inverseMass": 0.5188727451008551, + "inertia": 2364.64904, + "inverseInertia": 0.00042, + "inverseMass": 0.51887, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.927254822, + "mass": 1.92725, "motion": 0, "parent": null, "position": { @@ -50964,7 +50964,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51018,52 +51018,52 @@ } ], { - "x": -0.9709410440920686, - "y": -0.2393188018050481 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854201928043248, - "y": -0.4647914394374667 + "x": -0.88542, + "y": -0.46479 }, { - "x": -0.7485669061572402, - "y": -0.6630592635701409 + "x": -0.74857, + "y": -0.66306 }, { - "x": -0.5680133484705358, - "y": -0.8230193411817792 + "x": -0.56801, + "y": -0.82302 }, { - "x": -0.3546090227600297, - "y": -0.9350146742041948 + "x": -0.35461, + "y": -0.93501 }, { - "x": -0.12050558188088281, - "y": -0.9927126496300679 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050558188088281, - "y": -0.9927126496300679 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546090227600297, - "y": -0.9350146742041948 + "x": 0.35461, + "y": -0.93501 }, { - "x": 0.5680133484705358, - "y": -0.8230193411817792 + "x": 0.56801, + "y": -0.82302 }, { - "x": 0.7485669061572402, - "y": -0.6630592635701409 + "x": 0.74857, + "y": -0.66306 }, { - "x": 0.8854201928043248, - "y": -0.4647914394374667 + "x": 0.88542, + "y": -0.46479 }, { - "x": 0.9709410440920686, - "y": -0.2393188018050481 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -51078,12 +51078,12 @@ } }, { - "x": 151.98460214634449, - "y": 883.3224600542287 + "x": 151.9846, + "y": 883.32246 }, { - "x": 102.56860214634447, - "y": 830.6371893391928 + "x": 102.5686, + "y": 830.63719 }, { "category": 1, @@ -51100,16 +51100,16 @@ "y": 0 }, { - "x": 127.27660214634447, - "y": 855.5261893391928 + "x": 127.2766, + "y": 855.52619 }, { - "x": 0.3564022490320795, - "y": 1.3300115178723164 + "x": 0.3564, + "y": 1.33001 }, { - "x": 127.27660214634447, - "y": 852.6189186241569 + "x": 127.2766, + "y": 852.61892 }, { "endCol": 3, @@ -51133,7 +51133,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -51219,197 +51219,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 151.98460214634449, - "y": 858.5261893391928 + "x": 151.9846, + "y": 858.52619 }, { "body": null, "index": 1, "isInternal": false, - "x": 150.54860214634448, - "y": 864.3521893391928 + "x": 150.5486, + "y": 864.35219 }, { "body": null, "index": 2, "isInternal": false, - "x": 147.7596021463445, - "y": 869.6651893391928 + "x": 147.7596, + "y": 869.66519 }, { "body": null, "index": 3, "isInternal": false, - "x": 143.78160214634448, - "y": 874.1561893391928 + "x": 143.7816, + "y": 874.15619 }, { "body": null, "index": 4, "isInternal": false, - "x": 138.8436021463445, - "y": 877.5641893391928 + "x": 138.8436, + "y": 877.56419 }, { "body": null, "index": 5, "isInternal": false, - "x": 133.23260214634448, - "y": 879.6921893391929 + "x": 133.2326, + "y": 879.69219 }, { "body": null, "index": 6, "isInternal": false, - "x": 127.27660214634447, - "y": 880.4151893391928 + "x": 127.2766, + "y": 880.41519 }, { "body": null, "index": 7, "isInternal": false, - "x": 121.32060214634447, - "y": 879.6921893391929 + "x": 121.3206, + "y": 879.69219 }, { "body": null, "index": 8, "isInternal": false, - "x": 115.70960214634447, - "y": 877.5641893391928 + "x": 115.7096, + "y": 877.56419 }, { "body": null, "index": 9, "isInternal": false, - "x": 110.77160214634448, - "y": 874.1561893391928 + "x": 110.7716, + "y": 874.15619 }, { "body": null, "index": 10, "isInternal": false, - "x": 106.79360214634447, - "y": 869.6651893391928 + "x": 106.7936, + "y": 869.66519 }, { "body": null, "index": 11, "isInternal": false, - "x": 104.00460214634448, - "y": 864.3521893391928 + "x": 104.0046, + "y": 864.35219 }, { "body": null, "index": 12, "isInternal": false, - "x": 102.56860214634447, - "y": 858.5261893391928 + "x": 102.5686, + "y": 858.52619 }, { "body": null, "index": 13, "isInternal": false, - "x": 102.56860214634447, - "y": 852.5261893391928 + "x": 102.5686, + "y": 852.52619 }, { "body": null, "index": 14, "isInternal": false, - "x": 104.00460214634448, - "y": 846.7001893391928 + "x": 104.0046, + "y": 846.70019 }, { "body": null, "index": 15, "isInternal": false, - "x": 106.79360214634447, - "y": 841.3871893391928 + "x": 106.7936, + "y": 841.38719 }, { "body": null, "index": 16, "isInternal": false, - "x": 110.77160214634448, - "y": 836.8961893391928 + "x": 110.7716, + "y": 836.89619 }, { "body": null, "index": 17, "isInternal": false, - "x": 115.70960214634447, - "y": 833.4881893391928 + "x": 115.7096, + "y": 833.48819 }, { "body": null, "index": 18, "isInternal": false, - "x": 121.32060214634447, - "y": 831.3601893391927 + "x": 121.3206, + "y": 831.36019 }, { "body": null, "index": 19, "isInternal": false, - "x": 127.27660214634447, - "y": 830.6371893391928 + "x": 127.2766, + "y": 830.63719 }, { "body": null, "index": 20, "isInternal": false, - "x": 133.23260214634448, - "y": 831.3601893391927 + "x": 133.2326, + "y": 831.36019 }, { "body": null, "index": 21, "isInternal": false, - "x": 138.8436021463445, - "y": 833.4881893391928 + "x": 138.8436, + "y": 833.48819 }, { "body": null, "index": 22, "isInternal": false, - "x": 143.78160214634448, - "y": 836.8961893391928 + "x": 143.7816, + "y": 836.89619 }, { "body": null, "index": 23, "isInternal": false, - "x": 147.7596021463445, - "y": 841.3871893391928 + "x": 147.7596, + "y": 841.38719 }, { "body": null, "index": 24, "isInternal": false, - "x": 150.54860214634448, - "y": 846.7001893391928 + "x": 150.5486, + "y": 846.70019 }, { "body": null, "index": 25, "isInternal": false, - "x": 151.98460214634449, - "y": 852.5261893391928 + "x": 151.9846, + "y": 852.52619 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 843.7975979999999, + "area": 843.7976, "axes": { "#": 5747 }, "bounds": { "#": 5757 }, - "circleRadius": 16.556777263374485, + "circleRadius": 16.55678, "collisionFilter": { "#": 5760 }, @@ -51424,13 +51424,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 116, - "inertia": 453.30764014503984, - "inverseInertia": 0.0022060073809478283, - "inverseMass": 1.1851183297632475, + "inertia": 453.30764, + "inverseInertia": 0.00221, + "inverseMass": 1.18512, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8437975979999999, + "mass": 0.8438, "motion": 0, "parent": null, "position": { @@ -51452,7 +51452,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51494,36 +51494,36 @@ } ], { - "x": -0.9397223093030161, - "y": -0.34193856377748083 + "x": -0.93972, + "y": -0.34194 }, { - "x": -0.7659788409533199, - "y": -0.6428657832019126 + "x": -0.76598, + "y": -0.64287 }, { - "x": -0.5000486573852558, - "y": -0.86599730960737 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.17372581087187394, - "y": -0.9847940610284518 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.17372581087187394, - "y": -0.9847940610284518 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.5000486573852558, - "y": -0.86599730960737 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7659788409533199, - "y": -0.6428657832019126 + "x": 0.76598, + "y": -0.64287 }, { - "x": 0.9397223093030161, - "y": -0.34193856377748083 + "x": 0.93972, + "y": -0.34194 }, { "x": 1, @@ -51539,11 +51539,11 @@ }, { "x": 192.026, - "y": 854.165754767027 + "y": 854.16575 }, { "x": 159.416, - "y": 821.051754767027 + "y": 821.05175 }, { "category": 1, @@ -51561,7 +51561,7 @@ }, { "x": 175.721, - "y": 837.608754767027 + "y": 837.60875 }, { "x": 0, @@ -51569,7 +51569,7 @@ }, { "x": 175.721, - "y": 834.7014840519911 + "y": 834.70148 }, { "endCol": 4, @@ -51593,7 +51593,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -51656,140 +51656,140 @@ "index": 0, "isInternal": false, "x": 192.026, - "y": 840.483754767027 + "y": 840.48375 }, { "body": null, "index": 1, "isInternal": false, "x": 190.06, - "y": 845.886754767027 + "y": 845.88675 }, { "body": null, "index": 2, "isInternal": false, "x": 186.363, - "y": 850.291754767027 + "y": 850.29175 }, { "body": null, "index": 3, "isInternal": false, - "x": 181.38400000000001, - "y": 853.166754767027 + "x": 181.384, + "y": 853.16675 }, { "body": null, "index": 4, "isInternal": false, "x": 175.721, - "y": 854.165754767027 + "y": 854.16575 }, { "body": null, "index": 5, "isInternal": false, "x": 170.058, - "y": 853.166754767027 + "y": 853.16675 }, { "body": null, "index": 6, "isInternal": false, "x": 165.079, - "y": 850.291754767027 + "y": 850.29175 }, { "body": null, "index": 7, "isInternal": false, "x": 161.382, - "y": 845.886754767027 + "y": 845.88675 }, { "body": null, "index": 8, "isInternal": false, "x": 159.416, - "y": 840.483754767027 + "y": 840.48375 }, { "body": null, "index": 9, "isInternal": false, "x": 159.416, - "y": 834.733754767027 + "y": 834.73375 }, { "body": null, "index": 10, "isInternal": false, "x": 161.382, - "y": 829.330754767027 + "y": 829.33075 }, { "body": null, "index": 11, "isInternal": false, "x": 165.079, - "y": 824.925754767027 + "y": 824.92575 }, { "body": null, "index": 12, "isInternal": false, "x": 170.058, - "y": 822.050754767027 + "y": 822.05075 }, { "body": null, "index": 13, "isInternal": false, "x": 175.721, - "y": 821.051754767027 + "y": 821.05175 }, { "body": null, "index": 14, "isInternal": false, - "x": 181.38400000000001, - "y": 822.050754767027 + "x": 181.384, + "y": 822.05075 }, { "body": null, "index": 15, "isInternal": false, "x": 186.363, - "y": 824.925754767027 + "y": 824.92575 }, { "body": null, "index": 16, "isInternal": false, "x": 190.06, - "y": 829.330754767027 + "y": 829.33075 }, { "body": null, "index": 17, "isInternal": false, "x": 192.026, - "y": 834.733754767027 + "y": 834.73375 }, { - "angle": 0.00014242805422155688, - "anglePrev": 0.00002078307863199082, - "angularSpeed": 0.00006537358850346917, - "angularVelocity": 0.000040946948667353614, - "area": 2574.1385259999997, + "angle": 0.00014, + "anglePrev": 0.00002, + "angularSpeed": 0.00007, + "angularVelocity": 0.00004, + "area": 2574.13853, "axes": { "#": 5790 }, "bounds": { "#": 5804 }, - "circleRadius": 28.76446759259259, + "circleRadius": 28.76447, "collisionFilter": { "#": 5807 }, @@ -51804,13 +51804,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 117, - "inertia": 4218.443516923933, - "inverseInertia": 0.00023705425851694103, - "inverseMass": 0.3884794815428671, + "inertia": 4218.44352, + "inverseInertia": 0.00024, + "inverseMass": 0.38848, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.5741385259999996, + "mass": 2.57414, "motion": 0, "parent": null, "position": { @@ -51832,7 +51832,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.908743890717591, + "speed": 2.90874, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51886,56 +51886,56 @@ } ], { - "x": -0.9708921454185914, - "y": -0.23951710161173181 + "x": -0.97089, + "y": -0.23952 }, { - "x": -0.8854207273969777, - "y": -0.46479042104566487 + "x": -0.88542, + "y": -0.46479 }, { - "x": -0.7484037451130532, - "y": -0.6632434200960883 + "x": -0.7484, + "y": -0.66324 }, { - "x": -0.5679897844468035, - "y": -0.8230356035822954 + "x": -0.56799, + "y": -0.82304 }, { - "x": -0.35446454455342735, - "y": -0.9350694555243109 + "x": -0.35446, + "y": -0.93507 }, { - "x": -0.1202718004519617, - "y": -0.9927410004709404 + "x": -0.12027, + "y": -0.99274 }, { - "x": 0.12055458390661593, - "y": -0.9927067000373789 + "x": 0.12055, + "y": -0.99271 }, { - "x": 0.3547308904148912, - "y": -0.9349684461977625 + "x": 0.35473, + "y": -0.93497 }, { - "x": 0.5682242081185814, - "y": -0.8228737748330609 + "x": 0.56822, + "y": -0.82287 }, { - "x": 0.7485926436862338, - "y": -0.6630302058118132 + "x": 0.74859, + "y": -0.66303 }, { - "x": 0.8855530898629201, - "y": -0.46453818468908964 + "x": 0.88555, + "y": -0.46454 }, { - "x": 0.9709603339365876, - "y": -0.23924052733964174 + "x": 0.97096, + "y": -0.23924 }, { - "x": 0.9999999898571247, - "y": 0.00014242805374001352 + "x": 1, + "y": 0.00014 }, { "max": { @@ -51946,12 +51946,12 @@ } }, { - "x": 247.75484974685446, - "y": 897.2623346741991 + "x": 247.75485, + "y": 897.26233 }, { - "x": 190.64012213936098, - "y": 836.8255937721468 + "x": 190.64012, + "y": 836.82559 }, { "category": 1, @@ -51968,16 +51968,16 @@ "y": 0 }, { - "x": 219.1956156477935, - "y": 865.5895934803972 + "x": 219.19562, + "y": 865.58959 }, { - "x": -0.9897603205726739, - "y": 0.8017185691317471 + "x": -0.98976, + "y": 0.80172 }, { - "x": 219.19486414148156, - "y": 862.6798739986344 + "x": 219.19486, + "y": 862.67987 }, { "endCol": 5, @@ -52000,8 +52000,8 @@ "yScale": 1 }, { - "x": 0.004980338084976665, - "y": 2.9081850483037215 + "x": 0.00498, + "y": 2.90819 }, [ { @@ -52087,197 +52087,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 247.75012156010138, - "y": 869.0606604783063 + "x": 247.75012, + "y": 869.06066 }, { "body": null, "index": 1, "isInternal": false, - "x": 246.0891626088527, - "y": 875.7934239794452 + "x": 246.08916, + "y": 875.79342 }, { "body": null, "index": 2, "isInternal": false, - "x": 242.8662881332831, - "y": 881.9329650139788 + "x": 242.86629, + "y": 881.93297 }, { "body": null, "index": 3, "isInternal": false, - "x": 238.2665488359032, - "y": 887.123309934708 + "x": 238.26655, + "y": 887.12331 }, { "body": null, "index": 4, "isInternal": false, - "x": 232.55998786967479, - "y": 891.0614972002805 + "x": 232.55999, + "y": 891.0615 }, { "body": null, "index": 5, "isInternal": false, - "x": 226.07563770485706, - "y": 893.5195736718387 + "x": 226.07564, + "y": 893.51957 }, { "body": null, "index": 6, "isInternal": false, - "x": 219.19151884725574, - "y": 894.3535931886476 + "x": 219.19152, + "y": 894.35359 }, { "body": null, "index": 7, "isInternal": false, - "x": 212.30763784450411, - "y": 893.5176127223948 + "x": 212.30764, + "y": 893.51761 }, { "body": null, "index": 8, "isInternal": false, - "x": 205.82398814085468, - "y": 891.0576892438359 + "x": 205.82399, + "y": 891.05769 }, { "body": null, "index": 9, "isInternal": false, - "x": 200.1185492228336, - "y": 887.1178765893138 + "x": 200.11855, + "y": 887.11788 }, { "body": null, "index": 10, "isInternal": false, - "x": 195.52028861350766, - "y": 881.9262216153464 + "x": 195.52029, + "y": 881.92622 }, { "body": null, "index": 11, "isInternal": false, - "x": 192.29916315443796, - "y": 875.7857627744346 + "x": 192.29916, + "y": 875.78576 }, { "body": null, "index": 12, "isInternal": false, - "x": 190.64012213936098, - "y": 869.0525264121572 + "x": 190.64012, + "y": 869.05253 }, { "body": null, "index": 13, "isInternal": false, - "x": 190.6411097354856, - "y": 862.118526482488 + "x": 190.64111, + "y": 862.11853 }, { "body": null, "index": 14, "isInternal": false, - "x": 192.3020686867343, - "y": 855.3857629813492 + "x": 192.30207, + "y": 855.38576 }, { "body": null, "index": 15, "isInternal": false, - "x": 195.52494316230388, - "y": 849.2462219468156 + "x": 195.52494, + "y": 849.24622 }, { "body": null, "index": 16, "isInternal": false, - "x": 200.12468245968378, - "y": 844.0558770260864 + "x": 200.12468, + "y": 844.05588 }, { "body": null, "index": 17, "isInternal": false, - "x": 205.8312434259122, - "y": 840.1176897605138 + "x": 205.83124, + "y": 840.11769 }, { "body": null, "index": 18, "isInternal": false, - "x": 212.31559359072992, - "y": 837.6596132889557 + "x": 212.31559, + "y": 837.65961 }, { "body": null, "index": 19, "isInternal": false, - "x": 219.19971244833124, - "y": 836.8255937721468 + "x": 219.19971, + "y": 836.82559 }, { "body": null, "index": 20, "isInternal": false, - "x": 226.08359345108286, - "y": 837.6615742383996 + "x": 226.08359, + "y": 837.66157 }, { "body": null, "index": 21, "isInternal": false, - "x": 232.5672431547323, - "y": 840.1214977169585 + "x": 232.56724, + "y": 840.1215 }, { "body": null, "index": 22, "isInternal": false, - "x": 238.27268207275338, - "y": 844.0613103714805 + "x": 238.27268, + "y": 844.06131 }, { "body": null, "index": 23, "isInternal": false, - "x": 242.87094268207932, - "y": 849.2529653454479 + "x": 242.87094, + "y": 849.25297 }, { "body": null, "index": 24, "isInternal": false, - "x": 246.09206814114896, - "y": 855.3934241863598 + "x": 246.09207, + "y": 855.39342 }, { "body": null, "index": 25, "isInternal": false, - "x": 247.751109156226, - "y": 862.1266605486371 + "x": 247.75111, + "y": 862.12666 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2036.7522099999999, + "area": 2036.75221, "axes": { "#": 5845 }, "bounds": { "#": 5859 }, - "circleRadius": 25.586355452674898, + "circleRadius": 25.58636, "collisionFilter": { "#": 5862 }, @@ -52292,13 +52292,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 2640.978111739055, - "inverseInertia": 0.00037864759104024194, - "inverseMass": 0.49097774147008294, + "inertia": 2640.97811, + "inverseInertia": 0.00038, + "inverseMass": 0.49098, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.03675221, + "mass": 2.03675, "motion": 0, "parent": null, "position": { @@ -52320,7 +52320,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52374,52 +52374,52 @@ } ], { - "x": -0.9709476908423734, - "y": -0.23929183364223444 + "x": -0.97095, + "y": -0.23929 }, { - "x": -0.8854345948146193, - "y": -0.4647640028073076 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485352977514667, - "y": -0.6630949464594971 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680966106501801, - "y": -0.8229618709076244 + "x": -0.5681, + "y": -0.82296 }, { - "x": -0.35453205966073653, - "y": -0.9350438592241093 + "x": -0.35453, + "y": -0.93504 }, { - "x": -0.12046209700872805, - "y": -0.9927179273007313 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.12046209700872805, - "y": -0.9927179273007313 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35453205966073653, - "y": -0.9350438592241093 + "x": 0.35453, + "y": -0.93504 }, { - "x": 0.5680966106501801, - "y": -0.8229618709076244 + "x": 0.5681, + "y": -0.82296 }, { - "x": 0.7485352977514667, - "y": -0.6630949464594971 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854345948146193, - "y": -0.4647640028073076 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709476908423734, - "y": -0.23929183364223444 + "x": 0.97095, + "y": -0.23929 }, { "x": 1, @@ -52434,12 +52434,12 @@ } }, { - "x": 344.64645522608663, - "y": 906.8612608003743 + "x": 344.64646, + "y": 906.86126 }, { - "x": 293.8464552260866, - "y": 852.7819900853384 + "x": 293.84646, + "y": 852.78199 }, { "category": 1, @@ -52456,16 +52456,16 @@ "y": 0 }, { - "x": 319.24645522608665, - "y": 878.3679900853384 + "x": 319.24646, + "y": 878.36799 }, { - "x": 0.518935924802607, - "y": 0.018089487983449126 + "x": 0.51894, + "y": 0.01809 }, { - "x": 319.24645522608665, - "y": 875.4607193703025 + "x": 319.24646, + "y": 875.46072 }, { "endCol": 7, @@ -52489,7 +52489,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -52575,197 +52575,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 344.64645522608663, - "y": 881.4519900853384 + "x": 344.64646, + "y": 881.45199 }, { "body": null, "index": 1, "isInternal": false, - "x": 343.17045522608663, - "y": 887.4409900853384 + "x": 343.17046, + "y": 887.44099 }, { "body": null, "index": 2, "isInternal": false, - "x": 340.30345522608667, - "y": 892.9029900853384 + "x": 340.30346, + "y": 892.90299 }, { "body": null, "index": 3, "isInternal": false, - "x": 336.21345522608664, - "y": 897.5199900853385 + "x": 336.21346, + "y": 897.51999 }, { "body": null, "index": 4, "isInternal": false, - "x": 331.1374552260867, - "y": 901.0239900853384 + "x": 331.13746, + "y": 901.02399 }, { "body": null, "index": 5, "isInternal": false, - "x": 325.36945522608664, - "y": 903.2109900853384 + "x": 325.36946, + "y": 903.21099 }, { "body": null, "index": 6, "isInternal": false, - "x": 319.24645522608665, - "y": 903.9539900853384 + "x": 319.24646, + "y": 903.95399 }, { "body": null, "index": 7, "isInternal": false, - "x": 313.12345522608666, - "y": 903.2109900853384 + "x": 313.12346, + "y": 903.21099 }, { "body": null, "index": 8, "isInternal": false, - "x": 307.35545522608663, - "y": 901.0239900853384 + "x": 307.35546, + "y": 901.02399 }, { "body": null, "index": 9, "isInternal": false, - "x": 302.27945522608667, - "y": 897.5199900853385 + "x": 302.27946, + "y": 897.51999 }, { "body": null, "index": 10, "isInternal": false, - "x": 298.1894552260867, - "y": 892.9029900853384 + "x": 298.18946, + "y": 892.90299 }, { "body": null, "index": 11, "isInternal": false, - "x": 295.3224552260866, - "y": 887.4409900853384 + "x": 295.32246, + "y": 887.44099 }, { "body": null, "index": 12, "isInternal": false, - "x": 293.8464552260866, - "y": 881.4519900853384 + "x": 293.84646, + "y": 881.45199 }, { "body": null, "index": 13, "isInternal": false, - "x": 293.8464552260866, - "y": 875.2839900853385 + "x": 293.84646, + "y": 875.28399 }, { "body": null, "index": 14, "isInternal": false, - "x": 295.3224552260866, - "y": 869.2949900853384 + "x": 295.32246, + "y": 869.29499 }, { "body": null, "index": 15, "isInternal": false, - "x": 298.1894552260867, - "y": 863.8329900853385 + "x": 298.18946, + "y": 863.83299 }, { "body": null, "index": 16, "isInternal": false, - "x": 302.27945522608667, - "y": 859.2159900853384 + "x": 302.27946, + "y": 859.21599 }, { "body": null, "index": 17, "isInternal": false, - "x": 307.35545522608663, - "y": 855.7119900853385 + "x": 307.35546, + "y": 855.71199 }, { "body": null, "index": 18, "isInternal": false, - "x": 313.12345522608666, - "y": 853.5249900853385 + "x": 313.12346, + "y": 853.52499 }, { "body": null, "index": 19, "isInternal": false, - "x": 319.24645522608665, - "y": 852.7819900853384 + "x": 319.24646, + "y": 852.78199 }, { "body": null, "index": 20, "isInternal": false, - "x": 325.36945522608664, - "y": 853.5249900853385 + "x": 325.36946, + "y": 853.52499 }, { "body": null, "index": 21, "isInternal": false, - "x": 331.1374552260867, - "y": 855.7119900853385 + "x": 331.13746, + "y": 855.71199 }, { "body": null, "index": 22, "isInternal": false, - "x": 336.21345522608664, - "y": 859.2159900853384 + "x": 336.21346, + "y": 859.21599 }, { "body": null, "index": 23, "isInternal": false, - "x": 340.30345522608667, - "y": 863.8329900853385 + "x": 340.30346, + "y": 863.83299 }, { "body": null, "index": 24, "isInternal": false, - "x": 343.17045522608663, - "y": 869.2949900853384 + "x": 343.17046, + "y": 869.29499 }, { "body": null, "index": 25, "isInternal": false, - "x": 344.64645522608663, - "y": 875.2839900853385 + "x": 344.64646, + "y": 875.28399 }, { "angle": 0, - "anglePrev": 0.000012358248992815264, + "anglePrev": 0.00001, "angularSpeed": 0, - "angularVelocity": 0.0012926618518121376, - "area": 739.3989280000001, + "angularVelocity": 0.00129, + "area": 739.39893, "axes": { "#": 5900 }, "bounds": { "#": 5909 }, - "circleRadius": 15.540959362139917, + "circleRadius": 15.54096, "collisionFilter": { "#": 5912 }, @@ -52780,13 +52780,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 119, - "inertia": 348.0937309995225, - "inverseInertia": 0.00287278945566926, - "inverseMass": 1.3524498915692234, + "inertia": 348.09373, + "inverseInertia": 0.00287, + "inverseMass": 1.35245, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7393989280000001, + "mass": 0.7394, "motion": 0, "parent": null, "position": { @@ -52808,7 +52808,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52847,32 +52847,32 @@ } ], { - "x": -0.9239042757313624, - "y": -0.3826236914846057 + "x": -0.9239, + "y": -0.38262 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826236914846057, - "y": -0.9239042757313624 + "x": -0.38262, + "y": -0.9239 }, { "x": 0, "y": -1 }, { - "x": 0.3826236914846057, - "y": -0.9239042757313624 + "x": 0.38262, + "y": -0.9239 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9239042757313624, - "y": -0.3826236914846057 + "x": 0.9239, + "y": -0.38262 }, { "x": 1, @@ -52887,12 +52887,12 @@ } }, { - "x": 361.84032356202385, - "y": 855.4726136444484 + "x": 361.84032, + "y": 855.47261 }, { - "x": 331.3563235620238, - "y": 822.0813429294126 + "x": 331.35632, + "y": 822.08134 }, { "category": 1, @@ -52909,16 +52909,16 @@ "y": 0 }, { - "x": 346.59832356202384, - "y": 837.3233429294125 + "x": 346.59832, + "y": 837.32334 }, { - "x": 1.1362588496190924, - "y": 0.8236705299084695 + "x": 1.13626, + "y": 0.82367 }, { - "x": 346.58839707769795, - "y": 834.4088765365542 + "x": 346.5884, + "y": 834.40888 }, { "endCol": 7, @@ -52941,8 +52941,8 @@ "yScale": 1 }, { - "x": 0.03608704466296331, - "y": 2.8845873465235172 + "x": 0.03609, + "y": 2.88459 }, [ { @@ -52998,127 +52998,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 361.84032356202385, - "y": 840.3553429294126 + "x": 361.84032, + "y": 840.35534 }, { "body": null, "index": 1, "isInternal": false, - "x": 359.52032356202386, - "y": 845.9573429294126 + "x": 359.52032, + "y": 845.95734 }, { "body": null, "index": 2, "isInternal": false, - "x": 355.23232356202385, - "y": 850.2453429294126 + "x": 355.23232, + "y": 850.24534 }, { "body": null, "index": 3, "isInternal": false, - "x": 349.6303235620238, - "y": 852.5653429294125 + "x": 349.63032, + "y": 852.56534 }, { "body": null, "index": 4, "isInternal": false, - "x": 343.56632356202385, - "y": 852.5653429294125 + "x": 343.56632, + "y": 852.56534 }, { "body": null, "index": 5, "isInternal": false, - "x": 337.9643235620238, - "y": 850.2453429294126 + "x": 337.96432, + "y": 850.24534 }, { "body": null, "index": 6, "isInternal": false, - "x": 333.6763235620238, - "y": 845.9573429294126 + "x": 333.67632, + "y": 845.95734 }, { "body": null, "index": 7, "isInternal": false, - "x": 331.3563235620238, - "y": 840.3553429294126 + "x": 331.35632, + "y": 840.35534 }, { "body": null, "index": 8, "isInternal": false, - "x": 331.3563235620238, - "y": 834.2913429294125 + "x": 331.35632, + "y": 834.29134 }, { "body": null, "index": 9, "isInternal": false, - "x": 333.6763235620238, - "y": 828.6893429294125 + "x": 333.67632, + "y": 828.68934 }, { "body": null, "index": 10, "isInternal": false, - "x": 337.9643235620238, - "y": 824.4013429294125 + "x": 337.96432, + "y": 824.40134 }, { "body": null, "index": 11, "isInternal": false, - "x": 343.56632356202385, - "y": 822.0813429294126 + "x": 343.56632, + "y": 822.08134 }, { "body": null, "index": 12, "isInternal": false, - "x": 349.6303235620238, - "y": 822.0813429294126 + "x": 349.63032, + "y": 822.08134 }, { "body": null, "index": 13, "isInternal": false, - "x": 355.23232356202385, - "y": 824.4013429294125 + "x": 355.23232, + "y": 824.40134 }, { "body": null, "index": 14, "isInternal": false, - "x": 359.52032356202386, - "y": 828.6893429294125 + "x": 359.52032, + "y": 828.68934 }, { "body": null, "index": 15, "isInternal": false, - "x": 361.84032356202385, - "y": 834.2913429294125 + "x": 361.84032, + "y": 834.29134 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.101068, + "area": 1030.10107, "axes": { "#": 5940 }, "bounds": { "#": 5951 }, - "circleRadius": 18.257908950617285, + "circleRadius": 18.25791, "collisionFilter": { "#": 5954 }, @@ -53133,13 +53133,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 120, - "inertia": 675.5594581193772, - "inverseInertia": 0.0014802546067281784, - "inverseMass": 0.9707785294714402, + "inertia": 675.55946, + "inverseInertia": 0.00148, + "inverseMass": 0.97078, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.030101068, + "mass": 1.0301, "motion": 0, "parent": null, "position": { @@ -53161,7 +53161,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53206,40 +53206,40 @@ } ], { - "x": -0.9510713685106887, - "y": -0.3089712802174427 + "x": -0.95107, + "y": -0.30897 }, { - "x": -0.8089631319319196, - "y": -0.5878593804430613 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878593804430613, - "y": -0.8089631319319196 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.3089712802174427, - "y": -0.9510713685106887 + "x": -0.30897, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089712802174427, - "y": -0.9510713685106887 + "x": 0.30897, + "y": -0.95107 }, { - "x": 0.5878593804430613, - "y": -0.8089631319319196 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089631319319196, - "y": -0.5878593804430613 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510713685106887, - "y": -0.3089712802174427 + "x": 0.95107, + "y": -0.30897 }, { "x": 1, @@ -53254,12 +53254,12 @@ } }, { - "x": 406.48600000000005, - "y": 857.117754767027 + "x": 406.486, + "y": 857.11775 }, { "x": 370.42, - "y": 821.051754767027 + "y": 821.05175 }, { "category": 1, @@ -53276,16 +53276,16 @@ "y": 0 }, { - "x": 388.45300000000003, - "y": 839.084754767027 + "x": 388.453, + "y": 839.08475 }, { "x": 0, "y": 0 }, { - "x": 388.45300000000003, - "y": 836.1774840519911 + "x": 388.453, + "y": 836.17748 }, { "endCol": 8, @@ -53309,7 +53309,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -53377,155 +53377,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 406.48600000000005, - "y": 841.940754767027 + "x": 406.486, + "y": 841.94075 }, { "body": null, "index": 1, "isInternal": false, "x": 404.721, - "y": 847.373754767027 + "y": 847.37375 }, { "body": null, "index": 2, "isInternal": false, - "x": 401.36300000000006, - "y": 851.994754767027 + "x": 401.363, + "y": 851.99475 }, { "body": null, "index": 3, "isInternal": false, "x": 396.742, - "y": 855.352754767027 + "y": 855.35275 }, { "body": null, "index": 4, "isInternal": false, "x": 391.309, - "y": 857.117754767027 + "y": 857.11775 }, { "body": null, "index": 5, "isInternal": false, - "x": 385.59700000000004, - "y": 857.117754767027 + "x": 385.597, + "y": 857.11775 }, { "body": null, "index": 6, "isInternal": false, - "x": 380.16400000000004, - "y": 855.352754767027 + "x": 380.164, + "y": 855.35275 }, { "body": null, "index": 7, "isInternal": false, "x": 375.543, - "y": 851.994754767027 + "y": 851.99475 }, { "body": null, "index": 8, "isInternal": false, - "x": 372.18500000000006, - "y": 847.373754767027 + "x": 372.185, + "y": 847.37375 }, { "body": null, "index": 9, "isInternal": false, "x": 370.42, - "y": 841.940754767027 + "y": 841.94075 }, { "body": null, "index": 10, "isInternal": false, "x": 370.42, - "y": 836.228754767027 + "y": 836.22875 }, { "body": null, "index": 11, "isInternal": false, - "x": 372.18500000000006, - "y": 830.795754767027 + "x": 372.185, + "y": 830.79575 }, { "body": null, "index": 12, "isInternal": false, "x": 375.543, - "y": 826.174754767027 + "y": 826.17475 }, { "body": null, "index": 13, "isInternal": false, - "x": 380.16400000000004, - "y": 822.816754767027 + "x": 380.164, + "y": 822.81675 }, { "body": null, "index": 14, "isInternal": false, - "x": 385.59700000000004, - "y": 821.051754767027 + "x": 385.597, + "y": 821.05175 }, { "body": null, "index": 15, "isInternal": false, "x": 391.309, - "y": 821.051754767027 + "y": 821.05175 }, { "body": null, "index": 16, "isInternal": false, "x": 396.742, - "y": 822.816754767027 + "y": 822.81675 }, { "body": null, "index": 17, "isInternal": false, - "x": 401.36300000000006, - "y": 826.174754767027 + "x": 401.363, + "y": 826.17475 }, { "body": null, "index": 18, "isInternal": false, "x": 404.721, - "y": 830.795754767027 + "y": 830.79575 }, { "body": null, "index": 19, "isInternal": false, - "x": 406.48600000000005, - "y": 836.228754767027 + "x": 406.486, + "y": 836.22875 }, { - "angle": -0.00002482476836224522, - "anglePrev": -0.000012474757970977497, - "angularSpeed": 0.000012350010391267721, - "angularVelocity": -0.000012350010391267721, - "area": 2126.6024159999997, + "angle": -0.00002, + "anglePrev": -0.00001, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 2126.60242, "axes": { "#": 5986 }, "bounds": { "#": 6000 }, - "circleRadius": 26.144611625514404, + "circleRadius": 26.14461, "collisionFilter": { "#": 6003 }, @@ -53540,13 +53540,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 121, - "inertia": 2879.1282788678996, - "inverseInertia": 0.00034732735159449357, - "inverseMass": 0.47023364239420673, + "inertia": 2879.12828, + "inverseInertia": 0.00035, + "inverseMass": 0.47023, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.126602416, + "mass": 2.1266, "motion": 0, "parent": null, "position": { @@ -53568,7 +53568,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9112357075630646, + "speed": 2.91124, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53622,56 +53622,56 @@ } ], { - "x": -0.9709641414205565, - "y": -0.2392250740943386 + "x": -0.97096, + "y": -0.23923 }, { - "x": -0.8854763594020735, - "y": -0.4646844272622551 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7485101435583009, - "y": -0.6631233407069396 + "x": -0.74851, + "y": -0.66312 }, { - "x": -0.5680499722663138, - "y": -0.8229940637746059 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.3546391808802124, - "y": -0.9350032360289521 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12060238919133351, - "y": -0.9927008933819604 + "x": -0.1206, + "y": -0.9927 }, { - "x": 0.1205531019032443, - "y": -0.9927068800111672 + "x": 0.12055, + "y": -0.99271 }, { - "x": 0.3545927579656204, - "y": -0.9350208425475527 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680091102921939, - "y": -0.8230222661781821 + "x": 0.56801, + "y": -0.82302 }, { - "x": 0.74847721886909, - "y": -0.6631605030714608 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8854532869441629, - "y": -0.4647283901805205 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709522628097093, - "y": -0.2392732817192624 + "x": 0.97095, + "y": -0.23927 }, { - "x": 0.9999999996918655, - "y": -0.000024824768359695427 + "x": 1, + "y": -0.00002 }, { "max": { @@ -53682,12 +53682,12 @@ } }, { - "x": 465.62610966680813, - "y": 879.269776313854 + "x": 465.62611, + "y": 879.26978 }, { - "x": 413.7168261876699, - "y": 824.0685408405651 + "x": 413.71683, + "y": 824.06854 }, { "category": 1, @@ -53704,16 +53704,16 @@ "y": 0 }, { - "x": 439.6720314519603, - "y": 850.2135408325089 + "x": 439.67203, + "y": 850.21354 }, { - "x": -0.5803442496664483, - "y": 0.6313582097888953 + "x": -0.58034, + "y": 0.63136 }, { - "x": 439.67315850140295, - "y": 847.3023053431076 + "x": 439.67316, + "y": 847.30231 }, { "endCol": 9, @@ -53736,8 +53736,8 @@ "yScale": 1 }, { - "x": -0.0011270494426497634, - "y": 2.911235489401325 + "x": -0.00113, + "y": 2.91124 }, [ { @@ -53823,197 +53823,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 465.62610966680813, - "y": 853.3638965294998 + "x": 465.62611, + "y": 853.3639 }, { "body": null, "index": 1, "isInternal": false, - "x": 464.11826159485514, - "y": 859.4839339633648 + "x": 464.11826, + "y": 859.48393 }, { "body": null, "index": 2, "isInternal": false, - "x": 461.18940014278985, - "y": 865.0650066733917 + "x": 461.1894, + "y": 865.06501 }, { "body": null, "index": 3, "isInternal": false, - "x": 457.009517267335, - "y": 869.7831104394696 + "x": 457.00952, + "y": 869.78311 }, { "body": null, "index": 4, "isInternal": false, - "x": 451.822606141604, - "y": 873.36323920444 + "x": 451.82261, + "y": 873.36324 }, { "body": null, "index": 5, "isInternal": false, - "x": 445.9296616267771, - "y": 875.5983854961113 + "x": 445.92966, + "y": 875.59839 }, { "body": null, "index": 6, "isInternal": false, - "x": 439.67268049552905, - "y": 876.3585408244527 + "x": 439.67268, + "y": 876.35854 }, { "body": null, "index": 7, "isInternal": false, - "x": 433.4156616306331, - "y": 875.5986961532625 + "x": 433.41566, + "y": 875.5987 }, { "body": null, "index": 8, "isInternal": false, - "x": 427.5226061490917, - "y": 873.3638424463112 + "x": 427.52261, + "y": 873.36384 }, { "body": null, "index": 9, "isInternal": false, - "x": 422.33551727801927, - "y": 869.7839712134878 + "x": 422.33552, + "y": 869.78397 }, { "body": null, "index": 10, "isInternal": false, - "x": 418.1554001560502, - "y": 865.0660749824732 + "x": 418.1554, + "y": 865.06607 }, { "body": null, "index": 11, "isInternal": false, - "x": 415.2262616099204, - "y": 859.4851476959394 + "x": 415.22626, + "y": 859.48515 }, { "body": null, "index": 12, "isInternal": false, - "x": 413.7181096828027, - "y": 853.3651851335759 + "x": 413.71811, + "y": 853.36519 }, { "body": null, "index": 13, "isInternal": false, - "x": 413.7179532371125, - "y": 847.063185135518 + "x": 413.71795, + "y": 847.06319 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.2258013090655, - "y": 840.943147701653 + "x": 415.2258, + "y": 840.94315 }, { "body": null, "index": 15, "isInternal": false, - "x": 418.1546627611308, - "y": 835.3620749916261 + "x": 418.15466, + "y": 835.36207 }, { "body": null, "index": 16, "isInternal": false, - "x": 422.33454563658563, - "y": 830.6439712255482 + "x": 422.33455, + "y": 830.64397 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.52145676231663, - "y": 827.0638424605778 + "x": 427.52146, + "y": 827.06384 }, { "body": null, "index": 18, "isInternal": false, - "x": 433.41440127714355, - "y": 824.8286961689065 + "x": 433.4144, + "y": 824.8287 }, { "body": null, "index": 19, "isInternal": false, - "x": 439.6713824083916, - "y": 824.0685408405651 + "x": 439.67138, + "y": 824.06854 }, { "body": null, "index": 20, "isInternal": false, - "x": 445.92840127328753, - "y": 824.8283855117553 + "x": 445.9284, + "y": 824.82839 }, { "body": null, "index": 21, "isInternal": false, - "x": 451.82145675482894, - "y": 827.0632392187066 + "x": 451.82146, + "y": 827.06324 }, { "body": null, "index": 22, "isInternal": false, - "x": 457.0085456259014, - "y": 830.64311045153 + "x": 457.00855, + "y": 830.64311 }, { "body": null, "index": 23, "isInternal": false, - "x": 461.18866274787047, - "y": 835.3610066825446 + "x": 461.18866, + "y": 835.36101 }, { "body": null, "index": 24, "isInternal": false, - "x": 464.11780129400023, - "y": 840.9419339690784 + "x": 464.1178, + "y": 840.94193 }, { "body": null, "index": 25, "isInternal": false, - "x": 465.6259532211179, - "y": 847.0618965314419 + "x": 465.62595, + "y": 847.0619 }, { - "angle": -0.00008929065053100762, - "anglePrev": -0.00007186108389559969, - "angularSpeed": 0.000017429566635407932, - "angularVelocity": -0.000017429566635407932, - "area": 1373.590942, + "angle": -0.00009, + "anglePrev": -0.00007, + "angularSpeed": 0.00002, + "angularVelocity": -0.00002, + "area": 1373.59094, "axes": { "#": 6041 }, "bounds": { "#": 6053 }, - "circleRadius": 21.052919238683128, + "circleRadius": 21.05292, "collisionFilter": { "#": 6056 }, @@ -54028,13 +54028,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 122, - "inertia": 1201.1885090560147, - "inverseInertia": 0.0008325087964634927, - "inverseMass": 0.7280187786794534, + "inertia": 1201.18851, + "inverseInertia": 0.00083, + "inverseMass": 0.72802, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.373590942, + "mass": 1.37359, "motion": 0, "parent": null, "position": { @@ -54056,7 +54056,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9073310585389733, + "speed": 2.90733, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54104,48 +54104,48 @@ } ], { - "x": -0.9594889156404067, - "y": -0.28174637666382824 + "x": -0.95949, + "y": -0.28175 }, { - "x": -0.8413514341387293, - "y": -0.5404884497125754 + "x": -0.84135, + "y": -0.54049 }, { - "x": -0.6548900097608071, - "y": -0.7557242057228878 + "x": -0.65489, + "y": -0.75572 }, { - "x": -0.41544261936243126, - "y": -0.909619387445805 + "x": -0.41544, + "y": -0.90962 }, { - "x": -0.14244424937867312, - "y": -0.9898028267382077 + "x": -0.14244, + "y": -0.9898 }, { - "x": 0.14226748683165402, - "y": -0.989828248834415 + "x": 0.14227, + "y": -0.98983 }, { - "x": 0.4152801717251148, - "y": -0.9096935632244292 + "x": 0.41528, + "y": -0.90969 }, { - "x": 0.6547550411069818, - "y": -0.7558411447817553 + "x": 0.65476, + "y": -0.75584 }, { - "x": 0.8412548995927962, - "y": -0.5406386907271011 + "x": 0.84125, + "y": -0.54064 }, { - "x": 0.9594385857064947, - "y": -0.28191771894920076 + "x": 0.95944, + "y": -0.28192 }, { - "x": 0.9999999960135898, - "y": -0.0000892906504123579 + "x": 1, + "y": -0.00009 }, { "max": { @@ -54156,12 +54156,12 @@ } }, { - "x": 542.4892269176298, - "y": 907.2629865566523 + "x": 542.48923, + "y": 907.26299 }, { - "x": 500.81010529376397, - "y": 862.2496557251754 + "x": 500.81011, + "y": 862.24966 }, { "category": 1, @@ -54178,16 +54178,16 @@ "y": 0 }, { - "x": 521.6499594859138, - "y": 883.3026556412495 + "x": 521.64996, + "y": 883.30266 }, { - "x": 1.7800982527709477, - "y": 1.6266042288057112 + "x": 1.7801, + "y": 1.6266 }, { - "x": 521.6505462463477, - "y": 880.3953246419209 + "x": 521.65055, + "y": 880.39532 }, { "endCol": 11, @@ -54210,8 +54210,8 @@ "yScale": 1 }, { - "x": -0.0005867604339914579, - "y": 2.907330999328687 + "x": -0.00059, + "y": 2.90733 }, [ { @@ -54285,169 +54285,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 542.4892269176298, - "y": 886.2967949014422 + "x": 542.48923, + "y": 886.29679 }, { "body": null, "index": 1, "isInternal": false, - "x": 540.8007403456025, - "y": 892.0469456904291 + "x": 540.80074, + "y": 892.04695 }, { "body": null, "index": 2, "isInternal": false, - "x": 537.5621904726834, - "y": 897.0882348827503 + "x": 537.56219, + "y": 897.08823 }, { "body": null, "index": 3, "isInternal": false, - "x": 533.0335408672499, - "y": 901.0126392644632 + "x": 533.03354, + "y": 901.01264 }, { "body": null, "index": 4, "isInternal": false, - "x": 527.5827631334088, - "y": 903.5021259778765 + "x": 527.58276, + "y": 903.50213 }, { "body": null, "index": 5, "isInternal": false, - "x": 521.6518393219768, - "y": 904.3556555573236 + "x": 521.65184, + "y": 904.35566 }, { "body": null, "index": 6, "isInternal": false, - "x": 515.7207631806955, - "y": 903.5031851435717 + "x": 515.72076, + "y": 903.50319 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.2695409579966, - "y": 901.0146718768293 + "x": 510.26954, + "y": 901.01467 }, { "body": null, "index": 8, "isInternal": false, - "x": 505.7401905995387, - "y": 897.0910762898276 + "x": 505.74019, + "y": 897.09108 }, { "body": null, "index": 9, "isInternal": false, - "x": 502.500740498282, - "y": 892.0503655223399 + "x": 502.50074, + "y": 892.05037 }, { "body": null, "index": 10, "isInternal": false, - "x": 500.8112270837752, - "y": 886.3005163571703 + "x": 500.81123, + "y": 886.30052 }, { "body": null, "index": 11, "isInternal": false, - "x": 500.81069205419794, - "y": 880.3085163810568 + "x": 500.81069, + "y": 880.30852 }, { "body": null, "index": 12, "isInternal": false, - "x": 502.4991786262251, - "y": 874.55836559207 + "x": 502.49918, + "y": 874.55837 }, { "body": null, "index": 13, "isInternal": false, - "x": 505.7377284991443, - "y": 869.5170763997488 + "x": 505.73773, + "y": 869.51708 }, { "body": null, "index": 14, "isInternal": false, - "x": 510.2663781045776, - "y": 865.5926720180358 + "x": 510.26638, + "y": 865.59267 }, { "body": null, "index": 15, "isInternal": false, - "x": 515.7171558384188, - "y": 863.1031853046226 + "x": 515.71716, + "y": 863.10319 }, { "body": null, "index": 16, "isInternal": false, - "x": 521.6480796498507, - "y": 862.2496557251754 + "x": 521.64808, + "y": 862.24966 }, { "body": null, "index": 17, "isInternal": false, - "x": 527.5791557911322, - "y": 863.1021261389274 + "x": 527.57916, + "y": 863.10213 }, { "body": null, "index": 18, "isInternal": false, - "x": 533.0303780138311, - "y": 865.5906394056698 + "x": 533.03038, + "y": 865.59064 }, { "body": null, "index": 19, "isInternal": false, - "x": 537.5597283722889, - "y": 869.5142349926715 + "x": 537.55973, + "y": 869.51423 }, { "body": null, "index": 20, "isInternal": false, - "x": 540.7991784735456, - "y": 874.5549457601592 + "x": 540.79918, + "y": 874.55495 }, { "body": null, "index": 21, "isInternal": false, - "x": 542.4886918880525, - "y": 880.3047949253288 + "x": 542.48869, + "y": 880.30479 }, { - "angle": 0.00011666182351236721, - "anglePrev": -0.000057590549685283235, - "angularSpeed": 0.00011666182351236721, - "angularVelocity": -0.0011169576264267193, - "area": 778.398134, + "angle": 0.00012, + "anglePrev": -0.00006, + "angularSpeed": 0.00012, + "angularVelocity": -0.00112, + "area": 778.39813, "axes": { "#": 6090 }, "bounds": { "#": 6099 }, - "circleRadius": 15.94579475308642, + "circleRadius": 15.94579, "collisionFilter": { "#": 6102 }, @@ -54462,13 +54462,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 123, - "inertia": 385.78216043090396, - "inverseInertia": 0.002592136450485523, - "inverseMass": 1.2846896161752617, + "inertia": 385.78216, + "inverseInertia": 0.00259, + "inverseMass": 1.28469, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.778398134, + "mass": 0.7784, "motion": 0, "parent": null, "position": { @@ -54490,7 +54490,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90773041704847, + "speed": 2.90773, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54529,36 +54529,36 @@ } ], { - "x": -0.9238291721156244, - "y": -0.38280499049536953 + "x": -0.92383, + "y": -0.3828 }, { - "x": -0.7070242840083685, - "y": -0.7071892687410166 + "x": -0.70702, + "y": -0.70719 }, { - "x": -0.3825894288857221, - "y": -0.9239184644247007 + "x": -0.38259, + "y": -0.92392 }, { - "x": 0.00011666182324773967, - "y": -0.9999999931950094 + "x": 0.00012, + "y": -1 }, { - "x": 0.38280499049536953, - "y": -0.9238291721156244 + "x": 0.3828, + "y": -0.92383 }, { - "x": 0.7071892687410166, - "y": -0.7070242840083685 + "x": 0.70719, + "y": -0.70702 }, { - "x": 0.9239184644247007, - "y": -0.3825894288857221 + "x": 0.92392, + "y": -0.38259 }, { - "x": 0.9999999931950094, - "y": 0.00011666182324773967 + "x": 1, + "y": 0.00012 }, { "max": { @@ -54569,12 +54569,12 @@ } }, { - "x": 561.3575750069107, - "y": 857.8937555270679 + "x": 561.35758, + "y": 857.89376 }, { - "x": 530.0752432606921, - "y": 823.7073016890901 + "x": 530.07524, + "y": 823.7073 }, { "category": 1, @@ -54591,16 +54591,16 @@ "y": 0 }, { - "x": 545.714606089201, - "y": 839.3466645175989 + "x": 545.71461, + "y": 839.34666 }, { "x": 0, - "y": 0.9441608123191925 + "y": 0.94416 }, { - "x": 545.7091749171008, - "y": 836.4389361237213 + "x": 545.70917, + "y": 836.43894 }, { "endCol": 11, @@ -54623,8 +54623,8 @@ "yScale": 1 }, { - "x": -0.03471364840368096, - "y": 2.914393481763909 + "x": -0.03471, + "y": 2.91439 }, [ { @@ -54680,127 +54680,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 561.3532430478456, - "y": 842.4594889706824 + "x": 561.35324, + "y": 842.45949 }, { "body": null, "index": 1, "isInternal": false, - "x": 558.9715724918883, - "y": 848.2072111597662 + "x": 558.97157, + "y": 848.20721 }, { "body": null, "index": 2, "isInternal": false, - "x": 554.572059326463, - "y": 852.6056979344705 + "x": 554.57206, + "y": 852.6057 }, { "body": null, "index": 3, "isInternal": false, - "x": 548.8237815937769, - "y": 854.9860273461078 + "x": 548.82378, + "y": 854.98603 }, { "body": null, "index": 4, "isInternal": false, - "x": 542.6017816361175, - "y": 854.9853014762435 + "x": 542.60178, + "y": 854.9853 }, { "body": null, "index": 5, "isInternal": false, - "x": 536.8540594470337, - "y": 852.6036309202863 + "x": 536.85406, + "y": 852.60363 }, { "body": null, "index": 6, "isInternal": false, - "x": 532.4555726723294, - "y": 848.2041177548609 + "x": 532.45557, + "y": 848.20412 }, { "body": null, "index": 7, "isInternal": false, - "x": 530.0752432606921, - "y": 842.4558400221748 + "x": 530.07524, + "y": 842.45584 }, { "body": null, "index": 8, "isInternal": false, - "x": 530.0759691305564, - "y": 836.2338400645154 + "x": 530.07597, + "y": 836.23384 }, { "body": null, "index": 9, "isInternal": false, - "x": 532.4576396865136, - "y": 830.4861178754317 + "x": 532.45764, + "y": 830.48612 }, { "body": null, "index": 10, "isInternal": false, - "x": 536.857152851939, - "y": 826.0876311007273 + "x": 536.85715, + "y": 826.08763 }, { "body": null, "index": 11, "isInternal": false, - "x": 542.6054305846251, - "y": 823.7073016890901 + "x": 542.60543, + "y": 823.7073 }, { "body": null, "index": 12, "isInternal": false, - "x": 548.8274305422844, - "y": 823.7080275589543 + "x": 548.82743, + "y": 823.70803 }, { "body": null, "index": 13, "isInternal": false, - "x": 554.5751527313682, - "y": 826.0896981149116 + "x": 554.57515, + "y": 826.0897 }, { "body": null, "index": 14, "isInternal": false, - "x": 558.9736395060726, - "y": 830.4892112803369 + "x": 558.97364, + "y": 830.48921 }, { "body": null, "index": 15, "isInternal": false, - "x": 561.3539689177098, - "y": 836.237489013023 + "x": 561.35397, + "y": 836.23749 }, { - "angle": -0.0010030644134434987, - "anglePrev": -0.000006771698192760376, - "angularSpeed": 0.0009962927152507384, - "angularVelocity": -0.0009962927152507384, - "area": 844.5415139999999, + "angle": -0.001, + "anglePrev": -0.00001, + "angularSpeed": 0.001, + "angularVelocity": -0.001, + "area": 844.54151, "axes": { "#": 6130 }, "bounds": { "#": 6140 }, - "circleRadius": 16.56397890946502, + "circleRadius": 16.56398, "collisionFilter": { "#": 6143 }, @@ -54815,13 +54815,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 124, - "inertia": 454.10729029624963, - "inverseInertia": 0.002202122761225925, - "inverseMass": 1.1840744160268717, + "inertia": 454.10729, + "inverseInertia": 0.0022, + "inverseMass": 1.18407, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8445415139999999, + "mass": 0.84454, "motion": 0, "parent": null, "position": { @@ -54843,7 +54843,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8978481400152662, + "speed": 2.89785, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54885,40 +54885,40 @@ } ], { - "x": -0.9400699260240868, - "y": -0.34098172118908043 + "x": -0.94007, + "y": -0.34098 }, { - "x": -0.766681298338413, - "y": -0.6420278707175612 + "x": -0.76668, + "y": -0.64203 }, { - "x": -0.5008216432027012, - "y": -0.8655505078848641 + "x": -0.50082, + "y": -0.86555 }, { - "x": -0.17465406283024534, - "y": -0.9846298585442596 + "x": -0.17465, + "y": -0.98463 }, { - "x": 0.1726784183600148, - "y": -0.9849782555126197 + "x": 0.17268, + "y": -0.98498 }, { - "x": 0.49908423075116304, - "y": -0.8665534782201958 + "x": 0.49908, + "y": -0.86655 }, { - "x": 0.7653917658090401, - "y": -0.6435646392024033 + "x": 0.76539, + "y": -0.64356 }, { - "x": 0.9393839815426775, - "y": -0.3428669351527299 + "x": 0.93938, + "y": -0.34287 }, { - "x": 0.9999994969309334, - "y": -0.0010030642452399337 + "x": 1, + "y": -0.001 }, { "max": { @@ -54929,12 +54929,12 @@ } }, { - "x": 603.0110553303433, - "y": 862.3787640375328 + "x": 603.01106, + "y": 862.37876 }, { - "x": 570.3522124772122, - "y": 826.3530785729903 + "x": 570.35221, + "y": 826.35308 }, { "category": 1, @@ -54951,16 +54951,16 @@ "y": 0 }, { - "x": 586.6961787236366, - "y": 842.9170702401542 + "x": 586.69618, + "y": 842.91707 }, { - "x": -0.19649217593703236, - "y": 1.1142424191023903 + "x": -0.19649, + "y": 1.11424 }, { - "x": 586.7252683633544, - "y": 840.0193681099395 + "x": 586.72527, + "y": 840.01937 }, { "endCol": 12, @@ -54983,8 +54983,8 @@ "yScale": 1 }, { - "x": -0.029089639717782348, - "y": 2.897702130214738 + "x": -0.02909, + "y": 2.8977 }, [ { @@ -55046,141 +55046,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 603.0110553303433, - "y": 845.7767068093591 + "x": 603.01106, + "y": 845.77671 }, { "body": null, "index": 1, "isInternal": false, - "x": 601.04947888519, - "y": 851.1846771171383 + "x": 601.04948, + "y": 851.18468 }, { "body": null, "index": 2, "isInternal": false, - "x": 597.3559012496681, - "y": 855.5953842316917 + "x": 597.3559, + "y": 855.59538 }, { "body": null, "index": 3, "isInternal": false, - "x": 592.3767885687275, - "y": 858.476380050935 + "x": 592.37679, + "y": 858.47638 }, { "body": null, "index": 4, "isInternal": false, - "x": 586.7127934797948, - "y": 859.4810619073181 + "x": 586.71279, + "y": 859.48106 }, { "body": null, "index": 5, "isInternal": false, - "x": 581.0467942685001, - "y": 858.4877447688335 + "x": 581.04679, + "y": 858.48774 }, { "body": null, "index": 6, "isInternal": false, - "x": 576.0619119620209, - "y": 855.6167434817298 + "x": 576.06191, + "y": 855.61674 }, { "body": null, "index": 7, "isInternal": false, - "x": 572.3594933182414, - "y": 851.2134550303342 + "x": 572.35949, + "y": 851.21346 }, { "body": null, "index": 8, "isInternal": false, - "x": 570.3870717424686, - "y": 845.8094307772959 + "x": 570.38707, + "y": 845.80943 }, { "body": null, "index": 9, "isInternal": false, - "x": 570.38130211693, - "y": 840.0574336709493 + "x": 570.3813, + "y": 840.05743 }, { "body": null, "index": 10, "isInternal": false, - "x": 572.3428785620833, - "y": 834.6494633631701 + "x": 572.34288, + "y": 834.64946 }, { "body": null, "index": 11, "isInternal": false, - "x": 576.0364561976052, - "y": 830.2387562486167 + "x": 576.03646, + "y": 830.23876 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.0155688785458, - "y": 827.3577604293735 + "x": 581.01557, + "y": 827.35776 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.6795639674785, - "y": 826.3530785729903 + "x": 586.67956, + "y": 826.35308 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.3455631787732, - "y": 827.3463957114749 + "x": 592.34556, + "y": 827.3464 }, { "body": null, "index": 15, "isInternal": false, - "x": 597.3304454852524, - "y": 830.2173969985786 + "x": 597.33045, + "y": 830.2174 }, { "body": null, "index": 16, "isInternal": false, - "x": 601.0328641290319, - "y": 834.6206854499742 + "x": 601.03286, + "y": 834.62069 }, { "body": null, "index": 17, "isInternal": false, - "x": 603.0052857048047, - "y": 840.0247097030125 + "x": 603.00529, + "y": 840.02471 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1656.262186, + "area": 1656.26219, "axes": { "#": 6173 }, "bounds": { "#": 6186 }, - "circleRadius": 23.092656893004115, + "circleRadius": 23.09266, "collisionFilter": { "#": 6189 }, @@ -55195,13 +55195,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 125, - "inertia": 1746.424130354942, - "inverseInertia": 0.0005725985931016429, - "inverseMass": 0.6037691426229301, + "inertia": 1746.42413, + "inverseInertia": 0.00057, + "inverseMass": 0.60377, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.656262186, + "mass": 1.65626, "motion": 0, "parent": null, "position": { @@ -55223,7 +55223,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55274,48 +55274,48 @@ } ], { - "x": -0.9659369456792598, - "y": -0.2587775434071173 + "x": -0.96594, + "y": -0.25878 }, { - "x": -0.8660502374236335, - "y": -0.4999569844081269 + "x": -0.86605, + "y": -0.49996 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.4999569844081269, - "y": -0.8660502374236335 + "x": -0.49996, + "y": -0.86605 }, { - "x": -0.2587775434071173, - "y": -0.9659369456792598 + "x": -0.25878, + "y": -0.96594 }, { "x": 0, "y": -1 }, { - "x": 0.2587775434071173, - "y": -0.9659369456792598 + "x": 0.25878, + "y": -0.96594 }, { - "x": 0.4999569844081269, - "y": -0.8660502374236335 + "x": 0.49996, + "y": -0.86605 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660502374236335, - "y": -0.4999569844081269 + "x": 0.86605, + "y": -0.49996 }, { - "x": 0.9659369456792598, - "y": -0.2587775434071173 + "x": 0.96594, + "y": -0.25878 }, { "x": 1, @@ -55331,11 +55331,11 @@ }, { "x": 145.79, - "y": 934.369754767027 + "y": 934.36975 }, { "x": 100, - "y": 888.579754767027 + "y": 888.57975 }, { "category": 1, @@ -55353,7 +55353,7 @@ }, { "x": 122.895, - "y": 911.474754767027 + "y": 911.47475 }, { "x": 0, @@ -55361,7 +55361,7 @@ }, { "x": 122.895, - "y": 908.5674840519911 + "y": 908.56748 }, { "endCol": 3, @@ -55385,7 +55385,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -55466,182 +55466,182 @@ "index": 0, "isInternal": false, "x": 145.79, - "y": 914.488754767027 + "y": 914.48875 }, { "body": null, "index": 1, "isInternal": false, - "x": 144.23000000000002, - "y": 920.311754767027 + "x": 144.23, + "y": 920.31175 }, { "body": null, "index": 2, "isInternal": false, "x": 141.216, - "y": 925.532754767027 + "y": 925.53275 }, { "body": null, "index": 3, "isInternal": false, - "x": 136.95299999999997, - "y": 929.795754767027 + "x": 136.953, + "y": 929.79575 }, { "body": null, "index": 4, "isInternal": false, "x": 131.732, - "y": 932.809754767027 + "y": 932.80975 }, { "body": null, "index": 5, "isInternal": false, - "x": 125.90899999999999, - "y": 934.369754767027 + "x": 125.909, + "y": 934.36975 }, { "body": null, "index": 6, "isInternal": false, "x": 119.881, - "y": 934.369754767027 + "y": 934.36975 }, { "body": null, "index": 7, "isInternal": false, - "x": 114.05799999999999, - "y": 932.809754767027 + "x": 114.058, + "y": 932.80975 }, { "body": null, "index": 8, "isInternal": false, "x": 108.837, - "y": 929.795754767027 + "y": 929.79575 }, { "body": null, "index": 9, "isInternal": false, "x": 104.574, - "y": 925.532754767027 + "y": 925.53275 }, { "body": null, "index": 10, "isInternal": false, - "x": 101.55999999999999, - "y": 920.311754767027 + "x": 101.56, + "y": 920.31175 }, { "body": null, "index": 11, "isInternal": false, "x": 100, - "y": 914.488754767027 + "y": 914.48875 }, { "body": null, "index": 12, "isInternal": false, "x": 100, - "y": 908.460754767027 + "y": 908.46075 }, { "body": null, "index": 13, "isInternal": false, - "x": 101.55999999999999, - "y": 902.637754767027 + "x": 101.56, + "y": 902.63775 }, { "body": null, "index": 14, "isInternal": false, "x": 104.574, - "y": 897.416754767027 + "y": 897.41675 }, { "body": null, "index": 15, "isInternal": false, "x": 108.837, - "y": 893.153754767027 + "y": 893.15375 }, { "body": null, "index": 16, "isInternal": false, - "x": 114.05799999999999, - "y": 890.139754767027 + "x": 114.058, + "y": 890.13975 }, { "body": null, "index": 17, "isInternal": false, "x": 119.881, - "y": 888.579754767027 + "y": 888.57975 }, { "body": null, "index": 18, "isInternal": false, - "x": 125.90899999999999, - "y": 888.579754767027 + "x": 125.909, + "y": 888.57975 }, { "body": null, "index": 19, "isInternal": false, "x": 131.732, - "y": 890.139754767027 + "y": 890.13975 }, { "body": null, "index": 20, "isInternal": false, - "x": 136.95299999999997, - "y": 893.153754767027 + "x": 136.953, + "y": 893.15375 }, { "body": null, "index": 21, "isInternal": false, "x": 141.216, - "y": 897.416754767027 + "y": 897.41675 }, { "body": null, "index": 22, "isInternal": false, - "x": 144.23000000000002, - "y": 902.637754767027 + "x": 144.23, + "y": 902.63775 }, { "body": null, "index": 23, "isInternal": false, "x": 145.79, - "y": 908.460754767027 + "y": 908.46075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2239.2235339999997, + "area": 2239.22353, "axes": { "#": 6225 }, "bounds": { "#": 6239 }, - "circleRadius": 26.828125, + "circleRadius": 26.82813, "collisionFilter": { "#": 6242 }, @@ -55656,13 +55656,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 126, - "inertia": 3192.150135161649, - "inverseInertia": 0.00031326847349219696, - "inverseMass": 0.4465833735739936, + "inertia": 3192.15014, + "inverseInertia": 0.00031, + "inverseMass": 0.44658, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.2392235339999997, + "mass": 2.23922, "motion": 0, "parent": null, "position": { @@ -55684,7 +55684,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55738,52 +55738,52 @@ } ], { - "x": -0.9709286835003857, - "y": -0.23936894442723292 + "x": -0.97093, + "y": -0.23937 }, { - "x": -0.8854408499737555, - "y": -0.4647520857379272 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.7484916969532377, - "y": -0.6631441619980248 + "x": -0.74849, + "y": -0.66314 }, { - "x": -0.5681159217920753, - "y": -0.822948539950306 + "x": -0.56812, + "y": -0.82295 }, { - "x": -0.3546449133017613, - "y": -0.935001061747625 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12045604938082696, - "y": -0.9927186611359553 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.12045604938082696, - "y": -0.9927186611359553 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.3546449133017613, - "y": -0.935001061747625 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5681159217920753, - "y": -0.822948539950306 + "x": 0.56812, + "y": -0.82295 }, { - "x": 0.7484916969532377, - "y": -0.6631441619980248 + "x": 0.74849, + "y": -0.66314 }, { - "x": 0.8854408499737555, - "y": -0.4647520857379272 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.9709286835003857, - "y": -0.23936894442723292 + "x": 0.97093, + "y": -0.23937 }, { "x": 1, @@ -55799,11 +55799,11 @@ }, { "x": 209.056, - "y": 942.235754767027 + "y": 942.23575 }, { "x": 155.79, - "y": 888.579754767027 + "y": 888.57975 }, { "category": 1, @@ -55821,7 +55821,7 @@ }, { "x": 182.423, - "y": 915.407754767027 + "y": 915.40775 }, { "x": 0, @@ -55829,7 +55829,7 @@ }, { "x": 182.423, - "y": 912.5004840519911 + "y": 912.50048 }, { "endCol": 4, @@ -55853,7 +55853,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -55940,196 +55940,196 @@ "index": 0, "isInternal": false, "x": 209.056, - "y": 918.641754767027 + "y": 918.64175 }, { "body": null, "index": 1, "isInternal": false, "x": 207.508, - "y": 924.920754767027 + "y": 924.92075 }, { "body": null, "index": 2, "isInternal": false, "x": 204.502, - "y": 930.647754767027 + "y": 930.64775 }, { "body": null, "index": 3, "isInternal": false, "x": 200.213, - "y": 935.488754767027 + "y": 935.48875 }, { "body": null, "index": 4, "isInternal": false, "x": 194.891, - "y": 939.162754767027 + "y": 939.16275 }, { "body": null, "index": 5, "isInternal": false, "x": 188.843, - "y": 941.456754767027 + "y": 941.45675 }, { "body": null, "index": 6, "isInternal": false, "x": 182.423, - "y": 942.235754767027 + "y": 942.23575 }, { "body": null, "index": 7, "isInternal": false, - "x": 176.00300000000001, - "y": 941.456754767027 + "x": 176.003, + "y": 941.45675 }, { "body": null, "index": 8, "isInternal": false, "x": 169.955, - "y": 939.162754767027 + "y": 939.16275 }, { "body": null, "index": 9, "isInternal": false, "x": 164.633, - "y": 935.488754767027 + "y": 935.48875 }, { "body": null, "index": 10, "isInternal": false, "x": 160.344, - "y": 930.647754767027 + "y": 930.64775 }, { "body": null, "index": 11, "isInternal": false, "x": 157.338, - "y": 924.920754767027 + "y": 924.92075 }, { "body": null, "index": 12, "isInternal": false, "x": 155.79, - "y": 918.641754767027 + "y": 918.64175 }, { "body": null, "index": 13, "isInternal": false, "x": 155.79, - "y": 912.1737547670269 + "y": 912.17375 }, { "body": null, "index": 14, "isInternal": false, "x": 157.338, - "y": 905.8947547670269 + "y": 905.89475 }, { "body": null, "index": 15, "isInternal": false, "x": 160.344, - "y": 900.167754767027 + "y": 900.16775 }, { "body": null, "index": 16, "isInternal": false, "x": 164.633, - "y": 895.326754767027 + "y": 895.32675 }, { "body": null, "index": 17, "isInternal": false, "x": 169.955, - "y": 891.652754767027 + "y": 891.65275 }, { "body": null, "index": 18, "isInternal": false, - "x": 176.00300000000001, - "y": 889.358754767027 + "x": 176.003, + "y": 889.35875 }, { "body": null, "index": 19, "isInternal": false, "x": 182.423, - "y": 888.579754767027 + "y": 888.57975 }, { "body": null, "index": 20, "isInternal": false, "x": 188.843, - "y": 889.358754767027 + "y": 889.35875 }, { "body": null, "index": 21, "isInternal": false, "x": 194.891, - "y": 891.652754767027 + "y": 891.65275 }, { "body": null, "index": 22, "isInternal": false, "x": 200.213, - "y": 895.326754767027 + "y": 895.32675 }, { "body": null, "index": 23, "isInternal": false, "x": 204.502, - "y": 900.167754767027 + "y": 900.16775 }, { "body": null, "index": 24, "isInternal": false, "x": 207.508, - "y": 905.8947547670269 + "y": 905.89475 }, { "body": null, "index": 25, "isInternal": false, "x": 209.056, - "y": 912.1737547670269 + "y": 912.17375 }, { - "angle": 0.000027666682017474823, - "anglePrev": -0.0002806317699452336, - "angularSpeed": 0.000027666682017474823, - "angularVelocity": -0.00009333197556289947, - "area": 873.4059279999999, + "angle": 0.00003, + "anglePrev": -0.00028, + "angularSpeed": 0.00003, + "angularVelocity": -0.00009, + "area": 873.40593, "axes": { "#": 6280 }, "bounds": { "#": 6290 }, - "circleRadius": 16.84445730452675, + "circleRadius": 16.84446, "collisionFilter": { "#": 6293 }, @@ -56144,13 +56144,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 127, - "inertia": 485.6783448642292, - "inverseInertia": 0.002058975885119088, - "inverseMass": 1.144942996081886, + "inertia": 485.67834, + "inverseInertia": 0.00206, + "inverseMass": 1.14494, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8734059279999999, + "mass": 0.87341, "motion": 0, "parent": null, "position": { @@ -56172,7 +56172,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9092102270003215, + "speed": 2.90921, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56214,40 +56214,40 @@ } ], { - "x": -0.9396691120394898, - "y": -0.3420847261701651 + "x": -0.93967, + "y": -0.34208 }, { - "x": -0.7660135757937385, - "y": -0.6428243941386249 + "x": -0.76601, + "y": -0.64282 }, { - "x": -0.499994442705402, - "y": -0.8660286122661967 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.17348502217967873, - "y": -0.9848365077916824 + "x": -0.17349, + "y": -0.98484 }, { - "x": 0.17353951623106487, - "y": -0.9848269067741234 + "x": 0.17354, + "y": -0.98483 }, { - "x": 0.500042362216408, - "y": -0.866000944565902 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7660491442572488, - "y": -0.6427820070465076 + "x": 0.76605, + "y": -0.64278 }, { - "x": 0.9396880392996334, - "y": -0.34203273059344846 + "x": 0.93969, + "y": -0.34203 }, { - "x": 0.9999999996172774, - "y": 0.000027666682013945267 + "x": 1, + "y": 0.00003 }, { "max": { @@ -56258,12 +56258,12 @@ } }, { - "x": 253.3656181286678, - "y": 928.1559605301995 + "x": 253.36562, + "y": 928.15596 }, { - "x": 220.18606778610817, - "y": 891.5587506474446 + "x": 220.18607, + "y": 891.55875 }, { "category": 1, @@ -56280,16 +56280,16 @@ "y": 0 }, { - "x": 236.77514870480408, - "y": 908.4027506409981 + "x": 236.77515, + "y": 908.40275 }, { - "x": 0.4013369598706749, - "y": 1.0585090465275924 + "x": 0.40134, + "y": 1.05851 }, { - "x": 236.7649506451669, - "y": 905.4964231367384 + "x": 236.76495, + "y": 905.49642 }, { "endCol": 5, @@ -56312,8 +56312,8 @@ "yScale": 1 }, { - "x": -0.00226533045213273, - "y": 2.9108498508063576 + "x": -0.00227, + "y": 2.91085 }, [ { @@ -56375,141 +56375,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 253.3640677734102, - "y": 911.3282096024665 + "x": 253.36407, + "y": 911.32821 }, { "body": null, "index": 1, "isInternal": false, - "x": 251.36291569042498, - "y": 916.825154239332 + "x": 251.36292, + "y": 916.82515 }, { "body": null, "index": 2, "isInternal": false, - "x": 247.60179168979565, - "y": 921.3070501832256 + "x": 247.60179, + "y": 921.30705 }, { "body": null, "index": 3, "isInternal": false, - "x": 242.53571076668962, - "y": 924.231910022695 + "x": 242.53571, + "y": 924.23191 }, { "body": null, "index": 4, "isInternal": false, - "x": 236.77468268721225, - "y": 925.2467506345515 + "x": 236.77468, + "y": 925.24675 }, { "body": null, "index": 5, "isInternal": false, - "x": 231.01371077109934, - "y": 924.2315912471848 + "x": 231.01371, + "y": 924.23159 }, { "body": null, "index": 6, "isInternal": false, - "x": 225.9477916980831, - "y": 921.3064510888933 + "x": 225.94779, + "y": 921.30645 }, { "body": null, "index": 7, "isInternal": false, - "x": 222.18691570159132, - "y": 916.8243470362175 + "x": 222.18692, + "y": 916.82435 }, { "body": null, "index": 8, "isInternal": false, - "x": 220.18606778610817, - "y": 911.3272916772906 + "x": 220.18607, + "y": 911.32729 }, { "body": null, "index": 9, "isInternal": false, - "x": 220.18622963619796, - "y": 905.4772916795297 + "x": 220.18623, + "y": 905.47729 }, { "body": null, "index": 10, "isInternal": false, - "x": 222.18738171918318, - "y": 899.9803470426641 + "x": 222.18738, + "y": 899.98035 }, { "body": null, "index": 11, "isInternal": false, - "x": 225.94850571981252, - "y": 895.4984510987706 + "x": 225.94851, + "y": 895.49845 }, { "body": null, "index": 12, "isInternal": false, - "x": 231.01458664291854, - "y": 892.5735912593011 + "x": 231.01459, + "y": 892.57359 }, { "body": null, "index": 13, "isInternal": false, - "x": 236.77561472239591, - "y": 891.5587506474446 + "x": 236.77561, + "y": 891.55875 }, { "body": null, "index": 14, "isInternal": false, - "x": 242.53658663850882, - "y": 892.5739100348113 + "x": 242.53659, + "y": 892.57391 }, { "body": null, "index": 15, "isInternal": false, - "x": 247.60250571152505, - "y": 895.4990501931029 + "x": 247.60251, + "y": 895.49905 }, { "body": null, "index": 16, "isInternal": false, - "x": 251.36338170801685, - "y": 899.9811542457786 + "x": 251.36338, + "y": 899.98115 }, { "body": null, "index": 17, "isInternal": false, - "x": 253.3642296235, - "y": 905.4782096047055 + "x": 253.36423, + "y": 905.47821 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2211.257872, + "area": 2211.25787, "axes": { "#": 6323 }, "bounds": { "#": 6337 }, - "circleRadius": 26.66017232510288, + "circleRadius": 26.66017, "collisionFilter": { "#": 6340 }, @@ -56524,13 +56524,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 128, - "inertia": 3112.9145076000996, - "inverseInertia": 0.0003212423590684955, - "inverseMass": 0.45223129001030415, + "inertia": 3112.91451, + "inverseInertia": 0.00032, + "inverseMass": 0.45223, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.211257872, + "mass": 2.21126, "motion": 0, "parent": null, "position": { @@ -56552,7 +56552,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56606,52 +56606,52 @@ } ], { - "x": -0.9709426079703678, - "y": -0.23931245690038877 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854475241297156, - "y": -0.4647393699833883 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.748455766509334, - "y": -0.663184714524487 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5680928736896659, - "y": -0.8229644505463267 + "x": -0.56809, + "y": -0.82296 }, { - "x": -0.3545651221465421, - "y": -0.935031322554067 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12058693531691808, - "y": -0.9927027707379855 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12058693531691808, - "y": -0.9927027707379855 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.3545651221465421, - "y": -0.935031322554067 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680928736896659, - "y": -0.8229644505463267 + "x": 0.56809, + "y": -0.82296 }, { - "x": 0.748455766509334, - "y": -0.663184714524487 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8854475241297156, - "y": -0.4647393699833883 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709426079703678, - "y": -0.23931245690038877 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -56666,12 +56666,12 @@ } }, { - "x": 308.4053461267818, - "y": 958.092929372633 + "x": 308.40535, + "y": 958.09293 }, { - "x": 255.4733461267818, - "y": 904.772929372633 + "x": 255.47335, + "y": 904.77293 }, { "category": 1, @@ -56688,16 +56688,16 @@ "y": 0 }, { - "x": 281.9393461267818, - "y": 931.432929372633 + "x": 281.93935, + "y": 931.43293 }, { "x": 0, "y": 0 }, { - "x": 281.9393461267818, - "y": 928.5256586575971 + "x": 281.93935, + "y": 928.52566 }, { "endCol": 6, @@ -56721,7 +56721,7 @@ }, { "x": 0, - "y": 2.9072707150359065 + "y": 2.90727 }, [ { @@ -56807,197 +56807,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.4053461267818, - "y": 934.646929372633 + "x": 308.40535, + "y": 934.64693 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.8673461267818, - "y": 940.886929372633 + "x": 306.86735, + "y": 940.88693 }, { "body": null, "index": 2, "isInternal": false, - "x": 303.8803461267818, - "y": 946.577929372633 + "x": 303.88035, + "y": 946.57793 }, { "body": null, "index": 3, "isInternal": false, - "x": 299.6183461267818, - "y": 951.387929372633 + "x": 299.61835, + "y": 951.38793 }, { "body": null, "index": 4, "isInternal": false, - "x": 294.3293461267818, - "y": 955.038929372633 + "x": 294.32935, + "y": 955.03893 }, { "body": null, "index": 5, "isInternal": false, - "x": 288.3193461267818, - "y": 957.317929372633 + "x": 288.31935, + "y": 957.31793 }, { "body": null, "index": 6, "isInternal": false, - "x": 281.9393461267818, - "y": 958.092929372633 + "x": 281.93935, + "y": 958.09293 }, { "body": null, "index": 7, "isInternal": false, - "x": 275.5593461267818, - "y": 957.317929372633 + "x": 275.55935, + "y": 957.31793 }, { "body": null, "index": 8, "isInternal": false, - "x": 269.5493461267818, - "y": 955.038929372633 + "x": 269.54935, + "y": 955.03893 }, { "body": null, "index": 9, "isInternal": false, - "x": 264.2603461267818, - "y": 951.387929372633 + "x": 264.26035, + "y": 951.38793 }, { "body": null, "index": 10, "isInternal": false, - "x": 259.99834612678177, - "y": 946.577929372633 + "x": 259.99835, + "y": 946.57793 }, { "body": null, "index": 11, "isInternal": false, - "x": 257.0113461267818, - "y": 940.886929372633 + "x": 257.01135, + "y": 940.88693 }, { "body": null, "index": 12, "isInternal": false, - "x": 255.4733461267818, - "y": 934.646929372633 + "x": 255.47335, + "y": 934.64693 }, { "body": null, "index": 13, "isInternal": false, - "x": 255.4733461267818, - "y": 928.2189293726329 + "x": 255.47335, + "y": 928.21893 }, { "body": null, "index": 14, "isInternal": false, - "x": 257.0113461267818, - "y": 921.978929372633 + "x": 257.01135, + "y": 921.97893 }, { "body": null, "index": 15, "isInternal": false, - "x": 259.99834612678177, - "y": 916.287929372633 + "x": 259.99835, + "y": 916.28793 }, { "body": null, "index": 16, "isInternal": false, - "x": 264.2603461267818, - "y": 911.477929372633 + "x": 264.26035, + "y": 911.47793 }, { "body": null, "index": 17, "isInternal": false, - "x": 269.5493461267818, - "y": 907.826929372633 + "x": 269.54935, + "y": 907.82693 }, { "body": null, "index": 18, "isInternal": false, - "x": 275.5593461267818, - "y": 905.547929372633 + "x": 275.55935, + "y": 905.54793 }, { "body": null, "index": 19, "isInternal": false, - "x": 281.9393461267818, - "y": 904.772929372633 + "x": 281.93935, + "y": 904.77293 }, { "body": null, "index": 20, "isInternal": false, - "x": 288.3193461267818, - "y": 905.547929372633 + "x": 288.31935, + "y": 905.54793 }, { "body": null, "index": 21, "isInternal": false, - "x": 294.3293461267818, - "y": 907.826929372633 + "x": 294.32935, + "y": 907.82693 }, { "body": null, "index": 22, "isInternal": false, - "x": 299.6183461267818, - "y": 911.477929372633 + "x": 299.61835, + "y": 911.47793 }, { "body": null, "index": 23, "isInternal": false, - "x": 303.8803461267818, - "y": 916.287929372633 + "x": 303.88035, + "y": 916.28793 }, { "body": null, "index": 24, "isInternal": false, - "x": 306.8673461267818, - "y": 921.978929372633 + "x": 306.86735, + "y": 921.97893 }, { "body": null, "index": 25, "isInternal": false, - "x": 308.4053461267818, - "y": 928.2189293726329 + "x": 308.40535, + "y": 928.21893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2087.7602780000007, + "area": 2087.76028, "axes": { "#": 6378 }, "bounds": { "#": 6392 }, - "circleRadius": 25.904899691358025, + "circleRadius": 25.9049, "collisionFilter": { "#": 6395 }, @@ -57012,13 +57012,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 129, - "inertia": 2774.914907983639, - "inverseInertia": 0.00036037141071350504, - "inverseMass": 0.47898219471728054, + "inertia": 2774.91491, + "inverseInertia": 0.00036, + "inverseMass": 0.47898, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.0877602780000006, + "mass": 2.08776, "motion": 0, "parent": null, "position": { @@ -57040,7 +57040,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57094,52 +57094,52 @@ } ], { - "x": -0.9709656897513776, - "y": -0.23921878965840337 + "x": -0.97097, + "y": -0.23922 }, { - "x": -0.885414376231309, - "y": -0.46480251974674364 + "x": -0.88541, + "y": -0.4648 }, { - "x": -0.748495062942329, - "y": -0.6631403627822384 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.5681519894635099, - "y": -0.8229236397556311 + "x": -0.56815, + "y": -0.82292 }, { - "x": -0.35449012118282963, - "y": -0.9350597595789174 + "x": -0.35449, + "y": -0.93506 }, { - "x": -0.12058483282429677, - "y": -0.9927030261325572 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12058483282429677, - "y": -0.9927030261325572 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.35449012118282963, - "y": -0.9350597595789174 + "x": 0.35449, + "y": -0.93506 }, { - "x": 0.5681519894635099, - "y": -0.8229236397556311 + "x": 0.56815, + "y": -0.82292 }, { - "x": 0.748495062942329, - "y": -0.6631403627822384 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.885414376231309, - "y": -0.46480251974674364 + "x": 0.88541, + "y": -0.4648 }, { - "x": 0.9709656897513776, - "y": -0.23921878965840337 + "x": 0.97097, + "y": -0.23922 }, { "x": 1, @@ -57154,12 +57154,12 @@ } }, { - "x": 380.8175650382134, - "y": 947.0354120510063 + "x": 380.81757, + "y": 947.03541 }, { - "x": 329.3855650382134, - "y": 892.3181413359705 + "x": 329.38557, + "y": 892.31814 }, { "category": 1, @@ -57176,16 +57176,16 @@ "y": 0 }, { - "x": 355.1015650382134, - "y": 918.2231413359705 + "x": 355.10157, + "y": 918.22314 }, { - "x": 0.88541692605133, - "y": 0.7844483292209148 + "x": 0.88542, + "y": 0.78445 }, { - "x": 355.1015650382134, - "y": 915.3158706209346 + "x": 355.10157, + "y": 915.31587 }, { "endCol": 7, @@ -57209,7 +57209,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -57295,197 +57295,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 380.8175650382134, - "y": 921.3451413359704 + "x": 380.81757, + "y": 921.34514 }, { "body": null, "index": 1, "isInternal": false, - "x": 379.32356503821336, - "y": 927.4091413359705 + "x": 379.32357, + "y": 927.40914 }, { "body": null, "index": 2, "isInternal": false, - "x": 376.42056503821345, - "y": 932.9391413359705 + "x": 376.42057, + "y": 932.93914 }, { "body": null, "index": 3, "isInternal": false, - "x": 372.2795650382134, - "y": 937.6131413359705 + "x": 372.27957, + "y": 937.61314 }, { "body": null, "index": 4, "isInternal": false, - "x": 367.14056503821337, - "y": 941.1611413359705 + "x": 367.14057, + "y": 941.16114 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.30056503821345, - "y": 943.3751413359705 + "x": 361.30057, + "y": 943.37514 }, { "body": null, "index": 6, "isInternal": false, - "x": 355.1015650382134, - "y": 944.1281413359704 + "x": 355.10157, + "y": 944.12814 }, { "body": null, "index": 7, "isInternal": false, - "x": 348.9025650382134, - "y": 943.3751413359705 + "x": 348.90257, + "y": 943.37514 }, { "body": null, "index": 8, "isInternal": false, - "x": 343.0625650382134, - "y": 941.1611413359705 + "x": 343.06257, + "y": 941.16114 }, { "body": null, "index": 9, "isInternal": false, - "x": 337.9235650382134, - "y": 937.6131413359705 + "x": 337.92357, + "y": 937.61314 }, { "body": null, "index": 10, "isInternal": false, - "x": 333.7825650382134, - "y": 932.9391413359705 + "x": 333.78257, + "y": 932.93914 }, { "body": null, "index": 11, "isInternal": false, - "x": 330.8795650382134, - "y": 927.4091413359705 + "x": 330.87957, + "y": 927.40914 }, { "body": null, "index": 12, "isInternal": false, - "x": 329.3855650382134, - "y": 921.3451413359704 + "x": 329.38557, + "y": 921.34514 }, { "body": null, "index": 13, "isInternal": false, - "x": 329.3855650382134, - "y": 915.1011413359705 + "x": 329.38557, + "y": 915.10114 }, { "body": null, "index": 14, "isInternal": false, - "x": 330.8795650382134, - "y": 909.0371413359704 + "x": 330.87957, + "y": 909.03714 }, { "body": null, "index": 15, "isInternal": false, - "x": 333.7825650382134, - "y": 903.5071413359705 + "x": 333.78257, + "y": 903.50714 }, { "body": null, "index": 16, "isInternal": false, - "x": 337.9235650382134, - "y": 898.8331413359705 + "x": 337.92357, + "y": 898.83314 }, { "body": null, "index": 17, "isInternal": false, - "x": 343.0625650382134, - "y": 895.2851413359705 + "x": 343.06257, + "y": 895.28514 }, { "body": null, "index": 18, "isInternal": false, - "x": 348.9025650382134, - "y": 893.0711413359704 + "x": 348.90257, + "y": 893.07114 }, { "body": null, "index": 19, "isInternal": false, - "x": 355.1015650382134, - "y": 892.3181413359705 + "x": 355.10157, + "y": 892.31814 }, { "body": null, "index": 20, "isInternal": false, - "x": 361.30056503821345, - "y": 893.0711413359704 + "x": 361.30057, + "y": 893.07114 }, { "body": null, "index": 21, "isInternal": false, - "x": 367.14056503821337, - "y": 895.2851413359705 + "x": 367.14057, + "y": 895.28514 }, { "body": null, "index": 22, "isInternal": false, - "x": 372.2795650382134, - "y": 898.8331413359705 + "x": 372.27957, + "y": 898.83314 }, { "body": null, "index": 23, "isInternal": false, - "x": 376.42056503821345, - "y": 903.5071413359705 + "x": 376.42057, + "y": 903.50714 }, { "body": null, "index": 24, "isInternal": false, - "x": 379.32356503821336, - "y": 909.0371413359704 + "x": 379.32357, + "y": 909.03714 }, { "body": null, "index": 25, "isInternal": false, - "x": 380.8175650382134, - "y": 915.1011413359705 + "x": 380.81757, + "y": 915.10114 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 888.132012, + "area": 888.13201, "axes": { "#": 6433 }, "bounds": { "#": 6443 }, - "circleRadius": 16.986046810699587, + "circleRadius": 16.98605, "collisionFilter": { "#": 6446 }, @@ -57500,13 +57500,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 130, - "inertia": 502.19399774347886, - "inverseInertia": 0.0019912623497957476, - "inverseMass": 1.1259587386655308, + "inertia": 502.194, + "inverseInertia": 0.00199, + "inverseMass": 1.12596, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.888132012, + "mass": 0.88813, "motion": 0, "parent": null, "position": { @@ -57528,7 +57528,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57570,36 +57570,36 @@ } ], { - "x": -0.9396646680443769, - "y": -0.3420969330892212 + "x": -0.93966, + "y": -0.3421 }, { - "x": -0.7660353643369744, - "y": -0.6427984292024359 + "x": -0.76604, + "y": -0.6428 }, { - "x": -0.5001137705057033, - "y": -0.8659597083875026 + "x": -0.50011, + "y": -0.86596 }, { - "x": -0.17357259603329547, - "y": -0.9848210771029743 + "x": -0.17357, + "y": -0.98482 }, { - "x": 0.17357259603329547, - "y": -0.9848210771029743 + "x": 0.17357, + "y": -0.98482 }, { - "x": 0.5001137705057033, - "y": -0.8659597083875026 + "x": 0.50011, + "y": -0.86596 }, { - "x": 0.7660353643369744, - "y": -0.6427984292024359 + "x": 0.76604, + "y": -0.6428 }, { - "x": 0.9396646680443769, - "y": -0.3420969330892212 + "x": 0.93966, + "y": -0.3421 }, { "x": 1, @@ -57614,12 +57614,12 @@ } }, { - "x": 420.0540000000001, - "y": 922.551754767027 + "x": 420.054, + "y": 922.55175 }, { - "x": 386.59800000000007, - "y": 888.579754767027 + "x": 386.598, + "y": 888.57975 }, { "category": 1, @@ -57636,16 +57636,16 @@ "y": 0 }, { - "x": 403.3260000000001, - "y": 905.565754767027 + "x": 403.326, + "y": 905.56575 }, { "x": 0, "y": 0 }, { - "x": 403.3260000000001, - "y": 902.6584840519911 + "x": 403.326, + "y": 902.65848 }, { "endCol": 8, @@ -57669,7 +57669,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -57731,141 +57731,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 420.0540000000001, - "y": 908.515754767027 + "x": 420.054, + "y": 908.51575 }, { "body": null, "index": 1, "isInternal": false, - "x": 418.03600000000006, - "y": 914.058754767027 + "x": 418.036, + "y": 914.05875 }, { "body": null, "index": 2, "isInternal": false, - "x": 414.2440000000001, - "y": 918.5777547670269 + "x": 414.244, + "y": 918.57775 }, { "body": null, "index": 3, "isInternal": false, - "x": 409.1360000000001, - "y": 921.527754767027 + "x": 409.136, + "y": 921.52775 }, { "body": null, "index": 4, "isInternal": false, - "x": 403.3260000000001, - "y": 922.551754767027 + "x": 403.326, + "y": 922.55175 }, { "body": null, "index": 5, "isInternal": false, - "x": 397.5160000000001, - "y": 921.527754767027 + "x": 397.516, + "y": 921.52775 }, { "body": null, "index": 6, "isInternal": false, - "x": 392.4080000000001, - "y": 918.5777547670269 + "x": 392.408, + "y": 918.57775 }, { "body": null, "index": 7, "isInternal": false, - "x": 388.6160000000001, - "y": 914.058754767027 + "x": 388.616, + "y": 914.05875 }, { "body": null, "index": 8, "isInternal": false, - "x": 386.59800000000007, - "y": 908.515754767027 + "x": 386.598, + "y": 908.51575 }, { "body": null, "index": 9, "isInternal": false, - "x": 386.59800000000007, - "y": 902.6157547670269 + "x": 386.598, + "y": 902.61575 }, { "body": null, "index": 10, "isInternal": false, - "x": 388.6160000000001, - "y": 897.0727547670269 + "x": 388.616, + "y": 897.07275 }, { "body": null, "index": 11, "isInternal": false, - "x": 392.4080000000001, - "y": 892.553754767027 + "x": 392.408, + "y": 892.55375 }, { "body": null, "index": 12, "isInternal": false, - "x": 397.5160000000001, - "y": 889.603754767027 + "x": 397.516, + "y": 889.60375 }, { "body": null, "index": 13, "isInternal": false, - "x": 403.3260000000001, - "y": 888.579754767027 + "x": 403.326, + "y": 888.57975 }, { "body": null, "index": 14, "isInternal": false, - "x": 409.1360000000001, - "y": 889.603754767027 + "x": 409.136, + "y": 889.60375 }, { "body": null, "index": 15, "isInternal": false, - "x": 414.2440000000001, - "y": 892.553754767027 + "x": 414.244, + "y": 892.55375 }, { "body": null, "index": 16, "isInternal": false, - "x": 418.03600000000006, - "y": 897.0727547670269 + "x": 418.036, + "y": 897.07275 }, { "body": null, "index": 17, "isInternal": false, - "x": 420.0540000000001, - "y": 902.6157547670269 + "x": 420.054, + "y": 902.61575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1466.7791880000002, + "area": 1466.77919, "axes": { "#": 6476 }, "bounds": { "#": 6488 }, - "circleRadius": 21.75546553497942, + "circleRadius": 21.75547, "collisionFilter": { "#": 6491 }, @@ -57880,13 +57880,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 131, - "inertia": 1369.701119864889, - "inverseInertia": 0.0007300862834211909, - "inverseMass": 0.6817658773598578, + "inertia": 1369.70112, + "inverseInertia": 0.00073, + "inverseMass": 0.68177, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4667791880000003, + "mass": 1.46678, "motion": 0, "parent": null, "position": { @@ -57908,7 +57908,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57956,44 +57956,44 @@ } ], { - "x": -0.9594811271190482, - "y": -0.2817728991623589 + "x": -0.95948, + "y": -0.28177 }, { - "x": -0.8412991486989921, - "y": -0.5405698311951483 + "x": -0.8413, + "y": -0.54057 }, { - "x": -0.6548383126065617, - "y": -0.7557690019725546 + "x": -0.65484, + "y": -0.75577 }, { - "x": -0.4153475465770035, - "y": -0.9096628032147208 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.14228047679615582, - "y": -0.9898263817067409 + "x": -0.14228, + "y": -0.98983 }, { - "x": 0.14228047679615582, - "y": -0.9898263817067409 + "x": 0.14228, + "y": -0.98983 }, { - "x": 0.4153475465770035, - "y": -0.9096628032147208 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6548383126065617, - "y": -0.7557690019725546 + "x": 0.65484, + "y": -0.75577 }, { - "x": 0.8412991486989921, - "y": -0.5405698311951483 + "x": 0.8413, + "y": -0.54057 }, { - "x": 0.9594811271190482, - "y": -0.2817728991623589 + "x": 0.95948, + "y": -0.28177 }, { "x": 1, @@ -58008,12 +58008,12 @@ } }, { - "x": 473.12200000000007, - "y": 932.089754767027 + "x": 473.122, + "y": 932.08975 }, { - "x": 430.0540000000001, - "y": 888.579754767027 + "x": 430.054, + "y": 888.57975 }, { "category": 1, @@ -58030,16 +58030,16 @@ "y": 0 }, { - "x": 451.5880000000001, - "y": 910.334754767027 + "x": 451.588, + "y": 910.33475 }, { "x": 0, "y": 0 }, { - "x": 451.5880000000001, - "y": 907.4274840519911 + "x": 451.588, + "y": 907.42748 }, { "endCol": 9, @@ -58063,7 +58063,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -58137,169 +58137,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 473.12200000000007, - "y": 913.430754767027 + "x": 473.122, + "y": 913.43075 }, { "body": null, "index": 1, "isInternal": false, - "x": 471.37700000000007, - "y": 919.372754767027 + "x": 471.377, + "y": 919.37275 }, { "body": null, "index": 2, "isInternal": false, - "x": 468.0300000000001, - "y": 924.581754767027 + "x": 468.03, + "y": 924.58175 }, { "body": null, "index": 3, "isInternal": false, - "x": 463.3500000000001, - "y": 928.636754767027 + "x": 463.35, + "y": 928.63675 }, { "body": null, "index": 4, "isInternal": false, - "x": 457.7170000000001, - "y": 931.208754767027 + "x": 457.717, + "y": 931.20875 }, { "body": null, "index": 5, "isInternal": false, - "x": 451.5880000000001, - "y": 932.089754767027 + "x": 451.588, + "y": 932.08975 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.45900000000006, - "y": 931.208754767027 + "x": 445.459, + "y": 931.20875 }, { "body": null, "index": 7, "isInternal": false, - "x": 439.8260000000001, - "y": 928.636754767027 + "x": 439.826, + "y": 928.63675 }, { "body": null, "index": 8, "isInternal": false, - "x": 435.1460000000001, - "y": 924.581754767027 + "x": 435.146, + "y": 924.58175 }, { "body": null, "index": 9, "isInternal": false, - "x": 431.7990000000001, - "y": 919.372754767027 + "x": 431.799, + "y": 919.37275 }, { "body": null, "index": 10, "isInternal": false, - "x": 430.0540000000001, - "y": 913.430754767027 + "x": 430.054, + "y": 913.43075 }, { "body": null, "index": 11, "isInternal": false, - "x": 430.0540000000001, - "y": 907.238754767027 + "x": 430.054, + "y": 907.23875 }, { "body": null, "index": 12, "isInternal": false, - "x": 431.7990000000001, - "y": 901.296754767027 + "x": 431.799, + "y": 901.29675 }, { "body": null, "index": 13, "isInternal": false, - "x": 435.1460000000001, - "y": 896.087754767027 + "x": 435.146, + "y": 896.08775 }, { "body": null, "index": 14, "isInternal": false, - "x": 439.8260000000001, - "y": 892.032754767027 + "x": 439.826, + "y": 892.03275 }, { "body": null, "index": 15, "isInternal": false, - "x": 445.45900000000006, - "y": 889.460754767027 + "x": 445.459, + "y": 889.46075 }, { "body": null, "index": 16, "isInternal": false, - "x": 451.5880000000001, - "y": 888.579754767027 + "x": 451.588, + "y": 888.57975 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.7170000000001, - "y": 889.460754767027 + "x": 457.717, + "y": 889.46075 }, { "body": null, "index": 18, "isInternal": false, - "x": 463.3500000000001, - "y": 892.032754767027 + "x": 463.35, + "y": 892.03275 }, { "body": null, "index": 19, "isInternal": false, - "x": 468.0300000000001, - "y": 896.087754767027 + "x": 468.03, + "y": 896.08775 }, { "body": null, "index": 20, "isInternal": false, - "x": 471.37700000000007, - "y": 901.296754767027 + "x": 471.377, + "y": 901.29675 }, { "body": null, "index": 21, "isInternal": false, - "x": 473.12200000000007, - "y": 907.238754767027 + "x": 473.122, + "y": 907.23875 }, { - "angle": -0.00001490285098272801, - "anglePrev": -0.00000998507574008577, - "angularSpeed": 0.000004917775242642242, - "angularVelocity": -0.000004917775242642242, - "area": 1020.8739640000001, + "angle": -0.00001, + "anglePrev": -0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1020.87396, "axes": { "#": 6525 }, "bounds": { "#": 6536 }, - "circleRadius": 18.176118827160494, + "circleRadius": 18.17612, "collisionFilter": { "#": 6539 }, @@ -58314,13 +58314,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 132, - "inertia": 663.511049477857, - "inverseInertia": 0.0015071339064917449, - "inverseMass": 0.9795528490919568, + "inertia": 663.51105, + "inverseInertia": 0.00151, + "inverseMass": 0.97955, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0208739640000002, + "mass": 1.02087, "motion": 0, "parent": null, "position": { @@ -58342,7 +58342,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907498180149676, + "speed": 2.9075, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58387,44 +58387,44 @@ } ], { - "x": -0.9510864712553813, - "y": -0.3089247872783717 + "x": -0.95109, + "y": -0.30892 }, { - "x": -0.8089501208792761, - "y": -0.5878772847537187 + "x": -0.80895, + "y": -0.58788 }, { - "x": -0.5879013958187939, - "y": -0.8089325984248095 + "x": -0.5879, + "y": -0.80893 }, { - "x": -0.3089531349410518, - "y": -0.95107726311278 + "x": -0.30895, + "y": -0.95108 }, { - "x": -0.000014902850982176372, - "y": -0.9999999998889525 + "x": -0.00001, + "y": -1 }, { - "x": 0.3089247872783717, - "y": -0.9510864712553813 + "x": 0.30892, + "y": -0.95109 }, { - "x": 0.5878772847537187, - "y": -0.8089501208792761 + "x": 0.58788, + "y": -0.80895 }, { - "x": 0.8089325984248095, - "y": -0.5879013958187939 + "x": 0.80893, + "y": -0.5879 }, { - "x": 0.95107726311278, - "y": -0.3089531349410518 + "x": 0.95108, + "y": -0.30895 }, { - "x": 0.9999999998889525, - "y": -0.000014902850982176372 + "x": 1, + "y": -0.00001 }, { "max": { @@ -58435,12 +58435,12 @@ } }, { - "x": 516.263023636897, - "y": 946.6051757554998 + "x": 516.26302, + "y": 946.60518 }, { - "x": 480.3587801073084, - "y": 907.793592846063 + "x": 480.35878, + "y": 907.79359 }, { "category": 1, @@ -58457,16 +58457,16 @@ "y": 0 }, { - "x": 498.3109812700853, - "y": 925.7456352128747 + "x": 498.31098, + "y": 925.74564 }, { - "x": -0.3833114382317668, - "y": 2.665895357059373 + "x": -0.38331, + "y": 2.6659 }, { - "x": 498.3111400660503, - "y": 922.8381370370614 + "x": 498.31114, + "y": 922.83814 }, { "endCol": 10, @@ -58489,8 +58489,8 @@ "yScale": 1 }, { - "x": -0.00015879596502372807, - "y": 2.9074981758132745 + "x": -0.00016, + "y": 2.9075 }, [ { @@ -58558,155 +58558,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 516.263023636897, - "y": 928.5883676765782 + "x": 516.26302, + "y": 928.58837 }, { "body": null, "index": 1, "isInternal": false, - "x": 514.5061042466131, - "y": 933.9973938602866 + "x": 514.5061, + "y": 933.99739 }, { "body": null, "index": 2, "isInternal": false, - "x": 511.1631728000989, - "y": 938.5974436800067 + "x": 511.16317, + "y": 938.59744 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.5632226208406, - "y": 941.94051223275 + "x": 506.56322, + "y": 941.94051 }, { "body": null, "index": 4, "isInternal": false, - "x": 501.15424880575046, - "y": 943.6975928420759 + "x": 501.15425, + "y": 943.69759 }, { "body": null, "index": 5, "isInternal": false, - "x": 495.4682488063818, - "y": 943.6976775796865 + "x": 495.46825, + "y": 943.69768 }, { "body": null, "index": 6, "isInternal": false, - "x": 490.0592226226733, - "y": 941.9407581894027 + "x": 490.05922, + "y": 941.94076 }, { "body": null, "index": 7, "isInternal": false, - "x": 485.4591728029533, - "y": 938.5978267428883 + "x": 485.45917, + "y": 938.59783 }, { "body": null, "index": 8, "isInternal": false, - "x": 482.11610425021, - "y": 933.99787656363 + "x": 482.1161, + "y": 933.99788 }, { "body": null, "index": 9, "isInternal": false, - "x": 480.3590236408841, - "y": 928.5889027485399 + "x": 480.35902, + "y": 928.5889 }, { "body": null, "index": 10, "isInternal": false, - "x": 480.35893890327344, - "y": 922.9029027491713 + "x": 480.35894, + "y": 922.9029 }, { "body": null, "index": 11, "isInternal": false, - "x": 482.1158582935574, - "y": 917.4938765654629 + "x": 482.11586, + "y": 917.49388 }, { "body": null, "index": 12, "isInternal": false, - "x": 485.4587897400716, - "y": 912.8938267457428 + "x": 485.45879, + "y": 912.89383 }, { "body": null, "index": 13, "isInternal": false, - "x": 490.05873991933, - "y": 909.5507581929994 + "x": 490.05874, + "y": 909.55076 }, { "body": null, "index": 14, "isInternal": false, - "x": 495.4677137344201, - "y": 907.7936775836736 + "x": 495.46771, + "y": 907.79368 }, { "body": null, "index": 15, "isInternal": false, - "x": 501.1537137337888, - "y": 907.793592846063 + "x": 501.15371, + "y": 907.79359 }, { "body": null, "index": 16, "isInternal": false, - "x": 506.56273991749725, - "y": 909.5505122363468 + "x": 506.56274, + "y": 909.55051 }, { "body": null, "index": 17, "isInternal": false, - "x": 511.1627897372173, - "y": 912.8934436828612 + "x": 511.16279, + "y": 912.89344 }, { "body": null, "index": 18, "isInternal": false, - "x": 514.5058582899604, - "y": 917.4933938621194 + "x": 514.50586, + "y": 917.49339 }, { "body": null, "index": 19, "isInternal": false, - "x": 516.2629388992864, - "y": 922.9023676772096 + "x": 516.26294, + "y": 922.90237 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1498.420516, + "area": 1498.42052, "axes": { "#": 6571 }, "bounds": { "#": 6583 }, - "circleRadius": 21.98874742798354, + "circleRadius": 21.98875, "collisionFilter": { "#": 6586 }, @@ -58721,13 +58721,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 133, - "inertia": 1429.4328342080482, - "inverseInertia": 0.0006995781655974289, - "inverseMass": 0.6673693995257604, + "inertia": 1429.43283, + "inverseInertia": 0.0007, + "inverseMass": 0.66737, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.498420516, + "mass": 1.49842, "motion": 0, "parent": null, "position": { @@ -58749,7 +58749,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58797,44 +58797,44 @@ } ], { - "x": -0.9595027817059244, - "y": -0.28169915139842566 + "x": -0.9595, + "y": -0.2817 }, { - "x": -0.8412718937722633, - "y": -0.5406122462068628 + "x": -0.84127, + "y": -0.54061 }, { - "x": -0.6548088643782468, - "y": -0.7557945164736715 + "x": -0.65481, + "y": -0.75579 }, { - "x": -0.41542744234917584, - "y": -0.9096263189591769 + "x": -0.41543, + "y": -0.90963 }, { - "x": -0.14236077781981005, - "y": -0.9898148356831892 + "x": -0.14236, + "y": -0.98981 }, { - "x": 0.14236077781981005, - "y": -0.9898148356831892 + "x": 0.14236, + "y": -0.98981 }, { - "x": 0.41542744234917584, - "y": -0.9096263189591769 + "x": 0.41543, + "y": -0.90963 }, { - "x": 0.6548088643782468, - "y": -0.7557945164736715 + "x": 0.65481, + "y": -0.75579 }, { - "x": 0.8412718937722633, - "y": -0.5406122462068628 + "x": 0.84127, + "y": -0.54061 }, { - "x": 0.9595027817059244, - "y": -0.28169915139842566 + "x": 0.9595, + "y": -0.2817 }, { "x": 1, @@ -58850,11 +58850,11 @@ }, { "x": 572.556, - "y": 932.5577547670271 + "y": 932.55775 }, { - "x": 529.0260000000001, - "y": 888.579754767027 + "x": 529.026, + "y": 888.57975 }, { "category": 1, @@ -58872,7 +58872,7 @@ }, { "x": 550.791, - "y": 910.568754767027 + "y": 910.56875 }, { "x": 0, @@ -58880,7 +58880,7 @@ }, { "x": 550.791, - "y": 907.6614840519911 + "y": 907.66148 }, { "endCol": 11, @@ -58904,7 +58904,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -58979,168 +58979,168 @@ "index": 0, "isInternal": false, "x": 572.556, - "y": 913.697754767027 + "y": 913.69775 }, { "body": null, "index": 1, "isInternal": false, "x": 570.793, - "y": 919.702754767027 + "y": 919.70275 }, { "body": null, "index": 2, "isInternal": false, - "x": 567.4090000000001, - "y": 924.968754767027 + "x": 567.409, + "y": 924.96875 }, { "body": null, "index": 3, "isInternal": false, - "x": 562.6790000000001, - "y": 929.0667547670271 + "x": 562.679, + "y": 929.06675 }, { "body": null, "index": 4, "isInternal": false, - "x": 556.9860000000001, - "y": 931.666754767027 + "x": 556.986, + "y": 931.66675 }, { "body": null, "index": 5, "isInternal": false, "x": 550.791, - "y": 932.5577547670271 + "y": 932.55775 }, { "body": null, "index": 6, "isInternal": false, "x": 544.596, - "y": 931.666754767027 + "y": 931.66675 }, { "body": null, "index": 7, "isInternal": false, "x": 538.903, - "y": 929.0667547670271 + "y": 929.06675 }, { "body": null, "index": 8, "isInternal": false, "x": 534.173, - "y": 924.968754767027 + "y": 924.96875 }, { "body": null, "index": 9, "isInternal": false, "x": 530.789, - "y": 919.702754767027 + "y": 919.70275 }, { "body": null, "index": 10, "isInternal": false, - "x": 529.0260000000001, - "y": 913.697754767027 + "x": 529.026, + "y": 913.69775 }, { "body": null, "index": 11, "isInternal": false, - "x": 529.0260000000001, - "y": 907.439754767027 + "x": 529.026, + "y": 907.43975 }, { "body": null, "index": 12, "isInternal": false, "x": 530.789, - "y": 901.434754767027 + "y": 901.43475 }, { "body": null, "index": 13, "isInternal": false, "x": 534.173, - "y": 896.168754767027 + "y": 896.16875 }, { "body": null, "index": 14, "isInternal": false, "x": 538.903, - "y": 892.070754767027 + "y": 892.07075 }, { "body": null, "index": 15, "isInternal": false, "x": 544.596, - "y": 889.4707547670271 + "y": 889.47075 }, { "body": null, "index": 16, "isInternal": false, "x": 550.791, - "y": 888.579754767027 + "y": 888.57975 }, { "body": null, "index": 17, "isInternal": false, - "x": 556.9860000000001, - "y": 889.4707547670271 + "x": 556.986, + "y": 889.47075 }, { "body": null, "index": 18, "isInternal": false, - "x": 562.6790000000001, - "y": 892.070754767027 + "x": 562.679, + "y": 892.07075 }, { "body": null, "index": 19, "isInternal": false, - "x": 567.4090000000001, - "y": 896.168754767027 + "x": 567.409, + "y": 896.16875 }, { "body": null, "index": 20, "isInternal": false, "x": 570.793, - "y": 901.434754767027 + "y": 901.43475 }, { "body": null, "index": 21, "isInternal": false, "x": 572.556, - "y": 907.439754767027 + "y": 907.43975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2505.505032, + "area": 2505.50503, "axes": { "#": 6620 }, "bounds": { "#": 6634 }, - "circleRadius": 28.378536522633745, + "circleRadius": 28.37854, "collisionFilter": { "#": 6637 }, @@ -59155,13 +59155,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 134, - "inertia": 3996.4921843040015, - "inverseInertia": 0.00025021943091179907, - "inverseMass": 0.3991211301626314, + "inertia": 3996.49218, + "inverseInertia": 0.00025, + "inverseMass": 0.39912, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.5055050320000003, + "mass": 2.50551, "motion": 0, "parent": null, "position": { @@ -59183,7 +59183,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59237,52 +59237,52 @@ } ], { - "x": -0.9709114428121552, - "y": -0.2394388653005588 + "x": -0.97091, + "y": -0.23944 }, { - "x": -0.8854851153219822, - "y": -0.4646677420945165 + "x": -0.88549, + "y": -0.46467 }, { - "x": -0.7484969721157183, - "y": -0.663138207867411 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.5680540130587589, - "y": -0.822991274709422 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.3545969524696042, - "y": -0.9350192518334953 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12059766028596937, - "y": -0.9927014678812306 + "x": -0.1206, + "y": -0.9927 }, { - "x": 0.12059766028596937, - "y": -0.9927014678812306 + "x": 0.1206, + "y": -0.9927 }, { - "x": 0.3545969524696042, - "y": -0.9350192518334953 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680540130587589, - "y": -0.822991274709422 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7484969721157183, - "y": -0.663138207867411 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.8854851153219822, - "y": -0.4646677420945165 + "x": 0.88549, + "y": -0.46467 }, { - "x": 0.9709114428121552, - "y": -0.2394388653005588 + "x": 0.97091, + "y": -0.23944 }, { "x": 1, @@ -59297,12 +59297,12 @@ } }, { - "x": 638.9000000000001, - "y": 945.337754767027 + "x": 638.9, + "y": 945.33775 }, { "x": 582.556, - "y": 888.579754767027 + "y": 888.57975 }, { "category": 1, @@ -59319,16 +59319,16 @@ "y": 0 }, { - "x": 610.7280000000001, - "y": 916.958754767027 + "x": 610.728, + "y": 916.95875 }, { "x": 0, "y": 0 }, { - "x": 610.7280000000001, - "y": 914.0514840519911 + "x": 610.728, + "y": 914.05148 }, { "endCol": 13, @@ -59352,7 +59352,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -59438,197 +59438,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.9000000000001, - "y": 920.3797547670271 + "x": 638.9, + "y": 920.37975 }, { "body": null, "index": 1, "isInternal": false, - "x": 637.2620000000001, - "y": 927.021754767027 + "x": 637.262, + "y": 927.02175 }, { "body": null, "index": 2, "isInternal": false, - "x": 634.0830000000001, - "y": 933.079754767027 + "x": 634.083, + "y": 933.07975 }, { "body": null, "index": 3, "isInternal": false, "x": 629.546, - "y": 938.200754767027 + "y": 938.20075 }, { "body": null, "index": 4, "isInternal": false, "x": 623.916, - "y": 942.0867547670271 + "y": 942.08675 }, { "body": null, "index": 5, "isInternal": false, - "x": 617.5190000000001, - "y": 944.512754767027 + "x": 617.519, + "y": 944.51275 }, { "body": null, "index": 6, "isInternal": false, - "x": 610.7280000000001, - "y": 945.337754767027 + "x": 610.728, + "y": 945.33775 }, { "body": null, "index": 7, "isInternal": false, "x": 603.937, - "y": 944.512754767027 + "y": 944.51275 }, { "body": null, "index": 8, "isInternal": false, - "x": 597.5400000000001, - "y": 942.0867547670271 + "x": 597.54, + "y": 942.08675 }, { "body": null, "index": 9, "isInternal": false, - "x": 591.9100000000001, - "y": 938.200754767027 + "x": 591.91, + "y": 938.20075 }, { "body": null, "index": 10, "isInternal": false, "x": 587.373, - "y": 933.079754767027 + "y": 933.07975 }, { "body": null, "index": 11, "isInternal": false, - "x": 584.1940000000001, - "y": 927.021754767027 + "x": 584.194, + "y": 927.02175 }, { "body": null, "index": 12, "isInternal": false, "x": 582.556, - "y": 920.3797547670271 + "y": 920.37975 }, { "body": null, "index": 13, "isInternal": false, "x": 582.556, - "y": 913.537754767027 + "y": 913.53775 }, { "body": null, "index": 14, "isInternal": false, - "x": 584.1940000000001, - "y": 906.895754767027 + "x": 584.194, + "y": 906.89575 }, { "body": null, "index": 15, "isInternal": false, "x": 587.373, - "y": 900.837754767027 + "y": 900.83775 }, { "body": null, "index": 16, "isInternal": false, - "x": 591.9100000000001, - "y": 895.716754767027 + "x": 591.91, + "y": 895.71675 }, { "body": null, "index": 17, "isInternal": false, - "x": 597.5400000000001, - "y": 891.830754767027 + "x": 597.54, + "y": 891.83075 }, { "body": null, "index": 18, "isInternal": false, "x": 603.937, - "y": 889.404754767027 + "y": 889.40475 }, { "body": null, "index": 19, "isInternal": false, - "x": 610.7280000000001, - "y": 888.579754767027 + "x": 610.728, + "y": 888.57975 }, { "body": null, "index": 20, "isInternal": false, - "x": 617.5190000000001, - "y": 889.404754767027 + "x": 617.519, + "y": 889.40475 }, { "body": null, "index": 21, "isInternal": false, "x": 623.916, - "y": 891.830754767027 + "y": 891.83075 }, { "body": null, "index": 22, "isInternal": false, "x": 629.546, - "y": 895.716754767027 + "y": 895.71675 }, { "body": null, "index": 23, "isInternal": false, - "x": 634.0830000000001, - "y": 900.837754767027 + "x": 634.083, + "y": 900.83775 }, { "body": null, "index": 24, "isInternal": false, - "x": 637.2620000000001, - "y": 906.895754767027 + "x": 637.262, + "y": 906.89575 }, { "body": null, "index": 25, "isInternal": false, - "x": 638.9000000000001, - "y": 913.537754767027 + "x": 638.9, + "y": 913.53775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1735.9463039999998, + "area": 1735.9463, "axes": { "#": 6675 }, "bounds": { "#": 6688 }, - "circleRadius": 23.641782407407405, + "circleRadius": 23.64178, "collisionFilter": { "#": 6691 }, @@ -59643,13 +59643,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 135, - "inertia": 1918.5102571158823, - "inverseInertia": 0.0005212377657564944, - "inverseMass": 0.5760546842352101, + "inertia": 1918.51026, + "inverseInertia": 0.00052, + "inverseMass": 0.57605, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7359463039999998, + "mass": 1.73595, "motion": 0, "parent": null, "position": { @@ -59671,7 +59671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59722,48 +59722,48 @@ } ], { - "x": -0.9658952408079529, - "y": -0.2589331647057727 + "x": -0.9659, + "y": -0.25893 }, { - "x": -0.8660209970018438, - "y": -0.5000076326936743 + "x": -0.86602, + "y": -0.50001 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000076326936743, - "y": -0.8660209970018438 + "x": -0.50001, + "y": -0.86602 }, { - "x": -0.2589331647057727, - "y": -0.9658952408079529 + "x": -0.25893, + "y": -0.9659 }, { "x": 0, "y": -1 }, { - "x": 0.2589331647057727, - "y": -0.9658952408079529 + "x": 0.25893, + "y": -0.9659 }, { - "x": 0.5000076326936743, - "y": -0.8660209970018438 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660209970018438, - "y": -0.5000076326936743 + "x": 0.86602, + "y": -0.50001 }, { - "x": 0.9658952408079529, - "y": -0.2589331647057727 + "x": 0.9659, + "y": -0.25893 }, { "x": 1, @@ -59779,11 +59779,11 @@ }, { "x": 146.88, - "y": 1002.2177547670271 + "y": 1002.21775 }, { "x": 100, - "y": 955.337754767027 + "y": 955.33775 }, { "category": 1, @@ -59801,7 +59801,7 @@ }, { "x": 123.44, - "y": 978.7777547670271 + "y": 978.77775 }, { "x": 0, @@ -59809,7 +59809,7 @@ }, { "x": 123.44, - "y": 975.8704840519912 + "y": 975.87048 }, { "endCol": 3, @@ -59833,7 +59833,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -59914,182 +59914,182 @@ "index": 0, "isInternal": false, "x": 146.88, - "y": 981.8637547670271 + "y": 981.86375 }, { "body": null, "index": 1, "isInternal": false, - "x": 145.28199999999998, - "y": 987.8247547670271 + "x": 145.282, + "y": 987.82475 }, { "body": null, "index": 2, "isInternal": false, "x": 142.196, - "y": 993.1697547670271 + "y": 993.16975 }, { "body": null, "index": 3, "isInternal": false, "x": 137.832, - "y": 997.5337547670271 + "y": 997.53375 }, { "body": null, "index": 4, "isInternal": false, "x": 132.487, - "y": 1000.6197547670271 + "y": 1000.61975 }, { "body": null, "index": 5, "isInternal": false, "x": 126.526, - "y": 1002.2177547670271 + "y": 1002.21775 }, { "body": null, "index": 6, "isInternal": false, "x": 120.354, - "y": 1002.2177547670271 + "y": 1002.21775 }, { "body": null, "index": 7, "isInternal": false, "x": 114.393, - "y": 1000.6197547670271 + "y": 1000.61975 }, { "body": null, "index": 8, "isInternal": false, "x": 109.048, - "y": 997.5337547670271 + "y": 997.53375 }, { "body": null, "index": 9, "isInternal": false, "x": 104.684, - "y": 993.1697547670271 + "y": 993.16975 }, { "body": null, "index": 10, "isInternal": false, "x": 101.598, - "y": 987.8247547670271 + "y": 987.82475 }, { "body": null, "index": 11, "isInternal": false, "x": 100, - "y": 981.8637547670271 + "y": 981.86375 }, { "body": null, "index": 12, "isInternal": false, "x": 100, - "y": 975.6917547670271 + "y": 975.69175 }, { "body": null, "index": 13, "isInternal": false, "x": 101.598, - "y": 969.7307547670271 + "y": 969.73075 }, { "body": null, "index": 14, "isInternal": false, "x": 104.684, - "y": 964.385754767027 + "y": 964.38575 }, { "body": null, "index": 15, "isInternal": false, "x": 109.048, - "y": 960.0217547670271 + "y": 960.02175 }, { "body": null, "index": 16, "isInternal": false, "x": 114.393, - "y": 956.9357547670271 + "y": 956.93575 }, { "body": null, "index": 17, "isInternal": false, "x": 120.354, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 18, "isInternal": false, "x": 126.526, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 19, "isInternal": false, "x": 132.487, - "y": 956.9357547670271 + "y": 956.93575 }, { "body": null, "index": 20, "isInternal": false, "x": 137.832, - "y": 960.0217547670271 + "y": 960.02175 }, { "body": null, "index": 21, "isInternal": false, "x": 142.196, - "y": 964.385754767027 + "y": 964.38575 }, { "body": null, "index": 22, "isInternal": false, - "x": 145.28199999999998, - "y": 969.7307547670271 + "x": 145.282, + "y": 969.73075 }, { "body": null, "index": 23, "isInternal": false, "x": 146.88, - "y": 975.6917547670271 + "y": 975.69175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1479.9061220000003, + "area": 1479.90612, "axes": { "#": 6727 }, "bounds": { "#": 6739 }, - "circleRadius": 21.8525591563786, + "circleRadius": 21.85256, "collisionFilter": { "#": 6742 }, @@ -60104,13 +60104,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 136, - "inertia": 1394.3270921480123, - "inverseInertia": 0.0007171918308346596, - "inverseMass": 0.6757185372329988, + "inertia": 1394.32709, + "inverseInertia": 0.00072, + "inverseMass": 0.67572, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4799061220000003, + "mass": 1.47991, "motion": 0, "parent": null, "position": { @@ -60132,7 +60132,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60180,44 +60180,44 @@ } ], { - "x": -0.9595087445086674, - "y": -0.28167884054611 + "x": -0.95951, + "y": -0.28168 }, { - "x": -0.8412098176870567, - "y": -0.5407088335018292 + "x": -0.84121, + "y": -0.54071 }, { - "x": -0.6549121779854049, - "y": -0.7557049947740277 + "x": -0.65491, + "y": -0.7557 }, { - "x": -0.4153530977073672, - "y": -0.9096602685755238 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.14243407531189364, - "y": -0.9898042908525129 + "x": -0.14243, + "y": -0.9898 }, { - "x": 0.14243407531189364, - "y": -0.9898042908525129 + "x": 0.14243, + "y": -0.9898 }, { - "x": 0.4153530977073672, - "y": -0.9096602685755238 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6549121779854049, - "y": -0.7557049947740277 + "x": 0.65491, + "y": -0.7557 }, { - "x": 0.8412098176870567, - "y": -0.5407088335018292 + "x": 0.84121, + "y": -0.54071 }, { - "x": 0.9595087445086674, - "y": -0.28167884054611 + "x": 0.95951, + "y": -0.28168 }, { "x": 1, @@ -60233,11 +60233,11 @@ }, { "x": 200.14, - "y": 999.0437547670269 + "y": 999.04375 }, { "x": 156.88, - "y": 955.337754767027 + "y": 955.33775 }, { "category": 1, @@ -60255,7 +60255,7 @@ }, { "x": 178.51, - "y": 977.190754767027 + "y": 977.19075 }, { "x": 0, @@ -60263,7 +60263,7 @@ }, { "x": 178.51, - "y": 974.2834840519911 + "y": 974.28348 }, { "endCol": 4, @@ -60287,7 +60287,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -60362,168 +60362,168 @@ "index": 0, "isInternal": false, "x": 200.14, - "y": 980.300754767027 + "y": 980.30075 }, { "body": null, "index": 1, "isInternal": false, - "x": 198.38799999999998, - "y": 986.268754767027 + "x": 198.388, + "y": 986.26875 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.02499999999998, - "y": 991.5007547670269 + "x": 195.025, + "y": 991.50075 }, { "body": null, "index": 3, "isInternal": false, - "x": 190.32399999999998, - "y": 995.574754767027 + "x": 190.324, + "y": 995.57475 }, { "body": null, "index": 4, "isInternal": false, "x": 184.667, - "y": 998.157754767027 + "y": 998.15775 }, { "body": null, "index": 5, "isInternal": false, "x": 178.51, - "y": 999.0437547670269 + "y": 999.04375 }, { "body": null, "index": 6, "isInternal": false, - "x": 172.35299999999998, - "y": 998.157754767027 + "x": 172.353, + "y": 998.15775 }, { "body": null, "index": 7, "isInternal": false, "x": 166.696, - "y": 995.574754767027 + "y": 995.57475 }, { "body": null, "index": 8, "isInternal": false, "x": 161.995, - "y": 991.5007547670269 + "y": 991.50075 }, { "body": null, "index": 9, "isInternal": false, "x": 158.632, - "y": 986.268754767027 + "y": 986.26875 }, { "body": null, "index": 10, "isInternal": false, "x": 156.88, - "y": 980.300754767027 + "y": 980.30075 }, { "body": null, "index": 11, "isInternal": false, "x": 156.88, - "y": 974.080754767027 + "y": 974.08075 }, { "body": null, "index": 12, "isInternal": false, "x": 158.632, - "y": 968.112754767027 + "y": 968.11275 }, { "body": null, "index": 13, "isInternal": false, "x": 161.995, - "y": 962.880754767027 + "y": 962.88075 }, { "body": null, "index": 14, "isInternal": false, "x": 166.696, - "y": 958.806754767027 + "y": 958.80675 }, { "body": null, "index": 15, "isInternal": false, - "x": 172.35299999999998, - "y": 956.223754767027 + "x": 172.353, + "y": 956.22375 }, { "body": null, "index": 16, "isInternal": false, "x": 178.51, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 17, "isInternal": false, "x": 184.667, - "y": 956.223754767027 + "y": 956.22375 }, { "body": null, "index": 18, "isInternal": false, - "x": 190.32399999999998, - "y": 958.806754767027 + "x": 190.324, + "y": 958.80675 }, { "body": null, "index": 19, "isInternal": false, - "x": 195.02499999999998, - "y": 962.880754767027 + "x": 195.025, + "y": 962.88075 }, { "body": null, "index": 20, "isInternal": false, - "x": 198.38799999999998, - "y": 968.112754767027 + "x": 198.388, + "y": 968.11275 }, { "body": null, "index": 21, "isInternal": false, "x": 200.14, - "y": 974.080754767027 + "y": 974.08075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1436.4701799999998, + "area": 1436.47018, "axes": { "#": 6776 }, "bounds": { "#": 6788 }, - "circleRadius": 21.529385288065843, + "circleRadius": 21.52939, "collisionFilter": { "#": 6791 }, @@ -60538,13 +60538,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 137, - "inertia": 1313.679921724599, - "inverseInertia": 0.0007612204338840774, - "inverseMass": 0.6961508939921051, + "inertia": 1313.67992, + "inverseInertia": 0.00076, + "inverseMass": 0.69615, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.43647018, + "mass": 1.43647, "motion": 0, "parent": null, "position": { @@ -60566,7 +60566,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60614,44 +60614,44 @@ } ], { - "x": -0.9595160751453637, - "y": -0.28165386831647904 + "x": -0.95952, + "y": -0.28165 }, { - "x": -0.841247397412524, - "y": -0.5406503642342757 + "x": -0.84125, + "y": -0.54065 }, { - "x": -0.6548808345114404, - "y": -0.7557321566465194 + "x": -0.65488, + "y": -0.75573 }, { - "x": -0.41533932355594355, - "y": -0.9096665577606396 + "x": -0.41534, + "y": -0.90967 }, { - "x": -0.1422893977298045, - "y": -0.9898250993451769 + "x": -0.14229, + "y": -0.98983 }, { - "x": 0.1422893977298045, - "y": -0.9898250993451769 + "x": 0.14229, + "y": -0.98983 }, { - "x": 0.41533932355594355, - "y": -0.9096665577606396 + "x": 0.41534, + "y": -0.90967 }, { - "x": 0.6548808345114404, - "y": -0.7557321566465194 + "x": 0.65488, + "y": -0.75573 }, { - "x": 0.841247397412524, - "y": -0.5406503642342757 + "x": 0.84125, + "y": -0.54065 }, { - "x": 0.9595160751453637, - "y": -0.28165386831647904 + "x": 0.95952, + "y": -0.28165 }, { "x": 1, @@ -60667,11 +60667,11 @@ }, { "x": 252.76, - "y": 998.395754767027 + "y": 998.39575 }, { "x": 210.14, - "y": 955.337754767027 + "y": 955.33775 }, { "category": 1, @@ -60689,7 +60689,7 @@ }, { "x": 231.45, - "y": 976.866754767027 + "y": 976.86675 }, { "x": 0, @@ -60697,7 +60697,7 @@ }, { "x": 231.45, - "y": 973.9594840519911 + "y": 973.95948 }, { "endCol": 5, @@ -60721,7 +60721,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -60796,168 +60796,168 @@ "index": 0, "isInternal": false, "x": 252.76, - "y": 979.930754767027 + "y": 979.93075 }, { "body": null, "index": 1, "isInternal": false, "x": 251.034, - "y": 985.810754767027 + "y": 985.81075 }, { "body": null, "index": 2, "isInternal": false, "x": 247.721, - "y": 990.9657547670271 + "y": 990.96575 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.08999999999997, - "y": 994.978754767027 + "x": 243.09, + "y": 994.97875 }, { "body": null, "index": 4, "isInternal": false, "x": 237.516, - "y": 997.5237547670271 + "y": 997.52375 }, { "body": null, "index": 5, "isInternal": false, "x": 231.45, - "y": 998.395754767027 + "y": 998.39575 }, { "body": null, "index": 6, "isInternal": false, "x": 225.384, - "y": 997.5237547670271 + "y": 997.52375 }, { "body": null, "index": 7, "isInternal": false, "x": 219.81, - "y": 994.978754767027 + "y": 994.97875 }, { "body": null, "index": 8, "isInternal": false, - "x": 215.17899999999997, - "y": 990.9657547670271 + "x": 215.179, + "y": 990.96575 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.86599999999999, - "y": 985.810754767027 + "x": 211.866, + "y": 985.81075 }, { "body": null, "index": 10, "isInternal": false, "x": 210.14, - "y": 979.930754767027 + "y": 979.93075 }, { "body": null, "index": 11, "isInternal": false, "x": 210.14, - "y": 973.8027547670271 + "y": 973.80275 }, { "body": null, "index": 12, "isInternal": false, - "x": 211.86599999999999, - "y": 967.9227547670271 + "x": 211.866, + "y": 967.92275 }, { "body": null, "index": 13, "isInternal": false, - "x": 215.17899999999997, - "y": 962.767754767027 + "x": 215.179, + "y": 962.76775 }, { "body": null, "index": 14, "isInternal": false, "x": 219.81, - "y": 958.7547547670271 + "y": 958.75475 }, { "body": null, "index": 15, "isInternal": false, "x": 225.384, - "y": 956.209754767027 + "y": 956.20975 }, { "body": null, "index": 16, "isInternal": false, "x": 231.45, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 17, "isInternal": false, "x": 237.516, - "y": 956.209754767027 + "y": 956.20975 }, { "body": null, "index": 18, "isInternal": false, - "x": 243.08999999999997, - "y": 958.7547547670271 + "x": 243.09, + "y": 958.75475 }, { "body": null, "index": 19, "isInternal": false, "x": 247.721, - "y": 962.767754767027 + "y": 962.76775 }, { "body": null, "index": 20, "isInternal": false, "x": 251.034, - "y": 967.9227547670271 + "y": 967.92275 }, { "body": null, "index": 21, "isInternal": false, "x": 252.76, - "y": 973.8027547670271 + "y": 973.80275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 921.4581120000001, + "area": 921.45811, "axes": { "#": 6825 }, "bounds": { "#": 6835 }, - "circleRadius": 17.301890432098766, + "circleRadius": 17.30189, "collisionFilter": { "#": 6838 }, @@ -60972,13 +60972,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 138, - "inertia": 540.5895727979165, - "inverseInertia": 0.0018498322023200039, - "inverseMass": 1.085236525651206, + "inertia": 540.58957, + "inverseInertia": 0.00185, + "inverseMass": 1.08524, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9214581120000002, + "mass": 0.92146, "motion": 0, "parent": null, "position": { @@ -61000,7 +61000,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61042,36 +61042,36 @@ } ], { - "x": -0.9397107989436047, - "y": -0.34197019511760385 + "x": -0.93971, + "y": -0.34197 }, { - "x": -0.765993276427864, - "y": -0.6428485828461521 + "x": -0.76599, + "y": -0.64285 }, { - "x": -0.5000058109841717, - "y": -0.8660220487851684 + "x": -0.50001, + "y": -0.86602 }, { - "x": -0.17372837569222055, - "y": -0.9847936085695026 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.17372837569222055, - "y": -0.9847936085695026 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.5000058109841717, - "y": -0.8660220487851684 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.765993276427864, - "y": -0.6428485828461521 + "x": 0.76599, + "y": -0.64285 }, { - "x": 0.9397107989436047, - "y": -0.34197019511760385 + "x": 0.93971, + "y": -0.34197 }, { "x": 1, @@ -61086,12 +61086,12 @@ } }, { - "x": 296.3112111139281, - "y": 997.1856875377259 + "x": 296.31121, + "y": 997.18569 }, { - "x": 262.2332111139281, - "y": 959.67441682269 + "x": 262.23321, + "y": 959.67442 }, { "category": 1, @@ -61108,16 +61108,16 @@ "y": 0 }, { - "x": 279.2722111139281, - "y": 976.97641682269 + "x": 279.27221, + "y": 976.97642 }, { - "x": -0.1873027150477874, - "y": 1.541924286457917 + "x": -0.1873, + "y": 1.54192 }, { - "x": 279.2722111139281, - "y": 974.0691461076541 + "x": 279.27221, + "y": 974.06915 }, { "endCol": 6, @@ -61141,7 +61141,7 @@ }, { "x": 0, - "y": 2.9072707150359065 + "y": 2.90727 }, [ { @@ -61203,141 +61203,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.3112111139281, - "y": 979.98041682269 + "x": 296.31121, + "y": 979.98042 }, { "body": null, "index": 1, "isInternal": false, - "x": 294.2562111139281, - "y": 985.62741682269 + "x": 294.25621, + "y": 985.62742 }, { "body": null, "index": 2, "isInternal": false, - "x": 290.3932111139281, - "y": 990.23041682269 + "x": 290.39321, + "y": 990.23042 }, { "body": null, "index": 3, "isInternal": false, - "x": 285.1902111139281, - "y": 993.23441682269 + "x": 285.19021, + "y": 993.23442 }, { "body": null, "index": 4, "isInternal": false, - "x": 279.2722111139281, - "y": 994.27841682269 + "x": 279.27221, + "y": 994.27842 }, { "body": null, "index": 5, "isInternal": false, - "x": 273.3542111139281, - "y": 993.23441682269 + "x": 273.35421, + "y": 993.23442 }, { "body": null, "index": 6, "isInternal": false, - "x": 268.1512111139281, - "y": 990.23041682269 + "x": 268.15121, + "y": 990.23042 }, { "body": null, "index": 7, "isInternal": false, - "x": 264.28821111392807, - "y": 985.62741682269 + "x": 264.28821, + "y": 985.62742 }, { "body": null, "index": 8, "isInternal": false, - "x": 262.2332111139281, - "y": 979.98041682269 + "x": 262.23321, + "y": 979.98042 }, { "body": null, "index": 9, "isInternal": false, - "x": 262.2332111139281, - "y": 973.97241682269 + "x": 262.23321, + "y": 973.97242 }, { "body": null, "index": 10, "isInternal": false, - "x": 264.28821111392807, - "y": 968.32541682269 + "x": 264.28821, + "y": 968.32542 }, { "body": null, "index": 11, "isInternal": false, - "x": 268.1512111139281, - "y": 963.72241682269 + "x": 268.15121, + "y": 963.72242 }, { "body": null, "index": 12, "isInternal": false, - "x": 273.3542111139281, - "y": 960.71841682269 + "x": 273.35421, + "y": 960.71842 }, { "body": null, "index": 13, "isInternal": false, - "x": 279.2722111139281, - "y": 959.67441682269 + "x": 279.27221, + "y": 959.67442 }, { "body": null, "index": 14, "isInternal": false, - "x": 285.1902111139281, - "y": 960.71841682269 + "x": 285.19021, + "y": 960.71842 }, { "body": null, "index": 15, "isInternal": false, - "x": 290.3932111139281, - "y": 963.72241682269 + "x": 290.39321, + "y": 963.72242 }, { "body": null, "index": 16, "isInternal": false, - "x": 294.2562111139281, - "y": 968.32541682269 + "x": 294.25621, + "y": 968.32542 }, { "body": null, "index": 17, "isInternal": false, - "x": 296.3112111139281, - "y": 973.97241682269 + "x": 296.31121, + "y": 973.97242 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1442.878982, + "area": 1442.87898, "axes": { "#": 6868 }, "bounds": { "#": 6880 }, - "circleRadius": 21.577481995884774, + "circleRadius": 21.57748, "collisionFilter": { "#": 6883 }, @@ -61352,13 +61352,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 139, - "inertia": 1325.4280188451355, - "inverseInertia": 0.0007544732613026503, - "inverseMass": 0.6930588167649946, + "inertia": 1325.42802, + "inverseInertia": 0.00075, + "inverseMass": 0.69306, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.442878982, + "mass": 1.44288, "motion": 0, "parent": null, "position": { @@ -61380,7 +61380,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61428,44 +61428,44 @@ } ], { - "x": -0.95950797763849, - "y": -0.281681452793923 + "x": -0.95951, + "y": -0.28168 }, { - "x": -0.8411784753765534, - "y": -0.5407575913134989 + "x": -0.84118, + "y": -0.54076 }, { - "x": -0.6549119406095831, - "y": -0.7557052004895758 + "x": -0.65491, + "y": -0.75571 }, { - "x": -0.41534800101678154, - "y": -0.9096625957196237 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.14231033171555763, - "y": -0.9898220898156436 + "x": -0.14231, + "y": -0.98982 }, { - "x": 0.14231033171555763, - "y": -0.9898220898156436 + "x": 0.14231, + "y": -0.98982 }, { - "x": 0.41534800101678154, - "y": -0.9096625957196237 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6549119406095831, - "y": -0.7557052004895758 + "x": 0.65491, + "y": -0.75571 }, { - "x": 0.8411784753765534, - "y": -0.5407575913134989 + "x": 0.84118, + "y": -0.54076 }, { - "x": 0.95950797763849, - "y": -0.281681452793923 + "x": 0.95951, + "y": -0.28168 }, { "x": 1, @@ -61481,11 +61481,11 @@ }, { "x": 349.554, - "y": 998.491754767027 + "y": 998.49175 }, { - "x": 306.83799999999997, - "y": 955.337754767027 + "x": 306.838, + "y": 955.33775 }, { "category": 1, @@ -61502,16 +61502,16 @@ "y": 0 }, { - "x": 328.19599999999997, - "y": 976.914754767027 + "x": 328.196, + "y": 976.91475 }, { "x": 0, "y": 0 }, { - "x": 328.19599999999997, - "y": 974.0074840519911 + "x": 328.196, + "y": 974.00748 }, { "endCol": 7, @@ -61535,7 +61535,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -61610,168 +61610,168 @@ "index": 0, "isInternal": false, "x": 349.554, - "y": 979.9857547670271 + "y": 979.98575 }, { "body": null, "index": 1, "isInternal": false, - "x": 347.82399999999996, - "y": 985.8787547670271 + "x": 347.824, + "y": 985.87875 }, { "body": null, "index": 2, "isInternal": false, "x": 344.503, - "y": 991.044754767027 + "y": 991.04475 }, { "body": null, "index": 3, "isInternal": false, - "x": 339.86199999999997, - "y": 995.0667547670271 + "x": 339.862, + "y": 995.06675 }, { "body": null, "index": 4, "isInternal": false, "x": 334.275, - "y": 997.617754767027 + "y": 997.61775 }, { "body": null, "index": 5, "isInternal": false, - "x": 328.19599999999997, - "y": 998.491754767027 + "x": 328.196, + "y": 998.49175 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.11699999999996, - "y": 997.617754767027 + "x": 322.117, + "y": 997.61775 }, { "body": null, "index": 7, "isInternal": false, "x": 316.53, - "y": 995.0667547670271 + "y": 995.06675 }, { "body": null, "index": 8, "isInternal": false, - "x": 311.88899999999995, - "y": 991.044754767027 + "x": 311.889, + "y": 991.04475 }, { "body": null, "index": 9, "isInternal": false, "x": 308.568, - "y": 985.8787547670271 + "y": 985.87875 }, { "body": null, "index": 10, "isInternal": false, - "x": 306.83799999999997, - "y": 979.9857547670271 + "x": 306.838, + "y": 979.98575 }, { "body": null, "index": 11, "isInternal": false, - "x": 306.83799999999997, - "y": 973.843754767027 + "x": 306.838, + "y": 973.84375 }, { "body": null, "index": 12, "isInternal": false, "x": 308.568, - "y": 967.950754767027 + "y": 967.95075 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.88899999999995, - "y": 962.784754767027 + "x": 311.889, + "y": 962.78475 }, { "body": null, "index": 14, "isInternal": false, "x": 316.53, - "y": 958.762754767027 + "y": 958.76275 }, { "body": null, "index": 15, "isInternal": false, - "x": 322.11699999999996, - "y": 956.2117547670271 + "x": 322.117, + "y": 956.21175 }, { "body": null, "index": 16, "isInternal": false, - "x": 328.19599999999997, - "y": 955.337754767027 + "x": 328.196, + "y": 955.33775 }, { "body": null, "index": 17, "isInternal": false, "x": 334.275, - "y": 956.2117547670271 + "y": 956.21175 }, { "body": null, "index": 18, "isInternal": false, - "x": 339.86199999999997, - "y": 958.762754767027 + "x": 339.862, + "y": 958.76275 }, { "body": null, "index": 19, "isInternal": false, "x": 344.503, - "y": 962.784754767027 + "y": 962.78475 }, { "body": null, "index": 20, "isInternal": false, - "x": 347.82399999999996, - "y": 967.950754767027 + "x": 347.824, + "y": 967.95075 }, { "body": null, "index": 21, "isInternal": false, "x": 349.554, - "y": 973.843754767027 + "y": 973.84375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1393.8701299999998, + "area": 1393.87013, "axes": { "#": 6917 }, "bounds": { "#": 6929 }, - "circleRadius": 21.20801183127572, + "circleRadius": 21.20801, "collisionFilter": { "#": 6932 }, @@ -61786,13 +61786,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 140, - "inertia": 1236.9181303326188, - "inverseInertia": 0.0008084609445663883, - "inverseMass": 0.717426952825225, + "inertia": 1236.91813, + "inverseInertia": 0.00081, + "inverseMass": 0.71743, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.3938701299999998, + "mass": 1.39387, "motion": 0, "parent": null, "position": { @@ -61814,7 +61814,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61862,44 +61862,44 @@ } ], { - "x": -0.9594788508542671, - "y": -0.2817806500868627 + "x": -0.95948, + "y": -0.28178 }, { - "x": -0.8412861160751645, - "y": -0.540590113578823 + "x": -0.84129, + "y": -0.54059 }, { - "x": -0.6548611595165944, - "y": -0.75574920559441 + "x": -0.65486, + "y": -0.75575 }, { - "x": -0.41546220815076035, - "y": -0.9096104405724983 + "x": -0.41546, + "y": -0.90961 }, { - "x": -0.14230261557828927, - "y": -0.9898231991621421 + "x": -0.1423, + "y": -0.98982 }, { - "x": 0.14230261557828927, - "y": -0.9898231991621421 + "x": 0.1423, + "y": -0.98982 }, { - "x": 0.41546220815076035, - "y": -0.9096104405724983 + "x": 0.41546, + "y": -0.90961 }, { - "x": 0.6548611595165944, - "y": -0.75574920559441 + "x": 0.65486, + "y": -0.75575 }, { - "x": 0.8412861160751645, - "y": -0.540590113578823 + "x": 0.84129, + "y": -0.54059 }, { - "x": 0.9594788508542671, - "y": -0.2817806500868627 + "x": 0.95948, + "y": -0.28178 }, { "x": 1, @@ -61915,11 +61915,11 @@ }, { "x": 401.538, - "y": 997.753754767027 + "y": 997.75375 }, { "x": 359.554, - "y": 955.337754767027 + "y": 955.33775 }, { "category": 1, @@ -61937,7 +61937,7 @@ }, { "x": 380.546, - "y": 976.545754767027 + "y": 976.54575 }, { "x": 0, @@ -61945,7 +61945,7 @@ }, { "x": 380.546, - "y": 973.6384840519911 + "y": 973.63848 }, { "endCol": 8, @@ -61969,7 +61969,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -62044,168 +62044,168 @@ "index": 0, "isInternal": false, "x": 401.538, - "y": 979.563754767027 + "y": 979.56375 }, { "body": null, "index": 1, "isInternal": false, "x": 399.837, - "y": 985.355754767027 + "y": 985.35575 }, { "body": null, "index": 2, "isInternal": false, "x": 396.574, - "y": 990.433754767027 + "y": 990.43375 }, { "body": null, "index": 3, "isInternal": false, "x": 392.012, - "y": 994.386754767027 + "y": 994.38675 }, { "body": null, "index": 4, "isInternal": false, "x": 386.521, - "y": 996.894754767027 + "y": 996.89475 }, { "body": null, "index": 5, "isInternal": false, "x": 380.546, - "y": 997.753754767027 + "y": 997.75375 }, { "body": null, "index": 6, "isInternal": false, - "x": 374.57099999999997, - "y": 996.894754767027 + "x": 374.571, + "y": 996.89475 }, { "body": null, "index": 7, "isInternal": false, "x": 369.08, - "y": 994.386754767027 + "y": 994.38675 }, { "body": null, "index": 8, "isInternal": false, "x": 364.518, - "y": 990.433754767027 + "y": 990.43375 }, { "body": null, "index": 9, "isInternal": false, "x": 361.255, - "y": 985.355754767027 + "y": 985.35575 }, { "body": null, "index": 10, "isInternal": false, "x": 359.554, - "y": 979.563754767027 + "y": 979.56375 }, { "body": null, "index": 11, "isInternal": false, "x": 359.554, - "y": 973.527754767027 + "y": 973.52775 }, { "body": null, "index": 12, "isInternal": false, "x": 361.255, - "y": 967.7357547670271 + "y": 967.73575 }, { "body": null, "index": 13, "isInternal": false, "x": 364.518, - "y": 962.657754767027 + "y": 962.65775 }, { "body": null, "index": 14, "isInternal": false, "x": 369.08, - "y": 958.704754767027 + "y": 958.70475 }, { "body": null, "index": 15, "isInternal": false, - "x": 374.57099999999997, - "y": 956.196754767027 + "x": 374.571, + "y": 956.19675 }, { "body": null, "index": 16, "isInternal": false, "x": 380.546, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 17, "isInternal": false, "x": 386.521, - "y": 956.196754767027 + "y": 956.19675 }, { "body": null, "index": 18, "isInternal": false, "x": 392.012, - "y": 958.704754767027 + "y": 958.70475 }, { "body": null, "index": 19, "isInternal": false, "x": 396.574, - "y": 962.657754767027 + "y": 962.65775 }, { "body": null, "index": 20, "isInternal": false, "x": 399.837, - "y": 967.7357547670271 + "y": 967.73575 }, { "body": null, "index": 21, "isInternal": false, "x": 401.538, - "y": 973.527754767027 + "y": 973.52775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1134.053972, + "area": 1134.05397, "axes": { "#": 6966 }, "bounds": { "#": 6977 }, - "circleRadius": 19.15644290123457, + "circleRadius": 19.15644, "collisionFilter": { "#": 6980 }, @@ -62220,13 +62220,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 141, - "inertia": 818.7877787916739, - "inverseInertia": 0.0012213176917170773, - "inverseMass": 0.8817922468332045, + "inertia": 818.78778, + "inverseInertia": 0.00122, + "inverseMass": 0.88179, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.134053972, + "mass": 1.13405, "motion": 0, "parent": null, "position": { @@ -62248,7 +62248,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62293,40 +62293,40 @@ } ], { - "x": -0.9510585889822449, - "y": -0.30901061522721374 + "x": -0.95106, + "y": -0.30901 }, { - "x": -0.8090173687157503, - "y": -0.5877847370562153 + "x": -0.80902, + "y": -0.58778 }, { - "x": -0.5877847370562153, - "y": -0.8090173687157503 + "x": -0.58778, + "y": -0.80902 }, { - "x": -0.30901061522721374, - "y": -0.9510585889822449 + "x": -0.30901, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.30901061522721374, - "y": -0.9510585889822449 + "x": 0.30901, + "y": -0.95106 }, { - "x": 0.5877847370562153, - "y": -0.8090173687157503 + "x": 0.58778, + "y": -0.80902 }, { - "x": 0.8090173687157503, - "y": -0.5877847370562153 + "x": 0.80902, + "y": -0.58778 }, { - "x": 0.9510585889822449, - "y": -0.30901061522721374 + "x": 0.95106, + "y": -0.30901 }, { "x": 1, @@ -62342,11 +62342,11 @@ }, { "x": 449.38, - "y": 993.1797547670271 + "y": 993.17975 }, { "x": 411.538, - "y": 955.337754767027 + "y": 955.33775 }, { "category": 1, @@ -62364,7 +62364,7 @@ }, { "x": 430.459, - "y": 974.2587547670271 + "y": 974.25875 }, { "x": 0, @@ -62372,7 +62372,7 @@ }, { "x": 430.459, - "y": 971.3514840519912 + "y": 971.35148 }, { "endCol": 9, @@ -62396,7 +62396,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -62465,154 +62465,154 @@ "index": 0, "isInternal": false, "x": 449.38, - "y": 977.255754767027 + "y": 977.25575 }, { "body": null, "index": 1, "isInternal": false, "x": 447.528, - "y": 982.9557547670271 + "y": 982.95575 }, { "body": null, "index": 2, "isInternal": false, "x": 444.005, - "y": 987.8047547670271 + "y": 987.80475 }, { "body": null, "index": 3, "isInternal": false, "x": 439.156, - "y": 991.327754767027 + "y": 991.32775 }, { "body": null, "index": 4, "isInternal": false, "x": 433.456, - "y": 993.1797547670271 + "y": 993.17975 }, { "body": null, "index": 5, "isInternal": false, "x": 427.462, - "y": 993.1797547670271 + "y": 993.17975 }, { "body": null, "index": 6, "isInternal": false, "x": 421.762, - "y": 991.327754767027 + "y": 991.32775 }, { "body": null, "index": 7, "isInternal": false, "x": 416.913, - "y": 987.8047547670271 + "y": 987.80475 }, { "body": null, "index": 8, "isInternal": false, "x": 413.39, - "y": 982.9557547670271 + "y": 982.95575 }, { "body": null, "index": 9, "isInternal": false, "x": 411.538, - "y": 977.255754767027 + "y": 977.25575 }, { "body": null, "index": 10, "isInternal": false, "x": 411.538, - "y": 971.2617547670271 + "y": 971.26175 }, { "body": null, "index": 11, "isInternal": false, "x": 413.39, - "y": 965.5617547670271 + "y": 965.56175 }, { "body": null, "index": 12, "isInternal": false, "x": 416.913, - "y": 960.712754767027 + "y": 960.71275 }, { "body": null, "index": 13, "isInternal": false, "x": 421.762, - "y": 957.1897547670271 + "y": 957.18975 }, { "body": null, "index": 14, "isInternal": false, "x": 427.462, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 15, "isInternal": false, "x": 433.456, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 16, "isInternal": false, "x": 439.156, - "y": 957.1897547670271 + "y": 957.18975 }, { "body": null, "index": 17, "isInternal": false, "x": 444.005, - "y": 960.712754767027 + "y": 960.71275 }, { "body": null, "index": 18, "isInternal": false, "x": 447.528, - "y": 965.5617547670271 + "y": 965.56175 }, { "body": null, "index": 19, "isInternal": false, "x": 449.38, - "y": 971.2617547670271 + "y": 971.26175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2129.6684660000005, + "area": 2129.66847, "axes": { "#": 7012 }, "bounds": { "#": 7026 }, - "circleRadius": 26.16351594650206, + "circleRadius": 26.16352, "collisionFilter": { "#": 7029 }, @@ -62627,13 +62627,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 142, - "inertia": 2887.4362873780287, - "inverseInertia": 0.0003463279880395429, - "inverseMass": 0.4695566544581591, + "inertia": 2887.43629, + "inverseInertia": 0.00035, + "inverseMass": 0.46956, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.1296684660000005, + "mass": 2.12967, "motion": 0, "parent": null, "position": { @@ -62655,7 +62655,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62709,52 +62709,52 @@ } ], { - "x": -0.9709208311748809, - "y": -0.23940079279458984 + "x": -0.97092, + "y": -0.2394 }, { - "x": -0.8854712992435021, - "y": -0.464694069486608 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7485454568415367, - "y": -0.6630834781849833 + "x": -0.74855, + "y": -0.66308 }, { - "x": -0.5680552337492909, - "y": -0.8229904321497539 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.35449173520305777, - "y": -0.9350591476867789 + "x": -0.35449, + "y": -0.93506 }, { - "x": -0.12065807858052943, - "y": -0.9926941261401997 + "x": -0.12066, + "y": -0.99269 }, { - "x": 0.12065807858052943, - "y": -0.9926941261401997 + "x": 0.12066, + "y": -0.99269 }, { - "x": 0.35449173520305777, - "y": -0.9350591476867789 + "x": 0.35449, + "y": -0.93506 }, { - "x": 0.5680552337492909, - "y": -0.8229904321497539 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7485454568415367, - "y": -0.6630834781849833 + "x": 0.74855, + "y": -0.66308 }, { - "x": 0.8854712992435021, - "y": -0.464694069486608 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709208311748809, - "y": -0.23940079279458984 + "x": 0.97092, + "y": -0.2394 }, { "x": 1, @@ -62770,11 +62770,11 @@ }, { "x": 511.326, - "y": 1007.665754767027 + "y": 1007.66575 }, { "x": 459.38, - "y": 955.337754767027 + "y": 955.33775 }, { "category": 1, @@ -62792,7 +62792,7 @@ }, { "x": 485.353, - "y": 981.501754767027 + "y": 981.50175 }, { "x": 0, @@ -62800,7 +62800,7 @@ }, { "x": 485.353, - "y": 978.5944840519911 + "y": 978.59448 }, { "endCol": 10, @@ -62824,7 +62824,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -62911,196 +62911,196 @@ "index": 0, "isInternal": false, "x": 511.326, - "y": 984.655754767027 + "y": 984.65575 }, { "body": null, "index": 1, "isInternal": false, - "x": 509.81600000000003, - "y": 990.779754767027 + "x": 509.816, + "y": 990.77975 }, { "body": null, "index": 2, "isInternal": false, "x": 506.885, - "y": 996.3647547670271 + "y": 996.36475 }, { "body": null, "index": 3, "isInternal": false, - "x": 502.70300000000003, - "y": 1001.085754767027 + "x": 502.703, + "y": 1001.08575 }, { "body": null, "index": 4, "isInternal": false, "x": 497.512, - "y": 1004.668754767027 + "y": 1004.66875 }, { "body": null, "index": 5, "isInternal": false, - "x": 491.61400000000003, - "y": 1006.904754767027 + "x": 491.614, + "y": 1006.90475 }, { "body": null, "index": 6, "isInternal": false, "x": 485.353, - "y": 1007.665754767027 + "y": 1007.66575 }, { "body": null, "index": 7, "isInternal": false, "x": 479.092, - "y": 1006.904754767027 + "y": 1006.90475 }, { "body": null, "index": 8, "isInternal": false, "x": 473.194, - "y": 1004.668754767027 + "y": 1004.66875 }, { "body": null, "index": 9, "isInternal": false, "x": 468.003, - "y": 1001.085754767027 + "y": 1001.08575 }, { "body": null, "index": 10, "isInternal": false, "x": 463.821, - "y": 996.3647547670271 + "y": 996.36475 }, { "body": null, "index": 11, "isInternal": false, "x": 460.89, - "y": 990.779754767027 + "y": 990.77975 }, { "body": null, "index": 12, "isInternal": false, "x": 459.38, - "y": 984.655754767027 + "y": 984.65575 }, { "body": null, "index": 13, "isInternal": false, "x": 459.38, - "y": 978.347754767027 + "y": 978.34775 }, { "body": null, "index": 14, "isInternal": false, "x": 460.89, - "y": 972.223754767027 + "y": 972.22375 }, { "body": null, "index": 15, "isInternal": false, "x": 463.821, - "y": 966.638754767027 + "y": 966.63875 }, { "body": null, "index": 16, "isInternal": false, "x": 468.003, - "y": 961.9177547670271 + "y": 961.91775 }, { "body": null, "index": 17, "isInternal": false, "x": 473.194, - "y": 958.334754767027 + "y": 958.33475 }, { "body": null, "index": 18, "isInternal": false, "x": 479.092, - "y": 956.098754767027 + "y": 956.09875 }, { "body": null, "index": 19, "isInternal": false, "x": 485.353, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 20, "isInternal": false, - "x": 491.61400000000003, - "y": 956.098754767027 + "x": 491.614, + "y": 956.09875 }, { "body": null, "index": 21, "isInternal": false, "x": 497.512, - "y": 958.334754767027 + "y": 958.33475 }, { "body": null, "index": 22, "isInternal": false, - "x": 502.70300000000003, - "y": 961.9177547670271 + "x": 502.703, + "y": 961.91775 }, { "body": null, "index": 23, "isInternal": false, "x": 506.885, - "y": 966.638754767027 + "y": 966.63875 }, { "body": null, "index": 24, "isInternal": false, - "x": 509.81600000000003, - "y": 972.223754767027 + "x": 509.816, + "y": 972.22375 }, { "body": null, "index": 25, "isInternal": false, "x": 511.326, - "y": 978.347754767027 + "y": 978.34775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 933.4788960000001, + "area": 933.4789, "axes": { "#": 7067 }, "bounds": { "#": 7077 }, - "circleRadius": 17.414416152263374, + "circleRadius": 17.41442, "collisionFilter": { "#": 7080 }, @@ -63115,13 +63115,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 143, - "inertia": 554.7859794487026, - "inverseInertia": 0.0018024968853641756, - "inverseMass": 1.0712614974854235, + "inertia": 554.78598, + "inverseInertia": 0.0018, + "inverseMass": 1.07126, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9334788960000001, + "mass": 0.93348, "motion": 0, "parent": null, "position": { @@ -63143,7 +63143,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63185,36 +63185,36 @@ } ], { - "x": -0.93966300914261, - "y": -0.3421014896913706 + "x": -0.93966, + "y": -0.3421 }, { - "x": -0.7660891083247972, - "y": -0.642734376010897 + "x": -0.76609, + "y": -0.64273 }, { - "x": -0.4999800713445785, - "y": -0.8660369092932876 + "x": -0.49998, + "y": -0.86604 }, { - "x": -0.17361554431251713, - "y": -0.9848135065955729 + "x": -0.17362, + "y": -0.98481 }, { - "x": 0.17361554431251713, - "y": -0.9848135065955729 + "x": 0.17362, + "y": -0.98481 }, { - "x": 0.4999800713445785, - "y": -0.8660369092932876 + "x": 0.49998, + "y": -0.86604 }, { - "x": 0.7660891083247972, - "y": -0.642734376010897 + "x": 0.76609, + "y": -0.64273 }, { - "x": 0.93966300914261, - "y": -0.3421014896913706 + "x": 0.93966, + "y": -0.3421 }, { "x": 1, @@ -63230,11 +63230,11 @@ }, { "x": 555.626, - "y": 990.165754767027 + "y": 990.16575 }, { "x": 521.326, - "y": 955.337754767027 + "y": 955.33775 }, { "category": 1, @@ -63252,7 +63252,7 @@ }, { "x": 538.476, - "y": 972.751754767027 + "y": 972.75175 }, { "x": 0, @@ -63260,7 +63260,7 @@ }, { "x": 538.476, - "y": 969.8444840519911 + "y": 969.84448 }, { "endCol": 11, @@ -63284,7 +63284,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -63347,140 +63347,140 @@ "index": 0, "isInternal": false, "x": 555.626, - "y": 975.775754767027 + "y": 975.77575 }, { "body": null, "index": 1, "isInternal": false, "x": 553.557, - "y": 981.458754767027 + "y": 981.45875 }, { "body": null, "index": 2, "isInternal": false, "x": 549.67, - "y": 986.091754767027 + "y": 986.09175 }, { "body": null, "index": 3, "isInternal": false, "x": 544.432, - "y": 989.115754767027 + "y": 989.11575 }, { "body": null, "index": 4, "isInternal": false, "x": 538.476, - "y": 990.165754767027 + "y": 990.16575 }, { "body": null, "index": 5, "isInternal": false, "x": 532.52, - "y": 989.115754767027 + "y": 989.11575 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2819999999999, - "y": 986.091754767027 + "x": 527.282, + "y": 986.09175 }, { "body": null, "index": 7, "isInternal": false, "x": 523.395, - "y": 981.458754767027 + "y": 981.45875 }, { "body": null, "index": 8, "isInternal": false, "x": 521.326, - "y": 975.775754767027 + "y": 975.77575 }, { "body": null, "index": 9, "isInternal": false, "x": 521.326, - "y": 969.727754767027 + "y": 969.72775 }, { "body": null, "index": 10, "isInternal": false, "x": 523.395, - "y": 964.044754767027 + "y": 964.04475 }, { "body": null, "index": 11, "isInternal": false, - "x": 527.2819999999999, - "y": 959.411754767027 + "x": 527.282, + "y": 959.41175 }, { "body": null, "index": 12, "isInternal": false, "x": 532.52, - "y": 956.387754767027 + "y": 956.38775 }, { "body": null, "index": 13, "isInternal": false, "x": 538.476, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 14, "isInternal": false, "x": 544.432, - "y": 956.387754767027 + "y": 956.38775 }, { "body": null, "index": 15, "isInternal": false, "x": 549.67, - "y": 959.411754767027 + "y": 959.41175 }, { "body": null, "index": 16, "isInternal": false, "x": 553.557, - "y": 964.044754767027 + "y": 964.04475 }, { "body": null, "index": 17, "isInternal": false, "x": 555.626, - "y": 969.727754767027 + "y": 969.72775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1139.7843160000002, + "area": 1139.78432, "axes": { "#": 7110 }, "bounds": { "#": 7121 }, - "circleRadius": 19.205439814814817, + "circleRadius": 19.20544, "collisionFilter": { "#": 7124 }, @@ -63495,13 +63495,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 144, - "inertia": 827.0833095807079, - "inverseInertia": 0.0012090680447982352, - "inverseMass": 0.8773589756958893, + "inertia": 827.08331, + "inverseInertia": 0.00121, + "inverseMass": 0.87736, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1397843160000003, + "mass": 1.13978, "motion": 0, "parent": null, "position": { @@ -63523,7 +63523,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63568,40 +63568,40 @@ } ], { - "x": -0.9510524110962663, - "y": -0.30902962859243555 + "x": -0.95105, + "y": -0.30903 }, { - "x": -0.8089950900996454, - "y": -0.5878153997597091 + "x": -0.809, + "y": -0.58782 }, { - "x": -0.5878153997597091, - "y": -0.8089950900996454 + "x": -0.58782, + "y": -0.809 }, { - "x": -0.30902962859243555, - "y": -0.9510524110962663 + "x": -0.30903, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.30902962859243555, - "y": -0.9510524110962663 + "x": 0.30903, + "y": -0.95105 }, { - "x": 0.5878153997597091, - "y": -0.8089950900996454 + "x": 0.58782, + "y": -0.809 }, { - "x": 0.8089950900996454, - "y": -0.5878153997597091 + "x": 0.809, + "y": -0.58782 }, { - "x": 0.9510524110962663, - "y": -0.30902962859243555 + "x": 0.95105, + "y": -0.30903 }, { "x": 1, @@ -63616,12 +63616,12 @@ } }, { - "x": 603.5640000000001, - "y": 993.2757547670271 + "x": 603.564, + "y": 993.27575 }, { "x": 565.626, - "y": 955.337754767027 + "y": 955.33775 }, { "category": 1, @@ -63639,7 +63639,7 @@ }, { "x": 584.595, - "y": 974.3067547670271 + "y": 974.30675 }, { "x": 0, @@ -63647,7 +63647,7 @@ }, { "x": 584.595, - "y": 971.3994840519912 + "y": 971.39948 }, { "endCol": 12, @@ -63671,7 +63671,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -63739,155 +63739,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 603.5640000000001, - "y": 977.3107547670271 + "x": 603.564, + "y": 977.31075 }, { "body": null, "index": 1, "isInternal": false, "x": 601.707, - "y": 983.0257547670271 + "y": 983.02575 }, { "body": null, "index": 2, "isInternal": false, - "x": 598.1750000000001, - "y": 987.8867547670271 + "x": 598.175, + "y": 987.88675 }, { "body": null, "index": 3, "isInternal": false, - "x": 593.3140000000001, - "y": 991.418754767027 + "x": 593.314, + "y": 991.41875 }, { "body": null, "index": 4, "isInternal": false, "x": 587.599, - "y": 993.2757547670271 + "y": 993.27575 }, { "body": null, "index": 5, "isInternal": false, "x": 581.591, - "y": 993.2757547670271 + "y": 993.27575 }, { "body": null, "index": 6, "isInternal": false, "x": 575.876, - "y": 991.418754767027 + "y": 991.41875 }, { "body": null, "index": 7, "isInternal": false, "x": 571.015, - "y": 987.8867547670271 + "y": 987.88675 }, { "body": null, "index": 8, "isInternal": false, - "x": 567.4830000000001, - "y": 983.0257547670271 + "x": 567.483, + "y": 983.02575 }, { "body": null, "index": 9, "isInternal": false, "x": 565.626, - "y": 977.3107547670271 + "y": 977.31075 }, { "body": null, "index": 10, "isInternal": false, "x": 565.626, - "y": 971.3027547670271 + "y": 971.30275 }, { "body": null, "index": 11, "isInternal": false, - "x": 567.4830000000001, - "y": 965.587754767027 + "x": 567.483, + "y": 965.58775 }, { "body": null, "index": 12, "isInternal": false, "x": 571.015, - "y": 960.726754767027 + "y": 960.72675 }, { "body": null, "index": 13, "isInternal": false, "x": 575.876, - "y": 957.1947547670271 + "y": 957.19475 }, { "body": null, "index": 14, "isInternal": false, "x": 581.591, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 15, "isInternal": false, "x": 587.599, - "y": 955.337754767027 + "y": 955.33775 }, { "body": null, "index": 16, "isInternal": false, - "x": 593.3140000000001, - "y": 957.1947547670271 + "x": 593.314, + "y": 957.19475 }, { "body": null, "index": 17, "isInternal": false, - "x": 598.1750000000001, - "y": 960.726754767027 + "x": 598.175, + "y": 960.72675 }, { "body": null, "index": 18, "isInternal": false, "x": 601.707, - "y": 965.587754767027 + "y": 965.58775 }, { "body": null, "index": 19, "isInternal": false, - "x": 603.5640000000001, - "y": 971.3027547670271 + "x": 603.564, + "y": 971.30275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2040.5851720000007, + "area": 2040.58517, "axes": { "#": 7156 }, "bounds": { "#": 7170 }, - "circleRadius": 25.61066100823045, + "circleRadius": 25.61066, "collisionFilter": { "#": 7173 }, @@ -63902,13 +63902,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 145, - "inertia": 2650.9275730068207, - "inverseInertia": 0.0003772264509157252, - "inverseMass": 0.4900555064897823, + "inertia": 2650.92757, + "inverseInertia": 0.00038, + "inverseMass": 0.49006, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.040585172000001, + "mass": 2.04059, "motion": 0, "parent": null, "position": { @@ -63930,7 +63930,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63984,52 +63984,52 @@ } ], { - "x": -0.9709280720447603, - "y": -0.2393714246008596 + "x": -0.97093, + "y": -0.23937 }, { - "x": -0.885476215551765, - "y": -0.46468470137516266 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7484985891937153, - "y": -0.6631363826355918 + "x": -0.7485, + "y": -0.66314 }, { - "x": -0.5680470758958883, - "y": -0.8229960629104679 + "x": -0.56805, + "y": -0.823 }, { - "x": -0.3545468146776685, - "y": -0.9350382645656374 + "x": -0.35455, + "y": -0.93504 }, { - "x": -0.12066511451121047, - "y": -0.9926932709251113 + "x": -0.12067, + "y": -0.99269 }, { - "x": 0.12066511451121047, - "y": -0.9926932709251113 + "x": 0.12067, + "y": -0.99269 }, { - "x": 0.3545468146776685, - "y": -0.9350382645656374 + "x": 0.35455, + "y": -0.93504 }, { - "x": 0.5680470758958883, - "y": -0.8229960629104679 + "x": 0.56805, + "y": -0.823 }, { - "x": 0.7484985891937153, - "y": -0.6631363826355918 + "x": 0.7485, + "y": -0.66314 }, { - "x": 0.885476215551765, - "y": -0.46468470137516266 + "x": 0.88548, + "y": -0.46468 }, { - "x": 0.9709280720447603, - "y": -0.2393714246008596 + "x": 0.97093, + "y": -0.23937 }, { "x": 1, @@ -64045,11 +64045,11 @@ }, { "x": 150.848, - "y": 1068.887754767027 + "y": 1068.88775 }, { "x": 100, - "y": 1017.6657547670271 + "y": 1017.66575 }, { "category": 1, @@ -64067,7 +64067,7 @@ }, { "x": 125.424, - "y": 1043.276754767027 + "y": 1043.27675 }, { "x": 0, @@ -64075,7 +64075,7 @@ }, { "x": 125.424, - "y": 1040.3694840519913 + "y": 1040.36948 }, { "endCol": 3, @@ -64099,7 +64099,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -64186,196 +64186,196 @@ "index": 0, "isInternal": false, "x": 150.848, - "y": 1046.3637547670269 + "y": 1046.36375 }, { "body": null, "index": 1, "isInternal": false, "x": 149.37, - "y": 1052.3587547670268 + "y": 1052.35875 }, { "body": null, "index": 2, "isInternal": false, "x": 146.501, - "y": 1057.8257547670269 + "y": 1057.82575 }, { "body": null, "index": 3, "isInternal": false, "x": 142.407, - "y": 1062.446754767027 + "y": 1062.44675 }, { "body": null, "index": 4, "isInternal": false, - "x": 137.32600000000002, - "y": 1065.953754767027 + "x": 137.326, + "y": 1065.95375 }, { "body": null, "index": 5, "isInternal": false, "x": 131.553, - "y": 1068.1427547670269 + "y": 1068.14275 }, { "body": null, "index": 6, "isInternal": false, "x": 125.424, - "y": 1068.887754767027 + "y": 1068.88775 }, { "body": null, "index": 7, "isInternal": false, "x": 119.295, - "y": 1068.1427547670269 + "y": 1068.14275 }, { "body": null, "index": 8, "isInternal": false, "x": 113.522, - "y": 1065.953754767027 + "y": 1065.95375 }, { "body": null, "index": 9, "isInternal": false, "x": 108.441, - "y": 1062.446754767027 + "y": 1062.44675 }, { "body": null, "index": 10, "isInternal": false, - "x": 104.34700000000001, - "y": 1057.8257547670269 + "x": 104.347, + "y": 1057.82575 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.47800000000001, - "y": 1052.3587547670268 + "x": 101.478, + "y": 1052.35875 }, { "body": null, "index": 12, "isInternal": false, "x": 100, - "y": 1046.3637547670269 + "y": 1046.36375 }, { "body": null, "index": 13, "isInternal": false, "x": 100, - "y": 1040.189754767027 + "y": 1040.18975 }, { "body": null, "index": 14, "isInternal": false, - "x": 101.47800000000001, - "y": 1034.1947547670268 + "x": 101.478, + "y": 1034.19475 }, { "body": null, "index": 15, "isInternal": false, - "x": 104.34700000000001, - "y": 1028.727754767027 + "x": 104.347, + "y": 1028.72775 }, { "body": null, "index": 16, "isInternal": false, "x": 108.441, - "y": 1024.106754767027 + "y": 1024.10675 }, { "body": null, "index": 17, "isInternal": false, "x": 113.522, - "y": 1020.5997547670271 + "y": 1020.59975 }, { "body": null, "index": 18, "isInternal": false, "x": 119.295, - "y": 1018.4107547670271 + "y": 1018.41075 }, { "body": null, "index": 19, "isInternal": false, "x": 125.424, - "y": 1017.6657547670271 + "y": 1017.66575 }, { "body": null, "index": 20, "isInternal": false, "x": 131.553, - "y": 1018.4107547670271 + "y": 1018.41075 }, { "body": null, "index": 21, "isInternal": false, - "x": 137.32600000000002, - "y": 1020.5997547670271 + "x": 137.326, + "y": 1020.59975 }, { "body": null, "index": 22, "isInternal": false, "x": 142.407, - "y": 1024.106754767027 + "y": 1024.10675 }, { "body": null, "index": 23, "isInternal": false, "x": 146.501, - "y": 1028.727754767027 + "y": 1028.72775 }, { "body": null, "index": 24, "isInternal": false, "x": 149.37, - "y": 1034.1947547670268 + "y": 1034.19475 }, { "body": null, "index": 25, "isInternal": false, "x": 150.848, - "y": 1040.189754767027 + "y": 1040.18975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 702.576872, + "area": 702.57687, "axes": { "#": 7211 }, "bounds": { "#": 7220 }, - "circleRadius": 15.148598251028806, + "circleRadius": 15.1486, "collisionFilter": { "#": 7223 }, @@ -64390,13 +64390,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 146, - "inertia": 314.28689116356384, - "inverseInertia": 0.0031818062671903537, - "inverseMass": 1.4233317945029083, + "inertia": 314.28689, + "inverseInertia": 0.00318, + "inverseMass": 1.42333, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.702576872, + "mass": 0.70258, "motion": 0, "parent": null, "position": { @@ -64418,7 +64418,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64457,32 +64457,32 @@ } ], { - "x": -0.9238807445732501, - "y": -0.3826805061755525 + "x": -0.92388, + "y": -0.38268 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826805061755525, - "y": -0.9238807445732501 + "x": -0.38268, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826805061755525, - "y": -0.9238807445732501 + "x": 0.38268, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238807445732501, - "y": -0.3826805061755525 + "x": 0.92388, + "y": -0.38268 }, { "x": 1, @@ -64497,12 +64497,12 @@ } }, { - "x": 190.56400000000002, - "y": 1047.3817547670262 + "x": 190.564, + "y": 1047.38175 }, { "x": 160.848, - "y": 1017.6657547670267 + "y": 1017.66575 }, { "category": 1, @@ -64519,16 +64519,16 @@ "y": 0 }, { - "x": 175.70600000000002, - "y": 1032.5237547670263 + "x": 175.706, + "y": 1032.52375 }, { "x": 0, "y": 0 }, { - "x": 175.70600000000002, - "y": 1029.6164840519907 + "x": 175.706, + "y": 1029.61648 }, { "endCol": 3, @@ -64552,7 +64552,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -64608,127 +64608,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 190.56400000000002, - "y": 1035.4787547670262 + "x": 190.564, + "y": 1035.47875 }, { "body": null, "index": 1, "isInternal": false, - "x": 188.30200000000002, - "y": 1040.9397547670262 + "x": 188.302, + "y": 1040.93975 }, { "body": null, "index": 2, "isInternal": false, "x": 184.122, - "y": 1045.1197547670263 + "y": 1045.11975 }, { "body": null, "index": 3, "isInternal": false, - "x": 178.66100000000003, - "y": 1047.3817547670262 + "x": 178.661, + "y": 1047.38175 }, { "body": null, "index": 4, "isInternal": false, "x": 172.751, - "y": 1047.3817547670262 + "y": 1047.38175 }, { "body": null, "index": 5, "isInternal": false, - "x": 167.29000000000002, - "y": 1045.1197547670263 + "x": 167.29, + "y": 1045.11975 }, { "body": null, "index": 6, "isInternal": false, "x": 163.11, - "y": 1040.9397547670262 + "y": 1040.93975 }, { "body": null, "index": 7, "isInternal": false, "x": 160.848, - "y": 1035.4787547670262 + "y": 1035.47875 }, { "body": null, "index": 8, "isInternal": false, "x": 160.848, - "y": 1029.5687547670263 + "y": 1029.56875 }, { "body": null, "index": 9, "isInternal": false, "x": 163.11, - "y": 1024.1077547670266 + "y": 1024.10775 }, { "body": null, "index": 10, "isInternal": false, - "x": 167.29000000000002, - "y": 1019.9277547670266 + "x": 167.29, + "y": 1019.92775 }, { "body": null, "index": 11, "isInternal": false, "x": 172.751, - "y": 1017.6657547670267 + "y": 1017.66575 }, { "body": null, "index": 12, "isInternal": false, - "x": 178.66100000000003, - "y": 1017.6657547670267 + "x": 178.661, + "y": 1017.66575 }, { "body": null, "index": 13, "isInternal": false, "x": 184.122, - "y": 1019.9277547670266 + "y": 1019.92775 }, { "body": null, "index": 14, "isInternal": false, - "x": 188.30200000000002, - "y": 1024.1077547670266 + "x": 188.302, + "y": 1024.10775 }, { "body": null, "index": 15, "isInternal": false, - "x": 190.56400000000002, - "y": 1029.5687547670263 + "x": 190.564, + "y": 1029.56875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1565.200396, + "area": 1565.2004, "axes": { "#": 7251 }, "bounds": { "#": 7264 }, - "circleRadius": 22.448881172839506, + "circleRadius": 22.44888, "collisionFilter": { "#": 7267 }, @@ -64743,13 +64743,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 147, - "inertia": 1559.6654377284024, - "inverseInertia": 0.0006411631467941385, - "inverseMass": 0.638895826090757, + "inertia": 1559.66544, + "inverseInertia": 0.00064, + "inverseMass": 0.6389, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.565200396, + "mass": 1.5652, "motion": 0, "parent": null, "position": { @@ -64771,7 +64771,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64822,48 +64822,48 @@ } ], { - "x": -0.9659198702250078, - "y": -0.2588412724132379 + "x": -0.96592, + "y": -0.25884 }, { - "x": -0.8660292916676339, - "y": -0.49999326592830867 + "x": -0.86603, + "y": -0.49999 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.49999326592830867, - "y": -0.8660292916676339 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.2588412724132379, - "y": -0.9659198702250078 + "x": -0.25884, + "y": -0.96592 }, { "x": 0, "y": -1 }, { - "x": 0.2588412724132379, - "y": -0.9659198702250078 + "x": 0.25884, + "y": -0.96592 }, { - "x": 0.49999326592830867, - "y": -0.8660292916676339 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660292916676339, - "y": -0.49999326592830867 + "x": 0.86603, + "y": -0.49999 }, { - "x": 0.9659198702250078, - "y": -0.2588412724132379 + "x": 0.96592, + "y": -0.25884 }, { "x": 1, @@ -64878,12 +64878,12 @@ } }, { - "x": 245.07800000000003, - "y": 1062.1797547670265 + "x": 245.078, + "y": 1062.17975 }, { - "x": 200.56400000000002, - "y": 1017.6657547670267 + "x": 200.564, + "y": 1017.66575 }, { "category": 1, @@ -64900,16 +64900,16 @@ "y": 0 }, { - "x": 222.82100000000003, - "y": 1039.9227547670264 + "x": 222.821, + "y": 1039.92275 }, { "x": 0, "y": 0 }, { - "x": 222.82100000000003, - "y": 1037.0154840519908 + "x": 222.821, + "y": 1037.01548 }, { "endCol": 5, @@ -64933,7 +64933,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -65013,183 +65013,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.07800000000003, - "y": 1042.8527547670265 + "x": 245.078, + "y": 1042.85275 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.56100000000004, - "y": 1048.5137547670265 + "x": 243.561, + "y": 1048.51375 }, { "body": null, "index": 2, "isInternal": false, - "x": 240.63100000000003, - "y": 1053.5887547670266 + "x": 240.631, + "y": 1053.58875 }, { "body": null, "index": 3, "isInternal": false, - "x": 236.48700000000002, - "y": 1057.7327547670263 + "x": 236.487, + "y": 1057.73275 }, { "body": null, "index": 4, "isInternal": false, - "x": 231.41200000000003, - "y": 1060.6627547670266 + "x": 231.412, + "y": 1060.66275 }, { "body": null, "index": 5, "isInternal": false, - "x": 225.75100000000003, - "y": 1062.1797547670265 + "x": 225.751, + "y": 1062.17975 }, { "body": null, "index": 6, "isInternal": false, - "x": 219.89100000000002, - "y": 1062.1797547670265 + "x": 219.891, + "y": 1062.17975 }, { "body": null, "index": 7, "isInternal": false, - "x": 214.23000000000002, - "y": 1060.6627547670266 + "x": 214.23, + "y": 1060.66275 }, { "body": null, "index": 8, "isInternal": false, - "x": 209.15500000000003, - "y": 1057.7327547670263 + "x": 209.155, + "y": 1057.73275 }, { "body": null, "index": 9, "isInternal": false, - "x": 205.01100000000002, - "y": 1053.5887547670266 + "x": 205.011, + "y": 1053.58875 }, { "body": null, "index": 10, "isInternal": false, - "x": 202.08100000000002, - "y": 1048.5137547670265 + "x": 202.081, + "y": 1048.51375 }, { "body": null, "index": 11, "isInternal": false, - "x": 200.56400000000002, - "y": 1042.8527547670265 + "x": 200.564, + "y": 1042.85275 }, { "body": null, "index": 12, "isInternal": false, - "x": 200.56400000000002, - "y": 1036.9927547670263 + "x": 200.564, + "y": 1036.99275 }, { "body": null, "index": 13, "isInternal": false, - "x": 202.08100000000002, - "y": 1031.3317547670263 + "x": 202.081, + "y": 1031.33175 }, { "body": null, "index": 14, "isInternal": false, - "x": 205.01100000000002, - "y": 1026.2567547670265 + "x": 205.011, + "y": 1026.25675 }, { "body": null, "index": 15, "isInternal": false, - "x": 209.15500000000003, - "y": 1022.1127547670267 + "x": 209.155, + "y": 1022.11275 }, { "body": null, "index": 16, "isInternal": false, - "x": 214.23000000000002, - "y": 1019.1827547670266 + "x": 214.23, + "y": 1019.18275 }, { "body": null, "index": 17, "isInternal": false, - "x": 219.89100000000002, - "y": 1017.6657547670267 + "x": 219.891, + "y": 1017.66575 }, { "body": null, "index": 18, "isInternal": false, - "x": 225.75100000000003, - "y": 1017.6657547670267 + "x": 225.751, + "y": 1017.66575 }, { "body": null, "index": 19, "isInternal": false, - "x": 231.41200000000003, - "y": 1019.1827547670266 + "x": 231.412, + "y": 1019.18275 }, { "body": null, "index": 20, "isInternal": false, - "x": 236.48700000000002, - "y": 1022.1127547670267 + "x": 236.487, + "y": 1022.11275 }, { "body": null, "index": 21, "isInternal": false, - "x": 240.63100000000003, - "y": 1026.2567547670265 + "x": 240.631, + "y": 1026.25675 }, { "body": null, "index": 22, "isInternal": false, - "x": 243.56100000000004, - "y": 1031.3317547670263 + "x": 243.561, + "y": 1031.33175 }, { "body": null, "index": 23, "isInternal": false, - "x": 245.07800000000003, - "y": 1036.9927547670263 + "x": 245.078, + "y": 1036.99275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1931.8577320000002, + "area": 1931.85773, "axes": { "#": 7303 }, "bounds": { "#": 7317 }, - "circleRadius": 24.918917181069958, + "circleRadius": 24.91892, "collisionFilter": { "#": 7320 }, @@ -65204,13 +65204,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 148, - "inertia": 2375.9576222951223, - "inverseInertia": 0.00042088292763152154, - "inverseMass": 0.517636461233989, + "inertia": 2375.95762, + "inverseInertia": 0.00042, + "inverseMass": 0.51764, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.931857732, + "mass": 1.93186, "motion": 0, "parent": null, "position": { @@ -65232,7 +65232,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65286,52 +65286,52 @@ } ], { - "x": -0.970959567412021, - "y": -0.23924363826664466 + "x": -0.97096, + "y": -0.23924 }, { - "x": -0.8854663941956201, - "y": -0.46470341590116027 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7484370760332898, - "y": -0.6632058075882173 + "x": -0.74844, + "y": -0.66321 }, { - "x": -0.5681102026406644, - "y": -0.8229524880912525 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.35456892402501616, - "y": -0.9350298808678482 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.1205302350208059, - "y": -0.9927096566699799 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.1205302350208059, - "y": -0.9927096566699799 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35456892402501616, - "y": -0.9350298808678482 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5681102026406644, - "y": -0.8229524880912525 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484370760332898, - "y": -0.6632058075882173 + "x": 0.74844, + "y": -0.66321 }, { - "x": 0.8854663941956201, - "y": -0.46470341590116027 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.970959567412021, - "y": -0.23924363826664466 + "x": 0.97096, + "y": -0.23924 }, { "x": 1, @@ -65346,12 +65346,12 @@ } }, { - "x": 304.5520000000001, - "y": 1067.503754767027 + "x": 304.552, + "y": 1067.50375 }, { - "x": 255.07800000000006, - "y": 1017.6657547670271 + "x": 255.078, + "y": 1017.66575 }, { "category": 1, @@ -65368,16 +65368,16 @@ "y": 0 }, { - "x": 279.81500000000005, - "y": 1042.5847547670269 + "x": 279.815, + "y": 1042.58475 }, { "x": 0, "y": 0 }, { - "x": 279.81500000000005, - "y": 1039.6774840519913 + "x": 279.815, + "y": 1039.67748 }, { "endCol": 6, @@ -65401,7 +65401,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -65487,197 +65487,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 304.5520000000001, - "y": 1045.5887547670268 + "x": 304.552, + "y": 1045.58875 }, { "body": null, "index": 1, "isInternal": false, - "x": 303.11500000000007, - "y": 1051.420754767027 + "x": 303.115, + "y": 1051.42075 }, { "body": null, "index": 2, "isInternal": false, - "x": 300.32300000000004, - "y": 1056.7407547670268 + "x": 300.323, + "y": 1056.74075 }, { "body": null, "index": 3, "isInternal": false, - "x": 296.33900000000006, - "y": 1061.236754767027 + "x": 296.339, + "y": 1061.23675 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.39500000000004, - "y": 1064.649754767027 + "x": 291.395, + "y": 1064.64975 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.7780000000001, - "y": 1066.7797547670268 + "x": 285.778, + "y": 1066.77975 }, { "body": null, "index": 6, "isInternal": false, - "x": 279.81500000000005, - "y": 1067.503754767027 + "x": 279.815, + "y": 1067.50375 }, { "body": null, "index": 7, "isInternal": false, - "x": 273.8520000000001, - "y": 1066.7797547670268 + "x": 273.852, + "y": 1066.77975 }, { "body": null, "index": 8, "isInternal": false, "x": 268.235, - "y": 1064.649754767027 + "y": 1064.64975 }, { "body": null, "index": 9, "isInternal": false, - "x": 263.29100000000005, - "y": 1061.236754767027 + "x": 263.291, + "y": 1061.23675 }, { "body": null, "index": 10, "isInternal": false, "x": 259.307, - "y": 1056.7407547670268 + "y": 1056.74075 }, { "body": null, "index": 11, "isInternal": false, - "x": 256.51500000000004, - "y": 1051.420754767027 + "x": 256.515, + "y": 1051.42075 }, { "body": null, "index": 12, "isInternal": false, - "x": 255.07800000000006, - "y": 1045.5887547670268 + "x": 255.078, + "y": 1045.58875 }, { "body": null, "index": 13, "isInternal": false, - "x": 255.07800000000006, - "y": 1039.5807547670267 + "x": 255.078, + "y": 1039.58075 }, { "body": null, "index": 14, "isInternal": false, - "x": 256.51500000000004, - "y": 1033.7487547670269 + "x": 256.515, + "y": 1033.74875 }, { "body": null, "index": 15, "isInternal": false, "x": 259.307, - "y": 1028.428754767027 + "y": 1028.42875 }, { "body": null, "index": 16, "isInternal": false, - "x": 263.29100000000005, - "y": 1023.9327547670271 + "x": 263.291, + "y": 1023.93275 }, { "body": null, "index": 17, "isInternal": false, "x": 268.235, - "y": 1020.519754767027 + "y": 1020.51975 }, { "body": null, "index": 18, "isInternal": false, - "x": 273.8520000000001, - "y": 1018.3897547670271 + "x": 273.852, + "y": 1018.38975 }, { "body": null, "index": 19, "isInternal": false, - "x": 279.81500000000005, - "y": 1017.6657547670271 + "x": 279.815, + "y": 1017.66575 }, { "body": null, "index": 20, "isInternal": false, - "x": 285.7780000000001, - "y": 1018.3897547670271 + "x": 285.778, + "y": 1018.38975 }, { "body": null, "index": 21, "isInternal": false, - "x": 291.39500000000004, - "y": 1020.519754767027 + "x": 291.395, + "y": 1020.51975 }, { "body": null, "index": 22, "isInternal": false, - "x": 296.33900000000006, - "y": 1023.9327547670271 + "x": 296.339, + "y": 1023.93275 }, { "body": null, "index": 23, "isInternal": false, - "x": 300.32300000000004, - "y": 1028.428754767027 + "x": 300.323, + "y": 1028.42875 }, { "body": null, "index": 24, "isInternal": false, - "x": 303.11500000000007, - "y": 1033.7487547670269 + "x": 303.115, + "y": 1033.74875 }, { "body": null, "index": 25, "isInternal": false, - "x": 304.5520000000001, - "y": 1039.5807547670267 + "x": 304.552, + "y": 1039.58075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1164.285644, + "area": 1164.28564, "axes": { "#": 7358 }, "bounds": { "#": 7369 }, - "circleRadius": 19.410558127572017, + "circleRadius": 19.41056, "collisionFilter": { "#": 7372 }, @@ -65692,13 +65692,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 149, - "inertia": 863.0242301481517, - "inverseInertia": 0.001158716018701276, - "inverseMass": 0.8588957573713758, + "inertia": 863.02423, + "inverseInertia": 0.00116, + "inverseMass": 0.8589, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.164285644, + "mass": 1.16429, "motion": 0, "parent": null, "position": { @@ -65720,7 +65720,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035433, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65765,40 +65765,40 @@ } ], { - "x": -0.9510437483416532, - "y": -0.3090562873333244 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8089781115544842, - "y": -0.5878387661814595 + "x": -0.80898, + "y": -0.58784 }, { - "x": -0.5878387661814595, - "y": -0.8089781115544842 + "x": -0.58784, + "y": -0.80898 }, { - "x": -0.3090562873333244, - "y": -0.9510437483416532 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090562873333244, - "y": -0.9510437483416532 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5878387661814595, - "y": -0.8089781115544842 + "x": 0.58784, + "y": -0.80898 }, { - "x": 0.8089781115544842, - "y": -0.5878387661814595 + "x": 0.80898, + "y": -0.58784 }, { - "x": 0.9510437483416532, - "y": -0.3090562873333244 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -65813,12 +65813,12 @@ } }, { - "x": 352.89600000000013, - "y": 1056.0097547670252 + "x": 352.896, + "y": 1056.00975 }, { - "x": 314.5520000000001, - "y": 1017.6657547670255 + "x": 314.552, + "y": 1017.66575 }, { "category": 1, @@ -65835,16 +65835,16 @@ "y": 0 }, { - "x": 333.7240000000001, - "y": 1036.837754767025 + "x": 333.724, + "y": 1036.83775 }, { "x": 0, "y": 0 }, { - "x": 333.7240000000001, - "y": 1033.9304840519897 + "x": 333.724, + "y": 1033.93048 }, { "endCol": 7, @@ -65868,7 +65868,7 @@ }, { "x": 0, - "y": 2.907270715035433 + "y": 2.90727 }, [ { @@ -65936,155 +65936,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 352.89600000000013, - "y": 1039.873754767025 + "x": 352.896, + "y": 1039.87375 }, { "body": null, "index": 1, "isInternal": false, - "x": 351.0190000000001, - "y": 1045.6497547670253 + "x": 351.019, + "y": 1045.64975 }, { "body": null, "index": 2, "isInternal": false, - "x": 347.4490000000001, - "y": 1050.5627547670254 + "x": 347.449, + "y": 1050.56275 }, { "body": null, "index": 3, "isInternal": false, - "x": 342.5360000000001, - "y": 1054.132754767025 + "x": 342.536, + "y": 1054.13275 }, { "body": null, "index": 4, "isInternal": false, - "x": 336.7600000000001, - "y": 1056.0097547670252 + "x": 336.76, + "y": 1056.00975 }, { "body": null, "index": 5, "isInternal": false, - "x": 330.6880000000001, - "y": 1056.0097547670252 + "x": 330.688, + "y": 1056.00975 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.9120000000001, - "y": 1054.132754767025 + "x": 324.912, + "y": 1054.13275 }, { "body": null, "index": 7, "isInternal": false, - "x": 319.9990000000001, - "y": 1050.5627547670254 + "x": 319.999, + "y": 1050.56275 }, { "body": null, "index": 8, "isInternal": false, - "x": 316.4290000000001, - "y": 1045.6497547670253 + "x": 316.429, + "y": 1045.64975 }, { "body": null, "index": 9, "isInternal": false, - "x": 314.5520000000001, - "y": 1039.873754767025 + "x": 314.552, + "y": 1039.87375 }, { "body": null, "index": 10, "isInternal": false, - "x": 314.5520000000001, - "y": 1033.8017547670254 + "x": 314.552, + "y": 1033.80175 }, { "body": null, "index": 11, "isInternal": false, - "x": 316.4290000000001, - "y": 1028.0257547670253 + "x": 316.429, + "y": 1028.02575 }, { "body": null, "index": 12, "isInternal": false, - "x": 319.9990000000001, - "y": 1023.1127547670255 + "x": 319.999, + "y": 1023.11275 }, { "body": null, "index": 13, "isInternal": false, - "x": 324.9120000000001, - "y": 1019.5427547670256 + "x": 324.912, + "y": 1019.54275 }, { "body": null, "index": 14, "isInternal": false, - "x": 330.6880000000001, - "y": 1017.6657547670255 + "x": 330.688, + "y": 1017.66575 }, { "body": null, "index": 15, "isInternal": false, - "x": 336.7600000000001, - "y": 1017.6657547670255 + "x": 336.76, + "y": 1017.66575 }, { "body": null, "index": 16, "isInternal": false, - "x": 342.5360000000001, - "y": 1019.5427547670256 + "x": 342.536, + "y": 1019.54275 }, { "body": null, "index": 17, "isInternal": false, - "x": 347.4490000000001, - "y": 1023.1127547670255 + "x": 347.449, + "y": 1023.11275 }, { "body": null, "index": 18, "isInternal": false, - "x": 351.0190000000001, - "y": 1028.0257547670253 + "x": 351.019, + "y": 1028.02575 }, { "body": null, "index": 19, "isInternal": false, - "x": 352.89600000000013, - "y": 1033.8017547670254 + "x": 352.896, + "y": 1033.80175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1102.2695840000001, + "area": 1102.26958, "axes": { "#": 7404 }, "bounds": { "#": 7415 }, - "circleRadius": 18.886766975308642, + "circleRadius": 18.88677, "collisionFilter": { "#": 7418 }, @@ -66099,13 +66099,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 150, - "inertia": 773.5342557734692, - "inverseInertia": 0.0012927675698086365, - "inverseMass": 0.9072190818974825, + "inertia": 773.53426, + "inverseInertia": 0.00129, + "inverseMass": 0.90722, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.102269584, + "mass": 1.10227, "motion": 0, "parent": null, "position": { @@ -66127,7 +66127,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035433, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66172,40 +66172,40 @@ } ], { - "x": -0.9510427750736182, - "y": -0.30905928230724816 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8090652604703894, - "y": -0.5877188139748298 + "x": -0.80907, + "y": -0.58772 }, { - "x": -0.5877188139748298, - "y": -0.8090652604703894 + "x": -0.58772, + "y": -0.80907 }, { - "x": -0.30905928230724816, - "y": -0.9510427750736182 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30905928230724816, - "y": -0.9510427750736182 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5877188139748298, - "y": -0.8090652604703894 + "x": 0.58772, + "y": -0.80907 }, { - "x": 0.8090652604703894, - "y": -0.5877188139748298 + "x": 0.80907, + "y": -0.58772 }, { - "x": 0.9510427750736182, - "y": -0.30905928230724816 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -66220,12 +66220,12 @@ } }, { - "x": 400.2040000000001, - "y": 1054.9737547670252 + "x": 400.204, + "y": 1054.97375 }, { - "x": 362.89600000000013, - "y": 1017.6657547670255 + "x": 362.896, + "y": 1017.66575 }, { "category": 1, @@ -66242,16 +66242,16 @@ "y": 0 }, { - "x": 381.5500000000001, - "y": 1036.319754767025 + "x": 381.55, + "y": 1036.31975 }, { "x": 0, "y": 0 }, { - "x": 381.5500000000001, - "y": 1033.4124840519896 + "x": 381.55, + "y": 1033.41248 }, { "endCol": 8, @@ -66275,7 +66275,7 @@ }, { "x": 0, - "y": 2.907270715035433 + "y": 2.90727 }, [ { @@ -66343,155 +66343,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 400.2040000000001, - "y": 1039.2747547670251 + "x": 400.204, + "y": 1039.27475 }, { "body": null, "index": 1, "isInternal": false, - "x": 398.3780000000001, - "y": 1044.893754767025 + "x": 398.378, + "y": 1044.89375 }, { "body": null, "index": 2, "isInternal": false, - "x": 394.90500000000014, - "y": 1049.6747547670252 + "x": 394.905, + "y": 1049.67475 }, { "body": null, "index": 3, "isInternal": false, - "x": 390.12400000000014, - "y": 1053.1477547670252 + "x": 390.124, + "y": 1053.14775 }, { "body": null, "index": 4, "isInternal": false, - "x": 384.5050000000001, - "y": 1054.9737547670252 + "x": 384.505, + "y": 1054.97375 }, { "body": null, "index": 5, "isInternal": false, - "x": 378.59500000000014, - "y": 1054.9737547670252 + "x": 378.595, + "y": 1054.97375 }, { "body": null, "index": 6, "isInternal": false, - "x": 372.9760000000001, - "y": 1053.1477547670252 + "x": 372.976, + "y": 1053.14775 }, { "body": null, "index": 7, "isInternal": false, - "x": 368.1950000000001, - "y": 1049.6747547670252 + "x": 368.195, + "y": 1049.67475 }, { "body": null, "index": 8, "isInternal": false, - "x": 364.72200000000015, - "y": 1044.893754767025 + "x": 364.722, + "y": 1044.89375 }, { "body": null, "index": 9, "isInternal": false, - "x": 362.89600000000013, - "y": 1039.2747547670251 + "x": 362.896, + "y": 1039.27475 }, { "body": null, "index": 10, "isInternal": false, - "x": 362.89600000000013, - "y": 1033.3647547670253 + "x": 362.896, + "y": 1033.36475 }, { "body": null, "index": 11, "isInternal": false, - "x": 364.72200000000015, - "y": 1027.7457547670253 + "x": 364.722, + "y": 1027.74575 }, { "body": null, "index": 12, "isInternal": false, - "x": 368.1950000000001, - "y": 1022.9647547670255 + "x": 368.195, + "y": 1022.96475 }, { "body": null, "index": 13, "isInternal": false, - "x": 372.9760000000001, - "y": 1019.4917547670256 + "x": 372.976, + "y": 1019.49175 }, { "body": null, "index": 14, "isInternal": false, - "x": 378.59500000000014, - "y": 1017.6657547670255 + "x": 378.595, + "y": 1017.66575 }, { "body": null, "index": 15, "isInternal": false, - "x": 384.5050000000001, - "y": 1017.6657547670255 + "x": 384.505, + "y": 1017.66575 }, { "body": null, "index": 16, "isInternal": false, - "x": 390.12400000000014, - "y": 1019.4917547670256 + "x": 390.124, + "y": 1019.49175 }, { "body": null, "index": 17, "isInternal": false, - "x": 394.90500000000014, - "y": 1022.9647547670255 + "x": 394.905, + "y": 1022.96475 }, { "body": null, "index": 18, "isInternal": false, - "x": 398.3780000000001, - "y": 1027.7457547670253 + "x": 398.378, + "y": 1027.74575 }, { "body": null, "index": 19, "isInternal": false, - "x": 400.2040000000001, - "y": 1033.3647547670253 + "x": 400.204, + "y": 1033.36475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2632.366764, + "area": 2632.36676, "axes": { "#": 7450 }, "bounds": { "#": 7464 }, - "circleRadius": 29.08828446502058, + "circleRadius": 29.08828, "collisionFilter": { "#": 7467 }, @@ -66506,13 +66506,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 151, - "inertia": 4411.448432356564, - "inverseInertia": 0.0002266829172625752, - "inverseMass": 0.37988627332479113, + "inertia": 4411.44843, + "inverseInertia": 0.00023, + "inverseMass": 0.37989, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.632366764, + "mass": 2.63237, "motion": 0, "parent": null, "position": { @@ -66534,7 +66534,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66588,52 +66588,52 @@ } ], { - "x": -0.9709506891175149, - "y": -0.2392796675487136 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854404503453225, - "y": -0.4647528471050742 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.7485254861082281, - "y": -0.6631060221762737 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680228558108505, - "y": -0.8230127795341247 + "x": -0.56802, + "y": -0.82301 }, { - "x": -0.3546370394943198, - "y": -0.9350040482365326 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12050598301835631, - "y": -0.9927126009358296 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050598301835631, - "y": -0.9927126009358296 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546370394943198, - "y": -0.9350040482365326 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680228558108505, - "y": -0.8230127795341247 + "x": 0.56802, + "y": -0.82301 }, { - "x": 0.7485254861082281, - "y": -0.6631060221762737 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854404503453225, - "y": -0.4647528471050742 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.9709506891175149, - "y": -0.2392796675487136 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -66648,12 +66648,12 @@ } }, { - "x": 467.9560000000001, - "y": 1075.8417547670267 + "x": 467.956, + "y": 1075.84175 }, { - "x": 410.2040000000001, - "y": 1017.665754767027 + "x": 410.204, + "y": 1017.66575 }, { "category": 1, @@ -66670,16 +66670,16 @@ "y": 0 }, { - "x": 439.0800000000001, - "y": 1046.7537547670267 + "x": 439.08, + "y": 1046.75375 }, { "x": 0, "y": 0 }, { - "x": 439.0800000000001, - "y": 1043.8464840519912 + "x": 439.08, + "y": 1043.84648 }, { "endCol": 9, @@ -66703,7 +66703,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -66789,197 +66789,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 467.9560000000001, - "y": 1050.2597547670266 + "x": 467.956, + "y": 1050.25975 }, { "body": null, "index": 1, "isInternal": false, - "x": 466.2780000000001, - "y": 1057.0687547670268 + "x": 466.278, + "y": 1057.06875 }, { "body": null, "index": 2, "isInternal": false, - "x": 463.0190000000001, - "y": 1063.2777547670266 + "x": 463.019, + "y": 1063.27775 }, { "body": null, "index": 3, "isInternal": false, - "x": 458.3690000000001, - "y": 1068.526754767027 + "x": 458.369, + "y": 1068.52675 }, { "body": null, "index": 4, "isInternal": false, - "x": 452.59800000000007, - "y": 1072.5097547670268 + "x": 452.598, + "y": 1072.50975 }, { "body": null, "index": 5, "isInternal": false, - "x": 446.0410000000001, - "y": 1074.9967547670267 + "x": 446.041, + "y": 1074.99675 }, { "body": null, "index": 6, "isInternal": false, - "x": 439.0800000000001, - "y": 1075.8417547670267 + "x": 439.08, + "y": 1075.84175 }, { "body": null, "index": 7, "isInternal": false, - "x": 432.1190000000001, - "y": 1074.9967547670267 + "x": 432.119, + "y": 1074.99675 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.5620000000001, - "y": 1072.5097547670268 + "x": 425.562, + "y": 1072.50975 }, { "body": null, "index": 9, "isInternal": false, - "x": 419.7910000000001, - "y": 1068.526754767027 + "x": 419.791, + "y": 1068.52675 }, { "body": null, "index": 10, "isInternal": false, - "x": 415.1410000000001, - "y": 1063.2777547670266 + "x": 415.141, + "y": 1063.27775 }, { "body": null, "index": 11, "isInternal": false, - "x": 411.8820000000001, - "y": 1057.0687547670268 + "x": 411.882, + "y": 1057.06875 }, { "body": null, "index": 12, "isInternal": false, - "x": 410.2040000000001, - "y": 1050.2597547670266 + "x": 410.204, + "y": 1050.25975 }, { "body": null, "index": 13, "isInternal": false, - "x": 410.2040000000001, - "y": 1043.247754767027 + "x": 410.204, + "y": 1043.24775 }, { "body": null, "index": 14, "isInternal": false, - "x": 411.8820000000001, - "y": 1036.4387547670267 + "x": 411.882, + "y": 1036.43875 }, { "body": null, "index": 15, "isInternal": false, - "x": 415.1410000000001, - "y": 1030.2297547670266 + "x": 415.141, + "y": 1030.22975 }, { "body": null, "index": 16, "isInternal": false, - "x": 419.7910000000001, - "y": 1024.9807547670268 + "x": 419.791, + "y": 1024.98075 }, { "body": null, "index": 17, "isInternal": false, - "x": 425.5620000000001, - "y": 1020.997754767027 + "x": 425.562, + "y": 1020.99775 }, { "body": null, "index": 18, "isInternal": false, - "x": 432.1190000000001, - "y": 1018.5107547670269 + "x": 432.119, + "y": 1018.51075 }, { "body": null, "index": 19, "isInternal": false, - "x": 439.0800000000001, - "y": 1017.665754767027 + "x": 439.08, + "y": 1017.66575 }, { "body": null, "index": 20, "isInternal": false, - "x": 446.0410000000001, - "y": 1018.5107547670269 + "x": 446.041, + "y": 1018.51075 }, { "body": null, "index": 21, "isInternal": false, - "x": 452.59800000000007, - "y": 1020.997754767027 + "x": 452.598, + "y": 1020.99775 }, { "body": null, "index": 22, "isInternal": false, - "x": 458.3690000000001, - "y": 1024.9807547670268 + "x": 458.369, + "y": 1024.98075 }, { "body": null, "index": 23, "isInternal": false, - "x": 463.0190000000001, - "y": 1030.2297547670266 + "x": 463.019, + "y": 1030.22975 }, { "body": null, "index": 24, "isInternal": false, - "x": 466.2780000000001, - "y": 1036.4387547670267 + "x": 466.278, + "y": 1036.43875 }, { "body": null, "index": 25, "isInternal": false, - "x": 467.9560000000001, - "y": 1043.247754767027 + "x": 467.956, + "y": 1043.24775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1264.582704, + "area": 1264.5827, "axes": { "#": 7505 }, "bounds": { "#": 7517 }, - "circleRadius": 20.200295781893004, + "circleRadius": 20.2003, "collisionFilter": { "#": 7520 }, @@ -66994,13 +66994,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 152, - "inertia": 1018.1008680363917, - "inverseInertia": 0.0009822209482334469, - "inverseMass": 0.7907746933726844, + "inertia": 1018.10087, + "inverseInertia": 0.00098, + "inverseMass": 0.79077, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.264582704, + "mass": 1.26458, "motion": 0, "parent": null, "position": { @@ -67022,7 +67022,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035433, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67070,44 +67070,44 @@ } ], { - "x": -0.9594900287513833, - "y": -0.2817425859302596 + "x": -0.95949, + "y": -0.28174 }, { - "x": -0.8411671723221078, - "y": -0.5407751734386752 + "x": -0.84117, + "y": -0.54078 }, { - "x": -0.6549636434241192, - "y": -0.7556603905145507 + "x": -0.65496, + "y": -0.75566 }, { - "x": -0.4153486707992586, - "y": -0.909662289899548 + "x": -0.41535, + "y": -0.90966 }, { - "x": -0.14227355372381703, - "y": -0.9898273768242603 + "x": -0.14227, + "y": -0.98983 }, { - "x": 0.14227355372381703, - "y": -0.9898273768242603 + "x": 0.14227, + "y": -0.98983 }, { - "x": 0.4153486707992586, - "y": -0.909662289899548 + "x": 0.41535, + "y": -0.90966 }, { - "x": 0.6549636434241192, - "y": -0.7556603905145507 + "x": 0.65496, + "y": -0.75566 }, { - "x": 0.8411671723221078, - "y": -0.5407751734386752 + "x": 0.84117, + "y": -0.54078 }, { - "x": 0.9594900287513833, - "y": -0.2817425859302596 + "x": 0.95949, + "y": -0.28174 }, { "x": 1, @@ -67122,12 +67122,12 @@ } }, { - "x": 517.9460000000001, - "y": 1058.065754767025 + "x": 517.946, + "y": 1058.06575 }, { - "x": 477.9560000000001, - "y": 1017.6657547670253 + "x": 477.956, + "y": 1017.66575 }, { "category": 1, @@ -67144,16 +67144,16 @@ "y": 0 }, { - "x": 497.9510000000001, - "y": 1037.8657547670248 + "x": 497.951, + "y": 1037.86575 }, { "x": 0, "y": 0 }, { - "x": 497.9510000000001, - "y": 1034.9584840519894 + "x": 497.951, + "y": 1034.95848 }, { "endCol": 10, @@ -67177,7 +67177,7 @@ }, { "x": 0, - "y": 2.907270715035433 + "y": 2.90727 }, [ { @@ -67251,169 +67251,169 @@ "body": null, "index": 0, "isInternal": false, - "x": 517.9460000000001, - "y": 1040.7407547670248 + "x": 517.946, + "y": 1040.74075 }, { "body": null, "index": 1, "isInternal": false, "x": 516.326, - "y": 1046.257754767025 + "y": 1046.25775 }, { "body": null, "index": 2, "isInternal": false, - "x": 513.2170000000001, - "y": 1051.093754767025 + "x": 513.217, + "y": 1051.09375 }, { "body": null, "index": 3, "isInternal": false, - "x": 508.87200000000007, - "y": 1054.8597547670252 + "x": 508.872, + "y": 1054.85975 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.64200000000005, - "y": 1057.247754767025 + "x": 503.642, + "y": 1057.24775 }, { "body": null, "index": 5, "isInternal": false, - "x": 497.9510000000001, - "y": 1058.065754767025 + "x": 497.951, + "y": 1058.06575 }, { "body": null, "index": 6, "isInternal": false, - "x": 492.2600000000001, - "y": 1057.247754767025 + "x": 492.26, + "y": 1057.24775 }, { "body": null, "index": 7, "isInternal": false, - "x": 487.0300000000001, - "y": 1054.8597547670252 + "x": 487.03, + "y": 1054.85975 }, { "body": null, "index": 8, "isInternal": false, - "x": 482.68500000000006, - "y": 1051.093754767025 + "x": 482.685, + "y": 1051.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 479.5760000000001, - "y": 1046.257754767025 + "x": 479.576, + "y": 1046.25775 }, { "body": null, "index": 10, "isInternal": false, - "x": 477.9560000000001, - "y": 1040.7407547670248 + "x": 477.956, + "y": 1040.74075 }, { "body": null, "index": 11, "isInternal": false, - "x": 477.9560000000001, - "y": 1034.990754767025 + "x": 477.956, + "y": 1034.99075 }, { "body": null, "index": 12, "isInternal": false, - "x": 479.5760000000001, - "y": 1029.4737547670252 + "x": 479.576, + "y": 1029.47375 }, { "body": null, "index": 13, "isInternal": false, - "x": 482.68500000000006, - "y": 1024.6377547670254 + "x": 482.685, + "y": 1024.63775 }, { "body": null, "index": 14, "isInternal": false, - "x": 487.0300000000001, - "y": 1020.8717547670253 + "x": 487.03, + "y": 1020.87175 }, { "body": null, "index": 15, "isInternal": false, - "x": 492.2600000000001, - "y": 1018.4837547670254 + "x": 492.26, + "y": 1018.48375 }, { "body": null, "index": 16, "isInternal": false, - "x": 497.9510000000001, - "y": 1017.6657547670253 + "x": 497.951, + "y": 1017.66575 }, { "body": null, "index": 17, "isInternal": false, - "x": 503.64200000000005, - "y": 1018.4837547670254 + "x": 503.642, + "y": 1018.48375 }, { "body": null, "index": 18, "isInternal": false, - "x": 508.87200000000007, - "y": 1020.8717547670253 + "x": 508.872, + "y": 1020.87175 }, { "body": null, "index": 19, "isInternal": false, - "x": 513.2170000000001, - "y": 1024.6377547670254 + "x": 513.217, + "y": 1024.63775 }, { "body": null, "index": 20, "isInternal": false, "x": 516.326, - "y": 1029.4737547670252 + "y": 1029.47375 }, { "body": null, "index": 21, "isInternal": false, - "x": 517.9460000000001, - "y": 1034.990754767025 + "x": 517.946, + "y": 1034.99075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2530.374598000001, + "area": 2530.3746, "axes": { "#": 7554 }, "bounds": { "#": 7568 }, - "circleRadius": 28.51909722222222, + "circleRadius": 28.5191, "collisionFilter": { "#": 7571 }, @@ -67428,13 +67428,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 153, - "inertia": 4076.2240565460306, - "inverseInertia": 0.00024532508177368083, - "inverseMass": 0.39519840295203584, + "inertia": 4076.22406, + "inverseInertia": 0.00025, + "inverseMass": 0.3952, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.5303745980000008, + "mass": 2.53037, "motion": 0, "parent": null, "position": { @@ -67456,7 +67456,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67510,52 +67510,52 @@ } ], { - "x": -0.9709499198104373, - "y": -0.23928278922669202 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854697240415134, - "y": -0.4646970710106168 + "x": -0.88547, + "y": -0.4647 }, { - "x": -0.7485077289974239, - "y": -0.6631260661677528 + "x": -0.74851, + "y": -0.66313 }, { - "x": -0.567953853605749, - "y": -0.8230603988616991 + "x": -0.56795, + "y": -0.82306 }, { - "x": -0.35462792443102925, - "y": -0.9350075054317694 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12057895971706822, - "y": -0.9927037395283396 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057895971706822, - "y": -0.9927037395283396 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.35462792443102925, - "y": -0.9350075054317694 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.567953853605749, - "y": -0.8230603988616991 + "x": 0.56795, + "y": -0.82306 }, { - "x": 0.7485077289974239, - "y": -0.6631260661677528 + "x": 0.74851, + "y": -0.66313 }, { - "x": 0.8854697240415134, - "y": -0.4646970710106168 + "x": 0.88547, + "y": -0.4647 }, { - "x": 0.9709499198104373, - "y": -0.23928278922669202 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -67570,12 +67570,12 @@ } }, { - "x": 584.5680000000002, - "y": 1074.7037547670268 + "x": 584.568, + "y": 1074.70375 }, { - "x": 527.9460000000001, - "y": 1017.665754767027 + "x": 527.946, + "y": 1017.66575 }, { "category": 1, @@ -67592,16 +67592,16 @@ "y": 0 }, { - "x": 556.2570000000002, - "y": 1046.1847547670268 + "x": 556.257, + "y": 1046.18475 }, { "x": 0, "y": 0 }, { - "x": 556.2570000000002, - "y": 1043.2774840519912 + "x": 556.257, + "y": 1043.27748 }, { "endCol": 12, @@ -67625,7 +67625,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -67711,197 +67711,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 584.5680000000002, - "y": 1049.622754767027 + "x": 584.568, + "y": 1049.62275 }, { "body": null, "index": 1, "isInternal": false, - "x": 582.9230000000002, - "y": 1056.2977547670268 + "x": 582.923, + "y": 1056.29775 }, { "body": null, "index": 2, "isInternal": false, - "x": 579.7280000000002, - "y": 1062.3857547670268 + "x": 579.728, + "y": 1062.38575 }, { "body": null, "index": 3, "isInternal": false, - "x": 575.1690000000002, - "y": 1067.5317547670268 + "x": 575.169, + "y": 1067.53175 }, { "body": null, "index": 4, "isInternal": false, - "x": 569.5100000000002, - "y": 1071.4367547670267 + "x": 569.51, + "y": 1071.43675 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.0820000000002, - "y": 1073.8747547670268 + "x": 563.082, + "y": 1073.87475 }, { "body": null, "index": 6, "isInternal": false, - "x": 556.2570000000002, - "y": 1074.7037547670268 + "x": 556.257, + "y": 1074.70375 }, { "body": null, "index": 7, "isInternal": false, - "x": 549.4320000000001, - "y": 1073.8747547670268 + "x": 549.432, + "y": 1073.87475 }, { "body": null, "index": 8, "isInternal": false, - "x": 543.0040000000001, - "y": 1071.4367547670267 + "x": 543.004, + "y": 1071.43675 }, { "body": null, "index": 9, "isInternal": false, - "x": 537.3450000000003, - "y": 1067.5317547670268 + "x": 537.345, + "y": 1067.53175 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.7860000000002, - "y": 1062.3857547670268 + "x": 532.786, + "y": 1062.38575 }, { "body": null, "index": 11, "isInternal": false, - "x": 529.5910000000001, - "y": 1056.2977547670268 + "x": 529.591, + "y": 1056.29775 }, { "body": null, "index": 12, "isInternal": false, - "x": 527.9460000000001, - "y": 1049.622754767027 + "x": 527.946, + "y": 1049.62275 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.9460000000001, - "y": 1042.7467547670267 + "x": 527.946, + "y": 1042.74675 }, { "body": null, "index": 14, "isInternal": false, - "x": 529.5910000000001, - "y": 1036.0717547670267 + "x": 529.591, + "y": 1036.07175 }, { "body": null, "index": 15, "isInternal": false, - "x": 532.7860000000002, - "y": 1029.9837547670268 + "x": 532.786, + "y": 1029.98375 }, { "body": null, "index": 16, "isInternal": false, - "x": 537.3450000000003, - "y": 1024.837754767027 + "x": 537.345, + "y": 1024.83775 }, { "body": null, "index": 17, "isInternal": false, - "x": 543.0040000000001, - "y": 1020.9327547670271 + "x": 543.004, + "y": 1020.93275 }, { "body": null, "index": 18, "isInternal": false, - "x": 549.4320000000001, - "y": 1018.494754767027 + "x": 549.432, + "y": 1018.49475 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.2570000000002, - "y": 1017.665754767027 + "x": 556.257, + "y": 1017.66575 }, { "body": null, "index": 20, "isInternal": false, - "x": 563.0820000000002, - "y": 1018.494754767027 + "x": 563.082, + "y": 1018.49475 }, { "body": null, "index": 21, "isInternal": false, - "x": 569.5100000000002, - "y": 1020.9327547670271 + "x": 569.51, + "y": 1020.93275 }, { "body": null, "index": 22, "isInternal": false, - "x": 575.1690000000002, - "y": 1024.837754767027 + "x": 575.169, + "y": 1024.83775 }, { "body": null, "index": 23, "isInternal": false, - "x": 579.7280000000002, - "y": 1029.9837547670268 + "x": 579.728, + "y": 1029.98375 }, { "body": null, "index": 24, "isInternal": false, - "x": 582.9230000000002, - "y": 1036.0717547670267 + "x": 582.923, + "y": 1036.07175 }, { "body": null, "index": 25, "isInternal": false, - "x": 584.5680000000002, - "y": 1042.7467547670267 + "x": 584.568, + "y": 1042.74675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2459.8208880000007, + "area": 2459.82089, "axes": { "#": 7609 }, "bounds": { "#": 7623 }, - "circleRadius": 28.118762860082306, + "circleRadius": 28.11876, "collisionFilter": { "#": 7626 }, @@ -67916,13 +67916,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 154, - "inertia": 3852.0807238730777, - "inverseInertia": 0.00025959995952383604, - "inverseMass": 0.4065336646576195, + "inertia": 3852.08072, + "inverseInertia": 0.00026, + "inverseMass": 0.40653, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.4598208880000008, + "mass": 2.45982, "motion": 0, "parent": null, "position": { @@ -67944,7 +67944,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67998,52 +67998,52 @@ } ], { - "x": -0.970918412420747, - "y": -0.2394106021511506 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8854616473223555, - "y": -0.46471246069067335 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485233238858229, - "y": -0.6631084629221072 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.5680741729531639, - "y": -0.8229773593626856 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3546453397852063, - "y": -0.9350008999827945 + "x": -0.35465, + "y": -0.935 }, { - "x": -0.12052962549589565, - "y": -0.9927097306754977 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052962549589565, - "y": -0.9927097306754977 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3546453397852063, - "y": -0.9350008999827945 + "x": 0.35465, + "y": -0.935 }, { - "x": 0.5680741729531639, - "y": -0.8229773593626856 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485233238858229, - "y": -0.6631084629221072 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854616473223555, - "y": -0.46471246069067335 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.970918412420747, - "y": -0.2394106021511506 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -68058,12 +68058,12 @@ } }, { - "x": 650.3960000000002, - "y": 1073.9037547670266 + "x": 650.396, + "y": 1073.90375 }, { - "x": 594.5680000000002, - "y": 1017.6657547670269 + "x": 594.568, + "y": 1017.66575 }, { "category": 1, @@ -68080,16 +68080,16 @@ "y": 0 }, { - "x": 622.4820000000002, - "y": 1045.7847547670267 + "x": 622.482, + "y": 1045.78475 }, { "x": 0, "y": 0 }, { - "x": 622.4820000000002, - "y": 1042.8774840519911 + "x": 622.482, + "y": 1042.87748 }, { "endCol": 13, @@ -68113,7 +68113,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -68199,183 +68199,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 650.3960000000002, - "y": 1049.1737547670268 + "x": 650.396, + "y": 1049.17375 }, { "body": null, "index": 1, "isInternal": false, - "x": 648.7730000000003, - "y": 1055.7557547670267 + "x": 648.773, + "y": 1055.75575 }, { "body": null, "index": 2, "isInternal": false, - "x": 645.6230000000002, - "y": 1061.7577547670267 + "x": 645.623, + "y": 1061.75775 }, { "body": null, "index": 3, "isInternal": false, - "x": 641.1280000000002, - "y": 1066.8317547670267 + "x": 641.128, + "y": 1066.83175 }, { "body": null, "index": 4, "isInternal": false, - "x": 635.5490000000002, - "y": 1070.6827547670266 + "x": 635.549, + "y": 1070.68275 }, { "body": null, "index": 5, "isInternal": false, - "x": 629.2110000000002, - "y": 1073.0867547670266 + "x": 629.211, + "y": 1073.08675 }, { "body": null, "index": 6, "isInternal": false, - "x": 622.4820000000002, - "y": 1073.9037547670266 + "x": 622.482, + "y": 1073.90375 }, { "body": null, "index": 7, "isInternal": false, - "x": 615.7530000000002, - "y": 1073.0867547670266 + "x": 615.753, + "y": 1073.08675 }, { "body": null, "index": 8, "isInternal": false, - "x": 609.4150000000002, - "y": 1070.6827547670266 + "x": 609.415, + "y": 1070.68275 }, { "body": null, "index": 9, "isInternal": false, - "x": 603.8360000000002, - "y": 1066.8317547670267 + "x": 603.836, + "y": 1066.83175 }, { "body": null, "index": 10, "isInternal": false, - "x": 599.3410000000002, - "y": 1061.7577547670267 + "x": 599.341, + "y": 1061.75775 }, { "body": null, "index": 11, "isInternal": false, - "x": 596.1910000000001, - "y": 1055.7557547670267 + "x": 596.191, + "y": 1055.75575 }, { "body": null, "index": 12, "isInternal": false, - "x": 594.5680000000002, - "y": 1049.1737547670268 + "x": 594.568, + "y": 1049.17375 }, { "body": null, "index": 13, "isInternal": false, - "x": 594.5680000000002, - "y": 1042.3957547670266 + "x": 594.568, + "y": 1042.39575 }, { "body": null, "index": 14, "isInternal": false, - "x": 596.1910000000001, - "y": 1035.8137547670265 + "x": 596.191, + "y": 1035.81375 }, { "body": null, "index": 15, "isInternal": false, - "x": 599.3410000000002, - "y": 1029.8117547670267 + "x": 599.341, + "y": 1029.81175 }, { "body": null, "index": 16, "isInternal": false, - "x": 603.8360000000002, - "y": 1024.737754767027 + "x": 603.836, + "y": 1024.73775 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.4150000000002, - "y": 1020.8867547670269 + "x": 609.415, + "y": 1020.88675 }, { "body": null, "index": 18, "isInternal": false, - "x": 615.7530000000002, - "y": 1018.4827547670269 + "x": 615.753, + "y": 1018.48275 }, { "body": null, "index": 19, "isInternal": false, - "x": 622.4820000000002, - "y": 1017.6657547670269 + "x": 622.482, + "y": 1017.66575 }, { "body": null, "index": 20, "isInternal": false, - "x": 629.2110000000002, - "y": 1018.4827547670269 + "x": 629.211, + "y": 1018.48275 }, { "body": null, "index": 21, "isInternal": false, - "x": 635.5490000000002, - "y": 1020.8867547670269 + "x": 635.549, + "y": 1020.88675 }, { "body": null, "index": 22, "isInternal": false, - "x": 641.1280000000002, - "y": 1024.737754767027 + "x": 641.128, + "y": 1024.73775 }, { "body": null, "index": 23, "isInternal": false, - "x": 645.6230000000002, - "y": 1029.8117547670267 + "x": 645.623, + "y": 1029.81175 }, { "body": null, "index": 24, "isInternal": false, - "x": 648.7730000000003, - "y": 1035.8137547670265 + "x": 648.773, + "y": 1035.81375 }, { "body": null, "index": 25, "isInternal": false, - "x": 650.3960000000002, - "y": 1042.3957547670266 + "x": 650.396, + "y": 1042.39575 }, [], [], diff --git a/test/browser/refs/beachBalls/beachBalls-0.json b/test/browser/refs/beachBalls/beachBalls-0.json index c48c7131..174a9f66 100644 --- a/test/browser/refs/beachBalls/beachBalls-0.json +++ b/test/browser/refs/beachBalls/beachBalls-0.json @@ -877,7 +877,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 17499.922508000003, + "area": 17499.92251, "axes": { "#": 93 }, @@ -899,13 +899,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -978,52 +978,52 @@ } ], { - "x": -0.9709407749683796, - "y": -0.23931989366494885 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854718697090299, - "y": -0.464692982466913 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7484885609447386, - "y": -0.6631477015981239 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680676532599176, - "y": -0.82298185965413 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3546425628177238, - "y": -0.9350019532803537 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12051470556315139, - "y": -0.9927115420619561 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051470556315139, - "y": -0.9927115420619561 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546425628177238, - "y": -0.9350019532803537 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680676532599176, - "y": -0.82298185965413 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484885609447386, - "y": -0.6631477015981239 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854718697090299, - "y": -0.464692982466913 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709407749683796, - "y": -0.23931989366494885 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -1193,7 +1193,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 124.18700000000001, + "x": 124.187, "y": 231.138 }, { @@ -1221,14 +1221,14 @@ "body": null, "index": 7, "isInternal": false, - "x": 56.504000000000005, + "x": 56.504, "y": 247.821 }, { "body": null, "index": 8, "isInternal": false, - "x": 39.599000000000004, + "x": 39.599, "y": 241.409 }, { @@ -1242,14 +1242,14 @@ "body": null, "index": 10, "isInternal": false, - "x": 12.729000000000006, + "x": 12.729, "y": 217.605 }, { "body": null, "index": 11, "isInternal": false, - "x": 4.326999999999998, + "x": 4.327, "y": 201.595 }, { @@ -1270,14 +1270,14 @@ "body": null, "index": 14, "isInternal": false, - "x": 4.326999999999998, + "x": 4.327, "y": 148.405 }, { "body": null, "index": 15, "isInternal": false, - "x": 12.729000000000006, + "x": 12.729, "y": 132.395 }, { @@ -1291,14 +1291,14 @@ "body": null, "index": 17, "isInternal": false, - "x": 39.599000000000004, + "x": 39.599, "y": 108.591 }, { "body": null, "index": 18, "isInternal": false, - "x": 56.504000000000005, + "x": 56.504, "y": 102.179 }, { @@ -1326,7 +1326,7 @@ "body": null, "index": 22, "isInternal": false, - "x": 124.18700000000001, + "x": 124.187, "y": 118.862 }, { @@ -1355,7 +1355,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 17499.922508000003, + "area": 17499.92251, "axes": { "#": 147 }, @@ -1377,13 +1377,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -1456,52 +1456,52 @@ } ], { - "x": -0.9709407749683796, - "y": -0.23931989366494885 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854718697090299, - "y": -0.464692982466913 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7484885609447386, - "y": -0.6631477015981239 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680676532599176, - "y": -0.82298185965413 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3546425628177238, - "y": -0.9350019532803537 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12051470556315139, - "y": -0.9927115420619561 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051470556315139, - "y": -0.9927115420619561 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546425628177238, - "y": -0.9350019532803537 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680676532599176, - "y": -0.82298185965413 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484885609447386, - "y": -0.6631477015981239 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854718697090299, - "y": -0.464692982466913 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709407749683796, - "y": -0.23931989366494885 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -1664,7 +1664,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 305.08299999999997, + "x": 305.083, "y": 217.605 }, { @@ -1678,7 +1678,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 278.21299999999997, + "x": 278.213, "y": 241.409 }, { @@ -1706,7 +1706,7 @@ "body": null, "index": 8, "isInternal": false, - "x": 208.50500000000002, + "x": 208.505, "y": 241.409 }, { @@ -1720,7 +1720,7 @@ "body": null, "index": 10, "isInternal": false, - "x": 181.63500000000002, + "x": 181.635, "y": 217.605 }, { @@ -1755,7 +1755,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 181.63500000000002, + "x": 181.635, "y": 132.395 }, { @@ -1769,7 +1769,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 208.50500000000002, + "x": 208.505, "y": 108.591 }, { @@ -1797,7 +1797,7 @@ "body": null, "index": 21, "isInternal": false, - "x": 278.21299999999997, + "x": 278.213, "y": 108.591 }, { @@ -1811,7 +1811,7 @@ "body": null, "index": 23, "isInternal": false, - "x": 305.08299999999997, + "x": 305.083, "y": 132.395 }, { @@ -1833,7 +1833,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 17499.922508000003, + "area": 17499.92251, "axes": { "#": 201 }, @@ -1855,13 +1855,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -1934,52 +1934,52 @@ } ], { - "x": -0.9709407749683796, - "y": -0.23931989366494885 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854718697090299, - "y": -0.464692982466913 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7484885609447386, - "y": -0.6631477015981239 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680676532599176, - "y": -0.82298185965413 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3546425628177238, - "y": -0.9350019532803537 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12051470556315139, - "y": -0.9927115420619561 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051470556315139, - "y": -0.9927115420619561 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546425628177238, - "y": -0.9350019532803537 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680676532599176, - "y": -0.82298185965413 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484885609447386, - "y": -0.6631477015981239 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854718697090299, - "y": -0.464692982466913 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709407749683796, - "y": -0.23931989366494885 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -1994,7 +1994,7 @@ } }, { - "x": 486.71799999999996, + "x": 486.718, "y": 250 }, { @@ -2128,14 +2128,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 486.71799999999996, + "x": 486.718, "y": 184.04 }, { "body": null, "index": 1, "isInternal": false, - "x": 482.39099999999996, + "x": 482.391, "y": 201.595 }, { @@ -2149,14 +2149,14 @@ "body": null, "index": 3, "isInternal": false, - "x": 461.99899999999997, + "x": 461.999, "y": 231.138 }, { "body": null, "index": 4, "isInternal": false, - "x": 447.11899999999997, + "x": 447.119, "y": 241.409 }, { @@ -2275,14 +2275,14 @@ "body": null, "index": 21, "isInternal": false, - "x": 447.11899999999997, + "x": 447.119, "y": 108.591 }, { "body": null, "index": 22, "isInternal": false, - "x": 461.99899999999997, + "x": 461.999, "y": 118.862 }, { @@ -2296,14 +2296,14 @@ "body": null, "index": 24, "isInternal": false, - "x": 482.39099999999996, + "x": 482.391, "y": 148.405 }, { "body": null, "index": 25, "isInternal": false, - "x": 486.71799999999996, + "x": 486.718, "y": 165.96 }, { @@ -2311,7 +2311,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 17499.922508000003, + "area": 17499.92251, "axes": { "#": 255 }, @@ -2333,13 +2333,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -2412,52 +2412,52 @@ } ], { - "x": -0.9709407749683796, - "y": -0.23931989366494885 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854718697090299, - "y": -0.464692982466913 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7484885609447386, - "y": -0.6631477015981239 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680676532599176, - "y": -0.82298185965413 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3546425628177238, - "y": -0.9350019532803537 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12051470556315139, - "y": -0.9927115420619561 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051470556315139, - "y": -0.9927115420619561 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546425628177238, - "y": -0.9350019532803537 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680676532599176, - "y": -0.82298185965413 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484885609447386, - "y": -0.6631477015981239 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854718697090299, - "y": -0.464692982466913 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709407749683796, - "y": -0.23931989366494885 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -2472,11 +2472,11 @@ } }, { - "x": 655.6239999999999, + "x": 655.624, "y": 250 }, { - "x": 506.71799999999996, + "x": 506.718, "y": 100 }, { @@ -2494,7 +2494,7 @@ "y": 0 }, { - "x": 581.1709999999999, + "x": 581.171, "y": 175 }, { @@ -2502,7 +2502,7 @@ "y": 0 }, { - "x": 581.1709999999999, + "x": 581.171, "y": 175 }, { @@ -2606,14 +2606,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 655.6239999999999, + "x": 655.624, "y": 184.04 }, { "body": null, "index": 1, "isInternal": false, - "x": 651.2969999999999, + "x": 651.297, "y": 201.595 }, { @@ -2641,14 +2641,14 @@ "body": null, "index": 5, "isInternal": false, - "x": 599.1199999999999, + "x": 599.12, "y": 247.821 }, { "body": null, "index": 6, "isInternal": false, - "x": 581.1709999999999, + "x": 581.171, "y": 250 }, { @@ -2669,56 +2669,56 @@ "body": null, "index": 9, "isInternal": false, - "x": 531.4369999999999, + "x": 531.437, "y": 231.138 }, { "body": null, "index": 10, "isInternal": false, - "x": 519.4469999999999, + "x": 519.447, "y": 217.605 }, { "body": null, "index": 11, "isInternal": false, - "x": 511.04499999999996, + "x": 511.045, "y": 201.595 }, { "body": null, "index": 12, "isInternal": false, - "x": 506.71799999999996, + "x": 506.718, "y": 184.04 }, { "body": null, "index": 13, "isInternal": false, - "x": 506.71799999999996, + "x": 506.718, "y": 165.96 }, { "body": null, "index": 14, "isInternal": false, - "x": 511.04499999999996, + "x": 511.045, "y": 148.405 }, { "body": null, "index": 15, "isInternal": false, - "x": 519.4469999999999, + "x": 519.447, "y": 132.395 }, { "body": null, "index": 16, "isInternal": false, - "x": 531.4369999999999, + "x": 531.437, "y": 118.862 }, { @@ -2739,14 +2739,14 @@ "body": null, "index": 19, "isInternal": false, - "x": 581.1709999999999, + "x": 581.171, "y": 100 }, { "body": null, "index": 20, "isInternal": false, - "x": 599.1199999999999, + "x": 599.12, "y": 102.179 }, { @@ -2774,14 +2774,14 @@ "body": null, "index": 24, "isInternal": false, - "x": 651.2969999999999, + "x": 651.297, "y": 148.405 }, { "body": null, "index": 25, "isInternal": false, - "x": 655.6239999999999, + "x": 655.624, "y": 165.96 }, { @@ -2789,7 +2789,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 17499.922508000003, + "area": 17499.92251, "axes": { "#": 309 }, @@ -2811,13 +2811,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -2890,52 +2890,52 @@ } ], { - "x": -0.9709407749683796, - "y": -0.23931989366494885 + "x": -0.97094, + "y": -0.23932 }, { - "x": -0.8854718697090299, - "y": -0.464692982466913 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7484885609447386, - "y": -0.6631477015981239 + "x": -0.74849, + "y": -0.66315 }, { - "x": -0.5680676532599176, - "y": -0.82298185965413 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3546425628177238, - "y": -0.9350019532803537 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12051470556315139, - "y": -0.9927115420619561 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051470556315139, - "y": -0.9927115420619561 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546425628177238, - "y": -0.9350019532803537 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680676532599176, - "y": -0.82298185965413 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484885609447386, - "y": -0.6631477015981239 + "x": 0.74849, + "y": -0.66315 }, { - "x": 0.8854718697090299, - "y": -0.464692982466913 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709407749683796, - "y": -0.23931989366494885 + "x": 0.97094, + "y": -0.23932 }, { "x": 1, @@ -2950,11 +2950,11 @@ } }, { - "x": 824.5299999999999, + "x": 824.53, "y": 250 }, { - "x": 675.6239999999999, + "x": 675.624, "y": 100 }, { @@ -2972,7 +2972,7 @@ "y": 0 }, { - "x": 750.0769999999999, + "x": 750.077, "y": 175 }, { @@ -2980,7 +2980,7 @@ "y": 0 }, { - "x": 750.0769999999999, + "x": 750.077, "y": 175 }, { @@ -3084,182 +3084,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 824.5299999999999, + "x": 824.53, "y": 184.04 }, { "body": null, "index": 1, "isInternal": false, - "x": 820.2029999999999, + "x": 820.203, "y": 201.595 }, { "body": null, "index": 2, "isInternal": false, - "x": 811.8009999999999, + "x": 811.801, "y": 217.605 }, { "body": null, "index": 3, "isInternal": false, - "x": 799.8109999999999, + "x": 799.811, "y": 231.138 }, { "body": null, "index": 4, "isInternal": false, - "x": 784.9309999999999, + "x": 784.931, "y": 241.409 }, { "body": null, "index": 5, "isInternal": false, - "x": 768.0259999999998, + "x": 768.026, "y": 247.821 }, { "body": null, "index": 6, "isInternal": false, - "x": 750.0769999999999, + "x": 750.077, "y": 250 }, { "body": null, "index": 7, "isInternal": false, - "x": 732.1279999999999, + "x": 732.128, "y": 247.821 }, { "body": null, "index": 8, "isInternal": false, - "x": 715.2229999999998, + "x": 715.223, "y": 241.409 }, { "body": null, "index": 9, "isInternal": false, - "x": 700.3429999999998, + "x": 700.343, "y": 231.138 }, { "body": null, "index": 10, "isInternal": false, - "x": 688.3529999999998, + "x": 688.353, "y": 217.605 }, { "body": null, "index": 11, "isInternal": false, - "x": 679.9509999999999, + "x": 679.951, "y": 201.595 }, { "body": null, "index": 12, "isInternal": false, - "x": 675.6239999999999, + "x": 675.624, "y": 184.04 }, { "body": null, "index": 13, "isInternal": false, - "x": 675.6239999999999, + "x": 675.624, "y": 165.96 }, { "body": null, "index": 14, "isInternal": false, - "x": 679.9509999999999, + "x": 679.951, "y": 148.405 }, { "body": null, "index": 15, "isInternal": false, - "x": 688.3529999999998, + "x": 688.353, "y": 132.395 }, { "body": null, "index": 16, "isInternal": false, - "x": 700.3429999999998, + "x": 700.343, "y": 118.862 }, { "body": null, "index": 17, "isInternal": false, - "x": 715.2229999999998, + "x": 715.223, "y": 108.591 }, { "body": null, "index": 18, "isInternal": false, - "x": 732.1279999999999, + "x": 732.128, "y": 102.179 }, { "body": null, "index": 19, "isInternal": false, - "x": 750.0769999999999, + "x": 750.077, "y": 100 }, { "body": null, "index": 20, "isInternal": false, - "x": 768.0259999999998, + "x": 768.026, "y": 102.179 }, { "body": null, "index": 21, "isInternal": false, - "x": 784.9309999999999, + "x": 784.931, "y": 108.591 }, { "body": null, "index": 22, "isInternal": false, - "x": 799.8109999999999, + "x": 799.811, "y": 118.862 }, { "body": null, "index": 23, "isInternal": false, - "x": 811.8009999999999, + "x": 811.801, "y": 132.395 }, { "body": null, "index": 24, "isInternal": false, - "x": 820.2029999999999, + "x": 820.203, "y": 148.405 }, { "body": null, "index": 25, "isInternal": false, - "x": 824.5299999999999, + "x": 824.53, "y": 165.96 }, [], diff --git a/test/browser/refs/beachBalls/beachBalls-10.json b/test/browser/refs/beachBalls/beachBalls-10.json index 75c93134..281f84be 100644 --- a/test/browser/refs/beachBalls/beachBalls-10.json +++ b/test/browser/refs/beachBalls/beachBalls-10.json @@ -913,11 +913,11 @@ } ], { - "angle": 0.013730929869026819, - "anglePrev": 0.009031810878195797, - "angularSpeed": 0.004054681946262705, - "angularVelocity": 0.0046684528934371975, - "area": 17499.922508000003, + "angle": 0.01373, + "anglePrev": 0.00903, + "angularSpeed": 0.00405, + "angularVelocity": 0.00467, + "area": 17499.92251, "axes": { "#": 97 }, @@ -939,13 +939,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -967,7 +967,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.405614866354501, + "speed": 2.40561, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1021,56 +1021,56 @@ } ], { - "x": -0.967563265161044, - "y": -0.2526288342824301 + "x": -0.96756, + "y": -0.25263 }, { - "x": -0.8790079320255827, - "y": -0.47680714700611265 + "x": -0.87901, + "y": -0.47681 }, { - "x": -0.7393126541632236, - "y": -0.6733623091576552 + "x": -0.73931, + "y": -0.67336 }, { - "x": -0.5567141516967079, - "y": -0.8307041310241663 + "x": -0.55671, + "y": -0.8307 }, { - "x": -0.34177108863781447, - "y": -0.9397832319058067 + "x": -0.34177, + "y": -0.93978 }, { - "x": -0.10687292066965613, - "y": -0.9942726883644837 + "x": -0.10687, + "y": -0.99427 }, { - "x": 0.13413376915964698, - "y": -0.9909632344194343 + "x": 0.13413, + "y": -0.99096 }, { - "x": 0.3674471742943568, - "y": -0.9300443936195156 + "x": 0.36745, + "y": -0.93004 }, { - "x": 0.5793140539195043, - "y": -0.8151044270100302 + "x": 0.57931, + "y": -0.8151 }, { - "x": 0.7575233510814869, - "y": -0.6528080671730969 + "x": 0.75752, + "y": -0.65281 }, { - "x": 0.891768864534819, - "y": -0.45249120681653 + "x": 0.89177, + "y": -0.45249 }, { - "x": 0.9741352279975894, - "y": -0.2259658327581512 + "x": 0.97414, + "y": -0.22597 }, { - "x": 0.999905732263571, - "y": 0.013730498405089294 + "x": 0.99991, + "y": 0.01373 }, { "max": { @@ -1081,12 +1081,12 @@ } }, { - "x": 169.9000981197992, - "y": 268.34637009356186 + "x": 169.9001, + "y": 268.34637 }, { - "x": 20.72799450171951, - "y": 115.95510681456636 + "x": 20.72799, + "y": 115.95511 }, { "category": 1, @@ -1103,16 +1103,16 @@ "y": 0 }, { - "x": 95.29809969152117, - "y": 190.94803673433424 + "x": 95.2981, + "y": 190.94804 }, { - "x": 0.4389981318450429, + "x": 0.439, "y": 0 }, { - "x": 95.25707417951746, - "y": 188.6398960158555 + "x": 95.25707, + "y": 188.6399 }, { "endCol": 3, @@ -1135,8 +1135,8 @@ "yScale": 1 }, { - "x": 0.03337833773933596, - "y": 2.313544461486856 + "x": 0.03338, + "y": 2.31354 }, [ { @@ -1222,190 +1222,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 169.61995747015882, - "y": 201.0094613517511 + "x": 169.61996, + "y": 201.00946 }, { "body": null, "index": 1, "isInternal": false, - "x": 165.05232646715302, - "y": 218.5033946150392 + "x": 165.05233, + "y": 218.50339 }, { "body": null, "index": 2, "isInternal": false, - "x": 156.4312932252091, - "y": 234.39652174097938 + "x": 156.43129, + "y": 234.39652 }, { "body": null, "index": 3, "isInternal": false, - "x": 144.25660866045277, - "y": 247.76361733982532 + "x": 144.25661, + "y": 247.76362 }, { "body": null, "index": 4, "isInternal": false, - "x": 129.23698541525215, - "y": 257.8293392996367 + "x": 129.23699, + "y": 257.82934 }, { "body": null, "index": 5, "isInternal": false, - "x": 112.24553905556301, - "y": 264.0086207793727 + "x": 112.24554, + "y": 264.00862 }, { "body": null, "index": 6, "isInternal": false, - "x": 94.26831231113947, - "y": 265.940966654102 + "x": 94.26831, + "y": 265.94097 }, { "body": null, "index": 7, "isInternal": false, - "x": 76.35092307876532, - "y": 263.51572334762676 + "x": 76.35092, + "y": 263.51572 }, { "body": null, "index": 8, "isInternal": false, - "x": 59.53555663062312, - "y": 256.87221371681477 + "x": 59.53556, + "y": 256.87221 }, { "body": null, "index": 9, "isInternal": false, - "x": 44.79798528365981, - "y": 246.39787212446788 + "x": 44.79799, + "y": 246.39787 }, { "body": null, "index": 10, "isInternal": false, - "x": 32.994930388735725, - "y": 232.70151917386792 + "x": 32.99493, + "y": 232.70152 }, { "body": null, "index": 11, "isInternal": false, - "x": 24.81354770572266, - "y": 216.57766475272862 + "x": 24.81355, + "y": 216.57766 }, { "body": null, "index": 12, "isInternal": false, - "x": 20.72799450171951, - "y": 198.9649077562428 + "x": 20.72799, + "y": 198.96491 }, { "body": null, "index": 13, "isInternal": false, - "x": 20.97624191288354, - "y": 180.88661211691738 + "x": 20.97624, + "y": 180.88661 }, { "body": null, "index": 14, "isInternal": false, - "x": 25.5438729158893, - "y": 163.39267885362926 + "x": 25.54387, + "y": 163.39268 }, { "body": null, "index": 15, "isInternal": false, - "x": 34.16490615783335, - "y": 147.4995517276891 + "x": 34.16491, + "y": 147.49955 }, { "body": null, "index": 16, "isInternal": false, - "x": 46.33959072258964, - "y": 134.13245612884307 + "x": 46.33959, + "y": 134.13246 }, { "body": null, "index": 17, "isInternal": false, - "x": 61.359213967790254, - "y": 124.0667341690317 + "x": 61.35921, + "y": 124.06673 }, { "body": null, "index": 18, "isInternal": false, - "x": 78.35066032747933, - "y": 117.88745268929576 + "x": 78.35066, + "y": 117.88745 }, { "body": null, "index": 19, "isInternal": false, - "x": 96.32788707190288, - "y": 115.95510681456636 + "x": 96.32789, + "y": 115.95511 }, { "body": null, "index": 20, "isInternal": false, - "x": 114.24527630427706, - "y": 118.3803501210416 + "x": 114.24528, + "y": 118.38035 }, { "body": null, "index": 21, "isInternal": false, - "x": 131.06064275241928, - "y": 125.02385975185368 + "x": 131.06064, + "y": 125.02386 }, { "body": null, "index": 22, "isInternal": false, - "x": 145.7982140993826, - "y": 135.49820134420054 + "x": 145.79821, + "y": 135.4982 }, { "body": null, "index": 23, "isInternal": false, - "x": 157.60126899430668, - "y": 149.19455429480055 + "x": 157.60127, + "y": 149.19455 }, { "body": null, "index": 24, "isInternal": false, - "x": 165.78265167731976, - "y": 165.31840871593985 + "x": 165.78265, + "y": 165.31841 }, { "body": null, "index": 25, "isInternal": false, - "x": 169.86820488132292, - "y": 182.93116571242567 + "x": 169.8682, + "y": 182.93117 }, { - "angle": 0.0024306772042629304, - "anglePrev": 0.001729938915738474, - "angularSpeed": 0.0007007382885244562, - "angularVelocity": 0.0007007382885244562, - "area": 17499.922508000003, + "angle": 0.00243, + "anglePrev": 0.00173, + "angularSpeed": 0.0007, + "angularVelocity": 0.0007, + "area": 17499.92251, "axes": { "#": 152 }, @@ -1427,13 +1427,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -1455,7 +1455,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8335650878943817, + "speed": 2.83357, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1509,56 +1509,56 @@ } ], { - "x": -0.9703561978804423, - "y": -0.2416792279758698 + "x": -0.97036, + "y": -0.24168 }, { - "x": -0.8843397364143271, - "y": -0.4668439038893398 + "x": -0.88434, + "y": -0.46684 }, { - "x": -0.7468744534247859, - "y": -0.6649650748884697 + "x": -0.74687, + "y": -0.66497 }, { - "x": -0.5660655738584655, - "y": -0.8243602162236401 + "x": -0.56607, + "y": -0.82436 }, { - "x": -0.35236882947425385, - "y": -0.9358612119406086 + "x": -0.35237, + "y": -0.93586 }, { - "x": -0.11810139061167713, - "y": -0.9930015415575086 + "x": -0.1181, + "y": -0.993 }, { - "x": 0.1229273084909966, - "y": -0.9924156774392269 + "x": 0.12293, + "y": -0.99242 }, { - "x": 0.35691420086598963, - "y": -0.9341371704520662 + "x": 0.35691, + "y": -0.93414 }, { - "x": 0.5700663764104447, - "y": -0.8215986407524453 + "x": 0.57007, + "y": -0.8216 }, { - "x": 0.7500982462529872, - "y": -0.6613264103059802 + "x": 0.7501, + "y": -0.66133 }, { - "x": 0.8865987714687833, - "y": -0.4625393155506294 + "x": 0.8866, + "y": -0.46254 }, { - "x": 0.9715196155549419, - "y": -0.23695914540692167 + "x": 0.97152, + "y": -0.23696 }, { - "x": 0.999997045905619, - "y": 0.0024306748107791694 + "x": 1, + "y": 0.00243 }, { "max": { @@ -1569,12 +1569,12 @@ } }, { - "x": 320.1149012595595, - "y": 270.62318838299353 + "x": 320.1149, + "y": 270.62319 }, { - "x": 171.11026160226174, - "y": 117.79060282338823 + "x": 171.11026, + "y": 117.7906 }, { "category": 1, @@ -1591,16 +1591,16 @@ "y": 0 }, { - "x": 245.5850149613622, - "y": 192.79038126630965 + "x": 245.58501, + "y": 192.79038 }, { - "x": 1.3720809077501679, - "y": 0.029380987169840885 + "x": 1.37208, + "y": 0.02938 }, { - "x": 245.5298820222655, - "y": 189.95735259254715 + "x": 245.52988, + "y": 189.95735 }, { "endCol": 6, @@ -1623,8 +1623,8 @@ "yScale": 1 }, { - "x": 0.055132939096705226, - "y": 2.83302867376249 + "x": 0.05513, + "y": 2.83303 }, [ { @@ -1710,190 +1710,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.01582171988383, - "y": 202.01132559298335 + "x": 320.01582, + "y": 202.01133 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.64616400594707, - "y": 219.5557562039503 + "x": 315.64616, + "y": 219.55576 }, { "body": null, "index": 2, "isInternal": false, - "x": 307.20527372252735, - "y": 235.54528637913904 + "x": 307.20527, + "y": 235.54529 }, { "body": null, "index": 3, "isInternal": false, - "x": 295.18241481990475, - "y": 249.04910261039856 + "x": 295.18241, + "y": 249.0491 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.27749331584755, - "y": 259.2839038277108 + "x": 280.27749, + "y": 259.2839 }, { "body": null, "index": 5, "isInternal": false, - "x": 263.3569577679265, - "y": 265.65479432838134 + "x": 263.35696, + "y": 265.65479 }, { "body": null, "index": 6, "isInternal": false, - "x": 245.40271435055374, - "y": 267.79015970923103 + "x": 245.40271, + "y": 267.79016 }, { "body": null, "index": 7, "isInternal": false, - "x": 227.45906381400656, - "y": 265.56753796402404 + "x": 227.45906, + "y": 265.56754 }, { "body": null, "index": 8, "isInternal": false, - "x": 210.56969923985872, - "y": 259.1144663480011 + "x": 210.5697, + "y": 259.11447 }, { "body": null, "index": 9, "isInternal": false, - "x": 195.7147086577647, - "y": 248.80732824832 + "x": 195.71471, + "y": 248.80733 }, { "body": null, "index": 10, "isInternal": false, - "x": 183.7576383995706, - "y": 235.24522443509804 + "x": 183.75764, + "y": 235.24522 }, { "body": null, "index": 11, "isInternal": false, - "x": 175.39457832359216, - "y": 219.21484920038887 + "x": 175.39458, + "y": 219.21485 }, { "body": null, "index": 12, "isInternal": false, - "x": 171.11026160226174, - "y": 201.6493835296095 + "x": 171.11026, + "y": 201.64938 }, { "body": null, "index": 13, "isInternal": false, - "x": 171.1542082028406, - "y": 183.56943693963595 + "x": 171.15421, + "y": 183.56944 }, { "body": null, "index": 14, "isInternal": false, - "x": 175.52386591677754, - "y": 166.025006328669 + "x": 175.52387, + "y": 166.02501 }, { "body": null, "index": 15, "isInternal": false, - "x": 183.96475620019706, - "y": 150.03547615348026 + "x": 183.96476, + "y": 150.03548 }, { "body": null, "index": 16, "isInternal": false, - "x": 195.98761510281966, - "y": 136.53165992222074 + "x": 195.98762, + "y": 136.53166 }, { "body": null, "index": 17, "isInternal": false, - "x": 210.8925366068768, - "y": 126.29685870490852 + "x": 210.89254, + "y": 126.29686 }, { "body": null, "index": 18, "isInternal": false, - "x": 227.81307215479794, - "y": 119.92596820423789 + "x": 227.81307, + "y": 119.92597 }, { "body": null, "index": 19, "isInternal": false, - "x": 245.76731557217065, - "y": 117.79060282338823 + "x": 245.76732, + "y": 117.7906 }, { "body": null, "index": 20, "isInternal": false, - "x": 263.7109661087179, - "y": 120.01322456859526 + "x": 263.71097, + "y": 120.01322 }, { "body": null, "index": 21, "isInternal": false, - "x": 280.6003306828656, - "y": 126.46629618461827 + "x": 280.60033, + "y": 126.4663 }, { "body": null, "index": 22, "isInternal": false, - "x": 295.45532126495993, - "y": 136.7734342842993 + "x": 295.45532, + "y": 136.77343 }, { "body": null, "index": 23, "isInternal": false, - "x": 307.4123915231538, - "y": 150.33553809752127 + "x": 307.41239, + "y": 150.33554 }, { "body": null, "index": 24, "isInternal": false, - "x": 315.7754515991324, - "y": 166.36591333223043 + "x": 315.77545, + "y": 166.36591 }, { "body": null, "index": 25, "isInternal": false, - "x": 320.05976832046275, - "y": 183.9313790030098 + "x": 320.05977, + "y": 183.93138 }, { - "angle": 0.0002456218761554387, - "anglePrev": 0.00013966862062549887, - "angularSpeed": 0.00010595325552993983, - "angularVelocity": 0.00010595325552993983, - "area": 17499.922508000003, + "angle": 0.00025, + "anglePrev": 0.00014, + "angularSpeed": 0.00011, + "angularVelocity": 0.00011, + "area": 17499.92251, "axes": { "#": 207 }, @@ -1915,13 +1915,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -1943,7 +1943,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.896986585482177, + "speed": 2.89699, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1997,56 +1997,56 @@ } ], { - "x": -0.9708819634792075, - "y": -0.2395583707382372 + "x": -0.97088, + "y": -0.23956 }, { - "x": -0.885357704237682, - "y": -0.46491045970915856 + "x": -0.88536, + "y": -0.46491 }, { - "x": -0.7483256547855446, - "y": -0.66333152675701 + "x": -0.74833, + "y": -0.66333 }, { - "x": -0.5678654937777492, - "y": -0.8231213646702127 + "x": -0.56787, + "y": -0.82312 }, { - "x": -0.35441289518824765, - "y": -0.9350890330467384 + "x": -0.35441, + "y": -0.93509 }, { - "x": -0.12027087025882825, - "y": -0.9927411131645469 + "x": -0.12027, + "y": -0.99274 }, { - "x": 0.12075853359680958, - "y": -0.9926819110689727 + "x": 0.12076, + "y": -0.99268 }, { - "x": 0.35487220905157657, - "y": -0.9349148171052024 + "x": 0.35487, + "y": -0.93491 }, { - "x": 0.5682697784705043, - "y": -0.8228423049874646 + "x": 0.56827, + "y": -0.82284 }, { - "x": 0.7486514219475384, - "y": -0.6629638364314667 + "x": 0.74865, + "y": -0.66296 }, { - "x": 0.8855859817597661, - "y": -0.4644754771896908 + "x": 0.88559, + "y": -0.46448 }, { - "x": 0.9709995278805922, - "y": -0.23908140215346602 + "x": 0.971, + "y": -0.23908 }, { - "x": 0.9999999698349471, - "y": 0.0002456218736857065 + "x": 1, + "y": 0.00025 }, { "max": { @@ -2057,12 +2057,12 @@ } }, { - "x": 470.2165817336961, - "y": 270.60599963955644 + "x": 470.21658, + "y": 270.606 }, { - "x": 321.2456671888991, - "y": 117.70964892632547 + "x": 321.24567, + "y": 117.70965 }, { "category": 1, @@ -2079,16 +2079,16 @@ "y": 0 }, { - "x": 395.70088536475856, - "y": 192.70964666394653 + "x": 395.70089, + "y": 192.70965 }, { - "x": 2.1530810947923276, - "y": 0.0007278765296602908 + "x": 2.15308, + "y": 0.00073 }, { - "x": 395.6404071716806, - "y": 189.81329142595763 + "x": 395.64041, + "y": 189.81329 }, { "endCol": 9, @@ -2111,8 +2111,8 @@ "yScale": 1 }, { - "x": 0.06047819307800978, - "y": 2.8963552379888937 + "x": 0.06048, + "y": 2.89636 }, [ { @@ -2198,190 +2198,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 470.1516626971417, - "y": 201.76793367661597 + "x": 470.15166, + "y": 201.76793 }, { "body": null, "index": 1, "isInternal": false, - "x": 465.82035093567345, - "y": 219.32187034122106 + "x": 465.82035, + "y": 219.32187 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.4144187829225, - "y": 235.3298061432958 + "x": 457.41442, + "y": 235.32981 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4210951437848, - "y": 248.85986072880667 + "x": 445.4211, + "y": 248.85986 }, { "body": null, "index": 4, "isInternal": false, - "x": 430.5385728103762, - "y": 259.12720556550096 + "x": 430.53857, + "y": 259.12721 }, { "body": null, "index": 5, "isInternal": false, - "x": 413.63199839286244, - "y": 265.53505313430804 + "x": 413.632, + "y": 265.53505 }, { "body": null, "index": 6, "isInternal": false, - "x": 395.68246372423226, - "y": 267.7096444015676 + "x": 395.68246, + "y": 267.70964 }, { "body": null, "index": 7, "isInternal": false, - "x": 377.7339994757274, - "y": 265.5262358002865 + "x": 377.734, + "y": 265.52624 }, { "body": null, "index": 8, "isInternal": false, - "x": 360.8305749131216, - "y": 259.11008375593013 + "x": 360.83057, + "y": 259.11008 }, { "body": null, "index": 9, "isInternal": false, - "x": 345.95309814424235, - "y": 248.8354292122749 + "x": 345.9531, + "y": 248.83543 }, { "body": null, "index": 10, "isInternal": false, - "x": 333.96642250673796, - "y": 235.29948461423308 + "x": 333.96642, + "y": 235.29948 }, { "body": null, "index": 11, "isInternal": false, - "x": 325.56835516638245, - "y": 219.28742138219286 + "x": 325.56836, + "y": 219.28742 }, { "body": null, "index": 12, "isInternal": false, - "x": 321.2456671888991, - "y": 201.73135910589295 + "x": 321.24567, + "y": 201.73136 }, { "body": null, "index": 13, "isInternal": false, - "x": 321.2501080323754, - "y": 183.6513596512771 + "x": 321.25011, + "y": 183.65136 }, { "body": null, "index": 14, "isInternal": false, - "x": 325.5814197938437, - "y": 166.097422986672 + "x": 325.58142, + "y": 166.09742 }, { "body": null, "index": 15, "isInternal": false, - "x": 333.98735194659463, - "y": 150.08948718459726 + "x": 333.98735, + "y": 150.08949 }, { "body": null, "index": 16, "isInternal": false, - "x": 345.98067558573234, - "y": 136.5594325990864 + "x": 345.98068, + "y": 136.55943 }, { "body": null, "index": 17, "isInternal": false, - "x": 360.86319791914104, - "y": 126.29208776239211 + "x": 360.8632, + "y": 126.29209 }, { "body": null, "index": 18, "isInternal": false, - "x": 377.7697723366547, - "y": 119.88424019358507 + "x": 377.76977, + "y": 119.88424 }, { "body": null, "index": 19, "isInternal": false, - "x": 395.719307005285, - "y": 117.70964892632547 + "x": 395.71931, + "y": 117.70965 }, { "body": null, "index": 20, "isInternal": false, - "x": 413.66777125378974, - "y": 119.89305752760664 + "x": 413.66777, + "y": 119.89306 }, { "body": null, "index": 21, "isInternal": false, - "x": 430.5711958163955, - "y": 126.30920957196298 + "x": 430.5712, + "y": 126.30921 }, { "body": null, "index": 22, "isInternal": false, - "x": 445.4486725852749, - "y": 136.58386411561816 + "x": 445.44867, + "y": 136.58386 }, { "body": null, "index": 23, "isInternal": false, - "x": 457.43534822277917, - "y": 150.11980871365998 + "x": 457.43535, + "y": 150.11981 }, { "body": null, "index": 24, "isInternal": false, - "x": 465.8334155631347, - "y": 166.1318719457002 + "x": 465.83342, + "y": 166.13187 }, { "body": null, "index": 25, "isInternal": false, - "x": 470.1561035406181, - "y": 183.6879342220001 + "x": 470.1561, + "y": 183.68793 }, { - "angle": -0.0006755390859609383, - "anglePrev": -0.0005941601862293682, - "angularSpeed": 0.00008137889973157007, - "angularVelocity": -0.00008137889973157007, - "area": 17499.922508000003, + "angle": -0.00068, + "anglePrev": -0.00059, + "angularSpeed": 0.00008, + "angularVelocity": -0.00008, + "area": 17499.92251, "axes": { "#": 262 }, @@ -2403,13 +2403,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -2431,7 +2431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8977828023245857, + "speed": 2.89778, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2485,56 +2485,56 @@ } ], { - "x": -0.9711022233524151, - "y": -0.23866393066401168 + "x": -0.9711, + "y": -0.23866 }, { - "x": -0.8857855859138923, - "y": -0.4640947056228744 + "x": -0.88579, + "y": -0.46409 }, { - "x": -0.7489363723153454, - "y": -0.6626419170435343 + "x": -0.74894, + "y": -0.66264 }, { - "x": -0.5686234800111654, - "y": -0.8225979199949338 + "x": -0.56862, + "y": -0.8226 }, { - "x": -0.3552741122134677, - "y": -0.9347621650403551 + "x": -0.35527, + "y": -0.93476 }, { - "x": -0.12118529346126648, - "y": -0.9926299031606428 + "x": -0.12119, + "y": -0.99263 }, { - "x": 0.11984406266778411, - "y": -0.9927927279363401 + "x": 0.11984, + "y": -0.99279 }, { - "x": 0.3540108515797685, - "y": -0.935241314829369 + "x": 0.35401, + "y": -0.93524 }, { - "x": 0.5675115672692698, - "y": -0.8233654237430529 + "x": 0.56751, + "y": -0.82337 }, { - "x": 0.7480404079991021, - "y": -0.6636531835232442 + "x": 0.74804, + "y": -0.66365 }, { - "x": 0.8851577494163885, - "y": -0.4652910472468967 + "x": 0.88516, + "y": -0.46529 }, { - "x": 0.9707788834925704, - "y": -0.23997574745152506 + "x": 0.97078, + "y": -0.23998 }, { - "x": 0.9999997718234802, - "y": -0.0006755390345802182 + "x": 1, + "y": -0.00068 }, { "max": { @@ -2545,12 +2545,12 @@ } }, { - "x": 620.0400758084162, - "y": 270.64540033660774 + "x": 620.04008, + "y": 270.6454 }, { - "x": 471.0618745360834, - "y": 117.74827343733301 + "x": 471.06187, + "y": 117.74827 }, { "category": 1, @@ -2567,16 +2567,16 @@ "y": 0 }, { - "x": 545.5209644205296, - "y": 192.74825632409397 + "x": 545.52096, + "y": 192.74826 }, { - "x": 2.6965875102178454, - "y": 0.006274538623426806 + "x": 2.69659, + "y": 0.00627 }, { - "x": 545.4609429170891, - "y": 189.85109519834123 + "x": 545.46094, + "y": 189.8511 }, { "endCol": 12, @@ -2599,8 +2599,8 @@ "yScale": 1 }, { - "x": 0.06002150344041752, - "y": 2.8971611257527394 + "x": 0.06002, + "y": 2.89716 }, [ { @@ -2686,190 +2686,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 619.9800543049757, - "y": 201.73795835363666 + "x": 619.98005, + "y": 201.73796 }, { "body": null, "index": 1, "isInternal": false, - "x": 615.6649143800477, - "y": 219.2958774054005 + "x": 615.66491, + "y": 219.29588 }, { "body": null, "index": 2, "isInternal": false, - "x": 607.2737316771305, - "y": 235.31154963126286 + "x": 607.27373, + "y": 235.31155 }, { "body": null, "index": 3, "isInternal": false, - "x": 595.2928764827218, - "y": 248.8526462563747 + "x": 595.29288, + "y": 248.85265 }, { "body": null, "index": 4, "isInternal": false, - "x": 580.4198183394127, - "y": 259.13369593360824 + "x": 580.41982, + "y": 259.1337 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.5191537530266, - "y": 265.55711445791997 + "x": 563.51915, + "y": 265.55711 }, { "body": null, "index": 6, "isInternal": false, - "x": 545.5716298481232, - "y": 267.748239210855 + "x": 545.57163, + "y": 267.74824 }, { "body": null, "index": 7, "isInternal": false, - "x": 527.6211619441071, - "y": 265.58136495818337 + "x": 527.62116, + "y": 265.58136 }, { "body": null, "index": 8, "isInternal": false, - "x": 510.7118342451414, - "y": 259.1807864086308 + "x": 510.71183, + "y": 259.18079 }, { "body": null, "index": 9, "isInternal": false, - "x": 495.8248991789838, - "y": 248.91984077306634 + "x": 495.8249, + "y": 248.91984 }, { "body": null, "index": 10, "isInternal": false, - "x": 483.8257598450652, - "y": 235.39494357400375 + "x": 483.82576, + "y": 235.39494 }, { "body": null, "index": 11, "isInternal": false, - "x": 475.4129463822608, - "y": 219.3906231060784 + "x": 475.41295, + "y": 219.39062 }, { "body": null, "index": 12, "isInternal": false, - "x": 471.07408828182855, - "y": 201.83855016911986 + "x": 471.07409, + "y": 201.83855 }, { "body": null, "index": 13, "isInternal": false, - "x": 471.0618745360834, - "y": 183.7585542945513 + "x": 471.06187, + "y": 183.75855 }, { "body": null, "index": 14, "isInternal": false, - "x": 475.3770144610116, - "y": 166.20063524278746 + "x": 475.37701, + "y": 166.20064 }, { "body": null, "index": 15, "isInternal": false, - "x": 483.7681971639287, - "y": 150.18496301692508 + "x": 483.7682, + "y": 150.18496 }, { "body": null, "index": 16, "isInternal": false, - "x": 495.7490523583373, - "y": 136.64386639181325 + "x": 495.74905, + "y": 136.64387 }, { "body": null, "index": 17, "isInternal": false, - "x": 510.6221105016466, - "y": 126.36281671457971 + "x": 510.62211, + "y": 126.36282 }, { "body": null, "index": 18, "isInternal": false, - "x": 527.5227750880329, - "y": 119.93939819026801 + "x": 527.52278, + "y": 119.9394 }, { "body": null, "index": 19, "isInternal": false, - "x": 545.470298992936, - "y": 117.74827343733301 + "x": 545.4703, + "y": 117.74827 }, { "body": null, "index": 20, "isInternal": false, - "x": 563.420766896952, - "y": 119.91514769000463 + "x": 563.42077, + "y": 119.91515 }, { "body": null, "index": 21, "isInternal": false, - "x": 580.3300945959179, - "y": 126.31572623955724 + "x": 580.33009, + "y": 126.31573 }, { "body": null, "index": 22, "isInternal": false, - "x": 595.2170296620752, - "y": 136.5766718751216 + "x": 595.21703, + "y": 136.57667 }, { "body": null, "index": 23, "isInternal": false, - "x": 607.2161689959938, - "y": 150.1015690741842 + "x": 607.21617, + "y": 150.10157 }, { "body": null, "index": 24, "isInternal": false, - "x": 615.6289824587982, - "y": 166.10588954210954 + "x": 615.62898, + "y": 166.10589 }, { "body": null, "index": 25, "isInternal": false, - "x": 619.9678405592307, - "y": 183.6579624790681 + "x": 619.96784, + "y": 183.65796 }, { - "angle": -0.004165537424309747, - "anglePrev": -0.0037555070339081427, - "angularSpeed": 0.0004100303904016042, - "angularVelocity": -0.0004100303904016042, - "area": 17499.922508000003, + "angle": -0.00417, + "anglePrev": -0.00376, + "angularSpeed": 0.00041, + "angularVelocity": -0.00041, + "area": 17499.92251, "axes": { "#": 317 }, @@ -2891,13 +2891,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 194966.798563796, - "inverseInertia": 0.000005129078424462026, - "inverseMass": 0.057143110179079644, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "inverseMass": 0.05714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.499922508000004, + "mass": 17.49992, "motion": 0, "parent": null, "position": { @@ -2919,7 +2919,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8605703989793856, + "speed": 2.86057, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2973,56 +2973,56 @@ } ], { - "x": -0.9719292443335223, - "y": -0.2352733389257437 + "x": -0.97193, + "y": -0.23527 }, { - "x": -0.8873998779094653, - "y": -0.4610004953210637 + "x": -0.8874, + "y": -0.461 }, { - "x": -0.7512444257591179, - "y": -0.6600241001401789 + "x": -0.75124, + "y": -0.66002 }, { - "x": -0.5714908766185695, - "y": -0.8206084193704932 + "x": -0.57149, + "y": -0.82061 }, { - "x": -0.3585342603608087, - "y": -0.9335165687589736 + "x": -0.35853, + "y": -0.93352 }, { - "x": -0.12464882511831944, - "y": -0.992200922392548 + "x": -0.12465, + "y": -0.9922 }, { - "x": 0.1163784948757455, - "y": -0.9932049365213887 + "x": 0.11638, + "y": -0.9932 }, { - "x": 0.3507447116314585, - "y": -0.9364711139498991 + "x": 0.35074, + "y": -0.93647 }, { - "x": 0.5646345729748645, - "y": -0.8253410198224079 + "x": 0.56463, + "y": -0.82534 }, { - "x": 0.745719708598654, - "y": -0.6662597963313851 + "x": 0.74572, + "y": -0.66626 }, { - "x": 0.8835284970867688, - "y": -0.4683774064102528 + "x": 0.88353, + "y": -0.46838 }, { - "x": 0.9699354581525785, - "y": -0.24336229580267305 + "x": 0.96994, + "y": -0.24336 }, { - "x": 0.9999913241615282, - "y": -0.004165525377792833 + "x": 0.99999, + "y": -0.00417 }, { "max": { @@ -3033,12 +3033,12 @@ } }, { - "x": 769.3240887580322, - "y": 270.01585811297855 + "x": 769.32409, + "y": 270.01586 }, { - "x": 620.2819213957594, - "y": 117.15726424344608 + "x": 620.28192, + "y": 117.15726 }, { "category": 1, @@ -3055,16 +3055,16 @@ "y": 0 }, { - "x": 694.7719318029727, - "y": 192.15661355556068 + "x": 694.77193, + "y": 192.15661 }, { - "x": 2.8931655612647336, - "y": -0.0075481755201081205 + "x": 2.89317, + "y": -0.00755 }, { - "x": 694.7097852551267, - "y": 189.29671831025746 + "x": 694.70979, + "y": 189.29672 }, { "endCol": 15, @@ -3087,8 +3087,8 @@ "yScale": 1 }, { - "x": 0.06214654784608683, - "y": 2.859895245303208 + "x": 0.06215, + "y": 2.8599 }, [ { @@ -3174,183 +3174,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 769.2619422101861, - "y": 200.8863992650281 + "x": 769.26194, + "y": 200.8864 }, { "body": null, "index": 1, "isInternal": false, - "x": 765.0081055485463, - "y": 218.45927118899343 + "x": 765.00811, + "y": 218.45927 }, { "body": null, "index": 2, "isInternal": false, - "x": 756.6728685042395, - "y": 234.5041310330437 + "x": 756.67287, + "y": 234.50413 }, { "body": null, "index": 3, "isInternal": false, - "x": 744.7393445824806, - "y": 248.0869582722014 + "x": 744.73934, + "y": 248.08696 }, { "body": null, "index": 4, "isInternal": false, - "x": 729.9022577901126, - "y": 258.419852180286 + "x": 729.90226, + "y": 258.41985 }, { "body": null, "index": 5, "isInternal": false, - "x": 713.0241138038842, - "y": 264.9022147573214 + "x": 713.02411, + "y": 264.90221 }, { "body": null, "index": 6, "isInternal": false, - "x": 695.0843462063073, - "y": 267.1559628676753 + "x": 695.08435, + "y": 267.15596 }, { "body": null, "index": 7, "isInternal": false, - "x": 677.1264252491335, - "y": 265.05174878733334 + "x": 677.12643, + "y": 265.05175 }, { "body": null, "index": 8, "isInternal": false, - "x": 660.1948625654607, - "y": 258.71022262332116 + "x": 660.19486, + "y": 258.71022 }, { "body": null, "index": 9, "isInternal": false, - "x": 645.2722075507816, - "y": 248.5012947504797 + "x": 645.27221, + "y": 248.50129 }, { "body": null, "index": 10, "isInternal": false, - "x": 633.2259395191473, - "y": 235.0183568098815 + "x": 633.22594, + "y": 235.01836 }, { "body": null, "index": 11, "isInternal": false, - "x": 624.7573223522438, - "y": 219.0434944542796 + "x": 624.75732, + "y": 219.04349 }, { "body": null, "index": 12, "isInternal": false, - "x": 620.3572340945897, - "y": 201.50667098693373 + "x": 620.35723, + "y": 201.50667 }, { "body": null, "index": 13, "isInternal": false, - "x": 620.2819213957594, - "y": 183.42682784609326 + "x": 620.28192, + "y": 183.42683 }, { "body": null, "index": 14, "isInternal": false, - "x": 624.5357580573992, - "y": 165.85395592212794 + "x": 624.53576, + "y": 165.85396 }, { "body": null, "index": 15, "isInternal": false, - "x": 632.8709951017055, - "y": 149.80909607807766 + "x": 632.871, + "y": 149.8091 }, { "body": null, "index": 16, "isInternal": false, - "x": 644.8045190234644, - "y": 136.22626883891996 + "x": 644.80452, + "y": 136.22627 }, { "body": null, "index": 17, "isInternal": false, - "x": 659.6416058158327, - "y": 125.89337493083535 + "x": 659.64161, + "y": 125.89337 }, { "body": null, "index": 18, "isInternal": false, - "x": 676.519749802061, - "y": 119.41101235380003 + "x": 676.51975, + "y": 119.41101 }, { "body": null, "index": 19, "isInternal": false, - "x": 694.4595173996382, - "y": 117.15726424344608 + "x": 694.45952, + "y": 117.15726 }, { "body": null, "index": 20, "isInternal": false, - "x": 712.4174383568115, - "y": 119.26147832378805 + "x": 712.41744, + "y": 119.26148 }, { "body": null, "index": 21, "isInternal": false, - "x": 729.3490010404846, - "y": 125.60300448780016 + "x": 729.349, + "y": 125.603 }, { "body": null, "index": 22, "isInternal": false, - "x": 744.2716560551635, - "y": 135.81193236064166 + "x": 744.27166, + "y": 135.81193 }, { "body": null, "index": 23, "isInternal": false, - "x": 756.3179240867979, - "y": 149.29487030123985 + "x": 756.31792, + "y": 149.29487 }, { "body": null, "index": 24, "isInternal": false, - "x": 764.7865412537014, - "y": 165.26973265684177 + "x": 764.78654, + "y": 165.26973 }, { "body": null, "index": 25, "isInternal": false, - "x": 769.1866295113556, - "y": 182.80655612418764 + "x": 769.18663, + "y": 182.80656 }, [], [], diff --git a/test/browser/refs/bridge/bridge-0.json b/test/browser/refs/bridge/bridge-0.json index c7928354..76771437 100644 --- a/test/browser/refs/bridge/bridge-0.json +++ b/test/browser/refs/bridge/bridge-0.json @@ -1324,8 +1324,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1540,8 +1540,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1756,8 +1756,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1972,8 +1972,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2188,8 +2188,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2404,8 +2404,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2620,8 +2620,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2898,7 +2898,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1367.9015580000003, + "area": 1367.90156, "axes": { "#": 317 }, @@ -2919,13 +2919,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1211.432510854089, - "inverseInertia": 0.0008254690137835049, - "inverseMass": 0.7310467585562906, + "inertia": 1211.43251, + "inverseInertia": 0.00083, + "inverseMass": 0.73105, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.3679015580000002, + "mass": 1.3679, "motion": 0, "parent": null, "position": { @@ -2974,20 +2974,20 @@ } ], { - "x": 0.3090371554557353, - "y": 0.9510499653266529 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090151080740143, - "y": 0.5877878485542133 + "x": -0.80902, + "y": 0.58779 }, { - "x": -0.8090151080740143, - "y": -0.5877878485542133 + "x": -0.80902, + "y": -0.58779 }, { - "x": 0.3090371554557353, - "y": -0.9510499653266529 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, @@ -3002,11 +3002,11 @@ } }, { - "x": 241.1006410226451, + "x": 241.10064, "y": 85.624 }, { - "x": 197.70964102264512, + "x": 197.70964, "y": 40 }, { @@ -3024,7 +3024,7 @@ "y": 0 }, { - "x": 221.69549999999998, + "x": 221.6955, "y": 62.812 }, { @@ -3032,7 +3032,7 @@ "y": 0 }, { - "x": 221.69549999999998, + "x": 221.6955, "y": 62.812 }, { @@ -3073,35 +3073,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 241.1006410226451, + "x": 241.10064, "y": 76.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 214.28364102264513, + "x": 214.28364, "y": 85.624 }, { "body": null, "index": 2, "isInternal": false, - "x": 197.70964102264512, + "x": 197.70964, "y": 62.812 }, { "body": null, "index": 3, "isInternal": false, - "x": 214.28364102264513, + "x": 214.28364, "y": 40 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.1006410226451, + "x": 241.10064, "y": 48.714 }, { @@ -3130,13 +3130,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1684.7880608878233, - "inverseInertia": 0.0005935464662973903, - "inverseMass": 0.619900704553105, + "inertia": 1684.78806, + "inverseInertia": 0.00059, + "inverseMass": 0.6199, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.61316158, + "mass": 1.61316, "motion": 0, "parent": null, "position": { @@ -3185,20 +3185,20 @@ } ], { - "x": 0.30903733499778424, - "y": 0.9510499069856783 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090269028730657, - "y": 0.587771614173069 + "x": -0.80903, + "y": 0.58777 }, { - "x": -0.8090269028730657, - "y": -0.587771614173069 + "x": -0.80903, + "y": -0.58777 }, { - "x": 0.30903733499778424, - "y": -0.9510499069856783 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, @@ -3213,11 +3213,11 @@ } }, { - "x": 285.73351348384847, - "y": 89.54599999999999 + "x": 285.73351, + "y": 89.546 }, { - "x": 238.6135134838485, + "x": 238.61351, "y": 40 }, { @@ -3235,7 +3235,7 @@ "y": 0 }, { - "x": 264.6606410226451, + "x": 264.66064, "y": 64.773 }, { @@ -3243,7 +3243,7 @@ "y": 0 }, { - "x": 264.6606410226451, + "x": 264.66064, "y": 64.773 }, { @@ -3284,36 +3284,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.73351348384847, + "x": 285.73351, "y": 80.083 }, { "body": null, "index": 1, "isInternal": false, - "x": 256.6115134838485, - "y": 89.54599999999999 + "x": 256.61151, + "y": 89.546 }, { "body": null, "index": 2, "isInternal": false, - "x": 238.6135134838485, + "x": 238.61351, "y": 64.773 }, { "body": null, "index": 3, "isInternal": false, - "x": 256.6115134838485, + "x": 256.61151, "y": 40 }, { "body": null, "index": 4, "isInternal": false, - "x": 285.73351348384847, - "y": 49.462999999999994 + "x": 285.73351, + "y": 49.463 }, { "angle": 0, @@ -3327,7 +3327,7 @@ "bounds": { "#": 381 }, - "circleRadius": 31.396519204389577, + "circleRadius": 31.39652, "collisionFilter": { "#": 384 }, @@ -3342,13 +3342,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 5987.526734438354, - "inverseInertia": 0.0001670138680547875, - "inverseMass": 0.3260772291417893, + "inertia": 5987.52673, + "inverseInertia": 0.00017, + "inverseMass": 0.32608, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.06675815, + "mass": 3.06676, "motion": 0, "parent": null, "position": { @@ -3421,52 +3421,52 @@ } ], { - "x": -0.9709223455443396, - "y": -0.23939465099011312 + "x": -0.97092, + "y": -0.23939 }, { - "x": -0.8854821719416506, - "y": -0.46467335104726754 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.7485525823007566, - "y": -0.6630754342688838 + "x": -0.74855, + "y": -0.66308 }, { - "x": -0.5680138921984943, - "y": -0.823018965923336 + "x": -0.56801, + "y": -0.82302 }, { - "x": -0.354610422587007, - "y": -0.9350141433115675 + "x": -0.35461, + "y": -0.93501 }, { - "x": -0.1206193812576357, - "y": -0.9926988288826704 + "x": -0.12062, + "y": -0.9927 }, { - "x": 0.1206193812576357, - "y": -0.9926988288826704 + "x": 0.12062, + "y": -0.9927 }, { - "x": 0.354610422587007, - "y": -0.9350141433115675 + "x": 0.35461, + "y": -0.93501 }, { - "x": 0.5680138921984943, - "y": -0.823018965923336 + "x": 0.56801, + "y": -0.82302 }, { - "x": 0.7485525823007566, - "y": -0.6630754342688838 + "x": 0.74855, + "y": -0.66308 }, { - "x": 0.8854821719416506, - "y": -0.46467335104726754 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.9709223455443396, - "y": -0.23939465099011312 + "x": 0.97092, + "y": -0.23939 }, { "x": 1, @@ -3481,12 +3481,12 @@ } }, { - "x": 348.0695134838485, - "y": 102.79399999999998 + "x": 348.06951, + "y": 102.794 }, { - "x": 285.73351348384847, - "y": 39.99999999999999 + "x": 285.73351, + "y": 40 }, { "category": 1, @@ -3503,16 +3503,16 @@ "y": 0 }, { - "x": 316.9015134838485, - "y": 71.39699999999999 + "x": 316.90151, + "y": 71.397 }, { "x": 0, "y": 0 }, { - "x": 316.9015134838485, - "y": 71.39699999999999 + "x": 316.90151, + "y": 71.397 }, { "fillStyle": "#556270", @@ -3615,182 +3615,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 348.0695134838485, - "y": 75.18099999999998 + "x": 348.06951, + "y": 75.181 }, { "body": null, "index": 1, "isInternal": false, - "x": 346.25751348384847, - "y": 82.52999999999999 + "x": 346.25751, + "y": 82.53 }, { "body": null, "index": 2, "isInternal": false, - "x": 342.7405134838485, + "x": 342.74051, "y": 89.232 }, { "body": null, "index": 3, "isInternal": false, - "x": 337.72151348384847, + "x": 337.72151, "y": 94.898 }, { "body": null, "index": 4, "isInternal": false, - "x": 331.4925134838485, - "y": 99.19699999999999 + "x": 331.49251, + "y": 99.197 }, { "body": null, "index": 5, "isInternal": false, - "x": 324.4155134838485, + "x": 324.41551, "y": 101.881 }, { "body": null, "index": 6, "isInternal": false, - "x": 316.9015134838485, - "y": 102.79399999999998 + "x": 316.90151, + "y": 102.794 }, { "body": null, "index": 7, "isInternal": false, - "x": 309.38751348384847, + "x": 309.38751, "y": 101.881 }, { "body": null, "index": 8, "isInternal": false, - "x": 302.31051348384847, - "y": 99.19699999999999 + "x": 302.31051, + "y": 99.197 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.0815134838485, + "x": 296.08151, "y": 94.898 }, { "body": null, "index": 10, "isInternal": false, - "x": 291.0625134838485, + "x": 291.06251, "y": 89.232 }, { "body": null, "index": 11, "isInternal": false, - "x": 287.5455134838485, - "y": 82.52999999999999 + "x": 287.54551, + "y": 82.53 }, { "body": null, "index": 12, "isInternal": false, - "x": 285.73351348384847, - "y": 75.18099999999998 + "x": 285.73351, + "y": 75.181 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.73351348384847, + "x": 285.73351, "y": 67.613 }, { "body": null, "index": 14, "isInternal": false, - "x": 287.5455134838485, - "y": 60.263999999999996 + "x": 287.54551, + "y": 60.264 }, { "body": null, "index": 15, "isInternal": false, - "x": 291.0625134838485, - "y": 53.56199999999999 + "x": 291.06251, + "y": 53.562 }, { "body": null, "index": 16, "isInternal": false, - "x": 296.0815134838485, - "y": 47.89599999999999 + "x": 296.08151, + "y": 47.896 }, { "body": null, "index": 17, "isInternal": false, - "x": 302.31051348384847, - "y": 43.596999999999994 + "x": 302.31051, + "y": 43.597 }, { "body": null, "index": 18, "isInternal": false, - "x": 309.38751348384847, - "y": 40.91299999999999 + "x": 309.38751, + "y": 40.913 }, { "body": null, "index": 19, "isInternal": false, - "x": 316.9015134838485, - "y": 39.99999999999999 + "x": 316.90151, + "y": 40 }, { "body": null, "index": 20, "isInternal": false, - "x": 324.4155134838485, - "y": 40.91299999999999 + "x": 324.41551, + "y": 40.913 }, { "body": null, "index": 21, "isInternal": false, - "x": 331.4925134838485, - "y": 43.596999999999994 + "x": 331.49251, + "y": 43.597 }, { "body": null, "index": 22, "isInternal": false, - "x": 337.72151348384847, - "y": 47.89599999999999 + "x": 337.72151, + "y": 47.896 }, { "body": null, "index": 23, "isInternal": false, - "x": 342.7405134838485, - "y": 53.56199999999999 + "x": 342.74051, + "y": 53.562 }, { "body": null, "index": 24, "isInternal": false, - "x": 346.25751348384847, - "y": 60.263999999999996 + "x": 346.25751, + "y": 60.264 }, { "body": null, "index": 25, "isInternal": false, - "x": 348.0695134838485, + "x": 348.06951, "y": 67.613 }, { @@ -3798,7 +3798,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1045.258734, + "area": 1045.25873, "axes": { "#": 421 }, @@ -3819,13 +3819,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 841.0575612243855, - "inverseInertia": 0.001188979263849945, - "inverseMass": 0.9567009272175092, + "inertia": 841.05756, + "inverseInertia": 0.00119, + "inverseMass": 0.9567, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.0452587340000001, + "mass": 1.04526, "motion": 0, "parent": null, "position": { @@ -3868,12 +3868,12 @@ } ], { - "x": -0.500004936684515, - "y": 0.8660225535695443 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.500004936684515, - "y": -0.8660225535695443 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -3888,11 +3888,11 @@ } }, { - "x": 383.52701348384846, + "x": 383.52701, "y": 89.132 }, { - "x": 340.9780134838485, + "x": 340.97801, "y": 40 }, { @@ -3910,7 +3910,7 @@ "y": 0 }, { - "x": 369.34401348384847, + "x": 369.34401, "y": 64.566 }, { @@ -3918,7 +3918,7 @@ "y": 0 }, { - "x": 369.34401348384847, + "x": 369.34401, "y": 64.566 }, { @@ -3953,21 +3953,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 383.52701348384846, + "x": 383.52701, "y": 89.132 }, { "body": null, "index": 1, "isInternal": false, - "x": 340.9780134838485, + "x": 340.97801, "y": 64.566 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.52701348384846, + "x": 383.52701, "y": 40 }, { @@ -3975,7 +3975,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1661.5850679999999, + "area": 1661.58507, "axes": { "#": 442 }, @@ -3996,13 +3996,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1771.0956837781462, - "inverseInertia": 0.0005646222330951508, - "inverseMass": 0.6018349702694848, + "inertia": 1771.09568, + "inverseInertia": 0.00056, + "inverseMass": 0.60183, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.661585068, + "mass": 1.66159, "motion": 0, "parent": null, "position": { @@ -4045,12 +4045,12 @@ } ], { - "x": -0.49998374039075505, - "y": -0.8660347910706995 + "x": -0.49998, + "y": -0.86603 }, { - "x": 0.49998374039075505, - "y": -0.8660347910706995 + "x": 0.49998, + "y": -0.86603 }, { "x": 1, @@ -4065,11 +4065,11 @@ } }, { - "x": 427.3290134838485, + "x": 427.32901, "y": 90.578 }, { - "x": 383.52701348384846, + "x": 383.52701, "y": 40 }, { @@ -4087,7 +4087,7 @@ "y": 0 }, { - "x": 405.4280134838485, + "x": 405.42801, "y": 65.289 }, { @@ -4095,7 +4095,7 @@ "y": 0 }, { - "x": 405.4280134838485, + "x": 405.42801, "y": 65.289 }, { @@ -4139,50 +4139,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.3290134838485, + "x": 427.32901, "y": 77.934 }, { "body": null, "index": 1, "isInternal": false, - "x": 405.4280134838485, + "x": 405.42801, "y": 90.578 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.52701348384846, + "x": 383.52701, "y": 77.934 }, { "body": null, "index": 3, "isInternal": false, - "x": 383.52701348384846, - "y": 52.644000000000005 + "x": 383.52701, + "y": 52.644 }, { "body": null, "index": 4, "isInternal": false, - "x": 405.4280134838485, + "x": 405.42801, "y": 40 }, { "body": null, "index": 5, "isInternal": false, - "x": 427.3290134838485, - "y": 52.644000000000005 + "x": 427.32901, + "y": 52.644 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2545.3842360000003, + "area": 2545.38424, "axes": { "#": 466 }, @@ -4203,13 +4203,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 4141.080021292649, - "inverseInertia": 0.00024148289693949151, - "inverseMass": 0.39286799448851456, + "inertia": 4141.08002, + "inverseInertia": 0.00024, + "inverseMass": 0.39287, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.5453842360000003, + "mass": 2.54538, "motion": 0, "parent": null, "position": { @@ -4264,28 +4264,28 @@ } ], { - "x": 0.6234824257695271, - "y": 0.7818373646459641 + "x": 0.62348, + "y": 0.78184 }, { - "x": -0.2225077765934148, - "y": 0.9749309151706366 + "x": -0.22251, + "y": 0.97493 }, { - "x": -0.9009710359932015, - "y": 0.4338792370018844 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009710359932015, - "y": -0.4338792370018844 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.2225077765934148, - "y": -0.9749309151706366 + "x": -0.22251, + "y": -0.97493 }, { - "x": 0.6234824257695271, - "y": -0.7818373646459641 + "x": 0.62348, + "y": -0.78184 }, { "x": 1, @@ -4300,12 +4300,12 @@ } }, { - "x": 483.79689680342125, - "y": 99.46800000000002 + "x": 483.7969, + "y": 99.468 }, { - "x": 425.8188968034213, - "y": 40.00000000000001 + "x": 425.8189, + "y": 40 }, { "category": 1, @@ -4322,16 +4322,16 @@ "y": 0 }, { - "x": 456.31801348384846, - "y": 69.73400000000001 + "x": 456.31801, + "y": 69.734 }, { "x": 0, "y": 0 }, { - "x": 456.31801348384846, - "y": 69.73400000000001 + "x": 456.31801, + "y": 69.734 }, { "fillStyle": "#C44D58", @@ -4377,57 +4377,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 483.79689680342125, - "y": 82.96700000000001 + "x": 483.7969, + "y": 82.967 }, { "body": null, "index": 1, "isInternal": false, - "x": 463.1048968034213, - "y": 99.46800000000002 + "x": 463.1049, + "y": 99.468 }, { "body": null, "index": 2, "isInternal": false, - "x": 437.3018968034213, - "y": 93.57900000000001 + "x": 437.3019, + "y": 93.579 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.8188968034213, - "y": 69.73400000000001 + "x": 425.8189, + "y": 69.734 }, { "body": null, "index": 4, "isInternal": false, - "x": 437.3018968034213, - "y": 45.88900000000001 + "x": 437.3019, + "y": 45.889 }, { "body": null, "index": 5, "isInternal": false, - "x": 463.1048968034213, - "y": 40.00000000000001 + "x": 463.1049, + "y": 40 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.79689680342125, - "y": 56.501000000000005 + "x": 483.7969, + "y": 56.501 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2860.0907570000004, + "area": 2860.09076, "axes": { "#": 495 }, @@ -4448,13 +4448,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 5228.372858362924, - "inverseInertia": 0.00019126409441141387, - "inverseMass": 0.3496392544720915, + "inertia": 5228.37286, + "inverseInertia": 0.00019, + "inverseMass": 0.34964, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.8600907570000005, + "mass": 2.86009, "motion": 0, "parent": null, "position": { @@ -4509,28 +4509,28 @@ } ], { - "x": 0.6234945666503724, - "y": 0.781827682649741 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.2225315292975342, - "y": 0.9749254938037577 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.900958835995675, - "y": 0.4339045699705392 + "x": -0.90096, + "y": 0.4339 }, { - "x": -0.900958835995675, - "y": -0.4339045699705392 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.2225315292975342, - "y": -0.9749254938037577 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6234945666503724, - "y": -0.781827682649741 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -4545,12 +4545,12 @@ } }, { - "x": 259.8570322603699, + "x": 259.85703, "y": 165.832 }, { - "x": 198.39903226036986, - "y": 102.79399999999998 + "x": 198.39903, + "y": 102.794 }, { "category": 1, @@ -4622,57 +4622,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 259.8570322603699, - "y": 148.33999999999997 + "x": 259.85703, + "y": 148.34 }, { "body": null, "index": 1, "isInternal": false, - "x": 237.92303226036987, + "x": 237.92303, "y": 165.832 }, { "body": null, "index": 2, "isInternal": false, - "x": 210.57203226036987, + "x": 210.57203, "y": 159.589 }, { "body": null, "index": 3, "isInternal": false, - "x": 198.39903226036986, + "x": 198.39903, "y": 134.313 }, { "body": null, "index": 4, "isInternal": false, - "x": 210.57203226036987, - "y": 109.03699999999999 + "x": 210.57203, + "y": 109.037 }, { "body": null, "index": 5, "isInternal": false, - "x": 237.92303226036987, - "y": 102.79399999999998 + "x": 237.92303, + "y": 102.794 }, { "body": null, "index": 6, "isInternal": false, - "x": 259.8570322603699, - "y": 120.28599999999999 + "x": 259.85703, + "y": 120.286 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3059.8598560000005, + "area": 3059.85986, "axes": { "#": 524 }, @@ -4693,13 +4693,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 6241.828225573563, - "inverseInertia": 0.00016020947130567818, - "inverseMass": 0.3268123531994858, + "inertia": 6241.82823, + "inverseInertia": 0.00016, + "inverseMass": 0.32681, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.0598598560000005, + "mass": 3.05986, "motion": 0, "parent": null, "position": { @@ -4755,11 +4755,11 @@ } }, { - "x": 315.17303226036995, + "x": 315.17303, "y": 158.11 }, { - "x": 259.8570322603699, + "x": 259.85703, "y": 102.794 }, { @@ -4777,7 +4777,7 @@ "y": 0 }, { - "x": 287.51503226036994, + "x": 287.51503, "y": 130.452 }, { @@ -4785,7 +4785,7 @@ "y": 0 }, { - "x": 287.51503226036994, + "x": 287.51503, "y": 130.452 }, { @@ -4823,28 +4823,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.17303226036995, + "x": 315.17303, "y": 158.11 }, { "body": null, "index": 1, "isInternal": false, - "x": 259.8570322603699, + "x": 259.85703, "y": 158.11 }, { "body": null, "index": 2, "isInternal": false, - "x": 259.8570322603699, + "x": 259.85703, "y": 102.794 }, { "body": null, "index": 3, "isInternal": false, - "x": 315.17303226036995, + "x": 315.17303, "y": 102.794 }, { @@ -4852,7 +4852,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3989.2628600000007, + "area": 3989.26286, "axes": { "#": 545 }, @@ -4873,13 +4873,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 10208.975714199174, - "inverseInertia": 0.00009795301977348697, - "inverseMass": 0.25067287744483197, + "inertia": 10208.97571, + "inverseInertia": 0.0001, + "inverseMass": 0.25067, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.9892628600000006, + "mass": 3.98926, "motion": 0, "parent": null, "position": { @@ -4922,12 +4922,12 @@ } ], { - "x": -0.49999270020333786, - "y": -0.8660296182829864 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.49999270020333786, - "y": -0.8660296182829864 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -4942,12 +4942,12 @@ } }, { - "x": 383.04303226036996, + "x": 383.04303, "y": 181.164 }, { - "x": 315.17303226036995, - "y": 102.79399999999998 + "x": 315.17303, + "y": 102.794 }, { "category": 1, @@ -4964,16 +4964,16 @@ "y": 0 }, { - "x": 349.10803226036995, - "y": 141.97899999999998 + "x": 349.10803, + "y": 141.979 }, { "x": 0, "y": 0 }, { - "x": 349.10803226036995, - "y": 141.97899999999998 + "x": 349.10803, + "y": 141.979 }, { "fillStyle": "#4ECDC4", @@ -5016,50 +5016,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 383.04303226036996, + "x": 383.04303, "y": 161.572 }, { "body": null, "index": 1, "isInternal": false, - "x": 349.10803226036995, + "x": 349.10803, "y": 181.164 }, { "body": null, "index": 2, "isInternal": false, - "x": 315.17303226036995, + "x": 315.17303, "y": 161.572 }, { "body": null, "index": 3, "isInternal": false, - "x": 315.17303226036995, - "y": 122.38599999999998 + "x": 315.17303, + "y": 122.386 }, { "body": null, "index": 4, "isInternal": false, - "x": 349.10803226036995, - "y": 102.79399999999998 + "x": 349.10803, + "y": 102.794 }, { "body": null, "index": 5, "isInternal": false, - "x": 383.04303226036996, - "y": 122.38599999999998 + "x": 383.04303, + "y": 122.386 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 871.6665760000001, + "area": 871.66658, "axes": { "#": 569 }, @@ -5080,13 +5080,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 506.5350798103759, - "inverseInertia": 0.001974196930989173, - "inverseMass": 1.1472276527900274, + "inertia": 506.53508, + "inverseInertia": 0.00197, + "inverseMass": 1.14723, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.8716665760000001, + "mass": 0.87167, "motion": 0, "parent": null, "position": { @@ -5142,12 +5142,12 @@ } }, { - "x": 412.56703226036996, - "y": 132.31799999999998 + "x": 412.56703, + "y": 132.318 }, { - "x": 383.04303226036996, - "y": 102.79399999999998 + "x": 383.04303, + "y": 102.794 }, { "category": 1, @@ -5164,16 +5164,16 @@ "y": 0 }, { - "x": 397.80503226036996, - "y": 117.55599999999998 + "x": 397.80503, + "y": 117.556 }, { "x": 0, "y": 0 }, { - "x": 397.80503226036996, - "y": 117.55599999999998 + "x": 397.80503, + "y": 117.556 }, { "fillStyle": "#C44D58", @@ -5210,29 +5210,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 412.56703226036996, - "y": 132.31799999999998 + "x": 412.56703, + "y": 132.318 }, { "body": null, "index": 1, "isInternal": false, - "x": 383.04303226036996, - "y": 132.31799999999998 + "x": 383.04303, + "y": 132.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.04303226036996, - "y": 102.79399999999998 + "x": 383.04303, + "y": 102.794 }, { "body": null, "index": 3, "isInternal": false, - "x": 412.56703226036996, - "y": 102.79399999999998 + "x": 412.56703, + "y": 102.794 }, { "angle": 0, @@ -5260,13 +5260,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 4844.10306453334, - "inverseInertia": 0.00020643656558870835, - "inverseMass": 0.36390811830939684, + "inertia": 4844.10306, + "inverseInertia": 0.00021, + "inverseMass": 0.36391, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.74794639, + "mass": 2.74795, "motion": 0, "parent": null, "position": { @@ -5309,12 +5309,12 @@ } ], { - "x": -0.4999983780624879, - "y": -0.8660263402084726 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.4999983780624879, - "y": -0.8660263402084726 + "x": 0.5, + "y": -0.86603 }, { "x": 1, @@ -5329,12 +5329,12 @@ } }, { - "x": 468.89703226037, - "y": 167.83799999999997 + "x": 468.89703, + "y": 167.838 }, { - "x": 412.56703226036996, - "y": 102.79399999999998 + "x": 412.56703, + "y": 102.794 }, { "category": 1, @@ -5351,16 +5351,16 @@ "y": 0 }, { - "x": 440.73203226037, - "y": 135.31599999999997 + "x": 440.73203, + "y": 135.316 }, { "x": 0, "y": 0 }, { - "x": 440.73203226037, - "y": 135.31599999999997 + "x": 440.73203, + "y": 135.316 }, { "fillStyle": "#C7F464", @@ -5403,57 +5403,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 468.89703226037, - "y": 151.57699999999997 + "x": 468.89703, + "y": 151.577 }, { "body": null, "index": 1, "isInternal": false, - "x": 440.73203226037, - "y": 167.83799999999997 + "x": 440.73203, + "y": 167.838 }, { "body": null, "index": 2, "isInternal": false, - "x": 412.56703226036996, - "y": 151.57699999999997 + "x": 412.56703, + "y": 151.577 }, { "body": null, "index": 3, "isInternal": false, - "x": 412.56703226036996, - "y": 119.05499999999998 + "x": 412.56703, + "y": 119.055 }, { "body": null, "index": 4, "isInternal": false, - "x": 440.73203226037, - "y": 102.79399999999998 + "x": 440.73203, + "y": 102.794 }, { "body": null, "index": 5, "isInternal": false, - "x": 468.89703226037, - "y": 119.05499999999998 + "x": 468.89703, + "y": 119.055 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1565.919654, + "area": 1565.91965, "axes": { "#": 614 }, "bounds": { "#": 627 }, - "circleRadius": 22.454389574759944, + "circleRadius": 22.45439, "collisionFilter": { "#": 630 }, @@ -5468,13 +5468,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1561.0991962205608, - "inverseInertia": 0.0006405742840820183, - "inverseMass": 0.638602368547831, + "inertia": 1561.0992, + "inverseInertia": 0.00064, + "inverseMass": 0.6386, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.565919654, + "mass": 1.56592, "motion": 0, "parent": null, "position": { @@ -5544,48 +5544,48 @@ } ], { - "x": -0.9659312992094581, - "y": -0.25879861902167917 + "x": -0.96593, + "y": -0.2588 }, { - "x": -0.8659980663559208, - "y": -0.5000473468260844 + "x": -0.866, + "y": -0.50005 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000473468260844, - "y": -0.8659980663559208 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.25879861902167917, - "y": -0.9659312992094581 + "x": -0.2588, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.25879861902167917, - "y": -0.9659312992094581 + "x": 0.2588, + "y": -0.96593 }, { - "x": 0.5000473468260844, - "y": -0.8659980663559208 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8659980663559208, - "y": -0.5000473468260844 + "x": 0.866, + "y": -0.50005 }, { - "x": 0.9659312992094581, - "y": -0.25879861902167917 + "x": 0.96593, + "y": -0.2588 }, { "x": 1, @@ -5600,12 +5600,12 @@ } }, { - "x": 513.42103226037, - "y": 147.31799999999998 + "x": 513.42103, + "y": 147.318 }, { - "x": 468.89703226037, - "y": 102.79399999999998 + "x": 468.89703, + "y": 102.794 }, { "category": 1, @@ -5622,16 +5622,16 @@ "y": 0 }, { - "x": 491.15903226037, - "y": 125.05599999999998 + "x": 491.15903, + "y": 125.056 }, { "x": 0, "y": 0 }, { - "x": 491.15903226037, - "y": 125.05599999999998 + "x": 491.15903, + "y": 125.056 }, { "fillStyle": "#FF6B6B", @@ -5728,183 +5728,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 513.42103226037, - "y": 127.98699999999998 + "x": 513.42103, + "y": 127.987 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.90403226037, + "x": 511.90403, "y": 133.649 }, { "body": null, "index": 2, "isInternal": false, - "x": 508.97303226037, - "y": 138.72499999999997 + "x": 508.97303, + "y": 138.725 }, { "body": null, "index": 3, "isInternal": false, - "x": 504.82803226037, - "y": 142.86999999999998 + "x": 504.82803, + "y": 142.87 }, { "body": null, "index": 4, "isInternal": false, - "x": 499.75203226037, + "x": 499.75203, "y": 145.801 }, { "body": null, "index": 5, "isInternal": false, - "x": 494.09003226037, - "y": 147.31799999999998 + "x": 494.09003, + "y": 147.318 }, { "body": null, "index": 6, "isInternal": false, - "x": 488.22803226037, - "y": 147.31799999999998 + "x": 488.22803, + "y": 147.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 482.56603226037, + "x": 482.56603, "y": 145.801 }, { "body": null, "index": 8, "isInternal": false, - "x": 477.49003226037, - "y": 142.86999999999998 + "x": 477.49003, + "y": 142.87 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.34503226037, - "y": 138.72499999999997 + "x": 473.34503, + "y": 138.725 }, { "body": null, "index": 10, "isInternal": false, - "x": 470.41403226037, + "x": 470.41403, "y": 133.649 }, { "body": null, "index": 11, "isInternal": false, - "x": 468.89703226037, - "y": 127.98699999999998 + "x": 468.89703, + "y": 127.987 }, { "body": null, "index": 12, "isInternal": false, - "x": 468.89703226037, - "y": 122.12499999999999 + "x": 468.89703, + "y": 122.125 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.41403226037, - "y": 116.46299999999998 + "x": 470.41403, + "y": 116.463 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.34503226037, - "y": 111.38699999999999 + "x": 473.34503, + "y": 111.387 }, { "body": null, "index": 15, "isInternal": false, - "x": 477.49003226037, - "y": 107.24199999999999 + "x": 477.49003, + "y": 107.242 }, { "body": null, "index": 16, "isInternal": false, - "x": 482.56603226037, - "y": 104.31099999999998 + "x": 482.56603, + "y": 104.311 }, { "body": null, "index": 17, "isInternal": false, - "x": 488.22803226037, - "y": 102.79399999999998 + "x": 488.22803, + "y": 102.794 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.09003226037, - "y": 102.79399999999998 + "x": 494.09003, + "y": 102.794 }, { "body": null, "index": 19, "isInternal": false, - "x": 499.75203226037, - "y": 104.31099999999998 + "x": 499.75203, + "y": 104.311 }, { "body": null, "index": 20, "isInternal": false, - "x": 504.82803226037, - "y": 107.24199999999999 + "x": 504.82803, + "y": 107.242 }, { "body": null, "index": 21, "isInternal": false, - "x": 508.97303226037, - "y": 111.38699999999999 + "x": 508.97303, + "y": 111.387 }, { "body": null, "index": 22, "isInternal": false, - "x": 511.90403226037, - "y": 116.46299999999998 + "x": 511.90403, + "y": 116.463 }, { "body": null, "index": 23, "isInternal": false, - "x": 513.42103226037, - "y": 122.12499999999999 + "x": 513.42103, + "y": 122.125 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4733.739824, + "area": 4733.73982, "axes": { "#": 665 }, "bounds": { "#": 679 }, - "circleRadius": 39.007115912208505, + "circleRadius": 39.00712, "collisionFilter": { "#": 682 }, @@ -5919,13 +5919,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 14265.834400986316, - "inverseInertia": 0.00007009754718103707, - "inverseMass": 0.21124946388688554, + "inertia": 14265.8344, + "inverseInertia": 0.00007, + "inverseMass": 0.21125, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.733739824000001, + "mass": 4.73374, "motion": 0, "parent": null, "position": { @@ -5998,52 +5998,52 @@ } ], { - "x": -0.9709255777378387, - "y": -0.2393815416744658 + "x": -0.97093, + "y": -0.23938 }, { - "x": -0.885471197396615, - "y": -0.46469426355508736 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7485172896504948, - "y": -0.6631152743635736 + "x": -0.74852, + "y": -0.66312 }, { - "x": -0.5680758383251513, - "y": -0.8229762098087504 + "x": -0.56808, + "y": -0.82298 }, { - "x": -0.3546285896888757, - "y": -0.935007253113728 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12048698337205765, - "y": -0.9927149071298876 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048698337205765, - "y": -0.9927149071298876 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.3546285896888757, - "y": -0.935007253113728 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680758383251513, - "y": -0.8229762098087504 + "x": 0.56808, + "y": -0.82298 }, { - "x": 0.7485172896504948, - "y": -0.6631152743635736 + "x": 0.74852, + "y": -0.66312 }, { - "x": 0.885471197396615, - "y": -0.46469426355508736 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709255777378387, - "y": -0.2393815416744658 + "x": 0.97093, + "y": -0.23938 }, { "x": 1, @@ -6199,21 +6199,21 @@ "body": null, "index": 1, "isInternal": false, - "x": 275.19500000000005, + "x": 275.195, "y": 234.003 }, { "body": null, "index": 2, "isInternal": false, - "x": 270.82500000000005, - "y": 242.32999999999998 + "x": 270.825, + "y": 242.33 }, { "body": null, "index": 3, "isInternal": false, - "x": 264.59000000000003, + "x": 264.59, "y": 249.368 }, { @@ -6221,14 +6221,14 @@ "index": 4, "isInternal": false, "x": 256.851, - "y": 254.70999999999998 + "y": 254.71 }, { "body": null, "index": 5, "isInternal": false, - "x": 248.05800000000002, - "y": 258.04499999999996 + "x": 248.058, + "y": 258.045 }, { "body": null, @@ -6242,20 +6242,20 @@ "index": 7, "isInternal": false, "x": 229.388, - "y": 258.04499999999996 + "y": 258.045 }, { "body": null, "index": 8, "isInternal": false, - "x": 220.59500000000003, - "y": 254.70999999999998 + "x": 220.595, + "y": 254.71 }, { "body": null, "index": 9, "isInternal": false, - "x": 212.85600000000002, + "x": 212.856, "y": 249.368 }, { @@ -6263,7 +6263,7 @@ "index": 10, "isInternal": false, "x": 206.621, - "y": 242.32999999999998 + "y": 242.33 }, { "body": null, @@ -6304,14 +6304,14 @@ "body": null, "index": 16, "isInternal": false, - "x": 212.85600000000002, + "x": 212.856, "y": 190.974 }, { "body": null, "index": 17, "isInternal": false, - "x": 220.59500000000003, + "x": 220.595, "y": 185.632 }, { @@ -6332,7 +6332,7 @@ "body": null, "index": 20, "isInternal": false, - "x": 248.05800000000002, + "x": 248.058, "y": 182.297 }, { @@ -6346,21 +6346,21 @@ "body": null, "index": 22, "isInternal": false, - "x": 264.59000000000003, + "x": 264.59, "y": 190.974 }, { "body": null, "index": 23, "isInternal": false, - "x": 270.82500000000005, + "x": 270.825, "y": 198.012 }, { "body": null, "index": 24, "isInternal": false, - "x": 275.19500000000005, + "x": 275.195, "y": 206.339 }, { @@ -6375,14 +6375,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2896.676004, + "area": 2896.676, "axes": { "#": 719 }, "bounds": { "#": 733 }, - "circleRadius": 30.51354595336077, + "circleRadius": 30.51355, "collisionFilter": { "#": 736 }, @@ -6397,13 +6397,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 5341.807735827058, - "inverseInertia": 0.0001872025444294978, - "inverseMass": 0.34522328303859556, + "inertia": 5341.80774, + "inverseInertia": 0.00019, + "inverseMass": 0.34522, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.896676004, + "mass": 2.89668, "motion": 0, "parent": null, "position": { @@ -6476,52 +6476,52 @@ } ], { - "x": -0.9709527115634061, - "y": -0.23927146070450803 + "x": -0.97095, + "y": -0.23927 }, { - "x": -0.8854454502571566, - "y": -0.46474332122032835 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.748503349460085, - "y": -0.6631310095652546 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.567993431707586, - "y": -0.8230330865384695 + "x": -0.56799, + "y": -0.82303 }, { - "x": -0.354666528007679, - "y": -0.9349928630267603 + "x": -0.35467, + "y": -0.93499 }, { - "x": -0.12058714530525724, - "y": -0.992702745229975 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12058714530525724, - "y": -0.992702745229975 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.354666528007679, - "y": -0.9349928630267603 + "x": 0.35467, + "y": -0.93499 }, { - "x": 0.567993431707586, - "y": -0.8230330865384695 + "x": 0.56799, + "y": -0.82303 }, { - "x": 0.748503349460085, - "y": -0.6631310095652546 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854454502571566, - "y": -0.46474332122032835 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709527115634061, - "y": -0.23927146070450803 + "x": 0.97095, + "y": -0.23927 }, { "x": 1, @@ -6677,14 +6677,14 @@ "body": null, "index": 1, "isInternal": false, - "x": 336.26800000000003, + "x": 336.268, "y": 222.498 }, { "body": null, "index": 2, "isInternal": false, - "x": 332.84900000000005, + "x": 332.849, "y": 229.012 }, { @@ -6698,14 +6698,14 @@ "body": null, "index": 4, "isInternal": false, - "x": 321.91700000000003, + "x": 321.917, "y": 238.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.03900000000004, + "x": 315.039, "y": 241.305 }, { @@ -6733,7 +6733,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 287.50300000000004, + "x": 287.503, "y": 234.518 }, { @@ -6782,7 +6782,7 @@ "body": null, "index": 16, "isInternal": false, - "x": 287.50300000000004, + "x": 287.503, "y": 188.838 }, { @@ -6810,14 +6810,14 @@ "body": null, "index": 20, "isInternal": false, - "x": 315.03900000000004, + "x": 315.039, "y": 182.051 }, { "body": null, "index": 21, "isInternal": false, - "x": 321.91700000000003, + "x": 321.917, "y": 184.66 }, { @@ -6831,14 +6831,14 @@ "body": null, "index": 23, "isInternal": false, - "x": 332.84900000000005, + "x": 332.849, "y": 194.344 }, { "body": null, "index": 24, "isInternal": false, - "x": 336.26800000000003, + "x": 336.268, "y": 200.858 }, { @@ -6853,7 +6853,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 831.9912370000001, + "area": 831.99124, "axes": { "#": 773 }, @@ -6874,13 +6874,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 532.8630587898949, - "inverseInertia": 0.0018766547680579499, - "inverseMass": 1.2019357362534335, + "inertia": 532.86306, + "inverseInertia": 0.00188, + "inverseMass": 1.20194, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.8319912370000001, + "mass": 0.83199, "motion": 0, "parent": null, "position": { @@ -6923,12 +6923,12 @@ } ], { - "x": -0.5000035320614334, - "y": 0.8660233645382157 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000035320614334, - "y": -0.8660233645382157 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -6943,11 +6943,11 @@ } }, { - "x": 369.6621666666667, + "x": 369.66217, "y": 224.998 }, { - "x": 331.7011666666667, + "x": 331.70117, "y": 181.164 }, { @@ -7008,21 +7008,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 369.6621666666667, + "x": 369.66217, "y": 224.998 }, { "body": null, "index": 1, "isInternal": false, - "x": 331.7011666666667, + "x": 331.70117, "y": 203.081 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.6621666666667, + "x": 369.66217, "y": 181.164 }, { @@ -7030,7 +7030,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1307.097651, + "area": 1307.09765, "axes": { "#": 794 }, @@ -7051,13 +7051,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1315.2071996921047, - "inverseInertia": 0.0007603364703554725, - "inverseMass": 0.7650537809741653, + "inertia": 1315.2072, + "inverseInertia": 0.00076, + "inverseMass": 0.76505, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.307097651, + "mass": 1.3071, "motion": 0, "parent": null, "position": { @@ -7100,12 +7100,12 @@ } ], { - "x": -0.5000013219654605, - "y": 0.8660246405459787 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000013219654605, - "y": -0.8660246405459787 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -7120,7 +7120,7 @@ } }, { - "x": 409.31300000000005, + "x": 409.313, "y": 236.106 }, { @@ -7142,7 +7142,7 @@ "y": 0 }, { - "x": 393.4526666666667, + "x": 393.45267, "y": 208.635 }, { @@ -7150,7 +7150,7 @@ "y": 0 }, { - "x": 393.4526666666667, + "x": 393.45267, "y": 208.635 }, { @@ -7185,7 +7185,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 409.31300000000005, + "x": 409.313, "y": 236.106 }, { @@ -7199,7 +7199,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 409.31300000000005, + "x": 409.313, "y": 181.164 }, { @@ -7228,13 +7228,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 7702.7462363866725, - "inverseInertia": 0.0001298238276728036, - "inverseMass": 0.2899158589958734, + "inertia": 7702.74624, + "inverseInertia": 0.00013, + "inverseMass": 0.28992, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.44927664, + "mass": 3.44928, "motion": 0, "parent": null, "position": { @@ -7283,20 +7283,20 @@ } ], { - "x": 0.3090093110139392, - "y": 0.9510590127361659 + "x": 0.30901, + "y": 0.95106 }, { - "x": -0.8090199312598066, - "y": 0.5877812099960136 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090199312598066, - "y": -0.5877812099960136 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090093110139392, - "y": -0.9510590127361659 + "x": 0.30901, + "y": -0.95106 }, { "x": 1, @@ -7311,11 +7311,11 @@ } }, { - "x": 474.577892132183, - "y": 253.61199999999997 + "x": 474.57789, + "y": 253.612 }, { - "x": 405.67589213218304, + "x": 405.67589, "y": 181.164 }, { @@ -7334,7 +7334,7 @@ }, { "x": 443.764, - "y": 217.38799999999998 + "y": 217.388 }, { "x": 0, @@ -7342,7 +7342,7 @@ }, { "x": 443.764, - "y": 217.38799999999998 + "y": 217.388 }, { "fillStyle": "#4ECDC4", @@ -7382,43 +7382,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 474.577892132183, - "y": 239.77599999999998 + "x": 474.57789, + "y": 239.776 }, { "body": null, "index": 1, "isInternal": false, - "x": 431.993892132183, - "y": 253.61199999999997 + "x": 431.99389, + "y": 253.612 }, { "body": null, "index": 2, "isInternal": false, - "x": 405.67589213218304, - "y": 217.38799999999998 + "x": 405.67589, + "y": 217.388 }, { "body": null, "index": 3, "isInternal": false, - "x": 431.993892132183, + "x": 431.99389, "y": 181.164 }, { "body": null, "index": 4, "isInternal": false, - "x": 474.577892132183, - "y": 194.99999999999997 + "x": 474.57789, + "y": 195 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2144.2456359999996, + "area": 2144.24564, "axes": { "#": 840 }, @@ -7439,13 +7439,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 3065.192898336695, - "inverseInertia": 0.000326243741639439, - "inverseMass": 0.46636447952178567, + "inertia": 3065.1929, + "inverseInertia": 0.00033, + "inverseMass": 0.46636, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.1442456359999995, + "mass": 2.14425, "motion": 0, "parent": null, "position": { @@ -7501,11 +7501,11 @@ } }, { - "x": 520.8838921321831, - "y": 227.46999999999997 + "x": 520.88389, + "y": 227.47 }, { - "x": 474.577892132183, + "x": 474.57789, "y": 181.164 }, { @@ -7523,16 +7523,16 @@ "y": 0 }, { - "x": 497.73089213218304, - "y": 204.31699999999998 + "x": 497.73089, + "y": 204.317 }, { "x": 0, "y": 0 }, { - "x": 497.73089213218304, - "y": 204.31699999999998 + "x": 497.73089, + "y": 204.317 }, { "fillStyle": "#4ECDC4", @@ -7569,28 +7569,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 520.8838921321831, - "y": 227.46999999999997 + "x": 520.88389, + "y": 227.47 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.577892132183, - "y": 227.46999999999997 + "x": 474.57789, + "y": 227.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 474.577892132183, + "x": 474.57789, "y": 181.164 }, { "body": null, "index": 3, "isInternal": false, - "x": 520.8838921321831, + "x": 520.88389, "y": 181.164 }, [], @@ -7639,7 +7639,7 @@ }, "id": 43, "label": "Constraint", - "length": 14.142135623730951, + "length": 14.14214, "pointA": { "#": 888 }, @@ -7678,8 +7678,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7853,7 +7853,7 @@ }, "id": 44, "label": "Constraint", - "length": 22.360679774997898, + "length": 22.36068, "pointA": { "#": 913 }, @@ -7892,8 +7892,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, diff --git a/test/browser/refs/bridge/bridge-10.json b/test/browser/refs/bridge/bridge-10.json index f5023be1..4cbed755 100644 --- a/test/browser/refs/bridge/bridge-10.json +++ b/test/browser/refs/bridge/bridge-10.json @@ -1336,8 +1336,8 @@ } ], { - "angleA": 0.25141089678075423, - "angleB": 0.01412077709531318, + "angleA": 0.25141, + "angleB": 0.01412, "angularStiffness": 0, "bodyA": null, "bodyB": { @@ -1359,10 +1359,10 @@ "type": "constraint" }, { - "angle": 0.014105838414492259, - "anglePrev": 0.008966805577534117, - "angularSpeed": 0.0037827931845884084, - "angularVelocity": 0.005153971517779063, + "angle": 0.01411, + "anglePrev": 0.00897, + "angularSpeed": 0.00378, + "angularVelocity": 0.00515, "area": 1000, "axes": { "#": 143 @@ -1384,8 +1384,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1412,7 +1412,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.85987462800617, + "speed": 2.85987, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1433,12 +1433,12 @@ } ], { - "x": -0.01410537063503816, - "y": 0.9999005143109231 + "x": -0.01411, + "y": 0.9999 }, { - "x": -0.9999005143109231, - "y": -0.01410537063503816 + "x": -0.9999, + "y": -0.01411 }, { "max": { @@ -1449,12 +1449,12 @@ } }, { - "x": 255.02124392830888, - "y": 337.83281546827203 + "x": 255.02124, + "y": 337.83282 }, { - "x": 204.744110800062, - "y": 317.1295366503018 + "x": 204.74411, + "y": 317.12954 }, { "category": 1, @@ -1471,16 +1471,16 @@ "y": 0 }, { - "x": 229.8826773641854, - "y": 327.4811760592867 + "x": 229.88268, + "y": 327.48118 }, { "x": 0, "y": 0 }, { - "x": 230.5714680823796, - "y": 324.84158763977916 + "x": 230.57147, + "y": 324.84159 }, { "endCol": 5, @@ -1503,8 +1503,8 @@ "yScale": 1 }, { - "x": -0.8056454700382858, - "y": 2.64003909573222 + "x": -0.80565, + "y": 2.64004 }, [ { @@ -1524,37 +1524,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 205.02621821276279, - "y": 317.1295366503018 + "x": 205.02622, + "y": 317.12954 }, { "body": null, "index": 1, "isInternal": false, - "x": 255.02124392830888, - "y": 317.8348051820536 + "x": 255.02124, + "y": 317.83481 }, { "body": null, "index": 2, "isInternal": false, - "x": 254.73913651560827, - "y": 337.83281546827203 + "x": 254.73914, + "y": 337.83282 }, { "body": null, "index": 3, "isInternal": false, - "x": 204.744110800062, - "y": 337.12754693652016 + "x": 204.74411, + "y": 337.12755 }, { - "x": 24.214059900100523, - "y": 6.219268699320169 + "x": 24.21406, + "y": 6.21927 }, { - "x": -24.99750758709306, - "y": -0.3530076957024916 + "x": -24.99751, + "y": -0.35301 }, { "lineWidth": 2, @@ -1562,8 +1562,8 @@ "visible": true }, { - "angleA": 0.01412077709531318, - "angleB": 0.00018773052790258267, + "angleA": 0.01412, + "angleB": 0.00019, "angularStiffness": 0, "bodyA": null, "bodyB": { @@ -1585,10 +1585,10 @@ "type": "constraint" }, { - "angle": 0.00020289177634096498, - "anglePrev": 0.00011547167738944298, - "angularSpeed": 0.000021413633870208468, - "angularVelocity": 0.00006894102501083863, + "angle": 0.0002, + "anglePrev": 0.00012, + "angularSpeed": 0.00002, + "angularVelocity": 0.00007, "area": 1000, "axes": { "#": 169 @@ -1610,8 +1610,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1638,7 +1638,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.009311928553805, + "speed": 3.00931, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1659,12 +1659,12 @@ } ], { - "x": -0.0002028917749489559, - "y": 0.9999999794174639 + "x": -0.0002, + "y": 1 }, { - "x": -0.9999999794174639, - "y": -0.0002028917749489559 + "x": -1, + "y": -0.0002 }, { "max": { @@ -1675,12 +1675,12 @@ } }, { - "x": 315.01165612421687, - "y": 337.80719409810985 + "x": 315.01166, + "y": 337.80719 }, { - "x": 265.0075993178448, - "y": 317.79704992101296 + "x": 265.0076, + "y": 317.79705 }, { "category": 1, @@ -1697,16 +1697,16 @@ "y": 0 }, { - "x": 290.0096277210309, - "y": 327.8021220095614 + "x": 290.00963, + "y": 327.80212 }, { "x": 0, "y": 0 }, { - "x": 290.72434667802406, - "y": 324.8576980690257 + "x": 290.72435, + "y": 324.8577 }, { "endCol": 6, @@ -1729,8 +1729,8 @@ "yScale": 1 }, { - "x": -0.8182702954541128, - "y": 2.941360143318434 + "x": -0.81827, + "y": 2.94136 }, [ { @@ -1750,37 +1750,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 265.01165715334366, - "y": 317.79704992101296 + "x": 265.01166, + "y": 317.79705 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.01165612421687, - "y": 317.80719450976045 + "x": 315.01166, + "y": 317.80719 }, { "body": null, "index": 2, "isInternal": false, - "x": 315.007598288718, - "y": 337.80719409810985 + "x": 315.0076, + "y": 337.80719 }, { "body": null, "index": 3, "isInternal": false, - "x": 265.0075993178448, - "y": 337.79704950936235 + "x": 265.0076, + "y": 337.79705 }, { - "x": 24.997507587093068, - "y": 0.35300769570249174 + "x": 24.99751, + "y": 0.35301 }, { - "x": -24.99999955946561, - "y": -0.004693263169997316 + "x": -25, + "y": -0.00469 }, { "lineWidth": 2, @@ -1788,8 +1788,8 @@ "visible": true }, { - "angleA": 0.0001844127024002816, - "angleB": -0.012963246103896604, + "angleA": 0.00018, + "angleB": -0.01296, "angularStiffness": 0, "bodyA": null, "bodyB": { @@ -1811,10 +1811,10 @@ "type": "constraint" }, { - "angle": -0.013456322582772368, - "anglePrev": -0.008458397271014073, - "angularSpeed": 0.003985082609730979, - "angularVelocity": -0.004478461579873803, + "angle": -0.01346, + "anglePrev": -0.00846, + "angularSpeed": 0.00399, + "angularVelocity": -0.00448, "area": 1000, "axes": { "#": 195 @@ -1836,8 +1836,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1864,7 +1864,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90931927630267, + "speed": 2.90932, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1885,12 +1885,12 @@ } ], { - "x": 0.013455916491190429, - "y": 0.999909465057403 + "x": 0.01346, + "y": 0.99991 }, { - "x": -0.999909465057403, - "y": 0.013455916491190429 + "x": -0.99991, + "y": 0.01346 }, { "max": { @@ -1901,12 +1901,12 @@ } }, { - "x": 375.2612271972497, - "y": 338.0947917652949 + "x": 375.26123, + "y": 338.09479 }, { - "x": 324.9966356145559, - "y": 317.42380663958727 + "x": 324.99664, + "y": 317.42381 }, { "category": 1, @@ -1923,16 +1923,16 @@ "y": 0 }, { - "x": 350.12893140590273, - "y": 327.7592992024411 + "x": 350.12893, + "y": 327.7593 }, { "x": 0, "y": 0 }, { - "x": 350.86918052182034, - "y": 324.98613570352734 + "x": 350.86918, + "y": 324.98614 }, { "endCol": 7, @@ -1955,8 +1955,8 @@ "yScale": 1 }, { - "x": -0.8428513183922632, - "y": 2.8052016546284335 + "x": -0.84285, + "y": 2.8052 }, [ { @@ -1976,37 +1976,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 324.9966356145559, - "y": 318.0966024641468 + "x": 324.99664, + "y": 318.0966 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.99210886742594, - "y": 317.42380663958727 + "x": 374.99211, + "y": 317.42381 }, { "body": null, "index": 2, "isInternal": false, - "x": 375.2612271972497, - "y": 337.4219959407353 + "x": 375.26123, + "y": 337.422 }, { "body": null, "index": 3, "isInternal": false, - "x": 325.26575394437964, - "y": 338.0947917652949 + "x": 325.26575, + "y": 338.09479 }, { - "x": 24.999999574899444, - "y": 0.004610317533875727 + "x": 25, + "y": 0.00461 }, { - "x": -24.997899457546474, - "y": 0.324072075930313 + "x": -24.9979, + "y": 0.32407 }, { "lineWidth": 2, @@ -2014,8 +2014,8 @@ "visible": true }, { - "angleA": -0.012936858850887877, - "angleB": 0.0709212752475088, + "angleA": -0.01294, + "angleB": 0.07092, "angularStiffness": 0, "bodyA": null, "bodyB": { @@ -2037,10 +2037,10 @@ "type": "constraint" }, { - "angle": 0.07025977203095717, - "anglePrev": 0.055040048612227936, - "angularSpeed": 0.015354618148498532, - "angularVelocity": 0.01521972341872923, + "angle": 0.07026, + "anglePrev": 0.05504, + "angularSpeed": 0.01535, + "angularVelocity": 0.01522, "area": 1000, "axes": { "#": 221 @@ -2062,8 +2062,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2090,7 +2090,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.008193872047031, + "speed": 3.00819, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2111,12 +2111,12 @@ } ], { - "x": -0.07020198082401308, - "y": 0.9975327973998576 + "x": -0.0702, + "y": 0.99753 }, { - "x": -0.9975327973998576, - "y": -0.07020198082401308 + "x": -0.99753, + "y": -0.0702 }, { "max": { @@ -2127,12 +2127,12 @@ } }, { - "x": 435.2236875962116, - "y": 337.86824246687337 + "x": 435.22369, + "y": 337.86824 }, { - "x": 383.9430081097384, - "y": 314.4074874776757 + "x": 383.94301, + "y": 314.40749 }, { "category": 1, @@ -2149,16 +2149,16 @@ "y": 0 }, { - "x": 409.5833478529748, - "y": 326.13786497227454 + "x": 409.58335, + "y": 326.13786 }, { "x": 0, "y": 0 }, { - "x": 410.37864422892943, - "y": 323.10399103682096 + "x": 410.37864, + "y": 323.10399 }, { "endCol": 9, @@ -2181,8 +2181,8 @@ "yScale": 1 }, { - "x": -0.7452882303904289, - "y": 3.116026160245667 + "x": -0.74529, + "y": 3.11603 }, [ { @@ -2202,37 +2202,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 385.3470477262187, - "y": 314.4074874776757 + "x": 385.34705, + "y": 314.40749 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.2236875962116, - "y": 317.9175865188763 + "x": 435.22369, + "y": 317.91759 }, { "body": null, "index": 2, "isInternal": false, - "x": 433.81964797973137, - "y": 337.86824246687337 + "x": 433.81965, + "y": 337.86824 }, { "body": null, "index": 3, "isInternal": false, - "x": 383.9430081097384, - "y": 334.3581434256728 + "x": 383.94301, + "y": 334.35814 }, { - "x": 24.997908000215485, - "y": -0.32341244991989304 + "x": 24.99791, + "y": -0.32341 }, { - "x": -24.937153507842076, - "y": -1.7715459142566121 + "x": -24.93715, + "y": -1.77155 }, { "lineWidth": 2, @@ -2240,8 +2240,8 @@ "visible": true }, { - "angleA": 0.07025977203095717, - "angleB": 0.028200276777839307, + "angleA": 0.07026, + "angleB": 0.0282, "angularStiffness": 0, "bodyA": null, "bodyB": { @@ -2263,10 +2263,10 @@ "type": "constraint" }, { - "angle": 0.026144813284132172, - "anglePrev": 0.023084353898451256, - "angularSpeed": 0.004647341466075146, - "angularVelocity": 0.00511592287938805, + "angle": 0.02614, + "anglePrev": 0.02308, + "angularSpeed": 0.00465, + "angularVelocity": 0.00512, "area": 1000, "axes": { "#": 247 @@ -2288,8 +2288,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2316,7 +2316,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 4.360992644581265, + "speed": 4.36099, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2337,12 +2337,12 @@ } ], { - "x": -0.026141834832579154, - "y": 0.9996582438371554 + "x": -0.02614, + "y": 0.99966 }, { - "x": -0.9996582438371554, - "y": -0.026141834832579154 + "x": -0.99966, + "y": -0.02614 }, { "max": { @@ -2353,12 +2353,12 @@ } }, { - "x": 489.96829803701985, - "y": 347.73107971895604 + "x": 489.9683, + "y": 347.73108 }, { - "x": 439.46254914851056, - "y": 326.430823100584 + "x": 439.46255, + "y": 326.43082 }, { "category": 1, @@ -2375,16 +2375,16 @@ "y": 0 }, { - "x": 464.7154235927652, - "y": 337.0809514097701 + "x": 464.71542, + "y": 337.08095 }, { "x": 0, "y": 0 }, { - "x": 466.36085064452095, - "y": 332.96996677991456 + "x": 466.36085, + "y": 332.96997 }, { "endCol": 10, @@ -2407,8 +2407,8 @@ "yScale": 1 }, { - "x": -1.659293277902293, - "y": 4.126071385455475 + "x": -1.65929, + "y": 4.12607 }, [ { @@ -2428,37 +2428,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 439.98538584516206, - "y": 326.430823100584 + "x": 439.98539, + "y": 326.43082 }, { "body": null, "index": 1, "isInternal": false, - "x": 489.96829803701985, - "y": 327.7379148422129 + "x": 489.9683, + "y": 327.73791 }, { "body": null, "index": 2, "isInternal": false, - "x": 489.44546134036835, - "y": 347.73107971895604 + "x": 489.44546, + "y": 347.73108 }, { "body": null, "index": 3, "isInternal": false, - "x": 439.46254914851056, - "y": 346.42398797732716 + "x": 439.46255, + "y": 346.42399 }, { - "x": 24.93831993499643, - "y": 1.7550495206003258 + "x": 24.93832, + "y": 1.75505 }, { - "x": -24.990059963636003, - "y": -0.7049134797101466 + "x": -24.99006, + "y": -0.70491 }, { "lineWidth": 2, @@ -2466,8 +2466,8 @@ "visible": true }, { - "angleA": 0.028200276777839307, - "angleB": 0.2273099344908819, + "angleA": 0.0282, + "angleB": 0.22731, "angularStiffness": 0, "bodyA": null, "bodyB": { @@ -2489,10 +2489,10 @@ "type": "constraint" }, { - "angle": 0.22110889363134484, - "anglePrev": 0.21843423407713997, - "angularSpeed": 0.011816384121211262, - "angularVelocity": 0.006505426914800494, + "angle": 0.22111, + "anglePrev": 0.21843, + "angularSpeed": 0.01182, + "angularVelocity": 0.00651, "area": 1000, "axes": { "#": 273 @@ -2514,8 +2514,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2542,7 +2542,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 4.432548646743485, + "speed": 4.43255, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2563,12 +2563,12 @@ } ], { - "x": -0.21931165515301973, - "y": 0.9756548559373049 + "x": -0.21931, + "y": 0.97565 }, { - "x": -0.9756548559373049, - "y": -0.21931165515301973 + "x": -0.97565, + "y": -0.21931 }, { "max": { @@ -2579,12 +2579,12 @@ } }, { - "x": 547.3657106484089, - "y": 351.3149070008692 + "x": 547.36571, + "y": 351.31491 }, { - "x": 494.19673474848327, - "y": 320.83622712447203 + "x": 494.19673, + "y": 320.83623 }, { "category": 1, @@ -2601,16 +2601,16 @@ "y": 0 }, { - "x": 520.7812226984456, - "y": 336.07556706267053 + "x": 520.78122, + "y": 336.07557 }, { "x": 0, "y": 0 }, { - "x": 522.7326493708397, - "y": 332.1815038550429 + "x": 522.73265, + "y": 332.1815 }, { "endCol": 11, @@ -2633,8 +2633,8 @@ "yScale": 1 }, { - "x": -1.9174263842268147, - "y": 3.9630134124312235 + "x": -1.91743, + "y": 3.96301 }, [ { @@ -2654,37 +2654,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.5829678515437, - "y": 320.83622712447203 + "x": 498.58297, + "y": 320.83623 }, { "body": null, "index": 1, "isInternal": false, - "x": 547.3657106484089, - "y": 331.80180988212305 + "x": 547.36571, + "y": 331.80181 }, { "body": null, "index": 2, "isInternal": false, - "x": 542.9794775453481, - "y": 351.3149070008692 + "x": 542.97948, + "y": 351.31491 }, { "body": null, "index": 3, "isInternal": false, - "x": 494.19673474848327, - "y": 340.3493242432182 + "x": 494.19673, + "y": 340.34932 }, { - "x": 24.990059963636003, - "y": 0.7049134797101467 + "x": 24.99006, + "y": 0.70491 }, { - "x": -24.35690364488697, - "y": -5.633936885845607 + "x": -24.3569, + "y": -5.63394 }, { "lineWidth": 2, @@ -2692,8 +2692,8 @@ "visible": true }, { - "angleA": 0.22493966099194046, - "angleB": 0.2266517015972927, + "angleA": 0.22494, + "angleB": 0.22665, "angularStiffness": 0, "bodyA": null, "bodyB": { @@ -2715,10 +2715,10 @@ "type": "constraint" }, { - "angle": 0.2188387128894254, - "anglePrev": 0.235861912836776, - "angularSpeed": 0.0016925386684762628, - "angularVelocity": -0.013015105039813846, + "angle": 0.21884, + "anglePrev": 0.23586, + "angularSpeed": 0.00169, + "angularVelocity": -0.01302, "area": 1000, "axes": { "#": 299 @@ -2740,8 +2740,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2768,7 +2768,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.1699462601631083, + "speed": 3.16995, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2789,12 +2789,12 @@ } ], { - "x": -0.21709617905556217, - "y": 0.9761502184804727 + "x": -0.2171, + "y": 0.97615 }, { - "x": -0.9761502184804727, - "y": -0.21709617905556217 + "x": -0.97615, + "y": -0.2171 }, { "max": { @@ -2805,12 +2805,12 @@ } }, { - "x": 591.7993309212551, - "y": 353.7310543514949 + "x": 591.79933, + "y": 353.73105 }, { - "x": 538.6498964161202, - "y": 323.35324102910744 + "x": 538.6499, + "y": 323.35324 }, { "category": 1, @@ -2827,16 +2827,16 @@ "y": 0 }, { - "x": 565.2246136686883, - "y": 338.542147690301 + "x": 565.22461, + "y": 338.54215 }, { "x": 0, "y": 0 }, { - "x": 565.3427865717481, - "y": 335.98133243514025 + "x": 565.34279, + "y": 335.98133 }, { "endCol": 12, @@ -2859,8 +2859,8 @@ "yScale": 1 }, { - "x": -0.3486204335381444, - "y": 2.677328583893768 + "x": -0.34862, + "y": 2.67733 }, [ { @@ -2880,37 +2880,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 542.9918199972313, - "y": 323.35324102910744 + "x": 542.99182, + "y": 323.35324 }, { "body": null, "index": 1, "isInternal": false, - "x": 591.7993309212551, - "y": 334.2080499818853 + "x": 591.79933, + "y": 334.20805 }, { "body": null, "index": 2, "isInternal": false, - "x": 587.457407340144, - "y": 353.7310543514949 + "x": 587.45741, + "y": 353.73105 }, { "body": null, "index": 3, "isInternal": false, - "x": 538.6498964161202, - "y": 342.87624539871683 + "x": 538.6499, + "y": 342.87625 }, { - "x": 24.370189182775118, - "y": 5.5761885904038975 + "x": 24.37019, + "y": 5.57619 }, { - "x": -24.360606810633623, - "y": -5.617903151328896 + "x": -24.36061, + "y": -5.6179 }, { "lineWidth": 2, @@ -2918,8 +2918,8 @@ "visible": true }, { - "angleA": 0.22284680779696214, - "angleB": -0.582852484095372, + "angleA": 0.22285, + "angleB": -0.58285, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -2939,12 +2939,12 @@ "type": "constraint" }, { - "x": 24.381805947247926, - "y": 5.525173187398409 + "x": 24.38181, + "y": 5.52517 }, { - "x": -20.87240048663564, - "y": 13.760192510480824 + "x": -20.8724, + "y": 13.76019 }, { "lineWidth": 2, @@ -3024,11 +3024,11 @@ } ], { - "angle": 1.747060246700578e-16, - "anglePrev": -7.570096222827088e-18, - "angularSpeed": 1.2509175817417444e-16, - "angularVelocity": 1.9433199313660869e-16, - "area": 1367.9015580000003, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1367.90156, "axes": { "#": 330 }, @@ -3049,13 +3049,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1211.432510854089, - "inverseInertia": 0.0008254690137835049, - "inverseMass": 0.7310467585562906, + "inertia": 1211.43251, + "inverseInertia": 0.00083, + "inverseMass": 0.73105, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.3679015580000002, + "mass": 1.3679, "motion": 0, "parent": null, "position": { @@ -3077,7 +3077,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3107,24 +3107,24 @@ } ], { - "x": 0.3090371554557351, - "y": 0.951049965326653 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090151080740143, - "y": 0.5877878485542132 + "x": -0.80902, + "y": 0.58779 }, { - "x": -0.8090151080740143, - "y": -0.5877878485542134 + "x": -0.80902, + "y": -0.58779 }, { - "x": 0.30903715545573546, - "y": -0.9510499653266528 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, - "y": 1.747060246700578e-16 + "y": 0 }, { "max": { @@ -3135,12 +3135,12 @@ } }, { - "x": 235.1942091912632, - "y": 106.26702548206136 + "x": 235.19421, + "y": 106.26703 }, { - "x": 191.80320919126316, - "y": 57.735754767025725 + "x": 191.80321, + "y": 57.73575 }, { "category": 1, @@ -3157,16 +3157,16 @@ "y": 0 }, { - "x": 215.7890681686181, - "y": 80.54775476702572 + "x": 215.78907, + "y": 80.54775 }, { "x": 0, "y": 0 }, { - "x": 215.78906816861814, - "y": 77.64048405199009 + "x": 215.78907, + "y": 77.64048 }, { "endCol": 4, @@ -3189,8 +3189,8 @@ "yScale": 1 }, { - "x": -5.684341886080802e-14, - "y": 2.9072707150356365 + "x": 0, + "y": 2.90727 }, [ { @@ -3213,42 +3213,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.1942091912632, - "y": 94.64575476702575 + "x": 235.19421, + "y": 94.64575 }, { "body": null, "index": 1, "isInternal": false, - "x": 208.37720919126323, - "y": 103.35975476702572 + "x": 208.37721, + "y": 103.35975 }, { "body": null, "index": 2, "isInternal": false, - "x": 191.80320919126322, - "y": 80.54775476702571 + "x": 191.80321, + "y": 80.54775 }, { "body": null, "index": 3, "isInternal": false, - "x": 208.37720919126323, - "y": 57.735754767025725 + "x": 208.37721, + "y": 57.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 235.1942091912632, - "y": 66.44975476702572 + "x": 235.19421, + "y": 66.44975 }, { - "angle": 3.390746738857227e-16, - "anglePrev": 4.0341947112984263e-16, - "angularSpeed": 7.846736962437323e-17, - "angularVelocity": -8.367236294398468e-17, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 1613.16158, "axes": { "#": 356 @@ -3270,13 +3270,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1684.7880608878233, - "inverseInertia": 0.0005935464662973903, - "inverseMass": 0.619900704553105, + "inertia": 1684.78806, + "inverseInertia": 0.00059, + "inverseMass": 0.6199, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.61316158, + "mass": 1.61316, "motion": 0, "parent": null, "position": { @@ -3298,7 +3298,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3328,24 +3328,24 @@ } ], { - "x": 0.3090373349977839, - "y": 0.9510499069856783 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090269028730659, - "y": 0.5877716141730688 + "x": -0.80903, + "y": 0.58777 }, { - "x": -0.8090269028730654, - "y": -0.5877716141730692 + "x": -0.80903, + "y": -0.58777 }, { - "x": 0.3090373349977846, - "y": -0.9510499069856783 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, - "y": 3.390746738857227e-16 + "y": 0 }, { "max": { @@ -3356,12 +3356,12 @@ } }, { - "x": 282.26421998698254, - "y": 110.18902548206115 + "x": 282.26422, + "y": 110.18903 }, { - "x": 235.14421998698256, - "y": 57.73575476702553 + "x": 235.14422, + "y": 57.73575 }, { "category": 1, @@ -3378,16 +3378,16 @@ "y": 0 }, { - "x": 261.1913475257792, - "y": 82.50875476702554 + "x": 261.19135, + "y": 82.50875 }, { "x": 0, "y": 0 }, { - "x": 261.19134752577924, - "y": 79.6014840519899 + "x": 261.19135, + "y": 79.60148 }, { "endCol": 5, @@ -3410,8 +3410,8 @@ "yScale": 1 }, { - "x": -5.684341886080802e-14, - "y": 2.9072707150356365 + "x": 0, + "y": 2.90727 }, [ { @@ -3434,42 +3434,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 282.26421998698254, - "y": 97.81875476702555 + "x": 282.26422, + "y": 97.81875 }, { "body": null, "index": 1, "isInternal": false, - "x": 253.14221998698258, - "y": 107.28175476702552 + "x": 253.14222, + "y": 107.28175 }, { "body": null, "index": 2, "isInternal": false, - "x": 235.14421998698262, - "y": 82.50875476702552 + "x": 235.14422, + "y": 82.50875 }, { "body": null, "index": 3, "isInternal": false, - "x": 253.14221998698264, - "y": 57.73575476702553 + "x": 253.14222, + "y": 57.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 282.26421998698254, - "y": 67.19875476702555 + "x": 282.26422, + "y": 67.19875 }, { - "angle": -5.644753577271975e-15, - "anglePrev": -4.70094860140794e-15, - "angularSpeed": 9.033006964684068e-16, - "angularVelocity": -9.518678738205873e-16, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 3066.75815, "axes": { "#": 382 @@ -3477,7 +3477,7 @@ "bounds": { "#": 396 }, - "circleRadius": 31.396519204389577, + "circleRadius": 31.39652, "collisionFilter": { "#": 399 }, @@ -3492,13 +3492,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 5987.526734438354, - "inverseInertia": 0.0001670138680547875, - "inverseMass": 0.3260772291417893, + "inertia": 5987.52673, + "inverseInertia": 0.00017, + "inverseMass": 0.32608, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.06675815, + "mass": 3.06676, "motion": 0, "parent": null, "position": { @@ -3520,7 +3520,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3574,56 +3574,56 @@ } ], { - "x": -0.9709223455443412, - "y": -0.23939465099010762 + "x": -0.97092, + "y": -0.23939 }, { - "x": -0.8854821719416532, - "y": -0.4646733510472626 + "x": -0.88548, + "y": -0.46467 }, { - "x": -0.7485525823007603, - "y": -0.6630754342688795 + "x": -0.74855, + "y": -0.66308 }, { - "x": -0.568013892198499, - "y": -0.8230189659233329 + "x": -0.56801, + "y": -0.82302 }, { - "x": -0.3546104225870122, - "y": -0.9350141433115654 + "x": -0.35461, + "y": -0.93501 }, { - "x": -0.1206193812576413, - "y": -0.9926988288826696 + "x": -0.12062, + "y": -0.9927 }, { - "x": 0.12061938125763011, - "y": -0.9926988288826711 + "x": 0.12062, + "y": -0.9927 }, { - "x": 0.35461042258700176, - "y": -0.9350141433115696 + "x": 0.35461, + "y": -0.93501 }, { - "x": 0.5680138921984896, - "y": -0.8230189659233391 + "x": 0.56801, + "y": -0.82302 }, { - "x": 0.7485525823007529, - "y": -0.6630754342688882 + "x": 0.74855, + "y": -0.66308 }, { - "x": 0.8854821719416479, - "y": -0.4646733510472725 + "x": 0.88548, + "y": -0.46467 }, { - "x": 0.9709223455443381, - "y": -0.2393946509901186 + "x": 0.97092, + "y": -0.23939 }, { "x": 1, - "y": -5.644753577271975e-15 + "y": 0 }, { "max": { @@ -3634,12 +3634,12 @@ } }, { - "x": 344.5502531507628, - "y": 126.0783646306712 + "x": 344.55025, + "y": 126.07836 }, { - "x": 282.2142531507628, - "y": 60.377093915635584 + "x": 282.21425, + "y": 60.37709 }, { "category": 1, @@ -3656,16 +3656,16 @@ "y": 0 }, { - "x": 313.3822531507628, - "y": 91.7740939156356 + "x": 313.38225, + "y": 91.77409 }, { - "x": 0.00031375521434938284, - "y": 0.04680805974163685 + "x": 0.00031, + "y": 0.04681 }, { - "x": 313.3822531507628, - "y": 88.8668232006 + "x": 313.38225, + "y": 88.86682 }, { "endCol": 7, @@ -3689,7 +3689,7 @@ }, { "x": 0, - "y": 2.907270715035608 + "y": 2.90727 }, [ { @@ -3775,190 +3775,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 344.5502531507628, - "y": 95.5580939156354 + "x": 344.55025, + "y": 95.55809 }, { "body": null, "index": 1, "isInternal": false, - "x": 342.7382531507628, - "y": 102.9070939156354 + "x": 342.73825, + "y": 102.90709 }, { "body": null, "index": 2, "isInternal": false, - "x": 339.2212531507628, - "y": 109.60909391563546 + "x": 339.22125, + "y": 109.60909 }, { "body": null, "index": 3, "isInternal": false, - "x": 334.2022531507628, - "y": 115.27509391563551 + "x": 334.20225, + "y": 115.27509 }, { "body": null, "index": 4, "isInternal": false, - "x": 327.9732531507628, - "y": 119.5740939156355 + "x": 327.97325, + "y": 119.57409 }, { "body": null, "index": 5, "isInternal": false, - "x": 320.8962531507628, - "y": 122.25809391563557 + "x": 320.89625, + "y": 122.25809 }, { "body": null, "index": 6, "isInternal": false, - "x": 313.3822531507628, - "y": 123.1710939156356 + "x": 313.38225, + "y": 123.17109 }, { "body": null, "index": 7, "isInternal": false, - "x": 305.86825315076277, - "y": 122.25809391563565 + "x": 305.86825, + "y": 122.25809 }, { "body": null, "index": 8, "isInternal": false, - "x": 298.79125315076277, - "y": 119.5740939156357 + "x": 298.79125, + "y": 119.57409 }, { "body": null, "index": 9, "isInternal": false, - "x": 292.5622531507628, - "y": 115.27509391563571 + "x": 292.56225, + "y": 115.27509 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5432531507628, - "y": 109.60909391563577 + "x": 287.54325, + "y": 109.60909 }, { "body": null, "index": 11, "isInternal": false, - "x": 284.0262531507628, - "y": 102.9070939156358 + "x": 284.02625, + "y": 102.90709 }, { "body": null, "index": 12, "isInternal": false, - "x": 282.2142531507628, - "y": 95.5580939156358 + "x": 282.21425, + "y": 95.55809 }, { "body": null, "index": 13, "isInternal": false, - "x": 282.2142531507628, - "y": 87.99009391563581 + "x": 282.21425, + "y": 87.99009 }, { "body": null, "index": 14, "isInternal": false, - "x": 284.0262531507628, - "y": 80.6410939156358 + "x": 284.02625, + "y": 80.64109 }, { "body": null, "index": 15, "isInternal": false, - "x": 287.5432531507628, - "y": 73.93909391563572 + "x": 287.54325, + "y": 73.93909 }, { "body": null, "index": 16, "isInternal": false, - "x": 292.5622531507628, - "y": 68.2730939156357 + "x": 292.56225, + "y": 68.27309 }, { "body": null, "index": 17, "isInternal": false, - "x": 298.79125315076277, - "y": 63.97409391563566 + "x": 298.79125, + "y": 63.97409 }, { "body": null, "index": 18, "isInternal": false, - "x": 305.86825315076277, - "y": 61.29009391563563 + "x": 305.86825, + "y": 61.29009 }, { "body": null, "index": 19, "isInternal": false, - "x": 313.3822531507628, - "y": 60.377093915635584 + "x": 313.38225, + "y": 60.37709 }, { "body": null, "index": 20, "isInternal": false, - "x": 320.8962531507628, - "y": 61.29009391563553 + "x": 320.89625, + "y": 61.29009 }, { "body": null, "index": 21, "isInternal": false, - "x": 327.9732531507628, - "y": 63.97409391563551 + "x": 327.97325, + "y": 63.97409 }, { "body": null, "index": 22, "isInternal": false, - "x": 334.2022531507628, - "y": 68.27309391563549 + "x": 334.20225, + "y": 68.27309 }, { "body": null, "index": 23, "isInternal": false, - "x": 339.2212531507628, - "y": 73.93909391563544 + "x": 339.22125, + "y": 73.93909 }, { "body": null, "index": 24, "isInternal": false, - "x": 342.7382531507628, - "y": 80.64109391563542 + "x": 342.73825, + "y": 80.64109 }, { "body": null, "index": 25, "isInternal": false, - "x": 344.5502531507628, - "y": 87.99009391563541 + "x": 344.55025, + "y": 87.99009 }, { - "angle": -1.19248313689974e-13, - "anglePrev": -1.043036383130393e-13, - "angularSpeed": 1.4797790568372507e-14, - "angularVelocity": -1.4927323726447784e-14, - "area": 1045.258734, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1045.25873, "axes": { "#": 437 }, @@ -3979,13 +3979,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 841.0575612243855, - "inverseInertia": 0.001188979263849945, - "inverseMass": 0.9567009272175092, + "inertia": 841.05756, + "inverseInertia": 0.00119, + "inverseMass": 0.9567, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.0452587340000001, + "mass": 1.04526, "motion": 0, "parent": null, "position": { @@ -4007,7 +4007,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150351373, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4031,16 +4031,16 @@ } ], { - "x": -0.5000049366844117, - "y": 0.8660225535696039 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000049366846182, - "y": -0.8660225535694847 + "x": -0.5, + "y": -0.86602 }, { "x": 1, - "y": -1.19248313689974e-13 + "y": 0 }, { "max": { @@ -4051,12 +4051,12 @@ } }, { - "x": 385.37694973237177, - "y": 108.68696695491478 + "x": 385.37695, + "y": 108.68697 }, { - "x": 342.8279497323688, - "y": 56.64769623987967 + "x": 342.82795, + "y": 56.6477 }, { "category": 1, @@ -4073,16 +4073,16 @@ "y": 0 }, { - "x": 371.19394973236876, - "y": 81.21369623988137 + "x": 371.19395, + "y": 81.2137 }, { - "x": -0.010575912336090752, - "y": 0.002607640924342965 + "x": -0.01058, + "y": 0.00261 }, { - "x": 371.1939497323687, - "y": 78.30642552484623 + "x": 371.19395, + "y": 78.30643 }, { "endCol": 8, @@ -4105,8 +4105,8 @@ "yScale": 1 }, { - "x": 5.684341886080802e-14, - "y": 2.907270715035139 + "x": 0, + "y": 2.90727 }, [ { @@ -4123,29 +4123,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 385.3769497323717, - "y": 105.77969623987964 + "x": 385.37695, + "y": 105.7797 }, { "body": null, "index": 1, "isInternal": false, - "x": 342.8279497323688, - "y": 81.21369623988478 + "x": 342.82795, + "y": 81.2137 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.3769497323658, - "y": 56.64769623987967 + "x": 385.37695, + "y": 56.6477 }, { - "angle": -5.873696817715545e-14, - "anglePrev": -5.164982958859109e-14, - "angularSpeed": 7.0871385885643675e-15, - "angularVelocity": -7.0871385885643675e-15, - "area": 1661.5850679999999, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1661.58507, "axes": { "#": 459 }, @@ -4166,13 +4166,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1771.0956837781462, - "inverseInertia": 0.0005646222330951508, - "inverseMass": 0.6018349702694848, + "inertia": 1771.09568, + "inverseInertia": 0.00056, + "inverseMass": 0.60183, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.661585068, + "mass": 1.66159, "motion": 0, "parent": null, "position": { @@ -4194,7 +4194,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715036108, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4218,16 +4218,16 @@ } ], { - "x": -0.49998374039080595, - "y": -0.86603479107067 + "x": -0.49998, + "y": -0.86603 }, { - "x": 0.49998374039070415, - "y": -0.8660347910707289 + "x": 0.49998, + "y": -0.86603 }, { "x": 1, - "y": -5.873696817715545e-14 + "y": 0 }, { "max": { @@ -4238,12 +4238,12 @@ } }, { - "x": 430.452379386954, - "y": 108.31375476702952 + "x": 430.45238, + "y": 108.31375 }, { - "x": 386.6503793869522, - "y": 57.73575476702951 + "x": 386.65038, + "y": 57.73575 }, { "category": 1, @@ -4260,16 +4260,16 @@ "y": 0 }, { - "x": 408.5513793869531, - "y": 83.02475476702952 + "x": 408.55138, + "y": 83.02475 }, { "x": 0, "y": 0 }, { - "x": 408.5513793869531, - "y": 80.11748405199342 + "x": 408.55138, + "y": 80.11748 }, { "endCol": 8, @@ -4293,7 +4293,7 @@ }, { "x": 0, - "y": 2.907270715036108 + "y": 2.90727 }, [ { @@ -4319,50 +4319,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 430.452379386954, - "y": 95.66975476702824 + "x": 430.45238, + "y": 95.66975 }, { "body": null, "index": 1, "isInternal": false, - "x": 408.55137938695447, - "y": 108.31375476702952 + "x": 408.55138, + "y": 108.31375 }, { "body": null, "index": 2, "isInternal": false, - "x": 386.650379386954, - "y": 95.6697547670308 + "x": 386.65038, + "y": 95.66975 }, { "body": null, "index": 3, "isInternal": false, - "x": 386.6503793869522, - "y": 70.3797547670308 + "x": 386.65038, + "y": 70.37975 }, { "body": null, "index": 4, "isInternal": false, - "x": 408.55137938695174, - "y": 57.73575476702951 + "x": 408.55138, + "y": 57.73575 }, { "body": null, "index": 5, "isInternal": false, - "x": 430.4523793869522, - "y": 70.37975476702823 + "x": 430.45238, + "y": 70.37975 }, { - "angle": 3.914909354698407e-15, - "anglePrev": 3.4425856323740163e-15, - "angularSpeed": 4.723237223243907e-16, - "angularVelocity": 4.723237223243907e-16, - "area": 2545.3842360000003, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2545.38424, "axes": { "#": 484 }, @@ -4383,13 +4383,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 4141.080021292649, - "inverseInertia": 0.00024148289693949151, - "inverseMass": 0.39286799448851456, + "inertia": 4141.08002, + "inverseInertia": 0.00024, + "inverseMass": 0.39287, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.5453842360000003, + "mass": 2.54538, "motion": 0, "parent": null, "position": { @@ -4411,7 +4411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356156, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4447,32 +4447,32 @@ } ], { - "x": 0.6234824257695242, - "y": 0.7818373646459668 + "x": 0.62348, + "y": 0.78184 }, { - "x": -0.22250777659341864, - "y": 0.9749309151706357 + "x": -0.22251, + "y": 0.97493 }, { - "x": -0.9009710359932033, - "y": 0.43387923700188086 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009710359931997, - "y": -0.43387923700188796 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22250777659341098, - "y": -0.9749309151706375 + "x": -0.22251, + "y": -0.97493 }, { - "x": 0.62348242576953, - "y": -0.7818373646459614 + "x": 0.62348, + "y": -0.78184 }, { "x": 1, - "y": 3.914909354698407e-15 + "y": 0 }, { "max": { @@ -4483,12 +4483,12 @@ } }, { - "x": 497.4674157206022, - "y": 120.11102548206114 + "x": 497.46742, + "y": 120.11103 }, { - "x": 439.48941572060227, - "y": 57.735754767025526 + "x": 439.48942, + "y": 57.73575 }, { "category": 1, @@ -4505,16 +4505,16 @@ "y": 0 }, { - "x": 469.98853240102943, - "y": 87.4697547670255 + "x": 469.98853, + "y": 87.46975 }, { - "x": 0.3505151117801758, - "y": 1.329091113501885e-18 + "x": 0.35052, + "y": 0 }, { - "x": 469.98853240102943, - "y": 84.56248405198988 + "x": 469.98853, + "y": 84.56248 }, { "endCol": 10, @@ -4538,7 +4538,7 @@ }, { "x": 0, - "y": 2.9072707150356156 + "y": 2.90727 }, [ { @@ -4567,57 +4567,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 497.4674157206022, - "y": 100.70275476702562 + "x": 497.46742, + "y": 100.70275 }, { "body": null, "index": 1, "isInternal": false, - "x": 476.77541572060227, - "y": 117.20375476702552 + "x": 476.77542, + "y": 117.20375 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.97241572060227, - "y": 111.31475476702539 + "x": 450.97242, + "y": 111.31475 }, { "body": null, "index": 3, "isInternal": false, - "x": 439.48941572060227, - "y": 87.46975476702539 + "x": 439.48942, + "y": 87.46975 }, { "body": null, "index": 4, "isInternal": false, - "x": 450.97241572060227, - "y": 63.62475476702542 + "x": 450.97242, + "y": 63.62475 }, { "body": null, "index": 5, "isInternal": false, - "x": 476.77541572060227, - "y": 57.735754767025526 + "x": 476.77542, + "y": 57.73575 }, { "body": null, "index": 6, "isInternal": false, - "x": 497.4674157206022, - "y": 74.23675476702563 + "x": 497.46742, + "y": 74.23675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2860.0907570000004, + "area": 2860.09076, "axes": { "#": 514 }, @@ -4638,13 +4638,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 5228.372858362924, - "inverseInertia": 0.00019126409441141387, - "inverseMass": 0.3496392544720915, + "inertia": 5228.37286, + "inverseInertia": 0.00019, + "inverseMass": 0.34964, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.8600907570000005, + "mass": 2.86009, "motion": 0, "parent": null, "position": { @@ -4666,7 +4666,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4702,28 +4702,28 @@ } ], { - "x": 0.6234945666503724, - "y": 0.781827682649741 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.2225315292975342, - "y": 0.9749254938037577 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.900958835995675, - "y": 0.4339045699705392 + "x": -0.90096, + "y": 0.4339 }, { - "x": -0.900958835995675, - "y": -0.4339045699705392 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.2225315292975342, - "y": -0.9749254938037577 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6234945666503724, - "y": -0.781827682649741 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -4738,12 +4738,12 @@ } }, { - "x": 259.8570322603699, - "y": 183.56775476702597 + "x": 259.85703, + "y": 183.56775 }, { - "x": 198.39903226036986, - "y": 120.52975476702593 + "x": 198.39903, + "y": 120.52975 }, { "category": 1, @@ -4761,7 +4761,7 @@ }, { "x": 230.729, - "y": 152.04875476702597 + "y": 152.04875 }, { "x": 0, @@ -4769,7 +4769,7 @@ }, { "x": 230.729, - "y": 149.1414840519903 + "y": 149.14148 }, { "endCol": 5, @@ -4793,7 +4793,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4822,57 +4822,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 259.8570322603699, - "y": 166.07575476702596 + "x": 259.85703, + "y": 166.07575 }, { "body": null, "index": 1, "isInternal": false, - "x": 237.92303226036987, - "y": 183.56775476702597 + "x": 237.92303, + "y": 183.56775 }, { "body": null, "index": 2, "isInternal": false, - "x": 210.57203226036987, - "y": 177.32475476702598 + "x": 210.57203, + "y": 177.32475 }, { "body": null, "index": 3, "isInternal": false, - "x": 198.39903226036986, - "y": 152.04875476702597 + "x": 198.39903, + "y": 152.04875 }, { "body": null, "index": 4, "isInternal": false, - "x": 210.57203226036987, - "y": 126.77275476702593 + "x": 210.57203, + "y": 126.77275 }, { "body": null, "index": 5, "isInternal": false, - "x": 237.92303226036987, - "y": 120.52975476702593 + "x": 237.92303, + "y": 120.52975 }, { "body": null, "index": 6, "isInternal": false, - "x": 259.8570322603699, - "y": 138.02175476702593 + "x": 259.85703, + "y": 138.02175 }, { - "angle": -4.769567858763762e-16, - "anglePrev": -4.2336788329525354e-16, - "angularSpeed": 5.358890258112269e-17, - "angularVelocity": -5.358890258112269e-17, - "area": 3059.8598560000005, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3059.85986, "axes": { "#": 544 }, @@ -4893,13 +4893,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 6241.828225573563, - "inverseInertia": 0.00016020947130567818, - "inverseMass": 0.3268123531994858, + "inertia": 6241.82823, + "inverseInertia": 0.00016, + "inverseMass": 0.32681, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.0598598560000005, + "mass": 3.05986, "motion": 0, "parent": null, "position": { @@ -4921,7 +4921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4942,12 +4942,12 @@ } ], { - "x": -4.769567858763762e-16, + "x": 0, "y": -1 }, { "x": 1, - "y": -4.769567858763762e-16 + "y": 0 }, { "max": { @@ -4958,12 +4958,12 @@ } }, { - "x": 315.17303226036995, - "y": 183.27500732431724 + "x": 315.17303, + "y": 183.27501 }, { - "x": 259.8570322603699, - "y": 125.05173660928146 + "x": 259.85703, + "y": 125.05174 }, { "category": 1, @@ -4980,16 +4980,16 @@ "y": 0 }, { - "x": 287.51503226036994, - "y": 152.70973660928155 + "x": 287.51503, + "y": 152.70974 }, { "x": 0, - "y": 0.10879006489982863 + "y": 0.10879 }, { - "x": 287.51503226036994, - "y": 149.80246589424587 + "x": 287.51503, + "y": 149.80247 }, { "endCol": 6, @@ -5013,7 +5013,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5033,36 +5033,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.17303226036995, - "y": 180.36773660928156 + "x": 315.17303, + "y": 180.36774 }, { "body": null, "index": 1, "isInternal": false, - "x": 259.8570322603699, - "y": 180.36773660928156 + "x": 259.85703, + "y": 180.36774 }, { "body": null, "index": 2, "isInternal": false, - "x": 259.8570322603699, - "y": 125.05173660928146 + "x": 259.85703, + "y": 125.05174 }, { "body": null, "index": 3, "isInternal": false, - "x": 315.17303226036995, - "y": 125.05173660928146 + "x": 315.17303, + "y": 125.05174 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3989.2628600000007, + "area": 3989.26286, "axes": { "#": 566 }, @@ -5083,13 +5083,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 10208.975714199174, - "inverseInertia": 0.00009795301977348697, - "inverseMass": 0.25067287744483197, + "inertia": 10208.97571, + "inverseInertia": 0.0001, + "inverseMass": 0.25067, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.9892628600000006, + "mass": 3.98926, "motion": 0, "parent": null, "position": { @@ -5111,7 +5111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5135,12 +5135,12 @@ } ], { - "x": -0.49999270020333786, - "y": -0.8660296182829864 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.49999270020333786, - "y": -0.8660296182829864 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -5155,12 +5155,12 @@ } }, { - "x": 383.04303226036996, - "y": 198.89975476702597 + "x": 383.04303, + "y": 198.89975 }, { - "x": 315.17303226036995, - "y": 120.52975476702593 + "x": 315.17303, + "y": 120.52975 }, { "category": 1, @@ -5177,16 +5177,16 @@ "y": 0 }, { - "x": 349.10803226036995, - "y": 159.71475476702597 + "x": 349.10803, + "y": 159.71475 }, { "x": 0, "y": 0 }, { - "x": 349.10803226036995, - "y": 156.8074840519903 + "x": 349.10803, + "y": 156.80748 }, { "endCol": 7, @@ -5210,7 +5210,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5236,50 +5236,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 383.04303226036996, - "y": 179.30775476702598 + "x": 383.04303, + "y": 179.30775 }, { "body": null, "index": 1, "isInternal": false, - "x": 349.10803226036995, - "y": 198.89975476702597 + "x": 349.10803, + "y": 198.89975 }, { "body": null, "index": 2, "isInternal": false, - "x": 315.17303226036995, - "y": 179.30775476702598 + "x": 315.17303, + "y": 179.30775 }, { "body": null, "index": 3, "isInternal": false, - "x": 315.17303226036995, - "y": 140.12175476702595 + "x": 315.17303, + "y": 140.12175 }, { "body": null, "index": 4, "isInternal": false, - "x": 349.10803226036995, - "y": 120.52975476702593 + "x": 349.10803, + "y": 120.52975 }, { "body": null, "index": 5, "isInternal": false, - "x": 383.04303226036996, - "y": 140.12175476702595 + "x": 383.04303, + "y": 140.12175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 871.6665760000001, + "area": 871.66658, "axes": { "#": 591 }, @@ -5300,13 +5300,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 506.5350798103759, - "inverseInertia": 0.001974196930989173, - "inverseMass": 1.1472276527900274, + "inertia": 506.53508, + "inverseInertia": 0.00197, + "inverseMass": 1.14723, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.8716665760000001, + "mass": 0.87167, "motion": 0, "parent": null, "position": { @@ -5328,7 +5328,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5365,12 +5365,12 @@ } }, { - "x": 412.56703226036996, - "y": 150.05375476702574 + "x": 412.56703, + "y": 150.05375 }, { - "x": 383.04303226036996, - "y": 120.52975476702574 + "x": 383.04303, + "y": 120.52975 }, { "category": 1, @@ -5387,16 +5387,16 @@ "y": 0 }, { - "x": 397.80503226036996, - "y": 135.29175476702574 + "x": 397.80503, + "y": 135.29175 }, { "x": 0, "y": 0 }, { - "x": 397.80503226036996, - "y": 132.38448405199009 + "x": 397.80503, + "y": 132.38448 }, { "endCol": 8, @@ -5420,7 +5420,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -5440,29 +5440,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 412.56703226036996, - "y": 150.05375476702574 + "x": 412.56703, + "y": 150.05375 }, { "body": null, "index": 1, "isInternal": false, - "x": 383.04303226036996, - "y": 150.05375476702574 + "x": 383.04303, + "y": 150.05375 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.04303226036996, - "y": 120.52975476702574 + "x": 383.04303, + "y": 120.52975 }, { "body": null, "index": 3, "isInternal": false, - "x": 412.56703226036996, - "y": 120.52975476702574 + "x": 412.56703, + "y": 120.52975 }, { "angle": 0, @@ -5490,13 +5490,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 4844.10306453334, - "inverseInertia": 0.00020643656558870835, - "inverseMass": 0.36390811830939684, + "inertia": 4844.10306, + "inverseInertia": 0.00021, + "inverseMass": 0.36391, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.74794639, + "mass": 2.74795, "motion": 0, "parent": null, "position": { @@ -5518,7 +5518,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5542,12 +5542,12 @@ } ], { - "x": -0.4999983780624879, - "y": -0.8660263402084726 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.4999983780624879, - "y": -0.8660263402084726 + "x": 0.5, + "y": -0.86603 }, { "x": 1, @@ -5562,12 +5562,12 @@ } }, { - "x": 468.89703226037, - "y": 185.57375476702595 + "x": 468.89703, + "y": 185.57375 }, { - "x": 412.56703226036996, - "y": 120.52975476702593 + "x": 412.56703, + "y": 120.52975 }, { "category": 1, @@ -5584,16 +5584,16 @@ "y": 0 }, { - "x": 440.73203226037, - "y": 153.05175476702595 + "x": 440.73203, + "y": 153.05175 }, { "x": 0, "y": 0 }, { - "x": 440.73203226037, - "y": 150.14448405199028 + "x": 440.73203, + "y": 150.14448 }, { "endCol": 9, @@ -5617,7 +5617,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5643,57 +5643,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 468.89703226037, - "y": 169.31275476702595 + "x": 468.89703, + "y": 169.31275 }, { "body": null, "index": 1, "isInternal": false, - "x": 440.73203226037, - "y": 185.57375476702595 + "x": 440.73203, + "y": 185.57375 }, { "body": null, "index": 2, "isInternal": false, - "x": 412.56703226036996, - "y": 169.31275476702595 + "x": 412.56703, + "y": 169.31275 }, { "body": null, "index": 3, "isInternal": false, - "x": 412.56703226036996, - "y": 136.79075476702593 + "x": 412.56703, + "y": 136.79075 }, { "body": null, "index": 4, "isInternal": false, - "x": 440.73203226037, - "y": 120.52975476702593 + "x": 440.73203, + "y": 120.52975 }, { "body": null, "index": 5, "isInternal": false, - "x": 468.89703226037, - "y": 136.79075476702593 + "x": 468.89703, + "y": 136.79075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1565.919654, + "area": 1565.91965, "axes": { "#": 638 }, "bounds": { "#": 651 }, - "circleRadius": 22.454389574759944, + "circleRadius": 22.45439, "collisionFilter": { "#": 654 }, @@ -5708,13 +5708,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1561.0991962205608, - "inverseInertia": 0.0006405742840820183, - "inverseMass": 0.638602368547831, + "inertia": 1561.0992, + "inverseInertia": 0.00064, + "inverseMass": 0.6386, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.565919654, + "mass": 1.56592, "motion": 0, "parent": null, "position": { @@ -5736,7 +5736,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5787,48 +5787,48 @@ } ], { - "x": -0.9659312992094581, - "y": -0.25879861902167917 + "x": -0.96593, + "y": -0.2588 }, { - "x": -0.8659980663559208, - "y": -0.5000473468260844 + "x": -0.866, + "y": -0.50005 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000473468260844, - "y": -0.8659980663559208 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.25879861902167917, - "y": -0.9659312992094581 + "x": -0.2588, + "y": -0.96593 }, { "x": 0, "y": -1 }, { - "x": 0.25879861902167917, - "y": -0.9659312992094581 + "x": 0.2588, + "y": -0.96593 }, { - "x": 0.5000473468260844, - "y": -0.8659980663559208 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8659980663559208, - "y": -0.5000473468260844 + "x": 0.866, + "y": -0.50005 }, { - "x": 0.9659312992094581, - "y": -0.25879861902167917 + "x": 0.96593, + "y": -0.2588 }, { "x": 1, @@ -5843,12 +5843,12 @@ } }, { - "x": 513.42103226037, - "y": 165.05375476702574 + "x": 513.42103, + "y": 165.05375 }, { - "x": 468.89703226037, - "y": 120.52975476702571 + "x": 468.89703, + "y": 120.52975 }, { "category": 1, @@ -5865,16 +5865,16 @@ "y": 0 }, { - "x": 491.15903226037, - "y": 142.7917547670257 + "x": 491.15903, + "y": 142.79175 }, { "x": 0, "y": 0 }, { - "x": 491.15903226037, - "y": 139.88448405199006 + "x": 491.15903, + "y": 139.88448 }, { "endCol": 10, @@ -5898,7 +5898,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -5978,183 +5978,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 513.42103226037, - "y": 145.72275476702575 + "x": 513.42103, + "y": 145.72275 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.90403226037, - "y": 151.38475476702575 + "x": 511.90403, + "y": 151.38475 }, { "body": null, "index": 2, "isInternal": false, - "x": 508.97303226037, - "y": 156.46075476702572 + "x": 508.97303, + "y": 156.46075 }, { "body": null, "index": 3, "isInternal": false, - "x": 504.82803226037, - "y": 160.60575476702573 + "x": 504.82803, + "y": 160.60575 }, { "body": null, "index": 4, "isInternal": false, - "x": 499.75203226037, - "y": 163.53675476702574 + "x": 499.75203, + "y": 163.53675 }, { "body": null, "index": 5, "isInternal": false, - "x": 494.09003226037, - "y": 165.05375476702574 + "x": 494.09003, + "y": 165.05375 }, { "body": null, "index": 6, "isInternal": false, - "x": 488.22803226037, - "y": 165.05375476702574 + "x": 488.22803, + "y": 165.05375 }, { "body": null, "index": 7, "isInternal": false, - "x": 482.56603226037, - "y": 163.53675476702574 + "x": 482.56603, + "y": 163.53675 }, { "body": null, "index": 8, "isInternal": false, - "x": 477.49003226037, - "y": 160.60575476702573 + "x": 477.49003, + "y": 160.60575 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.34503226037, - "y": 156.46075476702572 + "x": 473.34503, + "y": 156.46075 }, { "body": null, "index": 10, "isInternal": false, - "x": 470.41403226037, - "y": 151.38475476702575 + "x": 470.41403, + "y": 151.38475 }, { "body": null, "index": 11, "isInternal": false, - "x": 468.89703226037, - "y": 145.72275476702575 + "x": 468.89703, + "y": 145.72275 }, { "body": null, "index": 12, "isInternal": false, - "x": 468.89703226037, - "y": 139.86075476702572 + "x": 468.89703, + "y": 139.86075 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.41403226037, - "y": 134.19875476702572 + "x": 470.41403, + "y": 134.19875 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.34503226037, - "y": 129.1227547670257 + "x": 473.34503, + "y": 129.12275 }, { "body": null, "index": 15, "isInternal": false, - "x": 477.49003226037, - "y": 124.97775476702571 + "x": 477.49003, + "y": 124.97775 }, { "body": null, "index": 16, "isInternal": false, - "x": 482.56603226037, - "y": 122.0467547670257 + "x": 482.56603, + "y": 122.04675 }, { "body": null, "index": 17, "isInternal": false, - "x": 488.22803226037, - "y": 120.52975476702571 + "x": 488.22803, + "y": 120.52975 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.09003226037, - "y": 120.52975476702571 + "x": 494.09003, + "y": 120.52975 }, { "body": null, "index": 19, "isInternal": false, - "x": 499.75203226037, - "y": 122.0467547670257 + "x": 499.75203, + "y": 122.04675 }, { "body": null, "index": 20, "isInternal": false, - "x": 504.82803226037, - "y": 124.97775476702571 + "x": 504.82803, + "y": 124.97775 }, { "body": null, "index": 21, "isInternal": false, - "x": 508.97303226037, - "y": 129.1227547670257 + "x": 508.97303, + "y": 129.12275 }, { "body": null, "index": 22, "isInternal": false, - "x": 511.90403226037, - "y": 134.19875476702572 + "x": 511.90403, + "y": 134.19875 }, { "body": null, "index": 23, "isInternal": false, - "x": 513.42103226037, - "y": 139.86075476702572 + "x": 513.42103, + "y": 139.86075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4733.739824, + "area": 4733.73982, "axes": { "#": 690 }, "bounds": { "#": 704 }, - "circleRadius": 39.007115912208505, + "circleRadius": 39.00712, "collisionFilter": { "#": 707 }, @@ -6169,13 +6169,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 14265.834400986316, - "inverseInertia": 0.00007009754718103707, - "inverseMass": 0.21124946388688554, + "inertia": 14265.8344, + "inverseInertia": 0.00007, + "inverseMass": 0.21125, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.733739824000001, + "mass": 4.73374, "motion": 0, "parent": null, "position": { @@ -6197,7 +6197,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6251,52 +6251,52 @@ } ], { - "x": -0.9709255777378387, - "y": -0.2393815416744658 + "x": -0.97093, + "y": -0.23938 }, { - "x": -0.885471197396615, - "y": -0.46469426355508736 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7485172896504948, - "y": -0.6631152743635736 + "x": -0.74852, + "y": -0.66312 }, { - "x": -0.5680758383251513, - "y": -0.8229762098087504 + "x": -0.56808, + "y": -0.82298 }, { - "x": -0.3546285896888757, - "y": -0.935007253113728 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12048698337205765, - "y": -0.9927149071298876 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048698337205765, - "y": -0.9927149071298876 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.3546285896888757, - "y": -0.935007253113728 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680758383251513, - "y": -0.8229762098087504 + "x": 0.56808, + "y": -0.82298 }, { - "x": 0.7485172896504948, - "y": -0.6631152743635736 + "x": 0.74852, + "y": -0.66312 }, { - "x": 0.885471197396615, - "y": -0.46469426355508736 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709255777378387, - "y": -0.2393815416744658 + "x": 0.97093, + "y": -0.23938 }, { "x": 1, @@ -6311,12 +6311,12 @@ } }, { - "x": 244.81740822651705, - "y": 279.82102548206154 + "x": 244.81741, + "y": 279.82103 }, { - "x": 167.37140822651702, - "y": 198.89975476702597 + "x": 167.37141, + "y": 198.89975 }, { "category": 1, @@ -6333,16 +6333,16 @@ "y": 0 }, { - "x": 206.09440822651703, - "y": 237.90675476702597 + "x": 206.09441, + "y": 237.90675 }, { - "x": -0.7849802897166616, + "x": -0.78498, "y": 0 }, { - "x": 206.09440822651703, - "y": 234.9994840519903 + "x": 206.09441, + "y": 234.99948 }, { "endCol": 5, @@ -6366,7 +6366,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6452,197 +6452,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 244.81740822651705, - "y": 242.60875476702597 + "x": 244.81741, + "y": 242.60875 }, { "body": null, "index": 1, "isInternal": false, - "x": 242.56640822651707, - "y": 251.73875476702597 + "x": 242.56641, + "y": 251.73875 }, { "body": null, "index": 2, "isInternal": false, - "x": 238.19640822651706, - "y": 260.06575476702596 + "x": 238.19641, + "y": 260.06575 }, { "body": null, "index": 3, "isInternal": false, - "x": 231.96140822651705, - "y": 267.1037547670259 + "x": 231.96141, + "y": 267.10375 }, { "body": null, "index": 4, "isInternal": false, - "x": 224.22240822651702, - "y": 272.44575476702585 + "x": 224.22241, + "y": 272.44575 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.42940822651707, - "y": 275.7807547670258 + "x": 215.42941, + "y": 275.78075 }, { "body": null, "index": 6, "isInternal": false, - "x": 206.09440822651703, - "y": 276.91375476702586 + "x": 206.09441, + "y": 276.91375 }, { "body": null, "index": 7, "isInternal": false, - "x": 196.75940822651705, - "y": 275.7807547670258 + "x": 196.75941, + "y": 275.78075 }, { "body": null, "index": 8, "isInternal": false, - "x": 187.96640822651705, - "y": 272.44575476702585 + "x": 187.96641, + "y": 272.44575 }, { "body": null, "index": 9, "isInternal": false, - "x": 180.22740822651707, - "y": 267.1037547670259 + "x": 180.22741, + "y": 267.10375 }, { "body": null, "index": 10, "isInternal": false, - "x": 173.99240822651706, - "y": 260.06575476702596 + "x": 173.99241, + "y": 260.06575 }, { "body": null, "index": 11, "isInternal": false, - "x": 169.62240822651705, - "y": 251.73875476702597 + "x": 169.62241, + "y": 251.73875 }, { "body": null, "index": 12, "isInternal": false, - "x": 167.37140822651702, - "y": 242.60875476702597 + "x": 167.37141, + "y": 242.60875 }, { "body": null, "index": 13, "isInternal": false, - "x": 167.37140822651702, - "y": 233.20475476702597 + "x": 167.37141, + "y": 233.20475 }, { "body": null, "index": 14, "isInternal": false, - "x": 169.62240822651705, - "y": 224.07475476702598 + "x": 169.62241, + "y": 224.07475 }, { "body": null, "index": 15, "isInternal": false, - "x": 173.99240822651706, - "y": 215.74775476702598 + "x": 173.99241, + "y": 215.74775 }, { "body": null, "index": 16, "isInternal": false, - "x": 180.22740822651707, - "y": 208.70975476702597 + "x": 180.22741, + "y": 208.70975 }, { "body": null, "index": 17, "isInternal": false, - "x": 187.96640822651705, - "y": 203.36775476702599 + "x": 187.96641, + "y": 203.36775 }, { "body": null, "index": 18, "isInternal": false, - "x": 196.75940822651705, - "y": 200.03275476702598 + "x": 196.75941, + "y": 200.03275 }, { "body": null, "index": 19, "isInternal": false, - "x": 206.09440822651703, - "y": 198.89975476702597 + "x": 206.09441, + "y": 198.89975 }, { "body": null, "index": 20, "isInternal": false, - "x": 215.42940822651707, - "y": 200.03275476702598 + "x": 215.42941, + "y": 200.03275 }, { "body": null, "index": 21, "isInternal": false, - "x": 224.22240822651702, - "y": 203.36775476702599 + "x": 224.22241, + "y": 203.36775 }, { "body": null, "index": 22, "isInternal": false, - "x": 231.96140822651705, - "y": 208.70975476702597 + "x": 231.96141, + "y": 208.70975 }, { "body": null, "index": 23, "isInternal": false, - "x": 238.19640822651706, - "y": 215.74775476702598 + "x": 238.19641, + "y": 215.74775 }, { "body": null, "index": 24, "isInternal": false, - "x": 242.56640822651707, - "y": 224.07475476702598 + "x": 242.56641, + "y": 224.07475 }, { "body": null, "index": 25, "isInternal": false, - "x": 244.81740822651705, - "y": 233.20475476702597 + "x": 244.81741, + "y": 233.20475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2896.676004, + "area": 2896.676, "axes": { "#": 745 }, "bounds": { "#": 759 }, - "circleRadius": 30.51354595336077, + "circleRadius": 30.51355, "collisionFilter": { "#": 762 }, @@ -6657,13 +6657,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 5341.807735827058, - "inverseInertia": 0.0001872025444294978, - "inverseMass": 0.34522328303859556, + "inertia": 5341.80774, + "inverseInertia": 0.00019, + "inverseMass": 0.34522, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.896676004, + "mass": 2.89668, "motion": 0, "parent": null, "position": { @@ -6685,7 +6685,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6739,52 +6739,52 @@ } ], { - "x": -0.9709527115634061, - "y": -0.23927146070450803 + "x": -0.97095, + "y": -0.23927 }, { - "x": -0.8854454502571566, - "y": -0.46474332122032835 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.748503349460085, - "y": -0.6631310095652546 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.567993431707586, - "y": -0.8230330865384695 + "x": -0.56799, + "y": -0.82303 }, { - "x": -0.354666528007679, - "y": -0.9349928630267603 + "x": -0.35467, + "y": -0.93499 }, { - "x": -0.12058714530525724, - "y": -0.992702745229975 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12058714530525724, - "y": -0.992702745229975 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.354666528007679, - "y": -0.9349928630267603 + "x": 0.35467, + "y": -0.93499 }, { - "x": 0.567993431707586, - "y": -0.8230330865384695 + "x": 0.56799, + "y": -0.82303 }, { - "x": 0.748503349460085, - "y": -0.6631310095652546 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854454502571566, - "y": -0.46474332122032835 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709527115634061, - "y": -0.23927146070450803 + "x": 0.97095, + "y": -0.23927 }, { "x": 1, @@ -6799,12 +6799,12 @@ } }, { - "x": 326.33784267452785, - "y": 269.73615088859987 + "x": 326.33784, + "y": 269.73615 }, { - "x": 265.75584267452786, - "y": 205.8008801735642 + "x": 265.75584, + "y": 205.80088 }, { "category": 1, @@ -6821,16 +6821,16 @@ "y": 0 }, { - "x": 296.04684267452785, - "y": 236.3148801735642 + "x": 296.04684, + "y": 236.31488 }, { - "x": -0.13383355987580234, - "y": 0.12970172505349695 + "x": -0.13383, + "y": 0.1297 }, { - "x": 296.04684267452785, - "y": 233.40760945852853 + "x": 296.04684, + "y": 233.40761 }, { "endCol": 6, @@ -6854,7 +6854,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6940,190 +6940,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 326.33784267452785, - "y": 239.9928801735642 + "x": 326.33784, + "y": 239.99288 }, { "body": null, "index": 1, "isInternal": false, - "x": 324.57784267452786, - "y": 247.1348801735642 + "x": 324.57784, + "y": 247.13488 }, { "body": null, "index": 2, "isInternal": false, - "x": 321.1588426745279, - "y": 253.6488801735642 + "x": 321.15884, + "y": 253.64888 }, { "body": null, "index": 3, "isInternal": false, - "x": 316.28084267452783, - "y": 259.15488017356427 + "x": 316.28084, + "y": 259.15488 }, { "body": null, "index": 4, "isInternal": false, - "x": 310.22684267452786, - "y": 263.3328801735642 + "x": 310.22684, + "y": 263.33288 }, { "body": null, "index": 5, "isInternal": false, - "x": 303.3488426745279, - "y": 265.9418801735642 + "x": 303.34884, + "y": 265.94188 }, { "body": null, "index": 6, "isInternal": false, - "x": 296.04684267452785, - "y": 266.8288801735642 + "x": 296.04684, + "y": 266.82888 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.74484267452783, - "y": 265.9418801735642 + "x": 288.74484, + "y": 265.94188 }, { "body": null, "index": 8, "isInternal": false, - "x": 281.86684267452785, - "y": 263.3328801735642 + "x": 281.86684, + "y": 263.33288 }, { "body": null, "index": 9, "isInternal": false, - "x": 275.8128426745279, - "y": 259.15488017356427 + "x": 275.81284, + "y": 259.15488 }, { "body": null, "index": 10, "isInternal": false, - "x": 270.93484267452783, - "y": 253.6488801735642 + "x": 270.93484, + "y": 253.64888 }, { "body": null, "index": 11, "isInternal": false, - "x": 267.51584267452785, - "y": 247.1348801735642 + "x": 267.51584, + "y": 247.13488 }, { "body": null, "index": 12, "isInternal": false, - "x": 265.75584267452786, - "y": 239.9928801735642 + "x": 265.75584, + "y": 239.99288 }, { "body": null, "index": 13, "isInternal": false, - "x": 265.75584267452786, - "y": 232.6368801735642 + "x": 265.75584, + "y": 232.63688 }, { "body": null, "index": 14, "isInternal": false, - "x": 267.51584267452785, - "y": 225.4948801735642 + "x": 267.51584, + "y": 225.49488 }, { "body": null, "index": 15, "isInternal": false, - "x": 270.93484267452783, - "y": 218.9808801735642 + "x": 270.93484, + "y": 218.98088 }, { "body": null, "index": 16, "isInternal": false, - "x": 275.8128426745279, - "y": 213.4748801735642 + "x": 275.81284, + "y": 213.47488 }, { "body": null, "index": 17, "isInternal": false, - "x": 281.86684267452785, - "y": 209.2968801735642 + "x": 281.86684, + "y": 209.29688 }, { "body": null, "index": 18, "isInternal": false, - "x": 288.74484267452783, - "y": 206.6878801735642 + "x": 288.74484, + "y": 206.68788 }, { "body": null, "index": 19, "isInternal": false, - "x": 296.04684267452785, - "y": 205.8008801735642 + "x": 296.04684, + "y": 205.80088 }, { "body": null, "index": 20, "isInternal": false, - "x": 303.3488426745279, - "y": 206.6878801735642 + "x": 303.34884, + "y": 206.68788 }, { "body": null, "index": 21, "isInternal": false, - "x": 310.22684267452786, - "y": 209.2968801735642 + "x": 310.22684, + "y": 209.29688 }, { "body": null, "index": 22, "isInternal": false, - "x": 316.28084267452783, - "y": 213.4748801735642 + "x": 316.28084, + "y": 213.47488 }, { "body": null, "index": 23, "isInternal": false, - "x": 321.1588426745279, - "y": 218.9808801735642 + "x": 321.15884, + "y": 218.98088 }, { "body": null, "index": 24, "isInternal": false, - "x": 324.57784267452786, - "y": 225.4948801735642 + "x": 324.57784, + "y": 225.49488 }, { "body": null, "index": 25, "isInternal": false, - "x": 326.33784267452785, - "y": 232.6368801735642 + "x": 326.33784, + "y": 232.63688 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 831.9912370000001, + "area": 831.99124, "axes": { "#": 800 }, @@ -7144,13 +7144,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 532.8630587898949, - "inverseInertia": 0.0018766547680579499, - "inverseMass": 1.2019357362534335, + "inertia": 532.86306, + "inverseInertia": 0.00188, + "inverseMass": 1.20194, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.8319912370000001, + "mass": 0.83199, "motion": 0, "parent": null, "position": { @@ -7172,7 +7172,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7196,12 +7196,12 @@ } ], { - "x": -0.5000035320614334, - "y": 0.8660233645382157 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000035320614334, - "y": -0.8660233645382157 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -7216,12 +7216,12 @@ } }, { - "x": 367.5231191352135, - "y": 241.72713689611854 + "x": 367.52312, + "y": 241.72714 }, { - "x": 329.56211913521355, - "y": 197.89313689611853 + "x": 329.56212, + "y": 197.89314 }, { "category": 1, @@ -7238,16 +7238,16 @@ "y": 0 }, { - "x": 354.86945246854685, - "y": 219.81013689611854 + "x": 354.86945, + "y": 219.81014 }, { "x": 0, "y": 0 }, { - "x": 354.86945246854685, - "y": 216.90286618108286 + "x": 354.86945, + "y": 216.90287 }, { "endCol": 7, @@ -7271,7 +7271,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7288,29 +7288,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.5231191352135, - "y": 241.72713689611854 + "x": 367.52312, + "y": 241.72714 }, { "body": null, "index": 1, "isInternal": false, - "x": 329.56211913521355, - "y": 219.81013689611854 + "x": 329.56212, + "y": 219.81014 }, { "body": null, "index": 2, "isInternal": false, - "x": 367.5231191352135, - "y": 197.89313689611853 + "x": 367.52312, + "y": 197.89314 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1307.097651, + "area": 1307.09765, "axes": { "#": 822 }, @@ -7331,13 +7331,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1315.2071996921047, - "inverseInertia": 0.0007603364703554725, - "inverseMass": 0.7650537809741653, + "inertia": 1315.2072, + "inverseInertia": 0.00076, + "inverseMass": 0.76505, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.307097651, + "mass": 1.3071, "motion": 0, "parent": null, "position": { @@ -7359,7 +7359,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7383,12 +7383,12 @@ } ], { - "x": -0.5000013219654605, - "y": 0.8660246405459787 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000013219654605, - "y": -0.8660246405459787 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -7403,12 +7403,12 @@ } }, { - "x": 421.5010964943969, - "y": 256.74902548206165 + "x": 421.5011, + "y": 256.74903 }, { - "x": 373.9200964943969, - "y": 198.89975476702597 + "x": 373.9201, + "y": 198.89975 }, { "category": 1, @@ -7425,16 +7425,16 @@ "y": 0 }, { - "x": 405.64076316106355, - "y": 226.37075476702597 + "x": 405.64076, + "y": 226.37075 }, { - "x": 0.16892841178424867, + "x": 0.16893, "y": 0 }, { - "x": 405.64076316106355, - "y": 223.4634840519903 + "x": 405.64076, + "y": 223.46348 }, { "endCol": 8, @@ -7458,7 +7458,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7475,22 +7475,22 @@ "body": null, "index": 0, "isInternal": false, - "x": 421.5010964943969, - "y": 253.84175476702598 + "x": 421.5011, + "y": 253.84175 }, { "body": null, "index": 1, "isInternal": false, - "x": 373.9200964943969, - "y": 226.37075476702597 + "x": 373.9201, + "y": 226.37075 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.5010964943969, - "y": 198.89975476702597 + "x": 421.5011, + "y": 198.89975 }, { "angle": 0, @@ -7518,13 +7518,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 7702.7462363866725, - "inverseInertia": 0.0001298238276728036, - "inverseMass": 0.2899158589958734, + "inertia": 7702.74624, + "inverseInertia": 0.00013, + "inverseMass": 0.28992, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.44927664, + "mass": 3.44928, "motion": 0, "parent": null, "position": { @@ -7546,7 +7546,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7576,20 +7576,20 @@ } ], { - "x": 0.3090093110139392, - "y": 0.9510590127361659 + "x": 0.30901, + "y": 0.95106 }, { - "x": -0.8090199312598066, - "y": 0.5877812099960136 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090199312598066, - "y": -0.5877812099960136 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090093110139392, - "y": -0.9510590127361659 + "x": 0.30901, + "y": -0.95106 }, { "x": 1, @@ -7604,12 +7604,12 @@ } }, { - "x": 490.85103559502545, - "y": 274.25502548206157 + "x": 490.85104, + "y": 274.25503 }, { - "x": 421.94903559502546, - "y": 198.89975476702597 + "x": 421.94904, + "y": 198.89975 }, { "category": 1, @@ -7626,16 +7626,16 @@ "y": 0 }, { - "x": 460.03714346284244, - "y": 235.12375476702596 + "x": 460.03714, + "y": 235.12375 }, { - "x": 0.18900485038093884, + "x": 0.189, "y": 0 }, { - "x": 460.03714346284244, - "y": 232.21648405199028 + "x": 460.03714, + "y": 232.21648 }, { "endCol": 10, @@ -7659,7 +7659,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7682,43 +7682,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 490.85103559502545, - "y": 257.511754767026 + "x": 490.85104, + "y": 257.51175 }, { "body": null, "index": 1, "isInternal": false, - "x": 448.26703559502545, - "y": 271.3477547670259 + "x": 448.26704, + "y": 271.34775 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.94903559502546, - "y": 235.12375476702596 + "x": 421.94904, + "y": 235.12375 }, { "body": null, "index": 3, "isInternal": false, - "x": 448.26703559502545, - "y": 198.89975476702597 + "x": 448.26704, + "y": 198.89975 }, { "body": null, "index": 4, "isInternal": false, - "x": 490.85103559502545, - "y": 212.73575476702595 + "x": 490.85104, + "y": 212.73575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2144.2456359999996, + "area": 2144.24564, "axes": { "#": 870 }, @@ -7739,13 +7739,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 3065.192898336695, - "inverseInertia": 0.000326243741639439, - "inverseMass": 0.46636447952178567, + "inertia": 3065.1929, + "inverseInertia": 0.00033, + "inverseMass": 0.46636, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.1442456359999995, + "mass": 2.14425, "motion": 0, "parent": null, "position": { @@ -7767,7 +7767,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7804,12 +7804,12 @@ } }, { - "x": 565.4152291851254, - "y": 248.11302548206163 + "x": 565.41523, + "y": 248.11303 }, { - "x": 519.1092291851254, - "y": 198.89975476702597 + "x": 519.10923, + "y": 198.89975 }, { "category": 1, @@ -7826,16 +7826,16 @@ "y": 0 }, { - "x": 542.2622291851254, - "y": 222.05275476702596 + "x": 542.26223, + "y": 222.05275 }, { - "x": 1.0713371298389163, + "x": 1.07134, "y": 0 }, { - "x": 542.2622291851254, - "y": 219.14548405199028 + "x": 542.26223, + "y": 219.14548 }, { "endCol": 11, @@ -7859,7 +7859,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7879,29 +7879,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 565.4152291851254, - "y": 245.20575476702595 + "x": 565.41523, + "y": 245.20575 }, { "body": null, "index": 1, "isInternal": false, - "x": 519.1092291851254, - "y": 245.20575476702595 + "x": 519.10923, + "y": 245.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 519.1092291851254, - "y": 198.89975476702597 + "x": 519.10923, + "y": 198.89975 }, { "body": null, "index": 3, "isInternal": false, - "x": 565.4152291851254, - "y": 198.89975476702597 + "x": 565.41523, + "y": 198.89975 }, [], [], @@ -7942,14 +7942,14 @@ "visible": true }, { - "angleB": 0.25141089678075423, + "angleB": 0.25141, "angularStiffness": 0, "bodyB": { "#": 898 }, "id": 43, "label": "Constraint", - "length": 14.142135623730951, + "length": 14.14214, "pointA": { "#": 920 }, @@ -7963,10 +7963,10 @@ "type": "constraint" }, { - "angle": 0.25141089678075423, - "anglePrev": 0.1987521868597229, - "angularSpeed": 0.04415561180033991, - "angularVelocity": 0.05265870992103133, + "angle": 0.25141, + "anglePrev": 0.19875, + "angularSpeed": 0.04416, + "angularVelocity": 0.05266, "area": 1000, "axes": { "#": 899 @@ -7988,8 +7988,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8016,7 +8016,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.7621328601989497, + "speed": 1.76213, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8037,12 +8037,12 @@ } ], { - "x": -0.2487707479728068, - "y": 0.968562396004021 + "x": -0.24877, + "y": 0.96856 }, { - "x": -0.968562396004021, - "y": -0.2487707479728068 + "x": -0.96856, + "y": -0.24877 }, { "max": { @@ -8053,12 +8053,12 @@ } }, { - "x": 197.53260581801203, - "y": 334.4591337096729 + "x": 197.53261, + "y": 334.45913 }, { - "x": 144.12907105835484, - "y": 302.64934839095184 + "x": 144.12907, + "y": 302.64935 }, { "category": 1, @@ -8075,16 +8075,16 @@ "y": 0 }, { - "x": 170.83083843818352, - "y": 318.5542410503124 + "x": 170.83084, + "y": 318.55424 }, { "x": 0, "y": 0 }, { - "x": 171.17323470000449, - "y": 317.24198705547144 + "x": 171.17323, + "y": 317.24199 }, { "endCol": 4, @@ -8107,8 +8107,8 @@ "yScale": 1 }, { - "x": -0.39517676173204563, - "y": 1.2991854511377028 + "x": -0.39518, + "y": 1.29919 }, [ { @@ -8128,37 +8128,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 149.10448601781096, - "y": 302.64934839095184 + "x": 149.10449, + "y": 302.64935 }, { "body": null, "index": 1, "isInternal": false, - "x": 197.53260581801203, - "y": 315.0878857895923 + "x": 197.53261, + "y": 315.08789 }, { "body": null, "index": 2, "isInternal": false, - "x": 192.55719085855588, - "y": 334.4591337096729 + "x": 192.55719, + "y": 334.45913 }, { "body": null, "index": 3, "isInternal": false, - "x": 144.12907105835484, - "y": 322.02059631103236 + "x": 144.12907, + "y": 322.0206 }, { "x": 140, "y": 300 }, { - "x": -24.214059900100526, - "y": -6.219268699320169 + "x": -24.21406, + "y": -6.21927 }, { "lineWidth": 2, @@ -8166,14 +8166,14 @@ "visible": true }, { - "angleB": -0.5830213789682418, + "angleB": -0.58302, "angularStiffness": 0, "bodyB": { "#": 924 }, "id": 44, "label": "Constraint", - "length": 22.360679774997898, + "length": 22.36068, "pointA": { "#": 946 }, @@ -8187,10 +8187,10 @@ "type": "constraint" }, { - "angle": -0.5821584234918235, - "anglePrev": -0.4751259446105956, - "angularSpeed": 0.10088077421670043, - "angularVelocity": -0.10772653948477645, + "angle": -0.58216, + "anglePrev": -0.47513, + "angularSpeed": 0.10088, + "angularVelocity": -0.10773, "area": 1000, "axes": { "#": 925 @@ -8212,8 +8212,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8240,7 +8240,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1059065597074, + "speed": 2.10591, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8261,12 +8261,12 @@ } ], { - "x": 0.5498280994593593, - "y": 0.8352778346424073 + "x": 0.54983, + "y": 0.83528 }, { - "x": -0.8352778346424073, - "y": 0.5498280994593593 + "x": -0.83528, + "y": 0.54983 }, { "max": { @@ -8277,12 +8277,12 @@ } }, { - "x": 645.7962720156563, - "y": 348.2279726669069 + "x": 645.79627, + "y": 348.22797 }, { - "x": 593.0358182943488, - "y": 304.03101100109075 + "x": 593.03582, + "y": 304.03101 }, { "category": 1, @@ -8299,16 +8299,16 @@ "y": 0 }, { - "x": 619.4160451550023, - "y": 326.12949183399894 + "x": 619.41605, + "y": 326.12949 }, { "x": 0, "y": 0 }, { - "x": 620.8116516601696, - "y": 326.33635961350626 + "x": 620.81165, + "y": 326.33636 }, { "endCol": 13, @@ -8331,8 +8331,8 @@ "yScale": 1 }, { - "x": -1.165158974688893, - "y": -0.3233811082403122 + "x": -1.16516, + "y": -0.32338 }, [ { @@ -8352,37 +8352,37 @@ "body": null, "index": 0, "isInternal": false, - "x": 593.0358182943488, - "y": 331.5224159740587 + "x": 593.03582, + "y": 331.52242 }, { "body": null, "index": 1, "isInternal": false, - "x": 634.799710026469, - "y": 304.03101100109075 + "x": 634.79971, + "y": 304.03101 }, { "body": null, "index": 2, "isInternal": false, - "x": 645.7962720156563, - "y": 320.7365676939389 + "x": 645.79627, + "y": 320.73657 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.0323802835362, - "y": 348.2279726669069 + "x": 604.03238, + "y": 348.22797 }, { "x": 660, "y": 300 }, { - "x": 20.87007616298435, - "y": -13.763717555632699 + "x": 20.87008, + "y": -13.76372 }, { "lineWidth": 2, diff --git a/test/browser/refs/broadphase/broadphase-0.json b/test/browser/refs/broadphase/broadphase-0.json index 6b3eee61..3d645b92 100644 --- a/test/browser/refs/broadphase/broadphase-0.json +++ b/test/browser/refs/broadphase/broadphase-0.json @@ -1162,7 +1162,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1534.906434764454, + "area": 1534.90643, "axes": { "#": 93 }, @@ -1183,13 +1183,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1245,12 +1245,12 @@ } }, { - "x": 56.40316358024691, - "y": 62.164094650205755 + "x": 56.40316, + "y": 62.16409 }, { - "x": 19.999999999999996, - "y": 19.999999999999993 + "x": 20, + "y": 20 }, { "category": 1, @@ -1267,16 +1267,16 @@ "y": 0 }, { - "x": 38.201581790123456, - "y": 41.08204732510288 + "x": 38.20158, + "y": 41.08205 }, { "x": 0, "y": 0 }, { - "x": 38.201581790123456, - "y": 41.08204732510288 + "x": 38.20158, + "y": 41.08205 }, { "fillStyle": "#C44D58", @@ -1313,36 +1313,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 19.999999999999996, - "y": 19.999999999999993 + "x": 20, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 56.40316358024691, - "y": 19.999999999999993 + "x": 56.40316, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.40316358024691, - "y": 62.164094650205755 + "x": 56.40316, + "y": 62.16409 }, { "body": null, "index": 3, "isInternal": false, - "x": 19.999999999999996, - "y": 62.164094650205755 + "x": 20, + "y": 62.16409 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.52878634164, + "area": 2220.52879, "axes": { "#": 114 }, @@ -1363,13 +1363,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1425,11 +1425,11 @@ } }, { - "x": 101.7190072016461, - "y": 69.0011574074074 + "x": 101.71901, + "y": 69.00116 }, { - "x": 56.40316358024691, + "x": 56.40316, "y": 20 }, { @@ -1447,16 +1447,16 @@ "y": 0 }, { - "x": 79.0610853909465, - "y": 44.5005787037037 + "x": 79.06109, + "y": 44.50058 }, { "x": 0, "y": 0 }, { - "x": 79.0610853909465, - "y": 44.5005787037037 + "x": 79.06109, + "y": 44.50058 }, { "fillStyle": "#C7F464", @@ -1493,36 +1493,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.40316358024691, + "x": 56.40316, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 101.7190072016461, - "y": 69.0011574074074 + "x": 101.71901, + "y": 69.00116 }, { "body": null, "index": 3, "isInternal": false, - "x": 56.40316358024691, - "y": 69.0011574074074 + "x": 56.40316, + "y": 69.00116 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1140.197701571206, + "area": 1140.1977, "axes": { "#": 135 }, @@ -1543,13 +1543,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1605,11 +1605,11 @@ } }, { - "x": 140.93981481481484, - "y": 49.07124485596708 + "x": 140.93981, + "y": 49.07124 }, { - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { @@ -1627,16 +1627,16 @@ "y": 0 }, { - "x": 121.32941100823047, - "y": 34.53562242798354 + "x": 121.32941, + "y": 34.53562 }, { "x": 0, "y": 0 }, { - "x": 121.32941100823047, - "y": 34.53562242798354 + "x": 121.32941, + "y": 34.53562 }, { "fillStyle": "#C7F464", @@ -1673,36 +1673,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 140.93981481481484, - "y": 49.07124485596708 + "x": 140.93981, + "y": 49.07124 }, { "body": null, "index": 3, "isInternal": false, - "x": 101.7190072016461, - "y": 49.07124485596708 + "x": 101.71901, + "y": 49.07124 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 752.4076041785743, + "area": 752.4076, "axes": { "#": 156 }, @@ -1723,13 +1723,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1785,11 +1785,11 @@ } }, { - "x": 165.81712962962968, - "y": 50.24472736625515 + "x": 165.81713, + "y": 50.24473 }, { - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { @@ -1807,16 +1807,16 @@ "y": 0 }, { - "x": 153.37847222222226, - "y": 35.122363683127574 + "x": 153.37847, + "y": 35.12236 }, { "x": 0, "y": 0 }, { - "x": 153.37847222222226, - "y": 35.122363683127574 + "x": 153.37847, + "y": 35.12236 }, { "fillStyle": "#C7F464", @@ -1853,36 +1853,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 165.81712962962968, + "x": 165.81713, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.81712962962968, - "y": 50.24472736625515 + "x": 165.81713, + "y": 50.24473 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.93981481481484, - "y": 50.24472736625515 + "x": 140.93981, + "y": 50.24473 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2027.2541820000001, + "area": 2027.25418, "axes": { "#": 177 }, @@ -1903,13 +1903,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -1952,12 +1952,12 @@ } ], { - "x": -0.500008582084709, - "y": -0.8660204488588239 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.500008582084709, - "y": -0.8660204488588239 + "x": 0.50001, + "y": -0.86602 }, { "x": 1, @@ -1972,12 +1972,12 @@ } }, { - "x": 214.19912962962968, + "x": 214.19913, "y": 75.868 }, { - "x": 165.81712962962968, - "y": 19.999999999999996 + "x": 165.81713, + "y": 20 }, { "category": 1, @@ -1994,7 +1994,7 @@ "y": 0 }, { - "x": 190.00812962962968, + "x": 190.00813, "y": 47.934 }, { @@ -2002,7 +2002,7 @@ "y": 0 }, { - "x": 190.00812962962968, + "x": 190.00813, "y": 47.934 }, { @@ -2046,42 +2046,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.19912962962968, - "y": 61.900999999999996 + "x": 214.19913, + "y": 61.901 }, { "body": null, "index": 1, "isInternal": false, - "x": 190.00812962962968, + "x": 190.00813, "y": 75.868 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.81712962962968, - "y": 61.900999999999996 + "x": 165.81713, + "y": 61.901 }, { "body": null, "index": 3, "isInternal": false, - "x": 165.81712962962968, + "x": 165.81713, "y": 33.967 }, { "body": null, "index": 4, "isInternal": false, - "x": 190.00812962962968, - "y": 19.999999999999996 + "x": 190.00813, + "y": 20 }, { "body": null, "index": 5, "isInternal": false, - "x": 214.19912962962968, + "x": 214.19913, "y": 33.967 }, { @@ -2110,13 +2110,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2165,20 +2165,20 @@ } ], { - "x": 0.30902000749156683, - "y": 0.95105553726894 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090188345853124, - "y": 0.5877827194518592 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090188345853124, - "y": -0.5877827194518592 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902000749156683, - "y": -0.95105553726894 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -2193,11 +2193,11 @@ } }, { - "x": 291.5277437444547, + "x": 291.52774, "y": 105.84 }, { - "x": 209.8897437444547, + "x": 209.88974, "y": 20 }, { @@ -2215,7 +2215,7 @@ "y": 0 }, { - "x": 255.0181296296297, + "x": 255.01813, "y": 62.92 }, { @@ -2223,7 +2223,7 @@ "y": 0 }, { - "x": 255.0181296296297, + "x": 255.01813, "y": 62.92 }, { @@ -2264,50 +2264,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 291.5277437444547, + "x": 291.52774, "y": 89.446 }, { "body": null, "index": 1, "isInternal": false, - "x": 241.0727437444547, + "x": 241.07274, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 209.8897437444547, + "x": 209.88974, "y": 62.92 }, { "body": null, "index": 3, "isInternal": false, - "x": 241.0727437444547, + "x": 241.07274, "y": 20 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.5277437444547, - "y": 36.394000000000005 + "x": 291.52774, + "y": 36.394 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3079.0178339999993, + "area": 3079.01783, "axes": { "#": 226 }, "bounds": { "#": 240 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 243 }, @@ -2322,13 +2322,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2401,52 +2401,52 @@ } ], { - "x": -0.9709437470087438, - "y": -0.23930783552700582 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.885418252251326, - "y": -0.46479513614086726 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.7485358222247293, - "y": -0.6630943544069339 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680780310049566, - "y": -0.8229746962632154 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545747323306568, - "y": -0.9350276783029703 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12051249760074473, - "y": -0.9927118101050428 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051249760074473, - "y": -0.9927118101050428 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545747323306568, - "y": -0.9350276783029703 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680780310049566, - "y": -0.8229746962632154 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485358222247293, - "y": -0.6630943544069339 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.885418252251326, - "y": -0.46479513614086726 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.9709437470087438, - "y": -0.23930783552700582 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -2461,12 +2461,12 @@ } }, { - "x": 353.98774374445475, + "x": 353.98774, "y": 82.918 }, { - "x": 291.5277437444547, - "y": 20.000000000000004 + "x": 291.52774, + "y": 20 }, { "category": 1, @@ -2483,7 +2483,7 @@ "y": 0 }, { - "x": 322.75774374445473, + "x": 322.75774, "y": 51.459 }, { @@ -2491,7 +2491,7 @@ "y": 0 }, { - "x": 322.75774374445473, + "x": 322.75774, "y": 51.459 }, { @@ -2595,182 +2595,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.98774374445475, - "y": 55.251000000000005 + "x": 353.98774, + "y": 55.251 }, { "body": null, "index": 1, "isInternal": false, - "x": 352.17274374445475, + "x": 352.17274, "y": 62.615 }, { "body": null, "index": 2, "isInternal": false, - "x": 348.6477437444547, + "x": 348.64774, "y": 69.33 }, { "body": null, "index": 3, "isInternal": false, - "x": 343.6187437444547, + "x": 343.61874, "y": 75.007 }, { "body": null, "index": 4, "isInternal": false, - "x": 337.37774374445473, + "x": 337.37774, "y": 79.315 }, { "body": null, "index": 5, "isInternal": false, - "x": 330.2867437444547, + "x": 330.28674, "y": 82.004 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.75774374445473, + "x": 322.75774, "y": 82.918 }, { "body": null, "index": 7, "isInternal": false, - "x": 315.22874374445473, + "x": 315.22874, "y": 82.004 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.1377437444547, + "x": 308.13774, "y": 79.315 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.89674374445474, + "x": 301.89674, "y": 75.007 }, { "body": null, "index": 10, "isInternal": false, - "x": 296.86774374445474, + "x": 296.86774, "y": 69.33 }, { "body": null, "index": 11, "isInternal": false, - "x": 293.3427437444547, + "x": 293.34274, "y": 62.615 }, { "body": null, "index": 12, "isInternal": false, - "x": 291.5277437444547, - "y": 55.251000000000005 + "x": 291.52774, + "y": 55.251 }, { "body": null, "index": 13, "isInternal": false, - "x": 291.5277437444547, + "x": 291.52774, "y": 47.667 }, { "body": null, "index": 14, "isInternal": false, - "x": 293.3427437444547, - "y": 40.303000000000004 + "x": 293.34274, + "y": 40.303 }, { "body": null, "index": 15, "isInternal": false, - "x": 296.86774374445474, - "y": 33.58800000000001 + "x": 296.86774, + "y": 33.588 }, { "body": null, "index": 16, "isInternal": false, - "x": 301.89674374445474, - "y": 27.911000000000005 + "x": 301.89674, + "y": 27.911 }, { "body": null, "index": 17, "isInternal": false, - "x": 308.1377437444547, + "x": 308.13774, "y": 23.603 }, { "body": null, "index": 18, "isInternal": false, - "x": 315.22874374445473, + "x": 315.22874, "y": 20.914 }, { "body": null, "index": 19, "isInternal": false, - "x": 322.75774374445473, - "y": 20.000000000000004 + "x": 322.75774, + "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 330.2867437444547, + "x": 330.28674, "y": 20.914 }, { "body": null, "index": 21, "isInternal": false, - "x": 337.37774374445473, + "x": 337.37774, "y": 23.603 }, { "body": null, "index": 22, "isInternal": false, - "x": 343.6187437444547, - "y": 27.911000000000005 + "x": 343.61874, + "y": 27.911 }, { "body": null, "index": 23, "isInternal": false, - "x": 348.6477437444547, - "y": 33.58800000000001 + "x": 348.64774, + "y": 33.588 }, { "body": null, "index": 24, "isInternal": false, - "x": 352.17274374445475, - "y": 40.303000000000004 + "x": 352.17274, + "y": 40.303 }, { "body": null, "index": 25, "isInternal": false, - "x": 353.98774374445475, + "x": 353.98774, "y": 47.667 }, { @@ -2778,7 +2778,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1329.4167625219097, + "area": 1329.41676, "axes": { "#": 280 }, @@ -2799,13 +2799,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2861,11 +2861,11 @@ } }, { - "x": 402.76539292140944, - "y": 47.25462962962963 + "x": 402.76539, + "y": 47.25463 }, { - "x": 353.98774374445475, + "x": 353.98774, "y": 20 }, { @@ -2883,16 +2883,16 @@ "y": 0 }, { - "x": 378.3765683329321, - "y": 33.62731481481482 + "x": 378.37657, + "y": 33.62731 }, { "x": 0, "y": 0 }, { - "x": 378.3765683329321, - "y": 33.62731481481482 + "x": 378.37657, + "y": 33.62731 }, { "fillStyle": "#4ECDC4", @@ -2929,36 +2929,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.98774374445475, + "x": 353.98774, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 402.76539292140944, + "x": 402.76539, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 402.76539292140944, - "y": 47.25462962962963 + "x": 402.76539, + "y": 47.25463 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.98774374445475, - "y": 47.25462962962963 + "x": 353.98774, + "y": 47.25463 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2858.632357296012, + "area": 2858.63236, "axes": { "#": 301 }, @@ -2979,13 +2979,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -3041,12 +3041,12 @@ } }, { - "x": 511.6199882574863, - "y": 46.261016803840874 + "x": 511.61999, + "y": 46.26102 }, { - "x": 402.76539292140944, - "y": 19.999999999999996 + "x": 402.76539, + "y": 20 }, { "category": 1, @@ -3063,16 +3063,16 @@ "y": 0 }, { - "x": 457.19269058944786, - "y": 33.13050840192044 + "x": 457.19269, + "y": 33.13051 }, { "x": 0, "y": 0 }, { - "x": 457.19269058944786, - "y": 33.13050840192044 + "x": 457.19269, + "y": 33.13051 }, { "fillStyle": "#C7F464", @@ -3109,36 +3109,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 402.76539292140944, - "y": 19.999999999999996 + "x": 402.76539, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.6199882574863, - "y": 19.999999999999996 + "x": 511.61999, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 511.6199882574863, - "y": 46.261016803840874 + "x": 511.61999, + "y": 46.26102 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.76539292140944, - "y": 46.261016803840874 + "x": 402.76539, + "y": 46.26102 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 926.8394636035856, + "area": 926.83946, "axes": { "#": 322 }, @@ -3159,13 +3159,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3221,11 +3221,11 @@ } }, { - "x": 550.3757752945232, - "y": 43.914866255144034 + "x": 550.37578, + "y": 43.91487 }, { - "x": 511.6199882574862, + "x": 511.61999, "y": 20 }, { @@ -3243,16 +3243,16 @@ "y": 0 }, { - "x": 530.9978817760048, - "y": 31.957433127572017 + "x": 530.99788, + "y": 31.95743 }, { "x": 0, "y": 0 }, { - "x": 530.9978817760048, - "y": 31.957433127572017 + "x": 530.99788, + "y": 31.95743 }, { "fillStyle": "#C44D58", @@ -3289,36 +3289,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 511.6199882574862, + "x": 511.61999, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 550.3757752945232, + "x": 550.37578, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.3757752945232, - "y": 43.914866255144034 + "x": 550.37578, + "y": 43.91487 }, { "body": null, "index": 3, "isInternal": false, - "x": 511.6199882574862, - "y": 43.914866255144034 + "x": 511.61999, + "y": 43.91487 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1290.4501361223834, + "area": 1290.45014, "axes": { "#": 343 }, @@ -3339,13 +3339,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3401,12 +3401,12 @@ } }, { - "x": 586.1460942245644, - "y": 56.076003086419746 + "x": 586.14609, + "y": 56.076 }, { - "x": 550.3757752945232, - "y": 19.999999999999996 + "x": 550.37578, + "y": 20 }, { "category": 1, @@ -3423,16 +3423,16 @@ "y": 0 }, { - "x": 568.2609347595438, - "y": 38.03800154320987 + "x": 568.26093, + "y": 38.038 }, { "x": 0, "y": 0 }, { - "x": 568.2609347595438, - "y": 38.03800154320987 + "x": 568.26093, + "y": 38.038 }, { "fillStyle": "#4ECDC4", @@ -3469,36 +3469,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 550.3757752945232, - "y": 19.999999999999996 + "x": 550.37578, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.1460942245644, - "y": 19.999999999999996 + "x": 586.14609, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.1460942245644, - "y": 56.076003086419746 + "x": 586.14609, + "y": 56.076 }, { "body": null, "index": 3, "isInternal": false, - "x": 550.3757752945232, - "y": 56.076003086419746 + "x": 550.37578, + "y": 56.076 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1148.2925932011974, + "area": 1148.29259, "axes": { "#": 364 }, @@ -3519,13 +3519,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3581,11 +3581,11 @@ } }, { - "x": 616.7010067760048, - "y": 57.58127572016461 + "x": 616.70101, + "y": 57.58128 }, { - "x": 586.1460942245644, + "x": 586.14609, "y": 20 }, { @@ -3603,16 +3603,16 @@ "y": 0 }, { - "x": 601.4235505002846, - "y": 38.790637860082306 + "x": 601.42355, + "y": 38.79064 }, { "x": 0, "y": 0 }, { - "x": 601.4235505002846, - "y": 38.790637860082306 + "x": 601.42355, + "y": 38.79064 }, { "fillStyle": "#C44D58", @@ -3649,36 +3649,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 586.1460942245644, + "x": 586.14609, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.7010067760048, + "x": 616.70101, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.7010067760048, - "y": 57.58127572016461 + "x": 616.70101, + "y": 57.58128 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.1460942245644, - "y": 57.58127572016461 + "x": 586.14609, + "y": 57.58128 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1926.7878890000002, + "area": 1926.78789, "axes": { "#": 385 }, @@ -3699,13 +3699,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3760,28 +3760,28 @@ } ], { - "x": 0.6234921001781484, - "y": 0.7818296496139309 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22251820971292155, - "y": 0.9749285339685962 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009815501548849, - "y": 0.43385740316433524 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009815501548849, - "y": -0.43385740316433524 + "x": -0.90098, + "y": -0.43386 }, { - "x": -0.22251820971292155, - "y": -0.9749285339685962 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234921001781484, - "y": -0.7818296496139309 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -3796,12 +3796,12 @@ } }, { - "x": 665.8303156438957, - "y": 71.74000000000001 + "x": 665.83032, + "y": 71.74 }, { - "x": 615.3873156438957, - "y": 20.000000000000004 + "x": 615.38732, + "y": 20 }, { "category": 1, @@ -3818,16 +3818,16 @@ "y": 0 }, { - "x": 641.9225067760048, - "y": 45.870000000000005 + "x": 641.92251, + "y": 45.87 }, { "x": 0, "y": 0 }, { - "x": 641.9225067760048, - "y": 45.870000000000005 + "x": 641.92251, + "y": 45.87 }, { "fillStyle": "#C7F464", @@ -3873,57 +3873,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 665.8303156438957, + "x": 665.83032, "y": 57.383 }, { "body": null, "index": 1, "isInternal": false, - "x": 647.8273156438956, - "y": 71.74000000000001 + "x": 647.82732, + "y": 71.74 }, { "body": null, "index": 2, "isInternal": false, - "x": 625.3773156438957, + "x": 625.37732, "y": 66.616 }, { "body": null, "index": 3, "isInternal": false, - "x": 615.3873156438957, - "y": 45.870000000000005 + "x": 615.38732, + "y": 45.87 }, { "body": null, "index": 4, "isInternal": false, - "x": 625.3773156438957, - "y": 25.124000000000006 + "x": 625.37732, + "y": 25.124 }, { "body": null, "index": 5, "isInternal": false, - "x": 647.8273156438956, - "y": 20.000000000000004 + "x": 647.82732, + "y": 20 }, { "body": null, "index": 6, "isInternal": false, - "x": 665.8303156438957, - "y": 34.357000000000006 + "x": 665.83032, + "y": 34.357 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1097.755875, + "area": 1097.75588, "axes": { "#": 414 }, @@ -3944,13 +3944,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 927.6617490689248, - "inverseInertia": 0.0010779791243992539, - "inverseMass": 0.9109493492804126, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "inverseMass": 0.91095, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.097755875, + "mass": 1.09776, "motion": 0, "parent": null, "position": { @@ -3993,12 +3993,12 @@ } ], { - "x": -0.49999466010690446, - "y": 0.8660284867512045 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999466010690446, - "y": -0.8660284867512045 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -4013,12 +4013,12 @@ } }, { - "x": 702.1678156438957, + "x": 702.16782, "y": 70.35 }, { - "x": 658.5628156438956, - "y": 19.999999999999996 + "x": 658.56282, + "y": 20 }, { "category": 1, @@ -4035,7 +4035,7 @@ "y": 0 }, { - "x": 687.6328156438957, + "x": 687.63282, "y": 45.175 }, { @@ -4043,7 +4043,7 @@ "y": 0 }, { - "x": 687.6328156438957, + "x": 687.63282, "y": 45.175 }, { @@ -4078,29 +4078,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 702.1678156438957, + "x": 702.16782, "y": 70.35 }, { "body": null, "index": 1, "isInternal": false, - "x": 658.5628156438956, + "x": 658.56282, "y": 45.175 }, { "body": null, "index": 2, "isInternal": false, - "x": 702.1678156438957, - "y": 19.999999999999996 + "x": 702.16782, + "y": 20 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 435 }, @@ -4121,13 +4121,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4176,20 +4176,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4204,12 +4204,12 @@ } }, { - "x": 737.0727729237212, - "y": 58.74600000000001 + "x": 737.07277, + "y": 58.746 }, { - "x": 700.2227729237212, - "y": 20.000000000000004 + "x": 700.22277, + "y": 20 }, { "category": 1, @@ -4226,16 +4226,16 @@ "y": 0 }, { - "x": 720.5928156438956, - "y": 39.373000000000005 + "x": 720.59282, + "y": 39.373 }, { "x": 0, "y": 0 }, { - "x": 720.5928156438956, - "y": 39.373000000000005 + "x": 720.59282, + "y": 39.373 }, { "fillStyle": "#C44D58", @@ -4275,43 +4275,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 737.0727729237212, - "y": 51.346000000000004 + "x": 737.07277, + "y": 51.346 }, { "body": null, "index": 1, "isInternal": false, - "x": 714.2977729237213, - "y": 58.74600000000001 + "x": 714.29777, + "y": 58.746 }, { "body": null, "index": 2, "isInternal": false, - "x": 700.2227729237212, - "y": 39.373000000000005 + "x": 700.22277, + "y": 39.373 }, { "body": null, "index": 3, "isInternal": false, - "x": 714.2977729237213, - "y": 20.000000000000004 + "x": 714.29777, + "y": 20 }, { "body": null, "index": 4, "isInternal": false, - "x": 737.0727729237212, - "y": 27.400000000000006 + "x": 737.07277, + "y": 27.4 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1201.454244, + "area": 1201.45424, "axes": { "#": 460 }, @@ -4332,13 +4332,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4394,12 +4394,12 @@ } }, { - "x": 771.7347729237213, - "y": 54.662000000000006 + "x": 771.73477, + "y": 54.662 }, { - "x": 737.0727729237212, - "y": 20.000000000000004 + "x": 737.07277, + "y": 20 }, { "category": 1, @@ -4416,7 +4416,7 @@ "y": 0 }, { - "x": 754.4037729237212, + "x": 754.40377, "y": 37.331 }, { @@ -4424,7 +4424,7 @@ "y": 0 }, { - "x": 754.4037729237212, + "x": 754.40377, "y": 37.331 }, { @@ -4462,36 +4462,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 771.7347729237213, - "y": 54.662000000000006 + "x": 771.73477, + "y": 54.662 }, { "body": null, "index": 1, "isInternal": false, - "x": 737.0727729237212, - "y": 54.662000000000006 + "x": 737.07277, + "y": 54.662 }, { "body": null, "index": 2, "isInternal": false, - "x": 737.0727729237212, - "y": 20.000000000000004 + "x": 737.07277, + "y": 20 }, { "body": null, "index": 3, "isInternal": false, - "x": 771.7347729237213, - "y": 20.000000000000004 + "x": 771.73477, + "y": 20 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1990.733346252218, + "area": 1990.73335, "axes": { "#": 481 }, @@ -4512,13 +4512,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4574,11 +4574,11 @@ } }, { - "x": 866.5585040622673, - "y": 40.9940414951989 + "x": 866.5585, + "y": 40.99404 }, { - "x": 771.7347729237213, + "x": 771.73477, "y": 20 }, { @@ -4596,16 +4596,16 @@ "y": 0 }, { - "x": 819.1466384929943, - "y": 30.49702074759945 + "x": 819.14664, + "y": 30.49702 }, { "x": 0, "y": 0 }, { - "x": 819.1466384929943, - "y": 30.49702074759945 + "x": 819.14664, + "y": 30.49702 }, { "fillStyle": "#FF6B6B", @@ -4642,29 +4642,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 771.7347729237213, + "x": 771.73477, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 866.5585040622673, + "x": 866.5585, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 866.5585040622673, - "y": 40.9940414951989 + "x": 866.5585, + "y": 40.99404 }, { "body": null, "index": 3, "isInternal": false, - "x": 771.7347729237213, - "y": 40.9940414951989 + "x": 771.73477, + "y": 40.99404 }, { "angle": 0, @@ -4678,7 +4678,7 @@ "bounds": { "#": 516 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 519 }, @@ -4693,13 +4693,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4772,52 +4772,52 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -4832,12 +4832,12 @@ } }, { - "x": 962.8725040622674, - "y": 117.01999999999998 + "x": 962.8725, + "y": 117.02 }, { - "x": 866.5585040622673, - "y": 19.999999999999993 + "x": 866.5585, + "y": 20 }, { "category": 1, @@ -4854,16 +4854,16 @@ "y": 0 }, { - "x": 914.7155040622673, - "y": 68.50999999999999 + "x": 914.7155, + "y": 68.51 }, { "x": 0, "y": 0 }, { - "x": 914.7155040622673, - "y": 68.50999999999999 + "x": 914.7155, + "y": 68.51 }, { "fillStyle": "#4ECDC4", @@ -4966,190 +4966,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 962.8725040622674, + "x": 962.8725, "y": 74.357 }, { "body": null, "index": 1, "isInternal": false, - "x": 960.0735040622673, - "y": 85.71199999999999 + "x": 960.0735, + "y": 85.712 }, { "body": null, "index": 2, "isInternal": false, - "x": 954.6385040622673, + "x": 954.6385, "y": 96.067 }, { "body": null, "index": 3, "isInternal": false, - "x": 946.8835040622673, + "x": 946.8835, "y": 104.821 }, { "body": null, "index": 4, "isInternal": false, - "x": 937.2595040622673, + "x": 937.2595, "y": 111.464 }, { "body": null, "index": 5, "isInternal": false, - "x": 926.3245040622674, - "y": 115.61099999999999 + "x": 926.3245, + "y": 115.611 }, { "body": null, "index": 6, "isInternal": false, - "x": 914.7155040622673, - "y": 117.01999999999998 + "x": 914.7155, + "y": 117.02 }, { "body": null, "index": 7, "isInternal": false, - "x": 903.1065040622673, - "y": 115.61099999999999 + "x": 903.1065, + "y": 115.611 }, { "body": null, "index": 8, "isInternal": false, - "x": 892.1715040622673, + "x": 892.1715, "y": 111.464 }, { "body": null, "index": 9, "isInternal": false, - "x": 882.5475040622673, + "x": 882.5475, "y": 104.821 }, { "body": null, "index": 10, "isInternal": false, - "x": 874.7925040622673, + "x": 874.7925, "y": 96.067 }, { "body": null, "index": 11, "isInternal": false, - "x": 869.3575040622674, - "y": 85.71199999999999 + "x": 869.3575, + "y": 85.712 }, { "body": null, "index": 12, "isInternal": false, - "x": 866.5585040622673, + "x": 866.5585, "y": 74.357 }, { "body": null, "index": 13, "isInternal": false, - "x": 866.5585040622673, - "y": 62.66299999999999 + "x": 866.5585, + "y": 62.663 }, { "body": null, "index": 14, "isInternal": false, - "x": 869.3575040622674, - "y": 51.30799999999999 + "x": 869.3575, + "y": 51.308 }, { "body": null, "index": 15, "isInternal": false, - "x": 874.7925040622673, - "y": 40.95299999999999 + "x": 874.7925, + "y": 40.953 }, { "body": null, "index": 16, "isInternal": false, - "x": 882.5475040622673, - "y": 32.19899999999999 + "x": 882.5475, + "y": 32.199 }, { "body": null, "index": 17, "isInternal": false, - "x": 892.1715040622673, - "y": 25.55599999999999 + "x": 892.1715, + "y": 25.556 }, { "body": null, "index": 18, "isInternal": false, - "x": 903.1065040622673, - "y": 21.408999999999992 + "x": 903.1065, + "y": 21.409 }, { "body": null, "index": 19, "isInternal": false, - "x": 914.7155040622673, - "y": 19.999999999999993 + "x": 914.7155, + "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 926.3245040622674, - "y": 21.408999999999992 + "x": 926.3245, + "y": 21.409 }, { "body": null, "index": 21, "isInternal": false, - "x": 937.2595040622673, - "y": 25.55599999999999 + "x": 937.2595, + "y": 25.556 }, { "body": null, "index": 22, "isInternal": false, - "x": 946.8835040622673, - "y": 32.19899999999999 + "x": 946.8835, + "y": 32.199 }, { "body": null, "index": 23, "isInternal": false, - "x": 954.6385040622673, - "y": 40.95299999999999 + "x": 954.6385, + "y": 40.953 }, { "body": null, "index": 24, "isInternal": false, - "x": 960.0735040622673, - "y": 51.30799999999999 + "x": 960.0735, + "y": 51.308 }, { "body": null, "index": 25, "isInternal": false, - "x": 962.8725040622674, - "y": 62.66299999999999 + "x": 962.8725, + "y": 62.663 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 556 }, @@ -5170,13 +5170,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5232,11 +5232,11 @@ } }, { - "x": 1047.1051858180972, - "y": 44.15646433470508 + "x": 1047.10519, + "y": 44.15646 }, { - "x": 962.8725040622674, + "x": 962.8725, "y": 20 }, { @@ -5254,16 +5254,16 @@ "y": 0 }, { - "x": 1004.9888449401823, - "y": 32.07823216735254 + "x": 1004.98884, + "y": 32.07823 }, { "x": 0, "y": 0 }, { - "x": 1004.9888449401823, - "y": 32.07823216735254 + "x": 1004.98884, + "y": 32.07823 }, { "fillStyle": "#556270", @@ -5300,36 +5300,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 962.8725040622674, + "x": 962.8725, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 1047.1051858180972, + "x": 1047.10519, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 1047.1051858180972, - "y": 44.15646433470508 + "x": 1047.10519, + "y": 44.15646 }, { "body": null, "index": 3, "isInternal": false, - "x": 962.8725040622674, - "y": 44.15646433470508 + "x": 962.8725, + "y": 44.15646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 577 }, @@ -5350,13 +5350,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5412,11 +5412,11 @@ } }, { - "x": 1096.491759892171, - "y": 40.865097736625515 + "x": 1096.49176, + "y": 40.8651 }, { - "x": 1047.1051858180972, + "x": 1047.10519, "y": 20 }, { @@ -5434,16 +5434,16 @@ "y": 0 }, { - "x": 1071.7984728551342, - "y": 30.432548868312757 + "x": 1071.79847, + "y": 30.43255 }, { "x": 0, "y": 0 }, { - "x": 1071.7984728551342, - "y": 30.432548868312757 + "x": 1071.79847, + "y": 30.43255 }, { "fillStyle": "#C7F464", @@ -5480,43 +5480,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 1047.1051858180972, + "x": 1047.10519, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 1096.491759892171, + "x": 1096.49176, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 1096.491759892171, - "y": 40.865097736625515 + "x": 1096.49176, + "y": 40.8651 }, { "body": null, "index": 3, "isInternal": false, - "x": 1047.1051858180972, - "y": 40.865097736625515 + "x": 1047.10519, + "y": 40.8651 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2157.165332, + "area": 2157.16533, "axes": { "#": 598 }, "bounds": { "#": 612 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 615 }, @@ -5531,13 +5531,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5610,52 +5610,52 @@ } ], { - "x": -0.9709433940705979, - "y": -0.2393092674984975 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854643472565572, - "y": -0.46470731620829797 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485032926619368, - "y": -0.6631310736756638 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680789542040116, - "y": -0.8229740590021511 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3546257389378823, - "y": -0.9350083343386629 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12050542549813427, - "y": -0.9927126686133876 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050542549813427, - "y": -0.9927126686133876 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546257389378823, - "y": -0.9350083343386629 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680789542040116, - "y": -0.8229740590021511 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485032926619368, - "y": -0.6631310736756638 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854643472565572, - "y": -0.46470731620829797 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709433940705979, - "y": -0.2393092674984975 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -5671,11 +5671,11 @@ }, { "x": 72.28, - "y": 169.68399999999997 + "y": 169.684 }, { "x": 20, - "y": 117.01999999999998 + "y": 117.02 }, { "category": 1, @@ -5693,7 +5693,7 @@ }, { "x": 46.14, - "y": 143.35199999999998 + "y": 143.352 }, { "x": 0, @@ -5701,7 +5701,7 @@ }, { "x": 46.14, - "y": 143.35199999999998 + "y": 143.352 }, { "fillStyle": "#4ECDC4", @@ -5805,104 +5805,104 @@ "index": 0, "isInternal": false, "x": 72.28, - "y": 146.52599999999998 + "y": 146.526 }, { "body": null, "index": 1, "isInternal": false, "x": 70.761, - "y": 152.68899999999996 + "y": 152.689 }, { "body": null, "index": 2, "isInternal": false, "x": 67.811, - "y": 158.30999999999997 + "y": 158.31 }, { "body": null, "index": 3, "isInternal": false, "x": 63.601, - "y": 163.06199999999998 + "y": 163.062 }, { "body": null, "index": 4, "isInternal": false, "x": 58.377, - "y": 166.66799999999998 + "y": 166.668 }, { "body": null, "index": 5, "isInternal": false, "x": 52.442, - "y": 168.91899999999998 + "y": 168.919 }, { "body": null, "index": 6, "isInternal": false, "x": 46.14, - "y": 169.68399999999997 + "y": 169.684 }, { "body": null, "index": 7, "isInternal": false, "x": 39.838, - "y": 168.91899999999998 + "y": 168.919 }, { "body": null, "index": 8, "isInternal": false, "x": 33.903, - "y": 166.66799999999998 + "y": 166.668 }, { "body": null, "index": 9, "isInternal": false, - "x": 28.679000000000002, - "y": 163.06199999999998 + "x": 28.679, + "y": 163.062 }, { "body": null, "index": 10, "isInternal": false, "x": 24.469, - "y": 158.30999999999997 + "y": 158.31 }, { "body": null, "index": 11, "isInternal": false, - "x": 21.519000000000002, - "y": 152.68899999999996 + "x": 21.519, + "y": 152.689 }, { "body": null, "index": 12, "isInternal": false, "x": 20, - "y": 146.52599999999998 + "y": 146.526 }, { "body": null, "index": 13, "isInternal": false, "x": 20, - "y": 140.17799999999997 + "y": 140.178 }, { "body": null, "index": 14, "isInternal": false, - "x": 21.519000000000002, + "x": 21.519, "y": 134.015 }, { @@ -5910,63 +5910,63 @@ "index": 15, "isInternal": false, "x": 24.469, - "y": 128.39399999999998 + "y": 128.394 }, { "body": null, "index": 16, "isInternal": false, - "x": 28.679000000000002, - "y": 123.64199999999997 + "x": 28.679, + "y": 123.642 }, { "body": null, "index": 17, "isInternal": false, "x": 33.903, - "y": 120.03599999999997 + "y": 120.036 }, { "body": null, "index": 18, "isInternal": false, "x": 39.838, - "y": 117.78499999999997 + "y": 117.785 }, { "body": null, "index": 19, "isInternal": false, "x": 46.14, - "y": 117.01999999999998 + "y": 117.02 }, { "body": null, "index": 20, "isInternal": false, "x": 52.442, - "y": 117.78499999999997 + "y": 117.785 }, { "body": null, "index": 21, "isInternal": false, "x": 58.377, - "y": 120.03599999999997 + "y": 120.036 }, { "body": null, "index": 22, "isInternal": false, "x": 63.601, - "y": 123.64199999999997 + "y": 123.642 }, { "body": null, "index": 23, "isInternal": false, "x": 67.811, - "y": 128.39399999999998 + "y": 128.394 }, { "body": null, @@ -5980,14 +5980,14 @@ "index": 25, "isInternal": false, "x": 72.28, - "y": 140.17799999999997 + "y": 140.178 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2399.6281959999997, + "area": 2399.6282, "axes": { "#": 652 }, @@ -6008,13 +6008,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6070,12 +6070,12 @@ } }, { - "x": 121.26599999999999, - "y": 166.00599999999997 + "x": 121.266, + "y": 166.006 }, { "x": 72.28, - "y": 117.01999999999998 + "y": 117.02 }, { "category": 1, @@ -6093,7 +6093,7 @@ }, { "x": 96.773, - "y": 141.51299999999998 + "y": 141.513 }, { "x": 0, @@ -6101,7 +6101,7 @@ }, { "x": 96.773, - "y": 141.51299999999998 + "y": 141.513 }, { "fillStyle": "#4ECDC4", @@ -6138,36 +6138,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 121.26599999999999, - "y": 166.00599999999997 + "x": 121.266, + "y": 166.006 }, { "body": null, "index": 1, "isInternal": false, "x": 72.28, - "y": 166.00599999999997 + "y": 166.006 }, { "body": null, "index": 2, "isInternal": false, "x": 72.28, - "y": 117.01999999999998 + "y": 117.02 }, { "body": null, "index": 3, "isInternal": false, - "x": 121.26599999999999, - "y": 117.01999999999998 + "x": 121.266, + "y": 117.02 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 673 }, @@ -6188,13 +6188,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6250,12 +6250,12 @@ } }, { - "x": 156.67893724279836, - "y": 159.08893004115225 + "x": 156.67894, + "y": 159.08893 }, { - "x": 121.26599999999999, - "y": 117.01999999999998 + "x": 121.266, + "y": 117.02 }, { "category": 1, @@ -6272,16 +6272,16 @@ "y": 0 }, { - "x": 138.97246862139917, - "y": 138.05446502057612 + "x": 138.97247, + "y": 138.05447 }, { "x": 0, "y": 0 }, { - "x": 138.97246862139917, - "y": 138.05446502057612 + "x": 138.97247, + "y": 138.05447 }, { "fillStyle": "#4ECDC4", @@ -6318,36 +6318,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 121.26599999999999, - "y": 117.01999999999998 + "x": 121.266, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 156.67893724279836, - "y": 117.01999999999998 + "x": 156.67894, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 156.67893724279836, - "y": 159.08893004115225 + "x": 156.67894, + "y": 159.08893 }, { "body": null, "index": 3, "isInternal": false, - "x": 121.26599999999999, - "y": 159.08893004115225 + "x": 121.266, + "y": 159.08893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 694 }, @@ -6368,13 +6368,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6430,12 +6430,12 @@ } }, { - "x": 198.4428261316872, - "y": 159.2901903292181 + "x": 198.44283, + "y": 159.29019 }, { - "x": 156.67893724279836, - "y": 117.01999999999998 + "x": 156.67894, + "y": 117.02 }, { "category": 1, @@ -6452,16 +6452,16 @@ "y": 0 }, { - "x": 177.56088168724278, - "y": 138.15509516460904 + "x": 177.56088, + "y": 138.1551 }, { "x": 0, "y": 0 }, { - "x": 177.56088168724278, - "y": 138.15509516460904 + "x": 177.56088, + "y": 138.1551 }, { "fillStyle": "#FF6B6B", @@ -6498,36 +6498,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 156.67893724279836, - "y": 117.01999999999998 + "x": 156.67894, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 198.4428261316872, - "y": 117.01999999999998 + "x": 198.44283, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 198.4428261316872, - "y": 159.2901903292181 + "x": 198.44283, + "y": 159.29019 }, { "body": null, "index": 3, "isInternal": false, - "x": 156.67893724279836, - "y": 159.2901903292181 + "x": 156.67894, + "y": 159.29019 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1919.5457599999997, + "area": 1919.54576, "axes": { "#": 715 }, @@ -6548,13 +6548,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6597,12 +6597,12 @@ } ], { - "x": -0.4999772266722585, - "y": -0.8660385515721092 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999772266722585, - "y": -0.8660385515721092 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -6617,11 +6617,11 @@ } }, { - "x": 245.5228261316872, + "x": 245.52283, "y": 171.382 }, { - "x": 198.4428261316872, + "x": 198.44283, "y": 117.02 }, { @@ -6639,7 +6639,7 @@ "y": 0 }, { - "x": 221.9828261316872, + "x": 221.98283, "y": 144.201 }, { @@ -6647,7 +6647,7 @@ "y": 0 }, { - "x": 221.9828261316872, + "x": 221.98283, "y": 144.201 }, { @@ -6691,42 +6691,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.5228261316872, + "x": 245.52283, "y": 157.792 }, { "body": null, "index": 1, "isInternal": false, - "x": 221.9828261316872, + "x": 221.98283, "y": 171.382 }, { "body": null, "index": 2, "isInternal": false, - "x": 198.4428261316872, + "x": 198.44283, "y": 157.792 }, { "body": null, "index": 3, "isInternal": false, - "x": 198.4428261316872, + "x": 198.44283, "y": 130.61 }, { "body": null, "index": 4, "isInternal": false, - "x": 221.9828261316872, + "x": 221.98283, "y": 117.02 }, { "body": null, "index": 5, "isInternal": false, - "x": 245.5228261316872, + "x": 245.52283, "y": 130.61 }, { @@ -6734,7 +6734,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6052.328004, + "area": 6052.328, "axes": { "#": 739 }, @@ -6755,13 +6755,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -6804,12 +6804,12 @@ } ], { - "x": -0.4999896834528559, - "y": -0.8660313599637792 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999896834528559, - "y": -0.8660313599637792 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -6824,12 +6824,12 @@ } }, { - "x": 329.1208261316872, - "y": 213.54999999999995 + "x": 329.12083, + "y": 213.55 }, { - "x": 245.5228261316872, - "y": 117.01999999999997 + "x": 245.52283, + "y": 117.02 }, { "category": 1, @@ -6846,16 +6846,16 @@ "y": 0 }, { - "x": 287.3218261316872, - "y": 165.28499999999997 + "x": 287.32183, + "y": 165.285 }, { "x": 0, "y": 0 }, { - "x": 287.3218261316872, - "y": 165.28499999999997 + "x": 287.32183, + "y": 165.285 }, { "fillStyle": "#4ECDC4", @@ -6898,42 +6898,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 329.1208261316872, - "y": 189.41799999999998 + "x": 329.12083, + "y": 189.418 }, { "body": null, "index": 1, "isInternal": false, - "x": 287.3218261316872, - "y": 213.54999999999995 + "x": 287.32183, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 245.5228261316872, - "y": 189.41799999999998 + "x": 245.52283, + "y": 189.418 }, { "body": null, "index": 3, "isInternal": false, - "x": 245.5228261316872, + "x": 245.52283, "y": 141.152 }, { "body": null, "index": 4, "isInternal": false, - "x": 287.3218261316872, - "y": 117.01999999999997 + "x": 287.32183, + "y": 117.02 }, { "body": null, "index": 5, "isInternal": false, - "x": 329.1208261316872, + "x": 329.12083, "y": 141.152 }, { @@ -6941,7 +6941,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 763 }, @@ -6962,13 +6962,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7024,12 +7024,12 @@ } }, { - "x": 374.27218930041147, - "y": 166.18846707818926 + "x": 374.27219, + "y": 166.18847 }, { - "x": 329.1208261316872, - "y": 117.01999999999997 + "x": 329.12083, + "y": 117.02 }, { "category": 1, @@ -7046,16 +7046,16 @@ "y": 0 }, { - "x": 351.6965077160493, - "y": 141.60423353909462 + "x": 351.69651, + "y": 141.60423 }, { "x": 0, "y": 0 }, { - "x": 351.6965077160493, - "y": 141.60423353909462 + "x": 351.69651, + "y": 141.60423 }, { "fillStyle": "#C7F464", @@ -7092,36 +7092,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 329.1208261316872, - "y": 117.01999999999997 + "x": 329.12083, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.27218930041147, - "y": 117.01999999999997 + "x": 374.27219, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 374.27218930041147, - "y": 166.18846707818926 + "x": 374.27219, + "y": 166.18847 }, { "body": null, "index": 3, "isInternal": false, - "x": 329.1208261316872, - "y": 166.18846707818926 + "x": 329.12083, + "y": 166.18847 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2601.1074479999997, + "area": 2601.10745, "axes": { "#": 784 }, @@ -7142,13 +7142,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7191,12 +7191,12 @@ } ], { - "x": -0.4999869137730785, - "y": -0.8660329589892477 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999869137730785, - "y": -0.8660329589892477 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7211,12 +7211,12 @@ } }, { - "x": 429.07618930041144, - "y": 180.30199999999996 + "x": 429.07619, + "y": 180.302 }, { - "x": 374.27218930041147, - "y": 117.01999999999998 + "x": 374.27219, + "y": 117.02 }, { "category": 1, @@ -7233,16 +7233,16 @@ "y": 0 }, { - "x": 401.67418930041146, - "y": 148.66099999999997 + "x": 401.67419, + "y": 148.661 }, { "x": 0, "y": 0 }, { - "x": 401.67418930041146, - "y": 148.66099999999997 + "x": 401.67419, + "y": 148.661 }, { "fillStyle": "#4ECDC4", @@ -7285,50 +7285,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 429.07618930041144, - "y": 164.48199999999997 + "x": 429.07619, + "y": 164.482 }, { "body": null, "index": 1, "isInternal": false, - "x": 401.67418930041146, - "y": 180.30199999999996 + "x": 401.67419, + "y": 180.302 }, { "body": null, "index": 2, "isInternal": false, - "x": 374.27218930041147, - "y": 164.48199999999997 + "x": 374.27219, + "y": 164.482 }, { "body": null, "index": 3, "isInternal": false, - "x": 374.27218930041147, - "y": 132.83999999999997 + "x": 374.27219, + "y": 132.84 }, { "body": null, "index": 4, "isInternal": false, - "x": 401.67418930041146, - "y": 117.01999999999998 + "x": 401.67419, + "y": 117.02 }, { "body": null, "index": 5, "isInternal": false, - "x": 429.07618930041144, - "y": 132.83999999999997 + "x": 429.07619, + "y": 132.84 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1413.3088360000002, + "area": 1413.30884, "axes": { "#": 808 }, @@ -7349,13 +7349,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7411,12 +7411,12 @@ } }, { - "x": 466.6701893004115, - "y": 154.61399999999998 + "x": 466.67019, + "y": 154.614 }, { - "x": 429.07618930041144, - "y": 117.01999999999998 + "x": 429.07619, + "y": 117.02 }, { "category": 1, @@ -7433,16 +7433,16 @@ "y": 0 }, { - "x": 447.87318930041147, - "y": 135.81699999999998 + "x": 447.87319, + "y": 135.817 }, { "x": 0, "y": 0 }, { - "x": 447.87318930041147, - "y": 135.81699999999998 + "x": 447.87319, + "y": 135.817 }, { "fillStyle": "#556270", @@ -7479,36 +7479,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 466.6701893004115, - "y": 154.61399999999998 + "x": 466.67019, + "y": 154.614 }, { "body": null, "index": 1, "isInternal": false, - "x": 429.07618930041144, - "y": 154.61399999999998 + "x": 429.07619, + "y": 154.614 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.07618930041144, - "y": 117.01999999999998 + "x": 429.07619, + "y": 117.02 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.6701893004115, - "y": 117.01999999999998 + "x": 466.67019, + "y": 117.02 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5460.808751999999, + "area": 5460.80875, "axes": { "#": 829 }, @@ -7529,13 +7529,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7578,12 +7578,12 @@ } ], { - "x": -0.49999811726960197, - "y": -0.8660264907766121 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.49999811726960197, - "y": -0.8660264907766121 + "x": 0.5, + "y": -0.86603 }, { "x": 1, @@ -7598,12 +7598,12 @@ } }, { - "x": 546.0781893004115, + "x": 546.07819, "y": 208.712 }, { - "x": 466.6701893004115, - "y": 117.01999999999998 + "x": 466.67019, + "y": 117.02 }, { "category": 1, @@ -7620,16 +7620,16 @@ "y": 0 }, { - "x": 506.3741893004115, - "y": 162.86599999999999 + "x": 506.37419, + "y": 162.866 }, { "x": 0, "y": 0 }, { - "x": 506.3741893004115, - "y": 162.86599999999999 + "x": 506.37419, + "y": 162.866 }, { "fillStyle": "#4ECDC4", @@ -7672,50 +7672,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 546.0781893004115, + "x": 546.07819, "y": 185.789 }, { "body": null, "index": 1, "isInternal": false, - "x": 506.3741893004115, + "x": 506.37419, "y": 208.712 }, { "body": null, "index": 2, "isInternal": false, - "x": 466.6701893004115, + "x": 466.67019, "y": 185.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.6701893004115, - "y": 139.94299999999998 + "x": 466.67019, + "y": 139.943 }, { "body": null, "index": 4, "isInternal": false, - "x": 506.3741893004115, - "y": 117.01999999999998 + "x": 506.37419, + "y": 117.02 }, { "body": null, "index": 5, "isInternal": false, - "x": 546.0781893004115, - "y": 139.94299999999998 + "x": 546.07819, + "y": 139.943 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 853 }, @@ -7736,13 +7736,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -7798,12 +7798,12 @@ } }, { - "x": 566.2487139917695, - "y": 139.4097890946502 + "x": 566.24871, + "y": 139.40979 }, { - "x": 546.0781893004115, - "y": 117.01999999999998 + "x": 546.07819, + "y": 117.02 }, { "category": 1, @@ -7820,16 +7820,16 @@ "y": 0 }, { - "x": 556.1634516460905, - "y": 128.2148945473251 + "x": 556.16345, + "y": 128.21489 }, { "x": 0, "y": 0 }, { - "x": 556.1634516460905, - "y": 128.2148945473251 + "x": 556.16345, + "y": 128.21489 }, { "fillStyle": "#556270", @@ -7866,36 +7866,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 546.0781893004115, - "y": 117.01999999999998 + "x": 546.07819, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 566.2487139917695, - "y": 117.01999999999998 + "x": 566.24871, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 566.2487139917695, - "y": 139.4097890946502 + "x": 566.24871, + "y": 139.40979 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.0781893004115, - "y": 139.4097890946502 + "x": 546.07819, + "y": 139.40979 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 874 }, @@ -7916,13 +7916,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -7978,11 +7978,11 @@ } }, { - "x": 668.0818758573388, - "y": 146.69283950617285 + "x": 668.08188, + "y": 146.69284 }, { - "x": 566.2487139917695, + "x": 566.24871, "y": 117.02 }, { @@ -8000,16 +8000,16 @@ "y": 0 }, { - "x": 617.1652949245541, - "y": 131.8564197530864 + "x": 617.16529, + "y": 131.85642 }, { "x": 0, "y": 0 }, { - "x": 617.1652949245541, - "y": 131.8564197530864 + "x": 617.16529, + "y": 131.85642 }, { "fillStyle": "#C44D58", @@ -8046,36 +8046,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 566.2487139917695, + "x": 566.24871, "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 668.0818758573388, + "x": 668.08188, "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 668.0818758573388, - "y": 146.69283950617285 + "x": 668.08188, + "y": 146.69284 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.2487139917695, - "y": 146.69283950617285 + "x": 566.24871, + "y": 146.69284 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 895 }, @@ -8096,13 +8096,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8158,12 +8158,12 @@ } }, { - "x": 708.1533779149519, - "y": 138.40027263374483 + "x": 708.15338, + "y": 138.40027 }, { - "x": 668.0818758573388, - "y": 117.01999999999998 + "x": 668.08188, + "y": 117.02 }, { "category": 1, @@ -8180,16 +8180,16 @@ "y": 0 }, { - "x": 688.1176268861453, - "y": 127.71013631687241 + "x": 688.11763, + "y": 127.71014 }, { "x": 0, "y": 0 }, { - "x": 688.1176268861453, - "y": 127.71013631687241 + "x": 688.11763, + "y": 127.71014 }, { "fillStyle": "#556270", @@ -8226,36 +8226,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 668.0818758573388, - "y": 117.01999999999998 + "x": 668.08188, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 708.1533779149519, - "y": 117.01999999999998 + "x": 708.15338, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 708.1533779149519, - "y": 138.40027263374483 + "x": 708.15338, + "y": 138.40027 }, { "body": null, "index": 3, "isInternal": false, - "x": 668.0818758573388, - "y": 138.40027263374483 + "x": 668.08188, + "y": 138.40027 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 916 }, @@ -8276,13 +8276,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8328,16 +8328,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8352,12 +8352,12 @@ } }, { - "x": 778.4053779149518, + "x": 778.40538, "y": 187.272 }, { - "x": 708.1533779149519, - "y": 117.01999999999998 + "x": 708.15338, + "y": 117.02 }, { "category": 1, @@ -8374,7 +8374,7 @@ "y": 0 }, { - "x": 743.2793779149519, + "x": 743.27938, "y": 152.146 }, { @@ -8382,7 +8382,7 @@ "y": 0 }, { - "x": 743.2793779149519, + "x": 743.27938, "y": 152.146 }, { @@ -8432,56 +8432,56 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.4053779149518, + "x": 778.40538, "y": 166.696 }, { "body": null, "index": 1, "isInternal": false, - "x": 757.8293779149518, + "x": 757.82938, "y": 187.272 }, { "body": null, "index": 2, "isInternal": false, - "x": 728.7293779149519, + "x": 728.72938, "y": 187.272 }, { "body": null, "index": 3, "isInternal": false, - "x": 708.1533779149519, + "x": 708.15338, "y": 166.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 708.1533779149519, + "x": 708.15338, "y": 137.596 }, { "body": null, "index": 5, "isInternal": false, - "x": 728.7293779149519, - "y": 117.01999999999998 + "x": 728.72938, + "y": 117.02 }, { "body": null, "index": 6, "isInternal": false, - "x": 757.8293779149518, - "y": 117.01999999999998 + "x": 757.82938, + "y": 117.02 }, { "body": null, "index": 7, "isInternal": false, - "x": 778.4053779149518, + "x": 778.40538, "y": 137.596 }, { @@ -8489,7 +8489,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 943 }, @@ -8510,13 +8510,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8572,12 +8572,12 @@ } }, { - "x": 867.9096646090533, - "y": 138.97584705075445 + "x": 867.90966, + "y": 138.97585 }, { - "x": 778.4053779149518, - "y": 117.01999999999998 + "x": 778.40538, + "y": 117.02 }, { "category": 1, @@ -8594,16 +8594,16 @@ "y": 0 }, { - "x": 823.1575212620025, - "y": 127.99792352537722 + "x": 823.15752, + "y": 127.99792 }, { "x": 0, "y": 0 }, { - "x": 823.1575212620025, - "y": 127.99792352537722 + "x": 823.15752, + "y": 127.99792 }, { "fillStyle": "#4ECDC4", @@ -8640,36 +8640,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.4053779149518, - "y": 117.01999999999998 + "x": 778.40538, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 867.9096646090533, - "y": 117.01999999999998 + "x": 867.90966, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 867.9096646090533, - "y": 138.97584705075445 + "x": 867.90966, + "y": 138.97585 }, { "body": null, "index": 3, "isInternal": false, - "x": 778.4053779149518, - "y": 138.97584705075445 + "x": 778.40538, + "y": 138.97585 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1492.5256200000001, + "area": 1492.52562, "axes": { "#": 964 }, @@ -8690,13 +8690,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1714.8324723309402, - "inverseInertia": 0.0005831473430408735, - "inverseMass": 0.6700052492231255, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "inverseMass": 0.67001, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.49252562, + "mass": 1.49253, "motion": 0, "parent": null, "position": { @@ -8739,12 +8739,12 @@ } ], { - "x": -0.5000025921589079, - "y": 0.8660239071956228 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000025921589079, - "y": -0.8660239071956228 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -8759,12 +8759,12 @@ } }, { - "x": 910.2796646090532, - "y": 175.72999999999996 + "x": 910.27966, + "y": 175.73 }, { - "x": 859.4356646090532, - "y": 117.01999999999997 + "x": 859.43566, + "y": 117.02 }, { "category": 1, @@ -8781,16 +8781,16 @@ "y": 0 }, { - "x": 893.3316646090532, - "y": 146.37499999999997 + "x": 893.33166, + "y": 146.375 }, { "x": 0, "y": 0 }, { - "x": 893.3316646090532, - "y": 146.37499999999997 + "x": 893.33166, + "y": 146.375 }, { "fillStyle": "#4ECDC4", @@ -8824,29 +8824,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 910.2796646090532, - "y": 175.72999999999996 + "x": 910.27966, + "y": 175.73 }, { "body": null, "index": 1, "isInternal": false, - "x": 859.4356646090532, - "y": 146.37499999999997 + "x": 859.43566, + "y": 146.375 }, { "body": null, "index": 2, "isInternal": false, - "x": 910.2796646090532, - "y": 117.01999999999997 + "x": 910.27966, + "y": 117.02 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 942.0065703840771, + "area": 942.00657, "axes": { "#": 985 }, @@ -8867,13 +8867,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -8929,12 +8929,12 @@ } }, { - "x": 931.3395925925923, - "y": 161.74980967078187 + "x": 931.33959, + "y": 161.74981 }, { - "x": 910.2796646090532, - "y": 117.01999999999998 + "x": 910.27966, + "y": 117.02 }, { "category": 1, @@ -8951,16 +8951,16 @@ "y": 0 }, { - "x": 920.8096286008227, - "y": 139.38490483539093 + "x": 920.80963, + "y": 139.3849 }, { "x": 0, "y": 0 }, { - "x": 920.8096286008227, - "y": 139.38490483539093 + "x": 920.80963, + "y": 139.3849 }, { "fillStyle": "#4ECDC4", @@ -8997,36 +8997,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 910.2796646090532, - "y": 117.01999999999998 + "x": 910.27966, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 931.3395925925923, - "y": 117.01999999999998 + "x": 931.33959, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 931.3395925925923, - "y": 161.74980967078187 + "x": 931.33959, + "y": 161.74981 }, { "body": null, "index": 3, "isInternal": false, - "x": 910.2796646090532, - "y": 161.74980967078187 + "x": 910.27966, + "y": 161.74981 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2898.415585731765, + "area": 2898.41559, "axes": { "#": 1006 }, @@ -9047,13 +9047,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -9109,12 +9109,12 @@ } }, { - "x": 1043.5355802469135, - "y": 142.85350480109736 + "x": 1043.53558, + "y": 142.8535 }, { - "x": 931.3395925925923, - "y": 117.01999999999997 + "x": 931.33959, + "y": 117.02 }, { "category": 1, @@ -9131,16 +9131,16 @@ "y": 0 }, { - "x": 987.4375864197528, - "y": 129.93675240054867 + "x": 987.43759, + "y": 129.93675 }, { "x": 0, "y": 0 }, { - "x": 987.4375864197528, - "y": 129.93675240054867 + "x": 987.43759, + "y": 129.93675 }, { "fillStyle": "#C44D58", @@ -9177,36 +9177,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 931.3395925925923, - "y": 117.01999999999997 + "x": 931.33959, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 1043.5355802469135, - "y": 117.01999999999997 + "x": 1043.53558, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 1043.5355802469135, - "y": 142.85350480109736 + "x": 1043.53558, + "y": 142.8535 }, { "body": null, "index": 3, "isInternal": false, - "x": 931.3395925925923, - "y": 142.85350480109736 + "x": 931.33959, + "y": 142.8535 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 842.523055, + "area": 842.52305, "axes": { "#": 1027 }, @@ -9227,13 +9227,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 546.4390114484775, - "inverseInertia": 0.001830030395065027, - "inverseMass": 1.1869111403722952, + "inertia": 546.43901, + "inverseInertia": 0.00183, + "inverseMass": 1.18691, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.842523055, + "mass": 0.84252, "motion": 0, "parent": null, "position": { @@ -9276,12 +9276,12 @@ } ], { - "x": -0.49999391924129877, - "y": 0.8660289144836479 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999391924129877, - "y": -0.8660289144836479 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -9296,12 +9296,12 @@ } }, { - "x": 1075.3697469135802, + "x": 1075.36975, "y": 161.13 }, { - "x": 1037.16874691358, - "y": 117.01999999999998 + "x": 1037.16875, + "y": 117.02 }, { "category": 1, @@ -9318,7 +9318,7 @@ "y": 0 }, { - "x": 1062.6360802469135, + "x": 1062.63608, "y": 139.075 }, { @@ -9326,7 +9326,7 @@ "y": 0 }, { - "x": 1062.6360802469135, + "x": 1062.63608, "y": 139.075 }, { @@ -9361,36 +9361,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1075.3697469135802, + "x": 1075.36975, "y": 161.13 }, { "body": null, "index": 1, "isInternal": false, - "x": 1037.16874691358, + "x": 1037.16875, "y": 139.075 }, { "body": null, "index": 2, "isInternal": false, - "x": 1075.3697469135802, - "y": 117.01999999999998 + "x": 1075.36975, + "y": 117.02 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6661.542482000001, + "area": 6661.54248, "axes": { "#": 1048 }, "bounds": { "#": 1062 }, - "circleRadius": 46.273148148148145, + "circleRadius": 46.27315, "collisionFilter": { "#": 1065 }, @@ -9405,13 +9405,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 28251.272419191544, - "inverseInertia": 0.00003539663577491412, - "inverseMass": 0.15011538284144801, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "inverseMass": 0.15012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.661542482000001, + "mass": 6.66154, "motion": 0, "parent": null, "position": { @@ -9484,52 +9484,52 @@ } ], { - "x": -0.9709335210486909, - "y": -0.23934932150309357 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854504735162902, - "y": -0.46473375060326466 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485309706272006, - "y": -0.6630998311053178 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680534091439667, - "y": -0.822991691549749 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35463801958119895, - "y": -0.9350036764994698 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12048128629971751, - "y": -0.992715598573713 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12048128629971751, - "y": -0.992715598573713 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.35463801958119895, - "y": -0.9350036764994698 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680534091439667, - "y": -0.822991691549749 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7485309706272006, - "y": -0.6630998311053178 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854504735162902, - "y": -0.46473375060326466 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709335210486909, - "y": -0.23934932150309357 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -9544,12 +9544,12 @@ } }, { - "x": 1167.24174691358, - "y": 209.56599999999997 + "x": 1167.24175, + "y": 209.566 }, { - "x": 1075.3697469135802, - "y": 117.01999999999998 + "x": 1075.36975, + "y": 117.02 }, { "category": 1, @@ -9566,16 +9566,16 @@ "y": 0 }, { - "x": 1121.3057469135802, - "y": 163.29299999999998 + "x": 1121.30575, + "y": 163.293 }, { "x": 0, "y": 0 }, { - "x": 1121.3057469135802, - "y": 163.29299999999998 + "x": 1121.30575, + "y": 163.293 }, { "fillStyle": "#FF6B6B", @@ -9678,190 +9678,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1167.24174691358, - "y": 168.87099999999998 + "x": 1167.24175, + "y": 168.871 }, { "body": null, "index": 1, "isInternal": false, - "x": 1164.5717469135802, - "y": 179.70199999999997 + "x": 1164.57175, + "y": 179.702 }, { "body": null, "index": 2, "isInternal": false, - "x": 1159.3877469135803, - "y": 189.57899999999998 + "x": 1159.38775, + "y": 189.579 }, { "body": null, "index": 3, "isInternal": false, - "x": 1151.99074691358, - "y": 197.92899999999997 + "x": 1151.99075, + "y": 197.929 }, { "body": null, "index": 4, "isInternal": false, - "x": 1142.80974691358, + "x": 1142.80975, "y": 204.266 }, { "body": null, "index": 5, "isInternal": false, - "x": 1132.3797469135802, - "y": 208.22199999999998 + "x": 1132.37975, + "y": 208.222 }, { "body": null, "index": 6, "isInternal": false, - "x": 1121.3057469135802, - "y": 209.56599999999997 + "x": 1121.30575, + "y": 209.566 }, { "body": null, "index": 7, "isInternal": false, - "x": 1110.23174691358, - "y": 208.22199999999998 + "x": 1110.23175, + "y": 208.222 }, { "body": null, "index": 8, "isInternal": false, - "x": 1099.8017469135802, + "x": 1099.80175, "y": 204.266 }, { "body": null, "index": 9, "isInternal": false, - "x": 1090.6207469135802, - "y": 197.92899999999997 + "x": 1090.62075, + "y": 197.929 }, { "body": null, "index": 10, "isInternal": false, - "x": 1083.22374691358, - "y": 189.57899999999998 + "x": 1083.22375, + "y": 189.579 }, { "body": null, "index": 11, "isInternal": false, - "x": 1078.03974691358, - "y": 179.70199999999997 + "x": 1078.03975, + "y": 179.702 }, { "body": null, "index": 12, "isInternal": false, - "x": 1075.3697469135802, - "y": 168.87099999999998 + "x": 1075.36975, + "y": 168.871 }, { "body": null, "index": 13, "isInternal": false, - "x": 1075.3697469135802, - "y": 157.71499999999997 + "x": 1075.36975, + "y": 157.715 }, { "body": null, "index": 14, "isInternal": false, - "x": 1078.03974691358, + "x": 1078.03975, "y": 146.884 }, { "body": null, "index": 15, "isInternal": false, - "x": 1083.22374691358, - "y": 137.00699999999998 + "x": 1083.22375, + "y": 137.007 }, { "body": null, "index": 16, "isInternal": false, - "x": 1090.6207469135802, - "y": 128.65699999999998 + "x": 1090.62075, + "y": 128.657 }, { "body": null, "index": 17, "isInternal": false, - "x": 1099.8017469135802, - "y": 122.31999999999998 + "x": 1099.80175, + "y": 122.32 }, { "body": null, "index": 18, "isInternal": false, - "x": 1110.23174691358, - "y": 118.36399999999998 + "x": 1110.23175, + "y": 118.364 }, { "body": null, "index": 19, "isInternal": false, - "x": 1121.3057469135802, - "y": 117.01999999999998 + "x": 1121.30575, + "y": 117.02 }, { "body": null, "index": 20, "isInternal": false, - "x": 1132.3797469135802, - "y": 118.36399999999998 + "x": 1132.37975, + "y": 118.364 }, { "body": null, "index": 21, "isInternal": false, - "x": 1142.80974691358, - "y": 122.31999999999998 + "x": 1142.80975, + "y": 122.32 }, { "body": null, "index": 22, "isInternal": false, - "x": 1151.99074691358, - "y": 128.65699999999998 + "x": 1151.99075, + "y": 128.657 }, { "body": null, "index": 23, "isInternal": false, - "x": 1159.3877469135803, - "y": 137.00699999999998 + "x": 1159.38775, + "y": 137.007 }, { "body": null, "index": 24, "isInternal": false, - "x": 1164.5717469135802, + "x": 1164.57175, "y": 146.884 }, { "body": null, "index": 25, "isInternal": false, - "x": 1167.24174691358, - "y": 157.71499999999997 + "x": 1167.24175, + "y": 157.715 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1051.3111283901928, + "area": 1051.31113, "axes": { "#": 1102 }, @@ -9882,13 +9882,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -9944,12 +9944,12 @@ } }, { - "x": 49.54835390946502, - "y": 249.12934670781885 + "x": 49.54835, + "y": 249.12935 }, { "x": 20, - "y": 213.54999999999995 + "y": 213.55 }, { "category": 1, @@ -9966,16 +9966,16 @@ "y": 0 }, { - "x": 34.77417695473251, - "y": 231.3396733539094 + "x": 34.77418, + "y": 231.33967 }, { "x": 0, "y": 0 }, { - "x": 34.77417695473251, - "y": 231.3396733539094 + "x": 34.77418, + "y": 231.33967 }, { "fillStyle": "#4ECDC4", @@ -10013,35 +10013,35 @@ "index": 0, "isInternal": false, "x": 20, - "y": 213.54999999999995 + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 49.54835390946502, - "y": 213.54999999999995 + "x": 49.54835, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 49.54835390946502, - "y": 249.12934670781885 + "x": 49.54835, + "y": 249.12935 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 249.12934670781885 + "y": 249.12935 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6245.524001, + "area": 6245.524, "axes": { "#": 1123 }, @@ -10062,13 +10062,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 24931.28629116745, - "inverseInertia": 0.00004011024494770155, - "inverseMass": 0.16011466769479796, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "inverseMass": 0.16011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.245524001, + "mass": 6.24552, "motion": 0, "parent": null, "position": { @@ -10123,28 +10123,28 @@ } ], { - "x": 0.6235088590146987, - "y": 0.7818162845133048 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22254054198130854, - "y": 0.9749234365706189 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009716362849914, - "y": 0.4338779904649981 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009716362849914, - "y": -0.4338779904649981 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22254054198130854, - "y": -0.9749234365706189 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.6235088590146987, - "y": -0.7818162845133048 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -10159,12 +10159,12 @@ } }, { - "x": 137.99981624467063, - "y": 306.70399999999995 + "x": 137.99982, + "y": 306.704 }, { - "x": 47.18281624467064, - "y": 213.54999999999995 + "x": 47.18282, + "y": 213.55 }, { "category": 1, @@ -10181,16 +10181,16 @@ "y": 0 }, { - "x": 94.95685390946502, - "y": 260.12699999999995 + "x": 94.95685, + "y": 260.127 }, { "x": 0, "y": 0 }, { - "x": 94.95685390946502, - "y": 260.12699999999995 + "x": 94.95685, + "y": 260.127 }, { "fillStyle": "#556270", @@ -10236,57 +10236,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 137.99981624467063, - "y": 280.85499999999996 + "x": 137.99982, + "y": 280.855 }, { "body": null, "index": 1, "isInternal": false, - "x": 105.58781624467063, - "y": 306.70399999999995 + "x": 105.58782, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 65.16981624467064, - "y": 297.47799999999995 + "x": 65.16982, + "y": 297.478 }, { "body": null, "index": 3, "isInternal": false, - "x": 47.18281624467064, - "y": 260.12699999999995 + "x": 47.18282, + "y": 260.127 }, { "body": null, "index": 4, "isInternal": false, - "x": 65.16981624467064, - "y": 222.77599999999995 + "x": 65.16982, + "y": 222.776 }, { "body": null, "index": 5, "isInternal": false, - "x": 105.58781624467063, - "y": 213.54999999999995 + "x": 105.58782, + "y": 213.55 }, { "body": null, "index": 6, "isInternal": false, - "x": 137.99981624467063, - "y": 239.39899999999994 + "x": 137.99982, + "y": 239.399 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1100.443548, + "area": 1100.44355, "axes": { "#": 1152 }, @@ -10307,13 +10307,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 932.2097612415441, - "inverseInertia": 0.001072719940915627, - "inverseMass": 0.9087244882460795, + "inertia": 932.20976, + "inverseInertia": 0.00107, + "inverseMass": 0.90872, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.1004435479999999, + "mass": 1.10044, "motion": 0, "parent": null, "position": { @@ -10356,12 +10356,12 @@ } ], { - "x": -0.5000006240740739, - "y": 0.8660250434748042 + "x": -0.5, + "y": 0.86603 }, { - "x": -0.5000006240740739, - "y": -0.8660250434748042 + "x": -0.5, + "y": -0.86603 }, { "x": 1, @@ -10376,12 +10376,12 @@ } }, { - "x": 174.3814829113373, - "y": 263.96199999999993 + "x": 174.38148, + "y": 263.962 }, { - "x": 130.7234829113373, - "y": 213.54999999999995 + "x": 130.72348, + "y": 213.55 }, { "category": 1, @@ -10398,16 +10398,16 @@ "y": 0 }, { - "x": 159.82881624467063, - "y": 238.75599999999994 + "x": 159.82882, + "y": 238.756 }, { "x": 0, "y": 0 }, { - "x": 159.82881624467063, - "y": 238.75599999999994 + "x": 159.82882, + "y": 238.756 }, { "fillStyle": "#556270", @@ -10441,29 +10441,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 174.3814829113373, - "y": 263.96199999999993 + "x": 174.38148, + "y": 263.962 }, { "body": null, "index": 1, "isInternal": false, - "x": 130.7234829113373, - "y": 238.75599999999994 + "x": 130.72348, + "y": 238.756 }, { "body": null, "index": 2, "isInternal": false, - "x": 174.3814829113373, - "y": 213.54999999999995 + "x": 174.38148, + "y": 213.55 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4695.386625, + "area": 4695.38663, "axes": { "#": 1173 }, @@ -10484,13 +10484,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -10545,28 +10545,28 @@ } ], { - "x": 0.6235000959518373, - "y": 0.7818232730918474 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.2225264190381346, - "y": 0.9749266602314579 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009718651359478, - "y": 0.43387751524301366 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009718651359478, - "y": -0.43387751524301366 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.2225264190381346, - "y": -0.9749266602314579 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235000959518373, - "y": -0.7818232730918474 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -10581,12 +10581,12 @@ } }, { - "x": 251.07435787900175, - "y": 294.31999999999994 + "x": 251.07436, + "y": 294.32 }, { - "x": 172.33035787900175, - "y": 213.54999999999995 + "x": 172.33036, + "y": 213.55 }, { "category": 1, @@ -10603,16 +10603,16 @@ "y": 0 }, { - "x": 213.7534829113373, - "y": 253.93499999999995 + "x": 213.75348, + "y": 253.935 }, { "x": 0, "y": 0 }, { - "x": 213.7534829113373, - "y": 253.93499999999995 + "x": 213.75348, + "y": 253.935 }, { "fillStyle": "#4ECDC4", @@ -10658,57 +10658,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 251.07435787900175, - "y": 271.90799999999996 + "x": 251.07436, + "y": 271.908 }, { "body": null, "index": 1, "isInternal": false, - "x": 222.97135787900177, - "y": 294.31999999999994 + "x": 222.97136, + "y": 294.32 }, { "body": null, "index": 2, "isInternal": false, - "x": 187.92635787900176, - "y": 286.3209999999999 + "x": 187.92636, + "y": 286.321 }, { "body": null, "index": 3, "isInternal": false, - "x": 172.33035787900175, - "y": 253.93499999999995 + "x": 172.33036, + "y": 253.935 }, { "body": null, "index": 4, "isInternal": false, - "x": 187.92635787900176, - "y": 221.54899999999995 + "x": 187.92636, + "y": 221.549 }, { "body": null, "index": 5, "isInternal": false, - "x": 222.97135787900177, - "y": 213.54999999999995 + "x": 222.97136, + "y": 213.55 }, { "body": null, "index": 6, "isInternal": false, - "x": 251.07435787900175, - "y": 235.96199999999993 + "x": 251.07436, + "y": 235.962 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2533.681298803042, + "area": 2533.6813, "axes": { "#": 1202 }, @@ -10729,13 +10729,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 9087.287047208478, - "inverseInertia": 0.00011004384419739331, - "inverseMass": 0.3946826305551604, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "inverseMass": 0.39468, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.533681298803042, + "mass": 2.53368, "motion": 0, "parent": null, "position": { @@ -10791,12 +10791,12 @@ } }, { - "x": 351.7014154921705, - "y": 238.72892661179696 + "x": 351.70142, + "y": 238.72893 }, { - "x": 251.07435787900175, - "y": 213.54999999999995 + "x": 251.07436, + "y": 213.55 }, { "category": 1, @@ -10813,16 +10813,16 @@ "y": 0 }, { - "x": 301.3878866855861, - "y": 226.13946330589846 + "x": 301.38789, + "y": 226.13946 }, { "x": 0, "y": 0 }, { - "x": 301.3878866855861, - "y": 226.13946330589846 + "x": 301.38789, + "y": 226.13946 }, { "fillStyle": "#556270", @@ -10859,36 +10859,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 251.07435787900175, - "y": 213.54999999999995 + "x": 251.07436, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 351.7014154921705, - "y": 213.54999999999995 + "x": 351.70142, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 351.7014154921705, - "y": 238.72892661179696 + "x": 351.70142, + "y": 238.72893 }, { "body": null, "index": 3, "isInternal": false, - "x": 251.07435787900175, - "y": 238.72892661179696 + "x": 251.07436, + "y": 238.72893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2082.1047164947227, + "area": 2082.10472, "axes": { "#": 1223 }, @@ -10909,13 +10909,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2917.86500075833, - "inverseInertia": 0.0003427163353136995, - "inverseMass": 0.4802832403566742, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "inverseMass": 0.48028, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.082104716494723, + "mass": 2.0821, "motion": 0, "parent": null, "position": { @@ -10971,12 +10971,12 @@ } }, { - "x": 394.2788331876438, - "y": 262.45162037037034 + "x": 394.27883, + "y": 262.45162 }, { - "x": 351.7014154921705, - "y": 213.54999999999995 + "x": 351.70142, + "y": 213.55 }, { "category": 1, @@ -10993,16 +10993,16 @@ "y": 0 }, { - "x": 372.99012433990714, - "y": 238.00081018518514 + "x": 372.99012, + "y": 238.00081 }, { "x": 0, "y": 0 }, { - "x": 372.99012433990714, - "y": 238.00081018518514 + "x": 372.99012, + "y": 238.00081 }, { "fillStyle": "#FF6B6B", @@ -11039,36 +11039,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 351.7014154921705, - "y": 213.54999999999995 + "x": 351.70142, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2788331876438, - "y": 213.54999999999995 + "x": 394.27883, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 394.2788331876438, - "y": 262.45162037037034 + "x": 394.27883, + "y": 262.45162 }, { "body": null, "index": 3, "isInternal": false, - "x": 351.7014154921705, - "y": 262.45162037037034 + "x": 351.70142, + "y": 262.45162 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2570.1808866424026, + "area": 2570.18089, "axes": { "#": 1244 }, @@ -11089,13 +11089,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 7426.992944977438, - "inverseInertia": 0.00013464399487227974, - "inverseMass": 0.38907767355875333, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "inverseMass": 0.38908, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5701808866424027, + "mass": 2.57018, "motion": 0, "parent": null, "position": { @@ -11151,12 +11151,12 @@ } }, { - "x": 482.73682358544903, - "y": 242.60538408779144 + "x": 482.73682, + "y": 242.60538 }, { - "x": 394.2788331876438, - "y": 213.54999999999995 + "x": 394.27883, + "y": 213.55 }, { "category": 1, @@ -11173,16 +11173,16 @@ "y": 0 }, { - "x": 438.5078283865464, - "y": 228.0776920438957 + "x": 438.50783, + "y": 228.07769 }, { "x": 0, "y": 0 }, { - "x": 438.5078283865464, - "y": 228.0776920438957 + "x": 438.50783, + "y": 228.07769 }, { "fillStyle": "#FF6B6B", @@ -11219,36 +11219,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 394.2788331876438, - "y": 213.54999999999995 + "x": 394.27883, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 482.73682358544903, - "y": 213.54999999999995 + "x": 482.73682, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 482.73682358544903, - "y": 242.60538408779144 + "x": 482.73682, + "y": 242.60538 }, { "body": null, "index": 3, "isInternal": false, - "x": 394.2788331876438, - "y": 242.60538408779144 + "x": 394.27883, + "y": 242.60538 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1460.278512, + "area": 1460.27851, "axes": { "#": 1265 }, @@ -11269,13 +11269,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1641.5325488167716, - "inverseInertia": 0.0006091868240570722, - "inverseMass": 0.6848008731090607, + "inertia": 1641.53255, + "inverseInertia": 0.00061, + "inverseMass": 0.6848, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4602785120000001, + "mass": 1.46028, "motion": 0, "parent": null, "position": { @@ -11318,12 +11318,12 @@ } ], { - "x": -0.49999871188519596, - "y": 0.8660261474765902 + "x": -0.5, + "y": 0.86603 }, { - "x": -0.49999871188519596, - "y": -0.8660261474765902 + "x": -0.5, + "y": -0.86603 }, { "x": 1, @@ -11338,12 +11338,12 @@ } }, { - "x": 524.646823585449, - "y": 271.62199999999996 + "x": 524.64682, + "y": 271.622 }, { - "x": 474.354823585449, - "y": 213.54999999999995 + "x": 474.35482, + "y": 213.55 }, { "category": 1, @@ -11360,16 +11360,16 @@ "y": 0 }, { - "x": 507.88282358544905, - "y": 242.58599999999996 + "x": 507.88282, + "y": 242.586 }, { "x": 0, "y": 0 }, { - "x": 507.88282358544905, - "y": 242.58599999999996 + "x": 507.88282, + "y": 242.586 }, { "fillStyle": "#4ECDC4", @@ -11403,29 +11403,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 524.646823585449, - "y": 271.62199999999996 + "x": 524.64682, + "y": 271.622 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.354823585449, - "y": 242.58599999999996 + "x": 474.35482, + "y": 242.586 }, { "body": null, "index": 2, "isInternal": false, - "x": 524.646823585449, - "y": 213.54999999999995 + "x": 524.64682, + "y": 213.55 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4167.4330549999995, + "area": 4167.43305, "axes": { "#": 1286 }, @@ -11446,13 +11446,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 11100.542061550868, - "inverseInertia": 0.00009008569081177725, - "inverseMass": 0.23995586415004816, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "inverseMass": 0.23996, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.167433054999999, + "mass": 4.16743, "motion": 0, "parent": null, "position": { @@ -11507,28 +11507,28 @@ } ], { - "x": 0.6235095584460711, - "y": 0.7818157267069941 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22252973145772786, - "y": 0.974925904167774 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009725986708983, - "y": 0.43387599201178284 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009725986708983, - "y": -0.43387599201178284 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22252973145772786, - "y": -0.974925904167774 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235095584460711, - "y": -0.7818157267069941 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -11543,12 +11543,12 @@ } }, { - "x": 596.8995334433461, - "y": 289.64399999999995 + "x": 596.89953, + "y": 289.644 }, { - "x": 522.714533443346, - "y": 213.54999999999995 + "x": 522.71453, + "y": 213.55 }, { "category": 1, @@ -11565,16 +11565,16 @@ "y": 0 }, { - "x": 561.739323585449, - "y": 251.59699999999995 + "x": 561.73932, + "y": 251.597 }, { "x": 0, "y": 0 }, { - "x": 561.739323585449, - "y": 251.59699999999995 + "x": 561.73932, + "y": 251.597 }, { "fillStyle": "#FF6B6B", @@ -11620,57 +11620,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 596.8995334433461, - "y": 268.52899999999994 + "x": 596.89953, + "y": 268.529 }, { "body": null, "index": 1, "isInternal": false, - "x": 570.4235334433461, - "y": 289.64399999999995 + "x": 570.42353, + "y": 289.644 }, { "body": null, "index": 2, "isInternal": false, - "x": 537.4075334433461, - "y": 282.10799999999995 + "x": 537.40753, + "y": 282.108 }, { "body": null, "index": 3, "isInternal": false, - "x": 522.714533443346, - "y": 251.59699999999995 + "x": 522.71453, + "y": 251.597 }, { "body": null, "index": 4, "isInternal": false, - "x": 537.4075334433461, - "y": 221.08599999999996 + "x": 537.40753, + "y": 221.086 }, { "body": null, "index": 5, "isInternal": false, - "x": 570.4235334433461, - "y": 213.54999999999995 + "x": 570.42353, + "y": 213.55 }, { "body": null, "index": 6, "isInternal": false, - "x": 596.8995334433461, - "y": 234.66499999999996 + "x": 596.89953, + "y": 234.665 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1687.7661798887366, + "area": 1687.76618, "axes": { "#": 1315 }, @@ -11691,13 +11691,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1980.3012000583947, - "inverseInertia": 0.0005049736878261308, - "inverseMass": 0.5924991340127004, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "inverseMass": 0.5925, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6877661798887367, + "mass": 1.68777, "motion": 0, "parent": null, "position": { @@ -11753,12 +11753,12 @@ } }, { - "x": 632.4098215091898, - "y": 261.0789351851852 + "x": 632.40982, + "y": 261.07894 }, { - "x": 596.8995334433461, - "y": 213.54999999999995 + "x": 596.89953, + "y": 213.55 }, { "category": 1, @@ -11775,16 +11775,16 @@ "y": 0 }, { - "x": 614.6546774762679, - "y": 237.31446759259256 + "x": 614.65468, + "y": 237.31447 }, { "x": 0, "y": 0 }, { - "x": 614.6546774762679, - "y": 237.31446759259256 + "x": 614.65468, + "y": 237.31447 }, { "fillStyle": "#556270", @@ -11821,36 +11821,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 596.8995334433461, - "y": 213.54999999999995 + "x": 596.89953, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 632.4098215091898, - "y": 213.54999999999995 + "x": 632.40982, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 632.4098215091898, - "y": 261.0789351851852 + "x": 632.40982, + "y": 261.07894 }, { "body": null, "index": 3, "isInternal": false, - "x": 596.8995334433461, - "y": 261.0789351851852 + "x": 596.89953, + "y": 261.07894 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 888.874596, + "area": 888.8746, "axes": { "#": 1336 }, @@ -11871,13 +11871,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 526.7320316094421, - "inverseInertia": 0.0018984985533241191, - "inverseMass": 1.125018089728374, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "inverseMass": 1.12502, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.888874596, + "mass": 0.88887, "motion": 0, "parent": null, "position": { @@ -11933,12 +11933,12 @@ } }, { - "x": 662.2238215091899, - "y": 243.36399999999998 + "x": 662.22382, + "y": 243.364 }, { - "x": 632.4098215091898, - "y": 213.54999999999995 + "x": 632.40982, + "y": 213.55 }, { "category": 1, @@ -11955,16 +11955,16 @@ "y": 0 }, { - "x": 647.3168215091898, - "y": 228.45699999999997 + "x": 647.31682, + "y": 228.457 }, { "x": 0, "y": 0 }, { - "x": 647.3168215091898, - "y": 228.45699999999997 + "x": 647.31682, + "y": 228.457 }, { "fillStyle": "#FF6B6B", @@ -12001,36 +12001,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 662.2238215091899, - "y": 243.36399999999998 + "x": 662.22382, + "y": 243.364 }, { "body": null, "index": 1, "isInternal": false, - "x": 632.4098215091898, - "y": 243.36399999999998 + "x": 632.40982, + "y": 243.364 }, { "body": null, "index": 2, "isInternal": false, - "x": 632.4098215091898, - "y": 213.54999999999995 + "x": 632.40982, + "y": 213.55 }, { "body": null, "index": 3, "isInternal": false, - "x": 662.2238215091899, - "y": 213.54999999999995 + "x": 662.22382, + "y": 213.55 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1624.121534624581, + "area": 1624.12153, "axes": { "#": 1357 }, @@ -12051,13 +12051,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1766.6812602831346, - "inverseInertia": 0.0005660330601116675, - "inverseMass": 0.6157174686013581, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "inverseMass": 0.61572, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.624121534624581, + "mass": 1.62412, "motion": 0, "parent": null, "position": { @@ -12113,12 +12113,12 @@ } }, { - "x": 704.5130447602186, - "y": 251.95509259259256 + "x": 704.51304, + "y": 251.95509 }, { - "x": 662.2238215091899, - "y": 213.54999999999995 + "x": 662.22382, + "y": 213.55 }, { "category": 1, @@ -12135,16 +12135,16 @@ "y": 0 }, { - "x": 683.3684331347042, - "y": 232.75254629629626 + "x": 683.36843, + "y": 232.75255 }, { "x": 0, "y": 0 }, { - "x": 683.3684331347042, - "y": 232.75254629629626 + "x": 683.36843, + "y": 232.75255 }, { "fillStyle": "#C7F464", @@ -12181,36 +12181,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 662.2238215091899, - "y": 213.54999999999995 + "x": 662.22382, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 704.5130447602186, - "y": 213.54999999999995 + "x": 704.51304, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 704.5130447602186, - "y": 251.95509259259256 + "x": 704.51304, + "y": 251.95509 }, { "body": null, "index": 3, "isInternal": false, - "x": 662.2238215091899, - "y": 251.95509259259256 + "x": 662.22382, + "y": 251.95509 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 925.4335858447538, + "area": 925.43359, "axes": { "#": 1378 }, @@ -12231,13 +12231,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 658.9066011822378, - "inverseInertia": 0.001517665778739746, - "inverseMass": 1.080574570985751, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "inverseMass": 1.08057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9254335858447538, + "mass": 0.92543, "motion": 0, "parent": null, "position": { @@ -12293,12 +12293,12 @@ } }, { - "x": 744.5266764474615, - "y": 236.67795781893 + "x": 744.52668, + "y": 236.67796 }, { - "x": 704.5130447602186, - "y": 213.54999999999995 + "x": 704.51304, + "y": 213.55 }, { "category": 1, @@ -12315,16 +12315,16 @@ "y": 0 }, { - "x": 724.51986060384, - "y": 225.11397890946498 + "x": 724.51986, + "y": 225.11398 }, { "x": 0, "y": 0 }, { - "x": 724.51986060384, - "y": 225.11397890946498 + "x": 724.51986, + "y": 225.11398 }, { "fillStyle": "#C44D58", @@ -12361,36 +12361,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 704.5130447602186, - "y": 213.54999999999995 + "x": 704.51304, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 744.5266764474615, - "y": 213.54999999999995 + "x": 744.52668, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 744.5266764474615, - "y": 236.67795781893 + "x": 744.52668, + "y": 236.67796 }, { "body": null, "index": 3, "isInternal": false, - "x": 704.5130447602186, - "y": 236.67795781893 + "x": 704.51304, + "y": 236.67796 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5929.347511999999, + "area": 5929.34751, "axes": { "#": 1399 }, @@ -12412,13 +12412,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 22382.17146584697, - "inverseInertia": 0.00004467841744157413, - "inverseMass": 0.1686526212161066, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "inverseMass": 0.16865, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.929347512, + "mass": 5.92935, "motion": 0, "parent": null, "position": { @@ -12491,52 +12491,52 @@ } ], { - "x": -0.9709364586220396, - "y": -0.23933740476259086 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.885455576089853, - "y": -0.4647240286141727 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7484830648246673, - "y": -0.6631539049652597 + "x": -0.74848, + "y": -0.66315 }, { - "x": -0.5681125845628812, - "y": -0.8229508437697133 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.3546198602355774, - "y": -0.9350105639651882 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12047891877198527, - "y": -0.9927158859067047 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12047891877198527, - "y": -0.9927158859067047 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.3546198602355774, - "y": -0.9350105639651882 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.5681125845628812, - "y": -0.8229508437697133 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484830648246673, - "y": -0.6631539049652597 + "x": 0.74848, + "y": -0.66315 }, { - "x": 0.885455576089853, - "y": -0.4647240286141727 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709364586220396, - "y": -0.23933740476259086 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -12551,12 +12551,12 @@ } }, { - "x": 831.2026764474614, - "y": 300.86199999999997 + "x": 831.20268, + "y": 300.862 }, { - "x": 744.5266764474615, - "y": 213.54999999999995 + "x": 744.52668, + "y": 213.55 }, { "category": 1, @@ -12573,16 +12573,16 @@ "y": 0 }, { - "x": 787.8646764474614, - "y": 257.20599999999996 + "x": 787.86468, + "y": 257.206 }, { "x": 0, "y": 0 }, { - "x": 787.8646764474614, - "y": 257.20599999999996 + "x": 787.86468, + "y": 257.206 }, { "fillStyle": "#C7F464", @@ -12685,190 +12685,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 831.2026764474614, - "y": 262.46799999999996 + "x": 831.20268, + "y": 262.468 }, { "body": null, "index": 1, "isInternal": false, - "x": 828.6836764474614, - "y": 272.68699999999995 + "x": 828.68368, + "y": 272.687 }, { "body": null, "index": 2, "isInternal": false, - "x": 823.7926764474614, + "x": 823.79268, "y": 282.006 }, { "body": null, "index": 3, "isInternal": false, - "x": 816.8136764474614, - "y": 289.8829999999999 + "x": 816.81368, + "y": 289.883 }, { "body": null, "index": 4, "isInternal": false, - "x": 808.1526764474614, - "y": 295.86199999999997 + "x": 808.15268, + "y": 295.862 }, { "body": null, "index": 5, "isInternal": false, - "x": 798.3126764474614, - "y": 299.59399999999994 + "x": 798.31268, + "y": 299.594 }, { "body": null, "index": 6, "isInternal": false, - "x": 787.8646764474614, - "y": 300.86199999999997 + "x": 787.86468, + "y": 300.862 }, { "body": null, "index": 7, "isInternal": false, - "x": 777.4166764474614, - "y": 299.59399999999994 + "x": 777.41668, + "y": 299.594 }, { "body": null, "index": 8, "isInternal": false, - "x": 767.5766764474614, - "y": 295.86199999999997 + "x": 767.57668, + "y": 295.862 }, { "body": null, "index": 9, "isInternal": false, - "x": 758.9156764474615, - "y": 289.8829999999999 + "x": 758.91568, + "y": 289.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 751.9366764474614, + "x": 751.93668, "y": 282.006 }, { "body": null, "index": 11, "isInternal": false, - "x": 747.0456764474615, - "y": 272.68699999999995 + "x": 747.04568, + "y": 272.687 }, { "body": null, "index": 12, "isInternal": false, - "x": 744.5266764474615, - "y": 262.46799999999996 + "x": 744.52668, + "y": 262.468 }, { "body": null, "index": 13, "isInternal": false, - "x": 744.5266764474615, - "y": 251.94399999999996 + "x": 744.52668, + "y": 251.944 }, { "body": null, "index": 14, "isInternal": false, - "x": 747.0456764474615, - "y": 241.72499999999997 + "x": 747.04568, + "y": 241.725 }, { "body": null, "index": 15, "isInternal": false, - "x": 751.9366764474614, - "y": 232.40599999999995 + "x": 751.93668, + "y": 232.406 }, { "body": null, "index": 16, "isInternal": false, - "x": 758.9156764474615, - "y": 224.52899999999997 + "x": 758.91568, + "y": 224.529 }, { "body": null, "index": 17, "isInternal": false, - "x": 767.5766764474614, - "y": 218.54999999999995 + "x": 767.57668, + "y": 218.55 }, { "body": null, "index": 18, "isInternal": false, - "x": 777.4166764474614, - "y": 214.81799999999996 + "x": 777.41668, + "y": 214.818 }, { "body": null, "index": 19, "isInternal": false, - "x": 787.8646764474614, - "y": 213.54999999999995 + "x": 787.86468, + "y": 213.55 }, { "body": null, "index": 20, "isInternal": false, - "x": 798.3126764474614, - "y": 214.81799999999996 + "x": 798.31268, + "y": 214.818 }, { "body": null, "index": 21, "isInternal": false, - "x": 808.1526764474614, - "y": 218.54999999999995 + "x": 808.15268, + "y": 218.55 }, { "body": null, "index": 22, "isInternal": false, - "x": 816.8136764474614, - "y": 224.52899999999997 + "x": 816.81368, + "y": 224.529 }, { "body": null, "index": 23, "isInternal": false, - "x": 823.7926764474614, - "y": 232.40599999999995 + "x": 823.79268, + "y": 232.406 }, { "body": null, "index": 24, "isInternal": false, - "x": 828.6836764474614, - "y": 241.72499999999997 + "x": 828.68368, + "y": 241.725 }, { "body": null, "index": 25, "isInternal": false, - "x": 831.2026764474614, - "y": 251.94399999999996 + "x": 831.20268, + "y": 251.944 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2550.166396822507, + "area": 2550.1664, "axes": { "#": 1453 }, @@ -12889,13 +12889,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 10939.165130883785, - "inverseInertia": 0.00009141465441240754, - "inverseMass": 0.392131274745834, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "inverseMass": 0.39213, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5501663968225072, + "mass": 2.55017, "motion": 0, "parent": null, "position": { @@ -12951,12 +12951,12 @@ } }, { - "x": 942.2964693144023, - "y": 236.50507544581615 + "x": 942.29647, + "y": 236.50508 }, { - "x": 831.2026764474614, - "y": 213.54999999999995 + "x": 831.20268, + "y": 213.55 }, { "category": 1, @@ -12973,16 +12973,16 @@ "y": 0 }, { - "x": 886.7495728809319, - "y": 225.02753772290805 + "x": 886.74957, + "y": 225.02754 }, { "x": 0, "y": 0 }, { - "x": 886.7495728809319, - "y": 225.02753772290805 + "x": 886.74957, + "y": 225.02754 }, { "fillStyle": "#FF6B6B", @@ -13019,43 +13019,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 831.2026764474614, - "y": 213.54999999999995 + "x": 831.20268, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 942.2964693144023, - "y": 213.54999999999995 + "x": 942.29647, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 942.2964693144023, - "y": 236.50507544581615 + "x": 942.29647, + "y": 236.50508 }, { "body": null, "index": 3, "isInternal": false, - "x": 831.2026764474614, - "y": 236.50507544581615 + "x": 831.20268, + "y": 236.50508 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5174.381305999998, + "area": 5174.38131, "axes": { "#": 1474 }, "bounds": { "#": 1488 }, - "circleRadius": 40.782407407407405, + "circleRadius": 40.78241, "collisionFilter": { "#": 1491 }, @@ -13070,13 +13070,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17045.3242729355, - "inverseInertia": 0.000058667115039154525, - "inverseMass": 0.1932598200369272, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "inverseMass": 0.19326, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.174381305999998, + "mass": 5.17438, "motion": 0, "parent": null, "position": { @@ -13149,52 +13149,52 @@ } ], { - "x": -0.9709389264723081, - "y": -0.23932739304309056 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854449940324717, - "y": -0.46474419043473386 + "x": -0.88544, + "y": -0.46474 }, { - "x": -0.748536249103088, - "y": -0.6630938725238529 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680775563568219, - "y": -0.8229750239002773 + "x": -0.56808, + "y": -0.82298 }, { - "x": -0.35456531449559353, - "y": -0.9350312496150279 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12052880622175748, - "y": -0.9927098301471373 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052880622175748, - "y": -0.9927098301471373 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35456531449559353, - "y": -0.9350312496150279 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680775563568219, - "y": -0.8229750239002773 + "x": 0.56808, + "y": -0.82298 }, { - "x": 0.748536249103088, - "y": -0.6630938725238529 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854449940324717, - "y": -0.46474419043473386 + "x": 0.88544, + "y": -0.46474 }, { - "x": 0.9709389264723081, - "y": -0.23932739304309056 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -13209,12 +13209,12 @@ } }, { - "x": 1023.2664693144023, - "y": 295.1139999999999 + "x": 1023.26647, + "y": 295.114 }, { - "x": 942.2964693144023, - "y": 213.54999999999995 + "x": 942.29647, + "y": 213.55 }, { "category": 1, @@ -13231,16 +13231,16 @@ "y": 0 }, { - "x": 982.7814693144023, - "y": 254.33199999999994 + "x": 982.78147, + "y": 254.332 }, { "x": 0, "y": 0 }, { - "x": 982.7814693144023, - "y": 254.33199999999994 + "x": 982.78147, + "y": 254.332 }, { "fillStyle": "#C7F464", @@ -13343,190 +13343,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1023.2664693144023, - "y": 259.24799999999993 + "x": 1023.26647, + "y": 259.248 }, { "body": null, "index": 1, "isInternal": false, - "x": 1020.9134693144023, - "y": 268.7939999999999 + "x": 1020.91347, + "y": 268.794 }, { "body": null, "index": 2, "isInternal": false, - "x": 1016.3444693144023, - "y": 277.4989999999999 + "x": 1016.34447, + "y": 277.499 }, { "body": null, "index": 3, "isInternal": false, - "x": 1009.8254693144023, - "y": 284.85799999999995 + "x": 1009.82547, + "y": 284.858 }, { "body": null, "index": 4, "isInternal": false, - "x": 1001.7344693144023, - "y": 290.4429999999999 + "x": 1001.73447, + "y": 290.443 }, { "body": null, "index": 5, "isInternal": false, - "x": 992.5414693144023, + "x": 992.54147, "y": 293.929 }, { "body": null, "index": 6, "isInternal": false, - "x": 982.7814693144023, - "y": 295.1139999999999 + "x": 982.78147, + "y": 295.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 973.0214693144023, + "x": 973.02147, "y": 293.929 }, { "body": null, "index": 8, "isInternal": false, - "x": 963.8284693144024, - "y": 290.4429999999999 + "x": 963.82847, + "y": 290.443 }, { "body": null, "index": 9, "isInternal": false, - "x": 955.7374693144023, - "y": 284.85799999999995 + "x": 955.73747, + "y": 284.858 }, { "body": null, "index": 10, "isInternal": false, - "x": 949.2184693144023, - "y": 277.4989999999999 + "x": 949.21847, + "y": 277.499 }, { "body": null, "index": 11, "isInternal": false, - "x": 944.6494693144024, - "y": 268.7939999999999 + "x": 944.64947, + "y": 268.794 }, { "body": null, "index": 12, "isInternal": false, - "x": 942.2964693144023, - "y": 259.24799999999993 + "x": 942.29647, + "y": 259.248 }, { "body": null, "index": 13, "isInternal": false, - "x": 942.2964693144023, - "y": 249.41599999999994 + "x": 942.29647, + "y": 249.416 }, { "body": null, "index": 14, "isInternal": false, - "x": 944.6494693144024, - "y": 239.86999999999995 + "x": 944.64947, + "y": 239.87 }, { "body": null, "index": 15, "isInternal": false, - "x": 949.2184693144023, - "y": 231.16499999999994 + "x": 949.21847, + "y": 231.165 }, { "body": null, "index": 16, "isInternal": false, - "x": 955.7374693144023, - "y": 223.80599999999993 + "x": 955.73747, + "y": 223.806 }, { "body": null, "index": 17, "isInternal": false, - "x": 963.8284693144024, - "y": 218.22099999999995 + "x": 963.82847, + "y": 218.221 }, { "body": null, "index": 18, "isInternal": false, - "x": 973.0214693144023, - "y": 214.73499999999993 + "x": 973.02147, + "y": 214.735 }, { "body": null, "index": 19, "isInternal": false, - "x": 982.7814693144023, - "y": 213.54999999999995 + "x": 982.78147, + "y": 213.55 }, { "body": null, "index": 20, "isInternal": false, - "x": 992.5414693144023, - "y": 214.73499999999993 + "x": 992.54147, + "y": 214.735 }, { "body": null, "index": 21, "isInternal": false, - "x": 1001.7344693144023, - "y": 218.22099999999995 + "x": 1001.73447, + "y": 218.221 }, { "body": null, "index": 22, "isInternal": false, - "x": 1009.8254693144023, - "y": 223.80599999999993 + "x": 1009.82547, + "y": 223.806 }, { "body": null, "index": 23, "isInternal": false, - "x": 1016.3444693144023, - "y": 231.16499999999994 + "x": 1016.34447, + "y": 231.165 }, { "body": null, "index": 24, "isInternal": false, - "x": 1020.9134693144023, - "y": 239.86999999999995 + "x": 1020.91347, + "y": 239.87 }, { "body": null, "index": 25, "isInternal": false, - "x": 1023.2664693144023, - "y": 249.41599999999994 + "x": 1023.26647, + "y": 249.416 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1308.2034644955884, + "area": 1308.20346, "axes": { "#": 1528 }, @@ -13547,13 +13547,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1149.8579054087725, - "inverseInertia": 0.0008696726745940854, - "inverseMass": 0.7644070873834413, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "inverseMass": 0.76441, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3082034644955884, + "mass": 1.3082, "motion": 0, "parent": null, "position": { @@ -13609,12 +13609,12 @@ } }, { - "x": 1061.7685269275707, - "y": 247.527494855967 + "x": 1061.76853, + "y": 247.52749 }, { - "x": 1023.2664693144022, - "y": 213.54999999999993 + "x": 1023.26647, + "y": 213.55 }, { "category": 1, @@ -13631,16 +13631,16 @@ "y": 0 }, { - "x": 1042.5174981209866, - "y": 230.53874742798348 + "x": 1042.5175, + "y": 230.53875 }, { "x": 0, "y": 0 }, { - "x": 1042.5174981209866, - "y": 230.53874742798348 + "x": 1042.5175, + "y": 230.53875 }, { "fillStyle": "#FF6B6B", @@ -13677,36 +13677,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1023.2664693144022, - "y": 213.54999999999993 + "x": 1023.26647, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 1061.7685269275707, - "y": 213.54999999999993 + "x": 1061.76853, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 1061.7685269275707, - "y": 247.527494855967 + "x": 1061.76853, + "y": 247.52749 }, { "body": null, "index": 3, "isInternal": false, - "x": 1023.2664693144022, - "y": 247.527494855967 + "x": 1023.26647, + "y": 247.52749 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3803.7767479999993, + "area": 3803.77675, "axes": { "#": 1549 }, @@ -13727,13 +13727,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 9247.768748441516, - "inverseInertia": 0.00010813419184692798, - "inverseMass": 0.2628966067805618, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "inverseMass": 0.2629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.8037767479999993, + "mass": 3.80378, "motion": 0, "parent": null, "position": { @@ -13788,28 +13788,28 @@ } ], { - "x": 0.623488113338336, - "y": 0.7818328290151305 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22254280104331042, - "y": 0.9749229209039029 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009618424321717, - "y": 0.43389832735472317 + "x": -0.90096, + "y": 0.4339 }, { - "x": -0.9009618424321717, - "y": -0.43389832735472317 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.22254280104331042, - "y": -0.9749229209039029 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.623488113338336, - "y": -0.7818328290151305 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -13824,12 +13824,12 @@ } }, { - "x": 1130.797166256119, - "y": 286.24799999999993 + "x": 1130.79717, + "y": 286.248 }, { - "x": 1059.922166256119, - "y": 213.54999999999995 + "x": 1059.92217, + "y": 213.55 }, { "category": 1, @@ -13846,16 +13846,16 @@ "y": 0 }, { - "x": 1097.2060269275707, - "y": 249.89899999999994 + "x": 1097.20603, + "y": 249.899 }, { "x": 0, "y": 0 }, { - "x": 1097.2060269275707, - "y": 249.89899999999994 + "x": 1097.20603, + "y": 249.899 }, { "fillStyle": "#FF6B6B", @@ -13901,57 +13901,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 1130.797166256119, - "y": 266.0759999999999 + "x": 1130.79717, + "y": 266.076 }, { "body": null, "index": 1, "isInternal": false, - "x": 1105.5021662561192, - "y": 286.24799999999993 + "x": 1105.50217, + "y": 286.248 }, { "body": null, "index": 2, "isInternal": false, - "x": 1073.960166256119, - "y": 279.04799999999994 + "x": 1073.96017, + "y": 279.048 }, { "body": null, "index": 3, "isInternal": false, - "x": 1059.922166256119, - "y": 249.89899999999994 + "x": 1059.92217, + "y": 249.899 }, { "body": null, "index": 4, "isInternal": false, - "x": 1073.960166256119, - "y": 220.74999999999994 + "x": 1073.96017, + "y": 220.75 }, { "body": null, "index": 5, "isInternal": false, - "x": 1105.5021662561192, - "y": 213.54999999999995 + "x": 1105.50217, + "y": 213.55 }, { "body": null, "index": 6, "isInternal": false, - "x": 1130.797166256119, - "y": 233.72199999999995 + "x": 1130.79717, + "y": 233.722 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1519.5385669833, + "area": 1519.53857, "axes": { "#": 1578 }, @@ -13972,13 +13972,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1623.6987742797708, - "inverseInertia": 0.0006158777821604092, - "inverseMass": 0.6580945174595165, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "inverseMass": 0.65809, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5195385669833, + "mass": 1.51954, "motion": 0, "parent": null, "position": { @@ -14034,12 +14034,12 @@ } }, { - "x": 1163.8559368322508, - "y": 259.51476337448554 + "x": 1163.85594, + "y": 259.51476 }, { - "x": 1130.797166256119, - "y": 213.54999999999995 + "x": 1130.79717, + "y": 213.55 }, { "category": 1, @@ -14056,16 +14056,16 @@ "y": 0 }, { - "x": 1147.326551544185, - "y": 236.53238168724275 + "x": 1147.32655, + "y": 236.53238 }, { "x": 0, "y": 0 }, { - "x": 1147.326551544185, - "y": 236.53238168724275 + "x": 1147.32655, + "y": 236.53238 }, { "fillStyle": "#556270", @@ -14102,36 +14102,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1130.797166256119, - "y": 213.54999999999995 + "x": 1130.79717, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 1163.8559368322508, - "y": 213.54999999999995 + "x": 1163.85594, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 1163.8559368322508, - "y": 259.51476337448554 + "x": 1163.85594, + "y": 259.51476 }, { "body": null, "index": 3, "isInternal": false, - "x": 1130.797166256119, - "y": 259.51476337448554 + "x": 1130.79717, + "y": 259.51476 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3306.4800040000005, + "area": 3306.48, "axes": { "#": 1599 }, @@ -14152,13 +14152,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 7288.540011234562, - "inverseInertia": 0.00013720168901571494, - "inverseMass": 0.302436427496992, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "inverseMass": 0.30244, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.3064800040000004, + "mass": 3.30648, "motion": 0, "parent": null, "position": { @@ -14214,12 +14214,12 @@ } }, { - "x": 1221.3579368322507, - "y": 271.05199999999996 + "x": 1221.35794, + "y": 271.052 }, { - "x": 1163.8559368322508, - "y": 213.54999999999995 + "x": 1163.85594, + "y": 213.55 }, { "category": 1, @@ -14236,16 +14236,16 @@ "y": 0 }, { - "x": 1192.6069368322508, - "y": 242.30099999999996 + "x": 1192.60694, + "y": 242.301 }, { "x": 0, "y": 0 }, { - "x": 1192.6069368322508, - "y": 242.30099999999996 + "x": 1192.60694, + "y": 242.301 }, { "fillStyle": "#C7F464", @@ -14282,29 +14282,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 1221.3579368322507, - "y": 271.05199999999996 + "x": 1221.35794, + "y": 271.052 }, { "body": null, "index": 1, "isInternal": false, - "x": 1163.8559368322508, - "y": 271.05199999999996 + "x": 1163.85594, + "y": 271.052 }, { "body": null, "index": 2, "isInternal": false, - "x": 1163.8559368322508, - "y": 213.54999999999995 + "x": 1163.85594, + "y": 213.55 }, { "body": null, "index": 3, "isInternal": false, - "x": 1221.3579368322507, - "y": 213.54999999999995 + "x": 1221.35794, + "y": 213.55 }, { "angle": 0, @@ -14332,13 +14332,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 1838.3045471526925, - "inverseInertia": 0.000543979506305893, - "inverseMass": 0.6471132971461107, + "inertia": 1838.30455, + "inverseInertia": 0.00054, + "inverseMass": 0.64711, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.54532445, + "mass": 1.54532, "motion": 0, "parent": null, "position": { @@ -14381,12 +14381,12 @@ } ], { - "x": -0.5000098405967125, - "y": 0.8660197222387318 + "x": -0.50001, + "y": 0.86602 }, { - "x": -0.5000098405967125, - "y": -0.8660197222387318 + "x": -0.50001, + "y": -0.86602 }, { "x": 1, @@ -14401,12 +14401,12 @@ } }, { - "x": 63.11250000000001, - "y": 366.44399999999996 + "x": 63.1125, + "y": 366.444 }, { - "x": 11.377500000000005, - "y": 306.70399999999995 + "x": 11.3775, + "y": 306.704 }, { "category": 1, @@ -14423,16 +14423,16 @@ "y": 0 }, { - "x": 45.86750000000001, - "y": 336.57399999999996 + "x": 45.8675, + "y": 336.574 }, { "x": 0, "y": 0 }, { - "x": 45.86750000000001, - "y": 336.57399999999996 + "x": 45.8675, + "y": 336.574 }, { "fillStyle": "#FF6B6B", @@ -14466,29 +14466,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 63.11250000000001, - "y": 366.44399999999996 + "x": 63.1125, + "y": 366.444 }, { "body": null, "index": 1, "isInternal": false, - "x": 11.377500000000005, - "y": 336.57399999999996 + "x": 11.3775, + "y": 336.574 }, { "body": null, "index": 2, "isInternal": false, - "x": 63.11250000000001, - "y": 306.70399999999995 + "x": 63.1125, + "y": 306.704 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 832.6916065934118, + "area": 832.69161, "axes": { "#": 1641 }, @@ -14509,13 +14509,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 462.4740461527257, - "inverseInertia": 0.0021622835017854466, - "inverseMass": 1.2009247986671274, + "inertia": 462.47405, + "inverseInertia": 0.00216, + "inverseMass": 1.20092, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8326916065934119, + "mass": 0.83269, "motion": 0, "parent": null, "position": { @@ -14571,12 +14571,12 @@ } }, { - "x": 92.42139917695474, - "y": 335.1148796296296 + "x": 92.4214, + "y": 335.11488 }, { - "x": 63.11250000000001, - "y": 306.70399999999995 + "x": 63.1125, + "y": 306.704 }, { "category": 1, @@ -14593,16 +14593,16 @@ "y": 0 }, { - "x": 77.76694958847737, - "y": 320.9094398148148 + "x": 77.76695, + "y": 320.90944 }, { "x": 0, "y": 0 }, { - "x": 77.76694958847737, - "y": 320.9094398148148 + "x": 77.76695, + "y": 320.90944 }, { "fillStyle": "#C44D58", @@ -14639,36 +14639,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 63.11250000000001, - "y": 306.70399999999995 + "x": 63.1125, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 92.42139917695474, - "y": 306.70399999999995 + "x": 92.4214, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 92.42139917695474, - "y": 335.1148796296296 + "x": 92.4214, + "y": 335.11488 }, { "body": null, "index": 3, "isInternal": false, - "x": 63.11250000000001, - "y": 335.1148796296296 + "x": 63.1125, + "y": 335.11488 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 979.5317619999998, + "area": 979.53176, "axes": { "#": 1662 }, @@ -14689,13 +14689,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 621.1930410018283, - "inverseInertia": 0.0016098055419089229, - "inverseMass": 1.0208959410955785, + "inertia": 621.19304, + "inverseInertia": 0.00161, + "inverseMass": 1.0209, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9795317619999999, + "mass": 0.97953, "motion": 0, "parent": null, "position": { @@ -14744,20 +14744,20 @@ } ], { - "x": 0.30903963762764336, - "y": 0.9510491587583552 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090205210332716, - "y": 0.5877803982330935 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090205210332716, - "y": -0.5877803982330935 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30903963762764336, - "y": -0.9510491587583552 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, @@ -14772,12 +14772,12 @@ } }, { - "x": 127.20130264884645, - "y": 345.3119999999999 + "x": 127.2013, + "y": 345.312 }, { - "x": 90.48330264884645, - "y": 306.70399999999995 + "x": 90.4833, + "y": 306.704 }, { "category": 1, @@ -14794,16 +14794,16 @@ "y": 0 }, { - "x": 110.78039917695475, - "y": 326.0079999999999 + "x": 110.7804, + "y": 326.008 }, { "x": 0, "y": 0 }, { - "x": 110.78039917695475, - "y": 326.0079999999999 + "x": 110.7804, + "y": 326.008 }, { "fillStyle": "#4ECDC4", @@ -14843,43 +14843,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 127.20130264884645, - "y": 337.93799999999993 + "x": 127.2013, + "y": 337.938 }, { "body": null, "index": 1, "isInternal": false, - "x": 104.50830264884645, - "y": 345.3119999999999 + "x": 104.5083, + "y": 345.312 }, { "body": null, "index": 2, "isInternal": false, - "x": 90.48330264884645, - "y": 326.0079999999999 + "x": 90.4833, + "y": 326.008 }, { "body": null, "index": 3, "isInternal": false, - "x": 104.50830264884645, - "y": 306.70399999999995 + "x": 104.5083, + "y": 306.704 }, { "body": null, "index": 4, "isInternal": false, - "x": 127.20130264884645, - "y": 314.0779999999999 + "x": 127.2013, + "y": 314.078 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1515.3131811080627, + "area": 1515.31318, "axes": { "#": 1687 }, @@ -14900,13 +14900,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1532.4206796199487, - "inverseInertia": 0.0006525623239749069, - "inverseMass": 0.6599295858224876, + "inertia": 1532.42068, + "inverseInertia": 0.00065, + "inverseMass": 0.65993, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5153131811080627, + "mass": 1.51531, "motion": 0, "parent": null, "position": { @@ -14962,12 +14962,12 @@ } }, { - "x": 167.03913701098637, - "y": 344.741037037037 + "x": 167.03914, + "y": 344.74104 }, { - "x": 127.20130264884645, - "y": 306.70399999999995 + "x": 127.2013, + "y": 306.704 }, { "category": 1, @@ -14984,16 +14984,16 @@ "y": 0 }, { - "x": 147.1202198299164, - "y": 325.7225185185185 + "x": 147.12022, + "y": 325.72252 }, { "x": 0, "y": 0 }, { - "x": 147.1202198299164, - "y": 325.7225185185185 + "x": 147.12022, + "y": 325.72252 }, { "fillStyle": "#4ECDC4", @@ -15030,36 +15030,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 127.20130264884645, - "y": 306.70399999999995 + "x": 127.2013, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 167.03913701098637, - "y": 306.70399999999995 + "x": 167.03914, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.03913701098637, - "y": 344.741037037037 + "x": 167.03914, + "y": 344.74104 }, { "body": null, "index": 3, "isInternal": false, - "x": 127.20130264884645, - "y": 344.741037037037 + "x": 127.2013, + "y": 344.74104 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1347.9278604289448, + "area": 1347.92786, "axes": { "#": 1708 }, @@ -15080,13 +15080,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 1394.5666895178056, - "inverseInertia": 0.000717068611717498, - "inverseMass": 0.7418794650344082, + "inertia": 1394.56669, + "inverseInertia": 0.00072, + "inverseMass": 0.74188, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3479278604289449, + "mass": 1.34793, "motion": 0, "parent": null, "position": { @@ -15142,12 +15142,12 @@ } }, { - "x": 195.01804647600696, - "y": 354.88056893004114 + "x": 195.01805, + "y": 354.88057 }, { - "x": 167.03913701098637, - "y": 306.70399999999995 + "x": 167.03914, + "y": 306.704 }, { "category": 1, @@ -15164,16 +15164,16 @@ "y": 0 }, { - "x": 181.02859174349666, - "y": 330.79228446502054 + "x": 181.02859, + "y": 330.79228 }, { "x": 0, "y": 0 }, { - "x": 181.02859174349666, - "y": 330.79228446502054 + "x": 181.02859, + "y": 330.79228 }, { "fillStyle": "#C44D58", @@ -15210,36 +15210,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 167.03913701098637, - "y": 306.70399999999995 + "x": 167.03914, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.01804647600696, - "y": 306.70399999999995 + "x": 195.01805, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.01804647600696, - "y": 354.88056893004114 + "x": 195.01805, + "y": 354.88057 }, { "body": null, "index": 3, "isInternal": false, - "x": 167.03913701098637, - "y": 354.88056893004114 + "x": 167.03914, + "y": 354.88057 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2285.4053614040354, + "area": 2285.40536, "axes": { "#": 1729 }, @@ -15260,13 +15260,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 3483.877210739159, - "inverseInertia": 0.00028703652267579035, - "inverseMass": 0.43755913803652385, + "inertia": 3483.87721, + "inverseInertia": 0.00029, + "inverseMass": 0.43756, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.2854053614040355, + "mass": 2.28541, "motion": 0, "parent": null, "position": { @@ -15322,12 +15322,12 @@ } }, { - "x": 242.05624092045142, - "y": 355.2901625514403 + "x": 242.05624, + "y": 355.29016 }, { - "x": 195.01804647600696, - "y": 306.70399999999995 + "x": 195.01805, + "y": 306.704 }, { "category": 1, @@ -15344,16 +15344,16 @@ "y": 0 }, { - "x": 218.5371436982292, - "y": 330.9970812757201 + "x": 218.53714, + "y": 330.99708 }, { "x": 0, "y": 0 }, { - "x": 218.5371436982292, - "y": 330.9970812757201 + "x": 218.53714, + "y": 330.99708 }, { "fillStyle": "#C44D58", @@ -15390,29 +15390,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 195.01804647600696, - "y": 306.70399999999995 + "x": 195.01805, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 242.05624092045142, - "y": 306.70399999999995 + "x": 242.05624, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 242.05624092045142, - "y": 355.2901625514403 + "x": 242.05624, + "y": 355.29016 }, { "body": null, "index": 3, "isInternal": false, - "x": 195.01804647600696, - "y": 355.2901625514403 + "x": 195.01805, + "y": 355.29016 }, { "angle": 0, @@ -15440,13 +15440,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 12126.33710521863, - "inverseInertia": 0.0000824651328198393, - "inverseMass": 0.23106275618707614, + "inertia": 12126.33711, + "inverseInertia": 0.00008, + "inverseMass": 0.23106, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.32782858, + "mass": 4.32783, "motion": 0, "parent": null, "position": { @@ -15495,20 +15495,20 @@ } ], { - "x": 0.30902295452491274, - "y": 0.9510545797043899 + "x": 0.30902, + "y": 0.95105 }, { - "x": -0.8090187921715927, - "y": 0.587782777829716 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090187921715927, - "y": -0.587782777829716 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902295452491274, - "y": -0.9510545797043899 + "x": 0.30902, + "y": -0.95105 }, { "x": 1, @@ -15523,12 +15523,12 @@ } }, { - "x": 315.1622882764983, + "x": 315.16229, "y": 387.856 }, { - "x": 237.98228827649834, - "y": 306.70399999999995 + "x": 237.98229, + "y": 306.704 }, { "category": 1, @@ -15545,7 +15545,7 @@ "y": 0 }, { - "x": 280.6462409204514, + "x": 280.64624, "y": 347.28 }, { @@ -15553,7 +15553,7 @@ "y": 0 }, { - "x": 280.6462409204514, + "x": 280.64624, "y": 347.28 }, { @@ -15594,35 +15594,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.1622882764983, - "y": 372.35699999999997 + "x": 315.16229, + "y": 372.357 }, { "body": null, "index": 1, "isInternal": false, - "x": 267.4622882764984, + "x": 267.46229, "y": 387.856 }, { "body": null, "index": 2, "isInternal": false, - "x": 237.98228827649834, + "x": 237.98229, "y": 347.28 }, { "body": null, "index": 3, "isInternal": false, - "x": 267.4622882764984, - "y": 306.70399999999995 + "x": 267.46229, + "y": 306.704 }, { "body": null, "index": 4, "isInternal": false, - "x": 315.1622882764983, + "x": 315.16229, "y": 322.203 }, { @@ -15630,7 +15630,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2032.7292721140495, + "area": 2032.72927, "axes": { "#": 1775 }, @@ -15651,13 +15651,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 6700.374119056197, - "inverseInertia": 0.00014924539767950423, - "inverseMass": 0.49194942667401764, + "inertia": 6700.37412, + "inverseInertia": 0.00015, + "inverseMass": 0.49195, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.0327292721140497, + "mass": 2.03273, "motion": 0, "parent": null, "position": { @@ -15713,12 +15713,12 @@ } }, { - "x": 412.3814240789675, - "y": 327.6127362825788 + "x": 412.38142, + "y": 327.61274 }, { - "x": 315.1622882764983, - "y": 306.70399999999995 + "x": 315.16229, + "y": 306.704 }, { "category": 1, @@ -15735,16 +15735,16 @@ "y": 0 }, { - "x": 363.7718561777329, - "y": 317.1583681412894 + "x": 363.77186, + "y": 317.15837 }, { "x": 0, "y": 0 }, { - "x": 363.7718561777329, - "y": 317.1583681412894 + "x": 363.77186, + "y": 317.15837 }, { "fillStyle": "#C7F464", @@ -15781,36 +15781,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.1622882764983, - "y": 306.70399999999995 + "x": 315.16229, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 412.3814240789675, - "y": 306.70399999999995 + "x": 412.38142, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 412.3814240789675, - "y": 327.6127362825788 + "x": 412.38142, + "y": 327.61274 }, { "body": null, "index": 3, "isInternal": false, - "x": 315.1622882764983, - "y": 327.6127362825788 + "x": 315.16229, + "y": 327.61274 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1931.953486546484, + "area": 1931.95349, "axes": { "#": 1796 }, @@ -15831,13 +15831,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 4690.996610130106, - "inverseInertia": 0.00021317431733813697, - "inverseMass": 0.517610805313733, + "inertia": 4690.99661, + "inverseInertia": 0.00021, + "inverseMass": 0.51761, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.9319534865464842, + "mass": 1.93195, "motion": 0, "parent": null, "position": { @@ -15893,12 +15893,12 @@ } }, { - "x": 494.41623203507174, - "y": 330.25441152263375 + "x": 494.41623, + "y": 330.25441 }, { - "x": 412.3814240789675, - "y": 306.70399999999995 + "x": 412.38142, + "y": 306.704 }, { "category": 1, @@ -15915,16 +15915,16 @@ "y": 0 }, { - "x": 453.3988280570196, - "y": 318.47920576131685 + "x": 453.39883, + "y": 318.47921 }, { "x": 0, "y": 0 }, { - "x": 453.3988280570196, - "y": 318.47920576131685 + "x": 453.39883, + "y": 318.47921 }, { "fillStyle": "#C7F464", @@ -15961,36 +15961,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 412.3814240789675, - "y": 306.70399999999995 + "x": 412.38142, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.41623203507174, - "y": 306.70399999999995 + "x": 494.41623, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 494.41623203507174, - "y": 330.25441152263375 + "x": 494.41623, + "y": 330.25441 }, { "body": null, "index": 3, "isInternal": false, - "x": 412.3814240789675, - "y": 330.25441152263375 + "x": 412.38142, + "y": 330.25441 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2376.3179650719107, + "area": 2376.31797, "axes": { "#": 1817 }, @@ -16011,13 +16011,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 3764.591504006761, - "inverseInertia": 0.0002656330703970595, - "inverseMass": 0.42081910531267586, + "inertia": 3764.5915, + "inverseInertia": 0.00027, + "inverseMass": 0.42082, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.3763179650719106, + "mass": 2.37632, "motion": 0, "parent": null, "position": { @@ -16073,12 +16073,12 @@ } }, { - "x": 543.1574871791047, - "y": 355.4577294238683 + "x": 543.15749, + "y": 355.45773 }, { - "x": 494.41623203507174, - "y": 306.70399999999995 + "x": 494.41623, + "y": 306.704 }, { "category": 1, @@ -16095,16 +16095,16 @@ "y": 0 }, { - "x": 518.7868596070882, - "y": 331.0808647119341 + "x": 518.78686, + "y": 331.08086 }, { "x": 0, "y": 0 }, { - "x": 518.7868596070882, - "y": 331.0808647119341 + "x": 518.78686, + "y": 331.08086 }, { "fillStyle": "#C44D58", @@ -16141,43 +16141,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 494.41623203507174, - "y": 306.70399999999995 + "x": 494.41623, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 543.1574871791047, - "y": 306.70399999999995 + "x": 543.15749, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 543.1574871791047, - "y": 355.4577294238683 + "x": 543.15749, + "y": 355.45773 }, { "body": null, "index": 3, "isInternal": false, - "x": 494.41623203507174, - "y": 355.4577294238683 + "x": 494.41623, + "y": 355.45773 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 7163.665109999999, + "area": 7163.66511, "axes": { "#": 1838 }, "bounds": { "#": 1852 }, - "circleRadius": 47.985725308641975, + "circleRadius": 47.98573, "collisionFilter": { "#": 1855 }, @@ -16192,13 +16192,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 32670.739096352663, - "inverseInertia": 0.000030608429060964806, - "inverseMass": 0.13959334846684368, + "inertia": 32670.7391, + "inverseInertia": 0.00003, + "inverseMass": 0.13959, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.163665109999999, + "mass": 7.16367, "motion": 0, "parent": null, "position": { @@ -16271,52 +16271,52 @@ } ], { - "x": -0.9709305552368677, - "y": -0.23936135215908938 + "x": -0.97093, + "y": -0.23936 }, { - "x": -0.8854539309223355, - "y": -0.4647271631981327 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485195270433018, - "y": -0.6631127488103902 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.5680541170604241, - "y": -0.8229912029242489 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.3546073256135543, - "y": -0.9350153178537786 + "x": -0.35461, + "y": -0.93502 }, { - "x": -0.12058693531691794, - "y": -0.9927027707379854 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12058693531691794, - "y": -0.9927027707379854 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.3546073256135543, - "y": -0.9350153178537786 + "x": 0.35461, + "y": -0.93502 }, { - "x": 0.5680541170604241, - "y": -0.8229912029242489 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7485195270433018, - "y": -0.6631127488103902 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854539309223355, - "y": -0.4647271631981327 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709305552368677, - "y": -0.23936135215908938 + "x": 0.97093, + "y": -0.23936 }, { "x": 1, @@ -16331,12 +16331,12 @@ } }, { - "x": 638.4294871791046, - "y": 402.67599999999993 + "x": 638.42949, + "y": 402.676 }, { - "x": 543.1574871791047, - "y": 306.70399999999995 + "x": 543.15749, + "y": 306.704 }, { "category": 1, @@ -16353,16 +16353,16 @@ "y": 0 }, { - "x": 590.7934871791047, - "y": 354.68999999999994 + "x": 590.79349, + "y": 354.69 }, { "x": 0, "y": 0 }, { - "x": 590.7934871791047, - "y": 354.68999999999994 + "x": 590.79349, + "y": 354.69 }, { "fillStyle": "#FF6B6B", @@ -16465,197 +16465,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.4294871791046, - "y": 360.47399999999993 + "x": 638.42949, + "y": 360.474 }, { "body": null, "index": 1, "isInternal": false, - "x": 635.6604871791046, - "y": 371.70599999999996 + "x": 635.66049, + "y": 371.706 }, { "body": null, "index": 2, "isInternal": false, - "x": 630.2844871791046, - "y": 381.94899999999996 + "x": 630.28449, + "y": 381.949 }, { "body": null, "index": 3, "isInternal": false, - "x": 622.6134871791047, - "y": 390.60799999999995 + "x": 622.61349, + "y": 390.608 }, { "body": null, "index": 4, "isInternal": false, - "x": 613.0934871791046, - "y": 397.1789999999999 + "x": 613.09349, + "y": 397.179 }, { "body": null, "index": 5, "isInternal": false, - "x": 602.2774871791047, - "y": 401.28099999999995 + "x": 602.27749, + "y": 401.281 }, { "body": null, "index": 6, "isInternal": false, - "x": 590.7934871791047, - "y": 402.67599999999993 + "x": 590.79349, + "y": 402.676 }, { "body": null, "index": 7, "isInternal": false, - "x": 579.3094871791046, - "y": 401.28099999999995 + "x": 579.30949, + "y": 401.281 }, { "body": null, "index": 8, "isInternal": false, - "x": 568.4934871791047, - "y": 397.1789999999999 + "x": 568.49349, + "y": 397.179 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.9734871791047, - "y": 390.60799999999995 + "x": 558.97349, + "y": 390.608 }, { "body": null, "index": 10, "isInternal": false, - "x": 551.3024871791047, - "y": 381.94899999999996 + "x": 551.30249, + "y": 381.949 }, { "body": null, "index": 11, "isInternal": false, - "x": 545.9264871791047, - "y": 371.70599999999996 + "x": 545.92649, + "y": 371.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 543.1574871791047, - "y": 360.47399999999993 + "x": 543.15749, + "y": 360.474 }, { "body": null, "index": 13, "isInternal": false, - "x": 543.1574871791047, - "y": 348.90599999999995 + "x": 543.15749, + "y": 348.906 }, { "body": null, "index": 14, "isInternal": false, - "x": 545.9264871791047, - "y": 337.6739999999999 + "x": 545.92649, + "y": 337.674 }, { "body": null, "index": 15, "isInternal": false, - "x": 551.3024871791047, - "y": 327.4309999999999 + "x": 551.30249, + "y": 327.431 }, { "body": null, "index": 16, "isInternal": false, - "x": 558.9734871791047, - "y": 318.77199999999993 + "x": 558.97349, + "y": 318.772 }, { "body": null, "index": 17, "isInternal": false, - "x": 568.4934871791047, - "y": 312.20099999999996 + "x": 568.49349, + "y": 312.201 }, { "body": null, "index": 18, "isInternal": false, - "x": 579.3094871791046, - "y": 308.09899999999993 + "x": 579.30949, + "y": 308.099 }, { "body": null, "index": 19, "isInternal": false, - "x": 590.7934871791047, - "y": 306.70399999999995 + "x": 590.79349, + "y": 306.704 }, { "body": null, "index": 20, "isInternal": false, - "x": 602.2774871791047, - "y": 308.09899999999993 + "x": 602.27749, + "y": 308.099 }, { "body": null, "index": 21, "isInternal": false, - "x": 613.0934871791046, - "y": 312.20099999999996 + "x": 613.09349, + "y": 312.201 }, { "body": null, "index": 22, "isInternal": false, - "x": 622.6134871791047, - "y": 318.77199999999993 + "x": 622.61349, + "y": 318.772 }, { "body": null, "index": 23, "isInternal": false, - "x": 630.2844871791046, - "y": 327.4309999999999 + "x": 630.28449, + "y": 327.431 }, { "body": null, "index": 24, "isInternal": false, - "x": 635.6604871791046, - "y": 337.6739999999999 + "x": 635.66049, + "y": 337.674 }, { "body": null, "index": 25, "isInternal": false, - "x": 638.4294871791046, - "y": 348.90599999999995 + "x": 638.42949, + "y": 348.906 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6059.0497460000015, + "area": 6059.04975, "axes": { "#": 1892 }, "bounds": { "#": 1906 }, - "circleRadius": 44.13130144032922, + "circleRadius": 44.1313, "collisionFilter": { "#": 1909 }, @@ -16670,13 +16670,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 23372.08438446153, - "inverseInertia": 0.00004278608546633651, - "inverseMass": 0.16504238154838874, + "inertia": 23372.08438, + "inverseInertia": 0.00004, + "inverseMass": 0.16504, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.059049746000001, + "mass": 6.05905, "motion": 0, "parent": null, "position": { @@ -16749,52 +16749,52 @@ } ], { - "x": -0.9709225149895018, - "y": -0.23939396376362687 + "x": -0.97092, + "y": -0.23939 }, { - "x": -0.8854559247382039, - "y": -0.46472336432119704 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7485335294885549, - "y": -0.663096942559236 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680558224819049, - "y": -0.8229900257867082 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.3546230668670807, - "y": -0.9350093477852434 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.1205054107991527, - "y": -0.9927126703976974 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.1205054107991527, - "y": -0.9927126703976974 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546230668670807, - "y": -0.9350093477852434 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.5680558224819049, - "y": -0.8229900257867082 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7485335294885549, - "y": -0.663096942559236 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854559247382039, - "y": -0.46472336432119704 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709225149895018, - "y": -0.23939396376362687 + "x": 0.97092, + "y": -0.23939 }, { "x": 1, @@ -16809,12 +16809,12 @@ } }, { - "x": 726.0494871791045, - "y": 394.9659999999999 + "x": 726.04949, + "y": 394.966 }, { - "x": 638.4294871791046, - "y": 306.70399999999995 + "x": 638.42949, + "y": 306.704 }, { "category": 1, @@ -16831,16 +16831,16 @@ "y": 0 }, { - "x": 682.2394871791046, - "y": 350.8349999999999 + "x": 682.23949, + "y": 350.835 }, { "x": 0, "y": 0 }, { - "x": 682.2394871791046, - "y": 350.8349999999999 + "x": 682.23949, + "y": 350.835 }, { "fillStyle": "#FF6B6B", @@ -16943,183 +16943,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 726.0494871791045, - "y": 356.15399999999994 + "x": 726.04949, + "y": 356.154 }, { "body": null, "index": 1, "isInternal": false, - "x": 723.5024871791046, - "y": 366.4839999999999 + "x": 723.50249, + "y": 366.484 }, { "body": null, "index": 2, "isInternal": false, - "x": 718.5584871791045, - "y": 375.90399999999994 + "x": 718.55849, + "y": 375.904 }, { "body": null, "index": 3, "isInternal": false, - "x": 711.5034871791046, - "y": 383.86799999999994 + "x": 711.50349, + "y": 383.868 }, { "body": null, "index": 4, "isInternal": false, - "x": 702.7484871791046, - "y": 389.91099999999994 + "x": 702.74849, + "y": 389.911 }, { "body": null, "index": 5, "isInternal": false, - "x": 692.8004871791046, - "y": 393.6839999999999 + "x": 692.80049, + "y": 393.684 }, { "body": null, "index": 6, "isInternal": false, - "x": 682.2394871791046, - "y": 394.9659999999999 + "x": 682.23949, + "y": 394.966 }, { "body": null, "index": 7, "isInternal": false, - "x": 671.6784871791045, - "y": 393.6839999999999 + "x": 671.67849, + "y": 393.684 }, { "body": null, "index": 8, "isInternal": false, - "x": 661.7304871791046, - "y": 389.91099999999994 + "x": 661.73049, + "y": 389.911 }, { "body": null, "index": 9, "isInternal": false, - "x": 652.9754871791046, - "y": 383.86799999999994 + "x": 652.97549, + "y": 383.868 }, { "body": null, "index": 10, "isInternal": false, - "x": 645.9204871791046, - "y": 375.90399999999994 + "x": 645.92049, + "y": 375.904 }, { "body": null, "index": 11, "isInternal": false, - "x": 640.9764871791045, - "y": 366.4839999999999 + "x": 640.97649, + "y": 366.484 }, { "body": null, "index": 12, "isInternal": false, - "x": 638.4294871791046, - "y": 356.15399999999994 + "x": 638.42949, + "y": 356.154 }, { "body": null, "index": 13, "isInternal": false, - "x": 638.4294871791046, - "y": 345.5159999999999 + "x": 638.42949, + "y": 345.516 }, { "body": null, "index": 14, "isInternal": false, - "x": 640.9764871791045, - "y": 335.1859999999999 + "x": 640.97649, + "y": 335.186 }, { "body": null, "index": 15, "isInternal": false, - "x": 645.9204871791046, - "y": 325.7659999999999 + "x": 645.92049, + "y": 325.766 }, { "body": null, "index": 16, "isInternal": false, - "x": 652.9754871791046, - "y": 317.8019999999999 + "x": 652.97549, + "y": 317.802 }, { "body": null, "index": 17, "isInternal": false, - "x": 661.7304871791046, - "y": 311.7589999999999 + "x": 661.73049, + "y": 311.759 }, { "body": null, "index": 18, "isInternal": false, - "x": 671.6784871791045, - "y": 307.98599999999993 + "x": 671.67849, + "y": 307.986 }, { "body": null, "index": 19, "isInternal": false, - "x": 682.2394871791046, - "y": 306.70399999999995 + "x": 682.23949, + "y": 306.704 }, { "body": null, "index": 20, "isInternal": false, - "x": 692.8004871791046, - "y": 307.98599999999993 + "x": 692.80049, + "y": 307.986 }, { "body": null, "index": 21, "isInternal": false, - "x": 702.7484871791046, - "y": 311.7589999999999 + "x": 702.74849, + "y": 311.759 }, { "body": null, "index": 22, "isInternal": false, - "x": 711.5034871791046, - "y": 317.8019999999999 + "x": 711.50349, + "y": 317.802 }, { "body": null, "index": 23, "isInternal": false, - "x": 718.5584871791045, - "y": 325.7659999999999 + "x": 718.55849, + "y": 325.766 }, { "body": null, "index": 24, "isInternal": false, - "x": 723.5024871791046, - "y": 335.1859999999999 + "x": 723.50249, + "y": 335.186 }, { "body": null, "index": 25, "isInternal": false, - "x": 726.0494871791045, - "y": 345.5159999999999 + "x": 726.04949, + "y": 345.516 }, { "angle": 0, @@ -17147,13 +17147,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 917.4702110738278, - "inverseInertia": 0.001089953644194701, - "inverseMass": 0.8400377092927702, + "inertia": 917.47021, + "inverseInertia": 0.00109, + "inverseMass": 0.84004, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.19042275, + "mass": 1.19042, "motion": 0, "parent": null, "position": { @@ -17202,20 +17202,20 @@ } ], { - "x": 0.30904480933870226, - "y": 0.9510474782158908 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090088872494576, - "y": 0.5877964106316017 + "x": -0.80901, + "y": 0.5878 }, { - "x": -0.8090088872494576, - "y": -0.5877964106316017 + "x": -0.80901, + "y": -0.5878 }, { - "x": 0.30904480933870226, - "y": -0.9510474782158908 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, @@ -17230,12 +17230,12 @@ } }, { - "x": 764.3907015176674, - "y": 349.26599999999996 + "x": 764.3907, + "y": 349.266 }, { - "x": 723.9127015176673, - "y": 306.70399999999995 + "x": 723.9127, + "y": 306.704 }, { "category": 1, @@ -17252,16 +17252,16 @@ "y": 0 }, { - "x": 746.2884871791045, - "y": 327.98499999999996 + "x": 746.28849, + "y": 327.985 }, { "x": 0, "y": 0 }, { - "x": 746.2884871791045, - "y": 327.98499999999996 + "x": 746.28849, + "y": 327.985 }, { "fillStyle": "#FF6B6B", @@ -17301,43 +17301,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 764.3907015176674, - "y": 341.13699999999994 + "x": 764.3907, + "y": 341.137 }, { "body": null, "index": 1, "isInternal": false, - "x": 739.3747015176673, - "y": 349.26599999999996 + "x": 739.3747, + "y": 349.266 }, { "body": null, "index": 2, "isInternal": false, - "x": 723.9127015176673, - "y": 327.98499999999996 + "x": 723.9127, + "y": 327.985 }, { "body": null, "index": 3, "isInternal": false, - "x": 739.3747015176673, - "y": 306.70399999999995 + "x": 739.3747, + "y": 306.704 }, { "body": null, "index": 4, "isInternal": false, - "x": 764.3907015176674, - "y": 314.83299999999997 + "x": 764.3907, + "y": 314.833 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2171.016137319483, + "area": 2171.01614, "axes": { "#": 1971 }, @@ -17358,13 +17358,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 3142.3211355327803, - "inverseInertia": 0.0003182360926425332, - "inverseMass": 0.46061380328323276, + "inertia": 3142.32114, + "inverseInertia": 0.00032, + "inverseMass": 0.46061, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.1710161373194827, + "mass": 2.17102, "motion": 0, "parent": null, "position": { @@ -17420,12 +17420,12 @@ } }, { - "x": 811.1835255917415, - "y": 353.1003477366255 + "x": 811.18353, + "y": 353.10035 }, { - "x": 764.3907015176674, - "y": 306.70399999999995 + "x": 764.3907, + "y": 306.704 }, { "category": 1, @@ -17442,16 +17442,16 @@ "y": 0 }, { - "x": 787.7871135547044, - "y": 329.90217386831273 + "x": 787.78711, + "y": 329.90217 }, { "x": 0, "y": 0 }, { - "x": 787.7871135547044, - "y": 329.90217386831273 + "x": 787.78711, + "y": 329.90217 }, { "fillStyle": "#C44D58", @@ -17488,36 +17488,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 764.3907015176674, - "y": 306.70399999999995 + "x": 764.3907, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 811.1835255917415, - "y": 306.70399999999995 + "x": 811.18353, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 811.1835255917415, - "y": 353.1003477366255 + "x": 811.18353, + "y": 353.10035 }, { "body": null, "index": 3, "isInternal": false, - "x": 764.3907015176674, - "y": 353.1003477366255 + "x": 764.3907, + "y": 353.10035 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1119.9948759999997, + "area": 1119.99488, "axes": { "#": 1992 }, @@ -17538,13 +17538,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 965.6287346905493, - "inverseInertia": 0.0010355947001934086, - "inverseMass": 0.8928612276972597, + "inertia": 965.62873, + "inverseInertia": 0.00104, + "inverseMass": 0.89286, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.1199948759999998, + "mass": 1.11999, "motion": 0, "parent": null, "position": { @@ -17587,12 +17587,12 @@ } ], { - "x": -0.5000027244187393, - "y": 0.8660238308348324 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000027244187393, - "y": -0.8660238308348324 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -17607,12 +17607,12 @@ } }, { - "x": 847.8868589250748, - "y": 357.5619999999999 + "x": 847.88686, + "y": 357.562 }, { - "x": 803.8428589250748, - "y": 306.70399999999995 + "x": 803.84286, + "y": 306.704 }, { "category": 1, @@ -17629,16 +17629,16 @@ "y": 0 }, { - "x": 833.2055255917414, - "y": 332.1329999999999 + "x": 833.20553, + "y": 332.133 }, { "x": 0, "y": 0 }, { - "x": 833.2055255917414, - "y": 332.1329999999999 + "x": 833.20553, + "y": 332.133 }, { "fillStyle": "#556270", @@ -17672,29 +17672,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 847.8868589250748, - "y": 357.5619999999999 + "x": 847.88686, + "y": 357.562 }, { "body": null, "index": 1, "isInternal": false, - "x": 803.8428589250748, - "y": 332.1329999999999 + "x": 803.84286, + "y": 332.133 }, { "body": null, "index": 2, "isInternal": false, - "x": 847.8868589250748, - "y": 306.70399999999995 + "x": 847.88686, + "y": 306.704 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5582.974756, + "area": 5582.97476, "axes": { "#": 2013 }, @@ -17715,13 +17715,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 19922.243813825833, - "inverseInertia": 0.000050195149168188086, - "inverseMass": 0.17911598094283054, + "inertia": 19922.24381, + "inverseInertia": 0.00005, + "inverseMass": 0.17912, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.582974756, + "mass": 5.58297, "motion": 0, "parent": null, "position": { @@ -17776,28 +17776,28 @@ } ], { - "x": 0.6234964763295189, - "y": 0.7818261597085848 + "x": 0.6235, + "y": 0.78183 }, { - "x": -0.22252413765652376, - "y": 0.9749271809526189 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009669496877173, - "y": 0.43388772230890577 + "x": -0.90097, + "y": 0.43389 }, { - "x": -0.9009669496877173, - "y": -0.43388772230890577 + "x": -0.90097, + "y": -0.43389 }, { - "x": -0.22252413765652376, - "y": -0.9749271809526189 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234964763295189, - "y": -0.7818261597085848 + "x": 0.6235, + "y": -0.78183 }, { "x": 1, @@ -17812,12 +17812,12 @@ } }, { - "x": 931.5152738853482, - "y": 394.7779999999999 + "x": 931.51527, + "y": 394.778 }, { - "x": 845.6502738853482, - "y": 306.70399999999995 + "x": 845.65027, + "y": 306.704 }, { "category": 1, @@ -17834,16 +17834,16 @@ "y": 0 }, { - "x": 890.8193589250748, - "y": 350.74099999999993 + "x": 890.81936, + "y": 350.741 }, { "x": 0, "y": 0 }, { - "x": 890.8193589250748, - "y": 350.74099999999993 + "x": 890.81936, + "y": 350.741 }, { "fillStyle": "#C7F464", @@ -17889,57 +17889,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 931.5152738853482, - "y": 370.33899999999994 + "x": 931.51527, + "y": 370.339 }, { "body": null, "index": 1, "isInternal": false, - "x": 900.8702738853482, - "y": 394.7779999999999 + "x": 900.87027, + "y": 394.778 }, { "body": null, "index": 2, "isInternal": false, - "x": 862.6572738853482, - "y": 386.0559999999999 + "x": 862.65727, + "y": 386.056 }, { "body": null, "index": 3, "isInternal": false, - "x": 845.6502738853482, - "y": 350.74099999999993 + "x": 845.65027, + "y": 350.741 }, { "body": null, "index": 4, "isInternal": false, - "x": 862.6572738853482, - "y": 315.42599999999993 + "x": 862.65727, + "y": 315.426 }, { "body": null, "index": 5, "isInternal": false, - "x": 900.8702738853482, - "y": 306.70399999999995 + "x": 900.87027, + "y": 306.704 }, { "body": null, "index": 6, "isInternal": false, - "x": 931.5152738853482, - "y": 331.1429999999999 + "x": 931.51527, + "y": 331.143 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1427.950596, + "area": 1427.9506, "axes": { "#": 2042 }, @@ -17960,13 +17960,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 1308.0466332042622, - "inverseInertia": 0.0007644987377478626, - "inverseMass": 0.7003043402210255, + "inertia": 1308.04663, + "inverseInertia": 0.00076, + "inverseMass": 0.7003, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4279505959999998, + "mass": 1.42795, "motion": 0, "parent": null, "position": { @@ -18009,12 +18009,12 @@ } ], { - "x": -0.5000018390041978, - "y": -0.8660243420322666 + "x": -0.5, + "y": -0.86602 }, { - "x": 0.5000018390041978, - "y": -0.8660243420322666 + "x": 0.5, + "y": -0.86602 }, { "x": 1, @@ -18029,12 +18029,12 @@ } }, { - "x": 972.1212738853482, + "x": 972.12127, "y": 353.592 }, { - "x": 931.5152738853482, - "y": 306.70399999999995 + "x": 931.51527, + "y": 306.704 }, { "category": 1, @@ -18051,16 +18051,16 @@ "y": 0 }, { - "x": 951.8182738853482, - "y": 330.14799999999997 + "x": 951.81827, + "y": 330.148 }, { "x": 0, "y": 0 }, { - "x": 951.8182738853482, - "y": 330.14799999999997 + "x": 951.81827, + "y": 330.148 }, { "fillStyle": "#556270", @@ -18103,42 +18103,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 972.1212738853482, - "y": 341.86999999999995 + "x": 972.12127, + "y": 341.87 }, { "body": null, "index": 1, "isInternal": false, - "x": 951.8182738853482, + "x": 951.81827, "y": 353.592 }, { "body": null, "index": 2, "isInternal": false, - "x": 931.5152738853482, - "y": 341.86999999999995 + "x": 931.51527, + "y": 341.87 }, { "body": null, "index": 3, "isInternal": false, - "x": 931.5152738853482, + "x": 931.51527, "y": 318.426 }, { "body": null, "index": 4, "isInternal": false, - "x": 951.8182738853482, - "y": 306.70399999999995 + "x": 951.81827, + "y": 306.704 }, { "body": null, "index": 5, "isInternal": false, - "x": 972.1212738853482, + "x": 972.12127, "y": 318.426 }, { @@ -18146,7 +18146,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1006.2524335919638, + "area": 1006.25243, "axes": { "#": 2066 }, @@ -18167,13 +18167,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 697.1461738741186, - "inverseInertia": 0.0014344194051053728, - "inverseMass": 0.9937864164266964, + "inertia": 697.14617, + "inverseInertia": 0.00143, + "inverseMass": 0.99379, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0062524335919638, + "mass": 1.00625, "motion": 0, "parent": null, "position": { @@ -18229,12 +18229,12 @@ } }, { - "x": 1008.1616545437843, - "y": 334.62413888888887 + "x": 1008.16165, + "y": 334.62414 }, { - "x": 972.1212738853482, - "y": 306.70399999999995 + "x": 972.12127, + "y": 306.704 }, { "category": 1, @@ -18251,16 +18251,16 @@ "y": 0 }, { - "x": 990.1414642145662, - "y": 320.6640694444444 + "x": 990.14146, + "y": 320.66407 }, { "x": 0, "y": 0 }, { - "x": 990.1414642145662, - "y": 320.6640694444444 + "x": 990.14146, + "y": 320.66407 }, { "fillStyle": "#FF6B6B", @@ -18297,36 +18297,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 972.1212738853482, - "y": 306.70399999999995 + "x": 972.12127, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 1008.1616545437843, - "y": 306.70399999999995 + "x": 1008.16165, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 1008.1616545437843, - "y": 334.62413888888887 + "x": 1008.16165, + "y": 334.62414 }, { "body": null, "index": 3, "isInternal": false, - "x": 972.1212738853482, - "y": 334.62413888888887 + "x": 972.12127, + "y": 334.62414 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3210.130139, + "area": 3210.13014, "axes": { "#": 2087 }, @@ -18347,13 +18347,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 6586.462154550281, - "inverseInertia": 0.00015182657647385802, - "inverseMass": 0.3115138504358312, + "inertia": 6586.46215, + "inverseInertia": 0.00015, + "inverseMass": 0.31151, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.210130139, + "mass": 3.21013, "motion": 0, "parent": null, "position": { @@ -18408,28 +18408,28 @@ } ], { - "x": 0.6234920819000309, - "y": 0.7818296641903307 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.2225269729299679, - "y": 0.9749265338058173 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009636744259215, - "y": 0.4338945233175249 + "x": -0.90096, + "y": 0.43389 }, { - "x": -0.9009636744259215, - "y": -0.4338945233175249 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.2225269729299679, - "y": -0.9749265338058173 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6234920819000309, - "y": -0.7818296641903307 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -18444,12 +18444,12 @@ } }, { - "x": 1071.57552335436, - "y": 373.48799999999994 + "x": 1071.57552, + "y": 373.488 }, { - "x": 1006.4655233543602, - "y": 306.70399999999995 + "x": 1006.46552, + "y": 306.704 }, { "category": 1, @@ -18466,16 +18466,16 @@ "y": 0 }, { - "x": 1040.7166545437842, - "y": 340.09599999999995 + "x": 1040.71665, + "y": 340.096 }, { "x": 0, "y": 0 }, { - "x": 1040.7166545437842, - "y": 340.09599999999995 + "x": 1040.71665, + "y": 340.096 }, { "fillStyle": "#C7F464", @@ -18521,57 +18521,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 1071.57552335436, - "y": 354.95699999999994 + "x": 1071.57552, + "y": 354.957 }, { "body": null, "index": 1, "isInternal": false, - "x": 1048.3385233543602, - "y": 373.48799999999994 + "x": 1048.33852, + "y": 373.488 }, { "body": null, "index": 2, "isInternal": false, - "x": 1019.3615233543602, - "y": 366.87399999999997 + "x": 1019.36152, + "y": 366.874 }, { "body": null, "index": 3, "isInternal": false, - "x": 1006.4655233543602, - "y": 340.09599999999995 + "x": 1006.46552, + "y": 340.096 }, { "body": null, "index": 4, "isInternal": false, - "x": 1019.3615233543602, - "y": 313.3179999999999 + "x": 1019.36152, + "y": 313.318 }, { "body": null, "index": 5, "isInternal": false, - "x": 1048.3385233543602, - "y": 306.70399999999995 + "x": 1048.33852, + "y": 306.704 }, { "body": null, "index": 6, "isInternal": false, - "x": 1071.57552335436, - "y": 325.23499999999996 + "x": 1071.57552, + "y": 325.235 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1352.927270280826, + "area": 1352.92727, "axes": { "#": 2116 }, @@ -18592,13 +18592,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 1256.990937022409, - "inverseInertia": 0.0007955506842148158, - "inverseMass": 0.7391380320040639, + "inertia": 1256.99094, + "inverseInertia": 0.0008, + "inverseMass": 0.73914, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.352927270280826, + "mass": 1.35293, "motion": 0, "parent": null, "position": { @@ -18654,12 +18654,12 @@ } }, { - "x": 1113.1448391979816, - "y": 339.25029629629626 + "x": 1113.14484, + "y": 339.2503 }, { - "x": 1071.57552335436, - "y": 306.70399999999995 + "x": 1071.57552, + "y": 306.704 }, { "category": 1, @@ -18676,16 +18676,16 @@ "y": 0 }, { - "x": 1092.3601812761708, - "y": 322.9771481481481 + "x": 1092.36018, + "y": 322.97715 }, { "x": 0, "y": 0 }, { - "x": 1092.3601812761708, - "y": 322.9771481481481 + "x": 1092.36018, + "y": 322.97715 }, { "fillStyle": "#C44D58", @@ -18722,36 +18722,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1071.57552335436, - "y": 306.70399999999995 + "x": 1071.57552, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 1113.1448391979816, - "y": 306.70399999999995 + "x": 1113.14484, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 1113.1448391979816, - "y": 339.25029629629626 + "x": 1113.14484, + "y": 339.2503 }, { "body": null, "index": 3, "isInternal": false, - "x": 1071.57552335436, - "y": 339.25029629629626 + "x": 1071.57552, + "y": 339.2503 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1720.1260092915415, + "area": 1720.12601, "axes": { "#": 2137 }, @@ -18772,13 +18772,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 2025.862459801684, - "inverseInertia": 0.0004936169260463478, - "inverseMass": 0.5813527582272093, + "inertia": 2025.86246, + "inverseInertia": 0.00049, + "inverseMass": 0.58135, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7201260092915416, + "mass": 1.72013, "motion": 0, "parent": null, "position": { @@ -18834,12 +18834,12 @@ } }, { - "x": 56.932613168724274, - "y": 449.25071707818927 + "x": 56.93261, + "y": 449.25072 }, { "x": 20, - "y": 402.67599999999993 + "y": 402.676 }, { "category": 1, @@ -18856,16 +18856,16 @@ "y": 0 }, { - "x": 38.46630658436214, - "y": 425.9633585390946 + "x": 38.46631, + "y": 425.96336 }, { "x": 0, "y": 0 }, { - "x": 38.46630658436214, - "y": 425.9633585390946 + "x": 38.46631, + "y": 425.96336 }, { "fillStyle": "#4ECDC4", @@ -18903,35 +18903,35 @@ "index": 0, "isInternal": false, "x": 20, - "y": 402.67599999999993 + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 56.932613168724274, - "y": 402.67599999999993 + "x": 56.93261, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.932613168724274, - "y": 449.25071707818927 + "x": 56.93261, + "y": 449.25072 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 449.25071707818927 + "y": 449.25072 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1250.161678324093, + "area": 1250.16168, "axes": { "#": 2158 }, @@ -18952,13 +18952,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 1044.2197391722605, - "inverseInertia": 0.0009576528411469095, - "inverseMass": 0.7998965392544685, + "inertia": 1044.21974, + "inverseInertia": 0.00096, + "inverseMass": 0.7999, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.250161678324093, + "mass": 1.25016, "motion": 0, "parent": null, "position": { @@ -19014,12 +19014,12 @@ } }, { - "x": 93.48006687242797, - "y": 436.8825329218106 + "x": 93.48007, + "y": 436.88253 }, { - "x": 56.932613168724274, - "y": 402.67599999999993 + "x": 56.93261, + "y": 402.676 }, { "category": 1, @@ -19036,16 +19036,16 @@ "y": 0 }, { - "x": 75.20634002057612, - "y": 419.77926646090526 + "x": 75.20634, + "y": 419.77927 }, { "x": 0, "y": 0 }, { - "x": 75.20634002057612, - "y": 419.77926646090526 + "x": 75.20634, + "y": 419.77927 }, { "fillStyle": "#FF6B6B", @@ -19082,36 +19082,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.932613168724274, - "y": 402.67599999999993 + "x": 56.93261, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 93.48006687242797, - "y": 402.67599999999993 + "x": 93.48007, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 93.48006687242797, - "y": 436.8825329218106 + "x": 93.48007, + "y": 436.88253 }, { "body": null, "index": 3, "isInternal": false, - "x": 56.932613168724274, - "y": 436.8825329218106 + "x": 56.93261, + "y": 436.88253 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3092.075232, + "area": 3092.07523, "axes": { "#": 2179 }, @@ -19132,13 +19132,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 6189.985619847792, - "inverseInertia": 0.00016155126383388745, - "inverseMass": 0.32340739631783966, + "inertia": 6189.98562, + "inverseInertia": 0.00016, + "inverseMass": 0.32341, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.092075232, + "mass": 3.09208, "motion": 0, "parent": null, "position": { @@ -19187,20 +19187,20 @@ } ], { - "x": 0.3090076656207097, - "y": 0.9510595473405646 + "x": 0.30901, + "y": 0.95106 }, { - "x": -0.8090195640060213, - "y": 0.5877817154824632 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090195640060213, - "y": -0.5877817154824632 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090076656207097, - "y": -0.9510595473405646 + "x": 0.30901, + "y": -0.95106 }, { "x": 1, @@ -19215,12 +19215,12 @@ } }, { - "x": 155.27345245050316, + "x": 155.27345, "y": 471.27 }, { - "x": 90.03645245050316, - "y": 402.67599999999993 + "x": 90.03645, + "y": 402.676 }, { "category": 1, @@ -19237,16 +19237,16 @@ "y": 0 }, { - "x": 126.09856687242797, - "y": 436.97299999999996 + "x": 126.09857, + "y": 436.973 }, { "x": 0, "y": 0 }, { - "x": 126.09856687242797, - "y": 436.97299999999996 + "x": 126.09857, + "y": 436.973 }, { "fillStyle": "#C44D58", @@ -19286,43 +19286,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 155.27345245050316, - "y": 458.16999999999996 + "x": 155.27345, + "y": 458.17 }, { "body": null, "index": 1, "isInternal": false, - "x": 114.95445245050317, + "x": 114.95445, "y": 471.27 }, { "body": null, "index": 2, "isInternal": false, - "x": 90.03645245050316, - "y": 436.97299999999996 + "x": 90.03645, + "y": 436.973 }, { "body": null, "index": 3, "isInternal": false, - "x": 114.95445245050317, - "y": 402.67599999999993 + "x": 114.95445, + "y": 402.676 }, { "body": null, "index": 4, "isInternal": false, - "x": 155.27345245050316, - "y": 415.77599999999995 + "x": 155.27345, + "y": 415.776 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1581.4152047253658, + "area": 1581.4152, "axes": { "#": 2204 }, @@ -19343,13 +19343,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 1771.7086023235004, - "inverseInertia": 0.0005644269033229019, - "inverseMass": 0.6323450014973541, + "inertia": 1771.7086, + "inverseInertia": 0.00056, + "inverseMass": 0.63235, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5814152047253658, + "mass": 1.58142, "motion": 0, "parent": null, "position": { @@ -19405,12 +19405,12 @@ } }, { - "x": 202.69706356161424, - "y": 436.0225792181069 + "x": 202.69706, + "y": 436.02258 }, { - "x": 155.27345245050316, - "y": 402.67599999999993 + "x": 155.27345, + "y": 402.676 }, { "category": 1, @@ -19427,16 +19427,16 @@ "y": 0 }, { - "x": 178.9852580060587, - "y": 419.3492896090534 + "x": 178.98526, + "y": 419.34929 }, { "x": 0, "y": 0 }, { - "x": 178.9852580060587, - "y": 419.3492896090534 + "x": 178.98526, + "y": 419.34929 }, { "fillStyle": "#556270", @@ -19473,36 +19473,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 155.27345245050316, - "y": 402.67599999999993 + "x": 155.27345, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 202.69706356161424, - "y": 402.67599999999993 + "x": 202.69706, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 202.69706356161424, - "y": 436.0225792181069 + "x": 202.69706, + "y": 436.02258 }, { "body": null, "index": 3, "isInternal": false, - "x": 155.27345245050316, - "y": 436.0225792181069 + "x": 155.27345, + "y": 436.02258 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4508.288001999999, + "area": 4508.288, "axes": { "#": 2225 }, @@ -19523,13 +19523,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 12968.580393466536, - "inverseInertia": 0.00007710944217948417, - "inverseMass": 0.22181369059748904, + "inertia": 12968.58039, + "inverseInertia": 0.00008, + "inverseMass": 0.22181, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.508288002, + "mass": 4.50829, "motion": 0, "parent": null, "position": { @@ -19575,16 +19575,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -19599,12 +19599,12 @@ } }, { - "x": 276.4670635616142, - "y": 476.4459999999999 + "x": 276.46706, + "y": 476.446 }, { - "x": 202.69706356161424, - "y": 402.67599999999993 + "x": 202.69706, + "y": 402.676 }, { "category": 1, @@ -19621,16 +19621,16 @@ "y": 0 }, { - "x": 239.58206356161423, - "y": 439.5609999999999 + "x": 239.58206, + "y": 439.561 }, { "x": 0, "y": 0 }, { - "x": 239.58206356161423, - "y": 439.5609999999999 + "x": 239.58206, + "y": 439.561 }, { "fillStyle": "#4ECDC4", @@ -19679,64 +19679,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 276.4670635616142, - "y": 454.83899999999994 + "x": 276.46706, + "y": 454.839 }, { "body": null, "index": 1, "isInternal": false, - "x": 254.86006356161423, - "y": 476.4459999999999 + "x": 254.86006, + "y": 476.446 }, { "body": null, "index": 2, "isInternal": false, - "x": 224.30406356161424, - "y": 476.4459999999999 + "x": 224.30406, + "y": 476.446 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.69706356161424, - "y": 454.83899999999994 + "x": 202.69706, + "y": 454.839 }, { "body": null, "index": 4, "isInternal": false, - "x": 202.69706356161424, - "y": 424.2829999999999 + "x": 202.69706, + "y": 424.283 }, { "body": null, "index": 5, "isInternal": false, - "x": 224.30406356161424, - "y": 402.67599999999993 + "x": 224.30406, + "y": 402.676 }, { "body": null, "index": 6, "isInternal": false, - "x": 254.86006356161423, - "y": 402.67599999999993 + "x": 254.86006, + "y": 402.676 }, { "body": null, "index": 7, "isInternal": false, - "x": 276.4670635616142, - "y": 424.2829999999999 + "x": 276.46706, + "y": 424.283 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1039.6267295619953, + "area": 1039.62673, "axes": { "#": 2252 }, @@ -19757,13 +19757,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 836.7694481463552, - "inverseInertia": 0.0011950723131864333, - "inverseMass": 0.9618836949501189, + "inertia": 836.76945, + "inverseInertia": 0.0012, + "inverseMass": 0.96188, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0396267295619952, + "mass": 1.03963, "motion": 0, "parent": null, "position": { @@ -19819,12 +19819,12 @@ } }, { - "x": 319.1418320801327, - "y": 427.0376255144032 + "x": 319.14183, + "y": 427.03763 }, { - "x": 276.46706356161417, - "y": 402.67599999999993 + "x": 276.46706, + "y": 402.676 }, { "category": 1, @@ -19841,16 +19841,16 @@ "y": 0 }, { - "x": 297.80444782087346, - "y": 414.85681275720157 + "x": 297.80445, + "y": 414.85681 }, { "x": 0, "y": 0 }, { - "x": 297.80444782087346, - "y": 414.85681275720157 + "x": 297.80445, + "y": 414.85681 }, { "fillStyle": "#C7F464", @@ -19887,36 +19887,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 276.46706356161417, - "y": 402.67599999999993 + "x": 276.46706, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 319.1418320801327, - "y": 402.67599999999993 + "x": 319.14183, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 319.1418320801327, - "y": 427.0376255144032 + "x": 319.14183, + "y": 427.03763 }, { "body": null, "index": 3, "isInternal": false, - "x": 276.46706356161417, - "y": 427.0376255144032 + "x": 276.46706, + "y": 427.03763 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1574.8717250450893, + "area": 1574.87173, "axes": { "#": 2273 }, @@ -19937,13 +19937,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 1691.4099419533813, - "inverseInertia": 0.0005912227279716214, - "inverseMass": 0.6349723498727298, + "inertia": 1691.40994, + "inverseInertia": 0.00059, + "inverseMass": 0.63497, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5748717250450894, + "mass": 1.57487, "motion": 0, "parent": null, "position": { @@ -19999,12 +19999,12 @@ } }, { - "x": 354.8033547138776, - "y": 446.83765123456783 + "x": 354.80335, + "y": 446.83765 }, { - "x": 319.1418320801327, - "y": 402.67599999999993 + "x": 319.14183, + "y": 402.676 }, { "category": 1, @@ -20021,16 +20021,16 @@ "y": 0 }, { - "x": 336.97259339700514, - "y": 424.7568256172839 + "x": 336.97259, + "y": 424.75683 }, { "x": 0, "y": 0 }, { - "x": 336.97259339700514, - "y": 424.7568256172839 + "x": 336.97259, + "y": 424.75683 }, { "fillStyle": "#556270", @@ -20067,36 +20067,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 319.1418320801327, - "y": 402.67599999999993 + "x": 319.14183, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.8033547138776, - "y": 402.67599999999993 + "x": 354.80335, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 354.8033547138776, - "y": 446.83765123456783 + "x": 354.80335, + "y": 446.83765 }, { "body": null, "index": 3, "isInternal": false, - "x": 319.1418320801327, - "y": 446.83765123456783 + "x": 319.14183, + "y": 446.83765 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 968.3879641074045, + "area": 968.38796, "axes": { "#": 2294 }, @@ -20117,13 +20117,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 797.6175154248832, - "inverseInertia": 0.001253733751655779, - "inverseMass": 1.0326439785130264, + "inertia": 797.61752, + "inverseInertia": 0.00125, + "inverseMass": 1.03264, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9683879641074046, + "mass": 0.96839, "motion": 0, "parent": null, "position": { @@ -20179,12 +20179,12 @@ } }, { - "x": 399.55502652457716, - "y": 424.3151460905349 + "x": 399.55503, + "y": 424.31515 }, { - "x": 354.8033547138776, - "y": 402.67599999999993 + "x": 354.80335, + "y": 402.676 }, { "category": 1, @@ -20201,16 +20201,16 @@ "y": 0 }, { - "x": 377.17919061922737, - "y": 413.4955730452674 + "x": 377.17919, + "y": 413.49557 }, { "x": 0, "y": 0 }, { - "x": 377.17919061922737, - "y": 413.4955730452674 + "x": 377.17919, + "y": 413.49557 }, { "fillStyle": "#C7F464", @@ -20247,36 +20247,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 354.8033547138776, - "y": 402.67599999999993 + "x": 354.80335, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 399.55502652457716, - "y": 402.67599999999993 + "x": 399.55503, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 399.55502652457716, - "y": 424.3151460905349 + "x": 399.55503, + "y": 424.31515 }, { "body": null, "index": 3, "isInternal": false, - "x": 354.8033547138776, - "y": 424.3151460905349 + "x": 354.80335, + "y": 424.31515 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1379.2675785219164, + "area": 1379.26758, "axes": { "#": 2315 }, @@ -20297,13 +20297,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 1297.383606626366, - "inverseInertia": 0.0007707820531202307, - "inverseMass": 0.7250224797364148, + "inertia": 1297.38361, + "inverseInertia": 0.00077, + "inverseMass": 0.72502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3792675785219164, + "mass": 1.37927, "motion": 0, "parent": null, "position": { @@ -20359,12 +20359,12 @@ } }, { - "x": 432.9261684998858, - "y": 444.00714711934154 + "x": 432.92617, + "y": 444.00715 }, { - "x": 399.55502652457716, - "y": 402.67599999999993 + "x": 399.55503, + "y": 402.676 }, { "category": 1, @@ -20381,16 +20381,16 @@ "y": 0 }, { - "x": 416.2405975122315, - "y": 423.34157355967073 + "x": 416.2406, + "y": 423.34157 }, { "x": 0, "y": 0 }, { - "x": 416.2405975122315, - "y": 423.34157355967073 + "x": 416.2406, + "y": 423.34157 }, { "fillStyle": "#C7F464", @@ -20427,36 +20427,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 399.55502652457716, - "y": 402.67599999999993 + "x": 399.55503, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 432.9261684998858, - "y": 402.67599999999993 + "x": 432.92617, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 432.9261684998858, - "y": 444.00714711934154 + "x": 432.92617, + "y": 444.00715 }, { "body": null, "index": 3, "isInternal": false, - "x": 399.55502652457716, - "y": 444.00714711934154 + "x": 399.55503, + "y": 444.00715 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1475.914064, + "area": 1475.91406, "axes": { "#": 2336 }, @@ -20477,13 +20477,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 1397.3944234227881, - "inverseInertia": 0.0007156175688397215, - "inverseMass": 0.6775462233145303, + "inertia": 1397.39442, + "inverseInertia": 0.00072, + "inverseMass": 0.67755, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4759140640000001, + "mass": 1.47591, "motion": 0, "parent": null, "position": { @@ -20526,12 +20526,12 @@ } ], { - "x": -0.5000287318776591, - "y": -0.8660088147916394 + "x": -0.50003, + "y": -0.86601 }, { - "x": 0.5000287318776591, - "y": -0.8660088147916394 + "x": 0.50003, + "y": -0.86601 }, { "x": 1, @@ -20546,12 +20546,12 @@ } }, { - "x": 474.20816849988586, - "y": 450.3459999999999 + "x": 474.20817, + "y": 450.346 }, { - "x": 432.9261684998858, - "y": 402.67599999999993 + "x": 432.92617, + "y": 402.676 }, { "category": 1, @@ -20568,16 +20568,16 @@ "y": 0 }, { - "x": 453.56716849988584, - "y": 426.5109999999999 + "x": 453.56717, + "y": 426.511 }, { "x": 0, "y": 0 }, { - "x": 453.56716849988584, - "y": 426.5109999999999 + "x": 453.56717, + "y": 426.511 }, { "fillStyle": "#556270", @@ -20620,50 +20620,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 474.20816849988586, - "y": 438.4279999999999 + "x": 474.20817, + "y": 438.428 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.56716849988584, - "y": 450.3459999999999 + "x": 453.56717, + "y": 450.346 }, { "body": null, "index": 2, "isInternal": false, - "x": 432.9261684998858, - "y": 438.4279999999999 + "x": 432.92617, + "y": 438.428 }, { "body": null, "index": 3, "isInternal": false, - "x": 432.9261684998858, - "y": 414.59399999999994 + "x": 432.92617, + "y": 414.594 }, { "body": null, "index": 4, "isInternal": false, - "x": 453.56716849988584, - "y": 402.67599999999993 + "x": 453.56717, + "y": 402.676 }, { "body": null, "index": 5, "isInternal": false, - "x": 474.20816849988586, - "y": 414.59399999999994 + "x": 474.20817, + "y": 414.594 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2731.525696, + "area": 2731.5257, "axes": { "#": 2360 }, @@ -20684,13 +20684,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 4974.15508527219, - "inverseInertia": 0.00020103916803094191, - "inverseMass": 0.3660957689193197, + "inertia": 4974.15509, + "inverseInertia": 0.0002, + "inverseMass": 0.3661, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.7315256960000003, + "mass": 2.73153, "motion": 0, "parent": null, "position": { @@ -20746,12 +20746,12 @@ } }, { - "x": 526.4721684998858, - "y": 454.93999999999994 + "x": 526.47217, + "y": 454.94 }, { - "x": 474.20816849988586, - "y": 402.67599999999993 + "x": 474.20817, + "y": 402.676 }, { "category": 1, @@ -20768,16 +20768,16 @@ "y": 0 }, { - "x": 500.34016849988586, - "y": 428.80799999999994 + "x": 500.34017, + "y": 428.808 }, { "x": 0, "y": 0 }, { - "x": 500.34016849988586, - "y": 428.80799999999994 + "x": 500.34017, + "y": 428.808 }, { "fillStyle": "#556270", @@ -20814,29 +20814,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 526.4721684998858, - "y": 454.93999999999994 + "x": 526.47217, + "y": 454.94 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.20816849988586, - "y": 454.93999999999994 + "x": 474.20817, + "y": 454.94 }, { "body": null, "index": 2, "isInternal": false, - "x": 474.20816849988586, - "y": 402.67599999999993 + "x": 474.20817, + "y": 402.676 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.4721684998858, - "y": 402.67599999999993 + "x": 526.47217, + "y": 402.676 }, { "angle": 0, @@ -20864,13 +20864,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 1356.1358869695257, - "inverseInertia": 0.0007373892318671982, - "inverseMass": 0.6877756996176496, + "inertia": 1356.13589, + "inverseInertia": 0.00074, + "inverseMass": 0.68778, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.45396239, + "mass": 1.45396, "motion": 0, "parent": null, "position": { @@ -20913,12 +20913,12 @@ } ], { - "x": -0.5000261561969946, - "y": -0.8660103019703972 + "x": -0.50003, + "y": -0.86601 }, { - "x": 0.5000261561969946, - "y": -0.8660103019703972 + "x": 0.50003, + "y": -0.86601 }, { "x": 1, @@ -20933,12 +20933,12 @@ } }, { - "x": 567.4461684998857, - "y": 449.9899999999999 + "x": 567.44617, + "y": 449.99 }, { - "x": 526.4721684998858, - "y": 402.67599999999993 + "x": 526.47217, + "y": 402.676 }, { "category": 1, @@ -20955,16 +20955,16 @@ "y": 0 }, { - "x": 546.9591684998858, - "y": 426.3329999999999 + "x": 546.95917, + "y": 426.333 }, { "x": 0, "y": 0 }, { - "x": 546.9591684998858, - "y": 426.3329999999999 + "x": 546.95917, + "y": 426.333 }, { "fillStyle": "#C44D58", @@ -21007,43 +21007,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 567.4461684998857, - "y": 438.1609999999999 + "x": 567.44617, + "y": 438.161 }, { "body": null, "index": 1, "isInternal": false, - "x": 546.9591684998858, - "y": 449.9899999999999 + "x": 546.95917, + "y": 449.99 }, { "body": null, "index": 2, "isInternal": false, - "x": 526.4721684998858, - "y": 438.1609999999999 + "x": 526.47217, + "y": 438.161 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.4721684998858, - "y": 414.50499999999994 + "x": 526.47217, + "y": 414.505 }, { "body": null, "index": 4, "isInternal": false, - "x": 546.9591684998858, - "y": 402.67599999999993 + "x": 546.95917, + "y": 402.676 }, { "body": null, "index": 5, "isInternal": false, - "x": 567.4461684998857, - "y": 414.50499999999994 + "x": 567.44617, + "y": 414.505 }, { "angle": 0, @@ -21071,13 +21071,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 15527.371235563205, - "inverseInertia": 0.00006440240172204064, - "inverseMass": 0.20720746724324493, + "inertia": 15527.37124, + "inverseInertia": 0.00006, + "inverseMass": 0.20721, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.8260809, + "mass": 4.82608, "motion": 0, "parent": null, "position": { @@ -21133,12 +21133,12 @@ } }, { - "x": 636.9161684998858, - "y": 472.14599999999996 + "x": 636.91617, + "y": 472.146 }, { - "x": 567.4461684998857, - "y": 402.67599999999993 + "x": 567.44617, + "y": 402.676 }, { "category": 1, @@ -21155,16 +21155,16 @@ "y": 0 }, { - "x": 602.1811684998858, - "y": 437.41099999999994 + "x": 602.18117, + "y": 437.411 }, { "x": 0, "y": 0 }, { - "x": 602.1811684998858, - "y": 437.41099999999994 + "x": 602.18117, + "y": 437.411 }, { "fillStyle": "#C7F464", @@ -21201,36 +21201,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 636.9161684998858, - "y": 472.14599999999996 + "x": 636.91617, + "y": 472.146 }, { "body": null, "index": 1, "isInternal": false, - "x": 567.4461684998857, - "y": 472.14599999999996 + "x": 567.44617, + "y": 472.146 }, { "body": null, "index": 2, "isInternal": false, - "x": 567.4461684998857, - "y": 402.67599999999993 + "x": 567.44617, + "y": 402.676 }, { "body": null, "index": 3, "isInternal": false, - "x": 636.9161684998858, - "y": 402.67599999999993 + "x": 636.91617, + "y": 402.676 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1288.7426280768939, + "area": 1288.74263, "axes": { "#": 2426 }, @@ -21251,13 +21251,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 1283.525413611018, - "inverseInertia": 0.0007791041684064836, - "inverseMass": 0.7759501224012698, + "inertia": 1283.52541, + "inverseInertia": 0.00078, + "inverseMass": 0.77595, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2887426280768939, + "mass": 1.28874, "motion": 0, "parent": null, "position": { @@ -21313,12 +21313,12 @@ } }, { - "x": 684.3455666480339, - "y": 429.8478106995884 + "x": 684.34557, + "y": 429.84781 }, { - "x": 636.9161684998858, - "y": 402.67599999999993 + "x": 636.91617, + "y": 402.676 }, { "category": 1, @@ -21335,16 +21335,16 @@ "y": 0 }, { - "x": 660.6308675739599, - "y": 416.2619053497942 + "x": 660.63087, + "y": 416.26191 }, { "x": 0, "y": 0 }, { - "x": 660.6308675739599, - "y": 416.2619053497942 + "x": 660.63087, + "y": 416.26191 }, { "fillStyle": "#FF6B6B", @@ -21381,36 +21381,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 636.9161684998858, - "y": 402.67599999999993 + "x": 636.91617, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 684.3455666480339, - "y": 402.67599999999993 + "x": 684.34557, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 684.3455666480339, - "y": 429.8478106995884 + "x": 684.34557, + "y": 429.84781 }, { "body": null, "index": 3, "isInternal": false, - "x": 636.9161684998858, - "y": 429.8478106995884 + "x": 636.91617, + "y": 429.84781 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1779.883796, + "area": 1779.8838, "axes": { "#": 2447 }, @@ -21431,13 +21431,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 2051.033881833643, - "inverseInertia": 0.0004875589861567722, - "inverseMass": 0.5618344311282218, + "inertia": 2051.03388, + "inverseInertia": 0.00049, + "inverseMass": 0.56183, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.779883796, + "mass": 1.77988, "motion": 0, "parent": null, "position": { @@ -21486,20 +21486,20 @@ } ], { - "x": 0.30900874044209636, - "y": 0.9510591981209104 + "x": 0.30901, + "y": 0.95106 }, { - "x": -0.8090075783738877, - "y": 0.5877982120878029 + "x": -0.80901, + "y": 0.5878 }, { - "x": -0.8090075783738877, - "y": -0.5877982120878029 + "x": -0.80901, + "y": -0.5878 }, { - "x": 0.30900874044209636, - "y": -0.9510591981209104 + "x": 0.30901, + "y": -0.95106 }, { "x": 1, @@ -21514,12 +21514,12 @@ } }, { - "x": 731.228775125426, - "y": 454.71799999999996 + "x": 731.22878, + "y": 454.718 }, { - "x": 681.732775125426, - "y": 402.67599999999993 + "x": 681.73278, + "y": 402.676 }, { "category": 1, @@ -21536,16 +21536,16 @@ "y": 0 }, { - "x": 709.0935666480339, - "y": 428.69699999999995 + "x": 709.09357, + "y": 428.697 }, { "x": 0, "y": 0 }, { - "x": 709.0935666480339, - "y": 428.69699999999995 + "x": 709.09357, + "y": 428.697 }, { "fillStyle": "#4ECDC4", @@ -21585,43 +21585,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 731.228775125426, - "y": 444.77899999999994 + "x": 731.22878, + "y": 444.779 }, { "body": null, "index": 1, "isInternal": false, - "x": 700.6387751254259, - "y": 454.71799999999996 + "x": 700.63878, + "y": 454.718 }, { "body": null, "index": 2, "isInternal": false, - "x": 681.732775125426, - "y": 428.69699999999995 + "x": 681.73278, + "y": 428.697 }, { "body": null, "index": 3, "isInternal": false, - "x": 700.6387751254259, - "y": 402.67599999999993 + "x": 700.63878, + "y": 402.676 }, { "body": null, "index": 4, "isInternal": false, - "x": 731.228775125426, - "y": 412.61499999999995 + "x": 731.22878, + "y": 412.615 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4428.370116000001, + "area": 4428.37012, "axes": { "#": 2472 }, @@ -21642,13 +21642,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 13073.641256187908, - "inverseInertia": 0.0000764897843228403, - "inverseMass": 0.22581671671636758, + "inertia": 13073.64126, + "inverseInertia": 0.00008, + "inverseMass": 0.22582, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.428370116000001, + "mass": 4.42837, "motion": 0, "parent": null, "position": { @@ -21704,12 +21704,12 @@ } }, { - "x": 797.774775125426, + "x": 797.77478, "y": 469.222 }, { - "x": 731.228775125426, - "y": 402.67599999999993 + "x": 731.22878, + "y": 402.676 }, { "category": 1, @@ -21726,16 +21726,16 @@ "y": 0 }, { - "x": 764.501775125426, - "y": 435.94899999999996 + "x": 764.50178, + "y": 435.949 }, { "x": 0, "y": 0 }, { - "x": 764.501775125426, - "y": 435.94899999999996 + "x": 764.50178, + "y": 435.949 }, { "fillStyle": "#4ECDC4", @@ -21772,43 +21772,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 797.774775125426, + "x": 797.77478, "y": 469.222 }, { "body": null, "index": 1, "isInternal": false, - "x": 731.228775125426, + "x": 731.22878, "y": 469.222 }, { "body": null, "index": 2, "isInternal": false, - "x": 731.228775125426, - "y": 402.67599999999993 + "x": 731.22878, + "y": 402.676 }, { "body": null, "index": 3, "isInternal": false, - "x": 797.774775125426, - "y": 402.67599999999993 + "x": 797.77478, + "y": 402.676 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4006.5774799999995, + "area": 4006.57748, "axes": { "#": 2493 }, "bounds": { "#": 2507 }, - "circleRadius": 35.88631687242798, + "circleRadius": 35.88632, "collisionFilter": { "#": 2510 }, @@ -21823,13 +21823,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 10219.637720405184, - "inverseInertia": 0.00009785082674734506, - "inverseMass": 0.2495895823784244, + "inertia": 10219.63772, + "inverseInertia": 0.0001, + "inverseMass": 0.24959, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.00657748, + "mass": 4.00658, "motion": 0, "parent": null, "position": { @@ -21902,52 +21902,52 @@ } ], { - "x": -0.9709194534434736, - "y": -0.2394063802930625 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8854942138286769, - "y": -0.4646504032882501 + "x": -0.88549, + "y": -0.46465 }, { - "x": -0.7484734206820648, - "y": -0.6631647898769117 + "x": -0.74847, + "y": -0.66316 }, { - "x": -0.5680975359623629, - "y": -0.8229612321570753 + "x": -0.5681, + "y": -0.82296 }, { - "x": -0.35462984236614764, - "y": -0.9350067779986203 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12044873884362048, - "y": -0.9927195481660375 + "x": -0.12045, + "y": -0.99272 }, { - "x": 0.12044873884362048, - "y": -0.9927195481660375 + "x": 0.12045, + "y": -0.99272 }, { - "x": 0.35462984236614764, - "y": -0.9350067779986203 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680975359623629, - "y": -0.8229612321570753 + "x": 0.5681, + "y": -0.82296 }, { - "x": 0.7484734206820648, - "y": -0.6631647898769117 + "x": 0.74847, + "y": -0.66316 }, { - "x": 0.8854942138286769, - "y": -0.4646504032882501 + "x": 0.88549, + "y": -0.46465 }, { - "x": 0.9709194534434736, - "y": -0.2394063802930625 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -21962,12 +21962,12 @@ } }, { - "x": 869.024775125426, + "x": 869.02478, "y": 474.448 }, { - "x": 797.774775125426, - "y": 402.67599999999993 + "x": 797.77478, + "y": 402.676 }, { "category": 1, @@ -21984,16 +21984,16 @@ "y": 0 }, { - "x": 833.399775125426, - "y": 438.56199999999995 + "x": 833.39978, + "y": 438.562 }, { "x": 0, "y": 0 }, { - "x": 833.399775125426, - "y": 438.56199999999995 + "x": 833.39978, + "y": 438.562 }, { "fillStyle": "#C7F464", @@ -22096,190 +22096,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 869.024775125426, + "x": 869.02478, "y": 442.888 }, { "body": null, "index": 1, "isInternal": false, - "x": 866.953775125426, + "x": 866.95378, "y": 451.287 }, { "body": null, "index": 2, "isInternal": false, - "x": 862.933775125426, + "x": 862.93378, "y": 458.948 }, { "body": null, "index": 3, "isInternal": false, - "x": 857.196775125426, - "y": 465.42299999999994 + "x": 857.19678, + "y": 465.423 }, { "body": null, "index": 4, "isInternal": false, - "x": 850.076775125426, - "y": 470.33799999999997 + "x": 850.07678, + "y": 470.338 }, { "body": null, "index": 5, "isInternal": false, - "x": 841.987775125426, - "y": 473.40599999999995 + "x": 841.98778, + "y": 473.406 }, { "body": null, "index": 6, "isInternal": false, - "x": 833.399775125426, + "x": 833.39978, "y": 474.448 }, { "body": null, "index": 7, "isInternal": false, - "x": 824.811775125426, - "y": 473.40599999999995 + "x": 824.81178, + "y": 473.406 }, { "body": null, "index": 8, "isInternal": false, - "x": 816.722775125426, - "y": 470.33799999999997 + "x": 816.72278, + "y": 470.338 }, { "body": null, "index": 9, "isInternal": false, - "x": 809.602775125426, - "y": 465.42299999999994 + "x": 809.60278, + "y": 465.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 803.865775125426, + "x": 803.86578, "y": 458.948 }, { "body": null, "index": 11, "isInternal": false, - "x": 799.845775125426, + "x": 799.84578, "y": 451.287 }, { "body": null, "index": 12, "isInternal": false, - "x": 797.774775125426, + "x": 797.77478, "y": 442.888 }, { "body": null, "index": 13, "isInternal": false, - "x": 797.774775125426, - "y": 434.23599999999993 + "x": 797.77478, + "y": 434.236 }, { "body": null, "index": 14, "isInternal": false, - "x": 799.845775125426, - "y": 425.83699999999993 + "x": 799.84578, + "y": 425.837 }, { "body": null, "index": 15, "isInternal": false, - "x": 803.865775125426, - "y": 418.17599999999993 + "x": 803.86578, + "y": 418.176 }, { "body": null, "index": 16, "isInternal": false, - "x": 809.602775125426, - "y": 411.70099999999996 + "x": 809.60278, + "y": 411.701 }, { "body": null, "index": 17, "isInternal": false, - "x": 816.722775125426, - "y": 406.78599999999994 + "x": 816.72278, + "y": 406.786 }, { "body": null, "index": 18, "isInternal": false, - "x": 824.811775125426, - "y": 403.71799999999996 + "x": 824.81178, + "y": 403.718 }, { "body": null, "index": 19, "isInternal": false, - "x": 833.399775125426, - "y": 402.67599999999993 + "x": 833.39978, + "y": 402.676 }, { "body": null, "index": 20, "isInternal": false, - "x": 841.987775125426, - "y": 403.71799999999996 + "x": 841.98778, + "y": 403.718 }, { "body": null, "index": 21, "isInternal": false, - "x": 850.076775125426, - "y": 406.78599999999994 + "x": 850.07678, + "y": 406.786 }, { "body": null, "index": 22, "isInternal": false, - "x": 857.196775125426, - "y": 411.70099999999996 + "x": 857.19678, + "y": 411.701 }, { "body": null, "index": 23, "isInternal": false, - "x": 862.933775125426, - "y": 418.17599999999993 + "x": 862.93378, + "y": 418.176 }, { "body": null, "index": 24, "isInternal": false, - "x": 866.953775125426, - "y": 425.83699999999993 + "x": 866.95378, + "y": 425.837 }, { "body": null, "index": 25, "isInternal": false, - "x": 869.024775125426, - "y": 434.23599999999993 + "x": 869.02478, + "y": 434.236 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2513.037024864943, + "area": 2513.03702, "axes": { "#": 2547 }, @@ -22300,13 +22300,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 7118.367975988358, - "inverseInertia": 0.000140481638961795, - "inverseMass": 0.3979248972878713, + "inertia": 7118.36798, + "inverseInertia": 0.00014, + "inverseMass": 0.39792, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5130370248649427, + "mass": 2.51304, "motion": 0, "parent": null, "position": { @@ -22362,12 +22362,12 @@ } }, { - "x": 956.6310851391434, - "y": 431.3615709876542 + "x": 956.63109, + "y": 431.36157 }, { - "x": 869.024775125426, - "y": 402.67599999999993 + "x": 869.02478, + "y": 402.676 }, { "category": 1, @@ -22384,16 +22384,16 @@ "y": 0 }, { - "x": 912.8279301322847, - "y": 417.01878549382707 + "x": 912.82793, + "y": 417.01879 }, { "x": 0, "y": 0 }, { - "x": 912.8279301322847, - "y": 417.01878549382707 + "x": 912.82793, + "y": 417.01879 }, { "fillStyle": "#FF6B6B", @@ -22430,36 +22430,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 869.024775125426, - "y": 402.67599999999993 + "x": 869.02478, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 956.6310851391434, - "y": 402.67599999999993 + "x": 956.63109, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 956.6310851391434, - "y": 431.3615709876542 + "x": 956.63109, + "y": 431.36157 }, { "body": null, "index": 3, "isInternal": false, - "x": 869.024775125426, - "y": 431.3615709876542 + "x": 869.02478, + "y": 431.36157 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1629.3666616192165, + "area": 1629.36666, "axes": { "#": 2568 }, @@ -22480,13 +22480,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 1918.0622160315609, - "inverseInertia": 0.0005213595219392745, - "inverseMass": 0.6137354001132129, + "inertia": 1918.06222, + "inverseInertia": 0.00052, + "inverseMass": 0.61374, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6293666616192166, + "mass": 1.62937, "motion": 0, "parent": null, "position": { @@ -22542,12 +22542,12 @@ } }, { - "x": 989.5741149745343, - "y": 452.1361337448559 + "x": 989.57411, + "y": 452.13613 }, { - "x": 956.6310851391434, - "y": 402.67599999999993 + "x": 956.63109, + "y": 402.676 }, { "category": 1, @@ -22564,16 +22564,16 @@ "y": 0 }, { - "x": 973.1026000568388, - "y": 427.4060668724279 + "x": 973.1026, + "y": 427.40607 }, { "x": 0, "y": 0 }, { - "x": 973.1026000568388, - "y": 427.4060668724279 + "x": 973.1026, + "y": 427.40607 }, { "fillStyle": "#C44D58", @@ -22610,29 +22610,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 956.6310851391434, - "y": 402.67599999999993 + "x": 956.63109, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 989.5741149745343, - "y": 402.67599999999993 + "x": 989.57411, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 989.5741149745343, - "y": 452.1361337448559 + "x": 989.57411, + "y": 452.13613 }, { "body": null, "index": 3, "isInternal": false, - "x": 956.6310851391434, - "y": 452.1361337448559 + "x": 956.63109, + "y": 452.13613 }, { "angle": 0, @@ -22660,13 +22660,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 1107.5429879268129, - "inverseInertia": 0.0009028994909460621, - "inverseMass": 0.759666832613354, + "inertia": 1107.54299, + "inverseInertia": 0.0009, + "inverseMass": 0.75967, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.31636654, + "mass": 1.31637, "motion": 0, "parent": null, "position": { @@ -22721,28 +22721,28 @@ } ], { - "x": 0.6235089422456015, - "y": 0.7818162181355482 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22250665600611816, - "y": 0.9749311709207862 + "x": -0.22251, + "y": 0.97493 }, { - "x": -0.9009697215706803, - "y": 0.43388196645268706 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009697215706803, - "y": -0.43388196645268706 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22250665600611816, - "y": -0.9749311709207862 + "x": -0.22251, + "y": -0.97493 }, { - "x": 0.6235089422456015, - "y": -0.7818162181355482 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -22757,12 +22757,12 @@ } }, { - "x": 1030.182141764567, - "y": 445.4419999999999 + "x": 1030.18214, + "y": 445.442 }, { - "x": 988.488141764567, - "y": 402.67599999999993 + "x": 988.48814, + "y": 402.676 }, { "category": 1, @@ -22779,16 +22779,16 @@ "y": 0 }, { - "x": 1010.4211149745342, - "y": 424.0589999999999 + "x": 1010.42111, + "y": 424.059 }, { "x": 0, "y": 0 }, { - "x": 1010.4211149745342, - "y": 424.0589999999999 + "x": 1010.42111, + "y": 424.059 }, { "fillStyle": "#C7F464", @@ -22834,50 +22834,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 1030.182141764567, - "y": 433.57499999999993 + "x": 1030.18214, + "y": 433.575 }, { "body": null, "index": 1, "isInternal": false, - "x": 1015.302141764567, - "y": 445.4419999999999 + "x": 1015.30214, + "y": 445.442 }, { "body": null, "index": 2, "isInternal": false, - "x": 996.7461417645669, - "y": 441.20699999999994 + "x": 996.74614, + "y": 441.207 }, { "body": null, "index": 3, "isInternal": false, - "x": 988.488141764567, - "y": 424.0589999999999 + "x": 988.48814, + "y": 424.059 }, { "body": null, "index": 4, "isInternal": false, - "x": 996.7461417645669, - "y": 406.9109999999999 + "x": 996.74614, + "y": 406.911 }, { "body": null, "index": 5, "isInternal": false, - "x": 1015.302141764567, - "y": 402.67599999999993 + "x": 1015.30214, + "y": 402.676 }, { "body": null, "index": 6, "isInternal": false, - "x": 1030.182141764567, - "y": 414.5429999999999 + "x": 1030.18214, + "y": 414.543 }, [], [], diff --git a/test/browser/refs/broadphase/broadphase-10.json b/test/browser/refs/broadphase/broadphase-10.json index f2407f44..5a83d67e 100644 --- a/test/browser/refs/broadphase/broadphase-10.json +++ b/test/browser/refs/broadphase/broadphase-10.json @@ -1198,11 +1198,11 @@ } ], { - "angle": 0.07364913609584253, - "anglePrev": 0.05829756084176486, - "angularSpeed": 0.01335170471330019, - "angularVelocity": 0.01596382300515066, - "area": 1534.906434764454, + "angle": 0.07365, + "anglePrev": 0.0583, + "angularSpeed": 0.01335, + "angularVelocity": 0.01596, + "area": 1534.90643, "axes": { "#": 97 }, @@ -1223,13 +1223,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1251,7 +1251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2459668542521969, + "speed": 1.24597, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1272,12 +1272,12 @@ } ], { - "x": -0.0735825729353187, - "y": 0.9972891280667899 + "x": -0.07358, + "y": 0.99729 }, { - "x": -0.9972891280667899, - "y": -0.0735825729353187 + "x": -0.99729, + "y": -0.07358 }, { "max": { @@ -1288,12 +1288,12 @@ } }, { - "x": 59.80429832792328, - "y": 73.86388178930301 + "x": 59.8043, + "y": 73.86388 }, { - "x": 20.13203272812549, - "y": 27.91804343014621 + "x": 20.13203, + "y": 27.91804 }, { "category": 1, @@ -1310,16 +1310,16 @@ "y": 0 }, { - "x": 39.83554364595931, - "y": 50.2822592444708 + "x": 39.83554, + "y": 50.28226 }, { "x": 0, "y": 0 }, { - "x": 39.507821173246306, - "y": 49.314279616050094 + "x": 39.50782, + "y": 49.31428 }, { "endCol": 1, @@ -1342,8 +1342,8 @@ "yScale": 1 }, { - "x": 0.32048463612286326, - "y": 1.00096930364451 + "x": 0.32048, + "y": 1.00097 }, [ { @@ -1363,36 +1363,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 23.234575297975937, - "y": 27.91804343014621 + "x": 23.23458, + "y": 27.91804 }, { "body": null, "index": 1, "isInternal": false, - "x": 59.53905456379311, - "y": 30.59668186936607 + "x": 59.53905, + "y": 30.59668 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.43651199394265, - "y": 72.64647505879542 + "x": 56.43651, + "y": 72.64648 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.13203272812549, - "y": 69.96783661957551 + "x": 20.13203, + "y": 69.96784 }, { - "angle": 0.06831844616009528, - "anglePrev": 0.05275759956688849, - "angularSpeed": 0.013395122568092381, - "angularVelocity": 0.01549117367761256, - "area": 2220.52878634164, + "angle": 0.06832, + "anglePrev": 0.05276, + "angularSpeed": 0.0134, + "angularVelocity": 0.01549, + "area": 2220.52879, "axes": { "#": 119 }, @@ -1413,13 +1413,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1441,7 +1441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9443430576298315, + "speed": 1.94434, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1462,12 +1462,12 @@ } ], { - "x": -0.06826531352709232, - "y": 0.9976672025124649 + "x": -0.06827, + "y": 0.99767 }, { - "x": -0.9976672025124649, - "y": -0.06826531352709232 + "x": -0.99767, + "y": -0.06827 }, { "max": { @@ -1478,12 +1478,12 @@ } }, { - "x": 104.63468621849391, - "y": 86.06172533702151 + "x": 104.63469, + "y": 86.06173 }, { - "x": 55.90783804393341, - "y": 32.1446249023016 + "x": 55.90784, + "y": 32.14462 }, { "category": 1, @@ -1500,16 +1500,16 @@ "y": 0 }, { - "x": 80.18544319836381, - "y": 58.134798853841886 + "x": 80.18544, + "y": 58.1348 }, { - "x": 0.17744454648344302, - "y": 0.01608669679595994 + "x": 0.17744, + "y": 0.01609 }, { - "x": 79.98874342077374, - "y": 56.31678880327157 + "x": 79.98874, + "y": 56.31679 }, { "endCol": 2, @@ -1532,8 +1532,8 @@ "yScale": 1 }, { - "x": 0.19036692557698132, - "y": 1.819703069524337 + "x": 0.19037, + "y": 1.8197 }, [ { @@ -1553,36 +1553,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 59.25291741754049, - "y": 32.1446249023016 + "x": 59.25292, + "y": 32.14462 }, { "body": null, "index": 1, "isInternal": false, - "x": 104.46304835279417, - "y": 35.238125174861096 + "x": 104.46305, + "y": 35.23813 }, { "body": null, "index": 2, "isInternal": false, - "x": 101.1179689791871, - "y": 84.12497280538219 + "x": 101.11797, + "y": 84.12497 }, { "body": null, "index": 3, "isInternal": false, - "x": 55.90783804393341, - "y": 81.03147253282268 + "x": 55.90784, + "y": 81.03147 }, { - "angle": 0.04398114725630271, - "anglePrev": 0.033423070164622676, - "angularSpeed": 0.009684664535166193, - "angularVelocity": 0.010339851102857338, - "area": 1140.197701571206, + "angle": 0.04398, + "anglePrev": 0.03342, + "angularSpeed": 0.00968, + "angularVelocity": 0.01034, + "area": 1140.1977, "axes": { "#": 141 }, @@ -1603,13 +1603,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1631,7 +1631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.469479854246641, + "speed": 2.46948, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1652,12 +1652,12 @@ } ], { - "x": -0.04396696953590402, - "y": 0.9990329852361377 + "x": -0.04397, + "y": 0.99903 }, { - "x": -0.9990329852361377, - "y": -0.04396696953590402 + "x": -0.99903, + "y": -0.04397 }, { "max": { @@ -1668,12 +1668,12 @@ } }, { - "x": 143.8483923517086, - "y": 68.55921641978941 + "x": 143.84839, + "y": 68.55922 }, { - "x": 103.04047847407405, - "y": 35.34666491626606 + "x": 103.04048, + "y": 35.34666 }, { "category": 1, @@ -1690,16 +1690,16 @@ "y": 0 }, { - "x": 123.2710059991287, - "y": 50.7304412095107 + "x": 123.27101, + "y": 50.73044 }, { - "x": 0.27564233197141735, - "y": 0.03805072067180015 + "x": 0.27564, + "y": 0.03805 }, { - "x": 122.87275303000077, - "y": 48.338657815573505 + "x": 122.87275, + "y": 48.33866 }, { "endCol": 2, @@ -1722,8 +1722,8 @@ "yScale": 1 }, { - "x": 0.39168817412910073, - "y": 2.387645931038584 + "x": 0.39169, + "y": 2.38765 }, [ { @@ -1743,36 +1743,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 104.31865301102715, - "y": 35.34666491626606 + "x": 104.31865, + "y": 35.34666 }, { "body": null, "index": 1, "isInternal": false, - "x": 143.50153352418337, - "y": 37.07108496976781 + "x": 143.50153, + "y": 37.07108 }, { "body": null, "index": 2, "isInternal": false, - "x": 142.22335898723026, - "y": 66.11421750275532 + "x": 142.22336, + "y": 66.11422 }, { "body": null, "index": 3, "isInternal": false, - "x": 103.04047847407405, - "y": 64.38979744925358 + "x": 103.04048, + "y": 64.3898 }, { - "angle": 0.0345247083040391, - "anglePrev": 0.01992154072366725, - "angularSpeed": 0.009919829822791694, - "angularVelocity": 0.014757319828498008, - "area": 752.4076041785743, + "angle": 0.03452, + "anglePrev": 0.01992, + "angularSpeed": 0.00992, + "angularVelocity": 0.01476, + "area": 752.4076, "axes": { "#": 163 }, @@ -1793,13 +1793,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1821,7 +1821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.780565400368289, + "speed": 2.78057, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1842,12 +1842,12 @@ } ], { - "x": -0.03451785006022484, - "y": 0.9994040814541533 + "x": -0.03452, + "y": 0.9994 }, { - "x": -0.9994040814541533, - "y": -0.03451785006022484 + "x": -0.9994, + "y": -0.03452 }, { "max": { @@ -1858,12 +1858,12 @@ } }, { - "x": 168.60706666940163, - "y": 70.73727454861023 + "x": 168.60707, + "y": 70.73727 }, { - "x": 142.35757787651622, - "y": 36.89253241315075 + "x": 142.35758, + "y": 36.89253 }, { "category": 1, @@ -1880,16 +1880,16 @@ "y": 0 }, { - "x": 155.3108143394595, - "y": 52.43524011064191 + "x": 155.31081, + "y": 52.43524 }, { - "x": 0.33248793913960656, - "y": 0.007551956377661866 + "x": 0.33249, + "y": 0.00755 }, { - "x": 154.99034402780657, - "y": 49.70442713819474 + "x": 154.99034, + "y": 49.70443 }, { "endCol": 3, @@ -1912,8 +1912,8 @@ "yScale": 1 }, { - "x": 0.3304185951729153, - "y": 2.7370828794246265 + "x": 0.33042, + "y": 2.73708 }, [ { @@ -1933,36 +1933,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 143.40156084085703, - "y": 36.89253241315075 + "x": 143.40156, + "y": 36.89253 }, { "body": null, "index": 1, "isInternal": false, - "x": 168.2640508024028, - "y": 37.751243835829534 + "x": 168.26405, + "y": 37.75124 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.220067838062, - "y": 67.97794780813307 + "x": 167.22007, + "y": 67.97795 }, { "body": null, "index": 3, "isInternal": false, - "x": 142.35757787651622, - "y": 67.11923638545429 + "x": 142.35758, + "y": 67.11924 }, { - "angle": 0.01216894923056649, - "anglePrev": 0.00780100949116189, - "angularSpeed": 0.003266369421266494, - "angularVelocity": 0.004763526213764591, - "area": 2027.2541820000001, + "angle": 0.01217, + "anglePrev": 0.0078, + "angularSpeed": 0.00327, + "angularVelocity": 0.00476, + "area": 2027.25418, "axes": { "#": 185 }, @@ -1983,13 +1983,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -2011,7 +2011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.984668107780229, + "speed": 2.98467, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2035,16 +2035,16 @@ } ], { - "x": -0.48943326229553874, - "y": -0.8720407569367081 + "x": -0.48943, + "y": -0.87204 }, { - "x": 0.5105098598540337, - "y": -0.8598718991755782 + "x": 0.51051, + "y": -0.85987 }, { - "x": 0.9999259592510021, - "y": 0.012168648896378823 + "x": 0.99993, + "y": 0.01217 }, { "max": { @@ -2055,12 +2055,12 @@ } }, { - "x": 216.5667720680753, - "y": 93.5794470447369 + "x": 216.56677, + "y": 93.57945 }, { - "x": 167.49365052789716, - "y": 34.752076930928226 + "x": 167.49365, + "y": 34.75208 }, { "category": 1, @@ -2077,16 +2077,16 @@ "y": 0 }, { - "x": 191.85281892727392, - "y": 62.68400867664573 + "x": 191.85282, + "y": 62.68401 }, { - "x": 0.33855689122836624, - "y": -0.018568082170124883 + "x": 0.33856, + "y": -0.01857 }, { - "x": 191.52044727411388, - "y": 59.78525599479563 + "x": 191.52045, + "y": 59.78526 }, { "endCol": 4, @@ -2109,8 +2109,8 @@ "yScale": 1 }, { - "x": 0.34067235793139616, - "y": 2.8822624457574975 + "x": 0.34067, + "y": 2.88226 }, [ { @@ -2136,49 +2136,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.87206828837918, - "y": 76.94434633495676 + "x": 215.87207, + "y": 76.94435 }, { "body": null, "index": 1, "isInternal": false, - "x": 191.51289988900243, - "y": 90.61594042236321 + "x": 191.5129, + "y": 90.61594 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.49365052789716, - "y": 76.35560276405221 + "x": 167.49365, + "y": 76.3556 }, { "body": null, "index": 3, "isInternal": false, - "x": 167.83356956616865, - "y": 48.42367101833469 + "x": 167.83357, + "y": 48.42367 }, { "body": null, "index": 4, "isInternal": false, - "x": 192.1927379655454, - "y": 34.752076930928226 + "x": 192.19274, + "y": 34.75208 }, { "body": null, "index": 5, "isInternal": false, - "x": 216.21198732665067, - "y": 49.01241458923928 + "x": 216.21199, + "y": 49.01241 }, { - "angle": -0.0032685690349491675, - "anglePrev": -0.002543099402879491, - "angularSpeed": 0.0007643456934586719, - "angularVelocity": -0.0006287856850964242, + "angle": -0.00327, + "anglePrev": -0.00254, + "angularSpeed": 0.00076, + "angularVelocity": -0.00063, "area": 4842.27229, "axes": { "#": 210 @@ -2200,13 +2200,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2228,7 +2228,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0093566113046606, + "speed": 3.00936, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2258,24 +2258,24 @@ } ], { - "x": 0.31212694192319446, - "y": 0.9500404055226677 + "x": 0.31213, + "y": 0.95004 }, { - "x": -0.8070933080199948, - "y": 0.5904239088564608 + "x": -0.80709, + "y": 0.59042 }, { - "x": -0.8109357179703841, - "y": -0.5851352504505754 + "x": -0.81094, + "y": -0.58514 }, { - "x": 0.30590977163417477, - "y": -0.9520605083810207 + "x": 0.30591, + "y": -0.95206 }, { - "x": 0.9999946582329875, - "y": -0.003268563214969012 + "x": 0.99999, + "y": -0.00327 }, { "max": { @@ -2286,12 +2286,12 @@ } }, { - "x": 283.60251928808884, - "y": 142.26173124810254 + "x": 283.60252, + "y": 142.26173 }, { - "x": 201.71286573545044, - "y": 53.4173812871932 + "x": 201.71287, + "y": 53.41738 }, { "category": 1, @@ -2308,16 +2308,16 @@ "y": 0 }, { - "x": 246.8410105553024, - "y": 96.2915706432302 + "x": 246.84101, + "y": 96.29157 }, { - "x": -0.4027636645687131, - "y": 1.1221108564220892 + "x": -0.40276, + "y": 1.12211 }, { - "x": 246.60407233360814, - "y": 93.24599786910545 + "x": 246.60407, + "y": 93.246 }, { "endCol": 5, @@ -2340,8 +2340,8 @@ "yScale": 1 }, { - "x": 0.24546431241995492, - "y": 3.041111891383977 + "x": 0.24546, + "y": 3.04111 }, [ { @@ -2364,50 +2364,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 283.4371315521155, - "y": 122.69809496583 + "x": 283.43713, + "y": 122.69809 }, { "body": null, "index": 1, "isInternal": false, - "x": 233.03598589631613, - "y": 139.2569227499129 + "x": 233.03599, + "y": 139.25692 }, { "body": null, "index": 2, "isInternal": false, - "x": 201.71286573545044, - "y": 96.43907562528543 + "x": 201.71287, + "y": 96.43908 }, { "body": null, "index": 3, "isInternal": false, - "x": 232.75541242994316, - "y": 53.4173812871932 + "x": 232.75541, + "y": 53.41738 }, { "body": null, "index": 4, "isInternal": false, - "x": 283.26372773643504, - "y": 69.64637835725354 + "x": 283.26373, + "y": 69.64638 }, { - "angle": -0.0019634947038453783, - "anglePrev": -0.0015379301578684191, - "angularSpeed": 0.00042556454597695914, - "angularVelocity": -0.00042556454597695914, - "area": 3079.0178339999993, + "angle": -0.00196, + "anglePrev": -0.00154, + "angularSpeed": 0.00043, + "angularVelocity": -0.00043, + "area": 3079.01783, "axes": { "#": 236 }, "bounds": { "#": 250 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 253 }, @@ -2422,13 +2422,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2450,7 +2450,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9408531617628872, + "speed": 2.94085, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2504,56 +2504,56 @@ } ], { - "x": -0.9714117547297956, - "y": -0.23740093254403946 + "x": -0.97141, + "y": -0.2374 }, { - "x": -0.8863291676720889, - "y": -0.46305572724425126 + "x": -0.88633, + "y": -0.46306 }, { - "x": -0.7498363607222658, - "y": -0.6616233310115265 + "x": -0.74984, + "y": -0.66162 }, { - "x": -0.5696928413656469, - "y": -0.8218576923633042 + "x": -0.56969, + "y": -0.82186 }, { - "x": -0.3564099695474851, - "y": -0.934329670730391 + "x": -0.35641, + "y": -0.93433 }, { - "x": -0.12246144842334743, - "y": -0.9924732710003106 + "x": -0.12246, + "y": -0.99247 }, { - "x": 0.11856308216507921, - "y": -0.9929465219977947 + "x": 0.11856, + "y": -0.99295 }, { - "x": 0.3527381281182414, - "y": -0.935722081053792 + "x": 0.35274, + "y": -0.93572 }, { - "x": 0.5664610305272312, - "y": -0.8240885273403747 + "x": 0.56646, + "y": -0.82409 }, { - "x": 0.7472323978893922, - "y": -0.6645628213679041 + "x": 0.74723, + "y": -0.66456 }, { - "x": 0.8845039232685323, - "y": -0.46653275310804776 + "x": 0.8845, + "y": -0.46653 }, { - "x": 0.9704719959983475, - "y": -0.24121381590402977 + "x": 0.97047, + "y": -0.24121 }, { - "x": 0.9999980723448935, - "y": -0.0019634934421983515 + "x": 1, + "y": -0.00196 }, { "max": { @@ -2564,12 +2564,12 @@ } }, { - "x": 349.8557461412478, - "y": 112.60808731176402 + "x": 349.85575, + "y": 112.60809 }, { - "x": 287.3338947838024, - "y": 46.74973231926627 + "x": 287.33389, + "y": 46.74973 }, { "category": 1, @@ -2586,16 +2586,16 @@ "y": 0 }, { - "x": 318.57128015026626, - "y": 78.20867167716426 + "x": 318.57128, + "y": 78.20867 }, { - "x": -0.02134051988462035, - "y": 0.49624879495625224 + "x": -0.02134, + "y": 0.49625 }, { - "x": 318.5241995257486, - "y": 75.26819540046252 + "x": 318.5242, + "y": 75.2682 }, { "endCol": 7, @@ -2618,8 +2618,8 @@ "yScale": 1 }, { - "x": 0.04708062451766978, - "y": 2.9404762767017516 + "x": 0.04708, + "y": 2.94048 }, [ { @@ -2705,190 +2705,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 349.8086655167301, - "y": 81.93934446729628 + "x": 349.80867, + "y": 81.93934 }, { "body": null, "index": 1, "isInternal": false, - "x": 348.0081281811325, - "y": 89.30689401264162 + "x": 348.00813, + "y": 89.30689 }, { "body": null, "index": 2, "isInternal": false, - "x": 344.49631983458113, - "y": 96.02880238282131 + "x": 344.49632, + "y": 96.0288 }, { "body": null, "index": 3, "isInternal": false, - "x": 339.47847628102994, - "y": 101.7156658480441 + "x": 339.47848, + "y": 101.71567 }, { "body": null, "index": 4, "isInternal": false, - "x": 333.24594704127446, - "y": 106.03591170627867 + "x": 333.24595, + "y": 106.03591 }, { "body": null, "index": 5, "isInternal": false, - "x": 326.16024054414294, - "y": 108.73882965481273 + "x": 326.16024, + "y": 108.73883 }, { "body": null, "index": 6, "isInternal": false, - "x": 318.63304969046436, - "y": 109.66761103506227 + "x": 318.63305, + "y": 109.66761 }, { "body": null, "index": 7, "isInternal": false, - "x": 311.1022695707735, - "y": 108.76839593906534 + "x": 311.10227, + "y": 108.7684 }, { "body": null, "index": 8, "isInternal": false, - "x": 304.0060034059098, - "y": 106.09332425452854 + "x": 304.006, + "y": 106.09332 }, { "body": null, "index": 9, "isInternal": false, - "x": 297.7565567066563, - "y": 101.7975867214395 + "x": 297.75656, + "y": 101.79759 }, { "body": null, "index": 10, "isInternal": false, - "x": 292.7164196485625, - "y": 96.13047207325836 + "x": 292.71642, + "y": 96.13047 }, { "body": null, "index": 11, "isInternal": false, - "x": 289.1782415850824, - "y": 89.42240633184619 + "x": 289.17824, + "y": 89.42241 }, { "body": null, "index": 12, "isInternal": false, - "x": 287.348785918068, - "y": 82.06198426769598 + "x": 287.34879, + "y": 82.06198 }, { "body": null, "index": 13, "isInternal": false, - "x": 287.3338947838024, - "y": 74.47799888703227 + "x": 287.33389, + "y": 74.478 }, { "body": null, "index": 14, "isInternal": false, - "x": 289.1344321194, - "y": 67.1104493416869 + "x": 289.13443, + "y": 67.11045 }, { "body": null, "index": 15, "isInternal": false, - "x": 292.6462404659514, - "y": 60.3885409715072 + "x": 292.64624, + "y": 60.38854 }, { "body": null, "index": 16, "isInternal": false, - "x": 297.6640840195026, - "y": 54.70167750628442 + "x": 297.66408, + "y": 54.70168 }, { "body": null, "index": 17, "isInternal": false, - "x": 303.89661325925806, - "y": 50.381431648049855 + "x": 303.89661, + "y": 50.38143 }, { "body": null, "index": 18, "isInternal": false, - "x": 310.9823197563896, - "y": 47.678513699515804 + "x": 310.98232, + "y": 47.67851 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.50951061006816, - "y": 46.74973231926627 + "x": 318.50951, + "y": 46.74973 }, { "body": null, "index": 20, "isInternal": false, - "x": 326.040290729759, - "y": 47.648947415263194 + "x": 326.04029, + "y": 47.64895 }, { "body": null, "index": 21, "isInternal": false, - "x": 333.13655689462274, - "y": 50.324019099799976 + "x": 333.13656, + "y": 50.32402 }, { "body": null, "index": 22, "isInternal": false, - "x": 339.38600359387624, - "y": 54.61975663288902 + "x": 339.386, + "y": 54.61976 }, { "body": null, "index": 23, "isInternal": false, - "x": 344.42614065197, - "y": 60.28687128107016 + "x": 344.42614, + "y": 60.28687 }, { "body": null, "index": 24, "isInternal": false, - "x": 347.96431871545013, - "y": 66.99493702248238 + "x": 347.96432, + "y": 66.99494 }, { "body": null, "index": 25, "isInternal": false, - "x": 349.7937743824645, - "y": 74.35535908663257 + "x": 349.79377, + "y": 74.35536 }, { - "angle": 0.0007145804818394179, - "anglePrev": 0.0000587389008532876, - "angularSpeed": 0.0006558415809861303, - "angularVelocity": 0.0006558415809861303, - "area": 1329.4167625219097, + "angle": 0.00071, + "anglePrev": 0.00006, + "angularSpeed": 0.00066, + "angularVelocity": 0.00066, + "area": 1329.41676, "axes": { "#": 291 }, @@ -2909,13 +2909,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2937,7 +2937,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9169289971845607, + "speed": 2.91693, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2958,12 +2958,12 @@ } ], { - "x": -0.0007145804210256114, - "y": 0.9999997446873783 + "x": -0.00071, + "y": 1 }, { - "x": -0.9999997446873783, - "y": -0.0007145804210256114 + "x": -1, + "y": -0.00071 }, { "max": { @@ -2974,12 +2974,12 @@ } }, { - "x": 396.37200095425914, - "y": 63.35229345437637 + "x": 396.372, + "y": 63.35229 }, { - "x": 347.57488860613824, - "y": 36.06281523011218 + "x": 347.57489, + "y": 36.06282 }, { "category": 1, @@ -2996,16 +2996,16 @@ "y": 0 }, { - "x": 371.9734447801987, - "y": 49.70755434224427 + "x": 371.97344, + "y": 49.70755 }, { "x": 0, "y": 0 }, { - "x": 371.9444107885465, - "y": 46.79076984524336 + "x": 371.94441, + "y": 46.79077 }, { "endCol": 8, @@ -3028,8 +3028,8 @@ "yScale": 1 }, { - "x": 0.029033991652196393, - "y": 2.9167844970009127 + "x": 0.02903, + "y": 2.91678 }, [ { @@ -3049,36 +3049,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 347.5943642308539, - "y": 36.06281523011218 + "x": 347.59436, + "y": 36.06282 }, { "body": null, "index": 1, "isInternal": false, - "x": 396.37200095425914, - "y": 36.09767078319769 + "x": 396.372, + "y": 36.09767 }, { "body": null, "index": 2, "isInternal": false, - "x": 396.3525253295435, - "y": 63.35229345437637 + "x": 396.35253, + "y": 63.35229 }, { "body": null, "index": 3, "isInternal": false, - "x": 347.57488860613824, - "y": 63.31743790129085 + "x": 347.57489, + "y": 63.31744 }, { - "angle": 0.0006767883141119877, - "anglePrev": 0.00047257628937727404, - "angularSpeed": 0.00025327741605148986, - "angularVelocity": 0.00020899833480926593, - "area": 2858.632357296012, + "angle": 0.00068, + "anglePrev": 0.00047, + "angularSpeed": 0.00025, + "angularVelocity": 0.00021, + "area": 2858.63236, "axes": { "#": 313 }, @@ -3099,13 +3099,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -3127,7 +3127,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8913438161957012, + "speed": 2.89134, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3148,12 +3148,12 @@ } ], { - "x": -0.0006767882624456958, - "y": 0.9999997709787977 + "x": -0.00068, + "y": 1 }, { - "x": -0.9999997709787977, - "y": -0.0006767882624456958 + "x": -1, + "y": -0.00068 }, { "max": { @@ -3164,12 +3164,12 @@ } }, { - "x": 502.55516352961786, - "y": 66.87061601844415 + "x": 502.55516, + "y": 66.87062 }, { - "x": 393.6420607362015, - "y": 37.64487720583174 + "x": 393.64206, + "y": 37.64488 }, { "category": 1, @@ -3186,16 +3186,16 @@ "y": 0 }, { - "x": 448.0782325132011, - "y": 50.81221835680573 + "x": 448.07823, + "y": 50.81222 }, { "x": 0, "y": 0 }, { - "x": 448.0524175639736, - "y": 47.924732193105136 + "x": 448.05242, + "y": 47.92473 }, { "endCol": 10, @@ -3218,8 +3218,8 @@ "yScale": 1 }, { - "x": 0.026182368863999272, - "y": 2.8878051200135815 + "x": 0.02618, + "y": 2.88781 }, [ { @@ -3239,36 +3239,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 393.6598338841342, - "y": 37.64487720583174 + "x": 393.65983, + "y": 37.64488 }, { "body": null, "index": 1, "isInternal": false, - "x": 502.51440429020073, - "y": 37.718548718268465 + "x": 502.5144, + "y": 37.71855 }, { "body": null, "index": 2, "isInternal": false, - "x": 502.49663114226803, - "y": 63.97955950777971 + "x": 502.49663, + "y": 63.97956 }, { "body": null, "index": 3, "isInternal": false, - "x": 393.6420607362015, - "y": 63.90588799534298 + "x": 393.64206, + "y": 63.90589 }, { - "angle": 0.0010550025248578356, - "anglePrev": 0.0007582147732453911, - "angularSpeed": 0.0004353270597019426, - "angularVelocity": 0.0001164299462045466, - "area": 926.8394636035856, + "angle": 0.00106, + "anglePrev": 0.00076, + "angularSpeed": 0.00044, + "angularVelocity": 0.00012, + "area": 926.83946, "axes": { "#": 335 }, @@ -3289,13 +3289,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3317,7 +3317,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.893563063392209, + "speed": 2.89356, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3338,12 +3338,12 @@ } ], { - "x": -0.0010550023291495455, - "y": 0.9999994434848881 + "x": -0.00106, + "y": 1 }, { - "x": -0.9999994434848881, - "y": -0.0010550023291495455 + "x": -1, + "y": -0.00106 }, { "max": { @@ -3354,12 +3354,12 @@ } }, { - "x": 541.1245028970267, - "y": 64.53211322212138 + "x": 541.1245, + "y": 64.53211 }, { - "x": 502.33123380792, - "y": 37.68283579657265 + "x": 502.33123, + "y": 37.68284 }, { "category": 1, @@ -3376,16 +3376,16 @@ "y": 0 }, { - "x": 521.7217316621482, - "y": 49.660705992448484 + "x": 521.72173, + "y": 49.66071 }, { - "x": 0.6303787612601477, - "y": 0.0006151014714064497 + "x": 0.63038, + "y": 0.00062 }, { - "x": 521.6959613217971, - "y": 46.75646257558532 + "x": 521.69596, + "y": 46.75646 }, { "endCol": 11, @@ -3408,8 +3408,8 @@ "yScale": 1 }, { - "x": 0.025809015711388383, - "y": 2.900302548649826 + "x": 0.02581, + "y": 2.9003 }, [ { @@ -3429,36 +3429,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 502.35646404752043, - "y": 37.68283579657265 + "x": 502.35646, + "y": 37.68284 }, { "body": null, "index": 1, "isInternal": false, - "x": 541.1122295163763, - "y": 37.72372324216475 + "x": 541.11223, + "y": 37.72372 }, { "body": null, "index": 2, "isInternal": false, - "x": 541.0869992767758, - "y": 61.638576188324315 + "x": 541.087, + "y": 61.63858 }, { "body": null, "index": 3, "isInternal": false, - "x": 502.33123380792, - "y": 61.59768874273222 + "x": 502.33123, + "y": 61.59769 }, { - "angle": 0.0003273774391914403, - "anglePrev": -0.0005078991265219431, - "angularSpeed": 0.00045562698953100937, - "angularVelocity": 0.0008173397162999034, - "area": 1290.4501361223834, + "angle": 0.00033, + "anglePrev": -0.00051, + "angularSpeed": 0.00046, + "angularVelocity": 0.00082, + "area": 1290.45014, "axes": { "#": 357 }, @@ -3479,13 +3479,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3507,7 +3507,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9100072725192723, + "speed": 2.91001, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3528,12 +3528,12 @@ } ], { - "x": -0.0003273774333436069, - "y": 0.9999999464120066 + "x": -0.00033, + "y": 1 }, { - "x": -0.9999999464120066, - "y": -0.0003273774333436069 + "x": -1, + "y": -0.00033 }, { "max": { @@ -3544,12 +3544,12 @@ } }, { - "x": 576.6527813074362, - "y": 76.71361785920176 + "x": 576.65278, + "y": 76.71362 }, { - "x": 540.8613495052869, - "y": 37.715913912936095 + "x": 540.86135, + "y": 37.71591 }, { "category": 1, @@ -3566,16 +3566,16 @@ "y": 0 }, { - "x": 558.7524132465255, - "y": 55.75976968712626 + "x": 558.75241, + "y": 55.75977 }, { - "x": 0.5393889866690957, - "y": 0.00017658379149230858 + "x": 0.53939, + "y": 0.00018 }, { - "x": 558.7311406255197, - "y": 52.83380114506696 + "x": 558.73114, + "y": 52.8338 }, { "endCol": 11, @@ -3598,8 +3598,8 @@ "yScale": 1 }, { - "x": 0.021244843217914422, - "y": 2.928798990194217 + "x": 0.02124, + "y": 2.9288 }, [ { @@ -3619,36 +3619,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 540.8731599745826, - "y": 37.715913912936095 + "x": 540.87316, + "y": 37.71591 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.6434769877642, - "y": 37.727624308137294 + "x": 576.64348, + "y": 37.72762 }, { "body": null, "index": 2, "isInternal": false, - "x": 576.6316665184685, - "y": 73.80362546131641 + "x": 576.63167, + "y": 73.80363 }, { "body": null, "index": 3, "isInternal": false, - "x": 540.8613495052869, - "y": 73.79191506611522 + "x": 540.86135, + "y": 73.79192 }, { - "angle": 0.0013688393972764099, - "anglePrev": 0.0005503133837190353, - "angularSpeed": 0.00046568503971666905, - "angularVelocity": 0.00029397095598038443, - "area": 1148.2925932011974, + "angle": 0.00137, + "anglePrev": 0.00055, + "angularSpeed": 0.00047, + "angularVelocity": 0.00029, + "area": 1148.29259, "axes": { "#": 379 }, @@ -3669,13 +3669,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3697,7 +3697,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9256811282899973, + "speed": 2.92568, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3718,12 +3718,12 @@ } ], { - "x": -0.0013688389698058617, - "y": 0.9999990631394985 + "x": -0.00137, + "y": 1 }, { - "x": -0.9999990631394985, - "y": -0.0013688389698058617 + "x": -1, + "y": -0.00137 }, { "max": { @@ -3734,12 +3734,12 @@ } }, { - "x": 607.3962891707371, - "y": 78.35064628686196 + "x": 607.39629, + "y": 78.35065 }, { - "x": 576.782233490379, - "y": 37.80191010107492 + "x": 576.78223, + "y": 37.80191 }, { "category": 1, @@ -3756,16 +3756,16 @@ "y": 0 }, { - "x": 592.0853968106242, - "y": 56.61344273446052 + "x": 592.0854, + "y": 56.61344 }, { - "x": 0.7629628182050706, - "y": 0.0024678395690972844 + "x": 0.76296, + "y": 0.00247 }, { - "x": 592.0648084868019, - "y": 53.7054791546062 + "x": 592.06481, + "y": 53.70548 }, { "endCol": 12, @@ -3788,8 +3788,8 @@ "yScale": 1 }, { - "x": 0.019968305957490884, - "y": 2.9343610919814296 + "x": 0.01997, + "y": 2.93436 }, [ { @@ -3809,36 +3809,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 576.8336762051197, - "y": 37.80191010107492 + "x": 576.83368, + "y": 37.80191 }, { "body": null, "index": 1, "isInternal": false, - "x": 607.3885601308693, - "y": 37.843734856094336 + "x": 607.38856, + "y": 37.84373 }, { "body": null, "index": 2, "isInternal": false, - "x": 607.3371174161286, - "y": 75.42497536784613 + "x": 607.33712, + "y": 75.42498 }, { "body": null, "index": 3, "isInternal": false, - "x": 576.782233490379, - "y": 75.38315061282673 + "x": 576.78223, + "y": 75.38315 }, { - "angle": -0.000004328883011492027, - "anglePrev": -0.0002327820437618434, - "angularSpeed": 0.00022845316075035136, - "angularVelocity": 0.00022845316075035136, - "area": 1926.7878890000002, + "angle": 0, + "anglePrev": -0.00023, + "angularSpeed": 0.00023, + "angularVelocity": 0.00023, + "area": 1926.78789, "axes": { "#": 401 }, @@ -3859,13 +3859,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3887,7 +3887,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8936310802296137, + "speed": 2.89363, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3923,32 +3923,32 @@ } ], { - "x": 0.6234954846213946, - "y": 0.781826950582245 + "x": 0.6235, + "y": 0.78183 }, { - "x": -0.22251398935926853, - "y": 0.9749294972147593 + "x": -0.22251, + "y": 0.97493 }, { - "x": -0.9009796720285012, - "y": 0.43386130340399626 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009834282643849, - "y": -0.433853502916544 + "x": -0.90098, + "y": -0.43385 }, { - "x": -0.22252243006240469, - "y": -0.9749275707041636 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234887157232184, - "y": -0.7818323486309657 + "x": 0.62349, + "y": -0.78183 }, { - "x": 0.9999999999906303, - "y": -0.000004328883011478474 + "x": 1, + "y": 0 }, { "max": { @@ -3959,12 +3959,12 @@ } }, { - "x": 659.1904039960802, - "y": 92.29528820954174 + "x": 659.1904, + "y": 92.29529 }, { - "x": 608.7297913154755, - "y": 37.66171042896918 + "x": 608.72979, + "y": 37.66171 }, { "category": 1, @@ -3981,16 +3981,16 @@ "y": 0 }, { - "x": 635.2825452899832, - "y": 63.53173598995358 + "x": 635.28255, + "y": 63.53174 }, { - "x": -0.8576524539329902, - "y": 0.00019964609466998793 + "x": -0.85765, + "y": 0.0002 }, { - "x": 635.3001081326305, - "y": 60.6381582088962 + "x": 635.30011, + "y": 60.63816 }, { "endCol": 13, @@ -4013,8 +4013,8 @@ "yScale": 1 }, { - "x": -0.017562842647270146, - "y": 2.8935777810573793 + "x": -0.01756, + "y": 2.89358 }, [ { @@ -4043,57 +4043,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 659.1904039960802, - "y": 75.04463249573804 + "x": 659.1904, + "y": 75.04463 }, { "body": null, "index": 1, "isInternal": false, - "x": 641.1874661460223, - "y": 89.40171042848436 + "x": 641.18747, + "y": 89.40171 }, { "body": null, "index": 2, "isInternal": false, - "x": 618.7374439650363, - "y": 84.27780761195596 + "x": 618.73744, + "y": 84.27781 }, { "body": null, "index": 3, "isInternal": false, - "x": 608.7473541581228, - "y": 63.53185085769169 + "x": 608.74735, + "y": 63.53185 }, { "body": null, "index": 4, "isInternal": false, - "x": 618.7372643510223, - "y": 42.785807612344776 + "x": 618.73726, + "y": 42.78581 }, { "body": null, "index": 5, "isInternal": false, - "x": 641.1872421696153, - "y": 37.66171042896918 + "x": 641.18724, + "y": 37.66171 }, { "body": null, "index": 6, "isInternal": false, - "x": 659.19030431922, - "y": 52.0186324959538 + "x": 659.1903, + "y": 52.01863 }, { - "angle": -0.0028719175191254578, - "anglePrev": -0.0022164826993399025, - "angularSpeed": 0.0006554348197855554, - "angularVelocity": -0.0006554348197855554, - "area": 1097.755875, + "angle": -0.00287, + "anglePrev": -0.00222, + "angularSpeed": 0.00066, + "angularVelocity": -0.00066, + "area": 1097.75588, "axes": { "#": 431 }, @@ -4114,13 +4114,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 927.6617490689248, - "inverseInertia": 0.0010779791243992539, - "inverseMass": 0.9109493492804126, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "inverseMass": 0.91095, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.097755875, + "mass": 1.09776, "motion": 0, "parent": null, "position": { @@ -4142,7 +4142,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.893634298861694, + "speed": 2.89363, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4166,16 +4166,16 @@ } ], { - "x": -0.4975054391886022, - "y": 0.8674608567409575 + "x": -0.49751, + "y": 0.86746 }, { - "x": -0.502479757116966, - "y": -0.8645889738411399 + "x": -0.50248, + "y": -0.86459 }, { - "x": 0.9999958760477163, - "y": -0.002871913571240769 + "x": 1, + "y": -0.00287 }, { "max": { @@ -4186,12 +4186,12 @@ } }, { - "x": 705.08071437229, - "y": 88.13228647692956 + "x": 705.08071, + "y": 88.13229 }, { - "x": 661.4035937730733, - "y": 37.78249411792707 + "x": 661.40359, + "y": 37.78249 }, { "category": 1, @@ -4208,16 +4208,16 @@ "y": 0 }, { - "x": 690.4734738897805, - "y": 62.99913356118631 + "x": 690.47347, + "y": 62.99913 }, { "x": 0, "y": 0 }, { - "x": 690.4909869110814, - "y": 60.10555225947148 + "x": 690.49099, + "y": 60.10555 }, { "endCol": 14, @@ -4240,8 +4240,8 @@ "yScale": 1 }, { - "x": -0.017513021300912895, - "y": 2.8935813017148355 + "x": -0.01751, + "y": 2.89358 }, [ { @@ -4258,29 +4258,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 705.08071437229, - "y": 88.13228647692956 + "x": 705.08071, + "y": 88.13229 }, { "body": null, "index": 1, "isInternal": false, - "x": 661.4035937730733, - "y": 63.082620088702285 + "x": 661.40359, + "y": 63.08262 }, { "body": null, "index": 2, "isInternal": false, - "x": 704.936113523978, - "y": 37.78249411792707 + "x": 704.93611, + "y": 37.78249 }, { - "angle": -0.023518946351585072, - "anglePrev": -0.01899267664064928, - "angularSpeed": 0.0045262697109357914, - "angularVelocity": -0.0045262697109357914, - "area": 986.5801250000001, + "angle": -0.02352, + "anglePrev": -0.01899, + "angularSpeed": 0.00453, + "angularVelocity": -0.00453, + "area": 986.58013, "axes": { "#": 453 }, @@ -4301,13 +4301,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4329,7 +4329,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8473232286353034, + "speed": 2.84732, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4359,24 +4359,24 @@ } ], { - "x": 0.33129559172001455, - "y": 0.9435270165219884 + "x": 0.3313, + "y": 0.94353 }, { - "x": -0.7949767597828316, - "y": 0.6066398860981613 + "x": -0.79498, + "y": 0.60664 }, { - "x": -0.8226219941365243, - "y": -0.5685886516303749 + "x": -0.82262, + "y": -0.56859 }, { - "x": 0.2865639948283082, - "y": -0.9580611028885585 + "x": 0.28656, + "y": -0.95806 }, { - "x": 0.999723442329553, - "y": -0.02351677819660373 + "x": 0.99972, + "y": -0.02352 }, { "max": { @@ -4387,12 +4387,12 @@ } }, { - "x": 742.4729289666644, - "y": 79.02171648727426 + "x": 742.47293, + "y": 79.02172 }, { - "x": 705.3101937030743, - "y": 37.43940917450073 + "x": 705.31019, + "y": 37.43941 }, { "category": 1, @@ -4409,16 +4409,16 @@ "y": 0 }, { - "x": 725.7159629600851, - "y": 56.659012299362686 + "x": 725.71596, + "y": 56.65901 }, { - "x": -0.007981814803218414, - "y": 0.007564651921899471 + "x": -0.00798, + "y": 0.00756 }, { - "x": 725.7573229884832, - "y": 53.81198948309003 + "x": 725.75732, + "y": 53.81199 }, { "endCol": 15, @@ -4441,8 +4441,8 @@ "yScale": 1 }, { - "x": -0.041360028398105445, - "y": 2.8470228162726543 + "x": -0.04136, + "y": 2.84702 }, [ { @@ -4465,43 +4465,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 742.4729289666644, - "y": 68.24114557433526 + "x": 742.47293, + "y": 68.24115 }, { "body": null, "index": 1, "isInternal": false, - "x": 719.8782517262636, - "y": 76.1746936710016 + "x": 719.87825, + "y": 76.17469 }, { "body": null, "index": 2, "isInternal": false, - "x": 705.3515537314724, - "y": 57.13805007586837 + "x": 705.35155, + "y": 57.13805 }, { "body": null, "index": 3, "isInternal": false, - "x": 718.9670706382581, - "y": 37.43940917450073 + "x": 718.96707, + "y": 37.43941 }, { "body": null, "index": 4, "isInternal": false, - "x": 741.9097961959685, - "y": 44.30176802431178 + "x": 741.9098, + "y": 44.30177 }, { - "angle": -0.035987960552169386, - "anglePrev": -0.03084648637391272, - "angularSpeed": 0.0051414741782566655, - "angularVelocity": -0.0051414741782566655, - "area": 1201.454244, + "angle": -0.03599, + "anglePrev": -0.03085, + "angularSpeed": 0.00514, + "angularVelocity": -0.00514, + "area": 1201.45424, "axes": { "#": 479 }, @@ -4522,13 +4522,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4550,7 +4550,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.607046260275773, + "speed": 2.60705, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4571,12 +4571,12 @@ } ], { - "x": -0.035980192854150085, - "y": -0.9993525032350588 + "x": -0.03598, + "y": -0.99935 }, { - "x": 0.9993525032350588, - "y": -0.035980192854150085 + "x": 0.99935, + "y": -0.03598 }, { "max": { @@ -4587,12 +4587,12 @@ } }, { - "x": 778.8419605960098, - "y": 71.00608922545148 + "x": 778.84196, + "y": 71.00609 }, { - "x": 742.9552586841655, - "y": 35.119387313607334 + "x": 742.95526, + "y": 35.11939 }, { "category": 1, @@ -4609,16 +4609,16 @@ "y": 0 }, { - "x": 760.8986096400877, - "y": 53.062738269529405 + "x": 760.89861, + "y": 53.06274 }, { "x": 0, "y": 0 }, { - "x": 760.9571276508875, - "y": 50.456348842442594 + "x": 760.95713, + "y": 50.45635 }, { "endCol": 16, @@ -4641,8 +4641,8 @@ "yScale": 1 }, { - "x": -0.05851801079989968, - "y": 2.6063894270868113 + "x": -0.05852, + "y": 2.60639 }, [ { @@ -4662,36 +4662,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.8419605960098, - "y": 69.75894378074095 + "x": 778.84196, + "y": 69.75894 }, { "body": null, "index": 1, "isInternal": false, - "x": 744.2024041288761, - "y": 71.00608922545148 + "x": 744.2024, + "y": 71.00609 }, { "body": null, "index": 2, "isInternal": false, - "x": 742.9552586841655, - "y": 36.36653275831787 + "x": 742.95526, + "y": 36.36653 }, { "body": null, "index": 3, "isInternal": false, - "x": 777.5948151512993, - "y": 35.119387313607334 + "x": 777.59482, + "y": 35.11939 }, { - "angle": -0.005303392482370786, - "anglePrev": -0.020706974150149635, - "angularSpeed": 0.015403581667778849, - "angularVelocity": 0.015403581667778849, - "area": 1990.733346252218, + "angle": -0.0053, + "anglePrev": -0.02071, + "angularSpeed": 0.0154, + "angularVelocity": 0.0154, + "area": 1990.73335, "axes": { "#": 501 }, @@ -4712,13 +4712,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4740,7 +4740,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5381525588902113, + "speed": 0.53815, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4761,12 +4761,12 @@ } ], { - "x": 0.005303367621894491, - "y": 0.9999859370470501 + "x": 0.0053, + "y": 0.99999 }, { - "x": -0.9999859370470501, - "y": 0.005303367621894491 + "x": -0.99999, + "y": 0.0053 }, { "max": { @@ -4777,12 +4777,12 @@ } }, { - "x": 866.5803351041776, - "y": 5e-324 + "x": 866.58034, + "y": 0 }, { - "x": 771.6465983473828, - "y": -51.88898134357443 + "x": 771.6466, + "y": -51.88898 }, { "category": 1, @@ -4799,16 +4799,16 @@ "y": 0 }, { - "x": 819.1134667257802, - "y": -41.14066566233015 + "x": 819.11347, + "y": -41.14067 }, { "x": 0, "y": 0 }, { - "x": 819.0630835775776, - "y": -41.676454534011214 + "x": 819.06308, + "y": -41.67645 }, { "endCol": 18, @@ -4831,8 +4831,8 @@ "yScale": 1 }, { - "x": 0.05038314820266919, - "y": 0.5357888716810664 + "x": 0.05038, + "y": 0.53579 }, [ { @@ -4852,35 +4852,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 771.6465983473828, - "y": -51.386096238067026 + "x": 771.6466, + "y": -51.3861 }, { "body": null, "index": 1, "isInternal": false, - "x": 866.4689959842593, - "y": -51.88898134357443 + "x": 866.469, + "y": -51.88898 }, { "body": null, "index": 2, "isInternal": false, - "x": 866.5803351041776, - "y": -30.895235086593274 + "x": 866.58034, + "y": -30.89524 }, { "body": null, "index": 3, "isInternal": false, - "x": 771.7579374673011, - "y": -30.39234998108589 + "x": 771.75794, + "y": -30.39235 }, { - "angle": -0.0000013887978942646867, - "anglePrev": -0.0000012406173783493314, - "angularSpeed": 1.4818051591535527e-7, - "angularVelocity": -1.4818051591535527e-7, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 7321.24308, "axes": { "#": 523 @@ -4888,7 +4888,7 @@ "bounds": { "#": 537 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 540 }, @@ -4903,13 +4903,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4931,7 +4931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.896171679294186, + "speed": 2.89617, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4985,56 +4985,56 @@ } ], { - "x": -0.9709373043421886, - "y": -0.23933397384559493 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854469329677991, - "y": -0.4647404962965007 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.748527256016313, - "y": -0.6631040242682059 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680677686332554, - "y": -0.8229817800170512 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545988236363717, - "y": -0.9350185422095658 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048852454615978, - "y": -0.992714720074549 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048576718546931, - "y": -0.992715054739138 + "x": 0.12049, + "y": -0.99272 }, { - "x": 0.3545962265314388, - "y": -0.9350195271381578 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680654827203377, - "y": -0.8229833578765186 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485254141784802, - "y": -0.6631061033718015 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.885445642103138, - "y": -0.46474295570838 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709366395654053, - "y": -0.23933667071603917 + "x": 0.97094, + "y": -0.23934 }, { - "x": 0.9999999999990355, - "y": -0.0000013887978942642401 + "x": 1, + "y": 0 }, { "max": { @@ -5045,12 +5045,12 @@ } }, { - "x": 962.8862120249573, - "y": 122.03995437811042 + "x": 962.88621, + "y": 122.03995 }, { - "x": 866.5721957844478, - "y": 25.01995437820399 + "x": 866.5722, + "y": 25.01995 }, { "category": 1, @@ -5067,16 +5067,16 @@ "y": 0 }, { - "x": 914.7292039047026, - "y": 73.52995437815723 + "x": 914.7292, + "y": 73.52995 }, { "x": 0, "y": 0 }, { - "x": 914.7291896672244, - "y": 70.63378269889803 + "x": 914.72919, + "y": 70.63378 }, { "endCol": 20, @@ -5099,8 +5099,8 @@ "yScale": 1 }, { - "x": 0.000014237478155791906, - "y": 2.8961716792591905 + "x": 0.00001, + "y": 2.89617 }, [ { @@ -5186,190 +5186,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 962.8862120249573, - "y": 79.3768874978114 + "x": 962.88621, + "y": 79.37689 }, { "body": null, "index": 1, "isInternal": false, - "x": 960.0872277947601, - "y": 90.73189138504574 + "x": 960.08723, + "y": 90.73189 }, { "body": null, "index": 2, "isInternal": false, - "x": 954.6522421757677, - "y": 101.08689893315234 + "x": 954.65224, + "y": 101.0869 }, { "body": null, "index": 3, "isInternal": false, - "x": 946.8972543333119, - "y": 109.84090970327154 + "x": 946.89725, + "y": 109.84091 }, { "body": null, "index": 4, "isInternal": false, - "x": 937.2732635591055, - "y": 116.4839230690561 + "x": 937.27326, + "y": 116.48392 }, { "body": null, "index": 5, "isInternal": false, - "x": 926.338269318461, - "y": 120.63093825555706 + "x": 926.33827, + "y": 120.63094 }, { "body": null, "index": 6, "isInternal": false, - "x": 914.7292712752884, - "y": 122.03995437811042 + "x": 914.72927, + "y": 122.03995 }, { "body": null, "index": 7, "isInternal": false, - "x": 903.1202693184835, - "y": 120.63097050066654 + "x": 903.12027, + "y": 120.63097 }, { "body": null, "index": 8, "isInternal": false, - "x": 892.1852635591489, - "y": 116.48398568717552 + "x": 892.18526, + "y": 116.48399 }, { "body": null, "index": 9, "isInternal": false, - "x": 882.5612543333739, - "y": 109.84099905297283 + "x": 882.56125, + "y": 109.841 }, { "body": null, "index": 10, "isInternal": false, - "x": 874.8062421758444, - "y": 101.08700982310899 + "x": 874.80624, + "y": 101.08701 }, { "body": null, "index": 11, "isInternal": false, - "x": 869.3712277948476, - "y": 90.7320173712355 + "x": 869.37123, + "y": 90.73202 }, { "body": null, "index": 12, "isInternal": false, - "x": 866.5722120250501, - "y": 79.37702125849177 + "x": 866.57221, + "y": 79.37702 }, { "body": null, "index": 13, "isInternal": false, - "x": 866.5721957844478, - "y": 67.68302125850306 + "x": 866.5722, + "y": 67.68302 }, { "body": null, "index": 14, "isInternal": false, - "x": 869.371180014645, - "y": 56.32801737126869 + "x": 869.37118, + "y": 56.32802 }, { "body": null, "index": 15, "isInternal": false, - "x": 874.8061656336374, - "y": 45.97300982316211 + "x": 874.80617, + "y": 45.97301 }, { "body": null, "index": 16, "isInternal": false, - "x": 882.5611534760932, - "y": 37.21899905304292 + "x": 882.56115, + "y": 37.219 }, { "body": null, "index": 17, "isInternal": false, - "x": 892.1851442502996, - "y": 30.575985687258367 + "x": 892.18514, + "y": 30.57599 }, { "body": null, "index": 18, "isInternal": false, - "x": 903.1201384909441, - "y": 26.428970500757387 + "x": 903.12014, + "y": 26.42897 }, { "body": null, "index": 19, "isInternal": false, - "x": 914.7291365341167, - "y": 25.01995437820399 + "x": 914.72914, + "y": 25.01995 }, { "body": null, "index": 20, "isInternal": false, - "x": 926.3381384909217, - "y": 26.42893825564788 + "x": 926.33814, + "y": 26.42894 }, { "body": null, "index": 21, "isInternal": false, - "x": 937.2731442502562, - "y": 30.575923069138923 + "x": 937.27314, + "y": 30.57592 }, { "body": null, "index": 22, "isInternal": false, - "x": 946.8971534760312, - "y": 37.21890970334158 + "x": 946.89715, + "y": 37.21891 }, { "body": null, "index": 23, "isInternal": false, - "x": 954.6521656335607, - "y": 45.97289893320545 + "x": 954.65217, + "y": 45.9729 }, { "body": null, "index": 24, "isInternal": false, - "x": 960.0871800145575, - "y": 56.32789138507891 + "x": 960.08718, + "y": 56.32789 }, { "body": null, "index": 25, "isInternal": false, - "x": 962.886195784355, - "y": 67.68288749782269 + "x": 962.8862, + "y": 67.68289 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 578 }, @@ -5390,13 +5390,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5418,7 +5418,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5455,12 +5455,12 @@ } }, { - "x": 1047.1051858180972, - "y": 61.89221910173085 + "x": 1047.10519, + "y": 61.89222 }, { - "x": 962.8725040622674, - "y": 37.735754767025774 + "x": 962.8725, + "y": 37.73575 }, { "category": 1, @@ -5477,16 +5477,16 @@ "y": 0 }, { - "x": 1004.9888449401823, - "y": 49.81398693437831 + "x": 1004.98884, + "y": 49.81399 }, { "x": 0, "y": 0 }, { - "x": 1004.9888449401823, - "y": 46.90671621934266 + "x": 1004.98884, + "y": 46.90672 }, { "endCol": 21, @@ -5510,7 +5510,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -5530,36 +5530,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 962.8725040622674, - "y": 37.735754767025774 + "x": 962.8725, + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 1047.1051858180972, - "y": 37.735754767025774 + "x": 1047.10519, + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 1047.1051858180972, - "y": 61.89221910173085 + "x": 1047.10519, + "y": 61.89222 }, { "body": null, "index": 3, "isInternal": false, - "x": 962.8725040622674, - "y": 61.89221910173085 + "x": 962.8725, + "y": 61.89222 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 600 }, @@ -5580,13 +5580,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5608,7 +5608,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5645,12 +5645,12 @@ } }, { - "x": 1096.491759892171, - "y": 58.60085250365129 + "x": 1096.49176, + "y": 58.60085 }, { - "x": 1047.1051858180972, - "y": 37.735754767025774 + "x": 1047.10519, + "y": 37.73575 }, { "category": 1, @@ -5667,16 +5667,16 @@ "y": 0 }, { - "x": 1071.7984728551342, - "y": 48.16830363533853 + "x": 1071.79847, + "y": 48.1683 }, { "x": 0, "y": 0 }, { - "x": 1071.7984728551342, - "y": 45.26103292030288 + "x": 1071.79847, + "y": 45.26103 }, { "endCol": 22, @@ -5700,7 +5700,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -5720,43 +5720,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 1047.1051858180972, - "y": 37.735754767025774 + "x": 1047.10519, + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 1096.491759892171, - "y": 37.735754767025774 + "x": 1096.49176, + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 1096.491759892171, - "y": 58.60085250365129 + "x": 1096.49176, + "y": 58.60085 }, { "body": null, "index": 3, "isInternal": false, - "x": 1047.1051858180972, - "y": 58.60085250365129 + "x": 1047.10519, + "y": 58.60085 }, { - "angle": 0.17220825253666955, - "anglePrev": 0.13664628288021075, - "angularSpeed": 0.034854279517773985, - "angularVelocity": 0.03509016971352541, - "area": 2157.165332, + "angle": 0.17221, + "anglePrev": 0.13665, + "angularSpeed": 0.03485, + "angularVelocity": 0.03509, + "area": 2157.16533, "axes": { "#": 622 }, "bounds": { "#": 636 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 639 }, @@ -5771,13 +5771,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5799,7 +5799,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.631435590963214, + "speed": 1.63144, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5853,56 +5853,56 @@ } ], { - "x": -0.9155743015428325, - "y": -0.40214885099221 + "x": -0.91557, + "y": -0.40215 }, { - "x": -0.7927357564263523, - "y": -0.6095654357680883 + "x": -0.79274, + "y": -0.60957 }, { - "x": -0.6237989560817965, - "y": -0.7815848401749235 + "x": -0.6238, + "y": -0.78158 }, { - "x": -0.4186528850836614, - "y": -0.9081463328181898 + "x": -0.41865, + "y": -0.90815 }, { - "x": -0.18915889698778468, - "y": -0.9819464912562011 + "x": -0.18916, + "y": -0.98195 }, { - "x": 0.0513866080934137, - "y": -0.998678835516531 + "x": 0.05139, + "y": -0.99868 }, { - "x": 0.28883261139371585, - "y": -0.9573796125860873 + "x": 0.28883, + "y": -0.95738 }, { - "x": 0.509601876895547, - "y": -0.860410324824462 + "x": 0.5096, + "y": -0.86041 }, { - "x": 0.7006998467719374, - "y": -0.7134561827707311 + "x": 0.7007, + "y": -0.71346 }, { - "x": 0.8510650557667404, - "y": -0.5250602544972863 + "x": 0.85107, + "y": -0.52506 }, { - "x": 0.9519987188212835, - "y": -0.30610200809964444 + "x": 0.952, + "y": -0.3061 }, { - "x": 0.9975895863060444, - "y": -0.06939032564943354 + "x": 0.99759, + "y": -0.06939 }, { - "x": 0.9852087668201234, - "y": 0.17135835486130382 + "x": 0.98521, + "y": 0.17136 }, { "max": { @@ -5913,12 +5913,12 @@ } }, { - "x": 72.85944082725868, - "y": 182.2144658461291 + "x": 72.85944, + "y": 182.21447 }, { - "x": 20.248951478272822, - "y": 128.0456428516581 + "x": 20.24895, + "y": 128.04564 }, { "category": 1, @@ -5935,16 +5935,16 @@ "y": 0 }, { - "x": 46.546200061280615, - "y": 154.3143757452841 + "x": 46.5462, + "y": 154.31438 }, { - "x": -0.008115511590090357, - "y": 0.000520476961960873 + "x": -0.00812, + "y": 0.00052 }, { - "x": 46.53053223975706, - "y": 152.64607753965868 + "x": 46.53053, + "y": 152.64608 }, { "endCol": 1, @@ -5967,8 +5967,8 @@ "yScale": 1 }, { - "x": 0.015884065475056275, - "y": 1.6436705331635153 + "x": 0.01588, + "y": 1.64367 }, [ { @@ -6054,190 +6054,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 71.7556658076289, - "y": 161.92073576724567 + "x": 71.75567, + "y": 161.92074 }, { "body": null, "index": 1, "isInternal": false, - "x": 69.20305214981887, - "y": 167.73228405612377 + "x": 69.20305, + "y": 167.73228 }, { "body": null, "index": 2, "isInternal": false, - "x": 65.33348097502414, - "y": 172.7646353875788 + "x": 65.33348, + "y": 172.76464 }, { "body": null, "index": 3, "isInternal": false, - "x": 60.37145716441049, - "y": 176.72492877354196 + "x": 60.37146, + "y": 176.72493 }, { "body": null, "index": 4, "isInternal": false, - "x": 54.60680833891231, - "y": 179.38241554089984 + "x": 54.60681, + "y": 179.38242 }, { "body": null, "index": 5, "isInternal": false, - "x": 48.373866651042086, - "y": 180.5831086389101 + "x": 48.37387, + "y": 180.58311 }, { "body": null, "index": 6, "isInternal": false, - "x": 42.03399186107276, - "y": 180.25689299319157 + "x": 42.03399, + "y": 180.25689 }, { "body": null, "index": 7, "isInternal": false, - "x": 35.956295354041245, - "y": 178.42330793423824 + "x": 35.9563, + "y": 178.42331 }, { "body": null, "index": 8, "isInternal": false, - "x": 30.494808979756606, - "y": 175.1885911640243 + "x": 30.49481, + "y": 175.18859 }, { "body": null, "index": 9, "isInternal": false, - "x": 25.965996609518157, - "y": 170.74075230507552 + "x": 25.966, + "y": 170.74075 }, { "body": null, "index": 10, "isInternal": false, - "x": 22.632562603506354, - "y": 165.33762157118022 + "x": 22.63256, + "y": 165.33762 }, { "body": null, "index": 11, "isInternal": false, - "x": 20.68940205406237, - "y": 159.29425594604342 + "x": 20.6894, + "y": 159.29426 }, { "body": null, "index": 12, "isInternal": false, - "x": 20.248951478272822, - "y": 152.9621209750967 + "x": 20.24895, + "y": 152.96212 }, { "body": null, "index": 13, "isInternal": false, - "x": 21.336734314932382, - "y": 146.70801572332255 + "x": 21.33673, + "y": 146.70802 }, { "body": null, "index": 14, "isInternal": false, - "x": 23.889347972742364, - "y": 140.89646743444445 + "x": 23.88935, + "y": 140.89647 }, { "body": null, "index": 15, "isInternal": false, - "x": 27.75891914753712, - "y": 135.8641161029894 + "x": 27.75892, + "y": 135.86412 }, { "body": null, "index": 16, "isInternal": false, - "x": 32.72094295815075, - "y": 131.90382271702626 + "x": 32.72094, + "y": 131.90382 }, { "body": null, "index": 17, "isInternal": false, - "x": 38.485591783648935, - "y": 129.24633594966835 + "x": 38.48559, + "y": 129.24634 }, { "body": null, "index": 18, "isInternal": false, - "x": 44.71853347151915, - "y": 128.0456428516581 + "x": 44.71853, + "y": 128.04564 }, { "body": null, "index": 19, "isInternal": false, - "x": 51.05840826148847, - "y": 128.37185849737668 + "x": 51.05841, + "y": 128.37186 }, { "body": null, "index": 20, "isInternal": false, - "x": 57.136104768519985, - "y": 130.20544355632995 + "x": 57.1361, + "y": 130.20544 }, { "body": null, "index": 21, "isInternal": false, - "x": 62.597591142804625, - "y": 133.44016032654392 + "x": 62.59759, + "y": 133.44016 }, { "body": null, "index": 22, "isInternal": false, - "x": 67.12640351304312, - "y": 137.8879991854927 + "x": 67.1264, + "y": 137.888 }, { "body": null, "index": 23, "isInternal": false, - "x": 70.45983751905493, - "y": 143.291129919388 + "x": 70.45984, + "y": 143.29113 }, { "body": null, "index": 24, "isInternal": false, - "x": 72.40299806849889, - "y": 149.3344955445248 + "x": 72.403, + "y": 149.3345 }, { "body": null, "index": 25, "isInternal": false, - "x": 72.84344864428846, - "y": 155.66663051547152 + "x": 72.84345, + "y": 155.66663 }, { - "angle": 0.008780301703004196, - "anglePrev": 0.00644293980954596, - "angularSpeed": 0.0016821491581978732, - "angularVelocity": 0.0022839531083646723, - "area": 2399.6281959999997, + "angle": 0.00878, + "anglePrev": 0.00644, + "angularSpeed": 0.00168, + "angularVelocity": 0.00228, + "area": 2399.6282, "axes": { "#": 677 }, @@ -6258,13 +6258,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6286,7 +6286,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6940295261650644, + "speed": 2.69403, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6307,12 +6307,12 @@ } ], { - "x": 0.008780188885784437, - "y": -0.9999614533986448 + "x": 0.00878, + "y": -0.99996 }, { - "x": 0.9999614533986448, - "y": 0.008780188885784437 + "x": 0.99996, + "y": 0.00878 }, { "max": { @@ -6323,12 +6323,12 @@ } }, { - "x": 122.0512460633608, - "y": 185.69804881540696 + "x": 122.05125, + "y": 185.69805 }, { - "x": 72.63683044259776, - "y": 133.5898012075386 + "x": 72.63683, + "y": 133.5898 }, { "category": 1, @@ -6345,16 +6345,16 @@ "y": 0 }, { - "x": 97.34413701888829, - "y": 158.2969102520111 + "x": 97.34414, + "y": 158.29691 }, { - "x": 0.021050339251229247, - "y": 0.0001848330794226647 + "x": 0.02105, + "y": 0.00018 }, { - "x": 97.352849299647, - "y": 155.61799711745164 + "x": 97.35285, + "y": 155.618 }, { "endCol": 2, @@ -6377,8 +6377,8 @@ "yScale": 1 }, { - "x": -0.010370007686290705, - "y": 2.677068908317011 + "x": -0.01037, + "y": 2.67707 }, [ { @@ -6398,36 +6398,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 121.62113973060174, - "y": 183.00401929648362 + "x": 121.62114, + "y": 183.00402 }, { "body": null, "index": 1, "isInternal": false, - "x": 72.63702797441579, - "y": 182.57391296372455 + "x": 72.63703, + "y": 182.57391 }, { "body": null, "index": 2, "isInternal": false, - "x": 73.06713430717484, - "y": 133.5898012075386 + "x": 73.06713, + "y": 133.5898 }, { "body": null, "index": 3, "isInternal": false, - "x": 122.0512460633608, - "y": 134.01990754029762 + "x": 122.05125, + "y": 134.01991 }, { - "angle": 0.007009216207172592, - "anglePrev": 0.005388667003155523, - "angularSpeed": 0.0015465527195815362, - "angularVelocity": 0.0019997410000074057, - "area": 1489.7843794189994, + "angle": 0.00701, + "anglePrev": 0.00539, + "angularSpeed": 0.00155, + "angularVelocity": 0.002, + "area": 1489.78438, "axes": { "#": 699 }, @@ -6448,13 +6448,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6476,7 +6476,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7957954983028457, + "speed": 2.7958, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6497,12 +6497,12 @@ } ], { - "x": -0.0070091588145524165, - "y": 0.99997543554465 + "x": -0.00701, + "y": 0.99998 }, { - "x": -0.99997543554465, - "y": -0.0070091588145524165 + "x": -0.99998, + "y": -0.00701 }, { "max": { @@ -6513,12 +6513,12 @@ } }, { - "x": 157.4307938572815, - "y": 179.29909682022245 + "x": 157.43079, + "y": 179.2991 }, { - "x": 121.70653351099351, - "y": 134.18724346142133 + "x": 121.70653, + "y": 134.18724 }, { "category": 1, @@ -6535,16 +6535,16 @@ "y": 0 }, { - "x": 139.56000108854317, - "y": 155.3452992324329 + "x": 139.56, + "y": 155.3453 }, { "x": 0, "y": 0 }, { - "x": 139.55290760560976, - "y": 152.5916096680388 + "x": 139.55291, + "y": 152.59161 }, { "endCol": 3, @@ -6567,8 +6567,8 @@ "yScale": 1 }, { - "x": 0.00569459832209418, - "y": 2.7767897416647713 + "x": 0.00569, + "y": 2.77679 }, [ { @@ -6588,36 +6588,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 122.00140132281022, - "y": 134.18724346142133 + "x": 122.0014, + "y": 134.18724 }, { "body": null, "index": 1, "isInternal": false, - "x": 157.41346866609285, - "y": 134.4354583626459 + "x": 157.41347, + "y": 134.43546 }, { "body": null, "index": 2, "isInternal": false, - "x": 157.11860085427614, - "y": 176.5033550034445 + "x": 157.1186, + "y": 176.50336 }, { "body": null, "index": 3, "isInternal": false, - "x": 121.70653351099351, - "y": 176.25514010221994 + "x": 121.70653, + "y": 176.25514 }, { - "angle": 0.005995532717498969, - "anglePrev": 0.004010058700194726, - "angularSpeed": 0.001794776642222333, - "angularVelocity": 0.0015183109176061752, - "area": 1765.3675322216507, + "angle": 0.006, + "anglePrev": 0.00401, + "angularSpeed": 0.00179, + "angularVelocity": 0.00152, + "area": 1765.36753, "axes": { "#": 721 }, @@ -6638,13 +6638,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6666,7 +6666,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8570616065660692, + "speed": 2.85706, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6687,12 +6687,12 @@ } ], { - "x": -0.005995496797914758, - "y": 0.9999820268475559 + "x": -0.006, + "y": 0.99998 }, { - "x": -0.9999820268475559, - "y": -0.005995496797914758 + "x": -0.99998, + "y": -0.006 }, { "max": { @@ -6703,12 +6703,12 @@ } }, { - "x": 199.14320416932975, - "y": 179.94324462816093 + "x": 199.1432, + "y": 179.94324 }, { - "x": 157.11060268856227, - "y": 134.56640214227414 + "x": 157.1106, + "y": 134.5664 }, { "category": 1, @@ -6725,16 +6725,16 @@ "y": 0 }, { - "x": 178.1188872140189, - "y": 155.82631507364678 + "x": 178.11889, + "y": 155.82632 }, { "x": 0, "y": 0 }, { - "x": 178.10815519826988, - "y": 152.94844824195437 + "x": 178.10816, + "y": 152.94845 }, { "endCol": 4, @@ -6757,8 +6757,8 @@ "yScale": 1 }, { - "x": 0.009371127472121543, - "y": 2.852020526703484 + "x": 0.00937, + "y": 2.85202 }, [ { @@ -6778,36 +6778,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 157.36403347932836, - "y": 134.56640214227414 + "x": 157.36403, + "y": 134.5664 }, { "body": null, "index": 1, "isInternal": false, - "x": 199.12717173947556, - "y": 134.81679740437596 + "x": 199.12717, + "y": 134.8168 }, { "body": null, "index": 2, "isInternal": false, - "x": 198.87374094870947, - "y": 177.08622800501942 + "x": 198.87374, + "y": 177.08623 }, { "body": null, "index": 3, "isInternal": false, - "x": 157.11060268856227, - "y": 176.83583274291763 + "x": 157.1106, + "y": 176.83583 }, { - "angle": 0.0005609568425663023, - "anglePrev": -0.00015511081197158778, - "angularSpeed": 0.0004096259679820256, - "angularVelocity": 0.0006483527622762205, - "area": 1919.5457599999997, + "angle": 0.00056, + "anglePrev": -0.00016, + "angularSpeed": 0.00041, + "angularVelocity": 0.00065, + "area": 1919.54576, "axes": { "#": 743 }, @@ -6828,13 +6828,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6856,7 +6856,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9048217294243903, + "speed": 2.90482, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6880,16 +6880,16 @@ } ], { - "x": -0.4994913377817467, - "y": -0.8663188809445402 + "x": -0.49949, + "y": -0.86632 }, { - "x": 0.500462958233651, - "y": -0.8657579496811005 + "x": 0.50046, + "y": -0.86576 }, { - "x": 0.9999998426637147, - "y": 0.00056095681314668 + "x": 1, + "y": 0.00056 }, { "max": { @@ -6900,12 +6900,12 @@ } }, { - "x": 246.1022897014898, - "y": 191.9774953490479 + "x": 246.10229, + "y": 191.9775 }, { - "x": 198.98052192585357, - "y": 134.71080330064103 + "x": 198.98052, + "y": 134.7108 }, { "category": 1, @@ -6922,16 +6922,16 @@ "y": 0 }, { - "x": 222.5281421862049, - "y": 161.89179902408353 + "x": 222.52814, + "y": 161.8918 }, { "x": 0, "y": 0 }, { - "x": 222.50745074406052, - "y": 158.99948097988585 + "x": 222.50745, + "y": 158.99948 }, { "endCol": 5, @@ -6954,8 +6954,8 @@ "yScale": 1 }, { - "x": 0.01978373281599488, - "y": 2.888883588915263 + "x": 0.01978, + "y": 2.88888 }, [ { @@ -6981,50 +6981,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 246.06051451846122, - "y": 175.4960018091075 + "x": 246.06051, + "y": 175.496 }, { "body": null, "index": 1, "isInternal": false, - "x": 222.51289481906673, - "y": 189.072794747526 + "x": 222.51289, + "y": 189.07279 }, { "body": null, "index": 2, "isInternal": false, - "x": 198.98052192585357, - "y": 175.4695919623446 + "x": 198.98052, + "y": 175.46959 }, { "body": null, "index": 3, "isInternal": false, - "x": 198.99576985394856, - "y": 148.28759623905955 + "x": 198.99577, + "y": 148.2876 }, { "body": null, "index": 4, "isInternal": false, - "x": 222.54338955334305, - "y": 134.71080330064103 + "x": 222.54339, + "y": 134.7108 }, { "body": null, "index": 5, "isInternal": false, - "x": 246.0757624465562, - "y": 148.31400608582248 + "x": 246.07576, + "y": 148.31401 }, { - "angle": 0.0004196039611134416, - "anglePrev": 0.00033034848265006694, - "angularSpeed": 0.00012757055975634783, - "angularVelocity": 0.00008856138814230526, - "area": 6052.328004, + "angle": 0.00042, + "anglePrev": 0.00033, + "angularSpeed": 0.00013, + "angularVelocity": 0.00009, + "area": 6052.328, "axes": { "#": 768 }, @@ -7045,13 +7045,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -7073,7 +7073,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.920402276861175, + "speed": 2.9204, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7097,16 +7097,16 @@ } ], { - "x": -0.4996262492584678, - "y": -0.8662410813693352 + "x": -0.49963, + "y": -0.86624 }, { - "x": 0.5003530296153194, - "y": -0.8658214860782627 + "x": 0.50035, + "y": -0.86582 }, { - "x": 0.9999999119662591, - "y": 0.0004196039488003394 + "x": 1, + "y": 0.00042 }, { "max": { @@ -7117,12 +7117,12 @@ } }, { - "x": 329.6332204157024, - "y": 234.32953860102322 + "x": 329.63322, + "y": 234.32954 }, { - "x": 245.99227724963217, - "y": 134.87923302966948 + "x": 245.99228, + "y": 134.87923 }, { "category": 1, @@ -7139,16 +7139,16 @@ "y": 0 }, { - "x": 287.8013998720062, - "y": 183.14422878072102 + "x": 287.8014, + "y": 183.14423 }, { - "x": -0.018070196221101675, - "y": 0.005004610553714252 + "x": -0.01807, + "y": 0.005 }, { - "x": 287.77969556792567, - "y": 180.22589647390004 + "x": 287.7797, + "y": 180.2259 }, { "endCol": 6, @@ -7171,8 +7171,8 @@ "yScale": 1 }, { - "x": 0.02197561409957416, - "y": 2.918111185519507 + "x": 0.02198, + "y": 2.91811 }, [ { @@ -7198,50 +7198,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 329.5902698901874, - "y": 207.29476568165865 + "x": 329.59027, + "y": 207.29477 }, { "body": null, "index": 1, "isInternal": false, - "x": 287.78114768741733, - "y": 231.4092245317725 + "x": 287.78115, + "y": 231.40922 }, { "body": null, "index": 2, "isInternal": false, - "x": 245.99227724963217, - "y": 207.25968763074687 + "x": 245.99228, + "y": 207.25969 }, { "body": null, "index": 3, "isInternal": false, - "x": 246.01252985382496, - "y": 158.9936918797834 + "x": 246.01253, + "y": 158.99369 }, { "body": null, "index": 4, "isInternal": false, - "x": 287.82165205659504, - "y": 134.87923302966948 + "x": 287.82165, + "y": 134.87923 }, { "body": null, "index": 5, "isInternal": false, - "x": 329.61052249438023, - "y": 159.0287699306952 + "x": 329.61052, + "y": 159.02877 }, { - "angle": -0.0005296981587690709, - "anglePrev": -0.00046315066805609456, - "angularSpeed": 0.0001352383888022528, - "angularVelocity": -0.00006058282544053477, - "area": 2220.023313496789, + "angle": -0.00053, + "anglePrev": -0.00046, + "angularSpeed": 0.00014, + "angularVelocity": -0.00006, + "area": 2220.02331, "axes": { "#": 793 }, @@ -7262,13 +7262,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7290,7 +7290,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.922846788795428, + "speed": 2.92285, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7311,12 +7311,12 @@ } ], { - "x": 0.0005296981339986073, - "y": 0.9999998597099335 + "x": 0.00053, + "y": 1 }, { - "x": -0.9999998597099335, - "y": 0.0005296981339986073 + "x": -1, + "y": 0.00053 }, { "max": { @@ -7327,12 +7327,12 @@ } }, { - "x": 374.7293378960784, - "y": 186.89778584603144 + "x": 374.72934, + "y": 186.89779 }, { - "x": 329.5289070554119, - "y": 134.78265301221703 + "x": 329.52891, + "y": 134.78265 }, { "category": 1, @@ -7349,16 +7349,16 @@ "y": 0 }, { - "x": 352.11760769526165, - "y": 159.3788413987969 + "x": 352.11761, + "y": 159.37884 }, { "x": 0, "y": 0 }, { - "x": 352.0955909081432, - "y": 156.45660369066337 + "x": 352.09559, + "y": 156.4566 }, { "endCol": 7, @@ -7381,8 +7381,8 @@ "yScale": 1 }, { - "x": 0.02277255389236643, - "y": 2.921928677024141 + "x": 0.02277, + "y": 2.92193 }, [ { @@ -7402,36 +7402,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 329.5289070554119, - "y": 134.80656960503498 + "x": 329.52891, + "y": 134.80657 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.6802638898485, - "y": 134.78265301221703 + "x": 374.68026, + "y": 134.78265 }, { "body": null, "index": 2, "isInternal": false, - "x": 374.70630833511143, - "y": 183.9511131925588 + "x": 374.70631, + "y": 183.95111 }, { "body": null, "index": 3, "isInternal": false, - "x": 329.5549515006748, - "y": 183.9750297853768 + "x": 329.55495, + "y": 183.97503 }, { - "angle": -0.00041778241243487445, - "anglePrev": -0.00015166620290133295, - "angularSpeed": 0.0002298590730111693, - "angularVelocity": -0.0002226657850352569, - "area": 2601.1074479999997, + "angle": -0.00042, + "anglePrev": -0.00015, + "angularSpeed": 0.00023, + "angularVelocity": -0.00022, + "area": 2601.10745, "axes": { "#": 815 }, @@ -7452,13 +7452,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7480,7 +7480,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9133333060643944, + "speed": 2.91333, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7504,16 +7504,16 @@ } ], { - "x": -0.5003486834670146, - "y": -0.8658239976766786 + "x": -0.50035, + "y": -0.86582 }, { - "x": 0.49962505681035585, - "y": -0.8662417691425693 + "x": 0.49963, + "y": -0.86624 }, { - "x": 0.9999999127289292, - "y": -0.00041778240028143496 + "x": 1, + "y": -0.00042 }, { "max": { @@ -7524,12 +7524,12 @@ } }, { - "x": 429.45814497586645, - "y": 200.96359300498375 + "x": 429.45814, + "y": 200.96359 }, { - "x": 374.6208233077831, - "y": 134.7683346087017 + "x": 374.62082, + "y": 134.76833 }, { "category": 1, @@ -7546,16 +7546,16 @@ "y": 0 }, { - "x": 402.02943065173605, - "y": 166.40933184735778 + "x": 402.02943, + "y": 166.40933 }, { - "x": 0.005598323391977687, - "y": -0.000006150957912715143 + "x": 0.0056, + "y": -0.00001 }, { - "x": 402.0049200750277, - "y": 163.49699309818092 + "x": 402.00492, + "y": 163.49699 }, { "endCol": 8, @@ -7578,8 +7578,8 @@ "yScale": 1 }, { - "x": 0.022392312208751264, - "y": 2.915143152158521 + "x": 0.02239, + "y": 2.91514 }, [ { @@ -7605,50 +7605,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 429.438037995689, - "y": 182.21888239330966 + "x": 429.43804, + "y": 182.21888 }, { "body": null, "index": 1, "isInternal": false, - "x": 402.04264970466335, - "y": 198.0503290860138 + "x": 402.04265, + "y": 198.05033 }, { "body": null, "index": 2, "isInternal": false, - "x": 374.63404277849276, - "y": 182.24177853997466 + "x": 374.63404, + "y": 182.24178 }, { "body": null, "index": 3, "isInternal": false, - "x": 374.6208233077831, - "y": 150.5997813014059 + "x": 374.62082, + "y": 150.59978 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.01621159880875, - "y": 134.7683346087017 + "x": 402.01621, + "y": 134.76833 }, { "body": null, "index": 5, "isInternal": false, - "x": 429.42481852497934, - "y": 150.5768851547409 + "x": 429.42482, + "y": 150.57689 }, { - "angle": -0.00010876775715693265, - "anglePrev": -0.00036081178356132406, - "angularSpeed": 0.000018679280733743556, - "angularVelocity": -0.0005057021979424977, - "area": 1413.3088360000002, + "angle": -0.00011, + "anglePrev": -0.00036, + "angularSpeed": 0.00002, + "angularVelocity": -0.00051, + "area": 1413.30884, "axes": { "#": 840 }, @@ -7669,13 +7669,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7697,7 +7697,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.906901069871206, + "speed": 2.9069, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7718,12 +7718,12 @@ } ], { - "x": -0.00010876775694247117, - "y": -0.9999999940847876 + "x": -0.00011, + "y": -1 }, { - "x": 0.9999999940847876, - "y": -0.00010876775694247117 + "x": 1, + "y": -0.00011 }, { "max": { @@ -7734,12 +7734,12 @@ } }, { - "x": 466.9764217515834, - "y": 175.25714982966005 + "x": 466.97642, + "y": 175.25715 }, { - "x": 429.3655227206935, - "y": 134.75218819356158 + "x": 429.36552, + "y": 134.75219 }, { "category": 1, @@ -7756,16 +7756,16 @@ "y": 0 }, { - "x": 448.1645671170325, - "y": 153.5512325899006 + "x": 448.16457, + "y": 153.55123 }, { - "x": 0.02846369191586163, - "y": -0.00001189163056727528 + "x": 0.02846, + "y": -0.00001 }, { - "x": 448.1474827972797, - "y": 150.62717601585297 + "x": 448.14748, + "y": 150.62718 }, { "endCol": 9, @@ -7788,8 +7788,8 @@ "yScale": 1 }, { - "x": 0.02094881684467964, - "y": 2.889352471007612 + "x": 0.02095, + "y": 2.88935 }, [ { @@ -7809,36 +7809,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 466.9636115133715, - "y": 172.3461879711851 + "x": 466.96361, + "y": 172.34619 }, { "body": null, "index": 1, "isInternal": false, - "x": 429.369611735748, - "y": 172.3502769862396 + "x": 429.36961, + "y": 172.35028 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.3655227206935, - "y": 134.75627720861607 + "x": 429.36552, + "y": 134.75628 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.959522498317, - "y": 134.75218819356158 + "x": 466.95952, + "y": 134.75219 }, { - "angle": 0.000051905028354249624, - "anglePrev": -0.00008362190735114239, - "angularSpeed": 0.000051905028354249624, - "angularVelocity": 0.00003043888249430642, - "area": 5460.808751999999, + "angle": 0.00005, + "anglePrev": -0.00008, + "angularSpeed": 0.00005, + "angularVelocity": 0.00003, + "area": 5460.80875, "axes": { "#": 862 }, @@ -7859,13 +7859,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7887,7 +7887,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072980893483975, + "speed": 2.9073, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7911,16 +7911,16 @@ } ], { - "x": -0.4999531654665324, - "y": -0.8660524420264596 + "x": -0.49995, + "y": -0.86605 }, { - "x": 0.5000430677256106, - "y": -0.866000537193575 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.999999998652934, - "y": 0.000051905028330943127 + "x": 1, + "y": 0.00005 }, { "max": { @@ -7931,12 +7931,12 @@ } }, { - "x": 546.4284553910551, - "y": 229.35503597115934 + "x": 546.42846, + "y": 229.35504 }, { - "x": 467.00674026993283, - "y": 134.75576010421116 + "x": 467.00674, + "y": 134.75576 }, { "category": 1, @@ -7953,16 +7953,16 @@ "y": 0 }, { - "x": 506.71193003541333, - "y": 180.6017600424536 + "x": 506.71193, + "y": 180.60176 }, { - "x": 0.11605516260997649, + "x": 0.11606, "y": 0 }, { - "x": 506.6907295388152, - "y": 177.69804704300546 + "x": 506.69073, + "y": 177.69805 }, { "endCol": 11, @@ -7985,8 +7985,8 @@ "yScale": 1 }, { - "x": 0.02020032828335161, - "y": 2.9126947488005612 + "x": 0.0202, + "y": 2.91269 }, [ { @@ -8012,50 +8012,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 546.414740162965, - "y": 203.52682084881965 + "x": 546.41474, + "y": 203.52682 }, { "body": null, "index": 1, "isInternal": false, - "x": 506.70955039748446, - "y": 226.44775998069602 + "x": 506.70955, + "y": 226.44776 }, { "body": null, "index": 2, "isInternal": false, - "x": 467.00674026993283, - "y": 203.52269917432997 + "x": 467.00674, + "y": 203.5227 }, { "body": null, "index": 3, "isInternal": false, - "x": 467.00911990786165, - "y": 157.67669923608756 + "x": 467.00912, + "y": 157.6767 }, { "body": null, "index": 4, "isInternal": false, - "x": 506.7143096733422, - "y": 134.75576010421116 + "x": 506.71431, + "y": 134.75576 }, { "body": null, "index": 5, "isInternal": false, - "x": 546.4171198008938, - "y": 157.68082091057724 + "x": 546.41712, + "y": 157.68082 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 887 }, @@ -8076,13 +8076,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -8104,7 +8104,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8141,12 +8141,12 @@ } }, { - "x": 566.2487139917695, - "y": 157.14554386167617 + "x": 566.24871, + "y": 157.14554 }, { - "x": 546.0781893004115, - "y": 134.75575476702593 + "x": 546.07819, + "y": 134.75575 }, { "category": 1, @@ -8163,16 +8163,16 @@ "y": 0 }, { - "x": 556.1634516460905, - "y": 145.95064931435107 + "x": 556.16345, + "y": 145.95065 }, { "x": 0, "y": 0 }, { - "x": 556.1634516460905, - "y": 143.0433785993154 + "x": 556.16345, + "y": 143.04338 }, { "endCol": 11, @@ -8196,7 +8196,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8216,36 +8216,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 546.0781893004115, - "y": 134.75575476702593 + "x": 546.07819, + "y": 134.75575 }, { "body": null, "index": 1, "isInternal": false, - "x": 566.2487139917695, - "y": 134.75575476702593 + "x": 566.24871, + "y": 134.75575 }, { "body": null, "index": 2, "isInternal": false, - "x": 566.2487139917695, - "y": 157.14554386167617 + "x": 566.24871, + "y": 157.14554 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.0781893004115, - "y": 157.14554386167617 + "x": 546.07819, + "y": 157.14554 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 909 }, @@ -8266,13 +8266,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -8294,7 +8294,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8331,12 +8331,12 @@ } }, { - "x": 668.0818758573388, - "y": 164.42859427319883 + "x": 668.08188, + "y": 164.42859 }, { - "x": 566.2487139917695, - "y": 134.75575476702596 + "x": 566.24871, + "y": 134.75575 }, { "category": 1, @@ -8353,16 +8353,16 @@ "y": 0 }, { - "x": 617.1652949245541, - "y": 149.5921745201124 + "x": 617.16529, + "y": 149.59217 }, { "x": 0, "y": 0 }, { - "x": 617.1652949245541, - "y": 146.68490380507671 + "x": 617.16529, + "y": 146.6849 }, { "endCol": 13, @@ -8386,7 +8386,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8406,36 +8406,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 566.2487139917695, - "y": 134.75575476702596 + "x": 566.24871, + "y": 134.75575 }, { "body": null, "index": 1, "isInternal": false, - "x": 668.0818758573388, - "y": 134.75575476702596 + "x": 668.08188, + "y": 134.75575 }, { "body": null, "index": 2, "isInternal": false, - "x": 668.0818758573388, - "y": 164.42859427319883 + "x": 668.08188, + "y": 164.42859 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.2487139917695, - "y": 164.42859427319883 + "x": 566.24871, + "y": 164.42859 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 931 }, @@ -8456,13 +8456,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8484,7 +8484,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8521,12 +8521,12 @@ } }, { - "x": 708.1533779149519, - "y": 156.13602740077056 + "x": 708.15338, + "y": 156.13603 }, { - "x": 668.0818758573388, - "y": 134.7557547670257 + "x": 668.08188, + "y": 134.75575 }, { "category": 1, @@ -8543,16 +8543,16 @@ "y": 0 }, { - "x": 688.1176268861453, - "y": 145.44589108389812 + "x": 688.11763, + "y": 145.44589 }, { "x": 0, "y": 0 }, { - "x": 688.1176268861453, - "y": 142.53862036886247 + "x": 688.11763, + "y": 142.53862 }, { "endCol": 14, @@ -8576,7 +8576,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -8596,36 +8596,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 668.0818758573388, - "y": 134.7557547670257 + "x": 668.08188, + "y": 134.75575 }, { "body": null, "index": 1, "isInternal": false, - "x": 708.1533779149519, - "y": 134.7557547670257 + "x": 708.15338, + "y": 134.75575 }, { "body": null, "index": 2, "isInternal": false, - "x": 708.1533779149519, - "y": 156.13602740077056 + "x": 708.15338, + "y": 156.13603 }, { "body": null, "index": 3, "isInternal": false, - "x": 668.0818758573388, - "y": 156.13602740077056 + "x": 668.08188, + "y": 156.13603 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 953 }, @@ -8646,13 +8646,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8674,7 +8674,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8701,16 +8701,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8725,12 +8725,12 @@ } }, { - "x": 778.4053779149518, - "y": 205.00775476702597 + "x": 778.40538, + "y": 205.00775 }, { - "x": 708.1533779149519, - "y": 134.75575476702593 + "x": 708.15338, + "y": 134.75575 }, { "category": 1, @@ -8747,16 +8747,16 @@ "y": 0 }, { - "x": 743.2793779149519, - "y": 169.88175476702597 + "x": 743.27938, + "y": 169.88175 }, { "x": 0, "y": 0 }, { - "x": 743.2793779149519, - "y": 166.9744840519903 + "x": 743.27938, + "y": 166.97448 }, { "endCol": 16, @@ -8780,7 +8780,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8812,64 +8812,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.4053779149518, - "y": 184.43175476702598 + "x": 778.40538, + "y": 184.43175 }, { "body": null, "index": 1, "isInternal": false, - "x": 757.8293779149518, - "y": 205.00775476702597 + "x": 757.82938, + "y": 205.00775 }, { "body": null, "index": 2, "isInternal": false, - "x": 728.7293779149519, - "y": 205.00775476702597 + "x": 728.72938, + "y": 205.00775 }, { "body": null, "index": 3, "isInternal": false, - "x": 708.1533779149519, - "y": 184.43175476702598 + "x": 708.15338, + "y": 184.43175 }, { "body": null, "index": 4, "isInternal": false, - "x": 708.1533779149519, - "y": 155.33175476702598 + "x": 708.15338, + "y": 155.33175 }, { "body": null, "index": 5, "isInternal": false, - "x": 728.7293779149519, - "y": 134.75575476702593 + "x": 728.72938, + "y": 134.75575 }, { "body": null, "index": 6, "isInternal": false, - "x": 757.8293779149518, - "y": 134.75575476702593 + "x": 757.82938, + "y": 134.75575 }, { "body": null, "index": 7, "isInternal": false, - "x": 778.4053779149518, - "y": 155.33175476702598 + "x": 778.40538, + "y": 155.33175 }, { - "angle": -0.0001944219408260593, - "anglePrev": -0.00005820510707731357, - "angularSpeed": 0.00013621683374874573, - "angularVelocity": -0.00013621683374874573, - "area": 1965.14242904257, + "angle": -0.00019, + "anglePrev": -0.00006, + "angularSpeed": 0.00014, + "angularVelocity": -0.00014, + "area": 1965.14243, "axes": { "#": 981 }, @@ -8890,13 +8890,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8918,7 +8918,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8864574051859595, + "speed": 2.88646, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8939,12 +8939,12 @@ } ], { - "x": 0.00019442193960120483, - "y": 0.9999999811000543 + "x": 0.00019, + "y": 1 }, { - "x": -0.9999999811000543, - "y": 0.00019442193960120483 + "x": -1, + "y": 0.00019 }, { "max": { @@ -8955,12 +8955,12 @@ } }, { - "x": 1035.7433017653852, - "y": 143.7316603764659 + "x": 1035.7433, + "y": 143.73166 }, { - "x": 946.2347480645401, - "y": 121.75841214365413 + "x": 946.23475, + "y": 121.75841 }, { "category": 1, @@ -8977,16 +8977,16 @@ "y": 0 }, { - "x": 990.9890249149622, - "y": 132.74503626006 + "x": 990.98902, + "y": 132.74504 }, { "x": 0, "y": 0 }, { - "x": 990.9878317555937, - "y": 129.858579101479 + "x": 990.98783, + "y": 129.85858 }, { "endCol": 21, @@ -9009,8 +9009,8 @@ "yScale": 1 }, { - "x": 0.0011931593685187635, - "y": 2.886457158581014 + "x": 0.00119, + "y": 2.88646 }, [ { @@ -9030,36 +9030,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 946.2347480645401, - "y": 121.77581374067579 + "x": 946.23475, + "y": 121.77581 }, { "body": null, "index": 1, "isInternal": false, - "x": 1035.7390330670157, - "y": 121.75841214365413 + "x": 1035.73903, + "y": 121.75841 }, { "body": null, "index": 2, "isInternal": false, - "x": 1035.7433017653852, - "y": 143.71425877944426 + "x": 1035.7433, + "y": 143.71426 }, { "body": null, "index": 3, "isInternal": false, - "x": 946.2390167629092, - "y": 143.7316603764659 + "x": 946.23902, + "y": 143.73166 }, { - "angle": -0.001147012229154084, - "anglePrev": -0.0009829708584831495, - "angularSpeed": 0.0001640413706709345, - "angularVelocity": -0.0001640413706709345, - "area": 1492.5256200000001, + "angle": -0.00115, + "anglePrev": -0.00098, + "angularSpeed": 0.00016, + "angularVelocity": -0.00016, + "area": 1492.52562, "axes": { "#": 1003 }, @@ -9080,13 +9080,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1714.8324723309402, - "inverseInertia": 0.0005831473430408735, - "inverseMass": 0.6700052492231255, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "inverseMass": 0.67001, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.49252562, + "mass": 1.49253, "motion": 0, "parent": null, "position": { @@ -9108,7 +9108,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9024915624703973, + "speed": 2.90249, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9132,16 +9132,16 @@ } ], { - "x": -0.49900892345349457, - "y": 0.8665968464711743 + "x": -0.49901, + "y": 0.8666 }, { - "x": -0.500995603042456, - "y": -0.8654498285470544 + "x": -0.501, + "y": -0.86545 }, { - "x": 0.9999993421815452, - "y": -0.0011470119776454688 + "x": 1, + "y": -0.00115 }, { "max": { @@ -9152,12 +9152,12 @@ } }, { - "x": 895.8925146298899, - "y": 233.28023021023685 + "x": 895.89251, + "y": 233.28023 }, { - "x": 845.0148775394076, - "y": 174.5702688307584 + "x": 845.01488, + "y": 174.57027 }, { "category": 1, @@ -9174,16 +9174,16 @@ "y": 0 }, { - "x": 878.9108552419932, - "y": 203.94468907949474 + "x": 878.91086, + "y": 203.94469 }, { "x": 0, "y": 0 }, { - "x": 878.9116449227015, - "y": 201.04219762444853 + "x": 878.91164, + "y": 201.0422 }, { "endCol": 18, @@ -9206,8 +9206,8 @@ "yScale": 1 }, { - "x": -0.0007896807082443046, - "y": 2.9024914550462033 + "x": -0.00079, + "y": 2.90249 }, [ { @@ -9224,29 +9224,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 895.8925146298899, - "y": 233.28023021023685 + "x": 895.89251, + "y": 233.28023 }, { "body": null, "index": 1, "isInternal": false, - "x": 845.0148775394076, - "y": 203.983568197489 + "x": 845.01488, + "y": 203.98357 }, { "body": null, "index": 2, "isInternal": false, - "x": 895.8251735566821, - "y": 174.5702688307584 + "x": 895.82517, + "y": 174.57027 }, { - "angle": -0.001564303353961739, - "anglePrev": -0.0013528232460197566, - "angularSpeed": 0.0002114801079419823, - "angularVelocity": -0.0002114801079419823, - "area": 942.0065703840771, + "angle": -0.00156, + "anglePrev": -0.00135, + "angularSpeed": 0.00021, + "angularVelocity": -0.00021, + "area": 942.00657, "axes": { "#": 1025 }, @@ -9267,13 +9267,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -9295,7 +9295,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9120791567443165, + "speed": 2.91208, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9316,12 +9316,12 @@ } ], { - "x": 0.0015643027159750376, - "y": 0.9999987764777576 + "x": 0.00156, + "y": 1 }, { - "x": -0.9999987764777576, - "y": 0.0015643027159750376 + "x": -1, + "y": 0.00156 }, { "max": { @@ -9332,12 +9332,12 @@ } }, { - "x": 922.0184433486517, - "y": 220.95449115230082 + "x": 922.01844, + "y": 220.95449 }, { - "x": 900.8846485223786, - "y": 173.2797155907576 + "x": 900.88465, + "y": 173.27972 }, { "category": 1, @@ -9354,16 +9354,16 @@ "y": 0 }, { - "x": 911.4495851118796, - "y": 195.6610651134615 + "x": 911.44959, + "y": 195.66107 }, { - "x": -0.13743082731154285, - "y": 0.9264263163035364 + "x": -0.13743, + "y": 0.92643 }, { - "x": 911.4456634646086, - "y": 192.74898859732608 + "x": 911.44566, + "y": 192.74899 }, { "endCol": 19, @@ -9386,8 +9386,8 @@ "yScale": 1 }, { - "x": 0.003921647271000666, - "y": 2.9120765161354143 + "x": 0.00392, + "y": 2.91208 }, [ { @@ -9407,36 +9407,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 900.8846485223786, - "y": 173.31265969330045 + "x": 900.88465, + "y": 173.31266 }, { "body": null, "index": 1, "isInternal": false, - "x": 921.9445507386274, - "y": 173.2797155907576 + "x": 921.94455, + "y": 173.27972 }, { "body": null, "index": 2, "isInternal": false, - "x": 922.0145217013807, - "y": 218.00947053362253 + "x": 922.01452, + "y": 218.00947 }, { "body": null, "index": 3, "isInternal": false, - "x": 900.9546194851316, - "y": 218.0424146361654 + "x": 900.95462, + "y": 218.04241 }, { - "angle": -0.0001304553879844775, - "anglePrev": -0.00011469243169148924, - "angularSpeed": 0.000015762956292988257, - "angularVelocity": -0.000015762956292988257, - "area": 2898.415585731765, + "angle": -0.00013, + "anglePrev": -0.00011, + "angularSpeed": 0.00002, + "angularVelocity": -0.00002, + "area": 2898.41559, "axes": { "#": 1047 }, @@ -9457,13 +9457,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -9485,7 +9485,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9081700912449406, + "speed": 2.90817, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9506,12 +9506,12 @@ } ], { - "x": 0.0001304553876144493, - "y": 0.9999999914906958 + "x": 0.00013, + "y": 1 }, { - "x": -0.9999999914906958, - "y": 0.0001304553876144493 + "x": -1, + "y": 0.00013 }, { "max": { @@ -9522,12 +9522,12 @@ } }, { - "x": 1039.623972549202, - "y": 202.42728763302375 + "x": 1039.62397, + "y": 202.42729 }, { - "x": 927.4237690957227, - "y": 173.67097651268554 + "x": 927.42377, + "y": 173.67098 }, { "category": 1, @@ -9544,16 +9544,16 @@ "y": 0 }, { - "x": 983.5242941394556, - "y": 186.59504708885078 + "x": 983.52429, + "y": 186.59505 }, { - "x": 0.042790765282956, - "y": 0.9362208174964212 + "x": 0.04279, + "y": 0.93622 }, { - "x": 983.5251407734418, - "y": 183.68687712084298 + "x": 983.52514, + "y": 183.68688 }, { "endCol": 21, @@ -9576,8 +9576,8 @@ "yScale": 1 }, { - "x": -0.0008466339861115558, - "y": 2.908169968007802 + "x": -0.00085, + "y": 2.90817 }, [ { @@ -9597,36 +9597,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 927.4246157297089, - "y": 173.6856130837438 + "x": 927.42462, + "y": 173.68561 }, { "body": null, "index": 1, "isInternal": false, - "x": 1039.6206024293206, - "y": 173.67097651268554 + "x": 1039.6206, + "y": 173.67098 }, { "body": null, "index": 2, "isInternal": false, - "x": 1039.623972549202, - "y": 199.50448109395776 + "x": 1039.62397, + "y": 199.50448 }, { "body": null, "index": 3, "isInternal": false, - "x": 927.4279858495913, - "y": 199.51911766501595 + "x": 927.42799, + "y": 199.51912 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 842.523055, + "area": 842.52305, "axes": { "#": 1069 }, @@ -9647,13 +9647,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 546.4390114484775, - "inverseInertia": 0.001830030395065027, - "inverseMass": 1.1869111403722952, + "inertia": 546.43901, + "inverseInertia": 0.00183, + "inverseMass": 1.18691, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.842523055, + "mass": 0.84252, "motion": 0, "parent": null, "position": { @@ -9675,7 +9675,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9699,12 +9699,12 @@ } ], { - "x": -0.49999391924129877, - "y": 0.8660289144836479 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999391924129877, - "y": -0.8660289144836479 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -9719,12 +9719,12 @@ } }, { - "x": 1078.6291420319403, - "y": 181.77302548206166 + "x": 1078.62914, + "y": 181.77303 }, { - "x": 1040.42814203194, - "y": 134.75575476702593 + "x": 1040.42814, + "y": 134.75575 }, { "category": 1, @@ -9741,16 +9741,16 @@ "y": 0 }, { - "x": 1065.8954753652736, - "y": 156.81075476702597 + "x": 1065.89548, + "y": 156.81075 }, { - "x": -0.05835893203699935, + "x": -0.05836, "y": 0 }, { - "x": 1065.8954753652736, - "y": 153.9034840519903 + "x": 1065.89548, + "y": 153.90348 }, { "endCol": 22, @@ -9774,7 +9774,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9791,36 +9791,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1078.6291420319403, - "y": 178.86575476702598 + "x": 1078.62914, + "y": 178.86575 }, { "body": null, "index": 1, "isInternal": false, - "x": 1040.42814203194, - "y": 156.81075476702597 + "x": 1040.42814, + "y": 156.81075 }, { "body": null, "index": 2, "isInternal": false, - "x": 1078.6291420319403, - "y": 134.75575476702593 + "x": 1078.62914, + "y": 134.75575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6661.542482000001, + "area": 6661.54248, "axes": { "#": 1091 }, "bounds": { "#": 1105 }, - "circleRadius": 46.273148148148145, + "circleRadius": 46.27315, "collisionFilter": { "#": 1108 }, @@ -9835,13 +9835,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 28251.272419191544, - "inverseInertia": 0.00003539663577491412, - "inverseMass": 0.15011538284144801, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "inverseMass": 0.15012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.661542482000001, + "mass": 6.66154, "motion": 0, "parent": null, "position": { @@ -9863,7 +9863,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9917,52 +9917,52 @@ } ], { - "x": -0.9709335210486909, - "y": -0.23934932150309357 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854504735162902, - "y": -0.46473375060326466 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485309706272006, - "y": -0.6630998311053178 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680534091439667, - "y": -0.822991691549749 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35463801958119895, - "y": -0.9350036764994698 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12048128629971751, - "y": -0.992715598573713 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12048128629971751, - "y": -0.992715598573713 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.35463801958119895, - "y": -0.9350036764994698 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680534091439667, - "y": -0.822991691549749 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7485309706272006, - "y": -0.6630998311053178 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854504735162902, - "y": -0.46473375060326466 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709335210486909, - "y": -0.23934932150309357 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -9977,12 +9977,12 @@ } }, { - "x": 1189.9663484629357, - "y": 230.20902548206163 + "x": 1189.96635, + "y": 230.20903 }, { - "x": 1098.0943484629358, - "y": 134.75575476702593 + "x": 1098.09435, + "y": 134.75575 }, { "category": 1, @@ -9999,16 +9999,16 @@ "y": 0 }, { - "x": 1144.0303484629358, - "y": 181.02875476702596 + "x": 1144.03035, + "y": 181.02875 }, { - "x": 0.5467095984940997, + "x": 0.54671, "y": 0 }, { - "x": 1144.0303484629358, - "y": 178.12148405199028 + "x": 1144.03035, + "y": 178.12148 }, { "endCol": 24, @@ -10032,7 +10032,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10118,190 +10118,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1189.9663484629357, - "y": 186.60675476702596 + "x": 1189.96635, + "y": 186.60675 }, { "body": null, "index": 1, "isInternal": false, - "x": 1187.2963484629358, - "y": 197.43775476702595 + "x": 1187.29635, + "y": 197.43775 }, { "body": null, "index": 2, "isInternal": false, - "x": 1182.1123484629359, - "y": 207.31475476702596 + "x": 1182.11235, + "y": 207.31475 }, { "body": null, "index": 3, "isInternal": false, - "x": 1174.7153484629357, - "y": 215.66475476702595 + "x": 1174.71535, + "y": 215.66475 }, { "body": null, "index": 4, "isInternal": false, - "x": 1165.5343484629357, - "y": 222.00175476702597 + "x": 1165.53435, + "y": 222.00175 }, { "body": null, "index": 5, "isInternal": false, - "x": 1155.1043484629358, - "y": 225.95775476702596 + "x": 1155.10435, + "y": 225.95775 }, { "body": null, "index": 6, "isInternal": false, - "x": 1144.0303484629358, - "y": 227.30175476702595 + "x": 1144.03035, + "y": 227.30175 }, { "body": null, "index": 7, "isInternal": false, - "x": 1132.9563484629357, - "y": 225.95775476702596 + "x": 1132.95635, + "y": 225.95775 }, { "body": null, "index": 8, "isInternal": false, - "x": 1122.5263484629359, - "y": 222.00175476702597 + "x": 1122.52635, + "y": 222.00175 }, { "body": null, "index": 9, "isInternal": false, - "x": 1113.3453484629358, - "y": 215.66475476702595 + "x": 1113.34535, + "y": 215.66475 }, { "body": null, "index": 10, "isInternal": false, - "x": 1105.9483484629357, - "y": 207.31475476702596 + "x": 1105.94835, + "y": 207.31475 }, { "body": null, "index": 11, "isInternal": false, - "x": 1100.7643484629357, - "y": 197.43775476702595 + "x": 1100.76435, + "y": 197.43775 }, { "body": null, "index": 12, "isInternal": false, - "x": 1098.0943484629358, - "y": 186.60675476702596 + "x": 1098.09435, + "y": 186.60675 }, { "body": null, "index": 13, "isInternal": false, - "x": 1098.0943484629358, - "y": 175.45075476702596 + "x": 1098.09435, + "y": 175.45075 }, { "body": null, "index": 14, "isInternal": false, - "x": 1100.7643484629357, - "y": 164.61975476702597 + "x": 1100.76435, + "y": 164.61975 }, { "body": null, "index": 15, "isInternal": false, - "x": 1105.9483484629357, - "y": 154.74275476702596 + "x": 1105.94835, + "y": 154.74275 }, { "body": null, "index": 16, "isInternal": false, - "x": 1113.3453484629358, - "y": 146.39275476702596 + "x": 1113.34535, + "y": 146.39275 }, { "body": null, "index": 17, "isInternal": false, - "x": 1122.5263484629359, - "y": 140.05575476702595 + "x": 1122.52635, + "y": 140.05575 }, { "body": null, "index": 18, "isInternal": false, - "x": 1132.9563484629357, - "y": 136.09975476702593 + "x": 1132.95635, + "y": 136.09975 }, { "body": null, "index": 19, "isInternal": false, - "x": 1144.0303484629358, - "y": 134.75575476702593 + "x": 1144.03035, + "y": 134.75575 }, { "body": null, "index": 20, "isInternal": false, - "x": 1155.1043484629358, - "y": 136.09975476702593 + "x": 1155.10435, + "y": 136.09975 }, { "body": null, "index": 21, "isInternal": false, - "x": 1165.5343484629357, - "y": 140.05575476702595 + "x": 1165.53435, + "y": 140.05575 }, { "body": null, "index": 22, "isInternal": false, - "x": 1174.7153484629357, - "y": 146.39275476702596 + "x": 1174.71535, + "y": 146.39275 }, { "body": null, "index": 23, "isInternal": false, - "x": 1182.1123484629359, - "y": 154.74275476702596 + "x": 1182.11235, + "y": 154.74275 }, { "body": null, "index": 24, "isInternal": false, - "x": 1187.2963484629358, - "y": 164.61975476702597 + "x": 1187.29635, + "y": 164.61975 }, { "body": null, "index": 25, "isInternal": false, - "x": 1189.9663484629357, - "y": 175.45075476702596 + "x": 1189.96635, + "y": 175.45075 }, { - "angle": 0.08336775411278377, - "anglePrev": 0.07301974618106431, - "angularSpeed": 0.010348007931719456, - "angularVelocity": 0.010348007931719456, - "area": 1051.3111283901928, + "angle": 0.08337, + "anglePrev": 0.07302, + "angularSpeed": 0.01035, + "angularVelocity": 0.01035, + "area": 1051.31113, "axes": { "#": 1146 }, @@ -10322,13 +10322,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -10350,7 +10350,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.395920982747778, + "speed": 2.39592, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10371,12 +10371,12 @@ } ], { - "x": -0.08327121748299815, - "y": 0.9965269210306861 + "x": -0.08327, + "y": 0.99653 }, { - "x": -0.9965269210306861, - "y": -0.08327121748299815 + "x": -0.99653, + "y": -0.08327 }, { "max": { @@ -10387,12 +10387,12 @@ } }, { - "x": 54.34861524963813, - "y": 265.9700666412183 + "x": 54.34862, + "y": 265.97007 }, { - "x": 21.773190397598462, - "y": 225.66366576212616 + "x": 21.77319, + "y": 225.66367 }, { "category": 1, @@ -10409,16 +10409,16 @@ "y": 0 }, { - "x": 37.97742322786545, - "y": 244.62181787796905 + "x": 37.97742, + "y": 244.62182 }, { - "x": 0.10056648327756273, + "x": 0.10057, "y": 0 }, { - "x": 37.81046403635976, - "y": 242.23172123056275 + "x": 37.81046, + "y": 242.23172 }, { "endCol": 1, @@ -10441,8 +10441,8 @@ "yScale": 1 }, { - "x": 0.16695919150568683, - "y": 2.390096647406302 + "x": 0.16696, + "y": 2.3901 }, [ { @@ -10462,36 +10462,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 24.735925915208252, - "y": 225.66366576212616 + "x": 24.73593, + "y": 225.66367 }, { "body": null, "index": 1, "isInternal": false, - "x": 54.18165605813244, - "y": 228.12419316678583 + "x": 54.18166, + "y": 228.12419 }, { "body": null, "index": 2, "isInternal": false, - "x": 51.21892054052265, - "y": 263.57996999381197 + "x": 51.21892, + "y": 263.57997 }, { "body": null, "index": 3, "isInternal": false, - "x": 21.773190397598462, - "y": 261.1194425891523 + "x": 21.77319, + "y": 261.11944 }, { - "angle": 0.0011888981924147598, - "anglePrev": 0.0010835776991636498, - "angularSpeed": 0.00013954181395216283, - "angularVelocity": 0.00017532268456903785, - "area": 6245.524001, + "angle": 0.00119, + "anglePrev": 0.00108, + "angularSpeed": 0.00014, + "angularVelocity": 0.00018, + "area": 6245.524, "axes": { "#": 1168 }, @@ -10512,13 +10512,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 24931.28629116745, - "inverseInertia": 0.00004011024494770155, - "inverseMass": 0.16011466769479796, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "inverseMass": 0.16011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.245524001, + "mass": 6.24552, "motion": 0, "parent": null, "position": { @@ -10540,7 +10540,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8913735185921414, + "speed": 2.89137, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10576,32 +10576,32 @@ } ], { - "x": 0.6225789186079519, - "y": 0.7825570203537586 + "x": 0.62258, + "y": 0.78256 }, { - "x": -0.22369946914157013, - "y": 0.9746581695680695 + "x": -0.2237, + "y": 0.97466 }, { - "x": -0.901486836169934, - "y": 0.4328065205288875 + "x": -0.90149, + "y": 0.43281 }, { - "x": -0.9004551628957908, - "y": -0.4349488471237909 + "x": -0.90046, + "y": -0.43495 }, { - "x": -0.22138130026472083, - "y": -0.9751873255396121 + "x": -0.22138, + "y": -0.97519 }, { - "x": 0.6244379181049254, - "y": -0.7810744435921496 + "x": 0.62444, + "y": -0.78107 }, { - "x": 0.9999992932606272, - "y": 0.001188897912334359 + "x": 1, + "y": 0.00119 }, { "max": { @@ -10612,12 +10612,12 @@ } }, { - "x": 134.57766488196162, - "y": 330.01430614461594 + "x": 134.57766, + "y": 330.01431 }, { - "x": 43.732330598266074, - "y": 233.96900089990555 + "x": 43.73233, + "y": 233.969 }, { "category": 1, @@ -10634,16 +10634,16 @@ "y": 0 }, { - "x": 91.50633449926706, - "y": 280.53332885317917 + "x": 91.50633, + "y": 280.53333 }, { - "x": 0.01710249148493182, - "y": 0.05440267011189506 + "x": 0.0171, + "y": 0.0544 }, { - "x": 91.5050613100748, - "y": 277.6439418751724 + "x": 91.50506, + "y": 277.64394 }, { "endCol": 2, @@ -10666,8 +10666,8 @@ "yScale": 1 }, { - "x": 0.005172226573762373, - "y": 2.89425750613691 + "x": 0.00517, + "y": 2.89426 }, [ { @@ -10696,57 +10696,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 134.52462293838957, - "y": 301.3124878919464 + "x": 134.52462, + "y": 301.31249 }, { "body": null, "index": 1, "isInternal": false, - "x": 102.0819140230902, - "y": 327.1229350643059 + "x": 102.08191, + "y": 327.12294 }, { "body": null, "index": 2, "isInternal": false, - "x": 61.67491136022137, - "y": 317.8488887088626 + "x": 61.67491, + "y": 317.84889 }, { "body": null, "index": 3, "isInternal": false, - "x": 43.732330598266074, - "y": 280.47653039953576 + "x": 43.73233, + "y": 280.47653 }, { "body": null, "index": 4, "isInternal": false, - "x": 61.76372441206858, - "y": 243.14694150370732 + "x": 61.76372, + "y": 243.14694 }, { "body": null, "index": 5, "isInternal": false, - "x": 102.19266461921582, - "y": 233.96900089990555 + "x": 102.19266, + "y": 233.969 }, { "body": null, "index": 6, "isInternal": false, - "x": 134.5739098902433, - "y": 259.856517190534 + "x": 134.57391, + "y": 259.85652 }, { - "angle": 0.0006351761500323259, - "anglePrev": 0.0006728323904826585, - "angularSpeed": 0.0003489301845895466, - "angularVelocity": 0.0009115987615107555, - "area": 1100.443548, + "angle": 0.00064, + "anglePrev": 0.00067, + "angularSpeed": 0.00035, + "angularVelocity": 0.00091, + "area": 1100.44355, "axes": { "#": 1198 }, @@ -10767,13 +10767,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 932.2097612415441, - "inverseInertia": 0.001072719940915627, - "inverseMass": 0.9087244882460795, + "inertia": 932.20976, + "inverseInertia": 0.00107, + "inverseMass": 0.90872, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.1004435479999999, + "mass": 1.10044, "motion": 0, "parent": null, "position": { @@ -10795,7 +10795,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9117990453198024, + "speed": 2.9118, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10819,16 +10819,16 @@ } ], { - "x": -0.5005506016277237, - "y": 0.865707280326395 + "x": -0.50055, + "y": 0.86571 }, { - "x": -0.49945044479580797, - "y": -0.8663424572265113 + "x": -0.49945, + "y": -0.86634 }, { - "x": 0.9999997982756359, - "y": 0.000635176107322157 + "x": 1, + "y": 0.00064 }, { "max": { @@ -10839,12 +10839,12 @@ } }, { - "x": 172.15628084070872, - "y": 283.19131384036183 + "x": 172.15628, + "y": 283.19131 }, { - "x": 128.47612957966845, - "y": 229.8675314586919 + "x": 128.47613, + "y": 229.86753 }, { "category": 1, @@ -10861,16 +10861,16 @@ "y": 0 }, { - "x": 157.58145704174692, - "y": 255.06428286786308 + "x": 157.58146, + "y": 255.06428 }, { - "x": -0.04331545154217922, - "y": 0.0013968579943012555 + "x": -0.04332, + "y": 0.0014 }, { - "x": 157.56122185032768, - "y": 252.14122962241262 + "x": 157.56122, + "y": 252.14123 }, { "endCol": 3, @@ -10893,8 +10893,8 @@ "yScale": 1 }, { - "x": -0.0018936416237806952, - "y": 2.8954107549386947 + "x": -0.00189, + "y": 2.89541 }, [ { @@ -10911,29 +10911,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 172.11811052382498, - "y": 280.27952128936306 + "x": 172.11811, + "y": 280.27952 }, { "body": null, "index": 1, "isInternal": false, - "x": 128.47612957966845, - "y": 255.04579585553412 + "x": 128.47613, + "y": 255.0458 }, { "body": null, "index": 2, "isInternal": false, - "x": 172.15013102174728, - "y": 229.8675314586919 + "x": 172.15013, + "y": 229.86753 }, { - "angle": -0.0002692221306237219, - "anglePrev": -0.00029503521690211386, - "angularSpeed": 0.000056652251504317385, - "angularVelocity": 0.00002736434154517679, - "area": 4695.386625, + "angle": -0.00027, + "anglePrev": -0.0003, + "angularSpeed": 0.00006, + "angularVelocity": 0.00003, + "area": 4695.38663, "axes": { "#": 1220 }, @@ -10954,13 +10954,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -10982,7 +10982,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9015595034075696, + "speed": 2.90156, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11018,32 +11018,32 @@ } ], { - "x": 0.623710557480831, - "y": 0.7816553847361062 + "x": 0.62371, + "y": 0.78166 }, { - "x": -0.2222639391442167, - "y": 0.9749865339357753 + "x": -0.22226, + "y": 0.97499 }, { - "x": -0.9008550230568051, - "y": 0.4341200610814058 + "x": -0.90086, + "y": 0.43412 }, { - "x": -0.9010886419121497, - "y": -0.4336349379569382 + "x": -0.90109, + "y": -0.43363 }, { - "x": -0.22278888280321407, - "y": -0.9748667158639155 + "x": -0.22279, + "y": -0.97487 }, { - "x": 0.6232895892312106, - "y": -0.7819911047806033 + "x": 0.62329, + "y": -0.78199 }, { - "x": 0.9999999637597223, - "y": -0.0002692221273714937 + "x": 1, + "y": -0.00027 }, { "max": { @@ -11054,12 +11054,12 @@ } }, { - "x": 250.8542829428395, - "y": 314.9346929174094 + "x": 250.85428, + "y": 314.93469 }, { - "x": 172.10198246133996, - "y": 231.2631384095856 + "x": 172.10198, + "y": 231.26314 }, { "category": 1, @@ -11076,16 +11076,16 @@ "y": 0 }, { - "x": 213.52510599248996, - "y": 271.65061860193055 + "x": 213.52511, + "y": 271.65062 }, { "x": 0, "y": 0 }, { - "x": 213.52163960009528, - "y": 268.742425434899 + "x": 213.52164, + "y": 268.74243 }, { "endCol": 5, @@ -11108,8 +11108,8 @@ "yScale": 1 }, { - "x": 0.0034664260004149128, - "y": 2.9083179923709395 + "x": 0.00347, + "y": 2.90832 }, [ { @@ -11138,57 +11138,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 250.8508183369308, - "y": 289.61357034522985 + "x": 250.85082, + "y": 289.61357 }, { "body": null, "index": 1, "isInternal": false, - "x": 222.75385316170997, - "y": 312.0331354824582 + "x": 222.75385, + "y": 312.03314 }, { "body": null, "index": 2, "isInternal": false, - "x": 187.70670092395366, - "y": 304.0435706617979 + "x": 187.7067, + "y": 304.04357 }, { "body": null, "index": 3, "isInternal": false, - "x": 172.10198246133996, - "y": 271.6617706237741 + "x": 172.10198, + "y": 271.66177 }, { "body": null, "index": 4, "isInternal": false, - "x": 187.68926286831956, - "y": 239.2715730091534 + "x": 187.68926, + "y": 239.27157 }, { "body": null, "index": 5, "isInternal": false, - "x": 222.73210809048214, - "y": 231.2631384095856 + "x": 222.73211, + "y": 231.26314 }, { "body": null, "index": 6, "isInternal": false, - "x": 250.8411408783403, - "y": 253.66757164792295 + "x": 250.84114, + "y": 253.66757 }, { - "angle": -0.00004777520407657661, - "anglePrev": -0.0003239177397589565, - "angularSpeed": 0.00013702656879162437, - "angularVelocity": 0.00027354489303416097, - "area": 2533.681298803042, + "angle": -0.00005, + "anglePrev": -0.00032, + "angularSpeed": 0.00014, + "angularVelocity": 0.00027, + "area": 2533.6813, "axes": { "#": 1250 }, @@ -11209,13 +11209,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 9087.287047208478, - "inverseInertia": 0.00011004384419739331, - "inverseMass": 0.3946826305551604, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "inverseMass": 0.39468, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.533681298803042, + "mass": 2.53368, "motion": 0, "parent": null, "position": { @@ -11237,7 +11237,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.92745871473116, + "speed": 2.92746, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11258,12 +11258,12 @@ } ], { - "x": 0.000047775204058402346, - "y": 0.9999999988587651 + "x": 0.00005, + "y": 1 }, { - "x": -0.9999999988587651, - "y": 0.000047775204058402346 + "x": -1, + "y": 0.00005 }, { "max": { @@ -11274,12 +11274,12 @@ } }, { - "x": 351.43574156335717, - "y": 259.4673400338148 + "x": 351.43574, + "y": 259.46734 }, { - "x": 250.79068395918185, - "y": 231.35619544764356 + "x": 250.79068, + "y": 231.3562 }, { "category": 1, @@ -11296,16 +11296,16 @@ "y": 0 }, { - "x": 301.10481417252515, - "y": 243.94806247828015 + "x": 301.10481, + "y": 243.94806 }, { - "x": -0.09902637223651164, - "y": 0.0008112872013797227 + "x": -0.09903, + "y": 0.00081 }, { - "x": 301.0904550447143, - "y": 241.026272108743 + "x": 301.09046, + "y": 241.02627 }, { "endCol": 7, @@ -11328,8 +11328,8 @@ "yScale": 1 }, { - "x": 0.01439687663918221, - "y": 2.922525153533286 + "x": 0.0144, + "y": 2.92253 }, [ { @@ -11349,36 +11349,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 250.79068395918185, - "y": 231.36100292585476 + "x": 250.79068, + "y": 231.361 }, { "body": null, "index": 1, "isInternal": false, - "x": 351.4177414575115, - "y": 231.35619544764356 + "x": 351.41774, + "y": 231.3562 }, { "body": null, "index": 2, "isInternal": false, - "x": 351.41894438586843, - "y": 256.53512203070557 + "x": 351.41894, + "y": 256.53512 }, { "body": null, "index": 3, "isInternal": false, - "x": 250.79188688753874, - "y": 256.53992950891677 + "x": 250.79189, + "y": 256.53993 }, { - "angle": -0.000235959787054116, - "anglePrev": -0.000207304027301037, - "angularSpeed": 0.000028655759753078994, - "angularVelocity": -0.000028655759753078994, - "area": 2082.1047164947227, + "angle": -0.00024, + "anglePrev": -0.00021, + "angularSpeed": 0.00003, + "angularVelocity": -0.00003, + "area": 2082.10472, "axes": { "#": 1272 }, @@ -11399,13 +11399,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2917.86500075833, - "inverseInertia": 0.0003427163353136995, - "inverseMass": 0.4802832403566742, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "inverseMass": 0.48028, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.082104716494723, + "mass": 2.0821, "motion": 0, "parent": null, "position": { @@ -11427,7 +11427,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.887975217391966, + "speed": 2.88798, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11448,12 +11448,12 @@ } ], { - "x": 0.00023595978486452634, - "y": 0.9999999721614895 + "x": 0.00024, + "y": 1 }, { - "x": -0.9999999721614895, - "y": 0.00023595978486452634 + "x": -1, + "y": 0.00024 }, { "max": { @@ -11464,12 +11464,12 @@ } }, { - "x": 394.3810696169417, - "y": 280.1585284975804 + "x": 394.38107, + "y": 280.15853 }, { - "x": 351.7921142909382, - "y": 231.24686293023882 + "x": 351.79211, + "y": 231.24686 }, { "category": 1, @@ -11486,16 +11486,16 @@ "y": 0 }, { - "x": 373.08659195393994, - "y": 255.70269571390963 + "x": 373.08659, + "y": 255.7027 }, { "x": 0, "y": 0 }, { - "x": 373.07646214152214, - "y": 252.8147382621506 + "x": 373.07646, + "y": 252.81474 }, { "endCol": 8, @@ -11518,8 +11518,8 @@ "yScale": 1 }, { - "x": 0.010129812417826543, - "y": 2.8879574517590374 + "x": 0.01013, + "y": 2.88796 }, [ { @@ -11539,36 +11539,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 351.7921142909382, - "y": 231.25690948855834 + "x": 351.79211, + "y": 231.25691 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.3695308011196, - "y": 231.24686293023882 + "x": 394.36953, + "y": 231.24686 }, { "body": null, "index": 2, "isInternal": false, - "x": 394.3810696169417, - "y": 280.1484819392609 + "x": 394.38107, + "y": 280.14848 }, { "body": null, "index": 3, "isInternal": false, - "x": 351.8036531067603, - "y": 280.1585284975804 + "x": 351.80365, + "y": 280.15853 }, { - "angle": -0.0005148640806360578, - "anglePrev": -0.00033072196160875483, - "angularSpeed": 0.00018414211902730297, - "angularVelocity": -0.00018414211902730297, - "area": 2570.1808866424026, + "angle": -0.00051, + "anglePrev": -0.00033, + "angularSpeed": 0.00018, + "angularVelocity": -0.00018, + "area": 2570.18089, "axes": { "#": 1294 }, @@ -11589,13 +11589,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 7426.992944977438, - "inverseInertia": 0.00013464399487227974, - "inverseMass": 0.38907767355875333, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "inverseMass": 0.38908, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5701808866424027, + "mass": 2.57018, "motion": 0, "parent": null, "position": { @@ -11617,7 +11617,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9114430525916974, + "speed": 2.91144, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11638,12 +11638,12 @@ } ], { - "x": 0.0005148640578889322, - "y": 0.9999998674574923 + "x": 0.00051, + "y": 1 }, { - "x": -0.9999998674574923, - "y": 0.0005148640578889322 + "x": -1, + "y": 0.00051 }, { "max": { @@ -11654,12 +11654,12 @@ } }, { - "x": 482.9282479627955, - "y": 254.24451464807058 + "x": 482.92825, + "y": 254.24451 }, { - "x": 394.44020159323765, - "y": 222.23218671883575 + "x": 394.4402, + "y": 222.23219 }, { "category": 1, @@ -11676,16 +11676,16 @@ "y": 0 }, { - "x": 438.67667071639573, - "y": 236.7826487571392 + "x": 438.67667, + "y": 236.78265 }, { - "x": 0.043748033528177445, - "y": -0.000008670526677850751 + "x": 0.04375, + "y": -0.00001 }, { - "x": 438.66156259315403, - "y": 233.87124490451131 + "x": 438.66156, + "y": 233.87124 }, { "endCol": 10, @@ -11708,8 +11708,8 @@ "yScale": 1 }, { - "x": 0.01510812324172548, - "y": 2.9114038526278994 + "x": 0.01511, + "y": 2.9114 }, [ { @@ -11729,36 +11729,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 394.44020159323765, - "y": 222.27773055872464 + "x": 394.4402, + "y": 222.27773 }, { "body": null, "index": 1, "isInternal": false, - "x": 482.89818026659896, - "y": 222.23218671883575 + "x": 482.89818, + "y": 222.23219 }, { "body": null, "index": 2, "isInternal": false, - "x": 482.9131398395538, - "y": 251.28756695555379 + "x": 482.91314, + "y": 251.28757 }, { "body": null, "index": 3, "isInternal": false, - "x": 394.4551611661925, - "y": 251.33311079544268 + "x": 394.45516, + "y": 251.33311 }, { - "angle": -0.0009055602597936766, - "anglePrev": -0.0003214303483358152, - "angularSpeed": 0.0005841299114578614, - "angularVelocity": -0.0005841299114578614, - "area": 1460.278512, + "angle": -0.00091, + "anglePrev": -0.00032, + "angularSpeed": 0.00058, + "angularVelocity": -0.00058, + "area": 1460.27851, "axes": { "#": 1316 }, @@ -11779,13 +11779,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1641.5325488167716, - "inverseInertia": 0.0006091868240570722, - "inverseMass": 0.6848008731090607, + "inertia": 1641.53255, + "inverseInertia": 0.00061, + "inverseMass": 0.6848, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4602785120000001, + "mass": 1.46028, "motion": 0, "parent": null, "position": { @@ -11807,7 +11807,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8612849323416127, + "speed": 2.86128, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11831,16 +11831,16 @@ } ], { - "x": -0.4992142681199797, - "y": 0.8664785712903889 + "x": -0.49921, + "y": 0.86648 }, { - "x": -0.5007827456318047, - "y": -0.8655730134872918 + "x": -0.50078, + "y": -0.86557 }, { - "x": 0.999999589980336, - "y": -0.0009055601360278355 + "x": 1, + "y": -0.00091 }, { "max": { @@ -11851,12 +11851,12 @@ } }, { - "x": 463.2670630707037, - "y": 324.7359273470465 + "x": 463.26706, + "y": 324.73593 }, { - "x": 412.94878984730286, - "y": 266.6639511577084 + "x": 412.94879, + "y": 266.66395 }, { "category": 1, @@ -11873,16 +11873,16 @@ "y": 0 }, { - "x": 446.4767761001636, - "y": 295.7151200624979 + "x": 446.47678, + "y": 295.71512 }, { "x": 0, "y": 0 }, { - "x": 446.48004660773046, - "y": 292.8538369992856 + "x": 446.48005, + "y": 292.85384 }, { "endCol": 9, @@ -11905,8 +11905,8 @@ "yScale": 1 }, { - "x": -0.0032705075668638985, - "y": 2.861283063212272 + "x": -0.00327, + "y": 2.86128 }, [ { @@ -11923,29 +11923,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.2670630707037, - "y": 324.7359273470465 + "x": 463.26706, + "y": 324.73593 }, { "body": null, "index": 1, "isInternal": false, - "x": 412.94878984730286, - "y": 295.7454816827386 + "x": 412.94879, + "y": 295.74548 }, { "body": null, "index": 2, "isInternal": false, - "x": 463.2144753824843, - "y": 266.6639511577084 + "x": 463.21448, + "y": 266.66395 }, { - "angle": -0.0011259180904237497, - "anglePrev": -0.0010038423983450256, - "angularSpeed": 0.00012207569207872422, - "angularVelocity": -0.00012207569207872422, - "area": 4167.4330549999995, + "angle": -0.00113, + "anglePrev": -0.001, + "angularSpeed": 0.00012, + "angularVelocity": -0.00012, + "area": 4167.43305, "axes": { "#": 1338 }, @@ -11966,13 +11966,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 11100.542061550868, - "inverseInertia": 0.00009008569081177725, - "inverseMass": 0.23995586415004816, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "inverseMass": 0.23996, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.167433054999999, + "mass": 4.16743, "motion": 0, "parent": null, "position": { @@ -11994,7 +11994,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.902996774738071, + "speed": 2.903, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12030,32 +12030,32 @@ } ], { - "x": 0.6243894235213087, - "y": 0.7811132106133704 + "x": 0.62439, + "y": 0.78111 }, { - "x": -0.22143190392780915, - "y": 0.9751758364125444 + "x": -0.22143, + "y": 0.97518 }, { - "x": -0.9004835188680914, - "y": 0.43489013813483907 + "x": -0.90048, + "y": 0.43489 }, { - "x": -0.9014605363184787, - "y": -0.4328612958678575 + "x": -0.90146, + "y": -0.43286 }, { - "x": -0.22362727688861692, - "y": -0.9746747360178071 + "x": -0.22363, + "y": -0.97467 }, { - "x": 0.6226289029531206, - "y": -0.7825172516995349 + "x": 0.62263, + "y": -0.78252 }, { - "x": 0.9999993661542937, - "y": -0.001125917852537624 + "x": 1, + "y": -0.00113 }, { "max": { @@ -12066,12 +12066,12 @@ } }, { - "x": 547.267024135146, - "y": 316.4857458293311 + "x": 547.26702, + "y": 316.48575 }, { - "x": 473.0582349359398, - "y": 237.4888012088978 + "x": 473.05823, + "y": 237.4888 }, { "category": 1, @@ -12088,16 +12088,16 @@ "y": 0 }, { - "x": 512.0830003423473, - "y": 275.5455547998844 + "x": 512.083, + "y": 275.54555 }, { - "x": -0.03642161325474954, - "y": 0.8690267456901464 + "x": -0.03642, + "y": 0.86903 }, { - "x": 512.0782281623767, - "y": 272.64256194759594 + "x": 512.07823, + "y": 272.64256 }, { "endCol": 11, @@ -12120,8 +12120,8 @@ "yScale": 1 }, { - "x": 0.004772179970605066, - "y": 2.9029928522884743 + "x": 0.00477, + "y": 2.90299 }, [ { @@ -12150,57 +12150,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 547.2622519551754, - "y": 292.4379565596309 + "x": 547.26225, + "y": 292.43796 }, { "body": null, "index": 1, "isInternal": false, - "x": 520.8100424923308, - "y": 313.5827529770426 + "x": 520.81004, + "y": 313.58275 }, { "body": null, "index": 2, "isInternal": false, - "x": 487.7855785024439, - "y": 306.0839310575232 + "x": 487.78558, + "y": 306.08393 }, { "body": null, "index": 3, "isInternal": false, - "x": 473.0582349359398, - "y": 275.589493507797 + "x": 473.05823, + "y": 275.58949 }, { "body": null, "index": 4, "isInternal": false, - "x": 487.71687274324637, - "y": 245.06196973605591 + "x": 487.71687, + "y": 245.06197 }, { "body": null, "index": 5, "isInternal": false, - "x": 520.7243668992598, - "y": 237.4888012088978 + "x": 520.72437, + "y": 237.4888 }, { "body": null, "index": 6, "isInternal": false, - "x": 547.2241238730171, - "y": 258.57397802418194 + "x": 547.22412, + "y": 258.57398 }, { - "angle": -0.0008966727630935781, - "anglePrev": -0.0009130537137732643, - "angularSpeed": 0.00001638095067968625, - "angularVelocity": 0.00001638095067968625, - "area": 1687.7661798887366, + "angle": -0.0009, + "anglePrev": -0.00091, + "angularSpeed": 0.00002, + "angularVelocity": 0.00002, + "area": 1687.76618, "axes": { "#": 1368 }, @@ -12221,13 +12221,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1980.3012000583947, - "inverseInertia": 0.0005049736878261308, - "inverseMass": 0.5924991340127004, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "inverseMass": 0.5925, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6877661798887367, + "mass": 1.68777, "motion": 0, "parent": null, "position": { @@ -12249,7 +12249,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.893312727338529, + "speed": 2.89331, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12270,12 +12270,12 @@ } ], { - "x": 0.000896672642936138, - "y": 0.9999995979890051 + "x": 0.0009, + "y": 1 }, { - "x": -0.9999995979890051, - "y": 0.000896672642936138 + "x": -1, + "y": 0.0009 }, { "max": { @@ -12286,12 +12286,12 @@ } }, { - "x": 635.3135292531836, - "y": 274.1915014537995 + "x": 635.31353, + "y": 274.1915 }, { - "x": 599.7532316131228, - "y": 223.7374410230291 + "x": 599.75323, + "y": 223.73744 }, { "category": 1, @@ -12308,16 +12308,16 @@ "y": 0 }, { - "x": 617.5296774562456, - "y": 247.51781961397018 + "x": 617.52968, + "y": 247.51782 }, { - "x": 0.00002739894326415095, - "y": 0.039151575354283694 + "x": 0.00003, + "y": 0.03915 }, { - "x": 617.5222715024305, - "y": 244.62451636508194 + "x": 617.52227, + "y": 244.62452 }, { "endCol": 13, @@ -12340,8 +12340,8 @@ "yScale": 1 }, { - "x": 0.007405953815111843, - "y": 2.893303248888233 + "x": 0.00741, + "y": 2.8933 }, [ { @@ -12361,36 +12361,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.7532316131228, - "y": 223.7692821268805 + "x": 599.75323, + "y": 223.76928 }, { "body": null, "index": 1, "isInternal": false, - "x": 635.2635054034401, - "y": 223.7374410230291 + "x": 635.26351, + "y": 223.73744 }, { "body": null, "index": 2, "isInternal": false, - "x": 635.3061232993684, - "y": 271.26635710105984 + "x": 635.30612, + "y": 271.26636 }, { "body": null, "index": 3, "isInternal": false, - "x": 599.7958495090513, - "y": 271.2981982049113 + "x": 599.79585, + "y": 271.2982 }, { - "angle": 0.0040758980376136185, - "anglePrev": 0.003314071133014141, - "angularSpeed": 0.0007618269045994772, - "angularVelocity": 0.0007618269045994772, - "area": 888.874596, + "angle": 0.00408, + "anglePrev": 0.00331, + "angularSpeed": 0.00076, + "angularVelocity": 0.00076, + "area": 888.8746, "axes": { "#": 1390 }, @@ -12411,13 +12411,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 526.7320316094421, - "inverseInertia": 0.0018984985533241191, - "inverseMass": 1.125018089728374, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "inverseMass": 1.12502, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.888874596, + "mass": 0.88887, "motion": 0, "parent": null, "position": { @@ -12439,7 +12439,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.890274209571275, + "speed": 2.89027, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12460,12 +12460,12 @@ } ], { - "x": 0.004075886752178133, - "y": -0.9999916935390932 + "x": 0.00408, + "y": -0.99999 }, { - "x": 0.9999916935390932, - "y": 0.004075886752178133 + "x": 0.99999, + "y": 0.00408 }, { "max": { @@ -12476,12 +12476,12 @@ } }, { - "x": 616.0437971567472, - "y": 223.4339115481829 + "x": 616.0438, + "y": 223.43391 }, { - "x": 586.1085263179433, - "y": 193.49864070937895 + "x": 586.10853, + "y": 193.49864 }, { "category": 1, @@ -12498,16 +12498,16 @@ "y": 0 }, { - "x": 601.0761617373453, - "y": 208.46627612878092 + "x": 601.07616, + "y": 208.46628 }, { "x": 0, "y": 0 }, { - "x": 601.114184233442, - "y": 205.57625202917492 + "x": 601.11418, + "y": 205.57625 }, { "endCol": 12, @@ -12530,8 +12530,8 @@ "yScale": 1 }, { - "x": -0.03802249609668934, - "y": 2.8900240996059936 + "x": -0.03802, + "y": 2.89002 }, [ { @@ -12551,36 +12551,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.922278669118, - "y": 223.4339115481829 + "x": 615.92228, + "y": 223.43391 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.1085263179433, - "y": 223.31239306055343 + "x": 586.10853, + "y": 223.31239 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.2300448055726, - "y": 193.49864070937895 + "x": 586.23004, + "y": 193.49864 }, { "body": null, "index": 3, "isInternal": false, - "x": 616.0437971567472, - "y": 193.6201591970084 + "x": 616.0438, + "y": 193.62016 }, { - "angle": -0.002783386967030695, - "anglePrev": -0.0024946274805489714, - "angularSpeed": 0.00028875948648172397, - "angularVelocity": 0.00012787233776153078, - "area": 1624.121534624581, + "angle": -0.00278, + "anglePrev": -0.00249, + "angularSpeed": 0.00029, + "angularVelocity": 0.00013, + "area": 1624.12153, "axes": { "#": 1412 }, @@ -12601,13 +12601,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1766.6812602831346, - "inverseInertia": 0.0005660330601116675, - "inverseMass": 0.6157174686013581, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "inverseMass": 0.61572, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.624121534624581, + "mass": 1.62412, "motion": 0, "parent": null, "position": { @@ -12629,7 +12629,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8748046300421883, + "speed": 2.8748, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12650,12 +12650,12 @@ } ], { - "x": 0.002783383373102884, - "y": 0.9999961263809966 + "x": 0.00278, + "y": 1 }, { - "x": -0.9999961263809966, - "y": 0.002783383373102884 + "x": -1, + "y": 0.00278 }, { "max": { @@ -12666,12 +12666,12 @@ } }, { - "x": 704.6115111816283, - "y": 249.31472921792906 + "x": 704.61151, + "y": 249.31473 }, { - "x": 662.2129663986888, - "y": 207.91727480716074 + "x": 662.21297, + "y": 207.91727 }, { "category": 1, @@ -12688,16 +12688,16 @@ "y": 0 }, { - "x": 683.410944166116, - "y": 227.17860028053795 + "x": 683.41094, + "y": 227.1786 }, { "x": 0, "y": 0 }, { - "x": 683.4083549180309, - "y": 224.30379681652406 + "x": 683.40835, + "y": 224.3038 }, { "endCol": 14, @@ -12720,8 +12720,8 @@ "yScale": 1 }, { - "x": 0.002273345995490672, - "y": 2.8959226474923696 + "x": 0.00227, + "y": 2.89592 }, [ { @@ -12741,36 +12741,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 662.2129663986888, - "y": 208.03498192801905 + "x": 662.21297, + "y": 208.03498 }, { "body": null, "index": 1, "isInternal": false, - "x": 704.5020258373787, - "y": 207.91727480716074 + "x": 704.50203, + "y": 207.91727 }, { "body": null, "index": 2, "isInternal": false, - "x": 704.6089219335432, - "y": 246.32221863305685 + "x": 704.60892, + "y": 246.32222 }, { "body": null, "index": 3, "isInternal": false, - "x": 662.3198624948533, - "y": 246.43992575391516 + "x": 662.31986, + "y": 246.43993 }, { - "angle": -0.00025875807812094384, - "anglePrev": -0.0002268091772194607, - "angularSpeed": 0.00003194890090148316, - "angularVelocity": 0.0010054792204830395, - "area": 925.4335858447538, + "angle": -0.00026, + "anglePrev": -0.00023, + "angularSpeed": 0.00003, + "angularVelocity": 0.00101, + "area": 925.43359, "axes": { "#": 1434 }, @@ -12791,13 +12791,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 658.9066011822378, - "inverseInertia": 0.001517665778739746, - "inverseMass": 1.080574570985751, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "inverseMass": 1.08057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9254335858447538, + "mass": 0.92543, "motion": 0, "parent": null, "position": { @@ -12819,7 +12819,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907276896667345, + "speed": 2.90728, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12840,12 +12840,12 @@ } ], { - "x": 0.0002587580752333873, - "y": 0.9999999665221286 + "x": 0.00026, + "y": 1 }, { - "x": -0.9999999665221286, - "y": 0.0002587580752333873 + "x": -1, + "y": 0.00026 }, { "max": { @@ -12856,12 +12856,12 @@ } }, { - "x": 744.5806572818476, - "y": 257.3261568201473 + "x": 744.58066, + "y": 257.32616 }, { - "x": 704.5550324635433, - "y": 231.28057524037314 + "x": 704.55503, + "y": 231.28058 }, { "category": 1, @@ -12878,16 +12878,16 @@ "y": 0 }, { - "x": 724.5648399103038, - "y": 242.84973068786002 + "x": 724.56484, + "y": 242.84973 }, { - "x": 0.0013465072982313721, - "y": -2.7039033746548556e-7 + "x": 0.00135, + "y": 0 }, { - "x": 724.5588299855206, - "y": 239.9424600030596 + "x": 724.55883, + "y": 239.94246 }, { "endCol": 15, @@ -12910,8 +12910,8 @@ "yScale": 1 }, { - "x": 0.006564328032027333, - "y": 2.870206846610671 + "x": 0.00656, + "y": 2.87021 }, [ { @@ -12931,36 +12931,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 704.5550324635433, - "y": 231.29092909069163 + "x": 704.55503, + "y": 231.29093 }, { "body": null, "index": 1, "isInternal": false, - "x": 744.5686628112151, - "y": 231.28057524037314 + "x": 744.56866, + "y": 231.28058 }, { "body": null, "index": 2, "isInternal": false, - "x": 744.5746473570644, - "y": 254.4085322850284 + "x": 744.57465, + "y": 254.40853 }, { "body": null, "index": 3, "isInternal": false, - "x": 704.5610170093926, - "y": 254.4188861353469 + "x": 704.56102, + "y": 254.41889 }, { - "angle": -0.0019200887443779299, - "anglePrev": -0.0017861405083555019, - "angularSpeed": 0.00013394823602242795, - "angularVelocity": -0.00013394823602242795, - "area": 5929.347511999999, + "angle": -0.00192, + "anglePrev": -0.00179, + "angularSpeed": 0.00013, + "angularVelocity": -0.00013, + "area": 5929.34751, "axes": { "#": 1456 }, @@ -12982,13 +12982,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 22382.17146584697, - "inverseInertia": 0.00004467841744157413, - "inverseMass": 0.1686526212161066, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "inverseMass": 0.16865, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.929347512, + "mass": 5.92935, "motion": 0, "parent": null, "position": { @@ -13010,7 +13010,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8928567980629825, + "speed": 2.89286, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13064,56 +13064,56 @@ } ], { - "x": -0.9713942176016884, - "y": -0.237472680555056 + "x": -0.97139, + "y": -0.23747 }, { - "x": -0.8863462546960585, - "y": -0.46302301971529436 + "x": -0.88635, + "y": -0.46302 }, { - "x": -0.7497549986598874, - "y": -0.6617155295023023 + "x": -0.74975, + "y": -0.66172 }, { - "x": -0.5696916750026564, - "y": -0.8218585008580658 + "x": -0.56969, + "y": -0.82186 }, { - "x": -0.35641450869663505, - "y": -0.9343279392111402 + "x": -0.35641, + "y": -0.93433 }, { - "x": -0.1223847981124588, - "y": -0.9924827258904676 + "x": -0.12238, + "y": -0.99248 }, { - "x": 0.11857259525710447, - "y": -0.9929453860379205 + "x": 0.11857, + "y": -0.99295 }, { - "x": 0.35282390438341915, - "y": -0.9356897415787137 + "x": 0.35282, + "y": -0.93569 }, { - "x": 0.5665313996399128, - "y": -0.824040152675852 + "x": 0.56653, + "y": -0.82404 }, { - "x": 0.7472083715272521, - "y": -0.6645898355524194 + "x": 0.74721, + "y": -0.66459 }, { - "x": 0.8845616330394639, - "y": -0.4664233241965469 + "x": 0.88456, + "y": -0.46642 }, { - "x": 0.9704751200524477, - "y": -0.24120124659542502 + "x": 0.97048, + "y": -0.2412 }, { - "x": 0.9999981566301731, - "y": -0.001920087564566566 + "x": 1, + "y": -0.00192 }, { "max": { @@ -13124,12 +13124,12 @@ } }, { - "x": 665.2948929391857, - "y": 373.1112626151112 + "x": 665.29489, + "y": 373.11126 }, { - "x": 578.5979013942713, - "y": 282.9065669194823 + "x": 578.5979, + "y": 282.90657 }, { "category": 1, @@ -13146,16 +13146,16 @@ "y": 0 }, { - "x": 621.9468693263827, - "y": 326.5624864453291 + "x": 621.94687, + "y": 326.56249 }, { - "x": 0.0004585438743989066, - "y": 0.9116644998231591 + "x": 0.00046, + "y": 0.91166 }, { - "x": 621.9478136456912, - "y": 323.66962980139385 + "x": 621.94781, + "y": 323.66963 }, { "endCol": 13, @@ -13178,8 +13178,8 @@ "yScale": 1 }, { - "x": -0.0009443193084655377, - "y": 2.892856643935239 + "x": -0.00094, + "y": 2.89286 }, [ { @@ -13265,190 +13265,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 665.2948929391857, - "y": 331.74126399064386 + "x": 665.29489, + "y": 331.74126 }, { "body": null, "index": 1, "isInternal": false, - "x": 662.7955189574566, - "y": 341.9650818538228 + "x": 662.79552, + "y": 341.96508 }, { "body": null, "index": 2, "isInternal": false, - "x": 657.9224212693929, - "y": 351.2934558237377 + "x": 657.92242, + "y": 351.29346 }, { "body": null, "index": 3, "isInternal": false, - "x": 650.9585586640168, - "y": 359.1838415946266 + "x": 650.95856, + "y": 359.18384 }, { "body": null, "index": 4, "isInternal": false, - "x": 642.3090548329916, - "y": 365.17946045151524 + "x": 642.30905, + "y": 365.17946 }, { "body": null, "index": 5, "isInternal": false, - "x": 632.4762387385416, - "y": 368.93034723369436 + "x": 632.47624, + "y": 368.93035 }, { "body": null, "index": 6, "isInternal": false, - "x": 622.0306926691015, - "y": 370.2184059711759 + "x": 622.03069, + "y": 370.21841 }, { "body": null, "index": 7, "isInternal": false, - "x": 611.5802772575976, - "y": 368.97046938344346 + "x": 611.58028, + "y": 368.97047 }, { "body": null, "index": 8, "isInternal": false, - "x": 601.7331296295656, - "y": 365.25736992453506 + "x": 601.73313, + "y": 365.25737 }, { "body": null, "index": 9, "isInternal": false, - "x": 593.0606653914433, - "y": 359.29501082443994 + "x": 593.06067, + "y": 359.29501 }, { "body": null, "index": 10, "isInternal": false, - "x": 586.0665537265751, - "y": 351.43142563577715 + "x": 586.06655, + "y": 351.43143 }, { "body": null, "index": 11, "isInternal": false, - "x": 581.1576694464827, - "y": 342.1218339624189 + "x": 581.15767, + "y": 342.12183 }, { "body": null, "index": 12, "isInternal": false, - "x": 578.619052715109, - "y": 331.9076895003903 + "x": 578.61905, + "y": 331.90769 }, { "body": null, "index": 13, "isInternal": false, - "x": 578.5988457135797, - "y": 321.38370890001437 + "x": 578.59885, + "y": 321.38371 }, { "body": null, "index": 14, "isInternal": false, - "x": 581.0982196953089, - "y": 311.1598910368354 + "x": 581.09822, + "y": 311.15989 }, { "body": null, "index": 15, "isInternal": false, - "x": 585.9713173833726, - "y": 301.8315170669205 + "x": 585.97132, + "y": 301.83152 }, { "body": null, "index": 16, "isInternal": false, - "x": 592.9351799887487, - "y": 293.94113129603164 + "x": 592.93518, + "y": 293.94113 }, { "body": null, "index": 17, "isInternal": false, - "x": 601.5846838197739, - "y": 287.945512439143 + "x": 601.58468, + "y": 287.94551 }, { "body": null, "index": 18, "isInternal": false, - "x": 611.4174999142239, - "y": 284.1946256569639 + "x": 611.4175, + "y": 284.19463 }, { "body": null, "index": 19, "isInternal": false, - "x": 621.8630459836639, - "y": 282.9065669194823 + "x": 621.86305, + "y": 282.90657 }, { "body": null, "index": 20, "isInternal": false, - "x": 632.3134613951679, - "y": 284.15450350721466 + "x": 632.31346, + "y": 284.1545 }, { "body": null, "index": 21, "isInternal": false, - "x": 642.1606090231999, - "y": 287.8676029661232 + "x": 642.16061, + "y": 287.8676 }, { "body": null, "index": 22, "isInternal": false, - "x": 650.8330732613222, - "y": 293.8299620662183 + "x": 650.83307, + "y": 293.82996 }, { "body": null, "index": 23, "isInternal": false, - "x": 657.8271849261904, - "y": 301.6935472548811 + "x": 657.82718, + "y": 301.69355 }, { "body": null, "index": 24, "isInternal": false, - "x": 662.7360692062828, - "y": 311.0031389282393 + "x": 662.73607, + "y": 311.00314 }, { "body": null, "index": 25, "isInternal": false, - "x": 665.2746859376565, - "y": 321.21728339026794 + "x": 665.27469, + "y": 321.21728 }, { - "angle": -0.000038634806615050086, - "anglePrev": -0.000032356370102542797, - "angularSpeed": 0.000006278436512507291, - "angularVelocity": -0.000006278436512507291, - "area": 2550.166396822507, + "angle": -0.00004, + "anglePrev": -0.00003, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 2550.1664, "axes": { "#": 1511 }, @@ -13469,13 +13469,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 10939.165130883785, - "inverseInertia": 0.00009141465441240754, - "inverseMass": 0.392131274745834, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "inverseMass": 0.39213, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5501663968225072, + "mass": 2.55017, "motion": 0, "parent": null, "position": { @@ -13497,7 +13497,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270881731703, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13518,12 +13518,12 @@ } ], { - "x": 0.00003863480660543873, - "y": 0.9999999992536759 + "x": 0.00004, + "y": 1 }, { - "x": -0.9999999992536759, - "y": 0.00003863480660543873 + "x": -1, + "y": 0.00004 }, { "max": { @@ -13534,12 +13534,12 @@ } }, { - "x": 942.2908544493517, - "y": 327.956239736147 + "x": 942.29085, + "y": 327.95624 }, { - "x": 831.1951902898403, - "y": 302.08960150522455 + "x": 831.19519, + "y": 302.0896 }, { "category": 1, @@ -13556,16 +13556,16 @@ "y": 0 }, { - "x": 886.7435146248871, - "y": 313.5692852631679 + "x": 886.74351, + "y": 313.56929 }, { "x": 0, - "y": 3.7579092842573476 + "y": 3.75791 }, { - "x": 886.7444991354693, - "y": 310.6620145481322 + "x": 886.7445, + "y": 310.66201 }, { "endCol": 19, @@ -13588,8 +13588,8 @@ "yScale": 1 }, { - "x": -0.00098451058220121, - "y": 2.9072707150356583 + "x": -0.00098, + "y": 2.90727 }, [ { @@ -13609,43 +13609,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 831.1961748004225, - "y": 302.0938935924269 + "x": 831.19617, + "y": 302.09389 }, { "body": null, "index": 1, "isInternal": false, - "x": 942.2899675844512, - "y": 302.08960150522455 + "x": 942.28997, + "y": 302.0896 }, { "body": null, "index": 2, "isInternal": false, - "x": 942.2908544493517, - "y": 325.0446769339089 + "x": 942.29085, + "y": 325.04468 }, { "body": null, "index": 3, "isInternal": false, - "x": 831.197061665323, - "y": 325.0489690211113 + "x": 831.19706, + "y": 325.04897 }, { - "angle": 0.0005759784311782234, - "anglePrev": 0.0004673857127384818, - "angularSpeed": 0.00010860979007693026, - "angularVelocity": 0.00010859123358139756, - "area": 5174.381305999998, + "angle": 0.00058, + "anglePrev": 0.00047, + "angularSpeed": 0.00011, + "angularVelocity": 0.00011, + "area": 5174.38131, "axes": { "#": 1533 }, "bounds": { "#": 1547 }, - "circleRadius": 40.782407407407405, + "circleRadius": 40.78241, "collisionFilter": { "#": 1550 }, @@ -13660,13 +13660,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17045.3242729355, - "inverseInertia": 0.000058667115039154525, - "inverseMass": 0.1932598200369272, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "inverseMass": 0.19326, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.174381305999998, + "mass": 5.17438, "motion": 0, "parent": null, "position": { @@ -13688,7 +13688,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8864443835109737, + "speed": 2.88644, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13742,56 +13742,56 @@ } ], { - "x": -0.9708009180084972, - "y": -0.23988659319324027 + "x": -0.9708, + "y": -0.23989 }, { - "x": -0.8851771645438719, - "y": -0.46525411053538407 + "x": -0.88518, + "y": -0.46525 }, { - "x": -0.748154197191907, - "y": -0.6635249032433773 + "x": -0.74815, + "y": -0.66352 }, { - "x": -0.5676034462896765, - "y": -0.8233020877904309 + "x": -0.5676, + "y": -0.8233 }, { - "x": -0.3540266978793912, - "y": -0.935235316478486 + "x": -0.35403, + "y": -0.93524 }, { - "x": -0.1199570068100042, - "y": -0.9927790874697073 + "x": -0.11996, + "y": -0.99278 }, { - "x": 0.12110056564794137, - "y": -0.9926402434919456 + "x": 0.1211, + "y": -0.99264 }, { - "x": 0.3551038134843471, - "y": -0.934826872553883 + "x": 0.3551, + "y": -0.93483 }, { - "x": 0.568551477963588, - "y": -0.8226476869872181 + "x": 0.56855, + "y": -0.82265 }, { - "x": 0.7489180526865123, - "y": -0.6626626218221775 + "x": 0.74892, + "y": -0.66266 }, { - "x": 0.8857125297736818, - "y": -0.4642341161546666 + "x": 0.88571, + "y": -0.46423 }, { - "x": 0.9710766128260195, - "y": -0.23876811349580437 + "x": 0.97108, + "y": -0.23877 }, { - "x": 0.9999998341244279, - "y": 0.0005759783993313058 + "x": 1, + "y": 0.00058 }, { "max": { @@ -13802,12 +13802,12 @@ } }, { - "x": 1024.762589580815, - "y": 309.426223093475 + "x": 1024.76259, + "y": 309.42622 }, { - "x": 943.7852691528607, - "y": 224.97579272302798 + "x": 943.78527, + "y": 224.97579 }, { "category": 1, @@ -13824,16 +13824,16 @@ "y": 0 }, { - "x": 984.2747647864771, - "y": 265.75778595829036 + "x": 984.27476, + "y": 265.75779 }, { "x": 0, "y": 0 }, { - "x": 984.2764356249367, - "y": 262.8713434786024 + "x": 984.27644, + "y": 262.87134 }, { "endCol": 21, @@ -13856,8 +13856,8 @@ "yScale": 1 }, { - "x": -0.0016708383906234303, - "y": 2.8864423599114843 + "x": -0.00167, + "y": 2.88644 }, [ { @@ -13943,190 +13943,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1024.7569265611935, - "y": 270.69710362834303 + "x": 1024.75693, + "y": 270.6971 }, { "body": null, "index": 1, "isInternal": false, - "x": 1022.3984286616987, - "y": 280.2417467677211 + "x": 1022.39843, + "y": 280.24175 }, { "body": null, "index": 2, "isInternal": false, - "x": 1017.824415527618, - "y": 288.94411367846766 + "x": 1017.82442, + "y": 288.94411 }, { "body": null, "index": 3, "isInternal": false, - "x": 1011.3011779839202, - "y": 296.29935765460414 + "x": 1011.30118, + "y": 296.29936 }, { "body": null, "index": 4, "isInternal": false, - "x": 1003.2069624866591, - "y": 301.87969648696014 + "x": 1003.20696, + "y": 301.8797 }, { "body": null, "index": 5, "isInternal": false, - "x": 994.0119561508534, - "y": 305.3604009392928 + "x": 994.01196, + "y": 305.3604 }, { "body": null, "index": 6, "isInternal": false, - "x": 984.2512752353955, - "y": 306.5397791935528 + "x": 984.25128, + "y": 306.53978 }, { "body": null, "index": 7, "isInternal": false, - "x": 974.4919593887444, - "y": 305.34915784093795 + "x": 974.49196, + "y": 305.34916 }, { "body": null, "index": 8, "isInternal": false, - "x": 965.3009687743386, - "y": 301.857863449755 + "x": 965.30097, + "y": 301.85786 }, { "body": null, "index": 9, "isInternal": false, - "x": 957.2131869557982, - "y": 296.26820413494113 + "x": 957.21319, + "y": 296.2682 }, { "body": null, "index": 10, "isInternal": false, - "x": 950.6984266621816, - "y": 288.9054505524343 + "x": 950.69843, + "y": 288.90545 }, { "body": null, "index": 11, "isInternal": false, - "x": 946.1344413120333, - "y": 280.1978203510745 + "x": 946.13444, + "y": 280.19782 }, { "body": null, "index": 12, "isInternal": false, - "x": 943.7869399921384, - "y": 270.6504666573491 + "x": 943.78694, + "y": 270.65047 }, { "body": null, "index": 13, "isInternal": false, - "x": 943.7926030117609, - "y": 260.81846828823774 + "x": 943.7926, + "y": 260.81847 }, { "body": null, "index": 14, "isInternal": false, - "x": 946.1511009112555, - "y": 251.2738251488596 + "x": 946.1511, + "y": 251.27383 }, { "body": null, "index": 15, "isInternal": false, - "x": 950.7251140453362, - "y": 242.571458238113 + "x": 950.72511, + "y": 242.57146 }, { "body": null, "index": 16, "isInternal": false, - "x": 957.2483515890341, - "y": 235.21621426197655 + "x": 957.24835, + "y": 235.21621 }, { "body": null, "index": 17, "isInternal": false, - "x": 965.3425670862952, - "y": 229.63587542962063 + "x": 965.34257, + "y": 229.63588 }, { "body": null, "index": 18, "isInternal": false, - "x": 974.5375734221009, - "y": 226.15517097728784 + "x": 974.53757, + "y": 226.15517 }, { "body": null, "index": 19, "isInternal": false, - "x": 984.2982543375588, - "y": 224.97579272302798 + "x": 984.29825, + "y": 224.97579 }, { "body": null, "index": 20, "isInternal": false, - "x": 994.0575701842099, - "y": 226.16641407564288 + "x": 994.05757, + "y": 226.16641 }, { "body": null, "index": 21, "isInternal": false, - "x": 1003.2485607986157, - "y": 229.65770846682568 + "x": 1003.24856, + "y": 229.65771 }, { "body": null, "index": 22, "isInternal": false, - "x": 1011.3363426171561, - "y": 235.24736778163958 + "x": 1011.33634, + "y": 235.24737 }, { "body": null, "index": 23, "isInternal": false, - "x": 1017.8511029107726, - "y": 242.61012136414652 + "x": 1017.8511, + "y": 242.61012 }, { "body": null, "index": 24, "isInternal": false, - "x": 1022.4150882609209, - "y": 251.31775156550614 + "x": 1022.41509, + "y": 251.31775 }, { "body": null, "index": 25, "isInternal": false, - "x": 1024.762589580815, - "y": 260.86510525923165 + "x": 1024.76259, + "y": 260.86511 }, { - "angle": 0.005215318776232612, - "anglePrev": 0.004300665099250729, - "angularSpeed": 0.0009147825701800186, - "angularVelocity": 0.0009146434753840851, - "area": 1308.2034644955884, + "angle": 0.00522, + "anglePrev": 0.0043, + "angularSpeed": 0.00091, + "angularVelocity": 0.00091, + "area": 1308.20346, "axes": { "#": 1588 }, @@ -14147,13 +14147,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1149.8579054087725, - "inverseInertia": 0.0008696726745940854, - "inverseMass": 0.7644070873834413, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "inverseMass": 0.76441, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3082034644955884, + "mass": 1.3082, "motion": 0, "parent": null, "position": { @@ -14175,7 +14175,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9085329588007243, + "speed": 2.90853, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14196,12 +14196,12 @@ } ], { - "x": -0.005215295133877516, - "y": 0.9999864002558569 + "x": -0.00522, + "y": 0.99999 }, { - "x": -0.9999864002558569, - "y": -0.005215295133877516 + "x": -0.99999, + "y": -0.00522 }, { "max": { @@ -14212,12 +14212,12 @@ } }, { - "x": 1063.4035557284028, - "y": 267.88495338400406 + "x": 1063.40356, + "y": 267.88495 }, { - "x": 1024.7103371794715, - "y": 230.79862411440666 + "x": 1024.71034, + "y": 230.79862 }, { "category": 1, @@ -14234,16 +14234,16 @@ "y": 0 }, { - "x": 1044.0497055087815, - "y": 247.88754029662903 + "x": 1044.04971, + "y": 247.88754 }, { "x": 0, "y": 0 }, { - "x": 1044.035223621705, - "y": 244.97903777397576 + "x": 1044.03522, + "y": 244.97904 }, { "endCol": 22, @@ -14266,8 +14266,8 @@ "yScale": 1 }, { - "x": 0.01448188680342355, - "y": 2.9085029964091405 + "x": 0.01448, + "y": 2.9085 }, [ { @@ -14287,36 +14287,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1024.8875398430553, - "y": 230.79862411440666 + "x": 1024.88754, + "y": 230.79862 }, { "body": null, "index": 1, "isInternal": false, - "x": 1063.3890738380912, - "y": 230.999423708121 + "x": 1063.38907, + "y": 230.99942 }, { "body": null, "index": 2, "isInternal": false, - "x": 1063.2118711745075, - "y": 264.97645647885133 + "x": 1063.21187, + "y": 264.97646 }, { "body": null, "index": 3, "isInternal": false, - "x": 1024.7103371794715, - "y": 264.77565688513704 + "x": 1024.71034, + "y": 264.77566 }, { - "angle": 0.0010068165951771816, - "anglePrev": 0.0008092804646098001, - "angularSpeed": 0.0001975361305673816, - "angularVelocity": 0.0001975361305673816, - "area": 3803.7767479999993, + "angle": 0.00101, + "anglePrev": 0.00081, + "angularSpeed": 0.0002, + "angularVelocity": 0.0002, + "area": 3803.77675, "axes": { "#": 1610 }, @@ -14337,13 +14337,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 9247.768748441516, - "inverseInertia": 0.00010813419184692798, - "inverseMass": 0.2628966067805618, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "inverseMass": 0.2629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.8037767479999993, + "mass": 3.80378, "motion": 0, "parent": null, "position": { @@ -14365,7 +14365,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9038330396339864, + "speed": 2.90383, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14401,32 +14401,32 @@ } ], { - "x": 0.622700635195836, - "y": 0.7824601708244979 + "x": 0.6227, + "y": 0.78246 }, { - "x": -0.22352425665971687, - "y": 0.9746983670268057 + "x": -0.22352, + "y": 0.9747 }, { - "x": -0.90139824175166, - "y": 0.43299100425645803 + "x": -0.9014, + "y": 0.43299 }, { - "x": -0.90052452982607, - "y": -0.4348052106191181 + "x": -0.90052, + "y": -0.43481 }, { - "x": -0.22156111983981291, - "y": -0.9751464865215524 + "x": -0.22156, + "y": -0.97515 }, { - "x": 0.6242749594636726, - "y": -0.7812046946777966 + "x": 0.62427, + "y": -0.7812 }, { - "x": 0.9999994931602146, - "y": 0.0010068164250789402 + "x": 1, + "y": 0.00101 }, { "max": { @@ -14437,12 +14437,12 @@ } }, { - "x": 1132.866508594451, - "y": 309.6016662720312 + "x": 1132.86651, + "y": 309.60167 }, { - "x": 1061.9704006640247, - "y": 233.99987413989194 + "x": 1061.9704, + "y": 233.99987 }, { "category": 1, @@ -14459,16 +14459,16 @@ "y": 0 }, { - "x": 1099.2542424385326, - "y": 270.3405030274319 + "x": 1099.25424, + "y": 270.3405 }, { - "x": 0.05117406639846281, - "y": 0.10920311750433508 + "x": 0.05117, + "y": 0.1092 }, { - "x": 1099.249385855145, - "y": 267.4366740490539 + "x": 1099.24939, + "y": 267.43667 }, { "endCol": 23, @@ -14491,8 +14491,8 @@ "yScale": 1 }, { - "x": 0.004856583387565934, - "y": 2.903828978377989 + "x": 0.00486, + "y": 2.90383 }, [ { @@ -14521,57 +14521,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 1132.8290774724467, - "y": 286.55131493909767 + "x": 1132.82908, + "y": 286.55131 }, { "body": null, "index": 1, "isInternal": false, - "x": 1107.5137807920325, - "y": 306.6978372936532 + "x": 1107.51378, + "y": 306.69784 }, { "body": null, "index": 2, "isInternal": false, - "x": 1075.9790458570333, - "y": 299.46608393921974 + "x": 1075.97905, + "y": 299.46608 }, { "body": null, "index": 3, "isInternal": false, - "x": 1061.9704006640247, - "y": 270.30296502411755 + "x": 1061.9704, + "y": 270.30297 }, { "body": null, "index": 4, "isInternal": false, - "x": 1076.0377412409825, - "y": 241.16811348696564 + "x": 1076.03774, + "y": 241.16811 }, { "body": null, "index": 5, "isInternal": false, - "x": 1107.5869743325027, - "y": 233.99987413989194 + "x": 1107.58697, + "y": 233.99987 }, { "body": null, "index": 6, "isInternal": false, - "x": 1132.8616520110634, - "y": 254.19733133739217 + "x": 1132.86165, + "y": 254.19733 }, { - "angle": 0.0016018059608835778, - "anglePrev": 0.0011371824932012876, - "angularSpeed": 0.0004646234676822902, - "angularVelocity": 0.0004646234676822902, - "area": 1519.5385669833, + "angle": 0.0016, + "anglePrev": 0.00114, + "angularSpeed": 0.00046, + "angularVelocity": 0.00046, + "area": 1519.53857, "axes": { "#": 1640 }, @@ -14592,13 +14592,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1623.6987742797708, - "inverseInertia": 0.0006158777821604092, - "inverseMass": 0.6580945174595165, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "inverseMass": 0.65809, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5195385669833, + "mass": 1.51954, "motion": 0, "parent": null, "position": { @@ -14620,7 +14620,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.916338430253875, + "speed": 2.91634, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14641,12 +14641,12 @@ } ], { - "x": -0.001601805275902759, - "y": 0.9999987171091061 + "x": -0.0016, + "y": 1 }, { - "x": -0.9999987171091061, - "y": -0.001601805275902759 + "x": -1, + "y": -0.0016 }, { "max": { @@ -14657,12 +14657,12 @@ } }, { - "x": 1166.9243594116406, - "y": 280.207987604638 + "x": 1166.92436, + "y": 280.20799 }, { - "x": 1133.7894899110763, - "y": 231.2739921387689 + "x": 1133.78949, + "y": 231.27399 }, { "category": 1, @@ -14679,16 +14679,16 @@ "y": 0 }, { - "x": 1150.3556672939837, - "y": 254.28282119868538 + "x": 1150.35567, + "y": 254.28282 }, { - "x": 0.1523448315660515, + "x": 0.15234, "y": 0 }, { - "x": 1150.3531525592343, - "y": 251.3664838526493 + "x": 1150.35315, + "y": 251.36648 }, { "endCol": 24, @@ -14711,8 +14711,8 @@ "yScale": 1 }, { - "x": 0.0025147347495044414, - "y": 2.9163373460360815 + "x": 0.00251, + "y": 2.91634 }, [ { @@ -14732,36 +14732,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1133.8631165115553, - "y": 231.2739921387689 + "x": 1133.86312, + "y": 231.27399 }, { "body": null, "index": 1, "isInternal": false, - "x": 1166.9218446768912, - "y": 231.32694585189262 + "x": 1166.92184, + "y": 231.32695 }, { "body": null, "index": 2, "isInternal": false, - "x": 1166.8482180764122, - "y": 277.2916502586019 + "x": 1166.84822, + "y": 277.29165 }, { "body": null, "index": 3, "isInternal": false, - "x": 1133.7894899110763, - "y": 277.2386965454782 + "x": 1133.78949, + "y": 277.2387 }, { - "angle": 0.0005415300782745569, - "anglePrev": 0.0003750762621455109, - "angularSpeed": 0.00016645381612904607, - "angularVelocity": 0.00016645381612904607, - "area": 3306.4800040000005, + "angle": 0.00054, + "anglePrev": 0.00038, + "angularSpeed": 0.00017, + "angularVelocity": 0.00017, + "area": 3306.48, "axes": { "#": 1662 }, @@ -14782,13 +14782,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 7288.540011234562, - "inverseInertia": 0.00013720168901571494, - "inverseMass": 0.302436427496992, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "inverseMass": 0.30244, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.3064800040000004, + "mass": 3.30648, "motion": 0, "parent": null, "position": { @@ -14810,7 +14810,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.896749886789834, + "speed": 2.89675, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14831,12 +14831,12 @@ } ], { - "x": 0.0005415300518068393, - "y": -0.9999998533725909 + "x": 0.00054, + "y": -1 }, { - "x": 0.9999998533725909, - "y": 0.0005415300518068393 + "x": 1, + "y": 0.00054 }, { "max": { @@ -14847,12 +14847,12 @@ } }, { - "x": 1224.5551733993227, - "y": 291.6667206791549 + "x": 1224.55517, + "y": 291.66672 }, { - "x": 1167.0172137229936, - "y": 231.2368441878458 + "x": 1167.01721, + "y": 231.23684 }, { "category": 1, @@ -14869,16 +14869,16 @@ "y": 0 }, { - "x": 1195.7837790378285, - "y": 260.00340950268065 + "x": 1195.78378, + "y": 260.00341 }, { - "x": 0.17893044209522044, + "x": 0.17893, "y": 0 }, { - "x": 1195.7789499911692, - "y": 257.1066636410412 + "x": 1195.77895, + "y": 257.10666 }, { "endCol": 25, @@ -14901,8 +14901,8 @@ "yScale": 1 }, { - "x": 0.0048290466592789015, - "y": 2.8967458616394497 + "x": 0.00483, + "y": 2.89675 }, [ { @@ -14922,35 +14922,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 1224.5192052916245, - "y": 288.76997481751545 + "x": 1224.51921, + "y": 288.76997 }, { "body": null, "index": 1, "isInternal": false, - "x": 1167.0172137229936, - "y": 288.7388357564764 + "x": 1167.01721, + "y": 288.73884 }, { "body": null, "index": 2, "isInternal": false, - "x": 1167.0483527840324, - "y": 231.2368441878458 + "x": 1167.04835, + "y": 231.23684 }, { "body": null, "index": 3, "isInternal": false, - "x": 1224.5503443526634, - "y": 231.2679832488848 + "x": 1224.55034, + "y": 231.26798 }, { - "angle": 0.09646758383546279, - "anglePrev": 0.05524179378105192, - "angularSpeed": 0.02637703748507025, - "angularVelocity": 0.041345911697679906, + "angle": 0.09647, + "anglePrev": 0.05524, + "angularSpeed": 0.02638, + "angularVelocity": 0.04135, "area": 1545.32445, "axes": { "#": 1684 @@ -14972,13 +14972,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 1838.3045471526925, - "inverseInertia": 0.000543979506305893, - "inverseMass": 0.6471132971461107, + "inertia": 1838.30455, + "inverseInertia": 0.00054, + "inverseMass": 0.64711, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.54532445, + "mass": 1.54532, "motion": 0, "parent": null, "position": { @@ -15000,7 +15000,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9658761694212394, + "speed": 1.96588, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15024,16 +15024,16 @@ } ], { - "x": -0.5810984153801214, - "y": 0.8138332947494297 + "x": -0.5811, + "y": 0.81383 }, { - "x": -0.41427178422050775, - "y": -0.9101532227041538 + "x": -0.41427, + "y": -0.91015 }, { - "x": 0.9953506099127498, - "y": 0.09631803230090027 + "x": 0.99535, + "y": 0.09632 }, { "max": { @@ -15044,12 +15044,12 @@ } }, { - "x": 73.60382972574239, - "y": 383.2554819006096 + "x": 73.60383, + "y": 383.25548 }, { - "x": 19.14340272911872, - "y": 321.8293733950566 + "x": 19.1434, + "y": 321.82937 }, { "category": 1, @@ -15066,16 +15066,16 @@ "y": 0 }, { - "x": 53.56198883296918, - "y": 349.8994916461215 + "x": 53.56199, + "y": 349.89949 }, { "x": 0, "y": 0 }, { - "x": 53.70692118322666, - "y": 348.4799730486829 + "x": 53.70692, + "y": 348.47997 }, { "endCol": 1, @@ -15098,8 +15098,8 @@ "yScale": 1 }, { - "x": -0.13713766848874798, - "y": 1.420028326463978 + "x": -0.13714, + "y": 1.42003 }, [ { @@ -15116,29 +15116,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 67.84979047608664, - "y": 381.2916188312443 + "x": 67.84979, + "y": 381.29162 }, { "body": null, "index": 1, "isInternal": false, - "x": 19.23234629707843, - "y": 346.57748271206333 + "x": 19.23235, + "y": 346.57748 }, { "body": null, "index": 2, "isInternal": false, - "x": 73.60382972574239, - "y": 321.8293733950566 + "x": 73.60383, + "y": 321.82937 }, { - "angle": 0.04542632479840823, - "anglePrev": 0.015100375892011951, - "angularSpeed": 0.01961080953988165, - "angularVelocity": 0.029959642718528655, - "area": 832.6916065934118, + "angle": 0.04543, + "anglePrev": 0.0151, + "angularSpeed": 0.01961, + "angularVelocity": 0.02996, + "area": 832.69161, "axes": { "#": 1706 }, @@ -15159,13 +15159,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 462.4740461527257, - "inverseInertia": 0.0021622835017854466, - "inverseMass": 1.2009247986671274, + "inertia": 462.47405, + "inverseInertia": 0.00216, + "inverseMass": 1.20092, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8326916065934119, + "mass": 0.83269, "motion": 0, "parent": null, "position": { @@ -15187,7 +15187,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6841381572634058, + "speed": 2.68414, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15208,12 +15208,12 @@ } ], { - "x": -0.04541070315408689, - "y": 0.9989684019222287 + "x": -0.04541, + "y": 0.99897 }, { - "x": -0.9989684019222287, - "y": -0.04541070315408689 + "x": -0.99897, + "y": -0.04541 }, { "max": { @@ -15224,12 +15224,12 @@ } }, { - "x": 99.95093731933271, - "y": 365.1952121659288 + "x": 99.95094, + "y": 365.19521 }, { - "x": 69.2630141600486, - "y": 332.8012089520682 + "x": 69.26301, + "y": 332.80121 }, { "category": 1, @@ -15246,16 +15246,16 @@ "y": 0 }, { - "x": 84.5474252571035, - "y": 347.65746332262506 + "x": 84.54743, + "y": 347.65746 }, { - "x": -0.18858798610637573, - "y": 0.6169831932927986 + "x": -0.18859, + "y": 0.61698 }, { - "x": 84.46747853797147, - "y": 345.1108088985189 + "x": 84.46748, + "y": 345.11081 }, { "endCol": 2, @@ -15278,8 +15278,8 @@ "yScale": 1 }, { - "x": 0.065481204862607, - "y": 2.545708459574371 + "x": 0.06548, + "y": 2.54571 }, [ { @@ -15299,36 +15299,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 70.55317218125623, - "y": 332.8012089520682 + "x": 70.55317, + "y": 332.80121 }, { "body": null, "index": 1, "isInternal": false, - "x": 99.8318363541584, - "y": 334.1321466723659 + "x": 99.83184, + "y": 334.13215 }, { "body": null, "index": 2, "isInternal": false, - "x": 98.54167833295077, - "y": 362.51371769318195 + "x": 98.54168, + "y": 362.51372 }, { "body": null, "index": 3, "isInternal": false, - "x": 69.2630141600486, - "y": 361.18277997288425 + "x": 69.26301, + "y": 361.18278 }, { - "angle": -0.00043914411997285954, - "anglePrev": 0.00045602332338347306, - "angularSpeed": 0.0005491442897683927, - "angularVelocity": -0.0010373271852911951, - "area": 979.5317619999998, + "angle": -0.00044, + "anglePrev": 0.00046, + "angularSpeed": 0.00055, + "angularVelocity": -0.00104, + "area": 979.53176, "axes": { "#": 1728 }, @@ -15349,13 +15349,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 621.1930410018283, - "inverseInertia": 0.0016098055419089229, - "inverseMass": 1.0208959410955785, + "inertia": 621.19304, + "inverseInertia": 0.00161, + "inverseMass": 1.0209, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9795317619999999, + "mass": 0.97953, "motion": 0, "parent": null, "position": { @@ -15377,7 +15377,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9065087137626606, + "speed": 2.90651, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15407,24 +15407,24 @@ } ], { - "x": 0.30945725546132413, - "y": 0.9509133541192621 + "x": 0.30946, + "y": 0.95091 }, { - "x": -0.8087623227270339, - "y": 0.5881356181504171 + "x": -0.80876, + "y": 0.58814 }, { - "x": -0.80927856332188, - "y": -0.5874250649637571 + "x": -0.80928, + "y": -0.58743 }, { - "x": 0.308621960196424, - "y": -0.9511847799899434 + "x": 0.30862, + "y": -0.95118 }, { - "x": 0.9999999035762226, - "y": -0.00043914410585821454 + "x": 1, + "y": -0.00044 }, { "max": { @@ -15435,12 +15435,12 @@ } }, { - "x": 134.1758595136418, - "y": 367.1616437172722 + "x": 134.17586, + "y": 367.16164 }, { - "x": 97.37599322389606, - "y": 325.64814909765516 + "x": 97.37599, + "y": 325.64815 }, { "category": 1, @@ -15457,16 +15457,16 @@ "y": 0 }, { - "x": 117.67308779488164, - "y": 344.9493928820688 + "x": 117.67309, + "y": 344.94939 }, { - "x": -0.1066078459262223, - "y": 0.21792313324288082 + "x": -0.10661, + "y": 0.21792 }, { - "x": 117.55124179240889, - "y": 342.0413719912467 + "x": 117.55124, + "y": 342.04137 }, { "endCol": 2, @@ -15489,8 +15489,8 @@ "yScale": 1 }, { - "x": 0.1464698886719873, - "y": 2.9113324578019046 + "x": 0.14647, + "y": 2.91133 }, [ { @@ -15513,43 +15513,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 134.09922867259073, - "y": 356.8721805887606 + "x": 134.09923, + "y": 356.87218 }, { "body": null, "index": 1, "isInternal": false, - "x": 111.40946910937205, - "y": 364.2561453749258 + "x": 111.40947, + "y": 364.25615 }, { "body": null, "index": 2, "isInternal": false, - "x": 97.37599322389606, - "y": 344.95830623237515 + "x": 97.37599, + "y": 344.95831 }, { "body": null, "index": 3, "isInternal": false, - "x": 111.39251463373309, - "y": 325.64814909765516 + "x": 111.39251, + "y": 325.64815 }, { "body": null, "index": 4, "isInternal": false, - "x": 134.08875069422498, - "y": 333.01218288943187 + "x": 134.08875, + "y": 333.01218 }, { - "angle": 0.0014260426605716507, - "anglePrev": 0.000505927396948899, - "angularSpeed": 0.001030312020675625, - "angularVelocity": 0.0008504186374617024, - "area": 1515.3131811080627, + "angle": 0.00143, + "anglePrev": 0.00051, + "angularSpeed": 0.00103, + "angularVelocity": 0.00085, + "area": 1515.31318, "axes": { "#": 1754 }, @@ -15570,13 +15570,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1532.4206796199487, - "inverseInertia": 0.0006525623239749069, - "inverseMass": 0.6599295858224876, + "inertia": 1532.42068, + "inverseInertia": 0.00065, + "inverseMass": 0.65993, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5153131811080627, + "mass": 1.51531, "motion": 0, "parent": null, "position": { @@ -15598,7 +15598,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905423983396114, + "speed": 2.90542, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15619,12 +15619,12 @@ } ], { - "x": -0.0014260421772388614, - "y": 0.9999989832013374 + "x": -0.00143, + "y": 1 }, { - "x": -0.9999989832013374, - "y": -0.0014260421772388614 + "x": -1, + "y": -0.00143 }, { "max": { @@ -15635,12 +15635,12 @@ } }, { - "x": 172.10026847041897, - "y": 365.38797016161607 + "x": 172.10027, + "y": 365.38797 }, { - "x": 132.1583611978957, - "y": 324.38916542932833 + "x": 132.15836, + "y": 324.38917 }, { "category": 1, @@ -15657,16 +15657,16 @@ "y": 0 }, { - "x": 152.1043793349933, - "y": 343.43606982586783 + "x": 152.10438, + "y": 343.43607 }, { "x": 0, "y": 0 }, { - "x": 152.00423866157445, - "y": 340.53477593508904 + "x": 152.00424, + "y": 340.53478 }, { "endCol": 3, @@ -15689,8 +15689,8 @@ "yScale": 1 }, { - "x": 0.11528362781527335, - "y": 2.9048246329016365 + "x": 0.11528, + "y": 2.90482 }, [ { @@ -15710,36 +15710,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 132.21260361700766, - "y": 324.38916542932833 + "x": 132.2126, + "y": 324.38917 }, { "body": null, "index": 1, "isInternal": false, - "x": 172.0503974720909, - "y": 324.4459758613786 + "x": 172.0504, + "y": 324.44598 }, { "body": null, "index": 2, "isInternal": false, - "x": 171.99615505297893, - "y": 362.48297422240734 + "x": 171.99616, + "y": 362.48297 }, { "body": null, "index": 3, "isInternal": false, - "x": 132.1583611978957, - "y": 362.42616379035707 + "x": 132.15836, + "y": 362.42616 }, { - "angle": 0.00046563970415831657, - "anglePrev": -0.0012296498550972302, - "angularSpeed": 0.0002674299541495036, - "angularVelocity": 0.0018110831187336, - "area": 1347.9278604289448, + "angle": 0.00047, + "anglePrev": -0.00123, + "angularSpeed": 0.00027, + "angularVelocity": 0.00181, + "area": 1347.92786, "axes": { "#": 1776 }, @@ -15760,13 +15760,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 1394.5666895178056, - "inverseInertia": 0.000717068611717498, - "inverseMass": 0.7418794650344082, + "inertia": 1394.56669, + "inverseInertia": 0.00072, + "inverseMass": 0.74188, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3479278604289449, + "mass": 1.34793, "motion": 0, "parent": null, "position": { @@ -15788,7 +15788,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.916780992780761, + "speed": 2.91678, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15809,12 +15809,12 @@ } ], { - "x": -0.000465639687331624, - "y": 0.9999998915898347 + "x": -0.00047, + "y": 1 }, { - "x": -0.9999998915898347, - "y": -0.000465639687331624 + "x": -1, + "y": -0.00047 }, { "max": { @@ -15825,12 +15825,12 @@ } }, { - "x": 198.18688906563244, - "y": 375.53880366081376 + "x": 198.18689, + "y": 375.5388 }, { - "x": 170.15932294611633, - "y": 324.43254878390735 + "x": 170.15932, + "y": 324.43255 }, { "category": 1, @@ -15847,16 +15847,16 @@ "y": 0 }, { - "x": 184.15999262327418, - "y": 348.52734468284063 + "x": 184.15999, + "y": 348.52734 }, { "x": 0, "y": 0 }, { - "x": 184.0792938838808, - "y": 345.5951827370011 + "x": 184.07929, + "y": 345.59518 }, { "endCol": 4, @@ -15879,8 +15879,8 @@ "yScale": 1 }, { - "x": 0.06367533697587646, - "y": 2.928192757105535 + "x": 0.06368, + "y": 2.92819 }, [ { @@ -15900,36 +15900,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 170.1817558686096, - "y": 324.43254878390735 + "x": 170.18176, + "y": 324.43255 }, { "body": null, "index": 1, "isInternal": false, - "x": 198.16066230043202, - "y": 324.44557687456245 + "x": 198.16066, + "y": 324.44558 }, { "body": null, "index": 2, "isInternal": false, - "x": 198.13822937793876, - "y": 372.6221405817739 + "x": 198.13823, + "y": 372.62214 }, { "body": null, "index": 3, "isInternal": false, - "x": 170.15932294611633, - "y": 372.6091124911188 + "x": 170.15932, + "y": 372.60911 }, { - "angle": 0.001559315418155919, - "anglePrev": 0.0017551967554316286, - "angularSpeed": 0.00048091923618740374, - "angularVelocity": -0.000030721174365045886, - "area": 2285.4053614040354, + "angle": 0.00156, + "anglePrev": 0.00176, + "angularSpeed": 0.00048, + "angularVelocity": -0.00003, + "area": 2285.40536, "axes": { "#": 1798 }, @@ -15950,13 +15950,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 3483.877210739159, - "inverseInertia": 0.00028703652267579035, - "inverseMass": 0.43755913803652385, + "inertia": 3483.87721, + "inverseInertia": 0.00029, + "inverseMass": 0.43756, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.2854053614040355, + "mass": 2.28541, "motion": 0, "parent": null, "position": { @@ -15978,7 +15978,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.924557624245259, + "speed": 2.92456, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15999,12 +15999,12 @@ } ], { - "x": -0.0015593147862526296, - "y": 0.9999987842679596 + "x": -0.00156, + "y": 1 }, { - "x": -0.9999987842679596, - "y": -0.0015593147862526296 + "x": -1, + "y": -0.00156 }, { "max": { @@ -16015,12 +16015,12 @@ } }, { - "x": 243.48833981970324, - "y": 376.03211990027535 + "x": 243.48834, + "y": 376.03212 }, { - "x": 196.37156536049537, - "y": 324.44811285443046 + "x": 196.37157, + "y": 324.44811 }, { "category": 1, @@ -16037,16 +16037,16 @@ "y": 0 }, { - "x": 219.93139062956413, - "y": 348.7778382723314 + "x": 219.93139, + "y": 348.77784 }, { - "x": 0.112304786898477, - "y": 0.0003814195461872569 + "x": 0.1123, + "y": 0.00038 }, { - "x": 219.91655277444178, - "y": 345.83797065075817 + "x": 219.91655, + "y": 345.83797 }, { "endCol": 5, @@ -16069,8 +16069,8 @@ "yScale": 1 }, { - "x": 0.006633280453399948, - "y": 2.937291667842601 + "x": 0.00663, + "y": 2.93729 }, [ { @@ -16090,35 +16090,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 196.4502025610988, - "y": 324.44811285443046 + "x": 196.4502, + "y": 324.44811 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.48833981970324, - "y": 324.5214602065464 + "x": 243.48834, + "y": 324.52146 }, { "body": null, "index": 2, "isInternal": false, - "x": 243.41257869802948, - "y": 373.1075636902323 + "x": 243.41258, + "y": 373.10756 }, { "body": null, "index": 3, "isInternal": false, - "x": 196.37444143942503, - "y": 373.0342163381164 + "x": 196.37444, + "y": 373.03422 }, { - "angle": -0.0014866533352386525, - "anglePrev": -0.0009229689275449855, - "angularSpeed": 0.000517976252648514, - "angularVelocity": -0.0005597263961119491, + "angle": -0.00149, + "anglePrev": -0.00092, + "angularSpeed": 0.00052, + "angularVelocity": -0.00056, "area": 4327.82858, "axes": { "#": 1820 @@ -16140,13 +16140,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 12126.33710521863, - "inverseInertia": 0.0000824651328198393, - "inverseMass": 0.23106275618707614, + "inertia": 12126.33711, + "inverseInertia": 0.00008, + "inverseMass": 0.23106, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.32782858, + "mass": 4.32783, "motion": 0, "parent": null, "position": { @@ -16168,7 +16168,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9129456797574864, + "speed": 2.91295, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16198,24 +16198,24 @@ } ], { - "x": 0.3104365009753635, - "y": 0.9505941188868009 + "x": 0.31044, + "y": 0.95059 }, { - "x": -0.8081440692449375, - "y": 0.5889848583318874 + "x": -0.80814, + "y": 0.58898 }, { - "x": -0.8098917270552894, - "y": -0.586579398246649 + "x": -0.80989, + "y": -0.58658 }, { - "x": 0.30760872509117004, - "y": -0.9515129385603671 + "x": 0.30761, + "y": -0.95151 }, { - "x": 0.999998894931134, - "y": -0.0014866527876205072 + "x": 1, + "y": -0.00149 }, { "max": { @@ -16226,12 +16226,12 @@ } }, { - "x": 319.00931727065876, - "y": 408.61233381829385 + "x": 319.00932, + "y": 408.61233 }, { - "x": 241.7739707537436, - "y": 324.54753436851934 + "x": 241.77397, + "y": 324.54753 }, { "category": 1, @@ -16248,16 +16248,16 @@ "y": 0 }, { - "x": 284.4560272652661, - "y": 365.10388956929506 + "x": 284.45603, + "y": 365.10389 }, { - "x": 0.42232919391354146, - "y": 0.018994661139183716 + "x": 0.42233, + "y": 0.01899 }, { - "x": 284.44945490215514, - "y": 362.1928921703484 + "x": 284.44945, + "y": 362.19289 }, { "endCol": 6, @@ -16280,8 +16280,8 @@ "yScale": 1 }, { - "x": 0.0071083921857280075, - "y": 2.910994128623088 + "x": 0.00711, + "y": 2.91099 }, [ { @@ -16304,43 +16304,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 319.00931727065876, - "y": 390.12954847946355 + "x": 319.00932, + "y": 390.12955 }, { "body": null, "index": 1, "isInternal": false, - "x": 271.33241161399917, - "y": 405.69944468997085 + "x": 271.33241, + "y": 405.69944 }, { "body": null, "index": 2, "isInternal": false, - "x": 241.79212176791876, - "y": 365.1673160534241 + "x": 241.79212, + "y": 365.16732 }, { "body": null, "index": 3, "isInternal": false, - "x": 271.2117667669782, - "y": 324.54753436851934 + "x": 271.21177, + "y": 324.54753 }, { "body": null, "index": 4, "isInternal": false, - "x": 318.9347556867485, - "y": 339.9756039030876 + "x": 318.93476, + "y": 339.9756 }, { - "angle": -0.0010531361102397263, - "anglePrev": -0.000863756148134867, - "angularSpeed": 0.00022846115297220972, - "angularVelocity": -0.00018794476207046706, - "area": 2032.7292721140495, + "angle": -0.00105, + "anglePrev": -0.00086, + "angularSpeed": 0.00023, + "angularVelocity": -0.00019, + "area": 2032.72927, "axes": { "#": 1846 }, @@ -16361,13 +16361,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 6700.374119056197, - "inverseInertia": 0.00014924539767950423, - "inverseMass": 0.49194942667401764, + "inertia": 6700.37412, + "inverseInertia": 0.00015, + "inverseMass": 0.49195, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.0327292721140497, + "mass": 2.03273, "motion": 0, "parent": null, "position": { @@ -16389,7 +16389,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.884528459888629, + "speed": 2.88453, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16410,12 +16410,12 @@ } ], { - "x": 0.0010531359155682876, - "y": 0.999999445452218 + "x": 0.00105, + "y": 1 }, { - "x": -0.999999445452218, - "y": 0.0010531359155682876 + "x": -1, + "y": 0.00105 }, { "max": { @@ -16426,12 +16426,12 @@ } }, { - "x": 414.814636059726, - "y": 348.22177072534953 + "x": 414.81464, + "y": 348.22177 }, { - "x": 317.54903164425764, - "y": 324.3262366861794 + "x": 317.54903, + "y": 324.32624 }, { "category": 1, @@ -16448,16 +16448,16 @@ "y": 0 }, { - "x": 366.19408524425523, - "y": 334.8317915118192 + "x": 366.19409, + "y": 334.83179 }, { "x": 0, "y": 0 }, { - "x": 366.20051766005594, - "y": 331.94841924875334 + "x": 366.20052, + "y": 331.94842 }, { "endCol": 8, @@ -16480,8 +16480,8 @@ "yScale": 1 }, { - "x": -0.007553834279235616, - "y": 2.883228247588306 + "x": -0.00755, + "y": 2.88323 }, [ { @@ -16501,36 +16501,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.57353442878446, - "y": 324.42862164977345 + "x": 317.57353, + "y": 324.42862 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.7926163185976, - "y": 324.3262366861794 + "x": 414.79262, + "y": 324.32624 }, { "body": null, "index": 2, "isInternal": false, - "x": 414.814636059726, - "y": 345.2349613738649 + "x": 414.81464, + "y": 345.23496 }, { "body": null, "index": 3, "isInternal": false, - "x": 317.5955541699129, - "y": 345.33734633745894 + "x": 317.59555, + "y": 345.33735 }, { - "angle": -0.001490873200472463, - "anglePrev": -0.0012132323596206907, - "angularSpeed": 0.00030207680584474166, - "angularVelocity": -0.0002728631914368446, - "area": 1931.953486546484, + "angle": -0.00149, + "anglePrev": -0.00121, + "angularSpeed": 0.0003, + "angularVelocity": -0.00027, + "area": 1931.95349, "axes": { "#": 1868 }, @@ -16551,13 +16551,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 4690.996610130106, - "inverseInertia": 0.00021317431733813697, - "inverseMass": 0.517610805313733, + "inertia": 4690.99661, + "inverseInertia": 0.00021, + "inverseMass": 0.51761, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.9319534865464842, + "mass": 1.93195, "motion": 0, "parent": null, "position": { @@ -16579,7 +16579,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8641385462224083, + "speed": 2.86414, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16600,12 +16600,12 @@ } ], { - "x": 0.0014908726481778264, - "y": 0.9999988886487556 + "x": 0.00149, + "y": 1 }, { - "x": -0.9999988886487556, - "y": 0.0014908726481778264 + "x": -1, + "y": 0.00149 }, { "max": { @@ -16616,12 +16616,12 @@ } }, { - "x": 496.0010757671508, - "y": 352.8386978379708 + "x": 496.00108, + "y": 352.8387 }, { - "x": 413.9153578995709, - "y": 326.30191457135635 + "x": 413.91536, + "y": 326.30191 }, { "category": 1, @@ -16638,16 +16638,16 @@ "y": 0 }, { - "x": 454.96616204164536, - "y": 338.13825897197376 + "x": 454.96616, + "y": 338.13826 }, { - "x": 1.2336414516892564, - "y": 0.44423482037769646 + "x": 1.23364, + "y": 0.44423 }, { - "x": 454.9691565948518, - "y": 335.2749439886894 + "x": 454.96916, + "y": 335.27494 }, { "endCol": 10, @@ -16670,8 +16670,8 @@ "yScale": 1 }, { - "x": -0.0040320698784626074, - "y": 2.8633015014171406 + "x": -0.00403, + "y": 2.8633 }, [ { @@ -16691,36 +16691,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.93124831613994, - "y": 326.4242180227365 + "x": 413.93125, + "y": 326.42422 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.9659651027583, - "y": 326.30191457135635 + "x": 495.96597, + "y": 326.30191 }, { "body": null, "index": 2, "isInternal": false, - "x": 496.0010757671508, - "y": 349.852299921211 + "x": 496.00108, + "y": 349.8523 }, { "body": null, "index": 3, "isInternal": false, - "x": 413.96635898053245, - "y": 349.97460337259116 + "x": 413.96636, + "y": 349.9746 }, { - "angle": 0.0013513423839911266, - "anglePrev": 0.0015271492001903838, - "angularSpeed": 0.00019007545764847494, - "angularVelocity": -0.0001812390606075161, - "area": 2376.3179650719107, + "angle": 0.00135, + "anglePrev": 0.00153, + "angularSpeed": 0.00019, + "angularVelocity": -0.00018, + "area": 2376.31797, "axes": { "#": 1890 }, @@ -16741,13 +16741,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 3764.591504006761, - "inverseInertia": 0.0002656330703970595, - "inverseMass": 0.42081910531267586, + "inertia": 3764.5915, + "inverseInertia": 0.00027, + "inverseMass": 0.42082, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.3763179650719106, + "mass": 2.37632, "motion": 0, "parent": null, "position": { @@ -16769,7 +16769,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.848946947895017, + "speed": 2.84895, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16790,12 +16790,12 @@ } ], { - "x": -0.0013513419727042, - "y": 0.9999990869370197 + "x": -0.00135, + "y": 1 }, { - "x": -0.9999990869370197, - "y": -0.0013513419727042 + "x": -1, + "y": -0.00135 }, { "max": { @@ -16806,12 +16806,12 @@ } }, { - "x": 544.4619993827388, - "y": 367.2215224700327 + "x": 544.462, + "y": 367.22152 }, { - "x": 495.65488571105976, - "y": 315.5530245096871 + "x": 495.65489, + "y": 315.55302 }, { "category": 1, @@ -16828,16 +16828,16 @@ "y": 0 }, { - "x": 520.0584525821918, - "y": 339.9628000159477 + "x": 520.05845, + "y": 339.9628 }, { - "x": 1.3859572023549749, - "y": 0.0018729038499931368 + "x": 1.38596, + "y": 0.00187 }, { - "x": 520.0579411607022, - "y": 337.1150112915456 + "x": 520.05794, + "y": 337.11501 }, { "endCol": 11, @@ -16860,8 +16860,8 @@ "yScale": 1 }, { - "x": 0.0013549255918405834, - "y": 2.847799685199732 + "x": 0.00135, + "y": 2.8478 }, [ { @@ -16881,43 +16881,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 495.72078874254134, - "y": 315.5530245096871 + "x": 495.72079, + "y": 315.55302 }, { "body": null, "index": 1, "isInternal": false, - "x": 544.4619993827388, - "y": 315.61889061356555 + "x": 544.462, + "y": 315.61889 }, { "body": null, "index": 2, "isInternal": false, - "x": 544.3961164218423, - "y": 364.37257552220836 + "x": 544.39612, + "y": 364.37258 }, { "body": null, "index": 3, "isInternal": false, - "x": 495.654905781645, - "y": 364.3067094183299 + "x": 495.65491, + "y": 364.30671 }, { - "angle": -0.0007002988990403515, - "anglePrev": -0.00031332836519421057, - "angularSpeed": 0.00038697053384614095, - "angularVelocity": -0.00038697053384614095, - "area": 7163.665109999999, + "angle": -0.0007, + "anglePrev": -0.00031, + "angularSpeed": 0.00039, + "angularVelocity": -0.00039, + "area": 7163.66511, "axes": { "#": 1912 }, "bounds": { "#": 1926 }, - "circleRadius": 47.985725308641975, + "circleRadius": 47.98573, "collisionFilter": { "#": 1929 }, @@ -16932,13 +16932,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 32670.739096352663, - "inverseInertia": 0.000030608429060964806, - "inverseMass": 0.13959334846684368, + "inertia": 32670.7391, + "inverseInertia": 0.00003, + "inverseMass": 0.13959, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.163665109999999, + "mass": 7.16367, "motion": 0, "parent": null, "position": { @@ -16960,7 +16960,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.88342069516564, + "speed": 2.88342, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17014,56 +17014,56 @@ } ], { - "x": -0.97109794163339, - "y": -0.2386813519221674 + "x": -0.9711, + "y": -0.23868 }, { - "x": -0.8857791616949696, - "y": -0.4641069668804345 + "x": -0.88578, + "y": -0.46411 }, { - "x": -0.7489837205893546, - "y": -0.6625883988511474 + "x": -0.74898, + "y": -0.66259 }, { - "x": -0.5686303175545118, - "y": -0.8225931934789243 + "x": -0.56863, + "y": -0.82259 }, { - "x": -0.35526202880471164, - "y": -0.9347667574799395 + "x": -0.35526, + "y": -0.93477 }, { - "x": -0.12128209434848417, - "y": -0.9926180804269312 + "x": -0.12128, + "y": -0.99262 }, { - "x": 0.1198917171472844, - "y": -0.9927869742092083 + "x": 0.11989, + "y": -0.99279 }, { - "x": 0.35395244851639435, - "y": -0.9352634196787819 + "x": 0.35395, + "y": -0.93526 }, { - "x": 0.5674776379820722, - "y": -0.8233888087594392 + "x": 0.56748, + "y": -0.82339 }, { - "x": 0.7480549664094047, - "y": -0.6636367735668545 + "x": 0.74805, + "y": -0.66364 }, { - "x": 0.8851282659066879, - "y": -0.46534713160501967 + "x": 0.88513, + "y": -0.46535 }, { - "x": 0.9707626926780121, - "y": -0.24004123500876942 + "x": 0.97076, + "y": -0.24004 }, { - "x": 0.9999997547907362, - "y": -0.0007002988418004249 + "x": 1, + "y": -0.0007 }, { "max": { @@ -17074,12 +17074,12 @@ } }, { - "x": 620.3371452107467, - "y": 454.91130776872467 + "x": 620.33715, + "y": 454.91131 }, { - "x": 525.0149529911514, - "y": 356.0562181803098 + "x": 525.01495, + "y": 356.05622 }, { "category": 1, @@ -17096,16 +17096,16 @@ "y": 0 }, { - "x": 572.6971063630343, - "y": 404.04220641369807 + "x": 572.69711, + "y": 404.04221 }, { - "x": 0.6465051707789972, - "y": 0.8750259807722176 + "x": 0.64651, + "y": 0.87503 }, { - "x": 572.7392208872049, - "y": 401.1590932920597 + "x": 572.73922, + "y": 401.15909 }, { "endCol": 12, @@ -17128,8 +17128,8 @@ "yScale": 1 }, { - "x": -0.04211452417050168, - "y": 2.8831131216383783 + "x": -0.04211, + "y": 2.88311 }, [ { @@ -17215,197 +17215,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 620.3371452107467, - "y": 409.79284555977966 + "x": 620.33715, + "y": 409.79285 }, { "body": null, "index": 1, "isInternal": false, - "x": 617.5760116463225, - "y": 421.0267819330822 + "x": 617.57601, + "y": 421.02678 }, { "body": null, "index": 2, "isInternal": false, - "x": 612.2071861256039, - "y": 431.2735442279772 + "x": 612.20719, + "y": 431.27354 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.5422518942754, - "y": 439.9379140971256 + "x": 604.54225, + "y": 439.93791 }, { "body": null, "index": 4, "isInternal": false, - "x": 595.026855892357, - "y": 446.5155793308294 + "x": 595.02686, + "y": 446.51558 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.2137311703896, - "y": 450.62515275725394 + "x": 584.21373, + "y": 450.62515 }, { "body": null, "index": 6, "isInternal": false, - "x": 572.7307109032569, - "y": 452.0281946470863 + "x": 572.73071, + "y": 452.02819 }, { "body": null, "index": 7, "isInternal": false, - "x": 561.2457368023557, - "y": 450.64123722105245 + "x": 561.24574, + "y": 450.64124 }, { "body": null, "index": 8, "isInternal": false, - "x": 550.4268668286902, - "y": 446.5468126591738 + "x": 550.42687, + "y": 446.54681 }, { "body": null, "index": 9, "isInternal": false, - "x": 540.9022674993928, - "y": 439.9824811154179 + "x": 540.90227, + "y": 439.98248 }, { "body": null, "index": 10, "isInternal": false, - "x": 533.2252054927219, - "y": 431.3288552311003 + "x": 533.22521, + "y": 431.32886 }, { "body": null, "index": 11, "isInternal": false, - "x": 527.8420336499307, - "y": 421.08962254935227 + "x": 527.84203, + "y": 421.08962 }, { "body": null, "index": 12, "isInternal": false, - "x": 525.065168572324, - "y": 409.8595644310357 + "x": 525.06517, + "y": 409.85956 }, { "body": null, "index": 13, "isInternal": false, - "x": 525.0570675153219, - "y": 398.2915672676165 + "x": 525.05707, + "y": 398.29157 }, { "body": null, "index": 14, "isInternal": false, - "x": 527.8182010797461, - "y": 387.05763089431395 + "x": 527.8182, + "y": 387.05763 }, { "body": null, "index": 15, "isInternal": false, - "x": 533.1870266004647, - "y": 376.81086859941894 + "x": 533.18703, + "y": 376.81087 }, { "body": null, "index": 16, "isInternal": false, - "x": 540.8519608317935, - "y": 368.14649873027054 + "x": 540.85196, + "y": 368.1465 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.3673568337116, - "y": 361.56883349656675 + "x": 550.36736, + "y": 361.56883 }, { "body": null, "index": 18, "isInternal": false, - "x": 561.1804815556791, - "y": 357.4592600701422 + "x": 561.18048, + "y": 357.45926 }, { "body": null, "index": 19, "isInternal": false, - "x": 572.6635018228118, - "y": 356.0562181803098 + "x": 572.6635, + "y": 356.05622 }, { "body": null, "index": 20, "isInternal": false, - "x": 584.1484759237129, - "y": 357.4431756063437 + "x": 584.14848, + "y": 357.44318 }, { "body": null, "index": 21, "isInternal": false, - "x": 594.9673458973784, - "y": 361.53760016822235 + "x": 594.96735, + "y": 361.5376 }, { "body": null, "index": 22, "isInternal": false, - "x": 604.4919452266759, - "y": 368.10193171197824 + "x": 604.49195, + "y": 368.10193 }, { "body": null, "index": 23, "isInternal": false, - "x": 612.1690072333467, - "y": 376.75555759629583 + "x": 612.16901, + "y": 376.75556 }, { "body": null, "index": 24, "isInternal": false, - "x": 617.5521790761379, - "y": 386.99479027804387 + "x": 617.55218, + "y": 386.99479 }, { "body": null, "index": 25, "isInternal": false, - "x": 620.3290441537447, - "y": 398.2248483963604 + "x": 620.32904, + "y": 398.22485 }, { - "angle": -0.00029363277966316297, - "anglePrev": -0.000220734435934219, - "angularSpeed": 0.00007289834372894394, - "angularVelocity": -0.00007289834372894394, - "area": 6059.0497460000015, + "angle": -0.00029, + "anglePrev": -0.00022, + "angularSpeed": 0.00007, + "angularVelocity": -0.00007, + "area": 6059.04975, "axes": { "#": 1967 }, "bounds": { "#": 1981 }, - "circleRadius": 44.13130144032922, + "circleRadius": 44.1313, "collisionFilter": { "#": 1984 }, @@ -17420,13 +17420,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 23372.08438446153, - "inverseInertia": 0.00004278608546633651, - "inverseMass": 0.16504238154838874, + "inertia": 23372.08438, + "inverseInertia": 0.00004, + "inverseMass": 0.16504, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.059049746000001, + "mass": 6.05905, "motion": 0, "parent": null, "position": { @@ -17448,7 +17448,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8509097506491803, + "speed": 2.85091, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17502,56 +17502,56 @@ } ], { - "x": -0.9709927670469352, - "y": -0.23910885877051105 + "x": -0.97099, + "y": -0.23911 }, { - "x": -0.8855923445773858, - "y": -0.46446334540621054 + "x": -0.88559, + "y": -0.46446 }, { - "x": -0.7487282042148282, - "y": -0.6628771199952815 + "x": -0.74873, + "y": -0.66288 }, { - "x": -0.5682974548383933, - "y": -0.82282319049976 + "x": -0.5683, + "y": -0.82282 }, { - "x": -0.3548976009690992, - "y": -0.9349051785215323 + "x": -0.3549, + "y": -0.93491 }, { - "x": -0.12079689858077884, - "y": -0.9926772432635216 + "x": -0.1208, + "y": -0.99268 }, { - "x": 0.12021391262752491, - "y": -0.9927480119399795 + "x": 0.12021, + "y": -0.99275 }, { - "x": 0.35434850218938735, - "y": -0.9351134364322534 + "x": 0.35435, + "y": -0.93511 }, { - "x": 0.5678141411475248, - "y": -0.8231567901152846 + "x": 0.56781, + "y": -0.82316 }, { - "x": 0.7483387902235648, - "y": -0.663316707950834 + "x": 0.74834, + "y": -0.66332 }, { - "x": 0.8853194285548274, - "y": -0.46498334316763823 + "x": 0.88532, + "y": -0.46498 }, { - "x": 0.9708521792189264, - "y": -0.23967904811614524 + "x": 0.97085, + "y": -0.23968 }, { - "x": 0.9999999568898957, - "y": -0.0002936327754436497 + "x": 1, + "y": -0.00029 }, { "max": { @@ -17562,12 +17562,12 @@ } }, { - "x": 708.6036149347946, - "y": 459.7288344861698 + "x": 708.60361, + "y": 459.72883 }, { - "x": 620.9385680618153, - "y": 368.61623685737 + "x": 620.93857, + "y": 368.61624 }, { "category": 1, @@ -17584,16 +17584,16 @@ "y": 0 }, { - "x": 664.7920549907155, - "y": 412.74723495487797 + "x": 664.79205, + "y": 412.74723 }, { - "x": 0.8573603565530444, - "y": 0.8416435585696732 + "x": 0.85736, + "y": 0.84164 }, { - "x": 664.8339819755367, - "y": 409.89663352109415 + "x": 664.83398, + "y": 409.89663 }, { "endCol": 14, @@ -17616,8 +17616,8 @@ "yScale": 1 }, { - "x": -0.04192698482120363, - "y": 2.8506014337838206 + "x": -0.04193, + "y": 2.8506 }, [ { @@ -17703,189 +17703,189 @@ "body": null, "index": 0, "isInternal": false, - "x": 708.6036149347946, - "y": 418.0533706736831 + "x": 708.60361, + "y": 418.05337 }, { "body": null, "index": 1, "isInternal": false, - "x": 706.0596482711661, - "y": 428.3841181110348 + "x": 706.05965, + "y": 428.38412 }, { "body": null, "index": 2, "isInternal": false, - "x": 701.1184145050474, - "y": 437.8055694253795 + "x": 701.11841, + "y": 437.80557 }, { "body": null, "index": 3, "isInternal": false, - "x": 694.0657533006126, - "y": 445.7716406612813 + "x": 694.06575, + "y": 445.77164 }, { "body": null, "index": 4, "isInternal": false, - "x": 685.3125281009036, - "y": 451.817211155716 + "x": 685.31253, + "y": 451.81721 }, { "body": null, "index": 5, "isInternal": false, - "x": 675.3656364062247, - "y": 455.5931320519116 + "x": 675.36564, + "y": 455.59313 }, { "body": null, "index": 6, "isInternal": false, - "x": 664.8050132987287, - "y": 456.87823305238595 + "x": 664.80501, + "y": 456.87823 }, { "body": null, "index": 7, "isInternal": false, - "x": 654.2436373167963, - "y": 455.59933416339453 + "x": 654.24364, + "y": 455.59933 }, { "body": null, "index": 8, "isInternal": false, - "x": 644.294529869194, - "y": 451.82925538489917 + "x": 644.29453, + "y": 451.82926 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5377558237609, - "y": 445.7888264003625 + "x": 635.53776, + "y": 445.78883 }, { "body": null, "index": 10, "isInternal": false, - "x": 628.4804176364789, - "y": 437.826898322922 + "x": 628.48042, + "y": 437.8269 }, { "body": null, "index": 11, "isInternal": false, - "x": 623.5336518288708, - "y": 428.40835044946107 + "x": 623.53365, + "y": 428.40835 }, { "body": null, "index": 12, "isInternal": false, - "x": 620.9836187121018, - "y": 418.07909877746744 + "x": 620.98362, + "y": 418.0791 }, { "body": null, "index": 13, "isInternal": false, - "x": 620.9804950466365, - "y": 407.44109923607283 + "x": 620.9805, + "y": 407.4411 }, { "body": null, "index": 14, "isInternal": false, - "x": 623.524461710265, - "y": 397.1103517987211 + "x": 623.52446, + "y": 397.11035 }, { "body": null, "index": 15, "isInternal": false, - "x": 628.4656954763836, - "y": 387.68890048437646 + "x": 628.4657, + "y": 387.6889 }, { "body": null, "index": 16, "isInternal": false, - "x": 635.5183566808184, - "y": 379.7228292484746 + "x": 635.51836, + "y": 379.72283 }, { "body": null, "index": 17, "isInternal": false, - "x": 644.2715818805275, - "y": 373.67725875403994 + "x": 644.27158, + "y": 373.67726 }, { "body": null, "index": 18, "isInternal": false, - "x": 654.2184735752064, - "y": 369.90133785784434 + "x": 654.21847, + "y": 369.90134 }, { "body": null, "index": 19, "isInternal": false, - "x": 664.7790966827024, - "y": 368.61623685737 + "x": 664.7791, + "y": 368.61624 }, { "body": null, "index": 20, "isInternal": false, - "x": 675.3404726646348, - "y": 369.8951357463614 + "x": 675.34047, + "y": 369.89514 }, { "body": null, "index": 21, "isInternal": false, - "x": 685.2895801122371, - "y": 373.66521452485676 + "x": 685.28958, + "y": 373.66521 }, { "body": null, "index": 22, "isInternal": false, - "x": 694.0463541576702, - "y": 379.70564350939344 + "x": 694.04635, + "y": 379.70564 }, { "body": null, "index": 23, "isInternal": false, - "x": 701.1036923449522, - "y": 387.66757158683396 + "x": 701.10369, + "y": 387.66757 }, { "body": null, "index": 24, "isInternal": false, - "x": 706.0504581525603, - "y": 397.08611946029487 + "x": 706.05046, + "y": 397.08612 }, { "body": null, "index": 25, "isInternal": false, - "x": 708.6004912693293, - "y": 407.4153711322885 + "x": 708.60049, + "y": 407.41537 }, { - "angle": -0.026607942507055272, - "anglePrev": -0.023654793636616104, - "angularSpeed": 0.0029531488704391674, - "angularVelocity": -0.0029531488704391674, + "angle": -0.02661, + "anglePrev": -0.02365, + "angularSpeed": 0.00295, + "angularVelocity": -0.00295, "area": 1190.42275, "axes": { "#": 2022 @@ -17907,13 +17907,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 917.4702110738278, - "inverseInertia": 0.001089953644194701, - "inverseMass": 0.8400377092927702, + "inertia": 917.47021, + "inverseInertia": 0.00109, + "inverseMass": 0.84004, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.19042275, + "mass": 1.19042, "motion": 0, "parent": null, "position": { @@ -17935,7 +17935,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8304755690689465, + "speed": 2.83048, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17965,24 +17965,24 @@ } ], { - "x": 0.33423784738019024, - "y": 0.9424887592850413 + "x": 0.33424, + "y": 0.94249 }, { - "x": -0.7930843143513302, - "y": 0.6091118701272206 + "x": -0.79308, + "y": 0.60911 }, { - "x": -0.8243607297200207, - "y": -0.5660648260539379 + "x": -0.82436, + "y": -0.56606 }, { - "x": 0.2836329858566849, - "y": -0.9589329118004142 + "x": 0.28363, + "y": -0.95893 }, { - "x": 0.999646029582251, - "y": -0.026604802958122044 + "x": 0.99965, + "y": -0.0266 }, { "max": { @@ -17993,12 +17993,12 @@ } }, { - "x": 706.8820307981113, - "y": 359.3928644995795 + "x": 706.88203, + "y": 359.39286 }, { - "x": 666.0111672638396, - "y": 314.01603436794204 + "x": 666.01117, + "y": 314.01603 }, { "category": 1, @@ -18015,16 +18015,16 @@ "y": 0 }, { - "x": 688.4363177394148, - "y": 335.1055616182647 + "x": 688.43632, + "y": 335.10556 }, { - "x": -0.5171317762286084, - "y": 0.008797925073545666 + "x": -0.51713, + "y": 0.0088 }, { - "x": 688.4936029197507, - "y": 332.27566579770695 + "x": 688.4936, + "y": 332.27567 }, { "endCol": 14, @@ -18047,8 +18047,8 @@ "yScale": 1 }, { - "x": -0.057285180335916265, - "y": 2.8298958205577214 + "x": -0.05729, + "y": 2.8299 }, [ { @@ -18071,43 +18071,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 706.8820307981113, - "y": 347.7713003537473 + "x": 706.88203, + "y": 347.7713 }, { "body": null, "index": 1, "isInternal": false, - "x": 682.0911561653281, - "y": 356.56296867902176 + "x": 682.09116, + "y": 356.56297 }, { "body": null, "index": 2, "isInternal": false, - "x": 666.0684524441756, - "y": 335.7008649868204 + "x": 666.06845, + "y": 335.70086 }, { "body": null, "index": 3, "isInternal": false, - "x": 680.9588025418245, - "y": 314.01603436794204 + "x": 680.9588, + "y": 314.01603 }, { "body": null, "index": 4, "isInternal": false, - "x": 706.1822180611008, - "y": 321.4766111916158 + "x": 706.18222, + "y": 321.47661 }, { - "angle": -0.02762083094709799, - "anglePrev": -0.024793258724850102, - "angularSpeed": 0.0028275722222478885, - "angularVelocity": -0.0028275722222478885, - "area": 2171.016137319483, + "angle": -0.02762, + "anglePrev": -0.02479, + "angularSpeed": 0.00283, + "angularVelocity": -0.00283, + "area": 2171.01614, "axes": { "#": 2048 }, @@ -18128,13 +18128,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 3142.3211355327803, - "inverseInertia": 0.0003182360926425332, - "inverseMass": 0.46061380328323276, + "inertia": 3142.32114, + "inverseInertia": 0.00032, + "inverseMass": 0.46061, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.1710161373194827, + "mass": 2.17102, "motion": 0, "parent": null, "position": { @@ -18156,7 +18156,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.682357746649091, + "speed": 2.68236, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18177,12 +18177,12 @@ } ], { - "x": 0.02761731904498313, - "y": 0.999618569099618 + "x": 0.02762, + "y": 0.99962 }, { - "x": -0.999618569099618, - "y": 0.02761731904498313 + "x": -0.99962, + "y": 0.02762 }, { "max": { @@ -18193,12 +18193,12 @@ } }, { - "x": 756.7214468476224, - "y": 369.08471596486373 + "x": 756.72145, + "y": 369.08472 }, { - "x": 708.6651282646018, - "y": 321.4137728774602 + "x": 708.66513, + "y": 321.41377 }, { "category": 1, @@ -18215,16 +18215,16 @@ "y": 0 }, { - "x": 732.6932875561121, - "y": 345.24924442116196 + "x": 732.69329, + "y": 345.24924 }, { "x": 0, "y": 0 }, { - "x": 732.7108129100535, - "y": 342.5669439266279 + "x": 732.71081, + "y": 342.56694 }, { "endCol": 15, @@ -18247,8 +18247,8 @@ "yScale": 1 }, { - "x": -0.017525353941406367, - "y": 2.6823004945340516 + "x": -0.01753, + "y": 2.6823 }, [ { @@ -18268,36 +18268,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 708.6651282646018, - "y": 322.7060652289297 + "x": 708.66513, + "y": 322.70607 }, { "body": null, "index": 1, "isInternal": false, - "x": 755.4401041096577, - "y": 321.4137728774602 + "x": 755.4401, + "y": 321.41377 }, { "body": null, "index": 2, "isInternal": false, - "x": 756.7214468476224, - "y": 367.79242361339425 + "x": 756.72145, + "y": 367.79242 }, { "body": null, "index": 3, "isInternal": false, - "x": 709.9464710025665, - "y": 369.08471596486373 + "x": 709.94647, + "y": 369.08472 }, { - "angle": 0.08516240497354306, - "anglePrev": 0.07681223775359092, - "angularSpeed": 0.008350167219952145, - "angularVelocity": 0.008350167219952145, - "area": 1119.9948759999997, + "angle": 0.08516, + "anglePrev": 0.07681, + "angularSpeed": 0.00835, + "angularVelocity": 0.00835, + "area": 1119.99488, "axes": { "#": 2070 }, @@ -18318,13 +18318,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 965.6287346905493, - "inverseInertia": 0.0010355947001934086, - "inverseMass": 0.8928612276972597, + "inertia": 965.62873, + "inverseInertia": 0.00104, + "inverseMass": 0.89286, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.1199948759999998, + "mass": 1.11999, "motion": 0, "parent": null, "position": { @@ -18346,7 +18346,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7745688959816004, + "speed": 2.77457, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18370,16 +18370,16 @@ } ], { - "x": -0.5718542056400131, - "y": 0.8203552690705593 + "x": -0.57185, + "y": 0.82036 }, { - "x": -0.4245270970065353, - "y": -0.905415232866779 + "x": -0.42453, + "y": -0.90542 }, { - "x": 0.9963758735563456, - "y": 0.08505950032082665 + "x": 0.99638, + "y": 0.08506 }, { "max": { @@ -18390,12 +18390,12 @@ } }, { - "x": 889.8027879044346, - "y": 375.0475685760108 + "x": 889.80279, + "y": 375.04757 }, { - "x": 843.7554308958606, - "y": 324.37388439868226 + "x": 843.75543, + "y": 324.37388 }, { "category": 1, @@ -18412,16 +18412,16 @@ "y": 0 }, { - "x": 873.0116835458044, - "y": 348.46193960996965 + "x": 873.01168, + "y": 348.46194 }, { "x": 0, "y": 0 }, { - "x": 873.0118742881024, - "y": 345.6873707205445 + "x": 873.01187, + "y": 345.68737 }, { "endCol": 18, @@ -18444,8 +18444,8 @@ "yScale": 1 }, { - "x": -0.00019074229790135176, - "y": 2.774568889425154 + "x": -0.00019, + "y": 2.77457 }, [ { @@ -18462,29 +18462,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 885.4768318371181, - "y": 375.0475685760108 + "x": 885.47683, + "y": 375.04757 }, { "body": null, "index": 1, "isInternal": false, - "x": 843.7554308958606, - "y": 345.964365855216 + "x": 843.75543, + "y": 345.96437 }, { "body": null, "index": 2, "isInternal": false, - "x": 889.8027879044346, - "y": 324.37388439868226 + "x": 889.80279, + "y": 324.37388 }, { - "angle": -0.0019678870722510647, - "anglePrev": -0.0016666689197835775, - "angularSpeed": 0.00030121815246748727, - "angularVelocity": -0.00030121815246748727, - "area": 5582.974756, + "angle": -0.00197, + "anglePrev": -0.00167, + "angularSpeed": 0.0003, + "angularVelocity": -0.0003, + "area": 5582.97476, "axes": { "#": 2092 }, @@ -18505,13 +18505,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 19922.243813825833, - "inverseInertia": 0.000050195149168188086, - "inverseMass": 0.17911598094283054, + "inertia": 19922.24381, + "inverseInertia": 0.00005, + "inverseMass": 0.17912, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.582974756, + "mass": 5.58297, "motion": 0, "parent": null, "position": { @@ -18533,7 +18533,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.888328176583626, + "speed": 2.88833, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18569,32 +18569,32 @@ } ], { - "x": 0.6250338136594781, - "y": 0.7805976760036429 + "x": 0.62503, + "y": 0.7806 }, { - "x": -0.22060516142795705, - "y": 0.9753631953028296 + "x": -0.22061, + "y": 0.97536 }, { - "x": -0.9001113636667524, - "y": 0.43565988224528945 + "x": -0.90011, + "y": 0.43566 }, { - "x": -0.9018190466436425, - "y": -0.4321138821083531 + "x": -0.90182, + "y": -0.43211 }, { - "x": -0.2244422521429484, - "y": -0.9744873911205834 + "x": -0.22444, + "y": -0.97449 }, { - "x": 0.6219567244606481, - "y": -0.7830516157305223 + "x": 0.62196, + "y": -0.78305 }, { - "x": 0.9999980637108606, - "y": -0.0019678858021181128 + "x": 1, + "y": -0.00197 }, { "max": { @@ -18605,12 +18605,12 @@ } }, { - "x": 972.2540692078519, - "y": 435.5996074592463 + "x": 972.25407, + "y": 435.59961 }, { - "x": 886.3432949437945, - "y": 344.63745923218255 + "x": 886.34329, + "y": 344.63746 }, { "category": 1, @@ -18627,16 +18627,16 @@ "y": 0 }, { - "x": 931.5122925231123, - "y": 388.6941530166663 + "x": 931.51229, + "y": 388.69415 }, { - "x": -0.24494930983429458, - "y": 0.4239135632179341 + "x": -0.24495, + "y": 0.42391 }, { - "x": 931.5049186255378, - "y": 385.80583425287284 + "x": 931.50492, + "y": 385.80583 }, { "endCol": 20, @@ -18659,8 +18659,8 @@ "yScale": 1 }, { - "x": 0.007373897574487955, - "y": 2.888318763793473 + "x": 0.00737, + "y": 2.88832 }, [ { @@ -18689,57 +18689,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 972.2466953102775, - "y": 408.21203015601725 + "x": 972.2467, + "y": 408.21203 }, { "body": null, "index": 1, "isInternal": false, - "x": 941.6498478089761, - "y": 432.7112886954528 + "x": 941.64985, + "y": 432.71129 }, { "body": null, "index": 2, "isInternal": false, - "x": 903.419757900427, - "y": 424.06450440392314 + "x": 903.41976, + "y": 424.0645 }, { "body": null, "index": 3, "isInternal": false, - "x": 886.3432949437945, - "y": 388.7830406178108 + "x": 886.34329, + "y": 388.78304 }, { "body": null, "index": 4, "isInternal": false, - "x": 903.2807661262233, - "y": 353.43464116402504 + "x": 903.28077, + "y": 353.43464 }, { "body": null, "index": 5, "isInternal": false, - "x": 941.4765282348404, - "y": 344.63745923218255 + "x": 941.47653, + "y": 344.63746 }, { "body": null, "index": 6, "isInternal": false, - "x": 972.1695620583776, - "y": 369.01610605080634 + "x": 972.16956, + "y": 369.01611 }, { - "angle": -0.0013643383279954029, - "anglePrev": -0.0011737701929654342, - "angularSpeed": 0.00019056813502996863, - "angularVelocity": -0.00019056813502996863, - "area": 1427.950596, + "angle": -0.00136, + "anglePrev": -0.00117, + "angularSpeed": 0.00019, + "angularVelocity": -0.00019, + "area": 1427.9506, "axes": { "#": 2122 }, @@ -18760,13 +18760,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 1308.0466332042622, - "inverseInertia": 0.0007644987377478626, - "inverseMass": 0.7003043402210255, + "inertia": 1308.04663, + "inverseInertia": 0.00076, + "inverseMass": 0.7003, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4279505959999998, + "mass": 1.42795, "motion": 0, "parent": null, "position": { @@ -18788,7 +18788,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.897261853983937, + "speed": 2.89726, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18812,16 +18812,16 @@ } ], { - "x": -0.5011829234840418, - "y": -0.8653413645538905 + "x": -0.50118, + "y": -0.86534 }, { - "x": 0.4988198238115385, - "y": -0.8667057074766648 + "x": 0.49882, + "y": -0.86671 }, { - "x": 0.999999069290608, - "y": -0.001364337904727878 + "x": 1, + "y": -0.00136 }, { "max": { @@ -18832,12 +18832,12 @@ } }, { - "x": 985.3752657423186, - "y": 352.62013083032923 + "x": 985.37527, + "y": 352.62013 }, { - "x": 944.7089370489692, - "y": 302.83505162558293 + "x": 944.70894, + "y": 302.83505 }, { "category": 1, @@ -18854,16 +18854,16 @@ "y": 0 }, { - "x": 965.0279109216959, - "y": 326.279029806032 + "x": 965.02791, + "y": 326.27903 }, { - "x": -0.03866988454212206, - "y": 0.06695799944776047 + "x": -0.03867, + "y": 0.06696 }, { - "x": 964.9995299738, - "y": 323.3819069621838 + "x": 964.99953, + "y": 323.38191 }, { "endCol": 20, @@ -18886,8 +18886,8 @@ "yScale": 1 }, { - "x": 0.028380947895883538, - "y": 2.897122843848181 + "x": 0.02838, + "y": 2.89712 }, [ { @@ -18913,50 +18913,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 985.3468847944226, - "y": 337.97331874377676 + "x": 985.34688, + "y": 337.97332 }, { "body": null, "index": 1, "isInternal": false, - "x": 965.0598964595343, - "y": 349.72300798648104 + "x": 965.0599, + "y": 349.72301 }, { "body": null, "index": 2, "isInternal": false, - "x": 944.7409225868081, - "y": 338.02871904873615 + "x": 944.74092, + "y": 338.02872 }, { "body": null, "index": 3, "isInternal": false, - "x": 944.7089370489692, - "y": 314.5847408682872 + "x": 944.70894, + "y": 314.58474 }, { "body": null, "index": 4, "isInternal": false, - "x": 964.9959253838575, - "y": 302.83505162558293 + "x": 964.99593, + "y": 302.83505 }, { "body": null, "index": 5, "isInternal": false, - "x": 985.314899256584, - "y": 314.5293405633278 + "x": 985.3149, + "y": 314.52934 }, { - "angle": -0.004017500700376403, - "anglePrev": -0.0034354936875933616, - "angularSpeed": 0.0005820070127830413, - "angularVelocity": -0.0005820070127830413, - "area": 1006.2524335919638, + "angle": -0.00402, + "anglePrev": -0.00344, + "angularSpeed": 0.00058, + "angularVelocity": -0.00058, + "area": 1006.25243, "axes": { "#": 2147 }, @@ -18977,13 +18977,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 697.1461738741186, - "inverseInertia": 0.0014344194051053728, - "inverseMass": 0.9937864164266964, + "inertia": 697.14617, + "inverseInertia": 0.00143, + "inverseMass": 0.99379, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0062524335919638, + "mass": 1.00625, "motion": 0, "parent": null, "position": { @@ -19005,7 +19005,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9158032276170203, + "speed": 2.9158, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19026,12 +19026,12 @@ } ], { - "x": 0.004017489893099413, - "y": 0.9999919298549159 + "x": 0.00402, + "y": 0.99999 }, { - "x": -0.9999919298549159, - "y": 0.004017489893099413 + "x": -0.99999, + "y": 0.00402 }, { "max": { @@ -19042,12 +19042,12 @@ } }, { - "x": 1025.0962349880556, - "y": 349.66018170044276 + "x": 1025.09623, + "y": 349.66018 }, { - "x": 988.9439763049202, - "y": 321.59547626608673 + "x": 988.94398, + "y": 321.59548 }, { "category": 1, @@ -19064,16 +19064,16 @@ "y": 0 }, { - "x": 1007.0201056464879, - "y": 335.62782898326475 + "x": 1007.02011, + "y": 335.62783 }, { "x": 0, "y": 0 }, { - "x": 1007.0237574172753, - "y": 332.71202804239925 + "x": 1007.02376, + "y": 332.71203 }, { "endCol": 21, @@ -19096,8 +19096,8 @@ "yScale": 1 }, { - "x": -0.0036517707874565986, - "y": 2.915800940865468 + "x": -0.00365, + "y": 2.9158 }, [ { @@ -19117,36 +19117,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 988.9439763049202, - "y": 321.74026813112545 + "x": 988.94398, + "y": 321.74027 }, { "body": null, "index": 1, "isInternal": false, - "x": 1024.9840661122557, - "y": 321.59547626608673 + "x": 1024.98407, + "y": 321.59548 }, { "body": null, "index": 2, "isInternal": false, - "x": 1025.0962349880556, - "y": 349.51538983540405 + "x": 1025.09623, + "y": 349.51539 }, { "body": null, "index": 3, "isInternal": false, - "x": 989.0561451807203, - "y": 349.66018170044276 + "x": 989.05615, + "y": 349.66018 }, { - "angle": -0.0001522813017363003, - "anglePrev": -0.00012755677299798395, - "angularSpeed": 0.000024724528738316353, - "angularVelocity": -0.000024724528738316353, - "area": 3210.130139, + "angle": -0.00015, + "anglePrev": -0.00013, + "angularSpeed": 0.00002, + "angularVelocity": -0.00002, + "area": 3210.13014, "axes": { "#": 2169 }, @@ -19167,13 +19167,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 6586.462154550281, - "inverseInertia": 0.00015182657647385802, - "inverseMass": 0.3115138504358312, + "inertia": 6586.46215, + "inverseInertia": 0.00015, + "inverseMass": 0.31151, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.210130139, + "mass": 3.21013, "motion": 0, "parent": null, "position": { @@ -19195,7 +19195,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.909684982447163, + "speed": 2.90968, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19231,32 +19231,32 @@ } ], { - "x": 0.6236111327093052, - "y": 0.7817347089396873 + "x": 0.62361, + "y": 0.78173 }, { - "x": -0.22237850726872135, - "y": 0.9749604091987202 + "x": -0.22238, + "y": 0.97496 }, { - "x": -0.9008975899568586, - "y": 0.4340317182072344 + "x": -0.9009, + "y": 0.43403 }, { - "x": -0.9010297380020019, - "y": -0.43375731836597736 + "x": -0.90103, + "y": -0.43376 }, { - "x": -0.22267543343090412, - "y": -0.9748926358047634 + "x": -0.22268, + "y": -0.97489 }, { - "x": 0.6233730166322278, - "y": -0.7819246013106612 + "x": 0.62337, + "y": -0.78192 }, { - "x": 0.9999999884052025, - "y": -0.00015228130114774334 + "x": 1, + "y": -0.00015 }, { "max": { @@ -19267,12 +19267,12 @@ } }, { - "x": 1085.7603986661113, - "y": 417.76145310049645 + "x": 1085.7604, + "y": 417.76145 }, { - "x": 1020.6463200195109, - "y": 348.0677694593175 + "x": 1020.64632, + "y": 348.06777 }, { "category": 1, @@ -19289,16 +19289,16 @@ "y": 0 }, { - "x": 1054.8974508118006, - "y": 381.46092974024367 + "x": 1054.89745, + "y": 381.46093 }, { - "x": 0.10115007733757755, - "y": 0.9520401247486323 + "x": 0.10115, + "y": 0.95204 }, { - "x": 1054.89563446268, - "y": 378.55124532471774 + "x": 1054.89563, + "y": 378.55125 }, { "endCol": 22, @@ -19321,8 +19321,8 @@ "yScale": 1 }, { - "x": 0.0018163491206451, - "y": 2.909684415525921 + "x": 0.00182, + "y": 2.90968 }, [ { @@ -19351,57 +19351,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 1085.7585823169907, - "y": 396.31723033923896 + "x": 1085.75858, + "y": 396.31723 }, { "body": null, "index": 1, "isInternal": false, - "x": 1062.5244045112104, - "y": 414.8517686849705 + "x": 1062.5244, + "y": 414.85177 }, { "body": null, "index": 2, "isInternal": false, - "x": 1033.5463976586673, - "y": 408.2421814169219 + "x": 1033.5464, + "y": 408.24218 }, { "body": null, "index": 3, "isInternal": false, - "x": 1020.6463200195109, - "y": 381.46614554706696 + "x": 1020.64632, + "y": 381.46615 }, { "body": null, "index": 4, "isInternal": false, - "x": 1033.5382420813028, - "y": 354.6861820378928 + "x": 1033.53824, + "y": 354.68618 }, { "body": null, "index": 5, "isInternal": false, - "x": 1062.5142345567942, - "y": 348.0677694593175 + "x": 1062.51423, + "y": 348.06777 }, { "body": null, "index": 6, "isInternal": false, - "x": 1085.7540562121578, - "y": 366.5952306838596 + "x": 1085.75406, + "y": 366.59523 }, { - "angle": -0.0002213799412269478, - "anglePrev": -0.00018477928181162705, - "angularSpeed": 0.000036600659415320737, - "angularVelocity": -0.000036600659415320737, - "area": 1352.927270280826, + "angle": -0.00022, + "anglePrev": -0.00018, + "angularSpeed": 0.00004, + "angularVelocity": -0.00004, + "area": 1352.92727, "axes": { "#": 2199 }, @@ -19422,13 +19422,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 1256.990937022409, - "inverseInertia": 0.0007955506842148158, - "inverseMass": 0.7391380320040639, + "inertia": 1256.99094, + "inverseInertia": 0.0008, + "inverseMass": 0.73914, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.352927270280826, + "mass": 1.35293, "motion": 0, "parent": null, "position": { @@ -19450,7 +19450,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9081671950870174, + "speed": 2.90817, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19471,12 +19471,12 @@ } ], { - "x": 0.00022137993941867662, - "y": 0.9999999754954606 + "x": 0.00022, + "y": 1 }, { - "x": -0.9999999754954606, - "y": 0.00022137993941867662 + "x": -1, + "y": 0.00022 }, { "max": { @@ -19487,12 +19487,12 @@ } }, { - "x": 1127.2741524775493, - "y": 359.90409746249986 + "x": 1127.27415, + "y": 359.9041 }, { - "x": 1085.6965457883018, - "y": 324.44043235908504 + "x": 1085.69655, + "y": 324.44043 }, { "category": 1, @@ -19509,16 +19509,16 @@ "y": 0 }, { - "x": 1106.4848057493455, - "y": 340.71818141477877 + "x": 1106.48481, + "y": 340.71818 }, { - "x": 0.10100369146032095, - "y": -0.000003474018239499806 + "x": 0.101, + "y": 0 }, { - "x": 1106.4837189821853, - "y": 337.8100144227514 + "x": 1106.48372, + "y": 337.81001 }, { "endCol": 23, @@ -19541,8 +19541,8 @@ "yScale": 1 }, { - "x": 0.0010867671600522043, - "y": 2.9081669920273545 + "x": 0.00109, + "y": 2.90817 }, [ { @@ -19562,36 +19562,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1085.6965457883018, - "y": 324.4496349717082 + "x": 1085.69655, + "y": 324.44963 }, { "body": null, "index": 1, "isInternal": false, - "x": 1127.2658606132866, - "y": 324.44043235908504 + "x": 1127.26586, + "y": 324.44043 }, { "body": null, "index": 2, "isInternal": false, - "x": 1127.2730657103891, - "y": 356.98672785784936 + "x": 1127.27307, + "y": 356.98673 }, { "body": null, "index": 3, "isInternal": false, - "x": 1085.7037508854044, - "y": 356.9959304704725 + "x": 1085.70375, + "y": 356.99593 }, { - "angle": 0.055627369372266554, - "anglePrev": 0.04827034705145438, - "angularSpeed": 0.006440819777583003, - "angularVelocity": 0.0072516810281842495, - "area": 1720.1260092915415, + "angle": 0.05563, + "anglePrev": 0.04827, + "angularSpeed": 0.00644, + "angularVelocity": 0.00725, + "area": 1720.12601, "axes": { "#": 2221 }, @@ -19612,13 +19612,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 2025.862459801684, - "inverseInertia": 0.0004936169260463478, - "inverseMass": 0.5813527582272093, + "inertia": 2025.86246, + "inverseInertia": 0.00049, + "inverseMass": 0.58135, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7201260092915416, + "mass": 1.72013, "motion": 0, "parent": null, "position": { @@ -19640,7 +19640,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3631059754813797, + "speed": 2.36311, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19661,12 +19661,12 @@ } ], { - "x": -0.0555986848829106, - "y": 0.9984531968196061 + "x": -0.0556, + "y": 0.99845 }, { - "x": -0.9984531968196061, - "y": -0.0555986848829106 + "x": -0.99845, + "y": -0.0556 }, { "max": { @@ -19677,12 +19677,12 @@ } }, { - "x": 58.434284525321026, - "y": 465.58062231503925 + "x": 58.43428, + "y": 465.58062 }, { - "x": 18.81862194346576, - "y": 414.6662455461379 + "x": 18.81862, + "y": 414.66625 }, { "category": 1, @@ -19699,16 +19699,16 @@ "y": 0 }, { - "x": 38.551111295243544, - "y": 438.94428548571653 + "x": 38.55111, + "y": 438.94429 }, { "x": 0, "y": 0 }, { - "x": 38.46047633031717, - "y": 436.5199653200906 + "x": 38.46048, + "y": 436.51997 }, { "endCol": 1, @@ -19731,8 +19731,8 @@ "yScale": 1 }, { - "x": 0.09234680802202178, - "y": 2.4232165636869354 + "x": 0.09235, + "y": 2.42322 }, [ { @@ -19752,36 +19752,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 21.408114961806724, - "y": 414.6662455461379 + "x": 21.40811, + "y": 414.66625 }, { "body": null, "index": 1, "isInternal": false, - "x": 58.28360064702132, - "y": 416.7196502676083 + "x": 58.2836, + "y": 416.71965 }, { "body": null, "index": 2, "isInternal": false, - "x": 55.694107628680364, - "y": 463.2223254252952 + "x": 55.69411, + "y": 463.22233 }, { "body": null, "index": 3, "isInternal": false, - "x": 18.81862194346576, - "y": 461.16892070382477 + "x": 18.81862, + "y": 461.16892 }, { - "angle": 0.04383274717020439, - "anglePrev": 0.03525884505317623, - "angularSpeed": 0.00594038992089251, - "angularVelocity": 0.008733530889234002, - "area": 1250.161678324093, + "angle": 0.04383, + "anglePrev": 0.03526, + "angularSpeed": 0.00594, + "angularVelocity": 0.00873, + "area": 1250.16168, "axes": { "#": 2243 }, @@ -19802,13 +19802,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 1044.2197391722605, - "inverseInertia": 0.0009576528411469095, - "inverseMass": 0.7998965392544685, + "inertia": 1044.21974, + "inverseInertia": 0.00096, + "inverseMass": 0.7999, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.250161678324093, + "mass": 1.25016, "motion": 0, "parent": null, "position": { @@ -19830,7 +19830,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7883754453520253, + "speed": 2.78838, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19851,12 +19851,12 @@ } ], { - "x": -0.04381871247129089, - "y": 0.9990394989375337 + "x": -0.04382, + "y": 0.99904 }, { - "x": -0.9990394989375337, - "y": -0.04381871247129089 + "x": -0.99904, + "y": -0.04382 }, { "max": { @@ -19867,12 +19867,12 @@ } }, { - "x": 94.77566461233106, - "y": 451.55193376737043 + "x": 94.77566, + "y": 451.55193 }, { - "x": 56.668782465445716, - "y": 412.9900593414899 + "x": 56.66878, + "y": 412.99006 }, { "category": 1, @@ -19889,16 +19889,16 @@ "y": 0 }, { - "x": 75.67440049861143, - "y": 430.8776292794882 + "x": 75.6744, + "y": 430.87763 }, { "x": 0, "y": 0 }, { - "x": 75.52404875922224, - "y": 428.15437054818943 + "x": 75.52405, + "y": 428.15437 }, { "endCol": 1, @@ -19921,8 +19921,8 @@ "yScale": 1 }, { - "x": 0.14799637537213073, - "y": 2.724777202415055 + "x": 0.148, + "y": 2.72478 }, [ { @@ -19942,36 +19942,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 58.1676686961863, - "y": 412.9900593414899 + "x": 58.16767, + "y": 412.99006 }, { "body": null, "index": 1, "isInternal": false, - "x": 94.68001853177715, - "y": 414.5915217068904 + "x": 94.68002, + "y": 414.59152 }, { "body": null, "index": 2, "isInternal": false, - "x": 93.18113230103658, - "y": 448.7651992174865 + "x": 93.18113, + "y": 448.7652 }, { "body": null, "index": 3, "isInternal": false, - "x": 56.668782465445716, - "y": 447.163736852086 + "x": 56.66878, + "y": 447.16374 }, { - "angle": 0.0004538633144959525, - "anglePrev": 0.000166832322654658, - "angularSpeed": 0.00014429141116272396, - "angularVelocity": 0.00029171457022876687, - "area": 3092.075232, + "angle": 0.00045, + "anglePrev": 0.00017, + "angularSpeed": 0.00014, + "angularVelocity": 0.00029, + "area": 3092.07523, "axes": { "#": 2265 }, @@ -19992,13 +19992,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 6189.985619847792, - "inverseInertia": 0.00016155126383388745, - "inverseMass": 0.32340739631783966, + "inertia": 6189.98562, + "inverseInertia": 0.00016, + "inverseMass": 0.32341, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.092075232, + "mass": 3.09208, "motion": 0, "parent": null, "position": { @@ -20020,7 +20020,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8951347728722867, + "speed": 2.89513, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20050,24 +20050,24 @@ } ], { - "x": 0.30857598277055137, - "y": 0.9511996966237892 + "x": 0.30858, + "y": 0.9512 }, { - "x": -0.8092862532287112, - "y": 0.58741447065512 + "x": -0.80929, + "y": 0.58741 }, { - "x": -0.8087527081318506, - "y": -0.5881488392315315 + "x": -0.80875, + "y": -0.58815 }, { - "x": 0.3094392848177905, - "y": -0.9509192021467725 + "x": 0.30944, + "y": -0.95092 }, { - "x": 0.9999998970040476, - "y": 0.00045386329891392436 + "x": 1, + "y": 0.00045 }, { "max": { @@ -20078,12 +20078,12 @@ } }, { - "x": 146.14787198565196, - "y": 501.78498008009353 + "x": 146.14787, + "y": 501.78498 }, { - "x": 80.88948136348804, - "y": 430.2958763250026 + "x": 80.88948, + "y": 430.29588 }, { "category": 1, @@ -20100,16 +20100,16 @@ "y": 0 }, { - "x": 116.96336887212478, - "y": 464.5979306970855 + "x": 116.96337, + "y": 464.59793 }, { - "x": -2.4554339528231885, - "y": 1.5420687550214922 + "x": -2.45543, + "y": 1.54207 }, { - "x": 116.97779625925844, - "y": 461.71162594913494 + "x": 116.9778, + "y": 461.71163 }, { "endCol": 3, @@ -20132,8 +20132,8 @@ "yScale": 1 }, { - "x": -0.013276836711170859, - "y": 2.885983610996277 + "x": -0.01328, + "y": 2.88598 }, [ { @@ -20156,43 +20156,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 146.12863090495776, - "y": 485.8081699236942 + "x": 146.12863, + "y": 485.80817 }, { "body": null, "index": 1, "isInternal": false, - "x": 105.80368944843582, - "y": 498.88986926009835 + "x": 105.80369, + "y": 498.88987 }, { "body": null, "index": 2, "isInternal": false, - "x": 80.90125816445179, - "y": 464.5815634268682 + "x": 80.90126, + "y": 464.58156 }, { "body": null, "index": 3, "isInternal": false, - "x": 105.83482174756152, - "y": 430.2958763250026 + "x": 105.83482, + "y": 430.29588 }, { "body": null, "index": 4, "isInternal": false, - "x": 146.14787198565196, - "y": 443.4141742901046 + "x": 146.14787, + "y": 443.41417 }, { - "angle": 0.000550758019120618, - "anglePrev": 0.00024541043305903134, - "angularSpeed": 0.00023745033451797788, - "angularVelocity": 0.0002905703391374073, - "area": 1581.4152047253658, + "angle": 0.00055, + "anglePrev": 0.00025, + "angularSpeed": 0.00024, + "angularVelocity": 0.00029, + "area": 1581.4152, "axes": { "#": 2291 }, @@ -20213,13 +20213,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 1771.7086023235004, - "inverseInertia": 0.0005644269033229019, - "inverseMass": 0.6323450014973541, + "inertia": 1771.7086, + "inverseInertia": 0.00056, + "inverseMass": 0.63235, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5814152047253658, + "mass": 1.58142, "motion": 0, "parent": null, "position": { @@ -20241,7 +20241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.904756905463633, + "speed": 2.90476, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20262,12 +20262,12 @@ } ], { - "x": -0.0005507579912766433, - "y": 0.9999998483328059 + "x": -0.00055, + "y": 1 }, { - "x": -0.9999998483328059, - "y": -0.0005507579912766433 + "x": -1, + "y": -0.00055 }, { "max": { @@ -20278,12 +20278,12 @@ } }, { - "x": 192.55997240669006, - "y": 456.66595213282505 + "x": 192.55997, + "y": 456.66595 }, { - "x": 145.1106930997532, - "y": 420.38851133081477 + "x": 145.11069, + "y": 420.38851 }, { "category": 1, @@ -20300,16 +20300,16 @@ "y": 0 }, { - "x": 168.83898749994447, - "y": 437.0748578774745 + "x": 168.83899, + "y": 437.07486 }, { - "x": -2.4855256219393986, - "y": -0.0007449923089677892 + "x": -2.48553, + "y": -0.00074 }, { - "x": 168.84740999306825, - "y": 434.17182889038145 + "x": 168.84741, + "y": 434.17183 }, { "endCol": 4, @@ -20332,8 +20332,8 @@ "yScale": 1 }, { - "x": -0.006778068204965848, - "y": 2.9027675905546175 + "x": -0.00678, + "y": 2.90277 }, [ { @@ -20353,36 +20353,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 145.136368488185, - "y": 420.38851133081477 + "x": 145.13637, + "y": 420.38851 }, { "body": null, "index": 1, "isInternal": false, - "x": 192.55997240669006, - "y": 420.4146302636094 + "x": 192.55997, + "y": 420.41463 }, { "body": null, "index": 2, "isInternal": false, - "x": 192.54160651170392, - "y": 453.7612044241343 + "x": 192.54161, + "y": 453.7612 }, { "body": null, "index": 3, "isInternal": false, - "x": 145.11800259319887, - "y": 453.73508549133965 + "x": 145.118, + "y": 453.73509 }, { - "angle": -0.000008694550346318992, - "anglePrev": -0.000016813462651284382, - "angularSpeed": 9.64911218510784e-7, - "angularVelocity": 0.000004193826123745044, - "area": 4508.288001999999, + "angle": -0.00001, + "anglePrev": -0.00002, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4508.288, "axes": { "#": 2313 }, @@ -20403,13 +20403,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 12968.580393466536, - "inverseInertia": 0.00007710944217948417, - "inverseMass": 0.22181369059748904, + "inertia": 12968.58039, + "inverseInertia": 0.00008, + "inverseMass": 0.22181, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.508288002, + "mass": 4.50829, "motion": 0, "parent": null, "position": { @@ -20431,7 +20431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9102072763507203, + "speed": 2.91021, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20458,20 +20458,20 @@ } ], { - "x": -0.7071129291353297, - "y": -0.7071006331843115 + "x": -0.70711, + "y": -0.7071 }, { - "x": -0.00000869455034620945, - "y": -0.9999999999622025 + "x": -0.00001, + "y": -1 }, { - "x": 0.7071006331843115, - "y": -0.7071129291353297 + "x": 0.7071, + "y": -0.70711 }, { - "x": 0.9999999999622025, - "y": -0.00000869455034620945 + "x": 1, + "y": -0.00001 }, { "max": { @@ -20482,12 +20482,12 @@ } }, { - "x": 264.86949139611824, - "y": 497.1101703477252 + "x": 264.86949, + "y": 497.11017 }, { - "x": 191.08940634403763, - "y": 420.4297139694123 + "x": 191.08941, + "y": 420.42971 }, { "category": 1, @@ -20504,16 +20504,16 @@ "y": 0 }, { - "x": 227.98435856217213, - "y": 457.3148468033584 + "x": 227.98436, + "y": 457.31485 }, { - "x": -2.19396570845877, - "y": 0.004853547277116422 + "x": -2.19397, + "y": 0.00485 }, { - "x": 227.99609018214494, - "y": 454.40454191122046 + "x": 227.99609, + "y": 454.40454 }, { "endCol": 5, @@ -20536,8 +20536,8 @@ "yScale": 1 }, { - "x": -0.012308450594218812, - "y": 2.9103965846962296 + "x": -0.01231, + "y": 2.9104 }, [ { @@ -20569,64 +20569,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 264.86949139611824, - "y": 472.59252610429144 + "x": 264.86949, + "y": 472.59253 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.26267926008416, - "y": 494.19971396662413 + "x": 243.26268, + "y": 494.19971 }, { "body": null, "index": 2, "isInternal": false, - "x": 212.70667926123915, - "y": 494.1999796373045 + "x": 212.70668, + "y": 494.19998 }, { "body": null, "index": 3, "isInternal": false, - "x": 191.0994913989065, - "y": 472.5931675012705 + "x": 191.09949, + "y": 472.59317 }, { "body": null, "index": 4, "isInternal": false, - "x": 191.09922572822612, - "y": 442.0371675024254 + "x": 191.09923, + "y": 442.03717 }, { "body": null, "index": 5, "isInternal": false, - "x": 212.7060378642601, - "y": 420.4299796400927 + "x": 212.70604, + "y": 420.42998 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.26203786310512, - "y": 420.4297139694123 + "x": 243.26204, + "y": 420.42971 }, { "body": null, "index": 7, "isInternal": false, - "x": 264.86922572543784, - "y": 442.03652610544634 + "x": 264.86923, + "y": 442.03653 }, { - "angle": -0.0007855291278109152, - "anglePrev": -0.0004526616120071025, - "angularSpeed": 0.00031685384343435504, - "angularVelocity": -0.00035554313718607543, - "area": 1039.6267295619953, + "angle": -0.00079, + "anglePrev": -0.00045, + "angularSpeed": 0.00032, + "angularVelocity": -0.00036, + "area": 1039.62673, "axes": { "#": 2341 }, @@ -20647,13 +20647,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 836.7694481463552, - "inverseInertia": 0.0011950723131864333, - "inverseMass": 0.9618836949501189, + "inertia": 836.76945, + "inverseInertia": 0.0012, + "inverseMass": 0.96188, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0396267295619952, + "mass": 1.03963, "motion": 0, "parent": null, "position": { @@ -20675,7 +20675,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9035683278289968, + "speed": 2.90357, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20696,12 +20696,12 @@ } ], { - "x": 0.000785529047025006, - "y": 0.9999996914720107 + "x": 0.00079, + "y": 1 }, { - "x": -0.9999996914720107, - "y": 0.000785529047025006 + "x": -1, + "y": 0.00079 }, { "max": { @@ -20712,12 +20712,12 @@ } }, { - "x": 305.862990972772, - "y": 447.68384504733 + "x": 305.86299, + "y": 447.68385 }, { - "x": 263.15396840657564, - "y": 420.38517587363157 + "x": 263.15397, + "y": 420.38518 }, { "category": 1, @@ -20734,16 +20734,16 @@ "y": 0 }, { - "x": 284.51604491445585, - "y": 432.58274600783466 + "x": 284.51604, + "y": 432.58275 }, { - "x": -1.6963010900380544, - "y": -0.0018978635231489559 + "x": -1.6963, + "y": -0.0019 }, { - "x": 284.53181530426707, - "y": 429.6799847679214 + "x": 284.53182, + "y": 429.67998 }, { "endCol": 6, @@ -20766,8 +20766,8 @@ "yScale": 1 }, { - "x": -0.015941976845795125, - "y": 2.903048976452169 + "x": -0.01594, + "y": 2.90305 }, [ { @@ -20787,36 +20787,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 263.1690988561396, - "y": 420.41869814387786 + "x": 263.1691, + "y": 420.4187 }, { "body": null, "index": 1, "isInternal": false, - "x": 305.8438542082976, - "y": 420.38517587363157 + "x": 305.84385, + "y": 420.38518 }, { "body": null, "index": 2, "isInternal": false, - "x": 305.862990972772, - "y": 444.74679387179145 + "x": 305.86299, + "y": 444.74679 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.18823562061397, - "y": 444.78031614203775 + "x": 263.18824, + "y": 444.78032 }, { - "angle": -0.00018309696502356233, - "anglePrev": -0.00014840004849552013, - "angularSpeed": 0.000014554984495102604, - "angularVelocity": -0.00004850869702592247, - "area": 1574.8717250450893, + "angle": -0.00018, + "anglePrev": -0.00015, + "angularSpeed": 0.00001, + "angularVelocity": -0.00005, + "area": 1574.87173, "axes": { "#": 2363 }, @@ -20837,13 +20837,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 1691.4099419533813, - "inverseInertia": 0.0005912227279716214, - "inverseMass": 0.6349723498727298, + "inertia": 1691.40994, + "inverseInertia": 0.00059, + "inverseMass": 0.63497, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5748717250450894, + "mass": 1.57487, "motion": 0, "parent": null, "position": { @@ -20865,7 +20865,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.896442224125834, + "speed": 2.89644, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20886,12 +20886,12 @@ } ], { - "x": 0.00018309696400052334, - "y": 0.9999999832377506 + "x": 0.00018, + "y": 1 }, { - "x": -0.9999999832377506, - "y": 0.00018309696400052334 + "x": -1, + "y": 0.00018 }, { "max": { @@ -20902,12 +20902,12 @@ } }, { - "x": 339.7485457627878, - "y": 467.4491413502872 + "x": 339.74855, + "y": 467.44914 }, { - "x": 304.06326858267636, - "y": 420.38456149975025 + "x": 304.06327, + "y": 420.38456 }, { "category": 1, @@ -20924,16 +20924,16 @@ "y": 0 }, { - "x": 321.9137418126659, - "y": 442.4686515051728 + "x": 321.91374, + "y": 442.46865 }, { - "x": -1.1495591881386271, - "y": 0.000026218336863658426 + "x": -1.14956, + "y": 0.00003 }, { - "x": 321.9284674682542, - "y": 439.5739406484086 + "x": 321.92847, + "y": 439.57394 }, { "endCol": 7, @@ -20956,8 +20956,8 @@ "yScale": 1 }, { - "x": -0.015130867867526376, - "y": 2.8945787015481415 + "x": -0.01513, + "y": 2.89458 }, [ { @@ -20977,36 +20977,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 304.07893786254397, - "y": 420.391091016276 + "x": 304.07894, + "y": 420.39109 }, { "body": null, "index": 1, "isInternal": false, - "x": 339.7404598985215, - "y": 420.38456149975025 + "x": 339.74046, + "y": 420.38456 }, { "body": null, "index": 2, "isInternal": false, - "x": 339.7485457627878, - "y": 464.54621199406955 + "x": 339.74855, + "y": 464.54621 }, { "body": null, "index": 3, "isInternal": false, - "x": 304.08702372681023, - "y": 464.5527415105953 + "x": 304.08702, + "y": 464.55274 }, { - "angle": 0.00030402447153076394, - "anglePrev": 0.00013736685493741138, - "angularSpeed": 0.00014427396268461252, - "angularVelocity": 0.00016083626295362852, - "area": 968.3879641074045, + "angle": 0.0003, + "anglePrev": 0.00014, + "angularSpeed": 0.00014, + "angularVelocity": 0.00016, + "area": 968.38796, "axes": { "#": 2385 }, @@ -21027,13 +21027,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 797.6175154248832, - "inverseInertia": 0.001253733751655779, - "inverseMass": 1.0326439785130264, + "inertia": 797.61752, + "inverseInertia": 0.00125, + "inverseMass": 1.03264, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9683879641074046, + "mass": 0.96839, "motion": 0, "parent": null, "position": { @@ -21055,7 +21055,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.899680019999663, + "speed": 2.89968, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21076,12 +21076,12 @@ } ], { - "x": -0.0003040244668472224, - "y": 0.9999999537845606 + "x": -0.0003, + "y": 1 }, { - "x": -0.9999999537845606, - "y": -0.0003040244668472224 + "x": -1, + "y": -0.0003 }, { "max": { @@ -21092,12 +21092,12 @@ } }, { - "x": 382.75387406440865, - "y": 444.91226128749884 + "x": 382.75387, + "y": 444.91226 }, { - "x": 337.97930909769775, - "y": 420.35987648010746 + "x": 337.97931, + "y": 420.35988 }, { "category": 1, @@ -21114,16 +21114,16 @@ "y": 0 }, { - "x": 360.3747497782413, - "y": 431.18625182692494 + "x": 360.37475, + "y": 431.18625 }, { "x": 0, "y": 0 }, { - "x": 360.38890939954973, - "y": 428.2880250127594 + "x": 360.38891, + "y": 428.28803 }, { "endCol": 7, @@ -21146,8 +21146,8 @@ "yScale": 1 }, { - "x": -0.014918471742362271, - "y": 2.8978440039882116 + "x": -0.01492, + "y": 2.89784 }, [ { @@ -21167,36 +21167,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.0022043219272, - "y": 420.35987648010746 + "x": 338.0022, + "y": 420.35988 }, { "body": null, "index": 1, "isInternal": false, - "x": 382.75387406440865, - "y": 420.3734820832702 + "x": 382.75387, + "y": 420.37348 }, { "body": null, "index": 2, "isInternal": false, - "x": 382.74729523455545, - "y": 442.01262717374243 + "x": 382.7473, + "y": 442.01263 }, { "body": null, "index": 3, "isInternal": false, - "x": 337.995625492074, - "y": 441.9990215705797 + "x": 337.99563, + "y": 441.99902 }, { - "angle": 0.00081966980345451, - "anglePrev": 0.0007130242760655022, - "angularSpeed": 0.00015704382089328506, - "angularVelocity": 0.00011420095915530765, - "area": 1379.2675785219164, + "angle": 0.00082, + "anglePrev": 0.00071, + "angularSpeed": 0.00016, + "angularVelocity": 0.00011, + "area": 1379.26758, "axes": { "#": 2407 }, @@ -21217,13 +21217,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 1297.383606626366, - "inverseInertia": 0.0007707820531202307, - "inverseMass": 0.7250224797364148, + "inertia": 1297.38361, + "inverseInertia": 0.00077, + "inverseMass": 0.72502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3792675785219164, + "mass": 1.37927, "motion": 0, "parent": null, "position": { @@ -21245,7 +21245,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905550157533798, + "speed": 2.90555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21266,12 +21266,12 @@ } ], { - "x": -0.0008196697116708139, - "y": 0.9999996640707256 + "x": -0.00082, + "y": 1 }, { - "x": -0.9999996640707256, - "y": -0.0008196697116708139 + "x": -1, + "y": -0.00082 }, { "max": { @@ -21282,12 +21282,12 @@ } }, { - "x": 414.53498885626266, - "y": 464.6646343008162 + "x": 414.53499, + "y": 464.66463 }, { - "x": 381.11198342519094, - "y": 420.40065332989144 + "x": 381.11198, + "y": 420.40065 }, { "category": 1, @@ -21304,16 +21304,16 @@ "y": 0 }, { - "x": 397.83248452905895, - "y": 441.0798966045516 + "x": 397.83248, + "y": 441.0799 }, { - "x": -0.23209636282389498, - "y": 0.0008615079208294786 + "x": -0.2321, + "y": 0.00086 }, { - "x": 397.84696921435176, - "y": 438.1757081242824 + "x": 397.84697, + "y": 438.17571 }, { "endCol": 8, @@ -21336,8 +21336,8 @@ "yScale": 1 }, { - "x": -0.015097822805614669, - "y": 2.903971098734985 + "x": -0.0151, + "y": 2.90397 }, [ { @@ -21357,36 +21357,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 381.16385809129747, - "y": 420.40065332989144 + "x": 381.16386, + "y": 420.40065 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.53498885626266, - "y": 420.42800664421253 + "x": 414.53499, + "y": 420.42801 }, { "body": null, "index": 2, "isInternal": false, - "x": 414.5011109668203, - "y": 461.7591398792118 + "x": 414.50111, + "y": 461.75914 }, { "body": null, "index": 3, "isInternal": false, - "x": 381.12998020185523, - "y": 461.7317865648907 + "x": 381.12998, + "y": 461.73179 }, { - "angle": 0.0000014264160307194278, - "anglePrev": 0.000012144137887173956, - "angularSpeed": 0.000008029207599140443, - "angularVelocity": -0.00002351670244022725, - "area": 1475.914064, + "angle": 0, + "anglePrev": 0.00001, + "angularSpeed": 0.00001, + "angularVelocity": -0.00002, + "area": 1475.91406, "axes": { "#": 2429 }, @@ -21407,13 +21407,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 1397.3944234227881, - "inverseInertia": 0.0007156175688397215, - "inverseMass": 0.6775462233145303, + "inertia": 1397.39442, + "inverseInertia": 0.00072, + "inverseMass": 0.67755, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4759140640000001, + "mass": 1.47591, "motion": 0, "parent": null, "position": { @@ -21435,7 +21435,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9077703692368786, + "speed": 2.90777, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21459,16 +21459,16 @@ } ], { - "x": -0.5000274965882943, - "y": -0.8660095280397574 + "x": -0.50003, + "y": -0.86601 }, { - "x": 0.5000299671660067, - "y": -0.8660081015417593 + "x": 0.50003, + "y": -0.86601 }, { - "x": 0.9999999999989826, - "y": 0.0000014264160307189433 + "x": 1, + "y": 0 }, { "max": { @@ -21479,12 +21479,12 @@ } }, { - "x": 454.44724083072134, - "y": 471.0188247984379 + "x": 454.44724, + "y": 471.01882 }, { - "x": 413.1467629095659, - "y": 420.4411129245416 + "x": 413.14676, + "y": 420.44111 }, { "category": 1, @@ -21501,16 +21501,16 @@ "y": 0 }, { - "x": 433.80622383214256, - "y": 444.27611292451735 + "x": 433.80622, + "y": 444.27611 }, { - "x": 0.1594639017450862, - "y": 0.005316844063757747 + "x": 0.15946, + "y": 0.00532 }, { - "x": 433.8208309610832, - "y": 441.3702944489044 + "x": 433.82083, + "y": 441.37029 }, { "endCol": 9, @@ -21533,8 +21533,8 @@ "yScale": 1 }, { - "x": -0.014034141181241466, - "y": 2.906021622469268 + "x": -0.01403, + "y": 2.90602 }, [ { @@ -21560,50 +21560,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 454.44720683352165, - "y": 456.19314236715843 + "x": 454.44721, + "y": 456.19314 }, { "body": null, "index": 1, "isInternal": false, - "x": 433.8061898335164, - "y": 468.1111129244931 + "x": 433.80619, + "y": 468.11111 }, { "body": null, "index": 2, "isInternal": false, - "x": 413.1652068335637, - "y": 456.1930834818519 + "x": 413.16521, + "y": 456.19308 }, { "body": null, "index": 3, "isInternal": false, - "x": 413.16524083076337, - "y": 432.35908348187627 + "x": 413.16524, + "y": 432.35908 }, { "body": null, "index": 4, "isInternal": false, - "x": 433.80625783076874, - "y": 420.4411129245416 + "x": 433.80626, + "y": 420.44111 }, { "body": null, "index": 5, "isInternal": false, - "x": 454.44724083072134, - "y": 432.3591423671828 + "x": 454.44724, + "y": 432.35914 }, { - "angle": -0.0004126459271719792, - "anglePrev": -0.00024910234834549504, - "angularSpeed": 0.00014292454053467898, - "angularVelocity": -0.00016741221461418415, - "area": 2731.525696, + "angle": -0.00041, + "anglePrev": -0.00025, + "angularSpeed": 0.00014, + "angularVelocity": -0.00017, + "area": 2731.5257, "axes": { "#": 2454 }, @@ -21624,13 +21624,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 4974.15508527219, - "inverseInertia": 0.00020103916803094191, - "inverseMass": 0.3660957689193197, + "inertia": 4974.15509, + "inverseInertia": 0.0002, + "inverseMass": 0.3661, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.7315256960000003, + "mass": 2.73153, "motion": 0, "parent": null, "position": { @@ -21652,7 +21652,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9039967185821576, + "speed": 2.904, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21673,12 +21673,12 @@ } ], { - "x": -0.00041264591546131754, - "y": -0.9999999148616707 + "x": -0.00041, + "y": -1 }, { - "x": 0.9999999148616707, - "y": -0.00041264591546131754 + "x": 1, + "y": -0.00041 }, { "max": { @@ -21689,12 +21689,12 @@ } }, { - "x": 505.669204832262, - "y": 475.5868764135169 + "x": 505.6692, + "y": 475.58688 }, { - "x": 453.3655926054363, - "y": 420.3973737154901 + "x": 453.36559, + "y": 420.39737 }, { "category": 1, @@ -21711,16 +21711,16 @@ "y": 0 }, { - "x": 479.526423794034, - "y": 446.54015475371824 + "x": 479.52642, + "y": 446.54015 }, { "x": 0, "y": 0 }, { - "x": 479.53996951277827, - "y": 443.63845549713307 + "x": 479.53997, + "y": 443.63846 }, { "endCol": 10, @@ -21743,8 +21743,8 @@ "yScale": 1 }, { - "x": -0.013192876831567446, - "y": 2.9017351825855826 + "x": -0.01319, + "y": 2.90174 }, [ { @@ -21764,35 +21764,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.669204832262, - "y": 472.6613692658206 + "x": 505.6692, + "y": 472.66137 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.4052092819316, - "y": 472.68293579194636 + "x": 453.40521, + "y": 472.68294 }, { "body": null, "index": 2, "isInternal": false, - "x": 453.38364275580585, - "y": 420.41894024161587 + "x": 453.38364, + "y": 420.41894 }, { "body": null, "index": 3, "isInternal": false, - "x": 505.6476383061363, - "y": 420.3973737154901 + "x": 505.64764, + "y": 420.39737 }, { - "angle": -0.0017324349389808977, - "anglePrev": -0.0015836706027469827, - "angularSpeed": 0.00022889733600446916, - "angularVelocity": -0.00014273316953190276, + "angle": -0.00173, + "anglePrev": -0.00158, + "angularSpeed": 0.00023, + "angularVelocity": -0.00014, "area": 1453.96239, "axes": { "#": 2476 @@ -21814,13 +21814,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 1356.1358869695257, - "inverseInertia": 0.0007373892318671982, - "inverseMass": 0.6877756996176496, + "inertia": 1356.13589, + "inverseInertia": 0.00074, + "inverseMass": 0.68778, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.45396239, + "mass": 1.45396, "motion": 0, "parent": null, "position": { @@ -21842,7 +21842,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8955445182564827, + "speed": 2.89554, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21866,16 +21866,16 @@ } ], { - "x": -0.5015257115793911, - "y": -0.8651427400289415 + "x": -0.50153, + "y": -0.86514 }, { - "x": 0.4985251000710611, - "y": -0.8668752647290948 + "x": 0.49853, + "y": -0.86688 }, { - "x": 0.9999984993349662, - "y": -0.001732434072379299 + "x": 1, + "y": -0.00173 }, { "max": { @@ -21886,12 +21886,12 @@ } }, { - "x": 545.9314600393807, - "y": 482.8985053948337 + "x": 545.93146, + "y": 482.89851 }, { - "x": 504.9013459488736, - "y": 432.68907173897816 + "x": 504.90135, + "y": 432.68907 }, { "category": 1, @@ -21908,16 +21908,16 @@ "y": 0 }, { - "x": 525.4239995532971, - "y": 456.3460362377453 + "x": 525.424, + "y": 456.34604 }, { - "x": 0.9181427724853347, - "y": 1.2322717159079655 + "x": 0.91814, + "y": 1.23227 }, { - "x": 525.4346264263784, - "y": 453.4513291674181 + "x": 525.43463, + "y": 453.45133 }, { "endCol": 11, @@ -21940,8 +21940,8 @@ "yScale": 1 }, { - "x": -0.009962582469370318, - "y": 2.8948148320363885 + "x": -0.00996, + "y": 2.89481 }, [ { @@ -21967,49 +21967,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 545.9314600393807, - "y": 468.13852611103835 + "x": 545.93146, + "y": 468.13853 }, { "body": null, "index": 1, "isInternal": false, - "x": 525.4649837461473, - "y": 480.00300073651243 + "x": 525.46498, + "y": 480.003 }, { "body": null, "index": 2, "isInternal": false, - "x": 504.95752152762986, - "y": 468.2095108647201 + "x": 504.95752, + "y": 468.20951 }, { "body": null, "index": 3, "isInternal": false, - "x": 504.91653906721365, - "y": 444.55354636445225 + "x": 504.91654, + "y": 444.55355 }, { "body": null, "index": 4, "isInternal": false, - "x": 525.383015360447, - "y": 432.68907173897816 + "x": 525.38302, + "y": 432.68907 }, { "body": null, "index": 5, "isInternal": false, - "x": 545.8904775789645, - "y": 444.4825616107705 + "x": 545.89048, + "y": 444.48256 }, { - "angle": -0.0003471983728836191, - "anglePrev": -0.0004684353900952892, - "angularSpeed": 0.00011099678461947399, - "angularVelocity": 0.00012245838401295824, + "angle": -0.00035, + "anglePrev": -0.00047, + "angularSpeed": 0.00011, + "angularVelocity": 0.00012, "area": 4826.0809, "axes": { "#": 2501 @@ -22031,13 +22031,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 15527.371235563205, - "inverseInertia": 0.00006440240172204064, - "inverseMass": 0.20720746724324493, + "inertia": 15527.37124, + "inverseInertia": 0.00006, + "inverseMass": 0.20721, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.8260809, + "mass": 4.82608, "motion": 0, "parent": null, "position": { @@ -22059,7 +22059,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8943642756775287, + "speed": 2.89436, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22080,12 +22080,12 @@ } ], { - "x": -0.00034719836590801564, - "y": -0.9999999397266456 + "x": -0.00035, + "y": -1 }, { - "x": 0.9999999397266456, - "y": -0.00034719836590801564 + "x": 1, + "y": -0.00035 }, { "max": { @@ -22096,12 +22096,12 @@ } }, { - "x": 614.9792496411601, - "y": 535.4144032091835 + "x": 614.97925, + "y": 535.4144 }, { - "x": 545.469032972136, - "y": 463.02596803444567 + "x": 545.46903, + "y": 463.02597 }, { "category": 1, @@ -22118,16 +22118,16 @@ "y": 0 }, { - "x": 580.2321917995151, - "y": 497.77302587609046 + "x": 580.23219, + "y": 497.77303 }, { - "x": 1.1964212088594308, - "y": 2.0252148952517084 + "x": 1.19642, + "y": 2.02521 }, { - "x": 580.2446996653839, - "y": 494.87664228347205 + "x": 580.2447, + "y": 494.87664 }, { "endCol": 12, @@ -22150,8 +22150,8 @@ "yScale": 1 }, { - "x": -0.01235439975346253, - "y": 2.8964230792007584 + "x": -0.01235, + "y": 2.89642 }, [ { @@ -22171,36 +22171,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 614.9792496411601, - "y": 532.4959638472558 + "x": 614.97925, + "y": 532.49596 }, { "body": null, "index": 1, "isInternal": false, - "x": 545.5092538283499, - "y": 532.5200837177354 + "x": 545.50925, + "y": 532.52008 }, { "body": null, "index": 2, "isInternal": false, - "x": 545.4851339578702, - "y": 463.0500879049252 + "x": 545.48513, + "y": 463.05009 }, { "body": null, "index": 3, "isInternal": false, - "x": 614.9551297706804, - "y": 463.02596803444567 + "x": 614.95513, + "y": 463.02597 }, { - "angle": 0.003203903638269277, - "anglePrev": 0.0030816387520649978, - "angularSpeed": 0.00017159337452118018, - "angularVelocity": 0.00012185463747866037, - "area": 1288.7426280768939, + "angle": 0.0032, + "anglePrev": 0.00308, + "angularSpeed": 0.00017, + "angularVelocity": 0.00012, + "area": 1288.74263, "axes": { "#": 2523 }, @@ -22221,13 +22221,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 1283.525413611018, - "inverseInertia": 0.0007791041684064836, - "inverseMass": 0.7759501224012698, + "inertia": 1283.52541, + "inverseInertia": 0.00078, + "inverseMass": 0.77595, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2887426280768939, + "mass": 1.28874, "motion": 0, "parent": null, "position": { @@ -22249,7 +22249,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.902090419219085, + "speed": 2.90209, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22270,12 +22270,12 @@ } ], { - "x": -0.003203898156927737, - "y": 0.9999948675051288 + "x": -0.0032, + "y": 0.99999 }, { - "x": -0.9999948675051288, - "y": -0.003203898156927737 + "x": -0.99999, + "y": -0.0032 }, { "max": { @@ -22286,12 +22286,12 @@ } }, { - "x": 662.3097295115342, - "y": 511.6555695413498 + "x": 662.30973, + "y": 511.65557 }, { - "x": 614.7785848662515, - "y": 481.42988734654347 + "x": 614.77858, + "y": 481.42989 }, { "category": 1, @@ -22308,16 +22308,16 @@ "y": 0 }, { - "x": 638.5516242959213, - "y": 495.0917024474037 + "x": 638.55162, + "y": 495.0917 }, { - "x": 1.3009571107365525, - "y": 2.582584123794196 + "x": 1.30096, + "y": 2.58258 }, { - "x": 638.5636273320295, - "y": 492.1881326788704 + "x": 638.56363, + "y": 492.18813 }, { "endCol": 13, @@ -22340,8 +22340,8 @@ "yScale": 1 }, { - "x": -0.011887883078884443, - "y": 2.9035841091110797 + "x": -0.01189, + "y": 2.90358 }, [ { @@ -22361,36 +22361,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 614.8805747945291, - "y": 481.42988734654347 + "x": 614.88057, + "y": 481.42989 }, { "body": null, "index": 1, "isInternal": false, - "x": 662.3097295115342, - "y": 481.58184630785456 + "x": 662.30973, + "y": 481.58185 }, { "body": null, "index": 2, "isInternal": false, - "x": 662.2226737973135, - "y": 508.7535175482639 + "x": 662.22267, + "y": 508.75352 }, { "body": null, "index": 3, "isInternal": false, - "x": 614.7935190803083, - "y": 508.6015585869528 + "x": 614.79352, + "y": 508.60156 }, { - "angle": -0.0512684055628541, - "anglePrev": -0.04324072686869785, - "angularSpeed": 0.008027678694156253, - "angularVelocity": -0.008027678694156253, - "area": 1779.883796, + "angle": -0.05127, + "anglePrev": -0.04324, + "angularSpeed": 0.00803, + "angularVelocity": -0.00803, + "area": 1779.8838, "axes": { "#": 2545 }, @@ -22411,13 +22411,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 2051.033881833643, - "inverseInertia": 0.0004875589861567722, - "inverseMass": 0.5618344311282218, + "inertia": 2051.03388, + "inverseInertia": 0.00049, + "inverseMass": 0.56183, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.779883796, + "mass": 1.77988, "motion": 0, "parent": null, "position": { @@ -22439,7 +22439,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7558703632142807, + "speed": 2.75587, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22469,24 +22469,24 @@ } ], { - "x": 0.35734065373633495, - "y": 0.9339741201913944 + "x": 0.35734, + "y": 0.93397 }, { - "x": -0.7778223162272376, - "y": 0.6284842435406757 + "x": -0.77782, + "y": 0.62848 }, { - "x": -0.8380668707575218, - "y": -0.5455675211545268 + "x": -0.83807, + "y": -0.54557 }, { - "x": 0.2598647911963429, - "y": -0.965645012567497 + "x": 0.25986, + "y": -0.96565 }, { - "x": 0.9986860631347303, - "y": -0.0512459491126228 + "x": 0.99869, + "y": -0.05125 }, { "max": { @@ -22497,12 +22497,12 @@ } }, { - "x": 712.4863252254545, - "y": 510.1703807020224 + "x": 712.48633, + "y": 510.17038 }, { - "x": 662.2271666704147, - "y": 455.44089322563207 + "x": 662.22717, + "y": 455.44089 }, { "category": 1, @@ -22519,16 +22519,16 @@ "y": 0 }, { - "x": 689.5560636608718, - "y": 480.9944294583355 + "x": 689.55606, + "y": 480.99443 }, { - "x": -0.09862289483353476, - "y": 1.5453347687470749 + "x": -0.09862, + "y": 1.54533 }, { - "x": 689.5601194813656, - "y": 478.23856207960284 + "x": 689.56012, + "y": 478.23856 }, { "endCol": 14, @@ -22551,8 +22551,8 @@ "yScale": 1 }, { - "x": -0.0040558204938611194, - "y": 2.75586737873268 + "x": -0.00406, + "y": 2.75587 }, [ { @@ -22575,43 +22575,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 712.4863252254545, - "y": 495.92095895843846 + "x": 712.48633, + "y": 495.92096 }, { "body": null, "index": 1, "isInternal": false, - "x": 682.4458520423931, - "y": 507.4145133232897 + "x": 682.44585, + "y": 507.41451 }, { "body": null, "index": 2, "isInternal": false, - "x": 662.2312224909085, - "y": 482.39655918838423 + "x": 662.23122, + "y": 482.39656 }, { "body": null, "index": 3, "isInternal": false, - "x": 679.778910358674, - "y": 455.44089322563207 + "x": 679.77891, + "y": 455.44089 }, { "body": null, "index": 4, "isInternal": false, - "x": 710.8380505181958, - "y": 463.7992204237731 + "x": 710.83805, + "y": 463.79922 }, { - "angle": -0.059188791011320734, - "anglePrev": -0.04952443789055948, - "angularSpeed": 0.009664353120761256, - "angularVelocity": -0.009664353120761256, - "area": 4428.370116000001, + "angle": -0.05919, + "anglePrev": -0.04952, + "angularSpeed": 0.00966, + "angularVelocity": -0.00966, + "area": 4428.37012, "axes": { "#": 2571 }, @@ -22632,13 +22632,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 13073.641256187908, - "inverseInertia": 0.0000764897843228403, - "inverseMass": 0.22581671671636758, + "inertia": 13073.64126, + "inverseInertia": 0.00008, + "inverseMass": 0.22582, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.428370116000001, + "mass": 4.42837, "motion": 0, "parent": null, "position": { @@ -22660,7 +22660,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.2052962364457023, + "speed": 2.2053, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22681,12 +22681,12 @@ } ], { - "x": -0.059154237587798586, - "y": -0.9982488548330053 + "x": -0.05915, + "y": -0.99825 }, { - "x": 0.9982488548330053, - "y": -0.059154237587798586 + "x": 0.99825, + "y": -0.05915 }, { "max": { @@ -22697,12 +22697,12 @@ } }, { - "x": 778.6536990756616, - "y": 485.75289254505867 + "x": 778.6537, + "y": 485.75289 }, { - "x": 708.0962469601417, - "y": 413.18998095648254 + "x": 708.09625, + "y": 413.18998 }, { "category": 1, @@ -22719,16 +22719,16 @@ "y": 0 }, { - "x": 743.4707259815441, - "y": 448.3729540506 + "x": 743.47073, + "y": 448.37295 }, { - "x": -0.13360846108390492, - "y": -0.0037042200081053816 + "x": -0.13361, + "y": -0.0037 }, { - "x": 743.662231908829, - "y": 446.17598865025883 + "x": 743.66223, + "y": 446.17599 }, { "endCol": 16, @@ -22751,8 +22751,8 @@ "yScale": 1 }, { - "x": -0.19150592728485322, - "y": 2.196965400341195 + "x": -0.19151, + "y": 2.19697 }, [ { @@ -22772,43 +22772,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.6536990756616, - "y": 479.61944925019986 + "x": 778.6537, + "y": 479.61945 }, { "body": null, "index": 1, "isInternal": false, - "x": 712.224230781944, - "y": 483.5559271447175 + "x": 712.22423, + "y": 483.55593 }, { "body": null, "index": 2, "isInternal": false, - "x": 708.2877528874266, - "y": 417.12645885100017 + "x": 708.28775, + "y": 417.12646 }, { "body": null, "index": 3, "isInternal": false, - "x": 774.7172211811439, - "y": 413.18998095648254 + "x": 774.71722, + "y": 413.18998 }, { - "angle": 0.020823827118132018, - "anglePrev": 0.018774639659401886, - "angularSpeed": 0.0020491874587301303, - "angularVelocity": 0.0020491874587301303, - "area": 4006.5774799999995, + "angle": 0.02082, + "anglePrev": 0.01877, + "angularSpeed": 0.00205, + "angularVelocity": 0.00205, + "area": 4006.57748, "axes": { "#": 2593 }, "bounds": { "#": 2607 }, - "circleRadius": 35.88631687242798, + "circleRadius": 35.88632, "collisionFilter": { "#": 2610 }, @@ -22823,13 +22823,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 10219.637720405184, - "inverseInertia": 0.00009785082674734506, - "inverseMass": 0.2495895823784244, + "inertia": 10219.63772, + "inverseInertia": 0.0001, + "inverseMass": 0.24959, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.00657748, + "mass": 4.00658, "motion": 0, "parent": null, "position": { @@ -22851,7 +22851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.802969954081839, + "speed": 2.80297, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22905,56 +22905,56 @@ } ], { - "x": -0.9657239535065046, - "y": -0.2595712727244033 + "x": -0.96572, + "y": -0.25957 }, { - "x": -0.8756271311574992, - "y": -0.48298770914060296 + "x": -0.87563, + "y": -0.48299 }, { - "x": -0.7345025147089874, - "y": -0.678605965112431 + "x": -0.7345, + "y": -0.67861 }, { - "x": -0.55083840393061, - "y": -0.8346119174533624 + "x": -0.55084, + "y": -0.83461 }, { - "x": -0.3350839433960208, - "y": -0.9421882778288914 + "x": -0.33508, + "y": -0.94219 }, { - "x": -0.09975189832878095, - "y": -0.9950123410188462 + "x": -0.09975, + "y": -0.99501 }, { - "x": 0.1410933508453063, - "y": -0.9899962961280426 + "x": 0.14109, + "y": -0.99 }, { - "x": 0.37402196812482774, - "y": -0.9274198441698509 + "x": 0.37402, + "y": -0.92742 }, { - "x": 0.5851103317525377, - "y": -0.8109536976156132 + "x": 0.58511, + "y": -0.81095 }, { - "x": 0.7621197765247505, - "y": -0.6474360557073292 + "x": 0.76212, + "y": -0.64744 }, { - "x": 0.8949773319466477, - "y": -0.4461116175372034 + "x": 0.89498, + "y": -0.44611 }, { - "x": 0.9756939470674487, - "y": -0.21913767739926063 + "x": 0.97569, + "y": -0.21914 }, { - "x": 0.9997831919468185, - "y": 0.02082232217190649 + "x": 0.99978, + "y": 0.02082 }, { "max": { @@ -22965,12 +22965,12 @@ } }, { - "x": 988.0260328622147, - "y": 577.5663973051871 + "x": 988.02603, + "y": 577.5664 }, { - "x": 916.5936578409832, - "y": 503.007043781868 + "x": 916.59366, + "y": 503.00704 }, { "category": 1, @@ -22987,16 +22987,16 @@ "y": 0 }, { - "x": 952.3186792833937, - "y": 538.8852634080716 + "x": 952.31868, + "y": 538.88526 }, { - "x": 2.0820977325959324, - "y": 2.358000467396374 + "x": 2.0821, + "y": 2.358 }, { - "x": 952.3363471469834, - "y": 536.0823491371597 + "x": 952.33635, + "y": 536.08235 }, { "endCol": 20, @@ -23019,8 +23019,8 @@ "yScale": 1 }, { - "x": -0.01766786358956665, - "y": 2.802914270911925 + "x": -0.01767, + "y": 2.80291 }, [ { @@ -23106,190 +23106,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 987.8458781307834, - "y": 543.9521207238078 + "x": 987.84588, + "y": 543.95212 }, { "body": null, "index": 1, "isInternal": false, - "x": 985.60044045634, - "y": 552.306176723751 + "x": 985.60044, + "y": 552.30618 }, { "body": null, "index": 2, "isInternal": false, - "x": 981.4217922145546, - "y": 559.8818100221246 + "x": 981.42179, + "y": 559.88181 }, { "body": null, "index": 3, "isInternal": false, - "x": 975.5512115062927, - "y": 566.23594852768 + "x": 975.55121, + "y": 566.23595 }, { "body": null, "index": 4, "isInternal": false, - "x": 968.3304134661565, - "y": 571.0016279822347 + "x": 968.33041, + "y": 571.00163 }, { "body": null, "index": 5, "isInternal": false, - "x": 960.1792843420754, - "y": 573.900531051079 + "x": 960.17928, + "y": 573.90053 }, { "body": null, "index": 6, "isInternal": false, - "x": 951.5714494299327, - "y": 574.7634830342752 + "x": 951.57145, + "y": 574.76348 }, { "body": null, "index": 7, "isInternal": false, - "x": 943.0070082371967, - "y": 573.5428868454542 + "x": 943.00701, + "y": 573.54289 }, { "body": null, "index": 8, "isInternal": false, - "x": 934.9836448819623, - "y": 570.3071202485128 + "x": 934.98364, + "y": 570.30712 }, { "body": null, "index": 9, "isInternal": false, - "x": 927.9675302687757, - "y": 565.2449309262304 + "x": 927.96753, + "y": 565.24493 }, { "body": null, "index": 10, "isInternal": false, - "x": 922.36659863264, - "y": 558.6518770960745 + "x": 922.3666, + "y": 558.65188 }, { "body": null, "index": 11, "isInternal": false, - "x": 918.5069900111728, - "y": 550.9088323274387 + "x": 918.50699, + "y": 550.90883 }, { "body": null, "index": 12, "isInternal": false, - "x": 916.6113257045728, - "y": 542.4685302690593 + "x": 916.61133, + "y": 542.46853 }, { "body": null, "index": 13, "isInternal": false, - "x": 916.7914804360041, - "y": 533.8184060923356 + "x": 916.79148, + "y": 533.81841 }, { "body": null, "index": 14, "isInternal": false, - "x": 919.0369181104477, - "y": 525.4643500923921 + "x": 919.03692, + "y": 525.46435 }, { "body": null, "index": 15, "isInternal": false, - "x": 923.2155663522329, - "y": 517.8887167940187 + "x": 923.21557, + "y": 517.88872 }, { "body": null, "index": 16, "isInternal": false, - "x": 929.086147060495, - "y": 511.5345782884631 + "x": 929.08615, + "y": 511.53458 }, { "body": null, "index": 17, "isInternal": false, - "x": 936.3069451006312, - "y": 506.7688988339085 + "x": 936.30695, + "y": 506.7689 }, { "body": null, "index": 18, "isInternal": false, - "x": 944.4580742247123, - "y": 503.86999576506423 + "x": 944.45807, + "y": 503.87 }, { "body": null, "index": 19, "isInternal": false, - "x": 953.0659091368548, - "y": 503.007043781868 + "x": 953.06591, + "y": 503.00704 }, { "body": null, "index": 20, "isInternal": false, - "x": 961.630350329591, - "y": 504.2276399706889 + "x": 961.63035, + "y": 504.22764 }, { "body": null, "index": 21, "isInternal": false, - "x": 969.6537136848254, - "y": 507.4634065676302 + "x": 969.65371, + "y": 507.46341 }, { "body": null, "index": 22, "isInternal": false, - "x": 976.669828298012, - "y": 512.5255958899129 + "x": 976.66983, + "y": 512.5256 }, { "body": null, "index": 23, "isInternal": false, - "x": 982.2707599341475, - "y": 519.1186497200688 + "x": 982.27076, + "y": 519.11865 }, { "body": null, "index": 24, "isInternal": false, - "x": 986.130368555615, - "y": 526.8616944887044 + "x": 986.13037, + "y": 526.86169 }, { "body": null, "index": 25, "isInternal": false, - "x": 988.0260328622147, - "y": 535.301996547084 + "x": 988.02603, + "y": 535.302 }, { - "angle": 0.009721743477432421, - "anglePrev": 0.008830327923932832, - "angularSpeed": 0.0008914155534995894, - "angularVelocity": 0.0008914155534995894, - "area": 2513.037024864943, + "angle": 0.00972, + "anglePrev": 0.00883, + "angularSpeed": 0.00089, + "angularVelocity": 0.00089, + "area": 2513.03702, "axes": { "#": 2648 }, @@ -23310,13 +23310,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 7118.367975988358, - "inverseInertia": 0.000140481638961795, - "inverseMass": 0.3979248972878713, + "inertia": 7118.36798, + "inverseInertia": 0.00014, + "inverseMass": 0.39792, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5130370248649427, + "mass": 2.51304, "motion": 0, "parent": null, "position": { @@ -23338,7 +23338,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7910325963809526, + "speed": 2.79103, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23359,12 +23359,12 @@ } ], { - "x": -0.009721590340772832, - "y": 0.9999527442240688 + "x": -0.00972, + "y": 0.99995 }, { - "x": -0.9999527442240688, - "y": -0.009721590340772832 + "x": -0.99995, + "y": -0.00972 }, { "max": { @@ -23375,12 +23375,12 @@ } }, { - "x": 960.8957420620399, - "y": 497.22546864073377 + "x": 960.89574, + "y": 497.22547 }, { - "x": 872.9933201787574, - "y": 464.89862986605476 + "x": 872.99332, + "y": 464.89863 }, { "category": 1, @@ -23397,16 +23397,16 @@ "y": 0 }, { - "x": 916.9338399184544, - "y": 479.6665739090344 + "x": 916.93384, + "y": 479.66657 }, { - "x": 0.00006024053510528621, - "y": 1.6608805423879343 + "x": 0.00006, + "y": 1.66088 }, { - "x": 916.912457514566, - "y": 476.8756232203147 + "x": 916.91246, + "y": 476.87562 }, { "endCol": 20, @@ -23429,8 +23429,8 @@ "yScale": 1 }, { - "x": 0.021382403888401312, - "y": 2.7909506887196978 + "x": 0.02138, + "y": 2.79095 }, [ { @@ -23450,36 +23450,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 873.2721895485905, - "y": 464.89862986605476 + "x": 873.27219, + "y": 464.89863 }, { "body": null, "index": 1, "isInternal": false, - "x": 960.8743596581514, - "y": 465.7503025232748 + "x": 960.87436, + "y": 465.7503 }, { "body": null, "index": 2, "isInternal": false, - "x": 960.5954902883183, - "y": 494.43451795201406 + "x": 960.59549, + "y": 494.43452 }, { "body": null, "index": 3, "isInternal": false, - "x": 872.9933201787574, - "y": 493.582845294794 + "x": 872.99332, + "y": 493.58285 }, { - "angle": 0.008077961944028801, - "anglePrev": 0.007271705640553199, - "angularSpeed": 0.0008062563034756028, - "angularVelocity": 0.0008062563034756028, - "area": 1629.3666616192165, + "angle": 0.00808, + "anglePrev": 0.00727, + "angularSpeed": 0.00081, + "angularVelocity": 0.00081, + "area": 1629.36666, "axes": { "#": 2670 }, @@ -23500,13 +23500,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 1918.0622160315609, - "inverseInertia": 0.0005213595219392745, - "inverseMass": 0.6137354001132129, + "inertia": 1918.06222, + "inverseInertia": 0.00052, + "inverseMass": 0.61374, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6293666616192166, + "mass": 1.62937, "motion": 0, "parent": null, "position": { @@ -23528,7 +23528,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8894959018098954, + "speed": 2.8895, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23549,12 +23549,12 @@ } ], { - "x": -0.008077874091808658, - "y": 0.9999673734428324 + "x": -0.00808, + "y": 0.99997 }, { - "x": -0.9999673734428324, - "y": -0.008077874091808658 + "x": -0.99997, + "y": -0.00808 }, { "max": { @@ -23565,12 +23565,12 @@ } }, { - "x": 1001.2393787551428, - "y": 472.702456719862 + "x": 1001.23938, + "y": 472.70246 }, { - "x": 967.8786413698475, - "y": 420.08839526048524 + "x": 967.87864, + "y": 420.0884 }, { "category": 1, @@ -23587,16 +23587,16 @@ "y": 0 }, { - "x": 984.5493852451974, - "y": 444.9507100995792 + "x": 984.54939, + "y": 444.95071 }, { - "x": 0.24045645674946003, - "y": -0.0003281609974616555 + "x": 0.24046, + "y": -0.00033 }, { - "x": 984.530135610602, - "y": 442.0612783183904 + "x": 984.53014, + "y": 442.06128 }, { "endCol": 20, @@ -23619,8 +23619,8 @@ "yScale": 1 }, { - "x": 0.019249634595439602, - "y": 2.8894317811888417 + "x": 0.01925, + "y": 2.88943 }, [ { @@ -23640,35 +23640,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 968.2781741028024, - "y": 420.08839526048524 + "x": 968.27817, + "y": 420.0884 }, { "body": null, "index": 1, "isInternal": false, - "x": 1001.2201291205473, - "y": 420.3545049076983 + "x": 1001.22013, + "y": 420.3545 }, { "body": null, "index": 2, "isInternal": false, - "x": 1000.8205963875924, - "y": 469.8130249386732 + "x": 1000.8206, + "y": 469.81302 }, { "body": null, "index": 3, "isInternal": false, - "x": 967.8786413698475, - "y": 469.54691529146015 + "x": 967.87864, + "y": 469.54692 }, { - "angle": -0.004010124240075727, - "anglePrev": -0.003526313087262523, - "angularSpeed": 0.00048381115281320453, - "angularVelocity": -0.00048381115281320453, + "angle": -0.00401, + "anglePrev": -0.00353, + "angularSpeed": 0.00048, + "angularVelocity": -0.00048, "area": 1316.36654, "axes": { "#": 2692 @@ -23690,13 +23690,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 1107.5429879268129, - "inverseInertia": 0.0009028994909460621, - "inverseMass": 0.759666832613354, + "inertia": 1107.54299, + "inverseInertia": 0.0009, + "inverseMass": 0.75967, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.31636654, + "mass": 1.31637, "motion": 0, "parent": null, "position": { @@ -23718,7 +23718,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9259607551982874, + "speed": 2.92596, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23754,32 +23754,32 @@ } ], { - "x": 0.6266391006633909, - "y": 0.7793095902911608 + "x": 0.62664, + "y": 0.77931 }, { - "x": -0.21859528229052697, - "y": 0.9758156088935683 + "x": -0.2186, + "y": 0.97582 }, { - "x": -0.8992225613622035, - "y": 0.4374914686450444 + "x": -0.89922, + "y": 0.43749 }, { - "x": -0.9027023932176081, - "y": -0.4302654869719423 + "x": -0.9027, + "y": -0.43027 }, { - "x": -0.2264144515755148, - "y": -0.9740310550068508 + "x": -0.22641, + "y": -0.97403 }, { - "x": 0.6203687571338294, - "y": -0.7843102735347968 + "x": 0.62037, + "y": -0.78431 }, { - "x": 0.9999919594625647, - "y": -0.004010113492218609 + "x": 0.99999, + "y": -0.00401 }, { "max": { @@ -23790,12 +23790,12 @@ } }, { - "x": 1057.4965633618929, - "y": 466.2694229127698 + "x": 1057.49656, + "y": 466.26942 }, { - "x": 1015.7370809799005, - "y": 420.5779367365991 + "x": 1015.73708, + "y": 420.57794 }, { "category": 1, @@ -23812,16 +23812,16 @@ "y": 0 }, { - "x": 1037.6698778369755, - "y": 441.9803382771737 + "x": 1037.66988, + "y": 441.98034 }, { - "x": 0.7857043092526607, - "y": 0.0009844829923849668 + "x": 0.7857, + "y": 0.00098 }, { - "x": 1037.6422204528074, - "y": 439.05450823937906 + "x": 1037.64222, + "y": 439.05451 }, { "endCol": 22, @@ -23844,8 +23844,8 @@ "yScale": 1 }, { - "x": 0.027657384168196585, - "y": 2.9258300377946607 + "x": 0.02766, + "y": 2.92583 }, [ { @@ -23874,50 +23874,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 1057.4689059777247, - "y": 451.41701780326866 + "x": 1057.46891, + "y": 451.41702 }, { "body": null, "index": 1, "isInternal": false, - "x": 1042.6366136377337, - "y": 463.3435928749752 + "x": 1042.63661, + "y": 463.34359 }, { "body": null, "index": 2, "isInternal": false, - "x": 1024.0637800073068, - "y": 459.1830385926127 + "x": 1024.06378, + "y": 459.18304 }, { "body": null, "index": 3, "isInternal": false, - "x": 1015.7370809799005, - "y": 442.0682919889675 + "x": 1015.73708, + "y": 442.06829 }, { "body": null, "index": 4, "isInternal": false, - "x": 1023.9262491549778, - "y": 424.88731435088465 + "x": 1023.92625, + "y": 424.88731 }, { "body": null, "index": 5, "isInternal": false, - "x": 1042.465117124125, - "y": 420.5779367365991 + "x": 1042.46512, + "y": 420.57794 }, { "body": null, "index": 6, "isInternal": false, - "x": 1057.3925854977404, - "y": 432.38517083077704 + "x": 1057.39259, + "y": 432.38517 }, [], [], diff --git a/test/browser/refs/car/car-0.json b/test/browser/refs/car/car-0.json index 4033088f..4ae68fce 100644 --- a/test/browser/refs/car/car-0.json +++ b/test/browser/refs/car/car-0.json @@ -825,8 +825,8 @@ "y": 605.25 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 13000, @@ -911,12 +911,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -927,12 +927,12 @@ } }, { - "x": 521.117169632681, - "y": 220.72179974764737 + "x": 521.11717, + "y": 220.7218 }, { - "x": -121.11716963268105, - "y": 79.27820025235262 + "x": -121.11717, + "y": 79.2782 }, { "category": 1, @@ -995,33 +995,33 @@ "body": null, "index": 0, "isInternal": false, - "x": -117.36954334096657, - "y": 79.27820025235262 + "x": -117.36954, + "y": 79.2782 }, { "body": null, "index": 1, "isInternal": false, - "x": 521.117169632681, - "y": 201.0760547330736 + "x": 521.11717, + "y": 201.07605 }, { "body": null, "index": 2, "isInternal": false, - "x": 517.3695433409666, - "y": 220.72179974764737 + "x": 517.36954, + "y": 220.7218 }, { "body": null, "index": 3, "isInternal": false, - "x": -121.11716963268105, - "y": 98.9239452669264 + "x": -121.11717, + "y": 98.92395 }, { - "angle": -0.18849555921538758, - "anglePrev": -0.18849555921538758, + "angle": -0.1885, + "anglePrev": -0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 13000, @@ -1106,12 +1106,12 @@ } ], { - "x": 0.1873813145857246, - "y": 0.9822872507286887 + "x": 0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": 0.1873813145857246 + "x": -0.98229, + "y": 0.18738 }, { "max": { @@ -1122,12 +1122,12 @@ } }, { - "x": 821.117169632681, - "y": 420.72179974764737 + "x": 821.11717, + "y": 420.7218 }, { - "x": 178.88283036731895, - "y": 279.27820025235263 + "x": 178.88283, + "y": 279.2782 }, { "category": 1, @@ -1190,33 +1190,33 @@ "body": null, "index": 0, "isInternal": false, - "x": 178.88283036731895, - "y": 401.0760547330736 + "x": 178.88283, + "y": 401.07605 }, { "body": null, "index": 1, "isInternal": false, - "x": 817.3695433409666, - "y": 279.27820025235263 + "x": 817.36954, + "y": 279.2782 }, { "body": null, "index": 2, "isInternal": false, - "x": 821.117169632681, - "y": 298.9239452669264 + "x": 821.11717, + "y": 298.92395 }, { "body": null, "index": 3, "isInternal": false, - "x": 182.63045665903343, - "y": 420.72179974764737 + "x": 182.63046, + "y": 420.7218 }, { - "angle": 0.12566370614359174, - "anglePrev": 0.12566370614359174, + "angle": 0.12566, + "anglePrev": 0.12566, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1301,12 +1301,12 @@ } ], { - "x": -0.12533323356430426, - "y": 0.9921147013144779 + "x": -0.12533, + "y": 0.99211 }, { - "x": -0.9921147013144779, - "y": -0.12533323356430426 + "x": -0.99211, + "y": -0.12533 }, { "max": { @@ -1317,12 +1317,12 @@ } }, { - "x": 688.4934777957103, - "y": 633.7877787606512 + "x": 688.49348, + "y": 633.78778 }, { - "x": -8.493477795710305, - "y": 526.2122212393488 + "x": -8.49348, + "y": 526.21222 }, { "category": 1, @@ -1385,29 +1385,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -5.986813124424202, - "y": 526.2122212393488 + "x": -5.98681, + "y": 526.21222 }, { "body": null, "index": 1, "isInternal": false, - "x": 688.4934777957103, - "y": 613.9454847343617 + "x": 688.49348, + "y": 613.94548 }, { "body": null, "index": 2, "isInternal": false, - "x": 685.9868131244242, - "y": 633.7877787606512 + "x": 685.98681, + "y": 633.78778 }, { "body": null, "index": 3, "isInternal": false, - "x": -8.493477795710305, - "y": 546.0545152656383 + "x": -8.49348, + "y": 546.05452 }, { "max": { @@ -1465,7 +1465,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2708.0744020211446, + "area": 2708.0744, "axes": { "#": 156 }, @@ -1486,13 +1486,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 6441.781058446046, - "inverseInertia": 0.00015523657058925727, - "inverseMass": 0.369266073064189, + "inertia": 6441.78106, + "inverseInertia": 0.00016, + "inverseMass": 0.36927, "isSleeping": false, "isStatic": false, "label": "Trapezoid Body", - "mass": 2.7080744020211447, + "mass": 2.70807, "motion": 0, "parent": null, "position": { @@ -1574,68 +1574,68 @@ } ], { - "x": -0.2608196030353321, - "y": 0.9653875567213884 + "x": -0.26082, + "y": 0.96539 }, { - "x": -0.7114878490641614, - "y": 0.7026983994816361 + "x": -0.71149, + "y": 0.7027 }, { - "x": -0.968554942731206, - "y": 0.2487997646923126 + "x": -0.96855, + "y": 0.2488 }, { - "x": -0.8813001838563251, - "y": -0.4725568600018495 + "x": -0.8813, + "y": -0.47256 }, { - "x": -0.8655659554873377, - "y": -0.5007949447641141 + "x": -0.86557, + "y": -0.50079 }, { - "x": -0.6554564466022562, - "y": -0.7552329750530916 + "x": -0.65546, + "y": -0.75523 }, { - "x": -0.37397774803534256, - "y": -0.9274376765984946 + "x": -0.37398, + "y": -0.92744 }, { - "x": -0.004805541890113558, - "y": -0.9999884533169082 + "x": -0.00481, + "y": -0.99999 }, { - "x": 0.16498842154925858, - "y": -0.9862955037688675 + "x": 0.16499, + "y": -0.9863 }, { - "x": 0.4770005470622009, - "y": -0.878902996981101 + "x": 0.477, + "y": -0.8789 }, { - "x": 0.7370746030083672, - "y": -0.6758113861130618 + "x": 0.73707, + "y": -0.67581 }, { - "x": 0.8584333801170783, - "y": -0.5129250743537188 + "x": 0.85843, + "y": -0.51293 }, { - "x": 0.9955004136718107, - "y": -0.09475719697866516 + "x": 0.9955, + "y": -0.09476 }, { - "x": 0.9077770766774553, - "y": 0.41945295213996714 + "x": 0.90778, + "y": 0.41945 }, { - "x": 0.573040823912953, - "y": 0.8195268233127969 + "x": 0.57304, + "y": 0.81953 }, { - "x": 0.00846459371180257, - "y": 0.9999641746849204 + "x": 0.00846, + "y": 0.99996 }, { "max": { @@ -1646,12 +1646,12 @@ } }, { - "x": 193.11518582859026, - "y": 117.18630648956884 + "x": 193.11519, + "y": 117.18631 }, { - "x": 106.50594301930607, - "y": 80.86537749187505 + "x": 106.50594, + "y": 80.86538 }, { "category": 1, @@ -1750,120 +1750,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 116.50517047506645, - "y": 117.18630648956884 + "x": 116.50517, + "y": 117.18631 }, { "body": null, "index": 1, "isInternal": false, - "x": 111.46933048868001, - "y": 115.82576918301868 + "x": 111.46933, + "y": 115.82577 }, { "body": null, "index": 2, "isInternal": false, - "x": 107.80378013655275, - "y": 112.11436961587114 + "x": 107.80378, + "y": 112.11437 }, { "body": null, "index": 3, "isInternal": false, - "x": 106.50594301930607, - "y": 107.06200730224991 + "x": 106.50594, + "y": 107.06201 }, { "body": null, "index": 4, "isInternal": false, - "x": 117.07338258950128, - "y": 87.35414307599113 + "x": 117.07338, + "y": 87.35414 }, { "body": null, "index": 5, "isInternal": false, - "x": 118.72588993863087, - "y": 84.49797586113849 + "x": 118.72589, + "y": 84.49798 }, { "body": null, "index": 6, "isInternal": false, - "x": 121.21798386775008, - "y": 82.33512137075462 + "x": 121.21798, + "y": 82.33512 }, { "body": null, "index": 7, "isInternal": false, - "x": 124.27831343469605, - "y": 81.10108140389667 + "x": 124.27831, + "y": 81.10108 }, { "body": null, "index": 8, "isInternal": false, - "x": 173.32609947276023, - "y": 80.86537749187505 + "x": 173.3261, + "y": 80.86538 }, { "body": null, "index": 9, "isInternal": false, - "x": 176.58064623971939, - "y": 81.40980107678138 + "x": 176.58065, + "y": 81.4098 }, { "body": null, "index": 10, "isInternal": false, - "x": 179.48082260305588, - "y": 82.98379242353988 + "x": 179.48082, + "y": 82.98379 }, { "body": null, "index": 11, "isInternal": false, - "x": 181.7108436802521, - "y": 85.41596792982784 + "x": 181.71084, + "y": 85.41597 }, { "body": null, "index": 12, "isInternal": false, - "x": 192.62089513857595, - "y": 103.67507207368493 + "x": 192.6209, + "y": 103.67507 }, { "body": null, "index": 13, "isInternal": false, - "x": 193.11518582859026, - "y": 108.86799252799274 + "x": 193.11519, + "y": 108.86799 }, { "body": null, "index": 14, "isInternal": false, - "x": 190.9271547792074, - "y": 113.6033136636645 + "x": 190.92715, + "y": 113.60331 }, { "body": null, "index": 15, "isInternal": false, - "x": 186.6521815645424, - "y": 116.59251926798481 + "x": 186.65218, + "y": 116.59252 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2267.978204, + "area": 2267.9782, "axes": { "#": 203 }, @@ -1885,13 +1885,13 @@ "frictionAir": 0.01, "frictionStatic": 10, "id": 6, - "inertia": 32746.596044382426, - "inverseInertia": 0.00003053752514138174, - "inverseMass": 0.04409213449389922, + "inertia": 32746.59604, + "inverseInertia": 0.00003, + "inverseMass": 0.04409, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 22.67978204, + "mass": 22.67978, "motion": 0, "parent": null, "position": { @@ -1964,52 +1964,52 @@ } ], { - "x": -0.9709325387467623, - "y": -0.23935330622902776 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855306474903332, - "y": -0.46458096426279816 + "x": -0.88553, + "y": -0.46458 }, { - "x": -0.7484509154695812, - "y": -0.6631901892615314 + "x": -0.74845, + "y": -0.66319 }, { - "x": -0.5680668419519881, - "y": -0.8229824196631996 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35458939358251373, - "y": -0.9350221184329198 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12059286743251717, - "y": -0.9927020501260201 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12059286743251717, - "y": -0.9927020501260201 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.35458939358251373, - "y": -0.9350221184329198 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680668419519881, - "y": -0.8229824196631996 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484509154695812, - "y": -0.6631901892615314 + "x": 0.74845, + "y": -0.66319 }, { - "x": 0.8855306474903332, - "y": -0.46458096426279816 + "x": 0.88553, + "y": -0.46458 }, { - "x": 0.9709325387467623, - "y": -0.23935330622902776 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -2180,7 +2180,7 @@ "index": 3, "isInternal": false, "x": 102.904, - "y": 120.21000000000001 + "y": 120.21 }, { "body": null, @@ -2222,20 +2222,20 @@ "index": 9, "isInternal": false, "x": 67.096, - "y": 120.21000000000001 + "y": 120.21 }, { "body": null, "index": 10, "isInternal": false, - "x": 62.778999999999996, + "x": 62.779, "y": 115.338 }, { "body": null, "index": 11, "isInternal": false, - "x": 59.754999999999995, + "x": 59.755, "y": 109.574 }, { @@ -2256,14 +2256,14 @@ "body": null, "index": 14, "isInternal": false, - "x": 59.754999999999995, + "x": 59.755, "y": 90.426 }, { "body": null, "index": 15, "isInternal": false, - "x": 62.778999999999996, + "x": 62.779, "y": 84.662 }, { @@ -2271,7 +2271,7 @@ "index": 16, "isInternal": false, "x": 67.096, - "y": 79.78999999999999 + "y": 79.79 }, { "body": null, @@ -2313,7 +2313,7 @@ "index": 22, "isInternal": false, "x": 102.904, - "y": 79.78999999999999 + "y": 79.79 }, { "body": null, @@ -2341,7 +2341,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2267.978204, + "area": 2267.9782, "axes": { "#": 257 }, @@ -2363,13 +2363,13 @@ "frictionAir": 0.01, "frictionStatic": 10, "id": 7, - "inertia": 32746.596044382426, - "inverseInertia": 0.00003053752514138174, - "inverseMass": 0.04409213449389922, + "inertia": 32746.59604, + "inverseInertia": 0.00003, + "inverseMass": 0.04409, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 22.67978204, + "mass": 22.67978, "motion": 0, "parent": null, "position": { @@ -2442,52 +2442,52 @@ } ], { - "x": -0.9709325387467623, - "y": -0.23935330622902776 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855306474903332, - "y": -0.46458096426279816 + "x": -0.88553, + "y": -0.46458 }, { - "x": -0.7484509154695812, - "y": -0.6631901892615314 + "x": -0.74845, + "y": -0.66319 }, { - "x": -0.5680668419519881, - "y": -0.8229824196631996 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35458939358251373, - "y": -0.9350221184329198 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12059286743251717, - "y": -0.9927020501260201 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12059286743251717, - "y": -0.9927020501260201 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.35458939358251373, - "y": -0.9350221184329198 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680668419519881, - "y": -0.8229824196631996 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484509154695812, - "y": -0.6631901892615314 + "x": 0.74845, + "y": -0.66319 }, { - "x": 0.8855306474903332, - "y": -0.46458096426279816 + "x": 0.88553, + "y": -0.46458 }, { - "x": 0.9709325387467623, - "y": -0.23935330622902776 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -2658,7 +2658,7 @@ "index": 3, "isInternal": false, "x": 232.904, - "y": 120.21000000000001 + "y": 120.21 }, { "body": null, @@ -2700,7 +2700,7 @@ "index": 9, "isInternal": false, "x": 197.096, - "y": 120.21000000000001 + "y": 120.21 }, { "body": null, @@ -2749,7 +2749,7 @@ "index": 16, "isInternal": false, "x": 197.096, - "y": 79.78999999999999 + "y": 79.79 }, { "body": null, @@ -2791,7 +2791,7 @@ "index": 22, "isInternal": false, "x": 232.904, - "y": 79.78999999999999 + "y": 79.79 }, { "body": null, @@ -2831,7 +2831,7 @@ "bodyB": null, "id": 8, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 313 }, @@ -2865,7 +2865,7 @@ "bodyB": null, "id": 9, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 317 }, @@ -2923,7 +2923,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2126.1884457348515, + "area": 2126.18845, "axes": { "#": 323 }, @@ -2944,13 +2944,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 3956.4572567658843, - "inverseInertia": 0.00025275137202352267, - "inverseMass": 0.47032519718842736, + "inertia": 3956.45726, + "inverseInertia": 0.00025, + "inverseMass": 0.47033, "isSleeping": false, "isStatic": false, "label": "Trapezoid Body", - "mass": 2.1261884457348517, + "mass": 2.12619, "motion": 0, "parent": null, "position": { @@ -3032,68 +3032,68 @@ } ], { - "x": -0.2608196030353321, - "y": 0.9653875567213884 + "x": -0.26082, + "y": 0.96539 }, { - "x": -0.7114878490641614, - "y": 0.7026983994816361 + "x": -0.71149, + "y": 0.7027 }, { - "x": -0.968554942731206, - "y": 0.2487997646923126 + "x": -0.96855, + "y": 0.2488 }, { - "x": -0.8660612147845096, - "y": -0.4999379683980598 + "x": -0.86606, + "y": -0.49994 }, { - "x": -0.8655659554873377, - "y": -0.5007949447641141 + "x": -0.86557, + "y": -0.50079 }, { - "x": -0.6554564466022562, - "y": -0.7552329750530916 + "x": -0.65546, + "y": -0.75523 }, { - "x": -0.37397774803534234, - "y": -0.9274376765984946 + "x": -0.37398, + "y": -0.92744 }, { - "x": -0.005605531968706713, - "y": -0.9999842888822543 + "x": -0.00561, + "y": -0.99998 }, { - "x": 0.16498842154925927, - "y": -0.9862955037688674 + "x": 0.16499, + "y": -0.9863 }, { - "x": 0.4770005470622027, - "y": -0.8789029969811 + "x": 0.477, + "y": -0.8789 }, { - "x": 0.7370746030083672, - "y": -0.6758113861130618 + "x": 0.73707, + "y": -0.67581 }, { - "x": 0.8346351660357039, - "y": -0.5508031768395611 + "x": 0.83464, + "y": -0.5508 }, { - "x": 0.9955004136718107, - "y": -0.09475719697866514 + "x": 0.9955, + "y": -0.09476 }, { - "x": 0.9077770766774552, - "y": 0.4194529521399672 + "x": 0.90778, + "y": 0.41945 }, { - "x": 0.5730408239129532, - "y": 0.8195268233127967 + "x": 0.57304, + "y": 0.81953 }, { - "x": 0.009871783771359135, - "y": 0.9999512727554136 + "x": 0.00987, + "y": 0.99995 }, { "max": { @@ -3104,12 +3104,12 @@ } }, { - "x": 388.0994228804999, - "y": 315.33041657985115 + "x": 388.09942, + "y": 315.33042 }, { - "x": 311.4901800712157, - "y": 283.00948758215736 + "x": 311.49018, + "y": 283.00949 }, { "category": 1, @@ -3208,120 +3208,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 321.48940752697604, - "y": 315.33041657985115 + "x": 321.48941, + "y": 315.33042 }, { "body": null, "index": 1, "isInternal": false, - "x": 316.45356754058963, - "y": 313.969879273301 + "x": 316.45357, + "y": 313.96988 }, { "body": null, "index": 2, "isInternal": false, - "x": 312.7880171884624, - "y": 310.2584797061534 + "x": 312.78802, + "y": 310.25848 }, { "body": null, "index": 3, "isInternal": false, - "x": 311.4901800712157, - "y": 305.20611739253224 + "x": 311.49018, + "y": 305.20612 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.5576196414109, - "y": 289.49825316627346 + "x": 320.55762, + "y": 289.49825 }, { "body": null, "index": 5, "isInternal": false, - "x": 322.21012699054046, - "y": 286.64208595142077 + "x": 322.21013, + "y": 286.64209 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.7022209196597, - "y": 284.47923146103693 + "x": 324.70222, + "y": 284.47923 }, { "body": null, "index": 7, "isInternal": false, - "x": 327.7625504866057, - "y": 283.245191494179 + "x": 327.76255, + "y": 283.24519 }, { "body": null, "index": 8, "isInternal": false, - "x": 369.8103365246699, - "y": 283.00948758215736 + "x": 369.81034, + "y": 283.00949 }, { "body": null, "index": 9, "isInternal": false, - "x": 373.06488329162903, - "y": 283.5539111670637 + "x": 373.06488, + "y": 283.55391 }, { "body": null, "index": 10, "isInternal": false, - "x": 375.9650596549655, - "y": 285.1279025138222 + "x": 375.96506, + "y": 285.1279 }, { "body": null, "index": 11, "isInternal": false, - "x": 378.1950807321617, - "y": 287.56007802011015 + "x": 378.19508, + "y": 287.56008 }, { "body": null, "index": 12, "isInternal": false, - "x": 387.60513219048556, - "y": 301.81918216396724 + "x": 387.60513, + "y": 301.81918 }, { "body": null, "index": 13, "isInternal": false, - "x": 388.0994228804999, - "y": 307.01210261827504 + "x": 388.09942, + "y": 307.0121 }, { "body": null, "index": 14, "isInternal": false, - "x": 385.911391831117, - "y": 311.7474237539468 + "x": 385.91139, + "y": 311.74742 }, { "body": null, "index": 15, "isInternal": false, - "x": 381.636418616452, - "y": 314.7366293582671 + "x": 381.63642, + "y": 314.73663 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1788.935704, + "area": 1788.9357, "axes": { "#": 370 }, @@ -3343,13 +3343,13 @@ "frictionAir": 0.01, "frictionStatic": 10, "id": 12, - "inertia": 20374.221073499848, - "inverseInertia": 0.00004908163096849237, - "inverseMass": 0.055899158240513266, + "inertia": 20374.22107, + "inverseInertia": 0.00005, + "inverseMass": 0.0559, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.88935704, + "mass": 17.88936, "motion": 0, "parent": null, "position": { @@ -3419,48 +3419,48 @@ } ], { - "x": -0.9659003038284947, - "y": -0.25891427744336837 + "x": -0.9659, + "y": -0.25891 }, { - "x": -0.8660048470041256, - "y": -0.5000356036977377 + "x": -0.866, + "y": -0.50004 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000356036977377, - "y": -0.8660048470041256 + "x": -0.50004, + "y": -0.866 }, { - "x": -0.25891427744336837, - "y": -0.9659003038284947 + "x": -0.25891, + "y": -0.9659 }, { "x": 0, "y": -1 }, { - "x": 0.25891427744336837, - "y": -0.9659003038284947 + "x": 0.25891, + "y": -0.9659 }, { - "x": 0.5000356036977377, - "y": -0.8660048470041256 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660048470041256, - "y": -0.5000356036977377 + "x": 0.866, + "y": -0.50004 }, { - "x": 0.9659003038284947, - "y": -0.25891427744336837 + "x": 0.9659, + "y": -0.25891 }, { "x": 1, @@ -3772,7 +3772,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1788.935704, + "area": 1788.9357, "axes": { "#": 421 }, @@ -3794,13 +3794,13 @@ "frictionAir": 0.01, "frictionStatic": 10, "id": 13, - "inertia": 20374.221073499848, - "inverseInertia": 0.00004908163096849237, - "inverseMass": 0.055899158240513266, + "inertia": 20374.22107, + "inverseInertia": 0.00005, + "inverseMass": 0.0559, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.88935704, + "mass": 17.88936, "motion": 0, "parent": null, "position": { @@ -3870,48 +3870,48 @@ } ], { - "x": -0.9659003038284947, - "y": -0.25891427744336837 + "x": -0.9659, + "y": -0.25891 }, { - "x": -0.8660048470041256, - "y": -0.5000356036977377 + "x": -0.866, + "y": -0.50004 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000356036977377, - "y": -0.8660048470041256 + "x": -0.50004, + "y": -0.866 }, { - "x": -0.25891427744336837, - "y": -0.9659003038284947 + "x": -0.25891, + "y": -0.9659 }, { "x": 0, "y": -1 }, { - "x": 0.25891427744336837, - "y": -0.9659003038284947 + "x": 0.25891, + "y": -0.9659 }, { - "x": 0.5000356036977377, - "y": -0.8660048470041256 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660048470041256, - "y": -0.5000356036977377 + "x": 0.866, + "y": -0.50004 }, { - "x": 0.9659003038284947, - "y": -0.25891427744336837 + "x": 0.9659, + "y": -0.25891 }, { "x": 1, @@ -4235,7 +4235,7 @@ "bodyB": null, "id": 14, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 474 }, @@ -4269,7 +4269,7 @@ "bodyB": null, "id": 15, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 478 }, diff --git a/test/browser/refs/car/car-10.json b/test/browser/refs/car/car-10.json index e3126d1c..6f7cd5df 100644 --- a/test/browser/refs/car/car-10.json +++ b/test/browser/refs/car/car-10.json @@ -865,8 +865,8 @@ "y": 605.25 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 13000, @@ -954,12 +954,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -970,12 +970,12 @@ } }, { - "x": 521.117169632681, - "y": 220.72179974764737 + "x": 521.11717, + "y": 220.7218 }, { - "x": -121.11716963268105, - "y": 79.27820025235262 + "x": -121.11717, + "y": 79.2782 }, { "category": 1, @@ -1045,33 +1045,33 @@ "body": null, "index": 0, "isInternal": false, - "x": -117.36954334096657, - "y": 79.27820025235262 + "x": -117.36954, + "y": 79.2782 }, { "body": null, "index": 1, "isInternal": false, - "x": 521.117169632681, - "y": 201.0760547330736 + "x": 521.11717, + "y": 201.07605 }, { "body": null, "index": 2, "isInternal": false, - "x": 517.3695433409666, - "y": 220.72179974764737 + "x": 517.36954, + "y": 220.7218 }, { "body": null, "index": 3, "isInternal": false, - "x": -121.11716963268105, - "y": 98.9239452669264 + "x": -121.11717, + "y": 98.92395 }, { - "angle": -0.18849555921538758, - "anglePrev": -0.18849555921538758, + "angle": -0.1885, + "anglePrev": -0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 13000, @@ -1159,12 +1159,12 @@ } ], { - "x": 0.1873813145857246, - "y": 0.9822872507286887 + "x": 0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": 0.1873813145857246 + "x": -0.98229, + "y": 0.18738 }, { "max": { @@ -1175,12 +1175,12 @@ } }, { - "x": 821.117169632681, - "y": 420.72179974764737 + "x": 821.11717, + "y": 420.7218 }, { - "x": 178.88283036731895, - "y": 279.27820025235263 + "x": 178.88283, + "y": 279.2782 }, { "category": 1, @@ -1250,33 +1250,33 @@ "body": null, "index": 0, "isInternal": false, - "x": 178.88283036731895, - "y": 401.0760547330736 + "x": 178.88283, + "y": 401.07605 }, { "body": null, "index": 1, "isInternal": false, - "x": 817.3695433409666, - "y": 279.27820025235263 + "x": 817.36954, + "y": 279.2782 }, { "body": null, "index": 2, "isInternal": false, - "x": 821.117169632681, - "y": 298.9239452669264 + "x": 821.11717, + "y": 298.92395 }, { "body": null, "index": 3, "isInternal": false, - "x": 182.63045665903343, - "y": 420.72179974764737 + "x": 182.63046, + "y": 420.7218 }, { - "angle": 0.12566370614359174, - "anglePrev": 0.12566370614359174, + "angle": 0.12566, + "anglePrev": 0.12566, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1364,12 +1364,12 @@ } ], { - "x": -0.12533323356430426, - "y": 0.9921147013144779 + "x": -0.12533, + "y": 0.99211 }, { - "x": -0.9921147013144779, - "y": -0.12533323356430426 + "x": -0.99211, + "y": -0.12533 }, { "max": { @@ -1380,12 +1380,12 @@ } }, { - "x": 688.4934777957103, - "y": 633.7877787606512 + "x": 688.49348, + "y": 633.78778 }, { - "x": -8.493477795710305, - "y": 526.2122212393488 + "x": -8.49348, + "y": 526.21222 }, { "category": 1, @@ -1455,29 +1455,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -5.986813124424202, - "y": 526.2122212393488 + "x": -5.98681, + "y": 526.21222 }, { "body": null, "index": 1, "isInternal": false, - "x": 688.4934777957103, - "y": 613.9454847343617 + "x": 688.49348, + "y": 613.94548 }, { "body": null, "index": 2, "isInternal": false, - "x": 685.9868131244242, - "y": 633.7877787606512 + "x": 685.98681, + "y": 633.78778 }, { "body": null, "index": 3, "isInternal": false, - "x": -8.493477795710305, - "y": 546.0545152656383 + "x": -8.49348, + "y": 546.05452 }, { "max": { @@ -1531,11 +1531,11 @@ } ], { - "angle": 0.08265813338317006, - "anglePrev": 0.07800205036720367, - "angularSpeed": 0.004861699807614283, - "angularVelocity": 0.005138300192385717, - "area": 2708.0744020211446, + "angle": 0.08266, + "anglePrev": 0.078, + "angularSpeed": 0.00486, + "angularVelocity": 0.00514, + "area": 2708.0744, "axes": { "#": 163 }, @@ -1556,13 +1556,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 6441.781058446046, - "inverseInertia": 0.00015523657058925727, - "inverseMass": 0.369266073064189, + "inertia": 6441.78106, + "inverseInertia": 0.00016, + "inverseMass": 0.36927, "isSleeping": false, "isStatic": false, "label": "Trapezoid Body", - "mass": 2.7080744020211447, + "mass": 2.70807, "motion": 0, "parent": null, "position": { @@ -1584,7 +1584,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1374341801257883, + "speed": 1.13743, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1647,68 +1647,68 @@ } ], { - "x": -0.33963539985090013, - "y": 0.9405571727269529 + "x": -0.33964, + "y": 0.94056 }, { - "x": -0.7670762786287727, - "y": 0.6415559077469656 + "x": -0.76708, + "y": 0.64156 }, { - "x": -0.9857899785978232, - "y": 0.16798249342149807 + "x": -0.98579, + "y": 0.16798 }, { - "x": -0.8392750107995526, - "y": -0.5437071419867602 + "x": -0.83928, + "y": -0.54371 }, { - "x": -0.8212630524735327, - "y": -0.5705497337146477 + "x": -0.82126, + "y": -0.57055 }, { - "x": -0.5908634758306169, - "y": -0.8067715618000932 + "x": -0.59086, + "y": -0.80677 }, { - "x": -0.2961278968473183, - "y": -0.955148296710403 + "x": -0.29613, + "y": -0.95515 }, { - "x": 0.07777395245260059, - "y": -0.9969710187963844 + "x": 0.07777, + "y": -0.99697 }, { - "x": 0.24585765349737748, - "y": -0.9693059445896136 + "x": 0.24586, + "y": -0.96931 }, { - "x": 0.547937735803848, - "y": -0.8365191197349604 + "x": 0.54794, + "y": -0.83652 }, { - "x": 0.7903557728239621, - "y": -0.6126481472785485 + "x": 0.79036, + "y": -0.61265 }, { - "x": 0.8978516500479692, - "y": -0.44029809732286995 + "x": 0.89785, + "y": -0.4403 }, { - "x": 0.9999250744769913, - "y": -0.012241136882808038 + "x": 0.99993, + "y": -0.01224 }, { - "x": 0.8700459783782295, - "y": 0.4929705828017219 + "x": 0.87005, + "y": 0.49297 }, { - "x": 0.5034208798799624, - "y": 0.8640413286995503 + "x": 0.50342, + "y": 0.86404 }, { - "x": -0.07412538896602014, - "y": 0.9972489291599346 + "x": -0.07413, + "y": 0.99725 }, { "max": { @@ -1719,12 +1719,12 @@ } }, { - "x": 196.21930625533705, - "y": 114.59515508286677 + "x": 196.21931, + "y": 114.59516 }, { - "x": 110.05487752898921, - "y": 74.07505489735557 + "x": 110.05488, + "y": 74.07505 }, { "category": 1, @@ -1741,16 +1741,16 @@ "y": 0 }, { - "x": 153.98350326480372, - "y": 95.03313443958051 + "x": 153.9835, + "y": 95.03313 }, { "x": 0, "y": 0 }, { - "x": 153.63900759218237, - "y": 94.2142624743203 + "x": 153.63901, + "y": 94.21426 }, { "endCol": 4, @@ -1773,8 +1773,8 @@ "yScale": 1 }, { - "x": 0.35146987857433487, - "y": 0.8283199639113548 + "x": 0.35147, + "y": 0.82832 }, [ { @@ -1830,120 +1830,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 119.1840621861351, - "y": 109.39529431440522 + "x": 119.18406, + "y": 109.39529 }, { "body": null, "index": 1, "isInternal": false, - "x": 114.27774721768156, - "y": 107.62362291108809 + "x": 114.27775, + "y": 107.62362 }, { "body": null, "index": 2, "isInternal": false, - "x": 110.93114007401081, - "y": 103.62225230129255 + "x": 110.93114, + "y": 103.62225 }, { "body": null, "index": 3, "isInternal": false, - "x": 110.05487752898921, - "y": 98.47998528341071 + "x": 110.05488, + "y": 98.47999 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.21339823442587, - "y": 79.7118989215611 + "x": 122.2134, + "y": 79.7119 }, { "body": null, "index": 5, "isInternal": false, - "x": 124.09608023404446, - "y": 77.00192102747442 + "x": 124.09608, + "y": 77.00192 }, { "body": null, "index": 6, "isInternal": false, - "x": 126.75823956468903, - "y": 75.05220838290639 + "x": 126.75824, + "y": 75.05221 }, { "body": null, "index": 7, "isInternal": false, - "x": 129.9100077610833, - "y": 74.07505489735557 + "x": 129.91001, + "y": 74.07505 }, { "body": null, "index": 8, "isInternal": false, - "x": 178.8097936074897, - "y": 77.88973912353511 + "x": 178.80979, + "y": 77.88974 }, { "body": null, "index": 9, "isInternal": false, - "x": 182.00827876341276, - "y": 78.70101244706188 + "x": 182.00828, + "y": 78.70101 }, { "body": null, "index": 10, "isInternal": false, - "x": 184.76859814662964, - "y": 80.5090800898129 + "x": 184.7686, + "y": 80.50908 }, { "body": null, "index": 11, "isInternal": false, - "x": 186.79019516232097, - "y": 83.11707111822435 + "x": 186.7902, + "y": 83.11707 }, { "body": null, "index": 12, "isInternal": false, - "x": 196.1554516860875, - "y": 102.21461224800176 + "x": 196.15545, + "y": 102.21461 }, { "body": null, "index": 13, "isInternal": false, - "x": 196.21930625533705, - "y": 107.43061346780507 + "x": 196.21931, + "y": 107.43061 }, { "body": null, "index": 14, "isInternal": false, - "x": 193.6477784210482, - "y": 111.96911440186702 + "x": 193.64778, + "y": 111.96911 }, { "body": null, "index": 15, "isInternal": false, - "x": 189.14060009389738, - "y": 114.59515508286677 + "x": 189.1406, + "y": 114.59516 }, { - "angle": -0.04743344093529124, - "anglePrev": -0.04243392874253828, - "angularSpeed": 0.004999512192752967, - "angularVelocity": -0.004999512192752964, - "area": 2267.978204, + "angle": -0.04743, + "anglePrev": -0.04243, + "angularSpeed": 0.005, + "angularVelocity": -0.005, + "area": 2267.9782, "axes": { "#": 211 }, @@ -1965,13 +1965,13 @@ "frictionAir": 0.01, "frictionStatic": 10, "id": 6, - "inertia": 32746.596044382426, - "inverseInertia": 0.00003053752514138174, - "inverseMass": 0.04409213449389922, + "inertia": 32746.59604, + "inverseInertia": 0.00003, + "inverseMass": 0.04409, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 22.67978204, + "mass": 22.67978, "motion": 0, "parent": null, "position": { @@ -1993,7 +1993,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 0.8186668919212642, + "speed": 0.81867, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2047,56 +2047,56 @@ } ], { - "x": -0.9811895717771835, - "y": -0.19304668926378118 + "x": -0.98119, + "y": -0.19305 }, { - "x": -0.9065630538448863, - "y": -0.4220704081115297 + "x": -0.90656, + "y": -0.42207 }, { - "x": -0.7790546895827526, - "y": -0.626955971850592 + "x": -0.77905, + "y": -0.62696 }, { - "x": -0.6064501573272095, - "y": -0.7951215043487394 + "x": -0.60645, + "y": -0.79512 }, { - "x": -0.3985252545402995, - "y": -0.9171573591775781 + "x": -0.39853, + "y": -0.91716 }, { - "x": -0.1675268488904641, - "y": -0.9858675138682843 + "x": -0.16753, + "y": -0.98587 }, { - "x": 0.0733876111734853, - "y": -0.9973034936899845 + "x": 0.07339, + "y": -0.9973 }, { - "x": 0.3098558804147849, - "y": -0.950783536548871 + "x": 0.30986, + "y": -0.95078 }, { - "x": 0.5284056548183917, - "y": -0.8489920282051805 + "x": 0.52841, + "y": -0.84899 }, { - "x": 0.7161634939107642, - "y": -0.6979325540405219 + "x": 0.71616, + "y": -0.69793 }, { - "x": 0.8625062315305105, - "y": -0.5060464411208095 + "x": 0.86251, + "y": -0.50605 }, { - "x": 0.958491383745257, - "y": -0.2851214956577317 + "x": 0.95849, + "y": -0.28512 }, { - "x": 0.9988752452493234, - "y": -0.047415655938772436 + "x": 0.99888, + "y": -0.04742 }, { "max": { @@ -2107,12 +2107,12 @@ } }, { - "x": 116.13723969620057, - "y": 116.91966748355283 + "x": 116.13724, + "y": 116.91967 }, { - "x": 62.28295221051581, - "y": 62.980404240089385 + "x": 62.28295, + "y": 62.9804 }, { "category": 1, @@ -2129,16 +2129,16 @@ "y": 0 }, { - "x": 89.21009595335819, - "y": 89.95003586182116 + "x": 89.2101, + "y": 89.95004 }, { "x": 0, "y": 0 }, { - "x": 88.90226315779934, - "y": 88.88766963679645 + "x": 88.90226, + "y": 88.88767 }, { "endCol": 2, @@ -2161,8 +2161,8 @@ "yScale": 1 }, { - "x": 0.33075116440579677, - "y": 0.8910360397637902 + "x": 0.33075, + "y": 0.89104 }, [ { @@ -2248,190 +2248,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 116.13723969620057, - "y": 91.92949408373555 + "x": 116.13724, + "y": 91.92949 }, { "body": null, "index": 1, "isInternal": false, - "x": 114.88065900963517, - "y": 98.31625922566384 + "x": 114.88066, + "y": 98.31626 }, { "body": null, "index": 2, "isInternal": false, - "x": 112.1333641088323, - "y": 104.21716108283978 + "x": 112.13336, + "y": 104.21716 }, { "body": null, "index": 3, "isInternal": false, - "x": 108.05222875082465, - "y": 109.28837466438218 + "x": 108.05223, + "y": 109.28837 }, { "body": null, "index": 4, "isInternal": false, - "x": 102.87754861727494, - "y": 113.23517469927698 + "x": 102.87755, + "y": 113.23517 }, { "body": null, "index": 5, "isInternal": false, - "x": 96.90782920859425, - "y": 115.82915044735577 + "x": 96.90783, + "y": 115.82915 }, { "body": null, "index": 6, "isInternal": false, - "x": 90.49031866370503, - "y": 116.91966748355283 + "x": 90.49032, + "y": 116.91967 }, { "body": null, "index": 7, "isInternal": false, - "x": 83.99836553899195, - "y": 116.44195038470848 + "x": 83.99837, + "y": 116.44195 }, { "body": null, "index": 8, "isInternal": false, - "x": 77.8097754624979, - "y": 114.42511800071644 + "x": 77.80978, + "y": 114.42512 }, { "body": null, "index": 9, "isInternal": false, - "x": 72.28450396893692, - "y": 110.98623447223771 + "x": 72.2845, + "y": 110.98623 }, { "body": null, "index": 10, "isInternal": false, - "x": 67.74135045946188, - "y": 106.32440766407069 + "x": 67.74135, + "y": 106.32441 }, { "body": null, "index": 11, "isInternal": false, - "x": 64.44744787699683, - "y": 100.71027569401247 + "x": 64.44745, + "y": 100.71028 }, { "body": null, "index": 12, "isInternal": false, - "x": 62.591533299365345, - "y": 94.47125773598937 + "x": 62.59153, + "y": 94.47126 }, { "body": null, "index": 13, "isInternal": false, - "x": 62.28295221051581, - "y": 87.97057763990675 + "x": 62.28295, + "y": 87.97058 }, { "body": null, "index": 14, "isInternal": false, - "x": 63.53953289708121, - "y": 81.58381249797843 + "x": 63.53953, + "y": 81.58381 }, { "body": null, "index": 15, "isInternal": false, - "x": 66.28682779788407, - "y": 75.68291064080246 + "x": 66.28683, + "y": 75.68291 }, { "body": null, "index": 16, "isInternal": false, - "x": 70.36796315589173, - "y": 70.6116970592601 + "x": 70.36796, + "y": 70.6117 }, { "body": null, "index": 17, "isInternal": false, - "x": 75.54264328944144, - "y": 66.66489702436532 + "x": 75.54264, + "y": 66.6649 }, { "body": null, "index": 18, "isInternal": false, - "x": 81.51236269812213, - "y": 64.07092127628644 + "x": 81.51236, + "y": 64.07092 }, { "body": null, "index": 19, "isInternal": false, - "x": 87.92987324301133, - "y": 62.980404240089385 + "x": 87.92987, + "y": 62.9804 }, { "body": null, "index": 20, "isInternal": false, - "x": 94.42182636772442, - "y": 63.45812133893375 + "x": 94.42183, + "y": 63.45812 }, { "body": null, "index": 21, "isInternal": false, - "x": 100.61041644421849, - "y": 65.47495372292583 + "x": 100.61042, + "y": 65.47495 }, { "body": null, "index": 22, "isInternal": false, - "x": 106.13568793777947, - "y": 68.91383725140453 + "x": 106.13569, + "y": 68.91384 }, { "body": null, "index": 23, "isInternal": false, - "x": 110.6788414472545, - "y": 73.57566405957155 + "x": 110.67884, + "y": 73.57566 }, { "body": null, "index": 24, "isInternal": false, - "x": 113.97274402971952, - "y": 79.1897960296298 + "x": 113.97274, + "y": 79.1898 }, { "body": null, "index": 25, "isInternal": false, - "x": 115.82865860735104, - "y": 85.4288139876529 + "x": 115.82866, + "y": 85.42881 }, { - "angle": 2.7765946254902356e-22, - "anglePrev": 2.988579097518816e-22, - "angularSpeed": 2.2853889757888897e-23, - "angularVelocity": -2.2853889757888888e-23, - "area": 2267.978204, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2267.9782, "axes": { "#": 266 }, @@ -2453,13 +2453,13 @@ "frictionAir": 0.01, "frictionStatic": 10, "id": 7, - "inertia": 32746.596044382426, - "inverseInertia": 0.00003053752514138174, - "inverseMass": 0.04409213449389922, + "inertia": 32746.59604, + "inverseInertia": 0.00003, + "inverseMass": 0.04409, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 22.67978204, + "mass": 22.67978, "motion": 0, "parent": null, "position": { @@ -2481,7 +2481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 1.2078552088308852, + "speed": 1.20786, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2535,56 +2535,56 @@ } ], { - "x": -0.9709325387467623, - "y": -0.23935330622902776 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855306474903332, - "y": -0.46458096426279816 + "x": -0.88553, + "y": -0.46458 }, { - "x": -0.7484509154695812, - "y": -0.6631901892615314 + "x": -0.74845, + "y": -0.66319 }, { - "x": -0.5680668419519881, - "y": -0.8229824196631996 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35458939358251373, - "y": -0.9350221184329198 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12059286743251717, - "y": -0.9927020501260201 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12059286743251717, - "y": -0.9927020501260201 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.35458939358251373, - "y": -0.9350221184329198 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680668419519881, - "y": -0.8229824196631996 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484509154695812, - "y": -0.6631901892615314 + "x": 0.74845, + "y": -0.66319 }, { - "x": 0.8855306474903332, - "y": -0.46458096426279816 + "x": 0.88553, + "y": -0.46458 }, { - "x": 0.9709325387467623, - "y": -0.23935330622902776 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, - "y": 2.7765946254902356e-22 + "y": 0 }, { "max": { @@ -2595,12 +2595,12 @@ } }, { - "x": 245.5480333022744, - "y": 127.41213673972854 + "x": 245.54803, + "y": 127.41214 }, { - "x": 191.9420333022744, - "y": 73.41213673972854 + "x": 191.94203, + "y": 73.41214 }, { "category": 1, @@ -2617,16 +2617,16 @@ "y": 0 }, { - "x": 218.74503330227438, - "y": 100.41213673972854 + "x": 218.74503, + "y": 100.41214 }, { "x": 0, "y": 0 }, { - "x": 218.41440064975734, - "y": 99.29658246380589 + "x": 218.4144, + "y": 99.29658 }, { "endCol": 5, @@ -2649,8 +2649,8 @@ "yScale": 1 }, { - "x": 0.3236584465640533, - "y": 1.1061062772715076 + "x": 0.32366, + "y": 1.10611 }, [ { @@ -2736,183 +2736,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.5480333022744, - "y": 103.66613673972856 + "x": 245.54803, + "y": 103.66614 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.9900333022744, - "y": 109.98613673972855 + "x": 243.99003, + "y": 109.98614 }, { "body": null, "index": 2, "isInternal": false, - "x": 240.9660333022744, - "y": 115.75013673972853 + "x": 240.96603, + "y": 115.75014 }, { "body": null, "index": 3, "isInternal": false, - "x": 236.6490333022744, - "y": 120.62213673972855 + "x": 236.64903, + "y": 120.62214 }, { "body": null, "index": 4, "isInternal": false, - "x": 231.2930333022744, - "y": 124.31913673972855 + "x": 231.29303, + "y": 124.31914 }, { "body": null, "index": 5, "isInternal": false, - "x": 225.2070333022744, - "y": 126.62713673972854 + "x": 225.20703, + "y": 126.62714 }, { "body": null, "index": 6, "isInternal": false, - "x": 218.7450333022744, - "y": 127.41213673972854 + "x": 218.74503, + "y": 127.41214 }, { "body": null, "index": 7, "isInternal": false, - "x": 212.28303330227442, - "y": 126.62713673972854 + "x": 212.28303, + "y": 126.62714 }, { "body": null, "index": 8, "isInternal": false, - "x": 206.1970333022744, - "y": 124.31913673972855 + "x": 206.19703, + "y": 124.31914 }, { "body": null, "index": 9, "isInternal": false, - "x": 200.8410333022744, - "y": 120.62213673972855 + "x": 200.84103, + "y": 120.62214 }, { "body": null, "index": 10, "isInternal": false, - "x": 196.5240333022744, - "y": 115.75013673972853 + "x": 196.52403, + "y": 115.75014 }, { "body": null, "index": 11, "isInternal": false, - "x": 193.5000333022744, - "y": 109.98613673972855 + "x": 193.50003, + "y": 109.98614 }, { "body": null, "index": 12, "isInternal": false, - "x": 191.9420333022744, - "y": 103.66613673972856 + "x": 191.94203, + "y": 103.66614 }, { "body": null, "index": 13, "isInternal": false, - "x": 191.9420333022744, - "y": 97.15813673972855 + "x": 191.94203, + "y": 97.15814 }, { "body": null, "index": 14, "isInternal": false, - "x": 193.5000333022744, - "y": 90.83813673972855 + "x": 193.50003, + "y": 90.83814 }, { "body": null, "index": 15, "isInternal": false, - "x": 196.5240333022744, - "y": 85.07413673972854 + "x": 196.52403, + "y": 85.07414 }, { "body": null, "index": 16, "isInternal": false, - "x": 200.8410333022744, - "y": 80.20213673972853 + "x": 200.84103, + "y": 80.20214 }, { "body": null, "index": 17, "isInternal": false, - "x": 206.1970333022744, - "y": 76.50513673972856 + "x": 206.19703, + "y": 76.50514 }, { "body": null, "index": 18, "isInternal": false, - "x": 212.28303330227442, - "y": 74.19713673972853 + "x": 212.28303, + "y": 74.19714 }, { "body": null, "index": 19, "isInternal": false, - "x": 218.7450333022744, - "y": 73.41213673972854 + "x": 218.74503, + "y": 73.41214 }, { "body": null, "index": 20, "isInternal": false, - "x": 225.2070333022744, - "y": 74.19713673972853 + "x": 225.20703, + "y": 74.19714 }, { "body": null, "index": 21, "isInternal": false, - "x": 231.2930333022744, - "y": 76.50513673972856 + "x": 231.29303, + "y": 76.50514 }, { "body": null, "index": 22, "isInternal": false, - "x": 236.6490333022744, - "y": 80.20213673972853 + "x": 236.64903, + "y": 80.20214 }, { "body": null, "index": 23, "isInternal": false, - "x": 240.9660333022744, - "y": 85.07413673972854 + "x": 240.96603, + "y": 85.07414 }, { "body": null, "index": 24, "isInternal": false, - "x": 243.9900333022744, - "y": 90.83813673972855 + "x": 243.99003, + "y": 90.83814 }, { "body": null, "index": 25, "isInternal": false, - "x": 245.5480333022744, - "y": 97.15813673972855 + "x": 245.54803, + "y": 97.15814 }, [], [ @@ -2924,14 +2924,14 @@ } ], { - "angleA": 0.08314035055958939, - "angleB": -0.04743344093529124, + "angleA": 0.08314, + "angleB": -0.04743, "angularStiffness": 0, "bodyA": null, "bodyB": null, "id": 8, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 323 }, @@ -2945,8 +2945,8 @@ "type": "constraint" }, { - "x": -64.77547904326654, - "y": -5.397899101996622 + "x": -64.77548, + "y": -5.3979 }, { "x": 0, @@ -2958,14 +2958,14 @@ "visible": true }, { - "angleA": 0.08314035055958939, - "angleB": 2.7600401999399274e-22, + "angleA": 0.08314, + "angleB": 0, "angularStiffness": 0, "bodyA": null, "bodyB": null, "id": 9, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 327 }, @@ -2979,8 +2979,8 @@ "type": "constraint" }, { - "x": 64.77547904326657, - "y": 5.397899101996622 + "x": 64.77548, + "y": 5.3979 }, { "x": 0, @@ -3023,7 +3023,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2126.1884457348515, + "area": 2126.18845, "axes": { "#": 333 }, @@ -3044,13 +3044,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 3956.4572567658843, - "inverseInertia": 0.00025275137202352267, - "inverseMass": 0.47032519718842736, + "inertia": 3956.45726, + "inverseInertia": 0.00025, + "inverseMass": 0.47033, "isSleeping": false, "isStatic": false, "label": "Trapezoid Body", - "mass": 2.1261884457348517, + "mass": 2.12619, "motion": 0, "parent": null, "position": { @@ -3072,7 +3072,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3135,68 +3135,68 @@ } ], { - "x": -0.2608196030353321, - "y": 0.9653875567213884 + "x": -0.26082, + "y": 0.96539 }, { - "x": -0.7114878490641614, - "y": 0.7026983994816361 + "x": -0.71149, + "y": 0.7027 }, { - "x": -0.968554942731206, - "y": 0.2487997646923126 + "x": -0.96855, + "y": 0.2488 }, { - "x": -0.8660612147845096, - "y": -0.4999379683980598 + "x": -0.86606, + "y": -0.49994 }, { - "x": -0.8655659554873377, - "y": -0.5007949447641141 + "x": -0.86557, + "y": -0.50079 }, { - "x": -0.6554564466022562, - "y": -0.7552329750530916 + "x": -0.65546, + "y": -0.75523 }, { - "x": -0.37397774803534234, - "y": -0.9274376765984946 + "x": -0.37398, + "y": -0.92744 }, { - "x": -0.005605531968706713, - "y": -0.9999842888822543 + "x": -0.00561, + "y": -0.99998 }, { - "x": 0.16498842154925927, - "y": -0.9862955037688674 + "x": 0.16499, + "y": -0.9863 }, { - "x": 0.4770005470622027, - "y": -0.8789029969811 + "x": 0.477, + "y": -0.8789 }, { - "x": 0.7370746030083672, - "y": -0.6758113861130618 + "x": 0.73707, + "y": -0.67581 }, { - "x": 0.8346351660357039, - "y": -0.5508031768395611 + "x": 0.83464, + "y": -0.5508 }, { - "x": 0.9955004136718107, - "y": -0.09475719697866514 + "x": 0.9955, + "y": -0.09476 }, { - "x": 0.9077770766774552, - "y": 0.4194529521399672 + "x": 0.90778, + "y": 0.41945 }, { - "x": 0.5730408239129532, - "y": 0.8195268233127967 + "x": 0.57304, + "y": 0.81953 }, { - "x": 0.009871783771359135, - "y": 0.9999512727554136 + "x": 0.00987, + "y": 0.99995 }, { "max": { @@ -3207,12 +3207,12 @@ } }, { - "x": 388.0994228804999, - "y": 333.0661713468761 + "x": 388.09942, + "y": 333.06617 }, { - "x": 311.4901800712157, - "y": 300.7452423491823 + "x": 311.49018, + "y": 300.74524 }, { "category": 1, @@ -3230,7 +3230,7 @@ }, { "x": 350, - "y": 317.73575476702496 + "y": 317.73575 }, { "x": 0, @@ -3238,7 +3238,7 @@ }, { "x": 350, - "y": 314.8284840519894 + "y": 314.82848 }, { "endCol": 8, @@ -3262,7 +3262,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3318,120 +3318,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 321.48940752697604, - "y": 333.0661713468761 + "x": 321.48941, + "y": 333.06617 }, { "body": null, "index": 1, "isInternal": false, - "x": 316.45356754058963, - "y": 331.70563404032595 + "x": 316.45357, + "y": 331.70563 }, { "body": null, "index": 2, "isInternal": false, - "x": 312.7880171884624, - "y": 327.9942344731784 + "x": 312.78802, + "y": 327.99423 }, { "body": null, "index": 3, "isInternal": false, - "x": 311.4901800712157, - "y": 322.9418721595572 + "x": 311.49018, + "y": 322.94187 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.5576196414109, - "y": 307.2340079332984 + "x": 320.55762, + "y": 307.23401 }, { "body": null, "index": 5, "isInternal": false, - "x": 322.21012699054046, - "y": 304.3778407184457 + "x": 322.21013, + "y": 304.37784 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.7022209196597, - "y": 302.2149862280619 + "x": 324.70222, + "y": 302.21499 }, { "body": null, "index": 7, "isInternal": false, - "x": 327.7625504866057, - "y": 300.98094626120394 + "x": 327.76255, + "y": 300.98095 }, { "body": null, "index": 8, "isInternal": false, - "x": 369.8103365246699, - "y": 300.7452423491823 + "x": 369.81034, + "y": 300.74524 }, { "body": null, "index": 9, "isInternal": false, - "x": 373.06488329162903, - "y": 301.28966593408865 + "x": 373.06488, + "y": 301.28967 }, { "body": null, "index": 10, "isInternal": false, - "x": 375.9650596549655, - "y": 302.8636572808472 + "x": 375.96506, + "y": 302.86366 }, { "body": null, "index": 11, "isInternal": false, - "x": 378.1950807321617, - "y": 305.2958327871351 + "x": 378.19508, + "y": 305.29583 }, { "body": null, "index": 12, "isInternal": false, - "x": 387.60513219048556, - "y": 319.5549369309922 + "x": 387.60513, + "y": 319.55494 }, { "body": null, "index": 13, "isInternal": false, - "x": 388.0994228804999, - "y": 324.7478573853 + "x": 388.09942, + "y": 324.74786 }, { "body": null, "index": 14, "isInternal": false, - "x": 385.911391831117, - "y": 329.48317852097176 + "x": 385.91139, + "y": 329.48318 }, { "body": null, "index": 15, "isInternal": false, - "x": 381.636418616452, - "y": 332.4723841252921 + "x": 381.63642, + "y": 332.47238 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1788.935704, + "area": 1788.9357, "axes": { "#": 381 }, @@ -3453,13 +3453,13 @@ "frictionAir": 0.01, "frictionStatic": 10, "id": 12, - "inertia": 20374.221073499848, - "inverseInertia": 0.00004908163096849237, - "inverseMass": 0.055899158240513266, + "inertia": 20374.22107, + "inverseInertia": 0.00005, + "inverseMass": 0.0559, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.88935704, + "mass": 17.88936, "motion": 0, "parent": null, "position": { @@ -3481,7 +3481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3532,48 +3532,48 @@ } ], { - "x": -0.9659003038284947, - "y": -0.25891427744336837 + "x": -0.9659, + "y": -0.25891 }, { - "x": -0.8660048470041256, - "y": -0.5000356036977377 + "x": -0.866, + "y": -0.50004 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000356036977377, - "y": -0.8660048470041256 + "x": -0.50004, + "y": -0.866 }, { - "x": -0.25891427744336837, - "y": -0.9659003038284947 + "x": -0.25891, + "y": -0.9659 }, { "x": 0, "y": -1 }, { - "x": 0.25891427744336837, - "y": -0.9659003038284947 + "x": 0.25891, + "y": -0.9659 }, { - "x": 0.5000356036977377, - "y": -0.8660048470041256 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660048470041256, - "y": -0.5000356036977377 + "x": 0.866, + "y": -0.50004 }, { - "x": 0.9659003038284947, - "y": -0.25891427744336837 + "x": 0.9659, + "y": -0.25891 }, { "x": 1, @@ -3589,11 +3589,11 @@ }, { "x": 313.795, - "y": 341.530754767025 + "y": 341.53075 }, { "x": 266.205, - "y": 293.94075476702494 + "y": 293.94075 }, { "category": 1, @@ -3611,7 +3611,7 @@ }, { "x": 290, - "y": 317.73575476702496 + "y": 317.73575 }, { "x": 0, @@ -3619,7 +3619,7 @@ }, { "x": 290, - "y": 314.8284840519894 + "y": 314.82848 }, { "endCol": 6, @@ -3643,7 +3643,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3724,175 +3724,175 @@ "index": 0, "isInternal": false, "x": 313.795, - "y": 320.86875476702494 + "y": 320.86875 }, { "body": null, "index": 1, "isInternal": false, "x": 312.173, - "y": 326.919754767025 + "y": 326.91975 }, { "body": null, "index": 2, "isInternal": false, "x": 309.04, - "y": 332.34575476702497 + "y": 332.34575 }, { "body": null, "index": 3, "isInternal": false, "x": 304.61, - "y": 336.775754767025 + "y": 336.77575 }, { "body": null, "index": 4, "isInternal": false, "x": 299.184, - "y": 339.90875476702496 + "y": 339.90875 }, { "body": null, "index": 5, "isInternal": false, "x": 293.133, - "y": 341.530754767025 + "y": 341.53075 }, { "body": null, "index": 6, "isInternal": false, "x": 286.867, - "y": 341.530754767025 + "y": 341.53075 }, { "body": null, "index": 7, "isInternal": false, "x": 280.816, - "y": 339.90875476702496 + "y": 339.90875 }, { "body": null, "index": 8, "isInternal": false, "x": 275.39, - "y": 336.775754767025 + "y": 336.77575 }, { "body": null, "index": 9, "isInternal": false, "x": 270.96, - "y": 332.34575476702497 + "y": 332.34575 }, { "body": null, "index": 10, "isInternal": false, "x": 267.827, - "y": 326.919754767025 + "y": 326.91975 }, { "body": null, "index": 11, "isInternal": false, "x": 266.205, - "y": 320.86875476702494 + "y": 320.86875 }, { "body": null, "index": 12, "isInternal": false, "x": 266.205, - "y": 314.602754767025 + "y": 314.60275 }, { "body": null, "index": 13, "isInternal": false, "x": 267.827, - "y": 308.55175476702493 + "y": 308.55175 }, { "body": null, "index": 14, "isInternal": false, "x": 270.96, - "y": 303.12575476702494 + "y": 303.12575 }, { "body": null, "index": 15, "isInternal": false, "x": 275.39, - "y": 298.69575476702494 + "y": 298.69575 }, { "body": null, "index": 16, "isInternal": false, "x": 280.816, - "y": 295.56275476702496 + "y": 295.56275 }, { "body": null, "index": 17, "isInternal": false, "x": 286.867, - "y": 293.94075476702494 + "y": 293.94075 }, { "body": null, "index": 18, "isInternal": false, "x": 293.133, - "y": 293.94075476702494 + "y": 293.94075 }, { "body": null, "index": 19, "isInternal": false, "x": 299.184, - "y": 295.56275476702496 + "y": 295.56275 }, { "body": null, "index": 20, "isInternal": false, "x": 304.61, - "y": 298.69575476702494 + "y": 298.69575 }, { "body": null, "index": 21, "isInternal": false, "x": 309.04, - "y": 303.12575476702494 + "y": 303.12575 }, { "body": null, "index": 22, "isInternal": false, "x": 312.173, - "y": 308.55175476702493 + "y": 308.55175 }, { "body": null, "index": 23, "isInternal": false, "x": 313.795, - "y": 314.602754767025 + "y": 314.60275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1788.935704, + "area": 1788.9357, "axes": { "#": 433 }, @@ -3914,13 +3914,13 @@ "frictionAir": 0.01, "frictionStatic": 10, "id": 13, - "inertia": 20374.221073499848, - "inverseInertia": 0.00004908163096849237, - "inverseMass": 0.055899158240513266, + "inertia": 20374.22107, + "inverseInertia": 0.00005, + "inverseMass": 0.0559, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 17.88935704, + "mass": 17.88936, "motion": 0, "parent": null, "position": { @@ -3942,7 +3942,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3993,48 +3993,48 @@ } ], { - "x": -0.9659003038284947, - "y": -0.25891427744336837 + "x": -0.9659, + "y": -0.25891 }, { - "x": -0.8660048470041256, - "y": -0.5000356036977377 + "x": -0.866, + "y": -0.50004 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.5000356036977377, - "y": -0.8660048470041256 + "x": -0.50004, + "y": -0.866 }, { - "x": -0.25891427744336837, - "y": -0.9659003038284947 + "x": -0.25891, + "y": -0.9659 }, { "x": 0, "y": -1 }, { - "x": 0.25891427744336837, - "y": -0.9659003038284947 + "x": 0.25891, + "y": -0.9659 }, { - "x": 0.5000356036977377, - "y": -0.8660048470041256 + "x": 0.50004, + "y": -0.866 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.8660048470041256, - "y": -0.5000356036977377 + "x": 0.866, + "y": -0.50004 }, { - "x": 0.9659003038284947, - "y": -0.25891427744336837 + "x": 0.9659, + "y": -0.25891 }, { "x": 1, @@ -4050,11 +4050,11 @@ }, { "x": 433.795, - "y": 341.530754767025 + "y": 341.53075 }, { "x": 386.205, - "y": 293.94075476702494 + "y": 293.94075 }, { "category": 1, @@ -4072,7 +4072,7 @@ }, { "x": 410, - "y": 317.73575476702496 + "y": 317.73575 }, { "x": 0, @@ -4080,7 +4080,7 @@ }, { "x": 410, - "y": 314.8284840519894 + "y": 314.82848 }, { "endCol": 9, @@ -4104,7 +4104,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4185,168 +4185,168 @@ "index": 0, "isInternal": false, "x": 433.795, - "y": 320.86875476702494 + "y": 320.86875 }, { "body": null, "index": 1, "isInternal": false, "x": 432.173, - "y": 326.919754767025 + "y": 326.91975 }, { "body": null, "index": 2, "isInternal": false, "x": 429.04, - "y": 332.34575476702497 + "y": 332.34575 }, { "body": null, "index": 3, "isInternal": false, "x": 424.61, - "y": 336.775754767025 + "y": 336.77575 }, { "body": null, "index": 4, "isInternal": false, "x": 419.184, - "y": 339.90875476702496 + "y": 339.90875 }, { "body": null, "index": 5, "isInternal": false, "x": 413.133, - "y": 341.530754767025 + "y": 341.53075 }, { "body": null, "index": 6, "isInternal": false, "x": 406.867, - "y": 341.530754767025 + "y": 341.53075 }, { "body": null, "index": 7, "isInternal": false, "x": 400.816, - "y": 339.90875476702496 + "y": 339.90875 }, { "body": null, "index": 8, "isInternal": false, "x": 395.39, - "y": 336.775754767025 + "y": 336.77575 }, { "body": null, "index": 9, "isInternal": false, "x": 390.96, - "y": 332.34575476702497 + "y": 332.34575 }, { "body": null, "index": 10, "isInternal": false, "x": 387.827, - "y": 326.919754767025 + "y": 326.91975 }, { "body": null, "index": 11, "isInternal": false, "x": 386.205, - "y": 320.86875476702494 + "y": 320.86875 }, { "body": null, "index": 12, "isInternal": false, "x": 386.205, - "y": 314.602754767025 + "y": 314.60275 }, { "body": null, "index": 13, "isInternal": false, "x": 387.827, - "y": 308.55175476702493 + "y": 308.55175 }, { "body": null, "index": 14, "isInternal": false, "x": 390.96, - "y": 303.12575476702494 + "y": 303.12575 }, { "body": null, "index": 15, "isInternal": false, "x": 395.39, - "y": 298.69575476702494 + "y": 298.69575 }, { "body": null, "index": 16, "isInternal": false, "x": 400.816, - "y": 295.56275476702496 + "y": 295.56275 }, { "body": null, "index": 17, "isInternal": false, "x": 406.867, - "y": 293.94075476702494 + "y": 293.94075 }, { "body": null, "index": 18, "isInternal": false, "x": 413.133, - "y": 293.94075476702494 + "y": 293.94075 }, { "body": null, "index": 19, "isInternal": false, "x": 419.184, - "y": 295.56275476702496 + "y": 295.56275 }, { "body": null, "index": 20, "isInternal": false, "x": 424.61, - "y": 298.69575476702494 + "y": 298.69575 }, { "body": null, "index": 21, "isInternal": false, "x": 429.04, - "y": 303.12575476702494 + "y": 303.12575 }, { "body": null, "index": 22, "isInternal": false, "x": 432.173, - "y": 308.55175476702493 + "y": 308.55175 }, { "body": null, "index": 23, "isInternal": false, "x": 433.795, - "y": 314.602754767025 + "y": 314.60275 }, [], [ @@ -4365,7 +4365,7 @@ "bodyB": null, "id": 14, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 487 }, @@ -4399,7 +4399,7 @@ "bodyB": null, "id": 15, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 491 }, diff --git a/test/browser/refs/catapult/catapult-0.json b/test/browser/refs/catapult/catapult-0.json index 160e84a9..47a74d5c 100644 --- a/test/browser/refs/catapult/catapult-0.json +++ b/test/browser/refs/catapult/catapult-0.json @@ -850,8 +850,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 219306.66666666666, - "inverseInertia": 0.000004559824902723735, + "inertia": 219306.66667, + "inverseInertia": 0, "inverseMass": 0.15625, "isSleeping": false, "isStatic": false, @@ -1204,7 +1204,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 7777.744665999999, + "area": 7777.74467, "axes": { "#": 129 }, @@ -1218,7 +1218,7 @@ "constraintImpulse": { "#": 147 }, - "density": 0.005000000000000001, + "density": 0.005, "force": { "#": 148 }, @@ -1226,13 +1226,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 192559.86686574563, - "inverseInertia": 0.000005193190129785499, - "inverseMass": 0.0257143951863436, + "inertia": 192559.86687, + "inverseInertia": 0.00001, + "inverseMass": 0.02571, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 38.88872333, + "mass": 38.88872, "motion": 0, "parent": null, "position": { @@ -1305,52 +1305,52 @@ } ], { - "x": -0.970952042258738, - "y": -0.239274176696078 + "x": -0.97095, + "y": -0.23927 }, { - "x": -0.8854431390332113, - "y": -0.46474772461951164 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.748538767034939, - "y": -0.6630910301352396 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680489228149688, - "y": -0.8229947881297631 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35459420851145496, - "y": -0.9350202924483163 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12054195746334154, - "y": -0.992708233314757 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12054195746334154, - "y": -0.992708233314757 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.35459420851145496, - "y": -0.9350202924483163 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680489228149688, - "y": -0.8229947881297631 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.748538767034939, - "y": -0.6630910301352396 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854431390332113, - "y": -0.46474772461951164 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.970952042258738, - "y": -0.239274176696078 + "x": 0.97095, + "y": -0.23927 }, { "x": 1, @@ -1605,7 +1605,7 @@ "index": 15, "isInternal": false, "x": 518.851, - "y": 71.59700000000001 + "y": 71.597 }, { "body": null, @@ -1661,7 +1661,7 @@ "index": 23, "isInternal": false, "x": 601.149, - "y": 71.59700000000001 + "y": 71.597 }, { "body": null, @@ -1761,8 +1761,8 @@ "frictionStatic": 0.5, "id": 5, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1941,8 +1941,8 @@ "frictionStatic": 0.5, "id": 6, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2121,8 +2121,8 @@ "frictionStatic": 0.5, "id": 7, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2301,8 +2301,8 @@ "frictionStatic": 0.5, "id": 8, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2481,8 +2481,8 @@ "frictionStatic": 0.5, "id": 9, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2661,8 +2661,8 @@ "frictionStatic": 0.5, "id": 10, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2858,7 +2858,7 @@ "bodyA": null, "id": 14, "label": "Constraint", - "length": 60.8276253029822, + "length": 60.82763, "pointA": { "#": 321 }, @@ -2890,7 +2890,7 @@ "bodyA": null, "id": 15, "label": "Constraint", - "length": 60.8276253029822, + "length": 60.82763, "pointA": { "#": 325 }, diff --git a/test/browser/refs/catapult/catapult-10.json b/test/browser/refs/catapult/catapult-10.json index f86dff7a..c37d1275 100644 --- a/test/browser/refs/catapult/catapult-10.json +++ b/test/browser/refs/catapult/catapult-10.json @@ -865,10 +865,10 @@ "y": 605.25 }, { - "angle": 0.0010350529413107516, - "anglePrev": 0.000934578938536751, - "angularSpeed": 0.00010047400277400065, - "angularVelocity": 0.00010047400277400067, + "angle": 0.00104, + "anglePrev": 0.00093, + "angularSpeed": 0.0001, + "angularVelocity": 0.0001, "area": 6400, "axes": { "#": 91 @@ -890,8 +890,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 219306.66666666666, - "inverseInertia": 0.000004559824902723735, + "inertia": 219306.66667, + "inverseInertia": 0, "inverseMass": 0.15625, "isSleeping": false, "isStatic": false, @@ -918,7 +918,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2765373258126698, + "speed": 0.27654, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -939,12 +939,12 @@ } ], { - "x": -0.0010350527564960915, - "y": 0.9999994643327519 + "x": -0.00104, + "y": 1 }, { - "x": -0.9999994643327519, - "y": -0.0010350527564960915 + "x": -1, + "y": -0.00104 }, { "max": { @@ -955,12 +955,12 @@ } }, { - "x": 560.2101501932867, - "y": 530.1840386806525 + "x": 560.21015, + "y": 530.18404 }, { - "x": 240.18962055167623, - "y": 509.8528325119186 + "x": 240.18962, + "y": 509.85283 }, { "category": 1, @@ -977,16 +977,16 @@ "y": 0 }, { - "x": 400.1998853724814, - "y": 520.0184355962855 + "x": 400.19989, + "y": 520.01844 }, { "x": 0, "y": 0 }, { - "x": 400.1908418158024, - "y": 520.0194747602809 + "x": 400.19084, + "y": 520.01947 }, { "endCol": 11, @@ -1009,8 +1009,8 @@ "yScale": 1 }, { - "x": 0.017224548796889394, - "y": 0.04903256723002869 + "x": 0.01722, + "y": 0.04903 }, [ { @@ -1030,29 +1030,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 240.21032160680613, - "y": 509.8528325119186 + "x": 240.21032, + "y": 509.85283 }, { "body": null, "index": 1, "isInternal": false, - "x": 560.2101501932867, - "y": 510.18404939399744 + "x": 560.21015, + "y": 510.18405 }, { "body": null, "index": 2, "isInternal": false, - "x": 560.1894491381569, - "y": 530.1840386806525 + "x": 560.18945, + "y": 530.18404 }, { "body": null, "index": 3, "isInternal": false, - "x": 240.18962055167623, - "y": 529.8528217985739 + "x": 240.18962, + "y": 529.85282 }, { "angle": 0, @@ -1264,7 +1264,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 7777.744665999999, + "area": 7777.74467, "axes": { "#": 135 }, @@ -1278,7 +1278,7 @@ "constraintImpulse": { "#": 153 }, - "density": 0.005000000000000001, + "density": 0.005, "force": { "#": 154 }, @@ -1286,13 +1286,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 192559.86686574563, - "inverseInertia": 0.000005193190129785499, - "inverseMass": 0.0257143951863436, + "inertia": 192559.86687, + "inverseInertia": 0.00001, + "inverseMass": 0.02571, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 38.88872333, + "mass": 38.88872, "motion": 0, "parent": null, "position": { @@ -1314,7 +1314,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1368,52 +1368,52 @@ } ], { - "x": -0.970952042258738, - "y": -0.239274176696078 + "x": -0.97095, + "y": -0.23927 }, { - "x": -0.8854431390332113, - "y": -0.46474772461951164 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.748538767034939, - "y": -0.6630910301352396 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680489228149688, - "y": -0.8229947881297631 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35459420851145496, - "y": -0.9350202924483163 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12054195746334154, - "y": -0.992708233314757 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12054195746334154, - "y": -0.992708233314757 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.35459420851145496, - "y": -0.9350202924483163 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680489228149688, - "y": -0.8229947881297631 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.748538767034939, - "y": -0.6630910301352396 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854431390332113, - "y": -0.46474772461951164 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.970952042258738, - "y": -0.239274176696078 + "x": 0.97095, + "y": -0.23927 }, { "x": 1, @@ -1429,11 +1429,11 @@ }, { "x": 609.635, - "y": 167.73575476702575 + "y": 167.73575 }, { "x": 510.365, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -1451,7 +1451,7 @@ }, { "x": 560, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -1459,7 +1459,7 @@ }, { "x": 560, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 12, @@ -1483,7 +1483,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1570,182 +1570,182 @@ "index": 0, "isInternal": false, "x": 609.635, - "y": 123.76275476702573 + "y": 123.76275 }, { "body": null, "index": 1, "isInternal": false, "x": 606.751, - "y": 135.46575476702574 + "y": 135.46575 }, { "body": null, "index": 2, "isInternal": false, "x": 601.149, - "y": 146.13875476702574 + "y": 146.13875 }, { "body": null, "index": 3, "isInternal": false, "x": 593.156, - "y": 155.16175476702574 + "y": 155.16175 }, { "body": null, "index": 4, "isInternal": false, "x": 583.236, - "y": 162.00875476702575 + "y": 162.00875 }, { "body": null, "index": 5, "isInternal": false, "x": 571.966, - "y": 166.28275476702575 + "y": 166.28275 }, { "body": null, "index": 6, "isInternal": false, "x": 560, - "y": 167.73575476702575 + "y": 167.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 548.034, - "y": 166.28275476702575 + "y": 166.28275 }, { "body": null, "index": 8, "isInternal": false, "x": 536.764, - "y": 162.00875476702575 + "y": 162.00875 }, { "body": null, "index": 9, "isInternal": false, "x": 526.844, - "y": 155.16175476702574 + "y": 155.16175 }, { "body": null, "index": 10, "isInternal": false, "x": 518.851, - "y": 146.13875476702574 + "y": 146.13875 }, { "body": null, "index": 11, "isInternal": false, "x": 513.249, - "y": 135.46575476702574 + "y": 135.46575 }, { "body": null, "index": 12, "isInternal": false, "x": 510.365, - "y": 123.76275476702573 + "y": 123.76275 }, { "body": null, "index": 13, "isInternal": false, "x": 510.365, - "y": 111.70875476702572 + "y": 111.70875 }, { "body": null, "index": 14, "isInternal": false, "x": 513.249, - "y": 100.00575476702572 + "y": 100.00575 }, { "body": null, "index": 15, "isInternal": false, "x": 518.851, - "y": 89.33275476702573 + "y": 89.33275 }, { "body": null, "index": 16, "isInternal": false, "x": 526.844, - "y": 80.30975476702572 + "y": 80.30975 }, { "body": null, "index": 17, "isInternal": false, "x": 536.764, - "y": 73.46275476702573 + "y": 73.46275 }, { "body": null, "index": 18, "isInternal": false, "x": 548.034, - "y": 69.18875476702574 + "y": 69.18875 }, { "body": null, "index": 19, "isInternal": false, "x": 560, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 20, "isInternal": false, "x": 571.966, - "y": 69.18875476702574 + "y": 69.18875 }, { "body": null, "index": 21, "isInternal": false, "x": 583.236, - "y": 73.46275476702573 + "y": 73.46275 }, { "body": null, "index": 22, "isInternal": false, "x": 593.156, - "y": 80.30975476702572 + "y": 80.30975 }, { "body": null, "index": 23, "isInternal": false, "x": 601.149, - "y": 89.33275476702573 + "y": 89.33275 }, { "body": null, "index": 24, "isInternal": false, "x": 606.751, - "y": 100.00575476702572 + "y": 100.00575 }, { "body": null, "index": 25, "isInternal": false, "x": 609.635, - "y": 111.70875476702572 + "y": 111.70875 }, { "max": { @@ -1831,8 +1831,8 @@ "frictionStatic": 0.5, "id": 5, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1858,7 +1858,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1896,11 +1896,11 @@ }, { "x": 280, - "y": 302.73575476702496 + "y": 302.73575 }, { "x": 250, - "y": 272.735754767025 + "y": 272.73575 }, { "category": 1, @@ -1918,7 +1918,7 @@ }, { "x": 265, - "y": 287.73575476702496 + "y": 287.73575 }, { "x": 0, @@ -1926,7 +1926,7 @@ }, { "x": 265, - "y": 284.8284840519894 + "y": 284.82848 }, { "endCol": 5, @@ -1950,7 +1950,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1971,28 +1971,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 272.735754767025 + "y": 272.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 272.735754767025 + "y": 272.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 280, - "y": 302.73575476702496 + "y": 302.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 302.73575476702496 + "y": 302.73575 }, { "angle": 0, @@ -2021,8 +2021,8 @@ "frictionStatic": 0.5, "id": 6, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2048,7 +2048,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2086,11 +2086,11 @@ }, { "x": 280, - "y": 332.73575476702496 + "y": 332.73575 }, { "x": 250, - "y": 302.73575476702496 + "y": 302.73575 }, { "category": 1, @@ -2108,7 +2108,7 @@ }, { "x": 265, - "y": 317.73575476702496 + "y": 317.73575 }, { "x": 0, @@ -2116,7 +2116,7 @@ }, { "x": 265, - "y": 314.8284840519894 + "y": 314.82848 }, { "endCol": 5, @@ -2140,7 +2140,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2161,28 +2161,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 302.73575476702496 + "y": 302.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 302.73575476702496 + "y": 302.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 280, - "y": 332.73575476702496 + "y": 332.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 332.73575476702496 + "y": 332.73575 }, { "angle": 0, @@ -2211,8 +2211,8 @@ "frictionStatic": 0.5, "id": 7, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2238,7 +2238,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2276,11 +2276,11 @@ }, { "x": 280, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 250, - "y": 332.73575476702496 + "y": 332.73575 }, { "category": 1, @@ -2298,7 +2298,7 @@ }, { "x": 265, - "y": 347.73575476702496 + "y": 347.73575 }, { "x": 0, @@ -2306,7 +2306,7 @@ }, { "x": 265, - "y": 344.8284840519894 + "y": 344.82848 }, { "endCol": 5, @@ -2330,7 +2330,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2351,28 +2351,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 332.73575476702496 + "y": 332.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 332.73575476702496 + "y": 332.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 280, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -2401,8 +2401,8 @@ "frictionStatic": 0.5, "id": 8, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2428,7 +2428,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2466,11 +2466,11 @@ }, { "x": 280, - "y": 392.73575476702496 + "y": 392.73575 }, { "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -2488,7 +2488,7 @@ }, { "x": 265, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -2496,7 +2496,7 @@ }, { "x": 265, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 5, @@ -2520,7 +2520,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2541,28 +2541,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 280, - "y": 392.73575476702496 + "y": 392.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 392.73575476702496 + "y": 392.73575 }, { "angle": 0, @@ -2591,8 +2591,8 @@ "frictionStatic": 0.5, "id": 9, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2618,7 +2618,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2656,11 +2656,11 @@ }, { "x": 280, - "y": 422.73575476702496 + "y": 422.73575 }, { "x": 250, - "y": 392.73575476702496 + "y": 392.73575 }, { "category": 1, @@ -2678,7 +2678,7 @@ }, { "x": 265, - "y": 407.73575476702496 + "y": 407.73575 }, { "x": 0, @@ -2686,7 +2686,7 @@ }, { "x": 265, - "y": 404.8284840519894 + "y": 404.82848 }, { "endCol": 5, @@ -2710,7 +2710,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2731,28 +2731,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 392.73575476702496 + "y": 392.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 392.73575476702496 + "y": 392.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 280, - "y": 422.73575476702496 + "y": 422.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 422.73575476702496 + "y": 422.73575 }, { "angle": 0, @@ -2781,8 +2781,8 @@ "frictionStatic": 0.5, "id": 10, "inertia": 540, - "inverseInertia": 0.001851851851851852, - "inverseMass": 1.1111111111111112, + "inverseInertia": 0.00185, + "inverseMass": 1.11111, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2808,7 +2808,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2846,11 +2846,11 @@ }, { "x": 280, - "y": 452.73575476702496 + "y": 452.73575 }, { "x": 250, - "y": 422.73575476702496 + "y": 422.73575 }, { "category": 1, @@ -2868,7 +2868,7 @@ }, { "x": 265, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 0, @@ -2876,7 +2876,7 @@ }, { "x": 265, - "y": 434.8284840519894 + "y": 434.82848 }, { "endCol": 5, @@ -2900,7 +2900,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2921,28 +2921,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 422.73575476702496 + "y": 422.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 422.73575476702496 + "y": 422.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 280, - "y": 452.73575476702496 + "y": 452.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 452.73575476702496 + "y": 452.73575 }, [], [], @@ -2983,12 +2983,12 @@ "visible": true }, { - "angleA": 0.0010350529413107516, + "angleA": 0.00104, "angularStiffness": 0, "bodyA": null, "id": 14, "label": "Constraint", - "length": 60.8276253029822, + "length": 60.82763, "pointA": { "#": 334 }, @@ -3015,12 +3015,12 @@ "visible": true }, { - "angleA": 0.0010350529413107516, + "angleA": 0.00104, "angularStiffness": 0, "bodyA": null, "id": 15, "label": "Constraint", - "length": 60.8276253029822, + "length": 60.82763, "pointA": { "#": 338 }, diff --git a/test/browser/refs/chains/chains-0.json b/test/browser/refs/chains/chains-0.json index 3e6eaf5c..e846784d 100644 --- a/test/browser/refs/chains/chains-0.json +++ b/test/browser/refs/chains/chains-0.json @@ -916,8 +916,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1096,8 +1096,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1276,8 +1276,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1456,8 +1456,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1636,8 +1636,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1816,8 +1816,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1996,8 +1996,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2176,8 +2176,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2356,8 +2356,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2536,8 +2536,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3114,7 +3114,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 347 }, @@ -3136,13 +3136,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3206,40 +3206,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3371,27 +3371,27 @@ "index": 0, "isInternal": false, "x": 539.508, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 537.5740000000001, + "x": 537.574, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 533.8960000000001, - "y": 133.89600000000002 + "x": 533.896, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 528.8340000000001, + "x": 528.834, "y": 137.574 }, { @@ -3412,7 +3412,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 510.67400000000004, + "x": 510.674, "y": 137.574 }, { @@ -3420,7 +3420,7 @@ "index": 7, "isInternal": false, "x": 505.612, - "y": 133.89600000000002 + "y": 133.896 }, { "body": null, @@ -3434,7 +3434,7 @@ "index": 9, "isInternal": false, "x": 500, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -3455,14 +3455,14 @@ "index": 12, "isInternal": false, "x": 505.612, - "y": 105.61200000000001 + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 510.67400000000004, - "y": 101.93400000000001 + "x": 510.674, + "y": 101.934 }, { "body": null, @@ -3482,21 +3482,21 @@ "body": null, "index": 16, "isInternal": false, - "x": 528.8340000000001, - "y": 101.93400000000001 + "x": 528.834, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 533.8960000000001, - "y": 105.61200000000001 + "x": 533.896, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 537.5740000000001, + "x": 537.574, "y": 110.674 }, { @@ -3511,7 +3511,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 392 }, @@ -3533,13 +3533,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3603,40 +3603,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3651,7 +3651,7 @@ } }, { - "x": 589.0160000000001, + "x": 589.016, "y": 139.508 }, { @@ -3673,7 +3673,7 @@ "y": 0 }, { - "x": 569.2620000000001, + "x": 569.262, "y": 119.754 }, { @@ -3681,7 +3681,7 @@ "y": 0 }, { - "x": 569.2620000000001, + "x": 569.262, "y": 119.754 }, { @@ -3767,35 +3767,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 589.0160000000001, - "y": 122.88300000000001 + "x": 589.016, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 587.0820000000001, + "x": 587.082, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 583.4040000000001, - "y": 133.89600000000002 + "x": 583.404, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 578.3420000000001, + "x": 578.342, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 572.3910000000001, + "x": 572.391, "y": 139.508 }, { @@ -3817,7 +3817,7 @@ "index": 7, "isInternal": false, "x": 555.12, - "y": 133.89600000000002 + "y": 133.896 }, { "body": null, @@ -3831,7 +3831,7 @@ "index": 9, "isInternal": false, "x": 549.508, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -3852,14 +3852,14 @@ "index": 12, "isInternal": false, "x": 555.12, - "y": 105.61200000000001 + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, "x": 560.182, - "y": 101.93400000000001 + "y": 101.934 }, { "body": null, @@ -3872,35 +3872,35 @@ "body": null, "index": 15, "isInternal": false, - "x": 572.3910000000001, + "x": 572.391, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 578.3420000000001, - "y": 101.93400000000001 + "x": 578.342, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 583.4040000000001, - "y": 105.61200000000001 + "x": 583.404, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 587.0820000000001, + "x": 587.082, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 589.0160000000001, + "x": 589.016, "y": 116.625 }, { @@ -3908,7 +3908,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 437 }, @@ -3930,13 +3930,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4000,40 +4000,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4048,11 +4048,11 @@ } }, { - "x": 638.5240000000001, + "x": 638.524, "y": 139.508 }, { - "x": 599.0160000000001, + "x": 599.016, "y": 100 }, { @@ -4070,7 +4070,7 @@ "y": 0 }, { - "x": 618.7700000000001, + "x": 618.77, "y": 119.754 }, { @@ -4078,7 +4078,7 @@ "y": 0 }, { - "x": 618.7700000000001, + "x": 618.77, "y": 119.754 }, { @@ -4164,42 +4164,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.5240000000001, - "y": 122.88300000000001 + "x": 638.524, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 636.5900000000001, + "x": 636.59, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 632.9120000000001, - "y": 133.89600000000002 + "x": 632.912, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 627.8500000000001, + "x": 627.85, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 621.8990000000001, + "x": 621.899, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 615.6410000000001, + "x": 615.641, "y": 139.508 }, { @@ -4214,7 +4214,7 @@ "index": 7, "isInternal": false, "x": 604.628, - "y": 133.89600000000002 + "y": 133.896 }, { "body": null, @@ -4227,14 +4227,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 599.0160000000001, - "y": 122.88300000000001 + "x": 599.016, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 599.0160000000001, + "x": 599.016, "y": 116.625 }, { @@ -4249,55 +4249,55 @@ "index": 12, "isInternal": false, "x": 604.628, - "y": 105.61200000000001 + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, "x": 609.69, - "y": 101.93400000000001 + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 615.6410000000001, + "x": 615.641, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 621.8990000000001, + "x": 621.899, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 627.8500000000001, - "y": 101.93400000000001 + "x": 627.85, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 632.9120000000001, - "y": 105.61200000000001 + "x": 632.912, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 636.5900000000001, + "x": 636.59, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 638.5240000000001, + "x": 638.524, "y": 116.625 }, { @@ -4305,7 +4305,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 482 }, @@ -4327,13 +4327,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4397,40 +4397,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4445,11 +4445,11 @@ } }, { - "x": 688.0320000000002, + "x": 688.032, "y": 139.508 }, { - "x": 648.5240000000001, + "x": 648.524, "y": 100 }, { @@ -4467,7 +4467,7 @@ "y": 0 }, { - "x": 668.2780000000001, + "x": 668.278, "y": 119.754 }, { @@ -4475,7 +4475,7 @@ "y": 0 }, { - "x": 668.2780000000001, + "x": 668.278, "y": 119.754 }, { @@ -4561,140 +4561,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 688.0320000000002, - "y": 122.88300000000001 + "x": 688.032, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 686.0980000000002, + "x": 686.098, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 682.4200000000002, - "y": 133.89600000000002 + "x": 682.42, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 677.3580000000002, + "x": 677.358, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 671.4070000000002, + "x": 671.407, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 665.1490000000001, + "x": 665.149, "y": 139.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 659.1980000000001, + "x": 659.198, "y": 137.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 654.1360000000001, - "y": 133.89600000000002 + "x": 654.136, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 650.4580000000001, + "x": 650.458, "y": 128.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 648.5240000000001, - "y": 122.88300000000001 + "x": 648.524, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 648.5240000000001, + "x": 648.524, "y": 116.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 650.4580000000001, + "x": 650.458, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 654.1360000000001, - "y": 105.61200000000001 + "x": 654.136, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 659.1980000000001, - "y": 101.93400000000001 + "x": 659.198, + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 665.1490000000001, + "x": 665.149, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 671.4070000000002, + "x": 671.407, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 677.3580000000002, - "y": 101.93400000000001 + "x": 677.358, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 682.4200000000002, - "y": 105.61200000000001 + "x": 682.42, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 686.0980000000002, + "x": 686.098, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 688.0320000000002, + "x": 688.032, "y": 116.625 }, { @@ -4702,7 +4702,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 527 }, @@ -4724,13 +4724,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4794,40 +4794,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4842,11 +4842,11 @@ } }, { - "x": 737.5400000000002, + "x": 737.54, "y": 139.508 }, { - "x": 698.0320000000002, + "x": 698.032, "y": 100 }, { @@ -4864,7 +4864,7 @@ "y": 0 }, { - "x": 717.7860000000002, + "x": 717.786, "y": 119.754 }, { @@ -4872,7 +4872,7 @@ "y": 0 }, { - "x": 717.7860000000002, + "x": 717.786, "y": 119.754 }, { @@ -4958,140 +4958,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 737.5400000000002, - "y": 122.88300000000001 + "x": 737.54, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 735.6060000000002, + "x": 735.606, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 731.9280000000002, - "y": 133.89600000000002 + "x": 731.928, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 726.8660000000002, + "x": 726.866, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 720.9150000000002, + "x": 720.915, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 714.6570000000002, + "x": 714.657, "y": 139.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 708.7060000000001, + "x": 708.706, "y": 137.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 703.6440000000001, - "y": 133.89600000000002 + "x": 703.644, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 699.9660000000001, + "x": 699.966, "y": 128.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 698.0320000000002, - "y": 122.88300000000001 + "x": 698.032, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 698.0320000000002, + "x": 698.032, "y": 116.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 699.9660000000001, + "x": 699.966, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 703.6440000000001, - "y": 105.61200000000001 + "x": 703.644, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 708.7060000000001, - "y": 101.93400000000001 + "x": 708.706, + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 714.6570000000002, + "x": 714.657, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 720.9150000000002, + "x": 720.915, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 726.8660000000002, - "y": 101.93400000000001 + "x": 726.866, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 731.9280000000002, - "y": 105.61200000000001 + "x": 731.928, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 735.6060000000002, + "x": 735.606, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 737.5400000000002, + "x": 737.54, "y": 116.625 }, { @@ -5099,7 +5099,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 572 }, @@ -5121,13 +5121,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5191,40 +5191,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5362,21 +5362,21 @@ "body": null, "index": 1, "isInternal": false, - "x": 537.5740000000001, + "x": 537.574, "y": 178.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 533.8960000000001, + "x": 533.896, "y": 183.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 528.8340000000001, + "x": 528.834, "y": 187.082 }, { @@ -5397,7 +5397,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 510.67400000000004, + "x": 510.674, "y": 187.082 }, { @@ -5446,7 +5446,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 510.67400000000004, + "x": 510.674, "y": 151.442 }, { @@ -5467,21 +5467,21 @@ "body": null, "index": 16, "isInternal": false, - "x": 528.8340000000001, + "x": 528.834, "y": 151.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 533.8960000000001, + "x": 533.896, "y": 155.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 537.5740000000001, + "x": 537.574, "y": 160.182 }, { @@ -5496,7 +5496,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 617 }, @@ -5518,13 +5518,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5588,40 +5588,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5636,7 +5636,7 @@ } }, { - "x": 589.0160000000001, + "x": 589.016, "y": 189.016 }, { @@ -5658,7 +5658,7 @@ "y": 0 }, { - "x": 569.2620000000001, + "x": 569.262, "y": 169.262 }, { @@ -5666,7 +5666,7 @@ "y": 0 }, { - "x": 569.2620000000001, + "x": 569.262, "y": 169.262 }, { @@ -5752,35 +5752,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 589.0160000000001, + "x": 589.016, "y": 172.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 587.0820000000001, + "x": 587.082, "y": 178.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 583.4040000000001, + "x": 583.404, "y": 183.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 578.3420000000001, + "x": 578.342, "y": 187.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 572.3910000000001, + "x": 572.391, "y": 189.016 }, { @@ -5857,35 +5857,35 @@ "body": null, "index": 15, "isInternal": false, - "x": 572.3910000000001, + "x": 572.391, "y": 149.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 578.3420000000001, + "x": 578.342, "y": 151.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 583.4040000000001, + "x": 583.404, "y": 155.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 587.0820000000001, + "x": 587.082, "y": 160.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 589.0160000000001, + "x": 589.016, "y": 166.133 }, { @@ -5893,7 +5893,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 662 }, @@ -5915,13 +5915,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5985,40 +5985,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6033,11 +6033,11 @@ } }, { - "x": 638.5240000000001, + "x": 638.524, "y": 189.016 }, { - "x": 599.0160000000001, + "x": 599.016, "y": 149.508 }, { @@ -6055,7 +6055,7 @@ "y": 0 }, { - "x": 618.7700000000001, + "x": 618.77, "y": 169.262 }, { @@ -6063,7 +6063,7 @@ "y": 0 }, { - "x": 618.7700000000001, + "x": 618.77, "y": 169.262 }, { @@ -6149,42 +6149,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.5240000000001, + "x": 638.524, "y": 172.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 636.5900000000001, + "x": 636.59, "y": 178.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 632.9120000000001, + "x": 632.912, "y": 183.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 627.8500000000001, + "x": 627.85, "y": 187.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 621.8990000000001, + "x": 621.899, "y": 189.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 615.6410000000001, + "x": 615.641, "y": 189.016 }, { @@ -6212,14 +6212,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 599.0160000000001, + "x": 599.016, "y": 172.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 599.0160000000001, + "x": 599.016, "y": 166.133 }, { @@ -6247,42 +6247,42 @@ "body": null, "index": 14, "isInternal": false, - "x": 615.6410000000001, + "x": 615.641, "y": 149.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 621.8990000000001, + "x": 621.899, "y": 149.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 627.8500000000001, + "x": 627.85, "y": 151.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 632.9120000000001, + "x": 632.912, "y": 155.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 636.5900000000001, + "x": 636.59, "y": 160.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 638.5240000000001, + "x": 638.524, "y": 166.133 }, { @@ -6290,7 +6290,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 707 }, @@ -6312,13 +6312,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6382,40 +6382,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6430,11 +6430,11 @@ } }, { - "x": 688.0320000000002, + "x": 688.032, "y": 189.016 }, { - "x": 648.5240000000001, + "x": 648.524, "y": 149.508 }, { @@ -6452,7 +6452,7 @@ "y": 0 }, { - "x": 668.2780000000001, + "x": 668.278, "y": 169.262 }, { @@ -6460,7 +6460,7 @@ "y": 0 }, { - "x": 668.2780000000001, + "x": 668.278, "y": 169.262 }, { @@ -6546,140 +6546,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 688.0320000000002, + "x": 688.032, "y": 172.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 686.0980000000002, + "x": 686.098, "y": 178.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 682.4200000000002, + "x": 682.42, "y": 183.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 677.3580000000002, + "x": 677.358, "y": 187.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 671.4070000000002, + "x": 671.407, "y": 189.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 665.1490000000001, + "x": 665.149, "y": 189.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 659.1980000000001, + "x": 659.198, "y": 187.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 654.1360000000001, + "x": 654.136, "y": 183.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 650.4580000000001, + "x": 650.458, "y": 178.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 648.5240000000001, + "x": 648.524, "y": 172.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 648.5240000000001, + "x": 648.524, "y": 166.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 650.4580000000001, + "x": 650.458, "y": 160.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 654.1360000000001, + "x": 654.136, "y": 155.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 659.1980000000001, + "x": 659.198, "y": 151.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 665.1490000000001, + "x": 665.149, "y": 149.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 671.4070000000002, + "x": 671.407, "y": 149.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 677.3580000000002, + "x": 677.358, "y": 151.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 682.4200000000002, + "x": 682.42, "y": 155.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 686.0980000000002, + "x": 686.098, "y": 160.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 688.0320000000002, + "x": 688.032, "y": 166.133 }, { @@ -6687,7 +6687,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 752 }, @@ -6709,13 +6709,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6779,40 +6779,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6827,11 +6827,11 @@ } }, { - "x": 737.5400000000002, + "x": 737.54, "y": 189.016 }, { - "x": 698.0320000000002, + "x": 698.032, "y": 149.508 }, { @@ -6849,7 +6849,7 @@ "y": 0 }, { - "x": 717.7860000000002, + "x": 717.786, "y": 169.262 }, { @@ -6857,7 +6857,7 @@ "y": 0 }, { - "x": 717.7860000000002, + "x": 717.786, "y": 169.262 }, { @@ -6943,140 +6943,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 737.5400000000002, + "x": 737.54, "y": 172.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 735.6060000000002, + "x": 735.606, "y": 178.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 731.9280000000002, + "x": 731.928, "y": 183.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 726.8660000000002, + "x": 726.866, "y": 187.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 720.9150000000002, + "x": 720.915, "y": 189.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 714.6570000000002, + "x": 714.657, "y": 189.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 708.7060000000001, + "x": 708.706, "y": 187.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 703.6440000000001, + "x": 703.644, "y": 183.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 699.9660000000001, + "x": 699.966, "y": 178.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 698.0320000000002, + "x": 698.032, "y": 172.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 698.0320000000002, + "x": 698.032, "y": 166.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 699.9660000000001, + "x": 699.966, "y": 160.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 703.6440000000001, + "x": 703.644, "y": 155.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 708.7060000000001, + "x": 708.706, "y": 151.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 714.6570000000002, + "x": 714.657, "y": 149.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 720.9150000000002, + "x": 720.915, "y": 149.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 726.8660000000002, + "x": 726.866, "y": 151.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 731.9280000000002, + "x": 731.928, "y": 155.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 735.6060000000002, + "x": 735.606, "y": 160.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 737.5400000000002, + "x": 737.54, "y": 166.133 }, [], @@ -7134,11 +7134,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7168,11 +7168,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7202,11 +7202,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7236,11 +7236,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7270,11 +7270,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7304,11 +7304,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7338,11 +7338,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7372,11 +7372,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7406,11 +7406,11 @@ "type": "constraint" }, { - "x": 19.75400000000002, + "x": 19.754, "y": 0 }, { - "x": -19.75400000000002, + "x": -19.754, "y": 0 }, { @@ -7424,7 +7424,7 @@ "bodyB": null, "id": 45, "label": "Constraint", - "length": 19.75553168102545, + "length": 19.75553, "pointA": { "#": 835 }, diff --git a/test/browser/refs/chains/chains-10.json b/test/browser/refs/chains/chains-10.json index 1b4d6cbe..5576c51e 100644 --- a/test/browser/refs/chains/chains-10.json +++ b/test/browser/refs/chains/chains-10.json @@ -931,10 +931,10 @@ } ], { - "angle": 1.2552646111430181, - "anglePrev": 1.1398595065219184, - "angularSpeed": 0.1554051046210998, - "angularVelocity": 0.12540510462109977, + "angle": 1.25526, + "anglePrev": 1.13986, + "angularSpeed": 0.15541, + "angularVelocity": 0.12541, "area": 1000, "axes": { "#": 97 @@ -956,8 +956,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -984,7 +984,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 11.436843253630537, + "speed": 11.43684, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1005,12 +1005,12 @@ } ], { - "x": -0.9506315102495515, - "y": 0.3103219807243062 + "x": -0.95063, + "y": 0.31032 }, { - "x": -0.3103219807243062, - "y": -0.9506315102495515 + "x": -0.31032, + "y": -0.95063 }, { "max": { @@ -1021,12 +1021,12 @@ } }, { - "x": 232.05835812078303, - "y": 138.84362341380347 + "x": 232.05836, + "y": 138.84362 }, { - "x": 197.5296288795767, - "y": 85.10560828683975 + "x": 197.52963, + "y": 85.10561 }, { "category": 1, @@ -1043,16 +1043,16 @@ "y": 0 }, { - "x": 214.7939935001798, - "y": 111.9746158503215 + "x": 214.79399, + "y": 111.97462 }, { "x": 0, "y": 0 }, { - "x": 202.78444074771426, - "y": 109.4623895307995 + "x": 202.78444, + "y": 109.46239 }, { "endCol": 4, @@ -1075,8 +1075,8 @@ "yScale": 1 }, { - "x": 12.786257543652567, - "y": 1.308622711355639 + "x": 12.78626, + "y": 1.30862 }, [ { @@ -1096,35 +1096,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 216.54225908456772, - "y": 85.10560828683975 + "x": 216.54226, + "y": 85.10561 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.05835812078303, - "y": 132.63718379931734 + "x": 232.05836, + "y": 132.63718 }, { "body": null, "index": 2, "isInternal": false, - "x": 213.04572791579196, - "y": 138.84362341380347 + "x": 213.04573, + "y": 138.84362 }, { "body": null, "index": 3, "isInternal": false, - "x": 197.5296288795767, - "y": 91.31204790132593 + "x": 197.52963, + "y": 91.31205 }, { - "angle": 0.554133081579689, - "anglePrev": 0.5083388625916616, - "angularSpeed": 0.07579421898802738, - "angularVelocity": 0.05579421898802739, + "angle": 0.55413, + "anglePrev": 0.50834, + "angularSpeed": 0.07579, + "angularVelocity": 0.05579, "area": 1000, "axes": { "#": 119 @@ -1146,8 +1146,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1174,7 +1174,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 17.536284276493863, + "speed": 17.53628, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1195,12 +1195,12 @@ } ], { - "x": -0.5262063079370303, - "y": 0.8503569376957416 + "x": -0.52621, + "y": 0.85036 }, { - "x": -0.8503569376957416, - "y": -0.5262063079370303 + "x": -0.85036, + "y": -0.52621 }, { "max": { @@ -1211,12 +1211,12 @@ } }, { - "x": 272.39356775681307, - "y": 167.33544323276465 + "x": 272.39357, + "y": 167.33544 }, { - "x": 219.35159471328532, - "y": 124.01798908199828 + "x": 219.35159, + "y": 124.01799 }, { "category": 1, @@ -1233,16 +1233,16 @@ "y": 0 }, { - "x": 245.87258123504915, - "y": 145.67671615738152 + "x": 245.87258, + "y": 145.67672 }, { "x": 0, "y": 0 }, { - "x": 231.08401478360528, - "y": 138.10319482071452 + "x": 231.08401, + "y": 138.10319 }, { "endCol": 5, @@ -1265,8 +1265,8 @@ "yScale": 1 }, { - "x": 14.540880912646571, - "y": 8.52322946926239 + "x": 14.54088, + "y": 8.52323 }, [ { @@ -1286,35 +1286,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 229.8757208720259, - "y": 124.01798908199828 + "x": 229.87572, + "y": 124.01799 }, { "body": null, "index": 1, "isInternal": false, - "x": 272.39356775681307, - "y": 150.3283044788499 + "x": 272.39357, + "y": 150.3283 }, { "body": null, "index": 2, "isInternal": false, - "x": 261.8694415980725, - "y": 167.33544323276465 + "x": 261.86944, + "y": 167.33544 }, { "body": null, "index": 3, "isInternal": false, - "x": 219.35159471328532, - "y": 141.02512783591317 + "x": 219.35159, + "y": 141.02513 }, { - "angle": 0.3039505236586139, - "anglePrev": 0.29671681856281995, - "angularSpeed": 0.027233705095793977, - "angularVelocity": 0.017233705095793972, + "angle": 0.30395, + "anglePrev": 0.29672, + "angularSpeed": 0.02723, + "angularVelocity": 0.01723, "area": 1000, "axes": { "#": 141 @@ -1336,8 +1336,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1364,7 +1364,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 20.644011352363147, + "speed": 20.64401, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1385,12 +1385,12 @@ } ], { - "x": -0.299291970211471, - "y": 0.9541615778089876 + "x": -0.29929, + "y": 0.95416 }, { - "x": -0.9541615778089876, - "y": -0.299291970211471 + "x": -0.95416, + "y": -0.29929 }, { "max": { @@ -1401,12 +1401,12 @@ } }, { - "x": 318.03629088051036, - "y": 181.91941336836354 + "x": 318.03629, + "y": 181.91941 }, { - "x": 264.3423725858318, - "y": 147.87158330161014 + "x": 264.34237, + "y": 147.87158 }, { "category": 1, @@ -1423,16 +1423,16 @@ "y": 0 }, { - "x": 291.18933173317123, - "y": 164.8954983349868 + "x": 291.18933, + "y": 164.8955 }, { "x": 0, "y": 0 }, { - "x": 273.2327982052565, - "y": 154.58517795613537 + "x": 273.2328, + "y": 154.58518 }, { "endCol": 6, @@ -1455,8 +1455,8 @@ "yScale": 1 }, { - "x": 17.959565678983722, - "y": 10.216946245012792 + "x": 17.95957, + "y": 10.21695 }, [ { @@ -1476,35 +1476,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 270.3282119900612, - "y": 147.87158330161014 + "x": 270.32821, + "y": 147.87158 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.03629088051036, - "y": 162.83618181218367 + "x": 318.03629, + "y": 162.83618 }, { "body": null, "index": 2, "isInternal": false, - "x": 312.0504514762811, - "y": 181.91941336836354 + "x": 312.05045, + "y": 181.91941 }, { "body": null, "index": 3, "isInternal": false, - "x": 264.3423725858318, - "y": 166.95481485778993 + "x": 264.34237, + "y": 166.95481 }, { - "angle": -0.23033983149209472, - "anglePrev": -0.16660114633345022, - "angularSpeed": 0.06638242482512398, - "angularVelocity": -0.07373868515864451, + "angle": -0.23034, + "anglePrev": -0.1666, + "angularSpeed": 0.06638, + "angularVelocity": -0.07374, "area": 1000, "axes": { "#": 163 @@ -1526,8 +1526,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1554,7 +1554,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 21.166463265215654, + "speed": 21.16646, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1575,12 +1575,12 @@ } ], { - "x": 0.22830839286859442, - "y": 0.9735888648427324 + "x": 0.22831, + "y": 0.97359 }, { - "x": -0.9735888648427324, - "y": 0.22830839286859442 + "x": -0.97359, + "y": 0.22831 }, { "max": { @@ -1591,12 +1591,12 @@ } }, { - "x": 365.8441312241424, - "y": 181.38179223252513 + "x": 365.84413, + "y": 181.38179 }, { - "x": 312.59852012463426, - "y": 150.4945952922408 + "x": 312.59852, + "y": 150.4946 }, { "category": 1, @@ -1613,16 +1613,16 @@ "y": 0 }, { - "x": 339.2213256743883, - "y": 165.93819376238304 + "x": 339.22133, + "y": 165.93819 }, { "x": 0, "y": 0 }, { - "x": 319.50398111865707, - "y": 157.07859158219398 + "x": 319.50398, + "y": 157.07859 }, { "endCol": 7, @@ -1645,8 +1645,8 @@ "yScale": 1 }, { - "x": 19.772926265333354, - "y": 8.050461632906405 + "x": 19.77293, + "y": 8.05046 }, [ { @@ -1666,35 +1666,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 312.59852012463426, - "y": 161.91001493567043 + "x": 312.59852, + "y": 161.91001 }, { "body": null, "index": 1, "isInternal": false, - "x": 361.27796336677073, - "y": 150.4945952922408 + "x": 361.27796, + "y": 150.4946 }, { "body": null, "index": 2, "isInternal": false, - "x": 365.8441312241424, - "y": 169.9663725890954 + "x": 365.84413, + "y": 169.96637 }, { "body": null, "index": 3, "isInternal": false, - "x": 317.1646879820061, - "y": 181.38179223252513 + "x": 317.16469, + "y": 181.38179 }, { - "angle": -0.5338450021390885, - "anglePrev": -0.4902141903667337, - "angularSpeed": 0.0545924959779801, - "angularVelocity": -0.04363081177235478, + "angle": -0.53385, + "anglePrev": -0.49021, + "angularSpeed": 0.05459, + "angularVelocity": -0.04363, "area": 1000, "axes": { "#": 185 @@ -1716,8 +1716,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1744,7 +1744,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 19.3179137654344, + "speed": 19.31791, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1765,12 +1765,12 @@ } ], { - "x": 0.5088470911539408, - "y": 0.8608569206460345 + "x": 0.50885, + "y": 0.86086 }, { - "x": -0.8608569206460345, - "y": 0.5088470911539408 + "x": -0.86086, + "y": 0.50885 }, { "max": { @@ -1781,12 +1781,12 @@ } }, { - "x": 411.8276752456083, - "y": 171.57627213155837 + "x": 411.82768, + "y": 171.57627 }, { - "x": 358.60788739022775, - "y": 128.91677916094056 + "x": 358.60789, + "y": 128.91678 }, { "category": 1, @@ -1803,16 +1803,16 @@ "y": 0 }, { - "x": 385.21778131791797, - "y": 150.2465256462495 + "x": 385.21778, + "y": 150.24653 }, { "x": 0, "y": 0 }, { - "x": 366.60445306905643, - "y": 143.60039959883588 + "x": 366.60445, + "y": 143.6004 }, { "endCol": 8, @@ -1835,8 +1835,8 @@ "yScale": 1 }, { - "x": 18.157254362684398, - "y": 6.009305427879269 + "x": 18.15725, + "y": 6.00931 }, [ { @@ -1856,35 +1856,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 358.60788739022775, - "y": 154.35913371863765 + "x": 358.60789, + "y": 154.35913 }, { "body": null, "index": 1, "isInternal": false, - "x": 401.65073342252947, - "y": 128.91677916094056 + "x": 401.65073, + "y": 128.91678 }, { "body": null, "index": 2, "isInternal": false, - "x": 411.8276752456083, - "y": 146.13391757386137 + "x": 411.82768, + "y": 146.13392 }, { "body": null, "index": 3, "isInternal": false, - "x": 368.7848292133067, - "y": 171.57627213155837 + "x": 368.78483, + "y": 171.57627 }, { - "angle": 0.09884541463223553, - "anglePrev": 0.05135032274049928, - "angularSpeed": 0.04749509189173626, - "angularVelocity": 0.04749509189173626, + "angle": 0.09885, + "anglePrev": 0.05135, + "angularSpeed": 0.0475, + "angularVelocity": 0.0475, "area": 1000, "axes": { "#": 207 @@ -1906,8 +1906,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1934,7 +1934,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 16.291291005329708, + "speed": 16.29129, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1955,12 +1955,12 @@ } ], { - "x": -0.09868453310964743, - "y": 0.9951187682507704 + "x": -0.09868, + "y": 0.99512 }, { - "x": -0.9951187682507704, - "y": -0.09868453310964743 + "x": -0.99512, + "y": -0.09868 }, { "max": { @@ -1971,12 +1971,12 @@ } }, { - "x": 458.8807320974083, - "y": 154.49333830548582 + "x": 458.88073, + "y": 154.49334 }, { - "x": 407.1511030226769, - "y": 129.65673628498794 + "x": 407.1511, + "y": 129.65674 }, { "category": 1, @@ -1993,16 +1993,16 @@ "y": 0 }, { - "x": 433.0159175600427, - "y": 142.07503729523683 + "x": 433.01592, + "y": 142.07504 }, { "x": 0, "y": 0 }, { - "x": 418.40604722947506, - "y": 135.16246419822053 + "x": 418.40605, + "y": 135.16246 }, { "endCol": 9, @@ -2025,8 +2025,8 @@ "yScale": 1 }, { - "x": 14.475385290485235, - "y": 6.5598472689194125 + "x": 14.47539, + "y": 6.55985 }, [ { @@ -2046,35 +2046,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 409.1247936848697, - "y": 129.65673628498794 + "x": 409.12479, + "y": 129.65674 }, { "body": null, "index": 1, "isInternal": false, - "x": 458.8807320974083, - "y": 134.5909629404703 + "x": 458.88073, + "y": 134.59096 }, { "body": null, "index": 2, "isInternal": false, - "x": 456.9070414352155, - "y": 154.49333830548582 + "x": 456.90704, + "y": 154.49334 }, { "body": null, "index": 3, "isInternal": false, - "x": 407.1511030226769, - "y": 149.55911165000344 + "x": 407.1511, + "y": 149.55911 }, { - "angle": 0.36524891828368833, - "anglePrev": 0.36365840040867276, - "angularSpeed": 0.008409482124984423, - "angularVelocity": 0.0015905178750155735, + "angle": 0.36525, + "anglePrev": 0.36366, + "angularSpeed": 0.00841, + "angularVelocity": 0.00159, "area": 1000, "axes": { "#": 229 @@ -2096,8 +2096,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2124,7 +2124,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 13.060042707128105, + "speed": 13.06004, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2145,12 +2145,12 @@ } ], { - "x": -0.35718180389954707, - "y": 0.934034881020546 + "x": -0.35718, + "y": 0.93403 }, { - "x": -0.934034881020546, - "y": -0.35718180389954707 + "x": -0.93403, + "y": -0.35718 }, { "max": { @@ -2161,12 +2161,12 @@ } }, { - "x": 509.1623306302709, - "y": 174.07951726742382 + "x": 509.16233, + "y": 174.07952 }, { - "x": 455.31695050125273, - "y": 137.53972945203546 + "x": 455.31695, + "y": 137.53973 }, { "category": 1, @@ -2183,16 +2183,16 @@ "y": 0 }, { - "x": 482.2396405657619, - "y": 155.80962335972967 + "x": 482.23964, + "y": 155.80962 }, { "x": 0, "y": 0 }, { - "x": 471.90634749124837, - "y": 148.14626065853133 + "x": 471.90635, + "y": 148.14626 }, { "endCol": 10, @@ -2215,8 +2215,8 @@ "yScale": 1 }, { - "x": 10.206295058384114, - "y": 7.1366223820590164 + "x": 10.2063, + "y": 7.13662 }, [ { @@ -2236,35 +2236,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 462.46058657924357, - "y": 137.53972945203546 + "x": 462.46059, + "y": 137.53973 }, { "body": null, "index": 1, "isInternal": false, - "x": 509.1623306302709, - "y": 155.39881964701274 + "x": 509.16233, + "y": 155.39882 }, { "body": null, "index": 2, "isInternal": false, - "x": 502.01869455227995, - "y": 174.07951726742382 + "x": 502.01869, + "y": 174.07952 }, { "body": null, "index": 3, "isInternal": false, - "x": 455.31695050125273, - "y": 156.22042707244648 + "x": 455.31695, + "y": 156.22043 }, { - "angle": 1.3424283432551745, - "anglePrev": 1.2709832887108294, - "angularSpeed": 0.059232295833507545, - "angularVelocity": 0.07144505454434502, + "angle": 1.34243, + "anglePrev": 1.27098, + "angularSpeed": 0.05923, + "angularVelocity": 0.07145, "area": 1000, "axes": { "#": 251 @@ -2286,8 +2286,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2314,7 +2314,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 9.487129700296338, + "speed": 9.48713, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2335,12 +2335,12 @@ } ], { - "x": -0.9740371612421037, - "y": 0.22638818105065509 + "x": -0.97404, + "y": 0.22639 }, { - "x": -0.22638818105065509, - "y": -0.9740371612421037 + "x": -0.22639, + "y": -0.97404 }, { "max": { @@ -2351,12 +2351,12 @@ } }, { - "x": 527.6285293058986, - "y": 217.86330918114376 + "x": 527.62853, + "y": 217.86331 }, { - "x": 496.8283770285236, - "y": 164.63368749802555 + "x": 496.82838, + "y": 164.63369 }, { "category": 1, @@ -2373,16 +2373,16 @@ "y": 0 }, { - "x": 512.2284531672109, - "y": 191.2484983395846 + "x": 512.22845, + "y": 191.2485 }, { "x": 0, "y": 0 }, { - "x": 506.6040622356493, - "y": 184.03987973526185 + "x": 506.60406, + "y": 184.03988 }, { "endCol": 10, @@ -2405,8 +2405,8 @@ "yScale": 1 }, { - "x": 5.563513991623154, - "y": 6.952989194874505 + "x": 5.56351, + "y": 6.95299 }, [ { @@ -2426,35 +2426,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 516.3091202533656, - "y": 164.63368749802555 + "x": 516.30912, + "y": 164.63369 }, { "body": null, "index": 1, "isInternal": false, - "x": 527.6285293058986, - "y": 213.33554556013075 + "x": 527.62853, + "y": 213.33555 }, { "body": null, "index": 2, "isInternal": false, - "x": 508.1477860810564, - "y": 217.86330918114376 + "x": 508.14779, + "y": 217.86331 }, { "body": null, "index": 3, "isInternal": false, - "x": 496.8283770285236, - "y": 169.16145111903856 + "x": 496.82838, + "y": 169.16145 }, { - "angle": 0.6661976097876869, - "anglePrev": 0.639935305849287, - "angularSpeed": 0.02098996190249289, - "angularVelocity": 0.035184687913908275, + "angle": 0.6662, + "anglePrev": 0.63994, + "angularSpeed": 0.02099, + "angularVelocity": 0.03518, "area": 1000, "axes": { "#": 273 @@ -2476,8 +2476,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2504,7 +2504,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 8.1736153308063, + "speed": 8.17362, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2525,12 +2525,12 @@ } ], { - "x": -0.6180011092323688, - "y": 0.7861772249229573 + "x": -0.618, + "y": 0.78618 }, { - "x": -0.7861772249229573, - "y": -0.6180011092323688 + "x": -0.78618, + "y": -0.618 }, { "max": { @@ -2541,12 +2541,12 @@ } }, { - "x": 564.6724793967509, - "y": 256.23131355683967 + "x": 564.67248, + "y": 256.23131 }, { - "x": 513.0035959659552, - "y": 209.607713596762 + "x": 513.0036, + "y": 209.60771 }, { "category": 1, @@ -2563,16 +2563,16 @@ "y": 0 }, { - "x": 538.8380376813528, - "y": 232.91951357680077 + "x": 538.83804, + "y": 232.91951 }, { "x": 0, "y": 0 }, { - "x": 538.0266758396566, - "y": 225.38805609882485 + "x": 538.02668, + "y": 225.38806 }, { "endCol": 11, @@ -2595,8 +2595,8 @@ "yScale": 1 }, { - "x": 0.22400373774883064, - "y": 7.59963731143614 + "x": 0.224, + "y": 7.59964 }, [ { @@ -2616,35 +2616,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 525.3636181506026, - "y": 209.607713596762 + "x": 525.36362, + "y": 209.60771 }, { "body": null, "index": 1, "isInternal": false, - "x": 564.6724793967509, - "y": 240.5077690583805 + "x": 564.67248, + "y": 240.50777 }, { "body": null, "index": 2, "isInternal": false, - "x": 552.3124572121036, - "y": 256.23131355683967 + "x": 552.31246, + "y": 256.23131 }, { "body": null, "index": 3, "isInternal": false, - "x": 513.0035959659552, - "y": 225.3312580952212 + "x": 513.0036, + "y": 225.33126 }, { - "angle": -1.9352895491460287, - "anglePrev": -1.7167261889973666, - "angularSpeed": 0.2242913747817159, - "angularVelocity": -0.22856336014866208, + "angle": -1.93529, + "anglePrev": -1.71673, + "angularSpeed": 0.22429, + "angularVelocity": -0.22856, "area": 1000, "axes": { "#": 295 @@ -2666,8 +2666,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 966.6666666666666, - "inverseInertia": 0.0010344827586206897, + "inertia": 966.66667, + "inverseInertia": 0.00103, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2694,7 +2694,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 10.142271328445526, + "speed": 10.14227, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2715,12 +2715,12 @@ } ], { - "x": 0.9343045351286455, - "y": -0.3564758556172417 + "x": 0.9343, + "y": -0.35648 }, { - "x": 0.3564758556172417, - "y": 0.9343045351286455 + "x": 0.35648, + "y": 0.9343 }, { "max": { @@ -2731,12 +2731,12 @@ } }, { - "x": 569.8978950419189, - "y": 259.8609751495671 + "x": 569.8979, + "y": 259.86098 }, { - "x": 528.6175359177099, - "y": 198.01972896985632 + "x": 528.61754, + "y": 198.01973 }, { "category": 1, @@ -2753,16 +2753,16 @@ "y": 0 }, { - "x": 551.6429533002012, - "y": 224.94210090424485 + "x": 551.64295, + "y": 224.9421 }, { - "x": -0.008840312781678562, - "y": 0.040556223341361664 + "x": -0.00884, + "y": 0.04056 }, { - "x": 557.0007870449223, - "y": 216.87741875985114 + "x": 557.00079, + "y": 216.87742 }, { "endCol": 11, @@ -2785,8 +2785,8 @@ "yScale": 1 }, { - "x": -4.770475640773725, - "y": 7.996502310933494 + "x": -4.77048, + "y": 7.9965 }, [ { @@ -2806,29 +2806,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 551.2118043393457, - "y": 251.8644728386336 + "x": 551.2118, + "y": 251.86447 }, { "body": null, "index": 1, "isInternal": false, - "x": 533.3880115584836, - "y": 205.14924608220124 + "x": 533.38801, + "y": 205.14925 }, { "body": null, "index": 2, "isInternal": false, - "x": 552.0741022610565, - "y": 198.01972896985632 + "x": 552.0741, + "y": 198.01973 }, { "body": null, "index": 3, "isInternal": false, - "x": 569.8978950419189, - "y": 244.73495572628858 + "x": 569.8979, + "y": 244.73496 }, [], [ @@ -2864,8 +2864,8 @@ } ], { - "angleA": 1.2752646111430181, - "angleB": 0.574133081579689, + "angleA": 1.27526, + "angleB": 0.57413, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -2885,12 +2885,12 @@ "type": "constraint" }, { - "x": 7.2812138918821505, - "y": 23.916185403627022 + "x": 7.28121, + "y": 23.91619 }, { - "x": -20.991586185320276, - "y": -13.577676878769463 + "x": -20.99159, + "y": -13.57768 }, { "lineWidth": 2, @@ -2898,8 +2898,8 @@ "visible": true }, { - "angleA": 0.564133081579689, - "angleB": 0.32395052365861393, + "angleA": 0.56413, + "angleB": 0.32395, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -2919,12 +2919,12 @@ "type": "constraint" }, { - "x": 21.126311120610342, - "y": 13.367085637309879 + "x": 21.12631, + "y": 13.36709 }, { - "x": -23.699632787454185, - "y": -7.957851829471714 + "x": -23.69963, + "y": -7.95785 }, { "lineWidth": 2, @@ -2932,8 +2932,8 @@ "visible": true }, { - "angleA": 0.3139505236586139, - "angleB": -0.23033983149209472, + "angleA": 0.31395, + "angleB": -0.23034, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -2953,12 +2953,12 @@ "type": "constraint" }, { - "x": 23.778025007682338, - "y": 7.720461562240508 + "x": 23.77803, + "y": 7.72046 }, { - "x": -24.339721621068307, - "y": 5.70770982171486 + "x": -24.33972, + "y": 5.70771 }, { "lineWidth": 2, @@ -2966,8 +2966,8 @@ "visible": true }, { - "angleA": -0.24033983149209473, - "angleB": -0.5438450021390885, + "angleA": -0.24034, + "angleB": -0.54385, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -2987,12 +2987,12 @@ "type": "constraint" }, { - "x": 24.281428498191836, - "y": -5.950817598212676 + "x": 24.28143, + "y": -5.95082 }, { - "x": -21.393137301364405, - "y": 12.935751868560658 + "x": -21.39314, + "y": 12.93575 }, { "lineWidth": 2, @@ -3000,8 +3000,8 @@ "visible": true }, { - "angleA": -0.5338450021390885, - "angleB": 0.09884541463223553, + "angleA": -0.53385, + "angleB": 0.09885, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -3021,12 +3021,12 @@ "type": "constraint" }, { - "x": 21.52142301615086, - "y": -12.72117727884852 + "x": 21.52142, + "y": -12.72118 }, { - "x": -24.87796920626927, - "y": -2.467113327741187 + "x": -24.87797, + "y": -2.46711 }, { "lineWidth": 2, @@ -3034,8 +3034,8 @@ "visible": true }, { - "angleA": 0.09884541463223553, - "angleB": 0.36524891828368833, + "angleA": 0.09885, + "angleB": 0.36525, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -3055,12 +3055,12 @@ "type": "constraint" }, { - "x": 24.877969206269256, - "y": 2.467113327741186 + "x": 24.87797, + "y": 2.46711 }, { - "x": -23.350872025513652, - "y": -8.929545097488676 + "x": -23.35087, + "y": -8.92955 }, { "lineWidth": 2, @@ -3068,8 +3068,8 @@ "visible": true }, { - "angleA": 0.36524891828368833, - "angleB": 1.3424283432551745, + "angleA": 0.36525, + "angleB": 1.34243, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -3089,12 +3089,12 @@ "type": "constraint" }, { - "x": 23.35087202551365, - "y": 8.92954509748867 + "x": 23.35087, + "y": 8.92955 }, { - "x": -5.659704526266369, - "y": -24.35092903105259 + "x": -5.6597, + "y": -24.35093 }, { "lineWidth": 2, @@ -3102,8 +3102,8 @@ "visible": true }, { - "angleA": 1.3424283432551745, - "angleB": 0.6751199937631953, + "angleA": 1.34243, + "angleB": 0.67512, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -3123,12 +3123,12 @@ "type": "constraint" }, { - "x": 5.659704526266368, - "y": 24.35092903105258 + "x": 5.6597, + "y": 24.35093 }, { - "x": -19.515799043286908, - "y": -15.62477480484253 + "x": -19.5158, + "y": -15.62477 }, { "lineWidth": 2, @@ -3136,8 +3136,8 @@ "visible": true }, { - "angleA": 0.6751199937631953, - "angleB": -1.9452895491460287, + "angleA": 0.67512, + "angleB": -1.94529, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -3157,12 +3157,12 @@ "type": "constraint" }, { - "x": 19.515799043286904, - "y": 15.624774804842529 + "x": 19.5158, + "y": 15.62477 }, { - "x": 9.145023040190871, - "y": 23.26732802868387 + "x": 9.14502, + "y": 23.26733 }, { "lineWidth": 2, @@ -3170,7 +3170,7 @@ "visible": true }, { - "angleB": 1.2652646111430181, + "angleB": 1.26526, "angularStiffness": 0, "bodyB": null, "id": 24, @@ -3193,8 +3193,8 @@ "y": 100 }, { - "x": -7.520007702246694, - "y": -23.84217867893264 + "x": -7.52001, + "y": -23.84218 }, { "lineWidth": 2, @@ -3250,11 +3250,11 @@ } ], { - "angle": 1.3872193565253468, - "anglePrev": 1.25252601739215, - "angularSpeed": 0.15469333913319686, - "angularVelocity": 0.14469333913319682, - "area": 1236.0755439999998, + "angle": 1.38722, + "anglePrev": 1.25253, + "angularSpeed": 0.15469, + "angularVelocity": 0.14469, + "area": 1236.07554, "axes": { "#": 361 }, @@ -3276,13 +3276,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3304,7 +3304,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 9.675887613329456, + "speed": 9.67589, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3349,44 +3349,44 @@ } ], { - "x": 0.13027221541850115, - "y": -0.9914782649609389 + "x": 0.13027, + "y": -0.99148 }, { - "x": 0.43025280883744643, - "y": -0.9027084360342973 + "x": 0.43025, + "y": -0.90271 }, { - "x": 0.6881016302529498, - "y": -0.7256143234826831 + "x": 0.6881, + "y": -0.72561 }, { - "x": 0.8786363813417254, - "y": -0.47749147571733447 + "x": 0.87864, + "y": -0.47749 }, { - "x": 0.9831970166984331, - "y": -0.18254760024525218 + "x": 0.9832, + "y": -0.18255 }, { - "x": 0.9914782649609389, - "y": 0.13027221541850115 + "x": 0.99148, + "y": 0.13027 }, { - "x": 0.9027084360342973, - "y": 0.43025280883744643 + "x": 0.90271, + "y": 0.43025 }, { - "x": 0.7256143234826831, - "y": 0.6881016302529498 + "x": 0.72561, + "y": 0.6881 }, { - "x": 0.47749147571733447, - "y": 0.8786363813417254 + "x": 0.47749, + "y": 0.87864 }, { - "x": 0.18254760024525218, - "y": 0.9831970166984331 + "x": 0.18255, + "y": 0.9832 }, { "max": { @@ -3397,12 +3397,12 @@ } }, { - "x": 534.0670023948296, - "y": 118.12863892330722 + "x": 534.067, + "y": 118.12864 }, { - "x": 494.08047177677287, - "y": 78.14210830525116 + "x": 494.08047, + "y": 78.14211 }, { "category": 1, @@ -3419,16 +3419,16 @@ "y": 0 }, { - "x": 514.0737370858012, - "y": 98.1353736142791 + "x": 514.07374, + "y": 98.13537 }, { "x": 0, "y": 0 }, { - "x": 505.3073194252771, - "y": 97.0777401703729 + "x": 505.30732, + "y": 97.07774 }, { "endCol": 11, @@ -3451,8 +3451,8 @@ "yScale": 1 }, { - "x": 9.423113316274339, - "y": -0.2535791092265498 + "x": 9.42311, + "y": -0.25358 }, [ { @@ -3520,148 +3520,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 514.6033589157965, - "y": 118.12863892330722 + "x": 514.60336, + "y": 118.12864 }, { "body": null, "index": 1, "isInternal": false, - "x": 508.3993064105498, - "y": 117.313476662072 + "x": 508.39931, + "y": 117.31348 }, { "body": null, "index": 2, "isInternal": false, - "x": 502.75095303832035, - "y": 114.62133398709669 + "x": 502.75095, + "y": 114.62133 }, { "body": null, "index": 3, "isInternal": false, - "x": 498.2106984584621, - "y": 110.31580076227131 + "x": 498.2107, + "y": 110.3158 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.2228546591078, - "y": 104.81784237477308 + "x": 495.22285, + "y": 104.81784 }, { "body": null, "index": 5, "isInternal": false, - "x": 494.08047177677287, - "y": 98.66499544427433 + "x": 494.08047, + "y": 98.665 }, { "body": null, "index": 6, "isInternal": false, - "x": 494.89563403800827, - "y": 92.46094293902777 + "x": 494.89563, + "y": 92.46094 }, { "body": null, "index": 7, "isInternal": false, - "x": 497.58777671298367, - "y": 86.81258956679818 + "x": 497.58778, + "y": 86.81259 }, { "body": null, "index": 8, "isInternal": false, - "x": 501.8933099378091, - "y": 82.27233498693995 + "x": 501.89331, + "y": 82.27233 }, { "body": null, "index": 9, "isInternal": false, - "x": 507.39126832530724, - "y": 79.28449118758586 + "x": 507.39127, + "y": 79.28449 }, { "body": null, "index": 10, "isInternal": false, - "x": 513.544115255806, - "y": 78.14210830525116 + "x": 513.54412, + "y": 78.14211 }, { "body": null, "index": 11, "isInternal": false, - "x": 519.7481677610527, - "y": 78.95727056648626 + "x": 519.74817, + "y": 78.95727 }, { "body": null, "index": 12, "isInternal": false, - "x": 525.3965211332822, - "y": 81.64941324146159 + "x": 525.39652, + "y": 81.64941 }, { "body": null, "index": 13, "isInternal": false, - "x": 529.9367757131405, - "y": 85.95494646628688 + "x": 529.93678, + "y": 85.95495 }, { "body": null, "index": 14, "isInternal": false, - "x": 532.9246195124948, - "y": 91.45290485378493 + "x": 532.92462, + "y": 91.4529 }, { "body": null, "index": 15, "isInternal": false, - "x": 534.0670023948296, - "y": 97.60575178428368 + "x": 534.067, + "y": 97.60575 }, { "body": null, "index": 16, "isInternal": false, - "x": 533.2518401335942, - "y": 103.80980428953038 + "x": 533.25184, + "y": 103.8098 }, { "body": null, "index": 17, "isInternal": false, - "x": 530.5596974586189, - "y": 109.45815766176003 + "x": 530.5597, + "y": 109.45816 }, { "body": null, "index": 18, "isInternal": false, - "x": 526.2541642337936, - "y": 113.99841224161818 + "x": 526.25416, + "y": 113.99841 }, { "body": null, "index": 19, "isInternal": false, - "x": 520.7562058462954, - "y": 116.98625604097249 + "x": 520.75621, + "y": 116.98626 }, { - "angle": 0.26261567810785996, - "anglePrev": 0.25227980760616764, - "angularSpeed": 0.003131941646807709, - "angularVelocity": 0.007407939169829902, - "area": 1236.0755439999998, + "angle": 0.26262, + "anglePrev": 0.25228, + "angularSpeed": 0.00313, + "angularVelocity": 0.00741, + "area": 1236.07554, "axes": { "#": 407 }, @@ -3683,13 +3683,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3711,7 +3711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 8.866292020103874, + "speed": 8.86629, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3756,44 +3756,44 @@ } ], { - "x": -0.8381923106857377, - "y": -0.5453747796766034 + "x": -0.83819, + "y": -0.54537 }, { - "x": -0.628661499681146, - "y": -0.7776790590074116 + "x": -0.62866, + "y": -0.77768 }, { - "x": -0.35763494439736887, - "y": -0.9338614707470758 + "x": -0.35763, + "y": -0.93386 }, { - "x": -0.05158192063416214, - "y": -0.9986687666407168 + "x": -0.05158, + "y": -0.99867 }, { - "x": 0.2596074346764644, - "y": -0.9657142330217078 + "x": 0.25961, + "y": -0.96571 }, { - "x": 0.5453747796766034, - "y": -0.8381923106857377 + "x": 0.54537, + "y": -0.83819 }, { - "x": 0.7776790590074116, - "y": -0.628661499681146 + "x": 0.77768, + "y": -0.62866 }, { - "x": 0.9338614707470758, - "y": -0.35763494439736887 + "x": 0.93386, + "y": -0.35763 }, { - "x": 0.9986687666407168, - "y": -0.05158192063416214 + "x": 0.99867, + "y": -0.05158 }, { - "x": 0.9657142330217078, - "y": 0.2596074346764644 + "x": 0.96571, + "y": 0.25961 }, { "max": { @@ -3804,12 +3804,12 @@ } }, { - "x": 555.5519819108417, - "y": 138.97487211571342 + "x": 555.55198, + "y": 138.97487 }, { - "x": 515.7739206664146, - "y": 99.19681087128643 + "x": 515.77392, + "y": 99.19681 }, { "category": 1, @@ -3826,16 +3826,16 @@ "y": 0 }, { - "x": 535.6629512886285, - "y": 119.08584149349997 + "x": 535.66295, + "y": 119.08584 }, { "x": 0, "y": 0 }, { - "x": 530.1960581808249, - "y": 117.74392980670203 + "x": 530.19606, + "y": 117.74393 }, { "endCol": 11, @@ -3858,8 +3858,8 @@ "yScale": 1 }, { - "x": 7.044713830890487, - "y": 1.4382896703347825 + "x": 7.04471, + "y": 1.43829 }, [ { @@ -3927,148 +3927,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 553.9273585846365, - "y": 127.23584659322376 + "x": 553.92736, + "y": 127.23585 }, { "body": null, "index": 1, "isInternal": false, - "x": 550.514743414213, - "y": 132.48073121527167 + "x": 550.51474, + "y": 132.48073 }, { "body": null, "index": 2, "isInternal": false, - "x": 545.6487136308269, - "y": 136.41434051808753 + "x": 545.64871, + "y": 136.41434 }, { "body": null, "index": 3, "isInternal": false, - "x": 539.8054320385309, - "y": 138.65210463280908 + "x": 539.80543, + "y": 138.6521 }, { "body": null, "index": 4, "isInternal": false, - "x": 533.5563858591544, - "y": 138.97487211571342 + "x": 533.55639, + "y": 138.97487 }, { "body": null, "index": 5, "isInternal": false, - "x": 527.5129461889045, - "y": 137.3502487895081 + "x": 527.51295, + "y": 137.35025 }, { "body": null, "index": 6, "isInternal": false, - "x": 522.2680615668564, - "y": 133.93763361908452 + "x": 522.26806, + "y": 133.93763 }, { "body": null, "index": 7, "isInternal": false, - "x": 518.3344522640405, - "y": 129.07160383569834 + "x": 518.33445, + "y": 129.0716 }, { "body": null, "index": 8, "isInternal": false, - "x": 516.0966881493191, - "y": 123.22832224340243 + "x": 516.09669, + "y": 123.22832 }, { "body": null, "index": 9, "isInternal": false, - "x": 515.7739206664146, - "y": 116.9792760640259 + "x": 515.77392, + "y": 116.97928 }, { "body": null, "index": 10, "isInternal": false, - "x": 517.3985439926199, - "y": 110.93583639377606 + "x": 517.39854, + "y": 110.93584 }, { "body": null, "index": 11, "isInternal": false, - "x": 520.8111591630436, - "y": 105.69095177172821 + "x": 520.81116, + "y": 105.69095 }, { "body": null, "index": 12, "isInternal": false, - "x": 525.6771889464296, - "y": 101.75734246891233 + "x": 525.67719, + "y": 101.75734 }, { "body": null, "index": 13, "isInternal": false, - "x": 531.5204705387256, - "y": 99.51957835419077 + "x": 531.52047, + "y": 99.51958 }, { "body": null, "index": 14, "isInternal": false, - "x": 537.769516718102, - "y": 99.19681087128643 + "x": 537.76952, + "y": 99.19681 }, { "body": null, "index": 15, "isInternal": false, - "x": 543.8129563883518, - "y": 100.82143419749175 + "x": 543.81296, + "y": 100.82143 }, { "body": null, "index": 16, "isInternal": false, - "x": 549.0578410104001, - "y": 104.2340493679154 + "x": 549.05784, + "y": 104.23405 }, { "body": null, "index": 17, "isInternal": false, - "x": 552.9914503132158, - "y": 109.10007915130154 + "x": 552.99145, + "y": 109.10008 }, { "body": null, "index": 18, "isInternal": false, - "x": 555.2292144279373, - "y": 114.94336074359742 + "x": 555.22921, + "y": 114.94336 }, { "body": null, "index": 19, "isInternal": false, - "x": 555.5519819108417, - "y": 121.1924069229739 + "x": 555.55198, + "y": 121.19241 }, { - "angle": 0.5766051900144172, - "anglePrev": 0.5160042761578921, - "angularSpeed": 0.026671213866736716, - "angularVelocity": 0.0506009138565251, - "area": 1236.0755439999998, + "angle": 0.57661, + "anglePrev": 0.516, + "angularSpeed": 0.02667, + "angularVelocity": 0.0506, + "area": 1236.07554, "axes": { "#": 453 }, @@ -4090,13 +4090,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4118,7 +4118,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 7.350509617586058, + "speed": 7.35051, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4163,44 +4163,44 @@ } ], { - "x": -0.6287701916090581, - "y": -0.7775911818840979 + "x": -0.62877, + "y": -0.77759 }, { - "x": -0.35773509526330854, - "y": -0.9338231104534472 + "x": -0.35774, + "y": -0.93382 }, { - "x": -0.051721506460970235, - "y": -0.9986615471566967 + "x": -0.05172, + "y": -0.99866 }, { - "x": 0.25938435913912333, - "y": -0.9657741735177975 + "x": 0.25938, + "y": -0.96577 }, { - "x": 0.5451811525774595, - "y": -0.8383182634741485 + "x": 0.54518, + "y": -0.83832 }, { - "x": 0.7775911818840979, - "y": -0.6287701916090581 + "x": 0.77759, + "y": -0.62877 }, { - "x": 0.9338231104534472, - "y": -0.35773509526330854 + "x": 0.93382, + "y": -0.35774 }, { - "x": 0.9986615471566967, - "y": -0.051721506460970235 + "x": 0.99866, + "y": -0.05172 }, { - "x": 0.9657741735177975, - "y": 0.25938435913912333 + "x": 0.96577, + "y": 0.25938 }, { - "x": 0.8383182634741485, - "y": 0.5451811525774595 + "x": 0.83832, + "y": 0.54518 }, { "max": { @@ -4211,12 +4211,12 @@ } }, { - "x": 585.8951418592238, - "y": 154.2877973041524 + "x": 585.89514, + "y": 154.2878 }, { - "x": 546.1169892181979, - "y": 114.50964466312706 + "x": 546.11699, + "y": 114.50964 }, { "category": 1, @@ -4233,16 +4233,16 @@ "y": 0 }, { - "x": 566.0060655387107, - "y": 134.39872098363966 + "x": 566.00607, + "y": 134.39872 }, { "x": 0, "y": 0 }, { - "x": 562.6072239701455, - "y": 131.47075704590063 + "x": 562.60722, + "y": 131.47076 }, { "endCol": 12, @@ -4265,8 +4265,8 @@ "yScale": 1 }, { - "x": 6.299648870899091, - "y": 2.637220112712356 + "x": 6.29965, + "y": 2.63722 }, [ { @@ -4334,148 +4334,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 580.8603326889641, - "y": 147.79132731806544 + "x": 580.86033, + "y": 147.79133 }, { "body": null, "index": 1, "isInternal": false, - "x": 575.9946521284166, - "y": 151.72577895491523 + "x": 575.99465, + "y": 151.72578 }, { "body": null, "index": 2, "isInternal": false, - "x": 570.1516105610117, - "y": 153.96416972544145 + "x": 570.15161, + "y": 153.96417 }, { "body": null, "index": 3, "isInternal": false, - "x": 563.9028672321258, - "y": 154.2877973041524 + "x": 563.90287, + "y": 154.2878 }, { "body": null, "index": 4, "isInternal": false, - "x": 557.8596548971063, - "y": 152.6647317867229 + "x": 557.85965, + "y": 152.66473 }, { "body": null, "index": 5, "isInternal": false, - "x": 552.613459204285, - "y": 149.25298813389313 + "x": 552.61346, + "y": 149.25299 }, { "body": null, "index": 6, "isInternal": false, - "x": 548.6790075674353, - "y": 144.38730757334565 + "x": 548.67901, + "y": 144.38731 }, { "body": null, "index": 7, "isInternal": false, - "x": 546.4406167969089, - "y": 138.5442660059407 + "x": 546.44062, + "y": 138.54427 }, { "body": null, "index": 8, "isInternal": false, - "x": 546.1169892181979, - "y": 132.29552267705458 + "x": 546.11699, + "y": 132.29552 }, { "body": null, "index": 9, "isInternal": false, - "x": 547.7400547356277, - "y": 126.25231034203514 + "x": 547.74005, + "y": 126.25231 }, { "body": null, "index": 10, "isInternal": false, - "x": 551.1517983884575, - "y": 121.00611464921396 + "x": 551.1518, + "y": 121.00611 }, { "body": null, "index": 11, "isInternal": false, - "x": 556.0174789490051, - "y": 117.07166301236411 + "x": 556.01748, + "y": 117.07166 }, { "body": null, "index": 12, "isInternal": false, - "x": 561.8605205164101, - "y": 114.83327224183786 + "x": 561.86052, + "y": 114.83327 }, { "body": null, "index": 13, "isInternal": false, - "x": 568.1092638452958, - "y": 114.50964466312706 + "x": 568.10926, + "y": 114.50964 }, { "body": null, "index": 14, "isInternal": false, - "x": 574.1524761803155, - "y": 116.13271018055654 + "x": 574.15248, + "y": 116.13271 }, { "body": null, "index": 15, "isInternal": false, - "x": 579.3986718731369, - "y": 119.5444538333863 + "x": 579.39867, + "y": 119.54445 }, { "body": null, "index": 16, "isInternal": false, - "x": 583.3331235099865, - "y": 124.41013439393375 + "x": 583.33312, + "y": 124.41013 }, { "body": null, "index": 17, "isInternal": false, - "x": 585.5715142805129, - "y": 130.25317596133877 + "x": 585.57151, + "y": 130.25318 }, { "body": null, "index": 18, "isInternal": false, - "x": 585.8951418592238, - "y": 136.5019192902248 + "x": 585.89514, + "y": 136.50192 }, { "body": null, "index": 19, "isInternal": false, - "x": 584.272076341794, - "y": 142.54513162524427 + "x": 584.27208, + "y": 142.54513 }, { - "angle": -0.05953548737371627, - "anglePrev": 0.005206137776602558, - "angularSpeed": 0.07790509855666776, - "angularVelocity": -0.07279213238351524, - "area": 1236.0755439999998, + "angle": -0.05954, + "anglePrev": 0.00521, + "angularSpeed": 0.07791, + "angularVelocity": -0.07279, + "area": 1236.07554, "axes": { "#": 499 }, @@ -4497,13 +4497,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4525,7 +4525,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.7075110475321864, + "speed": 3.70751, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4570,44 +4570,44 @@ } ], { - "x": -0.9677427017693434, - "y": -0.2519405945300843 + "x": -0.96774, + "y": -0.25194 }, { - "x": -0.8425402265072719, - "y": -0.5386334251762284 + "x": -0.84254, + "y": -0.53863 }, { - "x": -0.634904784427351, - "y": -0.772590392582809 + "x": -0.6349, + "y": -0.77259 }, { - "x": -0.36511468285803766, - "y": -0.9309625493871784 + "x": -0.36511, + "y": -0.93096 }, { - "x": -0.05950032327248004, - "y": -0.9982282862804833 + "x": -0.0595, + "y": -0.99823 }, { - "x": 0.2519405945300843, - "y": -0.9677427017693434 + "x": 0.25194, + "y": -0.96774 }, { - "x": 0.5386334251762284, - "y": -0.8425402265072719 + "x": 0.53863, + "y": -0.84254 }, { - "x": 0.772590392582809, - "y": -0.634904784427351 + "x": 0.77259, + "y": -0.6349 }, { - "x": 0.9309625493871784, - "y": -0.36511468285803766 + "x": 0.93096, + "y": -0.36511 }, { - "x": 0.9982282862804833, - "y": -0.05950032327248004 + "x": 0.99823, + "y": -0.0595 }, { "max": { @@ -4618,12 +4618,12 @@ } }, { - "x": 616.1928108094369, - "y": 164.6313498803468 + "x": 616.19281, + "y": 164.63135 }, { - "x": 576.3824546520283, - "y": 124.82099372293841 + "x": 576.38245, + "y": 124.82099 }, { "category": 1, @@ -4640,16 +4640,16 @@ "y": 0 }, { - "x": 596.2876327307326, - "y": 144.72617180164255 + "x": 596.28763, + "y": 144.72617 }, { "x": 0, "y": 0 }, { - "x": 594.0453662551308, - "y": 141.70802383823238 + "x": 594.04537, + "y": 141.70802 }, { "endCol": 12, @@ -4672,8 +4672,8 @@ "yScale": 1 }, { - "x": 5.06715221978402, - "y": 1.918851529978582 + "x": 5.06715, + "y": 1.91885 }, [ { @@ -4741,148 +4741,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 616.1928108094369, - "y": 146.67425872348971 + "x": 616.19281, + "y": 146.67426 }, { "body": null, "index": 1, "isInternal": false, - "x": 614.6163237275651, - "y": 152.72978888035377 + "x": 614.61632, + "y": 152.72979 }, { "body": null, "index": 2, "isInternal": false, - "x": 611.2460307270309, - "y": 158.00166265450179 + "x": 611.24603, + "y": 158.00166 }, { "body": null, "index": 3, "isInternal": false, - "x": 606.411841330875, - "y": 161.97433692784665 + "x": 606.41184, + "y": 161.97434 }, { "body": null, "index": 4, "isInternal": false, - "x": 600.5864584244287, - "y": 164.2589968573077 + "x": 600.58646, + "y": 164.259 }, { "body": null, "index": 5, "isInternal": false, - "x": 594.3395458088856, - "y": 164.6313498803468 + "x": 594.33955, + "y": 164.63135 }, { "body": null, "index": 6, "isInternal": false, - "x": 588.2840156520211, - "y": 163.05486279847491 + "x": 588.28402, + "y": 163.05486 }, { "body": null, "index": 7, "isInternal": false, - "x": 583.0121418778733, - "y": 159.6845697979406 + "x": 583.01214, + "y": 159.68457 }, { "body": null, "index": 8, "isInternal": false, - "x": 579.0394676045283, - "y": 154.85038040178497 + "x": 579.03947, + "y": 154.85038 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.7548076750676, - "y": 149.0249974953388 + "x": 576.75481, + "y": 149.025 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.3824546520283, - "y": 142.7780848797955 + "x": 576.38245, + "y": 142.77808 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9589417339, - "y": 136.7225547229314 + "x": 577.95894, + "y": 136.72255 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.3292347344342, - "y": 131.45068094878346 + "x": 581.32923, + "y": 131.45068 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.1634241305901, - "y": 127.47800667543852 + "x": 586.16342, + "y": 127.47801 }, { "body": null, "index": 14, "isInternal": false, - "x": 591.9888070370363, - "y": 125.19334674597755 + "x": 591.98881, + "y": 125.19335 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.2357196525794, - "y": 124.82099372293841 + "x": 598.23572, + "y": 124.82099 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.2912498094439, - "y": 126.39748080481024 + "x": 604.29125, + "y": 126.39748 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.5631235835917, - "y": 129.7677738053446 + "x": 609.56312, + "y": 129.76777 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.5357978569367, - "y": 134.60196320150024 + "x": 613.5358, + "y": 134.60196 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.8204577863975, - "y": 140.42734610794636 + "x": 615.82046, + "y": 140.42735 }, { - "angle": -0.7373861202483631, - "anglePrev": -0.5712833896787078, - "angularSpeed": 0.13894920525084825, - "angularVelocity": -0.16796397145215225, - "area": 1236.0755439999998, + "angle": -0.73739, + "anglePrev": -0.57128, + "angularSpeed": 0.13895, + "angularVelocity": -0.16796, + "area": 1236.07554, "axes": { "#": 545 }, @@ -4904,13 +4904,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4932,7 +4932,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9424543527910426, + "speed": 0.94245, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4977,44 +4977,44 @@ } ], { - "x": -0.9117935526767829, - "y": 0.4106488978398103 + "x": -0.91179, + "y": 0.41065 }, { - "x": -0.9940614258394366, - "y": 0.10882041011716075 + "x": -0.99406, + "y": 0.10882 }, { - "x": -0.9790486827748512, - "y": -0.2036263164643237 + "x": -0.97905, + "y": -0.20363 }, { - "x": -0.8682215135258123, - "y": -0.4961767864894 + "x": -0.86822, + "y": -0.49618 }, { - "x": -0.6723553423232643, - "y": -0.7402285414987498 + "x": -0.67236, + "y": -0.74023 }, { - "x": -0.4106488978398103, - "y": -0.9117935526767829 + "x": -0.41065, + "y": -0.91179 }, { - "x": -0.10882041011716075, - "y": -0.9940614258394366 + "x": -0.10882, + "y": -0.99406 }, { - "x": 0.2036263164643237, - "y": -0.9790486827748512 + "x": 0.20363, + "y": -0.97905 }, { - "x": 0.4961767864894, - "y": -0.8682215135258123 + "x": 0.49618, + "y": -0.86822 }, { - "x": 0.7402285414987498, - "y": -0.6723553423232643 + "x": 0.74023, + "y": -0.67236 }, { "max": { @@ -5025,12 +5025,12 @@ } }, { - "x": 646.3729576971006, - "y": 153.2033055877006 + "x": 646.37296, + "y": 153.20331 }, { - "x": 606.4194351270789, - "y": 113.24978301767861 + "x": 606.41944, + "y": 113.24978 }, { "category": 1, @@ -5047,16 +5047,16 @@ "y": 0 }, { - "x": 626.39619641209, - "y": 133.2265443026896 + "x": 626.3962, + "y": 133.22654 }, { "x": 0, "y": 0 }, { - "x": 625.1523437667053, - "y": 133.4317497169304 + "x": 625.15234, + "y": 133.43175 }, { "endCol": 13, @@ -5079,8 +5079,8 @@ "yScale": 1 }, { - "x": 2.543008236133687, - "y": -1.6820408265876097 + "x": 2.54301, + "y": -1.68204 }, [ { @@ -5148,148 +5148,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 643.1224708869854, - "y": 122.26101197678554 + "x": 643.12247, + "y": 122.26101 }, { "body": null, "index": 1, "isInternal": false, - "x": 645.6920555298926, - "y": 127.96644725929782 + "x": 645.69206, + "y": 127.96645 }, { "body": null, "index": 2, "isInternal": false, - "x": 646.3729576971006, - "y": 134.18640708542935 + "x": 646.37296, + "y": 134.18641 }, { "body": null, "index": 3, "isInternal": false, - "x": 645.0988437690991, - "y": 140.31243040390214 + "x": 645.09884, + "y": 140.31243 }, { "body": null, "index": 4, "isInternal": false, - "x": 641.9940789506929, - "y": 145.74521904532668 + "x": 641.99408, + "y": 145.74522 }, { "body": null, "index": 5, "isInternal": false, - "x": 637.3617287379938, - "y": 149.95281877758552 + "x": 637.36173, + "y": 149.95282 }, { "body": null, "index": 6, "isInternal": false, - "x": 631.6562934554819, - "y": 152.5224034204926 + "x": 631.65629, + "y": 152.5224 }, { "body": null, "index": 7, "isInternal": false, - "x": 625.43633362935, - "y": 153.2033055877006 + "x": 625.43633, + "y": 153.20331 }, { "body": null, "index": 8, "isInternal": false, - "x": 619.3103103108774, - "y": 151.92919165969886 + "x": 619.31031, + "y": 151.92919 }, { "body": null, "index": 9, "isInternal": false, - "x": 613.8775216694529, - "y": 148.82442684129302 + "x": 613.87752, + "y": 148.82443 }, { "body": null, "index": 10, "isInternal": false, - "x": 609.669921937194, - "y": 144.19207662859384 + "x": 609.66992, + "y": 144.19208 }, { "body": null, "index": 11, "isInternal": false, - "x": 607.1003372942868, - "y": 138.48664134608157 + "x": 607.10034, + "y": 138.48664 }, { "body": null, "index": 12, "isInternal": false, - "x": 606.4194351270789, - "y": 132.2666815199499 + "x": 606.41944, + "y": 132.26668 }, { "body": null, "index": 13, "isInternal": false, - "x": 607.6935490550802, - "y": 126.14065820147734 + "x": 607.69355, + "y": 126.14066 }, { "body": null, "index": 14, "isInternal": false, - "x": 610.7983138734864, - "y": 120.70786956005286 + "x": 610.79831, + "y": 120.70787 }, { "body": null, "index": 15, "isInternal": false, - "x": 615.4306640861855, - "y": 116.5002698277938 + "x": 615.43066, + "y": 116.50027 }, { "body": null, "index": 16, "isInternal": false, - "x": 621.1360993686976, - "y": 113.93068518488678 + "x": 621.1361, + "y": 113.93069 }, { "body": null, "index": 17, "isInternal": false, - "x": 627.3560591948294, - "y": 113.24978301767861 + "x": 627.35606, + "y": 113.24978 }, { "body": null, "index": 18, "isInternal": false, - "x": 633.482082513302, - "y": 114.52389694568053 + "x": 633.48208, + "y": 114.5239 }, { "body": null, "index": 19, "isInternal": false, - "x": 638.9148711547265, - "y": 117.62866176408637 + "x": 638.91487, + "y": 117.62866 }, { - "angle": -0.8290249612263179, - "anglePrev": -0.6468549439149813, - "angularSpeed": 0.16821025017027832, - "angularVelocity": -0.18404695843506702, - "area": 1236.0755439999998, + "angle": -0.82902, + "anglePrev": -0.64685, + "angularSpeed": 0.16821, + "angularVelocity": -0.18405, + "area": 1236.07554, "axes": { "#": 591 }, @@ -5311,13 +5311,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5339,7 +5339,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 5.711543851224586, + "speed": 5.71154, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5384,44 +5384,44 @@ } ], { - "x": -0.8703890153830881, - "y": 0.4923646635375634 + "x": -0.87039, + "y": 0.49236 }, { - "x": -0.9799322175419224, - "y": 0.19933100366819476 + "x": -0.97993, + "y": 0.19933 }, { - "x": -0.9935746651022607, - "y": -0.11317855303427027 + "x": -0.99357, + "y": -0.11318 }, { - "x": -0.9099839952383254, - "y": -0.4146433749743216 + "x": -0.90998, + "y": -0.41464 }, { - "x": -0.7372729904048652, - "y": -0.6755949508540358 + "x": -0.73727, + "y": -0.67559 }, { - "x": -0.4923646635375634, - "y": -0.8703890153830881 + "x": -0.49236, + "y": -0.87039 }, { - "x": -0.19933100366819476, - "y": -0.9799322175419224 + "x": -0.19933, + "y": -0.97993 }, { - "x": 0.11317855303427027, - "y": -0.9935746651022607 + "x": 0.11318, + "y": -0.99357 }, { - "x": 0.4146433749743216, - "y": -0.9099839952383254 + "x": 0.41464, + "y": -0.90998 }, { - "x": 0.6755949508540358, - "y": -0.7372729904048652 + "x": 0.67559, + "y": -0.73727 }, { "max": { @@ -5432,12 +5432,12 @@ } }, { - "x": 672.3696351372804, - "y": 128.6775632849398 + "x": 672.36964, + "y": 128.67756 }, { - "x": 632.4080782867135, - "y": 88.71600643437282 + "x": 632.40808, + "y": 88.71601 }, { "category": 1, @@ -5454,16 +5454,16 @@ "y": 0 }, { - "x": 652.3888567119967, - "y": 108.69678485965639 + "x": 652.38886, + "y": 108.69678 }, { "x": 0, "y": 0 }, { - "x": 653.5286380196071, - "y": 113.51051642468599 + "x": 653.52864, + "y": 113.51052 }, { "endCol": 14, @@ -5486,8 +5486,8 @@ "yScale": 1 }, { - "x": -0.7071644889504114, - "y": -5.449209153148871 + "x": -0.70716, + "y": -5.44921 }, [ { @@ -5555,148 +5555,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 668.0414865581441, - "y": 96.24663080842102 + "x": 668.04149, + "y": 96.24663 }, { "body": null, "index": 1, "isInternal": false, - "x": 671.122397489092, - "y": 101.69298232439614 + "x": 671.1224, + "y": 101.69298 }, { "body": null, "index": 2, "isInternal": false, - "x": 672.3696351372804, - "y": 107.82453402432834 + "x": 672.36964, + "y": 107.82453 }, { "body": null, "index": 3, "isInternal": false, - "x": 671.6614635547664, - "y": 114.04144813099896 + "x": 671.66146, + "y": 114.04145 }, { "body": null, "index": 4, "isInternal": false, - "x": 669.066883965677, - "y": 119.73556033184998 + "x": 669.06688, + "y": 119.73556 }, { "body": null, "index": 5, "isInternal": false, - "x": 664.8390107632323, - "y": 124.34941470580367 + "x": 664.83901, + "y": 124.34941 }, { "body": null, "index": 6, "isInternal": false, - "x": 659.392659247257, - "y": 127.43032563675129 + "x": 659.39266, + "y": 127.43033 }, { "body": null, "index": 7, "isInternal": false, - "x": 653.2611075473245, - "y": 128.6775632849398 + "x": 653.26111, + "y": 128.67756 }, { "body": null, "index": 8, "isInternal": false, - "x": 647.0441934406545, - "y": 127.9693917024256 + "x": 647.04419, + "y": 127.96939 }, { "body": null, "index": 9, "isInternal": false, - "x": 641.3500812398032, - "y": 125.37481211333622 + "x": 641.35008, + "y": 125.37481 }, { "body": null, "index": 10, "isInternal": false, - "x": 636.7362268658496, - "y": 121.14693891089158 + "x": 636.73623, + "y": 121.14694 }, { "body": null, "index": 11, "isInternal": false, - "x": 633.6553159349018, - "y": 115.70058739491637 + "x": 633.65532, + "y": 115.70059 }, { "body": null, "index": 12, "isInternal": false, - "x": 632.4080782867135, - "y": 109.56903569498411 + "x": 632.40808, + "y": 109.56904 }, { "body": null, "index": 13, "isInternal": false, - "x": 633.1162498692273, - "y": 103.35212158831362 + "x": 633.11625, + "y": 103.35212 }, { "body": null, "index": 14, "isInternal": false, - "x": 635.7108294583168, - "y": 97.65800938746258 + "x": 635.71083, + "y": 97.65801 }, { "body": null, "index": 15, "isInternal": false, - "x": 639.9387026607615, - "y": 93.04415501350891 + "x": 639.9387, + "y": 93.04416 }, { "body": null, "index": 16, "isInternal": false, - "x": 645.3850541767368, - "y": 89.96324408256123 + "x": 645.38505, + "y": 89.96324 }, { "body": null, "index": 17, "isInternal": false, - "x": 651.5166058766691, - "y": 88.71600643437282 + "x": 651.51661, + "y": 88.71601 }, { "body": null, "index": 18, "isInternal": false, - "x": 657.7335199833394, - "y": 89.42417801688703 + "x": 657.73352, + "y": 89.42418 }, { "body": null, "index": 19, "isInternal": false, - "x": 663.4276321841907, - "y": 92.01875760597635 + "x": 663.42763, + "y": 92.01876 }, { - "angle": 0.5909738832912173, - "anglePrev": 0.5210780691477513, - "angularSpeed": 0.057636067328827076, - "angularVelocity": 0.07129431919601603, - "area": 1236.0755439999998, + "angle": 0.59097, + "anglePrev": 0.52108, + "angularSpeed": 0.05764, + "angularVelocity": 0.07129, + "area": 1236.07554, "axes": { "#": 637 }, @@ -5718,13 +5718,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5746,7 +5746,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 6.390617063955373, + "speed": 6.39062, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5791,44 +5791,44 @@ } ], { - "x": -0.6175327002538078, - "y": -0.7865452079297418 + "x": -0.61753, + "y": -0.78655 }, { - "x": -0.344280810873664, - "y": -0.9388667228441813 + "x": -0.34428, + "y": -0.93887 }, { - "x": -0.03736719965849787, - "y": -0.9993016023151781 + "x": -0.03737, + "y": -0.9993 }, { - "x": 0.2732340188129663, - "y": -0.9619475926282658 + "x": 0.27323, + "y": -0.96195 }, { - "x": 0.5571699981883181, - "y": -0.830398454429456 + "x": 0.55717, + "y": -0.8304 }, { - "x": 0.7865452079297418, - "y": -0.6175327002538078 + "x": 0.78655, + "y": -0.61753 }, { - "x": 0.9388667228441813, - "y": -0.344280810873664 + "x": 0.93887, + "y": -0.34428 }, { - "x": 0.9993016023151781, - "y": -0.03736719965849787 + "x": 0.9993, + "y": -0.03737 }, { - "x": 0.9619475926282658, - "y": 0.2732340188129663 + "x": 0.96195, + "y": 0.27323 }, { - "x": 0.830398454429456, - "y": 0.5571699981883181 + "x": 0.8304, + "y": 0.55717 }, { "max": { @@ -5839,12 +5839,12 @@ } }, { - "x": 700.4807697581881, - "y": 127.44504186687514 + "x": 700.48077, + "y": 127.44504 }, { - "x": 660.7671616752218, - "y": 87.73143378390957 + "x": 660.76716, + "y": 87.73143 }, { "category": 1, @@ -5861,16 +5861,16 @@ "y": 0 }, { - "x": 680.6239657167051, - "y": 107.58823782539233 + "x": 680.62397, + "y": 107.58824 }, { "x": 0, "y": 0 }, { - "x": 683.2395304327802, - "y": 112.02696464561134 + "x": 683.23953, + "y": 112.02696 }, { "endCol": 14, @@ -5893,8 +5893,8 @@ "yScale": 1 }, { - "x": -2.25181924682704, - "y": -5.065905246208629 + "x": -2.25182, + "y": -5.06591 }, [ { @@ -5962,148 +5962,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 695.2842718611735, - "y": 121.19289073351419 + "x": 695.28427, + "y": 121.19289 }, { "body": null, "index": 1, "isInternal": false, - "x": 690.3625625910881, - "y": 125.05702515932765 + "x": 690.36256, + "y": 125.05703 }, { "body": null, "index": 2, "isInternal": false, - "x": 684.4879625448673, - "y": 127.21123088231295 + "x": 684.48796, + "y": 127.21123 }, { "body": null, "index": 3, "isInternal": false, - "x": 678.2352143152086, - "y": 127.44504186687514 + "x": 678.23521, + "y": 127.44504 }, { "body": null, "index": 4, "isInternal": false, - "x": 672.2159463364026, - "y": 125.73531381852294 + "x": 672.21595, + "y": 125.73531 }, { "body": null, "index": 5, "isInternal": false, - "x": 667.0193128085833, - "y": 122.24854396986058 + "x": 667.01931, + "y": 122.24854 }, { "body": null, "index": 6, "isInternal": false, - "x": 663.1551783827698, - "y": 117.32683469977533 + "x": 663.15518, + "y": 117.32683 }, { "body": null, "index": 7, "isInternal": false, - "x": 661.0009726597843, - "y": 111.45223465355448 + "x": 661.00097, + "y": 111.45223 }, { "body": null, "index": 8, "isInternal": false, - "x": 660.7671616752218, - "y": 105.19948642389593 + "x": 660.76716, + "y": 105.19949 }, { "body": null, "index": 9, "isInternal": false, - "x": 662.4768897235745, - "y": 99.18021844509025 + "x": 662.47689, + "y": 99.18022 }, { "body": null, "index": 10, "isInternal": false, - "x": 665.9636595722366, - "y": 93.9835849172706 + "x": 665.96366, + "y": 93.98358 }, { "body": null, "index": 11, "isInternal": false, - "x": 670.8853688423217, - "y": 90.11945049145703 + "x": 670.88537, + "y": 90.11945 }, { "body": null, "index": 12, "isInternal": false, - "x": 676.7599688885424, - "y": 87.96524476847176 + "x": 676.75997, + "y": 87.96524 }, { "body": null, "index": 13, "isInternal": false, - "x": 683.0127171182012, - "y": 87.73143378390957 + "x": 683.01272, + "y": 87.73143 }, { "body": null, "index": 14, "isInternal": false, - "x": 689.0319850970074, - "y": 89.44116183226173 + "x": 689.03199, + "y": 89.44116 }, { "body": null, "index": 15, "isInternal": false, - "x": 694.2286186248267, - "y": 92.92793168092423 + "x": 694.22862, + "y": 92.92793 }, { "body": null, "index": 16, "isInternal": false, - "x": 698.0927530506402, - "y": 97.8496409510095 + "x": 698.09275, + "y": 97.84964 }, { "body": null, "index": 17, "isInternal": false, - "x": 700.2469587736257, - "y": 103.72424099723034 + "x": 700.24696, + "y": 103.72424 }, { "body": null, "index": 18, "isInternal": false, - "x": 700.4807697581881, - "y": 109.97698922688892 + "x": 700.48077, + "y": 109.97699 }, { "body": null, "index": 19, "isInternal": false, - "x": 698.7710417098356, - "y": 115.99625720569453 + "x": 698.77104, + "y": 115.99626 }, { - "angle": 1.1363420041082641, - "anglePrev": 0.9992049250672125, - "angularSpeed": 0.14827556807038803, - "angularVelocity": 0.14713707904105167, - "area": 1236.0755439999998, + "angle": 1.13634, + "anglePrev": 0.9992, + "angularSpeed": 0.14828, + "angularVelocity": 0.14714, + "area": 1236.07554, "axes": { "#": 683 }, @@ -6125,13 +6125,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6153,7 +6153,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.7610460586629046, + "speed": 3.76105, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6198,44 +6198,44 @@ } ], { - "x": -0.1199443450692804, - "y": -0.9927806172996639 + "x": -0.11994, + "y": -0.99278 }, { - "x": 0.19268281230785908, - "y": -0.9812610936143016 + "x": 0.19268, + "y": -0.98126 }, { - "x": 0.4864239848414469, - "y": -0.8737229005645714 + "x": 0.48642, + "y": -0.87372 }, { - "x": 0.7325915182852276, - "y": -0.6806685444006838 + "x": 0.73259, + "y": -0.68067 }, { - "x": 0.9070998613670671, - "y": -0.42091548024258635 + "x": 0.9071, + "y": -0.42092 }, { - "x": 0.9927806172996639, - "y": -0.1199443450692804 + "x": 0.99278, + "y": -0.11994 }, { - "x": 0.9812610936143016, - "y": 0.19268281230785908 + "x": 0.98126, + "y": 0.19268 }, { - "x": 0.8737229005645714, - "y": 0.4864239848414469 + "x": 0.87372, + "y": 0.48642 }, { - "x": 0.6806685444006838, - "y": 0.7325915182852276 + "x": 0.68067, + "y": 0.73259 }, { - "x": 0.42091548024258635, - "y": 0.9070998613670671 + "x": 0.42092, + "y": 0.9071 }, { "max": { @@ -6246,12 +6246,12 @@ } }, { - "x": 726.3797508117069, - "y": 154.9616547869437 + "x": 726.37975, + "y": 154.96165 }, { - "x": 686.4068866313793, - "y": 114.98879060661588 + "x": 686.40689, + "y": 114.98879 }, { "category": 1, @@ -6268,16 +6268,16 @@ "y": 0 }, { - "x": 706.3933187215431, - "y": 134.97522269678004 + "x": 706.39332, + "y": 134.97522 }, { "x": 0, "y": 0 }, { - "x": 708.7676427712187, - "y": 136.9776554704492 + "x": 708.76764, + "y": 136.97766 }, { "endCol": 15, @@ -6300,8 +6300,8 @@ "yScale": 1 }, { - "x": -2.709732952673903, - "y": -1.930726805859564 + "x": -2.70973, + "y": -1.93073 }, [ { @@ -6369,148 +6369,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 711.8697676520377, - "y": 154.211117895904 + "x": 711.86977, + "y": 154.21112 }, { "body": null, "index": 1, "isInternal": false, - "x": 705.657565838253, - "y": 154.9616547869437 + "x": 705.65757, + "y": 154.96165 }, { "body": null, "index": 2, "isInternal": false, - "x": 699.5176992036804, - "y": 153.75601565782353 + "x": 699.5177, + "y": 153.75602 }, { "body": null, "index": 3, "isInternal": false, - "x": 694.0507117525844, - "y": 150.7124032959157 + "x": 694.05071, + "y": 150.7124 }, { "body": null, "index": 4, "isInternal": false, - "x": 689.7915125977769, - "y": 146.1283025597094 + "x": 689.79151, + "y": 146.1283 }, { "body": null, "index": 5, "isInternal": false, - "x": 687.1574235224188, - "y": 140.4516716272742 + "x": 687.15742, + "y": 140.45167 }, { "body": null, "index": 6, "isInternal": false, - "x": 686.4068866313793, - "y": 134.2394698134898 + "x": 686.40689, + "y": 134.23947 }, { "body": null, "index": 7, "isInternal": false, - "x": 687.6125257604991, - "y": 128.09960317891716 + "x": 687.61253, + "y": 128.0996 }, { "body": null, "index": 8, "isInternal": false, - "x": 690.656138122407, - "y": 122.63261572782136 + "x": 690.65614, + "y": 122.63262 }, { "body": null, "index": 9, "isInternal": false, - "x": 695.2402388586133, - "y": 118.37341657301374 + "x": 695.24024, + "y": 118.37342 }, { "body": null, "index": 10, "isInternal": false, - "x": 700.9168697910484, - "y": 115.7393274976557 + "x": 700.91687, + "y": 115.73933 }, { "body": null, "index": 11, "isInternal": false, - "x": 707.1290716048329, - "y": 114.98879060661588 + "x": 707.12907, + "y": 114.98879 }, { "body": null, "index": 12, "isInternal": false, - "x": 713.2689382394053, - "y": 116.1944297357361 + "x": 713.26894, + "y": 116.19443 }, { "body": null, "index": 13, "isInternal": false, - "x": 718.7359256905014, - "y": 119.23804209764388 + "x": 718.73593, + "y": 119.23804 }, { "body": null, "index": 14, "isInternal": false, - "x": 722.9951248453091, - "y": 123.82214283385028 + "x": 722.99512, + "y": 123.82214 }, { "body": null, "index": 15, "isInternal": false, - "x": 725.6292139206671, - "y": 129.49877376628532 + "x": 725.62921, + "y": 129.49877 }, { "body": null, "index": 16, "isInternal": false, - "x": 726.3797508117069, - "y": 135.7109755800698 + "x": 726.37975, + "y": 135.71098 }, { "body": null, "index": 17, "isInternal": false, - "x": 725.1741116825868, - "y": 141.85084221464248 + "x": 725.17411, + "y": 141.85084 }, { "body": null, "index": 18, "isInternal": false, - "x": 722.1304993206791, - "y": 147.3178296657383 + "x": 722.1305, + "y": 147.31783 }, { "body": null, "index": 19, "isInternal": false, - "x": 717.5463985844725, - "y": 151.5770288205458 + "x": 717.5464, + "y": 151.57703 }, { - "angle": 0.9232327426617691, - "anglePrev": 0.8260789631856328, - "angularSpeed": 0.12715377947613637, - "angularVelocity": 0.10715377947613636, - "area": 1236.0755439999998, + "angle": 0.92323, + "anglePrev": 0.82608, + "angularSpeed": 0.12715, + "angularVelocity": 0.10715, + "area": 1236.07554, "axes": { "#": 729 }, @@ -6532,13 +6532,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6560,7 +6560,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 5.35047047192057, + "speed": 5.35047, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6605,44 +6605,44 @@ } ], { - "x": -0.3272039107451846, - "y": -0.9449537559018734 + "x": -0.3272, + "y": -0.94495 }, { - "x": -0.019212617525713856, - "y": -0.9998154206291333 + "x": -0.01921, + "y": -0.99982 }, { - "x": 0.29062786231233034, - "y": -0.9568361644752797 + "x": 0.29063, + "y": -0.95684 }, { - "x": 0.5720575673191398, - "y": -0.8202134720137847 + "x": 0.57206, + "y": -0.82021 }, { - "x": 0.7975559200274027, - "y": -0.6032450202274717 + "x": 0.79756, + "y": -0.60325 }, { - "x": 0.9449537559018734, - "y": -0.3272039107451846 + "x": 0.94495, + "y": -0.3272 }, { - "x": 0.9998154206291333, - "y": -0.019212617525713856 + "x": 0.99982, + "y": -0.01921 }, { - "x": 0.9568361644752797, - "y": 0.29062786231233034 + "x": 0.95684, + "y": 0.29063 }, { - "x": 0.8202134720137847, - "y": 0.5720575673191398 + "x": 0.82021, + "y": 0.57206 }, { - "x": 0.6032450202274717, - "y": 0.7975559200274027 + "x": 0.60325, + "y": 0.79756 }, { "max": { @@ -6653,12 +6653,12 @@ } }, { - "x": 749.1984268125003, - "y": 187.96843720903865 + "x": 749.19843, + "y": 187.96844 }, { - "x": 709.578173018331, - "y": 148.34818341486948 + "x": 709.57817, + "y": 148.34818 }, { "category": 1, @@ -6675,16 +6675,16 @@ "y": 0 }, { - "x": 729.388299915416, - "y": 168.1583103119541 + "x": 729.3883, + "y": 168.15831 }, { "x": 0, "y": 0 }, { - "x": 731.9732227856508, - "y": 165.74394862364335 + "x": 731.97322, + "y": 165.74395 }, { "endCol": 15, @@ -6707,8 +6707,8 @@ "yScale": 1 }, { - "x": -3.903167829221047, - "y": 2.8929190713055846 + "x": -3.90317, + "y": 2.89292 }, [ { @@ -6776,148 +6776,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 738.8092495712237, - "y": 185.80078362446727 + "x": 738.80925, + "y": 185.80078 }, { "body": null, "index": 1, "isInternal": false, - "x": 732.8963184220206, - "y": 187.84822159050788 + "x": 732.89632, + "y": 187.84822 }, { "body": null, "index": 2, "isInternal": false, - "x": 726.6403551704453, - "y": 187.96843720903865 + "x": 726.64036, + "y": 187.96844 }, { "body": null, "index": 3, "isInternal": false, - "x": 720.6533182041928, - "y": 186.14994432625645 + "x": 720.65332, + "y": 186.14994 }, { "body": null, "index": 4, "isInternal": false, - "x": 715.5209339394864, - "y": 182.57036491529348 + "x": 715.52093, + "y": 182.57036 }, { "body": null, "index": 5, "isInternal": false, - "x": 711.7458266029028, - "y": 177.5792599677618 + "x": 711.74583, + "y": 177.57926 }, { "body": null, "index": 6, "isInternal": false, - "x": 709.698388636862, - "y": 171.66632881855878 + "x": 709.69839, + "y": 171.66633 }, { "body": null, "index": 7, "isInternal": false, - "x": 709.578173018331, - "y": 165.41036556698327 + "x": 709.57817, + "y": 165.41037 }, { "body": null, "index": 8, "isInternal": false, - "x": 711.3966659011136, - "y": 159.42332860073134 + "x": 711.39667, + "y": 159.42333 }, { "body": null, "index": 9, "isInternal": false, - "x": 714.9762453120767, - "y": 154.29094433602452 + "x": 714.97625, + "y": 154.29094 }, { "body": null, "index": 10, "isInternal": false, - "x": 719.9673502596079, - "y": 150.5158369994409 + "x": 719.96735, + "y": 150.51584 }, { "body": null, "index": 11, "isInternal": false, - "x": 725.880281408811, - "y": 148.46839903340032 + "x": 725.88028, + "y": 148.4684 }, { "body": null, "index": 12, "isInternal": false, - "x": 732.1362446603862, - "y": 148.34818341486948 + "x": 732.13624, + "y": 148.34818 }, { "body": null, "index": 13, "isInternal": false, - "x": 738.1232816266387, - "y": 150.1666762976517 + "x": 738.12328, + "y": 150.16668 }, { "body": null, "index": 14, "isInternal": false, - "x": 743.2556658913453, - "y": 153.74625570861465 + "x": 743.25567, + "y": 153.74626 }, { "body": null, "index": 15, "isInternal": false, - "x": 747.0307732279288, - "y": 158.7373606561463 + "x": 747.03077, + "y": 158.73736 }, { "body": null, "index": 16, "isInternal": false, - "x": 749.0782111939697, - "y": 164.65029180534938 + "x": 749.07821, + "y": 164.65029 }, { "body": null, "index": 17, "isInternal": false, - "x": 749.1984268125003, - "y": 170.90625505692478 + "x": 749.19843, + "y": 170.90626 }, { "body": null, "index": 18, "isInternal": false, - "x": 747.379933929718, - "y": 176.89329202317688 + "x": 747.37993, + "y": 176.89329 }, { "body": null, "index": 19, "isInternal": false, - "x": 743.8003545187551, - "y": 182.0256762878836 + "x": 743.80035, + "y": 182.02568 }, { - "angle": 0.6906757121973595, - "anglePrev": 0.6345374339876313, - "angularSpeed": 0.07613827820972816, - "angularVelocity": 0.06613827820972817, - "area": 1236.0755439999998, + "angle": 0.69068, + "anglePrev": 0.63454, + "angularSpeed": 0.07614, + "angularVelocity": 0.06614, + "area": 1236.07554, "axes": { "#": 775 }, @@ -6939,13 +6939,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6967,7 +6967,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 6.0492656795679105, + "speed": 6.04927, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7012,44 +7012,44 @@ } ], { - "x": -0.5361758254296116, - "y": -0.844106322820102 + "x": -0.53618, + "y": -0.84411 }, { - "x": -0.249119349788743, - "y": -0.9684727923699429 + "x": -0.24912, + "y": -0.96847 }, { - "x": 0.06228558453265938, - "y": -0.9980583680123244 + "x": 0.06229, + "y": -0.99806 }, { - "x": 0.3676262267127165, - "y": -0.9299736326546957 + "x": 0.36763, + "y": -0.92997 }, { - "x": 0.6370581772045215, - "y": -0.7708157230213022 + "x": 0.63706, + "y": -0.77082 }, { - "x": 0.844106322820102, - "y": -0.5361758254296116 + "x": 0.84411, + "y": -0.53618 }, { - "x": 0.9684727923699429, - "y": -0.249119349788743 + "x": 0.96847, + "y": -0.24912 }, { - "x": 0.9980583680123244, - "y": 0.06228558453265938 + "x": 0.99806, + "y": 0.06229 }, { - "x": 0.9299736326546957, - "y": 0.3676262267127165 + "x": 0.92997, + "y": 0.36763 }, { - "x": 0.7708157230213022, - "y": 0.6370581772045215 + "x": 0.77082, + "y": 0.63706 }, { "max": { @@ -7060,12 +7060,12 @@ } }, { - "x": 778.2480699055171, - "y": 216.13842740491737 + "x": 778.24807, + "y": 216.13843 }, { - "x": 738.4277645115295, - "y": 176.3181220109301 + "x": 738.42776, + "y": 176.31812 }, { "category": 1, @@ -7082,16 +7082,16 @@ "y": 0 }, { - "x": 758.3379172085232, - "y": 196.22827470792373 + "x": 758.33792, + "y": 196.22827 }, { "x": 0, "y": 0 }, { - "x": 760.0273490142213, - "y": 189.85753042470603 + "x": 760.02735, + "y": 189.85753 }, { "endCol": 16, @@ -7114,8 +7114,8 @@ "yScale": 1 }, { - "x": -0.3711868467117938, - "y": 5.8921869002228675 + "x": -0.37119, + "y": 5.89219 }, [ { @@ -7183,141 +7183,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 771.5712559646132, - "y": 211.22460433775558 + "x": 771.57126, + "y": 211.2246 }, { "body": null, "index": 1, "isInternal": false, - "x": 766.2893651437462, - "y": 214.57965819074178 + "x": 766.28937, + "y": 214.57966 }, { "body": null, "index": 2, "isInternal": false, - "x": 760.2295164214644, - "y": 216.13842740491737 + "x": 760.22952, + "y": 216.13843 }, { "body": null, "index": 3, "isInternal": false, - "x": 753.9845472557723, - "y": 215.74869914118057 + "x": 753.98455, + "y": 215.7487 }, { "body": null, "index": 4, "isInternal": false, - "x": 748.1653523733589, - "y": 213.44832353695946 + "x": 748.16535, + "y": 213.44832 }, { "body": null, "index": 5, "isInternal": false, - "x": 743.3415875786916, - "y": 209.4616134640136 + "x": 743.34159, + "y": 209.46161 }, { "body": null, "index": 6, "isInternal": false, - "x": 739.9865337257054, - "y": 204.17972264314622 + "x": 739.98653, + "y": 204.17972 }, { "body": null, "index": 7, "isInternal": false, - "x": 738.4277645115295, - "y": 198.1198739208645 + "x": 738.42776, + "y": 198.11987 }, { "body": null, "index": 8, "isInternal": false, - "x": 738.8174927752666, - "y": 191.87490475517257 + "x": 738.81749, + "y": 191.8749 }, { "body": null, "index": 9, "isInternal": false, - "x": 741.1178683794875, - "y": 186.0557098727592 + "x": 741.11787, + "y": 186.05571 }, { "body": null, "index": 10, "isInternal": false, - "x": 745.1045784524335, - "y": 181.23194507809185 + "x": 745.10458, + "y": 181.23195 }, { "body": null, "index": 11, "isInternal": false, - "x": 750.3864692733007, - "y": 177.87689122510568 + "x": 750.38647, + "y": 177.87689 }, { "body": null, "index": 12, "isInternal": false, - "x": 756.4463179955824, - "y": 176.3181220109301 + "x": 756.44632, + "y": 176.31812 }, { "body": null, "index": 13, "isInternal": false, - "x": 762.6912871612743, - "y": 176.70785027466687 + "x": 762.69129, + "y": 176.70785 }, { "body": null, "index": 14, "isInternal": false, - "x": 768.5104820436877, - "y": 179.00822587888797 + "x": 768.51048, + "y": 179.00823 }, { "body": null, "index": 15, "isInternal": false, - "x": 773.334246838355, - "y": 182.99493595183387 + "x": 773.33425, + "y": 182.99494 }, { "body": null, "index": 16, "isInternal": false, - "x": 776.6893006913413, - "y": 188.27682677270118 + "x": 776.6893, + "y": 188.27683 }, { "body": null, "index": 17, "isInternal": false, - "x": 778.2480699055171, - "y": 194.33667549498296 + "x": 778.24807, + "y": 194.33668 }, { "body": null, "index": 18, "isInternal": false, - "x": 777.85834164178, - "y": 200.58164466067484 + "x": 777.85834, + "y": 200.58164 }, { "body": null, "index": 19, "isInternal": false, - "x": 775.5579660375591, - "y": 206.4008395430882 + "x": 775.55797, + "y": 206.40084 }, [], [ @@ -7353,8 +7353,8 @@ } ], { - "angleA": 1.3972193565253468, - "angleB": 0.25968774677599754, + "angleA": 1.39722, + "angleB": 0.25969, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7374,12 +7374,12 @@ "type": "constraint" }, { - "x": 3.411647492799979, - "y": 19.457162624207893 + "x": 3.41165, + "y": 19.45716 }, { - "x": -19.09165243454509, - "y": -5.072408039435443 + "x": -19.09165, + "y": -5.07241 }, { "lineWidth": 2, @@ -7387,8 +7387,8 @@ "visible": true }, { - "angleA": 0.25968774677599754, - "angleB": 0.5595839042714106, + "angleA": 0.25969, + "angleB": 0.55958, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7408,12 +7408,12 @@ "type": "constraint" }, { - "x": 19.091652434545082, - "y": 5.072408039435445 + "x": 19.09165, + "y": 5.07241 }, { - "x": -16.741042128156288, - "y": -10.486087185566259 + "x": -16.74104, + "y": -10.48609 }, { "lineWidth": 2, @@ -7421,8 +7421,8 @@ "visible": true }, { - "angleA": 0.5666051900144172, - "angleB": -0.06835915053123093, + "angleA": 0.56661, + "angleB": -0.06836, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7442,12 +7442,12 @@ "type": "constraint" }, { - "x": 16.6670042665906, - "y": 10.603371387320706 + "x": 16.667, + "y": 10.60337 }, { - "x": -19.70786301173099, - "y": 1.3493152007020832 + "x": -19.70786, + "y": 1.34932 }, { "lineWidth": 2, @@ -7455,8 +7455,8 @@ "visible": true }, { - "angleA": -0.06758599460691268, - "angleB": -0.7302325949295561, + "angleA": -0.06759, + "angleB": -0.73023, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7476,12 +7476,12 @@ "type": "constraint" }, { - "x": 19.7089003522831, - "y": -1.3340775478868654 + "x": 19.7089, + "y": -1.33408 }, { - "x": -14.717110693030948, - "y": 13.176766251591278 + "x": -14.71711, + "y": 13.17677 }, { "lineWidth": 2, @@ -7489,8 +7489,8 @@ "visible": true }, { - "angleA": -0.7392473611308601, - "angleB": -0.8313970480282972, + "angleA": -0.73925, + "angleB": -0.8314, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7510,12 +7510,12 @@ "type": "constraint" }, { - "x": 14.597728838467082, - "y": -13.308900358729392 + "x": 14.59773, + "y": -13.3089 }, { - "x": -13.311117857595324, - "y": 14.595706813347812 + "x": -13.31112, + "y": 14.59571 }, { "lineWidth": 2, @@ -7523,8 +7523,8 @@ "visible": true }, { - "angleA": -0.8309019023500483, - "angleB": 0.5823723883437674, + "angleA": -0.8309, + "angleB": 0.58237, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7544,12 +7544,12 @@ "type": "constraint" }, { - "x": 13.318343226711322, - "y": -14.589114081928118 + "x": 13.31834, + "y": -14.58911 }, { - "x": -16.497754030487684, - "y": -10.864834464893065 + "x": -16.49775, + "y": -10.86483 }, { "lineWidth": 2, @@ -7557,8 +7557,8 @@ "visible": true }, { - "angleA": 0.5923723883437674, - "angleB": 1.1474804931376006, + "angleA": 0.59237, + "angleB": 1.14748, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7578,12 +7578,12 @@ "type": "constraint" }, { - "x": 16.388282615807956, - "y": 11.029266018389771 + "x": 16.38828, + "y": 11.02927 }, { - "x": -8.114663818017918, - "y": -18.010351110418462 + "x": -8.11466, + "y": -18.01035 }, { "lineWidth": 2, @@ -7591,8 +7591,8 @@ "visible": true }, { - "angleA": 1.1463420041082641, - "angleB": 0.9432327426617692, + "angleA": 1.14634, + "angleB": 0.94323, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7612,12 +7612,12 @@ "type": "constraint" }, { - "x": 8.135163141802423, - "y": 18.001100984558146 + "x": 8.13516, + "y": 18.0011 }, { - "x": -11.59904152184484, - "y": -15.99008291956362 + "x": -11.59904, + "y": -15.99008 }, { "lineWidth": 2, @@ -7625,8 +7625,8 @@ "visible": true }, { - "angleA": 0.9332327426617691, - "angleB": 0.7006757121973595, + "angleA": 0.93323, + "angleB": 0.70068, "angularStiffness": 0, "bodyA": null, "bodyB": null, @@ -7646,12 +7646,12 @@ "type": "constraint" }, { - "x": 11.758359738796807, - "y": 15.873294940025623 + "x": 11.75836, + "y": 15.87329 }, { - "x": -15.100090089290026, - "y": -12.73608241553602 + "x": -15.10009, + "y": -12.73608 }, { "lineWidth": 2, @@ -7659,12 +7659,12 @@ "visible": true }, { - "angleB": 1.3972193565253468, + "angleB": 1.39722, "angularStiffness": 0, "bodyB": null, "id": 45, "label": "Constraint", - "length": 19.75553168102545, + "length": 19.75553, "pointA": { "#": 859 }, @@ -7682,8 +7682,8 @@ "y": 100 }, { - "x": -3.4541333327933303, - "y": -19.699466056705344 + "x": -3.45413, + "y": -19.69947 }, { "lineWidth": 2, diff --git a/test/browser/refs/circleStack/circleStack-0.json b/test/browser/refs/circleStack/circleStack-0.json index 69160956..a3a94a1b 100644 --- a/test/browser/refs/circleStack/circleStack-0.json +++ b/test/browser/refs/circleStack/circleStack-0.json @@ -1162,7 +1162,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 93 }, @@ -1184,13 +1184,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -1254,40 +1254,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -1419,7 +1419,7 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -1432,8 +1432,8 @@ "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 133.89600000000002 + "x": 133.896, + "y": 133.896 }, { "body": null, @@ -1446,7 +1446,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 139.508 }, { @@ -1467,14 +1467,14 @@ "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 133.89600000000002 + "x": 105.612, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 128.834 }, { @@ -1482,7 +1482,7 @@ "index": 9, "isInternal": false, "x": 100, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -1495,22 +1495,22 @@ "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 105.61200000000001 + "x": 105.612, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 101.93400000000001 + "y": 101.934 }, { "body": null, @@ -1523,7 +1523,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 100 }, { @@ -1531,14 +1531,14 @@ "index": 16, "isInternal": false, "x": 128.834, - "y": 101.93400000000001 + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 105.61200000000001 + "x": 133.896, + "y": 105.612 }, { "body": null, @@ -1559,7 +1559,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 138 }, @@ -1581,13 +1581,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -1651,40 +1651,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -1816,7 +1816,7 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -1830,7 +1830,7 @@ "index": 2, "isInternal": false, "x": 193.404, - "y": 133.89600000000002 + "y": 133.896 }, { "body": null, @@ -1865,7 +1865,7 @@ "index": 7, "isInternal": false, "x": 165.12, - "y": 133.89600000000002 + "y": 133.896 }, { "body": null, @@ -1879,7 +1879,7 @@ "index": 9, "isInternal": false, "x": 159.508, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -1900,14 +1900,14 @@ "index": 12, "isInternal": false, "x": 165.12, - "y": 105.61200000000001 + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 101.93400000000001 + "y": 101.934 }, { "body": null, @@ -1928,14 +1928,14 @@ "index": 16, "isInternal": false, "x": 188.342, - "y": 101.93400000000001 + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 105.61200000000001 + "y": 105.612 }, { "body": null, @@ -1956,7 +1956,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 183 }, @@ -1978,13 +1978,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2048,40 +2048,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2118,7 +2118,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 119.754 }, { @@ -2126,7 +2126,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 119.754 }, { @@ -2213,7 +2213,7 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -2226,8 +2226,8 @@ "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 133.89600000000002 + "x": 252.912, + "y": 133.896 }, { "body": null, @@ -2240,7 +2240,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 139.508 }, { @@ -2254,7 +2254,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 137.574 }, { @@ -2262,7 +2262,7 @@ "index": 7, "isInternal": false, "x": 224.628, - "y": 133.89600000000002 + "y": 133.896 }, { "body": null, @@ -2276,7 +2276,7 @@ "index": 9, "isInternal": false, "x": 219.016, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -2297,14 +2297,14 @@ "index": 12, "isInternal": false, "x": 224.628, - "y": 105.61200000000001 + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 101.93400000000001 + "x": 229.69, + "y": 101.934 }, { "body": null, @@ -2317,7 +2317,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 100 }, { @@ -2325,14 +2325,14 @@ "index": 16, "isInternal": false, "x": 247.85, - "y": 101.93400000000001 + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 105.61200000000001 + "x": 252.912, + "y": 105.612 }, { "body": null, @@ -2353,7 +2353,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 228 }, @@ -2375,13 +2375,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2445,40 +2445,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2493,7 +2493,7 @@ } }, { - "x": 318.03200000000004, + "x": 318.032, "y": 139.508 }, { @@ -2609,8 +2609,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 122.88300000000001 + "x": 318.032, + "y": 122.883 }, { "body": null, @@ -2624,7 +2624,7 @@ "index": 2, "isInternal": false, "x": 312.42, - "y": 133.89600000000002 + "y": 133.896 }, { "body": null, @@ -2637,7 +2637,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 139.508 }, { @@ -2651,7 +2651,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 137.574 }, { @@ -2659,7 +2659,7 @@ "index": 7, "isInternal": false, "x": 284.136, - "y": 133.89600000000002 + "y": 133.896 }, { "body": null, @@ -2673,7 +2673,7 @@ "index": 9, "isInternal": false, "x": 278.524, - "y": 122.88300000000001 + "y": 122.883 }, { "body": null, @@ -2694,14 +2694,14 @@ "index": 12, "isInternal": false, "x": 284.136, - "y": 105.61200000000001 + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 101.93400000000001 + "x": 289.198, + "y": 101.934 }, { "body": null, @@ -2714,7 +2714,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 100 }, { @@ -2722,14 +2722,14 @@ "index": 16, "isInternal": false, "x": 307.358, - "y": 101.93400000000001 + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 105.61200000000001 + "y": 105.612 }, { "body": null, @@ -2742,7 +2742,7 @@ "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, + "x": 318.032, "y": 116.625 }, { @@ -2750,7 +2750,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 273 }, @@ -2772,13 +2772,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2842,40 +2842,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2890,11 +2890,11 @@ } }, { - "x": 377.5400000000001, + "x": 377.54, "y": 139.508 }, { - "x": 338.03200000000004, + "x": 338.032, "y": 100 }, { @@ -2912,7 +2912,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 119.754 }, { @@ -2920,7 +2920,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 119.754 }, { @@ -3006,140 +3006,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 122.88300000000001 + "x": 377.54, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 133.89600000000002 + "x": 371.928, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 139.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 137.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 133.89600000000002 + "x": 343.644, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 128.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 122.88300000000001 + "x": 338.032, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, + "x": 338.032, "y": 116.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 105.61200000000001 + "x": 343.644, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 101.93400000000001 + "x": 348.706, + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 101.93400000000001 + "x": 366.866, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 105.61200000000001 + "x": 371.928, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, + "x": 377.54, "y": 116.625 }, { @@ -3147,7 +3147,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 318 }, @@ -3169,13 +3169,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3239,40 +3239,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3287,11 +3287,11 @@ } }, { - "x": 437.0480000000001, + "x": 437.048, "y": 139.508 }, { - "x": 397.5400000000001, + "x": 397.54, "y": 100 }, { @@ -3309,7 +3309,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 119.754 }, { @@ -3317,7 +3317,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 119.754 }, { @@ -3403,140 +3403,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 122.88300000000001 + "x": 437.048, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 133.89600000000002 + "x": 431.436, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 139.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 137.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 133.89600000000002 + "x": 403.152, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 128.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 122.88300000000001 + "x": 397.54, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, + "x": 397.54, "y": 116.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 105.61200000000001 + "x": 403.152, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 101.93400000000001 + "x": 408.214, + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 101.93400000000001 + "x": 426.374, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 105.61200000000001 + "x": 431.436, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, + "x": 437.048, "y": 116.625 }, { @@ -3544,7 +3544,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 363 }, @@ -3566,13 +3566,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3636,40 +3636,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3684,11 +3684,11 @@ } }, { - "x": 496.55600000000015, + "x": 496.556, "y": 139.508 }, { - "x": 457.0480000000001, + "x": 457.048, "y": 100 }, { @@ -3706,7 +3706,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 119.754 }, { @@ -3714,7 +3714,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 119.754 }, { @@ -3800,140 +3800,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 122.88300000000001 + "x": 496.556, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 133.89600000000002 + "x": 490.944, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 139.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 137.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 133.89600000000002 + "x": 462.66, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 128.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 122.88300000000001 + "x": 457.048, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, + "x": 457.048, "y": 116.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 105.61200000000001 + "x": 462.66, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 101.93400000000001 + "x": 467.722, + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 101.93400000000001 + "x": 485.882, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 105.61200000000001 + "x": 490.944, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, + "x": 496.556, "y": 116.625 }, { @@ -3941,7 +3941,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 408 }, @@ -3963,13 +3963,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4033,40 +4033,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4081,11 +4081,11 @@ } }, { - "x": 556.0640000000002, + "x": 556.064, "y": 139.508 }, { - "x": 516.5560000000002, + "x": 516.556, "y": 100 }, { @@ -4103,7 +4103,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 119.754 }, { @@ -4111,7 +4111,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 119.754 }, { @@ -4197,140 +4197,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 122.88300000000001 + "x": 556.064, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 133.89600000000002 + "x": 550.452, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 139.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 137.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 133.89600000000002 + "x": 522.168, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 128.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 122.88300000000001 + "x": 516.556, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, + "x": 516.556, "y": 116.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 105.61200000000001 + "x": 522.168, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 101.93400000000001 + "x": 527.23, + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 101.93400000000001 + "x": 545.39, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 105.61200000000001 + "x": 550.452, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, + "x": 556.064, "y": 116.625 }, { @@ -4338,7 +4338,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 453 }, @@ -4360,13 +4360,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4430,40 +4430,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4478,11 +4478,11 @@ } }, { - "x": 615.5720000000002, + "x": 615.572, "y": 139.508 }, { - "x": 576.0640000000002, + "x": 576.064, "y": 100 }, { @@ -4500,7 +4500,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 119.754 }, { @@ -4508,7 +4508,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 119.754 }, { @@ -4594,140 +4594,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 122.88300000000001 + "x": 615.572, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 133.89600000000002 + "x": 609.96, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 139.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 137.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 133.89600000000002 + "x": 581.676, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 128.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 122.88300000000001 + "x": 576.064, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, + "x": 576.064, "y": 116.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 105.61200000000001 + "x": 581.676, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 101.93400000000001 + "x": 586.738, + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 101.93400000000001 + "x": 604.898, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 105.61200000000001 + "x": 609.96, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, + "x": 615.572, "y": 116.625 }, { @@ -4735,7 +4735,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 498 }, @@ -4757,13 +4757,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4827,40 +4827,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4875,11 +4875,11 @@ } }, { - "x": 675.0800000000003, + "x": 675.08, "y": 139.508 }, { - "x": 635.5720000000002, + "x": 635.572, "y": 100 }, { @@ -4897,7 +4897,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 119.754 }, { @@ -4905,7 +4905,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 119.754 }, { @@ -4991,140 +4991,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 122.88300000000001 + "x": 675.08, + "y": 122.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 128.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 133.89600000000002 + "x": 669.468, + "y": 133.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 137.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 139.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 139.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 137.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 133.89600000000002 + "x": 641.184, + "y": 133.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 128.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 122.88300000000001 + "x": 635.572, + "y": 122.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, + "x": 635.572, "y": 116.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 110.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 105.61200000000001 + "x": 641.184, + "y": 105.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 101.93400000000001 + "x": 646.246, + "y": 101.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 101.93400000000001 + "x": 664.406, + "y": 101.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 105.61200000000001 + "x": 669.468, + "y": 105.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 110.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, + "x": 675.08, "y": 116.625 }, { @@ -5132,7 +5132,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 543 }, @@ -5154,13 +5154,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5224,40 +5224,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5277,7 +5277,7 @@ }, { "x": 100, - "y": 139.50799999999998 + "y": 139.508 }, { "category": 1, @@ -5402,7 +5402,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 173.404 }, { @@ -5416,7 +5416,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 179.016 }, { @@ -5437,14 +5437,14 @@ "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 173.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 168.342 }, { @@ -5465,14 +5465,14 @@ "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 150.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 145.12 }, { @@ -5487,14 +5487,14 @@ "index": 14, "isInternal": false, "x": 116.625, - "y": 139.50799999999998 + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 139.50799999999998 + "x": 122.883, + "y": 139.508 }, { "body": null, @@ -5507,7 +5507,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 145.12 }, { @@ -5529,7 +5529,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 588 }, @@ -5551,13 +5551,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5621,40 +5621,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5674,7 +5674,7 @@ }, { "x": 159.508, - "y": 139.50799999999998 + "y": 139.508 }, { "category": 1, @@ -5884,14 +5884,14 @@ "index": 14, "isInternal": false, "x": 176.133, - "y": 139.50799999999998 + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 139.50799999999998 + "y": 139.508 }, { "body": null, @@ -5926,7 +5926,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 633 }, @@ -5948,13 +5948,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6018,40 +6018,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6071,7 +6071,7 @@ }, { "x": 219.016, - "y": 139.50799999999998 + "y": 139.508 }, { "category": 1, @@ -6088,7 +6088,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 159.262 }, { @@ -6096,7 +6096,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 159.262 }, { @@ -6196,7 +6196,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 173.404 }, { @@ -6210,7 +6210,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 179.016 }, { @@ -6224,7 +6224,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 177.082 }, { @@ -6273,7 +6273,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 141.442 }, { @@ -6281,14 +6281,14 @@ "index": 14, "isInternal": false, "x": 235.641, - "y": 139.50799999999998 + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 139.50799999999998 + "x": 241.899, + "y": 139.508 }, { "body": null, @@ -6301,7 +6301,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 145.12 }, { @@ -6323,7 +6323,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 678 }, @@ -6345,13 +6345,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6415,40 +6415,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6463,12 +6463,12 @@ } }, { - "x": 318.03200000000004, + "x": 318.032, "y": 179.016 }, { "x": 278.524, - "y": 139.50799999999998 + "y": 139.508 }, { "category": 1, @@ -6579,7 +6579,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, + "x": 318.032, "y": 162.391 }, { @@ -6607,7 +6607,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 179.016 }, { @@ -6621,7 +6621,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 177.082 }, { @@ -6670,7 +6670,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 141.442 }, { @@ -6678,14 +6678,14 @@ "index": 14, "isInternal": false, "x": 295.149, - "y": 139.50799999999998 + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 139.50799999999998 + "x": 301.407, + "y": 139.508 }, { "body": null, @@ -6712,7 +6712,7 @@ "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, + "x": 318.032, "y": 156.133 }, { @@ -6720,7 +6720,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 723 }, @@ -6742,13 +6742,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6812,40 +6812,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6860,12 +6860,12 @@ } }, { - "x": 377.5400000000001, + "x": 377.54, "y": 179.016 }, { - "x": 338.03200000000004, - "y": 139.50799999999998 + "x": 338.032, + "y": 139.508 }, { "category": 1, @@ -6882,7 +6882,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 159.262 }, { @@ -6890,7 +6890,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 159.262 }, { @@ -6976,140 +6976,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, + "x": 377.54, "y": 162.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 168.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 173.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 177.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 179.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 179.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 177.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 173.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 168.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, + "x": 338.032, "y": 162.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, + "x": 338.032, "y": 156.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 150.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 145.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 141.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 139.50799999999998 + "x": 354.657, + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 139.50799999999998 + "x": 360.915, + "y": 139.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 141.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 145.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 150.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, + "x": 377.54, "y": 156.133 }, { @@ -7117,7 +7117,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 768 }, @@ -7139,13 +7139,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7209,40 +7209,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7257,12 +7257,12 @@ } }, { - "x": 437.0480000000001, + "x": 437.048, "y": 179.016 }, { - "x": 397.5400000000001, - "y": 139.50799999999998 + "x": 397.54, + "y": 139.508 }, { "category": 1, @@ -7279,7 +7279,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 159.262 }, { @@ -7287,7 +7287,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 159.262 }, { @@ -7373,140 +7373,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, + "x": 437.048, "y": 162.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 168.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 173.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 177.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 179.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 179.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 177.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 173.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 168.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, + "x": 397.54, "y": 162.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, + "x": 397.54, "y": 156.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 150.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 145.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 141.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 139.50799999999998 + "x": 414.165, + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 139.50799999999998 + "x": 420.423, + "y": 139.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 141.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 145.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 150.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, + "x": 437.048, "y": 156.133 }, { @@ -7514,7 +7514,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 813 }, @@ -7536,13 +7536,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7606,40 +7606,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7654,12 +7654,12 @@ } }, { - "x": 496.55600000000015, + "x": 496.556, "y": 179.016 }, { - "x": 457.0480000000001, - "y": 139.50799999999998 + "x": 457.048, + "y": 139.508 }, { "category": 1, @@ -7676,7 +7676,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 159.262 }, { @@ -7684,7 +7684,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 159.262 }, { @@ -7770,140 +7770,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, + "x": 496.556, "y": 162.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 168.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 173.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 177.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 179.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 179.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 177.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 173.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 168.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, + "x": 457.048, "y": 162.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, + "x": 457.048, "y": 156.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 150.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 145.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 141.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 139.50799999999998 + "x": 473.673, + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 139.50799999999998 + "x": 479.931, + "y": 139.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 141.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 145.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 150.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, + "x": 496.556, "y": 156.133 }, { @@ -7911,7 +7911,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 858 }, @@ -7933,13 +7933,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8003,40 +8003,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8051,12 +8051,12 @@ } }, { - "x": 556.0640000000002, + "x": 556.064, "y": 179.016 }, { - "x": 516.5560000000002, - "y": 139.50799999999998 + "x": 516.556, + "y": 139.508 }, { "category": 1, @@ -8073,7 +8073,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 159.262 }, { @@ -8081,7 +8081,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 159.262 }, { @@ -8167,140 +8167,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, + "x": 556.064, "y": 162.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 168.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 173.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 177.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 179.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 179.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 177.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 173.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 168.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, + "x": 516.556, "y": 162.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, + "x": 516.556, "y": 156.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 150.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 145.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 141.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 139.50799999999998 + "x": 533.181, + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 139.50799999999998 + "x": 539.439, + "y": 139.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 141.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 145.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 150.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, + "x": 556.064, "y": 156.133 }, { @@ -8308,7 +8308,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 903 }, @@ -8330,13 +8330,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8400,40 +8400,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8448,12 +8448,12 @@ } }, { - "x": 615.5720000000002, + "x": 615.572, "y": 179.016 }, { - "x": 576.0640000000002, - "y": 139.50799999999998 + "x": 576.064, + "y": 139.508 }, { "category": 1, @@ -8470,7 +8470,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 159.262 }, { @@ -8478,7 +8478,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 159.262 }, { @@ -8564,140 +8564,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, + "x": 615.572, "y": 162.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 168.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 173.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 177.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 179.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 179.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 177.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 173.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 168.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, + "x": 576.064, "y": 162.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, + "x": 576.064, "y": 156.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 150.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 145.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 141.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 139.50799999999998 + "x": 592.689, + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 139.50799999999998 + "x": 598.947, + "y": 139.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 141.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 145.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 150.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, + "x": 615.572, "y": 156.133 }, { @@ -8705,7 +8705,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 948 }, @@ -8727,13 +8727,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8797,40 +8797,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8845,12 +8845,12 @@ } }, { - "x": 675.0800000000003, + "x": 675.08, "y": 179.016 }, { - "x": 635.5720000000002, - "y": 139.50799999999998 + "x": 635.572, + "y": 139.508 }, { "category": 1, @@ -8867,7 +8867,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 159.262 }, { @@ -8875,7 +8875,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 159.262 }, { @@ -8961,140 +8961,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, + "x": 675.08, "y": 162.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 168.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 173.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 177.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 179.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 179.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 177.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 173.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 168.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, + "x": 635.572, "y": 162.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, + "x": 635.572, "y": 156.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 150.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 145.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 141.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 139.50799999999998 + "x": 652.197, + "y": 139.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 139.50799999999998 + "x": 658.455, + "y": 139.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 141.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 145.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 150.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, + "x": 675.08, "y": 156.133 }, { @@ -9102,7 +9102,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 993 }, @@ -9124,13 +9124,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9194,40 +9194,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9247,7 +9247,7 @@ }, { "x": 100, - "y": 179.01600000000002 + "y": 179.016 }, { "category": 1, @@ -9366,13 +9366,13 @@ "index": 1, "isInternal": false, "x": 137.574, - "y": 207.85000000000002 + "y": 207.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 212.912 }, { @@ -9386,7 +9386,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 218.524 }, { @@ -9407,15 +9407,15 @@ "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 212.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 207.85000000000002 + "x": 101.934, + "y": 207.85 }, { "body": null, @@ -9429,56 +9429,56 @@ "index": 10, "isInternal": false, "x": 100, - "y": 195.64100000000002 + "y": 195.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 189.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 184.62800000000001 + "x": 105.612, + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 180.95000000000002 + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 179.01600000000002 + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 179.01600000000002 + "x": 122.883, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 180.95000000000002 + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 184.62800000000001 + "x": 133.896, + "y": 184.628 }, { "body": null, @@ -9492,14 +9492,14 @@ "index": 19, "isInternal": false, "x": 139.508, - "y": 195.64100000000002 + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1038 }, @@ -9521,13 +9521,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9591,40 +9591,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9644,7 +9644,7 @@ }, { "x": 159.508, - "y": 179.01600000000002 + "y": 179.016 }, { "category": 1, @@ -9763,7 +9763,7 @@ "index": 1, "isInternal": false, "x": 197.082, - "y": 207.85000000000002 + "y": 207.85 }, { "body": null, @@ -9812,7 +9812,7 @@ "index": 8, "isInternal": false, "x": 161.442, - "y": 207.85000000000002 + "y": 207.85 }, { "body": null, @@ -9826,7 +9826,7 @@ "index": 10, "isInternal": false, "x": 159.508, - "y": 195.64100000000002 + "y": 195.641 }, { "body": null, @@ -9840,42 +9840,42 @@ "index": 12, "isInternal": false, "x": 165.12, - "y": 184.62800000000001 + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 180.95000000000002 + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 179.01600000000002 + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 179.01600000000002 + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 180.95000000000002 + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 184.62800000000001 + "y": 184.628 }, { "body": null, @@ -9889,14 +9889,14 @@ "index": 19, "isInternal": false, "x": 199.016, - "y": 195.64100000000002 + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1083 }, @@ -9918,13 +9918,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9988,40 +9988,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10041,7 +10041,7 @@ }, { "x": 219.016, - "y": 179.01600000000002 + "y": 179.016 }, { "category": 1, @@ -10058,7 +10058,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 198.77 }, { @@ -10066,7 +10066,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 198.77 }, { @@ -10160,13 +10160,13 @@ "index": 1, "isInternal": false, "x": 256.59, - "y": 207.85000000000002 + "y": 207.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 212.912 }, { @@ -10180,7 +10180,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 218.524 }, { @@ -10194,7 +10194,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 216.59 }, { @@ -10209,7 +10209,7 @@ "index": 8, "isInternal": false, "x": 220.95, - "y": 207.85000000000002 + "y": 207.85 }, { "body": null, @@ -10223,7 +10223,7 @@ "index": 10, "isInternal": false, "x": 219.016, - "y": 195.64100000000002 + "y": 195.641 }, { "body": null, @@ -10237,42 +10237,42 @@ "index": 12, "isInternal": false, "x": 224.628, - "y": 184.62800000000001 + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 180.95000000000002 + "x": 229.69, + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 179.01600000000002 + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 179.01600000000002 + "x": 241.899, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 180.95000000000002 + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 184.62800000000001 + "x": 252.912, + "y": 184.628 }, { "body": null, @@ -10286,14 +10286,14 @@ "index": 19, "isInternal": false, "x": 258.524, - "y": 195.64100000000002 + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1128 }, @@ -10315,13 +10315,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10385,40 +10385,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10433,12 +10433,12 @@ } }, { - "x": 318.03200000000004, + "x": 318.032, "y": 218.524 }, { "x": 278.524, - "y": 179.01600000000002 + "y": 179.016 }, { "category": 1, @@ -10549,7 +10549,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, + "x": 318.032, "y": 201.899 }, { @@ -10557,7 +10557,7 @@ "index": 1, "isInternal": false, "x": 316.098, - "y": 207.85000000000002 + "y": 207.85 }, { "body": null, @@ -10577,7 +10577,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 218.524 }, { @@ -10591,7 +10591,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 216.59 }, { @@ -10606,7 +10606,7 @@ "index": 8, "isInternal": false, "x": 280.458, - "y": 207.85000000000002 + "y": 207.85 }, { "body": null, @@ -10620,7 +10620,7 @@ "index": 10, "isInternal": false, "x": 278.524, - "y": 195.64100000000002 + "y": 195.641 }, { "body": null, @@ -10634,42 +10634,42 @@ "index": 12, "isInternal": false, "x": 284.136, - "y": 184.62800000000001 + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 180.95000000000002 + "x": 289.198, + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 179.01600000000002 + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 179.01600000000002 + "x": 301.407, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 180.95000000000002 + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 184.62800000000001 + "y": 184.628 }, { "body": null, @@ -10682,15 +10682,15 @@ "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 195.64100000000002 + "x": 318.032, + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1173 }, @@ -10712,13 +10712,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10782,40 +10782,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10830,12 +10830,12 @@ } }, { - "x": 377.5400000000001, + "x": 377.54, "y": 218.524 }, { - "x": 338.03200000000004, - "y": 179.01600000000002 + "x": 338.032, + "y": 179.016 }, { "category": 1, @@ -10852,7 +10852,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 198.77 }, { @@ -10860,7 +10860,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 198.77 }, { @@ -10946,148 +10946,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, + "x": 377.54, "y": 201.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 207.85000000000002 + "x": 375.606, + "y": 207.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 212.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 216.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 218.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 218.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 216.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 212.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 207.85000000000002 + "x": 339.966, + "y": 207.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, + "x": 338.032, "y": 201.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 195.64100000000002 + "x": 338.032, + "y": 195.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 189.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 184.62800000000001 + "x": 343.644, + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 180.95000000000002 + "x": 348.706, + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 179.01600000000002 + "x": 354.657, + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 179.01600000000002 + "x": 360.915, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 180.95000000000002 + "x": 366.866, + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 184.62800000000001 + "x": 371.928, + "y": 184.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 189.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 195.64100000000002 + "x": 377.54, + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1218 }, @@ -11109,13 +11109,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11179,40 +11179,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11227,12 +11227,12 @@ } }, { - "x": 437.0480000000001, + "x": 437.048, "y": 218.524 }, { - "x": 397.5400000000001, - "y": 179.01600000000002 + "x": 397.54, + "y": 179.016 }, { "category": 1, @@ -11249,7 +11249,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 198.77 }, { @@ -11257,7 +11257,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 198.77 }, { @@ -11343,148 +11343,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, + "x": 437.048, "y": 201.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 207.85000000000002 + "x": 435.114, + "y": 207.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 212.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 216.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 218.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 218.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 216.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 212.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 207.85000000000002 + "x": 399.474, + "y": 207.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, + "x": 397.54, "y": 201.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 195.64100000000002 + "x": 397.54, + "y": 195.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 189.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 184.62800000000001 + "x": 403.152, + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 180.95000000000002 + "x": 408.214, + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 179.01600000000002 + "x": 414.165, + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 179.01600000000002 + "x": 420.423, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 180.95000000000002 + "x": 426.374, + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 184.62800000000001 + "x": 431.436, + "y": 184.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 189.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 195.64100000000002 + "x": 437.048, + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1263 }, @@ -11506,13 +11506,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11576,40 +11576,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11624,12 +11624,12 @@ } }, { - "x": 496.55600000000015, + "x": 496.556, "y": 218.524 }, { - "x": 457.0480000000001, - "y": 179.01600000000002 + "x": 457.048, + "y": 179.016 }, { "category": 1, @@ -11646,7 +11646,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 198.77 }, { @@ -11654,7 +11654,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 198.77 }, { @@ -11740,148 +11740,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, + "x": 496.556, "y": 201.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 207.85000000000002 + "x": 494.622, + "y": 207.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 212.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 216.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 218.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 218.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 216.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 212.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 207.85000000000002 + "x": 458.982, + "y": 207.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, + "x": 457.048, "y": 201.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 195.64100000000002 + "x": 457.048, + "y": 195.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 189.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 184.62800000000001 + "x": 462.66, + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 180.95000000000002 + "x": 467.722, + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 179.01600000000002 + "x": 473.673, + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 179.01600000000002 + "x": 479.931, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 180.95000000000002 + "x": 485.882, + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 184.62800000000001 + "x": 490.944, + "y": 184.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 189.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 195.64100000000002 + "x": 496.556, + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1308 }, @@ -11903,13 +11903,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11973,40 +11973,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12021,12 +12021,12 @@ } }, { - "x": 556.0640000000002, + "x": 556.064, "y": 218.524 }, { - "x": 516.5560000000002, - "y": 179.01600000000002 + "x": 516.556, + "y": 179.016 }, { "category": 1, @@ -12043,7 +12043,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 198.77 }, { @@ -12051,7 +12051,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 198.77 }, { @@ -12137,148 +12137,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, + "x": 556.064, "y": 201.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 207.85000000000002 + "x": 554.13, + "y": 207.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 212.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 216.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 218.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 218.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 216.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 212.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 207.85000000000002 + "x": 518.49, + "y": 207.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, + "x": 516.556, "y": 201.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 195.64100000000002 + "x": 516.556, + "y": 195.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 189.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 184.62800000000001 + "x": 522.168, + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 180.95000000000002 + "x": 527.23, + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 179.01600000000002 + "x": 533.181, + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 179.01600000000002 + "x": 539.439, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 180.95000000000002 + "x": 545.39, + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 184.62800000000001 + "x": 550.452, + "y": 184.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 189.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 195.64100000000002 + "x": 556.064, + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1353 }, @@ -12300,13 +12300,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12370,40 +12370,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12418,12 +12418,12 @@ } }, { - "x": 615.5720000000002, + "x": 615.572, "y": 218.524 }, { - "x": 576.0640000000002, - "y": 179.01600000000002 + "x": 576.064, + "y": 179.016 }, { "category": 1, @@ -12440,7 +12440,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 198.77 }, { @@ -12448,7 +12448,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 198.77 }, { @@ -12534,148 +12534,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, + "x": 615.572, "y": 201.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 207.85000000000002 + "x": 613.638, + "y": 207.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 212.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 216.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 218.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 218.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 216.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 212.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 207.85000000000002 + "x": 577.998, + "y": 207.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, + "x": 576.064, "y": 201.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 195.64100000000002 + "x": 576.064, + "y": 195.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 189.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 184.62800000000001 + "x": 581.676, + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 180.95000000000002 + "x": 586.738, + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 179.01600000000002 + "x": 592.689, + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 179.01600000000002 + "x": 598.947, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 180.95000000000002 + "x": 604.898, + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 184.62800000000001 + "x": 609.96, + "y": 184.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 189.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 195.64100000000002 + "x": 615.572, + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1398 }, @@ -12697,13 +12697,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12767,40 +12767,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12815,12 +12815,12 @@ } }, { - "x": 675.0800000000003, + "x": 675.08, "y": 218.524 }, { - "x": 635.5720000000002, - "y": 179.01600000000002 + "x": 635.572, + "y": 179.016 }, { "category": 1, @@ -12837,7 +12837,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 198.77 }, { @@ -12845,7 +12845,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 198.77 }, { @@ -12931,148 +12931,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, + "x": 675.08, "y": 201.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 207.85000000000002 + "x": 673.146, + "y": 207.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 212.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 216.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 218.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 218.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 216.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 212.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 207.85000000000002 + "x": 637.506, + "y": 207.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, + "x": 635.572, "y": 201.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 195.64100000000002 + "x": 635.572, + "y": 195.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 189.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 184.62800000000001 + "x": 641.184, + "y": 184.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 180.95000000000002 + "x": 646.246, + "y": 180.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 179.01600000000002 + "x": 652.197, + "y": 179.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 179.01600000000002 + "x": 658.455, + "y": 179.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 180.95000000000002 + "x": 664.406, + "y": 180.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 184.62800000000001 + "x": 669.468, + "y": 184.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 189.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 195.64100000000002 + "x": 675.08, + "y": 195.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1443 }, @@ -13094,13 +13094,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13164,40 +13164,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13329,7 +13329,7 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 241.40699999999998 + "y": 241.407 }, { "body": null, @@ -13342,7 +13342,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 252.42 }, { @@ -13350,13 +13350,13 @@ "index": 3, "isInternal": false, "x": 128.834, - "y": 256.09799999999996 + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 258.032 }, { @@ -13371,20 +13371,20 @@ "index": 6, "isInternal": false, "x": 110.674, - "y": 256.09799999999996 + "y": 256.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 252.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 247.358 }, { @@ -13392,7 +13392,7 @@ "index": 9, "isInternal": false, "x": 100, - "y": 241.40699999999998 + "y": 241.407 }, { "body": null, @@ -13405,14 +13405,14 @@ "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 229.19799999999998 + "x": 101.934, + "y": 229.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 224.136 }, { @@ -13433,7 +13433,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 218.524 }, { @@ -13447,7 +13447,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 224.136 }, { @@ -13455,7 +13455,7 @@ "index": 18, "isInternal": false, "x": 137.574, - "y": 229.19799999999998 + "y": 229.198 }, { "body": null, @@ -13469,7 +13469,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1488 }, @@ -13491,13 +13491,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13561,40 +13561,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13726,7 +13726,7 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 241.40699999999998 + "y": 241.407 }, { "body": null, @@ -13747,7 +13747,7 @@ "index": 3, "isInternal": false, "x": 188.342, - "y": 256.09799999999996 + "y": 256.098 }, { "body": null, @@ -13768,7 +13768,7 @@ "index": 6, "isInternal": false, "x": 170.182, - "y": 256.09799999999996 + "y": 256.098 }, { "body": null, @@ -13789,7 +13789,7 @@ "index": 9, "isInternal": false, "x": 159.508, - "y": 241.40699999999998 + "y": 241.407 }, { "body": null, @@ -13803,7 +13803,7 @@ "index": 11, "isInternal": false, "x": 161.442, - "y": 229.19799999999998 + "y": 229.198 }, { "body": null, @@ -13852,7 +13852,7 @@ "index": 18, "isInternal": false, "x": 197.082, - "y": 229.19799999999998 + "y": 229.198 }, { "body": null, @@ -13866,7 +13866,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1533 }, @@ -13888,13 +13888,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13958,40 +13958,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14028,7 +14028,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 238.278 }, { @@ -14036,7 +14036,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 238.278 }, { @@ -14123,7 +14123,7 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 241.40699999999998 + "y": 241.407 }, { "body": null, @@ -14136,7 +14136,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 252.42 }, { @@ -14144,13 +14144,13 @@ "index": 3, "isInternal": false, "x": 247.85, - "y": 256.09799999999996 + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 258.032 }, { @@ -14164,8 +14164,8 @@ "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 256.09799999999996 + "x": 229.69, + "y": 256.098 }, { "body": null, @@ -14186,7 +14186,7 @@ "index": 9, "isInternal": false, "x": 219.016, - "y": 241.40699999999998 + "y": 241.407 }, { "body": null, @@ -14200,7 +14200,7 @@ "index": 11, "isInternal": false, "x": 220.95, - "y": 229.19799999999998 + "y": 229.198 }, { "body": null, @@ -14213,7 +14213,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 220.458 }, { @@ -14227,7 +14227,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 218.524 }, { @@ -14241,7 +14241,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 224.136 }, { @@ -14249,7 +14249,7 @@ "index": 18, "isInternal": false, "x": 256.59, - "y": 229.19799999999998 + "y": 229.198 }, { "body": null, @@ -14263,7 +14263,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1578 }, @@ -14285,13 +14285,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14355,40 +14355,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14403,7 +14403,7 @@ } }, { - "x": 318.03200000000004, + "x": 318.032, "y": 258.032 }, { @@ -14519,8 +14519,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 241.40699999999998 + "x": 318.032, + "y": 241.407 }, { "body": null, @@ -14541,13 +14541,13 @@ "index": 3, "isInternal": false, "x": 307.358, - "y": 256.09799999999996 + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 258.032 }, { @@ -14561,8 +14561,8 @@ "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 256.09799999999996 + "x": 289.198, + "y": 256.098 }, { "body": null, @@ -14583,7 +14583,7 @@ "index": 9, "isInternal": false, "x": 278.524, - "y": 241.40699999999998 + "y": 241.407 }, { "body": null, @@ -14597,7 +14597,7 @@ "index": 11, "isInternal": false, "x": 280.458, - "y": 229.19799999999998 + "y": 229.198 }, { "body": null, @@ -14610,7 +14610,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 220.458 }, { @@ -14624,7 +14624,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 218.524 }, { @@ -14646,13 +14646,13 @@ "index": 18, "isInternal": false, "x": 316.098, - "y": 229.19799999999998 + "y": 229.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, + "x": 318.032, "y": 235.149 }, { @@ -14660,7 +14660,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1623 }, @@ -14682,13 +14682,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14752,40 +14752,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14800,11 +14800,11 @@ } }, { - "x": 377.5400000000001, + "x": 377.54, "y": 258.032 }, { - "x": 338.03200000000004, + "x": 338.032, "y": 218.524 }, { @@ -14822,7 +14822,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 238.278 }, { @@ -14830,7 +14830,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 238.278 }, { @@ -14916,140 +14916,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 241.40699999999998 + "x": 377.54, + "y": 241.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 247.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 252.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 256.09799999999996 + "x": 366.866, + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 258.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 258.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 256.09799999999996 + "x": 348.706, + "y": 256.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 252.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 247.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 241.40699999999998 + "x": 338.032, + "y": 241.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, + "x": 338.032, "y": 235.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 229.19799999999998 + "x": 339.966, + "y": 229.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 224.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 220.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 218.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 218.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 220.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 224.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 229.19799999999998 + "x": 375.606, + "y": 229.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, + "x": 377.54, "y": 235.149 }, { @@ -15057,7 +15057,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1668 }, @@ -15079,13 +15079,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15149,40 +15149,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15197,11 +15197,11 @@ } }, { - "x": 437.0480000000001, + "x": 437.048, "y": 258.032 }, { - "x": 397.5400000000001, + "x": 397.54, "y": 218.524 }, { @@ -15219,7 +15219,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 238.278 }, { @@ -15227,7 +15227,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 238.278 }, { @@ -15313,140 +15313,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 241.40699999999998 + "x": 437.048, + "y": 241.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 247.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 252.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 256.09799999999996 + "x": 426.374, + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 258.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 258.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 256.09799999999996 + "x": 408.214, + "y": 256.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 252.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 247.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 241.40699999999998 + "x": 397.54, + "y": 241.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, + "x": 397.54, "y": 235.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 229.19799999999998 + "x": 399.474, + "y": 229.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 224.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 220.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 218.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 218.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 220.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 224.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 229.19799999999998 + "x": 435.114, + "y": 229.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, + "x": 437.048, "y": 235.149 }, { @@ -15454,7 +15454,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1713 }, @@ -15476,13 +15476,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15546,40 +15546,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15594,11 +15594,11 @@ } }, { - "x": 496.55600000000015, + "x": 496.556, "y": 258.032 }, { - "x": 457.0480000000001, + "x": 457.048, "y": 218.524 }, { @@ -15616,7 +15616,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 238.278 }, { @@ -15624,7 +15624,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 238.278 }, { @@ -15710,140 +15710,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 241.40699999999998 + "x": 496.556, + "y": 241.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 247.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 252.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 256.09799999999996 + "x": 485.882, + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 258.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 258.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 256.09799999999996 + "x": 467.722, + "y": 256.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 252.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 247.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 241.40699999999998 + "x": 457.048, + "y": 241.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, + "x": 457.048, "y": 235.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 229.19799999999998 + "x": 458.982, + "y": 229.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 224.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 220.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 218.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 218.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 220.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 224.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 229.19799999999998 + "x": 494.622, + "y": 229.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, + "x": 496.556, "y": 235.149 }, { @@ -15851,7 +15851,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1758 }, @@ -15873,13 +15873,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15943,40 +15943,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15991,11 +15991,11 @@ } }, { - "x": 556.0640000000002, + "x": 556.064, "y": 258.032 }, { - "x": 516.5560000000002, + "x": 516.556, "y": 218.524 }, { @@ -16013,7 +16013,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 238.278 }, { @@ -16021,7 +16021,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 238.278 }, { @@ -16107,140 +16107,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 241.40699999999998 + "x": 556.064, + "y": 241.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 247.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 252.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 256.09799999999996 + "x": 545.39, + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 258.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 258.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 256.09799999999996 + "x": 527.23, + "y": 256.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 252.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 247.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 241.40699999999998 + "x": 516.556, + "y": 241.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, + "x": 516.556, "y": 235.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 229.19799999999998 + "x": 518.49, + "y": 229.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 224.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 220.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 218.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 218.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 220.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 224.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 229.19799999999998 + "x": 554.13, + "y": 229.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, + "x": 556.064, "y": 235.149 }, { @@ -16248,7 +16248,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1803 }, @@ -16270,13 +16270,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16340,40 +16340,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16388,11 +16388,11 @@ } }, { - "x": 615.5720000000002, + "x": 615.572, "y": 258.032 }, { - "x": 576.0640000000002, + "x": 576.064, "y": 218.524 }, { @@ -16410,7 +16410,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 238.278 }, { @@ -16418,7 +16418,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 238.278 }, { @@ -16504,140 +16504,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 241.40699999999998 + "x": 615.572, + "y": 241.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 247.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 252.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 256.09799999999996 + "x": 604.898, + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 258.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 258.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 256.09799999999996 + "x": 586.738, + "y": 256.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 252.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 247.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 241.40699999999998 + "x": 576.064, + "y": 241.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, + "x": 576.064, "y": 235.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 229.19799999999998 + "x": 577.998, + "y": 229.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 224.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 220.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 218.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 218.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 220.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 224.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 229.19799999999998 + "x": 613.638, + "y": 229.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, + "x": 615.572, "y": 235.149 }, { @@ -16645,7 +16645,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1848 }, @@ -16667,13 +16667,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16737,40 +16737,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16785,11 +16785,11 @@ } }, { - "x": 675.0800000000003, + "x": 675.08, "y": 258.032 }, { - "x": 635.5720000000002, + "x": 635.572, "y": 218.524 }, { @@ -16807,7 +16807,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 238.278 }, { @@ -16815,7 +16815,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 238.278 }, { @@ -16901,140 +16901,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 241.40699999999998 + "x": 675.08, + "y": 241.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 247.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 252.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 256.09799999999996 + "x": 664.406, + "y": 256.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 258.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 258.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 256.09799999999996 + "x": 646.246, + "y": 256.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 252.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 247.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 241.40699999999998 + "x": 635.572, + "y": 241.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, + "x": 635.572, "y": 235.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 229.19799999999998 + "x": 637.506, + "y": 229.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 224.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 220.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 218.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 218.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 220.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 224.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 229.19799999999998 + "x": 673.146, + "y": 229.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, + "x": 675.08, "y": 235.149 }, { @@ -17042,7 +17042,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1893 }, @@ -17064,13 +17064,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17134,40 +17134,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17187,7 +17187,7 @@ }, { "x": 100, - "y": 258.03200000000004 + "y": 258.032 }, { "category": 1, @@ -17312,7 +17312,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 291.928 }, { @@ -17326,7 +17326,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 297.54 }, { @@ -17347,14 +17347,14 @@ "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 291.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 286.866 }, { @@ -17369,20 +17369,20 @@ "index": 10, "isInternal": false, "x": 100, - "y": 274.65700000000004 + "y": 274.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 268.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 263.644 }, { @@ -17397,14 +17397,14 @@ "index": 14, "isInternal": false, "x": 116.625, - "y": 258.03200000000004 + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 258.03200000000004 + "x": 122.883, + "y": 258.032 }, { "body": null, @@ -17417,7 +17417,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 263.644 }, { @@ -17432,14 +17432,14 @@ "index": 19, "isInternal": false, "x": 139.508, - "y": 274.65700000000004 + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1938 }, @@ -17461,13 +17461,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17531,40 +17531,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17584,7 +17584,7 @@ }, { "x": 159.508, - "y": 258.03200000000004 + "y": 258.032 }, { "category": 1, @@ -17766,7 +17766,7 @@ "index": 10, "isInternal": false, "x": 159.508, - "y": 274.65700000000004 + "y": 274.657 }, { "body": null, @@ -17794,14 +17794,14 @@ "index": 14, "isInternal": false, "x": 176.133, - "y": 258.03200000000004 + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 258.03200000000004 + "y": 258.032 }, { "body": null, @@ -17829,14 +17829,14 @@ "index": 19, "isInternal": false, "x": 199.016, - "y": 274.65700000000004 + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1983 }, @@ -17858,13 +17858,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17928,40 +17928,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17981,7 +17981,7 @@ }, { "x": 219.016, - "y": 258.03200000000004 + "y": 258.032 }, { "category": 1, @@ -17998,7 +17998,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 277.786 }, { @@ -18006,7 +18006,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 277.786 }, { @@ -18106,7 +18106,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 291.928 }, { @@ -18120,7 +18120,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 297.54 }, { @@ -18134,7 +18134,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 295.606 }, { @@ -18163,7 +18163,7 @@ "index": 10, "isInternal": false, "x": 219.016, - "y": 274.65700000000004 + "y": 274.657 }, { "body": null, @@ -18183,7 +18183,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 259.966 }, { @@ -18191,14 +18191,14 @@ "index": 14, "isInternal": false, "x": 235.641, - "y": 258.03200000000004 + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 258.03200000000004 + "x": 241.899, + "y": 258.032 }, { "body": null, @@ -18211,7 +18211,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 263.644 }, { @@ -18226,14 +18226,14 @@ "index": 19, "isInternal": false, "x": 258.524, - "y": 274.65700000000004 + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2028 }, @@ -18255,13 +18255,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18325,40 +18325,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18373,12 +18373,12 @@ } }, { - "x": 318.03200000000004, + "x": 318.032, "y": 297.54 }, { "x": 278.524, - "y": 258.03200000000004 + "y": 258.032 }, { "category": 1, @@ -18489,7 +18489,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, + "x": 318.032, "y": 280.915 }, { @@ -18517,7 +18517,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 297.54 }, { @@ -18531,7 +18531,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 295.606 }, { @@ -18560,7 +18560,7 @@ "index": 10, "isInternal": false, "x": 278.524, - "y": 274.65700000000004 + "y": 274.657 }, { "body": null, @@ -18580,7 +18580,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 259.966 }, { @@ -18588,14 +18588,14 @@ "index": 14, "isInternal": false, "x": 295.149, - "y": 258.03200000000004 + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 258.03200000000004 + "x": 301.407, + "y": 258.032 }, { "body": null, @@ -18622,15 +18622,15 @@ "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 274.65700000000004 + "x": 318.032, + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2073 }, @@ -18652,13 +18652,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18722,40 +18722,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18770,12 +18770,12 @@ } }, { - "x": 377.5400000000001, + "x": 377.54, "y": 297.54 }, { - "x": 338.03200000000004, - "y": 258.03200000000004 + "x": 338.032, + "y": 258.032 }, { "category": 1, @@ -18792,7 +18792,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 277.786 }, { @@ -18800,7 +18800,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 277.786 }, { @@ -18886,148 +18886,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, + "x": 377.54, "y": 280.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 286.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 291.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 295.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 297.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 297.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 295.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 291.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 286.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, + "x": 338.032, "y": 280.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 274.65700000000004 + "x": 338.032, + "y": 274.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 268.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 263.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 259.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 258.03200000000004 + "x": 354.657, + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 258.03200000000004 + "x": 360.915, + "y": 258.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 259.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 263.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 268.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 274.65700000000004 + "x": 377.54, + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2118 }, @@ -19049,13 +19049,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19119,40 +19119,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19167,12 +19167,12 @@ } }, { - "x": 437.0480000000001, + "x": 437.048, "y": 297.54 }, { - "x": 397.5400000000001, - "y": 258.03200000000004 + "x": 397.54, + "y": 258.032 }, { "category": 1, @@ -19189,7 +19189,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 277.786 }, { @@ -19197,7 +19197,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 277.786 }, { @@ -19283,148 +19283,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, + "x": 437.048, "y": 280.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 286.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 291.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 295.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 297.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 297.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 295.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 291.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 286.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, + "x": 397.54, "y": 280.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 274.65700000000004 + "x": 397.54, + "y": 274.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 268.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 263.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 259.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 258.03200000000004 + "x": 414.165, + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 258.03200000000004 + "x": 420.423, + "y": 258.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 259.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 263.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 268.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 274.65700000000004 + "x": 437.048, + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2163 }, @@ -19446,13 +19446,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19516,40 +19516,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19564,12 +19564,12 @@ } }, { - "x": 496.55600000000015, + "x": 496.556, "y": 297.54 }, { - "x": 457.0480000000001, - "y": 258.03200000000004 + "x": 457.048, + "y": 258.032 }, { "category": 1, @@ -19586,7 +19586,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 277.786 }, { @@ -19594,7 +19594,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 277.786 }, { @@ -19680,148 +19680,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, + "x": 496.556, "y": 280.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 286.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 291.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 295.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 297.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 297.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 295.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 291.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 286.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, + "x": 457.048, "y": 280.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 274.65700000000004 + "x": 457.048, + "y": 274.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 268.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 263.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 259.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 258.03200000000004 + "x": 473.673, + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 258.03200000000004 + "x": 479.931, + "y": 258.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 259.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 263.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 268.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 274.65700000000004 + "x": 496.556, + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2208 }, @@ -19843,13 +19843,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19913,40 +19913,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19961,12 +19961,12 @@ } }, { - "x": 556.0640000000002, + "x": 556.064, "y": 297.54 }, { - "x": 516.5560000000002, - "y": 258.03200000000004 + "x": 516.556, + "y": 258.032 }, { "category": 1, @@ -19983,7 +19983,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 277.786 }, { @@ -19991,7 +19991,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 277.786 }, { @@ -20077,148 +20077,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, + "x": 556.064, "y": 280.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 286.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 291.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 295.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 297.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 297.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 295.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 291.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 286.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, + "x": 516.556, "y": 280.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 274.65700000000004 + "x": 516.556, + "y": 274.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 268.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 263.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 259.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 258.03200000000004 + "x": 533.181, + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 258.03200000000004 + "x": 539.439, + "y": 258.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 259.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 263.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 268.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 274.65700000000004 + "x": 556.064, + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2253 }, @@ -20240,13 +20240,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20310,40 +20310,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20358,12 +20358,12 @@ } }, { - "x": 615.5720000000002, + "x": 615.572, "y": 297.54 }, { - "x": 576.0640000000002, - "y": 258.03200000000004 + "x": 576.064, + "y": 258.032 }, { "category": 1, @@ -20380,7 +20380,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 277.786 }, { @@ -20388,7 +20388,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 277.786 }, { @@ -20474,148 +20474,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, + "x": 615.572, "y": 280.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 286.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 291.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 295.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 297.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 297.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 295.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 291.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 286.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, + "x": 576.064, "y": 280.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 274.65700000000004 + "x": 576.064, + "y": 274.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 268.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 263.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 259.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 258.03200000000004 + "x": 592.689, + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 258.03200000000004 + "x": 598.947, + "y": 258.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 259.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 263.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 268.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 274.65700000000004 + "x": 615.572, + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2298 }, @@ -20637,13 +20637,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20707,40 +20707,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20755,12 +20755,12 @@ } }, { - "x": 675.0800000000003, + "x": 675.08, "y": 297.54 }, { - "x": 635.5720000000002, - "y": 258.03200000000004 + "x": 635.572, + "y": 258.032 }, { "category": 1, @@ -20777,7 +20777,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 277.786 }, { @@ -20785,7 +20785,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 277.786 }, { @@ -20871,148 +20871,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, + "x": 675.08, "y": 280.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 286.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 291.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 295.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 297.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 297.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 295.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 291.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 286.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, + "x": 635.572, "y": 280.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 274.65700000000004 + "x": 635.572, + "y": 274.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 268.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 263.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 259.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 258.03200000000004 + "x": 652.197, + "y": 258.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 258.03200000000004 + "x": 658.455, + "y": 258.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 259.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 263.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 268.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 274.65700000000004 + "x": 675.08, + "y": 274.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2343 }, @@ -21034,13 +21034,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21104,40 +21104,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21157,7 +21157,7 @@ }, { "x": 100, - "y": 297.53999999999996 + "y": 297.54 }, { "category": 1, @@ -21276,13 +21276,13 @@ "index": 1, "isInternal": false, "x": 137.574, - "y": 326.37399999999997 + "y": 326.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 331.436 }, { @@ -21296,7 +21296,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 337.048 }, { @@ -21317,15 +21317,15 @@ "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 331.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 326.37399999999997 + "x": 101.934, + "y": 326.374 }, { "body": null, @@ -21339,20 +21339,20 @@ "index": 10, "isInternal": false, "x": 100, - "y": 314.16499999999996 + "y": 314.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 308.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 303.152 }, { @@ -21367,14 +21367,14 @@ "index": 14, "isInternal": false, "x": 116.625, - "y": 297.53999999999996 + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 297.53999999999996 + "x": 122.883, + "y": 297.54 }, { "body": null, @@ -21387,7 +21387,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 303.152 }, { @@ -21402,14 +21402,14 @@ "index": 19, "isInternal": false, "x": 139.508, - "y": 314.16499999999996 + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2388 }, @@ -21431,13 +21431,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21501,40 +21501,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21554,7 +21554,7 @@ }, { "x": 159.508, - "y": 297.53999999999996 + "y": 297.54 }, { "category": 1, @@ -21673,7 +21673,7 @@ "index": 1, "isInternal": false, "x": 197.082, - "y": 326.37399999999997 + "y": 326.374 }, { "body": null, @@ -21722,7 +21722,7 @@ "index": 8, "isInternal": false, "x": 161.442, - "y": 326.37399999999997 + "y": 326.374 }, { "body": null, @@ -21736,7 +21736,7 @@ "index": 10, "isInternal": false, "x": 159.508, - "y": 314.16499999999996 + "y": 314.165 }, { "body": null, @@ -21764,14 +21764,14 @@ "index": 14, "isInternal": false, "x": 176.133, - "y": 297.53999999999996 + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 297.53999999999996 + "y": 297.54 }, { "body": null, @@ -21799,14 +21799,14 @@ "index": 19, "isInternal": false, "x": 199.016, - "y": 314.16499999999996 + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2433 }, @@ -21828,13 +21828,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21898,40 +21898,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21951,7 +21951,7 @@ }, { "x": 219.016, - "y": 297.53999999999996 + "y": 297.54 }, { "category": 1, @@ -21968,7 +21968,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 317.294 }, { @@ -21976,7 +21976,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 317.294 }, { @@ -22070,13 +22070,13 @@ "index": 1, "isInternal": false, "x": 256.59, - "y": 326.37399999999997 + "y": 326.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 331.436 }, { @@ -22090,7 +22090,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 337.048 }, { @@ -22104,7 +22104,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 335.114 }, { @@ -22119,7 +22119,7 @@ "index": 8, "isInternal": false, "x": 220.95, - "y": 326.37399999999997 + "y": 326.374 }, { "body": null, @@ -22133,7 +22133,7 @@ "index": 10, "isInternal": false, "x": 219.016, - "y": 314.16499999999996 + "y": 314.165 }, { "body": null, @@ -22153,7 +22153,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 299.474 }, { @@ -22161,14 +22161,14 @@ "index": 14, "isInternal": false, "x": 235.641, - "y": 297.53999999999996 + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 297.53999999999996 + "x": 241.899, + "y": 297.54 }, { "body": null, @@ -22181,7 +22181,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 303.152 }, { @@ -22196,14 +22196,14 @@ "index": 19, "isInternal": false, "x": 258.524, - "y": 314.16499999999996 + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2478 }, @@ -22225,13 +22225,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -22295,40 +22295,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -22343,12 +22343,12 @@ } }, { - "x": 318.03200000000004, + "x": 318.032, "y": 337.048 }, { "x": 278.524, - "y": 297.53999999999996 + "y": 297.54 }, { "category": 1, @@ -22459,7 +22459,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, + "x": 318.032, "y": 320.423 }, { @@ -22467,7 +22467,7 @@ "index": 1, "isInternal": false, "x": 316.098, - "y": 326.37399999999997 + "y": 326.374 }, { "body": null, @@ -22487,7 +22487,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 337.048 }, { @@ -22501,7 +22501,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 335.114 }, { @@ -22516,7 +22516,7 @@ "index": 8, "isInternal": false, "x": 280.458, - "y": 326.37399999999997 + "y": 326.374 }, { "body": null, @@ -22530,7 +22530,7 @@ "index": 10, "isInternal": false, "x": 278.524, - "y": 314.16499999999996 + "y": 314.165 }, { "body": null, @@ -22550,7 +22550,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 299.474 }, { @@ -22558,14 +22558,14 @@ "index": 14, "isInternal": false, "x": 295.149, - "y": 297.53999999999996 + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 297.53999999999996 + "x": 301.407, + "y": 297.54 }, { "body": null, @@ -22592,15 +22592,15 @@ "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 314.16499999999996 + "x": 318.032, + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2523 }, @@ -22622,13 +22622,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -22692,40 +22692,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -22740,12 +22740,12 @@ } }, { - "x": 377.5400000000001, + "x": 377.54, "y": 337.048 }, { - "x": 338.03200000000004, - "y": 297.53999999999996 + "x": 338.032, + "y": 297.54 }, { "category": 1, @@ -22762,7 +22762,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 317.294 }, { @@ -22770,7 +22770,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 317.294 }, { @@ -22856,148 +22856,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, + "x": 377.54, "y": 320.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 326.37399999999997 + "x": 375.606, + "y": 326.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 331.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 335.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 337.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 337.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 335.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 331.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 326.37399999999997 + "x": 339.966, + "y": 326.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, + "x": 338.032, "y": 320.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 314.16499999999996 + "x": 338.032, + "y": 314.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 308.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 303.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 299.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 297.53999999999996 + "x": 354.657, + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 297.53999999999996 + "x": 360.915, + "y": 297.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 299.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 303.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 308.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 314.16499999999996 + "x": 377.54, + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2568 }, @@ -23019,13 +23019,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -23089,40 +23089,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -23137,12 +23137,12 @@ } }, { - "x": 437.0480000000001, + "x": 437.048, "y": 337.048 }, { - "x": 397.5400000000001, - "y": 297.53999999999996 + "x": 397.54, + "y": 297.54 }, { "category": 1, @@ -23159,7 +23159,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 317.294 }, { @@ -23167,7 +23167,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 317.294 }, { @@ -23253,148 +23253,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, + "x": 437.048, "y": 320.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 326.37399999999997 + "x": 435.114, + "y": 326.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 331.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 335.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 337.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 337.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 335.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 331.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 326.37399999999997 + "x": 399.474, + "y": 326.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, + "x": 397.54, "y": 320.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 314.16499999999996 + "x": 397.54, + "y": 314.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 308.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 303.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 299.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 297.53999999999996 + "x": 414.165, + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 297.53999999999996 + "x": 420.423, + "y": 297.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 299.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 303.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 308.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 314.16499999999996 + "x": 437.048, + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2613 }, @@ -23416,13 +23416,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -23486,40 +23486,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -23534,12 +23534,12 @@ } }, { - "x": 496.55600000000015, + "x": 496.556, "y": 337.048 }, { - "x": 457.0480000000001, - "y": 297.53999999999996 + "x": 457.048, + "y": 297.54 }, { "category": 1, @@ -23556,7 +23556,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 317.294 }, { @@ -23564,7 +23564,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 317.294 }, { @@ -23650,148 +23650,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, + "x": 496.556, "y": 320.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 326.37399999999997 + "x": 494.622, + "y": 326.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 331.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 335.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 337.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 337.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 335.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 331.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 326.37399999999997 + "x": 458.982, + "y": 326.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, + "x": 457.048, "y": 320.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 314.16499999999996 + "x": 457.048, + "y": 314.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 308.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 303.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 299.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 297.53999999999996 + "x": 473.673, + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 297.53999999999996 + "x": 479.931, + "y": 297.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 299.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 303.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 308.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 314.16499999999996 + "x": 496.556, + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2658 }, @@ -23813,13 +23813,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -23883,40 +23883,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -23931,12 +23931,12 @@ } }, { - "x": 556.0640000000002, + "x": 556.064, "y": 337.048 }, { - "x": 516.5560000000002, - "y": 297.53999999999996 + "x": 516.556, + "y": 297.54 }, { "category": 1, @@ -23953,7 +23953,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 317.294 }, { @@ -23961,7 +23961,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 317.294 }, { @@ -24047,148 +24047,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, + "x": 556.064, "y": 320.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 326.37399999999997 + "x": 554.13, + "y": 326.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 331.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 335.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 337.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 337.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 335.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 331.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 326.37399999999997 + "x": 518.49, + "y": 326.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, + "x": 516.556, "y": 320.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 314.16499999999996 + "x": 516.556, + "y": 314.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 308.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 303.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 299.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 297.53999999999996 + "x": 533.181, + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 297.53999999999996 + "x": 539.439, + "y": 297.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 299.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 303.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 308.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 314.16499999999996 + "x": 556.064, + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2703 }, @@ -24210,13 +24210,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -24280,40 +24280,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -24328,12 +24328,12 @@ } }, { - "x": 615.5720000000002, + "x": 615.572, "y": 337.048 }, { - "x": 576.0640000000002, - "y": 297.53999999999996 + "x": 576.064, + "y": 297.54 }, { "category": 1, @@ -24350,7 +24350,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 317.294 }, { @@ -24358,7 +24358,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 317.294 }, { @@ -24444,148 +24444,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, + "x": 615.572, "y": 320.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 326.37399999999997 + "x": 613.638, + "y": 326.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 331.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 335.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 337.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 337.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 335.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 331.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 326.37399999999997 + "x": 577.998, + "y": 326.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, + "x": 576.064, "y": 320.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 314.16499999999996 + "x": 576.064, + "y": 314.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 308.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 303.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 299.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 297.53999999999996 + "x": 592.689, + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 297.53999999999996 + "x": 598.947, + "y": 297.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 299.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 303.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 308.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 314.16499999999996 + "x": 615.572, + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2748 }, @@ -24607,13 +24607,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -24677,40 +24677,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -24725,12 +24725,12 @@ } }, { - "x": 675.0800000000003, + "x": 675.08, "y": 337.048 }, { - "x": 635.5720000000002, - "y": 297.53999999999996 + "x": 635.572, + "y": 297.54 }, { "category": 1, @@ -24747,7 +24747,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 317.294 }, { @@ -24755,7 +24755,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 317.294 }, { @@ -24841,148 +24841,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, + "x": 675.08, "y": 320.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 326.37399999999997 + "x": 673.146, + "y": 326.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 331.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 335.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 337.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 337.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 335.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 331.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 326.37399999999997 + "x": 637.506, + "y": 326.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, + "x": 635.572, "y": 320.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 314.16499999999996 + "x": 635.572, + "y": 314.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 308.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 303.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 299.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 297.53999999999996 + "x": 652.197, + "y": 297.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 297.53999999999996 + "x": 658.455, + "y": 297.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 299.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 303.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 308.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 314.16499999999996 + "x": 675.08, + "y": 314.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2793 }, @@ -25004,13 +25004,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -25074,40 +25074,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -25123,7 +25123,7 @@ }, { "x": 139.508, - "y": 376.55600000000004 + "y": 376.556 }, { "x": 100, @@ -25239,7 +25239,7 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 359.93100000000004 + "y": 359.931 }, { "body": null, @@ -25252,7 +25252,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 370.944 }, { @@ -25266,15 +25266,15 @@ "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 376.55600000000004 + "x": 122.883, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, @@ -25287,14 +25287,14 @@ "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 370.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, + "x": 101.934, "y": 365.882 }, { @@ -25302,7 +25302,7 @@ "index": 9, "isInternal": false, "x": 100, - "y": 359.93100000000004 + "y": 359.931 }, { "body": null, @@ -25315,14 +25315,14 @@ "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 347.72200000000004 + "x": 101.934, + "y": 347.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, + "x": 105.612, "y": 342.66 }, { @@ -25343,7 +25343,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, + "x": 122.883, "y": 337.048 }, { @@ -25357,7 +25357,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, + "x": 133.896, "y": 342.66 }, { @@ -25365,7 +25365,7 @@ "index": 18, "isInternal": false, "x": 137.574, - "y": 347.72200000000004 + "y": 347.722 }, { "body": null, @@ -25379,7 +25379,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2838 }, @@ -25401,13 +25401,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -25471,40 +25471,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -25520,7 +25520,7 @@ }, { "x": 199.016, - "y": 376.55600000000004 + "y": 376.556 }, { "x": 159.508, @@ -25636,7 +25636,7 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 359.93100000000004 + "y": 359.931 }, { "body": null, @@ -25664,14 +25664,14 @@ "index": 4, "isInternal": false, "x": 182.391, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, @@ -25699,7 +25699,7 @@ "index": 9, "isInternal": false, "x": 159.508, - "y": 359.93100000000004 + "y": 359.931 }, { "body": null, @@ -25713,7 +25713,7 @@ "index": 11, "isInternal": false, "x": 161.442, - "y": 347.72200000000004 + "y": 347.722 }, { "body": null, @@ -25762,7 +25762,7 @@ "index": 18, "isInternal": false, "x": 197.082, - "y": 347.72200000000004 + "y": 347.722 }, { "body": null, @@ -25776,7 +25776,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2883 }, @@ -25798,13 +25798,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -25868,40 +25868,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -25917,7 +25917,7 @@ }, { "x": 258.524, - "y": 376.55600000000004 + "y": 376.556 }, { "x": 219.016, @@ -25938,7 +25938,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 356.802 }, { @@ -25946,7 +25946,7 @@ "y": 0 }, { - "x": 238.76999999999998, + "x": 238.77, "y": 356.802 }, { @@ -26033,7 +26033,7 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 359.93100000000004 + "y": 359.931 }, { "body": null, @@ -26046,7 +26046,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 370.944 }, { @@ -26060,21 +26060,21 @@ "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 376.55600000000004 + "x": 241.899, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 374.622 }, { @@ -26096,7 +26096,7 @@ "index": 9, "isInternal": false, "x": 219.016, - "y": 359.93100000000004 + "y": 359.931 }, { "body": null, @@ -26110,7 +26110,7 @@ "index": 11, "isInternal": false, "x": 220.95, - "y": 347.72200000000004 + "y": 347.722 }, { "body": null, @@ -26123,7 +26123,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, + "x": 229.69, "y": 338.982 }, { @@ -26137,7 +26137,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, + "x": 241.899, "y": 337.048 }, { @@ -26151,7 +26151,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, + "x": 252.912, "y": 342.66 }, { @@ -26159,7 +26159,7 @@ "index": 18, "isInternal": false, "x": 256.59, - "y": 347.72200000000004 + "y": 347.722 }, { "body": null, @@ -26173,7 +26173,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2928 }, @@ -26195,13 +26195,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -26265,40 +26265,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -26313,8 +26313,8 @@ } }, { - "x": 318.03200000000004, - "y": 376.55600000000004 + "x": 318.032, + "y": 376.556 }, { "x": 278.524, @@ -26429,8 +26429,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 359.93100000000004 + "x": 318.032, + "y": 359.931 }, { "body": null, @@ -26457,21 +26457,21 @@ "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 376.55600000000004 + "x": 301.407, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 374.622 }, { @@ -26493,7 +26493,7 @@ "index": 9, "isInternal": false, "x": 278.524, - "y": 359.93100000000004 + "y": 359.931 }, { "body": null, @@ -26507,7 +26507,7 @@ "index": 11, "isInternal": false, "x": 280.458, - "y": 347.72200000000004 + "y": 347.722 }, { "body": null, @@ -26520,7 +26520,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, + "x": 289.198, "y": 338.982 }, { @@ -26534,7 +26534,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, + "x": 301.407, "y": 337.048 }, { @@ -26556,13 +26556,13 @@ "index": 18, "isInternal": false, "x": 316.098, - "y": 347.72200000000004 + "y": 347.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, + "x": 318.032, "y": 353.673 }, { @@ -26570,7 +26570,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2973 }, @@ -26592,13 +26592,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -26662,40 +26662,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -26710,11 +26710,11 @@ } }, { - "x": 377.5400000000001, - "y": 376.55600000000004 + "x": 377.54, + "y": 376.556 }, { - "x": 338.03200000000004, + "x": 338.032, "y": 337.048 }, { @@ -26732,7 +26732,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 356.802 }, { @@ -26740,7 +26740,7 @@ "y": 0 }, { - "x": 357.78600000000006, + "x": 357.786, "y": 356.802 }, { @@ -26826,140 +26826,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 359.93100000000004 + "x": 377.54, + "y": 359.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, + "x": 375.606, "y": 365.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 370.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 374.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 376.55600000000004 + "x": 360.915, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 376.55600000000004 + "x": 354.657, + "y": 376.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 374.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 370.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, + "x": 339.966, "y": 365.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 359.93100000000004 + "x": 338.032, + "y": 359.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, + "x": 338.032, "y": 353.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 347.72200000000004 + "x": 339.966, + "y": 347.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, + "x": 343.644, "y": 342.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, + "x": 348.706, "y": 338.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, + "x": 354.657, "y": 337.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, + "x": 360.915, "y": 337.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, + "x": 366.866, "y": 338.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, + "x": 371.928, "y": 342.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 347.72200000000004 + "x": 375.606, + "y": 347.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, + "x": 377.54, "y": 353.673 }, { @@ -26967,7 +26967,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3018 }, @@ -26989,13 +26989,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -27059,40 +27059,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -27107,11 +27107,11 @@ } }, { - "x": 437.0480000000001, - "y": 376.55600000000004 + "x": 437.048, + "y": 376.556 }, { - "x": 397.5400000000001, + "x": 397.54, "y": 337.048 }, { @@ -27129,7 +27129,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 356.802 }, { @@ -27137,7 +27137,7 @@ "y": 0 }, { - "x": 417.2940000000001, + "x": 417.294, "y": 356.802 }, { @@ -27223,140 +27223,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 359.93100000000004 + "x": 437.048, + "y": 359.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, + "x": 435.114, "y": 365.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 370.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 374.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 376.55600000000004 + "x": 420.423, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 376.55600000000004 + "x": 414.165, + "y": 376.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 374.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 370.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, + "x": 399.474, "y": 365.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 359.93100000000004 + "x": 397.54, + "y": 359.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, + "x": 397.54, "y": 353.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 347.72200000000004 + "x": 399.474, + "y": 347.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, + "x": 403.152, "y": 342.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, + "x": 408.214, "y": 338.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, + "x": 414.165, "y": 337.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, + "x": 420.423, "y": 337.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, + "x": 426.374, "y": 338.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, + "x": 431.436, "y": 342.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 347.72200000000004 + "x": 435.114, + "y": 347.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, + "x": 437.048, "y": 353.673 }, { @@ -27364,7 +27364,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3063 }, @@ -27386,13 +27386,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -27456,40 +27456,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -27504,11 +27504,11 @@ } }, { - "x": 496.55600000000015, - "y": 376.55600000000004 + "x": 496.556, + "y": 376.556 }, { - "x": 457.0480000000001, + "x": 457.048, "y": 337.048 }, { @@ -27526,7 +27526,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 356.802 }, { @@ -27534,7 +27534,7 @@ "y": 0 }, { - "x": 476.80200000000013, + "x": 476.802, "y": 356.802 }, { @@ -27620,140 +27620,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 359.93100000000004 + "x": 496.556, + "y": 359.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, + "x": 494.622, "y": 365.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 370.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 374.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 376.55600000000004 + "x": 479.931, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 376.55600000000004 + "x": 473.673, + "y": 376.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 374.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 370.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, + "x": 458.982, "y": 365.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 359.93100000000004 + "x": 457.048, + "y": 359.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, + "x": 457.048, "y": 353.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 347.72200000000004 + "x": 458.982, + "y": 347.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, + "x": 462.66, "y": 342.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, + "x": 467.722, "y": 338.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, + "x": 473.673, "y": 337.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, + "x": 479.931, "y": 337.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, + "x": 485.882, "y": 338.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, + "x": 490.944, "y": 342.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 347.72200000000004 + "x": 494.622, + "y": 347.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, + "x": 496.556, "y": 353.673 }, { @@ -27761,7 +27761,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3108 }, @@ -27783,13 +27783,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -27853,40 +27853,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -27901,11 +27901,11 @@ } }, { - "x": 556.0640000000002, - "y": 376.55600000000004 + "x": 556.064, + "y": 376.556 }, { - "x": 516.5560000000002, + "x": 516.556, "y": 337.048 }, { @@ -27923,7 +27923,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 356.802 }, { @@ -27931,7 +27931,7 @@ "y": 0 }, { - "x": 536.3100000000002, + "x": 536.31, "y": 356.802 }, { @@ -28017,140 +28017,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 359.93100000000004 + "x": 556.064, + "y": 359.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, + "x": 554.13, "y": 365.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 370.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 374.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 376.55600000000004 + "x": 539.439, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 376.55600000000004 + "x": 533.181, + "y": 376.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 374.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 370.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, + "x": 518.49, "y": 365.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 359.93100000000004 + "x": 516.556, + "y": 359.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, + "x": 516.556, "y": 353.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 347.72200000000004 + "x": 518.49, + "y": 347.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, + "x": 522.168, "y": 342.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, + "x": 527.23, "y": 338.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, + "x": 533.181, "y": 337.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, + "x": 539.439, "y": 337.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, + "x": 545.39, "y": 338.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, + "x": 550.452, "y": 342.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 347.72200000000004 + "x": 554.13, + "y": 347.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, + "x": 556.064, "y": 353.673 }, { @@ -28158,7 +28158,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3153 }, @@ -28180,13 +28180,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -28250,40 +28250,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -28298,11 +28298,11 @@ } }, { - "x": 615.5720000000002, - "y": 376.55600000000004 + "x": 615.572, + "y": 376.556 }, { - "x": 576.0640000000002, + "x": 576.064, "y": 337.048 }, { @@ -28320,7 +28320,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 356.802 }, { @@ -28328,7 +28328,7 @@ "y": 0 }, { - "x": 595.8180000000002, + "x": 595.818, "y": 356.802 }, { @@ -28414,140 +28414,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 359.93100000000004 + "x": 615.572, + "y": 359.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, + "x": 613.638, "y": 365.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 370.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 374.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 376.55600000000004 + "x": 598.947, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 376.55600000000004 + "x": 592.689, + "y": 376.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 374.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 370.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, + "x": 577.998, "y": 365.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 359.93100000000004 + "x": 576.064, + "y": 359.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, + "x": 576.064, "y": 353.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 347.72200000000004 + "x": 577.998, + "y": 347.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, + "x": 581.676, "y": 342.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, + "x": 586.738, "y": 338.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, + "x": 592.689, "y": 337.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, + "x": 598.947, "y": 337.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, + "x": 604.898, "y": 338.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, + "x": 609.96, "y": 342.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 347.72200000000004 + "x": 613.638, + "y": 347.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, + "x": 615.572, "y": 353.673 }, { @@ -28555,7 +28555,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3198 }, @@ -28577,13 +28577,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -28647,40 +28647,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -28695,11 +28695,11 @@ } }, { - "x": 675.0800000000003, - "y": 376.55600000000004 + "x": 675.08, + "y": 376.556 }, { - "x": 635.5720000000002, + "x": 635.572, "y": 337.048 }, { @@ -28717,7 +28717,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 356.802 }, { @@ -28725,7 +28725,7 @@ "y": 0 }, { - "x": 655.3260000000002, + "x": 655.326, "y": 356.802 }, { @@ -28811,140 +28811,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 359.93100000000004 + "x": 675.08, + "y": 359.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, + "x": 673.146, "y": 365.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 370.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 374.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 376.55600000000004 + "x": 658.455, + "y": 376.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 376.55600000000004 + "x": 652.197, + "y": 376.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 374.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 370.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, + "x": 637.506, "y": 365.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 359.93100000000004 + "x": 635.572, + "y": 359.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, + "x": 635.572, "y": 353.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 347.72200000000004 + "x": 637.506, + "y": 347.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, + "x": 641.184, "y": 342.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, + "x": 646.246, "y": 338.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, + "x": 652.197, "y": 337.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, + "x": 658.455, "y": 337.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, + "x": 664.406, "y": 338.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, + "x": 669.468, "y": 342.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 347.72200000000004 + "x": 673.146, + "y": 347.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, + "x": 675.08, "y": 353.673 }, { @@ -28952,7 +28952,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3243 }, @@ -28974,13 +28974,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -29044,40 +29044,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -29093,11 +29093,11 @@ }, { "x": 139.508, - "y": 416.0640000000001 + "y": 416.064 }, { "x": 100, - "y": 376.55600000000004 + "y": 376.556 }, { "category": 1, @@ -29115,7 +29115,7 @@ }, { "x": 119.754, - "y": 396.31000000000006 + "y": 396.31 }, { "x": 0, @@ -29123,7 +29123,7 @@ }, { "x": 119.754, - "y": 396.31000000000006 + "y": 396.31 }, { "fillStyle": "#C7F464", @@ -29209,147 +29209,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 399.4390000000001 + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 405.39000000000004 + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 410.45200000000006 + "x": 133.896, + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 414.13000000000005 + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 416.0640000000001 + "x": 122.883, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 414.13000000000005 + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 410.45200000000006 + "x": 105.612, + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 405.39000000000004 + "x": 101.934, + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 399.4390000000001 + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 393.18100000000004 + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 387.2300000000001 + "x": 101.934, + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 382.16800000000006 + "x": 105.612, + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 378.49000000000007 + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 376.55600000000004 + "x": 122.883, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 378.49000000000007 + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 382.16800000000006 + "x": 133.896, + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 387.2300000000001 + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 393.18100000000004 + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3288 }, @@ -29371,13 +29371,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -29441,40 +29441,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -29490,11 +29490,11 @@ }, { "x": 199.016, - "y": 416.0640000000001 + "y": 416.064 }, { "x": 159.508, - "y": 376.55600000000004 + "y": 376.556 }, { "category": 1, @@ -29512,7 +29512,7 @@ }, { "x": 179.262, - "y": 396.31000000000006 + "y": 396.31 }, { "x": 0, @@ -29520,7 +29520,7 @@ }, { "x": 179.262, - "y": 396.31000000000006 + "y": 396.31 }, { "fillStyle": "#556270", @@ -29606,147 +29606,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 399.4390000000001 + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 405.39000000000004 + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 410.45200000000006 + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 414.13000000000005 + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 414.13000000000005 + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 410.45200000000006 + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 405.39000000000004 + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 399.4390000000001 + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 393.18100000000004 + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 387.2300000000001 + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 382.16800000000006 + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 378.49000000000007 + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 378.49000000000007 + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 382.16800000000006 + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 387.2300000000001 + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 393.18100000000004 + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3333 }, @@ -29768,13 +29768,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -29838,40 +29838,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -29887,11 +29887,11 @@ }, { "x": 258.524, - "y": 416.0640000000001 + "y": 416.064 }, { "x": 219.016, - "y": 376.55600000000004 + "y": 376.556 }, { "category": 1, @@ -29908,16 +29908,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 396.31000000000006 + "x": 238.77, + "y": 396.31 }, { "x": 0, "y": 0 }, { - "x": 238.76999999999998, - "y": 396.31000000000006 + "x": 238.77, + "y": 396.31 }, { "fillStyle": "#4ECDC4", @@ -30003,147 +30003,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 399.4390000000001 + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 405.39000000000004 + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 410.45200000000006 + "x": 252.912, + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 414.13000000000005 + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 416.0640000000001 + "x": 241.899, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 414.13000000000005 + "x": 229.69, + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 410.45200000000006 + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 405.39000000000004 + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 399.4390000000001 + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 393.18100000000004 + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 387.2300000000001 + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 382.16800000000006 + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 378.49000000000007 + "x": 229.69, + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 376.55600000000004 + "x": 241.899, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 378.49000000000007 + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 382.16800000000006 + "x": 252.912, + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 387.2300000000001 + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 393.18100000000004 + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3378 }, @@ -30165,13 +30165,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -30235,40 +30235,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -30283,12 +30283,12 @@ } }, { - "x": 318.03200000000004, - "y": 416.0640000000001 + "x": 318.032, + "y": 416.064 }, { "x": 278.524, - "y": 376.55600000000004 + "y": 376.556 }, { "category": 1, @@ -30306,7 +30306,7 @@ }, { "x": 298.278, - "y": 396.31000000000006 + "y": 396.31 }, { "x": 0, @@ -30314,7 +30314,7 @@ }, { "x": 298.278, - "y": 396.31000000000006 + "y": 396.31 }, { "fillStyle": "#556270", @@ -30399,148 +30399,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 399.4390000000001 + "x": 318.032, + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 405.39000000000004 + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 410.45200000000006 + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 414.13000000000005 + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 416.0640000000001 + "x": 301.407, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 414.13000000000005 + "x": 289.198, + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 410.45200000000006 + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 405.39000000000004 + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 399.4390000000001 + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 393.18100000000004 + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 387.2300000000001 + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 382.16800000000006 + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 378.49000000000007 + "x": 289.198, + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 376.55600000000004 + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 376.55600000000004 + "x": 301.407, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 378.49000000000007 + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 382.16800000000006 + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 387.2300000000001 + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 393.18100000000004 + "x": 318.032, + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3423 }, @@ -30562,13 +30562,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -30632,40 +30632,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -30680,12 +30680,12 @@ } }, { - "x": 377.5400000000001, - "y": 416.0640000000001 + "x": 377.54, + "y": 416.064 }, { - "x": 338.03200000000004, - "y": 376.55600000000004 + "x": 338.032, + "y": 376.556 }, { "category": 1, @@ -30702,16 +30702,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 396.31000000000006 + "x": 357.786, + "y": 396.31 }, { "x": 0, "y": 0 }, { - "x": 357.78600000000006, - "y": 396.31000000000006 + "x": 357.786, + "y": 396.31 }, { "fillStyle": "#C44D58", @@ -30796,148 +30796,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 399.4390000000001 + "x": 377.54, + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 405.39000000000004 + "x": 375.606, + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 410.45200000000006 + "x": 371.928, + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 414.13000000000005 + "x": 366.866, + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 416.0640000000001 + "x": 360.915, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 416.0640000000001 + "x": 354.657, + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 414.13000000000005 + "x": 348.706, + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 410.45200000000006 + "x": 343.644, + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 405.39000000000004 + "x": 339.966, + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 399.4390000000001 + "x": 338.032, + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 393.18100000000004 + "x": 338.032, + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 387.2300000000001 + "x": 339.966, + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 382.16800000000006 + "x": 343.644, + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 378.49000000000007 + "x": 348.706, + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 376.55600000000004 + "x": 354.657, + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 376.55600000000004 + "x": 360.915, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 378.49000000000007 + "x": 366.866, + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 382.16800000000006 + "x": 371.928, + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 387.2300000000001 + "x": 375.606, + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 393.18100000000004 + "x": 377.54, + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3468 }, @@ -30959,13 +30959,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -31029,40 +31029,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -31077,12 +31077,12 @@ } }, { - "x": 437.0480000000001, - "y": 416.0640000000001 + "x": 437.048, + "y": 416.064 }, { - "x": 397.5400000000001, - "y": 376.55600000000004 + "x": 397.54, + "y": 376.556 }, { "category": 1, @@ -31099,16 +31099,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 396.31000000000006 + "x": 417.294, + "y": 396.31 }, { "x": 0, "y": 0 }, { - "x": 417.2940000000001, - "y": 396.31000000000006 + "x": 417.294, + "y": 396.31 }, { "fillStyle": "#4ECDC4", @@ -31193,148 +31193,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 399.4390000000001 + "x": 437.048, + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 405.39000000000004 + "x": 435.114, + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 410.45200000000006 + "x": 431.436, + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 414.13000000000005 + "x": 426.374, + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 416.0640000000001 + "x": 420.423, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 416.0640000000001 + "x": 414.165, + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 414.13000000000005 + "x": 408.214, + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 410.45200000000006 + "x": 403.152, + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 405.39000000000004 + "x": 399.474, + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 399.4390000000001 + "x": 397.54, + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 393.18100000000004 + "x": 397.54, + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 387.2300000000001 + "x": 399.474, + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 382.16800000000006 + "x": 403.152, + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 378.49000000000007 + "x": 408.214, + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 376.55600000000004 + "x": 414.165, + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 376.55600000000004 + "x": 420.423, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 378.49000000000007 + "x": 426.374, + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 382.16800000000006 + "x": 431.436, + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 387.2300000000001 + "x": 435.114, + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 393.18100000000004 + "x": 437.048, + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3513 }, @@ -31356,13 +31356,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -31426,40 +31426,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -31474,12 +31474,12 @@ } }, { - "x": 496.55600000000015, - "y": 416.0640000000001 + "x": 496.556, + "y": 416.064 }, { - "x": 457.0480000000001, - "y": 376.55600000000004 + "x": 457.048, + "y": 376.556 }, { "category": 1, @@ -31496,16 +31496,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 396.31000000000006 + "x": 476.802, + "y": 396.31 }, { "x": 0, "y": 0 }, { - "x": 476.80200000000013, - "y": 396.31000000000006 + "x": 476.802, + "y": 396.31 }, { "fillStyle": "#556270", @@ -31590,148 +31590,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 399.4390000000001 + "x": 496.556, + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 405.39000000000004 + "x": 494.622, + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 410.45200000000006 + "x": 490.944, + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 414.13000000000005 + "x": 485.882, + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 416.0640000000001 + "x": 479.931, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 416.0640000000001 + "x": 473.673, + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 414.13000000000005 + "x": 467.722, + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 410.45200000000006 + "x": 462.66, + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 405.39000000000004 + "x": 458.982, + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 399.4390000000001 + "x": 457.048, + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 393.18100000000004 + "x": 457.048, + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 387.2300000000001 + "x": 458.982, + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 382.16800000000006 + "x": 462.66, + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 378.49000000000007 + "x": 467.722, + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 376.55600000000004 + "x": 473.673, + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 376.55600000000004 + "x": 479.931, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 378.49000000000007 + "x": 485.882, + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 382.16800000000006 + "x": 490.944, + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 387.2300000000001 + "x": 494.622, + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 393.18100000000004 + "x": 496.556, + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3558 }, @@ -31753,13 +31753,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -31823,40 +31823,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -31871,12 +31871,12 @@ } }, { - "x": 556.0640000000002, - "y": 416.0640000000001 + "x": 556.064, + "y": 416.064 }, { - "x": 516.5560000000002, - "y": 376.55600000000004 + "x": 516.556, + "y": 376.556 }, { "category": 1, @@ -31893,16 +31893,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 396.31000000000006 + "x": 536.31, + "y": 396.31 }, { "x": 0, "y": 0 }, { - "x": 536.3100000000002, - "y": 396.31000000000006 + "x": 536.31, + "y": 396.31 }, { "fillStyle": "#FF6B6B", @@ -31987,148 +31987,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 399.4390000000001 + "x": 556.064, + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 405.39000000000004 + "x": 554.13, + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 410.45200000000006 + "x": 550.452, + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 414.13000000000005 + "x": 545.39, + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 416.0640000000001 + "x": 539.439, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 416.0640000000001 + "x": 533.181, + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 414.13000000000005 + "x": 527.23, + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 410.45200000000006 + "x": 522.168, + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 405.39000000000004 + "x": 518.49, + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 399.4390000000001 + "x": 516.556, + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 393.18100000000004 + "x": 516.556, + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 387.2300000000001 + "x": 518.49, + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 382.16800000000006 + "x": 522.168, + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 378.49000000000007 + "x": 527.23, + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 376.55600000000004 + "x": 533.181, + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 376.55600000000004 + "x": 539.439, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 378.49000000000007 + "x": 545.39, + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 382.16800000000006 + "x": 550.452, + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 387.2300000000001 + "x": 554.13, + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 393.18100000000004 + "x": 556.064, + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3603 }, @@ -32150,13 +32150,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -32220,40 +32220,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -32268,12 +32268,12 @@ } }, { - "x": 615.5720000000002, - "y": 416.0640000000001 + "x": 615.572, + "y": 416.064 }, { - "x": 576.0640000000002, - "y": 376.55600000000004 + "x": 576.064, + "y": 376.556 }, { "category": 1, @@ -32290,16 +32290,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 396.31000000000006 + "x": 595.818, + "y": 396.31 }, { "x": 0, "y": 0 }, { - "x": 595.8180000000002, - "y": 396.31000000000006 + "x": 595.818, + "y": 396.31 }, { "fillStyle": "#FF6B6B", @@ -32384,148 +32384,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 399.4390000000001 + "x": 615.572, + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 405.39000000000004 + "x": 613.638, + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 410.45200000000006 + "x": 609.96, + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 414.13000000000005 + "x": 604.898, + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 416.0640000000001 + "x": 598.947, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 416.0640000000001 + "x": 592.689, + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 414.13000000000005 + "x": 586.738, + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 410.45200000000006 + "x": 581.676, + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 405.39000000000004 + "x": 577.998, + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 399.4390000000001 + "x": 576.064, + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 393.18100000000004 + "x": 576.064, + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 387.2300000000001 + "x": 577.998, + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 382.16800000000006 + "x": 581.676, + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 378.49000000000007 + "x": 586.738, + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 376.55600000000004 + "x": 592.689, + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 376.55600000000004 + "x": 598.947, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 378.49000000000007 + "x": 604.898, + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 382.16800000000006 + "x": 609.96, + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 387.2300000000001 + "x": 613.638, + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 393.18100000000004 + "x": 615.572, + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3648 }, @@ -32547,13 +32547,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -32617,40 +32617,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -32665,12 +32665,12 @@ } }, { - "x": 675.0800000000003, - "y": 416.0640000000001 + "x": 675.08, + "y": 416.064 }, { - "x": 635.5720000000002, - "y": 376.55600000000004 + "x": 635.572, + "y": 376.556 }, { "category": 1, @@ -32687,16 +32687,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 396.31000000000006 + "x": 655.326, + "y": 396.31 }, { "x": 0, "y": 0 }, { - "x": 655.3260000000002, - "y": 396.31000000000006 + "x": 655.326, + "y": 396.31 }, { "fillStyle": "#556270", @@ -32781,148 +32781,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 399.4390000000001 + "x": 675.08, + "y": 399.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 405.39000000000004 + "x": 673.146, + "y": 405.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 410.45200000000006 + "x": 669.468, + "y": 410.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 414.13000000000005 + "x": 664.406, + "y": 414.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 416.0640000000001 + "x": 658.455, + "y": 416.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 416.0640000000001 + "x": 652.197, + "y": 416.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 414.13000000000005 + "x": 646.246, + "y": 414.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 410.45200000000006 + "x": 641.184, + "y": 410.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 405.39000000000004 + "x": 637.506, + "y": 405.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 399.4390000000001 + "x": 635.572, + "y": 399.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 393.18100000000004 + "x": 635.572, + "y": 393.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 387.2300000000001 + "x": 637.506, + "y": 387.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 382.16800000000006 + "x": 641.184, + "y": 382.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 378.49000000000007 + "x": 646.246, + "y": 378.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 376.55600000000004 + "x": 652.197, + "y": 376.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 376.55600000000004 + "x": 658.455, + "y": 376.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 378.49000000000007 + "x": 664.406, + "y": 378.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 382.16800000000006 + "x": 669.468, + "y": 382.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 387.2300000000001 + "x": 673.146, + "y": 387.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 393.18100000000004 + "x": 675.08, + "y": 393.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3693 }, @@ -32944,13 +32944,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -33014,40 +33014,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -33063,11 +33063,11 @@ }, { "x": 139.508, - "y": 455.5720000000001 + "y": 455.572 }, { "x": 100, - "y": 416.0640000000001 + "y": 416.064 }, { "category": 1, @@ -33085,7 +33085,7 @@ }, { "x": 119.754, - "y": 435.8180000000001 + "y": 435.818 }, { "x": 0, @@ -33093,7 +33093,7 @@ }, { "x": 119.754, - "y": 435.8180000000001 + "y": 435.818 }, { "fillStyle": "#C44D58", @@ -33179,147 +33179,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 438.9470000000001 + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 444.8980000000001 + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 449.9600000000001 + "x": 133.896, + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 453.6380000000001 + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 455.5720000000001 + "x": 122.883, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 453.6380000000001 + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 449.9600000000001 + "x": 105.612, + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 444.8980000000001 + "x": 101.934, + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 438.9470000000001 + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 432.6890000000001 + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 426.7380000000001 + "x": 101.934, + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 421.6760000000001 + "x": 105.612, + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 417.9980000000001 + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 416.0640000000001 + "x": 122.883, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 417.9980000000001 + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 421.6760000000001 + "x": 133.896, + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 426.7380000000001 + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 432.6890000000001 + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3738 }, @@ -33341,13 +33341,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -33411,40 +33411,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -33460,11 +33460,11 @@ }, { "x": 199.016, - "y": 455.5720000000001 + "y": 455.572 }, { "x": 159.508, - "y": 416.0640000000001 + "y": 416.064 }, { "category": 1, @@ -33482,7 +33482,7 @@ }, { "x": 179.262, - "y": 435.8180000000001 + "y": 435.818 }, { "x": 0, @@ -33490,7 +33490,7 @@ }, { "x": 179.262, - "y": 435.8180000000001 + "y": 435.818 }, { "fillStyle": "#4ECDC4", @@ -33576,147 +33576,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 438.9470000000001 + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 444.8980000000001 + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 449.9600000000001 + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 453.6380000000001 + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 453.6380000000001 + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 449.9600000000001 + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 444.8980000000001 + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 438.9470000000001 + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 432.6890000000001 + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 426.7380000000001 + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 421.6760000000001 + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 417.9980000000001 + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 417.9980000000001 + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 421.6760000000001 + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 426.7380000000001 + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 432.6890000000001 + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3783 }, @@ -33738,13 +33738,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -33808,40 +33808,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -33857,11 +33857,11 @@ }, { "x": 258.524, - "y": 455.5720000000001 + "y": 455.572 }, { "x": 219.016, - "y": 416.0640000000001 + "y": 416.064 }, { "category": 1, @@ -33878,16 +33878,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 435.8180000000001 + "x": 238.77, + "y": 435.818 }, { "x": 0, "y": 0 }, { - "x": 238.76999999999998, - "y": 435.8180000000001 + "x": 238.77, + "y": 435.818 }, { "fillStyle": "#4ECDC4", @@ -33973,147 +33973,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 438.9470000000001 + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 444.8980000000001 + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 449.9600000000001 + "x": 252.912, + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 453.6380000000001 + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 455.5720000000001 + "x": 241.899, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 453.6380000000001 + "x": 229.69, + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 449.9600000000001 + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 444.8980000000001 + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 438.9470000000001 + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 432.6890000000001 + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 426.7380000000001 + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 421.6760000000001 + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 417.9980000000001 + "x": 229.69, + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 416.0640000000001 + "x": 241.899, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 417.9980000000001 + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 421.6760000000001 + "x": 252.912, + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 426.7380000000001 + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 432.6890000000001 + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3828 }, @@ -34135,13 +34135,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -34205,40 +34205,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -34253,12 +34253,12 @@ } }, { - "x": 318.03200000000004, - "y": 455.5720000000001 + "x": 318.032, + "y": 455.572 }, { "x": 278.524, - "y": 416.0640000000001 + "y": 416.064 }, { "category": 1, @@ -34276,7 +34276,7 @@ }, { "x": 298.278, - "y": 435.8180000000001 + "y": 435.818 }, { "x": 0, @@ -34284,7 +34284,7 @@ }, { "x": 298.278, - "y": 435.8180000000001 + "y": 435.818 }, { "fillStyle": "#C44D58", @@ -34369,148 +34369,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 438.9470000000001 + "x": 318.032, + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 444.8980000000001 + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 449.9600000000001 + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 453.6380000000001 + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 455.5720000000001 + "x": 301.407, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 453.6380000000001 + "x": 289.198, + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 449.9600000000001 + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 444.8980000000001 + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 438.9470000000001 + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 432.6890000000001 + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 426.7380000000001 + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 421.6760000000001 + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 417.9980000000001 + "x": 289.198, + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 416.0640000000001 + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 416.0640000000001 + "x": 301.407, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 417.9980000000001 + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 421.6760000000001 + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 426.7380000000001 + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 432.6890000000001 + "x": 318.032, + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3873 }, @@ -34532,13 +34532,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -34602,40 +34602,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -34650,12 +34650,12 @@ } }, { - "x": 377.5400000000001, - "y": 455.5720000000001 + "x": 377.54, + "y": 455.572 }, { - "x": 338.03200000000004, - "y": 416.0640000000001 + "x": 338.032, + "y": 416.064 }, { "category": 1, @@ -34672,16 +34672,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 435.8180000000001 + "x": 357.786, + "y": 435.818 }, { "x": 0, "y": 0 }, { - "x": 357.78600000000006, - "y": 435.8180000000001 + "x": 357.786, + "y": 435.818 }, { "fillStyle": "#556270", @@ -34766,148 +34766,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 438.9470000000001 + "x": 377.54, + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 444.8980000000001 + "x": 375.606, + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 449.9600000000001 + "x": 371.928, + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 453.6380000000001 + "x": 366.866, + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 455.5720000000001 + "x": 360.915, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 455.5720000000001 + "x": 354.657, + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 453.6380000000001 + "x": 348.706, + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 449.9600000000001 + "x": 343.644, + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 444.8980000000001 + "x": 339.966, + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 438.9470000000001 + "x": 338.032, + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 432.6890000000001 + "x": 338.032, + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 426.7380000000001 + "x": 339.966, + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 421.6760000000001 + "x": 343.644, + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 417.9980000000001 + "x": 348.706, + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 416.0640000000001 + "x": 354.657, + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 416.0640000000001 + "x": 360.915, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 417.9980000000001 + "x": 366.866, + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 421.6760000000001 + "x": 371.928, + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 426.7380000000001 + "x": 375.606, + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 432.6890000000001 + "x": 377.54, + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3918 }, @@ -34929,13 +34929,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -34999,40 +34999,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -35047,12 +35047,12 @@ } }, { - "x": 437.0480000000001, - "y": 455.5720000000001 + "x": 437.048, + "y": 455.572 }, { - "x": 397.5400000000001, - "y": 416.0640000000001 + "x": 397.54, + "y": 416.064 }, { "category": 1, @@ -35069,16 +35069,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 435.8180000000001 + "x": 417.294, + "y": 435.818 }, { "x": 0, "y": 0 }, { - "x": 417.2940000000001, - "y": 435.8180000000001 + "x": 417.294, + "y": 435.818 }, { "fillStyle": "#C7F464", @@ -35163,148 +35163,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 438.9470000000001 + "x": 437.048, + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 444.8980000000001 + "x": 435.114, + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 449.9600000000001 + "x": 431.436, + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 453.6380000000001 + "x": 426.374, + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 455.5720000000001 + "x": 420.423, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 455.5720000000001 + "x": 414.165, + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 453.6380000000001 + "x": 408.214, + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 449.9600000000001 + "x": 403.152, + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 444.8980000000001 + "x": 399.474, + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 438.9470000000001 + "x": 397.54, + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 432.6890000000001 + "x": 397.54, + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 426.7380000000001 + "x": 399.474, + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 421.6760000000001 + "x": 403.152, + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 417.9980000000001 + "x": 408.214, + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 416.0640000000001 + "x": 414.165, + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 416.0640000000001 + "x": 420.423, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 417.9980000000001 + "x": 426.374, + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 421.6760000000001 + "x": 431.436, + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 426.7380000000001 + "x": 435.114, + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 432.6890000000001 + "x": 437.048, + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3963 }, @@ -35326,13 +35326,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -35396,40 +35396,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -35444,12 +35444,12 @@ } }, { - "x": 496.55600000000015, - "y": 455.5720000000001 + "x": 496.556, + "y": 455.572 }, { - "x": 457.0480000000001, - "y": 416.0640000000001 + "x": 457.048, + "y": 416.064 }, { "category": 1, @@ -35466,16 +35466,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 435.8180000000001 + "x": 476.802, + "y": 435.818 }, { "x": 0, "y": 0 }, { - "x": 476.80200000000013, - "y": 435.8180000000001 + "x": 476.802, + "y": 435.818 }, { "fillStyle": "#556270", @@ -35560,148 +35560,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 438.9470000000001 + "x": 496.556, + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 444.8980000000001 + "x": 494.622, + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 449.9600000000001 + "x": 490.944, + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 453.6380000000001 + "x": 485.882, + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 455.5720000000001 + "x": 479.931, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 455.5720000000001 + "x": 473.673, + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 453.6380000000001 + "x": 467.722, + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 449.9600000000001 + "x": 462.66, + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 444.8980000000001 + "x": 458.982, + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 438.9470000000001 + "x": 457.048, + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 432.6890000000001 + "x": 457.048, + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 426.7380000000001 + "x": 458.982, + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 421.6760000000001 + "x": 462.66, + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 417.9980000000001 + "x": 467.722, + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 416.0640000000001 + "x": 473.673, + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 416.0640000000001 + "x": 479.931, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 417.9980000000001 + "x": 485.882, + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 421.6760000000001 + "x": 490.944, + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 426.7380000000001 + "x": 494.622, + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 432.6890000000001 + "x": 496.556, + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4008 }, @@ -35723,13 +35723,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -35793,40 +35793,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -35841,12 +35841,12 @@ } }, { - "x": 556.0640000000002, - "y": 455.5720000000001 + "x": 556.064, + "y": 455.572 }, { - "x": 516.5560000000002, - "y": 416.0640000000001 + "x": 516.556, + "y": 416.064 }, { "category": 1, @@ -35863,16 +35863,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 435.8180000000001 + "x": 536.31, + "y": 435.818 }, { "x": 0, "y": 0 }, { - "x": 536.3100000000002, - "y": 435.8180000000001 + "x": 536.31, + "y": 435.818 }, { "fillStyle": "#556270", @@ -35957,148 +35957,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 438.9470000000001 + "x": 556.064, + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 444.8980000000001 + "x": 554.13, + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 449.9600000000001 + "x": 550.452, + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 453.6380000000001 + "x": 545.39, + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 455.5720000000001 + "x": 539.439, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 455.5720000000001 + "x": 533.181, + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 453.6380000000001 + "x": 527.23, + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 449.9600000000001 + "x": 522.168, + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 444.8980000000001 + "x": 518.49, + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 438.9470000000001 + "x": 516.556, + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 432.6890000000001 + "x": 516.556, + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 426.7380000000001 + "x": 518.49, + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 421.6760000000001 + "x": 522.168, + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 417.9980000000001 + "x": 527.23, + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 416.0640000000001 + "x": 533.181, + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 416.0640000000001 + "x": 539.439, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 417.9980000000001 + "x": 545.39, + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 421.6760000000001 + "x": 550.452, + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 426.7380000000001 + "x": 554.13, + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 432.6890000000001 + "x": 556.064, + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4053 }, @@ -36120,13 +36120,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -36190,40 +36190,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -36238,12 +36238,12 @@ } }, { - "x": 615.5720000000002, - "y": 455.5720000000001 + "x": 615.572, + "y": 455.572 }, { - "x": 576.0640000000002, - "y": 416.0640000000001 + "x": 576.064, + "y": 416.064 }, { "category": 1, @@ -36260,16 +36260,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 435.8180000000001 + "x": 595.818, + "y": 435.818 }, { "x": 0, "y": 0 }, { - "x": 595.8180000000002, - "y": 435.8180000000001 + "x": 595.818, + "y": 435.818 }, { "fillStyle": "#FF6B6B", @@ -36354,148 +36354,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 438.9470000000001 + "x": 615.572, + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 444.8980000000001 + "x": 613.638, + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 449.9600000000001 + "x": 609.96, + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 453.6380000000001 + "x": 604.898, + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 455.5720000000001 + "x": 598.947, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 455.5720000000001 + "x": 592.689, + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 453.6380000000001 + "x": 586.738, + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 449.9600000000001 + "x": 581.676, + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 444.8980000000001 + "x": 577.998, + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 438.9470000000001 + "x": 576.064, + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 432.6890000000001 + "x": 576.064, + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 426.7380000000001 + "x": 577.998, + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 421.6760000000001 + "x": 581.676, + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 417.9980000000001 + "x": 586.738, + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 416.0640000000001 + "x": 592.689, + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 416.0640000000001 + "x": 598.947, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 417.9980000000001 + "x": 604.898, + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 421.6760000000001 + "x": 609.96, + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 426.7380000000001 + "x": 613.638, + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 432.6890000000001 + "x": 615.572, + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4098 }, @@ -36517,13 +36517,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -36587,40 +36587,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -36635,12 +36635,12 @@ } }, { - "x": 675.0800000000003, - "y": 455.5720000000001 + "x": 675.08, + "y": 455.572 }, { - "x": 635.5720000000002, - "y": 416.0640000000001 + "x": 635.572, + "y": 416.064 }, { "category": 1, @@ -36657,16 +36657,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 435.8180000000001 + "x": 655.326, + "y": 435.818 }, { "x": 0, "y": 0 }, { - "x": 655.3260000000002, - "y": 435.8180000000001 + "x": 655.326, + "y": 435.818 }, { "fillStyle": "#C44D58", @@ -36751,148 +36751,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 438.9470000000001 + "x": 675.08, + "y": 438.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 444.8980000000001 + "x": 673.146, + "y": 444.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 449.9600000000001 + "x": 669.468, + "y": 449.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 453.6380000000001 + "x": 664.406, + "y": 453.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 455.5720000000001 + "x": 658.455, + "y": 455.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 455.5720000000001 + "x": 652.197, + "y": 455.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 453.6380000000001 + "x": 646.246, + "y": 453.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 449.9600000000001 + "x": 641.184, + "y": 449.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 444.8980000000001 + "x": 637.506, + "y": 444.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 438.9470000000001 + "x": 635.572, + "y": 438.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 432.6890000000001 + "x": 635.572, + "y": 432.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 426.7380000000001 + "x": 637.506, + "y": 426.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 421.6760000000001 + "x": 641.184, + "y": 421.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 417.9980000000001 + "x": 646.246, + "y": 417.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 416.0640000000001 + "x": 652.197, + "y": 416.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 416.0640000000001 + "x": 658.455, + "y": 416.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 417.9980000000001 + "x": 664.406, + "y": 417.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 421.6760000000001 + "x": 669.468, + "y": 421.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 426.7380000000001 + "x": 673.146, + "y": 426.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 432.6890000000001 + "x": 675.08, + "y": 432.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4143 }, @@ -36914,13 +36914,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -36984,40 +36984,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -37033,11 +37033,11 @@ }, { "x": 139.508, - "y": 495.08000000000015 + "y": 495.08 }, { "x": 100, - "y": 455.5720000000001 + "y": 455.572 }, { "category": 1, @@ -37055,7 +37055,7 @@ }, { "x": 119.754, - "y": 475.32600000000014 + "y": 475.326 }, { "x": 0, @@ -37063,7 +37063,7 @@ }, { "x": 119.754, - "y": 475.32600000000014 + "y": 475.326 }, { "fillStyle": "#556270", @@ -37149,147 +37149,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 478.45500000000015 + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 484.4060000000001 + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 489.46800000000013 + "x": 133.896, + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 493.14600000000013 + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 495.08000000000015 + "x": 122.883, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 495.08000000000015 + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 493.14600000000013 + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 489.46800000000013 + "x": 105.612, + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 484.4060000000001 + "x": 101.934, + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 478.45500000000015 + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 472.1970000000001 + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 466.24600000000015 + "x": 101.934, + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 461.18400000000014 + "x": 105.612, + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 457.50600000000014 + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 455.5720000000001 + "x": 122.883, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 457.50600000000014 + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 461.18400000000014 + "x": 133.896, + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 466.24600000000015 + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 472.1970000000001 + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4188 }, @@ -37311,13 +37311,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -37381,40 +37381,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -37430,11 +37430,11 @@ }, { "x": 199.016, - "y": 495.08000000000015 + "y": 495.08 }, { "x": 159.508, - "y": 455.5720000000001 + "y": 455.572 }, { "category": 1, @@ -37452,7 +37452,7 @@ }, { "x": 179.262, - "y": 475.32600000000014 + "y": 475.326 }, { "x": 0, @@ -37460,7 +37460,7 @@ }, { "x": 179.262, - "y": 475.32600000000014 + "y": 475.326 }, { "fillStyle": "#C7F464", @@ -37546,147 +37546,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 478.45500000000015 + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 484.4060000000001 + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 489.46800000000013 + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 493.14600000000013 + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 495.08000000000015 + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 495.08000000000015 + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 493.14600000000013 + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 489.46800000000013 + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 484.4060000000001 + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 478.45500000000015 + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 472.1970000000001 + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 466.24600000000015 + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 461.18400000000014 + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 457.50600000000014 + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 457.50600000000014 + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 461.18400000000014 + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 466.24600000000015 + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 472.1970000000001 + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4233 }, @@ -37708,13 +37708,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -37778,40 +37778,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -37827,11 +37827,11 @@ }, { "x": 258.524, - "y": 495.08000000000015 + "y": 495.08 }, { "x": 219.016, - "y": 455.5720000000001 + "y": 455.572 }, { "category": 1, @@ -37848,16 +37848,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 475.32600000000014 + "x": 238.77, + "y": 475.326 }, { "x": 0, "y": 0 }, { - "x": 238.76999999999998, - "y": 475.32600000000014 + "x": 238.77, + "y": 475.326 }, { "fillStyle": "#C44D58", @@ -37943,147 +37943,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 478.45500000000015 + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 484.4060000000001 + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 489.46800000000013 + "x": 252.912, + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 493.14600000000013 + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 495.08000000000015 + "x": 241.899, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 495.08000000000015 + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 493.14600000000013 + "x": 229.69, + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 489.46800000000013 + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 484.4060000000001 + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 478.45500000000015 + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 472.1970000000001 + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 466.24600000000015 + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 461.18400000000014 + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 457.50600000000014 + "x": 229.69, + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 455.5720000000001 + "x": 241.899, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 457.50600000000014 + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 461.18400000000014 + "x": 252.912, + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 466.24600000000015 + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 472.1970000000001 + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4278 }, @@ -38105,13 +38105,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -38175,40 +38175,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -38223,12 +38223,12 @@ } }, { - "x": 318.03200000000004, - "y": 495.08000000000015 + "x": 318.032, + "y": 495.08 }, { "x": 278.524, - "y": 455.5720000000001 + "y": 455.572 }, { "category": 1, @@ -38246,7 +38246,7 @@ }, { "x": 298.278, - "y": 475.32600000000014 + "y": 475.326 }, { "x": 0, @@ -38254,7 +38254,7 @@ }, { "x": 298.278, - "y": 475.32600000000014 + "y": 475.326 }, { "fillStyle": "#556270", @@ -38339,148 +38339,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 478.45500000000015 + "x": 318.032, + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 484.4060000000001 + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 489.46800000000013 + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 493.14600000000013 + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 495.08000000000015 + "x": 301.407, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 495.08000000000015 + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 493.14600000000013 + "x": 289.198, + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 489.46800000000013 + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 484.4060000000001 + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 478.45500000000015 + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 472.1970000000001 + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 466.24600000000015 + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 461.18400000000014 + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 457.50600000000014 + "x": 289.198, + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 455.5720000000001 + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 455.5720000000001 + "x": 301.407, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 457.50600000000014 + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 461.18400000000014 + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 466.24600000000015 + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 472.1970000000001 + "x": 318.032, + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4323 }, @@ -38502,13 +38502,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -38572,40 +38572,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -38620,12 +38620,12 @@ } }, { - "x": 377.5400000000001, - "y": 495.08000000000015 + "x": 377.54, + "y": 495.08 }, { - "x": 338.03200000000004, - "y": 455.5720000000001 + "x": 338.032, + "y": 455.572 }, { "category": 1, @@ -38642,16 +38642,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 475.32600000000014 + "x": 357.786, + "y": 475.326 }, { "x": 0, "y": 0 }, { - "x": 357.78600000000006, - "y": 475.32600000000014 + "x": 357.786, + "y": 475.326 }, { "fillStyle": "#4ECDC4", @@ -38736,148 +38736,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 478.45500000000015 + "x": 377.54, + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 484.4060000000001 + "x": 375.606, + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 489.46800000000013 + "x": 371.928, + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 493.14600000000013 + "x": 366.866, + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 495.08000000000015 + "x": 360.915, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 495.08000000000015 + "x": 354.657, + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 493.14600000000013 + "x": 348.706, + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 489.46800000000013 + "x": 343.644, + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 484.4060000000001 + "x": 339.966, + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 478.45500000000015 + "x": 338.032, + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 472.1970000000001 + "x": 338.032, + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 466.24600000000015 + "x": 339.966, + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 461.18400000000014 + "x": 343.644, + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 457.50600000000014 + "x": 348.706, + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 455.5720000000001 + "x": 354.657, + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 455.5720000000001 + "x": 360.915, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 457.50600000000014 + "x": 366.866, + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 461.18400000000014 + "x": 371.928, + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 466.24600000000015 + "x": 375.606, + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 472.1970000000001 + "x": 377.54, + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4368 }, @@ -38899,13 +38899,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -38969,40 +38969,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -39017,12 +39017,12 @@ } }, { - "x": 437.0480000000001, - "y": 495.08000000000015 + "x": 437.048, + "y": 495.08 }, { - "x": 397.5400000000001, - "y": 455.5720000000001 + "x": 397.54, + "y": 455.572 }, { "category": 1, @@ -39039,16 +39039,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 475.32600000000014 + "x": 417.294, + "y": 475.326 }, { "x": 0, "y": 0 }, { - "x": 417.2940000000001, - "y": 475.32600000000014 + "x": 417.294, + "y": 475.326 }, { "fillStyle": "#4ECDC4", @@ -39133,148 +39133,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 478.45500000000015 + "x": 437.048, + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 484.4060000000001 + "x": 435.114, + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 489.46800000000013 + "x": 431.436, + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 493.14600000000013 + "x": 426.374, + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 495.08000000000015 + "x": 420.423, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 495.08000000000015 + "x": 414.165, + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 493.14600000000013 + "x": 408.214, + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 489.46800000000013 + "x": 403.152, + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 484.4060000000001 + "x": 399.474, + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 478.45500000000015 + "x": 397.54, + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 472.1970000000001 + "x": 397.54, + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 466.24600000000015 + "x": 399.474, + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 461.18400000000014 + "x": 403.152, + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 457.50600000000014 + "x": 408.214, + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 455.5720000000001 + "x": 414.165, + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 455.5720000000001 + "x": 420.423, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 457.50600000000014 + "x": 426.374, + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 461.18400000000014 + "x": 431.436, + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 466.24600000000015 + "x": 435.114, + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 472.1970000000001 + "x": 437.048, + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4413 }, @@ -39296,13 +39296,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -39366,40 +39366,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -39414,12 +39414,12 @@ } }, { - "x": 496.55600000000015, - "y": 495.08000000000015 + "x": 496.556, + "y": 495.08 }, { - "x": 457.0480000000001, - "y": 455.5720000000001 + "x": 457.048, + "y": 455.572 }, { "category": 1, @@ -39436,16 +39436,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 475.32600000000014 + "x": 476.802, + "y": 475.326 }, { "x": 0, "y": 0 }, { - "x": 476.80200000000013, - "y": 475.32600000000014 + "x": 476.802, + "y": 475.326 }, { "fillStyle": "#FF6B6B", @@ -39530,148 +39530,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 478.45500000000015 + "x": 496.556, + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 484.4060000000001 + "x": 494.622, + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 489.46800000000013 + "x": 490.944, + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 493.14600000000013 + "x": 485.882, + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 495.08000000000015 + "x": 479.931, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 495.08000000000015 + "x": 473.673, + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 493.14600000000013 + "x": 467.722, + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 489.46800000000013 + "x": 462.66, + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 484.4060000000001 + "x": 458.982, + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 478.45500000000015 + "x": 457.048, + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 472.1970000000001 + "x": 457.048, + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 466.24600000000015 + "x": 458.982, + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 461.18400000000014 + "x": 462.66, + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 457.50600000000014 + "x": 467.722, + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 455.5720000000001 + "x": 473.673, + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 455.5720000000001 + "x": 479.931, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 457.50600000000014 + "x": 485.882, + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 461.18400000000014 + "x": 490.944, + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 466.24600000000015 + "x": 494.622, + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 472.1970000000001 + "x": 496.556, + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4458 }, @@ -39693,13 +39693,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -39763,40 +39763,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -39811,12 +39811,12 @@ } }, { - "x": 556.0640000000002, - "y": 495.08000000000015 + "x": 556.064, + "y": 495.08 }, { - "x": 516.5560000000002, - "y": 455.5720000000001 + "x": 516.556, + "y": 455.572 }, { "category": 1, @@ -39833,16 +39833,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 475.32600000000014 + "x": 536.31, + "y": 475.326 }, { "x": 0, "y": 0 }, { - "x": 536.3100000000002, - "y": 475.32600000000014 + "x": 536.31, + "y": 475.326 }, { "fillStyle": "#C7F464", @@ -39927,148 +39927,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 478.45500000000015 + "x": 556.064, + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 484.4060000000001 + "x": 554.13, + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 489.46800000000013 + "x": 550.452, + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 493.14600000000013 + "x": 545.39, + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 495.08000000000015 + "x": 539.439, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 495.08000000000015 + "x": 533.181, + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 493.14600000000013 + "x": 527.23, + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 489.46800000000013 + "x": 522.168, + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 484.4060000000001 + "x": 518.49, + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 478.45500000000015 + "x": 516.556, + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 472.1970000000001 + "x": 516.556, + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 466.24600000000015 + "x": 518.49, + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 461.18400000000014 + "x": 522.168, + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 457.50600000000014 + "x": 527.23, + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 455.5720000000001 + "x": 533.181, + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 455.5720000000001 + "x": 539.439, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 457.50600000000014 + "x": 545.39, + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 461.18400000000014 + "x": 550.452, + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 466.24600000000015 + "x": 554.13, + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 472.1970000000001 + "x": 556.064, + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4503 }, @@ -40090,13 +40090,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -40160,40 +40160,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -40208,12 +40208,12 @@ } }, { - "x": 615.5720000000002, - "y": 495.08000000000015 + "x": 615.572, + "y": 495.08 }, { - "x": 576.0640000000002, - "y": 455.5720000000001 + "x": 576.064, + "y": 455.572 }, { "category": 1, @@ -40230,16 +40230,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 475.32600000000014 + "x": 595.818, + "y": 475.326 }, { "x": 0, "y": 0 }, { - "x": 595.8180000000002, - "y": 475.32600000000014 + "x": 595.818, + "y": 475.326 }, { "fillStyle": "#C7F464", @@ -40324,148 +40324,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 478.45500000000015 + "x": 615.572, + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 484.4060000000001 + "x": 613.638, + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 489.46800000000013 + "x": 609.96, + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 493.14600000000013 + "x": 604.898, + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 495.08000000000015 + "x": 598.947, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 495.08000000000015 + "x": 592.689, + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 493.14600000000013 + "x": 586.738, + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 489.46800000000013 + "x": 581.676, + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 484.4060000000001 + "x": 577.998, + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 478.45500000000015 + "x": 576.064, + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 472.1970000000001 + "x": 576.064, + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 466.24600000000015 + "x": 577.998, + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 461.18400000000014 + "x": 581.676, + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 457.50600000000014 + "x": 586.738, + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 455.5720000000001 + "x": 592.689, + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 455.5720000000001 + "x": 598.947, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 457.50600000000014 + "x": 604.898, + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 461.18400000000014 + "x": 609.96, + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 466.24600000000015 + "x": 613.638, + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 472.1970000000001 + "x": 615.572, + "y": 472.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4548 }, @@ -40487,13 +40487,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -40557,40 +40557,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -40605,12 +40605,12 @@ } }, { - "x": 675.0800000000003, - "y": 495.08000000000015 + "x": 675.08, + "y": 495.08 }, { - "x": 635.5720000000002, - "y": 455.5720000000001 + "x": 635.572, + "y": 455.572 }, { "category": 1, @@ -40627,16 +40627,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 475.32600000000014 + "x": 655.326, + "y": 475.326 }, { "x": 0, "y": 0 }, { - "x": 655.3260000000002, - "y": 475.32600000000014 + "x": 655.326, + "y": 475.326 }, { "fillStyle": "#4ECDC4", @@ -40721,141 +40721,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 478.45500000000015 + "x": 675.08, + "y": 478.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 484.4060000000001 + "x": 673.146, + "y": 484.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 489.46800000000013 + "x": 669.468, + "y": 489.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 493.14600000000013 + "x": 664.406, + "y": 493.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 495.08000000000015 + "x": 658.455, + "y": 495.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 495.08000000000015 + "x": 652.197, + "y": 495.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 493.14600000000013 + "x": 646.246, + "y": 493.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 489.46800000000013 + "x": 641.184, + "y": 489.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 484.4060000000001 + "x": 637.506, + "y": 484.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 478.45500000000015 + "x": 635.572, + "y": 478.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 472.1970000000001 + "x": 635.572, + "y": 472.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 466.24600000000015 + "x": 637.506, + "y": 466.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 461.18400000000014 + "x": 641.184, + "y": 461.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 457.50600000000014 + "x": 646.246, + "y": 457.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 455.5720000000001 + "x": 652.197, + "y": 455.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 455.5720000000001 + "x": 658.455, + "y": 455.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 457.50600000000014 + "x": 664.406, + "y": 457.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 461.18400000000014 + "x": 669.468, + "y": 461.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 466.24600000000015 + "x": 673.146, + "y": 466.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 472.1970000000001 + "x": 675.08, + "y": 472.197 }, [], [], diff --git a/test/browser/refs/circleStack/circleStack-10.json b/test/browser/refs/circleStack/circleStack-10.json index 6cd83e8e..ed07b093 100644 --- a/test/browser/refs/circleStack/circleStack-10.json +++ b/test/browser/refs/circleStack/circleStack-10.json @@ -1202,7 +1202,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 97 }, @@ -1224,13 +1224,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -1252,7 +1252,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1297,40 +1297,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -1346,11 +1346,11 @@ }, { "x": 139.508, - "y": 160.24873133057872 + "y": 160.24873 }, { "x": 100, - "y": 117.83346061554306 + "y": 117.83346 }, { "category": 1, @@ -1368,15 +1368,15 @@ }, { "x": 119.754, - "y": 137.58746061554308 + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { "x": 119.754, - "y": 134.68018990050743 + "y": 134.68019 }, { "endCol": 2, @@ -1400,7 +1400,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -1469,147 +1469,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 140.7164606155431 + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 146.66746061554306 + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 151.72946061554308 + "x": 133.896, + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 155.40746061554307 + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 157.34146061554307 + "x": 122.883, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 157.34146061554307 + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 155.40746061554307 + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 151.72946061554308 + "x": 105.612, + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 146.66746061554306 + "x": 101.934, + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 140.7164606155431 + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 134.4584606155431 + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 128.50746061554307 + "x": 101.934, + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 123.44546061554307 + "x": 105.612, + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 119.76746061554307 + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 117.83346061554306 + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 117.83346061554306 + "x": 122.883, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 119.76746061554307 + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 123.44546061554307 + "x": 133.896, + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 128.50746061554307 + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 134.4584606155431 + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 143 }, @@ -1631,13 +1631,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -1659,7 +1659,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1704,40 +1704,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -1753,11 +1753,11 @@ }, { "x": 199.016, - "y": 160.24873133057872 + "y": 160.24873 }, { "x": 159.508, - "y": 117.83346061554306 + "y": 117.83346 }, { "category": 1, @@ -1775,15 +1775,15 @@ }, { "x": 179.262, - "y": 137.58746061554308 + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { "x": 179.262, - "y": 134.68018990050743 + "y": 134.68019 }, { "endCol": 4, @@ -1807,7 +1807,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -1876,147 +1876,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 140.7164606155431 + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 146.66746061554306 + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 151.72946061554308 + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 155.40746061554307 + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 157.34146061554307 + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 157.34146061554307 + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 155.40746061554307 + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 151.72946061554308 + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 146.66746061554306 + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 140.7164606155431 + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 134.4584606155431 + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 128.50746061554307 + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 123.44546061554307 + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 119.76746061554307 + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 117.83346061554306 + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 117.83346061554306 + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 119.76746061554307 + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 123.44546061554307 + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 128.50746061554307 + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 134.4584606155431 + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 189 }, @@ -2038,13 +2038,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2066,7 +2066,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2111,40 +2111,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2160,11 +2160,11 @@ }, { "x": 258.524, - "y": 160.24873133057872 + "y": 160.24873 }, { "x": 219.016, - "y": 117.83346061554306 + "y": 117.83346 }, { "category": 1, @@ -2181,16 +2181,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 137.58746061554308 + "x": 238.77, + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { - "x": 238.76999999999998, - "y": 134.68018990050743 + "x": 238.77, + "y": 134.68019 }, { "endCol": 5, @@ -2214,7 +2214,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -2283,147 +2283,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 140.7164606155431 + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 146.66746061554306 + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 151.72946061554308 + "x": 252.912, + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 155.40746061554307 + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 157.34146061554307 + "x": 241.899, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 157.34146061554307 + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 155.40746061554307 + "x": 229.69, + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 151.72946061554308 + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 146.66746061554306 + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 140.7164606155431 + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 134.4584606155431 + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 128.50746061554307 + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 123.44546061554307 + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 119.76746061554307 + "x": 229.69, + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 117.83346061554306 + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 117.83346061554306 + "x": 241.899, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 119.76746061554307 + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 123.44546061554307 + "x": 252.912, + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 128.50746061554307 + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 134.4584606155431 + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 235 }, @@ -2445,13 +2445,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2473,7 +2473,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2518,40 +2518,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2566,12 +2566,12 @@ } }, { - "x": 318.03200000000004, - "y": 160.24873133057872 + "x": 318.032, + "y": 160.24873 }, { "x": 278.524, - "y": 117.83346061554306 + "y": 117.83346 }, { "category": 1, @@ -2589,15 +2589,15 @@ }, { "x": 298.278, - "y": 137.58746061554308 + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { "x": 298.278, - "y": 134.68018990050743 + "y": 134.68019 }, { "endCol": 6, @@ -2621,7 +2621,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -2689,148 +2689,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 140.7164606155431 + "x": 318.032, + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 146.66746061554306 + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 151.72946061554308 + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 155.40746061554307 + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 157.34146061554307 + "x": 301.407, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 157.34146061554307 + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 155.40746061554307 + "x": 289.198, + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 151.72946061554308 + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 146.66746061554306 + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 140.7164606155431 + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 134.4584606155431 + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 128.50746061554307 + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 123.44546061554307 + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 119.76746061554307 + "x": 289.198, + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 117.83346061554306 + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 117.83346061554306 + "x": 301.407, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 119.76746061554307 + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 123.44546061554307 + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 128.50746061554307 + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 134.4584606155431 + "x": 318.032, + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 281 }, @@ -2852,13 +2852,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2880,7 +2880,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2925,40 +2925,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2973,12 +2973,12 @@ } }, { - "x": 377.5400000000001, - "y": 160.24873133057872 + "x": 377.54, + "y": 160.24873 }, { - "x": 338.03200000000004, - "y": 117.83346061554306 + "x": 338.032, + "y": 117.83346 }, { "category": 1, @@ -2995,16 +2995,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 137.58746061554308 + "x": 357.786, + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { - "x": 357.78600000000006, - "y": 134.68018990050743 + "x": 357.786, + "y": 134.68019 }, { "endCol": 7, @@ -3028,7 +3028,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -3096,148 +3096,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 140.7164606155431 + "x": 377.54, + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 146.66746061554306 + "x": 375.606, + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 151.72946061554308 + "x": 371.928, + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 155.40746061554307 + "x": 366.866, + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 157.34146061554307 + "x": 360.915, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 157.34146061554307 + "x": 354.657, + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 155.40746061554307 + "x": 348.706, + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 151.72946061554308 + "x": 343.644, + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 146.66746061554306 + "x": 339.966, + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 140.7164606155431 + "x": 338.032, + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 134.4584606155431 + "x": 338.032, + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 128.50746061554307 + "x": 339.966, + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 123.44546061554307 + "x": 343.644, + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 119.76746061554307 + "x": 348.706, + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 117.83346061554306 + "x": 354.657, + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 117.83346061554306 + "x": 360.915, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 119.76746061554307 + "x": 366.866, + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 123.44546061554307 + "x": 371.928, + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 128.50746061554307 + "x": 375.606, + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 134.4584606155431 + "x": 377.54, + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 327 }, @@ -3259,13 +3259,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3287,7 +3287,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3332,40 +3332,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3380,12 +3380,12 @@ } }, { - "x": 437.0480000000001, - "y": 160.24873133057872 + "x": 437.048, + "y": 160.24873 }, { - "x": 397.5400000000001, - "y": 117.83346061554306 + "x": 397.54, + "y": 117.83346 }, { "category": 1, @@ -3402,16 +3402,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 137.58746061554308 + "x": 417.294, + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { - "x": 417.2940000000001, - "y": 134.68018990050743 + "x": 417.294, + "y": 134.68019 }, { "endCol": 9, @@ -3435,7 +3435,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -3503,148 +3503,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 140.7164606155431 + "x": 437.048, + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 146.66746061554306 + "x": 435.114, + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 151.72946061554308 + "x": 431.436, + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 155.40746061554307 + "x": 426.374, + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 157.34146061554307 + "x": 420.423, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 157.34146061554307 + "x": 414.165, + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 155.40746061554307 + "x": 408.214, + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 151.72946061554308 + "x": 403.152, + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 146.66746061554306 + "x": 399.474, + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 140.7164606155431 + "x": 397.54, + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 134.4584606155431 + "x": 397.54, + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 128.50746061554307 + "x": 399.474, + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 123.44546061554307 + "x": 403.152, + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 119.76746061554307 + "x": 408.214, + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 117.83346061554306 + "x": 414.165, + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 117.83346061554306 + "x": 420.423, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 119.76746061554307 + "x": 426.374, + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 123.44546061554307 + "x": 431.436, + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 128.50746061554307 + "x": 435.114, + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 134.4584606155431 + "x": 437.048, + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 373 }, @@ -3666,13 +3666,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3694,7 +3694,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3739,40 +3739,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3787,12 +3787,12 @@ } }, { - "x": 496.55600000000015, - "y": 160.24873133057872 + "x": 496.556, + "y": 160.24873 }, { - "x": 457.0480000000001, - "y": 117.83346061554306 + "x": 457.048, + "y": 117.83346 }, { "category": 1, @@ -3809,16 +3809,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 137.58746061554308 + "x": 476.802, + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { - "x": 476.80200000000013, - "y": 134.68018990050743 + "x": 476.802, + "y": 134.68019 }, { "endCol": 10, @@ -3842,7 +3842,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -3910,148 +3910,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 140.7164606155431 + "x": 496.556, + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 146.66746061554306 + "x": 494.622, + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 151.72946061554308 + "x": 490.944, + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 155.40746061554307 + "x": 485.882, + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 157.34146061554307 + "x": 479.931, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 157.34146061554307 + "x": 473.673, + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 155.40746061554307 + "x": 467.722, + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 151.72946061554308 + "x": 462.66, + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 146.66746061554306 + "x": 458.982, + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 140.7164606155431 + "x": 457.048, + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 134.4584606155431 + "x": 457.048, + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 128.50746061554307 + "x": 458.982, + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 123.44546061554307 + "x": 462.66, + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 119.76746061554307 + "x": 467.722, + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 117.83346061554306 + "x": 473.673, + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 117.83346061554306 + "x": 479.931, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 119.76746061554307 + "x": 485.882, + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 123.44546061554307 + "x": 490.944, + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 128.50746061554307 + "x": 494.622, + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 134.4584606155431 + "x": 496.556, + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 419 }, @@ -4073,13 +4073,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4101,7 +4101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4146,40 +4146,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4194,12 +4194,12 @@ } }, { - "x": 556.0640000000002, - "y": 160.24873133057872 + "x": 556.064, + "y": 160.24873 }, { - "x": 516.5560000000002, - "y": 117.83346061554306 + "x": 516.556, + "y": 117.83346 }, { "category": 1, @@ -4216,16 +4216,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 137.58746061554308 + "x": 536.31, + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { - "x": 536.3100000000002, - "y": 134.68018990050743 + "x": 536.31, + "y": 134.68019 }, { "endCol": 11, @@ -4249,7 +4249,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -4317,148 +4317,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 140.7164606155431 + "x": 556.064, + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 146.66746061554306 + "x": 554.13, + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 151.72946061554308 + "x": 550.452, + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 155.40746061554307 + "x": 545.39, + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 157.34146061554307 + "x": 539.439, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 157.34146061554307 + "x": 533.181, + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 155.40746061554307 + "x": 527.23, + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 151.72946061554308 + "x": 522.168, + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 146.66746061554306 + "x": 518.49, + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 140.7164606155431 + "x": 516.556, + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 134.4584606155431 + "x": 516.556, + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 128.50746061554307 + "x": 518.49, + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 123.44546061554307 + "x": 522.168, + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 119.76746061554307 + "x": 527.23, + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 117.83346061554306 + "x": 533.181, + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 117.83346061554306 + "x": 539.439, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 119.76746061554307 + "x": 545.39, + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 123.44546061554307 + "x": 550.452, + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 128.50746061554307 + "x": 554.13, + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 134.4584606155431 + "x": 556.064, + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 465 }, @@ -4480,13 +4480,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4508,7 +4508,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4553,40 +4553,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4601,12 +4601,12 @@ } }, { - "x": 615.5720000000002, - "y": 160.24873133057872 + "x": 615.572, + "y": 160.24873 }, { - "x": 576.0640000000002, - "y": 117.83346061554306 + "x": 576.064, + "y": 117.83346 }, { "category": 1, @@ -4623,16 +4623,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 137.58746061554308 + "x": 595.818, + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { - "x": 595.8180000000002, - "y": 134.68018990050743 + "x": 595.818, + "y": 134.68019 }, { "endCol": 12, @@ -4656,7 +4656,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -4724,148 +4724,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 140.7164606155431 + "x": 615.572, + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 146.66746061554306 + "x": 613.638, + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 151.72946061554308 + "x": 609.96, + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 155.40746061554307 + "x": 604.898, + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 157.34146061554307 + "x": 598.947, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 157.34146061554307 + "x": 592.689, + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 155.40746061554307 + "x": 586.738, + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 151.72946061554308 + "x": 581.676, + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 146.66746061554306 + "x": 577.998, + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 140.7164606155431 + "x": 576.064, + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 134.4584606155431 + "x": 576.064, + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 128.50746061554307 + "x": 577.998, + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 123.44546061554307 + "x": 581.676, + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 119.76746061554307 + "x": 586.738, + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 117.83346061554306 + "x": 592.689, + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 117.83346061554306 + "x": 598.947, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 119.76746061554307 + "x": 604.898, + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 123.44546061554307 + "x": 609.96, + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 128.50746061554307 + "x": 613.638, + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 134.4584606155431 + "x": 615.572, + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 511 }, @@ -4887,13 +4887,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4915,7 +4915,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4960,40 +4960,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5008,12 +5008,12 @@ } }, { - "x": 675.0800000000003, - "y": 160.24873133057872 + "x": 675.08, + "y": 160.24873 }, { - "x": 635.5720000000002, - "y": 117.83346061554306 + "x": 635.572, + "y": 117.83346 }, { "category": 1, @@ -5030,16 +5030,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 137.58746061554308 + "x": 655.326, + "y": 137.58746 }, { "x": 0, - "y": 0.0028023203492638237 + "y": 0.0028 }, { - "x": 655.3260000000002, - "y": 134.68018990050743 + "x": 655.326, + "y": 134.68019 }, { "endCol": 14, @@ -5063,7 +5063,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -5131,148 +5131,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 140.7164606155431 + "x": 675.08, + "y": 140.71646 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 146.66746061554306 + "x": 673.146, + "y": 146.66746 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 151.72946061554308 + "x": 669.468, + "y": 151.72946 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 155.40746061554307 + "x": 664.406, + "y": 155.40746 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 157.34146061554307 + "x": 658.455, + "y": 157.34146 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 157.34146061554307 + "x": 652.197, + "y": 157.34146 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 155.40746061554307 + "x": 646.246, + "y": 155.40746 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 151.72946061554308 + "x": 641.184, + "y": 151.72946 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 146.66746061554306 + "x": 637.506, + "y": 146.66746 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 140.7164606155431 + "x": 635.572, + "y": 140.71646 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 134.4584606155431 + "x": 635.572, + "y": 134.45846 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 128.50746061554307 + "x": 637.506, + "y": 128.50746 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 123.44546061554307 + "x": 641.184, + "y": 123.44546 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 119.76746061554307 + "x": 646.246, + "y": 119.76746 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 117.83346061554306 + "x": 652.197, + "y": 117.83346 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 117.83346061554306 + "x": 658.455, + "y": 117.83346 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 119.76746061554307 + "x": 664.406, + "y": 119.76746 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 123.44546061554307 + "x": 669.468, + "y": 123.44546 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 128.50746061554307 + "x": 673.146, + "y": 128.50746 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 134.4584606155431 + "x": 675.08, + "y": 134.45846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 557 }, @@ -5294,13 +5294,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5322,7 +5322,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5367,40 +5367,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5416,11 +5416,11 @@ }, { "x": 139.508, - "y": 199.70673131133213 + "y": 199.70673 }, { "x": 100, - "y": 157.29146059629645 + "y": 157.29146 }, { "category": 1, @@ -5438,15 +5438,15 @@ }, { "x": 119.754, - "y": 177.04546059629646 + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { "x": 119.754, - "y": 174.1381898812608 + "y": 174.13819 }, { "endCol": 2, @@ -5470,7 +5470,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -5539,147 +5539,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 180.17446059629646 + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 186.12546059629648 + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 191.18746059629646 + "x": 133.896, + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 194.86546059629646 + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 196.79946059629646 + "x": 122.883, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 196.79946059629646 + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 194.86546059629646 + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 191.18746059629646 + "x": 105.612, + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 186.12546059629648 + "x": 101.934, + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 180.17446059629646 + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 173.91646059629647 + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 167.96546059629645 + "x": 101.934, + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 162.90346059629647 + "x": 105.612, + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 159.22546059629647 + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 157.29146059629645 + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 157.29146059629645 + "x": 122.883, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 159.22546059629647 + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 162.90346059629647 + "x": 133.896, + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 167.96546059629645 + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 173.91646059629647 + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 603 }, @@ -5701,13 +5701,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5729,7 +5729,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5774,40 +5774,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5823,11 +5823,11 @@ }, { "x": 199.016, - "y": 199.70673131133213 + "y": 199.70673 }, { "x": 159.508, - "y": 157.29146059629645 + "y": 157.29146 }, { "category": 1, @@ -5845,15 +5845,15 @@ }, { "x": 179.262, - "y": 177.04546059629646 + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { "x": 179.262, - "y": 174.1381898812608 + "y": 174.13819 }, { "endCol": 4, @@ -5877,7 +5877,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -5946,147 +5946,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 180.17446059629646 + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 186.12546059629648 + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 191.18746059629646 + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 194.86546059629646 + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 196.79946059629646 + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 196.79946059629646 + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 194.86546059629646 + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 191.18746059629646 + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 186.12546059629648 + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 180.17446059629646 + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 173.91646059629647 + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 167.96546059629645 + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 162.90346059629647 + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 159.22546059629647 + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 157.29146059629645 + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 157.29146059629645 + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 159.22546059629647 + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 162.90346059629647 + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 167.96546059629645 + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 173.91646059629647 + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 649 }, @@ -6108,13 +6108,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6136,7 +6136,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6181,40 +6181,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6230,11 +6230,11 @@ }, { "x": 258.524, - "y": 199.70673131133213 + "y": 199.70673 }, { "x": 219.016, - "y": 157.29146059629645 + "y": 157.29146 }, { "category": 1, @@ -6251,16 +6251,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 177.04546059629646 + "x": 238.77, + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { - "x": 238.76999999999998, - "y": 174.1381898812608 + "x": 238.77, + "y": 174.13819 }, { "endCol": 5, @@ -6284,7 +6284,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -6353,147 +6353,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 180.17446059629646 + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 186.12546059629648 + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 191.18746059629646 + "x": 252.912, + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 194.86546059629646 + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 196.79946059629646 + "x": 241.899, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 196.79946059629646 + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 194.86546059629646 + "x": 229.69, + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 191.18746059629646 + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 186.12546059629648 + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 180.17446059629646 + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 173.91646059629647 + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 167.96546059629645 + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 162.90346059629647 + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 159.22546059629647 + "x": 229.69, + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 157.29146059629645 + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 157.29146059629645 + "x": 241.899, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 159.22546059629647 + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 162.90346059629647 + "x": 252.912, + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 167.96546059629645 + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 173.91646059629647 + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 695 }, @@ -6515,13 +6515,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6543,7 +6543,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6588,40 +6588,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6636,12 +6636,12 @@ } }, { - "x": 318.03200000000004, - "y": 199.70673131133213 + "x": 318.032, + "y": 199.70673 }, { "x": 278.524, - "y": 157.29146059629645 + "y": 157.29146 }, { "category": 1, @@ -6659,15 +6659,15 @@ }, { "x": 298.278, - "y": 177.04546059629646 + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { "x": 298.278, - "y": 174.1381898812608 + "y": 174.13819 }, { "endCol": 6, @@ -6691,7 +6691,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -6759,148 +6759,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 180.17446059629646 + "x": 318.032, + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 186.12546059629648 + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 191.18746059629646 + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 194.86546059629646 + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 196.79946059629646 + "x": 301.407, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 196.79946059629646 + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 194.86546059629646 + "x": 289.198, + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 191.18746059629646 + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 186.12546059629648 + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 180.17446059629646 + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 173.91646059629647 + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 167.96546059629645 + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 162.90346059629647 + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 159.22546059629647 + "x": 289.198, + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 157.29146059629645 + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 157.29146059629645 + "x": 301.407, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 159.22546059629647 + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 162.90346059629647 + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 167.96546059629645 + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 173.91646059629647 + "x": 318.032, + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 741 }, @@ -6922,13 +6922,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6950,7 +6950,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6995,40 +6995,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7043,12 +7043,12 @@ } }, { - "x": 377.5400000000001, - "y": 199.70673131133213 + "x": 377.54, + "y": 199.70673 }, { - "x": 338.03200000000004, - "y": 157.29146059629645 + "x": 338.032, + "y": 157.29146 }, { "category": 1, @@ -7065,16 +7065,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 177.04546059629646 + "x": 357.786, + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { - "x": 357.78600000000006, - "y": 174.1381898812608 + "x": 357.786, + "y": 174.13819 }, { "endCol": 7, @@ -7098,7 +7098,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -7166,148 +7166,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 180.17446059629646 + "x": 377.54, + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 186.12546059629648 + "x": 375.606, + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 191.18746059629646 + "x": 371.928, + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 194.86546059629646 + "x": 366.866, + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 196.79946059629646 + "x": 360.915, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 196.79946059629646 + "x": 354.657, + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 194.86546059629646 + "x": 348.706, + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 191.18746059629646 + "x": 343.644, + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 186.12546059629648 + "x": 339.966, + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 180.17446059629646 + "x": 338.032, + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 173.91646059629647 + "x": 338.032, + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 167.96546059629645 + "x": 339.966, + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 162.90346059629647 + "x": 343.644, + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 159.22546059629647 + "x": 348.706, + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 157.29146059629645 + "x": 354.657, + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 157.29146059629645 + "x": 360.915, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 159.22546059629647 + "x": 366.866, + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 162.90346059629647 + "x": 371.928, + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 167.96546059629645 + "x": 375.606, + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 173.91646059629647 + "x": 377.54, + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 787 }, @@ -7329,13 +7329,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7357,7 +7357,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7402,40 +7402,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7450,12 +7450,12 @@ } }, { - "x": 437.0480000000001, - "y": 199.70673131133213 + "x": 437.048, + "y": 199.70673 }, { - "x": 397.5400000000001, - "y": 157.29146059629645 + "x": 397.54, + "y": 157.29146 }, { "category": 1, @@ -7472,16 +7472,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 177.04546059629646 + "x": 417.294, + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { - "x": 417.2940000000001, - "y": 174.1381898812608 + "x": 417.294, + "y": 174.13819 }, { "endCol": 9, @@ -7505,7 +7505,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -7573,148 +7573,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 180.17446059629646 + "x": 437.048, + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 186.12546059629648 + "x": 435.114, + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 191.18746059629646 + "x": 431.436, + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 194.86546059629646 + "x": 426.374, + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 196.79946059629646 + "x": 420.423, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 196.79946059629646 + "x": 414.165, + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 194.86546059629646 + "x": 408.214, + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 191.18746059629646 + "x": 403.152, + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 186.12546059629648 + "x": 399.474, + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 180.17446059629646 + "x": 397.54, + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 173.91646059629647 + "x": 397.54, + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 167.96546059629645 + "x": 399.474, + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 162.90346059629647 + "x": 403.152, + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 159.22546059629647 + "x": 408.214, + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 157.29146059629645 + "x": 414.165, + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 157.29146059629645 + "x": 420.423, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 159.22546059629647 + "x": 426.374, + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 162.90346059629647 + "x": 431.436, + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 167.96546059629645 + "x": 435.114, + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 173.91646059629647 + "x": 437.048, + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 833 }, @@ -7736,13 +7736,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7764,7 +7764,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7809,40 +7809,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7857,12 +7857,12 @@ } }, { - "x": 496.55600000000015, - "y": 199.70673131133213 + "x": 496.556, + "y": 199.70673 }, { - "x": 457.0480000000001, - "y": 157.29146059629645 + "x": 457.048, + "y": 157.29146 }, { "category": 1, @@ -7879,16 +7879,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 177.04546059629646 + "x": 476.802, + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { - "x": 476.80200000000013, - "y": 174.1381898812608 + "x": 476.802, + "y": 174.13819 }, { "endCol": 10, @@ -7912,7 +7912,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -7980,148 +7980,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 180.17446059629646 + "x": 496.556, + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 186.12546059629648 + "x": 494.622, + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 191.18746059629646 + "x": 490.944, + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 194.86546059629646 + "x": 485.882, + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 196.79946059629646 + "x": 479.931, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 196.79946059629646 + "x": 473.673, + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 194.86546059629646 + "x": 467.722, + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 191.18746059629646 + "x": 462.66, + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 186.12546059629648 + "x": 458.982, + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 180.17446059629646 + "x": 457.048, + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 173.91646059629647 + "x": 457.048, + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 167.96546059629645 + "x": 458.982, + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 162.90346059629647 + "x": 462.66, + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 159.22546059629647 + "x": 467.722, + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 157.29146059629645 + "x": 473.673, + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 157.29146059629645 + "x": 479.931, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 159.22546059629647 + "x": 485.882, + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 162.90346059629647 + "x": 490.944, + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 167.96546059629645 + "x": 494.622, + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 173.91646059629647 + "x": 496.556, + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 879 }, @@ -8143,13 +8143,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8171,7 +8171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8216,40 +8216,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8264,12 +8264,12 @@ } }, { - "x": 556.0640000000002, - "y": 199.70673131133213 + "x": 556.064, + "y": 199.70673 }, { - "x": 516.5560000000002, - "y": 157.29146059629645 + "x": 516.556, + "y": 157.29146 }, { "category": 1, @@ -8286,16 +8286,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 177.04546059629646 + "x": 536.31, + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { - "x": 536.3100000000002, - "y": 174.1381898812608 + "x": 536.31, + "y": 174.13819 }, { "endCol": 11, @@ -8319,7 +8319,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -8387,148 +8387,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 180.17446059629646 + "x": 556.064, + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 186.12546059629648 + "x": 554.13, + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 191.18746059629646 + "x": 550.452, + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 194.86546059629646 + "x": 545.39, + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 196.79946059629646 + "x": 539.439, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 196.79946059629646 + "x": 533.181, + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 194.86546059629646 + "x": 527.23, + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 191.18746059629646 + "x": 522.168, + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 186.12546059629648 + "x": 518.49, + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 180.17446059629646 + "x": 516.556, + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 173.91646059629647 + "x": 516.556, + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 167.96546059629645 + "x": 518.49, + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 162.90346059629647 + "x": 522.168, + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 159.22546059629647 + "x": 527.23, + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 157.29146059629645 + "x": 533.181, + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 157.29146059629645 + "x": 539.439, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 159.22546059629647 + "x": 545.39, + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 162.90346059629647 + "x": 550.452, + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 167.96546059629645 + "x": 554.13, + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 173.91646059629647 + "x": 556.064, + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 925 }, @@ -8550,13 +8550,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8578,7 +8578,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8623,40 +8623,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8671,12 +8671,12 @@ } }, { - "x": 615.5720000000002, - "y": 199.70673131133213 + "x": 615.572, + "y": 199.70673 }, { - "x": 576.0640000000002, - "y": 157.29146059629645 + "x": 576.064, + "y": 157.29146 }, { "category": 1, @@ -8693,16 +8693,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 177.04546059629646 + "x": 595.818, + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { - "x": 595.8180000000002, - "y": 174.1381898812608 + "x": 595.818, + "y": 174.13819 }, { "endCol": 12, @@ -8726,7 +8726,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -8794,148 +8794,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 180.17446059629646 + "x": 615.572, + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 186.12546059629648 + "x": 613.638, + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 191.18746059629646 + "x": 609.96, + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 194.86546059629646 + "x": 604.898, + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 196.79946059629646 + "x": 598.947, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 196.79946059629646 + "x": 592.689, + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 194.86546059629646 + "x": 586.738, + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 191.18746059629646 + "x": 581.676, + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 186.12546059629648 + "x": 577.998, + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 180.17446059629646 + "x": 576.064, + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 173.91646059629647 + "x": 576.064, + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 167.96546059629645 + "x": 577.998, + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 162.90346059629647 + "x": 581.676, + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 159.22546059629647 + "x": 586.738, + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 157.29146059629645 + "x": 592.689, + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 157.29146059629645 + "x": 598.947, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 159.22546059629647 + "x": 604.898, + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 162.90346059629647 + "x": 609.96, + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 167.96546059629645 + "x": 613.638, + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 173.91646059629647 + "x": 615.572, + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 971 }, @@ -8957,13 +8957,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8985,7 +8985,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9030,40 +9030,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9078,12 +9078,12 @@ } }, { - "x": 675.0800000000003, - "y": 199.70673131133213 + "x": 675.08, + "y": 199.70673 }, { - "x": 635.5720000000002, - "y": 157.29146059629645 + "x": 635.572, + "y": 157.29146 }, { "category": 1, @@ -9100,16 +9100,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 177.04546059629646 + "x": 655.326, + "y": 177.04546 }, { "x": 0, - "y": 0.0028018759628781393 + "y": 0.0028 }, { - "x": 655.3260000000002, - "y": 174.1381898812608 + "x": 655.326, + "y": 174.13819 }, { "endCol": 14, @@ -9133,7 +9133,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -9201,148 +9201,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 180.17446059629646 + "x": 675.08, + "y": 180.17446 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 186.12546059629648 + "x": 673.146, + "y": 186.12546 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 191.18746059629646 + "x": 669.468, + "y": 191.18746 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 194.86546059629646 + "x": 664.406, + "y": 194.86546 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 196.79946059629646 + "x": 658.455, + "y": 196.79946 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 196.79946059629646 + "x": 652.197, + "y": 196.79946 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 194.86546059629646 + "x": 646.246, + "y": 194.86546 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 191.18746059629646 + "x": 641.184, + "y": 191.18746 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 186.12546059629648 + "x": 637.506, + "y": 186.12546 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 180.17446059629646 + "x": 635.572, + "y": 180.17446 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 173.91646059629647 + "x": 635.572, + "y": 173.91646 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 167.96546059629645 + "x": 637.506, + "y": 167.96546 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 162.90346059629647 + "x": 641.184, + "y": 162.90346 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 159.22546059629647 + "x": 646.246, + "y": 159.22546 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 157.29146059629645 + "x": 652.197, + "y": 157.29146 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 157.29146059629645 + "x": 658.455, + "y": 157.29146 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 159.22546059629647 + "x": 664.406, + "y": 159.22546 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 162.90346059629647 + "x": 669.468, + "y": 162.90346 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 167.96546059629645 + "x": 673.146, + "y": 167.96546 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 173.91646059629647 + "x": 675.08, + "y": 173.91646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1017 }, @@ -9364,13 +9364,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9392,7 +9392,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9437,40 +9437,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9486,11 +9486,11 @@ }, { "x": 139.508, - "y": 239.1647312920855 + "y": 239.16473 }, { "x": 100, - "y": 196.74946057704983 + "y": 196.74946 }, { "category": 1, @@ -9508,15 +9508,15 @@ }, { "x": 119.754, - "y": 216.50346057704982 + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { "x": 119.754, - "y": 213.59618986201414 + "y": 213.59619 }, { "endCol": 2, @@ -9540,7 +9540,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -9609,147 +9609,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 219.6324605770498 + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 225.58346057704983 + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 230.64546057704982 + "x": 133.896, + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 234.32346057704981 + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 236.2574605770498 + "x": 122.883, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 236.2574605770498 + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 234.32346057704981 + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 230.64546057704982 + "x": 105.612, + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 225.58346057704983 + "x": 101.934, + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 219.6324605770498 + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 213.37446057704983 + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 207.4234605770498 + "x": 101.934, + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 202.36146057704983 + "x": 105.612, + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 198.68346057704983 + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 196.74946057704983 + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 196.74946057704983 + "x": 122.883, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 198.68346057704983 + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 202.36146057704983 + "x": 133.896, + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 207.4234605770498 + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 213.37446057704983 + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1063 }, @@ -9771,13 +9771,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9799,7 +9799,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9844,40 +9844,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9893,11 +9893,11 @@ }, { "x": 199.016, - "y": 239.1647312920855 + "y": 239.16473 }, { "x": 159.508, - "y": 196.74946057704983 + "y": 196.74946 }, { "category": 1, @@ -9915,15 +9915,15 @@ }, { "x": 179.262, - "y": 216.50346057704982 + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { "x": 179.262, - "y": 213.59618986201414 + "y": 213.59619 }, { "endCol": 4, @@ -9947,7 +9947,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -10016,147 +10016,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 219.6324605770498 + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 225.58346057704983 + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 230.64546057704982 + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 234.32346057704981 + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 236.2574605770498 + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 236.2574605770498 + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 234.32346057704981 + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 230.64546057704982 + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 225.58346057704983 + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 219.6324605770498 + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 213.37446057704983 + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 207.4234605770498 + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 202.36146057704983 + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 198.68346057704983 + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 196.74946057704983 + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 196.74946057704983 + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 198.68346057704983 + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 202.36146057704983 + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 207.4234605770498 + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 213.37446057704983 + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1109 }, @@ -10178,13 +10178,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10206,7 +10206,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10251,40 +10251,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10300,11 +10300,11 @@ }, { "x": 258.524, - "y": 239.1647312920855 + "y": 239.16473 }, { "x": 219.016, - "y": 196.74946057704983 + "y": 196.74946 }, { "category": 1, @@ -10321,16 +10321,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 216.50346057704982 + "x": 238.77, + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { - "x": 238.76999999999998, - "y": 213.59618986201414 + "x": 238.77, + "y": 213.59619 }, { "endCol": 5, @@ -10354,7 +10354,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -10423,147 +10423,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 219.6324605770498 + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 225.58346057704983 + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 230.64546057704982 + "x": 252.912, + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 234.32346057704981 + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 236.2574605770498 + "x": 241.899, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 236.2574605770498 + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 234.32346057704981 + "x": 229.69, + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 230.64546057704982 + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 225.58346057704983 + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 219.6324605770498 + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 213.37446057704983 + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 207.4234605770498 + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 202.36146057704983 + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 198.68346057704983 + "x": 229.69, + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 196.74946057704983 + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 196.74946057704983 + "x": 241.899, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 198.68346057704983 + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 202.36146057704983 + "x": 252.912, + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 207.4234605770498 + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 213.37446057704983 + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1155 }, @@ -10585,13 +10585,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10613,7 +10613,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10658,40 +10658,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10706,12 +10706,12 @@ } }, { - "x": 318.03200000000004, - "y": 239.1647312920855 + "x": 318.032, + "y": 239.16473 }, { "x": 278.524, - "y": 196.74946057704983 + "y": 196.74946 }, { "category": 1, @@ -10729,15 +10729,15 @@ }, { "x": 298.278, - "y": 216.50346057704982 + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { "x": 298.278, - "y": 213.59618986201414 + "y": 213.59619 }, { "endCol": 6, @@ -10761,7 +10761,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -10829,148 +10829,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 219.6324605770498 + "x": 318.032, + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 225.58346057704983 + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 230.64546057704982 + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 234.32346057704981 + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 236.2574605770498 + "x": 301.407, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 236.2574605770498 + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 234.32346057704981 + "x": 289.198, + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 230.64546057704982 + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 225.58346057704983 + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 219.6324605770498 + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 213.37446057704983 + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 207.4234605770498 + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 202.36146057704983 + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 198.68346057704983 + "x": 289.198, + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 196.74946057704983 + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 196.74946057704983 + "x": 301.407, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 198.68346057704983 + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 202.36146057704983 + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 207.4234605770498 + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 213.37446057704983 + "x": 318.032, + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1201 }, @@ -10992,13 +10992,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11020,7 +11020,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11065,40 +11065,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11113,12 +11113,12 @@ } }, { - "x": 377.5400000000001, - "y": 239.1647312920855 + "x": 377.54, + "y": 239.16473 }, { - "x": 338.03200000000004, - "y": 196.74946057704983 + "x": 338.032, + "y": 196.74946 }, { "category": 1, @@ -11135,16 +11135,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 216.50346057704982 + "x": 357.786, + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { - "x": 357.78600000000006, - "y": 213.59618986201414 + "x": 357.786, + "y": 213.59619 }, { "endCol": 7, @@ -11168,7 +11168,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -11236,148 +11236,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 219.6324605770498 + "x": 377.54, + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 225.58346057704983 + "x": 375.606, + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 230.64546057704982 + "x": 371.928, + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 234.32346057704981 + "x": 366.866, + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 236.2574605770498 + "x": 360.915, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 236.2574605770498 + "x": 354.657, + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 234.32346057704981 + "x": 348.706, + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 230.64546057704982 + "x": 343.644, + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 225.58346057704983 + "x": 339.966, + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 219.6324605770498 + "x": 338.032, + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 213.37446057704983 + "x": 338.032, + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 207.4234605770498 + "x": 339.966, + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 202.36146057704983 + "x": 343.644, + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 198.68346057704983 + "x": 348.706, + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 196.74946057704983 + "x": 354.657, + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 196.74946057704983 + "x": 360.915, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 198.68346057704983 + "x": 366.866, + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 202.36146057704983 + "x": 371.928, + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 207.4234605770498 + "x": 375.606, + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 213.37446057704983 + "x": 377.54, + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1247 }, @@ -11399,13 +11399,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11427,7 +11427,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11472,40 +11472,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11520,12 +11520,12 @@ } }, { - "x": 437.0480000000001, - "y": 239.1647312920855 + "x": 437.048, + "y": 239.16473 }, { - "x": 397.5400000000001, - "y": 196.74946057704983 + "x": 397.54, + "y": 196.74946 }, { "category": 1, @@ -11542,16 +11542,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 216.50346057704982 + "x": 417.294, + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { - "x": 417.2940000000001, - "y": 213.59618986201414 + "x": 417.294, + "y": 213.59619 }, { "endCol": 9, @@ -11575,7 +11575,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -11643,148 +11643,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 219.6324605770498 + "x": 437.048, + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 225.58346057704983 + "x": 435.114, + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 230.64546057704982 + "x": 431.436, + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 234.32346057704981 + "x": 426.374, + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 236.2574605770498 + "x": 420.423, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 236.2574605770498 + "x": 414.165, + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 234.32346057704981 + "x": 408.214, + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 230.64546057704982 + "x": 403.152, + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 225.58346057704983 + "x": 399.474, + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 219.6324605770498 + "x": 397.54, + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 213.37446057704983 + "x": 397.54, + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 207.4234605770498 + "x": 399.474, + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 202.36146057704983 + "x": 403.152, + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 198.68346057704983 + "x": 408.214, + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 196.74946057704983 + "x": 414.165, + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 196.74946057704983 + "x": 420.423, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 198.68346057704983 + "x": 426.374, + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 202.36146057704983 + "x": 431.436, + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 207.4234605770498 + "x": 435.114, + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 213.37446057704983 + "x": 437.048, + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1293 }, @@ -11806,13 +11806,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11834,7 +11834,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11879,40 +11879,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11927,12 +11927,12 @@ } }, { - "x": 496.55600000000015, - "y": 239.1647312920855 + "x": 496.556, + "y": 239.16473 }, { - "x": 457.0480000000001, - "y": 196.74946057704983 + "x": 457.048, + "y": 196.74946 }, { "category": 1, @@ -11949,16 +11949,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 216.50346057704982 + "x": 476.802, + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { - "x": 476.80200000000013, - "y": 213.59618986201414 + "x": 476.802, + "y": 213.59619 }, { "endCol": 10, @@ -11982,7 +11982,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -12050,148 +12050,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 219.6324605770498 + "x": 496.556, + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 225.58346057704983 + "x": 494.622, + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 230.64546057704982 + "x": 490.944, + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 234.32346057704981 + "x": 485.882, + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 236.2574605770498 + "x": 479.931, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 236.2574605770498 + "x": 473.673, + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 234.32346057704981 + "x": 467.722, + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 230.64546057704982 + "x": 462.66, + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 225.58346057704983 + "x": 458.982, + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 219.6324605770498 + "x": 457.048, + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 213.37446057704983 + "x": 457.048, + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 207.4234605770498 + "x": 458.982, + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 202.36146057704983 + "x": 462.66, + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 198.68346057704983 + "x": 467.722, + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 196.74946057704983 + "x": 473.673, + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 196.74946057704983 + "x": 479.931, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 198.68346057704983 + "x": 485.882, + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 202.36146057704983 + "x": 490.944, + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 207.4234605770498 + "x": 494.622, + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 213.37446057704983 + "x": 496.556, + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1339 }, @@ -12213,13 +12213,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12241,7 +12241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12286,40 +12286,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12334,12 +12334,12 @@ } }, { - "x": 556.0640000000002, - "y": 239.1647312920855 + "x": 556.064, + "y": 239.16473 }, { - "x": 516.5560000000002, - "y": 196.74946057704983 + "x": 516.556, + "y": 196.74946 }, { "category": 1, @@ -12356,16 +12356,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 216.50346057704982 + "x": 536.31, + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { - "x": 536.3100000000002, - "y": 213.59618986201414 + "x": 536.31, + "y": 213.59619 }, { "endCol": 11, @@ -12389,7 +12389,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -12457,148 +12457,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 219.6324605770498 + "x": 556.064, + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 225.58346057704983 + "x": 554.13, + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 230.64546057704982 + "x": 550.452, + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 234.32346057704981 + "x": 545.39, + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 236.2574605770498 + "x": 539.439, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 236.2574605770498 + "x": 533.181, + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 234.32346057704981 + "x": 527.23, + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 230.64546057704982 + "x": 522.168, + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 225.58346057704983 + "x": 518.49, + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 219.6324605770498 + "x": 516.556, + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 213.37446057704983 + "x": 516.556, + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 207.4234605770498 + "x": 518.49, + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 202.36146057704983 + "x": 522.168, + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 198.68346057704983 + "x": 527.23, + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 196.74946057704983 + "x": 533.181, + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 196.74946057704983 + "x": 539.439, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 198.68346057704983 + "x": 545.39, + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 202.36146057704983 + "x": 550.452, + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 207.4234605770498 + "x": 554.13, + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 213.37446057704983 + "x": 556.064, + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1385 }, @@ -12620,13 +12620,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12648,7 +12648,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12693,40 +12693,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12741,12 +12741,12 @@ } }, { - "x": 615.5720000000002, - "y": 239.1647312920855 + "x": 615.572, + "y": 239.16473 }, { - "x": 576.0640000000002, - "y": 196.74946057704983 + "x": 576.064, + "y": 196.74946 }, { "category": 1, @@ -12763,16 +12763,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 216.50346057704982 + "x": 595.818, + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { - "x": 595.8180000000002, - "y": 213.59618986201414 + "x": 595.818, + "y": 213.59619 }, { "endCol": 12, @@ -12796,7 +12796,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -12864,148 +12864,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 219.6324605770498 + "x": 615.572, + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 225.58346057704983 + "x": 613.638, + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 230.64546057704982 + "x": 609.96, + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 234.32346057704981 + "x": 604.898, + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 236.2574605770498 + "x": 598.947, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 236.2574605770498 + "x": 592.689, + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 234.32346057704981 + "x": 586.738, + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 230.64546057704982 + "x": 581.676, + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 225.58346057704983 + "x": 577.998, + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 219.6324605770498 + "x": 576.064, + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 213.37446057704983 + "x": 576.064, + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 207.4234605770498 + "x": 577.998, + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 202.36146057704983 + "x": 581.676, + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 198.68346057704983 + "x": 586.738, + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 196.74946057704983 + "x": 592.689, + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 196.74946057704983 + "x": 598.947, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 198.68346057704983 + "x": 604.898, + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 202.36146057704983 + "x": 609.96, + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 207.4234605770498 + "x": 613.638, + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 213.37446057704983 + "x": 615.572, + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1431 }, @@ -13027,13 +13027,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13055,7 +13055,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13100,40 +13100,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13148,12 +13148,12 @@ } }, { - "x": 675.0800000000003, - "y": 239.1647312920855 + "x": 675.08, + "y": 239.16473 }, { - "x": 635.5720000000002, - "y": 196.74946057704983 + "x": 635.572, + "y": 196.74946 }, { "category": 1, @@ -13170,16 +13170,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 216.50346057704982 + "x": 655.326, + "y": 216.50346 }, { "x": 0, - "y": 0.002801431576527799 + "y": 0.0028 }, { - "x": 655.3260000000002, - "y": 213.59618986201414 + "x": 655.326, + "y": 213.59619 }, { "endCol": 14, @@ -13203,7 +13203,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -13271,148 +13271,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 219.6324605770498 + "x": 675.08, + "y": 219.63246 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 225.58346057704983 + "x": 673.146, + "y": 225.58346 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 230.64546057704982 + "x": 669.468, + "y": 230.64546 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 234.32346057704981 + "x": 664.406, + "y": 234.32346 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 236.2574605770498 + "x": 658.455, + "y": 236.25746 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 236.2574605770498 + "x": 652.197, + "y": 236.25746 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 234.32346057704981 + "x": 646.246, + "y": 234.32346 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 230.64546057704982 + "x": 641.184, + "y": 230.64546 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 225.58346057704983 + "x": 637.506, + "y": 225.58346 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 219.6324605770498 + "x": 635.572, + "y": 219.63246 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 213.37446057704983 + "x": 635.572, + "y": 213.37446 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 207.4234605770498 + "x": 637.506, + "y": 207.42346 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 202.36146057704983 + "x": 641.184, + "y": 202.36146 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 198.68346057704983 + "x": 646.246, + "y": 198.68346 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 196.74946057704983 + "x": 652.197, + "y": 196.74946 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 196.74946057704983 + "x": 658.455, + "y": 196.74946 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 198.68346057704983 + "x": 664.406, + "y": 198.68346 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 202.36146057704983 + "x": 669.468, + "y": 202.36146 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 207.4234605770498 + "x": 673.146, + "y": 207.42346 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 213.37446057704983 + "x": 675.08, + "y": 213.37446 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1477 }, @@ -13434,13 +13434,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13462,7 +13462,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13507,40 +13507,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13556,11 +13556,11 @@ }, { "x": 139.508, - "y": 275.76775476702585 + "y": 275.76775 }, { "x": 100, - "y": 236.25975476702598 + "y": 236.25975 }, { "category": 1, @@ -13578,7 +13578,7 @@ }, { "x": 119.754, - "y": 256.013754767026 + "y": 256.01375 }, { "x": 0, @@ -13586,7 +13586,7 @@ }, { "x": 119.754, - "y": 253.1064840519903 + "y": 253.10648 }, { "endCol": 2, @@ -13610,7 +13610,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13679,147 +13679,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 259.14275476702596 + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 265.0937547670259 + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 270.1557547670259 + "x": 133.896, + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 273.8337547670258 + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 275.76775476702585 + "x": 122.883, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 275.76775476702585 + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 273.8337547670258 + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 270.1557547670259 + "x": 105.612, + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 265.0937547670259 + "x": 101.934, + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 259.14275476702596 + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 252.88475476702598 + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 246.93375476702596 + "x": 101.934, + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 241.87175476702598 + "x": 105.612, + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 238.19375476702598 + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 236.25975476702598 + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 236.25975476702598 + "x": 122.883, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 238.19375476702598 + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 241.87175476702598 + "x": 133.896, + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 246.93375476702596 + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 252.88475476702598 + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1523 }, @@ -13841,13 +13841,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13869,7 +13869,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13914,40 +13914,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13963,11 +13963,11 @@ }, { "x": 199.016, - "y": 275.76775476702585 + "y": 275.76775 }, { "x": 159.508, - "y": 236.25975476702598 + "y": 236.25975 }, { "category": 1, @@ -13985,7 +13985,7 @@ }, { "x": 179.262, - "y": 256.013754767026 + "y": 256.01375 }, { "x": 0, @@ -13993,7 +13993,7 @@ }, { "x": 179.262, - "y": 253.1064840519903 + "y": 253.10648 }, { "endCol": 4, @@ -14017,7 +14017,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14086,147 +14086,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 259.14275476702596 + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 265.0937547670259 + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 270.1557547670259 + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 273.8337547670258 + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 275.76775476702585 + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 275.76775476702585 + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 273.8337547670258 + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 270.1557547670259 + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 265.0937547670259 + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 259.14275476702596 + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 252.88475476702598 + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 246.93375476702596 + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 241.87175476702598 + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 238.19375476702598 + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 236.25975476702598 + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 236.25975476702598 + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 238.19375476702598 + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 241.87175476702598 + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 246.93375476702596 + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 252.88475476702598 + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1569 }, @@ -14248,13 +14248,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14276,7 +14276,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14321,40 +14321,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14370,11 +14370,11 @@ }, { "x": 258.524, - "y": 275.76775476702585 + "y": 275.76775 }, { "x": 219.016, - "y": 236.25975476702598 + "y": 236.25975 }, { "category": 1, @@ -14391,16 +14391,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 256.013754767026 + "x": 238.77, + "y": 256.01375 }, { "x": 0, "y": 0 }, { - "x": 238.76999999999998, - "y": 253.1064840519903 + "x": 238.77, + "y": 253.10648 }, { "endCol": 5, @@ -14424,7 +14424,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14493,147 +14493,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 259.14275476702596 + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 265.0937547670259 + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 270.1557547670259 + "x": 252.912, + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 273.8337547670258 + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 275.76775476702585 + "x": 241.899, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 275.76775476702585 + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 273.8337547670258 + "x": 229.69, + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 270.1557547670259 + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 265.0937547670259 + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 259.14275476702596 + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 252.88475476702598 + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 246.93375476702596 + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 241.87175476702598 + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 238.19375476702598 + "x": 229.69, + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 236.25975476702598 + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 236.25975476702598 + "x": 241.899, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 238.19375476702598 + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 241.87175476702598 + "x": 252.912, + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 246.93375476702596 + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 252.88475476702598 + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1615 }, @@ -14655,13 +14655,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14683,7 +14683,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14728,40 +14728,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14776,12 +14776,12 @@ } }, { - "x": 318.03200000000004, - "y": 275.76775476702585 + "x": 318.032, + "y": 275.76775 }, { "x": 278.524, - "y": 236.25975476702598 + "y": 236.25975 }, { "category": 1, @@ -14799,7 +14799,7 @@ }, { "x": 298.278, - "y": 256.013754767026 + "y": 256.01375 }, { "x": 0, @@ -14807,7 +14807,7 @@ }, { "x": 298.278, - "y": 253.1064840519903 + "y": 253.10648 }, { "endCol": 6, @@ -14831,7 +14831,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14899,148 +14899,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 259.14275476702596 + "x": 318.032, + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 265.0937547670259 + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 270.1557547670259 + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 273.8337547670258 + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 275.76775476702585 + "x": 301.407, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 275.76775476702585 + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 273.8337547670258 + "x": 289.198, + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 270.1557547670259 + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 265.0937547670259 + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 259.14275476702596 + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 252.88475476702598 + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 246.93375476702596 + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 241.87175476702598 + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 238.19375476702598 + "x": 289.198, + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 236.25975476702598 + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 236.25975476702598 + "x": 301.407, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 238.19375476702598 + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 241.87175476702598 + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 246.93375476702596 + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 252.88475476702598 + "x": 318.032, + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1661 }, @@ -15062,13 +15062,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15090,7 +15090,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15135,40 +15135,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15183,12 +15183,12 @@ } }, { - "x": 377.5400000000001, - "y": 275.76775476702585 + "x": 377.54, + "y": 275.76775 }, { - "x": 338.03200000000004, - "y": 236.25975476702598 + "x": 338.032, + "y": 236.25975 }, { "category": 1, @@ -15205,16 +15205,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 256.013754767026 + "x": 357.786, + "y": 256.01375 }, { "x": 0, "y": 0 }, { - "x": 357.78600000000006, - "y": 253.1064840519903 + "x": 357.786, + "y": 253.10648 }, { "endCol": 7, @@ -15238,7 +15238,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15306,148 +15306,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 259.14275476702596 + "x": 377.54, + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 265.0937547670259 + "x": 375.606, + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 270.1557547670259 + "x": 371.928, + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 273.8337547670258 + "x": 366.866, + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 275.76775476702585 + "x": 360.915, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 275.76775476702585 + "x": 354.657, + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 273.8337547670258 + "x": 348.706, + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 270.1557547670259 + "x": 343.644, + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 265.0937547670259 + "x": 339.966, + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 259.14275476702596 + "x": 338.032, + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 252.88475476702598 + "x": 338.032, + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 246.93375476702596 + "x": 339.966, + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 241.87175476702598 + "x": 343.644, + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 238.19375476702598 + "x": 348.706, + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 236.25975476702598 + "x": 354.657, + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 236.25975476702598 + "x": 360.915, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 238.19375476702598 + "x": 366.866, + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 241.87175476702598 + "x": 371.928, + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 246.93375476702596 + "x": 375.606, + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 252.88475476702598 + "x": 377.54, + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1707 }, @@ -15469,13 +15469,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15497,7 +15497,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15542,40 +15542,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15590,12 +15590,12 @@ } }, { - "x": 437.0480000000001, - "y": 275.76775476702585 + "x": 437.048, + "y": 275.76775 }, { - "x": 397.5400000000001, - "y": 236.25975476702598 + "x": 397.54, + "y": 236.25975 }, { "category": 1, @@ -15612,16 +15612,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 256.013754767026 + "x": 417.294, + "y": 256.01375 }, { "x": 0, "y": 0 }, { - "x": 417.2940000000001, - "y": 253.1064840519903 + "x": 417.294, + "y": 253.10648 }, { "endCol": 9, @@ -15645,7 +15645,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15713,148 +15713,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 259.14275476702596 + "x": 437.048, + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 265.0937547670259 + "x": 435.114, + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 270.1557547670259 + "x": 431.436, + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 273.8337547670258 + "x": 426.374, + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 275.76775476702585 + "x": 420.423, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 275.76775476702585 + "x": 414.165, + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 273.8337547670258 + "x": 408.214, + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 270.1557547670259 + "x": 403.152, + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 265.0937547670259 + "x": 399.474, + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 259.14275476702596 + "x": 397.54, + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 252.88475476702598 + "x": 397.54, + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 246.93375476702596 + "x": 399.474, + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 241.87175476702598 + "x": 403.152, + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 238.19375476702598 + "x": 408.214, + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 236.25975476702598 + "x": 414.165, + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 236.25975476702598 + "x": 420.423, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 238.19375476702598 + "x": 426.374, + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 241.87175476702598 + "x": 431.436, + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 246.93375476702596 + "x": 435.114, + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 252.88475476702598 + "x": 437.048, + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1753 }, @@ -15876,13 +15876,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15904,7 +15904,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15949,40 +15949,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15997,12 +15997,12 @@ } }, { - "x": 496.55600000000015, - "y": 275.76775476702585 + "x": 496.556, + "y": 275.76775 }, { - "x": 457.0480000000001, - "y": 236.25975476702598 + "x": 457.048, + "y": 236.25975 }, { "category": 1, @@ -16019,16 +16019,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 256.013754767026 + "x": 476.802, + "y": 256.01375 }, { "x": 0, "y": 0 }, { - "x": 476.80200000000013, - "y": 253.1064840519903 + "x": 476.802, + "y": 253.10648 }, { "endCol": 10, @@ -16052,7 +16052,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16120,148 +16120,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 259.14275476702596 + "x": 496.556, + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 265.0937547670259 + "x": 494.622, + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 270.1557547670259 + "x": 490.944, + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 273.8337547670258 + "x": 485.882, + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 275.76775476702585 + "x": 479.931, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 275.76775476702585 + "x": 473.673, + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 273.8337547670258 + "x": 467.722, + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 270.1557547670259 + "x": 462.66, + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 265.0937547670259 + "x": 458.982, + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 259.14275476702596 + "x": 457.048, + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 252.88475476702598 + "x": 457.048, + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 246.93375476702596 + "x": 458.982, + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 241.87175476702598 + "x": 462.66, + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 238.19375476702598 + "x": 467.722, + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 236.25975476702598 + "x": 473.673, + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 236.25975476702598 + "x": 479.931, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 238.19375476702598 + "x": 485.882, + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 241.87175476702598 + "x": 490.944, + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 246.93375476702596 + "x": 494.622, + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 252.88475476702598 + "x": 496.556, + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1799 }, @@ -16283,13 +16283,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16311,7 +16311,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16356,40 +16356,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16404,12 +16404,12 @@ } }, { - "x": 556.0640000000002, - "y": 275.76775476702585 + "x": 556.064, + "y": 275.76775 }, { - "x": 516.5560000000002, - "y": 236.25975476702598 + "x": 516.556, + "y": 236.25975 }, { "category": 1, @@ -16426,16 +16426,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 256.013754767026 + "x": 536.31, + "y": 256.01375 }, { "x": 0, "y": 0 }, { - "x": 536.3100000000002, - "y": 253.1064840519903 + "x": 536.31, + "y": 253.10648 }, { "endCol": 11, @@ -16459,7 +16459,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16527,148 +16527,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 259.14275476702596 + "x": 556.064, + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 265.0937547670259 + "x": 554.13, + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 270.1557547670259 + "x": 550.452, + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 273.8337547670258 + "x": 545.39, + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 275.76775476702585 + "x": 539.439, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 275.76775476702585 + "x": 533.181, + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 273.8337547670258 + "x": 527.23, + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 270.1557547670259 + "x": 522.168, + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 265.0937547670259 + "x": 518.49, + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 259.14275476702596 + "x": 516.556, + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 252.88475476702598 + "x": 516.556, + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 246.93375476702596 + "x": 518.49, + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 241.87175476702598 + "x": 522.168, + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 238.19375476702598 + "x": 527.23, + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 236.25975476702598 + "x": 533.181, + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 236.25975476702598 + "x": 539.439, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 238.19375476702598 + "x": 545.39, + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 241.87175476702598 + "x": 550.452, + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 246.93375476702596 + "x": 554.13, + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 252.88475476702598 + "x": 556.064, + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1845 }, @@ -16690,13 +16690,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16718,7 +16718,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16763,40 +16763,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16811,12 +16811,12 @@ } }, { - "x": 615.5720000000002, - "y": 275.76775476702585 + "x": 615.572, + "y": 275.76775 }, { - "x": 576.0640000000002, - "y": 236.25975476702598 + "x": 576.064, + "y": 236.25975 }, { "category": 1, @@ -16833,16 +16833,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 256.013754767026 + "x": 595.818, + "y": 256.01375 }, { "x": 0, "y": 0 }, { - "x": 595.8180000000002, - "y": 253.1064840519903 + "x": 595.818, + "y": 253.10648 }, { "endCol": 12, @@ -16866,7 +16866,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16934,148 +16934,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 259.14275476702596 + "x": 615.572, + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 265.0937547670259 + "x": 613.638, + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 270.1557547670259 + "x": 609.96, + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 273.8337547670258 + "x": 604.898, + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 275.76775476702585 + "x": 598.947, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 275.76775476702585 + "x": 592.689, + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 273.8337547670258 + "x": 586.738, + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 270.1557547670259 + "x": 581.676, + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 265.0937547670259 + "x": 577.998, + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 259.14275476702596 + "x": 576.064, + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 252.88475476702598 + "x": 576.064, + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 246.93375476702596 + "x": 577.998, + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 241.87175476702598 + "x": 581.676, + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 238.19375476702598 + "x": 586.738, + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 236.25975476702598 + "x": 592.689, + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 236.25975476702598 + "x": 598.947, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 238.19375476702598 + "x": 604.898, + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 241.87175476702598 + "x": 609.96, + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 246.93375476702596 + "x": 613.638, + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 252.88475476702598 + "x": 615.572, + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1891 }, @@ -17097,13 +17097,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17125,7 +17125,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17170,40 +17170,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17218,12 +17218,12 @@ } }, { - "x": 675.0800000000003, - "y": 275.76775476702585 + "x": 675.08, + "y": 275.76775 }, { - "x": 635.5720000000002, - "y": 236.25975476702598 + "x": 635.572, + "y": 236.25975 }, { "category": 1, @@ -17240,16 +17240,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 256.013754767026 + "x": 655.326, + "y": 256.01375 }, { "x": 0, "y": 0 }, { - "x": 655.3260000000002, - "y": 253.1064840519903 + "x": 655.326, + "y": 253.10648 }, { "endCol": 14, @@ -17273,7 +17273,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17341,148 +17341,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 259.14275476702596 + "x": 675.08, + "y": 259.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 265.0937547670259 + "x": 673.146, + "y": 265.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 270.1557547670259 + "x": 669.468, + "y": 270.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 273.8337547670258 + "x": 664.406, + "y": 273.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 275.76775476702585 + "x": 658.455, + "y": 275.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 275.76775476702585 + "x": 652.197, + "y": 275.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 273.8337547670258 + "x": 646.246, + "y": 273.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 270.1557547670259 + "x": 641.184, + "y": 270.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 265.0937547670259 + "x": 637.506, + "y": 265.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 259.14275476702596 + "x": 635.572, + "y": 259.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 252.88475476702598 + "x": 635.572, + "y": 252.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 246.93375476702596 + "x": 637.506, + "y": 246.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 241.87175476702598 + "x": 641.184, + "y": 241.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 238.19375476702598 + "x": 646.246, + "y": 238.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 236.25975476702598 + "x": 652.197, + "y": 236.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 236.25975476702598 + "x": 658.455, + "y": 236.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 238.19375476702598 + "x": 664.406, + "y": 238.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 241.87175476702598 + "x": 669.468, + "y": 241.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 246.93375476702596 + "x": 673.146, + "y": 246.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 252.88475476702598 + "x": 675.08, + "y": 252.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1937 }, @@ -17504,13 +17504,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17532,7 +17532,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17577,40 +17577,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17626,11 +17626,11 @@ }, { "x": 139.508, - "y": 318.2807313305775 + "y": 318.28073 }, { "x": 100, - "y": 275.86546061554196 + "y": 275.86546 }, { "category": 1, @@ -17648,15 +17648,15 @@ }, { "x": 119.754, - "y": 295.6194606155419 + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { "x": 119.754, - "y": 292.71218990050636 + "y": 292.71219 }, { "endCol": 2, @@ -17680,7 +17680,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -17749,147 +17749,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 298.74846061554194 + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 304.6994606155419 + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 309.7614606155419 + "x": 133.896, + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 313.4394606155419 + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 315.37346061554194 + "x": 122.883, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 315.37346061554194 + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 313.4394606155419 + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 309.7614606155419 + "x": 105.612, + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 304.6994606155419 + "x": 101.934, + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 298.74846061554194 + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 292.49046061554196 + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 286.53946061554194 + "x": 101.934, + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 281.47746061554193 + "x": 105.612, + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 277.79946061554193 + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 275.86546061554196 + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 275.86546061554196 + "x": 122.883, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 277.79946061554193 + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 281.47746061554193 + "x": 133.896, + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 286.53946061554194 + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 292.49046061554196 + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1983 }, @@ -17911,13 +17911,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17939,7 +17939,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17984,40 +17984,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18033,11 +18033,11 @@ }, { "x": 199.016, - "y": 318.2807313305775 + "y": 318.28073 }, { "x": 159.508, - "y": 275.86546061554196 + "y": 275.86546 }, { "category": 1, @@ -18055,15 +18055,15 @@ }, { "x": 179.262, - "y": 295.6194606155419 + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { "x": 179.262, - "y": 292.71218990050636 + "y": 292.71219 }, { "endCol": 4, @@ -18087,7 +18087,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -18156,147 +18156,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 298.74846061554194 + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 304.6994606155419 + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 309.7614606155419 + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 313.4394606155419 + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 315.37346061554194 + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 315.37346061554194 + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 313.4394606155419 + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 309.7614606155419 + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 304.6994606155419 + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 298.74846061554194 + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 292.49046061554196 + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 286.53946061554194 + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 281.47746061554193 + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 277.79946061554193 + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 275.86546061554196 + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 275.86546061554196 + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 277.79946061554193 + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 281.47746061554193 + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 286.53946061554194 + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 292.49046061554196 + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2029 }, @@ -18318,13 +18318,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18346,7 +18346,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18391,40 +18391,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18440,11 +18440,11 @@ }, { "x": 258.524, - "y": 318.2807313305775 + "y": 318.28073 }, { "x": 219.016, - "y": 275.86546061554196 + "y": 275.86546 }, { "category": 1, @@ -18461,16 +18461,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 295.6194606155419 + "x": 238.77, + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { - "x": 238.76999999999998, - "y": 292.71218990050636 + "x": 238.77, + "y": 292.71219 }, { "endCol": 5, @@ -18494,7 +18494,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -18563,147 +18563,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 298.74846061554194 + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 304.6994606155419 + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 309.7614606155419 + "x": 252.912, + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 313.4394606155419 + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 315.37346061554194 + "x": 241.899, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 315.37346061554194 + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 313.4394606155419 + "x": 229.69, + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 309.7614606155419 + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 304.6994606155419 + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 298.74846061554194 + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 292.49046061554196 + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 286.53946061554194 + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 281.47746061554193 + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 277.79946061554193 + "x": 229.69, + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 275.86546061554196 + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 275.86546061554196 + "x": 241.899, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 277.79946061554193 + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 281.47746061554193 + "x": 252.912, + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 286.53946061554194 + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 292.49046061554196 + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2075 }, @@ -18725,13 +18725,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18753,7 +18753,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18798,40 +18798,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18846,12 +18846,12 @@ } }, { - "x": 318.03200000000004, - "y": 318.2807313305775 + "x": 318.032, + "y": 318.28073 }, { "x": 278.524, - "y": 275.86546061554196 + "y": 275.86546 }, { "category": 1, @@ -18869,15 +18869,15 @@ }, { "x": 298.278, - "y": 295.6194606155419 + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { "x": 298.278, - "y": 292.71218990050636 + "y": 292.71219 }, { "endCol": 6, @@ -18901,7 +18901,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -18969,148 +18969,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 298.74846061554194 + "x": 318.032, + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 304.6994606155419 + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 309.7614606155419 + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 313.4394606155419 + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 315.37346061554194 + "x": 301.407, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 315.37346061554194 + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 313.4394606155419 + "x": 289.198, + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 309.7614606155419 + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 304.6994606155419 + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 298.74846061554194 + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 292.49046061554196 + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 286.53946061554194 + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 281.47746061554193 + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 277.79946061554193 + "x": 289.198, + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 275.86546061554196 + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 275.86546061554196 + "x": 301.407, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 277.79946061554193 + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 281.47746061554193 + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 286.53946061554194 + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 292.49046061554196 + "x": 318.032, + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2121 }, @@ -19132,13 +19132,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19160,7 +19160,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19205,40 +19205,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19253,12 +19253,12 @@ } }, { - "x": 377.5400000000001, - "y": 318.2807313305775 + "x": 377.54, + "y": 318.28073 }, { - "x": 338.03200000000004, - "y": 275.86546061554196 + "x": 338.032, + "y": 275.86546 }, { "category": 1, @@ -19275,16 +19275,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 295.6194606155419 + "x": 357.786, + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { - "x": 357.78600000000006, - "y": 292.71218990050636 + "x": 357.786, + "y": 292.71219 }, { "endCol": 7, @@ -19308,7 +19308,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -19376,148 +19376,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 298.74846061554194 + "x": 377.54, + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 304.6994606155419 + "x": 375.606, + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 309.7614606155419 + "x": 371.928, + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 313.4394606155419 + "x": 366.866, + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 315.37346061554194 + "x": 360.915, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 315.37346061554194 + "x": 354.657, + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 313.4394606155419 + "x": 348.706, + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 309.7614606155419 + "x": 343.644, + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 304.6994606155419 + "x": 339.966, + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 298.74846061554194 + "x": 338.032, + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 292.49046061554196 + "x": 338.032, + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 286.53946061554194 + "x": 339.966, + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 281.47746061554193 + "x": 343.644, + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 277.79946061554193 + "x": 348.706, + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 275.86546061554196 + "x": 354.657, + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 275.86546061554196 + "x": 360.915, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 277.79946061554193 + "x": 366.866, + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 281.47746061554193 + "x": 371.928, + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 286.53946061554194 + "x": 375.606, + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 292.49046061554196 + "x": 377.54, + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2167 }, @@ -19539,13 +19539,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19567,7 +19567,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19612,40 +19612,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19660,12 +19660,12 @@ } }, { - "x": 437.0480000000001, - "y": 318.2807313305775 + "x": 437.048, + "y": 318.28073 }, { - "x": 397.5400000000001, - "y": 275.86546061554196 + "x": 397.54, + "y": 275.86546 }, { "category": 1, @@ -19682,16 +19682,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 295.6194606155419 + "x": 417.294, + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { - "x": 417.2940000000001, - "y": 292.71218990050636 + "x": 417.294, + "y": 292.71219 }, { "endCol": 9, @@ -19715,7 +19715,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -19783,148 +19783,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 298.74846061554194 + "x": 437.048, + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 304.6994606155419 + "x": 435.114, + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 309.7614606155419 + "x": 431.436, + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 313.4394606155419 + "x": 426.374, + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 315.37346061554194 + "x": 420.423, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 315.37346061554194 + "x": 414.165, + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 313.4394606155419 + "x": 408.214, + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 309.7614606155419 + "x": 403.152, + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 304.6994606155419 + "x": 399.474, + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 298.74846061554194 + "x": 397.54, + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 292.49046061554196 + "x": 397.54, + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 286.53946061554194 + "x": 399.474, + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 281.47746061554193 + "x": 403.152, + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 277.79946061554193 + "x": 408.214, + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 275.86546061554196 + "x": 414.165, + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 275.86546061554196 + "x": 420.423, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 277.79946061554193 + "x": 426.374, + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 281.47746061554193 + "x": 431.436, + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 286.53946061554194 + "x": 435.114, + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 292.49046061554196 + "x": 437.048, + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2213 }, @@ -19946,13 +19946,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19974,7 +19974,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20019,40 +20019,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20067,12 +20067,12 @@ } }, { - "x": 496.55600000000015, - "y": 318.2807313305775 + "x": 496.556, + "y": 318.28073 }, { - "x": 457.0480000000001, - "y": 275.86546061554196 + "x": 457.048, + "y": 275.86546 }, { "category": 1, @@ -20089,16 +20089,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 295.6194606155419 + "x": 476.802, + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { - "x": 476.80200000000013, - "y": 292.71218990050636 + "x": 476.802, + "y": 292.71219 }, { "endCol": 10, @@ -20122,7 +20122,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -20190,148 +20190,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 298.74846061554194 + "x": 496.556, + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 304.6994606155419 + "x": 494.622, + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 309.7614606155419 + "x": 490.944, + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 313.4394606155419 + "x": 485.882, + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 315.37346061554194 + "x": 479.931, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 315.37346061554194 + "x": 473.673, + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 313.4394606155419 + "x": 467.722, + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 309.7614606155419 + "x": 462.66, + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 304.6994606155419 + "x": 458.982, + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 298.74846061554194 + "x": 457.048, + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 292.49046061554196 + "x": 457.048, + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 286.53946061554194 + "x": 458.982, + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 281.47746061554193 + "x": 462.66, + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 277.79946061554193 + "x": 467.722, + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 275.86546061554196 + "x": 473.673, + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 275.86546061554196 + "x": 479.931, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 277.79946061554193 + "x": 485.882, + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 281.47746061554193 + "x": 490.944, + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 286.53946061554194 + "x": 494.622, + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 292.49046061554196 + "x": 496.556, + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2259 }, @@ -20353,13 +20353,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20381,7 +20381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20426,40 +20426,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20474,12 +20474,12 @@ } }, { - "x": 556.0640000000002, - "y": 318.2807313305775 + "x": 556.064, + "y": 318.28073 }, { - "x": 516.5560000000002, - "y": 275.86546061554196 + "x": 516.556, + "y": 275.86546 }, { "category": 1, @@ -20496,16 +20496,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 295.6194606155419 + "x": 536.31, + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { - "x": 536.3100000000002, - "y": 292.71218990050636 + "x": 536.31, + "y": 292.71219 }, { "endCol": 11, @@ -20529,7 +20529,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -20597,148 +20597,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 298.74846061554194 + "x": 556.064, + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 304.6994606155419 + "x": 554.13, + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 309.7614606155419 + "x": 550.452, + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 313.4394606155419 + "x": 545.39, + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 315.37346061554194 + "x": 539.439, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 315.37346061554194 + "x": 533.181, + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 313.4394606155419 + "x": 527.23, + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 309.7614606155419 + "x": 522.168, + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 304.6994606155419 + "x": 518.49, + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 298.74846061554194 + "x": 516.556, + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 292.49046061554196 + "x": 516.556, + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 286.53946061554194 + "x": 518.49, + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 281.47746061554193 + "x": 522.168, + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 277.79946061554193 + "x": 527.23, + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 275.86546061554196 + "x": 533.181, + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 275.86546061554196 + "x": 539.439, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 277.79946061554193 + "x": 545.39, + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 281.47746061554193 + "x": 550.452, + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 286.53946061554194 + "x": 554.13, + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 292.49046061554196 + "x": 556.064, + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2305 }, @@ -20760,13 +20760,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20788,7 +20788,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20833,40 +20833,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20881,12 +20881,12 @@ } }, { - "x": 615.5720000000002, - "y": 318.2807313305775 + "x": 615.572, + "y": 318.28073 }, { - "x": 576.0640000000002, - "y": 275.86546061554196 + "x": 576.064, + "y": 275.86546 }, { "category": 1, @@ -20903,16 +20903,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 295.6194606155419 + "x": 595.818, + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { - "x": 595.8180000000002, - "y": 292.71218990050636 + "x": 595.818, + "y": 292.71219 }, { "endCol": 12, @@ -20936,7 +20936,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -21004,148 +21004,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 298.74846061554194 + "x": 615.572, + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 304.6994606155419 + "x": 613.638, + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 309.7614606155419 + "x": 609.96, + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 313.4394606155419 + "x": 604.898, + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 315.37346061554194 + "x": 598.947, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 315.37346061554194 + "x": 592.689, + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 313.4394606155419 + "x": 586.738, + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 309.7614606155419 + "x": 581.676, + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 304.6994606155419 + "x": 577.998, + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 298.74846061554194 + "x": 576.064, + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 292.49046061554196 + "x": 576.064, + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 286.53946061554194 + "x": 577.998, + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 281.47746061554193 + "x": 581.676, + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 277.79946061554193 + "x": 586.738, + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 275.86546061554196 + "x": 592.689, + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 275.86546061554196 + "x": 598.947, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 277.79946061554193 + "x": 604.898, + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 281.47746061554193 + "x": 609.96, + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 286.53946061554194 + "x": 613.638, + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 292.49046061554196 + "x": 615.572, + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2351 }, @@ -21167,13 +21167,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21195,7 +21195,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21240,40 +21240,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21288,12 +21288,12 @@ } }, { - "x": 675.0800000000003, - "y": 318.2807313305775 + "x": 675.08, + "y": 318.28073 }, { - "x": 635.5720000000002, - "y": 275.86546061554196 + "x": 635.572, + "y": 275.86546 }, { "category": 1, @@ -21310,16 +21310,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 295.6194606155419 + "x": 655.326, + "y": 295.61946 }, { "x": 0, - "y": 0.0028023203492214166 + "y": 0.0028 }, { - "x": 655.3260000000002, - "y": 292.71218990050636 + "x": 655.326, + "y": 292.71219 }, { "endCol": 14, @@ -21343,7 +21343,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -21411,148 +21411,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 298.74846061554194 + "x": 675.08, + "y": 298.74846 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 304.6994606155419 + "x": 673.146, + "y": 304.69946 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 309.7614606155419 + "x": 669.468, + "y": 309.76146 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 313.4394606155419 + "x": 664.406, + "y": 313.43946 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 315.37346061554194 + "x": 658.455, + "y": 315.37346 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 315.37346061554194 + "x": 652.197, + "y": 315.37346 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 313.4394606155419 + "x": 646.246, + "y": 313.43946 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 309.7614606155419 + "x": 641.184, + "y": 309.76146 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 304.6994606155419 + "x": 637.506, + "y": 304.69946 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 298.74846061554194 + "x": 635.572, + "y": 298.74846 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 292.49046061554196 + "x": 635.572, + "y": 292.49046 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 286.53946061554194 + "x": 637.506, + "y": 286.53946 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 281.47746061554193 + "x": 641.184, + "y": 281.47746 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 277.79946061554193 + "x": 646.246, + "y": 277.79946 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 275.86546061554196 + "x": 652.197, + "y": 275.86546 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 275.86546061554196 + "x": 658.455, + "y": 275.86546 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 277.79946061554193 + "x": 664.406, + "y": 277.79946 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 281.47746061554193 + "x": 669.468, + "y": 281.47746 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 286.53946061554194 + "x": 673.146, + "y": 286.53946 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 292.49046061554196 + "x": 675.08, + "y": 292.49046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2397 }, @@ -21574,13 +21574,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21602,7 +21602,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21647,40 +21647,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21696,11 +21696,11 @@ }, { "x": 139.508, - "y": 357.738731311331 + "y": 357.73873 }, { "x": 100, - "y": 315.3234605962954 + "y": 315.32346 }, { "category": 1, @@ -21718,15 +21718,15 @@ }, { "x": 119.754, - "y": 335.0774605962954 + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { "x": 119.754, - "y": 332.17018988125983 + "y": 332.17019 }, { "endCol": 2, @@ -21750,7 +21750,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -21819,147 +21819,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 338.2064605962954 + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 344.1574605962954 + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 349.2194605962954 + "x": 133.896, + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 352.8974605962954 + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 354.8314605962954 + "x": 122.883, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 354.8314605962954 + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 352.8974605962954 + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 349.2194605962954 + "x": 105.612, + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 344.1574605962954 + "x": 101.934, + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 338.2064605962954 + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 331.9484605962954 + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 325.9974605962954 + "x": 101.934, + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 320.9354605962954 + "x": 105.612, + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 317.2574605962954 + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 315.3234605962954 + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 315.3234605962954 + "x": 122.883, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 317.2574605962954 + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 320.9354605962954 + "x": 133.896, + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 325.9974605962954 + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 331.9484605962954 + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2443 }, @@ -21981,13 +21981,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -22009,7 +22009,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22054,40 +22054,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -22103,11 +22103,11 @@ }, { "x": 199.016, - "y": 357.738731311331 + "y": 357.73873 }, { "x": 159.508, - "y": 315.3234605962954 + "y": 315.32346 }, { "category": 1, @@ -22125,15 +22125,15 @@ }, { "x": 179.262, - "y": 335.0774605962954 + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { "x": 179.262, - "y": 332.17018988125983 + "y": 332.17019 }, { "endCol": 4, @@ -22157,7 +22157,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -22226,147 +22226,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 338.2064605962954 + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 344.1574605962954 + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 349.2194605962954 + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 352.8974605962954 + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 354.8314605962954 + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 354.8314605962954 + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 352.8974605962954 + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 349.2194605962954 + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 344.1574605962954 + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 338.2064605962954 + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 331.9484605962954 + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 325.9974605962954 + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 320.9354605962954 + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 317.2574605962954 + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 315.3234605962954 + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 315.3234605962954 + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 317.2574605962954 + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 320.9354605962954 + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 325.9974605962954 + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 331.9484605962954 + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2489 }, @@ -22388,13 +22388,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -22416,7 +22416,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22461,40 +22461,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -22510,11 +22510,11 @@ }, { "x": 258.524, - "y": 357.738731311331 + "y": 357.73873 }, { "x": 219.016, - "y": 315.3234605962954 + "y": 315.32346 }, { "category": 1, @@ -22531,16 +22531,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 335.0774605962954 + "x": 238.77, + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { - "x": 238.76999999999998, - "y": 332.17018988125983 + "x": 238.77, + "y": 332.17019 }, { "endCol": 5, @@ -22564,7 +22564,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -22633,147 +22633,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 338.2064605962954 + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 344.1574605962954 + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 349.2194605962954 + "x": 252.912, + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 352.8974605962954 + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 354.8314605962954 + "x": 241.899, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 354.8314605962954 + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 352.8974605962954 + "x": 229.69, + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 349.2194605962954 + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 344.1574605962954 + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 338.2064605962954 + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 331.9484605962954 + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 325.9974605962954 + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 320.9354605962954 + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 317.2574605962954 + "x": 229.69, + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 315.3234605962954 + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 315.3234605962954 + "x": 241.899, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 317.2574605962954 + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 320.9354605962954 + "x": 252.912, + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 325.9974605962954 + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 331.9484605962954 + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2535 }, @@ -22795,13 +22795,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -22823,7 +22823,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22868,40 +22868,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -22916,12 +22916,12 @@ } }, { - "x": 318.03200000000004, - "y": 357.738731311331 + "x": 318.032, + "y": 357.73873 }, { "x": 278.524, - "y": 315.3234605962954 + "y": 315.32346 }, { "category": 1, @@ -22939,15 +22939,15 @@ }, { "x": 298.278, - "y": 335.0774605962954 + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { "x": 298.278, - "y": 332.17018988125983 + "y": 332.17019 }, { "endCol": 6, @@ -22971,7 +22971,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -23039,148 +23039,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 338.2064605962954 + "x": 318.032, + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 344.1574605962954 + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 349.2194605962954 + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 352.8974605962954 + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 354.8314605962954 + "x": 301.407, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 354.8314605962954 + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 352.8974605962954 + "x": 289.198, + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 349.2194605962954 + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 344.1574605962954 + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 338.2064605962954 + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 331.9484605962954 + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 325.9974605962954 + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 320.9354605962954 + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 317.2574605962954 + "x": 289.198, + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 315.3234605962954 + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 315.3234605962954 + "x": 301.407, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 317.2574605962954 + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 320.9354605962954 + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 325.9974605962954 + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 331.9484605962954 + "x": 318.032, + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2581 }, @@ -23202,13 +23202,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -23230,7 +23230,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23275,40 +23275,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -23323,12 +23323,12 @@ } }, { - "x": 377.5400000000001, - "y": 357.738731311331 + "x": 377.54, + "y": 357.73873 }, { - "x": 338.03200000000004, - "y": 315.3234605962954 + "x": 338.032, + "y": 315.32346 }, { "category": 1, @@ -23345,16 +23345,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 335.0774605962954 + "x": 357.786, + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { - "x": 357.78600000000006, - "y": 332.17018988125983 + "x": 357.786, + "y": 332.17019 }, { "endCol": 7, @@ -23378,7 +23378,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -23446,148 +23446,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 338.2064605962954 + "x": 377.54, + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 344.1574605962954 + "x": 375.606, + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 349.2194605962954 + "x": 371.928, + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 352.8974605962954 + "x": 366.866, + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 354.8314605962954 + "x": 360.915, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 354.8314605962954 + "x": 354.657, + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 352.8974605962954 + "x": 348.706, + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 349.2194605962954 + "x": 343.644, + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 344.1574605962954 + "x": 339.966, + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 338.2064605962954 + "x": 338.032, + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 331.9484605962954 + "x": 338.032, + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 325.9974605962954 + "x": 339.966, + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 320.9354605962954 + "x": 343.644, + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 317.2574605962954 + "x": 348.706, + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 315.3234605962954 + "x": 354.657, + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 315.3234605962954 + "x": 360.915, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 317.2574605962954 + "x": 366.866, + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 320.9354605962954 + "x": 371.928, + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 325.9974605962954 + "x": 375.606, + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 331.9484605962954 + "x": 377.54, + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2627 }, @@ -23609,13 +23609,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -23637,7 +23637,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23682,40 +23682,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -23730,12 +23730,12 @@ } }, { - "x": 437.0480000000001, - "y": 357.738731311331 + "x": 437.048, + "y": 357.73873 }, { - "x": 397.5400000000001, - "y": 315.3234605962954 + "x": 397.54, + "y": 315.32346 }, { "category": 1, @@ -23752,16 +23752,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 335.0774605962954 + "x": 417.294, + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { - "x": 417.2940000000001, - "y": 332.17018988125983 + "x": 417.294, + "y": 332.17019 }, { "endCol": 9, @@ -23785,7 +23785,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -23853,148 +23853,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 338.2064605962954 + "x": 437.048, + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 344.1574605962954 + "x": 435.114, + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 349.2194605962954 + "x": 431.436, + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 352.8974605962954 + "x": 426.374, + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 354.8314605962954 + "x": 420.423, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 354.8314605962954 + "x": 414.165, + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 352.8974605962954 + "x": 408.214, + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 349.2194605962954 + "x": 403.152, + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 344.1574605962954 + "x": 399.474, + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 338.2064605962954 + "x": 397.54, + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 331.9484605962954 + "x": 397.54, + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 325.9974605962954 + "x": 399.474, + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 320.9354605962954 + "x": 403.152, + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 317.2574605962954 + "x": 408.214, + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 315.3234605962954 + "x": 414.165, + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 315.3234605962954 + "x": 420.423, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 317.2574605962954 + "x": 426.374, + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 320.9354605962954 + "x": 431.436, + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 325.9974605962954 + "x": 435.114, + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 331.9484605962954 + "x": 437.048, + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2673 }, @@ -24016,13 +24016,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -24044,7 +24044,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24089,40 +24089,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -24137,12 +24137,12 @@ } }, { - "x": 496.55600000000015, - "y": 357.738731311331 + "x": 496.556, + "y": 357.73873 }, { - "x": 457.0480000000001, - "y": 315.3234605962954 + "x": 457.048, + "y": 315.32346 }, { "category": 1, @@ -24159,16 +24159,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 335.0774605962954 + "x": 476.802, + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { - "x": 476.80200000000013, - "y": 332.17018988125983 + "x": 476.802, + "y": 332.17019 }, { "endCol": 10, @@ -24192,7 +24192,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -24260,148 +24260,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 338.2064605962954 + "x": 496.556, + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 344.1574605962954 + "x": 494.622, + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 349.2194605962954 + "x": 490.944, + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 352.8974605962954 + "x": 485.882, + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 354.8314605962954 + "x": 479.931, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 354.8314605962954 + "x": 473.673, + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 352.8974605962954 + "x": 467.722, + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 349.2194605962954 + "x": 462.66, + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 344.1574605962954 + "x": 458.982, + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 338.2064605962954 + "x": 457.048, + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 331.9484605962954 + "x": 457.048, + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 325.9974605962954 + "x": 458.982, + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 320.9354605962954 + "x": 462.66, + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 317.2574605962954 + "x": 467.722, + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 315.3234605962954 + "x": 473.673, + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 315.3234605962954 + "x": 479.931, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 317.2574605962954 + "x": 485.882, + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 320.9354605962954 + "x": 490.944, + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 325.9974605962954 + "x": 494.622, + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 331.9484605962954 + "x": 496.556, + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2719 }, @@ -24423,13 +24423,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -24451,7 +24451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24496,40 +24496,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -24544,12 +24544,12 @@ } }, { - "x": 556.0640000000002, - "y": 357.738731311331 + "x": 556.064, + "y": 357.73873 }, { - "x": 516.5560000000002, - "y": 315.3234605962954 + "x": 516.556, + "y": 315.32346 }, { "category": 1, @@ -24566,16 +24566,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 335.0774605962954 + "x": 536.31, + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { - "x": 536.3100000000002, - "y": 332.17018988125983 + "x": 536.31, + "y": 332.17019 }, { "endCol": 11, @@ -24599,7 +24599,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -24667,148 +24667,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 338.2064605962954 + "x": 556.064, + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 344.1574605962954 + "x": 554.13, + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 349.2194605962954 + "x": 550.452, + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 352.8974605962954 + "x": 545.39, + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 354.8314605962954 + "x": 539.439, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 354.8314605962954 + "x": 533.181, + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 352.8974605962954 + "x": 527.23, + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 349.2194605962954 + "x": 522.168, + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 344.1574605962954 + "x": 518.49, + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 338.2064605962954 + "x": 516.556, + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 331.9484605962954 + "x": 516.556, + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 325.9974605962954 + "x": 518.49, + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 320.9354605962954 + "x": 522.168, + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 317.2574605962954 + "x": 527.23, + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 315.3234605962954 + "x": 533.181, + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 315.3234605962954 + "x": 539.439, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 317.2574605962954 + "x": 545.39, + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 320.9354605962954 + "x": 550.452, + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 325.9974605962954 + "x": 554.13, + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 331.9484605962954 + "x": 556.064, + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2765 }, @@ -24830,13 +24830,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -24858,7 +24858,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24903,40 +24903,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -24951,12 +24951,12 @@ } }, { - "x": 615.5720000000002, - "y": 357.738731311331 + "x": 615.572, + "y": 357.73873 }, { - "x": 576.0640000000002, - "y": 315.3234605962954 + "x": 576.064, + "y": 315.32346 }, { "category": 1, @@ -24973,16 +24973,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 335.0774605962954 + "x": 595.818, + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { - "x": 595.8180000000002, - "y": 332.17018988125983 + "x": 595.818, + "y": 332.17019 }, { "endCol": 12, @@ -25006,7 +25006,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -25074,148 +25074,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 338.2064605962954 + "x": 615.572, + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 344.1574605962954 + "x": 613.638, + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 349.2194605962954 + "x": 609.96, + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 352.8974605962954 + "x": 604.898, + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 354.8314605962954 + "x": 598.947, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 354.8314605962954 + "x": 592.689, + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 352.8974605962954 + "x": 586.738, + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 349.2194605962954 + "x": 581.676, + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 344.1574605962954 + "x": 577.998, + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 338.2064605962954 + "x": 576.064, + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 331.9484605962954 + "x": 576.064, + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 325.9974605962954 + "x": 577.998, + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 320.9354605962954 + "x": 581.676, + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 317.2574605962954 + "x": 586.738, + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 315.3234605962954 + "x": 592.689, + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 315.3234605962954 + "x": 598.947, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 317.2574605962954 + "x": 604.898, + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 320.9354605962954 + "x": 609.96, + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 325.9974605962954 + "x": 613.638, + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 331.9484605962954 + "x": 615.572, + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2811 }, @@ -25237,13 +25237,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -25265,7 +25265,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25310,40 +25310,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -25358,12 +25358,12 @@ } }, { - "x": 675.0800000000003, - "y": 357.738731311331 + "x": 675.08, + "y": 357.73873 }, { - "x": 635.5720000000002, - "y": 315.3234605962954 + "x": 635.572, + "y": 315.32346 }, { "category": 1, @@ -25380,16 +25380,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 335.0774605962954 + "x": 655.326, + "y": 335.07746 }, { "x": 0, - "y": 0.0028018759628919794 + "y": 0.0028 }, { - "x": 655.3260000000002, - "y": 332.17018988125983 + "x": 655.326, + "y": 332.17019 }, { "endCol": 14, @@ -25413,7 +25413,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -25481,148 +25481,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 338.2064605962954 + "x": 675.08, + "y": 338.20646 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 344.1574605962954 + "x": 673.146, + "y": 344.15746 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 349.2194605962954 + "x": 669.468, + "y": 349.21946 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 352.8974605962954 + "x": 664.406, + "y": 352.89746 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 354.8314605962954 + "x": 658.455, + "y": 354.83146 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 354.8314605962954 + "x": 652.197, + "y": 354.83146 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 352.8974605962954 + "x": 646.246, + "y": 352.89746 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 349.2194605962954 + "x": 641.184, + "y": 349.21946 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 344.1574605962954 + "x": 637.506, + "y": 344.15746 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 338.2064605962954 + "x": 635.572, + "y": 338.20646 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 331.9484605962954 + "x": 635.572, + "y": 331.94846 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 325.9974605962954 + "x": 637.506, + "y": 325.99746 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 320.9354605962954 + "x": 641.184, + "y": 320.93546 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 317.2574605962954 + "x": 646.246, + "y": 317.25746 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 315.3234605962954 + "x": 652.197, + "y": 315.32346 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 315.3234605962954 + "x": 658.455, + "y": 315.32346 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 317.2574605962954 + "x": 664.406, + "y": 317.25746 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 320.9354605962954 + "x": 669.468, + "y": 320.93546 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 325.9974605962954 + "x": 673.146, + "y": 325.99746 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 331.9484605962954 + "x": 675.08, + "y": 331.94846 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2857 }, @@ -25644,13 +25644,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -25672,7 +25672,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25717,40 +25717,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -25766,11 +25766,11 @@ }, { "x": 139.508, - "y": 397.1967312920844 + "y": 397.19673 }, { "x": 100, - "y": 354.7814605770488 + "y": 354.78146 }, { "category": 1, @@ -25788,15 +25788,15 @@ }, { "x": 119.754, - "y": 374.5354605770488 + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { "x": 119.754, - "y": 371.62818986201324 + "y": 371.62819 }, { "endCol": 2, @@ -25820,7 +25820,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -25889,147 +25889,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 377.6644605770488 + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 383.6154605770488 + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 388.6774605770488 + "x": 133.896, + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 392.3554605770488 + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 394.2894605770488 + "x": 122.883, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 394.2894605770488 + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 392.3554605770488 + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 388.6774605770488 + "x": 105.612, + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 383.6154605770488 + "x": 101.934, + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 377.6644605770488 + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 371.4064605770488 + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 365.4554605770488 + "x": 101.934, + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 360.3934605770488 + "x": 105.612, + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 356.7154605770488 + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 354.7814605770488 + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 354.7814605770488 + "x": 122.883, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 356.7154605770488 + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 360.3934605770488 + "x": 133.896, + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 365.4554605770488 + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 371.4064605770488 + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2903 }, @@ -26051,13 +26051,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -26079,7 +26079,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26124,40 +26124,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -26173,11 +26173,11 @@ }, { "x": 199.016, - "y": 397.1967312920844 + "y": 397.19673 }, { "x": 159.508, - "y": 354.7814605770488 + "y": 354.78146 }, { "category": 1, @@ -26195,15 +26195,15 @@ }, { "x": 179.262, - "y": 374.5354605770488 + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { "x": 179.262, - "y": 371.62818986201324 + "y": 371.62819 }, { "endCol": 4, @@ -26227,7 +26227,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -26296,147 +26296,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 377.6644605770488 + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 383.6154605770488 + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 388.6774605770488 + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 392.3554605770488 + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 394.2894605770488 + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 394.2894605770488 + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 392.3554605770488 + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 388.6774605770488 + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 383.6154605770488 + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 377.6644605770488 + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 371.4064605770488 + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 365.4554605770488 + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 360.3934605770488 + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 356.7154605770488 + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 354.7814605770488 + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 354.7814605770488 + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 356.7154605770488 + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 360.3934605770488 + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 365.4554605770488 + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 371.4064605770488 + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2949 }, @@ -26458,13 +26458,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -26486,7 +26486,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26531,40 +26531,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -26580,11 +26580,11 @@ }, { "x": 258.524, - "y": 397.1967312920844 + "y": 397.19673 }, { "x": 219.016, - "y": 354.7814605770488 + "y": 354.78146 }, { "category": 1, @@ -26601,16 +26601,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 374.5354605770488 + "x": 238.77, + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { - "x": 238.76999999999998, - "y": 371.62818986201324 + "x": 238.77, + "y": 371.62819 }, { "endCol": 5, @@ -26634,7 +26634,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -26703,147 +26703,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 377.6644605770488 + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 383.6154605770488 + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 388.6774605770488 + "x": 252.912, + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 392.3554605770488 + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 394.2894605770488 + "x": 241.899, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 394.2894605770488 + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 392.3554605770488 + "x": 229.69, + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 388.6774605770488 + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 383.6154605770488 + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 377.6644605770488 + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 371.4064605770488 + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 365.4554605770488 + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 360.3934605770488 + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 356.7154605770488 + "x": 229.69, + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 354.7814605770488 + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 354.7814605770488 + "x": 241.899, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 356.7154605770488 + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 360.3934605770488 + "x": 252.912, + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 365.4554605770488 + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 371.4064605770488 + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2995 }, @@ -26865,13 +26865,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -26893,7 +26893,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26938,40 +26938,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -26986,12 +26986,12 @@ } }, { - "x": 318.03200000000004, - "y": 397.1967312920844 + "x": 318.032, + "y": 397.19673 }, { "x": 278.524, - "y": 354.7814605770488 + "y": 354.78146 }, { "category": 1, @@ -27009,15 +27009,15 @@ }, { "x": 298.278, - "y": 374.5354605770488 + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { "x": 298.278, - "y": 371.62818986201324 + "y": 371.62819 }, { "endCol": 6, @@ -27041,7 +27041,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -27109,148 +27109,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 377.6644605770488 + "x": 318.032, + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 383.6154605770488 + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 388.6774605770488 + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 392.3554605770488 + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 394.2894605770488 + "x": 301.407, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 394.2894605770488 + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 392.3554605770488 + "x": 289.198, + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 388.6774605770488 + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 383.6154605770488 + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 377.6644605770488 + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 371.4064605770488 + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 365.4554605770488 + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 360.3934605770488 + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 356.7154605770488 + "x": 289.198, + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 354.7814605770488 + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 354.7814605770488 + "x": 301.407, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 356.7154605770488 + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 360.3934605770488 + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 365.4554605770488 + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 371.4064605770488 + "x": 318.032, + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3041 }, @@ -27272,13 +27272,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -27300,7 +27300,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27345,40 +27345,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -27393,12 +27393,12 @@ } }, { - "x": 377.5400000000001, - "y": 397.1967312920844 + "x": 377.54, + "y": 397.19673 }, { - "x": 338.03200000000004, - "y": 354.7814605770488 + "x": 338.032, + "y": 354.78146 }, { "category": 1, @@ -27415,16 +27415,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 374.5354605770488 + "x": 357.786, + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { - "x": 357.78600000000006, - "y": 371.62818986201324 + "x": 357.786, + "y": 371.62819 }, { "endCol": 7, @@ -27448,7 +27448,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -27516,148 +27516,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 377.6644605770488 + "x": 377.54, + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 383.6154605770488 + "x": 375.606, + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 388.6774605770488 + "x": 371.928, + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 392.3554605770488 + "x": 366.866, + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 394.2894605770488 + "x": 360.915, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 394.2894605770488 + "x": 354.657, + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 392.3554605770488 + "x": 348.706, + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 388.6774605770488 + "x": 343.644, + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 383.6154605770488 + "x": 339.966, + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 377.6644605770488 + "x": 338.032, + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 371.4064605770488 + "x": 338.032, + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 365.4554605770488 + "x": 339.966, + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 360.3934605770488 + "x": 343.644, + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 356.7154605770488 + "x": 348.706, + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 354.7814605770488 + "x": 354.657, + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 354.7814605770488 + "x": 360.915, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 356.7154605770488 + "x": 366.866, + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 360.3934605770488 + "x": 371.928, + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 365.4554605770488 + "x": 375.606, + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 371.4064605770488 + "x": 377.54, + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3087 }, @@ -27679,13 +27679,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -27707,7 +27707,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27752,40 +27752,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -27800,12 +27800,12 @@ } }, { - "x": 437.0480000000001, - "y": 397.1967312920844 + "x": 437.048, + "y": 397.19673 }, { - "x": 397.5400000000001, - "y": 354.7814605770488 + "x": 397.54, + "y": 354.78146 }, { "category": 1, @@ -27822,16 +27822,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 374.5354605770488 + "x": 417.294, + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { - "x": 417.2940000000001, - "y": 371.62818986201324 + "x": 417.294, + "y": 371.62819 }, { "endCol": 9, @@ -27855,7 +27855,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -27923,148 +27923,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 377.6644605770488 + "x": 437.048, + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 383.6154605770488 + "x": 435.114, + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 388.6774605770488 + "x": 431.436, + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 392.3554605770488 + "x": 426.374, + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 394.2894605770488 + "x": 420.423, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 394.2894605770488 + "x": 414.165, + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 392.3554605770488 + "x": 408.214, + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 388.6774605770488 + "x": 403.152, + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 383.6154605770488 + "x": 399.474, + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 377.6644605770488 + "x": 397.54, + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 371.4064605770488 + "x": 397.54, + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 365.4554605770488 + "x": 399.474, + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 360.3934605770488 + "x": 403.152, + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 356.7154605770488 + "x": 408.214, + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 354.7814605770488 + "x": 414.165, + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 354.7814605770488 + "x": 420.423, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 356.7154605770488 + "x": 426.374, + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 360.3934605770488 + "x": 431.436, + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 365.4554605770488 + "x": 435.114, + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 371.4064605770488 + "x": 437.048, + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3133 }, @@ -28086,13 +28086,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -28114,7 +28114,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28159,40 +28159,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -28207,12 +28207,12 @@ } }, { - "x": 496.55600000000015, - "y": 397.1967312920844 + "x": 496.556, + "y": 397.19673 }, { - "x": 457.0480000000001, - "y": 354.7814605770488 + "x": 457.048, + "y": 354.78146 }, { "category": 1, @@ -28229,16 +28229,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 374.5354605770488 + "x": 476.802, + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { - "x": 476.80200000000013, - "y": 371.62818986201324 + "x": 476.802, + "y": 371.62819 }, { "endCol": 10, @@ -28262,7 +28262,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -28330,148 +28330,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 377.6644605770488 + "x": 496.556, + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 383.6154605770488 + "x": 494.622, + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 388.6774605770488 + "x": 490.944, + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 392.3554605770488 + "x": 485.882, + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 394.2894605770488 + "x": 479.931, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 394.2894605770488 + "x": 473.673, + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 392.3554605770488 + "x": 467.722, + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 388.6774605770488 + "x": 462.66, + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 383.6154605770488 + "x": 458.982, + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 377.6644605770488 + "x": 457.048, + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 371.4064605770488 + "x": 457.048, + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 365.4554605770488 + "x": 458.982, + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 360.3934605770488 + "x": 462.66, + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 356.7154605770488 + "x": 467.722, + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 354.7814605770488 + "x": 473.673, + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 354.7814605770488 + "x": 479.931, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 356.7154605770488 + "x": 485.882, + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 360.3934605770488 + "x": 490.944, + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 365.4554605770488 + "x": 494.622, + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 371.4064605770488 + "x": 496.556, + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3179 }, @@ -28493,13 +28493,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -28521,7 +28521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28566,40 +28566,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -28614,12 +28614,12 @@ } }, { - "x": 556.0640000000002, - "y": 397.1967312920844 + "x": 556.064, + "y": 397.19673 }, { - "x": 516.5560000000002, - "y": 354.7814605770488 + "x": 516.556, + "y": 354.78146 }, { "category": 1, @@ -28636,16 +28636,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 374.5354605770488 + "x": 536.31, + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { - "x": 536.3100000000002, - "y": 371.62818986201324 + "x": 536.31, + "y": 371.62819 }, { "endCol": 11, @@ -28669,7 +28669,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -28737,148 +28737,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 377.6644605770488 + "x": 556.064, + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 383.6154605770488 + "x": 554.13, + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 388.6774605770488 + "x": 550.452, + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 392.3554605770488 + "x": 545.39, + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 394.2894605770488 + "x": 539.439, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 394.2894605770488 + "x": 533.181, + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 392.3554605770488 + "x": 527.23, + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 388.6774605770488 + "x": 522.168, + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 383.6154605770488 + "x": 518.49, + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 377.6644605770488 + "x": 516.556, + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 371.4064605770488 + "x": 516.556, + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 365.4554605770488 + "x": 518.49, + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 360.3934605770488 + "x": 522.168, + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 356.7154605770488 + "x": 527.23, + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 354.7814605770488 + "x": 533.181, + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 354.7814605770488 + "x": 539.439, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 356.7154605770488 + "x": 545.39, + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 360.3934605770488 + "x": 550.452, + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 365.4554605770488 + "x": 554.13, + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 371.4064605770488 + "x": 556.064, + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3225 }, @@ -28900,13 +28900,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -28928,7 +28928,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28973,40 +28973,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -29021,12 +29021,12 @@ } }, { - "x": 615.5720000000002, - "y": 397.1967312920844 + "x": 615.572, + "y": 397.19673 }, { - "x": 576.0640000000002, - "y": 354.7814605770488 + "x": 576.064, + "y": 354.78146 }, { "category": 1, @@ -29043,16 +29043,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 374.5354605770488 + "x": 595.818, + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { - "x": 595.8180000000002, - "y": 371.62818986201324 + "x": 595.818, + "y": 371.62819 }, { "endCol": 12, @@ -29076,7 +29076,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -29144,148 +29144,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 377.6644605770488 + "x": 615.572, + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 383.6154605770488 + "x": 613.638, + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 388.6774605770488 + "x": 609.96, + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 392.3554605770488 + "x": 604.898, + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 394.2894605770488 + "x": 598.947, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 394.2894605770488 + "x": 592.689, + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 392.3554605770488 + "x": 586.738, + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 388.6774605770488 + "x": 581.676, + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 383.6154605770488 + "x": 577.998, + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 377.6644605770488 + "x": 576.064, + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 371.4064605770488 + "x": 576.064, + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 365.4554605770488 + "x": 577.998, + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 360.3934605770488 + "x": 581.676, + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 356.7154605770488 + "x": 586.738, + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 354.7814605770488 + "x": 592.689, + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 354.7814605770488 + "x": 598.947, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 356.7154605770488 + "x": 604.898, + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 360.3934605770488 + "x": 609.96, + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 365.4554605770488 + "x": 613.638, + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 371.4064605770488 + "x": 615.572, + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3271 }, @@ -29307,13 +29307,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -29335,7 +29335,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29380,40 +29380,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -29428,12 +29428,12 @@ } }, { - "x": 675.0800000000003, - "y": 397.1967312920844 + "x": 675.08, + "y": 397.19673 }, { - "x": 635.5720000000002, - "y": 354.7814605770488 + "x": 635.572, + "y": 354.78146 }, { "category": 1, @@ -29450,16 +29450,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 374.5354605770488 + "x": 655.326, + "y": 374.53546 }, { "x": 0, - "y": 0.002801431576518534 + "y": 0.0028 }, { - "x": 655.3260000000002, - "y": 371.62818986201324 + "x": 655.326, + "y": 371.62819 }, { "endCol": 14, @@ -29483,7 +29483,7 @@ }, { "x": 0, - "y": 2.9072707150355654 + "y": 2.90727 }, [ { @@ -29551,148 +29551,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 377.6644605770488 + "x": 675.08, + "y": 377.66446 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 383.6154605770488 + "x": 673.146, + "y": 383.61546 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 388.6774605770488 + "x": 669.468, + "y": 388.67746 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 392.3554605770488 + "x": 664.406, + "y": 392.35546 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 394.2894605770488 + "x": 658.455, + "y": 394.28946 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 394.2894605770488 + "x": 652.197, + "y": 394.28946 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 392.3554605770488 + "x": 646.246, + "y": 392.35546 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 388.6774605770488 + "x": 641.184, + "y": 388.67746 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 383.6154605770488 + "x": 637.506, + "y": 383.61546 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 377.6644605770488 + "x": 635.572, + "y": 377.66446 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 371.4064605770488 + "x": 635.572, + "y": 371.40646 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 365.4554605770488 + "x": 637.506, + "y": 365.45546 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 360.3934605770488 + "x": 641.184, + "y": 360.39346 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 356.7154605770488 + "x": 646.246, + "y": 356.71546 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 354.7814605770488 + "x": 652.197, + "y": 354.78146 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 354.7814605770488 + "x": 658.455, + "y": 354.78146 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 356.7154605770488 + "x": 664.406, + "y": 356.71546 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 360.3934605770488 + "x": 669.468, + "y": 360.39346 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 365.4554605770488 + "x": 673.146, + "y": 365.45546 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 371.4064605770488 + "x": 675.08, + "y": 371.40646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3317 }, @@ -29714,13 +29714,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -29742,7 +29742,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29787,40 +29787,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -29836,11 +29836,11 @@ }, { "x": 139.508, - "y": 433.79975476702504 + "y": 433.79975 }, { "x": 100, - "y": 394.291754767025 + "y": 394.29175 }, { "category": 1, @@ -29858,7 +29858,7 @@ }, { "x": 119.754, - "y": 414.045754767025 + "y": 414.04575 }, { "x": 0, @@ -29866,7 +29866,7 @@ }, { "x": 119.754, - "y": 411.13848405198945 + "y": 411.13848 }, { "endCol": 2, @@ -29890,7 +29890,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -29959,147 +29959,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 417.17475476702504 + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 423.125754767025 + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 428.187754767025 + "x": 133.896, + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 431.865754767025 + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 433.79975476702504 + "x": 122.883, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 431.865754767025 + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 428.187754767025 + "x": 105.612, + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 423.125754767025 + "x": 101.934, + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 417.17475476702504 + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 410.916754767025 + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 404.96575476702503 + "x": 101.934, + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 399.903754767025 + "x": 105.612, + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 396.225754767025 + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 394.291754767025 + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 394.291754767025 + "x": 122.883, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 396.225754767025 + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 399.903754767025 + "x": 133.896, + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 404.96575476702503 + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 410.916754767025 + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3363 }, @@ -30121,13 +30121,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -30149,7 +30149,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30194,40 +30194,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -30243,11 +30243,11 @@ }, { "x": 199.016, - "y": 433.79975476702504 + "y": 433.79975 }, { "x": 159.508, - "y": 394.291754767025 + "y": 394.29175 }, { "category": 1, @@ -30265,7 +30265,7 @@ }, { "x": 179.262, - "y": 414.045754767025 + "y": 414.04575 }, { "x": 0, @@ -30273,7 +30273,7 @@ }, { "x": 179.262, - "y": 411.13848405198945 + "y": 411.13848 }, { "endCol": 4, @@ -30297,7 +30297,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -30366,147 +30366,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 417.17475476702504 + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 423.125754767025 + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 428.187754767025 + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 431.865754767025 + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 431.865754767025 + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 428.187754767025 + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 423.125754767025 + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 417.17475476702504 + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 410.916754767025 + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 404.96575476702503 + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 399.903754767025 + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 396.225754767025 + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 394.291754767025 + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 394.291754767025 + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 396.225754767025 + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 399.903754767025 + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 404.96575476702503 + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 410.916754767025 + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3409 }, @@ -30528,13 +30528,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -30556,7 +30556,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30601,40 +30601,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -30650,11 +30650,11 @@ }, { "x": 258.524, - "y": 433.79975476702504 + "y": 433.79975 }, { "x": 219.016, - "y": 394.291754767025 + "y": 394.29175 }, { "category": 1, @@ -30671,16 +30671,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 414.045754767025 + "x": 238.77, + "y": 414.04575 }, { "x": 0, "y": 0 }, { - "x": 238.76999999999998, - "y": 411.13848405198945 + "x": 238.77, + "y": 411.13848 }, { "endCol": 5, @@ -30704,7 +30704,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -30773,147 +30773,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 417.17475476702504 + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 423.125754767025 + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 428.187754767025 + "x": 252.912, + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 431.865754767025 + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 433.79975476702504 + "x": 241.899, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 431.865754767025 + "x": 229.69, + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 428.187754767025 + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 423.125754767025 + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 417.17475476702504 + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 410.916754767025 + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 404.96575476702503 + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 399.903754767025 + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 396.225754767025 + "x": 229.69, + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 394.291754767025 + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 394.291754767025 + "x": 241.899, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 396.225754767025 + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 399.903754767025 + "x": 252.912, + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 404.96575476702503 + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 410.916754767025 + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3455 }, @@ -30935,13 +30935,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -30963,7 +30963,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31008,40 +31008,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -31056,12 +31056,12 @@ } }, { - "x": 318.03200000000004, - "y": 433.79975476702504 + "x": 318.032, + "y": 433.79975 }, { "x": 278.524, - "y": 394.291754767025 + "y": 394.29175 }, { "category": 1, @@ -31079,7 +31079,7 @@ }, { "x": 298.278, - "y": 414.045754767025 + "y": 414.04575 }, { "x": 0, @@ -31087,7 +31087,7 @@ }, { "x": 298.278, - "y": 411.13848405198945 + "y": 411.13848 }, { "endCol": 6, @@ -31111,7 +31111,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -31179,148 +31179,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 417.17475476702504 + "x": 318.032, + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 423.125754767025 + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 428.187754767025 + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 431.865754767025 + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 433.79975476702504 + "x": 301.407, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 431.865754767025 + "x": 289.198, + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 428.187754767025 + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 423.125754767025 + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 417.17475476702504 + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 410.916754767025 + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 404.96575476702503 + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 399.903754767025 + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 396.225754767025 + "x": 289.198, + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 394.291754767025 + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 394.291754767025 + "x": 301.407, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 396.225754767025 + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 399.903754767025 + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 404.96575476702503 + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 410.916754767025 + "x": 318.032, + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3501 }, @@ -31342,13 +31342,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -31370,7 +31370,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31415,40 +31415,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -31463,12 +31463,12 @@ } }, { - "x": 377.5400000000001, - "y": 433.79975476702504 + "x": 377.54, + "y": 433.79975 }, { - "x": 338.03200000000004, - "y": 394.291754767025 + "x": 338.032, + "y": 394.29175 }, { "category": 1, @@ -31485,16 +31485,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 414.045754767025 + "x": 357.786, + "y": 414.04575 }, { "x": 0, "y": 0 }, { - "x": 357.78600000000006, - "y": 411.13848405198945 + "x": 357.786, + "y": 411.13848 }, { "endCol": 7, @@ -31518,7 +31518,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -31586,148 +31586,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 417.17475476702504 + "x": 377.54, + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 423.125754767025 + "x": 375.606, + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 428.187754767025 + "x": 371.928, + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 431.865754767025 + "x": 366.866, + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 433.79975476702504 + "x": 360.915, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 433.79975476702504 + "x": 354.657, + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 431.865754767025 + "x": 348.706, + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 428.187754767025 + "x": 343.644, + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 423.125754767025 + "x": 339.966, + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 417.17475476702504 + "x": 338.032, + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 410.916754767025 + "x": 338.032, + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 404.96575476702503 + "x": 339.966, + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 399.903754767025 + "x": 343.644, + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 396.225754767025 + "x": 348.706, + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 394.291754767025 + "x": 354.657, + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 394.291754767025 + "x": 360.915, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 396.225754767025 + "x": 366.866, + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 399.903754767025 + "x": 371.928, + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 404.96575476702503 + "x": 375.606, + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 410.916754767025 + "x": 377.54, + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3547 }, @@ -31749,13 +31749,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -31777,7 +31777,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31822,40 +31822,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -31870,12 +31870,12 @@ } }, { - "x": 437.0480000000001, - "y": 433.79975476702504 + "x": 437.048, + "y": 433.79975 }, { - "x": 397.5400000000001, - "y": 394.291754767025 + "x": 397.54, + "y": 394.29175 }, { "category": 1, @@ -31892,16 +31892,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 414.045754767025 + "x": 417.294, + "y": 414.04575 }, { "x": 0, "y": 0 }, { - "x": 417.2940000000001, - "y": 411.13848405198945 + "x": 417.294, + "y": 411.13848 }, { "endCol": 9, @@ -31925,7 +31925,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -31993,148 +31993,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 417.17475476702504 + "x": 437.048, + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 423.125754767025 + "x": 435.114, + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 428.187754767025 + "x": 431.436, + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 431.865754767025 + "x": 426.374, + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 433.79975476702504 + "x": 420.423, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 433.79975476702504 + "x": 414.165, + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 431.865754767025 + "x": 408.214, + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 428.187754767025 + "x": 403.152, + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 423.125754767025 + "x": 399.474, + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 417.17475476702504 + "x": 397.54, + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 410.916754767025 + "x": 397.54, + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 404.96575476702503 + "x": 399.474, + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 399.903754767025 + "x": 403.152, + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 396.225754767025 + "x": 408.214, + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 394.291754767025 + "x": 414.165, + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 394.291754767025 + "x": 420.423, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 396.225754767025 + "x": 426.374, + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 399.903754767025 + "x": 431.436, + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 404.96575476702503 + "x": 435.114, + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 410.916754767025 + "x": 437.048, + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3593 }, @@ -32156,13 +32156,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -32184,7 +32184,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32229,40 +32229,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -32277,12 +32277,12 @@ } }, { - "x": 496.55600000000015, - "y": 433.79975476702504 + "x": 496.556, + "y": 433.79975 }, { - "x": 457.0480000000001, - "y": 394.291754767025 + "x": 457.048, + "y": 394.29175 }, { "category": 1, @@ -32299,16 +32299,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 414.045754767025 + "x": 476.802, + "y": 414.04575 }, { "x": 0, "y": 0 }, { - "x": 476.80200000000013, - "y": 411.13848405198945 + "x": 476.802, + "y": 411.13848 }, { "endCol": 10, @@ -32332,7 +32332,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -32400,148 +32400,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 417.17475476702504 + "x": 496.556, + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 423.125754767025 + "x": 494.622, + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 428.187754767025 + "x": 490.944, + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 431.865754767025 + "x": 485.882, + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 433.79975476702504 + "x": 479.931, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 433.79975476702504 + "x": 473.673, + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 431.865754767025 + "x": 467.722, + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 428.187754767025 + "x": 462.66, + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 423.125754767025 + "x": 458.982, + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 417.17475476702504 + "x": 457.048, + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 410.916754767025 + "x": 457.048, + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 404.96575476702503 + "x": 458.982, + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 399.903754767025 + "x": 462.66, + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 396.225754767025 + "x": 467.722, + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 394.291754767025 + "x": 473.673, + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 394.291754767025 + "x": 479.931, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 396.225754767025 + "x": 485.882, + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 399.903754767025 + "x": 490.944, + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 404.96575476702503 + "x": 494.622, + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 410.916754767025 + "x": 496.556, + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3639 }, @@ -32563,13 +32563,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -32591,7 +32591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32636,40 +32636,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -32684,12 +32684,12 @@ } }, { - "x": 556.0640000000002, - "y": 433.79975476702504 + "x": 556.064, + "y": 433.79975 }, { - "x": 516.5560000000002, - "y": 394.291754767025 + "x": 516.556, + "y": 394.29175 }, { "category": 1, @@ -32706,16 +32706,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 414.045754767025 + "x": 536.31, + "y": 414.04575 }, { "x": 0, "y": 0 }, { - "x": 536.3100000000002, - "y": 411.13848405198945 + "x": 536.31, + "y": 411.13848 }, { "endCol": 11, @@ -32739,7 +32739,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -32807,148 +32807,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 417.17475476702504 + "x": 556.064, + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 423.125754767025 + "x": 554.13, + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 428.187754767025 + "x": 550.452, + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 431.865754767025 + "x": 545.39, + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 433.79975476702504 + "x": 539.439, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 433.79975476702504 + "x": 533.181, + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 431.865754767025 + "x": 527.23, + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 428.187754767025 + "x": 522.168, + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 423.125754767025 + "x": 518.49, + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 417.17475476702504 + "x": 516.556, + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 410.916754767025 + "x": 516.556, + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 404.96575476702503 + "x": 518.49, + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 399.903754767025 + "x": 522.168, + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 396.225754767025 + "x": 527.23, + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 394.291754767025 + "x": 533.181, + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 394.291754767025 + "x": 539.439, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 396.225754767025 + "x": 545.39, + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 399.903754767025 + "x": 550.452, + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 404.96575476702503 + "x": 554.13, + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 410.916754767025 + "x": 556.064, + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3685 }, @@ -32970,13 +32970,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -32998,7 +32998,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33043,40 +33043,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -33091,12 +33091,12 @@ } }, { - "x": 615.5720000000002, - "y": 433.79975476702504 + "x": 615.572, + "y": 433.79975 }, { - "x": 576.0640000000002, - "y": 394.291754767025 + "x": 576.064, + "y": 394.29175 }, { "category": 1, @@ -33113,16 +33113,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 414.045754767025 + "x": 595.818, + "y": 414.04575 }, { "x": 0, "y": 0 }, { - "x": 595.8180000000002, - "y": 411.13848405198945 + "x": 595.818, + "y": 411.13848 }, { "endCol": 12, @@ -33146,7 +33146,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -33214,148 +33214,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 417.17475476702504 + "x": 615.572, + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 423.125754767025 + "x": 613.638, + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 428.187754767025 + "x": 609.96, + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 431.865754767025 + "x": 604.898, + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 433.79975476702504 + "x": 598.947, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 433.79975476702504 + "x": 592.689, + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 431.865754767025 + "x": 586.738, + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 428.187754767025 + "x": 581.676, + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 423.125754767025 + "x": 577.998, + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 417.17475476702504 + "x": 576.064, + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 410.916754767025 + "x": 576.064, + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 404.96575476702503 + "x": 577.998, + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 399.903754767025 + "x": 581.676, + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 396.225754767025 + "x": 586.738, + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 394.291754767025 + "x": 592.689, + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 394.291754767025 + "x": 598.947, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 396.225754767025 + "x": 604.898, + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 399.903754767025 + "x": 609.96, + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 404.96575476702503 + "x": 613.638, + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 410.916754767025 + "x": 615.572, + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3731 }, @@ -33377,13 +33377,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -33405,7 +33405,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33450,40 +33450,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -33498,12 +33498,12 @@ } }, { - "x": 675.0800000000003, - "y": 433.79975476702504 + "x": 675.08, + "y": 433.79975 }, { - "x": 635.5720000000002, - "y": 394.291754767025 + "x": 635.572, + "y": 394.29175 }, { "category": 1, @@ -33520,16 +33520,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 414.045754767025 + "x": 655.326, + "y": 414.04575 }, { "x": 0, "y": 0 }, { - "x": 655.3260000000002, - "y": 411.13848405198945 + "x": 655.326, + "y": 411.13848 }, { "endCol": 14, @@ -33553,7 +33553,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -33621,148 +33621,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 417.17475476702504 + "x": 675.08, + "y": 417.17475 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 423.125754767025 + "x": 673.146, + "y": 423.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 428.187754767025 + "x": 669.468, + "y": 428.18775 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 431.865754767025 + "x": 664.406, + "y": 431.86575 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 433.79975476702504 + "x": 658.455, + "y": 433.79975 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 433.79975476702504 + "x": 652.197, + "y": 433.79975 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 431.865754767025 + "x": 646.246, + "y": 431.86575 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 428.187754767025 + "x": 641.184, + "y": 428.18775 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 423.125754767025 + "x": 637.506, + "y": 423.12575 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 417.17475476702504 + "x": 635.572, + "y": 417.17475 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 410.916754767025 + "x": 635.572, + "y": 410.91675 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 404.96575476702503 + "x": 637.506, + "y": 404.96575 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 399.903754767025 + "x": 641.184, + "y": 399.90375 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 396.225754767025 + "x": 646.246, + "y": 396.22575 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 394.291754767025 + "x": 652.197, + "y": 394.29175 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 394.291754767025 + "x": 658.455, + "y": 394.29175 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 396.225754767025 + "x": 664.406, + "y": 396.22575 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 399.903754767025 + "x": 669.468, + "y": 399.90375 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 404.96575476702503 + "x": 673.146, + "y": 404.96575 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 410.916754767025 + "x": 675.08, + "y": 410.91675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3777 }, @@ -33784,13 +33784,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -33812,7 +33812,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33857,40 +33857,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -33906,11 +33906,11 @@ }, { "x": 139.508, - "y": 473.3077547670251 + "y": 473.30775 }, { "x": 100, - "y": 433.79975476702504 + "y": 433.79975 }, { "category": 1, @@ -33928,7 +33928,7 @@ }, { "x": 119.754, - "y": 453.55375476702505 + "y": 453.55375 }, { "x": 0, @@ -33936,7 +33936,7 @@ }, { "x": 119.754, - "y": 450.6464840519895 + "y": 450.64648 }, { "endCol": 2, @@ -33960,7 +33960,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -34029,147 +34029,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 456.6827547670251 + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 462.63375476702504 + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 467.69575476702505 + "x": 133.896, + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 471.37375476702505 + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 473.3077547670251 + "x": 122.883, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 471.37375476702505 + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 467.69575476702505 + "x": 105.612, + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 462.63375476702504 + "x": 101.934, + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 456.6827547670251 + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 450.42475476702504 + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 444.47375476702507 + "x": 101.934, + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 439.41175476702506 + "x": 105.612, + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 435.73375476702506 + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 433.79975476702504 + "x": 122.883, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 435.73375476702506 + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 439.41175476702506 + "x": 133.896, + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 444.47375476702507 + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 450.42475476702504 + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3823 }, @@ -34191,13 +34191,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -34219,7 +34219,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34264,40 +34264,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -34313,11 +34313,11 @@ }, { "x": 199.016, - "y": 473.3077547670251 + "y": 473.30775 }, { "x": 159.508, - "y": 433.79975476702504 + "y": 433.79975 }, { "category": 1, @@ -34335,7 +34335,7 @@ }, { "x": 179.262, - "y": 453.55375476702505 + "y": 453.55375 }, { "x": 0, @@ -34343,7 +34343,7 @@ }, { "x": 179.262, - "y": 450.6464840519895 + "y": 450.64648 }, { "endCol": 4, @@ -34367,7 +34367,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -34436,147 +34436,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 456.6827547670251 + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 462.63375476702504 + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 467.69575476702505 + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 471.37375476702505 + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 471.37375476702505 + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 467.69575476702505 + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 462.63375476702504 + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 456.6827547670251 + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 450.42475476702504 + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 444.47375476702507 + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 439.41175476702506 + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 435.73375476702506 + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 435.73375476702506 + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 439.41175476702506 + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 444.47375476702507 + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 450.42475476702504 + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3869 }, @@ -34598,13 +34598,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -34626,7 +34626,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34671,40 +34671,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -34720,11 +34720,11 @@ }, { "x": 258.524, - "y": 473.3077547670251 + "y": 473.30775 }, { "x": 219.016, - "y": 433.79975476702504 + "y": 433.79975 }, { "category": 1, @@ -34741,16 +34741,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 453.55375476702505 + "x": 238.77, + "y": 453.55375 }, { "x": 0, "y": 0 }, { - "x": 238.76999999999998, - "y": 450.6464840519895 + "x": 238.77, + "y": 450.64648 }, { "endCol": 5, @@ -34774,7 +34774,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -34843,147 +34843,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 456.6827547670251 + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 462.63375476702504 + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 467.69575476702505 + "x": 252.912, + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 471.37375476702505 + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 473.3077547670251 + "x": 241.899, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 471.37375476702505 + "x": 229.69, + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 467.69575476702505 + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 462.63375476702504 + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 456.6827547670251 + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 450.42475476702504 + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 444.47375476702507 + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 439.41175476702506 + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 435.73375476702506 + "x": 229.69, + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 433.79975476702504 + "x": 241.899, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 435.73375476702506 + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 439.41175476702506 + "x": 252.912, + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 444.47375476702507 + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 450.42475476702504 + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3915 }, @@ -35005,13 +35005,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -35033,7 +35033,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35078,40 +35078,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -35126,12 +35126,12 @@ } }, { - "x": 318.03200000000004, - "y": 473.3077547670251 + "x": 318.032, + "y": 473.30775 }, { "x": 278.524, - "y": 433.79975476702504 + "y": 433.79975 }, { "category": 1, @@ -35149,7 +35149,7 @@ }, { "x": 298.278, - "y": 453.55375476702505 + "y": 453.55375 }, { "x": 0, @@ -35157,7 +35157,7 @@ }, { "x": 298.278, - "y": 450.6464840519895 + "y": 450.64648 }, { "endCol": 6, @@ -35181,7 +35181,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -35249,148 +35249,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 456.6827547670251 + "x": 318.032, + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 462.63375476702504 + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 467.69575476702505 + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 471.37375476702505 + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 473.3077547670251 + "x": 301.407, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 471.37375476702505 + "x": 289.198, + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 467.69575476702505 + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 462.63375476702504 + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 456.6827547670251 + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 450.42475476702504 + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 444.47375476702507 + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 439.41175476702506 + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 435.73375476702506 + "x": 289.198, + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 433.79975476702504 + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 433.79975476702504 + "x": 301.407, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 435.73375476702506 + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 439.41175476702506 + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 444.47375476702507 + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 450.42475476702504 + "x": 318.032, + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 3961 }, @@ -35412,13 +35412,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -35440,7 +35440,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35485,40 +35485,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -35533,12 +35533,12 @@ } }, { - "x": 377.5400000000001, - "y": 473.3077547670251 + "x": 377.54, + "y": 473.30775 }, { - "x": 338.03200000000004, - "y": 433.79975476702504 + "x": 338.032, + "y": 433.79975 }, { "category": 1, @@ -35555,16 +35555,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 453.55375476702505 + "x": 357.786, + "y": 453.55375 }, { "x": 0, "y": 0 }, { - "x": 357.78600000000006, - "y": 450.6464840519895 + "x": 357.786, + "y": 450.64648 }, { "endCol": 7, @@ -35588,7 +35588,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -35656,148 +35656,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 456.6827547670251 + "x": 377.54, + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 462.63375476702504 + "x": 375.606, + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 467.69575476702505 + "x": 371.928, + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 471.37375476702505 + "x": 366.866, + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 473.3077547670251 + "x": 360.915, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 473.3077547670251 + "x": 354.657, + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 471.37375476702505 + "x": 348.706, + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 467.69575476702505 + "x": 343.644, + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 462.63375476702504 + "x": 339.966, + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 456.6827547670251 + "x": 338.032, + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 450.42475476702504 + "x": 338.032, + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 444.47375476702507 + "x": 339.966, + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 439.41175476702506 + "x": 343.644, + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 435.73375476702506 + "x": 348.706, + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 433.79975476702504 + "x": 354.657, + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 433.79975476702504 + "x": 360.915, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 435.73375476702506 + "x": 366.866, + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 439.41175476702506 + "x": 371.928, + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 444.47375476702507 + "x": 375.606, + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 450.42475476702504 + "x": 377.54, + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4007 }, @@ -35819,13 +35819,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -35847,7 +35847,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35892,40 +35892,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -35940,12 +35940,12 @@ } }, { - "x": 437.0480000000001, - "y": 473.3077547670251 + "x": 437.048, + "y": 473.30775 }, { - "x": 397.5400000000001, - "y": 433.79975476702504 + "x": 397.54, + "y": 433.79975 }, { "category": 1, @@ -35962,16 +35962,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 453.55375476702505 + "x": 417.294, + "y": 453.55375 }, { "x": 0, "y": 0 }, { - "x": 417.2940000000001, - "y": 450.6464840519895 + "x": 417.294, + "y": 450.64648 }, { "endCol": 9, @@ -35995,7 +35995,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36063,148 +36063,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 456.6827547670251 + "x": 437.048, + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 462.63375476702504 + "x": 435.114, + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 467.69575476702505 + "x": 431.436, + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 471.37375476702505 + "x": 426.374, + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 473.3077547670251 + "x": 420.423, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 473.3077547670251 + "x": 414.165, + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 471.37375476702505 + "x": 408.214, + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 467.69575476702505 + "x": 403.152, + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 462.63375476702504 + "x": 399.474, + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 456.6827547670251 + "x": 397.54, + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 450.42475476702504 + "x": 397.54, + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 444.47375476702507 + "x": 399.474, + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 439.41175476702506 + "x": 403.152, + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 435.73375476702506 + "x": 408.214, + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 433.79975476702504 + "x": 414.165, + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 433.79975476702504 + "x": 420.423, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 435.73375476702506 + "x": 426.374, + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 439.41175476702506 + "x": 431.436, + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 444.47375476702507 + "x": 435.114, + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 450.42475476702504 + "x": 437.048, + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4053 }, @@ -36226,13 +36226,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -36254,7 +36254,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36299,40 +36299,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -36347,12 +36347,12 @@ } }, { - "x": 496.55600000000015, - "y": 473.3077547670251 + "x": 496.556, + "y": 473.30775 }, { - "x": 457.0480000000001, - "y": 433.79975476702504 + "x": 457.048, + "y": 433.79975 }, { "category": 1, @@ -36369,16 +36369,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 453.55375476702505 + "x": 476.802, + "y": 453.55375 }, { "x": 0, "y": 0 }, { - "x": 476.80200000000013, - "y": 450.6464840519895 + "x": 476.802, + "y": 450.64648 }, { "endCol": 10, @@ -36402,7 +36402,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36470,148 +36470,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 456.6827547670251 + "x": 496.556, + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 462.63375476702504 + "x": 494.622, + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 467.69575476702505 + "x": 490.944, + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 471.37375476702505 + "x": 485.882, + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 473.3077547670251 + "x": 479.931, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 473.3077547670251 + "x": 473.673, + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 471.37375476702505 + "x": 467.722, + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 467.69575476702505 + "x": 462.66, + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 462.63375476702504 + "x": 458.982, + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 456.6827547670251 + "x": 457.048, + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 450.42475476702504 + "x": 457.048, + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 444.47375476702507 + "x": 458.982, + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 439.41175476702506 + "x": 462.66, + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 435.73375476702506 + "x": 467.722, + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 433.79975476702504 + "x": 473.673, + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 433.79975476702504 + "x": 479.931, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 435.73375476702506 + "x": 485.882, + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 439.41175476702506 + "x": 490.944, + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 444.47375476702507 + "x": 494.622, + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 450.42475476702504 + "x": 496.556, + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4099 }, @@ -36633,13 +36633,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -36661,7 +36661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36706,40 +36706,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -36754,12 +36754,12 @@ } }, { - "x": 556.0640000000002, - "y": 473.3077547670251 + "x": 556.064, + "y": 473.30775 }, { - "x": 516.5560000000002, - "y": 433.79975476702504 + "x": 516.556, + "y": 433.79975 }, { "category": 1, @@ -36776,16 +36776,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 453.55375476702505 + "x": 536.31, + "y": 453.55375 }, { "x": 0, "y": 0 }, { - "x": 536.3100000000002, - "y": 450.6464840519895 + "x": 536.31, + "y": 450.64648 }, { "endCol": 11, @@ -36809,7 +36809,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36877,148 +36877,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 456.6827547670251 + "x": 556.064, + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 462.63375476702504 + "x": 554.13, + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 467.69575476702505 + "x": 550.452, + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 471.37375476702505 + "x": 545.39, + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 473.3077547670251 + "x": 539.439, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 473.3077547670251 + "x": 533.181, + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 471.37375476702505 + "x": 527.23, + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 467.69575476702505 + "x": 522.168, + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 462.63375476702504 + "x": 518.49, + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 456.6827547670251 + "x": 516.556, + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 450.42475476702504 + "x": 516.556, + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 444.47375476702507 + "x": 518.49, + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 439.41175476702506 + "x": 522.168, + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 435.73375476702506 + "x": 527.23, + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 433.79975476702504 + "x": 533.181, + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 433.79975476702504 + "x": 539.439, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 435.73375476702506 + "x": 545.39, + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 439.41175476702506 + "x": 550.452, + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 444.47375476702507 + "x": 554.13, + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 450.42475476702504 + "x": 556.064, + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4145 }, @@ -37040,13 +37040,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -37068,7 +37068,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37113,40 +37113,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -37161,12 +37161,12 @@ } }, { - "x": 615.5720000000002, - "y": 473.3077547670251 + "x": 615.572, + "y": 473.30775 }, { - "x": 576.0640000000002, - "y": 433.79975476702504 + "x": 576.064, + "y": 433.79975 }, { "category": 1, @@ -37183,16 +37183,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 453.55375476702505 + "x": 595.818, + "y": 453.55375 }, { "x": 0, "y": 0 }, { - "x": 595.8180000000002, - "y": 450.6464840519895 + "x": 595.818, + "y": 450.64648 }, { "endCol": 12, @@ -37216,7 +37216,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -37284,148 +37284,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 456.6827547670251 + "x": 615.572, + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 462.63375476702504 + "x": 613.638, + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 467.69575476702505 + "x": 609.96, + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 471.37375476702505 + "x": 604.898, + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 473.3077547670251 + "x": 598.947, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 473.3077547670251 + "x": 592.689, + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 471.37375476702505 + "x": 586.738, + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 467.69575476702505 + "x": 581.676, + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 462.63375476702504 + "x": 577.998, + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 456.6827547670251 + "x": 576.064, + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 450.42475476702504 + "x": 576.064, + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 444.47375476702507 + "x": 577.998, + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 439.41175476702506 + "x": 581.676, + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 435.73375476702506 + "x": 586.738, + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 433.79975476702504 + "x": 592.689, + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 433.79975476702504 + "x": 598.947, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 435.73375476702506 + "x": 604.898, + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 439.41175476702506 + "x": 609.96, + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 444.47375476702507 + "x": 613.638, + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 450.42475476702504 + "x": 615.572, + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4191 }, @@ -37447,13 +37447,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -37475,7 +37475,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37520,40 +37520,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -37568,12 +37568,12 @@ } }, { - "x": 675.0800000000003, - "y": 473.3077547670251 + "x": 675.08, + "y": 473.30775 }, { - "x": 635.5720000000002, - "y": 433.79975476702504 + "x": 635.572, + "y": 433.79975 }, { "category": 1, @@ -37590,16 +37590,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 453.55375476702505 + "x": 655.326, + "y": 453.55375 }, { "x": 0, "y": 0 }, { - "x": 655.3260000000002, - "y": 450.6464840519895 + "x": 655.326, + "y": 450.64648 }, { "endCol": 14, @@ -37623,7 +37623,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -37691,148 +37691,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 456.6827547670251 + "x": 675.08, + "y": 456.68275 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 462.63375476702504 + "x": 673.146, + "y": 462.63375 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 467.69575476702505 + "x": 669.468, + "y": 467.69575 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 471.37375476702505 + "x": 664.406, + "y": 471.37375 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 473.3077547670251 + "x": 658.455, + "y": 473.30775 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 473.3077547670251 + "x": 652.197, + "y": 473.30775 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 471.37375476702505 + "x": 646.246, + "y": 471.37375 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 467.69575476702505 + "x": 641.184, + "y": 467.69575 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 462.63375476702504 + "x": 637.506, + "y": 462.63375 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 456.6827547670251 + "x": 635.572, + "y": 456.68275 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 450.42475476702504 + "x": 635.572, + "y": 450.42475 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 444.47375476702507 + "x": 637.506, + "y": 444.47375 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 439.41175476702506 + "x": 641.184, + "y": 439.41175 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 435.73375476702506 + "x": 646.246, + "y": 435.73375 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 433.79975476702504 + "x": 652.197, + "y": 433.79975 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 433.79975476702504 + "x": 658.455, + "y": 433.79975 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 435.73375476702506 + "x": 664.406, + "y": 435.73375 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 439.41175476702506 + "x": 669.468, + "y": 439.41175 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 444.47375476702507 + "x": 673.146, + "y": 444.47375 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 450.42475476702504 + "x": 675.08, + "y": 450.42475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4237 }, @@ -37854,13 +37854,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -37882,7 +37882,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37927,40 +37927,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -37976,11 +37976,11 @@ }, { "x": 139.508, - "y": 512.815754767025 + "y": 512.81575 }, { "x": 100, - "y": 473.3077547670251 + "y": 473.30775 }, { "category": 1, @@ -37998,7 +37998,7 @@ }, { "x": 119.754, - "y": 493.0617547670251 + "y": 493.06175 }, { "x": 0, @@ -38006,7 +38006,7 @@ }, { "x": 119.754, - "y": 490.1544840519895 + "y": 490.15448 }, { "endCol": 2, @@ -38030,7 +38030,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -38099,147 +38099,147 @@ "index": 0, "isInternal": false, "x": 139.508, - "y": 496.1907547670251 + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, "x": 137.574, - "y": 502.1417547670251 + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.89600000000002, - "y": 507.2037547670251 + "x": 133.896, + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, "x": 128.834, - "y": 510.8817547670251 + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 122.88300000000001, - "y": 512.815754767025 + "x": 122.883, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, "x": 116.625, - "y": 512.815754767025 + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, "x": 110.674, - "y": 510.8817547670251 + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, - "x": 105.61200000000001, - "y": 507.2037547670251 + "x": 105.612, + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, - "x": 101.93400000000001, - "y": 502.1417547670251 + "x": 101.934, + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, "x": 100, - "y": 496.1907547670251 + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, "x": 100, - "y": 489.9327547670251 + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, - "x": 101.93400000000001, - "y": 483.9817547670251 + "x": 101.934, + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, - "x": 105.61200000000001, - "y": 478.9197547670251 + "x": 105.612, + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, "x": 110.674, - "y": 475.2417547670251 + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, "x": 116.625, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 122.88300000000001, - "y": 473.3077547670251 + "x": 122.883, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, "x": 128.834, - "y": 475.2417547670251 + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.89600000000002, - "y": 478.9197547670251 + "x": 133.896, + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, "x": 137.574, - "y": 483.9817547670251 + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, "x": 139.508, - "y": 489.9327547670251 + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4283 }, @@ -38261,13 +38261,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -38289,7 +38289,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38334,40 +38334,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -38383,11 +38383,11 @@ }, { "x": 199.016, - "y": 512.815754767025 + "y": 512.81575 }, { "x": 159.508, - "y": 473.3077547670251 + "y": 473.30775 }, { "category": 1, @@ -38405,7 +38405,7 @@ }, { "x": 179.262, - "y": 493.0617547670251 + "y": 493.06175 }, { "x": 0, @@ -38413,7 +38413,7 @@ }, { "x": 179.262, - "y": 490.1544840519895 + "y": 490.15448 }, { "endCol": 4, @@ -38437,7 +38437,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -38506,147 +38506,147 @@ "index": 0, "isInternal": false, "x": 199.016, - "y": 496.1907547670251 + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, "x": 197.082, - "y": 502.1417547670251 + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, "x": 193.404, - "y": 507.2037547670251 + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, "x": 188.342, - "y": 510.8817547670251 + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, "x": 182.391, - "y": 512.815754767025 + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, "x": 176.133, - "y": 512.815754767025 + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, "x": 170.182, - "y": 510.8817547670251 + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, "x": 165.12, - "y": 507.2037547670251 + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, "x": 161.442, - "y": 502.1417547670251 + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, "x": 159.508, - "y": 496.1907547670251 + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, "x": 159.508, - "y": 489.9327547670251 + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, "x": 161.442, - "y": 483.9817547670251 + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, "x": 165.12, - "y": 478.9197547670251 + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, "x": 170.182, - "y": 475.2417547670251 + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, "x": 176.133, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, "x": 182.391, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, "x": 188.342, - "y": 475.2417547670251 + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, "x": 193.404, - "y": 478.9197547670251 + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, "x": 197.082, - "y": 483.9817547670251 + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, "x": 199.016, - "y": 489.9327547670251 + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4329 }, @@ -38668,13 +38668,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -38696,7 +38696,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38741,40 +38741,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -38790,11 +38790,11 @@ }, { "x": 258.524, - "y": 512.815754767025 + "y": 512.81575 }, { "x": 219.016, - "y": 473.3077547670251 + "y": 473.30775 }, { "category": 1, @@ -38811,16 +38811,16 @@ "y": 0 }, { - "x": 238.76999999999998, - "y": 493.0617547670251 + "x": 238.77, + "y": 493.06175 }, { "x": 0, "y": 0 }, { - "x": 238.76999999999998, - "y": 490.1544840519895 + "x": 238.77, + "y": 490.15448 }, { "endCol": 5, @@ -38844,7 +38844,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -38913,147 +38913,147 @@ "index": 0, "isInternal": false, "x": 258.524, - "y": 496.1907547670251 + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, "x": 256.59, - "y": 502.1417547670251 + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, - "x": 252.91199999999998, - "y": 507.2037547670251 + "x": 252.912, + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, "x": 247.85, - "y": 510.8817547670251 + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 241.89899999999997, - "y": 512.815754767025 + "x": 241.899, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, "x": 235.641, - "y": 512.815754767025 + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, - "x": 229.68999999999997, - "y": 510.8817547670251 + "x": 229.69, + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, "x": 224.628, - "y": 507.2037547670251 + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, "x": 220.95, - "y": 502.1417547670251 + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, "x": 219.016, - "y": 496.1907547670251 + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, "x": 219.016, - "y": 489.9327547670251 + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, "x": 220.95, - "y": 483.9817547670251 + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, "x": 224.628, - "y": 478.9197547670251 + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.68999999999997, - "y": 475.2417547670251 + "x": 229.69, + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, "x": 235.641, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 241.89899999999997, - "y": 473.3077547670251 + "x": 241.899, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, "x": 247.85, - "y": 475.2417547670251 + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, - "x": 252.91199999999998, - "y": 478.9197547670251 + "x": 252.912, + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, "x": 256.59, - "y": 483.9817547670251 + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, "x": 258.524, - "y": 489.9327547670251 + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4375 }, @@ -39075,13 +39075,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -39103,7 +39103,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39148,40 +39148,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -39196,12 +39196,12 @@ } }, { - "x": 318.03200000000004, - "y": 512.815754767025 + "x": 318.032, + "y": 512.81575 }, { "x": 278.524, - "y": 473.3077547670251 + "y": 473.30775 }, { "category": 1, @@ -39219,7 +39219,7 @@ }, { "x": 298.278, - "y": 493.0617547670251 + "y": 493.06175 }, { "x": 0, @@ -39227,7 +39227,7 @@ }, { "x": 298.278, - "y": 490.1544840519895 + "y": 490.15448 }, { "endCol": 6, @@ -39251,7 +39251,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -39319,148 +39319,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.03200000000004, - "y": 496.1907547670251 + "x": 318.032, + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, "x": 316.098, - "y": 502.1417547670251 + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, "x": 312.42, - "y": 507.2037547670251 + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, "x": 307.358, - "y": 510.8817547670251 + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.40700000000004, - "y": 512.815754767025 + "x": 301.407, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, "x": 295.149, - "y": 512.815754767025 + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.19800000000004, - "y": 510.8817547670251 + "x": 289.198, + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, "x": 284.136, - "y": 507.2037547670251 + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, "x": 280.458, - "y": 502.1417547670251 + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, "x": 278.524, - "y": 496.1907547670251 + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, "x": 278.524, - "y": 489.9327547670251 + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, "x": 280.458, - "y": 483.9817547670251 + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, "x": 284.136, - "y": 478.9197547670251 + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.19800000000004, - "y": 475.2417547670251 + "x": 289.198, + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, "x": 295.149, - "y": 473.3077547670251 + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 301.40700000000004, - "y": 473.3077547670251 + "x": 301.407, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, "x": 307.358, - "y": 475.2417547670251 + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, "x": 312.42, - "y": 478.9197547670251 + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, "x": 316.098, - "y": 483.9817547670251 + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, - "x": 318.03200000000004, - "y": 489.9327547670251 + "x": 318.032, + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4421 }, @@ -39482,13 +39482,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -39510,7 +39510,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39555,40 +39555,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -39603,12 +39603,12 @@ } }, { - "x": 377.5400000000001, - "y": 512.815754767025 + "x": 377.54, + "y": 512.81575 }, { - "x": 338.03200000000004, - "y": 473.3077547670251 + "x": 338.032, + "y": 473.30775 }, { "category": 1, @@ -39625,16 +39625,16 @@ "y": 0 }, { - "x": 357.78600000000006, - "y": 493.0617547670251 + "x": 357.786, + "y": 493.06175 }, { "x": 0, "y": 0 }, { - "x": 357.78600000000006, - "y": 490.1544840519895 + "x": 357.786, + "y": 490.15448 }, { "endCol": 7, @@ -39658,7 +39658,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -39726,148 +39726,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 377.5400000000001, - "y": 496.1907547670251 + "x": 377.54, + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, - "x": 375.60600000000005, - "y": 502.1417547670251 + "x": 375.606, + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.92800000000005, - "y": 507.2037547670251 + "x": 371.928, + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.86600000000004, - "y": 510.8817547670251 + "x": 366.866, + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.9150000000001, - "y": 512.815754767025 + "x": 360.915, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, - "x": 354.65700000000004, - "y": 512.815754767025 + "x": 354.657, + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.7060000000001, - "y": 510.8817547670251 + "x": 348.706, + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.64400000000006, - "y": 507.2037547670251 + "x": 343.644, + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.96600000000007, - "y": 502.1417547670251 + "x": 339.966, + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.03200000000004, - "y": 496.1907547670251 + "x": 338.032, + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, - "x": 338.03200000000004, - "y": 489.9327547670251 + "x": 338.032, + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, - "x": 339.96600000000007, - "y": 483.9817547670251 + "x": 339.966, + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, - "x": 343.64400000000006, - "y": 478.9197547670251 + "x": 343.644, + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, - "x": 348.7060000000001, - "y": 475.2417547670251 + "x": 348.706, + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, - "x": 354.65700000000004, - "y": 473.3077547670251 + "x": 354.657, + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 360.9150000000001, - "y": 473.3077547670251 + "x": 360.915, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, - "x": 366.86600000000004, - "y": 475.2417547670251 + "x": 366.866, + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, - "x": 371.92800000000005, - "y": 478.9197547670251 + "x": 371.928, + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, - "x": 375.60600000000005, - "y": 483.9817547670251 + "x": 375.606, + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, - "x": 377.5400000000001, - "y": 489.9327547670251 + "x": 377.54, + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4467 }, @@ -39889,13 +39889,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -39917,7 +39917,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39962,40 +39962,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -40010,12 +40010,12 @@ } }, { - "x": 437.0480000000001, - "y": 512.815754767025 + "x": 437.048, + "y": 512.81575 }, { - "x": 397.5400000000001, - "y": 473.3077547670251 + "x": 397.54, + "y": 473.30775 }, { "category": 1, @@ -40032,16 +40032,16 @@ "y": 0 }, { - "x": 417.2940000000001, - "y": 493.0617547670251 + "x": 417.294, + "y": 493.06175 }, { "x": 0, "y": 0 }, { - "x": 417.2940000000001, - "y": 490.1544840519895 + "x": 417.294, + "y": 490.15448 }, { "endCol": 9, @@ -40065,7 +40065,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40133,148 +40133,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.0480000000001, - "y": 496.1907547670251 + "x": 437.048, + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.1140000000001, - "y": 502.1417547670251 + "x": 435.114, + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.4360000000001, - "y": 507.2037547670251 + "x": 431.436, + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3740000000001, - "y": 510.8817547670251 + "x": 426.374, + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 420.4230000000001, - "y": 512.815754767025 + "x": 420.423, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, - "x": 414.1650000000001, - "y": 512.815754767025 + "x": 414.165, + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, - "x": 408.2140000000001, - "y": 510.8817547670251 + "x": 408.214, + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, - "x": 403.1520000000001, - "y": 507.2037547670251 + "x": 403.152, + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, - "x": 399.4740000000001, - "y": 502.1417547670251 + "x": 399.474, + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.5400000000001, - "y": 496.1907547670251 + "x": 397.54, + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, - "x": 397.5400000000001, - "y": 489.9327547670251 + "x": 397.54, + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, - "x": 399.4740000000001, - "y": 483.9817547670251 + "x": 399.474, + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.1520000000001, - "y": 478.9197547670251 + "x": 403.152, + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, - "x": 408.2140000000001, - "y": 475.2417547670251 + "x": 408.214, + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, - "x": 414.1650000000001, - "y": 473.3077547670251 + "x": 414.165, + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 420.4230000000001, - "y": 473.3077547670251 + "x": 420.423, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, - "x": 426.3740000000001, - "y": 475.2417547670251 + "x": 426.374, + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, - "x": 431.4360000000001, - "y": 478.9197547670251 + "x": 431.436, + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, - "x": 435.1140000000001, - "y": 483.9817547670251 + "x": 435.114, + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, - "x": 437.0480000000001, - "y": 489.9327547670251 + "x": 437.048, + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4513 }, @@ -40296,13 +40296,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -40324,7 +40324,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40369,40 +40369,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -40417,12 +40417,12 @@ } }, { - "x": 496.55600000000015, - "y": 512.815754767025 + "x": 496.556, + "y": 512.81575 }, { - "x": 457.0480000000001, - "y": 473.3077547670251 + "x": 457.048, + "y": 473.30775 }, { "category": 1, @@ -40439,16 +40439,16 @@ "y": 0 }, { - "x": 476.80200000000013, - "y": 493.0617547670251 + "x": 476.802, + "y": 493.06175 }, { "x": 0, "y": 0 }, { - "x": 476.80200000000013, - "y": 490.1544840519895 + "x": 476.802, + "y": 490.15448 }, { "endCol": 10, @@ -40472,7 +40472,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40540,148 +40540,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 496.55600000000015, - "y": 496.1907547670251 + "x": 496.556, + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.6220000000001, - "y": 502.1417547670251 + "x": 494.622, + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.94400000000013, - "y": 507.2037547670251 + "x": 490.944, + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8820000000001, - "y": 510.8817547670251 + "x": 485.882, + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.93100000000015, - "y": 512.815754767025 + "x": 479.931, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, - "x": 473.6730000000001, - "y": 512.815754767025 + "x": 473.673, + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, - "x": 467.72200000000015, - "y": 510.8817547670251 + "x": 467.722, + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.66000000000014, - "y": 507.2037547670251 + "x": 462.66, + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, - "x": 458.98200000000014, - "y": 502.1417547670251 + "x": 458.982, + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.0480000000001, - "y": 496.1907547670251 + "x": 457.048, + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, - "x": 457.0480000000001, - "y": 489.9327547670251 + "x": 457.048, + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.98200000000014, - "y": 483.9817547670251 + "x": 458.982, + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, - "x": 462.66000000000014, - "y": 478.9197547670251 + "x": 462.66, + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, - "x": 467.72200000000015, - "y": 475.2417547670251 + "x": 467.722, + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, - "x": 473.6730000000001, - "y": 473.3077547670251 + "x": 473.673, + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 479.93100000000015, - "y": 473.3077547670251 + "x": 479.931, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.8820000000001, - "y": 475.2417547670251 + "x": 485.882, + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, - "x": 490.94400000000013, - "y": 478.9197547670251 + "x": 490.944, + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, - "x": 494.6220000000001, - "y": 483.9817547670251 + "x": 494.622, + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, - "x": 496.55600000000015, - "y": 489.9327547670251 + "x": 496.556, + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4559 }, @@ -40703,13 +40703,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -40731,7 +40731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40776,40 +40776,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -40824,12 +40824,12 @@ } }, { - "x": 556.0640000000002, - "y": 512.815754767025 + "x": 556.064, + "y": 512.81575 }, { - "x": 516.5560000000002, - "y": 473.3077547670251 + "x": 516.556, + "y": 473.30775 }, { "category": 1, @@ -40846,16 +40846,16 @@ "y": 0 }, { - "x": 536.3100000000002, - "y": 493.0617547670251 + "x": 536.31, + "y": 493.06175 }, { "x": 0, "y": 0 }, { - "x": 536.3100000000002, - "y": 490.1544840519895 + "x": 536.31, + "y": 490.15448 }, { "endCol": 11, @@ -40879,7 +40879,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40947,148 +40947,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 556.0640000000002, - "y": 496.1907547670251 + "x": 556.064, + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.1300000000002, - "y": 502.1417547670251 + "x": 554.13, + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4520000000002, - "y": 507.2037547670251 + "x": 550.452, + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.3900000000002, - "y": 510.8817547670251 + "x": 545.39, + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.4390000000002, - "y": 512.815754767025 + "x": 539.439, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, - "x": 533.1810000000002, - "y": 512.815754767025 + "x": 533.181, + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, - "x": 527.2300000000002, - "y": 510.8817547670251 + "x": 527.23, + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, - "x": 522.1680000000001, - "y": 507.2037547670251 + "x": 522.168, + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.4900000000002, - "y": 502.1417547670251 + "x": 518.49, + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, - "x": 516.5560000000002, - "y": 496.1907547670251 + "x": 516.556, + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, - "x": 516.5560000000002, - "y": 489.9327547670251 + "x": 516.556, + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, - "x": 518.4900000000002, - "y": 483.9817547670251 + "x": 518.49, + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, - "x": 522.1680000000001, - "y": 478.9197547670251 + "x": 522.168, + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, - "x": 527.2300000000002, - "y": 475.2417547670251 + "x": 527.23, + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, - "x": 533.1810000000002, - "y": 473.3077547670251 + "x": 533.181, + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 539.4390000000002, - "y": 473.3077547670251 + "x": 539.439, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, - "x": 545.3900000000002, - "y": 475.2417547670251 + "x": 545.39, + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, - "x": 550.4520000000002, - "y": 478.9197547670251 + "x": 550.452, + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, - "x": 554.1300000000002, - "y": 483.9817547670251 + "x": 554.13, + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, - "x": 556.0640000000002, - "y": 489.9327547670251 + "x": 556.064, + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4605 }, @@ -41110,13 +41110,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -41138,7 +41138,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41183,40 +41183,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -41231,12 +41231,12 @@ } }, { - "x": 615.5720000000002, - "y": 512.815754767025 + "x": 615.572, + "y": 512.81575 }, { - "x": 576.0640000000002, - "y": 473.3077547670251 + "x": 576.064, + "y": 473.30775 }, { "category": 1, @@ -41253,16 +41253,16 @@ "y": 0 }, { - "x": 595.8180000000002, - "y": 493.0617547670251 + "x": 595.818, + "y": 493.06175 }, { "x": 0, "y": 0 }, { - "x": 595.8180000000002, - "y": 490.1544840519895 + "x": 595.818, + "y": 490.15448 }, { "endCol": 12, @@ -41286,7 +41286,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -41354,148 +41354,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 615.5720000000002, - "y": 496.1907547670251 + "x": 615.572, + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, - "x": 613.6380000000003, - "y": 502.1417547670251 + "x": 613.638, + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, - "x": 609.9600000000003, - "y": 507.2037547670251 + "x": 609.96, + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.8980000000003, - "y": 510.8817547670251 + "x": 604.898, + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 598.9470000000002, - "y": 512.815754767025 + "x": 598.947, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, - "x": 592.6890000000002, - "y": 512.815754767025 + "x": 592.689, + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7380000000002, - "y": 510.8817547670251 + "x": 586.738, + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, - "x": 581.6760000000002, - "y": 507.2037547670251 + "x": 581.676, + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.9980000000002, - "y": 502.1417547670251 + "x": 577.998, + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, - "x": 576.0640000000002, - "y": 496.1907547670251 + "x": 576.064, + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, - "x": 576.0640000000002, - "y": 489.9327547670251 + "x": 576.064, + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, - "x": 577.9980000000002, - "y": 483.9817547670251 + "x": 577.998, + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, - "x": 581.6760000000002, - "y": 478.9197547670251 + "x": 581.676, + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, - "x": 586.7380000000002, - "y": 475.2417547670251 + "x": 586.738, + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, - "x": 592.6890000000002, - "y": 473.3077547670251 + "x": 592.689, + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 598.9470000000002, - "y": 473.3077547670251 + "x": 598.947, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, - "x": 604.8980000000003, - "y": 475.2417547670251 + "x": 604.898, + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, - "x": 609.9600000000003, - "y": 478.9197547670251 + "x": 609.96, + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, - "x": 613.6380000000003, - "y": 483.9817547670251 + "x": 613.638, + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, - "x": 615.5720000000002, - "y": 489.9327547670251 + "x": 615.572, + "y": 489.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 4651 }, @@ -41517,13 +41517,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -41545,7 +41545,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41590,40 +41590,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -41638,12 +41638,12 @@ } }, { - "x": 675.0800000000003, - "y": 512.815754767025 + "x": 675.08, + "y": 512.81575 }, { - "x": 635.5720000000002, - "y": 473.3077547670251 + "x": 635.572, + "y": 473.30775 }, { "category": 1, @@ -41660,16 +41660,16 @@ "y": 0 }, { - "x": 655.3260000000002, - "y": 493.0617547670251 + "x": 655.326, + "y": 493.06175 }, { "x": 0, "y": 0 }, { - "x": 655.3260000000002, - "y": 490.1544840519895 + "x": 655.326, + "y": 490.15448 }, { "endCol": 14, @@ -41693,7 +41693,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -41761,141 +41761,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 675.0800000000003, - "y": 496.1907547670251 + "x": 675.08, + "y": 496.19075 }, { "body": null, "index": 1, "isInternal": false, - "x": 673.1460000000003, - "y": 502.1417547670251 + "x": 673.146, + "y": 502.14175 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.4680000000003, - "y": 507.2037547670251 + "x": 669.468, + "y": 507.20375 }, { "body": null, "index": 3, "isInternal": false, - "x": 664.4060000000003, - "y": 510.8817547670251 + "x": 664.406, + "y": 510.88175 }, { "body": null, "index": 4, "isInternal": false, - "x": 658.4550000000003, - "y": 512.815754767025 + "x": 658.455, + "y": 512.81575 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.1970000000002, - "y": 512.815754767025 + "x": 652.197, + "y": 512.81575 }, { "body": null, "index": 6, "isInternal": false, - "x": 646.2460000000002, - "y": 510.8817547670251 + "x": 646.246, + "y": 510.88175 }, { "body": null, "index": 7, "isInternal": false, - "x": 641.1840000000002, - "y": 507.2037547670251 + "x": 641.184, + "y": 507.20375 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.5060000000002, - "y": 502.1417547670251 + "x": 637.506, + "y": 502.14175 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.5720000000002, - "y": 496.1907547670251 + "x": 635.572, + "y": 496.19075 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.5720000000002, - "y": 489.9327547670251 + "x": 635.572, + "y": 489.93275 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5060000000002, - "y": 483.9817547670251 + "x": 637.506, + "y": 483.98175 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.1840000000002, - "y": 478.9197547670251 + "x": 641.184, + "y": 478.91975 }, { "body": null, "index": 13, "isInternal": false, - "x": 646.2460000000002, - "y": 475.2417547670251 + "x": 646.246, + "y": 475.24175 }, { "body": null, "index": 14, "isInternal": false, - "x": 652.1970000000002, - "y": 473.3077547670251 + "x": 652.197, + "y": 473.30775 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4550000000003, - "y": 473.3077547670251 + "x": 658.455, + "y": 473.30775 }, { "body": null, "index": 16, "isInternal": false, - "x": 664.4060000000003, - "y": 475.2417547670251 + "x": 664.406, + "y": 475.24175 }, { "body": null, "index": 17, "isInternal": false, - "x": 669.4680000000003, - "y": 478.9197547670251 + "x": 669.468, + "y": 478.91975 }, { "body": null, "index": 18, "isInternal": false, - "x": 673.1460000000003, - "y": 483.9817547670251 + "x": 673.146, + "y": 483.98175 }, { "body": null, "index": 19, "isInternal": false, - "x": 675.0800000000003, - "y": 489.9327547670251 + "x": 675.08, + "y": 489.93275 }, [], [], diff --git a/test/browser/refs/cloth/cloth-0.json b/test/browser/refs/cloth/cloth-0.json index 2a9dc5c6..4260b09d 100644 --- a/test/browser/refs/cloth/cloth-0.json +++ b/test/browser/refs/cloth/cloth-0.json @@ -826,7 +826,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 19911.024116, + "area": 19911.02412, "axes": { "#": 87 }, @@ -942,52 +942,52 @@ } ], { - "x": -0.9709333586157194, - "y": -0.2393499804203023 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854709821702762, - "y": -0.46469467366692147 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.748515380823054, - "y": -0.6631174290209226 + "x": -0.74852, + "y": -0.66312 }, { - "x": -0.5680418986705345, - "y": -0.8229996363029416 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.354604215858066, - "y": -0.9350164972318329 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.120555900025101, - "y": -0.9927065402066907 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.120555900025101, - "y": -0.9927065402066907 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.354604215858066, - "y": -0.9350164972318329 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680418986705345, - "y": -0.8229996363029416 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.748515380823054, - "y": -0.6631174290209226 + "x": 0.74852, + "y": -0.66312 }, { - "x": 0.8854709821702762, - "y": -0.46469467366692147 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709333586157194, - "y": -0.2393499804203023 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1002,7 +1002,7 @@ } }, { - "x": 379.41700000000003, + "x": 379.417, "y": 580 }, { @@ -1136,8 +1136,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 379.41700000000003, - "y": 509.64300000000003 + "x": 379.417, + "y": 509.643 }, { "body": null, @@ -1221,14 +1221,14 @@ "index": 12, "isInternal": false, "x": 220.583, - "y": 509.64300000000003 + "y": 509.643 }, { "body": null, "index": 13, "isInternal": false, "x": 220.583, - "y": 490.35699999999997 + "y": 490.357 }, { "body": null, @@ -1311,8 +1311,8 @@ "body": null, "index": 25, "isInternal": false, - "x": 379.41700000000003, - "y": 490.35699999999997 + "x": 379.417, + "y": 490.357 }, { "angle": 0, @@ -2273,7 +2273,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 168 }, @@ -2302,11 +2302,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -2355,20 +2355,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -2540,7 +2540,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 198 }, @@ -2569,11 +2569,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -2622,20 +2622,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -2650,7 +2650,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 216 }, { @@ -2736,7 +2736,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 210.472 }, { @@ -2799,7 +2799,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 205.528 }, { @@ -2807,7 +2807,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 228 }, @@ -2836,11 +2836,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -2889,20 +2889,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -2917,11 +2917,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 216 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 200 }, { @@ -2939,7 +2939,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 208 }, { @@ -2947,7 +2947,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 208 }, { @@ -3003,70 +3003,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 205.528 }, { @@ -3074,7 +3074,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 258 }, @@ -3103,11 +3103,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -3156,20 +3156,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -3184,7 +3184,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 216 }, { @@ -3206,7 +3206,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 208 }, { @@ -3214,7 +3214,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 208 }, { @@ -3270,7 +3270,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 210.472 }, { @@ -3284,14 +3284,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 214.472 }, { @@ -3312,14 +3312,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 200 }, { @@ -3333,7 +3333,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 205.528 }, { @@ -3341,7 +3341,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 288 }, @@ -3370,11 +3370,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -3423,20 +3423,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -3451,11 +3451,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 216 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 200 }, { @@ -3473,7 +3473,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 208 }, { @@ -3481,7 +3481,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 208 }, { @@ -3537,70 +3537,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 205.528 }, { @@ -3608,7 +3608,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 318 }, @@ -3637,11 +3637,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -3690,20 +3690,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -3718,11 +3718,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 216 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 200 }, { @@ -3740,7 +3740,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 208 }, { @@ -3748,7 +3748,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 208 }, { @@ -3804,70 +3804,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 205.528 }, { @@ -3875,7 +3875,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 348 }, @@ -3904,11 +3904,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -3957,20 +3957,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -3985,11 +3985,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 216 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 200 }, { @@ -4007,7 +4007,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 208 }, { @@ -4015,7 +4015,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 208 }, { @@ -4071,70 +4071,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 205.528 }, { @@ -4142,7 +4142,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 378 }, @@ -4171,11 +4171,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -4224,20 +4224,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -4252,11 +4252,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 216 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 200 }, { @@ -4274,7 +4274,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 208 }, { @@ -4282,7 +4282,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 208 }, { @@ -4338,70 +4338,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 205.528 }, { @@ -4409,7 +4409,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 408 }, @@ -4438,11 +4438,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -4491,20 +4491,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -4519,11 +4519,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 216 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 200 }, { @@ -4541,7 +4541,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 208 }, { @@ -4549,7 +4549,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 208 }, { @@ -4605,70 +4605,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 205.528 }, { @@ -4676,7 +4676,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 438 }, @@ -4705,11 +4705,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -4758,20 +4758,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -4786,11 +4786,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 216 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 200 }, { @@ -4808,7 +4808,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 208 }, { @@ -4816,7 +4816,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 208 }, { @@ -4872,70 +4872,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 205.528 }, { @@ -4943,7 +4943,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 468 }, @@ -4972,11 +4972,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -5025,20 +5025,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -5053,11 +5053,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 216 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 200 }, { @@ -5075,7 +5075,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 208 }, { @@ -5083,7 +5083,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 208 }, { @@ -5139,70 +5139,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 205.528 }, { @@ -5210,7 +5210,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 498 }, @@ -5239,11 +5239,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -5292,20 +5292,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -5320,11 +5320,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 216 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 200 }, { @@ -5342,7 +5342,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 208 }, { @@ -5350,7 +5350,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 208 }, { @@ -5406,70 +5406,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 205.528 }, { @@ -5477,7 +5477,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 528 }, @@ -5506,11 +5506,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -5559,20 +5559,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -5587,11 +5587,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 216 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 200 }, { @@ -5609,7 +5609,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 208 }, { @@ -5617,7 +5617,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 208 }, { @@ -5673,70 +5673,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 205.528 }, { @@ -5744,7 +5744,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 558 }, @@ -5773,11 +5773,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -5826,20 +5826,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -5854,11 +5854,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 216 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 200 }, { @@ -5876,7 +5876,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 208 }, { @@ -5884,7 +5884,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 208 }, { @@ -5940,70 +5940,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 205.528 }, { @@ -6011,7 +6011,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 588 }, @@ -6040,11 +6040,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -6093,20 +6093,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -6121,11 +6121,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 216 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 200 }, { @@ -6143,7 +6143,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 208 }, { @@ -6151,7 +6151,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 208 }, { @@ -6207,70 +6207,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 205.528 }, { @@ -6278,7 +6278,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 618 }, @@ -6307,11 +6307,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -6360,20 +6360,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -6388,11 +6388,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 216 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 200 }, { @@ -6410,7 +6410,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 208 }, { @@ -6418,7 +6418,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 208 }, { @@ -6474,70 +6474,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 205.528 }, { @@ -6545,7 +6545,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 648 }, @@ -6574,11 +6574,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -6627,20 +6627,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -6659,7 +6659,7 @@ "y": 216 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 200 }, { @@ -6677,7 +6677,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 208 }, { @@ -6685,7 +6685,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 208 }, { @@ -6748,56 +6748,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 201.528 }, { @@ -6812,7 +6812,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 678 }, @@ -6841,11 +6841,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -6894,20 +6894,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -6922,7 +6922,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 216 }, { @@ -7008,7 +7008,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 210.472 }, { @@ -7071,7 +7071,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 205.528 }, { @@ -7079,7 +7079,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 708 }, @@ -7108,11 +7108,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -7161,20 +7161,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -7189,11 +7189,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 216 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 200 }, { @@ -7211,7 +7211,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 208 }, { @@ -7219,7 +7219,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 208 }, { @@ -7275,70 +7275,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 205.528 }, { @@ -7346,7 +7346,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 738 }, @@ -7375,11 +7375,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -7428,20 +7428,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -7456,11 +7456,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 216 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 200 }, { @@ -7478,7 +7478,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 208 }, { @@ -7486,7 +7486,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 208 }, { @@ -7542,70 +7542,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 205.528 }, { @@ -7613,7 +7613,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 768 }, @@ -7642,11 +7642,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -7695,20 +7695,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -7880,7 +7880,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 798 }, @@ -7909,11 +7909,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -7962,20 +7962,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -7990,7 +7990,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 237 }, { @@ -8076,7 +8076,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 231.472 }, { @@ -8139,7 +8139,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 226.528 }, { @@ -8147,7 +8147,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 828 }, @@ -8176,11 +8176,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -8229,20 +8229,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -8257,11 +8257,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 237 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 221 }, { @@ -8279,7 +8279,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 229 }, { @@ -8287,7 +8287,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 229 }, { @@ -8343,70 +8343,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 226.528 }, { @@ -8414,7 +8414,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 858 }, @@ -8443,11 +8443,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -8496,20 +8496,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -8524,7 +8524,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 237 }, { @@ -8546,7 +8546,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 229 }, { @@ -8554,7 +8554,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 229 }, { @@ -8610,7 +8610,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 231.472 }, { @@ -8624,14 +8624,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 235.472 }, { @@ -8652,14 +8652,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 221 }, { @@ -8673,7 +8673,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 226.528 }, { @@ -8681,7 +8681,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 888 }, @@ -8710,11 +8710,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -8763,20 +8763,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -8791,11 +8791,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 237 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 221 }, { @@ -8813,7 +8813,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 229 }, { @@ -8821,7 +8821,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 229 }, { @@ -8877,70 +8877,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 226.528 }, { @@ -8948,7 +8948,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 918 }, @@ -8977,11 +8977,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -9030,20 +9030,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -9058,11 +9058,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 237 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 221 }, { @@ -9080,7 +9080,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 229 }, { @@ -9088,7 +9088,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 229 }, { @@ -9144,70 +9144,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 226.528 }, { @@ -9215,7 +9215,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 948 }, @@ -9244,11 +9244,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -9297,20 +9297,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -9325,11 +9325,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 237 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 221 }, { @@ -9347,7 +9347,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 229 }, { @@ -9355,7 +9355,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 229 }, { @@ -9411,70 +9411,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 226.528 }, { @@ -9482,7 +9482,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 978 }, @@ -9511,11 +9511,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -9564,20 +9564,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -9592,11 +9592,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 237 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 221 }, { @@ -9614,7 +9614,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 229 }, { @@ -9622,7 +9622,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 229 }, { @@ -9678,70 +9678,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 226.528 }, { @@ -9749,7 +9749,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1008 }, @@ -9778,11 +9778,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -9831,20 +9831,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -9859,11 +9859,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 237 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 221 }, { @@ -9881,7 +9881,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 229 }, { @@ -9889,7 +9889,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 229 }, { @@ -9945,70 +9945,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 226.528 }, { @@ -10016,7 +10016,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1038 }, @@ -10045,11 +10045,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -10098,20 +10098,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -10126,11 +10126,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 237 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 221 }, { @@ -10148,7 +10148,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 229 }, { @@ -10156,7 +10156,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 229 }, { @@ -10212,70 +10212,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 226.528 }, { @@ -10283,7 +10283,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1068 }, @@ -10312,11 +10312,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -10365,20 +10365,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -10393,11 +10393,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 237 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 221 }, { @@ -10415,7 +10415,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 229 }, { @@ -10423,7 +10423,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 229 }, { @@ -10479,70 +10479,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 226.528 }, { @@ -10550,7 +10550,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1098 }, @@ -10579,11 +10579,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -10632,20 +10632,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -10660,11 +10660,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 237 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 221 }, { @@ -10682,7 +10682,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 229 }, { @@ -10690,7 +10690,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 229 }, { @@ -10746,70 +10746,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 226.528 }, { @@ -10817,7 +10817,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1128 }, @@ -10846,11 +10846,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -10899,20 +10899,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -10927,11 +10927,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 237 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 221 }, { @@ -10949,7 +10949,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 229 }, { @@ -10957,7 +10957,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 229 }, { @@ -11013,70 +11013,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 226.528 }, { @@ -11084,7 +11084,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1158 }, @@ -11113,11 +11113,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -11166,20 +11166,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -11194,11 +11194,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 237 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 221 }, { @@ -11216,7 +11216,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 229 }, { @@ -11224,7 +11224,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 229 }, { @@ -11280,70 +11280,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 226.528 }, { @@ -11351,7 +11351,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1188 }, @@ -11380,11 +11380,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -11433,20 +11433,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -11461,11 +11461,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 237 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 221 }, { @@ -11483,7 +11483,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 229 }, { @@ -11491,7 +11491,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 229 }, { @@ -11547,70 +11547,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 226.528 }, { @@ -11618,7 +11618,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1218 }, @@ -11647,11 +11647,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -11700,20 +11700,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -11728,11 +11728,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 237 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 221 }, { @@ -11750,7 +11750,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 229 }, { @@ -11758,7 +11758,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 229 }, { @@ -11814,70 +11814,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 226.528 }, { @@ -11885,7 +11885,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1248 }, @@ -11914,11 +11914,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -11967,20 +11967,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -11999,7 +11999,7 @@ "y": 237 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 221 }, { @@ -12017,7 +12017,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 229 }, { @@ -12025,7 +12025,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 229 }, { @@ -12088,56 +12088,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 222.528 }, { @@ -12152,7 +12152,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1278 }, @@ -12181,11 +12181,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -12234,20 +12234,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -12262,7 +12262,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 237 }, { @@ -12348,7 +12348,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 231.472 }, { @@ -12411,7 +12411,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 226.528 }, { @@ -12419,7 +12419,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1308 }, @@ -12448,11 +12448,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -12501,20 +12501,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -12529,11 +12529,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 237 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 221 }, { @@ -12551,7 +12551,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 229 }, { @@ -12559,7 +12559,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 229 }, { @@ -12615,70 +12615,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 226.528 }, { @@ -12686,7 +12686,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1338 }, @@ -12715,11 +12715,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -12768,20 +12768,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -12796,11 +12796,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 237 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 221 }, { @@ -12818,7 +12818,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 229 }, { @@ -12826,7 +12826,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 229 }, { @@ -12882,70 +12882,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 231.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 235.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 237 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 235.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 231.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 226.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 222.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 221 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 222.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 226.528 }, { @@ -12953,7 +12953,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1368 }, @@ -12982,11 +12982,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -13035,20 +13035,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -13220,7 +13220,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1398 }, @@ -13249,11 +13249,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -13302,20 +13302,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -13330,7 +13330,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 258 }, { @@ -13416,7 +13416,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 252.472 }, { @@ -13479,7 +13479,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 247.528 }, { @@ -13487,7 +13487,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1428 }, @@ -13516,11 +13516,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -13569,20 +13569,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -13597,11 +13597,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 258 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 242 }, { @@ -13619,7 +13619,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 250 }, { @@ -13627,7 +13627,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 250 }, { @@ -13683,70 +13683,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 247.528 }, { @@ -13754,7 +13754,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1458 }, @@ -13783,11 +13783,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -13836,20 +13836,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -13864,7 +13864,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 258 }, { @@ -13886,7 +13886,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 250 }, { @@ -13894,7 +13894,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 250 }, { @@ -13950,7 +13950,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 252.472 }, { @@ -13964,14 +13964,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 256.472 }, { @@ -13992,14 +13992,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 242 }, { @@ -14013,7 +14013,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 247.528 }, { @@ -14021,7 +14021,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1488 }, @@ -14050,11 +14050,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -14103,20 +14103,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -14131,11 +14131,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 258 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 242 }, { @@ -14153,7 +14153,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 250 }, { @@ -14161,7 +14161,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 250 }, { @@ -14217,70 +14217,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 247.528 }, { @@ -14288,7 +14288,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1518 }, @@ -14317,11 +14317,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -14370,20 +14370,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -14398,11 +14398,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 258 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 242 }, { @@ -14420,7 +14420,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 250 }, { @@ -14428,7 +14428,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 250 }, { @@ -14484,70 +14484,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 247.528 }, { @@ -14555,7 +14555,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1548 }, @@ -14584,11 +14584,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -14637,20 +14637,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -14665,11 +14665,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 258 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 242 }, { @@ -14687,7 +14687,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 250 }, { @@ -14695,7 +14695,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 250 }, { @@ -14751,70 +14751,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 247.528 }, { @@ -14822,7 +14822,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1578 }, @@ -14851,11 +14851,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -14904,20 +14904,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -14932,11 +14932,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 258 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 242 }, { @@ -14954,7 +14954,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 250 }, { @@ -14962,7 +14962,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 250 }, { @@ -15018,70 +15018,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 247.528 }, { @@ -15089,7 +15089,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1608 }, @@ -15118,11 +15118,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -15171,20 +15171,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -15199,11 +15199,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 258 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 242 }, { @@ -15221,7 +15221,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 250 }, { @@ -15229,7 +15229,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 250 }, { @@ -15285,70 +15285,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 247.528 }, { @@ -15356,7 +15356,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1638 }, @@ -15385,11 +15385,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -15438,20 +15438,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -15466,11 +15466,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 258 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 242 }, { @@ -15488,7 +15488,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 250 }, { @@ -15496,7 +15496,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 250 }, { @@ -15552,70 +15552,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 247.528 }, { @@ -15623,7 +15623,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1668 }, @@ -15652,11 +15652,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -15705,20 +15705,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -15733,11 +15733,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 258 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 242 }, { @@ -15755,7 +15755,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 250 }, { @@ -15763,7 +15763,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 250 }, { @@ -15819,70 +15819,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 247.528 }, { @@ -15890,7 +15890,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1698 }, @@ -15919,11 +15919,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -15972,20 +15972,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -16000,11 +16000,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 258 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 242 }, { @@ -16022,7 +16022,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 250 }, { @@ -16030,7 +16030,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 250 }, { @@ -16086,70 +16086,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 247.528 }, { @@ -16157,7 +16157,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1728 }, @@ -16186,11 +16186,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -16239,20 +16239,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -16267,11 +16267,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 258 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 242 }, { @@ -16289,7 +16289,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 250 }, { @@ -16297,7 +16297,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 250 }, { @@ -16353,70 +16353,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 247.528 }, { @@ -16424,7 +16424,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1758 }, @@ -16453,11 +16453,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -16506,20 +16506,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -16534,11 +16534,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 258 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 242 }, { @@ -16556,7 +16556,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 250 }, { @@ -16564,7 +16564,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 250 }, { @@ -16620,70 +16620,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 247.528 }, { @@ -16691,7 +16691,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1788 }, @@ -16720,11 +16720,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -16773,20 +16773,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -16801,11 +16801,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 258 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 242 }, { @@ -16823,7 +16823,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 250 }, { @@ -16831,7 +16831,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 250 }, { @@ -16887,70 +16887,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 247.528 }, { @@ -16958,7 +16958,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1818 }, @@ -16987,11 +16987,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -17040,20 +17040,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -17068,11 +17068,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 258 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 242 }, { @@ -17090,7 +17090,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 250 }, { @@ -17098,7 +17098,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 250 }, { @@ -17154,70 +17154,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 247.528 }, { @@ -17225,7 +17225,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1848 }, @@ -17254,11 +17254,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -17307,20 +17307,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -17339,7 +17339,7 @@ "y": 258 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 242 }, { @@ -17357,7 +17357,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 250 }, { @@ -17365,7 +17365,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 250 }, { @@ -17428,56 +17428,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 243.528 }, { @@ -17492,7 +17492,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1878 }, @@ -17521,11 +17521,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -17574,20 +17574,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -17602,7 +17602,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 258 }, { @@ -17688,7 +17688,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 252.472 }, { @@ -17751,7 +17751,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 247.528 }, { @@ -17759,7 +17759,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1908 }, @@ -17788,11 +17788,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -17841,20 +17841,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -17869,11 +17869,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 258 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 242 }, { @@ -17891,7 +17891,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 250 }, { @@ -17899,7 +17899,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 250 }, { @@ -17955,70 +17955,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 247.528 }, { @@ -18026,7 +18026,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1938 }, @@ -18055,11 +18055,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -18108,20 +18108,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -18136,11 +18136,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 258 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 242 }, { @@ -18158,7 +18158,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 250 }, { @@ -18166,7 +18166,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 250 }, { @@ -18222,70 +18222,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 252.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 256.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 258 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 256.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 252.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 247.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 243.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 242 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 243.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 247.528 }, { @@ -18293,7 +18293,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1968 }, @@ -18322,11 +18322,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -18375,20 +18375,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -18560,7 +18560,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1998 }, @@ -18589,11 +18589,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -18642,20 +18642,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -18670,7 +18670,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 279 }, { @@ -18756,7 +18756,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 273.472 }, { @@ -18819,7 +18819,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 268.528 }, { @@ -18827,7 +18827,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2028 }, @@ -18856,11 +18856,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -18909,20 +18909,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -18937,11 +18937,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 279 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 263 }, { @@ -18959,7 +18959,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 271 }, { @@ -18967,7 +18967,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 271 }, { @@ -19023,70 +19023,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 268.528 }, { @@ -19094,7 +19094,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2058 }, @@ -19123,11 +19123,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -19176,20 +19176,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -19204,7 +19204,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 279 }, { @@ -19226,7 +19226,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 271 }, { @@ -19234,7 +19234,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 271 }, { @@ -19290,7 +19290,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 273.472 }, { @@ -19304,14 +19304,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 277.472 }, { @@ -19332,14 +19332,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 263 }, { @@ -19353,7 +19353,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 268.528 }, { @@ -19361,7 +19361,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2088 }, @@ -19390,11 +19390,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -19443,20 +19443,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -19471,11 +19471,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 279 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 263 }, { @@ -19493,7 +19493,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 271 }, { @@ -19501,7 +19501,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 271 }, { @@ -19557,70 +19557,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 268.528 }, { @@ -19628,7 +19628,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2118 }, @@ -19657,11 +19657,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -19710,20 +19710,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -19738,11 +19738,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 279 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 263 }, { @@ -19760,7 +19760,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 271 }, { @@ -19768,7 +19768,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 271 }, { @@ -19824,70 +19824,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 268.528 }, { @@ -19895,7 +19895,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2148 }, @@ -19924,11 +19924,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -19977,20 +19977,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -20005,11 +20005,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 279 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 263 }, { @@ -20027,7 +20027,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 271 }, { @@ -20035,7 +20035,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 271 }, { @@ -20091,70 +20091,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 268.528 }, { @@ -20162,7 +20162,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2178 }, @@ -20191,11 +20191,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -20244,20 +20244,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -20272,11 +20272,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 279 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 263 }, { @@ -20294,7 +20294,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 271 }, { @@ -20302,7 +20302,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 271 }, { @@ -20358,70 +20358,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 268.528 }, { @@ -20429,7 +20429,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2208 }, @@ -20458,11 +20458,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -20511,20 +20511,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -20539,11 +20539,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 279 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 263 }, { @@ -20561,7 +20561,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 271 }, { @@ -20569,7 +20569,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 271 }, { @@ -20625,70 +20625,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 268.528 }, { @@ -20696,7 +20696,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2238 }, @@ -20725,11 +20725,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -20778,20 +20778,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -20806,11 +20806,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 279 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 263 }, { @@ -20828,7 +20828,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 271 }, { @@ -20836,7 +20836,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 271 }, { @@ -20892,70 +20892,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 268.528 }, { @@ -20963,7 +20963,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2268 }, @@ -20992,11 +20992,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -21045,20 +21045,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -21073,11 +21073,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 279 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 263 }, { @@ -21095,7 +21095,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 271 }, { @@ -21103,7 +21103,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 271 }, { @@ -21159,70 +21159,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 268.528 }, { @@ -21230,7 +21230,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2298 }, @@ -21259,11 +21259,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -21312,20 +21312,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -21340,11 +21340,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 279 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 263 }, { @@ -21362,7 +21362,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 271 }, { @@ -21370,7 +21370,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 271 }, { @@ -21426,70 +21426,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 268.528 }, { @@ -21497,7 +21497,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2328 }, @@ -21526,11 +21526,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -21579,20 +21579,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -21607,11 +21607,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 279 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 263 }, { @@ -21629,7 +21629,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 271 }, { @@ -21637,7 +21637,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 271 }, { @@ -21693,70 +21693,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 268.528 }, { @@ -21764,7 +21764,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2358 }, @@ -21793,11 +21793,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -21846,20 +21846,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -21874,11 +21874,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 279 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 263 }, { @@ -21896,7 +21896,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 271 }, { @@ -21904,7 +21904,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 271 }, { @@ -21960,70 +21960,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 268.528 }, { @@ -22031,7 +22031,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2388 }, @@ -22060,11 +22060,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -22113,20 +22113,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -22141,11 +22141,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 279 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 263 }, { @@ -22163,7 +22163,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 271 }, { @@ -22171,7 +22171,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 271 }, { @@ -22227,70 +22227,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 268.528 }, { @@ -22298,7 +22298,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2418 }, @@ -22327,11 +22327,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -22380,20 +22380,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -22408,11 +22408,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 279 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 263 }, { @@ -22430,7 +22430,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 271 }, { @@ -22438,7 +22438,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 271 }, { @@ -22494,70 +22494,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 268.528 }, { @@ -22565,7 +22565,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2448 }, @@ -22594,11 +22594,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -22647,20 +22647,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -22679,7 +22679,7 @@ "y": 279 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 263 }, { @@ -22697,7 +22697,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 271 }, { @@ -22705,7 +22705,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 271 }, { @@ -22768,56 +22768,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 264.528 }, { @@ -22832,7 +22832,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2478 }, @@ -22861,11 +22861,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -22914,20 +22914,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -22942,7 +22942,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 279 }, { @@ -23028,7 +23028,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 273.472 }, { @@ -23091,7 +23091,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 268.528 }, { @@ -23099,7 +23099,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2508 }, @@ -23128,11 +23128,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -23181,20 +23181,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -23209,11 +23209,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 279 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 263 }, { @@ -23231,7 +23231,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 271 }, { @@ -23239,7 +23239,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 271 }, { @@ -23295,70 +23295,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 268.528 }, { @@ -23366,7 +23366,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2538 }, @@ -23395,11 +23395,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -23448,20 +23448,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -23476,11 +23476,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 279 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 263 }, { @@ -23498,7 +23498,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 271 }, { @@ -23506,7 +23506,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 271 }, { @@ -23562,70 +23562,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 273.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 277.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 279 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 277.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 273.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 268.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 264.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 263 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 264.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 268.528 }, { @@ -23633,7 +23633,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2568 }, @@ -23662,11 +23662,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -23715,20 +23715,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -23900,7 +23900,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2598 }, @@ -23929,11 +23929,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -23982,20 +23982,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -24010,7 +24010,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 300 }, { @@ -24096,7 +24096,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 294.472 }, { @@ -24159,7 +24159,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 289.528 }, { @@ -24167,7 +24167,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2628 }, @@ -24196,11 +24196,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -24249,20 +24249,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -24277,11 +24277,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 300 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 284 }, { @@ -24299,7 +24299,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 292 }, { @@ -24307,7 +24307,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 292 }, { @@ -24363,70 +24363,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 289.528 }, { @@ -24434,7 +24434,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2658 }, @@ -24463,11 +24463,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -24516,20 +24516,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -24544,7 +24544,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 300 }, { @@ -24566,7 +24566,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 292 }, { @@ -24574,7 +24574,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 292 }, { @@ -24630,7 +24630,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 294.472 }, { @@ -24644,14 +24644,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 298.472 }, { @@ -24672,14 +24672,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 284 }, { @@ -24693,7 +24693,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 289.528 }, { @@ -24701,7 +24701,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2688 }, @@ -24730,11 +24730,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -24783,20 +24783,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -24811,11 +24811,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 300 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 284 }, { @@ -24833,7 +24833,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 292 }, { @@ -24841,7 +24841,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 292 }, { @@ -24897,70 +24897,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 289.528 }, { @@ -24968,7 +24968,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2718 }, @@ -24997,11 +24997,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -25050,20 +25050,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -25078,11 +25078,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 300 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 284 }, { @@ -25100,7 +25100,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 292 }, { @@ -25108,7 +25108,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 292 }, { @@ -25164,70 +25164,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 289.528 }, { @@ -25235,7 +25235,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2748 }, @@ -25264,11 +25264,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -25317,20 +25317,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -25345,11 +25345,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 300 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 284 }, { @@ -25367,7 +25367,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 292 }, { @@ -25375,7 +25375,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 292 }, { @@ -25431,70 +25431,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 289.528 }, { @@ -25502,7 +25502,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2778 }, @@ -25531,11 +25531,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -25584,20 +25584,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -25612,11 +25612,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 300 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 284 }, { @@ -25634,7 +25634,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 292 }, { @@ -25642,7 +25642,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 292 }, { @@ -25698,70 +25698,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 289.528 }, { @@ -25769,7 +25769,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2808 }, @@ -25798,11 +25798,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -25851,20 +25851,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -25879,11 +25879,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 300 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 284 }, { @@ -25901,7 +25901,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 292 }, { @@ -25909,7 +25909,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 292 }, { @@ -25965,70 +25965,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 289.528 }, { @@ -26036,7 +26036,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2838 }, @@ -26065,11 +26065,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -26118,20 +26118,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -26146,11 +26146,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 300 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 284 }, { @@ -26168,7 +26168,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 292 }, { @@ -26176,7 +26176,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 292 }, { @@ -26232,70 +26232,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 289.528 }, { @@ -26303,7 +26303,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2868 }, @@ -26332,11 +26332,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -26385,20 +26385,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -26413,11 +26413,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 300 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 284 }, { @@ -26435,7 +26435,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 292 }, { @@ -26443,7 +26443,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 292 }, { @@ -26499,70 +26499,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 289.528 }, { @@ -26570,7 +26570,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2898 }, @@ -26599,11 +26599,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -26652,20 +26652,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -26680,11 +26680,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 300 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 284 }, { @@ -26702,7 +26702,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 292 }, { @@ -26710,7 +26710,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 292 }, { @@ -26766,70 +26766,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 289.528 }, { @@ -26837,7 +26837,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2928 }, @@ -26866,11 +26866,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -26919,20 +26919,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -26947,11 +26947,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 300 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 284 }, { @@ -26969,7 +26969,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 292 }, { @@ -26977,7 +26977,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 292 }, { @@ -27033,70 +27033,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 289.528 }, { @@ -27104,7 +27104,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2958 }, @@ -27133,11 +27133,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -27186,20 +27186,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -27214,11 +27214,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 300 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 284 }, { @@ -27236,7 +27236,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 292 }, { @@ -27244,7 +27244,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 292 }, { @@ -27300,70 +27300,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 289.528 }, { @@ -27371,7 +27371,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2988 }, @@ -27400,11 +27400,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -27453,20 +27453,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -27481,11 +27481,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 300 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 284 }, { @@ -27503,7 +27503,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 292 }, { @@ -27511,7 +27511,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 292 }, { @@ -27567,70 +27567,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 289.528 }, { @@ -27638,7 +27638,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3018 }, @@ -27667,11 +27667,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -27720,20 +27720,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -27748,11 +27748,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 300 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 284 }, { @@ -27770,7 +27770,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 292 }, { @@ -27778,7 +27778,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 292 }, { @@ -27834,70 +27834,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 289.528 }, { @@ -27905,7 +27905,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3048 }, @@ -27934,11 +27934,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -27987,20 +27987,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -28019,7 +28019,7 @@ "y": 300 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 284 }, { @@ -28037,7 +28037,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 292 }, { @@ -28045,7 +28045,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 292 }, { @@ -28108,56 +28108,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 285.528 }, { @@ -28172,7 +28172,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3078 }, @@ -28201,11 +28201,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -28254,20 +28254,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -28282,7 +28282,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 300 }, { @@ -28368,7 +28368,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 294.472 }, { @@ -28431,7 +28431,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 289.528 }, { @@ -28439,7 +28439,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3108 }, @@ -28468,11 +28468,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -28521,20 +28521,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -28549,11 +28549,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 300 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 284 }, { @@ -28571,7 +28571,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 292 }, { @@ -28579,7 +28579,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 292 }, { @@ -28635,70 +28635,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 289.528 }, { @@ -28706,7 +28706,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3138 }, @@ -28735,11 +28735,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -28788,20 +28788,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -28816,11 +28816,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 300 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 284 }, { @@ -28838,7 +28838,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 292 }, { @@ -28846,7 +28846,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 292 }, { @@ -28902,70 +28902,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 294.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 298.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 300 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 298.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 294.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 289.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 285.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 284 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 285.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 289.528 }, { @@ -28973,7 +28973,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3168 }, @@ -29002,11 +29002,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -29055,20 +29055,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -29240,7 +29240,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3198 }, @@ -29269,11 +29269,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -29322,20 +29322,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -29350,7 +29350,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 321 }, { @@ -29436,7 +29436,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 315.472 }, { @@ -29499,7 +29499,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 310.528 }, { @@ -29507,7 +29507,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3228 }, @@ -29536,11 +29536,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -29589,20 +29589,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -29617,11 +29617,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 321 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 305 }, { @@ -29639,7 +29639,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 313 }, { @@ -29647,7 +29647,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 313 }, { @@ -29703,70 +29703,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 310.528 }, { @@ -29774,7 +29774,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3258 }, @@ -29803,11 +29803,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -29856,20 +29856,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -29884,7 +29884,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 321 }, { @@ -29906,7 +29906,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 313 }, { @@ -29914,7 +29914,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 313 }, { @@ -29970,7 +29970,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 315.472 }, { @@ -29984,14 +29984,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 319.472 }, { @@ -30012,14 +30012,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 305 }, { @@ -30033,7 +30033,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 310.528 }, { @@ -30041,7 +30041,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3288 }, @@ -30070,11 +30070,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -30123,20 +30123,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -30151,11 +30151,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 321 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 305 }, { @@ -30173,7 +30173,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 313 }, { @@ -30181,7 +30181,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 313 }, { @@ -30237,70 +30237,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 310.528 }, { @@ -30308,7 +30308,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3318 }, @@ -30337,11 +30337,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -30390,20 +30390,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -30418,11 +30418,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 321 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 305 }, { @@ -30440,7 +30440,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 313 }, { @@ -30448,7 +30448,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 313 }, { @@ -30504,70 +30504,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 310.528 }, { @@ -30575,7 +30575,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3348 }, @@ -30604,11 +30604,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -30657,20 +30657,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -30685,11 +30685,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 321 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 305 }, { @@ -30707,7 +30707,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 313 }, { @@ -30715,7 +30715,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 313 }, { @@ -30771,70 +30771,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 310.528 }, { @@ -30842,7 +30842,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3378 }, @@ -30871,11 +30871,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -30924,20 +30924,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -30952,11 +30952,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 321 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 305 }, { @@ -30974,7 +30974,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 313 }, { @@ -30982,7 +30982,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 313 }, { @@ -31038,70 +31038,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 310.528 }, { @@ -31109,7 +31109,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3408 }, @@ -31138,11 +31138,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -31191,20 +31191,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -31219,11 +31219,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 321 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 305 }, { @@ -31241,7 +31241,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 313 }, { @@ -31249,7 +31249,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 313 }, { @@ -31305,70 +31305,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 310.528 }, { @@ -31376,7 +31376,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3438 }, @@ -31405,11 +31405,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -31458,20 +31458,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -31486,11 +31486,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 321 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 305 }, { @@ -31508,7 +31508,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 313 }, { @@ -31516,7 +31516,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 313 }, { @@ -31572,70 +31572,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 310.528 }, { @@ -31643,7 +31643,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3468 }, @@ -31672,11 +31672,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -31725,20 +31725,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -31753,11 +31753,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 321 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 305 }, { @@ -31775,7 +31775,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 313 }, { @@ -31783,7 +31783,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 313 }, { @@ -31839,70 +31839,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 310.528 }, { @@ -31910,7 +31910,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3498 }, @@ -31939,11 +31939,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -31992,20 +31992,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -32020,11 +32020,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 321 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 305 }, { @@ -32042,7 +32042,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 313 }, { @@ -32050,7 +32050,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 313 }, { @@ -32106,70 +32106,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 310.528 }, { @@ -32177,7 +32177,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3528 }, @@ -32206,11 +32206,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -32259,20 +32259,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -32287,11 +32287,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 321 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 305 }, { @@ -32309,7 +32309,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 313 }, { @@ -32317,7 +32317,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 313 }, { @@ -32373,70 +32373,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 310.528 }, { @@ -32444,7 +32444,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3558 }, @@ -32473,11 +32473,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -32526,20 +32526,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -32554,11 +32554,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 321 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 305 }, { @@ -32576,7 +32576,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 313 }, { @@ -32584,7 +32584,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 313 }, { @@ -32640,70 +32640,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 310.528 }, { @@ -32711,7 +32711,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3588 }, @@ -32740,11 +32740,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -32793,20 +32793,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -32821,11 +32821,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 321 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 305 }, { @@ -32843,7 +32843,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 313 }, { @@ -32851,7 +32851,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 313 }, { @@ -32907,70 +32907,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 310.528 }, { @@ -32978,7 +32978,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3618 }, @@ -33007,11 +33007,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -33060,20 +33060,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -33088,11 +33088,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 321 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 305 }, { @@ -33110,7 +33110,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 313 }, { @@ -33118,7 +33118,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 313 }, { @@ -33174,70 +33174,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 310.528 }, { @@ -33245,7 +33245,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3648 }, @@ -33274,11 +33274,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -33327,20 +33327,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -33359,7 +33359,7 @@ "y": 321 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 305 }, { @@ -33377,7 +33377,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 313 }, { @@ -33385,7 +33385,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 313 }, { @@ -33448,56 +33448,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 306.528 }, { @@ -33512,7 +33512,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3678 }, @@ -33541,11 +33541,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -33594,20 +33594,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -33622,7 +33622,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 321 }, { @@ -33708,7 +33708,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 315.472 }, { @@ -33771,7 +33771,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 310.528 }, { @@ -33779,7 +33779,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3708 }, @@ -33808,11 +33808,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -33861,20 +33861,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -33889,11 +33889,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 321 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 305 }, { @@ -33911,7 +33911,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 313 }, { @@ -33919,7 +33919,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 313 }, { @@ -33975,70 +33975,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 310.528 }, { @@ -34046,7 +34046,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3738 }, @@ -34075,11 +34075,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -34128,20 +34128,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -34156,11 +34156,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 321 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 305 }, { @@ -34178,7 +34178,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 313 }, { @@ -34186,7 +34186,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 313 }, { @@ -34242,70 +34242,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 315.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 319.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 321 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 319.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 315.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 310.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 306.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 305 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 306.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 310.528 }, { @@ -34313,7 +34313,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3768 }, @@ -34342,11 +34342,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -34395,20 +34395,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -34580,7 +34580,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3798 }, @@ -34609,11 +34609,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -34662,20 +34662,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -34690,7 +34690,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 342 }, { @@ -34776,7 +34776,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 336.472 }, { @@ -34839,7 +34839,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 331.528 }, { @@ -34847,7 +34847,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3828 }, @@ -34876,11 +34876,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -34929,20 +34929,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -34957,11 +34957,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 342 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 326 }, { @@ -34979,7 +34979,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 334 }, { @@ -34987,7 +34987,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 334 }, { @@ -35043,70 +35043,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 331.528 }, { @@ -35114,7 +35114,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3858 }, @@ -35143,11 +35143,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -35196,20 +35196,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -35224,7 +35224,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 342 }, { @@ -35246,7 +35246,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 334 }, { @@ -35254,7 +35254,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 334 }, { @@ -35310,7 +35310,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 336.472 }, { @@ -35324,14 +35324,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 340.472 }, { @@ -35352,14 +35352,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 326 }, { @@ -35373,7 +35373,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 331.528 }, { @@ -35381,7 +35381,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3888 }, @@ -35410,11 +35410,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -35463,20 +35463,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -35491,11 +35491,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 342 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 326 }, { @@ -35513,7 +35513,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 334 }, { @@ -35521,7 +35521,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 334 }, { @@ -35577,70 +35577,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 331.528 }, { @@ -35648,7 +35648,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3918 }, @@ -35677,11 +35677,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -35730,20 +35730,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -35758,11 +35758,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 342 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 326 }, { @@ -35780,7 +35780,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 334 }, { @@ -35788,7 +35788,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 334 }, { @@ -35844,70 +35844,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 331.528 }, { @@ -35915,7 +35915,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3948 }, @@ -35944,11 +35944,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -35997,20 +35997,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -36025,11 +36025,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 342 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 326 }, { @@ -36047,7 +36047,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 334 }, { @@ -36055,7 +36055,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 334 }, { @@ -36111,70 +36111,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 331.528 }, { @@ -36182,7 +36182,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3978 }, @@ -36211,11 +36211,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -36264,20 +36264,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -36292,11 +36292,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 342 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 326 }, { @@ -36314,7 +36314,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 334 }, { @@ -36322,7 +36322,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 334 }, { @@ -36378,70 +36378,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 331.528 }, { @@ -36449,7 +36449,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4008 }, @@ -36478,11 +36478,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -36531,20 +36531,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -36559,11 +36559,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 342 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 326 }, { @@ -36581,7 +36581,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 334 }, { @@ -36589,7 +36589,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 334 }, { @@ -36645,70 +36645,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 331.528 }, { @@ -36716,7 +36716,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4038 }, @@ -36745,11 +36745,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -36798,20 +36798,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -36826,11 +36826,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 342 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 326 }, { @@ -36848,7 +36848,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 334 }, { @@ -36856,7 +36856,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 334 }, { @@ -36912,70 +36912,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 331.528 }, { @@ -36983,7 +36983,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4068 }, @@ -37012,11 +37012,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -37065,20 +37065,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -37093,11 +37093,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 342 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 326 }, { @@ -37115,7 +37115,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 334 }, { @@ -37123,7 +37123,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 334 }, { @@ -37179,70 +37179,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 331.528 }, { @@ -37250,7 +37250,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4098 }, @@ -37279,11 +37279,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -37332,20 +37332,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -37360,11 +37360,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 342 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 326 }, { @@ -37382,7 +37382,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 334 }, { @@ -37390,7 +37390,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 334 }, { @@ -37446,70 +37446,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 331.528 }, { @@ -37517,7 +37517,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4128 }, @@ -37546,11 +37546,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -37599,20 +37599,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -37627,11 +37627,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 342 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 326 }, { @@ -37649,7 +37649,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 334 }, { @@ -37657,7 +37657,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 334 }, { @@ -37713,70 +37713,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 331.528 }, { @@ -37784,7 +37784,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4158 }, @@ -37813,11 +37813,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -37866,20 +37866,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -37894,11 +37894,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 342 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 326 }, { @@ -37916,7 +37916,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 334 }, { @@ -37924,7 +37924,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 334 }, { @@ -37980,70 +37980,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 331.528 }, { @@ -38051,7 +38051,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4188 }, @@ -38080,11 +38080,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -38133,20 +38133,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -38161,11 +38161,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 342 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 326 }, { @@ -38183,7 +38183,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 334 }, { @@ -38191,7 +38191,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 334 }, { @@ -38247,70 +38247,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 331.528 }, { @@ -38318,7 +38318,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4218 }, @@ -38347,11 +38347,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -38400,20 +38400,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -38428,11 +38428,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 342 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 326 }, { @@ -38450,7 +38450,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 334 }, { @@ -38458,7 +38458,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 334 }, { @@ -38514,70 +38514,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 331.528 }, { @@ -38585,7 +38585,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4248 }, @@ -38614,11 +38614,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -38667,20 +38667,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -38699,7 +38699,7 @@ "y": 342 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 326 }, { @@ -38717,7 +38717,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 334 }, { @@ -38725,7 +38725,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 334 }, { @@ -38788,56 +38788,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 327.528 }, { @@ -38852,7 +38852,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4278 }, @@ -38881,11 +38881,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -38934,20 +38934,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -38962,7 +38962,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 342 }, { @@ -39048,7 +39048,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 336.472 }, { @@ -39111,7 +39111,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 331.528 }, { @@ -39119,7 +39119,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4308 }, @@ -39148,11 +39148,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -39201,20 +39201,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -39229,11 +39229,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 342 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 326 }, { @@ -39251,7 +39251,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 334 }, { @@ -39259,7 +39259,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 334 }, { @@ -39315,70 +39315,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 331.528 }, { @@ -39386,7 +39386,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4338 }, @@ -39415,11 +39415,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -39468,20 +39468,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -39496,11 +39496,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 342 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 326 }, { @@ -39518,7 +39518,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 334 }, { @@ -39526,7 +39526,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 334 }, { @@ -39582,70 +39582,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 336.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 340.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 342 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 340.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 336.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 331.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 327.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 326 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 327.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 331.528 }, { @@ -39653,7 +39653,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4368 }, @@ -39682,11 +39682,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -39735,20 +39735,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -39920,7 +39920,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4398 }, @@ -39949,11 +39949,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -40002,20 +40002,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -40030,7 +40030,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 363 }, { @@ -40116,7 +40116,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 357.472 }, { @@ -40179,7 +40179,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 352.528 }, { @@ -40187,7 +40187,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4428 }, @@ -40216,11 +40216,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -40269,20 +40269,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -40297,11 +40297,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 363 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 347 }, { @@ -40319,7 +40319,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 355 }, { @@ -40327,7 +40327,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 355 }, { @@ -40383,70 +40383,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 352.528 }, { @@ -40454,7 +40454,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4458 }, @@ -40483,11 +40483,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -40536,20 +40536,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -40564,7 +40564,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 363 }, { @@ -40586,7 +40586,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 355 }, { @@ -40594,7 +40594,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 355 }, { @@ -40650,7 +40650,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 357.472 }, { @@ -40664,14 +40664,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 361.472 }, { @@ -40692,14 +40692,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 347 }, { @@ -40713,7 +40713,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 352.528 }, { @@ -40721,7 +40721,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4488 }, @@ -40750,11 +40750,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -40803,20 +40803,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -40831,11 +40831,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 363 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 347 }, { @@ -40853,7 +40853,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 355 }, { @@ -40861,7 +40861,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 355 }, { @@ -40917,70 +40917,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 352.528 }, { @@ -40988,7 +40988,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4518 }, @@ -41017,11 +41017,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -41070,20 +41070,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -41098,11 +41098,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 363 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 347 }, { @@ -41120,7 +41120,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 355 }, { @@ -41128,7 +41128,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 355 }, { @@ -41184,70 +41184,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 352.528 }, { @@ -41255,7 +41255,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4548 }, @@ -41284,11 +41284,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -41337,20 +41337,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -41365,11 +41365,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 363 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 347 }, { @@ -41387,7 +41387,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 355 }, { @@ -41395,7 +41395,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 355 }, { @@ -41451,70 +41451,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 352.528 }, { @@ -41522,7 +41522,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4578 }, @@ -41551,11 +41551,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -41604,20 +41604,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -41632,11 +41632,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 363 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 347 }, { @@ -41654,7 +41654,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 355 }, { @@ -41662,7 +41662,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 355 }, { @@ -41718,70 +41718,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 352.528 }, { @@ -41789,7 +41789,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4608 }, @@ -41818,11 +41818,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -41871,20 +41871,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -41899,11 +41899,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 363 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 347 }, { @@ -41921,7 +41921,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 355 }, { @@ -41929,7 +41929,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 355 }, { @@ -41985,70 +41985,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 352.528 }, { @@ -42056,7 +42056,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4638 }, @@ -42085,11 +42085,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -42138,20 +42138,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -42166,11 +42166,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 363 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 347 }, { @@ -42188,7 +42188,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 355 }, { @@ -42196,7 +42196,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 355 }, { @@ -42252,70 +42252,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 352.528 }, { @@ -42323,7 +42323,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4668 }, @@ -42352,11 +42352,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -42405,20 +42405,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -42433,11 +42433,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 363 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 347 }, { @@ -42455,7 +42455,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 355 }, { @@ -42463,7 +42463,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 355 }, { @@ -42519,70 +42519,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 352.528 }, { @@ -42590,7 +42590,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4698 }, @@ -42619,11 +42619,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -42672,20 +42672,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -42700,11 +42700,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 363 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 347 }, { @@ -42722,7 +42722,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 355 }, { @@ -42730,7 +42730,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 355 }, { @@ -42786,70 +42786,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 352.528 }, { @@ -42857,7 +42857,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4728 }, @@ -42886,11 +42886,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -42939,20 +42939,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -42967,11 +42967,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 363 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 347 }, { @@ -42989,7 +42989,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 355 }, { @@ -42997,7 +42997,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 355 }, { @@ -43053,70 +43053,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 352.528 }, { @@ -43124,7 +43124,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4758 }, @@ -43153,11 +43153,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -43206,20 +43206,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -43234,11 +43234,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 363 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 347 }, { @@ -43256,7 +43256,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 355 }, { @@ -43264,7 +43264,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 355 }, { @@ -43320,70 +43320,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 352.528 }, { @@ -43391,7 +43391,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4788 }, @@ -43420,11 +43420,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -43473,20 +43473,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -43501,11 +43501,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 363 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 347 }, { @@ -43523,7 +43523,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 355 }, { @@ -43531,7 +43531,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 355 }, { @@ -43587,70 +43587,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 352.528 }, { @@ -43658,7 +43658,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4818 }, @@ -43687,11 +43687,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -43740,20 +43740,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -43768,11 +43768,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 363 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 347 }, { @@ -43790,7 +43790,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 355 }, { @@ -43798,7 +43798,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 355 }, { @@ -43854,70 +43854,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 352.528 }, { @@ -43925,7 +43925,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4848 }, @@ -43954,11 +43954,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -44007,20 +44007,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -44039,7 +44039,7 @@ "y": 363 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 347 }, { @@ -44057,7 +44057,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 355 }, { @@ -44065,7 +44065,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 355 }, { @@ -44128,56 +44128,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 348.528 }, { @@ -44192,7 +44192,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4878 }, @@ -44221,11 +44221,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -44274,20 +44274,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -44302,7 +44302,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 363 }, { @@ -44388,7 +44388,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 357.472 }, { @@ -44451,7 +44451,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 352.528 }, { @@ -44459,7 +44459,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4908 }, @@ -44488,11 +44488,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -44541,20 +44541,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -44569,11 +44569,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 363 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 347 }, { @@ -44591,7 +44591,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 355 }, { @@ -44599,7 +44599,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 355 }, { @@ -44655,70 +44655,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 352.528 }, { @@ -44726,7 +44726,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4938 }, @@ -44755,11 +44755,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -44808,20 +44808,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -44836,11 +44836,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 363 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 347 }, { @@ -44858,7 +44858,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 355 }, { @@ -44866,7 +44866,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 355 }, { @@ -44922,70 +44922,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 357.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 361.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 363 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 361.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 357.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 352.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 348.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 347 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 348.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 352.528 }, { @@ -44993,7 +44993,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4968 }, @@ -45022,11 +45022,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -45075,20 +45075,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -45260,7 +45260,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4998 }, @@ -45289,11 +45289,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -45342,20 +45342,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -45370,7 +45370,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 384 }, { @@ -45456,7 +45456,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 378.472 }, { @@ -45519,7 +45519,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 373.528 }, { @@ -45527,7 +45527,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5028 }, @@ -45556,11 +45556,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -45609,20 +45609,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -45637,11 +45637,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 384 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 368 }, { @@ -45659,7 +45659,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 376 }, { @@ -45667,7 +45667,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 376 }, { @@ -45723,70 +45723,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 373.528 }, { @@ -45794,7 +45794,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5058 }, @@ -45823,11 +45823,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -45876,20 +45876,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -45904,7 +45904,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 384 }, { @@ -45926,7 +45926,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 376 }, { @@ -45934,7 +45934,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 376 }, { @@ -45990,7 +45990,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 378.472 }, { @@ -46004,14 +46004,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 382.472 }, { @@ -46032,14 +46032,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 368 }, { @@ -46053,7 +46053,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 373.528 }, { @@ -46061,7 +46061,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5088 }, @@ -46090,11 +46090,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -46143,20 +46143,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -46171,11 +46171,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 384 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 368 }, { @@ -46193,7 +46193,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 376 }, { @@ -46201,7 +46201,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 376 }, { @@ -46257,70 +46257,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 373.528 }, { @@ -46328,7 +46328,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5118 }, @@ -46357,11 +46357,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -46410,20 +46410,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -46438,11 +46438,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 384 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 368 }, { @@ -46460,7 +46460,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 376 }, { @@ -46468,7 +46468,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 376 }, { @@ -46524,70 +46524,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 373.528 }, { @@ -46595,7 +46595,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5148 }, @@ -46624,11 +46624,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -46677,20 +46677,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -46705,11 +46705,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 384 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 368 }, { @@ -46727,7 +46727,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 376 }, { @@ -46735,7 +46735,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 376 }, { @@ -46791,70 +46791,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 373.528 }, { @@ -46862,7 +46862,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5178 }, @@ -46891,11 +46891,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -46944,20 +46944,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -46972,11 +46972,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 384 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 368 }, { @@ -46994,7 +46994,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 376 }, { @@ -47002,7 +47002,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 376 }, { @@ -47058,70 +47058,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 373.528 }, { @@ -47129,7 +47129,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5208 }, @@ -47158,11 +47158,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -47211,20 +47211,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -47239,11 +47239,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 384 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 368 }, { @@ -47261,7 +47261,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 376 }, { @@ -47269,7 +47269,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 376 }, { @@ -47325,70 +47325,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 373.528 }, { @@ -47396,7 +47396,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5238 }, @@ -47425,11 +47425,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -47478,20 +47478,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -47506,11 +47506,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 384 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 368 }, { @@ -47528,7 +47528,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 376 }, { @@ -47536,7 +47536,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 376 }, { @@ -47592,70 +47592,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 373.528 }, { @@ -47663,7 +47663,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5268 }, @@ -47692,11 +47692,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -47745,20 +47745,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -47773,11 +47773,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 384 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 368 }, { @@ -47795,7 +47795,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 376 }, { @@ -47803,7 +47803,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 376 }, { @@ -47859,70 +47859,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 373.528 }, { @@ -47930,7 +47930,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5298 }, @@ -47959,11 +47959,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -48012,20 +48012,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -48040,11 +48040,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 384 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 368 }, { @@ -48062,7 +48062,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 376 }, { @@ -48070,7 +48070,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 376 }, { @@ -48126,70 +48126,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 373.528 }, { @@ -48197,7 +48197,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5328 }, @@ -48226,11 +48226,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -48279,20 +48279,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -48307,11 +48307,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 384 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 368 }, { @@ -48329,7 +48329,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 376 }, { @@ -48337,7 +48337,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 376 }, { @@ -48393,70 +48393,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 373.528 }, { @@ -48464,7 +48464,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5358 }, @@ -48493,11 +48493,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -48546,20 +48546,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -48574,11 +48574,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 384 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 368 }, { @@ -48596,7 +48596,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 376 }, { @@ -48604,7 +48604,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 376 }, { @@ -48660,70 +48660,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 373.528 }, { @@ -48731,7 +48731,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5388 }, @@ -48760,11 +48760,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -48813,20 +48813,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -48841,11 +48841,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 384 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 368 }, { @@ -48863,7 +48863,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 376 }, { @@ -48871,7 +48871,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 376 }, { @@ -48927,70 +48927,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 373.528 }, { @@ -48998,7 +48998,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5418 }, @@ -49027,11 +49027,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -49080,20 +49080,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -49108,11 +49108,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 384 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 368 }, { @@ -49130,7 +49130,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 376 }, { @@ -49138,7 +49138,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 376 }, { @@ -49194,70 +49194,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 373.528 }, { @@ -49265,7 +49265,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5448 }, @@ -49294,11 +49294,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -49347,20 +49347,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -49379,7 +49379,7 @@ "y": 384 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 368 }, { @@ -49397,7 +49397,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 376 }, { @@ -49405,7 +49405,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 376 }, { @@ -49468,56 +49468,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 369.528 }, { @@ -49532,7 +49532,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5478 }, @@ -49561,11 +49561,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -49614,20 +49614,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -49642,7 +49642,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 384 }, { @@ -49728,7 +49728,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 378.472 }, { @@ -49791,7 +49791,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 373.528 }, { @@ -49799,7 +49799,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5508 }, @@ -49828,11 +49828,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -49881,20 +49881,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -49909,11 +49909,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 384 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 368 }, { @@ -49931,7 +49931,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 376 }, { @@ -49939,7 +49939,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 376 }, { @@ -49995,70 +49995,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 373.528 }, { @@ -50066,7 +50066,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5538 }, @@ -50095,11 +50095,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -50148,20 +50148,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -50176,11 +50176,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 384 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 368 }, { @@ -50198,7 +50198,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 376 }, { @@ -50206,7 +50206,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 376 }, { @@ -50262,70 +50262,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 378.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 382.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 384 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 382.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 378.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 373.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 369.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 368 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 369.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 373.528 }, { @@ -50333,7 +50333,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5568 }, @@ -50362,11 +50362,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -50415,20 +50415,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -50600,7 +50600,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5598 }, @@ -50629,11 +50629,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -50682,20 +50682,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -50710,7 +50710,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 405 }, { @@ -50796,7 +50796,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 399.472 }, { @@ -50859,7 +50859,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 394.528 }, { @@ -50867,7 +50867,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5628 }, @@ -50896,11 +50896,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -50949,20 +50949,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -50977,11 +50977,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 405 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 389 }, { @@ -50999,7 +50999,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 397 }, { @@ -51007,7 +51007,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 397 }, { @@ -51063,70 +51063,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 394.528 }, { @@ -51134,7 +51134,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5658 }, @@ -51163,11 +51163,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -51216,20 +51216,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -51244,7 +51244,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 405 }, { @@ -51266,7 +51266,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 397 }, { @@ -51274,7 +51274,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 397 }, { @@ -51330,7 +51330,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 399.472 }, { @@ -51344,14 +51344,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 403.472 }, { @@ -51372,14 +51372,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 389 }, { @@ -51393,7 +51393,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 394.528 }, { @@ -51401,7 +51401,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5688 }, @@ -51430,11 +51430,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -51483,20 +51483,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -51511,11 +51511,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 405 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 389 }, { @@ -51533,7 +51533,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 397 }, { @@ -51541,7 +51541,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 397 }, { @@ -51597,70 +51597,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 394.528 }, { @@ -51668,7 +51668,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5718 }, @@ -51697,11 +51697,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -51750,20 +51750,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -51778,11 +51778,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 405 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 389 }, { @@ -51800,7 +51800,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 397 }, { @@ -51808,7 +51808,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 397 }, { @@ -51864,70 +51864,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 394.528 }, { @@ -51935,7 +51935,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5748 }, @@ -51964,11 +51964,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -52017,20 +52017,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -52045,11 +52045,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 405 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 389 }, { @@ -52067,7 +52067,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 397 }, { @@ -52075,7 +52075,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 397 }, { @@ -52131,70 +52131,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 394.528 }, { @@ -52202,7 +52202,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5778 }, @@ -52231,11 +52231,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -52284,20 +52284,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -52312,11 +52312,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 405 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 389 }, { @@ -52334,7 +52334,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 397 }, { @@ -52342,7 +52342,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 397 }, { @@ -52398,70 +52398,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 394.528 }, { @@ -52469,7 +52469,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5808 }, @@ -52498,11 +52498,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -52551,20 +52551,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -52579,11 +52579,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 405 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 389 }, { @@ -52601,7 +52601,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 397 }, { @@ -52609,7 +52609,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 397 }, { @@ -52665,70 +52665,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 394.528 }, { @@ -52736,7 +52736,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5838 }, @@ -52765,11 +52765,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -52818,20 +52818,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -52846,11 +52846,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 405 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 389 }, { @@ -52868,7 +52868,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 397 }, { @@ -52876,7 +52876,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 397 }, { @@ -52932,70 +52932,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 394.528 }, { @@ -53003,7 +53003,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5868 }, @@ -53032,11 +53032,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -53085,20 +53085,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -53113,11 +53113,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 405 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 389 }, { @@ -53135,7 +53135,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 397 }, { @@ -53143,7 +53143,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 397 }, { @@ -53199,70 +53199,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 394.528 }, { @@ -53270,7 +53270,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5898 }, @@ -53299,11 +53299,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -53352,20 +53352,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -53380,11 +53380,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 405 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 389 }, { @@ -53402,7 +53402,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 397 }, { @@ -53410,7 +53410,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 397 }, { @@ -53466,70 +53466,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 394.528 }, { @@ -53537,7 +53537,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5928 }, @@ -53566,11 +53566,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -53619,20 +53619,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -53647,11 +53647,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 405 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 389 }, { @@ -53669,7 +53669,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 397 }, { @@ -53677,7 +53677,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 397 }, { @@ -53733,70 +53733,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 394.528 }, { @@ -53804,7 +53804,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5958 }, @@ -53833,11 +53833,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -53886,20 +53886,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -53914,11 +53914,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 405 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 389 }, { @@ -53936,7 +53936,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 397 }, { @@ -53944,7 +53944,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 397 }, { @@ -54000,70 +54000,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 394.528 }, { @@ -54071,7 +54071,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5988 }, @@ -54100,11 +54100,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -54153,20 +54153,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -54181,11 +54181,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 405 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 389 }, { @@ -54203,7 +54203,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 397 }, { @@ -54211,7 +54211,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 397 }, { @@ -54267,70 +54267,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 394.528 }, { @@ -54338,7 +54338,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6018 }, @@ -54367,11 +54367,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -54420,20 +54420,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -54448,11 +54448,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 405 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 389 }, { @@ -54470,7 +54470,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 397 }, { @@ -54478,7 +54478,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 397 }, { @@ -54534,70 +54534,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 394.528 }, { @@ -54605,7 +54605,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6048 }, @@ -54634,11 +54634,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -54687,20 +54687,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -54719,7 +54719,7 @@ "y": 405 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 389 }, { @@ -54737,7 +54737,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 397 }, { @@ -54745,7 +54745,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 397 }, { @@ -54808,56 +54808,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 390.528 }, { @@ -54872,7 +54872,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6078 }, @@ -54901,11 +54901,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -54954,20 +54954,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -54982,7 +54982,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 405 }, { @@ -55068,7 +55068,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 399.472 }, { @@ -55131,7 +55131,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 394.528 }, { @@ -55139,7 +55139,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6108 }, @@ -55168,11 +55168,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -55221,20 +55221,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -55249,11 +55249,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 405 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 389 }, { @@ -55271,7 +55271,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 397 }, { @@ -55279,7 +55279,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 397 }, { @@ -55335,70 +55335,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 394.528 }, { @@ -55406,7 +55406,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6138 }, @@ -55435,11 +55435,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -55488,20 +55488,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -55516,11 +55516,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 405 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 389 }, { @@ -55538,7 +55538,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 397 }, { @@ -55546,7 +55546,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 397 }, { @@ -55602,70 +55602,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 399.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 403.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 405 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 403.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 399.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 394.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 390.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 389 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 390.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 394.528 }, { @@ -55673,7 +55673,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6168 }, @@ -55702,11 +55702,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -55755,20 +55755,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -55940,7 +55940,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6198 }, @@ -55969,11 +55969,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -56022,20 +56022,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -56050,7 +56050,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 426 }, { @@ -56136,7 +56136,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 420.472 }, { @@ -56199,7 +56199,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 415.528 }, { @@ -56207,7 +56207,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6228 }, @@ -56236,11 +56236,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -56289,20 +56289,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -56317,11 +56317,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 426 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 410 }, { @@ -56339,7 +56339,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 418 }, { @@ -56347,7 +56347,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 418 }, { @@ -56403,70 +56403,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 415.528 }, { @@ -56474,7 +56474,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6258 }, @@ -56503,11 +56503,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -56556,20 +56556,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -56584,7 +56584,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 426 }, { @@ -56606,7 +56606,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 418 }, { @@ -56614,7 +56614,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 418 }, { @@ -56670,7 +56670,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 420.472 }, { @@ -56684,14 +56684,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 424.472 }, { @@ -56712,14 +56712,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 410 }, { @@ -56733,7 +56733,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 415.528 }, { @@ -56741,7 +56741,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6288 }, @@ -56770,11 +56770,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -56823,20 +56823,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -56851,11 +56851,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 426 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 410 }, { @@ -56873,7 +56873,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 418 }, { @@ -56881,7 +56881,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 418 }, { @@ -56937,70 +56937,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 415.528 }, { @@ -57008,7 +57008,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6318 }, @@ -57037,11 +57037,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -57090,20 +57090,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -57118,11 +57118,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 426 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 410 }, { @@ -57140,7 +57140,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 418 }, { @@ -57148,7 +57148,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 418 }, { @@ -57204,70 +57204,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 415.528 }, { @@ -57275,7 +57275,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6348 }, @@ -57304,11 +57304,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -57357,20 +57357,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -57385,11 +57385,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 426 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 410 }, { @@ -57407,7 +57407,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 418 }, { @@ -57415,7 +57415,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 418 }, { @@ -57471,70 +57471,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 415.528 }, { @@ -57542,7 +57542,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6378 }, @@ -57571,11 +57571,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -57624,20 +57624,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -57652,11 +57652,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 426 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 410 }, { @@ -57674,7 +57674,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 418 }, { @@ -57682,7 +57682,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 418 }, { @@ -57738,70 +57738,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 415.528 }, { @@ -57809,7 +57809,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6408 }, @@ -57838,11 +57838,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -57891,20 +57891,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -57919,11 +57919,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 426 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 410 }, { @@ -57941,7 +57941,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 418 }, { @@ -57949,7 +57949,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 418 }, { @@ -58005,70 +58005,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 415.528 }, { @@ -58076,7 +58076,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6438 }, @@ -58105,11 +58105,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -58158,20 +58158,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -58186,11 +58186,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 426 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 410 }, { @@ -58208,7 +58208,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 418 }, { @@ -58216,7 +58216,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 418 }, { @@ -58272,70 +58272,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 415.528 }, { @@ -58343,7 +58343,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6468 }, @@ -58372,11 +58372,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -58425,20 +58425,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -58453,11 +58453,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 426 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 410 }, { @@ -58475,7 +58475,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 418 }, { @@ -58483,7 +58483,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 418 }, { @@ -58539,70 +58539,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 415.528 }, { @@ -58610,7 +58610,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6498 }, @@ -58639,11 +58639,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -58692,20 +58692,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -58720,11 +58720,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 426 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 410 }, { @@ -58742,7 +58742,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 418 }, { @@ -58750,7 +58750,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 418 }, { @@ -58806,70 +58806,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 415.528 }, { @@ -58877,7 +58877,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6528 }, @@ -58906,11 +58906,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -58959,20 +58959,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -58987,11 +58987,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 426 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 410 }, { @@ -59009,7 +59009,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 418 }, { @@ -59017,7 +59017,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 418 }, { @@ -59073,70 +59073,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 415.528 }, { @@ -59144,7 +59144,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6558 }, @@ -59173,11 +59173,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -59226,20 +59226,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -59254,11 +59254,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 426 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 410 }, { @@ -59276,7 +59276,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 418 }, { @@ -59284,7 +59284,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 418 }, { @@ -59340,70 +59340,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 415.528 }, { @@ -59411,7 +59411,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6588 }, @@ -59440,11 +59440,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -59493,20 +59493,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -59521,11 +59521,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 426 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 410 }, { @@ -59543,7 +59543,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 418 }, { @@ -59551,7 +59551,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 418 }, { @@ -59607,70 +59607,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 415.528 }, { @@ -59678,7 +59678,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6618 }, @@ -59707,11 +59707,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -59760,20 +59760,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -59788,11 +59788,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 426 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 410 }, { @@ -59810,7 +59810,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 418 }, { @@ -59818,7 +59818,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 418 }, { @@ -59874,70 +59874,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 415.528 }, { @@ -59945,7 +59945,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6648 }, @@ -59974,11 +59974,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -60027,20 +60027,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -60059,7 +60059,7 @@ "y": 426 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 410 }, { @@ -60077,7 +60077,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 418 }, { @@ -60085,7 +60085,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 418 }, { @@ -60148,56 +60148,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 411.528 }, { @@ -60212,7 +60212,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6678 }, @@ -60241,11 +60241,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -60294,20 +60294,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -60322,7 +60322,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 426 }, { @@ -60408,7 +60408,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 420.472 }, { @@ -60471,7 +60471,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 415.528 }, { @@ -60479,7 +60479,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6708 }, @@ -60508,11 +60508,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -60561,20 +60561,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -60589,11 +60589,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 426 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 410 }, { @@ -60611,7 +60611,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 418 }, { @@ -60619,7 +60619,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 418 }, { @@ -60675,70 +60675,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 415.528 }, { @@ -60746,7 +60746,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6738 }, @@ -60775,11 +60775,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -60828,20 +60828,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -60856,11 +60856,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 426 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 410 }, { @@ -60878,7 +60878,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 418 }, { @@ -60886,7 +60886,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 418 }, { @@ -60942,70 +60942,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 420.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 424.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 426 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 424.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 420.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 415.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 411.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 410 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 411.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 415.528 }, { @@ -61013,7 +61013,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6768 }, @@ -61042,11 +61042,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -61095,20 +61095,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -61280,7 +61280,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6798 }, @@ -61309,11 +61309,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -61362,20 +61362,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -61390,7 +61390,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 447 }, { @@ -61476,7 +61476,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 441.472 }, { @@ -61539,7 +61539,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 436.528 }, { @@ -61547,7 +61547,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6828 }, @@ -61576,11 +61576,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -61629,20 +61629,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -61657,11 +61657,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 447 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 431 }, { @@ -61679,7 +61679,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 439 }, { @@ -61687,7 +61687,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 439 }, { @@ -61743,70 +61743,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 436.528 }, { @@ -61814,7 +61814,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6858 }, @@ -61843,11 +61843,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -61896,20 +61896,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -61924,7 +61924,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 447 }, { @@ -61946,7 +61946,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 439 }, { @@ -61954,7 +61954,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 439 }, { @@ -62010,7 +62010,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 441.472 }, { @@ -62024,14 +62024,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 445.472 }, { @@ -62052,14 +62052,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 431 }, { @@ -62073,7 +62073,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 436.528 }, { @@ -62081,7 +62081,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6888 }, @@ -62110,11 +62110,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -62163,20 +62163,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -62191,11 +62191,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 447 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 431 }, { @@ -62213,7 +62213,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 439 }, { @@ -62221,7 +62221,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 439 }, { @@ -62277,70 +62277,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 436.528 }, { @@ -62348,7 +62348,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6918 }, @@ -62377,11 +62377,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -62430,20 +62430,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -62458,11 +62458,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 447 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 431 }, { @@ -62480,7 +62480,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 439 }, { @@ -62488,7 +62488,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 439 }, { @@ -62544,70 +62544,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 436.528 }, { @@ -62615,7 +62615,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6948 }, @@ -62644,11 +62644,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -62697,20 +62697,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -62725,11 +62725,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 447 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 431 }, { @@ -62747,7 +62747,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 439 }, { @@ -62755,7 +62755,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 439 }, { @@ -62811,70 +62811,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 436.528 }, { @@ -62882,7 +62882,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6978 }, @@ -62911,11 +62911,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -62964,20 +62964,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -62992,11 +62992,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 447 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 431 }, { @@ -63014,7 +63014,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 439 }, { @@ -63022,7 +63022,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 439 }, { @@ -63078,70 +63078,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 436.528 }, { @@ -63149,7 +63149,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7008 }, @@ -63178,11 +63178,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -63231,20 +63231,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -63259,11 +63259,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 447 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 431 }, { @@ -63281,7 +63281,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 439 }, { @@ -63289,7 +63289,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 439 }, { @@ -63345,70 +63345,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 436.528 }, { @@ -63416,7 +63416,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7038 }, @@ -63445,11 +63445,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -63498,20 +63498,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -63526,11 +63526,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 447 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 431 }, { @@ -63548,7 +63548,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 439 }, { @@ -63556,7 +63556,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 439 }, { @@ -63612,70 +63612,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 436.528 }, { @@ -63683,7 +63683,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7068 }, @@ -63712,11 +63712,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -63765,20 +63765,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -63793,11 +63793,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 447 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 431 }, { @@ -63815,7 +63815,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 439 }, { @@ -63823,7 +63823,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 439 }, { @@ -63879,70 +63879,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 436.528 }, { @@ -63950,7 +63950,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7098 }, @@ -63979,11 +63979,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -64032,20 +64032,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -64060,11 +64060,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 447 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 431 }, { @@ -64082,7 +64082,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 439 }, { @@ -64090,7 +64090,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 439 }, { @@ -64146,70 +64146,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 436.528 }, { @@ -64217,7 +64217,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7128 }, @@ -64246,11 +64246,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -64299,20 +64299,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -64327,11 +64327,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 447 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 431 }, { @@ -64349,7 +64349,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 439 }, { @@ -64357,7 +64357,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 439 }, { @@ -64413,70 +64413,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 436.528 }, { @@ -64484,7 +64484,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7158 }, @@ -64513,11 +64513,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -64566,20 +64566,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -64594,11 +64594,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 447 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 431 }, { @@ -64616,7 +64616,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 439 }, { @@ -64624,7 +64624,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 439 }, { @@ -64680,70 +64680,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 436.528 }, { @@ -64751,7 +64751,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7188 }, @@ -64780,11 +64780,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -64833,20 +64833,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -64861,11 +64861,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 447 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 431 }, { @@ -64883,7 +64883,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 439 }, { @@ -64891,7 +64891,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 439 }, { @@ -64947,70 +64947,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 436.528 }, { @@ -65018,7 +65018,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7218 }, @@ -65047,11 +65047,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -65100,20 +65100,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -65128,11 +65128,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 447 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 431 }, { @@ -65150,7 +65150,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 439 }, { @@ -65158,7 +65158,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 439 }, { @@ -65214,70 +65214,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 436.528 }, { @@ -65285,7 +65285,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7248 }, @@ -65314,11 +65314,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -65367,20 +65367,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -65399,7 +65399,7 @@ "y": 447 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 431 }, { @@ -65417,7 +65417,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 439 }, { @@ -65425,7 +65425,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 439 }, { @@ -65488,56 +65488,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 432.528 }, { @@ -65552,7 +65552,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7278 }, @@ -65581,11 +65581,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -65634,20 +65634,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -65662,7 +65662,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 447 }, { @@ -65748,7 +65748,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 441.472 }, { @@ -65811,7 +65811,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 436.528 }, { @@ -65819,7 +65819,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7308 }, @@ -65848,11 +65848,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -65901,20 +65901,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -65929,11 +65929,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 447 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 431 }, { @@ -65951,7 +65951,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 439 }, { @@ -65959,7 +65959,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 439 }, { @@ -66015,70 +66015,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 436.528 }, { @@ -66086,7 +66086,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7338 }, @@ -66115,11 +66115,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -66168,20 +66168,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -66196,11 +66196,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 447 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 431 }, { @@ -66218,7 +66218,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 439 }, { @@ -66226,7 +66226,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 439 }, { @@ -66282,70 +66282,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 441.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 445.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 447 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 445.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 441.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 436.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 432.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 431 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 432.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 436.528 }, [], @@ -67703,7 +67703,7 @@ "bodyB": null, "id": 245, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7370 }, @@ -67737,7 +67737,7 @@ "bodyB": null, "id": 246, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7374 }, @@ -67771,7 +67771,7 @@ "bodyB": null, "id": 247, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7378 }, @@ -67805,7 +67805,7 @@ "bodyB": null, "id": 248, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7382 }, @@ -67839,7 +67839,7 @@ "bodyB": null, "id": 249, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7386 }, @@ -67873,7 +67873,7 @@ "bodyB": null, "id": 250, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7390 }, @@ -67907,7 +67907,7 @@ "bodyB": null, "id": 251, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7394 }, @@ -67941,7 +67941,7 @@ "bodyB": null, "id": 252, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7398 }, @@ -67975,7 +67975,7 @@ "bodyB": null, "id": 253, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7402 }, @@ -68009,7 +68009,7 @@ "bodyB": null, "id": 254, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7406 }, @@ -68043,7 +68043,7 @@ "bodyB": null, "id": 255, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7410 }, @@ -68077,7 +68077,7 @@ "bodyB": null, "id": 256, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7414 }, @@ -68111,7 +68111,7 @@ "bodyB": null, "id": 257, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7418 }, @@ -68145,7 +68145,7 @@ "bodyB": null, "id": 258, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7422 }, @@ -68179,7 +68179,7 @@ "bodyB": null, "id": 259, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7426 }, @@ -68213,7 +68213,7 @@ "bodyB": null, "id": 260, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 7430 }, @@ -68247,7 +68247,7 @@ "bodyB": null, "id": 261, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7434 }, @@ -68281,7 +68281,7 @@ "bodyB": null, "id": 262, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7438 }, @@ -68315,7 +68315,7 @@ "bodyB": null, "id": 263, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7442 }, @@ -68349,7 +68349,7 @@ "bodyB": null, "id": 264, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7446 }, @@ -68383,7 +68383,7 @@ "bodyB": null, "id": 265, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7450 }, @@ -68417,7 +68417,7 @@ "bodyB": null, "id": 266, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7454 }, @@ -68451,7 +68451,7 @@ "bodyB": null, "id": 267, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7458 }, @@ -68485,7 +68485,7 @@ "bodyB": null, "id": 268, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7462 }, @@ -68519,7 +68519,7 @@ "bodyB": null, "id": 269, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7466 }, @@ -68553,7 +68553,7 @@ "bodyB": null, "id": 270, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7470 }, @@ -68587,7 +68587,7 @@ "bodyB": null, "id": 271, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7474 }, @@ -68621,7 +68621,7 @@ "bodyB": null, "id": 272, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7478 }, @@ -68655,7 +68655,7 @@ "bodyB": null, "id": 273, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7482 }, @@ -68689,7 +68689,7 @@ "bodyB": null, "id": 274, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7486 }, @@ -68723,7 +68723,7 @@ "bodyB": null, "id": 275, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7490 }, @@ -68757,7 +68757,7 @@ "bodyB": null, "id": 276, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7494 }, @@ -68791,7 +68791,7 @@ "bodyB": null, "id": 277, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7498 }, @@ -68825,7 +68825,7 @@ "bodyB": null, "id": 278, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7502 }, @@ -68859,7 +68859,7 @@ "bodyB": null, "id": 279, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 7506 }, @@ -68893,7 +68893,7 @@ "bodyB": null, "id": 280, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7510 }, @@ -68927,7 +68927,7 @@ "bodyB": null, "id": 281, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7514 }, @@ -68961,7 +68961,7 @@ "bodyB": null, "id": 282, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7518 }, @@ -69675,7 +69675,7 @@ "bodyB": null, "id": 303, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7602 }, @@ -69709,7 +69709,7 @@ "bodyB": null, "id": 304, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7606 }, @@ -69743,7 +69743,7 @@ "bodyB": null, "id": 305, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7610 }, @@ -69777,7 +69777,7 @@ "bodyB": null, "id": 306, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7614 }, @@ -69811,7 +69811,7 @@ "bodyB": null, "id": 307, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7618 }, @@ -69845,7 +69845,7 @@ "bodyB": null, "id": 308, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7622 }, @@ -69879,7 +69879,7 @@ "bodyB": null, "id": 309, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7626 }, @@ -69913,7 +69913,7 @@ "bodyB": null, "id": 310, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7630 }, @@ -69947,7 +69947,7 @@ "bodyB": null, "id": 311, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7634 }, @@ -69981,7 +69981,7 @@ "bodyB": null, "id": 312, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7638 }, @@ -70015,7 +70015,7 @@ "bodyB": null, "id": 313, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7642 }, @@ -70049,7 +70049,7 @@ "bodyB": null, "id": 314, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7646 }, @@ -70083,7 +70083,7 @@ "bodyB": null, "id": 315, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7650 }, @@ -70117,7 +70117,7 @@ "bodyB": null, "id": 316, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7654 }, @@ -70151,7 +70151,7 @@ "bodyB": null, "id": 317, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7658 }, @@ -70185,7 +70185,7 @@ "bodyB": null, "id": 318, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 7662 }, @@ -70219,7 +70219,7 @@ "bodyB": null, "id": 319, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7666 }, @@ -70253,7 +70253,7 @@ "bodyB": null, "id": 320, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7670 }, @@ -70287,7 +70287,7 @@ "bodyB": null, "id": 321, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7674 }, @@ -71001,7 +71001,7 @@ "bodyB": null, "id": 342, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7758 }, @@ -71035,7 +71035,7 @@ "bodyB": null, "id": 343, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7762 }, @@ -71069,7 +71069,7 @@ "bodyB": null, "id": 344, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7766 }, @@ -71103,7 +71103,7 @@ "bodyB": null, "id": 345, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7770 }, @@ -71137,7 +71137,7 @@ "bodyB": null, "id": 346, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7774 }, @@ -71171,7 +71171,7 @@ "bodyB": null, "id": 347, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7778 }, @@ -71205,7 +71205,7 @@ "bodyB": null, "id": 348, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7782 }, @@ -71239,7 +71239,7 @@ "bodyB": null, "id": 349, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7786 }, @@ -71273,7 +71273,7 @@ "bodyB": null, "id": 350, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7790 }, @@ -71307,7 +71307,7 @@ "bodyB": null, "id": 351, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7794 }, @@ -71341,7 +71341,7 @@ "bodyB": null, "id": 352, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7798 }, @@ -71375,7 +71375,7 @@ "bodyB": null, "id": 353, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7802 }, @@ -71409,7 +71409,7 @@ "bodyB": null, "id": 354, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7806 }, @@ -71443,7 +71443,7 @@ "bodyB": null, "id": 355, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7810 }, @@ -71477,7 +71477,7 @@ "bodyB": null, "id": 356, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7814 }, @@ -71511,7 +71511,7 @@ "bodyB": null, "id": 357, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 7818 }, @@ -71545,7 +71545,7 @@ "bodyB": null, "id": 358, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7822 }, @@ -71579,7 +71579,7 @@ "bodyB": null, "id": 359, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7826 }, @@ -71613,7 +71613,7 @@ "bodyB": null, "id": 360, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7830 }, @@ -72327,7 +72327,7 @@ "bodyB": null, "id": 381, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7914 }, @@ -72361,7 +72361,7 @@ "bodyB": null, "id": 382, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7918 }, @@ -72395,7 +72395,7 @@ "bodyB": null, "id": 383, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7922 }, @@ -72429,7 +72429,7 @@ "bodyB": null, "id": 384, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7926 }, @@ -72463,7 +72463,7 @@ "bodyB": null, "id": 385, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7930 }, @@ -72497,7 +72497,7 @@ "bodyB": null, "id": 386, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7934 }, @@ -72531,7 +72531,7 @@ "bodyB": null, "id": 387, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7938 }, @@ -72565,7 +72565,7 @@ "bodyB": null, "id": 388, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7942 }, @@ -72599,7 +72599,7 @@ "bodyB": null, "id": 389, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7946 }, @@ -72633,7 +72633,7 @@ "bodyB": null, "id": 390, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7950 }, @@ -72667,7 +72667,7 @@ "bodyB": null, "id": 391, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7954 }, @@ -72701,7 +72701,7 @@ "bodyB": null, "id": 392, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7958 }, @@ -72735,7 +72735,7 @@ "bodyB": null, "id": 393, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7962 }, @@ -72769,7 +72769,7 @@ "bodyB": null, "id": 394, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7966 }, @@ -72803,7 +72803,7 @@ "bodyB": null, "id": 395, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7970 }, @@ -72837,7 +72837,7 @@ "bodyB": null, "id": 396, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 7974 }, @@ -72871,7 +72871,7 @@ "bodyB": null, "id": 397, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7978 }, @@ -72905,7 +72905,7 @@ "bodyB": null, "id": 398, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7982 }, @@ -72939,7 +72939,7 @@ "bodyB": null, "id": 399, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7986 }, @@ -73653,7 +73653,7 @@ "bodyB": null, "id": 420, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8070 }, @@ -73687,7 +73687,7 @@ "bodyB": null, "id": 421, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8074 }, @@ -73721,7 +73721,7 @@ "bodyB": null, "id": 422, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8078 }, @@ -73755,7 +73755,7 @@ "bodyB": null, "id": 423, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8082 }, @@ -73789,7 +73789,7 @@ "bodyB": null, "id": 424, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8086 }, @@ -73823,7 +73823,7 @@ "bodyB": null, "id": 425, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8090 }, @@ -73857,7 +73857,7 @@ "bodyB": null, "id": 426, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8094 }, @@ -73891,7 +73891,7 @@ "bodyB": null, "id": 427, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8098 }, @@ -73925,7 +73925,7 @@ "bodyB": null, "id": 428, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8102 }, @@ -73959,7 +73959,7 @@ "bodyB": null, "id": 429, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8106 }, @@ -73993,7 +73993,7 @@ "bodyB": null, "id": 430, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8110 }, @@ -74027,7 +74027,7 @@ "bodyB": null, "id": 431, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8114 }, @@ -74061,7 +74061,7 @@ "bodyB": null, "id": 432, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8118 }, @@ -74095,7 +74095,7 @@ "bodyB": null, "id": 433, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8122 }, @@ -74129,7 +74129,7 @@ "bodyB": null, "id": 434, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8126 }, @@ -74163,7 +74163,7 @@ "bodyB": null, "id": 435, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8130 }, @@ -74197,7 +74197,7 @@ "bodyB": null, "id": 436, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8134 }, @@ -74231,7 +74231,7 @@ "bodyB": null, "id": 437, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8138 }, @@ -74265,7 +74265,7 @@ "bodyB": null, "id": 438, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8142 }, @@ -74979,7 +74979,7 @@ "bodyB": null, "id": 459, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8226 }, @@ -75013,7 +75013,7 @@ "bodyB": null, "id": 460, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8230 }, @@ -75047,7 +75047,7 @@ "bodyB": null, "id": 461, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8234 }, @@ -75081,7 +75081,7 @@ "bodyB": null, "id": 462, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8238 }, @@ -75115,7 +75115,7 @@ "bodyB": null, "id": 463, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8242 }, @@ -75149,7 +75149,7 @@ "bodyB": null, "id": 464, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8246 }, @@ -75183,7 +75183,7 @@ "bodyB": null, "id": 465, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8250 }, @@ -75217,7 +75217,7 @@ "bodyB": null, "id": 466, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8254 }, @@ -75251,7 +75251,7 @@ "bodyB": null, "id": 467, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8258 }, @@ -75285,7 +75285,7 @@ "bodyB": null, "id": 468, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8262 }, @@ -75319,7 +75319,7 @@ "bodyB": null, "id": 469, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8266 }, @@ -75353,7 +75353,7 @@ "bodyB": null, "id": 470, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8270 }, @@ -75387,7 +75387,7 @@ "bodyB": null, "id": 471, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8274 }, @@ -75421,7 +75421,7 @@ "bodyB": null, "id": 472, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8278 }, @@ -75455,7 +75455,7 @@ "bodyB": null, "id": 473, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8282 }, @@ -75489,7 +75489,7 @@ "bodyB": null, "id": 474, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8286 }, @@ -75523,7 +75523,7 @@ "bodyB": null, "id": 475, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8290 }, @@ -75557,7 +75557,7 @@ "bodyB": null, "id": 476, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8294 }, @@ -75591,7 +75591,7 @@ "bodyB": null, "id": 477, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8298 }, @@ -76305,7 +76305,7 @@ "bodyB": null, "id": 498, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8382 }, @@ -76339,7 +76339,7 @@ "bodyB": null, "id": 499, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8386 }, @@ -76373,7 +76373,7 @@ "bodyB": null, "id": 500, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8390 }, @@ -76407,7 +76407,7 @@ "bodyB": null, "id": 501, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8394 }, @@ -76441,7 +76441,7 @@ "bodyB": null, "id": 502, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8398 }, @@ -76475,7 +76475,7 @@ "bodyB": null, "id": 503, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8402 }, @@ -76509,7 +76509,7 @@ "bodyB": null, "id": 504, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8406 }, @@ -76543,7 +76543,7 @@ "bodyB": null, "id": 505, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8410 }, @@ -76577,7 +76577,7 @@ "bodyB": null, "id": 506, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8414 }, @@ -76611,7 +76611,7 @@ "bodyB": null, "id": 507, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8418 }, @@ -76645,7 +76645,7 @@ "bodyB": null, "id": 508, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8422 }, @@ -76679,7 +76679,7 @@ "bodyB": null, "id": 509, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8426 }, @@ -76713,7 +76713,7 @@ "bodyB": null, "id": 510, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8430 }, @@ -76747,7 +76747,7 @@ "bodyB": null, "id": 511, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8434 }, @@ -76781,7 +76781,7 @@ "bodyB": null, "id": 512, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8438 }, @@ -76815,7 +76815,7 @@ "bodyB": null, "id": 513, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8442 }, @@ -76849,7 +76849,7 @@ "bodyB": null, "id": 514, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8446 }, @@ -76883,7 +76883,7 @@ "bodyB": null, "id": 515, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8450 }, @@ -76917,7 +76917,7 @@ "bodyB": null, "id": 516, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8454 }, @@ -77631,7 +77631,7 @@ "bodyB": null, "id": 537, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8538 }, @@ -77665,7 +77665,7 @@ "bodyB": null, "id": 538, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8542 }, @@ -77699,7 +77699,7 @@ "bodyB": null, "id": 539, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8546 }, @@ -77733,7 +77733,7 @@ "bodyB": null, "id": 540, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8550 }, @@ -77767,7 +77767,7 @@ "bodyB": null, "id": 541, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8554 }, @@ -77801,7 +77801,7 @@ "bodyB": null, "id": 542, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8558 }, @@ -77835,7 +77835,7 @@ "bodyB": null, "id": 543, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8562 }, @@ -77869,7 +77869,7 @@ "bodyB": null, "id": 544, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8566 }, @@ -77903,7 +77903,7 @@ "bodyB": null, "id": 545, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8570 }, @@ -77937,7 +77937,7 @@ "bodyB": null, "id": 546, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8574 }, @@ -77971,7 +77971,7 @@ "bodyB": null, "id": 547, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8578 }, @@ -78005,7 +78005,7 @@ "bodyB": null, "id": 548, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8582 }, @@ -78039,7 +78039,7 @@ "bodyB": null, "id": 549, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8586 }, @@ -78073,7 +78073,7 @@ "bodyB": null, "id": 550, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8590 }, @@ -78107,7 +78107,7 @@ "bodyB": null, "id": 551, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8594 }, @@ -78141,7 +78141,7 @@ "bodyB": null, "id": 552, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8598 }, @@ -78175,7 +78175,7 @@ "bodyB": null, "id": 553, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8602 }, @@ -78209,7 +78209,7 @@ "bodyB": null, "id": 554, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8606 }, @@ -78243,7 +78243,7 @@ "bodyB": null, "id": 555, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8610 }, @@ -78957,7 +78957,7 @@ "bodyB": null, "id": 576, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8694 }, @@ -78991,7 +78991,7 @@ "bodyB": null, "id": 577, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8698 }, @@ -79025,7 +79025,7 @@ "bodyB": null, "id": 578, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8702 }, @@ -79059,7 +79059,7 @@ "bodyB": null, "id": 579, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8706 }, @@ -79093,7 +79093,7 @@ "bodyB": null, "id": 580, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8710 }, @@ -79127,7 +79127,7 @@ "bodyB": null, "id": 581, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8714 }, @@ -79161,7 +79161,7 @@ "bodyB": null, "id": 582, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8718 }, @@ -79195,7 +79195,7 @@ "bodyB": null, "id": 583, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8722 }, @@ -79229,7 +79229,7 @@ "bodyB": null, "id": 584, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8726 }, @@ -79263,7 +79263,7 @@ "bodyB": null, "id": 585, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8730 }, @@ -79297,7 +79297,7 @@ "bodyB": null, "id": 586, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8734 }, @@ -79331,7 +79331,7 @@ "bodyB": null, "id": 587, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8738 }, @@ -79365,7 +79365,7 @@ "bodyB": null, "id": 588, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8742 }, @@ -79399,7 +79399,7 @@ "bodyB": null, "id": 589, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8746 }, @@ -79433,7 +79433,7 @@ "bodyB": null, "id": 590, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8750 }, @@ -79467,7 +79467,7 @@ "bodyB": null, "id": 591, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8754 }, @@ -79501,7 +79501,7 @@ "bodyB": null, "id": 592, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8758 }, @@ -79535,7 +79535,7 @@ "bodyB": null, "id": 593, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8762 }, @@ -79569,7 +79569,7 @@ "bodyB": null, "id": 594, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8766 }, @@ -80283,7 +80283,7 @@ "bodyB": null, "id": 615, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8850 }, @@ -80317,7 +80317,7 @@ "bodyB": null, "id": 616, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8854 }, @@ -80351,7 +80351,7 @@ "bodyB": null, "id": 617, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8858 }, @@ -80385,7 +80385,7 @@ "bodyB": null, "id": 618, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8862 }, @@ -80419,7 +80419,7 @@ "bodyB": null, "id": 619, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8866 }, @@ -80453,7 +80453,7 @@ "bodyB": null, "id": 620, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8870 }, @@ -80487,7 +80487,7 @@ "bodyB": null, "id": 621, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8874 }, @@ -80521,7 +80521,7 @@ "bodyB": null, "id": 622, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8878 }, @@ -80555,7 +80555,7 @@ "bodyB": null, "id": 623, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8882 }, @@ -80589,7 +80589,7 @@ "bodyB": null, "id": 624, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8886 }, @@ -80623,7 +80623,7 @@ "bodyB": null, "id": 625, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8890 }, @@ -80657,7 +80657,7 @@ "bodyB": null, "id": 626, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8894 }, @@ -80691,7 +80691,7 @@ "bodyB": null, "id": 627, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8898 }, @@ -80725,7 +80725,7 @@ "bodyB": null, "id": 628, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8902 }, @@ -80759,7 +80759,7 @@ "bodyB": null, "id": 629, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8906 }, @@ -80793,7 +80793,7 @@ "bodyB": null, "id": 630, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8910 }, @@ -80827,7 +80827,7 @@ "bodyB": null, "id": 631, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8914 }, @@ -80861,7 +80861,7 @@ "bodyB": null, "id": 632, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8918 }, @@ -80895,7 +80895,7 @@ "bodyB": null, "id": 633, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8922 }, @@ -81609,7 +81609,7 @@ "bodyB": null, "id": 654, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9006 }, @@ -81643,7 +81643,7 @@ "bodyB": null, "id": 655, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9010 }, @@ -81677,7 +81677,7 @@ "bodyB": null, "id": 656, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9014 }, @@ -81711,7 +81711,7 @@ "bodyB": null, "id": 657, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9018 }, @@ -81745,7 +81745,7 @@ "bodyB": null, "id": 658, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9022 }, @@ -81779,7 +81779,7 @@ "bodyB": null, "id": 659, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9026 }, @@ -81813,7 +81813,7 @@ "bodyB": null, "id": 660, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9030 }, @@ -81847,7 +81847,7 @@ "bodyB": null, "id": 661, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9034 }, @@ -81881,7 +81881,7 @@ "bodyB": null, "id": 662, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9038 }, @@ -81915,7 +81915,7 @@ "bodyB": null, "id": 663, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9042 }, @@ -81949,7 +81949,7 @@ "bodyB": null, "id": 664, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9046 }, @@ -81983,7 +81983,7 @@ "bodyB": null, "id": 665, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9050 }, @@ -82017,7 +82017,7 @@ "bodyB": null, "id": 666, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9054 }, @@ -82051,7 +82051,7 @@ "bodyB": null, "id": 667, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9058 }, @@ -82085,7 +82085,7 @@ "bodyB": null, "id": 668, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9062 }, @@ -82119,7 +82119,7 @@ "bodyB": null, "id": 669, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 9066 }, @@ -82153,7 +82153,7 @@ "bodyB": null, "id": 670, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9070 }, @@ -82187,7 +82187,7 @@ "bodyB": null, "id": 671, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9074 }, @@ -82221,7 +82221,7 @@ "bodyB": null, "id": 672, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9078 }, diff --git a/test/browser/refs/cloth/cloth-10.json b/test/browser/refs/cloth/cloth-10.json index 03285ae5..5f521249 100644 --- a/test/browser/refs/cloth/cloth-10.json +++ b/test/browser/refs/cloth/cloth-10.json @@ -866,7 +866,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 19911.024116, + "area": 19911.02412, "axes": { "#": 91 }, @@ -985,52 +985,52 @@ } ], { - "x": -0.9709333586157194, - "y": -0.2393499804203023 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854709821702762, - "y": -0.46469467366692147 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.748515380823054, - "y": -0.6631174290209226 + "x": -0.74852, + "y": -0.66312 }, { - "x": -0.5680418986705345, - "y": -0.8229996363029416 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.354604215858066, - "y": -0.9350164972318329 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.120555900025101, - "y": -0.9927065402066907 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.120555900025101, - "y": -0.9927065402066907 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.354604215858066, - "y": -0.9350164972318329 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680418986705345, - "y": -0.8229996363029416 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.748515380823054, - "y": -0.6631174290209226 + "x": 0.74852, + "y": -0.66312 }, { - "x": 0.8854709821702762, - "y": -0.46469467366692147 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709333586157194, - "y": -0.2393499804203023 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1045,7 +1045,7 @@ } }, { - "x": 379.41700000000003, + "x": 379.417, "y": 580 }, { @@ -1186,8 +1186,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 379.41700000000003, - "y": 509.64300000000003 + "x": 379.417, + "y": 509.643 }, { "body": null, @@ -1271,14 +1271,14 @@ "index": 12, "isInternal": false, "x": 220.583, - "y": 509.64300000000003 + "y": 509.643 }, { "body": null, "index": 13, "isInternal": false, "x": 220.583, - "y": 490.35699999999997 + "y": 490.357 }, { "body": null, @@ -1361,8 +1361,8 @@ "body": null, "index": 25, "isInternal": false, - "x": 379.41700000000003, - "y": 490.35699999999997 + "x": 379.417, + "y": 490.357 }, { "angle": 0, @@ -2333,7 +2333,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 174 }, @@ -2362,11 +2362,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -2418,20 +2418,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -2610,7 +2610,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 205 }, @@ -2639,11 +2639,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -2695,20 +2695,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -2723,7 +2723,7 @@ } }, { - "x": 235.43200000000002, + "x": 235.432, "y": 216 }, { @@ -2816,7 +2816,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 210.472 }, { @@ -2879,7 +2879,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 235.43200000000002, + "x": 235.432, "y": 205.528 }, { @@ -2887,7 +2887,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 236 }, @@ -2916,11 +2916,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -2972,20 +2972,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -3000,11 +3000,11 @@ } }, { - "x": 255.64800000000002, + "x": 255.648, "y": 216 }, { - "x": 240.43200000000002, + "x": 240.432, "y": 200 }, { @@ -3022,7 +3022,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 208 }, { @@ -3030,7 +3030,7 @@ "y": 0 }, { - "x": 248.04000000000002, + "x": 248.04, "y": 208 }, { @@ -3093,70 +3093,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43200000000002, + "x": 240.432, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33800000000002, + "x": 243.338, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.04000000000002, + "x": 248.04, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74200000000002, + "x": 252.742, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64800000000002, + "x": 255.648, "y": 205.528 }, { @@ -3164,7 +3164,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 267 }, @@ -3193,11 +3193,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -3249,20 +3249,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -3277,7 +3277,7 @@ } }, { - "x": 275.86400000000003, + "x": 275.864, "y": 216 }, { @@ -3299,7 +3299,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 208 }, { @@ -3307,7 +3307,7 @@ "y": 0 }, { - "x": 268.25600000000003, + "x": 268.256, "y": 208 }, { @@ -3370,7 +3370,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 210.472 }, { @@ -3384,14 +3384,14 @@ "body": null, "index": 2, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 214.472 }, { @@ -3412,14 +3412,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 263.55400000000003, + "x": 263.554, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25600000000003, + "x": 268.256, "y": 200 }, { @@ -3433,7 +3433,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 275.86400000000003, + "x": 275.864, "y": 205.528 }, { @@ -3441,7 +3441,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 298 }, @@ -3470,11 +3470,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -3526,20 +3526,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -3554,11 +3554,11 @@ } }, { - "x": 296.08000000000004, + "x": 296.08, "y": 216 }, { - "x": 280.86400000000003, + "x": 280.864, "y": 200 }, { @@ -3576,7 +3576,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 208 }, { @@ -3584,7 +3584,7 @@ "y": 0 }, { - "x": 288.47200000000004, + "x": 288.472, "y": 208 }, { @@ -3647,70 +3647,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86400000000003, + "x": 280.864, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.77000000000004, + "x": 283.77, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47200000000004, + "x": 288.472, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17400000000004, + "x": 293.174, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.08000000000004, + "x": 296.08, "y": 205.528 }, { @@ -3718,7 +3718,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 329 }, @@ -3747,11 +3747,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -3803,20 +3803,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -3831,11 +3831,11 @@ } }, { - "x": 316.29600000000005, + "x": 316.296, "y": 216 }, { - "x": 301.08000000000004, + "x": 301.08, "y": 200 }, { @@ -3853,7 +3853,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 208 }, { @@ -3861,7 +3861,7 @@ "y": 0 }, { - "x": 308.68800000000005, + "x": 308.688, "y": 208 }, { @@ -3924,70 +3924,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.08000000000004, + "x": 301.08, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.98600000000005, + "x": 303.986, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.68800000000005, + "x": 308.688, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39000000000004, + "x": 313.39, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.29600000000005, + "x": 316.296, "y": 205.528 }, { @@ -3995,7 +3995,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 360 }, @@ -4024,11 +4024,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -4080,20 +4080,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -4108,11 +4108,11 @@ } }, { - "x": 336.51200000000006, + "x": 336.512, "y": 216 }, { - "x": 321.29600000000005, + "x": 321.296, "y": 200 }, { @@ -4130,7 +4130,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 208 }, { @@ -4138,7 +4138,7 @@ "y": 0 }, { - "x": 328.90400000000005, + "x": 328.904, "y": 208 }, { @@ -4201,70 +4201,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.29600000000005, + "x": 321.296, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.20200000000006, + "x": 324.202, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.90400000000005, + "x": 328.904, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.60600000000005, + "x": 333.606, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.51200000000006, + "x": 336.512, "y": 205.528 }, { @@ -4272,7 +4272,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 391 }, @@ -4301,11 +4301,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -4357,20 +4357,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -4385,11 +4385,11 @@ } }, { - "x": 356.72800000000007, + "x": 356.728, "y": 216 }, { - "x": 341.51200000000006, + "x": 341.512, "y": 200 }, { @@ -4407,7 +4407,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 208 }, { @@ -4415,7 +4415,7 @@ "y": 0 }, { - "x": 349.12000000000006, + "x": 349.12, "y": 208 }, { @@ -4478,70 +4478,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200000000006, + "x": 341.512, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800000000006, + "x": 344.418, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000000000006, + "x": 349.12, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200000000006, + "x": 353.822, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800000000007, + "x": 356.728, "y": 205.528 }, { @@ -4549,7 +4549,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 422 }, @@ -4578,11 +4578,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -4634,20 +4634,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -4662,11 +4662,11 @@ } }, { - "x": 376.9440000000001, + "x": 376.944, "y": 216 }, { - "x": 361.72800000000007, + "x": 361.728, "y": 200 }, { @@ -4684,7 +4684,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 208 }, { @@ -4692,7 +4692,7 @@ "y": 0 }, { - "x": 369.33600000000007, + "x": 369.336, "y": 208 }, { @@ -4755,70 +4755,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.72800000000007, + "x": 361.728, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.63400000000007, + "x": 364.634, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.33600000000007, + "x": 369.336, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.03800000000007, + "x": 374.038, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9440000000001, + "x": 376.944, "y": 205.528 }, { @@ -4826,7 +4826,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 453 }, @@ -4855,11 +4855,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -4911,20 +4911,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -4939,11 +4939,11 @@ } }, { - "x": 397.1600000000001, + "x": 397.16, "y": 216 }, { - "x": 381.9440000000001, + "x": 381.944, "y": 200 }, { @@ -4961,7 +4961,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 208 }, { @@ -4969,7 +4969,7 @@ "y": 0 }, { - "x": 389.5520000000001, + "x": 389.552, "y": 208 }, { @@ -5032,70 +5032,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9440000000001, + "x": 381.944, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8500000000001, + "x": 384.85, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5520000000001, + "x": 389.552, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2540000000001, + "x": 394.254, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1600000000001, + "x": 397.16, "y": 205.528 }, { @@ -5103,7 +5103,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 484 }, @@ -5132,11 +5132,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -5188,20 +5188,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -5216,11 +5216,11 @@ } }, { - "x": 417.3760000000001, + "x": 417.376, "y": 216 }, { - "x": 402.1600000000001, + "x": 402.16, "y": 200 }, { @@ -5238,7 +5238,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 208 }, { @@ -5246,7 +5246,7 @@ "y": 0 }, { - "x": 409.7680000000001, + "x": 409.768, "y": 208 }, { @@ -5309,70 +5309,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1600000000001, + "x": 402.16, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0660000000001, + "x": 405.066, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7680000000001, + "x": 409.768, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4700000000001, + "x": 414.47, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3760000000001, + "x": 417.376, "y": 205.528 }, { @@ -5380,7 +5380,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 515 }, @@ -5409,11 +5409,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -5465,20 +5465,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -5493,11 +5493,11 @@ } }, { - "x": 437.5920000000001, + "x": 437.592, "y": 216 }, { - "x": 422.3760000000001, + "x": 422.376, "y": 200 }, { @@ -5515,7 +5515,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 208 }, { @@ -5523,7 +5523,7 @@ "y": 0 }, { - "x": 429.9840000000001, + "x": 429.984, "y": 208 }, { @@ -5586,70 +5586,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.3760000000001, + "x": 422.376, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.2820000000001, + "x": 425.282, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.9840000000001, + "x": 429.984, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.6860000000001, + "x": 434.686, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5920000000001, + "x": 437.592, "y": 205.528 }, { @@ -5657,7 +5657,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 546 }, @@ -5686,11 +5686,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -5742,20 +5742,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -5770,11 +5770,11 @@ } }, { - "x": 457.8080000000001, + "x": 457.808, "y": 216 }, { - "x": 442.5920000000001, + "x": 442.592, "y": 200 }, { @@ -5792,7 +5792,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 208 }, { @@ -5800,7 +5800,7 @@ "y": 0 }, { - "x": 450.2000000000001, + "x": 450.2, "y": 208 }, { @@ -5863,70 +5863,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920000000001, + "x": 442.592, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980000000001, + "x": 445.498, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000000000001, + "x": 450.2, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020000000001, + "x": 454.902, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080000000001, + "x": 457.808, "y": 205.528 }, { @@ -5934,7 +5934,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 577 }, @@ -5963,11 +5963,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -6019,20 +6019,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -6047,11 +6047,11 @@ } }, { - "x": 478.0240000000001, + "x": 478.024, "y": 216 }, { - "x": 462.8080000000001, + "x": 462.808, "y": 200 }, { @@ -6069,7 +6069,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 208 }, { @@ -6077,7 +6077,7 @@ "y": 0 }, { - "x": 470.4160000000001, + "x": 470.416, "y": 208 }, { @@ -6140,70 +6140,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8080000000001, + "x": 462.808, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7140000000001, + "x": 465.714, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4160000000001, + "x": 470.416, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1180000000001, + "x": 475.118, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0240000000001, + "x": 478.024, "y": 205.528 }, { @@ -6211,7 +6211,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 608 }, @@ -6240,11 +6240,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -6296,20 +6296,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -6324,11 +6324,11 @@ } }, { - "x": 498.2400000000001, + "x": 498.24, "y": 216 }, { - "x": 483.0240000000001, + "x": 483.024, "y": 200 }, { @@ -6346,7 +6346,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 208 }, { @@ -6354,7 +6354,7 @@ "y": 0 }, { - "x": 490.6320000000001, + "x": 490.632, "y": 208 }, { @@ -6417,70 +6417,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.0240000000001, + "x": 483.024, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9300000000001, + "x": 485.93, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6320000000001, + "x": 490.632, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3340000000001, + "x": 495.334, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2400000000001, + "x": 498.24, "y": 205.528 }, { @@ -6488,7 +6488,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 639 }, @@ -6517,11 +6517,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -6573,20 +6573,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -6601,11 +6601,11 @@ } }, { - "x": 518.4560000000001, + "x": 518.456, "y": 216 }, { - "x": 503.2400000000001, + "x": 503.24, "y": 200 }, { @@ -6623,7 +6623,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 208 }, { @@ -6631,7 +6631,7 @@ "y": 0 }, { - "x": 510.8480000000001, + "x": 510.848, "y": 208 }, { @@ -6694,70 +6694,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000000001, + "x": 503.24, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.14600000000013, + "x": 506.146, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000000001, + "x": 510.848, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000000002, + "x": 515.55, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000000001, + "x": 518.456, "y": 205.528 }, { @@ -6765,7 +6765,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 670 }, @@ -6794,11 +6794,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -6850,20 +6850,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -6882,7 +6882,7 @@ "y": 216 }, { - "x": 523.4560000000001, + "x": 523.456, "y": 200 }, { @@ -6900,7 +6900,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 208 }, { @@ -6908,7 +6908,7 @@ "y": 0 }, { - "x": 531.0640000000001, + "x": 531.064, "y": 208 }, { @@ -6978,56 +6978,56 @@ "body": null, "index": 1, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560000000001, + "x": 523.456, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620000000001, + "x": 526.362, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640000000001, + "x": 531.064, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660000000001, + "x": 535.766, "y": 201.528 }, { @@ -7042,7 +7042,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 701 }, @@ -7071,11 +7071,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -7127,20 +7127,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -7155,7 +7155,7 @@ } }, { - "x": 558.8879999999999, + "x": 558.888, "y": 216 }, { @@ -7248,7 +7248,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 210.472 }, { @@ -7311,7 +7311,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 558.8879999999999, + "x": 558.888, "y": 205.528 }, { @@ -7319,7 +7319,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 732 }, @@ -7348,11 +7348,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -7404,20 +7404,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -7432,11 +7432,11 @@ } }, { - "x": 579.1039999999998, + "x": 579.104, "y": 216 }, { - "x": 563.8879999999999, + "x": 563.888, "y": 200 }, { @@ -7454,7 +7454,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 208 }, { @@ -7462,7 +7462,7 @@ "y": 0 }, { - "x": 571.4959999999999, + "x": 571.496, "y": 208 }, { @@ -7525,70 +7525,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8879999999999, + "x": 563.888, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939999999999, + "x": 566.794, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959999999999, + "x": 571.496, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979999999999, + "x": 576.198, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039999999998, + "x": 579.104, "y": 205.528 }, { @@ -7596,7 +7596,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 763 }, @@ -7625,11 +7625,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": true, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -7681,20 +7681,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -7709,11 +7709,11 @@ } }, { - "x": 599.3199999999997, + "x": 599.32, "y": 216 }, { - "x": 584.1039999999998, + "x": 584.104, "y": 200 }, { @@ -7731,7 +7731,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 208 }, { @@ -7739,7 +7739,7 @@ "y": 0 }, { - "x": 591.7119999999998, + "x": 591.712, "y": 208 }, { @@ -7802,70 +7802,70 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 210.472 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 214.472 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 216 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 214.472 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 210.472 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999999998, + "x": 584.104, "y": 205.528 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099999999998, + "x": 587.01, "y": 201.528 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119999999998, + "x": 591.712, "y": 200 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139999999998, + "x": 596.414, "y": 201.528 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199999999997, + "x": 599.32, "y": 205.528 }, { @@ -7873,7 +7873,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 794 }, @@ -7902,11 +7902,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -7928,7 +7928,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7425570668394935, + "speed": 0.74256, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7958,20 +7958,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -7986,12 +7986,12 @@ } }, { - "x": 215.2160000073758, - "y": 241.6413712138298 + "x": 215.216, + "y": 241.64137 }, { - "x": 200.0000000073758, - "y": 225.6413712138298 + "x": 200, + "y": 225.64137 }, { "category": 1, @@ -8008,16 +8008,16 @@ "y": 0 }, { - "x": 207.60800000737578, - "y": 233.6413712138298 + "x": 207.608, + "y": 233.64137 }, { "x": 0, "y": 0 }, { - "x": 207.6080000000236, - "y": 233.1713685291545 + "x": 207.608, + "y": 233.17137 }, { "endCol": 4, @@ -8040,8 +8040,8 @@ "yScale": 1 }, { - "x": 3.8335201679728925e-10, - "y": -0.3602061532882317 + "x": 0, + "y": -0.36021 }, [ { @@ -8079,78 +8079,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.2160000073758, - "y": 236.11337121382982 + "x": 215.216, + "y": 236.11337 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.3100000073758, - "y": 240.11337121382982 + "x": 212.31, + "y": 240.11337 }, { "body": null, "index": 2, "isInternal": false, - "x": 207.6080000073758, - "y": 241.6413712138298 + "x": 207.608, + "y": 241.64137 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.9060000073758, - "y": 240.11337121382982 + "x": 202.906, + "y": 240.11337 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.0000000073758, - "y": 236.11337121382982 + "x": 200, + "y": 236.11337 }, { "body": null, "index": 5, "isInternal": false, - "x": 200.0000000073758, - "y": 231.1693712138298 + "x": 200, + "y": 231.16937 }, { "body": null, "index": 6, "isInternal": false, - "x": 202.9060000073758, - "y": 227.1693712138298 + "x": 202.906, + "y": 227.16937 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.6080000073758, - "y": 225.6413712138298 + "x": 207.608, + "y": 225.64137 }, { "body": null, "index": 8, "isInternal": false, - "x": 212.3100000073758, - "y": 227.1693712138298 + "x": 212.31, + "y": 227.16937 }, { "body": null, "index": 9, "isInternal": false, - "x": 215.2160000073758, - "y": 231.1693712138298 + "x": 215.216, + "y": 231.16937 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 825 }, @@ -8179,11 +8179,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -8205,7 +8205,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7493165883155135, + "speed": 0.74932, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8235,20 +8235,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -8263,12 +8263,12 @@ } }, { - "x": 235.43200607476376, - "y": 241.66946528292237 + "x": 235.43201, + "y": 241.66947 }, { - "x": 220.21600607476375, - "y": 225.66946528292237 + "x": 220.21601, + "y": 225.66947 }, { "category": 1, @@ -8285,16 +8285,16 @@ "y": 0 }, { - "x": 227.82400607476376, - "y": 233.66946528292243 + "x": 227.82401, + "y": 233.66947 }, { "x": 0, "y": 0 }, { - "x": 227.82400000496767, - "y": 233.17998583406458 + "x": 227.824, + "y": 233.17999 }, { "endCol": 4, @@ -8317,8 +8317,8 @@ "yScale": 1 }, { - "x": 2.920977522080648e-7, - "y": -0.351722660224965 + "x": 0, + "y": -0.35172 }, [ { @@ -8356,78 +8356,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.43200607476376, - "y": 236.14146528292238 + "x": 235.43201, + "y": 236.14147 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.52600607476376, - "y": 240.14146528292238 + "x": 232.52601, + "y": 240.14147 }, { "body": null, "index": 2, "isInternal": false, - "x": 227.82400607476376, - "y": 241.66946528292237 + "x": 227.82401, + "y": 241.66947 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.12200607476376, - "y": 240.14146528292238 + "x": 223.12201, + "y": 240.14147 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.21600607476375, - "y": 236.14146528292238 + "x": 220.21601, + "y": 236.14147 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.21600607476375, - "y": 231.19746528292237 + "x": 220.21601, + "y": 231.19747 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.12200607476376, - "y": 227.19746528292237 + "x": 223.12201, + "y": 227.19747 }, { "body": null, "index": 7, "isInternal": false, - "x": 227.82400607476376, - "y": 225.66946528292237 + "x": 227.82401, + "y": 225.66947 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.52600607476376, - "y": 227.19746528292237 + "x": 232.52601, + "y": 227.19747 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.43200607476376, - "y": 231.19746528292237 + "x": 235.43201, + "y": 231.19747 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 856 }, @@ -8456,11 +8456,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -8482,7 +8482,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.683488382071854, + "speed": 0.68349, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8512,20 +8512,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -8540,12 +8540,12 @@ } }, { - "x": 255.64799574222633, - "y": 241.4407591152056 + "x": 255.648, + "y": 241.44076 }, { - "x": 240.43199574222632, - "y": 225.4407591152056 + "x": 240.432, + "y": 225.44076 }, { "category": 1, @@ -8562,16 +8562,16 @@ "y": 0 }, { - "x": 248.03999574222635, - "y": 233.44075911520565 + "x": 248.04, + "y": 233.44076 }, { "x": 0, "y": 0 }, { - "x": 248.03999999983162, - "y": 233.08438190591744 + "x": 248.04, + "y": 233.08438 }, { "endCol": 5, @@ -8594,8 +8594,8 @@ "yScale": 1 }, { - "x": -1.4906339629305876e-7, - "y": -0.4126769465440816 + "x": 0, + "y": -0.41268 }, [ { @@ -8633,78 +8633,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64799574222633, - "y": 235.9127591152056 + "x": 255.648, + "y": 235.91276 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74199574222632, - "y": 239.9127591152056 + "x": 252.742, + "y": 239.91276 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.03999574222632, - "y": 241.4407591152056 + "x": 248.04, + "y": 241.44076 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33799574222633, - "y": 239.9127591152056 + "x": 243.338, + "y": 239.91276 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43199574222632, - "y": 235.9127591152056 + "x": 240.432, + "y": 235.91276 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43199574222632, - "y": 230.9687591152056 + "x": 240.432, + "y": 230.96876 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33799574222633, - "y": 226.9687591152056 + "x": 243.338, + "y": 226.96876 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.03999574222632, - "y": 225.4407591152056 + "x": 248.04, + "y": 225.44076 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74199574222632, - "y": 226.9687591152056 + "x": 252.742, + "y": 226.96876 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64799574222633, - "y": 230.9687591152056 + "x": 255.648, + "y": 230.96876 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 887 }, @@ -8733,11 +8733,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -8759,7 +8759,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6925893130333673, + "speed": 0.69259, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8789,20 +8789,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -8817,12 +8817,12 @@ } }, { - "x": 275.8640247482399, - "y": 241.45822865762975 + "x": 275.86402, + "y": 241.45823 }, { - "x": 260.6480247482399, - "y": 225.45822865762975 + "x": 260.64802, + "y": 225.45823 }, { "category": 1, @@ -8839,16 +8839,16 @@ "y": 0 }, { - "x": 268.2560247482397, - "y": 233.4582286576298 + "x": 268.25602, + "y": 233.45823 }, { "x": 0, "y": 0 }, { - "x": 268.2560003904123, - "y": 233.10014919380083 + "x": 268.256, + "y": 233.10015 }, { "endCol": 5, @@ -8871,8 +8871,8 @@ "yScale": 1 }, { - "x": 0.000007213670983219345, - "y": -0.4101907664154112 + "x": 0.00001, + "y": -0.41019 }, [ { @@ -8910,78 +8910,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.8640247482399, - "y": 235.93022865762975 + "x": 275.86402, + "y": 235.93023 }, { "body": null, "index": 1, "isInternal": false, - "x": 272.9580247482399, - "y": 239.93022865762975 + "x": 272.95802, + "y": 239.93023 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.2560247482399, - "y": 241.45822865762975 + "x": 268.25602, + "y": 241.45823 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.5540247482399, - "y": 239.93022865762975 + "x": 263.55402, + "y": 239.93023 }, { "body": null, "index": 4, "isInternal": false, - "x": 260.6480247482399, - "y": 235.93022865762975 + "x": 260.64802, + "y": 235.93023 }, { "body": null, "index": 5, "isInternal": false, - "x": 260.6480247482399, - "y": 230.98622865762974 + "x": 260.64802, + "y": 230.98623 }, { "body": null, "index": 6, "isInternal": false, - "x": 263.5540247482399, - "y": 226.98622865762974 + "x": 263.55402, + "y": 226.98623 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.2560247482399, - "y": 225.45822865762975 + "x": 268.25602, + "y": 225.45823 }, { "body": null, "index": 8, "isInternal": false, - "x": 272.9580247482399, - "y": 226.98622865762974 + "x": 272.95802, + "y": 226.98623 }, { "body": null, "index": 9, "isInternal": false, - "x": 275.8640247482399, - "y": 230.98622865762974 + "x": 275.86402, + "y": 230.98623 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 918 }, @@ -9010,11 +9010,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -9036,7 +9036,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5729249405803157, + "speed": 0.57292, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9066,20 +9066,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -9094,12 +9094,12 @@ } }, { - "x": 296.0799900099662, - "y": 241.074751053205 + "x": 296.07999, + "y": 241.07475 }, { - "x": 280.8639900099662, - "y": 225.074751053205 + "x": 280.86399, + "y": 225.07475 }, { "category": 1, @@ -9116,16 +9116,16 @@ "y": 0 }, { - "x": 288.4719900099661, - "y": 233.07475105320498 + "x": 288.47199, + "y": 233.07475 }, { "x": 0, "y": 0 }, { - "x": 288.47199986353723, - "y": 232.8965291244648 + "x": 288.472, + "y": 232.89653 }, { "endCol": 6, @@ -9148,8 +9148,8 @@ "yScale": 1 }, { - "x": -0.000004443814589194517, - "y": -0.4917367654218765 + "x": 0, + "y": -0.49174 }, [ { @@ -9187,78 +9187,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.0799900099662, - "y": 235.546751053205 + "x": 296.07999, + "y": 235.54675 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.1739900099662, - "y": 239.546751053205 + "x": 293.17399, + "y": 239.54675 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.4719900099662, - "y": 241.074751053205 + "x": 288.47199, + "y": 241.07475 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.7699900099662, - "y": 239.546751053205 + "x": 283.76999, + "y": 239.54675 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.8639900099662, - "y": 235.546751053205 + "x": 280.86399, + "y": 235.54675 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.8639900099662, - "y": 230.602751053205 + "x": 280.86399, + "y": 230.60275 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.7699900099662, - "y": 226.602751053205 + "x": 283.76999, + "y": 226.60275 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.4719900099662, - "y": 225.074751053205 + "x": 288.47199, + "y": 225.07475 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.1739900099662, - "y": 226.602751053205 + "x": 293.17399, + "y": 226.60275 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.0799900099662, - "y": 230.602751053205 + "x": 296.07999, + "y": 230.60275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 949 }, @@ -9287,11 +9287,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -9313,7 +9313,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.528462681327833, + "speed": 0.52846, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9343,20 +9343,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -9371,12 +9371,12 @@ } }, { - "x": 316.2961524221256, - "y": 240.9068903862412 + "x": 316.29615, + "y": 240.90689 }, { - "x": 301.0801524221256, - "y": 224.9068903862412 + "x": 301.08015, + "y": 224.90689 }, { "category": 1, @@ -9393,16 +9393,16 @@ "y": 0 }, { - "x": 308.68815242212565, - "y": 232.90689038624117 + "x": 308.68815, + "y": 232.90689 }, { "x": 0, "y": 0 }, { - "x": 308.6880025402552, - "y": 232.8343865460053 + "x": 308.688, + "y": 232.83439 }, { "endCol": 6, @@ -9425,8 +9425,8 @@ "yScale": 1 }, { - "x": 0.000015030858662612445, - "y": -0.538884231236068 + "x": 0.00002, + "y": -0.53888 }, [ { @@ -9464,78 +9464,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.2961524221256, - "y": 235.3788903862412 + "x": 316.29615, + "y": 235.37889 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.3901524221256, - "y": 239.3788903862412 + "x": 313.39015, + "y": 239.37889 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.6881524221256, - "y": 240.9068903862412 + "x": 308.68815, + "y": 240.90689 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.9861524221256, - "y": 239.3788903862412 + "x": 303.98615, + "y": 239.37889 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.0801524221256, - "y": 235.3788903862412 + "x": 301.08015, + "y": 235.37889 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.0801524221256, - "y": 230.4348903862412 + "x": 301.08015, + "y": 230.43489 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.9861524221256, - "y": 226.4348903862412 + "x": 303.98615, + "y": 226.43489 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.6881524221256, - "y": 224.9068903862412 + "x": 308.68815, + "y": 224.90689 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.3901524221256, - "y": 226.4348903862412 + "x": 313.39015, + "y": 226.43489 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.2961524221256, - "y": 230.4348903862412 + "x": 316.29615, + "y": 230.43489 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 980 }, @@ -9564,11 +9564,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -9590,7 +9590,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6660290555240103, + "speed": 0.66603, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9620,20 +9620,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -9648,12 +9648,12 @@ } }, { - "x": 336.5117958271079, - "y": 241.3723061002288 + "x": 336.5118, + "y": 241.37231 }, { - "x": 321.2957958271079, - "y": 225.3723061002288 + "x": 321.2958, + "y": 225.37231 }, { "category": 1, @@ -9670,16 +9670,16 @@ "y": 0 }, { - "x": 328.903795827108, - "y": 233.37230610022888 + "x": 328.9038, + "y": 233.37231 }, { "x": 0, "y": 0 }, { - "x": 328.9039958140248, - "y": 233.05753228088219 + "x": 328.904, + "y": 233.05753 }, { "endCol": 7, @@ -9702,8 +9702,8 @@ "yScale": 1 }, { - "x": -0.00002531908012315398, - "y": -0.4302463639693599 + "x": -0.00003, + "y": -0.43025 }, [ { @@ -9741,78 +9741,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.5117958271079, - "y": 235.8443061002288 + "x": 336.5118, + "y": 235.84431 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.6057958271079, - "y": 239.8443061002288 + "x": 333.6058, + "y": 239.84431 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.9037958271079, - "y": 241.3723061002288 + "x": 328.9038, + "y": 241.37231 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.2017958271079, - "y": 239.8443061002288 + "x": 324.2018, + "y": 239.84431 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.2957958271079, - "y": 235.8443061002288 + "x": 321.2958, + "y": 235.84431 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.2957958271079, - "y": 230.9003061002288 + "x": 321.2958, + "y": 230.90031 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.2017958271079, - "y": 226.9003061002288 + "x": 324.2018, + "y": 226.90031 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.9037958271079, - "y": 225.3723061002288 + "x": 328.9038, + "y": 225.37231 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.6057958271079, - "y": 226.9003061002288 + "x": 333.6058, + "y": 226.90031 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.5117958271079, - "y": 230.9003061002288 + "x": 336.5118, + "y": 230.90031 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1011 }, @@ -9841,11 +9841,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -9867,7 +9867,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6641488301166217, + "speed": 0.66415, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9897,20 +9897,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -9925,12 +9925,12 @@ } }, { - "x": 356.72800349802685, - "y": 241.36906509651462 + "x": 356.728, + "y": 241.36907 }, { - "x": 341.51200349802684, - "y": 225.36906509651462 + "x": 341.512, + "y": 225.36907 }, { "category": 1, @@ -9947,16 +9947,16 @@ "y": 0 }, { - "x": 349.1200034980269, - "y": 233.36906509651462 + "x": 349.12, + "y": 233.36907 }, { "x": 0, "y": 0 }, { - "x": 349.12000007222224, - "y": 233.05838948493488 + "x": 349.12, + "y": 233.05839 }, { "endCol": 7, @@ -9979,8 +9979,8 @@ "yScale": 1 }, { - "x": 4.801907493856561e-7, - "y": -0.4333942424984798 + "x": 0, + "y": -0.43339 }, [ { @@ -10018,78 +10018,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.72800349802685, - "y": 235.84106509651463 + "x": 356.728, + "y": 235.84107 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82200349802685, - "y": 239.84106509651463 + "x": 353.822, + "y": 239.84107 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12000349802685, - "y": 241.36906509651462 + "x": 349.12, + "y": 241.36907 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.41800349802685, - "y": 239.84106509651463 + "x": 344.418, + "y": 239.84107 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51200349802684, - "y": 235.84106509651463 + "x": 341.512, + "y": 235.84107 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51200349802684, - "y": 230.8970650965146 + "x": 341.512, + "y": 230.89707 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.41800349802685, - "y": 226.8970650965146 + "x": 344.418, + "y": 226.89707 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12000349802685, - "y": 225.36906509651462 + "x": 349.12, + "y": 225.36907 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82200349802685, - "y": 226.8970650965146 + "x": 353.822, + "y": 226.89707 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.72800349802685, - "y": 230.8970650965146 + "x": 356.728, + "y": 230.89707 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1042 }, @@ -10118,11 +10118,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -10144,7 +10144,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7486648858111834, + "speed": 0.74866, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10174,20 +10174,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -10202,12 +10202,12 @@ } }, { - "x": 376.9439860551052, - "y": 241.66586081882784 + "x": 376.94399, + "y": 241.66586 }, { - "x": 361.7279860551052, - "y": 225.66586081882784 + "x": 361.72799, + "y": 225.66586 }, { "category": 1, @@ -10224,16 +10224,16 @@ "y": 0 }, { - "x": 369.3359860551052, - "y": 233.6658608188278 + "x": 369.33599, + "y": 233.66586 }, { "x": 0, "y": 0 }, { - "x": 369.3359998267359, - "y": 233.17920752679962 + "x": 369.336, + "y": 233.17921 }, { "endCol": 7, @@ -10256,8 +10256,8 @@ "yScale": 1 }, { - "x": -0.0000013605721846943197, - "y": -0.3528167420811883 + "x": 0, + "y": -0.35282 }, [ { @@ -10295,78 +10295,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9439860551052, - "y": 236.13786081882785 + "x": 376.94399, + "y": 236.13786 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.0379860551052, - "y": 240.13786081882785 + "x": 374.03799, + "y": 240.13786 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.3359860551052, - "y": 241.66586081882784 + "x": 369.33599, + "y": 241.66586 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.6339860551052, - "y": 240.13786081882785 + "x": 364.63399, + "y": 240.13786 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.7279860551052, - "y": 236.13786081882785 + "x": 361.72799, + "y": 236.13786 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.7279860551052, - "y": 231.19386081882783 + "x": 361.72799, + "y": 231.19386 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.6339860551052, - "y": 227.19386081882783 + "x": 364.63399, + "y": 227.19386 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.3359860551052, - "y": 225.66586081882784 + "x": 369.33599, + "y": 225.66586 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.0379860551052, - "y": 227.19386081882783 + "x": 374.03799, + "y": 227.19386 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9439860551052, - "y": 231.19386081882783 + "x": 376.94399, + "y": 231.19386 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1073 }, @@ -10395,11 +10395,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -10421,7 +10421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7424128150569758, + "speed": 0.74241, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10451,20 +10451,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -10479,12 +10479,12 @@ } }, { - "x": 397.15999908962226, - "y": 241.64004212383605 + "x": 397.16, + "y": 241.64004 }, { - "x": 381.94399908962225, - "y": 225.64004212383605 + "x": 381.944, + "y": 225.64004 }, { "category": 1, @@ -10501,16 +10501,16 @@ "y": 0 }, { - "x": 389.5519990896223, - "y": 233.64004212383605 + "x": 389.552, + "y": 233.64004 }, { "x": 0, "y": 0 }, { - "x": 389.5519999973753, - "y": 233.1712154588571 + "x": 389.552, + "y": 233.17122 }, { "endCol": 8, @@ -10533,8 +10533,8 @@ "yScale": 1 }, { - "x": -1.7316779121756554e-7, - "y": -0.36059407300720636 + "x": 0, + "y": -0.36059 }, [ { @@ -10572,78 +10572,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.15999908962226, - "y": 236.11204212383606 + "x": 397.16, + "y": 236.11204 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.25399908962225, - "y": 240.11204212383606 + "x": 394.254, + "y": 240.11204 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.55199908962226, - "y": 241.64004212383605 + "x": 389.552, + "y": 241.64004 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.84999908962226, - "y": 240.11204212383606 + "x": 384.85, + "y": 240.11204 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.94399908962225, - "y": 236.11204212383606 + "x": 381.944, + "y": 236.11204 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.94399908962225, - "y": 231.16804212383605 + "x": 381.944, + "y": 231.16804 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.84999908962226, - "y": 227.16804212383605 + "x": 384.85, + "y": 227.16804 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.55199908962226, - "y": 225.64004212383605 + "x": 389.552, + "y": 225.64004 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.25399908962225, - "y": 227.16804212383605 + "x": 394.254, + "y": 227.16804 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.15999908962226, - "y": 231.16804212383605 + "x": 397.16, + "y": 231.16804 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1104 }, @@ -10672,11 +10672,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -10698,7 +10698,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7421316042794728, + "speed": 0.74213, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10728,20 +10728,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -10756,12 +10756,12 @@ } }, { - "x": 417.37599999831923, - "y": 241.63833384353978 + "x": 417.376, + "y": 241.63833 }, { - "x": 402.1599999983192, - "y": 225.63833384353978 + "x": 402.16, + "y": 225.63833 }, { "category": 1, @@ -10778,16 +10778,16 @@ "y": 0 }, { - "x": 409.7679999983192, - "y": 233.6383338435398 + "x": 409.768, + "y": 233.63833 }, { "x": 0, "y": 0 }, { - "x": 409.7679999999816, - "y": 233.17090214464648 + "x": 409.768, + "y": 233.1709 }, { "endCol": 8, @@ -10810,8 +10810,8 @@ "yScale": 1 }, { - "x": -2.241904439870268e-10, - "y": -0.36112855737920313 + "x": 0, + "y": -0.36113 }, [ { @@ -10849,78 +10849,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.37599999831923, - "y": 236.1103338435398 + "x": 417.376, + "y": 236.11033 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4699999983192, - "y": 240.1103338435398 + "x": 414.47, + "y": 240.11033 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7679999983192, - "y": 241.63833384353978 + "x": 409.768, + "y": 241.63833 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0659999983192, - "y": 240.1103338435398 + "x": 405.066, + "y": 240.11033 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1599999983192, - "y": 236.1103338435398 + "x": 402.16, + "y": 236.11033 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1599999983192, - "y": 231.16633384353977 + "x": 402.16, + "y": 231.16633 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0659999983192, - "y": 227.16633384353977 + "x": 405.066, + "y": 227.16633 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7679999983192, - "y": 225.63833384353978 + "x": 409.768, + "y": 225.63833 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4699999983192, - "y": 227.16633384353977 + "x": 414.47, + "y": 227.16633 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.37599999831923, - "y": 231.16633384353977 + "x": 417.376, + "y": 231.16633 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1135 }, @@ -10949,11 +10949,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -10975,7 +10975,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7420793996286228, + "speed": 0.74208, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11005,20 +11005,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -11033,12 +11033,12 @@ } }, { - "x": 437.59200087781556, - "y": 241.6378396089794 + "x": 437.592, + "y": 241.63784 }, { - "x": 422.37600087781556, - "y": 225.6378396089794 + "x": 422.376, + "y": 225.63784 }, { "category": 1, @@ -11055,16 +11055,16 @@ "y": 0 }, { - "x": 429.98400087781556, - "y": 233.6378396089794 + "x": 429.984, + "y": 233.63784 }, { "x": 0, "y": 0 }, { - "x": 429.98400000203475, - "y": 233.1708479035275 + "x": 429.984, + "y": 233.17085 }, { "endCol": 9, @@ -11087,8 +11087,8 @@ "yScale": 1 }, { - "x": 1.6203534869418945e-7, - "y": -0.361275637304999 + "x": 0, + "y": -0.36128 }, [ { @@ -11126,78 +11126,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.59200087781556, - "y": 236.1098396089794 + "x": 437.592, + "y": 236.10984 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.68600087781556, - "y": 240.1098396089794 + "x": 434.686, + "y": 240.10984 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.98400087781556, - "y": 241.6378396089794 + "x": 429.984, + "y": 241.63784 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.28200087781556, - "y": 240.1098396089794 + "x": 425.282, + "y": 240.10984 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.37600087781556, - "y": 236.1098396089794 + "x": 422.376, + "y": 236.10984 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.37600087781556, - "y": 231.16583960897938 + "x": 422.376, + "y": 231.16584 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.28200087781556, - "y": 227.16583960897938 + "x": 425.282, + "y": 227.16584 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.98400087781556, - "y": 225.6378396089794 + "x": 429.984, + "y": 225.63784 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.68600087781556, - "y": 227.16583960897938 + "x": 434.686, + "y": 227.16584 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.59200087781556, - "y": 231.16583960897938 + "x": 437.592, + "y": 231.16584 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1166 }, @@ -11226,11 +11226,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -11252,7 +11252,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7391575143783712, + "speed": 0.73916, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11282,20 +11282,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -11310,12 +11310,12 @@ } }, { - "x": 457.8080397100979, - "y": 241.6240272813831 + "x": 457.80804, + "y": 241.62403 }, { - "x": 442.5920397100979, - "y": 225.6240272813831 + "x": 442.59204, + "y": 225.62403 }, { "category": 1, @@ -11332,16 +11332,16 @@ "y": 0 }, { - "x": 450.2000397100979, - "y": 233.62402728138312 + "x": 450.20004, + "y": 233.62403 }, { "x": 0, "y": 0 }, { - "x": 450.20000061593134, - "y": 233.16735263140416 + "x": 450.2, + "y": 233.16735 }, { "endCol": 9, @@ -11364,8 +11364,8 @@ "yScale": 1 }, { - "x": 0.000010216433793175383, - "y": -0.3655688106696857 + "x": 0.00001, + "y": -0.36557 }, [ { @@ -11403,78 +11403,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8080397100979, - "y": 236.0960272813831 + "x": 457.80804, + "y": 236.09603 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9020397100979, - "y": 240.0960272813831 + "x": 454.90204, + "y": 240.09603 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2000397100979, - "y": 241.6240272813831 + "x": 450.20004, + "y": 241.62403 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4980397100979, - "y": 240.0960272813831 + "x": 445.49804, + "y": 240.09603 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5920397100979, - "y": 236.0960272813831 + "x": 442.59204, + "y": 236.09603 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5920397100979, - "y": 231.15202728138308 + "x": 442.59204, + "y": 231.15203 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4980397100979, - "y": 227.15202728138308 + "x": 445.49804, + "y": 227.15203 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2000397100979, - "y": 225.6240272813831 + "x": 450.20004, + "y": 225.62403 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9020397100979, - "y": 227.15202728138308 + "x": 454.90204, + "y": 227.15203 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8080397100979, - "y": 231.15202728138308 + "x": 457.80804, + "y": 231.15203 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1197 }, @@ -11503,11 +11503,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -11529,7 +11529,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6412867983946474, + "speed": 0.64129, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11559,20 +11559,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -11587,12 +11587,12 @@ } }, { - "x": 478.0239766065733, - "y": 241.26927007884544 + "x": 478.02398, + "y": 241.26927 }, { - "x": 462.8079766065733, - "y": 225.26927007884544 + "x": 462.80798, + "y": 225.26927 }, { "category": 1, @@ -11609,16 +11609,16 @@ "y": 0 }, { - "x": 470.4159766065733, - "y": 233.2692700788454 + "x": 470.41598, + "y": 233.26927 }, { "x": 0, "y": 0 }, { - "x": 470.4159997311198, - "y": 233.02911884479627 + "x": 470.416, + "y": 233.02912 }, { "endCol": 9, @@ -11641,8 +11641,8 @@ "yScale": 1 }, { - "x": -0.000006183779134971701, - "y": -0.46337541861868203 + "x": -0.00001, + "y": -0.46338 }, [ { @@ -11680,78 +11680,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0239766065733, - "y": 235.74127007884545 + "x": 478.02398, + "y": 235.74127 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.1179766065733, - "y": 239.74127007884545 + "x": 475.11798, + "y": 239.74127 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.4159766065733, - "y": 241.26927007884544 + "x": 470.41598, + "y": 241.26927 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.7139766065733, - "y": 239.74127007884545 + "x": 465.71398, + "y": 239.74127 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.8079766065733, - "y": 235.74127007884545 + "x": 462.80798, + "y": 235.74127 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.8079766065733, - "y": 230.79727007884543 + "x": 462.80798, + "y": 230.79727 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.7139766065733, - "y": 226.79727007884543 + "x": 465.71398, + "y": 226.79727 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.4159766065733, - "y": 225.26927007884544 + "x": 470.41598, + "y": 225.26927 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.1179766065733, - "y": 226.79727007884543 + "x": 475.11798, + "y": 226.79727 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0239766065733, - "y": 230.79727007884543 + "x": 478.02398, + "y": 230.79727 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1228 }, @@ -11780,11 +11780,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -11806,7 +11806,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6378518257376031, + "speed": 0.63785, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11836,20 +11836,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -11864,12 +11864,12 @@ } }, { - "x": 498.23999972060966, - "y": 241.2553897809998 + "x": 498.24, + "y": 241.25539 }, { - "x": 483.02399972060965, - "y": 225.2553897809998 + "x": 483.024, + "y": 225.25539 }, { "category": 1, @@ -11886,16 +11886,16 @@ "y": 0 }, { - "x": 490.63199972060966, - "y": 233.25538978099988 + "x": 490.632, + "y": 233.25539 }, { "x": 0, "y": 0 }, { - "x": 490.63200000027564, - "y": 233.02471181989063 + "x": 490.632, + "y": 233.02471 }, { "endCol": 10, @@ -11918,8 +11918,8 @@ "yScale": 1 }, { - "x": -5.681192760675913e-8, - "y": -0.46749498185360494 + "x": 0, + "y": -0.46749 }, [ { @@ -11957,78 +11957,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.23999972060966, - "y": 235.7273897809998 + "x": 498.24, + "y": 235.72739 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.33399972060965, - "y": 239.7273897809998 + "x": 495.334, + "y": 239.72739 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.63199972060966, - "y": 241.2553897809998 + "x": 490.632, + "y": 241.25539 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.92999972060966, - "y": 239.7273897809998 + "x": 485.93, + "y": 239.72739 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.02399972060965, - "y": 235.7273897809998 + "x": 483.024, + "y": 235.72739 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.02399972060965, - "y": 230.78338978099978 + "x": 483.024, + "y": 230.78339 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.92999972060966, - "y": 226.78338978099978 + "x": 485.93, + "y": 226.78339 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.63199972060966, - "y": 225.2553897809998 + "x": 490.632, + "y": 225.25539 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.33399972060965, - "y": 226.78338978099978 + "x": 495.334, + "y": 226.78339 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.23999972060966, - "y": 230.78338978099978 + "x": 498.24, + "y": 230.78339 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1259 }, @@ -12057,11 +12057,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -12083,7 +12083,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6378429492760251, + "speed": 0.63784, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12113,20 +12113,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -12141,12 +12141,12 @@ } }, { - "x": 518.4560000500833, - "y": 241.25535189439393 + "x": 518.456, + "y": 241.25535 }, { - "x": 503.2400000500834, - "y": 225.25535189439393 + "x": 503.24, + "y": 225.25535 }, { "category": 1, @@ -12163,16 +12163,16 @@ "y": 0 }, { - "x": 510.84800005008333, - "y": 233.25535189439393 + "x": 510.848, + "y": 233.25535 }, { "x": 0, "y": 0 }, { - "x": 510.8479999998418, - "y": 233.02469957107206 + "x": 510.848, + "y": 233.0247 }, { "endCol": 10, @@ -12195,8 +12195,8 @@ "yScale": 1 }, { - "x": -1.486910150561016e-9, - "y": -0.46750598227626483 + "x": 0, + "y": -0.46751 }, [ { @@ -12234,78 +12234,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560000500833, - "y": 235.72735189439393 + "x": 518.456, + "y": 235.72735 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500000500833, - "y": 239.72735189439393 + "x": 515.55, + "y": 239.72735 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480000500834, - "y": 241.25535189439393 + "x": 510.848, + "y": 241.25535 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.1460000500834, - "y": 239.72735189439393 + "x": 506.146, + "y": 239.72735 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400000500834, - "y": 235.72735189439393 + "x": 503.24, + "y": 235.72735 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400000500834, - "y": 230.78335189439392 + "x": 503.24, + "y": 230.78335 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.1460000500834, - "y": 226.78335189439392 + "x": 506.146, + "y": 226.78335 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480000500834, - "y": 225.25535189439393 + "x": 510.848, + "y": 225.25535 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500000500833, - "y": 226.78335189439392 + "x": 515.55, + "y": 226.78335 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560000500833, - "y": 230.78335189439392 + "x": 518.456, + "y": 230.78335 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1290 }, @@ -12334,11 +12334,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -12360,7 +12360,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6413120772291304, + "speed": 0.64131, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12390,20 +12390,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -12418,12 +12418,12 @@ } }, { - "x": 538.672023607128, - "y": 241.26935962610628 + "x": 538.67202, + "y": 241.26936 }, { - "x": 523.4560236071281, - "y": 225.26935962610628 + "x": 523.45602, + "y": 225.26936 }, { "category": 1, @@ -12440,16 +12440,16 @@ "y": 0 }, { - "x": 531.0640236071281, - "y": 233.2693596261063 + "x": 531.06402, + "y": 233.26936 }, { "x": 0, "y": 0 }, { - "x": 531.0640002687152, - "y": 233.02915481436858 + "x": 531.064, + "y": 233.02915 }, { "endCol": 11, @@ -12472,8 +12472,8 @@ "yScale": 1 }, { - "x": 0.000006236578542484494, - "y": -0.4633499073007954 + "x": 0.00001, + "y": -0.46335 }, [ { @@ -12511,78 +12511,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 538.672023607128, - "y": 235.7413596261063 + "x": 538.67202, + "y": 235.74136 }, { "body": null, "index": 1, "isInternal": false, - "x": 535.7660236071281, - "y": 239.7413596261063 + "x": 535.76602, + "y": 239.74136 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0640236071281, - "y": 241.26935962610628 + "x": 531.06402, + "y": 241.26936 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3620236071281, - "y": 239.7413596261063 + "x": 526.36202, + "y": 239.74136 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4560236071281, - "y": 235.7413596261063 + "x": 523.45602, + "y": 235.74136 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4560236071281, - "y": 230.79735962610627 + "x": 523.45602, + "y": 230.79736 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3620236071281, - "y": 226.79735962610627 + "x": 526.36202, + "y": 226.79736 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0640236071281, - "y": 225.26935962610628 + "x": 531.06402, + "y": 225.26936 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7660236071281, - "y": 226.79735962610627 + "x": 535.76602, + "y": 226.79736 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.672023607128, - "y": 230.79735962610627 + "x": 538.67202, + "y": 230.79736 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1321 }, @@ -12611,11 +12611,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -12637,7 +12637,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7391387170240254, + "speed": 0.73914, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12667,20 +12667,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -12695,12 +12695,12 @@ } }, { - "x": 558.8879645920262, - "y": 241.62391480264205 + "x": 558.88796, + "y": 241.62391 }, { - "x": 543.6719645920263, - "y": 225.62391480264205 + "x": 543.67196, + "y": 225.62391 }, { "category": 1, @@ -12717,16 +12717,16 @@ "y": 0 }, { - "x": 551.2799645920262, - "y": 233.62391480264205 + "x": 551.27996, + "y": 233.62391 }, { "x": 0, "y": 0 }, { - "x": 551.2799993857361, - "y": 233.167331169137 + "x": 551.28, + "y": 233.16733 }, { "endCol": 11, @@ -12749,8 +12749,8 @@ "yScale": 1 }, { - "x": -0.000010101039038090676, - "y": -0.36560327993686315 + "x": -0.00001, + "y": -0.3656 }, [ { @@ -12788,78 +12788,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8879645920262, - "y": 236.09591480264206 + "x": 558.88796, + "y": 236.09591 }, { "body": null, "index": 1, "isInternal": false, - "x": 555.9819645920262, - "y": 240.09591480264206 + "x": 555.98196, + "y": 240.09591 }, { "body": null, "index": 2, "isInternal": false, - "x": 551.2799645920262, - "y": 241.62391480264205 + "x": 551.27996, + "y": 241.62391 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.5779645920262, - "y": 240.09591480264206 + "x": 546.57796, + "y": 240.09591 }, { "body": null, "index": 4, "isInternal": false, - "x": 543.6719645920263, - "y": 236.09591480264206 + "x": 543.67196, + "y": 236.09591 }, { "body": null, "index": 5, "isInternal": false, - "x": 543.6719645920263, - "y": 231.15191480264204 + "x": 543.67196, + "y": 231.15191 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.5779645920262, - "y": 227.15191480264204 + "x": 546.57796, + "y": 227.15191 }, { "body": null, "index": 7, "isInternal": false, - "x": 551.2799645920262, - "y": 225.62391480264205 + "x": 551.27996, + "y": 225.62391 }, { "body": null, "index": 8, "isInternal": false, - "x": 555.9819645920262, - "y": 227.15191480264204 + "x": 555.98196, + "y": 227.15191 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.8879645920262, - "y": 231.15191480264204 + "x": 558.88796, + "y": 231.15191 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1352 }, @@ -12888,11 +12888,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -12914,7 +12914,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7420758569107393, + "speed": 0.74208, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12944,20 +12944,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -12972,12 +12972,12 @@ } }, { - "x": 579.1039948374018, - "y": 241.63778976333583 + "x": 579.10399, + "y": 241.63779 }, { - "x": 563.887994837402, - "y": 225.63778976333583 + "x": 563.88799, + "y": 225.63779 }, { "category": 1, @@ -12994,16 +12994,16 @@ "y": 0 }, { - "x": 571.4959948374019, - "y": 233.6377897633359 + "x": 571.49599, + "y": 233.63779 }, { "x": 0, "y": 0 }, { - "x": 571.495999996513, - "y": 233.17084413326836 + "x": 571.496, + "y": 233.17084 }, { "endCol": 12, @@ -13026,8 +13026,8 @@ "yScale": 1 }, { - "x": -2.504934855096508e-7, - "y": -0.3612881713068532 + "x": 0, + "y": -0.36129 }, [ { @@ -13065,78 +13065,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1039948374018, - "y": 236.10978976333584 + "x": 579.10399, + "y": 236.10979 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1979948374019, - "y": 240.10978976333584 + "x": 576.19799, + "y": 240.10979 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4959948374019, - "y": 241.63778976333583 + "x": 571.49599, + "y": 241.63779 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7939948374019, - "y": 240.10978976333584 + "x": 566.79399, + "y": 240.10979 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.887994837402, - "y": 236.10978976333584 + "x": 563.88799, + "y": 236.10979 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.887994837402, - "y": 231.16578976333582 + "x": 563.88799, + "y": 231.16579 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7939948374019, - "y": 227.16578976333582 + "x": 566.79399, + "y": 227.16579 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4959948374019, - "y": 225.63778976333583 + "x": 571.49599, + "y": 225.63779 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1979948374019, - "y": 227.16578976333582 + "x": 576.19799, + "y": 227.16579 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1039948374018, - "y": 231.16578976333582 + "x": 579.10399, + "y": 231.16579 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1383 }, @@ -13165,11 +13165,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -13191,7 +13191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7420939379001452, + "speed": 0.74209, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13221,20 +13221,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -13249,12 +13249,12 @@ } }, { - "x": 599.31999999138, - "y": 241.63792735304088 + "x": 599.32, + "y": 241.63793 }, { - "x": 584.1039999913801, - "y": 225.63792735304088 + "x": 584.104, + "y": 225.63793 }, { "category": 1, @@ -13271,16 +13271,16 @@ "y": 0 }, { - "x": 591.7119999913801, - "y": 233.63792735304082 + "x": 591.712, + "y": 233.63793 }, { "x": 0, "y": 0 }, { - "x": 591.7119999999743, - "y": 233.17086325900377 + "x": 591.712, + "y": 233.17086 }, { "endCol": 12, @@ -13303,8 +13303,8 @@ "yScale": 1 }, { - "x": -4.063167580170557e-10, - "y": -0.3612457305728469 + "x": 0, + "y": -0.36125 }, [ { @@ -13342,78 +13342,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.31999999138, - "y": 236.1099273530409 + "x": 599.32, + "y": 236.10993 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.41399999138, - "y": 240.1099273530409 + "x": 596.414, + "y": 240.10993 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.71199999138, - "y": 241.63792735304088 + "x": 591.712, + "y": 241.63793 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.00999999138, - "y": 240.1099273530409 + "x": 587.01, + "y": 240.10993 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039999913801, - "y": 236.1099273530409 + "x": 584.104, + "y": 236.10993 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039999913801, - "y": 231.16592735304087 + "x": 584.104, + "y": 231.16593 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.00999999138, - "y": 227.16592735304087 + "x": 587.01, + "y": 227.16593 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.71199999138, - "y": 225.63792735304088 + "x": 591.712, + "y": 225.63793 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.41399999138, - "y": 227.16592735304087 + "x": 596.414, + "y": 227.16593 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.31999999138, - "y": 231.16592735304087 + "x": 599.32, + "y": 231.16593 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1414 }, @@ -13442,11 +13442,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -13468,7 +13468,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1129860085146892, + "speed": 1.11299, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13498,20 +13498,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -13526,12 +13526,12 @@ } }, { - "x": 215.21600496348668, - "y": 265.83451083616796 + "x": 215.216, + "y": 265.83451 }, { - "x": 200.00000496348667, - "y": 249.834510836168 + "x": 200, + "y": 249.83451 }, { "category": 1, @@ -13548,16 +13548,16 @@ "y": 0 }, { - "x": 207.60800496348665, - "y": 257.83451083616796 + "x": 207.608, + "y": 257.83451 }, { "x": 0, "y": 0 }, { - "x": 207.6080000057571, - "y": 256.9822169334688 + "x": 207.608, + "y": 256.98222 }, { "endCol": 4, @@ -13580,8 +13580,8 @@ "yScale": 1 }, { - "x": 1.9880107515746204e-7, - "y": 0.1497807942515692 + "x": 0, + "y": 0.14978 }, [ { @@ -13619,78 +13619,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.21600496348668, - "y": 260.306510836168 + "x": 215.216, + "y": 260.30651 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.31000496348668, - "y": 264.30651083616794 + "x": 212.31, + "y": 264.30651 }, { "body": null, "index": 2, "isInternal": false, - "x": 207.60800496348668, - "y": 265.83451083616796 + "x": 207.608, + "y": 265.83451 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.90600496348668, - "y": 264.30651083616794 + "x": 202.906, + "y": 264.30651 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.00000496348667, - "y": 260.306510836168 + "x": 200, + "y": 260.30651 }, { "body": null, "index": 5, "isInternal": false, - "x": 200.00000496348667, - "y": 255.36251083616798 + "x": 200, + "y": 255.36251 }, { "body": null, "index": 6, "isInternal": false, - "x": 202.90600496348668, - "y": 251.36251083616798 + "x": 202.906, + "y": 251.36251 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.60800496348668, - "y": 249.834510836168 + "x": 207.608, + "y": 249.83451 }, { "body": null, "index": 8, "isInternal": false, - "x": 212.31000496348668, - "y": 251.36251083616798 + "x": 212.31, + "y": 251.36251 }, { "body": null, "index": 9, "isInternal": false, - "x": 215.21600496348668, - "y": 255.36251083616798 + "x": 215.216, + "y": 255.36251 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1445 }, @@ -13719,11 +13719,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -13745,7 +13745,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1368891892669302, + "speed": 1.13689, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13775,20 +13775,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -13803,12 +13803,12 @@ } }, { - "x": 235.4323420210971, - "y": 265.9210349983517 + "x": 235.43234, + "y": 265.92103 }, { - "x": 220.2163420210971, - "y": 249.92103499835167 + "x": 220.21634, + "y": 249.92103 }, { "category": 1, @@ -13825,16 +13825,16 @@ "y": 0 }, { - "x": 227.82434202109718, - "y": 257.9210349983517 + "x": 227.82434, + "y": 257.92103 }, { "x": 0, "y": 0 }, { - "x": 227.82400450680214, - "y": 257.01598789562183 + "x": 227.824, + "y": 257.01599 }, { "endCol": 4, @@ -13857,8 +13857,8 @@ "yScale": 1 }, { - "x": 0.00016313710125359648, - "y": 0.17708371405365142 + "x": 0.00016, + "y": 0.17708 }, [ { @@ -13896,78 +13896,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.4323420210971, - "y": 260.3930349983517 + "x": 235.43234, + "y": 260.39303 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.5263420210971, - "y": 264.39303499835165 + "x": 232.52634, + "y": 264.39303 }, { "body": null, "index": 2, "isInternal": false, - "x": 227.8243420210971, - "y": 265.9210349983517 + "x": 227.82434, + "y": 265.92103 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.1223420210971, - "y": 264.39303499835165 + "x": 223.12234, + "y": 264.39303 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.2163420210971, - "y": 260.3930349983517 + "x": 220.21634, + "y": 260.39303 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.2163420210971, - "y": 255.44903499835166 + "x": 220.21634, + "y": 255.44903 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.1223420210971, - "y": 251.44903499835166 + "x": 223.12234, + "y": 251.44903 }, { "body": null, "index": 7, "isInternal": false, - "x": 227.8243420210971, - "y": 249.92103499835167 + "x": 227.82434, + "y": 249.92103 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.5263420210971, - "y": 251.44903499835166 + "x": 232.52634, + "y": 251.44903 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.4323420210971, - "y": 255.44903499835166 + "x": 235.43234, + "y": 255.44903 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1476 }, @@ -13996,11 +13996,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -14022,7 +14022,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9645274686573311, + "speed": 0.96453, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14052,20 +14052,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -14080,12 +14080,12 @@ } }, { - "x": 255.64774769986963, - "y": 265.3536699541492 + "x": 255.64775, + "y": 265.35367 }, { - "x": 240.43174769986962, - "y": 249.3536699541492 + "x": 240.43175, + "y": 249.35367 }, { "category": 1, @@ -14102,16 +14102,16 @@ "y": 0 }, { - "x": 248.0397476998696, - "y": 257.3536699541492 + "x": 248.03975, + "y": 257.35367 }, { "x": 0, "y": 0 }, { - "x": 248.03999750974356, - "y": 256.72644360586304 + "x": 248.04, + "y": 256.72644 }, { "endCol": 5, @@ -14134,8 +14134,8 @@ "yScale": 1 }, { - "x": -0.00012628209449871974, - "y": 0.021477976539756582 + "x": -0.00013, + "y": 0.02148 }, [ { @@ -14173,78 +14173,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64774769986963, - "y": 259.82566995414925 + "x": 255.64775, + "y": 259.82567 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.74174769986962, - "y": 263.8256699541492 + "x": 252.74175, + "y": 263.82567 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.03974769986962, - "y": 265.3536699541492 + "x": 248.03975, + "y": 265.35367 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33774769986962, - "y": 263.8256699541492 + "x": 243.33775, + "y": 263.82567 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.43174769986962, - "y": 259.82566995414925 + "x": 240.43175, + "y": 259.82567 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.43174769986962, - "y": 254.8816699541492 + "x": 240.43175, + "y": 254.88167 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33774769986962, - "y": 250.8816699541492 + "x": 243.33775, + "y": 250.88167 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.03974769986962, - "y": 249.3536699541492 + "x": 248.03975, + "y": 249.35367 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.74174769986962, - "y": 250.8816699541492 + "x": 252.74175, + "y": 250.88167 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64774769986963, - "y": 254.8816699541492 + "x": 255.64775, + "y": 254.88167 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1507 }, @@ -14273,11 +14273,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -14299,7 +14299,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9712437074586453, + "speed": 0.97124, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14329,20 +14329,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -14357,12 +14357,12 @@ } }, { - "x": 275.86498958756107, - "y": 265.34231199798444 + "x": 275.86499, + "y": 265.34231 }, { - "x": 260.64898958756106, - "y": 249.34231199798455 + "x": 260.64899, + "y": 249.34231 }, { "category": 1, @@ -14379,16 +14379,16 @@ "y": 0 }, { - "x": 268.2569895875612, - "y": 257.34231199798455 + "x": 268.25699, + "y": 257.34231 }, { "x": 0, "y": 0 }, { - "x": 268.256115975977, - "y": 256.75423324753973 + "x": 268.25612, + "y": 256.75423 }, { "endCol": 5, @@ -14411,8 +14411,8 @@ "yScale": 1 }, { - "x": 0.0004288253704771705, - "y": 0.0088060955945366 + "x": 0.00043, + "y": 0.00881 }, [ { @@ -14450,78 +14450,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.86498958756107, - "y": 259.8143119979845 + "x": 275.86499, + "y": 259.81431 }, { "body": null, "index": 1, "isInternal": false, - "x": 272.95898958756106, - "y": 263.8143119979844 + "x": 272.95899, + "y": 263.81431 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.25698958756107, - "y": 265.34231199798444 + "x": 268.25699, + "y": 265.34231 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.55498958756107, - "y": 263.8143119979844 + "x": 263.55499, + "y": 263.81431 }, { "body": null, "index": 4, "isInternal": false, - "x": 260.64898958756106, - "y": 259.8143119979845 + "x": 260.64899, + "y": 259.81431 }, { "body": null, "index": 5, "isInternal": false, - "x": 260.64898958756106, - "y": 254.87031199798454 + "x": 260.64899, + "y": 254.87031 }, { "body": null, "index": 6, "isInternal": false, - "x": 263.55498958756107, - "y": 250.87031199798454 + "x": 263.55499, + "y": 250.87031 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.25698958756107, - "y": 249.34231199798455 + "x": 268.25699, + "y": 249.34231 }, { "body": null, "index": 8, "isInternal": false, - "x": 272.95898958756106, - "y": 250.87031199798454 + "x": 272.95899, + "y": 250.87031 }, { "body": null, "index": 9, "isInternal": false, - "x": 275.86498958756107, - "y": 254.87031199798454 + "x": 275.86499, + "y": 254.87031 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1538 }, @@ -14550,11 +14550,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -14576,7 +14576,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7274193215069849, + "speed": 0.72742, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14606,20 +14606,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -14634,12 +14634,12 @@ } }, { - "x": 296.07986202827755, - "y": 264.5454692255543 + "x": 296.07986, + "y": 264.54547 }, { - "x": 280.86386202827754, - "y": 248.54546922555434 + "x": 280.86386, + "y": 248.54547 }, { "category": 1, @@ -14656,16 +14656,16 @@ "y": 0 }, { - "x": 288.4718620282776, - "y": 256.54546922555426 + "x": 288.47186, + "y": 256.54547 }, { "x": 0, "y": 0 }, { - "x": 288.4719187660759, - "y": 256.2502799182702 + "x": 288.47192, + "y": 256.25028 }, { "endCol": 6, @@ -14688,8 +14688,8 @@ "yScale": 1 }, { - "x": -0.00011455536747462247, - "y": -0.165652783263738 + "x": -0.00011, + "y": -0.16565 }, [ { @@ -14727,78 +14727,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.07986202827755, - "y": 259.0174692255543 + "x": 296.07986, + "y": 259.01747 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.17386202827754, - "y": 263.0174692255543 + "x": 293.17386, + "y": 263.01747 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.47186202827754, - "y": 264.5454692255543 + "x": 288.47186, + "y": 264.54547 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.76986202827754, - "y": 263.0174692255543 + "x": 283.76986, + "y": 263.01747 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.86386202827754, - "y": 259.0174692255543 + "x": 280.86386, + "y": 259.01747 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.86386202827754, - "y": 254.07346922555433 + "x": 280.86386, + "y": 254.07347 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.76986202827754, - "y": 250.07346922555433 + "x": 283.76986, + "y": 250.07347 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.47186202827754, - "y": 248.54546922555434 + "x": 288.47186, + "y": 248.54547 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.17386202827754, - "y": 250.07346922555433 + "x": 293.17386, + "y": 250.07347 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.07986202827755, - "y": 254.07346922555433 + "x": 296.07986, + "y": 254.07347 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1569 }, @@ -14827,11 +14827,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -14853,7 +14853,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5936274351174544, + "speed": 0.59363, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14883,20 +14883,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -14911,12 +14911,12 @@ } }, { - "x": 316.30143038593764, - "y": 264.0870094103508 + "x": 316.30143, + "y": 264.08701 }, { - "x": 301.0854303859376, - "y": 248.08700941035096 + "x": 301.08543, + "y": 248.08701 }, { "category": 1, @@ -14933,16 +14933,16 @@ "y": 0 }, { - "x": 308.69343038593763, - "y": 256.087009410351 + "x": 308.69343, + "y": 256.08701 }, { "x": 0, "y": 0 }, { - "x": 308.6882589862785, - "y": 256.0421445551766 + "x": 308.68826, + "y": 256.04214 }, { "endCol": 6, @@ -14965,8 +14965,8 @@ "yScale": 1 }, { - "x": 0.004929860702418409, - "y": -0.3010904653347666 + "x": 0.00493, + "y": -0.30109 }, [ { @@ -15004,78 +15004,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.30143038593764, - "y": 258.55900941035077 + "x": 316.30143, + "y": 258.55901 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.39543038593763, - "y": 262.55900941035077 + "x": 313.39543, + "y": 262.55901 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.69343038593763, - "y": 264.0870094103508 + "x": 308.69343, + "y": 264.08701 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.99143038593763, - "y": 262.55900941035077 + "x": 303.99143, + "y": 262.55901 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.0854303859376, - "y": 258.55900941035077 + "x": 301.08543, + "y": 258.55901 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.0854303859376, - "y": 253.61500941035095 + "x": 301.08543, + "y": 253.61501 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.99143038593763, - "y": 249.61500941035095 + "x": 303.99143, + "y": 249.61501 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.69343038593763, - "y": 248.08700941035096 + "x": 308.69343, + "y": 248.08701 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.39543038593763, - "y": 249.61500941035095 + "x": 313.39543, + "y": 249.61501 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.30143038593764, - "y": 253.61500941035095 + "x": 316.30143, + "y": 253.61501 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1600 }, @@ -15104,11 +15104,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -15130,7 +15130,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9129571653017273, + "speed": 0.91296, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15160,20 +15160,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -15188,12 +15188,12 @@ } }, { - "x": 336.5058236658188, - "y": 265.1590819858004 + "x": 336.50582, + "y": 265.15908 }, { - "x": 321.2898236658188, - "y": 249.15908198580064 + "x": 321.28982, + "y": 249.15908 }, { "category": 1, @@ -15210,16 +15210,16 @@ "y": 0 }, { - "x": 328.89782366581886, - "y": 257.1590819858004 + "x": 328.89782, + "y": 257.15908 }, { "x": 0, "y": 0 }, { - "x": 328.90362281069594, - "y": 256.64218360505515 + "x": 328.90362, + "y": 256.64218 }, { "endCol": 7, @@ -15242,8 +15242,8 @@ "yScale": 1 }, { - "x": -0.005274376492707233, - "y": -0.0348175320153814 + "x": -0.00527, + "y": -0.03482 }, [ { @@ -15281,78 +15281,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.5058236658188, - "y": 259.6310819858005 + "x": 336.50582, + "y": 259.63108 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.5998236658188, - "y": 263.6310819858004 + "x": 333.59982, + "y": 263.63108 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.8978236658188, - "y": 265.1590819858004 + "x": 328.89782, + "y": 265.15908 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.1958236658188, - "y": 263.6310819858004 + "x": 324.19582, + "y": 263.63108 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.2898236658188, - "y": 259.6310819858005 + "x": 321.28982, + "y": 259.63108 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.2898236658188, - "y": 254.68708198580063 + "x": 321.28982, + "y": 254.68708 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.1958236658188, - "y": 250.68708198580063 + "x": 324.19582, + "y": 250.68708 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.8978236658188, - "y": 249.15908198580064 + "x": 328.89782, + "y": 249.15908 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.5998236658188, - "y": 250.68708198580063 + "x": 333.59982, + "y": 250.68708 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.5058236658188, - "y": 254.68708198580063 + "x": 336.50582, + "y": 254.68708 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1631 }, @@ -15381,11 +15381,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -15407,7 +15407,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9065643065937027, + "speed": 0.90656, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15437,20 +15437,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -15465,12 +15465,12 @@ } }, { - "x": 356.7281827639716, - "y": 265.1591718086608 + "x": 356.72818, + "y": 265.15917 }, { - "x": 341.51218276397157, - "y": 249.1591718086609 + "x": 341.51218, + "y": 249.15917 }, { "category": 1, @@ -15487,16 +15487,16 @@ "y": 0 }, { - "x": 349.1201827639716, - "y": 257.159171808661 + "x": 349.12018, + "y": 257.15917 }, { "x": 0, "y": 0 }, { - "x": 349.12000726116116, - "y": 256.63753335049375 + "x": 349.12001, + "y": 256.63753 }, { "endCol": 7, @@ -15519,8 +15519,8 @@ "yScale": 1 }, { - "x": 0.00008820823040878167, - "y": -0.03625869190904041 + "x": 0.00009, + "y": -0.03626 }, [ { @@ -15558,78 +15558,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.7281827639716, - "y": 259.63117180866084 + "x": 356.72818, + "y": 259.63117 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82218276397157, - "y": 263.6311718086608 + "x": 353.82218, + "y": 263.63117 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12018276397157, - "y": 265.1591718086608 + "x": 349.12018, + "y": 265.15917 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.4181827639716, - "y": 263.6311718086608 + "x": 344.41818, + "y": 263.63117 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51218276397157, - "y": 259.63117180866084 + "x": 341.51218, + "y": 259.63117 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51218276397157, - "y": 254.68717180866088 + "x": 341.51218, + "y": 254.68717 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.4181827639716, - "y": 250.68717180866088 + "x": 344.41818, + "y": 250.68717 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12018276397157, - "y": 249.1591718086609 + "x": 349.12018, + "y": 249.15917 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82218276397157, - "y": 250.68717180866088 + "x": 353.82218, + "y": 250.68717 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.7281827639716, - "y": 254.68717180866088 + "x": 356.72818, + "y": 254.68717 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1662 }, @@ -15658,11 +15658,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -15684,7 +15684,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1337346298673678, + "speed": 1.13373, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15714,20 +15714,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -15742,12 +15742,12 @@ } }, { - "x": 376.9430485708696, - "y": 265.9063177185483 + "x": 376.94305, + "y": 265.90632 }, { - "x": 361.7270485708696, - "y": 249.90631771854825 + "x": 361.72705, + "y": 249.90632 }, { "category": 1, @@ -15764,16 +15764,16 @@ "y": 0 }, { - "x": 369.3350485708696, - "y": 257.9063177185482 + "x": 369.33505, + "y": 257.90632 }, { "x": 0, "y": 0 }, { - "x": 369.3359807228972, - "y": 257.01201605440207 + "x": 369.33598, + "y": 257.01202 }, { "endCol": 7, @@ -15796,8 +15796,8 @@ "yScale": 1 }, { - "x": -0.0003423733107865701, - "y": 0.17225486445880733 + "x": -0.00034, + "y": 0.17225 }, [ { @@ -15835,78 +15835,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9430485708696, - "y": 260.3783177185483 + "x": 376.94305, + "y": 260.37832 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.0370485708696, - "y": 264.37831771854826 + "x": 374.03705, + "y": 264.37832 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.3350485708696, - "y": 265.9063177185483 + "x": 369.33505, + "y": 265.90632 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.6330485708696, - "y": 264.37831771854826 + "x": 364.63305, + "y": 264.37832 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.7270485708696, - "y": 260.3783177185483 + "x": 361.72705, + "y": 260.37832 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.7270485708696, - "y": 255.43431771854824 + "x": 361.72705, + "y": 255.43432 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.6330485708696, - "y": 251.43431771854824 + "x": 364.63305, + "y": 251.43432 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.3350485708696, - "y": 249.90631771854825 + "x": 369.33505, + "y": 249.90632 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.0370485708696, - "y": 251.43431771854824 + "x": 374.03705, + "y": 251.43432 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9430485708696, - "y": 255.43431771854824 + "x": 376.94305, + "y": 255.43432 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1693 }, @@ -15935,11 +15935,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -15961,7 +15961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.111834345124646, + "speed": 1.11183, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15991,20 +15991,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -16019,12 +16019,12 @@ } }, { - "x": 397.15994613838393, - "y": 265.82708292961826 + "x": 397.15995, + "y": 265.82708 }, { - "x": 381.9439461383839, - "y": 249.8270829296182 + "x": 381.94395, + "y": 249.82708 }, { "category": 1, @@ -16041,16 +16041,16 @@ "y": 0 }, { - "x": 389.5519461383839, - "y": 257.82708292961826 + "x": 389.55195, + "y": 257.82708 }, { "x": 0, "y": 0 }, { - "x": 389.5519973006521, - "y": 256.98093883991487 + "x": 389.552, + "y": 256.98094 }, { "endCol": 8, @@ -16073,8 +16073,8 @@ "yScale": 1 }, { - "x": -0.00001901365556022938, - "y": 0.1473654978714194 + "x": -0.00002, + "y": 0.14737 }, [ { @@ -16112,78 +16112,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.15994613838393, - "y": 260.2990829296183 + "x": 397.15995, + "y": 260.29908 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2539461383839, - "y": 264.29908292961824 + "x": 394.25395, + "y": 264.29908 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5519461383839, - "y": 265.82708292961826 + "x": 389.55195, + "y": 265.82708 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8499461383839, - "y": 264.29908292961824 + "x": 384.84995, + "y": 264.29908 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9439461383839, - "y": 260.2990829296183 + "x": 381.94395, + "y": 260.29908 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9439461383839, - "y": 255.3550829296182 + "x": 381.94395, + "y": 255.35508 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8499461383839, - "y": 251.3550829296182 + "x": 384.84995, + "y": 251.35508 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5519461383839, - "y": 249.8270829296182 + "x": 389.55195, + "y": 249.82708 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2539461383839, - "y": 251.3550829296182 + "x": 394.25395, + "y": 251.35508 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.15994613838393, - "y": 255.3550829296182 + "x": 397.15995, + "y": 255.35508 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1724 }, @@ -16212,11 +16212,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -16238,7 +16238,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.110289844987545, + "speed": 1.11029, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16268,20 +16268,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -16296,12 +16296,12 @@ } }, { - "x": 417.3759995077731, - "y": 265.81978170623563 + "x": 417.376, + "y": 265.81978 }, { - "x": 402.1599995077731, - "y": 249.81978170623566 + "x": 402.16, + "y": 249.81978 }, { "category": 1, @@ -16318,16 +16318,16 @@ "y": 0 }, { - "x": 409.7679995077731, - "y": 257.8197817062357 + "x": 409.768, + "y": 257.81978 }, { "x": 0, "y": 0 }, { - "x": 409.7679999966876, - "y": 256.97908707886984 + "x": 409.768, + "y": 256.97909 }, { "endCol": 8, @@ -16350,8 +16350,8 @@ "yScale": 1 }, { - "x": -3.9134249618655303e-8, - "y": 0.14492753348758924 + "x": 0, + "y": 0.14493 }, [ { @@ -16389,78 +16389,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3759995077731, - "y": 260.29178170623567 + "x": 417.376, + "y": 260.29178 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4699995077731, - "y": 264.2917817062356 + "x": 414.47, + "y": 264.29178 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7679995077731, - "y": 265.81978170623563 + "x": 409.768, + "y": 265.81978 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0659995077731, - "y": 264.2917817062356 + "x": 405.066, + "y": 264.29178 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1599995077731, - "y": 260.29178170623567 + "x": 402.16, + "y": 260.29178 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1599995077731, - "y": 255.34778170623565 + "x": 402.16, + "y": 255.34778 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0659995077731, - "y": 251.34778170623565 + "x": 405.066, + "y": 251.34778 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7679995077731, - "y": 249.81978170623566 + "x": 409.768, + "y": 249.81978 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4699995077731, - "y": 251.34778170623565 + "x": 414.47, + "y": 251.34778 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3759995077731, - "y": 255.34778170623565 + "x": 417.376, + "y": 255.34778 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1755 }, @@ -16489,11 +16489,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -16515,7 +16515,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1098519691180961, + "speed": 1.10985, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16545,20 +16545,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -16573,12 +16573,12 @@ } }, { - "x": 437.59217714699497, - "y": 265.817076265518 + "x": 437.59218, + "y": 265.81708 }, { - "x": 422.37617714699496, - "y": 249.81707626551795 + "x": 422.37618, + "y": 249.81708 }, { "category": 1, @@ -16595,16 +16595,16 @@ "y": 0 }, { - "x": 429.98417714699497, - "y": 257.8170762655179 + "x": 429.98418, + "y": 257.81708 }, { "x": 0, "y": 0 }, { - "x": 429.9840025328392, - "y": 256.9786073246753 + "x": 429.984, + "y": 256.97861 }, { "endCol": 9, @@ -16627,8 +16627,8 @@ "yScale": 1 }, { - "x": 0.00001858261003917505, - "y": 0.14403431256698696 + "x": 0.00002, + "y": 0.14403 }, [ { @@ -16666,78 +16666,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.59217714699497, - "y": 260.289076265518 + "x": 437.59218, + "y": 260.28908 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.68617714699496, - "y": 264.28907626551796 + "x": 434.68618, + "y": 264.28908 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.98417714699497, - "y": 265.817076265518 + "x": 429.98418, + "y": 265.81708 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.28217714699497, - "y": 264.28907626551796 + "x": 425.28218, + "y": 264.28908 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.37617714699496, - "y": 260.289076265518 + "x": 422.37618, + "y": 260.28908 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.37617714699496, - "y": 255.34507626551795 + "x": 422.37618, + "y": 255.34508 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.28217714699497, - "y": 251.34507626551795 + "x": 425.28218, + "y": 251.34508 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.98417714699497, - "y": 249.81707626551795 + "x": 429.98418, + "y": 249.81708 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.68617714699496, - "y": 251.34507626551795 + "x": 434.68618, + "y": 251.34508 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.59217714699497, - "y": 255.34507626551795 + "x": 437.59218, + "y": 255.34508 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1786 }, @@ -16766,11 +16766,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -16792,7 +16792,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.097687282438591, + "speed": 1.09769, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16822,20 +16822,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -16850,12 +16850,12 @@ } }, { - "x": 457.8095887967459, - "y": 265.76821146719925 + "x": 457.80959, + "y": 265.76821 }, { - "x": 442.5935887967459, - "y": 249.76821146719922 + "x": 442.59359, + "y": 249.76821 }, { "category": 1, @@ -16872,16 +16872,16 @@ "y": 0 }, { - "x": 450.20158879674585, - "y": 257.76821146719925 + "x": 450.20159, + "y": 257.76821 }, { "x": 0, "y": 0 }, { - "x": 450.2001553860991, - "y": 256.9626291395935 + "x": 450.20016, + "y": 256.96263 }, { "endCol": 9, @@ -16904,8 +16904,8 @@ "yScale": 1 }, { - "x": 0.0007084910494086216, - "y": 0.12812851078422227 + "x": 0.00071, + "y": 0.12813 }, [ { @@ -16943,78 +16943,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8095887967459, - "y": 260.2402114671993 + "x": 457.80959, + "y": 260.24021 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9035887967459, - "y": 264.24021146719923 + "x": 454.90359, + "y": 264.24021 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2015887967459, - "y": 265.76821146719925 + "x": 450.20159, + "y": 265.76821 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.4995887967459, - "y": 264.24021146719923 + "x": 445.49959, + "y": 264.24021 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.5935887967459, - "y": 260.2402114671993 + "x": 442.59359, + "y": 260.24021 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.5935887967459, - "y": 255.2962114671992 + "x": 442.59359, + "y": 255.29621 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.4995887967459, - "y": 251.2962114671992 + "x": 445.49959, + "y": 251.29621 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2015887967459, - "y": 249.76821146719922 + "x": 450.20159, + "y": 249.76821 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9035887967459, - "y": 251.2962114671992 + "x": 454.90359, + "y": 251.29621 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8095887967459, - "y": 255.2962114671992 + "x": 457.80959, + "y": 255.29621 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1817 }, @@ -17043,11 +17043,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -17069,7 +17069,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8214238296189921, + "speed": 0.82142, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17099,20 +17099,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -17127,12 +17127,12 @@ } }, { - "x": 478.02298114193377, - "y": 264.8351821683637 + "x": 478.02298, + "y": 264.83518 }, { - "x": 462.80698114193376, - "y": 248.83518216836373 + "x": 462.80698, + "y": 248.83518 }, { "category": 1, @@ -17149,16 +17149,16 @@ "y": 0 }, { - "x": 470.4149811419338, - "y": 256.83518216836376 + "x": 470.41498, + "y": 256.83518 }, { "x": 0, "y": 0 }, { - "x": 470.4158933927016, - "y": 256.5191745316645 + "x": 470.41589, + "y": 256.51917 }, { "endCol": 9, @@ -17181,8 +17181,8 @@ "yScale": 1 }, { - "x": -0.00047328382134992353, - "y": -0.13932450090391058 + "x": -0.00047, + "y": -0.13932 }, [ { @@ -17220,78 +17220,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.02298114193377, - "y": 259.30718216836374 + "x": 478.02298, + "y": 259.30718 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.11698114193376, - "y": 263.3071821683637 + "x": 475.11698, + "y": 263.30718 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.41498114193377, - "y": 264.8351821683637 + "x": 470.41498, + "y": 264.83518 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.71298114193377, - "y": 263.3071821683637 + "x": 465.71298, + "y": 263.30718 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.80698114193376, - "y": 259.30718216836374 + "x": 462.80698, + "y": 259.30718 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.80698114193376, - "y": 254.36318216836372 + "x": 462.80698, + "y": 254.36318 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.71298114193377, - "y": 250.36318216836372 + "x": 465.71298, + "y": 250.36318 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.41498114193377, - "y": 248.83518216836373 + "x": 470.41498, + "y": 248.83518 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.11698114193376, - "y": 250.36318216836372 + "x": 475.11698, + "y": 250.36318 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.02298114193377, - "y": 254.36318216836372 + "x": 478.02298, + "y": 254.36318 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1848 }, @@ -17320,11 +17320,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -17346,7 +17346,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8098881134826796, + "speed": 0.80989, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17376,20 +17376,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -17404,12 +17404,12 @@ } }, { - "x": 498.239874932717, - "y": 264.79153719977955 + "x": 498.23987, + "y": 264.79154 }, { - "x": 483.023874932717, - "y": 248.79153719977958 + "x": 483.02387, + "y": 248.79154 }, { "category": 1, @@ -17426,16 +17426,16 @@ "y": 0 }, { - "x": 490.631874932717, - "y": 256.7915371997796 + "x": 490.63187, + "y": 256.79154 }, { "x": 0, "y": 0 }, { - "x": 490.6319989810746, - "y": 256.50251345823887 + "x": 490.632, + "y": 256.50251 }, { "endCol": 10, @@ -17458,8 +17458,8 @@ "yScale": 1 }, { - "x": -0.00000663214427731873, - "y": -0.1526048483514728 + "x": -0.00001, + "y": -0.1526 }, [ { @@ -17497,78 +17497,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.239874932717, - "y": 259.2635371997796 + "x": 498.23987, + "y": 259.26354 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.333874932717, - "y": 263.26353719977953 + "x": 495.33387, + "y": 263.26354 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.631874932717, - "y": 264.79153719977955 + "x": 490.63187, + "y": 264.79154 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.929874932717, - "y": 263.26353719977953 + "x": 485.92987, + "y": 263.26354 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.023874932717, - "y": 259.2635371997796 + "x": 483.02387, + "y": 259.26354 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.023874932717, - "y": 254.31953719977957 + "x": 483.02387, + "y": 254.31954 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.929874932717, - "y": 250.31953719977957 + "x": 485.92987, + "y": 250.31954 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.631874932717, - "y": 248.79153719977958 + "x": 490.63187, + "y": 248.79154 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.333874932717, - "y": 250.31953719977957 + "x": 495.33387, + "y": 250.31954 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.239874932717, - "y": 254.31953719977957 + "x": 498.23987, + "y": 254.31954 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1879 }, @@ -17597,11 +17597,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -17623,7 +17623,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8098563535490592, + "speed": 0.80986, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17653,20 +17653,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -17681,12 +17681,12 @@ } }, { - "x": 518.4560824887132, - "y": 264.7914227834693 + "x": 518.45608, + "y": 264.79142 }, { - "x": 503.2400824887131, - "y": 248.79142278346924 + "x": 503.24008, + "y": 248.79142 }, { "category": 1, @@ -17703,16 +17703,16 @@ "y": 0 }, { - "x": 510.8480824887131, - "y": 256.79142278346933 + "x": 510.84808, + "y": 256.79142 }, { "x": 0, "y": 0 }, { - "x": 510.8479999756957, - "y": 256.50246751131084 + "x": 510.848, + "y": 256.50247 }, { "endCol": 10, @@ -17735,8 +17735,8 @@ "yScale": 1 }, { - "x": 0.0000017855198279903561, - "y": -0.15264070012261755 + "x": 0, + "y": -0.15264 }, [ { @@ -17774,78 +17774,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4560824887132, - "y": 259.2634227834693 + "x": 518.45608, + "y": 259.26342 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5500824887132, - "y": 263.26342278346925 + "x": 515.55008, + "y": 263.26342 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8480824887131, - "y": 264.7914227834693 + "x": 510.84808, + "y": 264.79142 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.1460824887131, - "y": 263.26342278346925 + "x": 506.14608, + "y": 263.26342 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2400824887131, - "y": 259.2634227834693 + "x": 503.24008, + "y": 259.26342 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2400824887131, - "y": 254.31942278346924 + "x": 503.24008, + "y": 254.31942 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.1460824887131, - "y": 250.31942278346924 + "x": 506.14608, + "y": 250.31942 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8480824887131, - "y": 248.79142278346924 + "x": 510.84808, + "y": 248.79142 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5500824887132, - "y": 250.31942278346924 + "x": 515.55008, + "y": 250.31942 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4560824887132, - "y": 254.31942278346924 + "x": 518.45608, + "y": 254.31942 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1910 }, @@ -17874,11 +17874,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -17900,7 +17900,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8214963619983464, + "speed": 0.8215, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17930,20 +17930,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -17958,12 +17958,12 @@ } }, { - "x": 538.6730764308651, - "y": 264.8353749238257 + "x": 538.67308, + "y": 264.83537 }, { - "x": 523.4570764308652, - "y": 248.83537492382564 + "x": 523.45708, + "y": 248.83537 }, { "category": 1, @@ -17980,16 +17980,16 @@ "y": 0 }, { - "x": 531.065076430865, - "y": 256.8353749238257 + "x": 531.06508, + "y": 256.83537 }, { "x": 0, "y": 0 }, { - "x": 531.0641075443307, - "y": 256.51929026005143 + "x": 531.06411, + "y": 256.51929 }, { "endCol": 11, @@ -18012,8 +18012,8 @@ "yScale": 1 }, { - "x": 0.0004778311134714386, - "y": -0.13926648303367983 + "x": 0.00048, + "y": -0.13927 }, [ { @@ -18051,78 +18051,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 538.6730764308651, - "y": 259.30737492382576 + "x": 538.67308, + "y": 259.30737 }, { "body": null, "index": 1, "isInternal": false, - "x": 535.7670764308651, - "y": 263.3073749238257 + "x": 535.76708, + "y": 263.30737 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0650764308651, - "y": 264.8353749238257 + "x": 531.06508, + "y": 264.83537 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3630764308651, - "y": 263.3073749238257 + "x": 526.36308, + "y": 263.30737 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4570764308652, - "y": 259.30737492382576 + "x": 523.45708, + "y": 259.30737 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4570764308652, - "y": 254.36337492382563 + "x": 523.45708, + "y": 254.36337 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3630764308651, - "y": 250.36337492382563 + "x": 526.36308, + "y": 250.36337 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0650764308651, - "y": 248.83537492382564 + "x": 531.06508, + "y": 248.83537 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7670764308651, - "y": 250.36337492382563 + "x": 535.76708, + "y": 250.36337 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.6730764308651, - "y": 254.36337492382563 + "x": 538.67308, + "y": 254.36337 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1941 }, @@ -18151,11 +18151,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -18177,7 +18177,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0975875878387442, + "speed": 1.09759, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18207,20 +18207,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -18235,12 +18235,12 @@ } }, { - "x": 558.8866395104175, - "y": 265.76768990381106 + "x": 558.88664, + "y": 265.76769 }, { - "x": 543.6706395104176, - "y": 249.7676899038111 + "x": 543.67064, + "y": 249.76769 }, { "category": 1, @@ -18257,16 +18257,16 @@ "y": 0 }, { - "x": 551.2786395104174, - "y": 257.7676899038112 + "x": 551.27864, + "y": 257.76769 }, { "x": 0, "y": 0 }, { - "x": 551.2798464187754, - "y": 256.9625080926844 + "x": 551.27985, + "y": 256.96251 }, { "endCol": 11, @@ -18289,8 +18289,8 @@ "yScale": 1 }, { - "x": -0.0005865960054052266, - "y": 0.12796744081271072 + "x": -0.00059, + "y": 0.12797 }, [ { @@ -18328,78 +18328,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8866395104175, - "y": 260.2396899038111 + "x": 558.88664, + "y": 260.23969 }, { "body": null, "index": 1, "isInternal": false, - "x": 555.9806395104175, - "y": 264.23968990381104 + "x": 555.98064, + "y": 264.23969 }, { "body": null, "index": 2, "isInternal": false, - "x": 551.2786395104175, - "y": 265.76768990381106 + "x": 551.27864, + "y": 265.76769 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.5766395104175, - "y": 264.23968990381104 + "x": 546.57664, + "y": 264.23969 }, { "body": null, "index": 4, "isInternal": false, - "x": 543.6706395104176, - "y": 260.2396899038111 + "x": 543.67064, + "y": 260.23969 }, { "body": null, "index": 5, "isInternal": false, - "x": 543.6706395104176, - "y": 255.29568990381108 + "x": 543.67064, + "y": 255.29569 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.5766395104175, - "y": 251.29568990381108 + "x": 546.57664, + "y": 251.29569 }, { "body": null, "index": 7, "isInternal": false, - "x": 551.2786395104175, - "y": 249.7676899038111 + "x": 551.27864, + "y": 249.76769 }, { "body": null, "index": 8, "isInternal": false, - "x": 555.9806395104175, - "y": 251.29568990381108 + "x": 555.98064, + "y": 251.29569 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.8866395104175, - "y": 255.29568990381108 + "x": 558.88664, + "y": 255.29569 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 1972 }, @@ -18428,11 +18428,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -18454,7 +18454,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1098141687933687, + "speed": 1.10981, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18484,20 +18484,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -18512,12 +18512,12 @@ } }, { - "x": 579.1035762940471, - "y": 265.8167115126342 + "x": 579.10358, + "y": 265.81671 }, { - "x": 563.8875762940472, - "y": 249.81671151263413 + "x": 563.88758, + "y": 249.81671 }, { "category": 1, @@ -18534,16 +18534,16 @@ "y": 0 }, { - "x": 571.495576294047, - "y": 257.81671151263413 + "x": 571.49558, + "y": 257.81671 }, { "x": 0, "y": 0 }, { - "x": 571.4959960880202, - "y": 256.97856662489863 + "x": 571.496, + "y": 256.97857 }, { "endCol": 12, @@ -18566,8 +18566,8 @@ "yScale": 1 }, { - "x": -0.00014043525311535632, - "y": 0.14392454219159845 + "x": -0.00014, + "y": 0.14392 }, [ { @@ -18605,78 +18605,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.1035762940471, - "y": 260.2887115126342 + "x": 579.10358, + "y": 260.28871 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1975762940472, - "y": 264.28871151263417 + "x": 576.19758, + "y": 264.28871 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4955762940472, - "y": 265.8167115126342 + "x": 571.49558, + "y": 265.81671 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7935762940472, - "y": 264.28871151263417 + "x": 566.79358, + "y": 264.28871 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8875762940472, - "y": 260.2887115126342 + "x": 563.88758, + "y": 260.28871 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8875762940472, - "y": 255.34471151263412 + "x": 563.88758, + "y": 255.34471 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7935762940472, - "y": 251.34471151263412 + "x": 566.79358, + "y": 251.34471 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4955762940472, - "y": 249.81671151263413 + "x": 571.49558, + "y": 249.81671 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1975762940472, - "y": 251.34471151263412 + "x": 576.19758, + "y": 251.34471 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.1035762940471, - "y": 255.34471151263412 + "x": 579.10358, + "y": 255.34471 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2003 }, @@ -18705,11 +18705,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -18731,7 +18731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1099388059251403, + "speed": 1.10994, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18761,20 +18761,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -18789,12 +18789,12 @@ } }, { - "x": 599.3199935305457, - "y": 265.81738962556693 + "x": 599.31999, + "y": 265.81739 }, { - "x": 584.1039935305458, - "y": 249.81738962556696 + "x": 584.10399, + "y": 249.81739 }, { "category": 1, @@ -18811,16 +18811,16 @@ "y": 0 }, { - "x": 591.7119935305458, - "y": 257.817389625567 + "x": 591.71199, + "y": 257.81739 }, { "x": 0, "y": 0 }, { - "x": 591.7119999938978, - "y": 256.9787077166757 + "x": 591.712, + "y": 256.97871 }, { "endCol": 12, @@ -18843,8 +18843,8 @@ "yScale": 1 }, { - "x": -2.3466691345674917e-7, - "y": 0.14414911019491683 + "x": 0, + "y": 0.14415 }, [ { @@ -18882,78 +18882,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3199935305457, - "y": 260.28938962556697 + "x": 599.31999, + "y": 260.28939 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4139935305458, - "y": 264.2893896255669 + "x": 596.41399, + "y": 264.28939 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7119935305458, - "y": 265.81738962556693 + "x": 591.71199, + "y": 265.81739 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0099935305458, - "y": 264.2893896255669 + "x": 587.00999, + "y": 264.28939 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1039935305458, - "y": 260.28938962556697 + "x": 584.10399, + "y": 260.28939 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1039935305458, - "y": 255.34538962556695 + "x": 584.10399, + "y": 255.34539 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0099935305458, - "y": 251.34538962556695 + "x": 587.00999, + "y": 251.34539 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7119935305458, - "y": 249.81738962556696 + "x": 591.71199, + "y": 249.81739 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4139935305458, - "y": 251.34538962556695 + "x": 596.41399, + "y": 251.34539 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3199935305457, - "y": 255.34538962556695 + "x": 599.31999, + "y": 255.34539 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2034 }, @@ -18982,11 +18982,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -19008,7 +19008,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4829244845321232, + "speed": 1.48292, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19038,20 +19038,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -19066,12 +19066,12 @@ } }, { - "x": 215.21646535995342, - "y": 289.531681806165 + "x": 215.21647, + "y": 289.53168 }, { - "x": 200.0004653599534, - "y": 273.531681806165 + "x": 200.00047, + "y": 273.53168 }, { "category": 1, @@ -19088,16 +19088,16 @@ "y": 0 }, { - "x": 207.6084653599534, - "y": 281.5316818061649 + "x": 207.60847, + "y": 281.53168 }, { "x": 0, "y": 0 }, { - "x": 207.60800353954693, - "y": 280.2785465481072 + "x": 207.608, + "y": 280.27855 }, { "endCol": 4, @@ -19120,8 +19120,8 @@ "yScale": 1 }, { - "x": 0.0001579578536450299, - "y": 0.663503612921545 + "x": 0.00016, + "y": 0.6635 }, [ { @@ -19159,78 +19159,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.21646535995342, - "y": 284.003681806165 + "x": 215.21647, + "y": 284.00368 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.3104653599534, - "y": 288.003681806165 + "x": 212.31047, + "y": 288.00368 }, { "body": null, "index": 2, "isInternal": false, - "x": 207.6084653599534, - "y": 289.531681806165 + "x": 207.60847, + "y": 289.53168 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.90646535995342, - "y": 288.003681806165 + "x": 202.90647, + "y": 288.00368 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.0004653599534, - "y": 284.003681806165 + "x": 200.00047, + "y": 284.00368 }, { "body": null, "index": 5, "isInternal": false, - "x": 200.0004653599534, - "y": 279.05968180616503 + "x": 200.00047, + "y": 279.05968 }, { "body": null, "index": 6, "isInternal": false, - "x": 202.90646535995342, - "y": 275.05968180616503 + "x": 202.90647, + "y": 275.05968 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.6084653599534, - "y": 273.531681806165 + "x": 207.60847, + "y": 273.53168 }, { "body": null, "index": 8, "isInternal": false, - "x": 212.3104653599534, - "y": 275.05968180616503 + "x": 212.31047, + "y": 275.05968 }, { "body": null, "index": 9, "isInternal": false, - "x": 215.21646535995342, - "y": 279.05968180616503 + "x": 215.21647, + "y": 279.05968 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2065 }, @@ -19259,11 +19259,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -19285,7 +19285,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5461970039332498, + "speed": 1.5462, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19315,20 +19315,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -19343,12 +19343,12 @@ } }, { - "x": 235.4386275219032, - "y": 289.7392653069827 + "x": 235.43863, + "y": 289.73927 }, { - "x": 220.22262752190318, - "y": 273.7392653069827 + "x": 220.22263, + "y": 273.73927 }, { "category": 1, @@ -19365,16 +19365,16 @@ "y": 0 }, { - "x": 227.83062752190315, - "y": 281.7392653069828 + "x": 227.83063, + "y": 281.73927 }, { "x": 0, "y": 0 }, { - "x": 227.82443986581163, - "y": 280.381446844 + "x": 227.82444, + "y": 280.38145 }, { "endCol": 4, @@ -19397,8 +19397,8 @@ "yScale": 1 }, { - "x": 0.005455651060117361, - "y": 0.7234777178907166 + "x": 0.00546, + "y": 0.72348 }, [ { @@ -19436,78 +19436,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.4386275219032, - "y": 284.2112653069827 + "x": 235.43863, + "y": 284.21127 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.53262752190318, - "y": 288.2112653069827 + "x": 232.53263, + "y": 288.21127 }, { "body": null, "index": 2, "isInternal": false, - "x": 227.83062752190318, - "y": 289.7392653069827 + "x": 227.83063, + "y": 289.73927 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.12862752190318, - "y": 288.2112653069827 + "x": 223.12863, + "y": 288.21127 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.22262752190318, - "y": 284.2112653069827 + "x": 220.22263, + "y": 284.21127 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.22262752190318, - "y": 279.2672653069827 + "x": 220.22263, + "y": 279.26727 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.12862752190318, - "y": 275.2672653069827 + "x": 223.12863, + "y": 275.26727 }, { "body": null, "index": 7, "isInternal": false, - "x": 227.83062752190318, - "y": 273.7392653069827 + "x": 227.83063, + "y": 273.73927 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.53262752190318, - "y": 275.2672653069827 + "x": 232.53263, + "y": 275.26727 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.4386275219032, - "y": 279.2672653069827 + "x": 235.43863, + "y": 279.26727 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2096 }, @@ -19536,11 +19536,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -19562,7 +19562,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2178610802900185, + "speed": 1.21786, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19592,20 +19592,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -19620,12 +19620,12 @@ } }, { - "x": 255.64311244137238, - "y": 288.6386582457659 + "x": 255.64311, + "y": 288.63866 }, { - "x": 240.42711244137237, - "y": 272.6386582457659 + "x": 240.42711, + "y": 272.63866 }, { "category": 1, @@ -19642,16 +19642,16 @@ "y": 0 }, { - "x": 248.03511244137235, - "y": 280.63865824576584 + "x": 248.03511, + "y": 280.63866 }, { "x": 0, "y": 0 }, { - "x": 248.03981176621633, - "y": 279.704236765629 + "x": 248.03981, + "y": 279.70424 }, { "endCol": 5, @@ -19674,8 +19674,8 @@ "yScale": 1 }, { - "x": -0.004717093412637041, - "y": 0.4666778671090128 + "x": -0.00472, + "y": 0.46668 }, [ { @@ -19713,78 +19713,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.64311244137238, - "y": 283.1106582457659 + "x": 255.64311, + "y": 283.11066 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.73711244137237, - "y": 287.1106582457659 + "x": 252.73711, + "y": 287.11066 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.03511244137238, - "y": 288.6386582457659 + "x": 248.03511, + "y": 288.63866 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.33311244137238, - "y": 287.1106582457659 + "x": 243.33311, + "y": 287.11066 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.42711244137237, - "y": 283.1106582457659 + "x": 240.42711, + "y": 283.11066 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.42711244137237, - "y": 278.1666582457659 + "x": 240.42711, + "y": 278.16666 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.33311244137238, - "y": 274.1666582457659 + "x": 243.33311, + "y": 274.16666 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.03511244137238, - "y": 272.6386582457659 + "x": 248.03511, + "y": 272.63866 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.73711244137237, - "y": 274.1666582457659 + "x": 252.73711, + "y": 274.16666 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.64311244137238, - "y": 278.1666582457659 + "x": 255.64311, + "y": 278.16666 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2127 }, @@ -19813,11 +19813,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -19839,7 +19839,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.172096241681343, + "speed": 1.1721, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19869,20 +19869,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -19897,12 +19897,12 @@ } }, { - "x": 275.8827616570219, - "y": 288.4575503996589 + "x": 275.88276, + "y": 288.45755 }, { - "x": 260.6667616570219, - "y": 272.4575503996589 + "x": 260.66676, + "y": 272.45755 }, { "category": 1, @@ -19919,16 +19919,16 @@ "y": 0 }, { - "x": 268.2747616570218, - "y": 280.45755039965906 + "x": 268.27476, + "y": 280.45755 }, { "x": 0, "y": 0 }, { - "x": 268.26084991274735, - "y": 279.6958739901654 + "x": 268.26085, + "y": 279.69587 }, { "endCol": 5, @@ -19951,8 +19951,8 @@ "yScale": 1 }, { - "x": 0.013598578012818052, - "y": 0.3842497818706079 + "x": 0.0136, + "y": 0.38425 }, [ { @@ -19990,78 +19990,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.8827616570219, - "y": 282.92955039965886 + "x": 275.88276, + "y": 282.92955 }, { "body": null, "index": 1, "isInternal": false, - "x": 272.9767616570219, - "y": 286.92955039965886 + "x": 272.97676, + "y": 286.92955 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.2747616570219, - "y": 288.4575503996589 + "x": 268.27476, + "y": 288.45755 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.5727616570219, - "y": 286.92955039965886 + "x": 263.57276, + "y": 286.92955 }, { "body": null, "index": 4, "isInternal": false, - "x": 260.6667616570219, - "y": 282.92955039965886 + "x": 260.66676, + "y": 282.92955 }, { "body": null, "index": 5, "isInternal": false, - "x": 260.6667616570219, - "y": 277.9855503996589 + "x": 260.66676, + "y": 277.98555 }, { "body": null, "index": 6, "isInternal": false, - "x": 263.5727616570219, - "y": 273.9855503996589 + "x": 263.57276, + "y": 273.98555 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.2747616570219, - "y": 272.4575503996589 + "x": 268.27476, + "y": 272.45755 }, { "body": null, "index": 8, "isInternal": false, - "x": 272.9767616570219, - "y": 273.9855503996589 + "x": 272.97676, + "y": 273.98555 }, { "body": null, "index": 9, "isInternal": false, - "x": 275.8827616570219, - "y": 277.9855503996589 + "x": 275.88276, + "y": 277.98555 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2158 }, @@ -20090,11 +20090,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -20116,7 +20116,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8343103562438392, + "speed": 0.83431, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20146,20 +20146,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -20174,12 +20174,12 @@ } }, { - "x": 296.0830015572998, - "y": 287.2024954985326 + "x": 296.083, + "y": 287.2025 }, { - "x": 280.8670015572998, - "y": 271.2024954985326 + "x": 280.867, + "y": 271.2025 }, { "category": 1, @@ -20196,16 +20196,16 @@ "y": 0 }, { - "x": 288.47500155729983, - "y": 279.20249549853264 + "x": 288.475, + "y": 279.2025 }, { "x": 0, "y": 0 }, { - "x": 288.46796332620823, - "y": 278.74967256266996 + "x": 288.46796, + "y": 278.74967 }, { "endCol": 6, @@ -20228,8 +20228,8 @@ "yScale": 1 }, { - "x": 0.006706829362883582, - "y": 0.17832276925361157 + "x": 0.00671, + "y": 0.17832 }, [ { @@ -20267,78 +20267,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.0830015572998, - "y": 281.67449549853256 + "x": 296.083, + "y": 281.6745 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.1770015572998, - "y": 285.67449549853256 + "x": 293.177, + "y": 285.6745 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.4750015572998, - "y": 287.2024954985326 + "x": 288.475, + "y": 287.2025 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.7730015572998, - "y": 285.67449549853256 + "x": 283.773, + "y": 285.6745 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.8670015572998, - "y": 281.67449549853256 + "x": 280.867, + "y": 281.6745 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.8670015572998, - "y": 276.7304954985326 + "x": 280.867, + "y": 276.7305 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.7730015572998, - "y": 272.7304954985326 + "x": 283.773, + "y": 272.7305 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.4750015572998, - "y": 271.2024954985326 + "x": 288.475, + "y": 271.2025 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.1770015572998, - "y": 272.7304954985326 + "x": 293.177, + "y": 272.7305 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.0830015572998, - "y": 276.7304954985326 + "x": 296.083, + "y": 276.7305 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2189 }, @@ -20367,11 +20367,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -20393,7 +20393,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5328553093222581, + "speed": 0.53286, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20423,20 +20423,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -20451,12 +20451,12 @@ } }, { - "x": 316.3169670041423, - "y": 286.2295946964473 + "x": 316.31697, + "y": 286.22959 }, { - "x": 301.1009670041423, - "y": 270.2295946964473 + "x": 301.10097, + "y": 270.22959 }, { "category": 1, @@ -20473,16 +20473,16 @@ "y": 0 }, { - "x": 308.7089670041424, - "y": 278.2295946964473 + "x": 308.70897, + "y": 278.22959 }, { "x": 0, "y": 0 }, { - "x": 308.6983354568595, - "y": 278.2002923544896 + "x": 308.69834, + "y": 278.20029 }, { "endCol": 6, @@ -20505,8 +20505,8 @@ "yScale": 1 }, { - "x": 0.0104813145441085, - "y": -0.07542210088462298 + "x": 0.01048, + "y": -0.07542 }, [ { @@ -20544,78 +20544,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.3169670041423, - "y": 280.7015946964473 + "x": 316.31697, + "y": 280.70159 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.4109670041423, - "y": 284.7015946964473 + "x": 313.41097, + "y": 284.70159 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.7089670041423, - "y": 286.2295946964473 + "x": 308.70897, + "y": 286.22959 }, { "body": null, "index": 3, "isInternal": false, - "x": 304.0069670041423, - "y": 284.7015946964473 + "x": 304.00697, + "y": 284.70159 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.1009670041423, - "y": 280.7015946964473 + "x": 301.10097, + "y": 280.70159 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.1009670041423, - "y": 275.7575946964473 + "x": 301.10097, + "y": 275.75759 }, { "body": null, "index": 6, "isInternal": false, - "x": 304.0069670041423, - "y": 271.7575946964473 + "x": 304.00697, + "y": 271.75759 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.7089670041423, - "y": 270.2295946964473 + "x": 308.70897, + "y": 270.22959 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.4109670041423, - "y": 271.7575946964473 + "x": 313.41097, + "y": 271.75759 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.3169670041423, - "y": 275.7575946964473 + "x": 316.31697, + "y": 275.75759 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2220 }, @@ -20644,11 +20644,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -20670,7 +20670,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0882422596855617, + "speed": 1.08824, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20700,20 +20700,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -20728,12 +20728,12 @@ } }, { - "x": 336.4835491224147, - "y": 288.1807924324661 + "x": 336.48355, + "y": 288.18079 }, { - "x": 321.26754912241466, - "y": 272.1807924324661 + "x": 321.26755, + "y": 272.18079 }, { "category": 1, @@ -20750,16 +20750,16 @@ "y": 0 }, { - "x": 328.87554912241455, - "y": 280.180792432466 + "x": 328.87555, + "y": 280.18079 }, { "x": 0, "y": 0 }, { - "x": 328.89271008974924, - "y": 279.4762323496072 + "x": 328.89271, + "y": 279.47623 }, { "endCol": 7, @@ -20782,8 +20782,8 @@ "yScale": 1 }, { - "x": -0.016435014457101715, - "y": 0.33798787513785555 + "x": -0.01644, + "y": 0.33799 }, [ { @@ -20821,78 +20821,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.4835491224147, - "y": 282.6527924324661 + "x": 336.48355, + "y": 282.65279 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.57754912241467, - "y": 286.6527924324661 + "x": 333.57755, + "y": 286.65279 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.87554912241467, - "y": 288.1807924324661 + "x": 328.87555, + "y": 288.18079 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.17354912241467, - "y": 286.6527924324661 + "x": 324.17355, + "y": 286.65279 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.26754912241466, - "y": 282.6527924324661 + "x": 321.26755, + "y": 282.65279 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.26754912241466, - "y": 277.7087924324661 + "x": 321.26755, + "y": 277.70879 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.17354912241467, - "y": 273.7087924324661 + "x": 324.17355, + "y": 273.70879 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.87554912241467, - "y": 272.1807924324661 + "x": 328.87555, + "y": 272.18079 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.57754912241467, - "y": 273.7087924324661 + "x": 333.57755, + "y": 273.70879 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.4835491224147, - "y": 277.7087924324661 + "x": 336.48355, + "y": 277.70879 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2251 }, @@ -20921,11 +20921,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -20947,7 +20947,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0913598251700274, + "speed": 1.09136, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20977,20 +20977,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -21005,12 +21005,12 @@ } }, { - "x": 356.73179852921317, - "y": 288.23143598976293 + "x": 356.7318, + "y": 288.23144 }, { - "x": 341.51579852921316, - "y": 272.23143598976293 + "x": 341.5158, + "y": 272.23144 }, { "category": 1, @@ -21027,16 +21027,16 @@ "y": 0 }, { - "x": 349.12379852921316, - "y": 280.2314359897631 + "x": 349.1238, + "y": 280.23144 }, { "x": 0, "y": 0 }, { - "x": 349.12032447470335, - "y": 279.471190367567 + "x": 349.12032, + "y": 279.47119 }, { "endCol": 7, @@ -21059,8 +21059,8 @@ "yScale": 1 }, { - "x": 0.003406058513917287, - "y": 0.36167263425039664 + "x": 0.00341, + "y": 0.36167 }, [ { @@ -21098,78 +21098,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.73179852921317, - "y": 282.7034359897629 + "x": 356.7318, + "y": 282.70344 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82579852921316, - "y": 286.7034359897629 + "x": 353.8258, + "y": 286.70344 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12379852921316, - "y": 288.23143598976293 + "x": 349.1238, + "y": 288.23144 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.42179852921316, - "y": 286.7034359897629 + "x": 344.4218, + "y": 286.70344 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51579852921316, - "y": 282.7034359897629 + "x": 341.5158, + "y": 282.70344 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51579852921316, - "y": 277.75943598976295 + "x": 341.5158, + "y": 277.75944 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.42179852921316, - "y": 273.75943598976295 + "x": 344.4218, + "y": 273.75944 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12379852921316, - "y": 272.23143598976293 + "x": 349.1238, + "y": 272.23144 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82579852921316, - "y": 273.75943598976295 + "x": 353.8258, + "y": 273.75944 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.73179852921317, - "y": 277.75943598976295 + "x": 356.7318, + "y": 277.75944 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2282 }, @@ -21198,11 +21198,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -21224,7 +21224,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5341011079911828, + "speed": 1.5341, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21254,20 +21254,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -21282,12 +21282,12 @@ } }, { - "x": 376.9230244186267, - "y": 289.6915385907864 + "x": 376.92302, + "y": 289.69154 }, { - "x": 361.7070244186267, - "y": 273.6915385907864 + "x": 361.70702, + "y": 273.69154 }, { "category": 1, @@ -21304,16 +21304,16 @@ "y": 0 }, { - "x": 369.31502441862665, - "y": 281.69153859078637 + "x": 369.31502, + "y": 281.69154 }, { "x": 0, "y": 0 }, { - "x": 369.3349604508507, - "y": 280.3649959195978 + "x": 369.33496, + "y": 280.365 }, { "endCol": 7, @@ -21336,8 +21336,8 @@ "yScale": 1 }, { - "x": -0.018834327158458564, - "y": 0.707455192553823 + "x": -0.01883, + "y": 0.70746 }, [ { @@ -21375,78 +21375,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.9230244186267, - "y": 284.1635385907864 + "x": 376.92302, + "y": 284.16354 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.0170244186267, - "y": 288.1635385907864 + "x": 374.01702, + "y": 288.16354 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.3150244186267, - "y": 289.6915385907864 + "x": 369.31502, + "y": 289.69154 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.6130244186267, - "y": 288.1635385907864 + "x": 364.61302, + "y": 288.16354 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.7070244186267, - "y": 284.1635385907864 + "x": 361.70702, + "y": 284.16354 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.7070244186267, - "y": 279.21953859078644 + "x": 361.70702, + "y": 279.21954 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.6130244186267, - "y": 275.21953859078644 + "x": 364.61302, + "y": 275.21954 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.3150244186267, - "y": 273.6915385907864 + "x": 369.31502, + "y": 273.69154 }, { "body": null, "index": 8, "isInternal": false, - "x": 374.0170244186267, - "y": 275.21953859078644 + "x": 374.01702, + "y": 275.21954 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.9230244186267, - "y": 279.21953859078644 + "x": 376.92302, + "y": 279.21954 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2313 }, @@ -21475,11 +21475,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -21501,7 +21501,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4763141042014845, + "speed": 1.47631, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21531,20 +21531,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -21559,12 +21559,12 @@ } }, { - "x": 397.1582406691859, - "y": 289.49969120693567 + "x": 397.15824, + "y": 289.49969 }, { - "x": 381.9422406691859, - "y": 273.49969120693567 + "x": 381.94224, + "y": 273.49969 }, { "category": 1, @@ -21581,16 +21581,16 @@ "y": 0 }, { - "x": 389.5502406691859, - "y": 281.49969120693567 + "x": 389.55024, + "y": 281.49969 }, { "x": 0, "y": 0 }, { - "x": 389.5516920732538, - "y": 280.2707150119339 + "x": 389.55169, + "y": 280.27072 }, { "endCol": 8, @@ -21613,8 +21613,8 @@ "yScale": 1 }, { - "x": -0.0008085248803126888, - "y": 0.6527036709555318 + "x": -0.00081, + "y": 0.6527 }, [ { @@ -21652,78 +21652,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1582406691859, - "y": 283.97169120693565 + "x": 397.15824, + "y": 283.97169 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2522406691859, - "y": 287.97169120693565 + "x": 394.25224, + "y": 287.97169 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5502406691859, - "y": 289.49969120693567 + "x": 389.55024, + "y": 289.49969 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8482406691859, - "y": 287.97169120693565 + "x": 384.84824, + "y": 287.97169 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9422406691859, - "y": 283.97169120693565 + "x": 381.94224, + "y": 283.97169 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9422406691859, - "y": 279.0276912069357 + "x": 381.94224, + "y": 279.02769 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8482406691859, - "y": 275.0276912069357 + "x": 384.84824, + "y": 275.02769 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5502406691859, - "y": 273.49969120693567 + "x": 389.55024, + "y": 273.49969 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2522406691859, - "y": 275.0276912069357 + "x": 394.25224, + "y": 275.02769 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1582406691859, - "y": 279.0276912069357 + "x": 397.15824, + "y": 279.02769 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2344 }, @@ -21752,11 +21752,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -21778,7 +21778,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4700622487351493, + "speed": 1.47006, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21808,20 +21808,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -21836,12 +21836,12 @@ } }, { - "x": 417.37597130603365, - "y": 289.4750380167896 + "x": 417.37597, + "y": 289.47504 }, { - "x": 402.15997130603364, - "y": 273.4750380167896 + "x": 402.15997, + "y": 273.47504 }, { "category": 1, @@ -21858,16 +21858,16 @@ "y": 0 }, { - "x": 409.76797130603364, - "y": 281.47503801678965 + "x": 409.76797, + "y": 281.47504 }, { "x": 0, "y": 0 }, { - "x": 409.7679993268993, - "y": 280.26246433875855 + "x": 409.768, + "y": 280.26246 }, { "endCol": 8, @@ -21890,8 +21890,8 @@ "yScale": 1 }, { - "x": -0.000014743966232799721, - "y": 0.6446186491075991 + "x": -0.00001, + "y": 0.64462 }, [ { @@ -21929,78 +21929,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.37597130603365, - "y": 283.9470380167896 + "x": 417.37597, + "y": 283.94704 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.46997130603364, - "y": 287.9470380167896 + "x": 414.46997, + "y": 287.94704 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.76797130603364, - "y": 289.4750380167896 + "x": 409.76797, + "y": 289.47504 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.06597130603365, - "y": 287.9470380167896 + "x": 405.06597, + "y": 287.94704 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.15997130603364, - "y": 283.9470380167896 + "x": 402.15997, + "y": 283.94704 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.15997130603364, - "y": 279.0030380167896 + "x": 402.15997, + "y": 279.00304 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.06597130603365, - "y": 275.0030380167896 + "x": 405.06597, + "y": 275.00304 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.76797130603364, - "y": 273.4750380167896 + "x": 409.76797, + "y": 273.47504 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.46997130603364, - "y": 275.0030380167896 + "x": 414.46997, + "y": 275.00304 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.37597130603365, - "y": 279.0030380167896 + "x": 417.37597, + "y": 279.00304 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2375 }, @@ -22029,11 +22029,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -22055,7 +22055,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4676294766253368, + "speed": 1.46763, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22085,20 +22085,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -22113,12 +22113,12 @@ } }, { - "x": 437.5980312500715, - "y": 289.4637749729474 + "x": 437.59803, + "y": 289.46377 }, { - "x": 422.38203125007146, - "y": 273.4637749729474 + "x": 422.38203, + "y": 273.46377 }, { "category": 1, @@ -22135,16 +22135,16 @@ "y": 0 }, { - "x": 429.9900312500715, - "y": 281.4637749729475 + "x": 429.99003, + "y": 281.46377 }, { "x": 0, "y": 0 }, { - "x": 429.9843035151228, - "y": 280.259572233443 + "x": 429.9843, + "y": 280.25957 }, { "endCol": 9, @@ -22167,8 +22167,8 @@ "yScale": 1 }, { - "x": 0.005060187028732344, - "y": 0.6408073868097404 + "x": 0.00506, + "y": 0.64081 }, [ { @@ -22206,78 +22206,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.5980312500715, - "y": 283.9357749729474 + "x": 437.59803, + "y": 283.93577 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.69203125007147, - "y": 287.9357749729474 + "x": 434.69203, + "y": 287.93577 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.99003125007147, - "y": 289.4637749729474 + "x": 429.99003, + "y": 289.46377 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.28803125007147, - "y": 287.9357749729474 + "x": 425.28803, + "y": 287.93577 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.38203125007146, - "y": 283.9357749729474 + "x": 422.38203, + "y": 283.93577 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.38203125007146, - "y": 278.99177497294744 + "x": 422.38203, + "y": 278.99177 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.28803125007147, - "y": 274.99177497294744 + "x": 425.28803, + "y": 274.99177 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.99003125007147, - "y": 273.4637749729474 + "x": 429.99003, + "y": 273.46377 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.69203125007147, - "y": 274.99177497294744 + "x": 434.69203, + "y": 274.99177 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.5980312500715, - "y": 278.99177497294744 + "x": 437.59803, + "y": 278.99177 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2406 }, @@ -22306,11 +22306,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -22332,7 +22332,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.429489800442271, + "speed": 1.42949, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22362,20 +22362,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -22390,12 +22390,12 @@ } }, { - "x": 457.8358175177234, - "y": 289.3255752322127 + "x": 457.83582, + "y": 289.32558 }, { - "x": 442.6198175177234, - "y": 273.3255752322127 + "x": 442.61982, + "y": 273.32558 }, { "category": 1, @@ -22412,16 +22412,16 @@ "y": 0 }, { - "x": 450.22781751772345, - "y": 281.3255752322127 + "x": 450.22782, + "y": 281.32558 }, { "x": 0, "y": 0 }, { - "x": 450.2061170707994, - "y": 280.2031603503951 + "x": 450.20612, + "y": 280.20316 }, { "endCol": 9, @@ -22444,8 +22444,8 @@ "yScale": 1 }, { - "x": 0.02011783621895802, - "y": 0.5974005443691794 + "x": 0.02012, + "y": 0.5974 }, [ { @@ -22483,78 +22483,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.8358175177234, - "y": 283.7975752322127 + "x": 457.83582, + "y": 283.79758 }, { "body": null, "index": 1, "isInternal": false, - "x": 454.9298175177234, - "y": 287.7975752322127 + "x": 454.92982, + "y": 287.79758 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.2278175177234, - "y": 289.3255752322127 + "x": 450.22782, + "y": 289.32558 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.5258175177234, - "y": 287.7975752322127 + "x": 445.52582, + "y": 287.79758 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.6198175177234, - "y": 283.7975752322127 + "x": 442.61982, + "y": 283.79758 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.6198175177234, - "y": 278.85357523221273 + "x": 442.61982, + "y": 278.85358 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.5258175177234, - "y": 274.85357523221273 + "x": 445.52582, + "y": 274.85358 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.2278175177234, - "y": 273.3255752322127 + "x": 450.22782, + "y": 273.32558 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.9298175177234, - "y": 274.85357523221273 + "x": 454.92982, + "y": 274.85358 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.8358175177234, - "y": 278.85357523221273 + "x": 457.83582, + "y": 278.85358 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2437 }, @@ -22583,11 +22583,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -22609,7 +22609,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8472428528768257, + "speed": 0.84724, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22639,20 +22639,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -22667,12 +22667,12 @@ } }, { - "x": 478.0009261909807, - "y": 287.3902322997291 + "x": 478.00093, + "y": 287.39023 }, { - "x": 462.7849261909807, - "y": 271.3902322997291 + "x": 462.78493, + "y": 271.39023 }, { "category": 1, @@ -22689,16 +22689,16 @@ "y": 0 }, { - "x": 470.39292619098075, - "y": 279.3902322997292 + "x": 470.39293, + "y": 279.39023 }, { "x": 0, "y": 0 }, { - "x": 470.41082823867544, - "y": 279.08985340905446 + "x": 470.41083, + "y": 279.08985 }, { "endCol": 9, @@ -22721,8 +22721,8 @@ "yScale": 1 }, { - "x": -0.01740922261654987, - "y": 0.11131541332764527 + "x": -0.01741, + "y": 0.11132 }, [ { @@ -22760,78 +22760,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.0009261909807, - "y": 281.8622322997291 + "x": 478.00093, + "y": 281.86223 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.0949261909807, - "y": 285.8622322997291 + "x": 475.09493, + "y": 285.86223 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.3929261909807, - "y": 287.3902322997291 + "x": 470.39293, + "y": 287.39023 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.6909261909807, - "y": 285.8622322997291 + "x": 465.69093, + "y": 285.86223 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.7849261909807, - "y": 281.8622322997291 + "x": 462.78493, + "y": 281.86223 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.7849261909807, - "y": 276.91823229972914 + "x": 462.78493, + "y": 276.91823 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.6909261909807, - "y": 272.91823229972914 + "x": 465.69093, + "y": 272.91823 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.3929261909807, - "y": 271.3902322997291 + "x": 470.39293, + "y": 271.39023 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.0949261909807, - "y": 272.91823229972914 + "x": 475.09493, + "y": 272.91823 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.0009261909807, - "y": 276.91823229972914 + "x": 478.00093, + "y": 276.91823 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2468 }, @@ -22860,11 +22860,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -22886,7 +22886,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8168844199765409, + "speed": 0.81688, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22916,20 +22916,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -22944,12 +22944,12 @@ } }, { - "x": 498.2337734218336, - "y": 287.2736968335189 + "x": 498.23377, + "y": 287.2737 }, { - "x": 483.01777342183357, - "y": 271.2736968335189 + "x": 483.01777, + "y": 271.2737 }, { "category": 1, @@ -22966,16 +22966,16 @@ "y": 0 }, { - "x": 490.6257734218337, - "y": 279.27369683351895 + "x": 490.62577, + "y": 279.2737 }, { "x": 0, "y": 0 }, { - "x": 490.63184647205185, - "y": 279.0397975939614 + "x": 490.63185, + "y": 279.0398 }, { "endCol": 10, @@ -22998,8 +22998,8 @@ "yScale": 1 }, { - "x": -0.0059070777561487375, - "y": 0.07662463327773139 + "x": -0.00591, + "y": 0.07662 }, [ { @@ -23037,78 +23037,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2337734218336, - "y": 281.7456968335189 + "x": 498.23377, + "y": 281.7457 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.32777342183357, - "y": 285.7456968335189 + "x": 495.32777, + "y": 285.7457 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.62577342183357, - "y": 287.2736968335189 + "x": 490.62577, + "y": 287.2737 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9237734218336, - "y": 285.7456968335189 + "x": 485.92377, + "y": 285.7457 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.01777342183357, - "y": 281.7456968335189 + "x": 483.01777, + "y": 281.7457 }, { "body": null, "index": 5, "isInternal": false, - "x": 483.01777342183357, - "y": 276.8016968335189 + "x": 483.01777, + "y": 276.8017 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9237734218336, - "y": 272.8016968335189 + "x": 485.92377, + "y": 272.8017 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.62577342183357, - "y": 271.2736968335189 + "x": 490.62577, + "y": 271.2737 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.32777342183357, - "y": 272.8016968335189 + "x": 495.32777, + "y": 272.8017 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2337734218336, - "y": 276.8016968335189 + "x": 498.23377, + "y": 276.8017 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2499 }, @@ -23137,11 +23137,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -23163,7 +23163,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.816800687253729, + "speed": 0.8168, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23193,20 +23193,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -23221,12 +23221,12 @@ } }, { - "x": 518.4602683457343, - "y": 287.2734362994812 + "x": 518.46027, + "y": 287.27344 }, { - "x": 503.24426834573427, - "y": 271.2734362994812 + "x": 503.24427, + "y": 271.27344 }, { "category": 1, @@ -23243,16 +23243,16 @@ "y": 0 }, { - "x": 510.8522683457343, - "y": 279.2734362994812 + "x": 510.85227, + "y": 279.27344 }, { "x": 0, "y": 0 }, { - "x": 510.8480479893821, - "y": 279.03966131731573 + "x": 510.84805, + "y": 279.03966 }, { "endCol": 10, @@ -23275,8 +23275,8 @@ "yScale": 1 }, { - "x": 0.004115660273328103, - "y": 0.07654903209783015 + "x": 0.00412, + "y": 0.07655 }, [ { @@ -23314,78 +23314,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4602683457343, - "y": 281.7454362994812 + "x": 518.46027, + "y": 281.74544 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5542683457344, - "y": 285.7454362994812 + "x": 515.55427, + "y": 285.74544 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8522683457343, - "y": 287.2734362994812 + "x": 510.85227, + "y": 287.27344 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.1502683457343, - "y": 285.7454362994812 + "x": 506.15027, + "y": 285.74544 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.24426834573427, - "y": 281.7454362994812 + "x": 503.24427, + "y": 281.74544 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.24426834573427, - "y": 276.8014362994812 + "x": 503.24427, + "y": 276.80144 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.1502683457343, - "y": 272.8014362994812 + "x": 506.15027, + "y": 272.80144 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8522683457343, - "y": 271.2734362994812 + "x": 510.85227, + "y": 271.27344 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5542683457344, - "y": 272.8014362994812 + "x": 515.55427, + "y": 272.80144 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4602683457343, - "y": 276.8014362994812 + "x": 518.46027, + "y": 276.80144 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2530 }, @@ -23414,11 +23414,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -23440,7 +23440,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8473580135364105, + "speed": 0.84736, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23470,20 +23470,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -23498,12 +23498,12 @@ } }, { - "x": 538.6977412036185, - "y": 287.3901406645233 + "x": 538.69774, + "y": 287.39014 }, { - "x": 523.4817412036186, - "y": 271.3901406645233 + "x": 523.48174, + "y": 271.39014 }, { "category": 1, @@ -23520,16 +23520,16 @@ "y": 0 }, { - "x": 531.0897412036186, - "y": 279.39014066452347 + "x": 531.08974, + "y": 279.39014 }, { "x": 0, "y": 0 }, { - "x": 531.0692660472296, - "y": 279.0901062910727 + "x": 531.06927, + "y": 279.09011 }, { "endCol": 11, @@ -23552,8 +23552,8 @@ "yScale": 1 }, { - "x": 0.019930155520683, - "y": 0.11130986201266069 + "x": 0.01993, + "y": 0.11131 }, [ { @@ -23591,78 +23591,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 538.6977412036185, - "y": 281.8621406645233 + "x": 538.69774, + "y": 281.86214 }, { "body": null, "index": 1, "isInternal": false, - "x": 535.7917412036186, - "y": 285.8621406645233 + "x": 535.79174, + "y": 285.86214 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.0897412036186, - "y": 287.3901406645233 + "x": 531.08974, + "y": 287.39014 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.3877412036186, - "y": 285.8621406645233 + "x": 526.38774, + "y": 285.86214 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.4817412036186, - "y": 281.8621406645233 + "x": 523.48174, + "y": 281.86214 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.4817412036186, - "y": 276.9181406645233 + "x": 523.48174, + "y": 276.91814 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.3877412036186, - "y": 272.9181406645233 + "x": 526.38774, + "y": 272.91814 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.0897412036186, - "y": 271.3901406645233 + "x": 531.08974, + "y": 271.39014 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.7917412036186, - "y": 272.9181406645233 + "x": 535.79174, + "y": 272.91814 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.6977412036185, - "y": 276.9181406645233 + "x": 538.69774, + "y": 276.91814 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2561 }, @@ -23691,11 +23691,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -23717,7 +23717,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4290664770109112, + "speed": 1.42907, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23747,20 +23747,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -23775,12 +23775,12 @@ } }, { - "x": 558.8641180455255, - "y": 289.32353832931705 + "x": 558.86412, + "y": 289.32354 }, { - "x": 543.6481180455256, - "y": 273.32353832931705 + "x": 543.64812, + "y": 273.32354 }, { "category": 1, @@ -23797,16 +23797,16 @@ "y": 0 }, { - "x": 551.2561180455255, - "y": 281.3235383293171 + "x": 551.25612, + "y": 281.32354 }, { "x": 0, "y": 0 }, { - "x": 551.2740478791703, - "y": 280.2026050521617 + "x": 551.27405, + "y": 280.20261 }, { "endCol": 11, @@ -23829,8 +23829,8 @@ "yScale": 1 }, { - "x": -0.016504801260907698, - "y": 0.5967191529639422 + "x": -0.0165, + "y": 0.59672 }, [ { @@ -23868,78 +23868,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8641180455255, - "y": 283.795538329317 + "x": 558.86412, + "y": 283.79554 }, { "body": null, "index": 1, "isInternal": false, - "x": 555.9581180455256, - "y": 287.795538329317 + "x": 555.95812, + "y": 287.79554 }, { "body": null, "index": 2, "isInternal": false, - "x": 551.2561180455256, - "y": 289.32353832931705 + "x": 551.25612, + "y": 289.32354 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.5541180455256, - "y": 287.795538329317 + "x": 546.55412, + "y": 287.79554 }, { "body": null, "index": 4, "isInternal": false, - "x": 543.6481180455256, - "y": 283.795538329317 + "x": 543.64812, + "y": 283.79554 }, { "body": null, "index": 5, "isInternal": false, - "x": 543.6481180455256, - "y": 278.85153832931707 + "x": 543.64812, + "y": 278.85154 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.5541180455256, - "y": 274.85153832931707 + "x": 546.55412, + "y": 274.85154 }, { "body": null, "index": 7, "isInternal": false, - "x": 551.2561180455256, - "y": 273.32353832931705 + "x": 551.25612, + "y": 273.32354 }, { "body": null, "index": 8, "isInternal": false, - "x": 555.9581180455256, - "y": 274.85153832931707 + "x": 555.95812, + "y": 274.85154 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.8641180455255, - "y": 278.85153832931707 + "x": 558.86412, + "y": 278.85154 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2592 }, @@ -23968,11 +23968,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -23994,7 +23994,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.467323735650971, + "speed": 1.46732, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24024,20 +24024,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -24052,12 +24052,12 @@ } }, { - "x": 579.0935790561837, - "y": 289.46173399144226 + "x": 579.09358, + "y": 289.46173 }, { - "x": 563.8775790561838, - "y": 273.46173399144226 + "x": 563.87758, + "y": 273.46173 }, { "category": 1, @@ -24074,16 +24074,16 @@ "y": 0 }, { - "x": 571.485579056184, - "y": 281.4617339914422 + "x": 571.48558, + "y": 281.46173 }, { "x": 0, "y": 0 }, { - "x": 571.4955662107237, - "y": 280.25923299831976 + "x": 571.49557, + "y": 280.25923 }, { "endCol": 12, @@ -24106,8 +24106,8 @@ "yScale": 1 }, { - "x": -0.009278526853563562, - "y": 0.6401378506715787 + "x": -0.00928, + "y": 0.64014 }, [ { @@ -24145,78 +24145,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.0935790561837, - "y": 283.93373399144224 + "x": 579.09358, + "y": 283.93373 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1875790561837, - "y": 287.93373399144224 + "x": 576.18758, + "y": 287.93373 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4855790561837, - "y": 289.46173399144226 + "x": 571.48558, + "y": 289.46173 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7835790561837, - "y": 287.93373399144224 + "x": 566.78358, + "y": 287.93373 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8775790561838, - "y": 283.93373399144224 + "x": 563.87758, + "y": 283.93373 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8775790561838, - "y": 278.9897339914423 + "x": 563.87758, + "y": 278.98973 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7835790561837, - "y": 274.9897339914423 + "x": 566.78358, + "y": 274.98973 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4855790561837, - "y": 273.46173399144226 + "x": 571.48558, + "y": 273.46173 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1875790561837, - "y": 274.9897339914423 + "x": 576.18758, + "y": 274.98973 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.0935790561837, - "y": 278.9897339914423 + "x": 579.09358, + "y": 278.98973 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2623 }, @@ -24245,11 +24245,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -24271,7 +24271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4679087483906266, + "speed": 1.46791, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24301,20 +24301,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -24329,12 +24329,12 @@ } }, { - "x": 599.3193834035234, - "y": 289.4643840723811 + "x": 599.31938, + "y": 289.46438 }, { - "x": 584.1033834035235, - "y": 273.4643840723811 + "x": 584.10338, + "y": 273.46438 }, { "category": 1, @@ -24351,16 +24351,16 @@ "y": 0 }, { - "x": 591.7113834035233, - "y": 281.46438407238105 + "x": 591.71138, + "y": 281.46438 }, { "x": 0, "y": 0 }, { - "x": 591.7119957835932, - "y": 280.25996303067535 + "x": 591.712, + "y": 280.25996 }, { "endCol": 12, @@ -24383,8 +24383,8 @@ "yScale": 1 }, { - "x": -0.00020927058073993976, - "y": 0.6410249901364296 + "x": -0.00021, + "y": 0.64102 }, [ { @@ -24422,78 +24422,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3193834035234, - "y": 283.9363840723811 + "x": 599.31938, + "y": 283.93638 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.4133834035234, - "y": 287.9363840723811 + "x": 596.41338, + "y": 287.93638 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.7113834035234, - "y": 289.4643840723811 + "x": 591.71138, + "y": 289.46438 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.0093834035234, - "y": 287.9363840723811 + "x": 587.00938, + "y": 287.93638 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.1033834035235, - "y": 283.9363840723811 + "x": 584.10338, + "y": 283.93638 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.1033834035235, - "y": 278.9923840723811 + "x": 584.10338, + "y": 278.99238 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.0093834035234, - "y": 274.9923840723811 + "x": 587.00938, + "y": 274.99238 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.7113834035234, - "y": 273.4643840723811 + "x": 591.71138, + "y": 273.46438 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.4133834035234, - "y": 274.9923840723811 + "x": 596.41338, + "y": 274.99238 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3193834035234, - "y": 278.9923840723811 + "x": 599.31938, + "y": 278.99238 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2654 }, @@ -24522,11 +24522,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -24548,7 +24548,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8608411566468654, + "speed": 1.86084, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24578,20 +24578,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -24606,12 +24606,12 @@ } }, { - "x": 215.22915536214427, - "y": 312.80703612669686 + "x": 215.22916, + "y": 312.80704 }, { - "x": 200.01315536214426, - "y": 296.80703612669686 + "x": 200.01316, + "y": 296.80704 }, { "category": 1, @@ -24628,16 +24628,16 @@ "y": 0 }, { - "x": 207.62115536214426, - "y": 304.80703612669686 + "x": 207.62116, + "y": 304.80704 }, { "x": 0, "y": 0 }, { - "x": 207.60845423433167, - "y": 303.11525078997283 + "x": 207.60845, + "y": 303.11525 }, { "endCol": 4, @@ -24660,8 +24660,8 @@ "yScale": 1 }, { - "x": 0.011744915268707246, - "y": 1.1853231630276468 + "x": 0.01174, + "y": 1.18532 }, [ { @@ -24699,78 +24699,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.22915536214427, - "y": 307.27903612669684 + "x": 215.22916, + "y": 307.27904 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.32315536214426, - "y": 311.27903612669684 + "x": 212.32316, + "y": 311.27904 }, { "body": null, "index": 2, "isInternal": false, - "x": 207.62115536214426, - "y": 312.80703612669686 + "x": 207.62116, + "y": 312.80704 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.91915536214427, - "y": 311.27903612669684 + "x": 202.91916, + "y": 311.27904 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.01315536214426, - "y": 307.27903612669684 + "x": 200.01316, + "y": 307.27904 }, { "body": null, "index": 5, "isInternal": false, - "x": 200.01315536214426, - "y": 302.3350361266969 + "x": 200.01316, + "y": 302.33504 }, { "body": null, "index": 6, "isInternal": false, - "x": 202.91915536214427, - "y": 298.3350361266969 + "x": 202.91916, + "y": 298.33504 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.62115536214426, - "y": 296.80703612669686 + "x": 207.62116, + "y": 296.80704 }, { "body": null, "index": 8, "isInternal": false, - "x": 212.32315536214426, - "y": 298.3350361266969 + "x": 212.32316, + "y": 298.33504 }, { "body": null, "index": 9, "isInternal": false, - "x": 215.22915536214427, - "y": 302.3350361266969 + "x": 215.22916, + "y": 302.33504 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2685 }, @@ -24799,11 +24799,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -24825,7 +24825,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9854766391295056, + "speed": 1.98548, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24855,20 +24855,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -24883,12 +24883,12 @@ } }, { - "x": 235.46649278656042, - "y": 313.202413489682 + "x": 235.46649, + "y": 313.20241 }, { - "x": 220.25049278656041, - "y": 297.202413489682 + "x": 220.25049, + "y": 297.20241 }, { "category": 1, @@ -24905,16 +24905,16 @@ "y": 0 }, { - "x": 227.85849278656042, - "y": 305.20241348968176 + "x": 227.85849, + "y": 305.20241 }, { "x": 0, "y": 0 }, { - "x": 227.83712981467286, - "y": 303.36339261111186 + "x": 227.83713, + "y": 303.36339 }, { "endCol": 4, @@ -24937,8 +24937,8 @@ "yScale": 1 }, { - "x": 0.01992690542661535, - "y": 1.278880949067286 + "x": 0.01993, + "y": 1.27888 }, [ { @@ -24976,78 +24976,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.46649278656042, - "y": 307.67441348968197 + "x": 235.46649, + "y": 307.67441 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.56049278656042, - "y": 311.67441348968197 + "x": 232.56049, + "y": 311.67441 }, { "body": null, "index": 2, "isInternal": false, - "x": 227.85849278656042, - "y": 313.202413489682 + "x": 227.85849, + "y": 313.20241 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.15649278656042, - "y": 311.67441348968197 + "x": 223.15649, + "y": 311.67441 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.25049278656041, - "y": 307.67441348968197 + "x": 220.25049, + "y": 307.67441 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.25049278656041, - "y": 302.730413489682 + "x": 220.25049, + "y": 302.73041 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.15649278656042, - "y": 298.730413489682 + "x": 223.15649, + "y": 298.73041 }, { "body": null, "index": 7, "isInternal": false, - "x": 227.85849278656042, - "y": 297.202413489682 + "x": 227.85849, + "y": 297.20241 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.56049278656042, - "y": 298.730413489682 + "x": 232.56049, + "y": 298.73041 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.46649278656042, - "y": 302.730413489682 + "x": 235.46649, + "y": 302.73041 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2716 }, @@ -25076,11 +25076,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -25102,7 +25102,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5147029773517173, + "speed": 1.5147, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25132,20 +25132,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -25160,12 +25160,12 @@ } }, { - "x": 255.6442537634288, - "y": 311.41595693156535 + "x": 255.64425, + "y": 311.41596 }, { - "x": 240.42825376342878, - "y": 295.41595693156535 + "x": 240.42825, + "y": 295.41596 }, { "category": 1, @@ -25182,16 +25182,16 @@ "y": 0 }, { - "x": 248.03625376342882, - "y": 303.415956931565 + "x": 248.03625, + "y": 303.41596 }, { "x": 0, "y": 0 }, { - "x": 248.03507805897442, - "y": 302.08410639429536 + "x": 248.03508, + "y": 302.08411 }, { "endCol": 5, @@ -25214,8 +25214,8 @@ "yScale": 1 }, { - "x": 0.0008854327034555354, - "y": 0.9577826754015746 + "x": 0.00089, + "y": 0.95778 }, [ { @@ -25253,78 +25253,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.6442537634288, - "y": 305.8879569315653 + "x": 255.64425, + "y": 305.88796 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.7382537634288, - "y": 309.8879569315653 + "x": 252.73825, + "y": 309.88796 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.0362537634288, - "y": 311.41595693156535 + "x": 248.03625, + "y": 311.41596 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.3342537634288, - "y": 309.8879569315653 + "x": 243.33425, + "y": 309.88796 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.42825376342878, - "y": 305.8879569315653 + "x": 240.42825, + "y": 305.88796 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.42825376342878, - "y": 300.94395693156537 + "x": 240.42825, + "y": 300.94396 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.3342537634288, - "y": 296.94395693156537 + "x": 243.33425, + "y": 296.94396 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.0362537634288, - "y": 295.41595693156535 + "x": 248.03625, + "y": 295.41596 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.7382537634288, - "y": 296.94395693156537 + "x": 252.73825, + "y": 296.94396 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.6442537634288, - "y": 300.94395693156537 + "x": 255.64425, + "y": 300.94396 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2747 }, @@ -25353,11 +25353,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -25379,7 +25379,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3011311337146712, + "speed": 1.30113, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25409,20 +25409,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -25437,12 +25437,12 @@ } }, { - "x": 275.9013863878344, - "y": 310.7783494838671 + "x": 275.90139, + "y": 310.77835 }, { - "x": 260.6853863878344, - "y": 294.7783494838671 + "x": 260.68539, + "y": 294.77835 }, { "category": 1, @@ -25459,16 +25459,16 @@ "y": 0 }, { - "x": 268.29338638783435, - "y": 302.7783494838669 + "x": 268.29339, + "y": 302.77835 }, { "x": 0, "y": 0 }, { - "x": 268.2771009941959, - "y": 301.86389313540604 + "x": 268.2771, + "y": 301.86389 }, { "endCol": 5, @@ -25491,8 +25491,8 @@ "yScale": 1 }, { - "x": 0.01602471184236265, - "y": 0.7259299181933443 + "x": 0.01602, + "y": 0.72593 }, [ { @@ -25530,78 +25530,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.9013863878344, - "y": 305.25034948386707 + "x": 275.90139, + "y": 305.25035 }, { "body": null, "index": 1, "isInternal": false, - "x": 272.9953863878344, - "y": 309.25034948386707 + "x": 272.99539, + "y": 309.25035 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.2933863878344, - "y": 310.7783494838671 + "x": 268.29339, + "y": 310.77835 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.5913863878344, - "y": 309.25034948386707 + "x": 263.59139, + "y": 309.25035 }, { "body": null, "index": 4, "isInternal": false, - "x": 260.6853863878344, - "y": 305.25034948386707 + "x": 260.68539, + "y": 305.25035 }, { "body": null, "index": 5, "isInternal": false, - "x": 260.6853863878344, - "y": 300.3063494838671 + "x": 260.68539, + "y": 300.30635 }, { "body": null, "index": 6, "isInternal": false, - "x": 263.5913863878344, - "y": 296.3063494838671 + "x": 263.59139, + "y": 296.30635 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.2933863878344, - "y": 294.7783494838671 + "x": 268.29339, + "y": 294.77835 }, { "body": null, "index": 8, "isInternal": false, - "x": 272.9953863878344, - "y": 296.3063494838671 + "x": 272.99539, + "y": 296.30635 }, { "body": null, "index": 9, "isInternal": false, - "x": 275.9013863878344, - "y": 300.3063494838671 + "x": 275.90139, + "y": 300.30635 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2778 }, @@ -25630,11 +25630,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -25656,7 +25656,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9915089857773858, + "speed": 0.99151, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25686,20 +25686,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -25714,12 +25714,12 @@ } }, { - "x": 296.1097815985415, - "y": 309.15973412713805 + "x": 296.10978, + "y": 309.15973 }, { - "x": 280.89378159854147, - "y": 293.15973412713805 + "x": 280.89378, + "y": 293.15973 }, { "category": 1, @@ -25736,16 +25736,16 @@ "y": 0 }, { - "x": 288.50178159854164, - "y": 301.1597341271379 + "x": 288.50178, + "y": 301.15973 }, { "x": 0, "y": 0 }, { - "x": 288.4772354206392, - "y": 300.4480049917188 + "x": 288.47724, + "y": 300.448 }, { "endCol": 6, @@ -25768,8 +25768,8 @@ "yScale": 1 }, { - "x": 0.0241134456960026, - "y": 0.5779757023528305 + "x": 0.02411, + "y": 0.57798 }, [ { @@ -25807,78 +25807,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.1097815985415, - "y": 303.63173412713803 + "x": 296.10978, + "y": 303.63173 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.20378159854147, - "y": 307.63173412713803 + "x": 293.20378, + "y": 307.63173 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.50178159854147, - "y": 309.15973412713805 + "x": 288.50178, + "y": 309.15973 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.7997815985415, - "y": 307.63173412713803 + "x": 283.79978, + "y": 307.63173 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.89378159854147, - "y": 303.63173412713803 + "x": 280.89378, + "y": 303.63173 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.89378159854147, - "y": 298.68773412713807 + "x": 280.89378, + "y": 298.68773 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.7997815985415, - "y": 294.68773412713807 + "x": 283.79978, + "y": 294.68773 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.50178159854147, - "y": 293.15973412713805 + "x": 288.50178, + "y": 293.15973 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.20378159854147, - "y": 294.68773412713807 + "x": 293.20378, + "y": 294.68773 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.1097815985415, - "y": 298.68773412713807 + "x": 296.10978, + "y": 298.68773 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2809 }, @@ -25907,11 +25907,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -25933,7 +25933,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.49544282465303513, + "speed": 0.49544, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25963,20 +25963,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -25991,12 +25991,12 @@ } }, { - "x": 316.34745946089674, - "y": 307.51332447641244 + "x": 316.34746, + "y": 307.51332 }, { - "x": 301.13145946089674, - "y": 291.51332447641244 + "x": 301.13146, + "y": 291.51332 }, { "category": 1, @@ -26013,16 +26013,16 @@ "y": 0 }, { - "x": 308.7394594608966, - "y": 299.5133244764124 + "x": 308.73946, + "y": 299.51332 }, { "x": 0, "y": 0 }, { - "x": 308.713955812413, - "y": 299.2903785321876 + "x": 308.71396, + "y": 299.29038 }, { "endCol": 6, @@ -26045,8 +26045,8 @@ "yScale": 1 }, { - "x": 0.025587466953766125, - "y": 0.2533678844329188 + "x": 0.02559, + "y": 0.25337 }, [ { @@ -26084,78 +26084,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.34745946089674, - "y": 301.9853244764124 + "x": 316.34746, + "y": 301.98532 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.44145946089674, - "y": 305.9853244764124 + "x": 313.44146, + "y": 305.98532 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.73945946089674, - "y": 307.51332447641244 + "x": 308.73946, + "y": 307.51332 }, { "body": null, "index": 3, "isInternal": false, - "x": 304.03745946089674, - "y": 305.9853244764124 + "x": 304.03746, + "y": 305.98532 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.13145946089674, - "y": 301.9853244764124 + "x": 301.13146, + "y": 301.98532 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.13145946089674, - "y": 297.04132447641246 + "x": 301.13146, + "y": 297.04132 }, { "body": null, "index": 6, "isInternal": false, - "x": 304.03745946089674, - "y": 293.04132447641246 + "x": 304.03746, + "y": 293.04132 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.73945946089674, - "y": 291.51332447641244 + "x": 308.73946, + "y": 291.51332 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.44145946089674, - "y": 293.04132447641246 + "x": 313.44146, + "y": 293.04132 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.34745946089674, - "y": 297.04132447641246 + "x": 316.34746, + "y": 297.04132 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2840 }, @@ -26184,11 +26184,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -26210,7 +26210,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2467291457206953, + "speed": 1.24673, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26240,20 +26240,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -26268,12 +26268,12 @@ } }, { - "x": 336.4390152542116, - "y": 310.514651480391 + "x": 336.43902, + "y": 310.51465 }, { - "x": 321.2230152542116, - "y": 294.514651480391 + "x": 321.22302, + "y": 294.51465 }, { "category": 1, @@ -26290,16 +26290,16 @@ "y": 0 }, { - "x": 328.83101525421165, - "y": 302.51465148039097 + "x": 328.83102, + "y": 302.51465 }, { "x": 0, "y": 0 }, { - "x": 328.8659978817402, - "y": 301.54900174950603 + "x": 328.866, + "y": 301.549 }, { "endCol": 7, @@ -26322,8 +26322,8 @@ "yScale": 1 }, { - "x": -0.034214551285799644, - "y": 0.7314661261729611 + "x": -0.03421, + "y": 0.73147 }, [ { @@ -26361,78 +26361,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.4390152542116, - "y": 304.986651480391 + "x": 336.43902, + "y": 304.98665 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.5330152542116, - "y": 308.986651480391 + "x": 333.53302, + "y": 308.98665 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.8310152542116, - "y": 310.514651480391 + "x": 328.83102, + "y": 310.51465 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.1290152542116, - "y": 308.986651480391 + "x": 324.12902, + "y": 308.98665 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.2230152542116, - "y": 304.986651480391 + "x": 321.22302, + "y": 304.98665 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.2230152542116, - "y": 300.04265148039104 + "x": 321.22302, + "y": 300.04265 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.1290152542116, - "y": 296.04265148039104 + "x": 324.12902, + "y": 296.04265 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.8310152542116, - "y": 294.514651480391 + "x": 328.83102, + "y": 294.51465 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.5330152542116, - "y": 296.04265148039104 + "x": 333.53302, + "y": 296.04265 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.4390152542116, - "y": 300.04265148039104 + "x": 336.43902, + "y": 300.04265 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2871 }, @@ -26461,11 +26461,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -26487,7 +26487,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3123290764258089, + "speed": 1.31233, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26517,20 +26517,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -26545,12 +26545,12 @@ } }, { - "x": 356.73537922760966, - "y": 310.7360649924582 + "x": 356.73538, + "y": 310.73606 }, { - "x": 341.51937922760965, - "y": 294.7360649924582 + "x": 341.51938, + "y": 294.73606 }, { "category": 1, @@ -26567,16 +26567,16 @@ "y": 0 }, { - "x": 349.1273792276098, - "y": 302.7360649924579 + "x": 349.12738, + "y": 302.73606 }, { "x": 0, "y": 0 }, { - "x": 349.1273876500451, - "y": 301.60154705837937 + "x": 349.12739, + "y": 301.60155 }, { "endCol": 7, @@ -26599,8 +26599,8 @@ "yScale": 1 }, { - "x": 0.00019743781626857526, - "y": 0.825607589630124 + "x": 0.0002, + "y": 0.82561 }, [ { @@ -26638,78 +26638,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.73537922760966, - "y": 305.20806499245816 + "x": 356.73538, + "y": 305.20806 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.82937922760965, - "y": 309.20806499245816 + "x": 353.82938, + "y": 309.20806 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.12737922760965, - "y": 310.7360649924582 + "x": 349.12738, + "y": 310.73606 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.42537922760965, - "y": 309.20806499245816 + "x": 344.42538, + "y": 309.20806 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.51937922760965, - "y": 305.20806499245816 + "x": 341.51938, + "y": 305.20806 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.51937922760965, - "y": 300.2640649924582 + "x": 341.51938, + "y": 300.26406 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.42537922760965, - "y": 296.2640649924582 + "x": 344.42538, + "y": 296.26406 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.12737922760965, - "y": 294.7360649924582 + "x": 349.12738, + "y": 294.73606 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.82937922760965, - "y": 296.2640649924582 + "x": 353.82938, + "y": 296.26406 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.73537922760966, - "y": 300.2640649924582 + "x": 356.73538, + "y": 300.26406 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2902 }, @@ -26738,11 +26738,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -26764,7 +26764,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9497687752472963, + "speed": 1.94977, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26794,20 +26794,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -26822,12 +26822,12 @@ } }, { - "x": 376.8803051825255, - "y": 313.07900993148604 + "x": 376.88031, + "y": 313.07901 }, { - "x": 361.6643051825255, - "y": 297.07900993148604 + "x": 361.66431, + "y": 297.07901 }, { "category": 1, @@ -26844,16 +26844,16 @@ "y": 0 }, { - "x": 369.2723051825255, - "y": 305.07900993148604 + "x": 369.27231, + "y": 305.07901 }, { "x": 0, "y": 0 }, { - "x": 369.31168865372234, - "y": 303.3089994686566 + "x": 369.31169, + "y": 303.309 }, { "endCol": 7, @@ -26876,8 +26876,8 @@ "yScale": 1 }, { - "x": -0.03734011055189512, - "y": 1.2397683062524152 + "x": -0.03734, + "y": 1.23977 }, [ { @@ -26915,78 +26915,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.8803051825255, - "y": 307.551009931486 + "x": 376.88031, + "y": 307.55101 }, { "body": null, "index": 1, "isInternal": false, - "x": 373.9743051825255, - "y": 311.551009931486 + "x": 373.97431, + "y": 311.55101 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.2723051825255, - "y": 313.07900993148604 + "x": 369.27231, + "y": 313.07901 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.5703051825255, - "y": 311.551009931486 + "x": 364.57031, + "y": 311.55101 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.6643051825255, - "y": 307.551009931486 + "x": 361.66431, + "y": 307.55101 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.6643051825255, - "y": 302.60700993148606 + "x": 361.66431, + "y": 302.60701 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.5703051825255, - "y": 298.60700993148606 + "x": 364.57031, + "y": 298.60701 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.2723051825255, - "y": 297.07900993148604 + "x": 369.27231, + "y": 297.07901 }, { "body": null, "index": 8, "isInternal": false, - "x": 373.9743051825255, - "y": 298.60700993148606 + "x": 373.97431, + "y": 298.60701 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.8803051825255, - "y": 302.60700993148606 + "x": 376.88031, + "y": 302.60701 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2933 }, @@ -27015,11 +27015,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -27041,7 +27041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.833006022345892, + "speed": 1.83301, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27071,20 +27071,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -27099,12 +27099,12 @@ } }, { - "x": 397.1319329821848, - "y": 312.69911970798097 + "x": 397.13193, + "y": 312.69912 }, { - "x": 381.9159329821848, - "y": 296.69911970798097 + "x": 381.91593, + "y": 296.69912 }, { "category": 1, @@ -27121,16 +27121,16 @@ "y": 0 }, { - "x": 389.5239329821848, - "y": 304.69911970798074 + "x": 389.52393, + "y": 304.69912 }, { "x": 0, "y": 0 }, { - "x": 389.54154189928033, - "y": 303.07904486381216 + "x": 389.54154, + "y": 303.07904 }, { "endCol": 8, @@ -27153,8 +27153,8 @@ "yScale": 1 }, { - "x": -0.016657072625832825, - "y": 1.149450847783612 + "x": -0.01666, + "y": 1.14945 }, [ { @@ -27192,78 +27192,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1319329821848, - "y": 307.17111970798095 + "x": 397.13193, + "y": 307.17112 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2259329821848, - "y": 311.17111970798095 + "x": 394.22593, + "y": 311.17112 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.5239329821848, - "y": 312.69911970798097 + "x": 389.52393, + "y": 312.69912 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.8219329821848, - "y": 311.17111970798095 + "x": 384.82193, + "y": 311.17112 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.9159329821848, - "y": 307.17111970798095 + "x": 381.91593, + "y": 307.17112 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.9159329821848, - "y": 302.227119707981 + "x": 381.91593, + "y": 302.22712 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.8219329821848, - "y": 298.227119707981 + "x": 384.82193, + "y": 298.22712 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.5239329821848, - "y": 296.69911970798097 + "x": 389.52393, + "y": 296.69912 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.2259329821848, - "y": 298.227119707981 + "x": 394.22593, + "y": 298.22712 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.1319329821848, - "y": 302.227119707981 + "x": 397.13193, + "y": 302.22712 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2964 }, @@ -27292,11 +27292,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -27318,7 +27318,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8137330443677417, + "speed": 1.81373, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27348,20 +27348,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -27376,12 +27376,12 @@ } }, { - "x": 417.37551183525517, - "y": 312.63170703567465 + "x": 417.37551, + "y": 312.63171 }, { - "x": 402.15951183525516, - "y": 296.63170703567465 + "x": 402.15951, + "y": 296.63171 }, { "category": 1, @@ -27398,16 +27398,16 @@ "y": 0 }, { - "x": 409.76751183525516, - "y": 304.6317070356745 + "x": 409.76751, + "y": 304.63171 }, { "x": 0, "y": 0 }, { - "x": 409.7679473754223, - "y": 303.0503546253763 + "x": 409.76795, + "y": 303.05035 }, { "endCol": 8, @@ -27430,8 +27430,8 @@ "yScale": 1 }, { - "x": -0.0005068102360610283, - "y": 1.128548472445857 + "x": -0.00051, + "y": 1.12855 }, [ { @@ -27469,78 +27469,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.37551183525517, - "y": 307.10370703567463 + "x": 417.37551, + "y": 307.10371 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.46951183525516, - "y": 311.10370703567463 + "x": 414.46951, + "y": 311.10371 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.76751183525516, - "y": 312.63170703567465 + "x": 409.76751, + "y": 312.63171 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.06551183525517, - "y": 311.10370703567463 + "x": 405.06551, + "y": 311.10371 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.15951183525516, - "y": 307.10370703567463 + "x": 402.15951, + "y": 307.10371 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.15951183525516, - "y": 302.15970703567467 + "x": 402.15951, + "y": 302.15971 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.06551183525517, - "y": 298.15970703567467 + "x": 405.06551, + "y": 298.15971 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.76751183525516, - "y": 296.63170703567465 + "x": 409.76751, + "y": 296.63171 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.46951183525516, - "y": 298.15970703567467 + "x": 414.46951, + "y": 298.15971 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.37551183525517, - "y": 302.15970703567467 + "x": 417.37551, + "y": 302.15971 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 2995 }, @@ -27569,11 +27569,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -27595,7 +27595,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8041794208458555, + "speed": 1.80418, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27625,20 +27625,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -27653,12 +27653,12 @@ } }, { - "x": 437.62624715935834, - "y": 312.59474379367947 + "x": 437.62625, + "y": 312.59474 }, { - "x": 422.41024715935833, - "y": 296.59474379367947 + "x": 422.41025, + "y": 296.59474 }, { "category": 1, @@ -27675,16 +27675,16 @@ "y": 0 }, { - "x": 430.0182471593581, - "y": 304.5947437936793 + "x": 430.01825, + "y": 304.59474 }, { "x": 0, "y": 0 }, { - "x": 429.9946737003349, - "y": 303.0376446270595 + "x": 429.99467, + "y": 303.03764 }, { "endCol": 9, @@ -27707,8 +27707,8 @@ "yScale": 1 }, { - "x": 0.022242359123026745, - "y": 1.1163016629629396 + "x": 0.02224, + "y": 1.1163 }, [ { @@ -27746,78 +27746,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.62624715935834, - "y": 307.06674379367945 + "x": 437.62625, + "y": 307.06674 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.72024715935834, - "y": 311.06674379367945 + "x": 434.72025, + "y": 311.06674 }, { "body": null, "index": 2, "isInternal": false, - "x": 430.01824715935834, - "y": 312.59474379367947 + "x": 430.01825, + "y": 312.59474 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.31624715935834, - "y": 311.06674379367945 + "x": 425.31625, + "y": 311.06674 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.41024715935833, - "y": 307.06674379367945 + "x": 422.41025, + "y": 307.06674 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.41024715935833, - "y": 302.1227437936795 + "x": 422.41025, + "y": 302.12274 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.31624715935834, - "y": 298.1227437936795 + "x": 425.31625, + "y": 298.12274 }, { "body": null, "index": 7, "isInternal": false, - "x": 430.01824715935834, - "y": 296.59474379367947 + "x": 430.01825, + "y": 296.59474 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.72024715935834, - "y": 298.1227437936795 + "x": 434.72025, + "y": 298.12274 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.62624715935834, - "y": 302.1227437936795 + "x": 437.62625, + "y": 302.12274 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3026 }, @@ -27846,11 +27846,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -27872,7 +27872,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.7112962689866487, + "speed": 1.7113, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27902,20 +27902,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -27930,12 +27930,12 @@ } }, { - "x": 457.90628727196514, - "y": 312.2717205672593 + "x": 457.90629, + "y": 312.27172 }, { - "x": 442.69028727196513, - "y": 296.2717205672593 + "x": 442.69029, + "y": 296.27172 }, { "category": 1, @@ -27952,16 +27952,16 @@ "y": 0 }, { - "x": 450.29828727196525, - "y": 304.2717205672592 + "x": 450.29829, + "y": 304.27172 }, { "x": 0, "y": 0 }, { - "x": 450.238977191061, - "y": 302.8788239997917 + "x": 450.23898, + "y": 302.87882 }, { "endCol": 9, @@ -27984,8 +27984,8 @@ "yScale": 1 }, { - "x": 0.05689057061795211, - "y": 1.0216988351367604 + "x": 0.05689, + "y": 1.0217 }, [ { @@ -28023,78 +28023,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.90628727196514, - "y": 306.7437205672593 + "x": 457.90629, + "y": 306.74372 }, { "body": null, "index": 1, "isInternal": false, - "x": 455.00028727196514, - "y": 310.7437205672593 + "x": 455.00029, + "y": 310.74372 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.29828727196514, - "y": 312.2717205672593 + "x": 450.29829, + "y": 312.27172 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.59628727196514, - "y": 310.7437205672593 + "x": 445.59629, + "y": 310.74372 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.69028727196513, - "y": 306.7437205672593 + "x": 442.69029, + "y": 306.74372 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.69028727196513, - "y": 301.7997205672593 + "x": 442.69029, + "y": 301.79972 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.59628727196514, - "y": 297.7997205672593 + "x": 445.59629, + "y": 297.79972 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.29828727196514, - "y": 296.2717205672593 + "x": 450.29829, + "y": 296.27172 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.00028727196514, - "y": 297.7997205672593 + "x": 455.00029, + "y": 297.79972 }, { "body": null, "index": 9, "isInternal": false, - "x": 457.90628727196514, - "y": 301.7997205672593 + "x": 457.90629, + "y": 301.79972 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3057 }, @@ -28123,11 +28123,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -28149,7 +28149,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7714152176349175, + "speed": 0.77142, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28179,20 +28179,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -28207,12 +28207,12 @@ } }, { - "x": 477.9449129807573, - "y": 308.9205823350659 + "x": 477.94491, + "y": 308.92058 }, { - "x": 462.7289129807573, - "y": 292.9205823350659 + "x": 462.72891, + "y": 292.92058 }, { "category": 1, @@ -28229,16 +28229,16 @@ "y": 0 }, { - "x": 470.3369129807571, - "y": 300.92058233506583 + "x": 470.33691, + "y": 300.92058 }, { "x": 0, "y": 0 }, { - "x": 470.3851677629905, - "y": 300.6059057261073 + "x": 470.38517, + "y": 300.60591 }, { "endCol": 9, @@ -28261,8 +28261,8 @@ "yScale": 1 }, { - "x": -0.048459818385538256, - "y": 0.35144566167190305 + "x": -0.04846, + "y": 0.35145 }, [ { @@ -28300,78 +28300,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 477.9449129807573, - "y": 303.39258233506587 + "x": 477.94491, + "y": 303.39258 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.0389129807573, - "y": 307.39258233506587 + "x": 475.03891, + "y": 307.39258 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.3369129807573, - "y": 308.9205823350659 + "x": 470.33691, + "y": 308.92058 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.6349129807573, - "y": 307.39258233506587 + "x": 465.63491, + "y": 307.39258 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.7289129807573, - "y": 303.39258233506587 + "x": 462.72891, + "y": 303.39258 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.7289129807573, - "y": 298.4485823350659 + "x": 462.72891, + "y": 298.44858 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.6349129807573, - "y": 294.4485823350659 + "x": 465.63491, + "y": 294.44858 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.3369129807573, - "y": 292.9205823350659 + "x": 470.33691, + "y": 292.92058 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.0389129807573, - "y": 294.4485823350659 + "x": 475.03891, + "y": 294.44858 }, { "body": null, "index": 9, "isInternal": false, - "x": 477.9449129807573, - "y": 298.4485823350659 + "x": 477.94491, + "y": 298.44858 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3088 }, @@ -28400,11 +28400,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -28426,7 +28426,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6972746023068854, + "speed": 0.69727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28456,20 +28456,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -28484,12 +28484,12 @@ } }, { - "x": 498.2113055841471, - "y": 308.6473874058142 + "x": 498.21131, + "y": 308.64739 }, { - "x": 482.9953055841471, - "y": 292.6473874058142 + "x": 482.99531, + "y": 292.64739 }, { "category": 1, @@ -28506,16 +28506,16 @@ "y": 0 }, { - "x": 490.60330558414694, - "y": 300.64738740581413 + "x": 490.60331, + "y": 300.64739 }, { "x": 0, "y": 0 }, { - "x": 490.61974009029706, - "y": 300.4746861675323 + "x": 490.61974, + "y": 300.47469 }, { "endCol": 10, @@ -28538,8 +28538,8 @@ "yScale": 1 }, { - "x": -0.016625949618401137, - "y": 0.2708227913456085 + "x": -0.01663, + "y": 0.27082 }, [ { @@ -28577,78 +28577,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.2113055841471, - "y": 303.11938740581417 + "x": 498.21131, + "y": 303.11939 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.3053055841471, - "y": 307.11938740581417 + "x": 495.30531, + "y": 307.11939 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.6033055841471, - "y": 308.6473874058142 + "x": 490.60331, + "y": 308.64739 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.9013055841471, - "y": 307.11938740581417 + "x": 485.90131, + "y": 307.11939 }, { "body": null, "index": 4, "isInternal": false, - "x": 482.9953055841471, - "y": 303.11938740581417 + "x": 482.99531, + "y": 303.11939 }, { "body": null, "index": 5, "isInternal": false, - "x": 482.9953055841471, - "y": 298.1753874058142 + "x": 482.99531, + "y": 298.17539 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.9013055841471, - "y": 294.1753874058142 + "x": 485.90131, + "y": 294.17539 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.6033055841471, - "y": 292.6473874058142 + "x": 490.60331, + "y": 292.64739 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.3053055841471, - "y": 294.1753874058142 + "x": 495.30531, + "y": 294.17539 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.2113055841471, - "y": 298.1753874058142 + "x": 498.21131, + "y": 298.17539 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3119 }, @@ -28677,11 +28677,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -28703,7 +28703,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6970606732962652, + "speed": 0.69706, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28733,20 +28733,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -28761,12 +28761,12 @@ } }, { - "x": 518.4743863999809, - "y": 308.64679880532697 + "x": 518.47439, + "y": 308.6468 }, { - "x": 503.2583863999811, - "y": 292.64679880532697 + "x": 503.25839, + "y": 292.6468 }, { "category": 1, @@ -28783,16 +28783,16 @@ "y": 0 }, { - "x": 510.866386399981, - "y": 300.6467988053267 + "x": 510.86639, + "y": 300.6468 }, { "x": 0, "y": 0 }, { - "x": 510.85383632262455, - "y": 300.47439647892463 + "x": 510.85384, + "y": 300.4744 }, { "endCol": 10, @@ -28815,8 +28815,8 @@ "yScale": 1 }, { - "x": 0.012729917247725098, - "y": 0.2707130148820056 + "x": 0.01273, + "y": 0.27071 }, [ { @@ -28854,78 +28854,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4743863999809, - "y": 303.11879880532695 + "x": 518.47439, + "y": 303.1188 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5683863999809, - "y": 307.11879880532695 + "x": 515.56839, + "y": 307.1188 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8663863999811, - "y": 308.64679880532697 + "x": 510.86639, + "y": 308.6468 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.1643863999811, - "y": 307.11879880532695 + "x": 506.16439, + "y": 307.1188 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2583863999811, - "y": 303.11879880532695 + "x": 503.25839, + "y": 303.1188 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.2583863999811, - "y": 298.174798805327 + "x": 503.25839, + "y": 298.1748 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.1643863999811, - "y": 294.174798805327 + "x": 506.16439, + "y": 294.1748 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.8663863999811, - "y": 292.64679880532697 + "x": 510.86639, + "y": 292.6468 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5683863999809, - "y": 294.174798805327 + "x": 515.56839, + "y": 294.1748 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4743863999809, - "y": 298.174798805327 + "x": 518.47439, + "y": 298.1748 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3150 }, @@ -28954,11 +28954,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -28980,7 +28980,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.771211166974449, + "speed": 0.77121, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29010,20 +29010,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -29038,12 +29038,12 @@ } }, { - "x": 538.7597919912683, - "y": 308.9174718578441 + "x": 538.75979, + "y": 308.91747 }, { - "x": 523.5437919912684, - "y": 292.9174718578441 + "x": 523.54379, + "y": 292.91747 }, { "category": 1, @@ -29060,16 +29060,16 @@ "y": 0 }, { - "x": 531.1517919912689, - "y": 300.91747185784396 + "x": 531.15179, + "y": 300.91747 }, { "x": 0, "y": 0 }, { - "x": 531.100203828514, - "y": 300.6059026745142 + "x": 531.1002, + "y": 300.6059 }, { "endCol": 11, @@ -29092,8 +29092,8 @@ "yScale": 1 }, { - "x": 0.05181617233427005, - "y": 0.35032396057385995 + "x": 0.05182, + "y": 0.35032 }, [ { @@ -29131,78 +29131,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 538.7597919912683, - "y": 303.38947185784406 + "x": 538.75979, + "y": 303.38947 }, { "body": null, "index": 1, "isInternal": false, - "x": 535.8537919912684, - "y": 307.38947185784406 + "x": 535.85379, + "y": 307.38947 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.1517919912684, - "y": 308.9174718578441 + "x": 531.15179, + "y": 308.91747 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.4497919912684, - "y": 307.38947185784406 + "x": 526.44979, + "y": 307.38947 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.5437919912684, - "y": 303.38947185784406 + "x": 523.54379, + "y": 303.38947 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.5437919912684, - "y": 298.4454718578441 + "x": 523.54379, + "y": 298.44547 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.4497919912684, - "y": 294.4454718578441 + "x": 526.44979, + "y": 294.44547 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.1517919912684, - "y": 292.9174718578441 + "x": 531.15179, + "y": 292.91747 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.8537919912684, - "y": 294.4454718578441 + "x": 535.85379, + "y": 294.44547 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.7597919912683, - "y": 298.4454718578441 + "x": 538.75979, + "y": 298.44547 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3181 }, @@ -29231,11 +29231,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -29257,7 +29257,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.709631505497975, + "speed": 1.70963, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29287,20 +29287,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -29315,12 +29315,12 @@ } }, { - "x": 558.8004461729254, - "y": 312.2650060498369 + "x": 558.80045, + "y": 312.26501 }, { - "x": 543.5844461729255, - "y": 296.2650060498369 + "x": 543.58445, + "y": 296.26501 }, { "category": 1, @@ -29337,16 +29337,16 @@ "y": 0 }, { - "x": 551.1924461729257, - "y": 304.26500604983676 + "x": 551.19245, + "y": 304.26501 }, { "x": 0, "y": 0 }, { - "x": 551.2460370618593, - "y": 302.8765800559761 + "x": 551.24604, + "y": 302.87658 }, { "endCol": 11, @@ -29369,8 +29369,8 @@ "yScale": 1 }, { - "x": -0.05128065142946525, - "y": 1.0195230535622386 + "x": -0.05128, + "y": 1.01952 }, [ { @@ -29408,78 +29408,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.8004461729254, - "y": 306.7370060498369 + "x": 558.80045, + "y": 306.73701 }, { "body": null, "index": 1, "isInternal": false, - "x": 555.8944461729254, - "y": 310.7370060498369 + "x": 555.89445, + "y": 310.73701 }, { "body": null, "index": 2, "isInternal": false, - "x": 551.1924461729254, - "y": 312.2650060498369 + "x": 551.19245, + "y": 312.26501 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.4904461729254, - "y": 310.7370060498369 + "x": 546.49045, + "y": 310.73701 }, { "body": null, "index": 4, "isInternal": false, - "x": 543.5844461729255, - "y": 306.7370060498369 + "x": 543.58445, + "y": 306.73701 }, { "body": null, "index": 5, "isInternal": false, - "x": 543.5844461729255, - "y": 301.79300604983695 + "x": 543.58445, + "y": 301.79301 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.4904461729254, - "y": 297.79300604983695 + "x": 546.49045, + "y": 297.79301 }, { "body": null, "index": 7, "isInternal": false, - "x": 551.1924461729254, - "y": 296.2650060498369 + "x": 551.19245, + "y": 296.26501 }, { "body": null, "index": 8, "isInternal": false, - "x": 555.8944461729254, - "y": 297.79300604983695 + "x": 555.89445, + "y": 297.79301 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.8004461729254, - "y": 301.79300604983695 + "x": 558.80045, + "y": 301.79301 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3212 }, @@ -29508,11 +29508,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -29534,7 +29534,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8024065085277023, + "speed": 1.80241, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29564,20 +29564,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -29592,12 +29592,12 @@ } }, { - "x": 579.0633702200081, - "y": 312.58581182965247 + "x": 579.06337, + "y": 312.58581 }, { - "x": 563.8473702200082, - "y": 296.58581182965247 + "x": 563.84737, + "y": 296.58581 }, { "category": 1, @@ -29614,16 +29614,16 @@ "y": 0 }, { - "x": 571.4553702200084, - "y": 304.58581182965247 + "x": 571.45537, + "y": 304.58581 }, { "x": 0, "y": 0 }, { - "x": 571.4814012094147, - "y": 303.03553111735704 + "x": 571.4814, + "y": 303.03553 }, { "endCol": 12, @@ -29646,8 +29646,8 @@ "yScale": 1 }, { - "x": -0.02440988713237857, - "y": 1.1132756292989825 + "x": -0.02441, + "y": 1.11328 }, [ { @@ -29685,78 +29685,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.0633702200081, - "y": 307.05781182965245 + "x": 579.06337, + "y": 307.05781 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.1573702200081, - "y": 311.05781182965245 + "x": 576.15737, + "y": 311.05781 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.4553702200081, - "y": 312.58581182965247 + "x": 571.45537, + "y": 312.58581 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.7533702200082, - "y": 311.05781182965245 + "x": 566.75337, + "y": 311.05781 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.8473702200082, - "y": 307.05781182965245 + "x": 563.84737, + "y": 307.05781 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.8473702200082, - "y": 302.1138118296525 + "x": 563.84737, + "y": 302.11381 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.7533702200082, - "y": 298.1138118296525 + "x": 566.75337, + "y": 298.11381 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.4553702200081, - "y": 296.58581182965247 + "x": 571.45537, + "y": 296.58581 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.1573702200081, - "y": 298.1138118296525 + "x": 576.15737, + "y": 298.11381 }, { "body": null, "index": 9, "isInternal": false, - "x": 579.0633702200081, - "y": 302.1138118296525 + "x": 579.06337, + "y": 302.11381 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3243 }, @@ -29785,11 +29785,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -29811,7 +29811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8044201272235585, + "speed": 1.80442, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29841,20 +29841,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -29869,12 +29869,12 @@ } }, { - "x": 599.3019788323204, - "y": 312.59435016072837 + "x": 599.30198, + "y": 312.59435 }, { - "x": 584.0859788323205, - "y": 296.59435016072837 + "x": 584.08598, + "y": 296.59435 }, { "category": 1, @@ -29891,16 +29891,16 @@ "y": 0 }, { - "x": 591.6939788323206, - "y": 304.59435016072814 + "x": 591.69398, + "y": 304.59435 }, { "x": 0, "y": 0 }, { - "x": 591.711445063441, - "y": 303.0384025533009 + "x": 591.71145, + "y": 303.0384 }, { "endCol": 12, @@ -29923,8 +29923,8 @@ "yScale": 1 }, { - "x": -0.016296470162842525, - "y": 1.116164298427691 + "x": -0.0163, + "y": 1.11616 }, [ { @@ -29962,78 +29962,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.3019788323204, - "y": 307.06635016072835 + "x": 599.30198, + "y": 307.06635 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.3959788323205, - "y": 311.06635016072835 + "x": 596.39598, + "y": 311.06635 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.6939788323205, - "y": 312.59435016072837 + "x": 591.69398, + "y": 312.59435 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.9919788323205, - "y": 311.06635016072835 + "x": 586.99198, + "y": 311.06635 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.0859788323205, - "y": 307.06635016072835 + "x": 584.08598, + "y": 307.06635 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.0859788323205, - "y": 302.1223501607284 + "x": 584.08598, + "y": 302.12235 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.9919788323205, - "y": 298.1223501607284 + "x": 586.99198, + "y": 298.12235 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.6939788323205, - "y": 296.59435016072837 + "x": 591.69398, + "y": 296.59435 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.3959788323205, - "y": 298.1223501607284 + "x": 596.39598, + "y": 298.12235 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.3019788323204, - "y": 302.1223501607284 + "x": 599.30198, + "y": 302.12235 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3274 }, @@ -30062,11 +30062,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -30088,7 +30088,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.2654780145095255, + "speed": 2.26548, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30118,20 +30118,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -30146,12 +30146,12 @@ } }, { - "x": 215.27363577188362, - "y": 335.784876699201 + "x": 215.27364, + "y": 335.78488 }, { - "x": 200.0576357718836, - "y": 319.784876699201 + "x": 200.05764, + "y": 319.78488 }, { "category": 1, @@ -30168,16 +30168,16 @@ "y": 0 }, { - "x": 207.66563577188364, - "y": 327.78487669920116 + "x": 207.66564, + "y": 327.78488 }, { "x": 0, "y": 0 }, { - "x": 207.6262483293156, - "y": 325.6116129111647 + "x": 207.62625, + "y": 325.61161 }, { "endCol": 4, @@ -30200,8 +30200,8 @@ "yScale": 1 }, { - "x": 0.03742409570261884, - "y": 1.7147723080731225 + "x": 0.03742, + "y": 1.71477 }, [ { @@ -30239,78 +30239,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.27363577188362, - "y": 330.256876699201 + "x": 215.27364, + "y": 330.25688 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.3676357718836, - "y": 334.256876699201 + "x": 212.36764, + "y": 334.25688 }, { "body": null, "index": 2, "isInternal": false, - "x": 207.66563577188361, - "y": 335.784876699201 + "x": 207.66564, + "y": 335.78488 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.96363577188362, - "y": 334.256876699201 + "x": 202.96364, + "y": 334.25688 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.0576357718836, - "y": 330.256876699201 + "x": 200.05764, + "y": 330.25688 }, { "body": null, "index": 5, "isInternal": false, - "x": 200.0576357718836, - "y": 325.312876699201 + "x": 200.05764, + "y": 325.31288 }, { "body": null, "index": 6, "isInternal": false, - "x": 202.96363577188362, - "y": 321.312876699201 + "x": 202.96364, + "y": 321.31288 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.66563577188361, - "y": 319.784876699201 + "x": 207.66564, + "y": 319.78488 }, { "body": null, "index": 8, "isInternal": false, - "x": 212.3676357718836, - "y": 321.312876699201 + "x": 212.36764, + "y": 321.31288 }, { "body": null, "index": 9, "isInternal": false, - "x": 215.27363577188362, - "y": 325.312876699201 + "x": 215.27364, + "y": 325.31288 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3305 }, @@ -30339,11 +30339,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -30365,7 +30365,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.4338419379567404, + "speed": 2.43384, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30395,20 +30395,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -30423,12 +30423,12 @@ } }, { - "x": 235.52707045862874, - "y": 336.37003035050213 + "x": 235.52707, + "y": 336.37003 }, { - "x": 220.31107045862873, - "y": 320.37003035050213 + "x": 220.31107, + "y": 320.37003 }, { "category": 1, @@ -30445,16 +30445,16 @@ "y": 0 }, { - "x": 227.91907045862868, - "y": 328.37003035050225 + "x": 227.91907, + "y": 328.37003 }, { "x": 0, "y": 0 }, { - "x": 227.87203104457532, - "y": 326.07984593725473 + "x": 227.87203, + "y": 326.07985 }, { "endCol": 4, @@ -30477,8 +30477,8 @@ "yScale": 1 }, { - "x": 0.04460880373252962, - "y": 1.802918325985786 + "x": 0.04461, + "y": 1.80292 }, [ { @@ -30516,78 +30516,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.52707045862874, - "y": 330.8420303505021 + "x": 235.52707, + "y": 330.84203 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.62107045862874, - "y": 334.8420303505021 + "x": 232.62107, + "y": 334.84203 }, { "body": null, "index": 2, "isInternal": false, - "x": 227.91907045862874, - "y": 336.37003035050213 + "x": 227.91907, + "y": 336.37003 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.21707045862874, - "y": 334.8420303505021 + "x": 223.21707, + "y": 334.84203 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.31107045862873, - "y": 330.8420303505021 + "x": 220.31107, + "y": 330.84203 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.31107045862873, - "y": 325.89803035050215 + "x": 220.31107, + "y": 325.89803 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.21707045862874, - "y": 321.89803035050215 + "x": 223.21707, + "y": 321.89803 }, { "body": null, "index": 7, "isInternal": false, - "x": 227.91907045862874, - "y": 320.37003035050213 + "x": 227.91907, + "y": 320.37003 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.62107045862874, - "y": 321.89803035050215 + "x": 232.62107, + "y": 321.89803 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.52707045862874, - "y": 325.89803035050215 + "x": 235.52707, + "y": 325.89803 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3336 }, @@ -30616,11 +30616,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -30642,7 +30642,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.906461319510623, + "speed": 1.90646, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30672,20 +30672,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -30700,12 +30700,12 @@ } }, { - "x": 255.66216937817504, - "y": 333.8385936387762 + "x": 255.66217, + "y": 333.83859 }, { - "x": 240.44616937817503, - "y": 317.8385936387762 + "x": 240.44617, + "y": 317.83859 }, { "category": 1, @@ -30722,16 +30722,16 @@ "y": 0 }, { - "x": 248.05416937817503, - "y": 325.8385936387765 + "x": 248.05417, + "y": 325.83859 }, { "x": 0, "y": 0 }, { - "x": 248.03924807267578, - "y": 324.06380300048784 + "x": 248.03925, + "y": 324.0638 }, { "endCol": 5, @@ -30754,8 +30754,8 @@ "yScale": 1 }, { - "x": 0.014172225461663857, - "y": 1.4743511940500866 + "x": 0.01417, + "y": 1.47435 }, [ { @@ -30793,78 +30793,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.66216937817504, - "y": 328.3105936387762 + "x": 255.66217, + "y": 328.31059 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.75616937817503, - "y": 332.3105936387762 + "x": 252.75617, + "y": 332.31059 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.05416937817503, - "y": 333.8385936387762 + "x": 248.05417, + "y": 333.83859 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.35216937817503, - "y": 332.3105936387762 + "x": 243.35217, + "y": 332.31059 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.44616937817503, - "y": 328.3105936387762 + "x": 240.44617, + "y": 328.31059 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.44616937817503, - "y": 323.36659363877624 + "x": 240.44617, + "y": 323.36659 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.35216937817503, - "y": 319.36659363877624 + "x": 243.35217, + "y": 319.36659 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.05416937817503, - "y": 317.8385936387762 + "x": 248.05417, + "y": 317.83859 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.75616937817503, - "y": 319.36659363877624 + "x": 252.75617, + "y": 319.36659 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.66216937817504, - "y": 323.36659363877624 + "x": 255.66217, + "y": 323.36659 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3367 }, @@ -30893,11 +30893,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -30919,7 +30919,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4036315807291069, + "speed": 1.40363, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30949,20 +30949,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -30977,12 +30977,12 @@ } }, { - "x": 275.93122679004534, - "y": 332.3809096148727 + "x": 275.93123, + "y": 332.38091 }, { - "x": 260.71522679004534, - "y": 316.3809096148727 + "x": 260.71523, + "y": 316.38091 }, { "category": 1, @@ -30999,16 +30999,16 @@ "y": 0 }, { - "x": 268.32322679004534, - "y": 324.38090961487256 + "x": 268.32323, + "y": 324.38091 }, { "x": 0, "y": 0 }, { - "x": 268.30322418570734, - "y": 323.28519269028425 + "x": 268.30322, + "y": 323.28519 }, { "endCol": 5, @@ -31031,8 +31031,8 @@ "yScale": 1 }, { - "x": 0.019981621621241175, - "y": 1.0587160089211238 + "x": 0.01998, + "y": 1.05872 }, [ { @@ -31070,78 +31070,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.93122679004534, - "y": 326.85290961487266 + "x": 275.93123, + "y": 326.85291 }, { "body": null, "index": 1, "isInternal": false, - "x": 273.0252267900453, - "y": 330.85290961487266 + "x": 273.02523, + "y": 330.85291 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.3232267900453, - "y": 332.3809096148727 + "x": 268.32323, + "y": 332.38091 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.6212267900453, - "y": 330.85290961487266 + "x": 263.62123, + "y": 330.85291 }, { "body": null, "index": 4, "isInternal": false, - "x": 260.71522679004534, - "y": 326.85290961487266 + "x": 260.71523, + "y": 326.85291 }, { "body": null, "index": 5, "isInternal": false, - "x": 260.71522679004534, - "y": 321.9089096148727 + "x": 260.71523, + "y": 321.90891 }, { "body": null, "index": 6, "isInternal": false, - "x": 263.6212267900453, - "y": 317.9089096148727 + "x": 263.62123, + "y": 317.90891 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.3232267900453, - "y": 316.3809096148727 + "x": 268.32323, + "y": 316.38091 }, { "body": null, "index": 8, "isInternal": false, - "x": 273.0252267900453, - "y": 317.9089096148727 + "x": 273.02523, + "y": 317.90891 }, { "body": null, "index": 9, "isInternal": false, - "x": 275.93122679004534, - "y": 321.9089096148727 + "x": 275.93123, + "y": 321.90891 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3398 }, @@ -31170,11 +31170,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -31196,7 +31196,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2510157670013606, + "speed": 1.25102, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31226,20 +31226,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -31254,12 +31254,12 @@ } }, { - "x": 296.1790750648158, - "y": 330.5804062971011 + "x": 296.17908, + "y": 330.58041 }, { - "x": 280.96307506481577, - "y": 314.5804062971011 + "x": 280.96308, + "y": 314.58041 }, { "category": 1, @@ -31276,16 +31276,16 @@ "y": 0 }, { - "x": 288.57107506481566, - "y": 322.5804062971009 + "x": 288.57108, + "y": 322.58041 }, { "x": 0, "y": 0 }, { - "x": 288.51593323169726, - "y": 321.5521292528338 + "x": 288.51593, + "y": 321.55213 }, { "endCol": 6, @@ -31308,8 +31308,8 @@ "yScale": 1 }, { - "x": 0.05508746462402314, - "y": 1.0087552692615986 + "x": 0.05509, + "y": 1.00876 }, [ { @@ -31347,78 +31347,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.1790750648158, - "y": 325.0524062971011 + "x": 296.17908, + "y": 325.05241 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.2730750648158, - "y": 329.0524062971011 + "x": 293.27308, + "y": 329.05241 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.57107506481583, - "y": 330.5804062971011 + "x": 288.57108, + "y": 330.58041 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.86907506481583, - "y": 329.0524062971011 + "x": 283.86908, + "y": 329.05241 }, { "body": null, "index": 4, "isInternal": false, - "x": 280.96307506481577, - "y": 325.0524062971011 + "x": 280.96308, + "y": 325.05241 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.96307506481577, - "y": 320.1084062971011 + "x": 280.96308, + "y": 320.10841 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.86907506481583, - "y": 316.1084062971011 + "x": 283.86908, + "y": 316.10841 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.57107506481583, - "y": 314.5804062971011 + "x": 288.57108, + "y": 314.58041 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.2730750648158, - "y": 316.1084062971011 + "x": 293.27308, + "y": 316.10841 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.1790750648158, - "y": 320.1084062971011 + "x": 296.17908, + "y": 320.10841 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3429 }, @@ -31447,11 +31447,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -31473,7 +31473,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7226131720675033, + "speed": 0.72261, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31503,20 +31503,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -31531,12 +31531,12 @@ } }, { - "x": 316.4049746667972, - "y": 328.3874146711617 + "x": 316.40497, + "y": 328.38741 }, { - "x": 301.1889746667972, - "y": 312.3874146711617 + "x": 301.18897, + "y": 312.38741 }, { "category": 1, @@ -31553,16 +31553,16 @@ "y": 0 }, { - "x": 308.7969746667972, - "y": 320.38741467116205 + "x": 308.79697, + "y": 320.38741 }, { "x": 0, "y": 0 }, { - "x": 308.7544888636404, - "y": 319.63451730219157 + "x": 308.75449, + "y": 319.63452 }, { "endCol": 6, @@ -31585,8 +31585,8 @@ "yScale": 1 }, { - "x": 0.04257808115278294, - "y": 0.7874616473294509 + "x": 0.04258, + "y": 0.78746 }, [ { @@ -31624,78 +31624,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.4049746667972, - "y": 322.8594146711617 + "x": 316.40497, + "y": 322.85941 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.4989746667972, - "y": 326.8594146711617 + "x": 313.49897, + "y": 326.85941 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.7969746667972, - "y": 328.3874146711617 + "x": 308.79697, + "y": 328.38741 }, { "body": null, "index": 3, "isInternal": false, - "x": 304.0949746667972, - "y": 326.8594146711617 + "x": 304.09497, + "y": 326.85941 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.1889746667972, - "y": 322.8594146711617 + "x": 301.18897, + "y": 322.85941 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.1889746667972, - "y": 317.9154146711617 + "x": 301.18897, + "y": 317.91541 }, { "body": null, "index": 6, "isInternal": false, - "x": 304.0949746667972, - "y": 313.9154146711617 + "x": 304.09497, + "y": 313.91541 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.7969746667972, - "y": 312.3874146711617 + "x": 308.79697, + "y": 312.38741 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.4989746667972, - "y": 313.9154146711617 + "x": 313.49897, + "y": 313.91541 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.4049746667972, - "y": 317.9154146711617 + "x": 316.40497, + "y": 317.91541 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3460 }, @@ -31724,11 +31724,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -31750,7 +31750,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4967406144013642, + "speed": 1.49674, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31780,20 +31780,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -31808,12 +31808,12 @@ } }, { - "x": 336.3670724833439, - "y": 332.39157999667754 + "x": 336.36707, + "y": 332.39158 }, { - "x": 321.1510724833439, - "y": 316.39157999667754 + "x": 321.15107, + "y": 316.39158 }, { "category": 1, @@ -31830,16 +31830,16 @@ "y": 0 }, { - "x": 328.7590724833439, - "y": 324.39157999667754 + "x": 328.75907, + "y": 324.39158 }, { "x": 0, "y": 0 }, { - "x": 328.8091792642822, - "y": 323.02435467756084 + "x": 328.80918, + "y": 323.02435 }, { "endCol": 7, @@ -31862,8 +31862,8 @@ "yScale": 1 }, { - "x": -0.049343745109581505, - "y": 1.1927346682010693 + "x": -0.04934, + "y": 1.19273 }, [ { @@ -31901,78 +31901,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.3670724833439, - "y": 326.8635799966775 + "x": 336.36707, + "y": 326.86358 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.4610724833439, - "y": 330.8635799966775 + "x": 333.46107, + "y": 330.86358 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.7590724833439, - "y": 332.39157999667754 + "x": 328.75907, + "y": 332.39158 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.0570724833439, - "y": 330.8635799966775 + "x": 324.05707, + "y": 330.86358 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.1510724833439, - "y": 326.8635799966775 + "x": 321.15107, + "y": 326.86358 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.1510724833439, - "y": 321.91957999667756 + "x": 321.15107, + "y": 321.91958 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.0570724833439, - "y": 317.91957999667756 + "x": 324.05707, + "y": 317.91958 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.7590724833439, - "y": 316.39157999667754 + "x": 328.75907, + "y": 316.39158 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.4610724833439, - "y": 317.91957999667756 + "x": 333.46107, + "y": 317.91958 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.3670724833439, - "y": 321.91957999667756 + "x": 336.36707, + "y": 321.91958 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3491 }, @@ -32001,11 +32001,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -32027,7 +32027,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.697508218336869, + "speed": 1.69751, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32057,20 +32057,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -32085,12 +32085,12 @@ } }, { - "x": 356.7199210149899, - "y": 332.94686381202166 + "x": 356.71992, + "y": 332.94686 }, { - "x": 341.5039210149899, - "y": 316.94686381202166 + "x": 341.50392, + "y": 316.94686 }, { "category": 1, @@ -32107,16 +32107,16 @@ "y": 0 }, { - "x": 349.11192101499006, - "y": 324.94686381202195 + "x": 349.11192, + "y": 324.94686 }, { "x": 0, "y": 0 }, { - "x": 349.1284178147696, - "y": 323.2783487517752 + "x": 349.12842, + "y": 323.27835 }, { "endCol": 7, @@ -32139,8 +32139,8 @@ "yScale": 1 }, { - "x": -0.015650727823924626, - "y": 1.3844426109868095 + "x": -0.01565, + "y": 1.38444 }, [ { @@ -32178,78 +32178,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.7199210149899, - "y": 327.41886381202164 + "x": 356.71992, + "y": 327.41886 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.8139210149899, - "y": 331.41886381202164 + "x": 353.81392, + "y": 331.41886 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.1119210149899, - "y": 332.94686381202166 + "x": 349.11192, + "y": 332.94686 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.4099210149899, - "y": 331.41886381202164 + "x": 344.40992, + "y": 331.41886 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.5039210149899, - "y": 327.41886381202164 + "x": 341.50392, + "y": 327.41886 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.5039210149899, - "y": 322.4748638120217 + "x": 341.50392, + "y": 322.47486 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.4099210149899, - "y": 318.4748638120217 + "x": 344.40992, + "y": 318.47486 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.1119210149899, - "y": 316.94686381202166 + "x": 349.11192, + "y": 316.94686 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.8139210149899, - "y": 318.4748638120217 + "x": 353.81392, + "y": 318.47486 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.7199210149899, - "y": 322.4748638120217 + "x": 356.71992, + "y": 322.47486 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3522 }, @@ -32278,11 +32278,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -32304,7 +32304,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.355285887167558, + "speed": 2.35529, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32334,20 +32334,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -32362,12 +32362,12 @@ } }, { - "x": 376.79083214062337, - "y": 336.1134012088565 + "x": 376.79083, + "y": 336.1134 }, { - "x": 361.57483214062336, - "y": 320.1134012088565 + "x": 361.57483, + "y": 320.1134 }, { "category": 1, @@ -32384,16 +32384,16 @@ "y": 0 }, { - "x": 369.1828321406234, - "y": 328.11340120885654 + "x": 369.18283, + "y": 328.1134 }, { "x": 0, "y": 0 }, { - "x": 369.2494196294161, - "y": 325.93850755984073 + "x": 369.24942, + "y": 325.93851 }, { "endCol": 7, @@ -32416,8 +32416,8 @@ "yScale": 1 }, { - "x": -0.06417029904832816, - "y": 1.7310729126954243 + "x": -0.06417, + "y": 1.73107 }, [ { @@ -32455,78 +32455,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.79083214062337, - "y": 330.58540120885647 + "x": 376.79083, + "y": 330.5854 }, { "body": null, "index": 1, "isInternal": false, - "x": 373.88483214062336, - "y": 334.58540120885647 + "x": 373.88483, + "y": 334.5854 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.18283214062336, - "y": 336.1134012088565 + "x": 369.18283, + "y": 336.1134 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.48083214062336, - "y": 334.58540120885647 + "x": 364.48083, + "y": 334.5854 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.57483214062336, - "y": 330.58540120885647 + "x": 361.57483, + "y": 330.5854 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.57483214062336, - "y": 325.6414012088565 + "x": 361.57483, + "y": 325.6414 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.48083214062336, - "y": 321.6414012088565 + "x": 364.48083, + "y": 321.6414 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.18283214062336, - "y": 320.1134012088565 + "x": 369.18283, + "y": 320.1134 }, { "body": null, "index": 8, "isInternal": false, - "x": 373.88483214062336, - "y": 321.6414012088565 + "x": 373.88483, + "y": 321.6414 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.79083214062337, - "y": 325.6414012088565 + "x": 376.79083, + "y": 325.6414 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3553 }, @@ -32555,11 +32555,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -32581,7 +32581,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.179666055262803, + "speed": 2.17967, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32611,20 +32611,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -32639,12 +32639,12 @@ } }, { - "x": 397.0854924415388, - "y": 335.49837756812286 + "x": 397.08549, + "y": 335.49838 }, { - "x": 381.8694924415388, - "y": 319.49837756812286 + "x": 381.86949, + "y": 319.49838 }, { "category": 1, @@ -32661,16 +32661,16 @@ "y": 0 }, { - "x": 389.4774924415389, - "y": 327.4983775681228 + "x": 389.47749, + "y": 327.49838 }, { "x": 0, "y": 0 }, { - "x": 389.5121362380459, - "y": 325.48414013833144 + "x": 389.51214, + "y": 325.48414 }, { "endCol": 8, @@ -32693,8 +32693,8 @@ "yScale": 1 }, { - "x": -0.033531534250812456, - "y": 1.6268086079493287 + "x": -0.03353, + "y": 1.62681 }, [ { @@ -32732,78 +32732,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.0854924415388, - "y": 329.97037756812284 + "x": 397.08549, + "y": 329.97038 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.1794924415388, - "y": 333.97037756812284 + "x": 394.17949, + "y": 333.97038 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.4774924415388, - "y": 335.49837756812286 + "x": 389.47749, + "y": 335.49838 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.7754924415388, - "y": 333.97037756812284 + "x": 384.77549, + "y": 333.97038 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.8694924415388, - "y": 329.97037756812284 + "x": 381.86949, + "y": 329.97038 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.8694924415388, - "y": 325.0263775681229 + "x": 381.86949, + "y": 325.02638 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.7754924415388, - "y": 321.0263775681229 + "x": 384.77549, + "y": 321.02638 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.4774924415388, - "y": 319.49837756812286 + "x": 389.47749, + "y": 319.49838 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.1794924415388, - "y": 321.0263775681229 + "x": 394.17949, + "y": 321.02638 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.0854924415388, - "y": 325.0263775681229 + "x": 397.08549, + "y": 325.02638 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3584 }, @@ -32832,11 +32832,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -32858,7 +32858,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.13413027704126, + "speed": 2.13413, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32888,20 +32888,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -32916,12 +32916,12 @@ } }, { - "x": 417.3794512414974, - "y": 335.3483843461514 + "x": 417.37945, + "y": 335.34838 }, { - "x": 402.1634512414974, - "y": 319.3483843461514 + "x": 402.16345, + "y": 319.34838 }, { "category": 1, @@ -32938,16 +32938,16 @@ "y": 0 }, { - "x": 409.7714512414975, - "y": 327.3483843461514 + "x": 409.77145, + "y": 327.34838 }, { "x": 0, "y": 0 }, { - "x": 409.76646667753477, - "y": 325.40493914166484 + "x": 409.76647, + "y": 325.40494 }, { "endCol": 8, @@ -32970,8 +32970,8 @@ "yScale": 1 }, { - "x": 0.0045643089455325025, - "y": 1.5851794474409644 + "x": 0.00456, + "y": 1.58518 }, [ { @@ -33009,78 +33009,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.3794512414974, - "y": 329.8203843461514 + "x": 417.37945, + "y": 329.82038 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.4734512414974, - "y": 333.8203843461514 + "x": 414.47345, + "y": 333.82038 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7714512414974, - "y": 335.3483843461514 + "x": 409.77145, + "y": 335.34838 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.0694512414974, - "y": 333.8203843461514 + "x": 405.06945, + "y": 333.82038 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1634512414974, - "y": 329.8203843461514 + "x": 402.16345, + "y": 329.82038 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1634512414974, - "y": 324.87638434615144 + "x": 402.16345, + "y": 324.87638 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.0694512414974, - "y": 320.87638434615144 + "x": 405.06945, + "y": 320.87638 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7714512414974, - "y": 319.3483843461514 + "x": 409.77145, + "y": 319.34838 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.4734512414974, - "y": 320.87638434615144 + "x": 414.47345, + "y": 320.87638 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.3794512414974, - "y": 324.87638434615144 + "x": 417.37945, + "y": 324.87638 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3615 }, @@ -33109,11 +33109,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -33135,7 +33135,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1063556001230554, + "speed": 2.10636, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33165,20 +33165,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -33193,12 +33193,12 @@ } }, { - "x": 437.6956705038194, - "y": 335.2506610090176 + "x": 437.69567, + "y": 335.25066 }, { - "x": 422.47967050381936, - "y": 319.2506610090176 + "x": 422.47967, + "y": 319.25066 }, { "category": 1, @@ -33215,16 +33215,16 @@ "y": 0 }, { - "x": 430.0876705038193, - "y": 327.2506610090176 + "x": 430.08767, + "y": 327.25066 }, { "x": 0, "y": 0 }, { - "x": 430.02980108249875, - "y": 325.3623720417284 + "x": 430.0298, + "y": 325.36237 }, { "endCol": 9, @@ -33247,8 +33247,8 @@ "yScale": 1 }, { - "x": 0.05585391548612506, - "y": 1.554668514994944 + "x": 0.05585, + "y": 1.55467 }, [ { @@ -33286,78 +33286,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.6956705038194, - "y": 329.7226610090176 + "x": 437.69567, + "y": 329.72266 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.78967050381937, - "y": 333.7226610090176 + "x": 434.78967, + "y": 333.72266 }, { "body": null, "index": 2, "isInternal": false, - "x": 430.08767050381937, - "y": 335.2506610090176 + "x": 430.08767, + "y": 335.25066 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.38567050381937, - "y": 333.7226610090176 + "x": 425.38567, + "y": 333.72266 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.47967050381936, - "y": 329.7226610090176 + "x": 422.47967, + "y": 329.72266 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.47967050381936, - "y": 324.77866100901764 + "x": 422.47967, + "y": 324.77866 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.38567050381937, - "y": 320.77866100901764 + "x": 425.38567, + "y": 320.77866 }, { "body": null, "index": 7, "isInternal": false, - "x": 430.08767050381937, - "y": 319.2506610090176 + "x": 430.08767, + "y": 319.25066 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.78967050381937, - "y": 320.77866100901764 + "x": 434.78967, + "y": 320.77866 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.6956705038194, - "y": 324.77866100901764 + "x": 437.69567, + "y": 324.77866 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3646 }, @@ -33386,11 +33386,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -33412,7 +33412,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9274925986250397, + "speed": 1.92749, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33442,20 +33442,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -33470,12 +33470,12 @@ } }, { - "x": 458.05273282926095, - "y": 334.61294292711335 + "x": 458.05273, + "y": 334.61294 }, { - "x": 442.83673282926094, - "y": 318.61294292711335 + "x": 442.83673, + "y": 318.61294 }, { "category": 1, @@ -33492,16 +33492,16 @@ "y": 0 }, { - "x": 450.44473282926106, - "y": 326.61294292711347 + "x": 450.44473, + "y": 326.61294 }, { "x": 0, "y": 0 }, { - "x": 450.3321893195681, - "y": 324.99895506187147 + "x": 450.33219, + "y": 324.99896 }, { "endCol": 9, @@ -33524,8 +33524,8 @@ "yScale": 1 }, { - "x": 0.11023403469181403, - "y": 1.385912615163761 + "x": 0.11023, + "y": 1.38591 }, [ { @@ -33563,78 +33563,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 458.05273282926095, - "y": 329.08494292711333 + "x": 458.05273, + "y": 329.08494 }, { "body": null, "index": 1, "isInternal": false, - "x": 455.14673282926094, - "y": 333.08494292711333 + "x": 455.14673, + "y": 333.08494 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.44473282926094, - "y": 334.61294292711335 + "x": 450.44473, + "y": 334.61294 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.74273282926094, - "y": 333.08494292711333 + "x": 445.74273, + "y": 333.08494 }, { "body": null, "index": 4, "isInternal": false, - "x": 442.83673282926094, - "y": 329.08494292711333 + "x": 442.83673, + "y": 329.08494 }, { "body": null, "index": 5, "isInternal": false, - "x": 442.83673282926094, - "y": 324.1409429271134 + "x": 442.83673, + "y": 324.14094 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.74273282926094, - "y": 320.1409429271134 + "x": 445.74273, + "y": 320.14094 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.44473282926094, - "y": 318.61294292711335 + "x": 450.44473, + "y": 318.61294 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.14673282926094, - "y": 320.1409429271134 + "x": 455.14673, + "y": 320.14094 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.05273282926095, - "y": 324.1409429271134 + "x": 458.05273, + "y": 324.14094 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3677 }, @@ -33663,11 +33663,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -33689,7 +33689,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7574102767234661, + "speed": 0.75741, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33719,20 +33719,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -33747,12 +33747,12 @@ } }, { - "x": 477.830071927084, - "y": 329.62252348991217 + "x": 477.83007, + "y": 329.62252 }, { - "x": 462.614071927084, - "y": 313.62252348991217 + "x": 462.61407, + "y": 313.62252 }, { "category": 1, @@ -33769,16 +33769,16 @@ "y": 0 }, { - "x": 470.2220719270842, - "y": 321.62252348991217 + "x": 470.22207, + "y": 321.62252 }, { "x": 0, "y": 0 }, { - "x": 470.31310638846486, - "y": 321.14366130131117 + "x": 470.31311, + "y": 321.14366 }, { "endCol": 9, @@ -33801,8 +33801,8 @@ "yScale": 1 }, { - "x": -0.09267928322873331, - "y": 0.6662873816371757 + "x": -0.09268, + "y": 0.66629 }, [ { @@ -33840,78 +33840,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 477.830071927084, - "y": 324.09452348991215 + "x": 477.83007, + "y": 324.09452 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.924071927084, - "y": 328.09452348991215 + "x": 474.92407, + "y": 328.09452 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.222071927084, - "y": 329.62252348991217 + "x": 470.22207, + "y": 329.62252 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.520071927084, - "y": 328.09452348991215 + "x": 465.52007, + "y": 328.09452 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.614071927084, - "y": 324.09452348991215 + "x": 462.61407, + "y": 324.09452 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.614071927084, - "y": 319.1505234899122 + "x": 462.61407, + "y": 319.15052 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.520071927084, - "y": 315.1505234899122 + "x": 465.52007, + "y": 315.15052 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.222071927084, - "y": 313.62252348991217 + "x": 470.22207, + "y": 313.62252 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.924071927084, - "y": 315.1505234899122 + "x": 474.92407, + "y": 315.15052 }, { "body": null, "index": 9, "isInternal": false, - "x": 477.830071927084, - "y": 319.1505234899122 + "x": 477.83007, + "y": 319.15052 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3708 }, @@ -33940,11 +33940,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -33966,7 +33966,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5979787901922295, + "speed": 0.59798, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33996,20 +33996,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -34024,12 +34024,12 @@ } }, { - "x": 498.1718464220333, - "y": 329.07050370947616 + "x": 498.17185, + "y": 329.0705 }, { - "x": 482.9558464220333, - "y": 313.07050370947616 + "x": 482.95585, + "y": 313.0705 }, { "category": 1, @@ -34046,16 +34046,16 @@ "y": 0 }, { - "x": 490.5638464220334, - "y": 321.0705037094763 + "x": 490.56385, + "y": 321.0705 }, { "x": 0, "y": 0 }, { - "x": 490.59741111760627, - "y": 320.840791124366 + "x": 490.59741, + "y": 320.84079 }, { "endCol": 10, @@ -34078,8 +34078,8 @@ "yScale": 1 }, { - "x": -0.034503905345616204, - "y": 0.5121916516869192 + "x": -0.0345, + "y": 0.51219 }, [ { @@ -34117,78 +34117,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.1718464220333, - "y": 323.54250370947614 + "x": 498.17185, + "y": 323.5425 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.2658464220333, - "y": 327.54250370947614 + "x": 495.26585, + "y": 327.5425 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.5638464220333, - "y": 329.07050370947616 + "x": 490.56385, + "y": 329.0705 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.8618464220333, - "y": 327.54250370947614 + "x": 485.86185, + "y": 327.5425 }, { "body": null, "index": 4, "isInternal": false, - "x": 482.9558464220333, - "y": 323.54250370947614 + "x": 482.95585, + "y": 323.5425 }, { "body": null, "index": 5, "isInternal": false, - "x": 482.9558464220333, - "y": 318.5985037094762 + "x": 482.95585, + "y": 318.5985 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.8618464220333, - "y": 314.5985037094762 + "x": 485.86185, + "y": 314.5985 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.5638464220333, - "y": 313.07050370947616 + "x": 490.56385, + "y": 313.0705 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.2658464220333, - "y": 314.5985037094762 + "x": 495.26585, + "y": 314.5985 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.1718464220333, - "y": 318.5985037094762 + "x": 498.17185, + "y": 318.5985 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3739 }, @@ -34217,11 +34217,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -34243,7 +34243,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5975290732283455, + "speed": 0.59753, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34273,20 +34273,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -34301,12 +34301,12 @@ } }, { - "x": 518.5112360190761, - "y": 329.0682202918365 + "x": 518.51124, + "y": 329.06822 }, { - "x": 503.29523601907607, - "y": 313.0682202918365 + "x": 503.29524, + "y": 313.06822 }, { "category": 1, @@ -34323,16 +34323,16 @@ "y": 0 }, { - "x": 510.90323601907613, - "y": 321.0682202918367 + "x": 510.90324, + "y": 321.06822 }, { "x": 0, "y": 0 }, { - "x": 510.87185923608655, - "y": 320.84021913715077 + "x": 510.87186, + "y": 320.84022 }, { "endCol": 10, @@ -34355,8 +34355,8 @@ "yScale": 1 }, { - "x": 0.03240291173403875, - "y": 0.5116124662120569 + "x": 0.0324, + "y": 0.51161 }, [ { @@ -34394,78 +34394,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.5112360190761, - "y": 323.5402202918365 + "x": 518.51124, + "y": 323.54022 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.6052360190762, - "y": 327.5402202918365 + "x": 515.60524, + "y": 327.54022 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.9032360190761, - "y": 329.0682202918365 + "x": 510.90324, + "y": 329.06822 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.2012360190761, - "y": 327.5402202918365 + "x": 506.20124, + "y": 327.54022 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.29523601907607, - "y": 323.5402202918365 + "x": 503.29524, + "y": 323.54022 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.29523601907607, - "y": 318.5962202918365 + "x": 503.29524, + "y": 318.59622 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.2012360190761, - "y": 314.5962202918365 + "x": 506.20124, + "y": 314.59622 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.9032360190761, - "y": 313.0682202918365 + "x": 510.90324, + "y": 313.06822 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.6052360190762, - "y": 314.5962202918365 + "x": 515.60524, + "y": 314.59622 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.5112360190761, - "y": 318.5962202918365 + "x": 518.51124, + "y": 318.59622 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3770 }, @@ -34494,11 +34494,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -34520,7 +34520,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7544567413147693, + "speed": 0.75446, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34550,20 +34550,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -34578,12 +34578,12 @@ } }, { - "x": 538.8809410006331, - "y": 329.6055606954157 + "x": 538.88094, + "y": 329.60556 }, { - "x": 523.6649410006332, - "y": 313.6055606954157 + "x": 523.66494, + "y": 313.60556 }, { "category": 1, @@ -34600,16 +34600,16 @@ "y": 0 }, { - "x": 531.2729410006328, - "y": 321.60556069541576 + "x": 531.27294, + "y": 321.60556 }, { "x": 0, "y": 0 }, { - "x": 531.1780042467599, - "y": 321.14034977624505 + "x": 531.178, + "y": 321.14035 }, { "endCol": 11, @@ -34632,8 +34632,8 @@ "yScale": 1 }, { - "x": 0.09665282745595505, - "y": 0.6604943090311508 + "x": 0.09665, + "y": 0.66049 }, [ { @@ -34671,78 +34671,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 538.8809410006331, - "y": 324.0775606954157 + "x": 538.88094, + "y": 324.07756 }, { "body": null, "index": 1, "isInternal": false, - "x": 535.9749410006332, - "y": 328.0775606954157 + "x": 535.97494, + "y": 328.07756 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.2729410006332, - "y": 329.6055606954157 + "x": 531.27294, + "y": 329.60556 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.5709410006332, - "y": 328.0775606954157 + "x": 526.57094, + "y": 328.07756 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.6649410006332, - "y": 324.0775606954157 + "x": 523.66494, + "y": 324.07756 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.6649410006332, - "y": 319.1335606954157 + "x": 523.66494, + "y": 319.13356 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.5709410006332, - "y": 315.1335606954157 + "x": 526.57094, + "y": 315.13356 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.2729410006332, - "y": 313.6055606954157 + "x": 531.27294, + "y": 313.60556 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.9749410006332, - "y": 315.1335606954157 + "x": 535.97494, + "y": 315.13356 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.8809410006331, - "y": 319.1335606954157 + "x": 538.88094, + "y": 319.13356 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3801 }, @@ -34771,11 +34771,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -34797,7 +34797,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9221496561059694, + "speed": 1.92215, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34827,20 +34827,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -34855,12 +34855,12 @@ } }, { - "x": 558.6595849479078, - "y": 334.5945238528657 + "x": 558.65958, + "y": 334.59452 }, { - "x": 543.4435849479079, - "y": 318.5945238528657 + "x": 543.44358, + "y": 318.59452 }, { "category": 1, @@ -34877,16 +34877,16 @@ "y": 0 }, { - "x": 551.0515849479079, - "y": 326.5945238528656 + "x": 551.05158, + "y": 326.59452 }, { "x": 0, "y": 0 }, { - "x": 551.1607319890578, - "y": 324.991263469521 + "x": 551.16073, + "y": 324.99126 }, { "endCol": 11, @@ -34909,8 +34909,8 @@ "yScale": 1 }, { - "x": -0.10672547307922287, - "y": 1.3800396209247197 + "x": -0.10673, + "y": 1.38004 }, [ { @@ -34948,78 +34948,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.6595849479078, - "y": 329.06652385286566 + "x": 558.65958, + "y": 329.06652 }, { "body": null, "index": 1, "isInternal": false, - "x": 555.7535849479078, - "y": 333.06652385286566 + "x": 555.75358, + "y": 333.06652 }, { "body": null, "index": 2, "isInternal": false, - "x": 551.0515849479078, - "y": 334.5945238528657 + "x": 551.05158, + "y": 334.59452 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.3495849479078, - "y": 333.06652385286566 + "x": 546.34958, + "y": 333.06652 }, { "body": null, "index": 4, "isInternal": false, - "x": 543.4435849479079, - "y": 329.06652385286566 + "x": 543.44358, + "y": 329.06652 }, { "body": null, "index": 5, "isInternal": false, - "x": 543.4435849479079, - "y": 324.1225238528657 + "x": 543.44358, + "y": 324.12252 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.3495849479078, - "y": 320.1225238528657 + "x": 546.34958, + "y": 320.12252 }, { "body": null, "index": 7, "isInternal": false, - "x": 551.0515849479078, - "y": 318.5945238528657 + "x": 551.05158, + "y": 318.59452 }, { "body": null, "index": 8, "isInternal": false, - "x": 555.7535849479078, - "y": 320.1225238528657 + "x": 555.75358, + "y": 320.12252 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.6595849479078, - "y": 324.1225238528657 + "x": 558.65958, + "y": 324.12252 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3832 }, @@ -35048,11 +35048,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -35074,7 +35074,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.0986506701652075, + "speed": 2.09865, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35104,20 +35104,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -35132,12 +35132,12 @@ } }, { - "x": 578.9779317125194, - "y": 335.2195151453499 + "x": 578.97793, + "y": 335.21952 }, { - "x": 563.7619317125195, - "y": 319.2195151453499 + "x": 563.76193, + "y": 319.21952 }, { "category": 1, @@ -35154,16 +35154,16 @@ "y": 0 }, { - "x": 571.3699317125196, - "y": 327.2195151453499 + "x": 571.36993, + "y": 327.21952 }, { "x": 0, "y": 0 }, { - "x": 571.4408739710509, - "y": 325.3524190196574 + "x": 571.44087, + "y": 325.35242 }, { "endCol": 12, @@ -35186,8 +35186,8 @@ "yScale": 1 }, { - "x": -0.06826755569841225, - "y": 1.5442635706880878 + "x": -0.06827, + "y": 1.54426 }, [ { @@ -35225,78 +35225,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 578.9779317125194, - "y": 329.69151514534985 + "x": 578.97793, + "y": 329.69152 }, { "body": null, "index": 1, "isInternal": false, - "x": 576.0719317125195, - "y": 333.69151514534985 + "x": 576.07193, + "y": 333.69152 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.3699317125195, - "y": 335.2195151453499 + "x": 571.36993, + "y": 335.21952 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.6679317125195, - "y": 333.69151514534985 + "x": 566.66793, + "y": 333.69152 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.7619317125195, - "y": 329.69151514534985 + "x": 563.76193, + "y": 329.69152 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.7619317125195, - "y": 324.7475151453499 + "x": 563.76193, + "y": 324.74752 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.6679317125195, - "y": 320.7475151453499 + "x": 566.66793, + "y": 320.74752 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.3699317125195, - "y": 319.2195151453499 + "x": 571.36993, + "y": 319.21952 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.0719317125195, - "y": 320.7475151453499 + "x": 576.07193, + "y": 320.74752 }, { "body": null, "index": 9, "isInternal": false, - "x": 578.9779317125194, - "y": 324.7475151453499 + "x": 578.97793, + "y": 324.74752 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3863 }, @@ -35325,11 +35325,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -35351,7 +35351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1044400486117487, + "speed": 2.10444, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35381,20 +35381,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -35409,12 +35409,12 @@ } }, { - "x": 599.2403726921832, - "y": 335.2423107722071 + "x": 599.24037, + "y": 335.24231 }, { - "x": 584.0243726921833, - "y": 319.2423107722071 + "x": 584.02437, + "y": 319.24231 }, { "category": 1, @@ -35431,16 +35431,16 @@ "y": 0 }, { - "x": 591.6323726921834, - "y": 327.2423107722071 + "x": 591.63237, + "y": 327.24231 }, { "x": 0, "y": 0 }, { - "x": 591.6881161432414, - "y": 325.3614885489026 + "x": 591.68812, + "y": 325.36149 }, { "endCol": 12, @@ -35463,8 +35463,8 @@ "yScale": 1 }, { - "x": -0.05350340488746497, - "y": 1.5521372533751219 + "x": -0.0535, + "y": 1.55214 }, [ { @@ -35502,78 +35502,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.2403726921832, - "y": 329.71431077220706 + "x": 599.24037, + "y": 329.71431 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.3343726921833, - "y": 333.71431077220706 + "x": 596.33437, + "y": 333.71431 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.6323726921833, - "y": 335.2423107722071 + "x": 591.63237, + "y": 335.24231 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.9303726921833, - "y": 333.71431077220706 + "x": 586.93037, + "y": 333.71431 }, { "body": null, "index": 4, "isInternal": false, - "x": 584.0243726921833, - "y": 329.71431077220706 + "x": 584.02437, + "y": 329.71431 }, { "body": null, "index": 5, "isInternal": false, - "x": 584.0243726921833, - "y": 324.7703107722071 + "x": 584.02437, + "y": 324.77031 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.9303726921833, - "y": 320.7703107722071 + "x": 586.93037, + "y": 320.77031 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.6323726921833, - "y": 319.2423107722071 + "x": 591.63237, + "y": 319.24231 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.3343726921833, - "y": 320.7703107722071 + "x": 596.33437, + "y": 320.77031 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.2403726921832, - "y": 324.7703107722071 + "x": 599.24037, + "y": 324.77031 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3894 }, @@ -35602,11 +35602,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -35628,7 +35628,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7001788859545877, + "speed": 2.70018, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35658,20 +35658,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -35686,12 +35686,12 @@ } }, { - "x": 215.3732066106103, - "y": 358.5861785612607 + "x": 215.37321, + "y": 358.58618 }, { - "x": 200.1572066106103, - "y": 342.5861785612607 + "x": 200.15721, + "y": 342.58618 }, { "category": 1, @@ -35708,16 +35708,16 @@ "y": 0 }, { - "x": 207.76520661061028, - "y": 350.5861785612608 + "x": 207.76521, + "y": 350.58618 }, { "x": 0, "y": 0 }, { - "x": 207.6873814389223, - "y": 347.94026441920937 + "x": 207.68738, + "y": 347.94026 }, { "endCol": 4, @@ -35740,8 +35740,8 @@ "yScale": 1 }, { - "x": 0.07406950403114365, - "y": 2.219894182592327 + "x": 0.07407, + "y": 2.21989 }, [ { @@ -35779,78 +35779,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.3732066106103, - "y": 353.05817856126066 + "x": 215.37321, + "y": 353.05818 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.4672066106103, - "y": 357.05817856126066 + "x": 212.46721, + "y": 357.05818 }, { "body": null, "index": 2, "isInternal": false, - "x": 207.7652066106103, - "y": 358.5861785612607 + "x": 207.76521, + "y": 358.58618 }, { "body": null, "index": 3, "isInternal": false, - "x": 203.0632066106103, - "y": 357.05817856126066 + "x": 203.06321, + "y": 357.05818 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.1572066106103, - "y": 353.05817856126066 + "x": 200.15721, + "y": 353.05818 }, { "body": null, "index": 5, "isInternal": false, - "x": 200.1572066106103, - "y": 348.1141785612607 + "x": 200.15721, + "y": 348.11418 }, { "body": null, "index": 6, "isInternal": false, - "x": 203.0632066106103, - "y": 344.1141785612607 + "x": 203.06321, + "y": 344.11418 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.7652066106103, - "y": 342.5861785612607 + "x": 207.76521, + "y": 342.58618 }, { "body": null, "index": 8, "isInternal": false, - "x": 212.4672066106103, - "y": 344.1141785612607 + "x": 212.46721, + "y": 344.11418 }, { "body": null, "index": 9, "isInternal": false, - "x": 215.3732066106103, - "y": 348.1141785612607 + "x": 215.37321, + "y": 348.11418 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3925 }, @@ -35879,11 +35879,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -35905,7 +35905,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8122280940568385, + "speed": 2.81223, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35935,20 +35935,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -35963,12 +35963,12 @@ } }, { - "x": 235.64407424459034, - "y": 359.22287334957525 + "x": 235.64407, + "y": 359.22287 }, { - "x": 220.42807424459033, - "y": 343.22287334957525 + "x": 220.42807, + "y": 343.22287 }, { "category": 1, @@ -35985,16 +35985,16 @@ "y": 0 }, { - "x": 228.03607424459037, - "y": 351.2228733495749 + "x": 228.03607, + "y": 351.22287 }, { "x": 0, "y": 0 }, { - "x": 227.9445358127808, - "y": 348.6102528299855 + "x": 227.94454, + "y": 348.61025 }, { "endCol": 4, @@ -36017,8 +36017,8 @@ "yScale": 1 }, { - "x": 0.0865786502963033, - "y": 2.221314518346901 + "x": 0.08658, + "y": 2.22131 }, [ { @@ -36056,78 +36056,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.64407424459034, - "y": 353.69487334957523 + "x": 235.64407, + "y": 353.69487 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.73807424459034, - "y": 357.69487334957523 + "x": 232.73807, + "y": 357.69487 }, { "body": null, "index": 2, "isInternal": false, - "x": 228.03607424459034, - "y": 359.22287334957525 + "x": 228.03607, + "y": 359.22287 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.33407424459034, - "y": 357.69487334957523 + "x": 223.33407, + "y": 357.69487 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.42807424459033, - "y": 353.69487334957523 + "x": 220.42807, + "y": 353.69487 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.42807424459033, - "y": 348.7508733495753 + "x": 220.42807, + "y": 348.75087 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.33407424459034, - "y": 344.7508733495753 + "x": 223.33407, + "y": 344.75087 }, { "body": null, "index": 7, "isInternal": false, - "x": 228.03607424459034, - "y": 343.22287334957525 + "x": 228.03607, + "y": 343.22287 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.73807424459034, - "y": 344.7508733495753 + "x": 232.73807, + "y": 344.75087 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.64407424459034, - "y": 348.7508733495753 + "x": 235.64407, + "y": 348.75087 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3956 }, @@ -36156,11 +36156,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -36182,7 +36182,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3026862525529728, + "speed": 2.30269, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36212,20 +36212,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -36240,12 +36240,12 @@ } }, { - "x": 255.7195901647069, - "y": 355.9311810923054 + "x": 255.71959, + "y": 355.93118 }, { - "x": 240.50359016470688, - "y": 339.9311810923054 + "x": 240.50359, + "y": 339.93118 }, { "category": 1, @@ -36262,16 +36262,16 @@ "y": 0 }, { - "x": 248.11159016470694, - "y": 347.9311810923054 + "x": 248.11159, + "y": 347.93118 }, { "x": 0, "y": 0 }, { - "x": 248.0581131800324, - "y": 345.83427533041385 + "x": 248.05811, + "y": 345.83428 }, { "endCol": 5, @@ -36294,8 +36294,8 @@ "yScale": 1 }, { - "x": 0.050662182077843454, - "y": 1.9055713686422564 + "x": 0.05066, + "y": 1.90557 }, [ { @@ -36333,78 +36333,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.7195901647069, - "y": 350.4031810923054 + "x": 255.71959, + "y": 350.40318 }, { "body": null, "index": 1, "isInternal": false, - "x": 252.81359016470688, - "y": 354.4031810923054 + "x": 252.81359, + "y": 354.40318 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.11159016470688, - "y": 355.9311810923054 + "x": 248.11159, + "y": 355.93118 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.40959016470688, - "y": 354.4031810923054 + "x": 243.40959, + "y": 354.40318 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.50359016470688, - "y": 350.4031810923054 + "x": 240.50359, + "y": 350.40318 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.50359016470688, - "y": 345.4591810923054 + "x": 240.50359, + "y": 345.45918 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.40959016470688, - "y": 341.4591810923054 + "x": 243.40959, + "y": 341.45918 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.11159016470688, - "y": 339.9311810923054 + "x": 248.11159, + "y": 339.93118 }, { "body": null, "index": 8, "isInternal": false, - "x": 252.81359016470688, - "y": 341.4591810923054 + "x": 252.81359, + "y": 341.45918 }, { "body": null, "index": 9, "isInternal": false, - "x": 255.7195901647069, - "y": 345.4591810923054 + "x": 255.71959, + "y": 345.45918 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 3987 }, @@ -36433,11 +36433,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -36459,7 +36459,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5334892264796578, + "speed": 1.53349, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36489,20 +36489,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -36517,12 +36517,12 @@ } }, { - "x": 275.94190444412664, - "y": 353.41581413395915 + "x": 275.9419, + "y": 353.41581 }, { - "x": 260.7259044441266, - "y": 337.41581413395915 + "x": 260.7259, + "y": 337.41581 }, { "category": 1, @@ -36539,16 +36539,16 @@ "y": 0 }, { - "x": 268.33390444412674, - "y": 345.41581413395915 + "x": 268.3339, + "y": 345.41581 }, { "x": 0, "y": 0 }, { - "x": 268.3200576441203, - "y": 344.09945998861224 + "x": 268.32006, + "y": 344.09946 }, { "endCol": 5, @@ -36571,8 +36571,8 @@ "yScale": 1 }, { - "x": 0.015140906955537048, - "y": 1.3924489965992848 + "x": 0.01514, + "y": 1.39245 }, [ { @@ -36610,78 +36610,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.94190444412664, - "y": 347.8878141339591 + "x": 275.9419, + "y": 347.88781 }, { "body": null, "index": 1, "isInternal": false, - "x": 273.03590444412663, - "y": 351.8878141339591 + "x": 273.0359, + "y": 351.88781 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.33390444412663, - "y": 353.41581413395915 + "x": 268.3339, + "y": 353.41581 }, { "body": null, "index": 3, "isInternal": false, - "x": 263.63190444412663, - "y": 351.8878141339591 + "x": 263.6319, + "y": 351.88781 }, { "body": null, "index": 4, "isInternal": false, - "x": 260.7259044441266, - "y": 347.8878141339591 + "x": 260.7259, + "y": 347.88781 }, { "body": null, "index": 5, "isInternal": false, - "x": 260.7259044441266, - "y": 342.94381413395917 + "x": 260.7259, + "y": 342.94381 }, { "body": null, "index": 6, "isInternal": false, - "x": 263.63190444412663, - "y": 338.94381413395917 + "x": 263.6319, + "y": 338.94381 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.33390444412663, - "y": 337.41581413395915 + "x": 268.3339, + "y": 337.41581 }, { "body": null, "index": 8, "isInternal": false, - "x": 273.03590444412663, - "y": 338.94381413395917 + "x": 273.0359, + "y": 338.94381 }, { "body": null, "index": 9, "isInternal": false, - "x": 275.94190444412664, - "y": 342.94381413395917 + "x": 275.9419, + "y": 342.94381 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4018 }, @@ -36710,11 +36710,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -36736,7 +36736,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.519318972410265, + "speed": 1.51932, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36766,20 +36766,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -36794,12 +36794,12 @@ } }, { - "x": 296.2357114491983, - "y": 351.53684700149097 + "x": 296.23571, + "y": 351.53685 }, { - "x": 281.01971144919827, - "y": 335.53684700149097 + "x": 281.01971, + "y": 335.53685 }, { "category": 1, @@ -36816,16 +36816,16 @@ "y": 0 }, { - "x": 288.6277114491984, - "y": 343.5368470014913 + "x": 288.62771, + "y": 343.53685 }, { "x": 0, "y": 0 }, { - "x": 288.5832882972555, - "y": 342.26108287138624 + "x": 288.58329, + "y": 342.26108 }, { "endCol": 6, @@ -36848,8 +36848,8 @@ "yScale": 1 }, { - "x": 0.04643502378917219, - "y": 1.37780730979091 + "x": 0.04644, + "y": 1.37781 }, [ { @@ -36887,78 +36887,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.2357114491983, - "y": 346.00884700149095 + "x": 296.23571, + "y": 346.00885 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.32971144919827, - "y": 350.00884700149095 + "x": 293.32971, + "y": 350.00885 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.6277114491983, - "y": 351.53684700149097 + "x": 288.62771, + "y": 351.53685 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.9257114491983, - "y": 350.00884700149095 + "x": 283.92571, + "y": 350.00885 }, { "body": null, "index": 4, "isInternal": false, - "x": 281.01971144919827, - "y": 346.00884700149095 + "x": 281.01971, + "y": 346.00885 }, { "body": null, "index": 5, "isInternal": false, - "x": 281.01971144919827, - "y": 341.064847001491 + "x": 281.01971, + "y": 341.06485 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.9257114491983, - "y": 337.064847001491 + "x": 283.92571, + "y": 337.06485 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.6277114491983, - "y": 335.53684700149097 + "x": 288.62771, + "y": 335.53685 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.32971144919827, - "y": 337.064847001491 + "x": 293.32971, + "y": 337.06485 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.2357114491983, - "y": 341.064847001491 + "x": 296.23571, + "y": 341.06485 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4049 }, @@ -36987,11 +36987,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -37013,7 +37013,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.31346124005885, + "speed": 1.31346, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37043,20 +37043,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -37071,12 +37071,12 @@ } }, { - "x": 316.46123869427464, - "y": 349.31031239147575 + "x": 316.46124, + "y": 349.31031 }, { - "x": 301.24523869427463, - "y": 333.31031239147575 + "x": 301.24524, + "y": 333.31031 }, { "category": 1, @@ -37093,16 +37093,16 @@ "y": 0 }, { - "x": 308.85323869427464, - "y": 341.3103123914757 + "x": 308.85324, + "y": 341.31031 }, { "x": 0, "y": 0 }, { - "x": 308.7949057077806, - "y": 339.8156821386316 + "x": 308.79491, + "y": 339.81568 }, { "endCol": 6, @@ -37125,8 +37125,8 @@ "yScale": 1 }, { - "x": 0.057856683618695115, - "y": 1.4679648583980907 + "x": 0.05786, + "y": 1.46796 }, [ { @@ -37164,78 +37164,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.46123869427464, - "y": 343.7823123914757 + "x": 316.46124, + "y": 343.78231 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.55523869427464, - "y": 347.7823123914757 + "x": 313.55524, + "y": 347.78231 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.85323869427464, - "y": 349.31031239147575 + "x": 308.85324, + "y": 349.31031 }, { "body": null, "index": 3, "isInternal": false, - "x": 304.15123869427464, - "y": 347.7823123914757 + "x": 304.15124, + "y": 347.78231 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.24523869427463, - "y": 343.7823123914757 + "x": 301.24524, + "y": 343.78231 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.24523869427463, - "y": 338.83831239147577 + "x": 301.24524, + "y": 338.83831 }, { "body": null, "index": 6, "isInternal": false, - "x": 304.15123869427464, - "y": 334.83831239147577 + "x": 304.15124, + "y": 334.83831 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.85323869427464, - "y": 333.31031239147575 + "x": 308.85324, + "y": 333.31031 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.55523869427464, - "y": 334.83831239147577 + "x": 313.55524, + "y": 334.83831 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.46123869427464, - "y": 338.83831239147577 + "x": 316.46124, + "y": 338.83831 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4080 }, @@ -37264,11 +37264,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -37290,7 +37290,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8921399174077986, + "speed": 1.89214, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37320,20 +37320,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -37348,12 +37348,12 @@ } }, { - "x": 336.2738940426938, - "y": 354.0661125701138 + "x": 336.27389, + "y": 354.06611 }, { - "x": 321.0578940426938, - "y": 338.0661125701138 + "x": 321.05789, + "y": 338.06611 }, { "category": 1, @@ -37370,16 +37370,16 @@ "y": 0 }, { - "x": 328.66589404269365, - "y": 346.06611257011366 + "x": 328.66589, + "y": 346.06611 }, { "x": 0, "y": 0 }, { - "x": 328.7074149902726, - "y": 344.221744993117 + "x": 328.70741, + "y": 344.22174 }, { "endCol": 7, @@ -37402,8 +37402,8 @@ "yScale": 1 }, { - "x": -0.04246231774186526, - "y": 1.693106172536318 + "x": -0.04246, + "y": 1.69311 }, [ { @@ -37441,78 +37441,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.2738940426938, - "y": 348.53811257011375 + "x": 336.27389, + "y": 348.53811 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.3678940426938, - "y": 352.53811257011375 + "x": 333.36789, + "y": 352.53811 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.6658940426938, - "y": 354.0661125701138 + "x": 328.66589, + "y": 354.06611 }, { "body": null, "index": 3, "isInternal": false, - "x": 323.9638940426938, - "y": 352.53811257011375 + "x": 323.96389, + "y": 352.53811 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.0578940426938, - "y": 348.53811257011375 + "x": 321.05789, + "y": 348.53811 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.0578940426938, - "y": 343.5941125701138 + "x": 321.05789, + "y": 343.59411 }, { "body": null, "index": 6, "isInternal": false, - "x": 323.9638940426938, - "y": 339.5941125701138 + "x": 323.96389, + "y": 339.59411 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.6658940426938, - "y": 338.0661125701138 + "x": 328.66589, + "y": 338.06611 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.3678940426938, - "y": 339.5941125701138 + "x": 333.36789, + "y": 339.59411 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.2738940426938, - "y": 343.5941125701138 + "x": 336.27389, + "y": 343.59411 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4111 }, @@ -37541,11 +37541,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -37567,7 +37567,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.2200232924424337, + "speed": 2.22002, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37597,20 +37597,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -37625,12 +37625,12 @@ } }, { - "x": 356.6549516902432, - "y": 355.0711925695036 + "x": 356.65495, + "y": 355.07119 }, { - "x": 341.4389516902432, - "y": 339.0711925695036 + "x": 341.43895, + "y": 339.07119 }, { "category": 1, @@ -37647,16 +37647,16 @@ "y": 0 }, { - "x": 349.0469516902429, - "y": 347.0711925695036 + "x": 349.04695, + "y": 347.07119 }, { "x": 0, "y": 0 }, { - "x": 349.09766031913654, - "y": 344.8489341961189 + "x": 349.09766, + "y": 344.84893 }, { "endCol": 7, @@ -37679,8 +37679,8 @@ "yScale": 1 }, { - "x": -0.05082294569479018, - "y": 1.9500538222792443 + "x": -0.05082, + "y": 1.95005 }, [ { @@ -37718,78 +37718,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.6549516902432, - "y": 349.54319256950356 + "x": 356.65495, + "y": 349.54319 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.7489516902432, - "y": 353.54319256950356 + "x": 353.74895, + "y": 353.54319 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.0469516902432, - "y": 355.0711925695036 + "x": 349.04695, + "y": 355.07119 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.3449516902432, - "y": 353.54319256950356 + "x": 344.34495, + "y": 353.54319 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.4389516902432, - "y": 349.54319256950356 + "x": 341.43895, + "y": 349.54319 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.4389516902432, - "y": 344.5991925695036 + "x": 341.43895, + "y": 344.59919 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.3449516902432, - "y": 340.5991925695036 + "x": 344.34495, + "y": 340.59919 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.0469516902432, - "y": 339.0711925695036 + "x": 349.04695, + "y": 339.07119 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.7489516902432, - "y": 340.5991925695036 + "x": 353.74895, + "y": 340.59919 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.6549516902432, - "y": 344.5991925695036 + "x": 356.65495, + "y": 344.59919 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4142 }, @@ -37818,11 +37818,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -37844,7 +37844,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.685227352166191, + "speed": 2.68523, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37874,20 +37874,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -37902,12 +37902,12 @@ } }, { - "x": 376.6683279683479, - "y": 358.78964382320527 + "x": 376.66833, + "y": 358.78964 }, { - "x": 361.4523279683479, - "y": 342.78964382320527 + "x": 361.45233, + "y": 342.78964 }, { "category": 1, @@ -37924,16 +37924,16 @@ "y": 0 }, { - "x": 369.06032796834796, - "y": 350.78964382320544 + "x": 369.06033, + "y": 350.78964 }, { "x": 0, "y": 0 }, { - "x": 369.1399740847997, - "y": 348.3205979575382 + "x": 369.13997, + "y": 348.3206 }, { "endCol": 7, @@ -37956,8 +37956,8 @@ "yScale": 1 }, { - "x": -0.07876453676942674, - "y": 2.1239540119940443 + "x": -0.07876, + "y": 2.12395 }, [ { @@ -37995,78 +37995,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.6683279683479, - "y": 353.26164382320525 + "x": 376.66833, + "y": 353.26164 }, { "body": null, "index": 1, "isInternal": false, - "x": 373.7623279683479, - "y": 357.26164382320525 + "x": 373.76233, + "y": 357.26164 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.0603279683479, - "y": 358.78964382320527 + "x": 369.06033, + "y": 358.78964 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.3583279683479, - "y": 357.26164382320525 + "x": 364.35833, + "y": 357.26164 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.4523279683479, - "y": 353.26164382320525 + "x": 361.45233, + "y": 353.26164 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.4523279683479, - "y": 348.3176438232053 + "x": 361.45233, + "y": 348.31764 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.3583279683479, - "y": 344.3176438232053 + "x": 364.35833, + "y": 344.31764 }, { "body": null, "index": 7, "isInternal": false, - "x": 369.0603279683479, - "y": 342.78964382320527 + "x": 369.06033, + "y": 342.78964 }, { "body": null, "index": 8, "isInternal": false, - "x": 373.7623279683479, - "y": 344.3176438232053 + "x": 373.76233, + "y": 344.31764 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.6683279683479, - "y": 348.3176438232053 + "x": 376.66833, + "y": 348.31764 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4173 }, @@ -38095,11 +38095,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -38121,7 +38121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.5098042473579887, + "speed": 2.5098, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38151,20 +38151,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -38179,12 +38179,12 @@ } }, { - "x": 397.0217121281836, - "y": 357.9849348358575 + "x": 397.02171, + "y": 357.98493 }, { - "x": 381.8057121281836, - "y": 341.9849348358575 + "x": 381.80571, + "y": 341.98493 }, { "category": 1, @@ -38201,16 +38201,16 @@ "y": 0 }, { - "x": 389.41371212818353, - "y": 349.9849348358576 + "x": 389.41371, + "y": 349.98493 }, { "x": 0, "y": 0 }, { - "x": 389.4533409240206, - "y": 347.5968862869564 + "x": 389.45334, + "y": 347.59689 }, { "endCol": 8, @@ -38233,8 +38233,8 @@ "yScale": 1 }, { - "x": -0.039473533334785316, - "y": 2.063691206638282 + "x": -0.03947, + "y": 2.06369 }, [ { @@ -38272,78 +38272,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.0217121281836, - "y": 352.45693483585745 + "x": 397.02171, + "y": 352.45693 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.1157121281836, - "y": 356.45693483585745 + "x": 394.11571, + "y": 356.45693 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.4137121281836, - "y": 357.9849348358575 + "x": 389.41371, + "y": 357.98493 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.7117121281836, - "y": 356.45693483585745 + "x": 384.71171, + "y": 356.45693 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.8057121281836, - "y": 352.45693483585745 + "x": 381.80571, + "y": 352.45693 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.8057121281836, - "y": 347.5129348358575 + "x": 381.80571, + "y": 347.51293 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.7117121281836, - "y": 343.5129348358575 + "x": 384.71171, + "y": 343.51293 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.4137121281836, - "y": 341.9849348358575 + "x": 389.41371, + "y": 341.98493 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.1157121281836, - "y": 343.5129348358575 + "x": 394.11571, + "y": 343.51293 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.0217121281836, - "y": 347.5129348358575 + "x": 397.02171, + "y": 347.51293 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4204 }, @@ -38372,11 +38372,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -38398,7 +38398,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.4283212559816354, + "speed": 2.42832, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38428,20 +38428,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -38456,12 +38456,12 @@ } }, { - "x": 417.40655713446233, - "y": 357.7123023485506 + "x": 417.40656, + "y": 357.7123 }, { - "x": 402.1905571344623, - "y": 341.7123023485506 + "x": 402.19056, + "y": 341.7123 }, { "category": 1, @@ -38478,16 +38478,16 @@ "y": 0 }, { - "x": 409.79855713446227, - "y": 349.7123023485505 + "x": 409.79856, + "y": 349.7123 }, { "x": 0, "y": 0 }, { - "x": 409.7717203869087, - "y": 347.4218579593367 + "x": 409.77172, + "y": 347.42186 }, { "endCol": 8, @@ -38510,8 +38510,8 @@ "yScale": 1 }, { - "x": 0.025625146891627537, - "y": 2.0013092100736003 + "x": 0.02563, + "y": 2.00131 }, [ { @@ -38549,78 +38549,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.40655713446233, - "y": 352.1843023485506 + "x": 417.40656, + "y": 352.1843 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.5005571344623, - "y": 356.1843023485506 + "x": 414.50056, + "y": 356.1843 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.7985571344623, - "y": 357.7123023485506 + "x": 409.79856, + "y": 357.7123 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.09655713446233, - "y": 356.1843023485506 + "x": 405.09656, + "y": 356.1843 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.1905571344623, - "y": 352.1843023485506 + "x": 402.19056, + "y": 352.1843 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.1905571344623, - "y": 347.24030234855064 + "x": 402.19056, + "y": 347.2403 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.09655713446233, - "y": 343.24030234855064 + "x": 405.09656, + "y": 343.2403 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.7985571344623, - "y": 341.7123023485506 + "x": 409.79856, + "y": 341.7123 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.5005571344623, - "y": 343.24030234855064 + "x": 414.50056, + "y": 343.2403 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.40655713446233, - "y": 347.24030234855064 + "x": 417.40656, + "y": 347.2403 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4235 }, @@ -38649,11 +38649,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -38675,7 +38675,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3668610645723747, + "speed": 2.36686, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38705,20 +38705,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -38733,12 +38733,12 @@ } }, { - "x": 437.8310084641863, - "y": 357.50037060428787 + "x": 437.83101, + "y": 357.50037 }, { - "x": 422.6150084641863, - "y": 341.50037060428787 + "x": 422.61501, + "y": 341.50037 }, { "category": 1, @@ -38755,16 +38755,16 @@ "y": 0 }, { - "x": 430.22300846418625, - "y": 349.50037060428804 + "x": 430.22301, + "y": 349.50037 }, { "x": 0, "y": 0 }, { - "x": 430.1196797456543, - "y": 347.3096709740055 + "x": 430.11968, + "y": 347.30967 }, { "endCol": 9, @@ -38787,8 +38787,8 @@ "yScale": 1 }, { - "x": 0.10090254985857428, - "y": 1.9414681789271526 + "x": 0.1009, + "y": 1.94147 }, [ { @@ -38826,78 +38826,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 437.8310084641863, - "y": 351.97237060428785 + "x": 437.83101, + "y": 351.97237 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.9250084641863, - "y": 355.97237060428785 + "x": 434.92501, + "y": 355.97237 }, { "body": null, "index": 2, "isInternal": false, - "x": 430.2230084641863, - "y": 357.50037060428787 + "x": 430.22301, + "y": 357.50037 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.5210084641863, - "y": 355.97237060428785 + "x": 425.52101, + "y": 355.97237 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.6150084641863, - "y": 351.97237060428785 + "x": 422.61501, + "y": 351.97237 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.6150084641863, - "y": 347.0283706042879 + "x": 422.61501, + "y": 347.02837 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.5210084641863, - "y": 343.0283706042879 + "x": 425.52101, + "y": 343.02837 }, { "body": null, "index": 7, "isInternal": false, - "x": 430.2230084641863, - "y": 341.50037060428787 + "x": 430.22301, + "y": 341.50037 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.9250084641863, - "y": 343.0283706042879 + "x": 434.92501, + "y": 343.02837 }, { "body": null, "index": 9, "isInternal": false, - "x": 437.8310084641863, - "y": 347.0283706042879 + "x": 437.83101, + "y": 347.02837 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4266 }, @@ -38926,11 +38926,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -38952,7 +38952,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.081395973449172, + "speed": 2.0814, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38982,20 +38982,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -39010,12 +39010,12 @@ } }, { - "x": 458.2736414196214, - "y": 356.3982156851607 + "x": 458.27364, + "y": 356.39822 }, { - "x": 443.0576414196214, - "y": 340.3982156851607 + "x": 443.05764, + "y": 340.39822 }, { "category": 1, @@ -39032,16 +39032,16 @@ "y": 0 }, { - "x": 450.66564141962124, - "y": 348.3982156851607 + "x": 450.66564, + "y": 348.39822 }, { "x": 0, "y": 0 }, { - "x": 450.51584766194674, - "y": 346.61487641056783 + "x": 450.51585, + "y": 346.61488 }, { "endCol": 9, @@ -39064,8 +39064,8 @@ "yScale": 1 }, { - "x": 0.14844731206022743, - "y": 1.68121573683527 + "x": 0.14845, + "y": 1.68122 }, [ { @@ -39103,78 +39103,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 458.2736414196214, - "y": 350.8702156851607 + "x": 458.27364, + "y": 350.87022 }, { "body": null, "index": 1, "isInternal": false, - "x": 455.36764141962146, - "y": 354.8702156851607 + "x": 455.36764, + "y": 354.87022 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.66564141962147, - "y": 356.3982156851607 + "x": 450.66564, + "y": 356.39822 }, { "body": null, "index": 3, "isInternal": false, - "x": 445.96364141962147, - "y": 354.8702156851607 + "x": 445.96364, + "y": 354.87022 }, { "body": null, "index": 4, "isInternal": false, - "x": 443.0576414196214, - "y": 350.8702156851607 + "x": 443.05764, + "y": 350.87022 }, { "body": null, "index": 5, "isInternal": false, - "x": 443.0576414196214, - "y": 345.92621568516074 + "x": 443.05764, + "y": 345.92622 }, { "body": null, "index": 6, "isInternal": false, - "x": 445.96364141962147, - "y": 341.92621568516074 + "x": 445.96364, + "y": 341.92622 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.66564141962147, - "y": 340.3982156851607 + "x": 450.66564, + "y": 340.39822 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.36764141962146, - "y": 341.92621568516074 + "x": 455.36764, + "y": 341.92622 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.2736414196214, - "y": 345.92621568516074 + "x": 458.27364, + "y": 345.92622 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4297 }, @@ -39203,11 +39203,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -39229,7 +39229,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9143742068346746, + "speed": 0.91437, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39259,20 +39259,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -39287,12 +39287,12 @@ } }, { - "x": 477.65315747000056, - "y": 349.780675539278 + "x": 477.65316, + "y": 349.78068 }, { - "x": 462.43715747000056, - "y": 333.780675539278 + "x": 462.43716, + "y": 333.78068 }, { "category": 1, @@ -39309,16 +39309,16 @@ "y": 0 }, { - "x": 470.0451574700006, - "y": 341.780675539278 + "x": 470.04516, + "y": 341.78068 }, { "x": 0, "y": 0 }, { - "x": 470.1658857648701, - "y": 341.0018814343434 + "x": 470.16589, + "y": 341.00188 }, { "endCol": 9, @@ -39341,8 +39341,8 @@ "yScale": 1 }, { - "x": -0.12316585053577, - "y": 1.0575578536042372 + "x": -0.12317, + "y": 1.05756 }, [ { @@ -39380,78 +39380,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 477.65315747000056, - "y": 344.25267553927796 + "x": 477.65316, + "y": 344.25268 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.74715747000056, - "y": 348.25267553927796 + "x": 474.74716, + "y": 348.25268 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.04515747000056, - "y": 349.780675539278 + "x": 470.04516, + "y": 349.78068 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.34315747000056, - "y": 348.25267553927796 + "x": 465.34316, + "y": 348.25268 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.43715747000056, - "y": 344.25267553927796 + "x": 462.43716, + "y": 344.25268 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.43715747000056, - "y": 339.308675539278 + "x": 462.43716, + "y": 339.30868 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.34315747000056, - "y": 335.308675539278 + "x": 465.34316, + "y": 335.30868 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.04515747000056, - "y": 333.780675539278 + "x": 470.04516, + "y": 333.78068 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.74715747000056, - "y": 335.308675539278 + "x": 474.74716, + "y": 335.30868 }, { "body": null, "index": 9, "isInternal": false, - "x": 477.65315747000056, - "y": 339.308675539278 + "x": 477.65316, + "y": 339.30868 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4328 }, @@ -39480,11 +39480,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -39506,7 +39506,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6437982603128148, + "speed": 0.6438, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39536,20 +39536,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -39564,12 +39564,12 @@ } }, { - "x": 498.1057918603053, - "y": 348.8198069600373 + "x": 498.10579, + "y": 348.81981 }, { - "x": 482.8897918603053, - "y": 332.8198069600373 + "x": 482.88979, + "y": 332.81981 }, { "category": 1, @@ -39586,16 +39586,16 @@ "y": 0 }, { - "x": 490.4977918603052, - "y": 340.8198069600372 + "x": 490.49779, + "y": 340.81981 }, { "x": 0, "y": 0 }, { - "x": 490.5439368136209, - "y": 340.4045564043816 + "x": 490.54394, + "y": 340.40456 }, { "endCol": 10, @@ -39618,8 +39618,8 @@ "yScale": 1 }, { - "x": -0.04709491386307718, - "y": 0.8183940304526232 + "x": -0.04709, + "y": 0.81839 }, [ { @@ -39657,78 +39657,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.1057918603053, - "y": 343.29180696003726 + "x": 498.10579, + "y": 343.29181 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.1997918603053, - "y": 347.29180696003726 + "x": 495.19979, + "y": 347.29181 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.4977918603053, - "y": 348.8198069600373 + "x": 490.49779, + "y": 348.81981 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.7957918603053, - "y": 347.29180696003726 + "x": 485.79579, + "y": 347.29181 }, { "body": null, "index": 4, "isInternal": false, - "x": 482.8897918603053, - "y": 343.29180696003726 + "x": 482.88979, + "y": 343.29181 }, { "body": null, "index": 5, "isInternal": false, - "x": 482.8897918603053, - "y": 338.3478069600373 + "x": 482.88979, + "y": 338.34781 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.7957918603053, - "y": 334.3478069600373 + "x": 485.79579, + "y": 334.34781 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.4977918603053, - "y": 332.8198069600373 + "x": 490.49779, + "y": 332.81981 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.1997918603053, - "y": 334.3478069600373 + "x": 495.19979, + "y": 334.34781 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.1057918603053, - "y": 338.3478069600373 + "x": 498.10579, + "y": 338.34781 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4359 }, @@ -39757,11 +39757,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -39783,7 +39783,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6419633041227636, + "speed": 0.64196, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39813,20 +39813,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -39841,12 +39841,12 @@ } }, { - "x": 518.5817620157887, - "y": 348.809050745462 + "x": 518.58176, + "y": 348.80905 }, { - "x": 503.3657620157886, - "y": 332.809050745462 + "x": 503.36576, + "y": 332.80905 }, { "category": 1, @@ -39863,16 +39863,16 @@ "y": 0 }, { - "x": 510.9737620157887, - "y": 340.80905074546195 + "x": 510.97376, + "y": 340.80905 }, { "x": 0, "y": 0 }, { - "x": 510.92171990738166, - "y": 340.4022980250468 + "x": 510.92172, + "y": 340.4023 }, { "endCol": 10, @@ -39895,8 +39895,8 @@ "yScale": 1 }, { - "x": 0.05441693262645231, - "y": 0.8149508831921821 + "x": 0.05442, + "y": 0.81495 }, [ { @@ -39934,78 +39934,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.5817620157887, - "y": 343.281050745462 + "x": 518.58176, + "y": 343.28105 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.6757620157888, - "y": 347.281050745462 + "x": 515.67576, + "y": 347.28105 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.9737620157886, - "y": 348.809050745462 + "x": 510.97376, + "y": 348.80905 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.2717620157886, - "y": 347.281050745462 + "x": 506.27176, + "y": 347.28105 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.3657620157886, - "y": 343.281050745462 + "x": 503.36576, + "y": 343.28105 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.3657620157886, - "y": 338.337050745462 + "x": 503.36576, + "y": 338.33705 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.2717620157886, - "y": 334.337050745462 + "x": 506.27176, + "y": 334.33705 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.9737620157886, - "y": 332.809050745462 + "x": 510.97376, + "y": 332.80905 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.6757620157888, - "y": 334.337050745462 + "x": 515.67576, + "y": 334.33705 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.5817620157887, - "y": 338.337050745462 + "x": 518.58176, + "y": 338.33705 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4390 }, @@ -40034,11 +40034,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -40060,7 +40060,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8991704234812834, + "speed": 0.89917, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40090,20 +40090,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -40118,12 +40118,12 @@ } }, { - "x": 539.0573320816449, - "y": 349.71607644412126 + "x": 539.05733, + "y": 349.71608 }, { - "x": 523.841332081645, - "y": 333.71607644412126 + "x": 523.84133, + "y": 333.71608 }, { "category": 1, @@ -40140,16 +40140,16 @@ "y": 0 }, { - "x": 531.449332081645, - "y": 341.7160764441214 + "x": 531.44933, + "y": 341.71608 }, { "x": 0, "y": 0 }, { - "x": 531.3341620508445, - "y": 340.98239559617923 + "x": 531.33416, + "y": 340.9824 }, { "endCol": 11, @@ -40172,8 +40172,8 @@ "yScale": 1 }, { - "x": 0.11816334035142972, - "y": 1.0365041453217145 + "x": 0.11816, + "y": 1.0365 }, [ { @@ -40211,78 +40211,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 539.0573320816449, - "y": 344.18807644412124 + "x": 539.05733, + "y": 344.18808 }, { "body": null, "index": 1, "isInternal": false, - "x": 536.1513320816449, - "y": 348.18807644412124 + "x": 536.15133, + "y": 348.18808 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.4493320816449, - "y": 349.71607644412126 + "x": 531.44933, + "y": 349.71608 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.7473320816449, - "y": 348.18807644412124 + "x": 526.74733, + "y": 348.18808 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.841332081645, - "y": 344.18807644412124 + "x": 523.84133, + "y": 344.18808 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.841332081645, - "y": 339.2440764441213 + "x": 523.84133, + "y": 339.24408 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.7473320816449, - "y": 335.2440764441213 + "x": 526.74733, + "y": 335.24408 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.4493320816449, - "y": 333.71607644412126 + "x": 531.44933, + "y": 333.71608 }, { "body": null, "index": 8, "isInternal": false, - "x": 536.1513320816449, - "y": 335.2440764441213 + "x": 536.15133, + "y": 335.24408 }, { "body": null, "index": 9, "isInternal": false, - "x": 539.0573320816449, - "y": 339.2440764441213 + "x": 539.05733, + "y": 339.24408 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4421 }, @@ -40311,11 +40311,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -40337,7 +40337,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.068995583637318, + "speed": 2.069, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40367,20 +40367,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -40395,12 +40395,12 @@ } }, { - "x": 558.4229757577825, - "y": 356.3580365996089 + "x": 558.42298, + "y": 356.35804 }, { - "x": 543.2069757577826, - "y": 340.3580365996089 + "x": 543.20698, + "y": 340.35804 }, { "category": 1, @@ -40417,16 +40417,16 @@ "y": 0 }, { - "x": 550.8149757577825, - "y": 348.35803659960897 + "x": 550.81498, + "y": 348.35804 }, { "x": 0, "y": 0 }, { - "x": 550.9849441567274, - "y": 346.59373436994883 + "x": 550.98494, + "y": 346.59373 }, { "endCol": 11, @@ -40449,8 +40449,8 @@ "yScale": 1 }, { - "x": -0.16842502284646343, - "y": 1.669216177978285 + "x": -0.16843, + "y": 1.66922 }, [ { @@ -40488,78 +40488,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.4229757577825, - "y": 350.8300365996089 + "x": 558.42298, + "y": 350.83004 }, { "body": null, "index": 1, "isInternal": false, - "x": 555.5169757577826, - "y": 354.8300365996089 + "x": 555.51698, + "y": 354.83004 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.8149757577826, - "y": 356.3580365996089 + "x": 550.81498, + "y": 356.35804 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.1129757577826, - "y": 354.8300365996089 + "x": 546.11298, + "y": 354.83004 }, { "body": null, "index": 4, "isInternal": false, - "x": 543.2069757577826, - "y": 350.8300365996089 + "x": 543.20698, + "y": 350.83004 }, { "body": null, "index": 5, "isInternal": false, - "x": 543.2069757577826, - "y": 345.88603659960893 + "x": 543.20698, + "y": 345.88604 }, { "body": null, "index": 6, "isInternal": false, - "x": 546.1129757577826, - "y": 341.88603659960893 + "x": 546.11298, + "y": 341.88604 }, { "body": null, "index": 7, "isInternal": false, - "x": 550.8149757577826, - "y": 340.3580365996089 + "x": 550.81498, + "y": 340.35804 }, { "body": null, "index": 8, "isInternal": false, - "x": 555.5169757577826, - "y": 341.88603659960893 + "x": 555.51698, + "y": 341.88604 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.4229757577825, - "y": 345.88603659960893 + "x": 558.42298, + "y": 345.88604 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4452 }, @@ -40588,11 +40588,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -40614,7 +40614,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.342407959169203, + "speed": 2.34241, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40644,20 +40644,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -40672,12 +40672,12 @@ } }, { - "x": 578.7925573088294, - "y": 357.41206297828734 + "x": 578.79256, + "y": 357.41206 }, { - "x": 563.5765573088295, - "y": 341.41206297828734 + "x": 563.57656, + "y": 341.41206 }, { "category": 1, @@ -40694,16 +40694,16 @@ "y": 0 }, { - "x": 571.1845573088298, - "y": 349.4120629782873 + "x": 571.18456, + "y": 349.41206 }, { "x": 0, "y": 0 }, { - "x": 571.3297733398535, - "y": 347.2733369993713 + "x": 571.32977, + "y": 347.27334 }, { "endCol": 12, @@ -40726,8 +40726,8 @@ "yScale": 1 }, { - "x": -0.14184704881699872, - "y": 1.9139550963084844 + "x": -0.14185, + "y": 1.91396 }, [ { @@ -40765,78 +40765,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 578.7925573088294, - "y": 351.8840629782873 + "x": 578.79256, + "y": 351.88406 }, { "body": null, "index": 1, "isInternal": false, - "x": 575.8865573088294, - "y": 355.8840629782873 + "x": 575.88656, + "y": 355.88406 }, { "body": null, "index": 2, "isInternal": false, - "x": 571.1845573088294, - "y": 357.41206297828734 + "x": 571.18456, + "y": 357.41206 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.4825573088294, - "y": 355.8840629782873 + "x": 566.48256, + "y": 355.88406 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.5765573088295, - "y": 351.8840629782873 + "x": 563.57656, + "y": 351.88406 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.5765573088295, - "y": 346.94006297828736 + "x": 563.57656, + "y": 346.94006 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.4825573088294, - "y": 342.94006297828736 + "x": 566.48256, + "y": 342.94006 }, { "body": null, "index": 7, "isInternal": false, - "x": 571.1845573088294, - "y": 341.41206297828734 + "x": 571.18456, + "y": 341.41206 }, { "body": null, "index": 8, "isInternal": false, - "x": 575.8865573088294, - "y": 342.94006297828736 + "x": 575.88656, + "y": 342.94006 }, { "body": null, "index": 9, "isInternal": false, - "x": 578.7925573088294, - "y": 346.94006297828736 + "x": 578.79256, + "y": 346.94006 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4483 }, @@ -40865,11 +40865,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -40891,7 +40891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3556883460754574, + "speed": 2.35569, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40921,20 +40921,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -40949,12 +40949,12 @@ } }, { - "x": 599.0873160490164, - "y": 357.4625039233222 + "x": 599.08732, + "y": 357.4625 }, { - "x": 583.8713160490165, - "y": 341.4625039233222 + "x": 583.87132, + "y": 341.4625 }, { "category": 1, @@ -40971,16 +40971,16 @@ "y": 0 }, { - "x": 591.4793160490161, - "y": 349.46250392332234 + "x": 591.47932, + "y": 349.4625 }, { "x": 0, "y": 0 }, { - "x": 591.6041431252675, - "y": 347.29681065565944 + "x": 591.60414, + "y": 347.29681 }, { "endCol": 12, @@ -41003,8 +41003,8 @@ "yScale": 1 }, { - "x": -0.121605960112106, - "y": 1.931067353662968 + "x": -0.12161, + "y": 1.93107 }, [ { @@ -41042,78 +41042,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.0873160490164, - "y": 351.93450392332215 + "x": 599.08732, + "y": 351.9345 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.1813160490165, - "y": 355.93450392332215 + "x": 596.18132, + "y": 355.9345 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.4793160490165, - "y": 357.4625039233222 + "x": 591.47932, + "y": 357.4625 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.7773160490165, - "y": 355.93450392332215 + "x": 586.77732, + "y": 355.9345 }, { "body": null, "index": 4, "isInternal": false, - "x": 583.8713160490165, - "y": 351.93450392332215 + "x": 583.87132, + "y": 351.9345 }, { "body": null, "index": 5, "isInternal": false, - "x": 583.8713160490165, - "y": 346.9905039233222 + "x": 583.87132, + "y": 346.9905 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.7773160490165, - "y": 342.9905039233222 + "x": 586.77732, + "y": 342.9905 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.4793160490165, - "y": 341.4625039233222 + "x": 591.47932, + "y": 341.4625 }, { "body": null, "index": 8, "isInternal": false, - "x": 596.1813160490165, - "y": 342.9905039233222 + "x": 596.18132, + "y": 342.9905 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.0873160490164, - "y": 346.9905039233222 + "x": 599.08732, + "y": 346.9905 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4514 }, @@ -41142,11 +41142,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -41168,7 +41168,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0958105139380923, + "speed": 3.09581, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41198,20 +41198,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -41226,12 +41226,12 @@ } }, { - "x": 215.57079384929273, - "y": 381.2369845236148 + "x": 215.57079, + "y": 381.23698 }, { - "x": 200.35479384929272, - "y": 365.2369845236148 + "x": 200.35479, + "y": 365.23698 }, { "category": 1, @@ -41248,16 +41248,16 @@ "y": 0 }, { - "x": 207.9627938492928, - "y": 373.2369845236149 + "x": 207.96279, + "y": 373.23698 }, { "x": 0, "y": 0 }, { - "x": 207.82138018166663, - "y": 370.24143040732224 + "x": 207.82138, + "y": 370.24143 }, { "endCol": 4, @@ -41280,8 +41280,8 @@ "yScale": 1 }, { - "x": 0.14021611102867837, - "y": 2.6219920544078263 + "x": 0.14022, + "y": 2.62199 }, [ { @@ -41319,78 +41319,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.57079384929273, - "y": 375.7089845236148 + "x": 215.57079, + "y": 375.70898 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.66479384929272, - "y": 379.7089845236148 + "x": 212.66479, + "y": 379.70898 }, { "body": null, "index": 2, "isInternal": false, - "x": 207.96279384929272, - "y": 381.2369845236148 + "x": 207.96279, + "y": 381.23698 }, { "body": null, "index": 3, "isInternal": false, - "x": 203.26079384929272, - "y": 379.7089845236148 + "x": 203.26079, + "y": 379.70898 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.35479384929272, - "y": 375.7089845236148 + "x": 200.35479, + "y": 375.70898 }, { "body": null, "index": 5, "isInternal": false, - "x": 200.35479384929272, - "y": 370.7649845236148 + "x": 200.35479, + "y": 370.76498 }, { "body": null, "index": 6, "isInternal": false, - "x": 203.26079384929272, - "y": 366.7649845236148 + "x": 203.26079, + "y": 366.76498 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.96279384929272, - "y": 365.2369845236148 + "x": 207.96279, + "y": 365.23698 }, { "body": null, "index": 8, "isInternal": false, - "x": 212.66479384929272, - "y": 366.7649845236148 + "x": 212.66479, + "y": 366.76498 }, { "body": null, "index": 9, "isInternal": false, - "x": 215.57079384929273, - "y": 370.7649845236148 + "x": 215.57079, + "y": 370.76498 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4545 }, @@ -41419,11 +41419,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -41445,7 +41445,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0150447575307946, + "speed": 3.01504, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41475,20 +41475,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -41503,12 +41503,12 @@ } }, { - "x": 235.92161799340394, - "y": 381.67435695521897 + "x": 235.92162, + "y": 381.67436 }, { - "x": 220.70561799340393, - "y": 365.67435695521897 + "x": 220.70562, + "y": 365.67436 }, { "category": 1, @@ -41525,16 +41525,16 @@ "y": 0 }, { - "x": 228.31361799340405, - "y": 373.67435695521914 + "x": 228.31362, + "y": 373.67436 }, { "x": 0, "y": 0 }, { - "x": 228.11657618562, - "y": 370.92384952182323 + "x": 228.11658, + "y": 370.92385 }, { "endCol": 4, @@ -41557,8 +41557,8 @@ "yScale": 1 }, { - "x": 0.2005298416375183, - "y": 2.4712551656421624 + "x": 0.20053, + "y": 2.47126 }, [ { @@ -41596,78 +41596,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.92161799340394, - "y": 376.14635695521895 + "x": 235.92162, + "y": 376.14636 }, { "body": null, "index": 1, "isInternal": false, - "x": 233.01561799340394, - "y": 380.14635695521895 + "x": 233.01562, + "y": 380.14636 }, { "body": null, "index": 2, "isInternal": false, - "x": 228.31361799340394, - "y": 381.67435695521897 + "x": 228.31362, + "y": 381.67436 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.61161799340394, - "y": 380.14635695521895 + "x": 223.61162, + "y": 380.14636 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.70561799340393, - "y": 376.14635695521895 + "x": 220.70562, + "y": 376.14636 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.70561799340393, - "y": 371.202356955219 + "x": 220.70562, + "y": 371.20236 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.61161799340394, - "y": 367.202356955219 + "x": 223.61162, + "y": 367.20236 }, { "body": null, "index": 7, "isInternal": false, - "x": 228.31361799340394, - "y": 365.67435695521897 + "x": 228.31362, + "y": 365.67436 }, { "body": null, "index": 8, "isInternal": false, - "x": 233.01561799340394, - "y": 367.202356955219 + "x": 233.01562, + "y": 367.20236 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.92161799340394, - "y": 371.202356955219 + "x": 235.92162, + "y": 371.20236 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4576 }, @@ -41696,11 +41696,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -41722,7 +41722,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.5054837479197114, + "speed": 2.50548, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41752,20 +41752,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -41780,12 +41780,12 @@ } }, { - "x": 256.0362014984548, - "y": 377.51554722059996 + "x": 256.0362, + "y": 377.51555 }, { - "x": 240.82020149845476, - "y": 361.51554722059996 + "x": 240.8202, + "y": 361.51555 }, { "category": 1, @@ -41802,16 +41802,16 @@ "y": 0 }, { - "x": 248.4282014984547, - "y": 369.51554722059996 + "x": 248.4282, + "y": 369.51555 }, { "x": 0, "y": 0 }, { - "x": 248.24982346483495, - "y": 367.3848454018351 + "x": 248.24982, + "y": 367.38485 }, { "endCol": 5, @@ -41834,8 +41834,8 @@ "yScale": 1 }, { - "x": 0.17911771873710336, - "y": 2.118066764103162 + "x": 0.17912, + "y": 2.11807 }, [ { @@ -41873,78 +41873,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 256.0362014984548, - "y": 371.98754722059994 + "x": 256.0362, + "y": 371.98755 }, { "body": null, "index": 1, "isInternal": false, - "x": 253.13020149845477, - "y": 375.98754722059994 + "x": 253.1302, + "y": 375.98755 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.42820149845477, - "y": 377.51554722059996 + "x": 248.4282, + "y": 377.51555 }, { "body": null, "index": 3, "isInternal": false, - "x": 243.72620149845477, - "y": 375.98754722059994 + "x": 243.7262, + "y": 375.98755 }, { "body": null, "index": 4, "isInternal": false, - "x": 240.82020149845476, - "y": 371.98754722059994 + "x": 240.8202, + "y": 371.98755 }, { "body": null, "index": 5, "isInternal": false, - "x": 240.82020149845476, - "y": 367.0435472206 + "x": 240.8202, + "y": 367.04355 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.72620149845477, - "y": 363.0435472206 + "x": 243.7262, + "y": 363.04355 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.42820149845477, - "y": 361.51554722059996 + "x": 248.4282, + "y": 361.51555 }, { "body": null, "index": 8, "isInternal": false, - "x": 253.13020149845477, - "y": 363.0435472206 + "x": 253.1302, + "y": 363.04355 }, { "body": null, "index": 9, "isInternal": false, - "x": 256.0362014984548, - "y": 367.0435472206 + "x": 256.0362, + "y": 367.04355 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4607 }, @@ -41973,11 +41973,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -41999,7 +41999,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6949989639801557, + "speed": 1.695, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42029,20 +42029,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -42057,12 +42057,12 @@ } }, { - "x": 276.3140050734476, - "y": 373.99986372608885 + "x": 276.31401, + "y": 373.99986 }, { - "x": 261.0980050734476, - "y": 357.99986372608885 + "x": 261.09801, + "y": 357.99986 }, { "category": 1, @@ -42079,16 +42079,16 @@ "y": 0 }, { - "x": 268.7060050734476, - "y": 365.99986372608873 + "x": 268.70601, + "y": 365.99986 }, { "x": 0, "y": 0 }, { - "x": 268.594823646743, - "y": 364.49756427416565 + "x": 268.59482, + "y": 364.49756 }, { "endCol": 5, @@ -42111,8 +42111,8 @@ "yScale": 1 }, { - "x": 0.0922833037724331, - "y": 1.686929144319322 + "x": 0.09228, + "y": 1.68693 }, [ { @@ -42150,78 +42150,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 276.3140050734476, - "y": 368.4718637260888 + "x": 276.31401, + "y": 368.47186 }, { "body": null, "index": 1, "isInternal": false, - "x": 273.4080050734476, - "y": 372.4718637260888 + "x": 273.40801, + "y": 372.47186 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.7060050734476, - "y": 373.99986372608885 + "x": 268.70601, + "y": 373.99986 }, { "body": null, "index": 3, "isInternal": false, - "x": 264.0040050734476, - "y": 372.4718637260888 + "x": 264.00401, + "y": 372.47186 }, { "body": null, "index": 4, "isInternal": false, - "x": 261.0980050734476, - "y": 368.4718637260888 + "x": 261.09801, + "y": 368.47186 }, { "body": null, "index": 5, "isInternal": false, - "x": 261.0980050734476, - "y": 363.52786372608887 + "x": 261.09801, + "y": 363.52786 }, { "body": null, "index": 6, "isInternal": false, - "x": 264.0040050734476, - "y": 359.52786372608887 + "x": 264.00401, + "y": 359.52786 }, { "body": null, "index": 7, "isInternal": false, - "x": 268.7060050734476, - "y": 357.99986372608885 + "x": 268.70601, + "y": 357.99986 }, { "body": null, "index": 8, "isInternal": false, - "x": 273.4080050734476, - "y": 359.52786372608887 + "x": 273.40801, + "y": 359.52786 }, { "body": null, "index": 9, "isInternal": false, - "x": 276.3140050734476, - "y": 363.52786372608887 + "x": 276.31401, + "y": 363.52786 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4638 }, @@ -42250,11 +42250,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -42276,7 +42276,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6512297686260877, + "speed": 1.65123, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42306,20 +42306,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -42334,12 +42334,12 @@ } }, { - "x": 296.66883697612406, - "y": 371.99736859853306 + "x": 296.66884, + "y": 371.99737 }, { - "x": 281.45283697612405, - "y": 355.99736859853306 + "x": 281.45284, + "y": 355.99737 }, { "category": 1, @@ -42356,16 +42356,16 @@ "y": 0 }, { - "x": 289.0608369761241, - "y": 363.99736859853294 + "x": 289.06084, + "y": 363.99737 }, { "x": 0, "y": 0 }, { - "x": 288.9860525898899, - "y": 362.6078685086359 + "x": 288.98605, + "y": 362.60787 }, { "endCol": 6, @@ -42388,8 +42388,8 @@ "yScale": 1 }, { - "x": 0.049576432987009866, - "y": 1.6187686230369422 + "x": 0.04958, + "y": 1.61877 }, [ { @@ -42427,78 +42427,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.66883697612406, - "y": 366.46936859853304 + "x": 296.66884, + "y": 366.46937 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.76283697612405, - "y": 370.46936859853304 + "x": 293.76284, + "y": 370.46937 }, { "body": null, "index": 2, "isInternal": false, - "x": 289.06083697612405, - "y": 371.99736859853306 + "x": 289.06084, + "y": 371.99737 }, { "body": null, "index": 3, "isInternal": false, - "x": 284.35883697612405, - "y": 370.46936859853304 + "x": 284.35884, + "y": 370.46937 }, { "body": null, "index": 4, "isInternal": false, - "x": 281.45283697612405, - "y": 366.46936859853304 + "x": 281.45284, + "y": 366.46937 }, { "body": null, "index": 5, "isInternal": false, - "x": 281.45283697612405, - "y": 361.5253685985331 + "x": 281.45284, + "y": 361.52537 }, { "body": null, "index": 6, "isInternal": false, - "x": 284.35883697612405, - "y": 357.5253685985331 + "x": 284.35884, + "y": 357.52537 }, { "body": null, "index": 7, "isInternal": false, - "x": 289.06083697612405, - "y": 355.99736859853306 + "x": 289.06084, + "y": 355.99737 }, { "body": null, "index": 8, "isInternal": false, - "x": 293.76283697612405, - "y": 357.5253685985331 + "x": 293.76284, + "y": 357.52537 }, { "body": null, "index": 9, "isInternal": false, - "x": 296.66883697612406, - "y": 361.5253685985331 + "x": 296.66884, + "y": 361.52537 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4669 }, @@ -42527,11 +42527,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -42553,7 +42553,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.0439156055166032, + "speed": 2.04392, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42583,20 +42583,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -42611,12 +42611,12 @@ } }, { - "x": 316.8318852553249, - "y": 370.46246169537034 + "x": 316.83189, + "y": 370.46246 }, { - "x": 301.6158852553249, - "y": 354.46246169537034 + "x": 301.61589, + "y": 354.46246 }, { "category": 1, @@ -42633,16 +42633,16 @@ "y": 0 }, { - "x": 309.2238852553249, - "y": 362.4624616953706 + "x": 309.22389, + "y": 362.46246 }, { "x": 0, "y": 0 }, { - "x": 309.1492858189696, - "y": 360.3068218131552 + "x": 309.14929, + "y": 360.30682 }, { "endCol": 6, @@ -42665,8 +42665,8 @@ "yScale": 1 }, { - "x": 0.08042836782260565, - "y": 2.080137448373023 + "x": 0.08043, + "y": 2.08014 }, [ { @@ -42704,78 +42704,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 316.8318852553249, - "y": 364.9344616953703 + "x": 316.83189, + "y": 364.93446 }, { "body": null, "index": 1, "isInternal": false, - "x": 313.9258852553249, - "y": 368.9344616953703 + "x": 313.92589, + "y": 368.93446 }, { "body": null, "index": 2, "isInternal": false, - "x": 309.2238852553249, - "y": 370.46246169537034 + "x": 309.22389, + "y": 370.46246 }, { "body": null, "index": 3, "isInternal": false, - "x": 304.5218852553249, - "y": 368.9344616953703 + "x": 304.52189, + "y": 368.93446 }, { "body": null, "index": 4, "isInternal": false, - "x": 301.6158852553249, - "y": 364.9344616953703 + "x": 301.61589, + "y": 364.93446 }, { "body": null, "index": 5, "isInternal": false, - "x": 301.6158852553249, - "y": 359.99046169537036 + "x": 301.61589, + "y": 359.99046 }, { "body": null, "index": 6, "isInternal": false, - "x": 304.5218852553249, - "y": 355.99046169537036 + "x": 304.52189, + "y": 355.99046 }, { "body": null, "index": 7, "isInternal": false, - "x": 309.2238852553249, - "y": 354.46246169537034 + "x": 309.22389, + "y": 354.46246 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.9258852553249, - "y": 355.99046169537036 + "x": 313.92589, + "y": 355.99046 }, { "body": null, "index": 9, "isInternal": false, - "x": 316.8318852553249, - "y": 359.99046169537036 + "x": 316.83189, + "y": 359.99046 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4700 }, @@ -42804,11 +42804,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -42830,7 +42830,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3099397709316416, + "speed": 2.30994, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42860,20 +42860,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -42888,12 +42888,12 @@ } }, { - "x": 336.40159020252446, - "y": 375.6193463754165 + "x": 336.40159, + "y": 375.61935 }, { - "x": 321.18559020252445, - "y": 359.6193463754165 + "x": 321.18559, + "y": 359.61935 }, { "category": 1, @@ -42910,16 +42910,16 @@ "y": 0 }, { - "x": 328.7935902025247, - "y": 367.6193463754162 + "x": 328.79359, + "y": 367.61935 }, { "x": 0, "y": 0 }, { - "x": 328.7877429791017, - "y": 365.40767553922535 + "x": 328.78774, + "y": 365.40768 }, { "endCol": 7, @@ -42942,8 +42942,8 @@ "yScale": 1 }, { - "x": 0.011665422965450034, - "y": 2.1118145750660915 + "x": 0.01167, + "y": 2.11181 }, [ { @@ -42981,78 +42981,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.40159020252446, - "y": 370.0913463754165 + "x": 336.40159, + "y": 370.09135 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.49559020252445, - "y": 374.0913463754165 + "x": 333.49559, + "y": 374.09135 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.79359020252446, - "y": 375.6193463754165 + "x": 328.79359, + "y": 375.61935 }, { "body": null, "index": 3, "isInternal": false, - "x": 324.09159020252446, - "y": 374.0913463754165 + "x": 324.09159, + "y": 374.09135 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.18559020252445, - "y": 370.0913463754165 + "x": 321.18559, + "y": 370.09135 }, { "body": null, "index": 5, "isInternal": false, - "x": 321.18559020252445, - "y": 365.14734637541653 + "x": 321.18559, + "y": 365.14735 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.09159020252446, - "y": 361.14734637541653 + "x": 324.09159, + "y": 361.14735 }, { "body": null, "index": 7, "isInternal": false, - "x": 328.79359020252446, - "y": 359.6193463754165 + "x": 328.79359, + "y": 359.61935 }, { "body": null, "index": 8, "isInternal": false, - "x": 333.49559020252445, - "y": 361.14734637541653 + "x": 333.49559, + "y": 361.14735 }, { "body": null, "index": 9, "isInternal": false, - "x": 336.40159020252446, - "y": 365.14734637541653 + "x": 336.40159, + "y": 365.14735 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4731 }, @@ -43081,11 +43081,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -43107,7 +43107,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6983102753634602, + "speed": 2.69831, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43137,20 +43137,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -43165,12 +43165,12 @@ } }, { - "x": 356.6547254156498, - "y": 377.1115531170675 + "x": 356.65473, + "y": 377.11155 }, { - "x": 341.4387254156498, - "y": 361.1115531170675 + "x": 341.43873, + "y": 361.11155 }, { "category": 1, @@ -43187,16 +43187,16 @@ "y": 0 }, { - "x": 349.04672541565, - "y": 369.1115531170677 + "x": 349.04673, + "y": 369.11155 }, { "x": 0, "y": 0 }, { - "x": 349.10426348056825, - "y": 366.49782675625113 + "x": 349.10426, + "y": 366.49783 }, { "endCol": 7, @@ -43219,8 +43219,8 @@ "yScale": 1 }, { - "x": -0.048149543540034756, - "y": 2.38997761466419 + "x": -0.04815, + "y": 2.38998 }, [ { @@ -43258,78 +43258,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.6547254156498, - "y": 371.5835531170675 + "x": 356.65473, + "y": 371.58355 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.7487254156498, - "y": 375.5835531170675 + "x": 353.74873, + "y": 375.58355 }, { "body": null, "index": 2, "isInternal": false, - "x": 349.0467254156498, - "y": 377.1115531170675 + "x": 349.04673, + "y": 377.11155 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.3447254156498, - "y": 375.5835531170675 + "x": 344.34473, + "y": 375.58355 }, { "body": null, "index": 4, "isInternal": false, - "x": 341.4387254156498, - "y": 371.5835531170675 + "x": 341.43873, + "y": 371.58355 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.4387254156498, - "y": 366.6395531170675 + "x": 341.43873, + "y": 366.63955 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.3447254156498, - "y": 362.6395531170675 + "x": 344.34473, + "y": 362.63955 }, { "body": null, "index": 7, "isInternal": false, - "x": 349.0467254156498, - "y": 361.1115531170675 + "x": 349.04673, + "y": 361.11155 }, { "body": null, "index": 8, "isInternal": false, - "x": 353.7487254156498, - "y": 362.6395531170675 + "x": 353.74873, + "y": 362.63955 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.6547254156498, - "y": 366.6395531170675 + "x": 356.65473, + "y": 366.63955 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4762 }, @@ -43358,11 +43358,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -43384,7 +43384,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.862155214308473, + "speed": 2.86216, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43414,20 +43414,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -43442,12 +43442,12 @@ } }, { - "x": 376.60601422645357, - "y": 381.05376584874966 + "x": 376.60601, + "y": 381.05377 }, { - "x": 361.39001422645356, - "y": 365.05376584874966 + "x": 361.39001, + "y": 365.05377 }, { "category": 1, @@ -43464,16 +43464,16 @@ "y": 0 }, { - "x": 368.9980142264534, - "y": 373.05376584874944 + "x": 368.99801, + "y": 373.05377 }, { "x": 0, "y": 0 }, { - "x": 369.04299653843435, - "y": 370.4440073879472 + "x": 369.043, + "y": 370.44401 }, { "endCol": 7, @@ -43496,8 +43496,8 @@ "yScale": 1 }, { - "x": -0.03896022290990686, - "y": 2.380843472562333 + "x": -0.03896, + "y": 2.38084 }, [ { @@ -43535,78 +43535,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.60601422645357, - "y": 375.52576584874964 + "x": 376.60601, + "y": 375.52577 }, { "body": null, "index": 1, "isInternal": false, - "x": 373.70001422645356, - "y": 379.52576584874964 + "x": 373.70001, + "y": 379.52577 }, { "body": null, "index": 2, "isInternal": false, - "x": 368.99801422645356, - "y": 381.05376584874966 + "x": 368.99801, + "y": 381.05377 }, { "body": null, "index": 3, "isInternal": false, - "x": 364.29601422645356, - "y": 379.52576584874964 + "x": 364.29601, + "y": 379.52577 }, { "body": null, "index": 4, "isInternal": false, - "x": 361.39001422645356, - "y": 375.52576584874964 + "x": 361.39001, + "y": 375.52577 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.39001422645356, - "y": 370.5817658487497 + "x": 361.39001, + "y": 370.58177 }, { "body": null, "index": 6, "isInternal": false, - "x": 364.29601422645356, - "y": 366.5817658487497 + "x": 364.29601, + "y": 366.58177 }, { "body": null, "index": 7, "isInternal": false, - "x": 368.99801422645356, - "y": 365.05376584874966 + "x": 368.99801, + "y": 365.05377 }, { "body": null, "index": 8, "isInternal": false, - "x": 373.70001422645356, - "y": 366.5817658487497 + "x": 373.70001, + "y": 366.58177 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.60601422645357, - "y": 370.5817658487497 + "x": 376.60601, + "y": 370.58177 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4793 }, @@ -43635,11 +43635,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -43661,7 +43661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.800571666517877, + "speed": 2.80057, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43691,20 +43691,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -43719,12 +43719,12 @@ } }, { - "x": 397.0078493343044, - "y": 380.228060811228 + "x": 397.00785, + "y": 380.22806 }, { - "x": 381.7918493343044, - "y": 364.228060811228 + "x": 381.79185, + "y": 364.22806 }, { "category": 1, @@ -43741,16 +43741,16 @@ "y": 0 }, { - "x": 389.3998493343042, - "y": 372.2280608112279 + "x": 389.39985, + "y": 372.22806 }, { "x": 0, "y": 0 }, { - "x": 389.40111668577026, - "y": 369.5302164402423 + "x": 389.40112, + "y": 369.53022 }, { "endCol": 8, @@ -43773,8 +43773,8 @@ "yScale": 1 }, { - "x": 0.0020774324041781256, - "y": 2.4277880165186048 + "x": 0.00208, + "y": 2.42779 }, [ { @@ -43812,78 +43812,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.0078493343044, - "y": 374.70006081122796 + "x": 397.00785, + "y": 374.70006 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.1018493343044, - "y": 378.70006081122796 + "x": 394.10185, + "y": 378.70006 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.3998493343044, - "y": 380.228060811228 + "x": 389.39985, + "y": 380.22806 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.6978493343044, - "y": 378.70006081122796 + "x": 384.69785, + "y": 378.70006 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.7918493343044, - "y": 374.70006081122796 + "x": 381.79185, + "y": 374.70006 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.7918493343044, - "y": 369.756060811228 + "x": 381.79185, + "y": 369.75606 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6978493343044, - "y": 365.756060811228 + "x": 384.69785, + "y": 365.75606 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.3998493343044, - "y": 364.228060811228 + "x": 389.39985, + "y": 364.22806 }, { "body": null, "index": 8, "isInternal": false, - "x": 394.1018493343044, - "y": 365.756060811228 + "x": 394.10185, + "y": 365.75606 }, { "body": null, "index": 9, "isInternal": false, - "x": 397.0078493343044, - "y": 369.756060811228 + "x": 397.00785, + "y": 369.75606 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4824 }, @@ -43912,11 +43912,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -43938,7 +43938,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6946134305593654, + "speed": 2.69461, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43968,20 +43968,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -43996,12 +43996,12 @@ } }, { - "x": 417.4977606913654, - "y": 379.82119621836 + "x": 417.49776, + "y": 379.8212 }, { - "x": 402.2817606913654, - "y": 363.82119621836 + "x": 402.28176, + "y": 363.8212 }, { "category": 1, @@ -44018,16 +44018,16 @@ "y": 0 }, { - "x": 409.8897606913656, - "y": 371.82119621836 + "x": 409.88976, + "y": 371.8212 }, { "x": 0, "y": 0 }, { - "x": 409.82081703574175, - "y": 369.21877329199924 + "x": 409.82082, + "y": 369.21877 }, { "endCol": 8, @@ -44050,8 +44050,8 @@ "yScale": 1 }, { - "x": 0.06937315324552173, - "y": 2.360750219532804 + "x": 0.06937, + "y": 2.36075 }, [ { @@ -44089,78 +44089,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.4977606913654, - "y": 374.29319621836 + "x": 417.49776, + "y": 374.2932 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.5917606913654, - "y": 378.29319621836 + "x": 414.59176, + "y": 378.2932 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.8897606913654, - "y": 379.82119621836 + "x": 409.88976, + "y": 379.8212 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.1877606913654, - "y": 378.29319621836 + "x": 405.18776, + "y": 378.2932 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.2817606913654, - "y": 374.29319621836 + "x": 402.28176, + "y": 374.2932 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.2817606913654, - "y": 369.34919621836 + "x": 402.28176, + "y": 369.3492 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.1877606913654, - "y": 365.34919621836 + "x": 405.18776, + "y": 365.3492 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.8897606913654, - "y": 363.82119621836 + "x": 409.88976, + "y": 363.8212 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.5917606913654, - "y": 365.34919621836 + "x": 414.59176, + "y": 365.3492 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.4977606913654, - "y": 369.34919621836 + "x": 417.49776, + "y": 369.3492 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4855 }, @@ -44189,11 +44189,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -44215,7 +44215,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.5882939753379897, + "speed": 2.58829, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44245,20 +44245,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -44273,12 +44273,12 @@ } }, { - "x": 438.04382497328385, - "y": 379.43773013684796 + "x": 438.04382, + "y": 379.43773 }, { - "x": 422.82782497328384, - "y": 363.43773013684796 + "x": 422.82782, + "y": 363.43773 }, { "category": 1, @@ -44295,16 +44295,16 @@ "y": 0 }, { - "x": 430.43582497328384, - "y": 371.4377301368477 + "x": 430.43582, + "y": 371.43773 }, { "x": 0, "y": 0 }, { - "x": 430.293234768854, - "y": 368.9800549516444 + "x": 430.29323, + "y": 368.98005 }, { "endCol": 9, @@ -44327,8 +44327,8 @@ "yScale": 1 }, { - "x": 0.14146913181366472, - "y": 2.267015071677463 + "x": 0.14147, + "y": 2.26702 }, [ { @@ -44366,78 +44366,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 438.04382497328385, - "y": 373.90973013684794 + "x": 438.04382, + "y": 373.90973 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.13782497328384, - "y": 377.90973013684794 + "x": 435.13782, + "y": 377.90973 }, { "body": null, "index": 2, "isInternal": false, - "x": 430.43582497328384, - "y": 379.43773013684796 + "x": 430.43582, + "y": 379.43773 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.73382497328384, - "y": 377.90973013684794 + "x": 425.73382, + "y": 377.90973 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.82782497328384, - "y": 373.90973013684794 + "x": 422.82782, + "y": 373.90973 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.82782497328384, - "y": 368.965730136848 + "x": 422.82782, + "y": 368.96573 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.73382497328384, - "y": 364.965730136848 + "x": 425.73382, + "y": 364.96573 }, { "body": null, "index": 7, "isInternal": false, - "x": 430.43582497328384, - "y": 363.43773013684796 + "x": 430.43582, + "y": 363.43773 }, { "body": null, "index": 8, "isInternal": false, - "x": 435.13782497328384, - "y": 364.965730136848 + "x": 435.13782, + "y": 364.96573 }, { "body": null, "index": 9, "isInternal": false, - "x": 438.04382497328385, - "y": 368.965730136848 + "x": 438.04382, + "y": 368.96573 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4886 }, @@ -44466,11 +44466,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -44492,7 +44492,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1710685842328483, + "speed": 2.17107, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44522,20 +44522,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -44550,12 +44550,12 @@ } }, { - "x": 458.554480665184, - "y": 377.69525661134776 + "x": 458.55448, + "y": 377.69526 }, { - "x": 443.33848066518397, - "y": 361.69525661134776 + "x": 443.33848, + "y": 361.69526 }, { "category": 1, @@ -44572,16 +44572,16 @@ "y": 0 }, { - "x": 450.946480665184, - "y": 369.69525661134753 + "x": 450.94648, + "y": 369.69526 }, { "x": 0, "y": 0 }, { - "x": 450.78148779921685, - "y": 367.81420126598806 + "x": 450.78149, + "y": 367.8142 }, { "endCol": 9, @@ -44604,8 +44604,8 @@ "yScale": 1 }, { - "x": 0.1650429497272512, - "y": 1.8885600503289197 + "x": 0.16504, + "y": 1.88856 }, [ { @@ -44643,78 +44643,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 458.554480665184, - "y": 372.16725661134774 + "x": 458.55448, + "y": 372.16726 }, { "body": null, "index": 1, "isInternal": false, - "x": 455.64848066518397, - "y": 376.16725661134774 + "x": 455.64848, + "y": 376.16726 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.94648066518397, - "y": 377.69525661134776 + "x": 450.94648, + "y": 377.69526 }, { "body": null, "index": 3, "isInternal": false, - "x": 446.24448066518397, - "y": 376.16725661134774 + "x": 446.24448, + "y": 376.16726 }, { "body": null, "index": 4, "isInternal": false, - "x": 443.33848066518397, - "y": 372.16725661134774 + "x": 443.33848, + "y": 372.16726 }, { "body": null, "index": 5, "isInternal": false, - "x": 443.33848066518397, - "y": 367.2232566113478 + "x": 443.33848, + "y": 367.22326 }, { "body": null, "index": 6, "isInternal": false, - "x": 446.24448066518397, - "y": 363.2232566113478 + "x": 446.24448, + "y": 363.22326 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.94648066518397, - "y": 361.69525661134776 + "x": 450.94648, + "y": 361.69526 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.64848066518397, - "y": 363.2232566113478 + "x": 455.64848, + "y": 363.22326 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.554480665184, - "y": 367.2232566113478 + "x": 458.55448, + "y": 367.22326 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4917 }, @@ -44743,11 +44743,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -44769,7 +44769,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1714250524203402, + "speed": 1.17143, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44799,20 +44799,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -44827,12 +44827,12 @@ } }, { - "x": 477.4843616686896, - "y": 369.5943450817508 + "x": 477.48436, + "y": 369.59435 }, { - "x": 462.2683616686896, - "y": 353.5943450817508 + "x": 462.26836, + "y": 353.59435 }, { "category": 1, @@ -44849,16 +44849,16 @@ "y": 0 }, { - "x": 469.8763616686894, - "y": 361.59434508175093 + "x": 469.87636, + "y": 361.59435 }, { "x": 0, "y": 0 }, { - "x": 469.96590303890923, - "y": 360.5025538228372 + "x": 469.9659, + "y": 360.50255 }, { "endCol": 9, @@ -44881,8 +44881,8 @@ "yScale": 1 }, { - "x": -0.09705330591157235, - "y": 1.4410276824024209 + "x": -0.09705, + "y": 1.44103 }, [ { @@ -44920,78 +44920,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 477.4843616686896, - "y": 364.0663450817508 + "x": 477.48436, + "y": 364.06635 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.5783616686896, - "y": 368.0663450817508 + "x": 474.57836, + "y": 368.06635 }, { "body": null, "index": 2, "isInternal": false, - "x": 469.8763616686896, - "y": 369.5943450817508 + "x": 469.87636, + "y": 369.59435 }, { "body": null, "index": 3, "isInternal": false, - "x": 465.1743616686896, - "y": 368.0663450817508 + "x": 465.17436, + "y": 368.06635 }, { "body": null, "index": 4, "isInternal": false, - "x": 462.2683616686896, - "y": 364.0663450817508 + "x": 462.26836, + "y": 364.06635 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.2683616686896, - "y": 359.12234508175084 + "x": 462.26836, + "y": 359.12235 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.1743616686896, - "y": 355.12234508175084 + "x": 465.17436, + "y": 355.12235 }, { "body": null, "index": 7, "isInternal": false, - "x": 469.8763616686896, - "y": 353.5943450817508 + "x": 469.87636, + "y": 353.59435 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.5783616686896, - "y": 355.12234508175084 + "x": 474.57836, + "y": 355.12235 }, { "body": null, "index": 9, "isInternal": false, - "x": 477.4843616686896, - "y": 359.12234508175084 + "x": 477.48436, + "y": 359.12235 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4948 }, @@ -45020,11 +45020,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -45046,7 +45046,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7896799339578858, + "speed": 0.78968, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45076,20 +45076,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -45104,12 +45104,12 @@ } }, { - "x": 498.0680527296251, - "y": 368.119376578049 + "x": 498.06805, + "y": 368.11938 }, { - "x": 482.8520527296251, - "y": 352.119376578049 + "x": 482.85205, + "y": 352.11938 }, { "category": 1, @@ -45126,16 +45126,16 @@ "y": 0 }, { - "x": 490.46005272962515, - "y": 360.11937657804884 + "x": 490.46005, + "y": 360.11938 }, { "x": 0, "y": 0 }, { - "x": 490.4804341546864, - "y": 359.48854652992026 + "x": 490.48043, + "y": 359.48855 }, { "endCol": 10, @@ -45158,8 +45158,8 @@ "yScale": 1 }, { - "x": -0.02927632444294659, - "y": 1.1217717042755453 + "x": -0.02928, + "y": 1.12177 }, [ { @@ -45197,78 +45197,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 498.0680527296251, - "y": 362.591376578049 + "x": 498.06805, + "y": 362.59138 }, { "body": null, "index": 1, "isInternal": false, - "x": 495.1620527296251, - "y": 366.591376578049 + "x": 495.16205, + "y": 366.59138 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.4600527296251, - "y": 368.119376578049 + "x": 490.46005, + "y": 368.11938 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.7580527296251, - "y": 366.591376578049 + "x": 485.75805, + "y": 366.59138 }, { "body": null, "index": 4, "isInternal": false, - "x": 482.8520527296251, - "y": 362.591376578049 + "x": 482.85205, + "y": 362.59138 }, { "body": null, "index": 5, "isInternal": false, - "x": 482.8520527296251, - "y": 357.64737657804903 + "x": 482.85205, + "y": 357.64738 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.7580527296251, - "y": 353.64737657804903 + "x": 485.75805, + "y": 353.64738 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.4600527296251, - "y": 352.119376578049 + "x": 490.46005, + "y": 352.11938 }, { "body": null, "index": 8, "isInternal": false, - "x": 495.1620527296251, - "y": 353.64737657804903 + "x": 495.16205, + "y": 353.64738 }, { "body": null, "index": 9, "isInternal": false, - "x": 498.0680527296251, - "y": 357.64737657804903 + "x": 498.06805, + "y": 357.64738 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 4979 }, @@ -45297,11 +45297,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -45323,7 +45323,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7824020484901274, + "speed": 0.7824, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45353,20 +45353,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -45381,12 +45381,12 @@ } }, { - "x": 518.7012499321993, - "y": 368.07706419416 + "x": 518.70125, + "y": 368.07706 }, { - "x": 503.4852499321991, - "y": 352.07706419416 + "x": 503.48525, + "y": 352.07706 }, { "category": 1, @@ -45403,16 +45403,16 @@ "y": 0 }, { - "x": 511.093249932199, - "y": 360.0770641941599 + "x": 511.09325, + "y": 360.07706 }, { "x": 0, "y": 0 }, { - "x": 511.02126313118254, - "y": 359.4769051436608 + "x": 511.02126, + "y": 359.47691 }, { "endCol": 10, @@ -45435,8 +45435,8 @@ "yScale": 1 }, { - "x": 0.06754660471875695, - "y": 1.107195728446527 + "x": 0.06755, + "y": 1.1072 }, [ { @@ -45474,78 +45474,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.7012499321993, - "y": 362.54906419416 + "x": 518.70125, + "y": 362.54906 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.7952499321993, - "y": 366.54906419416 + "x": 515.79525, + "y": 366.54906 }, { "body": null, "index": 2, "isInternal": false, - "x": 511.0932499321991, - "y": 368.07706419416 + "x": 511.09325, + "y": 368.07706 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.3912499321991, - "y": 366.54906419416 + "x": 506.39125, + "y": 366.54906 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.4852499321991, - "y": 362.54906419416 + "x": 503.48525, + "y": 362.54906 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.4852499321991, - "y": 357.60506419416004 + "x": 503.48525, + "y": 357.60506 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.3912499321991, - "y": 353.60506419416004 + "x": 506.39125, + "y": 353.60506 }, { "body": null, "index": 7, "isInternal": false, - "x": 511.0932499321991, - "y": 352.07706419416 + "x": 511.09325, + "y": 352.07706 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.7952499321993, - "y": 353.60506419416004 + "x": 515.79525, + "y": 353.60506 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.7012499321993, - "y": 357.60506419416004 + "x": 518.70125, + "y": 357.60506 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5010 }, @@ -45574,11 +45574,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -45600,7 +45600,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1196827746865188, + "speed": 1.11968, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45630,20 +45630,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -45658,12 +45658,12 @@ } }, { - "x": 539.2561597637359, - "y": 369.3986843383829 + "x": 539.25616, + "y": 369.39868 }, { - "x": 524.040159763736, - "y": 353.3986843383829 + "x": 524.04016, + "y": 353.39868 }, { "category": 1, @@ -45680,16 +45680,16 @@ "y": 0 }, { - "x": 531.6481597637362, - "y": 361.39868433838285 + "x": 531.64816, + "y": 361.39868 }, { "x": 0, "y": 0 }, { - "x": 531.5462224883951, - "y": 360.42741318026043 + "x": 531.54622, + "y": 360.42741 }, { "endCol": 11, @@ -45712,8 +45712,8 @@ "yScale": 1 }, { - "x": 0.10169767682566544, - "y": 1.3791675257209022 + "x": 0.1017, + "y": 1.37917 }, [ { @@ -45751,78 +45751,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 539.2561597637359, - "y": 363.8706843383829 + "x": 539.25616, + "y": 363.87068 }, { "body": null, "index": 1, "isInternal": false, - "x": 536.350159763736, - "y": 367.8706843383829 + "x": 536.35016, + "y": 367.87068 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.648159763736, - "y": 369.3986843383829 + "x": 531.64816, + "y": 369.39868 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.946159763736, - "y": 367.8706843383829 + "x": 526.94616, + "y": 367.87068 }, { "body": null, "index": 4, "isInternal": false, - "x": 524.040159763736, - "y": 363.8706843383829 + "x": 524.04016, + "y": 363.87068 }, { "body": null, "index": 5, "isInternal": false, - "x": 524.040159763736, - "y": 358.9266843383829 + "x": 524.04016, + "y": 358.92668 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.946159763736, - "y": 354.9266843383829 + "x": 526.94616, + "y": 354.92668 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.648159763736, - "y": 353.3986843383829 + "x": 531.64816, + "y": 353.39868 }, { "body": null, "index": 8, "isInternal": false, - "x": 536.350159763736, - "y": 354.9266843383829 + "x": 536.35016, + "y": 354.92668 }, { "body": null, "index": 9, "isInternal": false, - "x": 539.2561597637359, - "y": 358.9266843383829 + "x": 539.25616, + "y": 358.92668 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5041 }, @@ -45851,11 +45851,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -45877,7 +45877,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1521423569105473, + "speed": 2.15214, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45907,20 +45907,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -45935,12 +45935,12 @@ } }, { - "x": 558.0780143332044, - "y": 377.62303499570436 + "x": 558.07801, + "y": 377.62303 }, { - "x": 542.8620143332045, - "y": 361.62303499570436 + "x": 542.86201, + "y": 361.62303 }, { "category": 1, @@ -45957,16 +45957,16 @@ "y": 0 }, { - "x": 550.4700143332046, - "y": 369.62303499570453 + "x": 550.47001, + "y": 369.62303 }, { "x": 0, "y": 0 }, { - "x": 550.697701016071, - "y": 367.7682858114196 + "x": 550.6977, + "y": 367.76829 }, { "endCol": 11, @@ -45989,8 +45989,8 @@ "yScale": 1 }, { - "x": -0.2281690905437017, - "y": 1.8722431901349523 + "x": -0.22817, + "y": 1.87224 }, [ { @@ -46028,78 +46028,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.0780143332044, - "y": 372.09503499570434 + "x": 558.07801, + "y": 372.09503 }, { "body": null, "index": 1, "isInternal": false, - "x": 555.1720143332044, - "y": 376.09503499570434 + "x": 555.17201, + "y": 376.09503 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.4700143332044, - "y": 377.62303499570436 + "x": 550.47001, + "y": 377.62303 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.7680143332044, - "y": 376.09503499570434 + "x": 545.76801, + "y": 376.09503 }, { "body": null, "index": 4, "isInternal": false, - "x": 542.8620143332045, - "y": 372.09503499570434 + "x": 542.86201, + "y": 372.09503 }, { "body": null, "index": 5, "isInternal": false, - "x": 542.8620143332045, - "y": 367.1510349957044 + "x": 542.86201, + "y": 367.15103 }, { "body": null, "index": 6, "isInternal": false, - "x": 545.7680143332044, - "y": 363.1510349957044 + "x": 545.76801, + "y": 363.15103 }, { "body": null, "index": 7, "isInternal": false, - "x": 550.4700143332044, - "y": 361.62303499570436 + "x": 550.47001, + "y": 361.62303 }, { "body": null, "index": 8, "isInternal": false, - "x": 555.1720143332044, - "y": 363.1510349957044 + "x": 555.17201, + "y": 363.15103 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.0780143332044, - "y": 367.1510349957044 + "x": 558.07801, + "y": 367.15103 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5072 }, @@ -46128,11 +46128,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -46154,7 +46154,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.52924151262341, + "speed": 2.52924, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46184,20 +46184,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -46212,12 +46212,12 @@ } }, { - "x": 578.463933868687, - "y": 379.22945765534536 + "x": 578.46393, + "y": 379.22946 }, { - "x": 563.2479338686871, - "y": 363.22945765534536 + "x": 563.24793, + "y": 363.22946 }, { "category": 1, @@ -46234,16 +46234,16 @@ "y": 0 }, { - "x": 570.8559338686866, - "y": 371.22945765534547 + "x": 570.85593, + "y": 371.22946 }, { "x": 0, "y": 0 }, { - "x": 571.0957634776147, - "y": 368.8747164659061 + "x": 571.09576, + "y": 368.87472 }, { "endCol": 12, @@ -46266,8 +46266,8 @@ "yScale": 1 }, { - "x": -0.23603662327889197, - "y": 2.209300673325913 + "x": -0.23604, + "y": 2.2093 }, [ { @@ -46305,78 +46305,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 578.463933868687, - "y": 373.70145765534534 + "x": 578.46393, + "y": 373.70146 }, { "body": null, "index": 1, "isInternal": false, - "x": 575.5579338686871, - "y": 377.70145765534534 + "x": 575.55793, + "y": 377.70146 }, { "body": null, "index": 2, "isInternal": false, - "x": 570.8559338686871, - "y": 379.22945765534536 + "x": 570.85593, + "y": 379.22946 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.1539338686871, - "y": 377.70145765534534 + "x": 566.15393, + "y": 377.70146 }, { "body": null, "index": 4, "isInternal": false, - "x": 563.2479338686871, - "y": 373.70145765534534 + "x": 563.24793, + "y": 373.70146 }, { "body": null, "index": 5, "isInternal": false, - "x": 563.2479338686871, - "y": 368.7574576553454 + "x": 563.24793, + "y": 368.75746 }, { "body": null, "index": 6, "isInternal": false, - "x": 566.1539338686871, - "y": 364.7574576553454 + "x": 566.15393, + "y": 364.75746 }, { "body": null, "index": 7, "isInternal": false, - "x": 570.8559338686871, - "y": 363.22945765534536 + "x": 570.85593, + "y": 363.22946 }, { "body": null, "index": 8, "isInternal": false, - "x": 575.5579338686871, - "y": 364.7574576553454 + "x": 575.55793, + "y": 364.75746 }, { "body": null, "index": 9, "isInternal": false, - "x": 578.463933868687, - "y": 368.7574576553454 + "x": 578.46393, + "y": 368.75746 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5103 }, @@ -46405,11 +46405,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -46431,7 +46431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.5542408175714066, + "speed": 2.55424, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46461,20 +46461,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -46489,12 +46489,12 @@ } }, { - "x": 598.7854184455546, - "y": 379.3241538713152 + "x": 598.78542, + "y": 379.32415 }, { - "x": 583.5694184455547, - "y": 363.3241538713152 + "x": 583.56942, + "y": 363.32415 }, { "category": 1, @@ -46511,16 +46511,16 @@ "y": 0 }, { - "x": 591.1774184455547, - "y": 371.32415387131505 + "x": 591.17742, + "y": 371.32415 }, { "x": 0, "y": 0 }, { - "x": 591.4067406116172, - "y": 368.92463181446385 + "x": 591.40674, + "y": 368.92463 }, { "endCol": 12, @@ -46543,8 +46543,8 @@ "yScale": 1 }, { - "x": -0.22536410362022252, - "y": 2.239771110890729 + "x": -0.22536, + "y": 2.23977 }, [ { @@ -46582,78 +46582,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 598.7854184455546, - "y": 373.7961538713152 + "x": 598.78542, + "y": 373.79615 }, { "body": null, "index": 1, "isInternal": false, - "x": 595.8794184455546, - "y": 377.7961538713152 + "x": 595.87942, + "y": 377.79615 }, { "body": null, "index": 2, "isInternal": false, - "x": 591.1774184455546, - "y": 379.3241538713152 + "x": 591.17742, + "y": 379.32415 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.4754184455546, - "y": 377.7961538713152 + "x": 586.47542, + "y": 377.79615 }, { "body": null, "index": 4, "isInternal": false, - "x": 583.5694184455547, - "y": 373.7961538713152 + "x": 583.56942, + "y": 373.79615 }, { "body": null, "index": 5, "isInternal": false, - "x": 583.5694184455547, - "y": 368.85215387131524 + "x": 583.56942, + "y": 368.85215 }, { "body": null, "index": 6, "isInternal": false, - "x": 586.4754184455546, - "y": 364.85215387131524 + "x": 586.47542, + "y": 364.85215 }, { "body": null, "index": 7, "isInternal": false, - "x": 591.1774184455546, - "y": 363.3241538713152 + "x": 591.17742, + "y": 363.32415 }, { "body": null, "index": 8, "isInternal": false, - "x": 595.8794184455546, - "y": 364.85215387131524 + "x": 595.87942, + "y": 364.85215 }, { "body": null, "index": 9, "isInternal": false, - "x": 598.7854184455546, - "y": 368.85215387131524 + "x": 598.78542, + "y": 368.85215 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5134 }, @@ -46682,11 +46682,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -46708,7 +46708,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.315899506877822, + "speed": 3.3159, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46738,20 +46738,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -46766,12 +46766,12 @@ } }, { - "x": 215.682449263187, - "y": 403.6519525848031 + "x": 215.68245, + "y": 403.65195 }, { - "x": 200.466449263187, - "y": 387.6519525848031 + "x": 200.46645, + "y": 387.65195 }, { "category": 1, @@ -46788,16 +46788,16 @@ "y": 0 }, { - "x": 208.07444926318686, - "y": 395.65195258480287 + "x": 208.07445, + "y": 395.65195 }, { "x": 0, "y": 0 }, { - "x": 207.9815607158302, - "y": 392.50280155515793 + "x": 207.98156, + "y": 392.5028 }, { "endCol": 4, @@ -46820,8 +46820,8 @@ "yScale": 1 }, { - "x": 0.052146770472177195, - "y": 2.8547612463907512 + "x": 0.05215, + "y": 2.85476 }, [ { @@ -46859,78 +46859,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.682449263187, - "y": 398.1239525848031 + "x": 215.68245, + "y": 398.12395 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.776449263187, - "y": 402.1239525848031 + "x": 212.77645, + "y": 402.12395 }, { "body": null, "index": 2, "isInternal": false, - "x": 208.074449263187, - "y": 403.6519525848031 + "x": 208.07445, + "y": 403.65195 }, { "body": null, "index": 3, "isInternal": false, - "x": 203.372449263187, - "y": 402.1239525848031 + "x": 203.37245, + "y": 402.12395 }, { "body": null, "index": 4, "isInternal": false, - "x": 200.466449263187, - "y": 398.1239525848031 + "x": 200.46645, + "y": 398.12395 }, { "body": null, "index": 5, "isInternal": false, - "x": 200.466449263187, - "y": 393.1799525848031 + "x": 200.46645, + "y": 393.17995 }, { "body": null, "index": 6, "isInternal": false, - "x": 203.372449263187, - "y": 389.1799525848031 + "x": 203.37245, + "y": 389.17995 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.074449263187, - "y": 387.6519525848031 + "x": 208.07445, + "y": 387.65195 }, { "body": null, "index": 8, "isInternal": false, - "x": 212.776449263187, - "y": 389.1799525848031 + "x": 212.77645, + "y": 389.17995 }, { "body": null, "index": 9, "isInternal": false, - "x": 215.682449263187, - "y": 393.1799525848031 + "x": 215.68245, + "y": 393.17995 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5165 }, @@ -46959,11 +46959,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -46985,7 +46985,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0036464499423365, + "speed": 3.00365, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47015,20 +47015,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -47043,12 +47043,12 @@ } }, { - "x": 235.66980399644166, - "y": 403.65175877391533 + "x": 235.6698, + "y": 403.65176 }, { - "x": 220.45380399644165, - "y": 387.65175877391533 + "x": 220.4538, + "y": 387.65176 }, { "category": 1, @@ -47065,16 +47065,16 @@ "y": 0 }, { - "x": 228.06180399644165, - "y": 395.65175877391533 + "x": 228.0618, + "y": 395.65176 }, { "x": 0, "y": 0 }, { - "x": 228.0690954480553, - "y": 392.8914873132608 + "x": 228.0691, + "y": 392.89149 }, { "endCol": 4, @@ -47097,8 +47097,8 @@ "yScale": 1 }, { - "x": -0.028224108868442954, - "y": 2.6189884733057056 + "x": -0.02822, + "y": 2.61899 }, [ { @@ -47136,78 +47136,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.66980399644166, - "y": 398.1237587739153 + "x": 235.6698, + "y": 398.12376 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.76380399644165, - "y": 402.1237587739153 + "x": 232.7638, + "y": 402.12376 }, { "body": null, "index": 2, "isInternal": false, - "x": 228.06180399644165, - "y": 403.65175877391533 + "x": 228.0618, + "y": 403.65176 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.35980399644166, - "y": 402.1237587739153 + "x": 223.3598, + "y": 402.12376 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.45380399644165, - "y": 398.1237587739153 + "x": 220.4538, + "y": 398.12376 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.45380399644165, - "y": 393.17975877391535 + "x": 220.4538, + "y": 393.17976 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.35980399644166, - "y": 389.17975877391535 + "x": 223.3598, + "y": 389.17976 }, { "body": null, "index": 7, "isInternal": false, - "x": 228.06180399644165, - "y": 387.65175877391533 + "x": 228.0618, + "y": 387.65176 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.76380399644165, - "y": 389.17975877391535 + "x": 232.7638, + "y": 389.17976 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.66980399644166, - "y": 393.17975877391535 + "x": 235.6698, + "y": 393.17976 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5196 }, @@ -47236,11 +47236,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -47262,7 +47262,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3493386930345546, + "speed": 2.34934, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47292,20 +47292,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -47320,12 +47320,12 @@ } }, { - "x": 254.77783754141217, - "y": 398.3242757236989 + "x": 254.77784, + "y": 398.32428 }, { - "x": 239.56183754141216, - "y": 382.3242757236989 + "x": 239.56184, + "y": 382.32428 }, { "category": 1, @@ -47342,16 +47342,16 @@ "y": 0 }, { - "x": 247.16983754141214, - "y": 390.3242757236989 + "x": 247.16984, + "y": 390.32428 }, { "x": 0, "y": 0 }, { - "x": 247.5238578371515, - "y": 388.4293558096939 + "x": 247.52386, + "y": 388.42936 }, { "endCol": 5, @@ -47374,8 +47374,8 @@ "yScale": 1 }, { - "x": -0.3251623419139946, - "y": 2.0882032037842464 + "x": -0.32516, + "y": 2.0882 }, [ { @@ -47413,78 +47413,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 254.77783754141217, - "y": 392.7962757236989 + "x": 254.77784, + "y": 392.79628 }, { "body": null, "index": 1, "isInternal": false, - "x": 251.87183754141216, - "y": 396.7962757236989 + "x": 251.87184, + "y": 396.79628 }, { "body": null, "index": 2, "isInternal": false, - "x": 247.16983754141216, - "y": 398.3242757236989 + "x": 247.16984, + "y": 398.32428 }, { "body": null, "index": 3, "isInternal": false, - "x": 242.46783754141217, - "y": 396.7962757236989 + "x": 242.46784, + "y": 396.79628 }, { "body": null, "index": 4, "isInternal": false, - "x": 239.56183754141216, - "y": 392.7962757236989 + "x": 239.56184, + "y": 392.79628 }, { "body": null, "index": 5, "isInternal": false, - "x": 239.56183754141216, - "y": 387.85227572369894 + "x": 239.56184, + "y": 387.85228 }, { "body": null, "index": 6, "isInternal": false, - "x": 242.46783754141217, - "y": 383.85227572369894 + "x": 242.46784, + "y": 383.85228 }, { "body": null, "index": 7, "isInternal": false, - "x": 247.16983754141216, - "y": 382.3242757236989 + "x": 247.16984, + "y": 382.32428 }, { "body": null, "index": 8, "isInternal": false, - "x": 251.87183754141216, - "y": 383.85227572369894 + "x": 251.87184, + "y": 383.85228 }, { "body": null, "index": 9, "isInternal": false, - "x": 254.77783754141217, - "y": 387.85227572369894 + "x": 254.77784, + "y": 387.85228 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5227 }, @@ -47513,11 +47513,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -47539,7 +47539,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8048124395491651, + "speed": 1.80481, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47569,20 +47569,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -47597,12 +47597,12 @@ } }, { - "x": 274.18288740443995, - "y": 394.08041548421073 + "x": 274.18289, + "y": 394.08042 }, { - "x": 258.96688740443994, - "y": 378.08041548421073 + "x": 258.96689, + "y": 378.08042 }, { "category": 1, @@ -47619,16 +47619,16 @@ "y": 0 }, { - "x": 266.57488740444, - "y": 386.08041548421085 + "x": 266.57489, + "y": 386.08042 }, { "x": 0, "y": 0 }, { - "x": 266.97982153286614, - "y": 384.53319752879975 + "x": 266.97982, + "y": 384.5332 }, { "endCol": 5, @@ -47651,8 +47651,8 @@ "yScale": 1 }, { - "x": -0.3554446408862191, - "y": 1.8036262333133664 + "x": -0.35544, + "y": 1.80363 }, [ { @@ -47690,78 +47690,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 274.18288740443995, - "y": 388.5524154842107 + "x": 274.18289, + "y": 388.55242 }, { "body": null, "index": 1, "isInternal": false, - "x": 271.27688740443995, - "y": 392.5524154842107 + "x": 271.27689, + "y": 392.55242 }, { "body": null, "index": 2, "isInternal": false, - "x": 266.57488740443995, - "y": 394.08041548421073 + "x": 266.57489, + "y": 394.08042 }, { "body": null, "index": 3, "isInternal": false, - "x": 261.87288740443995, - "y": 392.5524154842107 + "x": 261.87289, + "y": 392.55242 }, { "body": null, "index": 4, "isInternal": false, - "x": 258.96688740443994, - "y": 388.5524154842107 + "x": 258.96689, + "y": 388.55242 }, { "body": null, "index": 5, "isInternal": false, - "x": 258.96688740443994, - "y": 383.60841548421075 + "x": 258.96689, + "y": 383.60842 }, { "body": null, "index": 6, "isInternal": false, - "x": 261.87288740443995, - "y": 379.60841548421075 + "x": 261.87289, + "y": 379.60842 }, { "body": null, "index": 7, "isInternal": false, - "x": 266.57488740443995, - "y": 378.08041548421073 + "x": 266.57489, + "y": 378.08042 }, { "body": null, "index": 8, "isInternal": false, - "x": 271.27688740443995, - "y": 379.60841548421075 + "x": 271.27689, + "y": 379.60842 }, { "body": null, "index": 9, "isInternal": false, - "x": 274.18288740443995, - "y": 383.60841548421075 + "x": 274.18289, + "y": 383.60842 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5258 }, @@ -47790,11 +47790,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -47816,7 +47816,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6207531852008397, + "speed": 1.62075, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47846,20 +47846,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -47874,12 +47874,12 @@ } }, { - "x": 294.3778682836592, - "y": 391.89663401142076 + "x": 294.37787, + "y": 391.89663 }, { - "x": 279.1618682836592, - "y": 375.89663401142076 + "x": 279.16187, + "y": 375.89663 }, { "category": 1, @@ -47896,16 +47896,16 @@ "y": 0 }, { - "x": 286.7698682836594, - "y": 383.89663401142076 + "x": 286.76987, + "y": 383.89663 }, { "x": 0, "y": 0 }, { - "x": 287.04549285205104, - "y": 382.4516530089426 + "x": 287.04549, + "y": 382.45165 }, { "endCol": 6, @@ -47928,8 +47928,8 @@ "yScale": 1 }, { - "x": -0.20413987077137108, - "y": 1.732116081320953 + "x": -0.20414, + "y": 1.73212 }, [ { @@ -47967,78 +47967,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 294.3778682836592, - "y": 386.36863401142074 + "x": 294.37787, + "y": 386.36863 }, { "body": null, "index": 1, "isInternal": false, - "x": 291.4718682836592, - "y": 390.36863401142074 + "x": 291.47187, + "y": 390.36863 }, { "body": null, "index": 2, "isInternal": false, - "x": 286.7698682836592, - "y": 391.89663401142076 + "x": 286.76987, + "y": 391.89663 }, { "body": null, "index": 3, "isInternal": false, - "x": 282.0678682836592, - "y": 390.36863401142074 + "x": 282.06787, + "y": 390.36863 }, { "body": null, "index": 4, "isInternal": false, - "x": 279.1618682836592, - "y": 386.36863401142074 + "x": 279.16187, + "y": 386.36863 }, { "body": null, "index": 5, "isInternal": false, - "x": 279.1618682836592, - "y": 381.4246340114208 + "x": 279.16187, + "y": 381.42463 }, { "body": null, "index": 6, "isInternal": false, - "x": 282.0678682836592, - "y": 377.4246340114208 + "x": 282.06787, + "y": 377.42463 }, { "body": null, "index": 7, "isInternal": false, - "x": 286.7698682836592, - "y": 375.89663401142076 + "x": 286.76987, + "y": 375.89663 }, { "body": null, "index": 8, "isInternal": false, - "x": 291.4718682836592, - "y": 377.4246340114208 + "x": 291.47187, + "y": 377.42463 }, { "body": null, "index": 9, "isInternal": false, - "x": 294.3778682836592, - "y": 381.4246340114208 + "x": 294.37787, + "y": 381.42463 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5289 }, @@ -48067,11 +48067,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -48093,7 +48093,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.56223543332667, + "speed": 2.56224, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48123,20 +48123,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -48151,12 +48151,12 @@ } }, { - "x": 315.21160184457773, - "y": 391.6788512140304 + "x": 315.2116, + "y": 391.67885 }, { - "x": 299.9956018445777, - "y": 375.6788512140304 + "x": 299.9956, + "y": 375.67885 }, { "category": 1, @@ -48173,16 +48173,16 @@ "y": 0 }, { - "x": 307.6036018445776, - "y": 383.67885121403054 + "x": 307.6036, + "y": 383.67885 }, { "x": 0, "y": 0 }, { - "x": 307.6893521026358, - "y": 381.10796692083653 + "x": 307.68935, + "y": 381.10797 }, { "endCol": 6, @@ -48205,8 +48205,8 @@ "yScale": 1 }, { - "x": -0.09938366194330683, - "y": 2.5186990360828645 + "x": -0.09938, + "y": 2.5187 }, [ { @@ -48244,78 +48244,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.21160184457773, - "y": 386.15085121403035 + "x": 315.2116, + "y": 386.15085 }, { "body": null, "index": 1, "isInternal": false, - "x": 312.3056018445778, - "y": 390.15085121403035 + "x": 312.3056, + "y": 390.15085 }, { "body": null, "index": 2, "isInternal": false, - "x": 307.6036018445778, - "y": 391.6788512140304 + "x": 307.6036, + "y": 391.67885 }, { "body": null, "index": 3, "isInternal": false, - "x": 302.9016018445778, - "y": 390.15085121403035 + "x": 302.9016, + "y": 390.15085 }, { "body": null, "index": 4, "isInternal": false, - "x": 299.9956018445777, - "y": 386.15085121403035 + "x": 299.9956, + "y": 386.15085 }, { "body": null, "index": 5, "isInternal": false, - "x": 299.9956018445777, - "y": 381.2068512140304 + "x": 299.9956, + "y": 381.20685 }, { "body": null, "index": 6, "isInternal": false, - "x": 302.9016018445778, - "y": 377.2068512140304 + "x": 302.9016, + "y": 377.20685 }, { "body": null, "index": 7, "isInternal": false, - "x": 307.6036018445778, - "y": 375.6788512140304 + "x": 307.6036, + "y": 375.67885 }, { "body": null, "index": 8, "isInternal": false, - "x": 312.3056018445778, - "y": 377.2068512140304 + "x": 312.3056, + "y": 377.20685 }, { "body": null, "index": 9, "isInternal": false, - "x": 315.21160184457773, - "y": 381.2068512140304 + "x": 315.2116, + "y": 381.20685 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5320 }, @@ -48344,11 +48344,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -48370,7 +48370,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.533615889443399, + "speed": 2.53362, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48400,20 +48400,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -48428,12 +48428,12 @@ } }, { - "x": 335.1705449062726, - "y": 396.916532670197 + "x": 335.17054, + "y": 396.91653 }, { - "x": 319.9545449062726, - "y": 380.916532670197 + "x": 319.95454, + "y": 380.91653 }, { "category": 1, @@ -48450,16 +48450,16 @@ "y": 0 }, { - "x": 327.5625449062725, - "y": 388.9165326701969 + "x": 327.56254, + "y": 388.91653 }, { "x": 0, "y": 0 }, { - "x": 327.6114776703454, - "y": 386.5585406705254 + "x": 327.61148, + "y": 386.55854 }, { "endCol": 6, @@ -48482,8 +48482,8 @@ "yScale": 1 }, { - "x": -0.056851039596324426, - "y": 2.3248185741099974 + "x": -0.05685, + "y": 2.32482 }, [ { @@ -48521,78 +48521,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 335.1705449062726, - "y": 391.388532670197 + "x": 335.17054, + "y": 391.38853 }, { "body": null, "index": 1, "isInternal": false, - "x": 332.2645449062726, - "y": 395.388532670197 + "x": 332.26454, + "y": 395.38853 }, { "body": null, "index": 2, "isInternal": false, - "x": 327.5625449062726, - "y": 396.916532670197 + "x": 327.56254, + "y": 396.91653 }, { "body": null, "index": 3, "isInternal": false, - "x": 322.8605449062726, - "y": 395.388532670197 + "x": 322.86054, + "y": 395.38853 }, { "body": null, "index": 4, "isInternal": false, - "x": 319.9545449062726, - "y": 391.388532670197 + "x": 319.95454, + "y": 391.38853 }, { "body": null, "index": 5, "isInternal": false, - "x": 319.9545449062726, - "y": 386.444532670197 + "x": 319.95454, + "y": 386.44453 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.8605449062726, - "y": 382.444532670197 + "x": 322.86054, + "y": 382.44453 }, { "body": null, "index": 7, "isInternal": false, - "x": 327.5625449062726, - "y": 380.916532670197 + "x": 327.56254, + "y": 380.91653 }, { "body": null, "index": 8, "isInternal": false, - "x": 332.2645449062726, - "y": 382.444532670197 + "x": 332.26454, + "y": 382.44453 }, { "body": null, "index": 9, "isInternal": false, - "x": 335.1705449062726, - "y": 386.444532670197 + "x": 335.17054, + "y": 386.44453 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5351 }, @@ -48621,11 +48621,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -48647,7 +48647,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9441775148090668, + "speed": 2.94418, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48677,20 +48677,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -48705,12 +48705,12 @@ } }, { - "x": 355.7687957360469, - "y": 398.889676120634 + "x": 355.7688, + "y": 398.88968 }, { - "x": 340.5527957360469, - "y": 382.889676120634 + "x": 340.5528, + "y": 382.88968 }, { "category": 1, @@ -48727,16 +48727,16 @@ "y": 0 }, { - "x": 348.16079573604674, - "y": 390.889676120634 + "x": 348.1608, + "y": 390.88968 }, { "x": 0, "y": 0 }, { - "x": 348.27431839695095, - "y": 388.13286225847907 + "x": 348.27432, + "y": 388.13286 }, { "endCol": 7, @@ -48759,8 +48759,8 @@ "yScale": 1 }, { - "x": -0.1361461103884949, - "y": 2.631474641646207 + "x": -0.13615, + "y": 2.63147 }, [ { @@ -48798,78 +48798,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 355.7687957360469, - "y": 393.361676120634 + "x": 355.7688, + "y": 393.36168 }, { "body": null, "index": 1, "isInternal": false, - "x": 352.8627957360469, - "y": 397.361676120634 + "x": 352.8628, + "y": 397.36168 }, { "body": null, "index": 2, "isInternal": false, - "x": 348.1607957360469, - "y": 398.889676120634 + "x": 348.1608, + "y": 398.88968 }, { "body": null, "index": 3, "isInternal": false, - "x": 343.4587957360469, - "y": 397.361676120634 + "x": 343.4588, + "y": 397.36168 }, { "body": null, "index": 4, "isInternal": false, - "x": 340.5527957360469, - "y": 393.361676120634 + "x": 340.5528, + "y": 393.36168 }, { "body": null, "index": 5, "isInternal": false, - "x": 340.5527957360469, - "y": 388.41767612063404 + "x": 340.5528, + "y": 388.41768 }, { "body": null, "index": 6, "isInternal": false, - "x": 343.4587957360469, - "y": 384.41767612063404 + "x": 343.4588, + "y": 384.41768 }, { "body": null, "index": 7, "isInternal": false, - "x": 348.1607957360469, - "y": 382.889676120634 + "x": 348.1608, + "y": 382.88968 }, { "body": null, "index": 8, "isInternal": false, - "x": 352.8627957360469, - "y": 384.41767612063404 + "x": 352.8628, + "y": 384.41768 }, { "body": null, "index": 9, "isInternal": false, - "x": 355.7687957360469, - "y": 388.41767612063404 + "x": 355.7688, + "y": 388.41768 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5382 }, @@ -48898,11 +48898,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -48924,7 +48924,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8730067799312553, + "speed": 2.87301, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48954,20 +48954,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -48982,12 +48982,12 @@ } }, { - "x": 376.0536448119878, - "y": 402.864109014382 + "x": 376.05364, + "y": 402.86411 }, { - "x": 360.8376448119878, - "y": 386.864109014382 + "x": 360.83764, + "y": 386.86411 }, { "category": 1, @@ -49004,16 +49004,16 @@ "y": 0 }, { - "x": 368.44564481198785, - "y": 394.8641090143819 + "x": 368.44564, + "y": 394.86411 }, { "x": 0, "y": 0 }, { - "x": 368.514600313067, - "y": 392.24792882013116 + "x": 368.5146, + "y": 392.24793 }, { "endCol": 7, @@ -49036,8 +49036,8 @@ "yScale": 1 }, { - "x": -0.0869103499310313, - "y": 2.48531909705423 + "x": -0.08691, + "y": 2.48532 }, [ { @@ -49075,78 +49075,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 376.0536448119878, - "y": 397.336109014382 + "x": 376.05364, + "y": 397.33611 }, { "body": null, "index": 1, "isInternal": false, - "x": 373.1476448119878, - "y": 401.336109014382 + "x": 373.14764, + "y": 401.33611 }, { "body": null, "index": 2, "isInternal": false, - "x": 368.4456448119878, - "y": 402.864109014382 + "x": 368.44564, + "y": 402.86411 }, { "body": null, "index": 3, "isInternal": false, - "x": 363.7436448119878, - "y": 401.336109014382 + "x": 363.74364, + "y": 401.33611 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.8376448119878, - "y": 397.336109014382 + "x": 360.83764, + "y": 397.33611 }, { "body": null, "index": 5, "isInternal": false, - "x": 360.8376448119878, - "y": 392.392109014382 + "x": 360.83764, + "y": 392.39211 }, { "body": null, "index": 6, "isInternal": false, - "x": 363.7436448119878, - "y": 388.392109014382 + "x": 363.74364, + "y": 388.39211 }, { "body": null, "index": 7, "isInternal": false, - "x": 368.4456448119878, - "y": 386.864109014382 + "x": 368.44564, + "y": 386.86411 }, { "body": null, "index": 8, "isInternal": false, - "x": 373.1476448119878, - "y": 388.392109014382 + "x": 373.14764, + "y": 388.39211 }, { "body": null, "index": 9, "isInternal": false, - "x": 376.0536448119878, - "y": 392.392109014382 + "x": 376.05364, + "y": 392.39211 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5413 }, @@ -49175,11 +49175,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -49201,7 +49201,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0136900284380044, + "speed": 3.01369, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49231,20 +49231,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -49259,12 +49259,12 @@ } }, { - "x": 396.757504277166, - "y": 402.2452848082009 + "x": 396.7575, + "y": 402.24528 }, { - "x": 381.541504277166, - "y": 386.2452848082009 + "x": 381.5415, + "y": 386.24528 }, { "category": 1, @@ -49281,16 +49281,16 @@ "y": 0 }, { - "x": 389.14950427716593, - "y": 394.24528480820123 + "x": 389.1495, + "y": 394.24528 }, { "x": 0, "y": 0 }, { - "x": 389.1443434928317, - "y": 391.3513241052791 + "x": 389.14434, + "y": 391.35132 }, { "endCol": 8, @@ -49313,8 +49313,8 @@ "yScale": 1 }, { - "x": -0.014604132375723111, - "y": 2.685295247372096 + "x": -0.0146, + "y": 2.6853 }, [ { @@ -49352,78 +49352,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.757504277166, - "y": 396.7172848082009 + "x": 396.7575, + "y": 396.71728 }, { "body": null, "index": 1, "isInternal": false, - "x": 393.851504277166, - "y": 400.7172848082009 + "x": 393.8515, + "y": 400.71728 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.149504277166, - "y": 402.2452848082009 + "x": 389.1495, + "y": 402.24528 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.447504277166, - "y": 400.7172848082009 + "x": 384.4475, + "y": 400.71728 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.541504277166, - "y": 396.7172848082009 + "x": 381.5415, + "y": 396.71728 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.541504277166, - "y": 391.7732848082009 + "x": 381.5415, + "y": 391.77328 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.447504277166, - "y": 387.7732848082009 + "x": 384.4475, + "y": 387.77328 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.149504277166, - "y": 386.2452848082009 + "x": 389.1495, + "y": 386.24528 }, { "body": null, "index": 8, "isInternal": false, - "x": 393.851504277166, - "y": 387.7732848082009 + "x": 393.8515, + "y": 387.77328 }, { "body": null, "index": 9, "isInternal": false, - "x": 396.757504277166, - "y": 391.7732848082009 + "x": 396.7575, + "y": 391.77328 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5444 }, @@ -49452,11 +49452,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -49478,7 +49478,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.919539931088296, + "speed": 2.91954, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49508,20 +49508,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -49536,12 +49536,12 @@ } }, { - "x": 417.4741210924965, - "y": 401.75046970938314 + "x": 417.47412, + "y": 401.75047 }, { - "x": 402.2581210924965, - "y": 385.75046970938314 + "x": 402.25812, + "y": 385.75047 }, { "category": 1, @@ -49558,16 +49558,16 @@ "y": 0 }, { - "x": 409.8661210924964, - "y": 393.750469709383 + "x": 409.86612, + "y": 393.75047 }, { "x": 0, "y": 0 }, { - "x": 409.7961419550638, - "y": 390.90442818276034 + "x": 409.79614, + "y": 390.90443 }, { "endCol": 8, @@ -49590,8 +49590,8 @@ "yScale": 1 }, { - "x": 0.05500937286791441, - "y": 2.641752993024511 + "x": 0.05501, + "y": 2.64175 }, [ { @@ -49629,78 +49629,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.4741210924965, - "y": 396.2224697093831 + "x": 417.47412, + "y": 396.22247 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.5681210924965, - "y": 400.2224697093831 + "x": 414.56812, + "y": 400.22247 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.8661210924965, - "y": 401.75046970938314 + "x": 409.86612, + "y": 401.75047 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.1641210924965, - "y": 400.2224697093831 + "x": 405.16412, + "y": 400.22247 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.2581210924965, - "y": 396.2224697093831 + "x": 402.25812, + "y": 396.22247 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.2581210924965, - "y": 391.27846970938316 + "x": 402.25812, + "y": 391.27847 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.1641210924965, - "y": 387.27846970938316 + "x": 405.16412, + "y": 387.27847 }, { "body": null, "index": 7, "isInternal": false, - "x": 409.8661210924965, - "y": 385.75046970938314 + "x": 409.86612, + "y": 385.75047 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.5681210924965, - "y": 387.27846970938316 + "x": 414.56812, + "y": 387.27847 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.4741210924965, - "y": 391.27846970938316 + "x": 417.47412, + "y": 391.27847 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5475 }, @@ -49729,11 +49729,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -49755,7 +49755,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7724717225629854, + "speed": 2.77247, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49785,20 +49785,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -49813,12 +49813,12 @@ } }, { - "x": 438.1819760235873, - "y": 401.16574461212656 + "x": 438.18198, + "y": 401.16574 }, { - "x": 422.9659760235873, - "y": 385.16574461212656 + "x": 422.96598, + "y": 385.16574 }, { "category": 1, @@ -49835,16 +49835,16 @@ "y": 0 }, { - "x": 430.5739760235872, - "y": 393.16574461212656 + "x": 430.57398, + "y": 393.16574 }, { "x": 0, "y": 0 }, { - "x": 430.45247588788766, - "y": 390.4863087316018 + "x": 430.45248, + "y": 390.48631 }, { "endCol": 9, @@ -49867,8 +49867,8 @@ "yScale": 1 }, { - "x": 0.11018919380745729, - "y": 2.5230387297689845 + "x": 0.11019, + "y": 2.52304 }, [ { @@ -49906,78 +49906,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 438.1819760235873, - "y": 395.63774461212654 + "x": 438.18198, + "y": 395.63774 }, { "body": null, "index": 1, "isInternal": false, - "x": 435.2759760235873, - "y": 399.63774461212654 + "x": 435.27598, + "y": 399.63774 }, { "body": null, "index": 2, "isInternal": false, - "x": 430.5739760235873, - "y": 401.16574461212656 + "x": 430.57398, + "y": 401.16574 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.8719760235873, - "y": 399.63774461212654 + "x": 425.87198, + "y": 399.63774 }, { "body": null, "index": 4, "isInternal": false, - "x": 422.9659760235873, - "y": 395.63774461212654 + "x": 422.96598, + "y": 395.63774 }, { "body": null, "index": 5, "isInternal": false, - "x": 422.9659760235873, - "y": 390.6937446121266 + "x": 422.96598, + "y": 390.69374 }, { "body": null, "index": 6, "isInternal": false, - "x": 425.8719760235873, - "y": 386.6937446121266 + "x": 425.87198, + "y": 386.69374 }, { "body": null, "index": 7, "isInternal": false, - "x": 430.5739760235873, - "y": 385.16574461212656 + "x": 430.57398, + "y": 385.16574 }, { "body": null, "index": 8, "isInternal": false, - "x": 435.2759760235873, - "y": 386.6937446121266 + "x": 435.27598, + "y": 386.69374 }, { "body": null, "index": 9, "isInternal": false, - "x": 438.1819760235873, - "y": 390.6937446121266 + "x": 438.18198, + "y": 390.69374 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5506 }, @@ -50006,11 +50006,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -50032,7 +50032,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.169965975267737, + "speed": 2.16997, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50062,20 +50062,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -50090,12 +50090,12 @@ } }, { - "x": 458.68612367884674, - "y": 398.57676741250873 + "x": 458.68612, + "y": 398.57677 }, { - "x": 443.47012367884673, - "y": 382.57676741250873 + "x": 443.47012, + "y": 382.57677 }, { "category": 1, @@ -50112,16 +50112,16 @@ "y": 0 }, { - "x": 451.07812367884685, - "y": 390.5767674125085 + "x": 451.07812, + "y": 390.57677 }, { "x": 0, "y": 0 }, { - "x": 451.00925153642186, - "y": 388.67309638315453 + "x": 451.00925, + "y": 388.6731 }, { "endCol": 9, @@ -50144,8 +50144,8 @@ "yScale": 1 }, { - "x": 0.0772223668233778, - "y": 1.9991784843255687 + "x": 0.07722, + "y": 1.99918 }, [ { @@ -50183,78 +50183,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 458.68612367884674, - "y": 393.0487674125087 + "x": 458.68612, + "y": 393.04877 }, { "body": null, "index": 1, "isInternal": false, - "x": 455.78012367884673, - "y": 397.0487674125087 + "x": 455.78012, + "y": 397.04877 }, { "body": null, "index": 2, "isInternal": false, - "x": 451.07812367884674, - "y": 398.57676741250873 + "x": 451.07812, + "y": 398.57677 }, { "body": null, "index": 3, "isInternal": false, - "x": 446.37612367884674, - "y": 397.0487674125087 + "x": 446.37612, + "y": 397.04877 }, { "body": null, "index": 4, "isInternal": false, - "x": 443.47012367884673, - "y": 393.0487674125087 + "x": 443.47012, + "y": 393.04877 }, { "body": null, "index": 5, "isInternal": false, - "x": 443.47012367884673, - "y": 388.10476741250875 + "x": 443.47012, + "y": 388.10477 }, { "body": null, "index": 6, "isInternal": false, - "x": 446.37612367884674, - "y": 384.10476741250875 + "x": 446.37612, + "y": 384.10477 }, { "body": null, "index": 7, "isInternal": false, - "x": 451.07812367884674, - "y": 382.57676741250873 + "x": 451.07812, + "y": 382.57677 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.78012367884673, - "y": 384.10476741250875 + "x": 455.78012, + "y": 384.10477 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.68612367884674, - "y": 388.10476741250875 + "x": 458.68612, + "y": 388.10477 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5537 }, @@ -50283,11 +50283,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -50309,7 +50309,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3898233353101308, + "speed": 1.38982, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50339,20 +50339,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -50367,12 +50367,12 @@ } }, { - "x": 477.02070302533417, - "y": 389.15318090222513 + "x": 477.0207, + "y": 389.15318 }, { - "x": 461.80470302533416, - "y": 373.15318090222513 + "x": 461.8047, + "y": 373.15318 }, { "category": 1, @@ -50389,16 +50389,16 @@ "y": 0 }, { - "x": 469.41270302533405, - "y": 381.1531809022252 + "x": 469.4127, + "y": 381.15318 }, { "x": 0, "y": 0 }, { - "x": 469.6089934966053, - "y": 379.7961874897423 + "x": 469.60899, + "y": 379.79619 }, { "endCol": 9, @@ -50421,8 +50421,8 @@ "yScale": 1 }, { - "x": -0.16169315931830397, - "y": 1.745592046330728 + "x": -0.16169, + "y": 1.74559 }, [ { @@ -50460,78 +50460,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 477.02070302533417, - "y": 383.6251809022251 + "x": 477.0207, + "y": 383.62518 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.11470302533417, - "y": 387.6251809022251 + "x": 474.1147, + "y": 387.62518 }, { "body": null, "index": 2, "isInternal": false, - "x": 469.41270302533417, - "y": 389.15318090222513 + "x": 469.4127, + "y": 389.15318 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.71070302533417, - "y": 387.6251809022251 + "x": 464.7107, + "y": 387.62518 }, { "body": null, "index": 4, "isInternal": false, - "x": 461.80470302533416, - "y": 383.6251809022251 + "x": 461.8047, + "y": 383.62518 }, { "body": null, "index": 5, "isInternal": false, - "x": 461.80470302533416, - "y": 378.68118090222515 + "x": 461.8047, + "y": 378.68118 }, { "body": null, "index": 6, "isInternal": false, - "x": 464.71070302533417, - "y": 374.68118090222515 + "x": 464.7107, + "y": 374.68118 }, { "body": null, "index": 7, "isInternal": false, - "x": 469.41270302533417, - "y": 373.15318090222513 + "x": 469.4127, + "y": 373.15318 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.11470302533417, - "y": 374.68118090222515 + "x": 474.1147, + "y": 374.68118 }, { "body": null, "index": 9, "isInternal": false, - "x": 477.02070302533417, - "y": 378.68118090222515 + "x": 477.0207, + "y": 378.68118 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5568 }, @@ -50560,11 +50560,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -50586,7 +50586,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9208688235256433, + "speed": 0.92087, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50616,20 +50616,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -50644,12 +50644,12 @@ } }, { - "x": 497.66417062493645, - "y": 387.10415123495585 + "x": 497.66417, + "y": 387.10415 }, { - "x": 482.44817062493644, - "y": 371.10415123495585 + "x": 482.44817, + "y": 371.10415 }, { "category": 1, @@ -50666,16 +50666,16 @@ "y": 0 }, { - "x": 490.05617062493644, - "y": 379.1041512349558 + "x": 490.05617, + "y": 379.10415 }, { "x": 0, "y": 0 }, { - "x": 490.25378317616276, - "y": 378.28128835128473 + "x": 490.25378, + "y": 378.28129 }, { "endCol": 10, @@ -50698,8 +50698,8 @@ "yScale": 1 }, { - "x": -0.1474621045914546, - "y": 1.361817342170923 + "x": -0.14746, + "y": 1.36182 }, [ { @@ -50737,78 +50737,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 497.66417062493645, - "y": 381.57615123495583 + "x": 497.66417, + "y": 381.57615 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.75817062493644, - "y": 385.57615123495583 + "x": 494.75817, + "y": 385.57615 }, { "body": null, "index": 2, "isInternal": false, - "x": 490.05617062493644, - "y": 387.10415123495585 + "x": 490.05617, + "y": 387.10415 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.35417062493644, - "y": 385.57615123495583 + "x": 485.35417, + "y": 385.57615 }, { "body": null, "index": 4, "isInternal": false, - "x": 482.44817062493644, - "y": 381.57615123495583 + "x": 482.44817, + "y": 381.57615 }, { "body": null, "index": 5, "isInternal": false, - "x": 482.44817062493644, - "y": 376.63215123495587 + "x": 482.44817, + "y": 376.63215 }, { "body": null, "index": 6, "isInternal": false, - "x": 485.35417062493644, - "y": 372.63215123495587 + "x": 485.35417, + "y": 372.63215 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.05617062493644, - "y": 371.10415123495585 + "x": 490.05617, + "y": 371.10415 }, { "body": null, "index": 8, "isInternal": false, - "x": 494.75817062493644, - "y": 372.63215123495587 + "x": 494.75817, + "y": 372.63215 }, { "body": null, "index": 9, "isInternal": false, - "x": 497.66417062493645, - "y": 376.63215123495587 + "x": 497.66417, + "y": 376.63215 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5599 }, @@ -50837,11 +50837,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -50863,7 +50863,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.879815474690106, + "speed": 0.87982, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50893,20 +50893,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -50921,12 +50921,12 @@ } }, { - "x": 518.4828456421191, - "y": 386.9714388131434 + "x": 518.48285, + "y": 386.97144 }, { - "x": 503.26684564211905, - "y": 370.9714388131434 + "x": 503.26685, + "y": 370.97144 }, { "category": 1, @@ -50943,16 +50943,16 @@ "y": 0 }, { - "x": 510.8748456421189, - "y": 378.97143881314344 + "x": 510.87485, + "y": 378.97144 }, { "x": 0, "y": 0 }, { - "x": 510.9968114286588, - "y": 378.23584747307876 + "x": 510.99681, + "y": 378.23585 }, { "endCol": 10, @@ -50975,8 +50975,8 @@ "yScale": 1 }, { - "x": -0.07413400874781928, - "y": 1.319301512930167 + "x": -0.07413, + "y": 1.3193 }, [ { @@ -51014,78 +51014,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.4828456421191, - "y": 381.44343881314336 + "x": 518.48285, + "y": 381.44344 }, { "body": null, "index": 1, "isInternal": false, - "x": 515.5768456421191, - "y": 385.44343881314336 + "x": 515.57685, + "y": 385.44344 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.87484564211906, - "y": 386.9714388131434 + "x": 510.87485, + "y": 386.97144 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.17284564211906, - "y": 385.44343881314336 + "x": 506.17285, + "y": 385.44344 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.26684564211905, - "y": 381.44343881314336 + "x": 503.26685, + "y": 381.44344 }, { "body": null, "index": 5, "isInternal": false, - "x": 503.26684564211905, - "y": 376.4994388131434 + "x": 503.26685, + "y": 376.49944 }, { "body": null, "index": 6, "isInternal": false, - "x": 506.17284564211906, - "y": 372.4994388131434 + "x": 506.17285, + "y": 372.49944 }, { "body": null, "index": 7, "isInternal": false, - "x": 510.87484564211906, - "y": 370.9714388131434 + "x": 510.87485, + "y": 370.97144 }, { "body": null, "index": 8, "isInternal": false, - "x": 515.5768456421191, - "y": 372.4994388131434 + "x": 515.57685, + "y": 372.49944 }, { "body": null, "index": 9, "isInternal": false, - "x": 518.4828456421191, - "y": 376.4994388131434 + "x": 518.48285, + "y": 376.49944 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5630 }, @@ -51114,11 +51114,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -51140,7 +51140,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2361678347156586, + "speed": 1.23617, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51170,20 +51170,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -51198,12 +51198,12 @@ } }, { - "x": 539.2120254111016, - "y": 388.639335397064 + "x": 539.21203, + "y": 388.63934 }, { - "x": 523.9960254111018, - "y": 372.639335397064 + "x": 523.99603, + "y": 372.63934 }, { "category": 1, @@ -51220,16 +51220,16 @@ "y": 0 }, { - "x": 531.6040254111022, - "y": 380.6393353970641 + "x": 531.60403, + "y": 380.63934 }, { "x": 0, "y": 0 }, { - "x": 531.6641285942901, - "y": 379.5634788116237 + "x": 531.66413, + "y": 379.56348 }, { "endCol": 11, @@ -51252,8 +51252,8 @@ "yScale": 1 }, { - "x": -0.027585442618828893, - "y": 1.6115128010519015 + "x": -0.02759, + "y": 1.61151 }, [ { @@ -51291,78 +51291,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 539.2120254111016, - "y": 383.11133539706395 + "x": 539.21203, + "y": 383.11134 }, { "body": null, "index": 1, "isInternal": false, - "x": 536.3060254111017, - "y": 387.11133539706395 + "x": 536.30603, + "y": 387.11134 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.6040254111017, - "y": 388.639335397064 + "x": 531.60403, + "y": 388.63934 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.9020254111017, - "y": 387.11133539706395 + "x": 526.90203, + "y": 387.11134 }, { "body": null, "index": 4, "isInternal": false, - "x": 523.9960254111018, - "y": 383.11133539706395 + "x": 523.99603, + "y": 383.11134 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.9960254111018, - "y": 378.167335397064 + "x": 523.99603, + "y": 378.16734 }, { "body": null, "index": 6, "isInternal": false, - "x": 526.9020254111017, - "y": 374.167335397064 + "x": 526.90203, + "y": 374.16734 }, { "body": null, "index": 7, "isInternal": false, - "x": 531.6040254111017, - "y": 372.639335397064 + "x": 531.60403, + "y": 372.63934 }, { "body": null, "index": 8, "isInternal": false, - "x": 536.3060254111017, - "y": 374.167335397064 + "x": 536.30603, + "y": 374.16734 }, { "body": null, "index": 9, "isInternal": false, - "x": 539.2120254111016, - "y": 378.167335397064 + "x": 539.21203, + "y": 378.16734 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5661 }, @@ -51391,11 +51391,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -51417,7 +51417,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1631474465795466, + "speed": 2.16315, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51447,20 +51447,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -51475,12 +51475,12 @@ } }, { - "x": 557.5025015324296, - "y": 398.46246727878577 + "x": 557.5025, + "y": 398.46247 }, { - "x": 542.2865015324297, - "y": 382.46246727878577 + "x": 542.2865, + "y": 382.46247 }, { "category": 1, @@ -51497,16 +51497,16 @@ "y": 0 }, { - "x": 549.8945015324294, - "y": 390.4624672787855 + "x": 549.8945, + "y": 390.46247 }, { "x": 0, "y": 0 }, { - "x": 550.2424068516684, - "y": 388.5996652158815 + "x": 550.24241, + "y": 388.59967 }, { "endCol": 11, @@ -51529,8 +51529,8 @@ "yScale": 1 }, { - "x": -0.34981281132263575, - "y": 1.9629079699385557 + "x": -0.34981, + "y": 1.96291 }, [ { @@ -51568,78 +51568,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 557.5025015324296, - "y": 392.93446727878575 + "x": 557.5025, + "y": 392.93447 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.5965015324297, - "y": 396.93446727878575 + "x": 554.5965, + "y": 396.93447 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.8945015324297, - "y": 398.46246727878577 + "x": 549.8945, + "y": 398.46247 }, { "body": null, "index": 3, "isInternal": false, - "x": 545.1925015324297, - "y": 396.93446727878575 + "x": 545.1925, + "y": 396.93447 }, { "body": null, "index": 4, "isInternal": false, - "x": 542.2865015324297, - "y": 392.93446727878575 + "x": 542.2865, + "y": 392.93447 }, { "body": null, "index": 5, "isInternal": false, - "x": 542.2865015324297, - "y": 387.9904672787858 + "x": 542.2865, + "y": 387.99047 }, { "body": null, "index": 6, "isInternal": false, - "x": 545.1925015324297, - "y": 383.9904672787858 + "x": 545.1925, + "y": 383.99047 }, { "body": null, "index": 7, "isInternal": false, - "x": 549.8945015324297, - "y": 382.46246727878577 + "x": 549.8945, + "y": 382.46247 }, { "body": null, "index": 8, "isInternal": false, - "x": 554.5965015324297, - "y": 383.9904672787858 + "x": 554.5965, + "y": 383.99047 }, { "body": null, "index": 9, "isInternal": false, - "x": 557.5025015324296, - "y": 387.9904672787858 + "x": 557.5025, + "y": 387.99047 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5692 }, @@ -51668,11 +51668,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -51694,7 +51694,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6632481007596174, + "speed": 2.66325, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51724,20 +51724,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -51752,12 +51752,12 @@ } }, { - "x": 577.9025098188639, - "y": 400.7443819314784 + "x": 577.90251, + "y": 400.74438 }, { - "x": 562.686509818864, - "y": 384.7443819314784 + "x": 562.68651, + "y": 384.74438 }, { "category": 1, @@ -51774,16 +51774,16 @@ "y": 0 }, { - "x": 570.2945098188642, - "y": 392.7443819314785 + "x": 570.29451, + "y": 392.74438 }, { "x": 0, "y": 0 }, { - "x": 570.6721498037934, - "y": 390.23502688125836 + "x": 570.67215, + "y": 390.23503 }, { "endCol": 12, @@ -51806,8 +51806,8 @@ "yScale": 1 }, { - "x": -0.3750738717450304, - "y": 2.423614603850467 + "x": -0.37507, + "y": 2.42361 }, [ { @@ -51845,78 +51845,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 577.9025098188639, - "y": 395.2163819314784 + "x": 577.90251, + "y": 395.21638 }, { "body": null, "index": 1, "isInternal": false, - "x": 574.996509818864, - "y": 399.2163819314784 + "x": 574.99651, + "y": 399.21638 }, { "body": null, "index": 2, "isInternal": false, - "x": 570.294509818864, - "y": 400.7443819314784 + "x": 570.29451, + "y": 400.74438 }, { "body": null, "index": 3, "isInternal": false, - "x": 565.592509818864, - "y": 399.2163819314784 + "x": 565.59251, + "y": 399.21638 }, { "body": null, "index": 4, "isInternal": false, - "x": 562.686509818864, - "y": 395.2163819314784 + "x": 562.68651, + "y": 395.21638 }, { "body": null, "index": 5, "isInternal": false, - "x": 562.686509818864, - "y": 390.27238193147844 + "x": 562.68651, + "y": 390.27238 }, { "body": null, "index": 6, "isInternal": false, - "x": 565.592509818864, - "y": 386.27238193147844 + "x": 565.59251, + "y": 386.27238 }, { "body": null, "index": 7, "isInternal": false, - "x": 570.294509818864, - "y": 384.7443819314784 + "x": 570.29451, + "y": 384.74438 }, { "body": null, "index": 8, "isInternal": false, - "x": 574.996509818864, - "y": 386.27238193147844 + "x": 574.99651, + "y": 386.27238 }, { "body": null, "index": 9, "isInternal": false, - "x": 577.9025098188639, - "y": 390.27238193147844 + "x": 577.90251, + "y": 390.27238 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5723 }, @@ -51945,11 +51945,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -51971,7 +51971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7038454820635263, + "speed": 2.70385, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52001,20 +52001,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -52029,12 +52029,12 @@ } }, { - "x": 598.2500705298302, - "y": 400.9003924336581 + "x": 598.25007, + "y": 400.90039 }, { - "x": 583.0340705298303, - "y": 384.9003924336581 + "x": 583.03407, + "y": 384.90039 }, { "category": 1, @@ -52051,16 +52051,16 @@ "y": 0 }, { - "x": 590.6420705298306, - "y": 392.90039243365806 + "x": 590.64207, + "y": 392.90039 }, { "x": 0, "y": 0 }, { - "x": 591.0124850895028, - "y": 390.32421316209974 + "x": 591.01249, + "y": 390.32421 }, { "endCol": 12, @@ -52083,8 +52083,8 @@ "yScale": 1 }, { - "x": -0.3670868009047581, - "y": 2.472750848570911 + "x": -0.36709, + "y": 2.47275 }, [ { @@ -52122,78 +52122,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 598.2500705298302, - "y": 395.3723924336581 + "x": 598.25007, + "y": 395.37239 }, { "body": null, "index": 1, "isInternal": false, - "x": 595.3440705298302, - "y": 399.3723924336581 + "x": 595.34407, + "y": 399.37239 }, { "body": null, "index": 2, "isInternal": false, - "x": 590.6420705298302, - "y": 400.9003924336581 + "x": 590.64207, + "y": 400.90039 }, { "body": null, "index": 3, "isInternal": false, - "x": 585.9400705298302, - "y": 399.3723924336581 + "x": 585.94007, + "y": 399.37239 }, { "body": null, "index": 4, "isInternal": false, - "x": 583.0340705298303, - "y": 395.3723924336581 + "x": 583.03407, + "y": 395.37239 }, { "body": null, "index": 5, "isInternal": false, - "x": 583.0340705298303, - "y": 390.42839243365813 + "x": 583.03407, + "y": 390.42839 }, { "body": null, "index": 6, "isInternal": false, - "x": 585.9400705298302, - "y": 386.42839243365813 + "x": 585.94007, + "y": 386.42839 }, { "body": null, "index": 7, "isInternal": false, - "x": 590.6420705298302, - "y": 384.9003924336581 + "x": 590.64207, + "y": 384.90039 }, { "body": null, "index": 8, "isInternal": false, - "x": 595.3440705298302, - "y": 386.42839243365813 + "x": 595.34407, + "y": 386.42839 }, { "body": null, "index": 9, "isInternal": false, - "x": 598.2500705298302, - "y": 390.42839243365813 + "x": 598.25007, + "y": 390.42839 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5754 }, @@ -52222,11 +52222,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -52248,7 +52248,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.410429489764864, + "speed": 3.41043, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52278,20 +52278,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -52306,12 +52306,12 @@ } }, { - "x": 218.83383893889064, - "y": 425.52682990752527 + "x": 218.83384, + "y": 425.52683 }, { - "x": 203.61783893889063, - "y": 409.52682990752527 + "x": 203.61784, + "y": 409.52683 }, { "category": 1, @@ -52328,16 +52328,16 @@ "y": 0 }, { - "x": 211.22583893889066, - "y": 417.5268299075256 + "x": 211.22584, + "y": 417.52683 }, { "x": 0, "y": 0 }, { - "x": 209.9710852419083, - "y": 414.4782229375762 + "x": 209.97109, + "y": 414.47822 }, { "endCol": 4, @@ -52360,8 +52360,8 @@ "yScale": 1 }, { - "x": 1.1044248913639763, - "y": 2.858637047856689 + "x": 1.10442, + "y": 2.85864 }, [ { @@ -52399,78 +52399,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 218.83383893889064, - "y": 419.99882990752525 + "x": 218.83384, + "y": 419.99883 }, { "body": null, "index": 1, "isInternal": false, - "x": 215.92783893889063, - "y": 423.99882990752525 + "x": 215.92784, + "y": 423.99883 }, { "body": null, "index": 2, "isInternal": false, - "x": 211.22583893889063, - "y": 425.52682990752527 + "x": 211.22584, + "y": 425.52683 }, { "body": null, "index": 3, "isInternal": false, - "x": 206.52383893889063, - "y": 423.99882990752525 + "x": 206.52384, + "y": 423.99883 }, { "body": null, "index": 4, "isInternal": false, - "x": 203.61783893889063, - "y": 419.99882990752525 + "x": 203.61784, + "y": 419.99883 }, { "body": null, "index": 5, "isInternal": false, - "x": 203.61783893889063, - "y": 415.0548299075253 + "x": 203.61784, + "y": 415.05483 }, { "body": null, "index": 6, "isInternal": false, - "x": 206.52383893889063, - "y": 411.0548299075253 + "x": 206.52384, + "y": 411.05483 }, { "body": null, "index": 7, "isInternal": false, - "x": 211.22583893889063, - "y": 409.52682990752527 + "x": 211.22584, + "y": 409.52683 }, { "body": null, "index": 8, "isInternal": false, - "x": 215.92783893889063, - "y": 411.0548299075253 + "x": 215.92784, + "y": 411.05483 }, { "body": null, "index": 9, "isInternal": false, - "x": 218.83383893889064, - "y": 415.0548299075253 + "x": 218.83384, + "y": 415.05483 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5785 }, @@ -52499,11 +52499,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -52525,7 +52525,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9459185392119704, + "speed": 2.94592, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52555,20 +52555,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -52583,12 +52583,12 @@ } }, { - "x": 238.84231559572564, - "y": 424.87885867063187 + "x": 238.84232, + "y": 424.87886 }, { - "x": 223.62631559572563, - "y": 408.87885867063187 + "x": 223.62632, + "y": 408.87886 }, { "category": 1, @@ -52605,16 +52605,16 @@ "y": 0 }, { - "x": 231.23431559572558, - "y": 416.87885867063164 + "x": 231.23432, + "y": 416.87886 }, { "x": 0, "y": 0 }, { - "x": 230.32646386334324, - "y": 414.2708529838218 + "x": 230.32646, + "y": 414.27085 }, { "endCol": 4, @@ -52637,8 +52637,8 @@ "yScale": 1 }, { - "x": 0.8759253382957013, - "y": 2.5779881486460567 + "x": 0.87593, + "y": 2.57799 }, [ { @@ -52676,78 +52676,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.84231559572564, - "y": 419.35085867063185 + "x": 238.84232, + "y": 419.35086 }, { "body": null, "index": 1, "isInternal": false, - "x": 235.93631559572563, - "y": 423.35085867063185 + "x": 235.93632, + "y": 423.35086 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.23431559572563, - "y": 424.87885867063187 + "x": 231.23432, + "y": 424.87886 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.53231559572563, - "y": 423.35085867063185 + "x": 226.53232, + "y": 423.35086 }, { "body": null, "index": 4, "isInternal": false, - "x": 223.62631559572563, - "y": 419.35085867063185 + "x": 223.62632, + "y": 419.35086 }, { "body": null, "index": 5, "isInternal": false, - "x": 223.62631559572563, - "y": 414.4068586706319 + "x": 223.62632, + "y": 414.40686 }, { "body": null, "index": 6, "isInternal": false, - "x": 226.53231559572563, - "y": 410.4068586706319 + "x": 226.53232, + "y": 410.40686 }, { "body": null, "index": 7, "isInternal": false, - "x": 231.23431559572563, - "y": 408.87885867063187 + "x": 231.23432, + "y": 408.87886 }, { "body": null, "index": 8, "isInternal": false, - "x": 235.93631559572563, - "y": 410.4068586706319 + "x": 235.93632, + "y": 410.40686 }, { "body": null, "index": 9, "isInternal": false, - "x": 238.84231559572564, - "y": 414.4068586706319 + "x": 238.84232, + "y": 414.40686 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5816 }, @@ -52776,11 +52776,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -52802,7 +52802,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.91627019927608, + "speed": 1.91627, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52832,20 +52832,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -52860,12 +52860,12 @@ } }, { - "x": 257.4690438745017, - "y": 418.3120214867715 + "x": 257.46904, + "y": 418.31202 }, { - "x": 242.25304387450177, - "y": 402.3120214867715 + "x": 242.25304, + "y": 402.31202 }, { "category": 1, @@ -52882,16 +52882,16 @@ "y": 0 }, { - "x": 249.8610438745018, - "y": 410.31202148677124 + "x": 249.86104, + "y": 410.31202 }, { "x": 0, "y": 0 }, { - "x": 249.9069637629129, - "y": 408.5817650750315 + "x": 249.90696, + "y": 408.58177 }, { "endCol": 5, @@ -52914,8 +52914,8 @@ "yScale": 1 }, { - "x": 0.2773095167289341, - "y": 1.9324402548689932 + "x": 0.27731, + "y": 1.93244 }, [ { @@ -52953,78 +52953,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 257.4690438745017, - "y": 412.7840214867715 + "x": 257.46904, + "y": 412.78402 }, { "body": null, "index": 1, "isInternal": false, - "x": 254.56304387450177, - "y": 416.7840214867715 + "x": 254.56304, + "y": 416.78402 }, { "body": null, "index": 2, "isInternal": false, - "x": 249.86104387450177, - "y": 418.3120214867715 + "x": 249.86104, + "y": 418.31202 }, { "body": null, "index": 3, "isInternal": false, - "x": 245.15904387450178, - "y": 416.7840214867715 + "x": 245.15904, + "y": 416.78402 }, { "body": null, "index": 4, "isInternal": false, - "x": 242.25304387450177, - "y": 412.7840214867715 + "x": 242.25304, + "y": 412.78402 }, { "body": null, "index": 5, "isInternal": false, - "x": 242.25304387450177, - "y": 407.84002148677155 + "x": 242.25304, + "y": 407.84002 }, { "body": null, "index": 6, "isInternal": false, - "x": 245.15904387450178, - "y": 403.84002148677155 + "x": 245.15904, + "y": 403.84002 }, { "body": null, "index": 7, "isInternal": false, - "x": 249.86104387450177, - "y": 402.3120214867715 + "x": 249.86104, + "y": 402.31202 }, { "body": null, "index": 8, "isInternal": false, - "x": 254.56304387450177, - "y": 403.84002148677155 + "x": 254.56304, + "y": 403.84002 }, { "body": null, "index": 9, "isInternal": false, - "x": 257.4690438745017, - "y": 407.84002148677155 + "x": 257.46904, + "y": 407.84002 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5847 }, @@ -53053,11 +53053,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -53079,7 +53079,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6821752981074, + "speed": 1.68218, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53109,20 +53109,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -53137,12 +53137,12 @@ } }, { - "x": 277.6151340436575, - "y": 413.7289841722125 + "x": 277.61513, + "y": 413.72898 }, { - "x": 262.3991340436575, - "y": 397.7289841722125 + "x": 262.39913, + "y": 397.72898 }, { "category": 1, @@ -53159,16 +53159,16 @@ "y": 0 }, { - "x": 270.0071340436574, - "y": 405.7289841722127 + "x": 270.00713, + "y": 405.72898 }, { "x": 0, "y": 0 }, { - "x": 270.53024027485134, - "y": 403.97772565301483 + "x": 270.53024, + "y": 403.97773 }, { "endCol": 5, @@ -53191,8 +53191,8 @@ "yScale": 1 }, { - "x": -0.12405247372061012, - "y": 1.9529082447368182 + "x": -0.12405, + "y": 1.95291 }, [ { @@ -53230,78 +53230,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 277.6151340436575, - "y": 408.2009841722125 + "x": 277.61513, + "y": 408.20098 }, { "body": null, "index": 1, "isInternal": false, - "x": 274.7091340436575, - "y": 412.2009841722125 + "x": 274.70913, + "y": 412.20098 }, { "body": null, "index": 2, "isInternal": false, - "x": 270.0071340436575, - "y": 413.7289841722125 + "x": 270.00713, + "y": 413.72898 }, { "body": null, "index": 3, "isInternal": false, - "x": 265.3051340436575, - "y": 412.2009841722125 + "x": 265.30513, + "y": 412.20098 }, { "body": null, "index": 4, "isInternal": false, - "x": 262.3991340436575, - "y": 408.2009841722125 + "x": 262.39913, + "y": 408.20098 }, { "body": null, "index": 5, "isInternal": false, - "x": 262.3991340436575, - "y": 403.2569841722125 + "x": 262.39913, + "y": 403.25698 }, { "body": null, "index": 6, "isInternal": false, - "x": 265.3051340436575, - "y": 399.2569841722125 + "x": 265.30513, + "y": 399.25698 }, { "body": null, "index": 7, "isInternal": false, - "x": 270.0071340436575, - "y": 397.7289841722125 + "x": 270.00713, + "y": 397.72898 }, { "body": null, "index": 8, "isInternal": false, - "x": 274.7091340436575, - "y": 399.2569841722125 + "x": 274.70913, + "y": 399.25698 }, { "body": null, "index": 9, "isInternal": false, - "x": 277.6151340436575, - "y": 403.2569841722125 + "x": 277.61513, + "y": 403.25698 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5878 }, @@ -53330,11 +53330,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -53356,7 +53356,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.7192392090631847, + "speed": 1.71924, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53386,20 +53386,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -53414,12 +53414,12 @@ } }, { - "x": 298.8580570006249, - "y": 411.18815433593244 + "x": 298.85806, + "y": 411.18815 }, { - "x": 283.6420570006249, - "y": 395.18815433593244 + "x": 283.64206, + "y": 395.18815 }, { "category": 1, @@ -53436,16 +53436,16 @@ "y": 0 }, { - "x": 291.2500570006247, - "y": 403.18815433593227 + "x": 291.25006, + "y": 403.18815 }, { "x": 0, "y": 0 }, { - "x": 292.0784295389169, - "y": 401.3132703392102 + "x": 292.07843, + "y": 401.31327 }, { "endCol": 6, @@ -53468,8 +53468,8 @@ "yScale": 1 }, { - "x": -0.4497462793980276, - "y": 2.099935296900753 + "x": -0.44975, + "y": 2.09994 }, [ { @@ -53507,78 +53507,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 298.8580570006249, - "y": 405.6601543359324 + "x": 298.85806, + "y": 405.66015 }, { "body": null, "index": 1, "isInternal": false, - "x": 295.9520570006249, - "y": 409.6601543359324 + "x": 295.95206, + "y": 409.66015 }, { "body": null, "index": 2, "isInternal": false, - "x": 291.2500570006249, - "y": 411.18815433593244 + "x": 291.25006, + "y": 411.18815 }, { "body": null, "index": 3, "isInternal": false, - "x": 286.5480570006249, - "y": 409.6601543359324 + "x": 286.54806, + "y": 409.66015 }, { "body": null, "index": 4, "isInternal": false, - "x": 283.6420570006249, - "y": 405.6601543359324 + "x": 283.64206, + "y": 405.66015 }, { "body": null, "index": 5, "isInternal": false, - "x": 283.6420570006249, - "y": 400.71615433593246 + "x": 283.64206, + "y": 400.71615 }, { "body": null, "index": 6, "isInternal": false, - "x": 286.5480570006249, - "y": 396.71615433593246 + "x": 286.54806, + "y": 396.71615 }, { "body": null, "index": 7, "isInternal": false, - "x": 291.2500570006249, - "y": 395.18815433593244 + "x": 291.25006, + "y": 395.18815 }, { "body": null, "index": 8, "isInternal": false, - "x": 295.9520570006249, - "y": 396.71615433593246 + "x": 295.95206, + "y": 396.71615 }, { "body": null, "index": 9, "isInternal": false, - "x": 298.8580570006249, - "y": 400.71615433593246 + "x": 298.85806, + "y": 400.71615 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5909 }, @@ -53607,11 +53607,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -53633,7 +53633,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0435511287726995, + "speed": 3.04355, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53663,20 +53663,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -53691,12 +53691,12 @@ } }, { - "x": 320.7982541910273, - "y": 412.23949471422907 + "x": 320.79825, + "y": 412.23949 }, { - "x": 305.5822541910273, - "y": 396.23949471422907 + "x": 305.58225, + "y": 396.23949 }, { "category": 1, @@ -53713,16 +53713,16 @@ "y": 0 }, { - "x": 313.19025419102735, - "y": 404.23949471422884 + "x": 313.19025, + "y": 404.23949 }, { "x": 0, "y": 0 }, { - "x": 314.0752698990856, - "y": 401.22800266510075 + "x": 314.07527, + "y": 401.228 }, { "endCol": 6, @@ -53745,8 +53745,8 @@ "yScale": 1 }, { - "x": -1.1226691573095877, - "y": 2.925477268861016 + "x": -1.12267, + "y": 2.92548 }, [ { @@ -53784,78 +53784,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.7982541910273, - "y": 406.71149471422905 + "x": 320.79825, + "y": 406.71149 }, { "body": null, "index": 1, "isInternal": false, - "x": 317.8922541910273, - "y": 410.71149471422905 + "x": 317.89225, + "y": 410.71149 }, { "body": null, "index": 2, "isInternal": false, - "x": 313.1902541910273, - "y": 412.23949471422907 + "x": 313.19025, + "y": 412.23949 }, { "body": null, "index": 3, "isInternal": false, - "x": 308.4882541910273, - "y": 410.71149471422905 + "x": 308.48825, + "y": 410.71149 }, { "body": null, "index": 4, "isInternal": false, - "x": 305.5822541910273, - "y": 406.71149471422905 + "x": 305.58225, + "y": 406.71149 }, { "body": null, "index": 5, "isInternal": false, - "x": 305.5822541910273, - "y": 401.7674947142291 + "x": 305.58225, + "y": 401.76749 }, { "body": null, "index": 6, "isInternal": false, - "x": 308.4882541910273, - "y": 397.7674947142291 + "x": 308.48825, + "y": 397.76749 }, { "body": null, "index": 7, "isInternal": false, - "x": 313.1902541910273, - "y": 396.23949471422907 + "x": 313.19025, + "y": 396.23949 }, { "body": null, "index": 8, "isInternal": false, - "x": 317.8922541910273, - "y": 397.7674947142291 + "x": 317.89225, + "y": 397.76749 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.7982541910273, - "y": 401.7674947142291 + "x": 320.79825, + "y": 401.76749 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5940 }, @@ -53884,11 +53884,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -53910,7 +53910,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.55363058298922, + "speed": 2.55363, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53940,20 +53940,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -53968,12 +53968,12 @@ } }, { - "x": 340.21303061725916, - "y": 417.4483687232269 + "x": 340.21303, + "y": 417.44837 }, { - "x": 324.99703061725916, - "y": 401.4483687232269 + "x": 324.99703, + "y": 401.44837 }, { "category": 1, @@ -53990,16 +53990,16 @@ "y": 0 }, { - "x": 332.60503061725944, - "y": 409.4483687232269 + "x": 332.60503, + "y": 409.44837 }, { "x": 0, "y": 0 }, { - "x": 332.8037559330779, - "y": 407.0137822757418 + "x": 332.80376, + "y": 407.01378 }, { "endCol": 7, @@ -54022,8 +54022,8 @@ "yScale": 1 }, { - "x": -0.3418645167269574, - "y": 2.4284451963828815 + "x": -0.34186, + "y": 2.42845 }, [ { @@ -54061,78 +54061,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 340.21303061725916, - "y": 411.9203687232269 + "x": 340.21303, + "y": 411.92037 }, { "body": null, "index": 1, "isInternal": false, - "x": 337.30703061725916, - "y": 415.9203687232269 + "x": 337.30703, + "y": 415.92037 }, { "body": null, "index": 2, "isInternal": false, - "x": 332.60503061725916, - "y": 417.4483687232269 + "x": 332.60503, + "y": 417.44837 }, { "body": null, "index": 3, "isInternal": false, - "x": 327.90303061725916, - "y": 415.9203687232269 + "x": 327.90303, + "y": 415.92037 }, { "body": null, "index": 4, "isInternal": false, - "x": 324.99703061725916, - "y": 411.9203687232269 + "x": 324.99703, + "y": 411.92037 }, { "body": null, "index": 5, "isInternal": false, - "x": 324.99703061725916, - "y": 406.9763687232269 + "x": 324.99703, + "y": 406.97637 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.90303061725916, - "y": 402.9763687232269 + "x": 327.90303, + "y": 402.97637 }, { "body": null, "index": 7, "isInternal": false, - "x": 332.60503061725916, - "y": 401.4483687232269 + "x": 332.60503, + "y": 401.44837 }, { "body": null, "index": 8, "isInternal": false, - "x": 337.30703061725916, - "y": 402.9763687232269 + "x": 337.30703, + "y": 402.97637 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.21303061725916, - "y": 406.9763687232269 + "x": 340.21303, + "y": 406.97637 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 5971 }, @@ -54161,11 +54161,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -54187,7 +54187,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.894232833337449, + "speed": 2.89423, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54217,20 +54217,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -54245,12 +54245,12 @@ } }, { - "x": 359.5175318688385, - "y": 419.9496221508692 + "x": 359.51753, + "y": 419.94962 }, { - "x": 344.3015318688385, - "y": 403.9496221508692 + "x": 344.30153, + "y": 403.94962 }, { "category": 1, @@ -54267,16 +54267,16 @@ "y": 0 }, { - "x": 351.90953186883826, - "y": 411.94962215086906 + "x": 351.90953, + "y": 411.94962 }, { "x": 0, "y": 0 }, { - "x": 351.8620975414157, - "y": 409.2555306719546 + "x": 351.8621, + "y": 409.25553 }, { "endCol": 7, @@ -54299,8 +54299,8 @@ "yScale": 1 }, { - "x": 0.09674513033883159, - "y": 2.6762169819028827 + "x": 0.09675, + "y": 2.67622 }, [ { @@ -54338,78 +54338,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 359.5175318688385, - "y": 414.42162215086915 + "x": 359.51753, + "y": 414.42162 }, { "body": null, "index": 1, "isInternal": false, - "x": 356.6115318688385, - "y": 418.42162215086915 + "x": 356.61153, + "y": 418.42162 }, { "body": null, "index": 2, "isInternal": false, - "x": 351.9095318688385, - "y": 419.9496221508692 + "x": 351.90953, + "y": 419.94962 }, { "body": null, "index": 3, "isInternal": false, - "x": 347.2075318688385, - "y": 418.42162215086915 + "x": 347.20753, + "y": 418.42162 }, { "body": null, "index": 4, "isInternal": false, - "x": 344.3015318688385, - "y": 414.42162215086915 + "x": 344.30153, + "y": 414.42162 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.3015318688385, - "y": 409.4776221508692 + "x": 344.30153, + "y": 409.47762 }, { "body": null, "index": 6, "isInternal": false, - "x": 347.2075318688385, - "y": 405.4776221508692 + "x": 347.20753, + "y": 405.47762 }, { "body": null, "index": 7, "isInternal": false, - "x": 351.9095318688385, - "y": 403.9496221508692 + "x": 351.90953, + "y": 403.94962 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.6115318688385, - "y": 405.4776221508692 + "x": 356.61153, + "y": 405.47762 }, { "body": null, "index": 9, "isInternal": false, - "x": 359.5175318688385, - "y": 409.4776221508692 + "x": 359.51753, + "y": 409.47762 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6002 }, @@ -54438,11 +54438,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -54464,7 +54464,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.764995375084015, + "speed": 2.765, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54494,20 +54494,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -54522,12 +54522,12 @@ } }, { - "x": 378.9884342624759, - "y": 424.0444711204647 + "x": 378.98843, + "y": 424.04447 }, { - "x": 363.7724342624759, - "y": 408.0444711204647 + "x": 363.77243, + "y": 408.04447 }, { "category": 1, @@ -54544,16 +54544,16 @@ "y": 0 }, { - "x": 371.380434262476, - "y": 416.0444711204647 + "x": 371.38043, + "y": 416.04447 }, { "x": 0, "y": 0 }, { - "x": 371.1540965569831, - "y": 413.523811769165 + "x": 371.1541, + "y": 413.52381 }, { "endCol": 7, @@ -54576,8 +54576,8 @@ "yScale": 1 }, { - "x": 0.1999823324413228, - "y": 2.5379624350678114 + "x": 0.19998, + "y": 2.53796 }, [ { @@ -54615,78 +54615,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 378.9884342624759, - "y": 418.5164711204647 + "x": 378.98843, + "y": 418.51647 }, { "body": null, "index": 1, "isInternal": false, - "x": 376.0824342624759, - "y": 422.5164711204647 + "x": 376.08243, + "y": 422.51647 }, { "body": null, "index": 2, "isInternal": false, - "x": 371.3804342624759, - "y": 424.0444711204647 + "x": 371.38043, + "y": 424.04447 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.6784342624759, - "y": 422.5164711204647 + "x": 366.67843, + "y": 422.51647 }, { "body": null, "index": 4, "isInternal": false, - "x": 363.7724342624759, - "y": 418.5164711204647 + "x": 363.77243, + "y": 418.51647 }, { "body": null, "index": 5, "isInternal": false, - "x": 363.7724342624759, - "y": 413.57247112046474 + "x": 363.77243, + "y": 413.57247 }, { "body": null, "index": 6, "isInternal": false, - "x": 366.6784342624759, - "y": 409.57247112046474 + "x": 366.67843, + "y": 409.57247 }, { "body": null, "index": 7, "isInternal": false, - "x": 371.3804342624759, - "y": 408.0444711204647 + "x": 371.38043, + "y": 408.04447 }, { "body": null, "index": 8, "isInternal": false, - "x": 376.0824342624759, - "y": 409.57247112046474 + "x": 376.08243, + "y": 409.57247 }, { "body": null, "index": 9, "isInternal": false, - "x": 378.9884342624759, - "y": 413.57247112046474 + "x": 378.98843, + "y": 413.57247 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6033 }, @@ -54715,11 +54715,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -54741,7 +54741,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.094762144613162, + "speed": 3.09476, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54771,20 +54771,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -54799,12 +54799,12 @@ } }, { - "x": 398.704935095603, - "y": 423.8913100907717 + "x": 398.70494, + "y": 423.89131 }, { - "x": 383.488935095603, - "y": 407.8913100907717 + "x": 383.48894, + "y": 407.89131 }, { "category": 1, @@ -54821,16 +54821,16 @@ "y": 0 }, { - "x": 391.09693509560316, - "y": 415.89131009077164 + "x": 391.09694, + "y": 415.89131 }, { "x": 0, "y": 0 }, { - "x": 390.8048105904341, - "y": 412.97851778501337 + "x": 390.80481, + "y": 412.97852 }, { "endCol": 8, @@ -54853,8 +54853,8 @@ "yScale": 1 }, { - "x": 0.38425735131892225, - "y": 2.799186685715995 + "x": 0.38426, + "y": 2.79919 }, [ { @@ -54892,78 +54892,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 398.704935095603, - "y": 418.3633100907717 + "x": 398.70494, + "y": 418.36331 }, { "body": null, "index": 1, "isInternal": false, - "x": 395.798935095603, - "y": 422.3633100907717 + "x": 395.79894, + "y": 422.36331 }, { "body": null, "index": 2, "isInternal": false, - "x": 391.096935095603, - "y": 423.8913100907717 + "x": 391.09694, + "y": 423.89131 }, { "body": null, "index": 3, "isInternal": false, - "x": 386.394935095603, - "y": 422.3633100907717 + "x": 386.39494, + "y": 422.36331 }, { "body": null, "index": 4, "isInternal": false, - "x": 383.488935095603, - "y": 418.3633100907717 + "x": 383.48894, + "y": 418.36331 }, { "body": null, "index": 5, "isInternal": false, - "x": 383.488935095603, - "y": 413.4193100907717 + "x": 383.48894, + "y": 413.41931 }, { "body": null, "index": 6, "isInternal": false, - "x": 386.394935095603, - "y": 409.4193100907717 + "x": 386.39494, + "y": 409.41931 }, { "body": null, "index": 7, "isInternal": false, - "x": 391.096935095603, - "y": 407.8913100907717 + "x": 391.09694, + "y": 407.89131 }, { "body": null, "index": 8, "isInternal": false, - "x": 395.798935095603, - "y": 409.4193100907717 + "x": 395.79894, + "y": 409.41931 }, { "body": null, "index": 9, "isInternal": false, - "x": 398.704935095603, - "y": 413.4193100907717 + "x": 398.70494, + "y": 413.41931 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6064 }, @@ -54992,11 +54992,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -55018,7 +55018,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0751115065288253, + "speed": 3.07511, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55048,20 +55048,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -55076,12 +55076,12 @@ } }, { - "x": 418.9700668748452, - "y": 423.46223982569074 + "x": 418.97007, + "y": 423.46224 }, { - "x": 403.7540668748452, - "y": 407.46223982569074 + "x": 403.75407, + "y": 407.46224 }, { "category": 1, @@ -55098,16 +55098,16 @@ "y": 0 }, { - "x": 411.3620668748452, - "y": 415.4622398256908 + "x": 411.36207, + "y": 415.46224 }, { "x": 0, "y": 0 }, { - "x": 411.00985649460625, - "y": 412.49248712380734 + "x": 411.00986, + "y": 412.49249 }, { "endCol": 8, @@ -55130,8 +55130,8 @@ "yScale": 1 }, { - "x": 0.4358876948407442, - "y": 2.8146934288774332 + "x": 0.43589, + "y": 2.81469 }, [ { @@ -55169,78 +55169,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 418.9700668748452, - "y": 417.9342398256907 + "x": 418.97007, + "y": 417.93424 }, { "body": null, "index": 1, "isInternal": false, - "x": 416.0640668748452, - "y": 421.9342398256907 + "x": 416.06407, + "y": 421.93424 }, { "body": null, "index": 2, "isInternal": false, - "x": 411.3620668748452, - "y": 423.46223982569074 + "x": 411.36207, + "y": 423.46224 }, { "body": null, "index": 3, "isInternal": false, - "x": 406.6600668748452, - "y": 421.9342398256907 + "x": 406.66007, + "y": 421.93424 }, { "body": null, "index": 4, "isInternal": false, - "x": 403.7540668748452, - "y": 417.9342398256907 + "x": 403.75407, + "y": 417.93424 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.7540668748452, - "y": 412.99023982569076 + "x": 403.75407, + "y": 412.99024 }, { "body": null, "index": 6, "isInternal": false, - "x": 406.6600668748452, - "y": 408.99023982569076 + "x": 406.66007, + "y": 408.99024 }, { "body": null, "index": 7, "isInternal": false, - "x": 411.3620668748452, - "y": 407.46223982569074 + "x": 411.36207, + "y": 407.46224 }, { "body": null, "index": 8, "isInternal": false, - "x": 416.0640668748452, - "y": 408.99023982569076 + "x": 416.06407, + "y": 408.99024 }, { "body": null, "index": 9, "isInternal": false, - "x": 418.9700668748452, - "y": 412.99023982569076 + "x": 418.97007, + "y": 412.99024 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6095 }, @@ -55269,11 +55269,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -55295,7 +55295,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9337342546666494, + "speed": 2.93373, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55325,20 +55325,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -55353,12 +55353,12 @@ } }, { - "x": 439.6717398252552, - "y": 422.7251817335792 + "x": 439.67174, + "y": 422.72518 }, { - "x": 424.4557398252552, - "y": 406.7251817335792 + "x": 424.45574, + "y": 406.72518 }, { "category": 1, @@ -55375,16 +55375,16 @@ "y": 0 }, { - "x": 432.06373982525514, - "y": 414.7251817335792 + "x": 432.06374, + "y": 414.72518 }, { "x": 0, "y": 0 }, { - "x": 431.5560677289994, - "y": 411.89158702919264 + "x": 431.55607, + "y": 411.89159 }, { "endCol": 9, @@ -55407,8 +55407,8 @@ "yScale": 1 }, { - "x": 0.5666450018230194, - "y": 2.6886437144462434 + "x": 0.56665, + "y": 2.68864 }, [ { @@ -55446,78 +55446,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 439.6717398252552, - "y": 417.19718173357916 + "x": 439.67174, + "y": 417.19718 }, { "body": null, "index": 1, "isInternal": false, - "x": 436.7657398252552, - "y": 421.19718173357916 + "x": 436.76574, + "y": 421.19718 }, { "body": null, "index": 2, "isInternal": false, - "x": 432.0637398252552, - "y": 422.7251817335792 + "x": 432.06374, + "y": 422.72518 }, { "body": null, "index": 3, "isInternal": false, - "x": 427.3617398252552, - "y": 421.19718173357916 + "x": 427.36174, + "y": 421.19718 }, { "body": null, "index": 4, "isInternal": false, - "x": 424.4557398252552, - "y": 417.19718173357916 + "x": 424.45574, + "y": 417.19718 }, { "body": null, "index": 5, "isInternal": false, - "x": 424.4557398252552, - "y": 412.2531817335792 + "x": 424.45574, + "y": 412.25318 }, { "body": null, "index": 6, "isInternal": false, - "x": 427.3617398252552, - "y": 408.2531817335792 + "x": 427.36174, + "y": 408.25318 }, { "body": null, "index": 7, "isInternal": false, - "x": 432.0637398252552, - "y": 406.7251817335792 + "x": 432.06374, + "y": 406.72518 }, { "body": null, "index": 8, "isInternal": false, - "x": 436.7657398252552, - "y": 408.2531817335792 + "x": 436.76574, + "y": 408.25318 }, { "body": null, "index": 9, "isInternal": false, - "x": 439.6717398252552, - "y": 412.2531817335792 + "x": 439.67174, + "y": 412.25318 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6126 }, @@ -55546,11 +55546,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -55572,7 +55572,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1428557012550606, + "speed": 2.14286, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55602,20 +55602,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -55630,12 +55630,12 @@ } }, { - "x": 460.5292249711946, - "y": 419.10987773653835 + "x": 460.52922, + "y": 419.10988 }, { - "x": 445.3132249711946, - "y": 403.10987773653835 + "x": 445.31322, + "y": 403.10988 }, { "category": 1, @@ -55652,16 +55652,16 @@ "y": 0 }, { - "x": 452.9212249711946, - "y": 411.1098777365383 + "x": 452.92122, + "y": 411.10988 }, { "x": 0, "y": 0 }, { - "x": 452.2548284040287, - "y": 409.21808065735763 + "x": 452.25483, + "y": 409.21808 }, { "endCol": 9, @@ -55684,8 +55684,8 @@ "yScale": 1 }, { - "x": 0.6272989204821897, - "y": 1.9923594251457644 + "x": 0.6273, + "y": 1.99236 }, [ { @@ -55723,78 +55723,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 460.5292249711946, - "y": 413.58187773653833 + "x": 460.52922, + "y": 413.58188 }, { "body": null, "index": 1, "isInternal": false, - "x": 457.6232249711946, - "y": 417.58187773653833 + "x": 457.62322, + "y": 417.58188 }, { "body": null, "index": 2, "isInternal": false, - "x": 452.9212249711946, - "y": 419.10987773653835 + "x": 452.92122, + "y": 419.10988 }, { "body": null, "index": 3, "isInternal": false, - "x": 448.2192249711946, - "y": 417.58187773653833 + "x": 448.21922, + "y": 417.58188 }, { "body": null, "index": 4, "isInternal": false, - "x": 445.3132249711946, - "y": 413.58187773653833 + "x": 445.31322, + "y": 413.58188 }, { "body": null, "index": 5, "isInternal": false, - "x": 445.3132249711946, - "y": 408.63787773653837 + "x": 445.31322, + "y": 408.63788 }, { "body": null, "index": 6, "isInternal": false, - "x": 448.2192249711946, - "y": 404.63787773653837 + "x": 448.21922, + "y": 404.63788 }, { "body": null, "index": 7, "isInternal": false, - "x": 452.9212249711946, - "y": 403.10987773653835 + "x": 452.92122, + "y": 403.10988 }, { "body": null, "index": 8, "isInternal": false, - "x": 457.6232249711946, - "y": 404.63787773653837 + "x": 457.62322, + "y": 404.63788 }, { "body": null, "index": 9, "isInternal": false, - "x": 460.5292249711946, - "y": 408.63787773653837 + "x": 460.52922, + "y": 408.63788 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6157 }, @@ -55823,11 +55823,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -55849,7 +55849,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5563500072920011, + "speed": 1.55635, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55879,20 +55879,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -55907,12 +55907,12 @@ } }, { - "x": 478.98710979286517, - "y": 408.4691926261623 + "x": 478.98711, + "y": 408.46919 }, { - "x": 463.77110979286516, - "y": 392.4691926261623 + "x": 463.77111, + "y": 392.46919 }, { "category": 1, @@ -55929,16 +55929,16 @@ "y": 0 }, { - "x": 471.3791097928652, - "y": 400.46919262616234 + "x": 471.37911, + "y": 400.46919 }, { "x": 0, "y": 0 }, { - "x": 470.54780228021986, - "y": 398.8420423144896 + "x": 470.5478, + "y": 398.84204 }, { "endCol": 9, @@ -55961,8 +55961,8 @@ "yScale": 1 }, { - "x": 0.623392964168545, - "y": 2.06260583714851 + "x": 0.62339, + "y": 2.06261 }, [ { @@ -56000,78 +56000,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.98710979286517, - "y": 402.94119262616226 + "x": 478.98711, + "y": 402.94119 }, { "body": null, "index": 1, "isInternal": false, - "x": 476.08110979286516, - "y": 406.94119262616226 + "x": 476.08111, + "y": 406.94119 }, { "body": null, "index": 2, "isInternal": false, - "x": 471.37910979286517, - "y": 408.4691926261623 + "x": 471.37911, + "y": 408.46919 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.67710979286517, - "y": 406.94119262616226 + "x": 466.67711, + "y": 406.94119 }, { "body": null, "index": 4, "isInternal": false, - "x": 463.77110979286516, - "y": 402.94119262616226 + "x": 463.77111, + "y": 402.94119 }, { "body": null, "index": 5, "isInternal": false, - "x": 463.77110979286516, - "y": 397.9971926261623 + "x": 463.77111, + "y": 397.99719 }, { "body": null, "index": 6, "isInternal": false, - "x": 466.67710979286517, - "y": 393.9971926261623 + "x": 466.67711, + "y": 393.99719 }, { "body": null, "index": 7, "isInternal": false, - "x": 471.37910979286517, - "y": 392.4691926261623 + "x": 471.37911, + "y": 392.46919 }, { "body": null, "index": 8, "isInternal": false, - "x": 476.08110979286516, - "y": 393.9971926261623 + "x": 476.08111, + "y": 393.99719 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.98710979286517, - "y": 397.9971926261623 + "x": 478.98711, + "y": 397.99719 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6188 }, @@ -56100,11 +56100,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -56126,7 +56126,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.074304355542074, + "speed": 1.0743, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56156,20 +56156,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -56184,12 +56184,12 @@ } }, { - "x": 499.66816681437797, - "y": 405.8782646288385 + "x": 499.66817, + "y": 405.87826 }, { - "x": 484.45216681437796, - "y": 389.8782646288385 + "x": 484.45217, + "y": 389.87826 }, { "category": 1, @@ -56206,16 +56206,16 @@ "y": 0 }, { - "x": 492.060166814378, - "y": 397.87826462883845 + "x": 492.06017, + "y": 397.87826 }, { "x": 0, "y": 0 }, { - "x": 491.22144013037183, - "y": 396.82033204183455 + "x": 491.22144, + "y": 396.82033 }, { "endCol": 10, @@ -56238,8 +56238,8 @@ "yScale": 1 }, { - "x": 0.6299525589702171, - "y": 1.5766271446358928 + "x": 0.62995, + "y": 1.57663 }, [ { @@ -56277,78 +56277,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 499.66816681437797, - "y": 400.3502646288385 + "x": 499.66817, + "y": 400.35026 }, { "body": null, "index": 1, "isInternal": false, - "x": 496.76216681437796, - "y": 404.3502646288385 + "x": 496.76217, + "y": 404.35026 }, { "body": null, "index": 2, "isInternal": false, - "x": 492.06016681437796, - "y": 405.8782646288385 + "x": 492.06017, + "y": 405.87826 }, { "body": null, "index": 3, "isInternal": false, - "x": 487.35816681437797, - "y": 404.3502646288385 + "x": 487.35817, + "y": 404.35026 }, { "body": null, "index": 4, "isInternal": false, - "x": 484.45216681437796, - "y": 400.3502646288385 + "x": 484.45217, + "y": 400.35026 }, { "body": null, "index": 5, "isInternal": false, - "x": 484.45216681437796, - "y": 395.4062646288385 + "x": 484.45217, + "y": 395.40626 }, { "body": null, "index": 6, "isInternal": false, - "x": 487.35816681437797, - "y": 391.4062646288385 + "x": 487.35817, + "y": 391.40626 }, { "body": null, "index": 7, "isInternal": false, - "x": 492.06016681437796, - "y": 389.8782646288385 + "x": 492.06017, + "y": 389.87826 }, { "body": null, "index": 8, "isInternal": false, - "x": 496.76216681437796, - "y": 391.4062646288385 + "x": 496.76217, + "y": 391.40626 }, { "body": null, "index": 9, "isInternal": false, - "x": 499.66816681437797, - "y": 395.4062646288385 + "x": 499.66817, + "y": 395.40626 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6219 }, @@ -56377,11 +56377,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -56403,7 +56403,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.973652430815986, + "speed": 0.97365, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56433,20 +56433,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -56461,12 +56461,12 @@ } }, { - "x": 520.2404656307632, - "y": 405.55264320728156 + "x": 520.24047, + "y": 405.55264 }, { - "x": 505.02446563076313, - "y": 389.55264320728156 + "x": 505.02447, + "y": 389.55264 }, { "category": 1, @@ -56483,16 +56483,16 @@ "y": 0 }, { - "x": 512.6324656307634, - "y": 397.5526432072817 + "x": 512.63247, + "y": 397.55264 }, { "x": 0, "y": 0 }, { - "x": 511.8629814145553, - "y": 396.68235723875483 + "x": 511.86298, + "y": 396.68236 }, { "endCol": 10, @@ -56515,8 +56515,8 @@ "yScale": 1 }, { - "x": 0.5834525589673376, - "y": 1.4677978785189794 + "x": 0.58345, + "y": 1.4678 }, [ { @@ -56554,78 +56554,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 520.2404656307632, - "y": 400.02464320728154 + "x": 520.24047, + "y": 400.02464 }, { "body": null, "index": 1, "isInternal": false, - "x": 517.3344656307632, - "y": 404.02464320728154 + "x": 517.33447, + "y": 404.02464 }, { "body": null, "index": 2, "isInternal": false, - "x": 512.6324656307631, - "y": 405.55264320728156 + "x": 512.63247, + "y": 405.55264 }, { "body": null, "index": 3, "isInternal": false, - "x": 507.93046563076314, - "y": 404.02464320728154 + "x": 507.93047, + "y": 404.02464 }, { "body": null, "index": 4, "isInternal": false, - "x": 505.02446563076313, - "y": 400.02464320728154 + "x": 505.02447, + "y": 400.02464 }, { "body": null, "index": 5, "isInternal": false, - "x": 505.02446563076313, - "y": 395.0806432072816 + "x": 505.02447, + "y": 395.08064 }, { "body": null, "index": 6, "isInternal": false, - "x": 507.93046563076314, - "y": 391.0806432072816 + "x": 507.93047, + "y": 391.08064 }, { "body": null, "index": 7, "isInternal": false, - "x": 512.6324656307631, - "y": 389.55264320728156 + "x": 512.63247, + "y": 389.55264 }, { "body": null, "index": 8, "isInternal": false, - "x": 517.3344656307632, - "y": 391.0806432072816 + "x": 517.33447, + "y": 391.08064 }, { "body": null, "index": 9, "isInternal": false, - "x": 520.2404656307632, - "y": 395.0806432072816 + "x": 520.24047, + "y": 395.08064 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6250 }, @@ -56654,11 +56654,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -56680,7 +56680,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.23295909893316, + "speed": 1.23296, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56710,20 +56710,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -56738,12 +56738,12 @@ } }, { - "x": 540.5134741211247, - "y": 407.3986761135537 + "x": 540.51347, + "y": 407.39868 }, { - "x": 525.2974741211248, - "y": 391.3986761135537 + "x": 525.29747, + "y": 391.39868 }, { "category": 1, @@ -56760,16 +56760,16 @@ "y": 0 }, { - "x": 532.9054741211243, - "y": 399.3986761135536 + "x": 532.90547, + "y": 399.39868 }, { "x": 0, "y": 0 }, { - "x": 532.3451183777108, - "y": 398.2775511330395 + "x": 532.34512, + "y": 398.27755 }, { "endCol": 11, @@ -56792,8 +56792,8 @@ "yScale": 1 }, { - "x": 0.43384485531714745, - "y": 1.7162269853176326 + "x": 0.43384, + "y": 1.71623 }, [ { @@ -56831,78 +56831,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 540.5134741211247, - "y": 401.87067611355366 + "x": 540.51347, + "y": 401.87068 }, { "body": null, "index": 1, "isInternal": false, - "x": 537.6074741211247, - "y": 405.87067611355366 + "x": 537.60747, + "y": 405.87068 }, { "body": null, "index": 2, "isInternal": false, - "x": 532.9054741211247, - "y": 407.3986761135537 + "x": 532.90547, + "y": 407.39868 }, { "body": null, "index": 3, "isInternal": false, - "x": 528.2034741211247, - "y": 405.87067611355366 + "x": 528.20347, + "y": 405.87068 }, { "body": null, "index": 4, "isInternal": false, - "x": 525.2974741211248, - "y": 401.87067611355366 + "x": 525.29747, + "y": 401.87068 }, { "body": null, "index": 5, "isInternal": false, - "x": 525.2974741211248, - "y": 396.9266761135537 + "x": 525.29747, + "y": 396.92668 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.2034741211247, - "y": 392.9266761135537 + "x": 528.20347, + "y": 392.92668 }, { "body": null, "index": 7, "isInternal": false, - "x": 532.9054741211247, - "y": 391.3986761135537 + "x": 532.90547, + "y": 391.39868 }, { "body": null, "index": 8, "isInternal": false, - "x": 537.6074741211247, - "y": 392.9266761135537 + "x": 537.60747, + "y": 392.92668 }, { "body": null, "index": 9, "isInternal": false, - "x": 540.5134741211247, - "y": 396.9266761135537 + "x": 540.51347, + "y": 396.92668 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6281 }, @@ -56931,11 +56931,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -56957,7 +56957,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.085387842838437, + "speed": 2.08539, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56987,20 +56987,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -57015,12 +57015,12 @@ } }, { - "x": 557.1391758104397, - "y": 418.9340724529917 + "x": 557.13918, + "y": 418.93407 }, { - "x": 541.9231758104398, - "y": 402.9340724529917 + "x": 541.92318, + "y": 402.93407 }, { "category": 1, @@ -57037,16 +57037,16 @@ "y": 0 }, { - "x": 549.5311758104401, - "y": 410.93407245299176 + "x": 549.53118, + "y": 410.93407 }, { "x": 0, "y": 0 }, { - "x": 549.7679304135768, - "y": 409.14492018149565 + "x": 549.76793, + "y": 409.14492 }, { "endCol": 11, @@ -57069,8 +57069,8 @@ "yScale": 1 }, { - "x": -0.26778333193146864, - "y": 2.0134180410951785 + "x": -0.26778, + "y": 2.01342 }, [ { @@ -57108,78 +57108,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 557.1391758104397, - "y": 413.4060724529917 + "x": 557.13918, + "y": 413.40607 }, { "body": null, "index": 1, "isInternal": false, - "x": 554.2331758104398, - "y": 417.4060724529917 + "x": 554.23318, + "y": 417.40607 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5311758104398, - "y": 418.9340724529917 + "x": 549.53118, + "y": 418.93407 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.8291758104398, - "y": 417.4060724529917 + "x": 544.82918, + "y": 417.40607 }, { "body": null, "index": 4, "isInternal": false, - "x": 541.9231758104398, - "y": 413.4060724529917 + "x": 541.92318, + "y": 413.40607 }, { "body": null, "index": 5, "isInternal": false, - "x": 541.9231758104398, - "y": 408.4620724529917 + "x": 541.92318, + "y": 408.46207 }, { "body": null, "index": 6, "isInternal": false, - "x": 544.8291758104398, - "y": 404.4620724529917 + "x": 544.82918, + "y": 404.46207 }, { "body": null, "index": 7, "isInternal": false, - "x": 549.5311758104398, - "y": 402.9340724529917 + "x": 549.53118, + "y": 402.93407 }, { "body": null, "index": 8, "isInternal": false, - "x": 554.2331758104398, - "y": 404.4620724529917 + "x": 554.23318, + "y": 404.46207 }, { "body": null, "index": 9, "isInternal": false, - "x": 557.1391758104397, - "y": 408.4620724529917 + "x": 557.13918, + "y": 408.46207 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6312 }, @@ -57208,11 +57208,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -57234,7 +57234,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7464186420834835, + "speed": 2.74642, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57264,20 +57264,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -57292,12 +57292,12 @@ } }, { - "x": 577.2629816530033, - "y": 422.02845595371645 + "x": 577.26298, + "y": 422.02846 }, { - "x": 562.0469816530034, - "y": 406.02845595371645 + "x": 562.04698, + "y": 406.02846 }, { "category": 1, @@ -57314,16 +57314,16 @@ "y": 0 }, { - "x": 569.6549816530032, - "y": 414.02845595371645 + "x": 569.65498, + "y": 414.02846 }, { "x": 0, "y": 0 }, { - "x": 570.0930434189346, - "y": 411.42146269014887 + "x": 570.09304, + "y": 411.42146 }, { "endCol": 12, @@ -57346,8 +57346,8 @@ "yScale": 1 }, { - "x": -0.43445654616391494, - "y": 2.570741663869569 + "x": -0.43446, + "y": 2.57074 }, [ { @@ -57385,78 +57385,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 577.2629816530033, - "y": 416.5004559537164 + "x": 577.26298, + "y": 416.50046 }, { "body": null, "index": 1, "isInternal": false, - "x": 574.3569816530033, - "y": 420.5004559537164 + "x": 574.35698, + "y": 420.50046 }, { "body": null, "index": 2, "isInternal": false, - "x": 569.6549816530033, - "y": 422.02845595371645 + "x": 569.65498, + "y": 422.02846 }, { "body": null, "index": 3, "isInternal": false, - "x": 564.9529816530033, - "y": 420.5004559537164 + "x": 564.95298, + "y": 420.50046 }, { "body": null, "index": 4, "isInternal": false, - "x": 562.0469816530034, - "y": 416.5004559537164 + "x": 562.04698, + "y": 416.50046 }, { "body": null, "index": 5, "isInternal": false, - "x": 562.0469816530034, - "y": 411.55645595371647 + "x": 562.04698, + "y": 411.55646 }, { "body": null, "index": 6, "isInternal": false, - "x": 564.9529816530033, - "y": 407.55645595371647 + "x": 564.95298, + "y": 407.55646 }, { "body": null, "index": 7, "isInternal": false, - "x": 569.6549816530033, - "y": 406.02845595371645 + "x": 569.65498, + "y": 406.02846 }, { "body": null, "index": 8, "isInternal": false, - "x": 574.3569816530033, - "y": 407.55645595371647 + "x": 574.35698, + "y": 407.55646 }, { "body": null, "index": 9, "isInternal": false, - "x": 577.2629816530033, - "y": 411.55645595371647 + "x": 577.26298, + "y": 411.55646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6343 }, @@ -57485,11 +57485,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -57511,7 +57511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8093024732351912, + "speed": 2.8093, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57541,20 +57541,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -57569,12 +57569,12 @@ } }, { - "x": 597.5594039136137, - "y": 422.2633240172104 + "x": 597.5594, + "y": 422.26332 }, { - "x": 582.3434039136138, - "y": 406.2633240172104 + "x": 582.3434, + "y": 406.26332 }, { "category": 1, @@ -57591,16 +57591,16 @@ "y": 0 }, { - "x": 589.9514039136135, - "y": 414.2633240172104 + "x": 589.9514, + "y": 414.26332 }, { "x": 0, "y": 0 }, { - "x": 590.4198598029528, - "y": 411.56269807129286 + "x": 590.41986, + "y": 411.5627 }, { "endCol": 12, @@ -57623,8 +57623,8 @@ "yScale": 1 }, { - "x": -0.46308779436265013, - "y": 2.637118473117937 + "x": -0.46309, + "y": 2.63712 }, [ { @@ -57662,78 +57662,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 597.5594039136137, - "y": 416.73532401721036 + "x": 597.5594, + "y": 416.73532 }, { "body": null, "index": 1, "isInternal": false, - "x": 594.6534039136137, - "y": 420.73532401721036 + "x": 594.6534, + "y": 420.73532 }, { "body": null, "index": 2, "isInternal": false, - "x": 589.9514039136137, - "y": 422.2633240172104 + "x": 589.9514, + "y": 422.26332 }, { "body": null, "index": 3, "isInternal": false, - "x": 585.2494039136137, - "y": 420.73532401721036 + "x": 585.2494, + "y": 420.73532 }, { "body": null, "index": 4, "isInternal": false, - "x": 582.3434039136138, - "y": 416.73532401721036 + "x": 582.3434, + "y": 416.73532 }, { "body": null, "index": 5, "isInternal": false, - "x": 582.3434039136138, - "y": 411.7913240172104 + "x": 582.3434, + "y": 411.79132 }, { "body": null, "index": 6, "isInternal": false, - "x": 585.2494039136137, - "y": 407.7913240172104 + "x": 585.2494, + "y": 407.79132 }, { "body": null, "index": 7, "isInternal": false, - "x": 589.9514039136137, - "y": 406.2633240172104 + "x": 589.9514, + "y": 406.26332 }, { "body": null, "index": 8, "isInternal": false, - "x": 594.6534039136137, - "y": 407.7913240172104 + "x": 594.6534, + "y": 407.79132 }, { "body": null, "index": 9, "isInternal": false, - "x": 597.5594039136137, - "y": 411.7913240172104 + "x": 597.5594, + "y": 411.79132 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6374 }, @@ -57762,11 +57762,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -57788,7 +57788,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.411449770979547, + "speed": 3.41145, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57818,20 +57818,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -57846,12 +57846,12 @@ } }, { - "x": 232.2633580452699, - "y": 442.60105470806667 + "x": 232.26336, + "y": 442.60105 }, { - "x": 217.0473580452699, - "y": 426.60105470806667 + "x": 217.04736, + "y": 426.60105 }, { "category": 1, @@ -57868,16 +57868,16 @@ "y": 0 }, { - "x": 224.65535804526982, - "y": 434.60105470806656 + "x": 224.65536, + "y": 434.60105 }, { "x": 0, "y": 0 }, { - "x": 221.64791884643353, - "y": 432.75939356826973 + "x": 221.64792, + "y": 432.75939 }, { "endCol": 4, @@ -57900,8 +57900,8 @@ "yScale": 1 }, { - "x": 3.0602549931160183, - "y": 1.8050100775022315 + "x": 3.06025, + "y": 1.80501 }, [ { @@ -57939,78 +57939,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 232.2633580452699, - "y": 437.07305470806665 + "x": 232.26336, + "y": 437.07305 }, { "body": null, "index": 1, "isInternal": false, - "x": 229.3573580452699, - "y": 441.07305470806665 + "x": 229.35736, + "y": 441.07305 }, { "body": null, "index": 2, "isInternal": false, - "x": 224.6553580452699, - "y": 442.60105470806667 + "x": 224.65536, + "y": 442.60105 }, { "body": null, "index": 3, "isInternal": false, - "x": 219.9533580452699, - "y": 441.07305470806665 + "x": 219.95336, + "y": 441.07305 }, { "body": null, "index": 4, "isInternal": false, - "x": 217.0473580452699, - "y": 437.07305470806665 + "x": 217.04736, + "y": 437.07305 }, { "body": null, "index": 5, "isInternal": false, - "x": 217.0473580452699, - "y": 432.1290547080667 + "x": 217.04736, + "y": 432.12905 }, { "body": null, "index": 6, "isInternal": false, - "x": 219.9533580452699, - "y": 428.1290547080667 + "x": 219.95336, + "y": 428.12905 }, { "body": null, "index": 7, "isInternal": false, - "x": 224.6553580452699, - "y": 426.60105470806667 + "x": 224.65536, + "y": 426.60105 }, { "body": null, "index": 8, "isInternal": false, - "x": 229.3573580452699, - "y": 428.1290547080667 + "x": 229.35736, + "y": 428.12905 }, { "body": null, "index": 9, "isInternal": false, - "x": 232.2633580452699, - "y": 432.1290547080667 + "x": 232.26336, + "y": 432.12905 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6405 }, @@ -58039,11 +58039,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -58065,7 +58065,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0478235636788455, + "speed": 3.04782, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58095,20 +58095,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -58123,12 +58123,12 @@ } }, { - "x": 256.5467319596311, - "y": 439.26912542558364 + "x": 256.54673, + "y": 439.26913 }, { - "x": 238.44597878660997, - "y": 422.54617263773486 + "x": 238.44598, + "y": 422.54617 }, { "category": 1, @@ -58145,16 +58145,16 @@ "y": 0 }, { - "x": 246.05397878661003, - "y": 430.5461726377348 + "x": 246.05398, + "y": 430.54617 }, { "x": 0, "y": 0 }, { - "x": 244.45045718527675, - "y": 431.6529379566994 + "x": 244.45046, + "y": 431.65294 }, { "endCol": 5, @@ -58177,8 +58177,8 @@ "yScale": 1 }, { - "x": 1.60352852848942, - "y": -1.1067701001513228 + "x": 1.60353, + "y": -1.10677 }, [ { @@ -58216,78 +58216,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 253.66197878660998, - "y": 433.01817263773484 + "x": 253.66198, + "y": 433.01817 }, { "body": null, "index": 1, "isInternal": false, - "x": 250.75597878660997, - "y": 437.01817263773484 + "x": 250.75598, + "y": 437.01817 }, { "body": null, "index": 2, "isInternal": false, - "x": 246.05397878660997, - "y": 438.54617263773486 + "x": 246.05398, + "y": 438.54617 }, { "body": null, "index": 3, "isInternal": false, - "x": 241.35197878660998, - "y": 437.01817263773484 + "x": 241.35198, + "y": 437.01817 }, { "body": null, "index": 4, "isInternal": false, - "x": 238.44597878660997, - "y": 433.01817263773484 + "x": 238.44598, + "y": 433.01817 }, { "body": null, "index": 5, "isInternal": false, - "x": 238.44597878660997, - "y": 428.0741726377349 + "x": 238.44598, + "y": 428.07417 }, { "body": null, "index": 6, "isInternal": false, - "x": 241.35197878660998, - "y": 424.0741726377349 + "x": 241.35198, + "y": 424.07417 }, { "body": null, "index": 7, "isInternal": false, - "x": 246.05397878660997, - "y": 422.54617263773486 + "x": 246.05398, + "y": 422.54617 }, { "body": null, "index": 8, "isInternal": false, - "x": 250.75597878660997, - "y": 424.0741726377349 + "x": 250.75598, + "y": 424.07417 }, { "body": null, "index": 9, "isInternal": false, - "x": 253.66197878660998, - "y": 428.0741726377349 + "x": 253.66198, + "y": 428.07417 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6436 }, @@ -58316,11 +58316,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -58342,7 +58342,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9272525804679776, + "speed": 1.92725, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58372,20 +58372,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -58400,12 +58400,12 @@ } }, { - "x": 276.0052415456919, - "y": 428.1965115785269 + "x": 276.00524, + "y": 428.19651 }, { - "x": 258.52501267838636, - "y": 411.7065480713537 + "x": 258.52501, + "y": 411.70655 }, { "category": 1, @@ -58422,16 +58422,16 @@ "y": 0 }, { - "x": 266.1330126783865, - "y": 419.7065480713537 + "x": 266.13301, + "y": 419.70655 }, { "x": 0, "y": 0 }, { - "x": 264.43108821550175, - "y": 420.3520014846332 + "x": 264.43109, + "y": 420.352 }, { "endCol": 5, @@ -58454,8 +58454,8 @@ "yScale": 1 }, { - "x": 1.7019323328824498, - "y": -0.6454563979694967 + "x": 1.70193, + "y": -0.64546 }, [ { @@ -58493,78 +58493,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 273.7410126783864, - "y": 422.1785480713537 + "x": 273.74101, + "y": 422.17855 }, { "body": null, "index": 1, "isInternal": false, - "x": 270.8350126783864, - "y": 426.1785480713537 + "x": 270.83501, + "y": 426.17855 }, { "body": null, "index": 2, "isInternal": false, - "x": 266.1330126783865, - "y": 427.7065480713537 + "x": 266.13301, + "y": 427.70655 }, { "body": null, "index": 3, "isInternal": false, - "x": 261.4310126783864, - "y": 426.1785480713537 + "x": 261.43101, + "y": 426.17855 }, { "body": null, "index": 4, "isInternal": false, - "x": 258.52501267838636, - "y": 422.1785480713537 + "x": 258.52501, + "y": 422.17855 }, { "body": null, "index": 5, "isInternal": false, - "x": 258.52501267838636, - "y": 417.23454807135374 + "x": 258.52501, + "y": 417.23455 }, { "body": null, "index": 6, "isInternal": false, - "x": 261.4310126783864, - "y": 413.23454807135374 + "x": 261.43101, + "y": 413.23455 }, { "body": null, "index": 7, "isInternal": false, - "x": 266.1330126783865, - "y": 411.7065480713537 + "x": 266.13301, + "y": 411.70655 }, { "body": null, "index": 8, "isInternal": false, - "x": 270.8350126783864, - "y": 413.23454807135374 + "x": 270.83501, + "y": 413.23455 }, { "body": null, "index": 9, "isInternal": false, - "x": 273.7410126783864, - "y": 417.23454807135374 + "x": 273.74101, + "y": 417.23455 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6467 }, @@ -58593,11 +58593,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -58619,7 +58619,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2276396789041704, + "speed": 1.22764, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58649,20 +58649,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -58677,12 +58677,12 @@ } }, { - "x": 296.26498291215864, - "y": 422.46111823971836 + "x": 296.26498, + "y": 422.46112 }, { - "x": 279.65384118933935, - "y": 405.59731117301277 + "x": 279.65384, + "y": 405.59731 }, { "category": 1, @@ -58699,16 +58699,16 @@ "y": 0 }, { - "x": 287.2618411893391, - "y": 413.59731117301277 + "x": 287.26184, + "y": 413.59731 }, { "x": 0, "y": 0 }, { - "x": 286.1579672027878, - "y": 413.73136742888806 + "x": 286.15797, + "y": 413.73137 }, { "endCol": 6, @@ -58731,8 +58731,8 @@ "yScale": 1 }, { - "x": 1.1038823421239385, - "y": -0.13405727058966477 + "x": 1.10388, + "y": -0.13406 }, [ { @@ -58770,78 +58770,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 294.86984118933935, - "y": 416.06931117301275 + "x": 294.86984, + "y": 416.06931 }, { "body": null, "index": 1, "isInternal": false, - "x": 291.96384118933935, - "y": 420.06931117301275 + "x": 291.96384, + "y": 420.06931 }, { "body": null, "index": 2, "isInternal": false, - "x": 287.26184118933935, - "y": 421.59731117301277 + "x": 287.26184, + "y": 421.59731 }, { "body": null, "index": 3, "isInternal": false, - "x": 282.55984118933935, - "y": 420.06931117301275 + "x": 282.55984, + "y": 420.06931 }, { "body": null, "index": 4, "isInternal": false, - "x": 279.65384118933935, - "y": 416.06931117301275 + "x": 279.65384, + "y": 416.06931 }, { "body": null, "index": 5, "isInternal": false, - "x": 279.65384118933935, - "y": 411.1253111730128 + "x": 279.65384, + "y": 411.12531 }, { "body": null, "index": 6, "isInternal": false, - "x": 282.55984118933935, - "y": 407.1253111730128 + "x": 282.55984, + "y": 407.12531 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.26184118933935, - "y": 405.59731117301277 + "x": 287.26184, + "y": 405.59731 }, { "body": null, "index": 8, "isInternal": false, - "x": 291.96384118933935, - "y": 407.1253111730128 + "x": 291.96384, + "y": 407.12531 }, { "body": null, "index": 9, "isInternal": false, - "x": 294.86984118933935, - "y": 411.1253111730128 + "x": 294.86984, + "y": 411.12531 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6498 }, @@ -58870,11 +58870,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -58896,7 +58896,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7820210501931761, + "speed": 0.78202, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58926,20 +58926,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -58954,12 +58954,12 @@ } }, { - "x": 316.58667614420415, - "y": 421.53820477719546 + "x": 316.58668, + "y": 421.5382 }, { - "x": 300.5195223171419, - "y": 404.8662110248744 + "x": 300.51952, + "y": 404.86621 }, { "category": 1, @@ -58976,16 +58976,16 @@ "y": 0 }, { - "x": 308.127522317142, - "y": 412.8662110248743 + "x": 308.12752, + "y": 412.86621 }, { "x": 0, "y": 0 }, { - "x": 307.29153309381076, - "y": 412.7646871312078 + "x": 307.29153, + "y": 412.76469 }, { "endCol": 6, @@ -59008,8 +59008,8 @@ "yScale": 1 }, { - "x": 0.8359975789038003, - "y": 0.1015249083808385 + "x": 0.836, + "y": 0.10152 }, [ { @@ -59047,78 +59047,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.7355223171419, - "y": 415.3382110248744 + "x": 315.73552, + "y": 415.33821 }, { "body": null, "index": 1, "isInternal": false, - "x": 312.8295223171419, - "y": 419.3382110248744 + "x": 312.82952, + "y": 419.33821 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.1275223171419, - "y": 420.8662110248744 + "x": 308.12752, + "y": 420.86621 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.4255223171419, - "y": 419.3382110248744 + "x": 303.42552, + "y": 419.33821 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.5195223171419, - "y": 415.3382110248744 + "x": 300.51952, + "y": 415.33821 }, { "body": null, "index": 5, "isInternal": false, - "x": 300.5195223171419, - "y": 410.39421102487444 + "x": 300.51952, + "y": 410.39421 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.4255223171419, - "y": 406.39421102487444 + "x": 303.42552, + "y": 406.39421 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.1275223171419, - "y": 404.8662110248744 + "x": 308.12752, + "y": 404.86621 }, { "body": null, "index": 8, "isInternal": false, - "x": 312.8295223171419, - "y": 406.39421102487444 + "x": 312.82952, + "y": 406.39421 }, { "body": null, "index": 9, "isInternal": false, - "x": 315.7355223171419, - "y": 410.39421102487444 + "x": 315.73552, + "y": 410.39421 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6529 }, @@ -59147,11 +59147,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -59173,7 +59173,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0020749386675312, + "speed": 1.00207, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59203,20 +59203,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -59231,12 +59231,12 @@ } }, { - "x": 301.804444373905, - "y": 405.39572191075064 + "x": 301.80444, + "y": 405.39572 }, { - "x": 286.588444373905, - "y": 389.39572191075064 + "x": 286.58844, + "y": 389.39572 }, { "category": 1, @@ -59253,16 +59253,16 @@ "y": 0 }, { - "x": 294.1964443739049, - "y": 397.39572191075064 + "x": 294.19644, + "y": 397.39572 }, { "x": 0, "y": 0 }, { - "x": 294.6529280265224, - "y": 396.28159117164563 + "x": 294.65293, + "y": 396.28159 }, { "endCol": 6, @@ -59285,8 +59285,8 @@ "yScale": 1 }, { - "x": -0.49615151771479304, - "y": 1.0690474973145 + "x": -0.49615, + "y": 1.06905 }, [ { @@ -59324,78 +59324,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 301.804444373905, - "y": 399.8677219107506 + "x": 301.80444, + "y": 399.86772 }, { "body": null, "index": 1, "isInternal": false, - "x": 298.8984443739051, - "y": 403.8677219107506 + "x": 298.89844, + "y": 403.86772 }, { "body": null, "index": 2, "isInternal": false, - "x": 294.1964443739051, - "y": 405.39572191075064 + "x": 294.19644, + "y": 405.39572 }, { "body": null, "index": 3, "isInternal": false, - "x": 289.4944443739051, - "y": 403.8677219107506 + "x": 289.49444, + "y": 403.86772 }, { "body": null, "index": 4, "isInternal": false, - "x": 286.588444373905, - "y": 399.8677219107506 + "x": 286.58844, + "y": 399.86772 }, { "body": null, "index": 5, "isInternal": false, - "x": 286.588444373905, - "y": 394.92372191075066 + "x": 286.58844, + "y": 394.92372 }, { "body": null, "index": 6, "isInternal": false, - "x": 289.4944443739051, - "y": 390.92372191075066 + "x": 289.49444, + "y": 390.92372 }, { "body": null, "index": 7, "isInternal": false, - "x": 294.1964443739051, - "y": 389.39572191075064 + "x": 294.19644, + "y": 389.39572 }, { "body": null, "index": 8, "isInternal": false, - "x": 298.8984443739051, - "y": 390.92372191075066 + "x": 298.89844, + "y": 390.92372 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.804444373905, - "y": 394.92372191075066 + "x": 301.80444, + "y": 394.92372 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6560 }, @@ -59424,11 +59424,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -59450,7 +59450,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4458859350793418, + "speed": 0.44589, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59480,20 +59480,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -59508,12 +59508,12 @@ } }, { - "x": 319.55970075011555, - "y": 416.5083279218953 + "x": 319.5597, + "y": 416.50833 }, { - "x": 304.34370075011554, - "y": 400.5083279218953 + "x": 304.3437, + "y": 400.50833 }, { "category": 1, @@ -59530,16 +59530,16 @@ "y": 0 }, { - "x": 311.95170075011555, - "y": 408.5083279218953 + "x": 311.9517, + "y": 408.50833 }, { "x": 0, "y": 0 }, { - "x": 312.04692368946127, - "y": 408.56936095391535 + "x": 312.04692, + "y": 408.56936 }, { "endCol": 6, @@ -59562,8 +59562,8 @@ "yScale": 1 }, { - "x": 0.006825839575185455, - "y": -0.002725374613248732 + "x": 0.00683, + "y": -0.00273 }, [ { @@ -59601,78 +59601,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 319.55970075011555, - "y": 410.98032792189525 + "x": 319.5597, + "y": 410.98033 }, { "body": null, "index": 1, "isInternal": false, - "x": 316.65370075011555, - "y": 414.98032792189525 + "x": 316.6537, + "y": 414.98033 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.95170075011555, - "y": 416.5083279218953 + "x": 311.9517, + "y": 416.50833 }, { "body": null, "index": 3, "isInternal": false, - "x": 307.24970075011555, - "y": 414.98032792189525 + "x": 307.2497, + "y": 414.98033 }, { "body": null, "index": 4, "isInternal": false, - "x": 304.34370075011554, - "y": 410.98032792189525 + "x": 304.3437, + "y": 410.98033 }, { "body": null, "index": 5, "isInternal": false, - "x": 304.34370075011554, - "y": 406.0363279218953 + "x": 304.3437, + "y": 406.03633 }, { "body": null, "index": 6, "isInternal": false, - "x": 307.24970075011555, - "y": 402.0363279218953 + "x": 307.2497, + "y": 402.03633 }, { "body": null, "index": 7, "isInternal": false, - "x": 311.95170075011555, - "y": 400.5083279218953 + "x": 311.9517, + "y": 400.50833 }, { "body": null, "index": 8, "isInternal": false, - "x": 316.65370075011555, - "y": 402.0363279218953 + "x": 316.6537, + "y": 402.03633 }, { "body": null, "index": 9, "isInternal": false, - "x": 319.55970075011555, - "y": 406.0363279218953 + "x": 319.5597, + "y": 406.03633 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6591 }, @@ -59701,11 +59701,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -59727,7 +59727,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.376186060263882, + "speed": 1.37619, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59757,20 +59757,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -59785,12 +59785,12 @@ } }, { - "x": 339.5882012719583, - "y": 427.0727502712392 + "x": 339.5882, + "y": 427.07275 }, { - "x": 323.6255100211543, - "y": 410.88171929951193 + "x": 323.62551, + "y": 410.88172 }, { "category": 1, @@ -59807,16 +59807,16 @@ "y": 0 }, { - "x": 331.9802012719584, - "y": 418.88171929951193 + "x": 331.9802, + "y": 418.88172 }, { "x": 0, "y": 0 }, { - "x": 332.69544900383386, - "y": 419.15297639696087 + "x": 332.69545, + "y": 419.15298 }, { "endCol": 7, @@ -59839,8 +59839,8 @@ "yScale": 1 }, { - "x": -0.7152556018731957, - "y": -0.27126008213889463 + "x": -0.71526, + "y": -0.27126 }, [ { @@ -59878,78 +59878,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 339.5882012719583, - "y": 421.3537192995119 + "x": 339.5882, + "y": 421.35372 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.6822012719584, - "y": 425.3537192995119 + "x": 336.6822, + "y": 425.35372 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.9802012719584, - "y": 426.88171929951193 + "x": 331.9802, + "y": 426.88172 }, { "body": null, "index": 3, "isInternal": false, - "x": 327.2782012719584, - "y": 425.3537192995119 + "x": 327.2782, + "y": 425.35372 }, { "body": null, "index": 4, "isInternal": false, - "x": 324.3722012719583, - "y": 421.3537192995119 + "x": 324.3722, + "y": 421.35372 }, { "body": null, "index": 5, "isInternal": false, - "x": 324.3722012719583, - "y": 416.40971929951195 + "x": 324.3722, + "y": 416.40972 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.2782012719584, - "y": 412.40971929951195 + "x": 327.2782, + "y": 412.40972 }, { "body": null, "index": 7, "isInternal": false, - "x": 331.9802012719584, - "y": 410.88171929951193 + "x": 331.9802, + "y": 410.88172 }, { "body": null, "index": 8, "isInternal": false, - "x": 336.6822012719584, - "y": 412.40971929951195 + "x": 336.6822, + "y": 412.40972 }, { "body": null, "index": 9, "isInternal": false, - "x": 339.5882012719583, - "y": 416.40971929951195 + "x": 339.5882, + "y": 416.40972 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6622 }, @@ -59978,11 +59978,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -60004,7 +60004,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9018391627982916, + "speed": 1.90184, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60034,20 +60034,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -60062,12 +60062,12 @@ } }, { - "x": 361.4240661522973, - "y": 435.42707057674306 + "x": 361.42407, + "y": 435.42707 }, { - "x": 346.2080661522973, - "y": 419.42707057674306 + "x": 346.20807, + "y": 419.42707 }, { "category": 1, @@ -60084,16 +60084,16 @@ "y": 0 }, { - "x": 353.81606615229714, - "y": 427.42707057674306 + "x": 353.81607, + "y": 427.42707 }, { "x": 0, "y": 0 }, { - "x": 355.24190012463527, - "y": 427.17253751317105 + "x": 355.2419, + "y": 427.17254 }, { "endCol": 7, @@ -60116,8 +60116,8 @@ "yScale": 1 }, { - "x": -1.3371536996866098, - "y": 0.34524077566487676 + "x": -1.33715, + "y": 0.34524 }, [ { @@ -60155,78 +60155,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 361.4240661522973, - "y": 429.89907057674304 + "x": 361.42407, + "y": 429.89907 }, { "body": null, "index": 1, "isInternal": false, - "x": 358.5180661522973, - "y": 433.89907057674304 + "x": 358.51807, + "y": 433.89907 }, { "body": null, "index": 2, "isInternal": false, - "x": 353.8160661522973, - "y": 435.42707057674306 + "x": 353.81607, + "y": 435.42707 }, { "body": null, "index": 3, "isInternal": false, - "x": 349.1140661522973, - "y": 433.89907057674304 + "x": 349.11407, + "y": 433.89907 }, { "body": null, "index": 4, "isInternal": false, - "x": 346.2080661522973, - "y": 429.89907057674304 + "x": 346.20807, + "y": 429.89907 }, { "body": null, "index": 5, "isInternal": false, - "x": 346.2080661522973, - "y": 424.9550705767431 + "x": 346.20807, + "y": 424.95507 }, { "body": null, "index": 6, "isInternal": false, - "x": 349.1140661522973, - "y": 420.9550705767431 + "x": 349.11407, + "y": 420.95507 }, { "body": null, "index": 7, "isInternal": false, - "x": 353.8160661522973, - "y": 419.42707057674306 + "x": 353.81607, + "y": 419.42707 }, { "body": null, "index": 8, "isInternal": false, - "x": 358.5180661522973, - "y": 420.9550705767431 + "x": 358.51807, + "y": 420.95507 }, { "body": null, "index": 9, "isInternal": false, - "x": 361.4240661522973, - "y": 424.9550705767431 + "x": 361.42407, + "y": 424.95507 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6653 }, @@ -60255,11 +60255,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -60281,7 +60281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.591824211158226, + "speed": 2.59182, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60311,20 +60311,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -60339,12 +60339,12 @@ } }, { - "x": 385.2232952801288, - "y": 440.578880503548 + "x": 385.2233, + "y": 440.57888 }, { - "x": 370.0072952801288, - "y": 424.578880503548 + "x": 370.0073, + "y": 424.57888 }, { "category": 1, @@ -60361,16 +60361,16 @@ "y": 0 }, { - "x": 377.61529528012886, - "y": 432.57888050354813 + "x": 377.6153, + "y": 432.57888 }, { "x": 0, "y": 0 }, { - "x": 379.31525676308013, - "y": 431.1640480604104 + "x": 379.31526, + "y": 431.16405 }, { "endCol": 8, @@ -60393,8 +60393,8 @@ "yScale": 1 }, { - "x": -1.7223094251216935, - "y": 1.3785320861609307 + "x": -1.72231, + "y": 1.37853 }, [ { @@ -60432,78 +60432,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 385.2232952801288, - "y": 435.050880503548 + "x": 385.2233, + "y": 435.05088 }, { "body": null, "index": 1, "isInternal": false, - "x": 382.3172952801288, - "y": 439.050880503548 + "x": 382.3173, + "y": 439.05088 }, { "body": null, "index": 2, "isInternal": false, - "x": 377.6152952801288, - "y": 440.578880503548 + "x": 377.6153, + "y": 440.57888 }, { "body": null, "index": 3, "isInternal": false, - "x": 372.9132952801288, - "y": 439.050880503548 + "x": 372.9133, + "y": 439.05088 }, { "body": null, "index": 4, "isInternal": false, - "x": 370.0072952801288, - "y": 435.050880503548 + "x": 370.0073, + "y": 435.05088 }, { "body": null, "index": 5, "isInternal": false, - "x": 370.0072952801288, - "y": 430.10688050354804 + "x": 370.0073, + "y": 430.10688 }, { "body": null, "index": 6, "isInternal": false, - "x": 372.9132952801288, - "y": 426.10688050354804 + "x": 372.9133, + "y": 426.10688 }, { "body": null, "index": 7, "isInternal": false, - "x": 377.6152952801288, - "y": 424.578880503548 + "x": 377.6153, + "y": 424.57888 }, { "body": null, "index": 8, "isInternal": false, - "x": 382.3172952801288, - "y": 426.10688050354804 + "x": 382.3173, + "y": 426.10688 }, { "body": null, "index": 9, "isInternal": false, - "x": 385.2232952801288, - "y": 430.10688050354804 + "x": 385.2233, + "y": 430.10688 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6684 }, @@ -60532,11 +60532,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -60558,7 +60558,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.881434550114928, + "speed": 2.88143, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60588,20 +60588,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -60616,12 +60616,12 @@ } }, { - "x": 408.77549253195434, - "y": 442.4693901887474 + "x": 408.77549, + "y": 442.46939 }, { - "x": 393.55949253195433, - "y": 426.4693901887474 + "x": 393.55949, + "y": 426.46939 }, { "category": 1, @@ -60638,16 +60638,16 @@ "y": 0 }, { - "x": 401.1674925319544, - "y": 434.46939018874735 + "x": 401.16749, + "y": 434.46939 }, { "x": 0, "y": 0 }, { - "x": 402.7911748131244, - "y": 432.35332203601877 + "x": 402.79117, + "y": 432.35332 }, { "endCol": 8, @@ -60670,8 +60670,8 @@ "yScale": 1 }, { - "x": -1.653219829114846, - "y": 2.054833590982412 + "x": -1.65322, + "y": 2.05483 }, [ { @@ -60709,78 +60709,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 408.77549253195434, - "y": 436.9413901887474 + "x": 408.77549, + "y": 436.94139 }, { "body": null, "index": 1, "isInternal": false, - "x": 405.86949253195434, - "y": 440.9413901887474 + "x": 405.86949, + "y": 440.94139 }, { "body": null, "index": 2, "isInternal": false, - "x": 401.16749253195434, - "y": 442.4693901887474 + "x": 401.16749, + "y": 442.46939 }, { "body": null, "index": 3, "isInternal": false, - "x": 396.46549253195434, - "y": 440.9413901887474 + "x": 396.46549, + "y": 440.94139 }, { "body": null, "index": 4, "isInternal": false, - "x": 393.55949253195433, - "y": 436.9413901887474 + "x": 393.55949, + "y": 436.94139 }, { "body": null, "index": 5, "isInternal": false, - "x": 393.55949253195433, - "y": 431.99739018874743 + "x": 393.55949, + "y": 431.99739 }, { "body": null, "index": 6, "isInternal": false, - "x": 396.46549253195434, - "y": 427.99739018874743 + "x": 396.46549, + "y": 427.99739 }, { "body": null, "index": 7, "isInternal": false, - "x": 401.16749253195434, - "y": 426.4693901887474 + "x": 401.16749, + "y": 426.46939 }, { "body": null, "index": 8, "isInternal": false, - "x": 405.86949253195434, - "y": 427.99739018874743 + "x": 405.86949, + "y": 427.99739 }, { "body": null, "index": 9, "isInternal": false, - "x": 408.77549253195434, - "y": 431.99739018874743 + "x": 408.77549, + "y": 431.99739 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6715 }, @@ -60809,11 +60809,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -60835,7 +60835,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8992026233203285, + "speed": 2.8992, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60865,20 +60865,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -60893,12 +60893,12 @@ } }, { - "x": 431.6213104040144, - "y": 442.7129844041587 + "x": 431.62131, + "y": 442.71298 }, { - "x": 416.4053104040144, - "y": 426.7129844041587 + "x": 416.40531, + "y": 426.71298 }, { "category": 1, @@ -60915,16 +60915,16 @@ "y": 0 }, { - "x": 424.0133104040144, - "y": 434.7129844041587 + "x": 424.01331, + "y": 434.71298 }, { "x": 0, "y": 0 }, { - "x": 425.6040414845292, - "y": 432.4360906850606 + "x": 425.60404, + "y": 432.43609 }, { "endCol": 8, @@ -60947,8 +60947,8 @@ "yScale": 1 }, { - "x": -1.6311084398203093, - "y": 2.1756888170185107 + "x": -1.63111, + "y": 2.17569 }, [ { @@ -60986,78 +60986,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 431.6213104040144, - "y": 437.1849844041587 + "x": 431.62131, + "y": 437.18498 }, { "body": null, "index": 1, "isInternal": false, - "x": 428.7153104040144, - "y": 441.1849844041587 + "x": 428.71531, + "y": 441.18498 }, { "body": null, "index": 2, "isInternal": false, - "x": 424.0133104040144, - "y": 442.7129844041587 + "x": 424.01331, + "y": 442.71298 }, { "body": null, "index": 3, "isInternal": false, - "x": 419.3113104040144, - "y": 441.1849844041587 + "x": 419.31131, + "y": 441.18498 }, { "body": null, "index": 4, "isInternal": false, - "x": 416.4053104040144, - "y": 437.1849844041587 + "x": 416.40531, + "y": 437.18498 }, { "body": null, "index": 5, "isInternal": false, - "x": 416.4053104040144, - "y": 432.2409844041587 + "x": 416.40531, + "y": 432.24098 }, { "body": null, "index": 6, "isInternal": false, - "x": 419.3113104040144, - "y": 428.2409844041587 + "x": 419.31131, + "y": 428.24098 }, { "body": null, "index": 7, "isInternal": false, - "x": 424.0133104040144, - "y": 426.7129844041587 + "x": 424.01331, + "y": 426.71298 }, { "body": null, "index": 8, "isInternal": false, - "x": 428.7153104040144, - "y": 428.2409844041587 + "x": 428.71531, + "y": 428.24098 }, { "body": null, "index": 9, "isInternal": false, - "x": 431.6213104040144, - "y": 432.2409844041587 + "x": 431.62131, + "y": 432.24098 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6746 }, @@ -61086,11 +61086,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -61112,7 +61112,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.133078954678357, + "speed": 2.13308, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61142,20 +61142,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -61170,12 +61170,12 @@ } }, { - "x": 452.9705968601576, - "y": 438.2227541215334 + "x": 452.9706, + "y": 438.22275 }, { - "x": 437.7545968601576, - "y": 422.2227541215334 + "x": 437.7546, + "y": 422.22275 }, { "category": 1, @@ -61192,16 +61192,16 @@ "y": 0 }, { - "x": 445.3625968601576, - "y": 430.22275412153346 + "x": 445.3626, + "y": 430.22275 }, { "x": 0, "y": 0 }, { - "x": 447.3590038041098, - "y": 429.0551758223506 + "x": 447.359, + "y": 429.05518 }, { "endCol": 9, @@ -61224,8 +61224,8 @@ "yScale": 1 }, { - "x": -1.9301781484266485, - "y": 1.3257659291115829 + "x": -1.93018, + "y": 1.32577 }, [ { @@ -61263,78 +61263,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 452.9705968601576, - "y": 432.6947541215334 + "x": 452.9706, + "y": 432.69475 }, { "body": null, "index": 1, "isInternal": false, - "x": 450.0645968601576, - "y": 436.6947541215334 + "x": 450.0646, + "y": 436.69475 }, { "body": null, "index": 2, "isInternal": false, - "x": 445.3625968601576, - "y": 438.2227541215334 + "x": 445.3626, + "y": 438.22275 }, { "body": null, "index": 3, "isInternal": false, - "x": 440.6605968601576, - "y": 436.6947541215334 + "x": 440.6606, + "y": 436.69475 }, { "body": null, "index": 4, "isInternal": false, - "x": 437.7545968601576, - "y": 432.6947541215334 + "x": 437.7546, + "y": 432.69475 }, { "body": null, "index": 5, "isInternal": false, - "x": 437.7545968601576, - "y": 427.7507541215334 + "x": 437.7546, + "y": 427.75075 }, { "body": null, "index": 6, "isInternal": false, - "x": 440.6605968601576, - "y": 423.7507541215334 + "x": 440.6606, + "y": 423.75075 }, { "body": null, "index": 7, "isInternal": false, - "x": 445.3625968601576, - "y": 422.2227541215334 + "x": 445.3626, + "y": 422.22275 }, { "body": null, "index": 8, "isInternal": false, - "x": 450.0645968601576, - "y": 423.7507541215334 + "x": 450.0646, + "y": 423.75075 }, { "body": null, "index": 9, "isInternal": false, - "x": 452.9705968601576, - "y": 427.7507541215334 + "x": 452.9706, + "y": 427.75075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6777 }, @@ -61363,11 +61363,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -61389,7 +61389,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.055992259065146, + "speed": 2.05599, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61419,20 +61419,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -61447,12 +61447,12 @@ } }, { - "x": 470.2982751552781, - "y": 425.54788615616235 + "x": 470.29828, + "y": 425.54789 }, { - "x": 455.08227515527807, - "y": 409.54788615616235 + "x": 455.08228, + "y": 409.54789 }, { "category": 1, @@ -61469,16 +61469,16 @@ "y": 0 }, { - "x": 462.6902751552781, - "y": 417.5478861561624 + "x": 462.69028, + "y": 417.54789 }, { "x": 0, "y": 0 }, { - "x": 465.26867282896427, - "y": 416.7366675579875 + "x": 465.26867, + "y": 416.73667 }, { "endCol": 9, @@ -61501,8 +61501,8 @@ "yScale": 1 }, { - "x": -2.3141003435910648, - "y": 1.3768474448430652 + "x": -2.3141, + "y": 1.37685 }, [ { @@ -61540,78 +61540,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 470.2982751552781, - "y": 420.01988615616233 + "x": 470.29828, + "y": 420.01989 }, { "body": null, "index": 1, "isInternal": false, - "x": 467.39227515527807, - "y": 424.01988615616233 + "x": 467.39228, + "y": 424.01989 }, { "body": null, "index": 2, "isInternal": false, - "x": 462.6902751552781, - "y": 425.54788615616235 + "x": 462.69028, + "y": 425.54789 }, { "body": null, "index": 3, "isInternal": false, - "x": 457.9882751552781, - "y": 424.01988615616233 + "x": 457.98828, + "y": 424.01989 }, { "body": null, "index": 4, "isInternal": false, - "x": 455.08227515527807, - "y": 420.01988615616233 + "x": 455.08228, + "y": 420.01989 }, { "body": null, "index": 5, "isInternal": false, - "x": 455.08227515527807, - "y": 415.07588615616237 + "x": 455.08228, + "y": 415.07589 }, { "body": null, "index": 6, "isInternal": false, - "x": 457.9882751552781, - "y": 411.07588615616237 + "x": 457.98828, + "y": 411.07589 }, { "body": null, "index": 7, "isInternal": false, - "x": 462.6902751552781, - "y": 409.54788615616235 + "x": 462.69028, + "y": 409.54789 }, { "body": null, "index": 8, "isInternal": false, - "x": 467.39227515527807, - "y": 411.07588615616237 + "x": 467.39228, + "y": 411.07589 }, { "body": null, "index": 9, "isInternal": false, - "x": 470.2982751552781, - "y": 415.07588615616237 + "x": 470.29828, + "y": 415.07589 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6808 }, @@ -61640,11 +61640,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -61666,7 +61666,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6960700108585134, + "speed": 1.69607, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61696,20 +61696,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -61724,12 +61724,12 @@ } }, { - "x": 492.2157720918633, - "y": 423.27424824629315 + "x": 492.21577, + "y": 423.27425 }, { - "x": 476.9997720918633, - "y": 407.27424824629315 + "x": 476.99977, + "y": 407.27425 }, { "category": 1, @@ -61746,16 +61746,16 @@ "y": 0 }, { - "x": 484.60777209186307, - "y": 415.2742482462934 + "x": 484.60777, + "y": 415.27425 }, { "x": 0, "y": 0 }, { - "x": 487.0660446940754, - "y": 414.7142518670595 + "x": 487.06604, + "y": 414.71425 }, { "endCol": 10, @@ -61778,8 +61778,8 @@ "yScale": 1 }, { - "x": -2.2207128683425594, - "y": 1.0891059321041894 + "x": -2.22071, + "y": 1.08911 }, [ { @@ -61817,78 +61817,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 492.2157720918633, - "y": 417.74624824629313 + "x": 492.21577, + "y": 417.74625 }, { "body": null, "index": 1, "isInternal": false, - "x": 489.3097720918633, - "y": 421.74624824629313 + "x": 489.30977, + "y": 421.74625 }, { "body": null, "index": 2, "isInternal": false, - "x": 484.6077720918633, - "y": 423.27424824629315 + "x": 484.60777, + "y": 423.27425 }, { "body": null, "index": 3, "isInternal": false, - "x": 479.9057720918633, - "y": 421.74624824629313 + "x": 479.90577, + "y": 421.74625 }, { "body": null, "index": 4, "isInternal": false, - "x": 476.9997720918633, - "y": 417.74624824629313 + "x": 476.99977, + "y": 417.74625 }, { "body": null, "index": 5, "isInternal": false, - "x": 476.9997720918633, - "y": 412.8022482462932 + "x": 476.99977, + "y": 412.80225 }, { "body": null, "index": 6, "isInternal": false, - "x": 479.9057720918633, - "y": 408.8022482462932 + "x": 479.90577, + "y": 408.80225 }, { "body": null, "index": 7, "isInternal": false, - "x": 484.6077720918633, - "y": 407.27424824629315 + "x": 484.60777, + "y": 407.27425 }, { "body": null, "index": 8, "isInternal": false, - "x": 489.3097720918633, - "y": 408.8022482462932 + "x": 489.30977, + "y": 408.80225 }, { "body": null, "index": 9, "isInternal": false, - "x": 492.2157720918633, - "y": 412.8022482462932 + "x": 492.21577, + "y": 412.80225 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6839 }, @@ -61917,11 +61917,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -61943,7 +61943,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.383936463222813, + "speed": 1.38394, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61973,20 +61973,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -62001,12 +62001,12 @@ } }, { - "x": 514.3169519565802, - "y": 423.23174569451527 + "x": 514.31695, + "y": 423.23175 }, { - "x": 499.10095195658033, - "y": 407.23174569451527 + "x": 499.10095, + "y": 407.23175 }, { "category": 1, @@ -62023,16 +62023,16 @@ "y": 0 }, { - "x": 506.7089519565804, - "y": 415.2317456945152 + "x": 506.70895, + "y": 415.23175 }, { "x": 0, "y": 0 }, { - "x": 508.8861042208331, - "y": 414.66156591823875 + "x": 508.8861, + "y": 414.66157 }, { "endCol": 10, @@ -62055,8 +62055,8 @@ "yScale": 1 }, { - "x": -1.938195797662729, - "y": 1.1492097217012542 + "x": -1.9382, + "y": 1.14921 }, [ { @@ -62094,78 +62094,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 514.3169519565802, - "y": 417.70374569451525 + "x": 514.31695, + "y": 417.70375 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.4109519565802, - "y": 421.70374569451525 + "x": 511.41095, + "y": 421.70375 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.70895195658034, - "y": 423.23174569451527 + "x": 506.70895, + "y": 423.23175 }, { "body": null, "index": 3, "isInternal": false, - "x": 502.00695195658034, - "y": 421.70374569451525 + "x": 502.00695, + "y": 421.70375 }, { "body": null, "index": 4, "isInternal": false, - "x": 499.10095195658033, - "y": 417.70374569451525 + "x": 499.10095, + "y": 417.70375 }, { "body": null, "index": 5, "isInternal": false, - "x": 499.10095195658033, - "y": 412.7597456945153 + "x": 499.10095, + "y": 412.75975 }, { "body": null, "index": 6, "isInternal": false, - "x": 502.00695195658034, - "y": 408.7597456945153 + "x": 502.00695, + "y": 408.75975 }, { "body": null, "index": 7, "isInternal": false, - "x": 506.70895195658034, - "y": 407.23174569451527 + "x": 506.70895, + "y": 407.23175 }, { "body": null, "index": 8, "isInternal": false, - "x": 511.4109519565802, - "y": 408.7597456945153 + "x": 511.41095, + "y": 408.75975 }, { "body": null, "index": 9, "isInternal": false, - "x": 514.3169519565802, - "y": 412.7597456945153 + "x": 514.31695, + "y": 412.75975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6870 }, @@ -62194,11 +62194,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -62220,7 +62220,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3219104732899682, + "speed": 1.32191, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62250,20 +62250,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -62278,12 +62278,12 @@ } }, { - "x": 536.2468780240316, - "y": 425.42126033765703 + "x": 536.24688, + "y": 425.42126 }, { - "x": 521.0308780240317, - "y": 409.42126033765703 + "x": 521.03088, + "y": 409.42126 }, { "category": 1, @@ -62300,16 +62300,16 @@ "y": 0 }, { - "x": 528.6388780240322, - "y": 417.42126033765703 + "x": 528.63888, + "y": 417.42126 }, { "x": 0, "y": 0 }, { - "x": 530.4492180045373, - "y": 416.40994693845306 + "x": 530.44922, + "y": 416.40995 }, { "endCol": 11, @@ -62332,8 +62332,8 @@ "yScale": 1 }, { - "x": -1.5309528893706101, - "y": 1.7443960486846777 + "x": -1.53095, + "y": 1.7444 }, [ { @@ -62371,78 +62371,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 536.2468780240316, - "y": 419.893260337657 + "x": 536.24688, + "y": 419.89326 }, { "body": null, "index": 1, "isInternal": false, - "x": 533.3408780240317, - "y": 423.893260337657 + "x": 533.34088, + "y": 423.89326 }, { "body": null, "index": 2, "isInternal": false, - "x": 528.6388780240317, - "y": 425.42126033765703 + "x": 528.63888, + "y": 425.42126 }, { "body": null, "index": 3, "isInternal": false, - "x": 523.9368780240317, - "y": 423.893260337657 + "x": 523.93688, + "y": 423.89326 }, { "body": null, "index": 4, "isInternal": false, - "x": 521.0308780240317, - "y": 419.893260337657 + "x": 521.03088, + "y": 419.89326 }, { "body": null, "index": 5, "isInternal": false, - "x": 521.0308780240317, - "y": 414.94926033765705 + "x": 521.03088, + "y": 414.94926 }, { "body": null, "index": 6, "isInternal": false, - "x": 523.9368780240317, - "y": 410.94926033765705 + "x": 523.93688, + "y": 410.94926 }, { "body": null, "index": 7, "isInternal": false, - "x": 528.6388780240317, - "y": 409.42126033765703 + "x": 528.63888, + "y": 409.42126 }, { "body": null, "index": 8, "isInternal": false, - "x": 533.3408780240317, - "y": 410.94926033765705 + "x": 533.34088, + "y": 410.94926 }, { "body": null, "index": 9, "isInternal": false, - "x": 536.2468780240316, - "y": 414.94926033765705 + "x": 536.24688, + "y": 414.94926 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6901 }, @@ -62471,11 +62471,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -62497,7 +62497,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.0808170832763118, + "speed": 2.08082, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62527,20 +62527,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -62555,12 +62555,12 @@ } }, { - "x": 554.3526507061298, - "y": 438.92753421680754 + "x": 554.35265, + "y": 438.92753 }, { - "x": 539.1366507061299, - "y": 422.92753421680754 + "x": 539.13665, + "y": 422.92753 }, { "category": 1, @@ -62577,16 +62577,16 @@ "y": 0 }, { - "x": 546.7446507061293, - "y": 430.92753421680754 + "x": 546.74465, + "y": 430.92753 }, { "x": 0, "y": 0 }, { - "x": 547.9825228412554, - "y": 429.45971444900994 + "x": 547.98252, + "y": 429.45971 }, { "endCol": 11, @@ -62609,8 +62609,8 @@ "yScale": 1 }, { - "x": -1.2363404343333286, - "y": 1.6034033509250776 + "x": -1.23634, + "y": 1.6034 }, [ { @@ -62648,78 +62648,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 554.3526507061298, - "y": 433.3995342168075 + "x": 554.35265, + "y": 433.39953 }, { "body": null, "index": 1, "isInternal": false, - "x": 551.4466507061298, - "y": 437.3995342168075 + "x": 551.44665, + "y": 437.39953 }, { "body": null, "index": 2, "isInternal": false, - "x": 546.7446507061298, - "y": 438.92753421680754 + "x": 546.74465, + "y": 438.92753 }, { "body": null, "index": 3, "isInternal": false, - "x": 542.0426507061298, - "y": 437.3995342168075 + "x": 542.04265, + "y": 437.39953 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.1366507061299, - "y": 433.3995342168075 + "x": 539.13665, + "y": 433.39953 }, { "body": null, "index": 5, "isInternal": false, - "x": 539.1366507061299, - "y": 428.45553421680756 + "x": 539.13665, + "y": 428.45553 }, { "body": null, "index": 6, "isInternal": false, - "x": 542.0426507061298, - "y": 424.45553421680756 + "x": 542.04265, + "y": 424.45553 }, { "body": null, "index": 7, "isInternal": false, - "x": 546.7446507061298, - "y": 422.92753421680754 + "x": 546.74465, + "y": 422.92753 }, { "body": null, "index": 8, "isInternal": false, - "x": 551.4466507061298, - "y": 424.45553421680756 + "x": 551.44665, + "y": 424.45553 }, { "body": null, "index": 9, "isInternal": false, - "x": 554.3526507061298, - "y": 428.45553421680756 + "x": 554.35265, + "y": 428.45553 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6932 }, @@ -62748,11 +62748,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -62774,7 +62774,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8429500911221997, + "speed": 2.84295, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62804,20 +62804,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -62832,12 +62832,12 @@ } }, { - "x": 575.1725614916573, - "y": 443.0671128513458 + "x": 575.17256, + "y": 443.06711 }, { - "x": 559.9565614916575, - "y": 427.0671128513458 + "x": 559.95656, + "y": 427.06711 }, { "category": 1, @@ -62854,16 +62854,16 @@ "y": 0 }, { - "x": 567.5645614916574, - "y": 435.0671128513458 + "x": 567.56456, + "y": 435.06711 }, { "x": 0, "y": 0 }, { - "x": 568.655290129391, - "y": 432.45384005701044 + "x": 568.65529, + "y": 432.45384 }, { "endCol": 11, @@ -62886,8 +62886,8 @@ "yScale": 1 }, { - "x": -1.0893213763771428, - "y": 2.580286645978049 + "x": -1.08932, + "y": 2.58029 }, [ { @@ -62925,78 +62925,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 575.1725614916573, - "y": 437.5391128513458 + "x": 575.17256, + "y": 437.53911 }, { "body": null, "index": 1, "isInternal": false, - "x": 572.2665614916574, - "y": 441.5391128513458 + "x": 572.26656, + "y": 441.53911 }, { "body": null, "index": 2, "isInternal": false, - "x": 567.5645614916574, - "y": 443.0671128513458 + "x": 567.56456, + "y": 443.06711 }, { "body": null, "index": 3, "isInternal": false, - "x": 562.8625614916574, - "y": 441.5391128513458 + "x": 562.86256, + "y": 441.53911 }, { "body": null, "index": 4, "isInternal": false, - "x": 559.9565614916575, - "y": 437.5391128513458 + "x": 559.95656, + "y": 437.53911 }, { "body": null, "index": 5, "isInternal": false, - "x": 559.9565614916575, - "y": 432.59511285134585 + "x": 559.95656, + "y": 432.59511 }, { "body": null, "index": 6, "isInternal": false, - "x": 562.8625614916574, - "y": 428.59511285134585 + "x": 562.86256, + "y": 428.59511 }, { "body": null, "index": 7, "isInternal": false, - "x": 567.5645614916574, - "y": 427.0671128513458 + "x": 567.56456, + "y": 427.06711 }, { "body": null, "index": 8, "isInternal": false, - "x": 572.2665614916574, - "y": 428.59511285134585 + "x": 572.26656, + "y": 428.59511 }, { "body": null, "index": 9, "isInternal": false, - "x": 575.1725614916573, - "y": 432.59511285134585 + "x": 575.17256, + "y": 432.59511 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6963 }, @@ -63025,11 +63025,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -63051,7 +63051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9103940482628787, + "speed": 2.91039, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63081,20 +63081,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -63109,12 +63109,12 @@ } }, { - "x": 595.7729396202374, - "y": 443.4073163252725 + "x": 595.77294, + "y": 443.40732 }, { - "x": 580.5569396202375, - "y": 427.4073163252725 + "x": 580.55694, + "y": 427.40732 }, { "category": 1, @@ -63131,16 +63131,16 @@ "y": 0 }, { - "x": 588.1649396202378, - "y": 435.4073163252726 + "x": 588.16494, + "y": 435.40732 }, { "x": 0, "y": 0 }, { - "x": 589.133487049184, - "y": 432.6625900311064 + "x": 589.13349, + "y": 432.66259 }, { "endCol": 12, @@ -63163,8 +63163,8 @@ "yScale": 1 }, { - "x": -0.9669465532949744, - "y": 2.7166355200685075 + "x": -0.96695, + "y": 2.71664 }, [ { @@ -63202,78 +63202,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 595.7729396202374, - "y": 437.8793163252725 + "x": 595.77294, + "y": 437.87932 }, { "body": null, "index": 1, "isInternal": false, - "x": 592.8669396202374, - "y": 441.8793163252725 + "x": 592.86694, + "y": 441.87932 }, { "body": null, "index": 2, "isInternal": false, - "x": 588.1649396202374, - "y": 443.4073163252725 + "x": 588.16494, + "y": 443.40732 }, { "body": null, "index": 3, "isInternal": false, - "x": 583.4629396202374, - "y": 441.8793163252725 + "x": 583.46294, + "y": 441.87932 }, { "body": null, "index": 4, "isInternal": false, - "x": 580.5569396202375, - "y": 437.8793163252725 + "x": 580.55694, + "y": 437.87932 }, { "body": null, "index": 5, "isInternal": false, - "x": 580.5569396202375, - "y": 432.93531632527254 + "x": 580.55694, + "y": 432.93532 }, { "body": null, "index": 6, "isInternal": false, - "x": 583.4629396202374, - "y": 428.93531632527254 + "x": 583.46294, + "y": 428.93532 }, { "body": null, "index": 7, "isInternal": false, - "x": 588.1649396202374, - "y": 427.4073163252725 + "x": 588.16494, + "y": 427.40732 }, { "body": null, "index": 8, "isInternal": false, - "x": 592.8669396202374, - "y": 428.93531632527254 + "x": 592.86694, + "y": 428.93532 }, { "body": null, "index": 9, "isInternal": false, - "x": 595.7729396202374, - "y": 432.93531632527254 + "x": 595.77294, + "y": 432.93532 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 6994 }, @@ -63302,11 +63302,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -63328,7 +63328,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8291481266958185, + "speed": 1.82915, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63358,20 +63358,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -63386,12 +63386,12 @@ } }, { - "x": 214.8520756392676, - "y": 454.6834631011107 + "x": 214.85208, + "y": 454.68346 }, { - "x": 199.6360756392676, - "y": 438.6834631011107 + "x": 199.63608, + "y": 438.68346 }, { "category": 1, @@ -63408,16 +63408,16 @@ "y": 0 }, { - "x": 207.2440756392676, - "y": 446.68346310111076 + "x": 207.24408, + "y": 446.68346 }, { "x": 0, "y": 0 }, { - "x": 204.96078087474712, - "y": 445.9458966173092 + "x": 204.96078, + "y": 445.9459 }, { "endCol": 4, @@ -63440,8 +63440,8 @@ "yScale": 1 }, { - "x": 2.2304789702407675, - "y": 0.7742175460961676 + "x": 2.23048, + "y": 0.77422 }, [ { @@ -63479,78 +63479,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.8520756392676, - "y": 449.1554631011107 + "x": 214.85208, + "y": 449.15546 }, { "body": null, "index": 1, "isInternal": false, - "x": 211.9460756392676, - "y": 453.1554631011107 + "x": 211.94608, + "y": 453.15546 }, { "body": null, "index": 2, "isInternal": false, - "x": 207.2440756392676, - "y": 454.6834631011107 + "x": 207.24408, + "y": 454.68346 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.5420756392676, - "y": 453.1554631011107 + "x": 202.54208, + "y": 453.15546 }, { "body": null, "index": 4, "isInternal": false, - "x": 199.6360756392676, - "y": 449.1554631011107 + "x": 199.63608, + "y": 449.15546 }, { "body": null, "index": 5, "isInternal": false, - "x": 199.6360756392676, - "y": 444.2114631011107 + "x": 199.63608, + "y": 444.21146 }, { "body": null, "index": 6, "isInternal": false, - "x": 202.5420756392676, - "y": 440.2114631011107 + "x": 202.54208, + "y": 440.21146 }, { "body": null, "index": 7, "isInternal": false, - "x": 207.2440756392676, - "y": 438.6834631011107 + "x": 207.24408, + "y": 438.68346 }, { "body": null, "index": 8, "isInternal": false, - "x": 211.9460756392676, - "y": 440.2114631011107 + "x": 211.94608, + "y": 440.21146 }, { "body": null, "index": 9, "isInternal": false, - "x": 214.8520756392676, - "y": 444.2114631011107 + "x": 214.85208, + "y": 444.21146 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7025 }, @@ -63579,11 +63579,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -63605,7 +63605,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.7117760664345085, + "speed": 1.71178, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63635,20 +63635,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -63663,12 +63663,12 @@ } }, { - "x": 235.75006761348558, - "y": 449.4411921426105 + "x": 235.75007, + "y": 449.44119 }, { - "x": 220.53406761348558, - "y": 433.4411921426105 + "x": 220.53407, + "y": 433.44119 }, { "category": 1, @@ -63685,16 +63685,16 @@ "y": 0 }, { - "x": 228.14206761348555, - "y": 441.4411921426105 + "x": 228.14207, + "y": 441.44119 }, { "x": 0, "y": 0 }, { - "x": 226.16212140836504, - "y": 442.3430724668797 + "x": 226.16212, + "y": 442.34307 }, { "endCol": 4, @@ -63717,8 +63717,8 @@ "yScale": 1 }, { - "x": 1.9666508240725875, - "y": -0.8946259148848412 + "x": 1.96665, + "y": -0.89463 }, [ { @@ -63756,78 +63756,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 235.75006761348558, - "y": 443.91319214261046 + "x": 235.75007, + "y": 443.91319 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.84406761348558, - "y": 447.91319214261046 + "x": 232.84407, + "y": 447.91319 }, { "body": null, "index": 2, "isInternal": false, - "x": 228.14206761348558, - "y": 449.4411921426105 + "x": 228.14207, + "y": 449.44119 }, { "body": null, "index": 3, "isInternal": false, - "x": 223.44006761348558, - "y": 447.91319214261046 + "x": 223.44007, + "y": 447.91319 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.53406761348558, - "y": 443.91319214261046 + "x": 220.53407, + "y": 443.91319 }, { "body": null, "index": 5, "isInternal": false, - "x": 220.53406761348558, - "y": 438.9691921426105 + "x": 220.53407, + "y": 438.96919 }, { "body": null, "index": 6, "isInternal": false, - "x": 223.44006761348558, - "y": 434.9691921426105 + "x": 223.44007, + "y": 434.96919 }, { "body": null, "index": 7, "isInternal": false, - "x": 228.14206761348558, - "y": 433.4411921426105 + "x": 228.14207, + "y": 433.44119 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.84406761348558, - "y": 434.9691921426105 + "x": 232.84407, + "y": 434.96919 }, { "body": null, "index": 9, "isInternal": false, - "x": 235.75006761348558, - "y": 438.9691921426105 + "x": 235.75007, + "y": 438.96919 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7056 }, @@ -63856,11 +63856,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -63882,7 +63882,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.7699727346195924, + "speed": 1.76997, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63912,20 +63912,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -63940,12 +63940,12 @@ } }, { - "x": 256.43799998581835, - "y": 438.1265934354316 + "x": 256.438, + "y": 438.12659 }, { - "x": 239.66657401552385, - "y": 421.368873250308 + "x": 239.66657, + "y": 421.36887 }, { "category": 1, @@ -63962,16 +63962,16 @@ "y": 0 }, { - "x": 247.27457401552377, - "y": 430.1265934354318 + "x": 247.27457, + "y": 430.12659 }, { "x": 0, "y": 0 }, { - "x": 245.7662835294337, - "y": 431.16762936506365 + "x": 245.76628, + "y": 431.16763 }, { "endCol": 5, @@ -63994,8 +63994,8 @@ "yScale": 1 }, { - "x": 1.508297413246197, - "y": -1.0410407108185495 + "x": 1.5083, + "y": -1.04104 }, [ { @@ -64033,78 +64033,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 254.88257401552386, - "y": 432.59859343543155 + "x": 254.88257, + "y": 432.59859 }, { "body": null, "index": 1, "isInternal": false, - "x": 251.97657401552385, - "y": 436.59859343543155 + "x": 251.97657, + "y": 436.59859 }, { "body": null, "index": 2, "isInternal": false, - "x": 247.27457401552385, - "y": 438.1265934354316 + "x": 247.27457, + "y": 438.12659 }, { "body": null, "index": 3, "isInternal": false, - "x": 242.57257401552386, - "y": 436.59859343543155 + "x": 242.57257, + "y": 436.59859 }, { "body": null, "index": 4, "isInternal": false, - "x": 239.66657401552385, - "y": 432.59859343543155 + "x": 239.66657, + "y": 432.59859 }, { "body": null, "index": 5, "isInternal": false, - "x": 239.66657401552385, - "y": 427.6545934354316 + "x": 239.66657, + "y": 427.65459 }, { "body": null, "index": 6, "isInternal": false, - "x": 242.57257401552386, - "y": 423.6545934354316 + "x": 242.57257, + "y": 423.65459 }, { "body": null, "index": 7, "isInternal": false, - "x": 247.27457401552385, - "y": 422.1265934354316 + "x": 247.27457, + "y": 422.12659 }, { "body": null, "index": 8, "isInternal": false, - "x": 251.97657401552385, - "y": 423.6545934354316 + "x": 251.97657, + "y": 423.65459 }, { "body": null, "index": 9, "isInternal": false, - "x": 254.88257401552386, - "y": 427.6545934354316 + "x": 254.88257, + "y": 427.65459 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7087 }, @@ -64133,11 +64133,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -64159,7 +64159,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.217288167236458, + "speed": 1.21729, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64189,20 +64189,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -64217,12 +64217,12 @@ } }, { - "x": 275.1529845003969, - "y": 427.62927392632383 + "x": 275.15298, + "y": 427.62927 }, { - "x": 258.7960417795417, - "y": 411.6037596310992 + "x": 258.79604, + "y": 411.60376 }, { "category": 1, @@ -64239,16 +64239,16 @@ "y": 0 }, { - "x": 266.40404177954196, - "y": 419.60375963109914 + "x": 266.40404, + "y": 419.60376 }, { "x": 0, "y": 0 }, { - "x": 265.2570492153523, - "y": 420.0387555910887 + "x": 265.25705, + "y": 420.03876 }, { "endCol": 5, @@ -64271,8 +64271,8 @@ "yScale": 1 }, { - "x": 1.1470004341873619, - "y": -0.43499894467959166 + "x": 1.147, + "y": -0.435 }, [ { @@ -64310,78 +64310,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 274.01204177954196, - "y": 422.0757596310992 + "x": 274.01204, + "y": 422.07576 }, { "body": null, "index": 1, "isInternal": false, - "x": 271.1060417795419, - "y": 426.0757596310992 + "x": 271.10604, + "y": 426.07576 }, { "body": null, "index": 2, "isInternal": false, - "x": 266.4040417795419, - "y": 427.6037596310992 + "x": 266.40404, + "y": 427.60376 }, { "body": null, "index": 3, "isInternal": false, - "x": 261.70204177954184, - "y": 426.0757596310992 + "x": 261.70204, + "y": 426.07576 }, { "body": null, "index": 4, "isInternal": false, - "x": 258.7960417795417, - "y": 422.0757596310992 + "x": 258.79604, + "y": 422.07576 }, { "body": null, "index": 5, "isInternal": false, - "x": 258.7960417795417, - "y": 417.1317596310992 + "x": 258.79604, + "y": 417.13176 }, { "body": null, "index": 6, "isInternal": false, - "x": 261.70204177954184, - "y": 413.1317596310992 + "x": 261.70204, + "y": 413.13176 }, { "body": null, "index": 7, "isInternal": false, - "x": 266.4040417795419, - "y": 411.6037596310992 + "x": 266.40404, + "y": 411.60376 }, { "body": null, "index": 8, "isInternal": false, - "x": 271.1060417795419, - "y": 413.1317596310992 + "x": 271.10604, + "y": 413.13176 }, { "body": null, "index": 9, "isInternal": false, - "x": 274.01204177954196, - "y": 417.1317596310992 + "x": 274.01204, + "y": 417.13176 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7118 }, @@ -64410,11 +64410,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -64436,7 +64436,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7780834847975132, + "speed": 0.77808, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64466,20 +64466,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -64494,12 +64494,12 @@ } }, { - "x": 295.29882184380415, - "y": 421.7005363001377 + "x": 295.29882, + "y": 421.70054 }, { - "x": 279.16104988436797, - "y": 405.3936869828636 + "x": 279.16105, + "y": 405.39369 }, { "category": 1, @@ -64516,16 +64516,16 @@ "y": 0 }, { - "x": 286.76904988436803, - "y": 413.3936869828636 + "x": 286.76905, + "y": 413.39369 }, { "x": 0, "y": 0 }, { - "x": 285.81381313964357, - "y": 413.509692489862 + "x": 285.81381, + "y": 413.50969 }, { "endCol": 6, @@ -64548,8 +64548,8 @@ "yScale": 1 }, { - "x": 0.9552451002970201, - "y": -0.11600652171273396 + "x": 0.95525, + "y": -0.11601 }, [ { @@ -64587,78 +64587,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 294.377049884368, - "y": 415.86568698286356 + "x": 294.37705, + "y": 415.86569 }, { "body": null, "index": 1, "isInternal": false, - "x": 291.47104988436797, - "y": 419.86568698286356 + "x": 291.47105, + "y": 419.86569 }, { "body": null, "index": 2, "isInternal": false, - "x": 286.769049884368, - "y": 421.3936869828636 + "x": 286.76905, + "y": 421.39369 }, { "body": null, "index": 3, "isInternal": false, - "x": 282.067049884368, - "y": 419.86568698286356 + "x": 282.06705, + "y": 419.86569 }, { "body": null, "index": 4, "isInternal": false, - "x": 279.16104988436797, - "y": 415.86568698286356 + "x": 279.16105, + "y": 415.86569 }, { "body": null, "index": 5, "isInternal": false, - "x": 279.16104988436797, - "y": 410.9216869828636 + "x": 279.16105, + "y": 410.92169 }, { "body": null, "index": 6, "isInternal": false, - "x": 282.067049884368, - "y": 406.9216869828636 + "x": 282.06705, + "y": 406.92169 }, { "body": null, "index": 7, "isInternal": false, - "x": 286.769049884368, - "y": 405.3936869828636 + "x": 286.76905, + "y": 405.39369 }, { "body": null, "index": 8, "isInternal": false, - "x": 291.47104988436797, - "y": 406.9216869828636 + "x": 291.47105, + "y": 406.92169 }, { "body": null, "index": 9, "isInternal": false, - "x": 294.377049884368, - "y": 410.9216869828636 + "x": 294.37705, + "y": 410.92169 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7149 }, @@ -64687,11 +64687,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -64713,7 +64713,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5221824638459709, + "speed": 0.52218, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64743,20 +64743,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -64771,12 +64771,12 @@ } }, { - "x": 316.62121656723684, - "y": 421.39164549210534 + "x": 316.62122, + "y": 421.39165 }, { - "x": 300.6339025538144, - "y": 404.8495090799852 + "x": 300.6339, + "y": 404.84951 }, { "category": 1, @@ -64793,16 +64793,16 @@ "y": 0 }, { - "x": 308.24190255381427, - "y": 412.8495090799851 + "x": 308.2419, + "y": 412.84951 }, { "x": 0, "y": 0 }, { - "x": 307.4613708785761, - "y": 412.75472004133644 + "x": 307.46137, + "y": 412.75472 }, { "endCol": 6, @@ -64825,8 +64825,8 @@ "yScale": 1 }, { - "x": 0.7805400308107551, - "y": 0.09479005336299906 + "x": 0.78054, + "y": 0.09479 }, [ { @@ -64864,78 +64864,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.8499025538144, - "y": 415.32150907998516 + "x": 315.8499, + "y": 415.32151 }, { "body": null, "index": 1, "isInternal": false, - "x": 312.9439025538144, - "y": 419.32150907998516 + "x": 312.9439, + "y": 419.32151 }, { "body": null, "index": 2, "isInternal": false, - "x": 308.2419025538144, - "y": 420.8495090799852 + "x": 308.2419, + "y": 420.84951 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.5399025538144, - "y": 419.32150907998516 + "x": 303.5399, + "y": 419.32151 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.6339025538144, - "y": 415.32150907998516 + "x": 300.6339, + "y": 415.32151 }, { "body": null, "index": 5, "isInternal": false, - "x": 300.6339025538144, - "y": 410.3775090799852 + "x": 300.6339, + "y": 410.37751 }, { "body": null, "index": 6, "isInternal": false, - "x": 303.5399025538144, - "y": 406.3775090799852 + "x": 303.5399, + "y": 406.37751 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.2419025538144, - "y": 404.8495090799852 + "x": 308.2419, + "y": 404.84951 }, { "body": null, "index": 8, "isInternal": false, - "x": 312.9439025538144, - "y": 406.3775090799852 + "x": 312.9439, + "y": 406.37751 }, { "body": null, "index": 9, "isInternal": false, - "x": 315.8499025538144, - "y": 410.3775090799852 + "x": 315.8499, + "y": 410.37751 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7180 }, @@ -64964,11 +64964,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -64990,7 +64990,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.47709302058052355, + "speed": 0.47709, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65020,20 +65020,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -65048,12 +65048,12 @@ } }, { - "x": 337.67191990033643, - "y": 426.7205550594699 + "x": 337.67192, + "y": 426.72056 }, { - "x": 322.24115519835397, - "y": 410.26423716441303 + "x": 322.24116, + "y": 410.26424 }, { "category": 1, @@ -65070,16 +65070,16 @@ "y": 0 }, { - "x": 330.0639199003363, - "y": 418.26423716441315 + "x": 330.06392, + "y": 418.26424 }, { "x": 0, "y": 0 }, { - "x": 329.991738359836, - "y": 418.2368623762203 + "x": 329.99174, + "y": 418.23686 }, { "endCol": 7, @@ -65102,8 +65102,8 @@ "yScale": 1 }, { - "x": 0.07218941049802652, - "y": 0.0273777728828577 + "x": 0.07219, + "y": 0.02738 }, [ { @@ -65141,78 +65141,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 337.67191990033643, - "y": 420.736237164413 + "x": 337.67192, + "y": 420.73624 }, { "body": null, "index": 1, "isInternal": false, - "x": 334.7659199003364, - "y": 424.736237164413 + "x": 334.76592, + "y": 424.73624 }, { "body": null, "index": 2, "isInternal": false, - "x": 330.06391990033643, - "y": 426.26423716441303 + "x": 330.06392, + "y": 426.26424 }, { "body": null, "index": 3, "isInternal": false, - "x": 325.36191990033643, - "y": 424.736237164413 + "x": 325.36192, + "y": 424.73624 }, { "body": null, "index": 4, "isInternal": false, - "x": 322.4559199003364, - "y": 420.736237164413 + "x": 322.45592, + "y": 420.73624 }, { "body": null, "index": 5, "isInternal": false, - "x": 322.4559199003364, - "y": 415.79223716441305 + "x": 322.45592, + "y": 415.79224 }, { "body": null, "index": 6, "isInternal": false, - "x": 325.36191990033643, - "y": 411.79223716441305 + "x": 325.36192, + "y": 411.79224 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.06391990033643, - "y": 410.26423716441303 + "x": 330.06392, + "y": 410.26424 }, { "body": null, "index": 8, "isInternal": false, - "x": 334.7659199003364, - "y": 411.79223716441305 + "x": 334.76592, + "y": 411.79224 }, { "body": null, "index": 9, "isInternal": false, - "x": 337.67191990033643, - "y": 415.79223716441305 + "x": 337.67192, + "y": 415.79224 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7211 }, @@ -65241,11 +65241,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -65267,7 +65267,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0026778512532604, + "speed": 1.00268, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65297,20 +65297,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -65325,12 +65325,12 @@ } }, { - "x": 357.93747586908984, - "y": 436.38742371321035 + "x": 357.93748, + "y": 436.38742 }, { - "x": 341.88141739465755, - "y": 420.34668837112775 + "x": 341.88142, + "y": 420.34669 }, { "category": 1, @@ -65347,16 +65347,16 @@ "y": 0 }, { - "x": 350.3294758690899, - "y": 428.38742371321047 + "x": 350.32948, + "y": 428.38742 }, { "x": 0, "y": 0 }, { - "x": 350.8066136185311, - "y": 428.71674856484407 + "x": 350.80661, + "y": 428.71675 }, { "endCol": 7, @@ -65379,8 +65379,8 @@ "yScale": 1 }, { - "x": -0.47714467659739057, - "y": -0.32932963282030414 + "x": -0.47714, + "y": -0.32933 }, [ { @@ -65418,78 +65418,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 357.93747586908984, - "y": 430.85942371321033 + "x": 357.93748, + "y": 430.85942 }, { "body": null, "index": 1, "isInternal": false, - "x": 355.03147586908983, - "y": 434.85942371321033 + "x": 355.03148, + "y": 434.85942 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.32947586908983, - "y": 436.38742371321035 + "x": 350.32948, + "y": 436.38742 }, { "body": null, "index": 3, "isInternal": false, - "x": 345.62747586908984, - "y": 434.85942371321033 + "x": 345.62748, + "y": 434.85942 }, { "body": null, "index": 4, "isInternal": false, - "x": 342.72147586908983, - "y": 430.85942371321033 + "x": 342.72148, + "y": 430.85942 }, { "body": null, "index": 5, "isInternal": false, - "x": 342.72147586908983, - "y": 425.9154237132104 + "x": 342.72148, + "y": 425.91542 }, { "body": null, "index": 6, "isInternal": false, - "x": 345.62747586908984, - "y": 421.9154237132104 + "x": 345.62748, + "y": 421.91542 }, { "body": null, "index": 7, "isInternal": false, - "x": 350.32947586908983, - "y": 420.38742371321035 + "x": 350.32948, + "y": 420.38742 }, { "body": null, "index": 8, "isInternal": false, - "x": 355.03147586908983, - "y": 421.9154237132104 + "x": 355.03148, + "y": 421.91542 }, { "body": null, "index": 9, "isInternal": false, - "x": 357.93747586908984, - "y": 425.9154237132104 + "x": 357.93748, + "y": 425.91542 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7242 }, @@ -65518,11 +65518,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -65544,7 +65544,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9128435894769378, + "speed": 0.91284, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65574,20 +65574,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -65602,12 +65602,12 @@ } }, { - "x": 375.8385043227157, - "y": 450.1710566792765 + "x": 375.8385, + "y": 450.17106 }, { - "x": 360.6225043227157, - "y": 434.1710566792765 + "x": 360.6225, + "y": 434.17106 }, { "category": 1, @@ -65624,16 +65624,16 @@ "y": 0 }, { - "x": 368.2305043227157, - "y": 442.17105667927655 + "x": 368.2305, + "y": 442.17106 }, { "x": 0, "y": 0 }, { - "x": 368.80525607324284, - "y": 442.78001797458853 + "x": 368.80526, + "y": 442.78002 }, { "endCol": 7, @@ -65656,8 +65656,8 @@ "yScale": 1 }, { - "x": -0.6634320231786432, - "y": -0.6996690074048502 + "x": -0.66343, + "y": -0.69967 }, [ { @@ -65695,78 +65695,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 375.8385043227157, - "y": 444.64305667927647 + "x": 375.8385, + "y": 444.64306 }, { "body": null, "index": 1, "isInternal": false, - "x": 372.9325043227157, - "y": 448.64305667927647 + "x": 372.9325, + "y": 448.64306 }, { "body": null, "index": 2, "isInternal": false, - "x": 368.2305043227157, - "y": 450.1710566792765 + "x": 368.2305, + "y": 450.17106 }, { "body": null, "index": 3, "isInternal": false, - "x": 363.5285043227157, - "y": 448.64305667927647 + "x": 363.5285, + "y": 448.64306 }, { "body": null, "index": 4, "isInternal": false, - "x": 360.6225043227157, - "y": 444.64305667927647 + "x": 360.6225, + "y": 444.64306 }, { "body": null, "index": 5, "isInternal": false, - "x": 360.6225043227157, - "y": 439.6990566792765 + "x": 360.6225, + "y": 439.69906 }, { "body": null, "index": 6, "isInternal": false, - "x": 363.5285043227157, - "y": 435.6990566792765 + "x": 363.5285, + "y": 435.69906 }, { "body": null, "index": 7, "isInternal": false, - "x": 368.2305043227157, - "y": 434.1710566792765 + "x": 368.2305, + "y": 434.17106 }, { "body": null, "index": 8, "isInternal": false, - "x": 372.9325043227157, - "y": 435.6990566792765 + "x": 372.9325, + "y": 435.69906 }, { "body": null, "index": 9, "isInternal": false, - "x": 375.8385043227157, - "y": 439.6990566792765 + "x": 375.8385, + "y": 439.69906 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7273 }, @@ -65795,11 +65795,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -65821,7 +65821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8662483699997212, + "speed": 1.86625, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65851,20 +65851,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -65879,12 +65879,12 @@ } }, { - "x": 396.29969396440765, - "y": 458.570569545479 + "x": 396.29969, + "y": 458.57057 }, { - "x": 381.08369396440764, - "y": 442.570569545479 + "x": 381.08369, + "y": 442.57057 }, { "category": 1, @@ -65901,16 +65901,16 @@ "y": 0 }, { - "x": 388.6916939644076, - "y": 450.57056954547886 + "x": 388.69169, + "y": 450.57057 }, { "x": 0, "y": 0 }, { - "x": 389.98117767600473, - "y": 449.4648528044768 + "x": 389.98118, + "y": 449.46485 }, { "endCol": 8, @@ -65933,8 +65933,8 @@ "yScale": 1 }, { - "x": -1.2671357694267158, - "y": 1.1420170979789077 + "x": -1.26714, + "y": 1.14202 }, [ { @@ -65972,78 +65972,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.29969396440765, - "y": 453.04256954547895 + "x": 396.29969, + "y": 453.04257 }, { "body": null, "index": 1, "isInternal": false, - "x": 393.39369396440765, - "y": 457.04256954547895 + "x": 393.39369, + "y": 457.04257 }, { "body": null, "index": 2, "isInternal": false, - "x": 388.69169396440765, - "y": 458.570569545479 + "x": 388.69169, + "y": 458.57057 }, { "body": null, "index": 3, "isInternal": false, - "x": 383.98969396440765, - "y": 457.04256954547895 + "x": 383.98969, + "y": 457.04257 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.08369396440764, - "y": 453.04256954547895 + "x": 381.08369, + "y": 453.04257 }, { "body": null, "index": 5, "isInternal": false, - "x": 381.08369396440764, - "y": 448.098569545479 + "x": 381.08369, + "y": 448.09857 }, { "body": null, "index": 6, "isInternal": false, - "x": 383.98969396440765, - "y": 444.098569545479 + "x": 383.98969, + "y": 444.09857 }, { "body": null, "index": 7, "isInternal": false, - "x": 388.69169396440765, - "y": 442.570569545479 + "x": 388.69169, + "y": 442.57057 }, { "body": null, "index": 8, "isInternal": false, - "x": 393.39369396440765, - "y": 444.098569545479 + "x": 393.39369, + "y": 444.09857 }, { "body": null, "index": 9, "isInternal": false, - "x": 396.29969396440765, - "y": 448.098569545479 + "x": 396.29969, + "y": 448.09857 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7304 }, @@ -66072,11 +66072,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -66098,7 +66098,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3328699395110606, + "speed": 2.33287, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66128,20 +66128,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -66156,12 +66156,12 @@ } }, { - "x": 417.98783185895707, - "y": 461.5675754003412 + "x": 417.98783, + "y": 461.56758 }, { - "x": 402.77183185895706, - "y": 445.5675754003412 + "x": 402.77183, + "y": 445.56758 }, { "category": 1, @@ -66178,16 +66178,16 @@ "y": 0 }, { - "x": 410.3798318589572, - "y": 453.5675754003412 + "x": 410.37983, + "y": 453.56758 }, { "x": 0, "y": 0 }, { - "x": 411.56707482257247, - "y": 451.6161917225705 + "x": 411.56707, + "y": 451.61619 }, { "endCol": 8, @@ -66210,8 +66210,8 @@ "yScale": 1 }, { - "x": -1.1577054156704776, - "y": 2.0126182395168826 + "x": -1.15771, + "y": 2.01262 }, [ { @@ -66249,78 +66249,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.98783185895707, - "y": 456.03957540034116 + "x": 417.98783, + "y": 456.03958 }, { "body": null, "index": 1, "isInternal": false, - "x": 415.0818318589571, - "y": 460.03957540034116 + "x": 415.08183, + "y": 460.03958 }, { "body": null, "index": 2, "isInternal": false, - "x": 410.3798318589571, - "y": 461.5675754003412 + "x": 410.37983, + "y": 461.56758 }, { "body": null, "index": 3, "isInternal": false, - "x": 405.6778318589571, - "y": 460.03957540034116 + "x": 405.67783, + "y": 460.03958 }, { "body": null, "index": 4, "isInternal": false, - "x": 402.77183185895706, - "y": 456.03957540034116 + "x": 402.77183, + "y": 456.03958 }, { "body": null, "index": 5, "isInternal": false, - "x": 402.77183185895706, - "y": 451.0955754003412 + "x": 402.77183, + "y": 451.09558 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.6778318589571, - "y": 447.0955754003412 + "x": 405.67783, + "y": 447.09558 }, { "body": null, "index": 7, "isInternal": false, - "x": 410.3798318589571, - "y": 445.5675754003412 + "x": 410.37983, + "y": 445.56758 }, { "body": null, "index": 8, "isInternal": false, - "x": 415.0818318589571, - "y": 447.0955754003412 + "x": 415.08183, + "y": 447.09558 }, { "body": null, "index": 9, "isInternal": false, - "x": 417.98783185895707, - "y": 451.0955754003412 + "x": 417.98783, + "y": 451.09558 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7335 }, @@ -66349,11 +66349,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -66375,7 +66375,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.418095929144624, + "speed": 2.4181, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66405,20 +66405,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -66433,12 +66433,12 @@ } }, { - "x": 439.5242646418263, - "y": 462.52155345209644 + "x": 439.52426, + "y": 462.52155 }, { - "x": 424.30826464182627, - "y": 446.52155345209644 + "x": 424.30826, + "y": 446.52155 }, { "category": 1, @@ -66455,16 +66455,16 @@ "y": 0 }, { - "x": 431.9162646418263, - "y": 454.52155345209655 + "x": 431.91626, + "y": 454.52155 }, { "x": 0, "y": 0 }, { - "x": 432.5335454062394, - "y": 452.53286254528876 + "x": 432.53355, + "y": 452.53286 }, { "endCol": 9, @@ -66487,8 +66487,8 @@ "yScale": 1 }, { - "x": -0.5769034051076005, - "y": 2.089895808887377 + "x": -0.5769, + "y": 2.0899 }, [ { @@ -66526,78 +66526,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 439.5242646418263, - "y": 456.9935534520964 + "x": 439.52426, + "y": 456.99355 }, { "body": null, "index": 1, "isInternal": false, - "x": 436.6182646418263, - "y": 460.9935534520964 + "x": 436.61826, + "y": 460.99355 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.9162646418263, - "y": 462.52155345209644 + "x": 431.91626, + "y": 462.52155 }, { "body": null, "index": 3, "isInternal": false, - "x": 427.2142646418263, - "y": 460.9935534520964 + "x": 427.21426, + "y": 460.99355 }, { "body": null, "index": 4, "isInternal": false, - "x": 424.30826464182627, - "y": 456.9935534520964 + "x": 424.30826, + "y": 456.99355 }, { "body": null, "index": 5, "isInternal": false, - "x": 424.30826464182627, - "y": 452.04955345209646 + "x": 424.30826, + "y": 452.04955 }, { "body": null, "index": 6, "isInternal": false, - "x": 427.2142646418263, - "y": 448.04955345209646 + "x": 427.21426, + "y": 448.04955 }, { "body": null, "index": 7, "isInternal": false, - "x": 431.9162646418263, - "y": 446.52155345209644 + "x": 431.91626, + "y": 446.52155 }, { "body": null, "index": 8, "isInternal": false, - "x": 436.6182646418263, - "y": 448.04955345209646 + "x": 436.61826, + "y": 448.04955 }, { "body": null, "index": 9, "isInternal": false, - "x": 439.5242646418263, - "y": 452.04955345209646 + "x": 439.52426, + "y": 452.04955 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7366 }, @@ -66626,11 +66626,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -66652,7 +66652,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0740967610723136, + "speed": 1.0741, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66682,20 +66682,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -66710,12 +66710,12 @@ } }, { - "x": 460.8156981606153, - "y": 457.385198478168 + "x": 460.8157, + "y": 457.3852 }, { - "x": 444.834000831927, - "y": 441.11898447171393 + "x": 444.834, + "y": 441.11898 }, { "category": 1, @@ -66732,16 +66732,16 @@ "y": 0 }, { - "x": 452.44200083192675, - "y": 449.1189844717138 + "x": 452.442, + "y": 449.11898 }, { "x": 0, "y": 0 }, { - "x": 452.4420008319267, - "y": 448.69475117455795 + "x": 452.442, + "y": 448.69475 }, { "endCol": 9, @@ -66764,8 +66764,8 @@ "yScale": 1 }, { - "x": 5.684341886080802e-14, - "y": 0.42424171411721545 + "x": 0, + "y": 0.42424 }, [ { @@ -66803,78 +66803,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 460.05000083192704, - "y": 451.5909844717139 + "x": 460.05, + "y": 451.59098 }, { "body": null, "index": 1, "isInternal": false, - "x": 457.14400083192703, - "y": 455.5909844717139 + "x": 457.144, + "y": 455.59098 }, { "body": null, "index": 2, "isInternal": false, - "x": 452.44200083192703, - "y": 457.11898447171393 + "x": 452.442, + "y": 457.11898 }, { "body": null, "index": 3, "isInternal": false, - "x": 447.74000083192703, - "y": 455.5909844717139 + "x": 447.74, + "y": 455.59098 }, { "body": null, "index": 4, "isInternal": false, - "x": 444.834000831927, - "y": 451.5909844717139 + "x": 444.834, + "y": 451.59098 }, { "body": null, "index": 5, "isInternal": false, - "x": 444.834000831927, - "y": 446.64698447171395 + "x": 444.834, + "y": 446.64698 }, { "body": null, "index": 6, "isInternal": false, - "x": 447.74000083192703, - "y": 442.64698447171395 + "x": 447.74, + "y": 442.64698 }, { "body": null, "index": 7, "isInternal": false, - "x": 452.44200083192703, - "y": 441.11898447171393 + "x": 452.442, + "y": 441.11898 }, { "body": null, "index": 8, "isInternal": false, - "x": 457.14400083192703, - "y": 442.64698447171395 + "x": 457.144, + "y": 442.64698 }, { "body": null, "index": 9, "isInternal": false, - "x": 460.05000083192704, - "y": 446.64698447171395 + "x": 460.05, + "y": 446.64698 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7397 }, @@ -66903,11 +66903,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -66929,7 +66929,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.3708406429095165, + "speed": 0.37084, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66959,20 +66959,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -66987,12 +66987,12 @@ } }, { - "x": 478.65356243364386, - "y": 442.31086796403883 + "x": 478.65356, + "y": 442.31087 }, { - "x": 463.1792906562419, - "y": 424.05000282649684 + "x": 463.17929, + "y": 424.05 }, { "category": 1, @@ -67009,16 +67009,16 @@ "y": 0 }, { - "x": 470.78729065624196, - "y": 432.05000282649706 + "x": 470.78729, + "y": 432.05 }, { "x": 0, "y": 0 }, { - "x": 470.2648309692423, - "y": 432.050002826497 + "x": 470.26483, + "y": 432.05 }, { "endCol": 9, @@ -67041,8 +67041,8 @@ "yScale": 1 }, { - "x": 0.5224681039609891, - "y": 5.684341886080802e-14 + "x": 0.52247, + "y": 0 }, [ { @@ -67080,78 +67080,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.3952906562419, - "y": 434.5220028264968 + "x": 478.39529, + "y": 434.522 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.4892906562419, - "y": 438.5220028264968 + "x": 475.48929, + "y": 438.522 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.7872906562419, - "y": 440.05000282649684 + "x": 470.78729, + "y": 440.05 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.0852906562419, - "y": 438.5220028264968 + "x": 466.08529, + "y": 438.522 }, { "body": null, "index": 4, "isInternal": false, - "x": 463.1792906562419, - "y": 434.5220028264968 + "x": 463.17929, + "y": 434.522 }, { "body": null, "index": 5, "isInternal": false, - "x": 463.1792906562419, - "y": 429.57800282649686 + "x": 463.17929, + "y": 429.578 }, { "body": null, "index": 6, "isInternal": false, - "x": 466.0852906562419, - "y": 425.57800282649686 + "x": 466.08529, + "y": 425.578 }, { "body": null, "index": 7, "isInternal": false, - "x": 470.7872906562419, - "y": 424.05000282649684 + "x": 470.78729, + "y": 424.05 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.4892906562419, - "y": 425.57800282649686 + "x": 475.48929, + "y": 425.578 }, { "body": null, "index": 9, "isInternal": false, - "x": 478.3952906562419, - "y": 429.57800282649686 + "x": 478.39529, + "y": 429.578 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7428 }, @@ -67180,11 +67180,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -67206,7 +67206,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.579195294572063, + "speed": 0.5792, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67236,20 +67236,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -67264,12 +67264,12 @@ } }, { - "x": 500.71826062073626, - "y": 440.51146826913987 + "x": 500.71826, + "y": 440.51147 }, { - "x": 484.8885016789256, - "y": 423.41433987570366 + "x": 484.8885, + "y": 423.41434 }, { "category": 1, @@ -67286,16 +67286,16 @@ "y": 0 }, { - "x": 492.49650167892565, - "y": 431.41433987570355 + "x": 492.4965, + "y": 431.41434 }, { "x": 0, "y": 0 }, { - "x": 491.6453723848755, - "y": 431.41433987570355 + "x": 491.64537, + "y": 431.41434 }, { "endCol": 10, @@ -67318,7 +67318,7 @@ "yScale": 1 }, { - "x": 0.8511377110115177, + "x": 0.85114, "y": 0 }, [ @@ -67357,78 +67357,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 500.1045016789256, - "y": 433.88633987570364 + "x": 500.1045, + "y": 433.88634 }, { "body": null, "index": 1, "isInternal": false, - "x": 497.1985016789256, - "y": 437.88633987570364 + "x": 497.1985, + "y": 437.88634 }, { "body": null, "index": 2, "isInternal": false, - "x": 492.4965016789256, - "y": 439.41433987570366 + "x": 492.4965, + "y": 439.41434 }, { "body": null, "index": 3, "isInternal": false, - "x": 487.7945016789256, - "y": 437.88633987570364 + "x": 487.7945, + "y": 437.88634 }, { "body": null, "index": 4, "isInternal": false, - "x": 484.8885016789256, - "y": 433.88633987570364 + "x": 484.8885, + "y": 433.88634 }, { "body": null, "index": 5, "isInternal": false, - "x": 484.8885016789256, - "y": 428.9423398757037 + "x": 484.8885, + "y": 428.94234 }, { "body": null, "index": 6, "isInternal": false, - "x": 487.7945016789256, - "y": 424.9423398757037 + "x": 487.7945, + "y": 424.94234 }, { "body": null, "index": 7, "isInternal": false, - "x": 492.4965016789256, - "y": 423.41433987570366 + "x": 492.4965, + "y": 423.41434 }, { "body": null, "index": 8, "isInternal": false, - "x": 497.1985016789256, - "y": 424.9423398757037 + "x": 497.1985, + "y": 424.94234 }, { "body": null, "index": 9, "isInternal": false, - "x": 500.1045016789256, - "y": 428.9423398757037 + "x": 500.1045, + "y": 428.94234 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7459 }, @@ -67457,11 +67457,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -67483,7 +67483,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7342827852049947, + "speed": 0.73428, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67513,20 +67513,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -67541,12 +67541,12 @@ } }, { - "x": 522.5064739590133, - "y": 440.4934819373622 + "x": 522.50647, + "y": 440.49348 }, { - "x": 506.3950863313762, - "y": 423.36471498945434 + "x": 506.39509, + "y": 423.36471 }, { "category": 1, @@ -67563,16 +67563,16 @@ "y": 0 }, { - "x": 514.0030863313759, - "y": 431.3647149894544 + "x": 514.00309, + "y": 431.36471 }, { "x": 0, "y": 0 }, { - "x": 512.8690242053536, - "y": 431.3647149894544 + "x": 512.86902, + "y": 431.36471 }, { "endCol": 10, @@ -67595,7 +67595,7 @@ "yScale": 1 }, { - "x": 1.1340705429836362, + "x": 1.13407, "y": 0 }, [ @@ -67634,78 +67634,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 521.6110863313759, - "y": 433.8367149894543 + "x": 521.61109, + "y": 433.83671 }, { "body": null, "index": 1, "isInternal": false, - "x": 518.7050863313759, - "y": 437.8367149894543 + "x": 518.70509, + "y": 437.83671 }, { "body": null, "index": 2, "isInternal": false, - "x": 514.0030863313762, - "y": 439.36471498945434 + "x": 514.00309, + "y": 439.36471 }, { "body": null, "index": 3, "isInternal": false, - "x": 509.3010863313762, - "y": 437.8367149894543 + "x": 509.30109, + "y": 437.83671 }, { "body": null, "index": 4, "isInternal": false, - "x": 506.3950863313762, - "y": 433.8367149894543 + "x": 506.39509, + "y": 433.83671 }, { "body": null, "index": 5, "isInternal": false, - "x": 506.3950863313762, - "y": 428.89271498945436 + "x": 506.39509, + "y": 428.89271 }, { "body": null, "index": 6, "isInternal": false, - "x": 509.3010863313762, - "y": 424.89271498945436 + "x": 509.30109, + "y": 424.89271 }, { "body": null, "index": 7, "isInternal": false, - "x": 514.0030863313762, - "y": 423.36471498945434 + "x": 514.00309, + "y": 423.36471 }, { "body": null, "index": 8, "isInternal": false, - "x": 518.7050863313759, - "y": 424.89271498945436 + "x": 518.70509, + "y": 424.89271 }, { "body": null, "index": 9, "isInternal": false, - "x": 521.6110863313759, - "y": 428.89271498945436 + "x": 521.61109, + "y": 428.89271 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7490 }, @@ -67734,11 +67734,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -67760,7 +67760,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7882753934986387, + "speed": 0.78828, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67790,20 +67790,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -67818,12 +67818,12 @@ } }, { - "x": 543.9861460063413, - "y": 442.1121257028256 + "x": 543.98615, + "y": 442.11213 }, { - "x": 527.6713654403104, - "y": 424.0500027952082 + "x": 527.67137, + "y": 424.05 }, { "category": 1, @@ -67840,16 +67840,16 @@ "y": 0 }, { - "x": 535.2793654403098, - "y": 432.0500027952082 + "x": 535.27937, + "y": 432.05 }, { "x": 0, "y": 0 }, { - "x": 533.9013619138901, - "y": 432.0500027952082 + "x": 533.90136, + "y": 432.05 }, { "endCol": 11, @@ -67872,7 +67872,7 @@ "yScale": 1 }, { - "x": 1.3780119433808977, + "x": 1.37801, "y": 0 }, [ @@ -67911,78 +67911,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 542.8873654403103, - "y": 434.52200279520815 + "x": 542.88737, + "y": 434.522 }, { "body": null, "index": 1, "isInternal": false, - "x": 539.9813654403104, - "y": 438.52200279520815 + "x": 539.98137, + "y": 438.522 }, { "body": null, "index": 2, "isInternal": false, - "x": 535.2793654403104, - "y": 440.0500027952082 + "x": 535.27937, + "y": 440.05 }, { "body": null, "index": 3, "isInternal": false, - "x": 530.5773654403104, - "y": 438.52200279520815 + "x": 530.57737, + "y": 438.522 }, { "body": null, "index": 4, "isInternal": false, - "x": 527.6713654403104, - "y": 434.52200279520815 + "x": 527.67137, + "y": 434.522 }, { "body": null, "index": 5, "isInternal": false, - "x": 527.6713654403104, - "y": 429.5780027952082 + "x": 527.67137, + "y": 429.578 }, { "body": null, "index": 6, "isInternal": false, - "x": 530.5773654403104, - "y": 425.5780027952082 + "x": 530.57737, + "y": 425.578 }, { "body": null, "index": 7, "isInternal": false, - "x": 535.2793654403104, - "y": 424.0500027952082 + "x": 535.27937, + "y": 424.05 }, { "body": null, "index": 8, "isInternal": false, - "x": 539.9813654403104, - "y": 425.5780027952082 + "x": 539.98137, + "y": 425.578 }, { "body": null, "index": 9, "isInternal": false, - "x": 542.8873654403103, - "y": 429.5780027952082 + "x": 542.88737, + "y": 429.578 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7521 }, @@ -68011,11 +68011,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -68037,7 +68037,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.8639546674534604, + "speed": 1.86395, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -68067,20 +68067,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -68095,12 +68095,12 @@ } }, { - "x": 555.1659994192794, - "y": 460.747823834868 + "x": 555.166, + "y": 460.74782 }, { - "x": 539.3677477763108, - "y": 443.5194435396435 + "x": 539.36775, + "y": 443.51944 }, { "category": 1, @@ -68117,16 +68117,16 @@ "y": 0 }, { - "x": 547.5579994192794, - "y": 451.5194435396432 + "x": 547.558, + "y": 451.51944 }, { "x": 0, "y": 0 }, { - "x": 547.5579994192794, - "y": 450.155546996982 + "x": 547.558, + "y": 450.15555 }, { "endCol": 11, @@ -68150,7 +68150,7 @@ }, { "x": 0, - "y": 1.3639049596225163 + "y": 1.3639 }, [ { @@ -68188,78 +68188,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.1659994192794, - "y": 453.99144353964346 + "x": 555.166, + "y": 453.99144 }, { "body": null, "index": 1, "isInternal": false, - "x": 552.2599994192794, - "y": 457.99144353964346 + "x": 552.26, + "y": 457.99144 }, { "body": null, "index": 2, "isInternal": false, - "x": 547.5579994192794, - "y": 459.5194435396435 + "x": 547.558, + "y": 459.51944 }, { "body": null, "index": 3, "isInternal": false, - "x": 542.8559994192794, - "y": 457.99144353964346 + "x": 542.856, + "y": 457.99144 }, { "body": null, "index": 4, "isInternal": false, - "x": 539.9499994192795, - "y": 453.99144353964346 + "x": 539.95, + "y": 453.99144 }, { "body": null, "index": 5, "isInternal": false, - "x": 539.9499994192795, - "y": 449.0474435396435 + "x": 539.95, + "y": 449.04744 }, { "body": null, "index": 6, "isInternal": false, - "x": 542.8559994192794, - "y": 445.0474435396435 + "x": 542.856, + "y": 445.04744 }, { "body": null, "index": 7, "isInternal": false, - "x": 547.5579994192794, - "y": 443.5194435396435 + "x": 547.558, + "y": 443.51944 }, { "body": null, "index": 8, "isInternal": false, - "x": 552.2599994192794, - "y": 445.0474435396435 + "x": 552.26, + "y": 445.04744 }, { "body": null, "index": 9, "isInternal": false, - "x": 555.1659994192794, - "y": 449.0474435396435 + "x": 555.166, + "y": 449.04744 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7552 }, @@ -68288,11 +68288,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -68314,7 +68314,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8963841552534006, + "speed": 2.89638, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -68344,20 +68344,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -68372,12 +68372,12 @@ } }, { - "x": 574.273247891059, - "y": 464.1469866873149 + "x": 574.27325, + "y": 464.14699 }, { - "x": 559.0572478910591, - "y": 448.1469866873149 + "x": 559.05725, + "y": 448.14699 }, { "category": 1, @@ -68394,16 +68394,16 @@ "y": 0 }, { - "x": 566.665247891059, - "y": 456.146986687315 + "x": 566.66525, + "y": 456.14699 }, { "x": 0, "y": 0 }, { - "x": 567.4789023974461, - "y": 453.4543171530019 + "x": 567.4789, + "y": 453.45432 }, { "endCol": 11, @@ -68426,8 +68426,8 @@ "yScale": 1 }, { - "x": -0.8150617677434866, - "y": 2.7256556826704355 + "x": -0.81506, + "y": 2.72566 }, [ { @@ -68465,78 +68465,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 574.273247891059, - "y": 458.6189866873149 + "x": 574.27325, + "y": 458.61899 }, { "body": null, "index": 1, "isInternal": false, - "x": 571.367247891059, - "y": 462.6189866873149 + "x": 571.36725, + "y": 462.61899 }, { "body": null, "index": 2, "isInternal": false, - "x": 566.665247891059, - "y": 464.1469866873149 + "x": 566.66525, + "y": 464.14699 }, { "body": null, "index": 3, "isInternal": false, - "x": 561.963247891059, - "y": 462.6189866873149 + "x": 561.96325, + "y": 462.61899 }, { "body": null, "index": 4, "isInternal": false, - "x": 559.0572478910591, - "y": 458.6189866873149 + "x": 559.05725, + "y": 458.61899 }, { "body": null, "index": 5, "isInternal": false, - "x": 559.0572478910591, - "y": 453.6749866873149 + "x": 559.05725, + "y": 453.67499 }, { "body": null, "index": 6, "isInternal": false, - "x": 561.963247891059, - "y": 449.6749866873149 + "x": 561.96325, + "y": 449.67499 }, { "body": null, "index": 7, "isInternal": false, - "x": 566.665247891059, - "y": 448.1469866873149 + "x": 566.66525, + "y": 448.14699 }, { "body": null, "index": 8, "isInternal": false, - "x": 571.367247891059, - "y": 449.6749866873149 + "x": 571.36725, + "y": 449.67499 }, { "body": null, "index": 9, "isInternal": false, - "x": 574.273247891059, - "y": 453.6749866873149 + "x": 574.27325, + "y": 453.67499 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 188.07721600000002, + "area": 188.07722, "axes": { "#": 7583 }, @@ -68565,11 +68565,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 5.316965134150007, + "inverseMass": 5.31697, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.18807721600000002, + "mass": 0.18808, "motion": 0, "parent": null, "position": { @@ -68591,7 +68591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9730662024746852, + "speed": 2.97307, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -68621,20 +68621,20 @@ } ], { - "x": -0.8090333553601466, - "y": -0.5877627326691465 + "x": -0.80903, + "y": -0.58776 }, { - "x": -0.3090586311458668, - "y": -0.9510429866805407 + "x": -0.30906, + "y": -0.95104 }, { - "x": 0.3090586311458668, - "y": -0.9510429866805407 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.8090333553601466, - "y": -0.5877627326691465 + "x": 0.80903, + "y": -0.58776 }, { "x": 1, @@ -68649,12 +68649,12 @@ } }, { - "x": 594.5732988422747, - "y": 464.45756970719856 + "x": 594.5733, + "y": 464.45757 }, { - "x": 579.3572988422748, - "y": 448.45756970719856 + "x": 579.3573, + "y": 448.45757 }, { "category": 1, @@ -68671,16 +68671,16 @@ "y": 0 }, { - "x": 586.9652988422746, - "y": 456.45756970719856 + "x": 586.9653, + "y": 456.45757 }, { "x": 0, "y": 0 }, { - "x": 587.9479009762117, - "y": 453.6838401255343 + "x": 587.9479, + "y": 453.68384 }, { "endCol": 12, @@ -68703,8 +68703,8 @@ "yScale": 1 }, { - "x": -0.9842030095884411, - "y": 2.801820355761947 + "x": -0.9842, + "y": 2.80182 }, [ { @@ -68742,71 +68742,71 @@ "body": null, "index": 0, "isInternal": false, - "x": 594.5732988422747, - "y": 458.92956970719854 + "x": 594.5733, + "y": 458.92957 }, { "body": null, "index": 1, "isInternal": false, - "x": 591.6672988422747, - "y": 462.92956970719854 + "x": 591.6673, + "y": 462.92957 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.9652988422747, - "y": 464.45756970719856 + "x": 586.9653, + "y": 464.45757 }, { "body": null, "index": 3, "isInternal": false, - "x": 582.2632988422747, - "y": 462.92956970719854 + "x": 582.2633, + "y": 462.92957 }, { "body": null, "index": 4, "isInternal": false, - "x": 579.3572988422748, - "y": 458.92956970719854 + "x": 579.3573, + "y": 458.92957 }, { "body": null, "index": 5, "isInternal": false, - "x": 579.3572988422748, - "y": 453.9855697071986 + "x": 579.3573, + "y": 453.98557 }, { "body": null, "index": 6, "isInternal": false, - "x": 582.2632988422747, - "y": 449.9855697071986 + "x": 582.2633, + "y": 449.98557 }, { "body": null, "index": 7, "isInternal": false, - "x": 586.9652988422747, - "y": 448.45756970719856 + "x": 586.9653, + "y": 448.45757 }, { "body": null, "index": 8, "isInternal": false, - "x": 591.6672988422747, - "y": 449.9855697071986 + "x": 591.6673, + "y": 449.98557 }, { "body": null, "index": 9, "isInternal": false, - "x": 594.5732988422747, - "y": 453.9855697071986 + "x": 594.5733, + "y": 453.98557 }, [], [ @@ -70163,7 +70163,7 @@ "bodyB": null, "id": 245, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7616 }, @@ -70197,7 +70197,7 @@ "bodyB": null, "id": 246, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7620 }, @@ -70231,7 +70231,7 @@ "bodyB": null, "id": 247, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7624 }, @@ -70265,7 +70265,7 @@ "bodyB": null, "id": 248, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7628 }, @@ -70299,7 +70299,7 @@ "bodyB": null, "id": 249, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7632 }, @@ -70333,7 +70333,7 @@ "bodyB": null, "id": 250, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7636 }, @@ -70367,7 +70367,7 @@ "bodyB": null, "id": 251, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7640 }, @@ -70401,7 +70401,7 @@ "bodyB": null, "id": 252, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7644 }, @@ -70435,7 +70435,7 @@ "bodyB": null, "id": 253, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7648 }, @@ -70469,7 +70469,7 @@ "bodyB": null, "id": 254, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7652 }, @@ -70503,7 +70503,7 @@ "bodyB": null, "id": 255, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7656 }, @@ -70537,7 +70537,7 @@ "bodyB": null, "id": 256, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7660 }, @@ -70571,7 +70571,7 @@ "bodyB": null, "id": 257, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7664 }, @@ -70605,7 +70605,7 @@ "bodyB": null, "id": 258, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7668 }, @@ -70639,7 +70639,7 @@ "bodyB": null, "id": 259, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7672 }, @@ -70673,7 +70673,7 @@ "bodyB": null, "id": 260, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 7676 }, @@ -70707,7 +70707,7 @@ "bodyB": null, "id": 261, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7680 }, @@ -70741,7 +70741,7 @@ "bodyB": null, "id": 262, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7684 }, @@ -70775,7 +70775,7 @@ "bodyB": null, "id": 263, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7688 }, @@ -70809,7 +70809,7 @@ "bodyB": null, "id": 264, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7692 }, @@ -70843,7 +70843,7 @@ "bodyB": null, "id": 265, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7696 }, @@ -70877,7 +70877,7 @@ "bodyB": null, "id": 266, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7700 }, @@ -70911,7 +70911,7 @@ "bodyB": null, "id": 267, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7704 }, @@ -70945,7 +70945,7 @@ "bodyB": null, "id": 268, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7708 }, @@ -70979,7 +70979,7 @@ "bodyB": null, "id": 269, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7712 }, @@ -71013,7 +71013,7 @@ "bodyB": null, "id": 270, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7716 }, @@ -71047,7 +71047,7 @@ "bodyB": null, "id": 271, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7720 }, @@ -71081,7 +71081,7 @@ "bodyB": null, "id": 272, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7724 }, @@ -71115,7 +71115,7 @@ "bodyB": null, "id": 273, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7728 }, @@ -71149,7 +71149,7 @@ "bodyB": null, "id": 274, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7732 }, @@ -71183,7 +71183,7 @@ "bodyB": null, "id": 275, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7736 }, @@ -71217,7 +71217,7 @@ "bodyB": null, "id": 276, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7740 }, @@ -71251,7 +71251,7 @@ "bodyB": null, "id": 277, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7744 }, @@ -71285,7 +71285,7 @@ "bodyB": null, "id": 278, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7748 }, @@ -71319,7 +71319,7 @@ "bodyB": null, "id": 279, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 7752 }, @@ -71353,7 +71353,7 @@ "bodyB": null, "id": 280, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7756 }, @@ -71387,7 +71387,7 @@ "bodyB": null, "id": 281, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7760 }, @@ -71421,7 +71421,7 @@ "bodyB": null, "id": 282, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7764 }, @@ -72135,7 +72135,7 @@ "bodyB": null, "id": 303, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7848 }, @@ -72169,7 +72169,7 @@ "bodyB": null, "id": 304, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7852 }, @@ -72203,7 +72203,7 @@ "bodyB": null, "id": 305, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7856 }, @@ -72237,7 +72237,7 @@ "bodyB": null, "id": 306, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7860 }, @@ -72271,7 +72271,7 @@ "bodyB": null, "id": 307, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7864 }, @@ -72305,7 +72305,7 @@ "bodyB": null, "id": 308, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7868 }, @@ -72339,7 +72339,7 @@ "bodyB": null, "id": 309, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7872 }, @@ -72373,7 +72373,7 @@ "bodyB": null, "id": 310, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7876 }, @@ -72407,7 +72407,7 @@ "bodyB": null, "id": 311, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7880 }, @@ -72441,7 +72441,7 @@ "bodyB": null, "id": 312, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7884 }, @@ -72475,7 +72475,7 @@ "bodyB": null, "id": 313, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7888 }, @@ -72509,7 +72509,7 @@ "bodyB": null, "id": 314, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7892 }, @@ -72543,7 +72543,7 @@ "bodyB": null, "id": 315, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7896 }, @@ -72577,7 +72577,7 @@ "bodyB": null, "id": 316, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7900 }, @@ -72611,7 +72611,7 @@ "bodyB": null, "id": 317, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 7904 }, @@ -72645,7 +72645,7 @@ "bodyB": null, "id": 318, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 7908 }, @@ -72679,7 +72679,7 @@ "bodyB": null, "id": 319, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7912 }, @@ -72713,7 +72713,7 @@ "bodyB": null, "id": 320, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7916 }, @@ -72747,7 +72747,7 @@ "bodyB": null, "id": 321, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 7920 }, @@ -73461,7 +73461,7 @@ "bodyB": null, "id": 342, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8004 }, @@ -73495,7 +73495,7 @@ "bodyB": null, "id": 343, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8008 }, @@ -73529,7 +73529,7 @@ "bodyB": null, "id": 344, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8012 }, @@ -73563,7 +73563,7 @@ "bodyB": null, "id": 345, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8016 }, @@ -73597,7 +73597,7 @@ "bodyB": null, "id": 346, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8020 }, @@ -73631,7 +73631,7 @@ "bodyB": null, "id": 347, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8024 }, @@ -73665,7 +73665,7 @@ "bodyB": null, "id": 348, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8028 }, @@ -73699,7 +73699,7 @@ "bodyB": null, "id": 349, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8032 }, @@ -73733,7 +73733,7 @@ "bodyB": null, "id": 350, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8036 }, @@ -73767,7 +73767,7 @@ "bodyB": null, "id": 351, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8040 }, @@ -73801,7 +73801,7 @@ "bodyB": null, "id": 352, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8044 }, @@ -73835,7 +73835,7 @@ "bodyB": null, "id": 353, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8048 }, @@ -73869,7 +73869,7 @@ "bodyB": null, "id": 354, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8052 }, @@ -73903,7 +73903,7 @@ "bodyB": null, "id": 355, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8056 }, @@ -73937,7 +73937,7 @@ "bodyB": null, "id": 356, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8060 }, @@ -73971,7 +73971,7 @@ "bodyB": null, "id": 357, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8064 }, @@ -74005,7 +74005,7 @@ "bodyB": null, "id": 358, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8068 }, @@ -74039,7 +74039,7 @@ "bodyB": null, "id": 359, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8072 }, @@ -74073,7 +74073,7 @@ "bodyB": null, "id": 360, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8076 }, @@ -74787,7 +74787,7 @@ "bodyB": null, "id": 381, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8160 }, @@ -74821,7 +74821,7 @@ "bodyB": null, "id": 382, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8164 }, @@ -74855,7 +74855,7 @@ "bodyB": null, "id": 383, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8168 }, @@ -74889,7 +74889,7 @@ "bodyB": null, "id": 384, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8172 }, @@ -74923,7 +74923,7 @@ "bodyB": null, "id": 385, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8176 }, @@ -74957,7 +74957,7 @@ "bodyB": null, "id": 386, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8180 }, @@ -74991,7 +74991,7 @@ "bodyB": null, "id": 387, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8184 }, @@ -75025,7 +75025,7 @@ "bodyB": null, "id": 388, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8188 }, @@ -75059,7 +75059,7 @@ "bodyB": null, "id": 389, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8192 }, @@ -75093,7 +75093,7 @@ "bodyB": null, "id": 390, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8196 }, @@ -75127,7 +75127,7 @@ "bodyB": null, "id": 391, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8200 }, @@ -75161,7 +75161,7 @@ "bodyB": null, "id": 392, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8204 }, @@ -75195,7 +75195,7 @@ "bodyB": null, "id": 393, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8208 }, @@ -75229,7 +75229,7 @@ "bodyB": null, "id": 394, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8212 }, @@ -75263,7 +75263,7 @@ "bodyB": null, "id": 395, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8216 }, @@ -75297,7 +75297,7 @@ "bodyB": null, "id": 396, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8220 }, @@ -75331,7 +75331,7 @@ "bodyB": null, "id": 397, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8224 }, @@ -75365,7 +75365,7 @@ "bodyB": null, "id": 398, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8228 }, @@ -75399,7 +75399,7 @@ "bodyB": null, "id": 399, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8232 }, @@ -76113,7 +76113,7 @@ "bodyB": null, "id": 420, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8316 }, @@ -76147,7 +76147,7 @@ "bodyB": null, "id": 421, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8320 }, @@ -76181,7 +76181,7 @@ "bodyB": null, "id": 422, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8324 }, @@ -76215,7 +76215,7 @@ "bodyB": null, "id": 423, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8328 }, @@ -76249,7 +76249,7 @@ "bodyB": null, "id": 424, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8332 }, @@ -76283,7 +76283,7 @@ "bodyB": null, "id": 425, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8336 }, @@ -76317,7 +76317,7 @@ "bodyB": null, "id": 426, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8340 }, @@ -76351,7 +76351,7 @@ "bodyB": null, "id": 427, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8344 }, @@ -76385,7 +76385,7 @@ "bodyB": null, "id": 428, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8348 }, @@ -76419,7 +76419,7 @@ "bodyB": null, "id": 429, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8352 }, @@ -76453,7 +76453,7 @@ "bodyB": null, "id": 430, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8356 }, @@ -76487,7 +76487,7 @@ "bodyB": null, "id": 431, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8360 }, @@ -76521,7 +76521,7 @@ "bodyB": null, "id": 432, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8364 }, @@ -76555,7 +76555,7 @@ "bodyB": null, "id": 433, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8368 }, @@ -76589,7 +76589,7 @@ "bodyB": null, "id": 434, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8372 }, @@ -76623,7 +76623,7 @@ "bodyB": null, "id": 435, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8376 }, @@ -76657,7 +76657,7 @@ "bodyB": null, "id": 436, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8380 }, @@ -76691,7 +76691,7 @@ "bodyB": null, "id": 437, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8384 }, @@ -76725,7 +76725,7 @@ "bodyB": null, "id": 438, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8388 }, @@ -77439,7 +77439,7 @@ "bodyB": null, "id": 459, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8472 }, @@ -77473,7 +77473,7 @@ "bodyB": null, "id": 460, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8476 }, @@ -77507,7 +77507,7 @@ "bodyB": null, "id": 461, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8480 }, @@ -77541,7 +77541,7 @@ "bodyB": null, "id": 462, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8484 }, @@ -77575,7 +77575,7 @@ "bodyB": null, "id": 463, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8488 }, @@ -77609,7 +77609,7 @@ "bodyB": null, "id": 464, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8492 }, @@ -77643,7 +77643,7 @@ "bodyB": null, "id": 465, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8496 }, @@ -77677,7 +77677,7 @@ "bodyB": null, "id": 466, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8500 }, @@ -77711,7 +77711,7 @@ "bodyB": null, "id": 467, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8504 }, @@ -77745,7 +77745,7 @@ "bodyB": null, "id": 468, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8508 }, @@ -77779,7 +77779,7 @@ "bodyB": null, "id": 469, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8512 }, @@ -77813,7 +77813,7 @@ "bodyB": null, "id": 470, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8516 }, @@ -77847,7 +77847,7 @@ "bodyB": null, "id": 471, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8520 }, @@ -77881,7 +77881,7 @@ "bodyB": null, "id": 472, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8524 }, @@ -77915,7 +77915,7 @@ "bodyB": null, "id": 473, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8528 }, @@ -77949,7 +77949,7 @@ "bodyB": null, "id": 474, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8532 }, @@ -77983,7 +77983,7 @@ "bodyB": null, "id": 475, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8536 }, @@ -78017,7 +78017,7 @@ "bodyB": null, "id": 476, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8540 }, @@ -78051,7 +78051,7 @@ "bodyB": null, "id": 477, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8544 }, @@ -78765,7 +78765,7 @@ "bodyB": null, "id": 498, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8628 }, @@ -78799,7 +78799,7 @@ "bodyB": null, "id": 499, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8632 }, @@ -78833,7 +78833,7 @@ "bodyB": null, "id": 500, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8636 }, @@ -78867,7 +78867,7 @@ "bodyB": null, "id": 501, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8640 }, @@ -78901,7 +78901,7 @@ "bodyB": null, "id": 502, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8644 }, @@ -78935,7 +78935,7 @@ "bodyB": null, "id": 503, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8648 }, @@ -78969,7 +78969,7 @@ "bodyB": null, "id": 504, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8652 }, @@ -79003,7 +79003,7 @@ "bodyB": null, "id": 505, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8656 }, @@ -79037,7 +79037,7 @@ "bodyB": null, "id": 506, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8660 }, @@ -79071,7 +79071,7 @@ "bodyB": null, "id": 507, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8664 }, @@ -79105,7 +79105,7 @@ "bodyB": null, "id": 508, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8668 }, @@ -79139,7 +79139,7 @@ "bodyB": null, "id": 509, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8672 }, @@ -79173,7 +79173,7 @@ "bodyB": null, "id": 510, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8676 }, @@ -79207,7 +79207,7 @@ "bodyB": null, "id": 511, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8680 }, @@ -79241,7 +79241,7 @@ "bodyB": null, "id": 512, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8684 }, @@ -79275,7 +79275,7 @@ "bodyB": null, "id": 513, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8688 }, @@ -79309,7 +79309,7 @@ "bodyB": null, "id": 514, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8692 }, @@ -79343,7 +79343,7 @@ "bodyB": null, "id": 515, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8696 }, @@ -79377,7 +79377,7 @@ "bodyB": null, "id": 516, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8700 }, @@ -80091,7 +80091,7 @@ "bodyB": null, "id": 537, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8784 }, @@ -80125,7 +80125,7 @@ "bodyB": null, "id": 538, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8788 }, @@ -80159,7 +80159,7 @@ "bodyB": null, "id": 539, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8792 }, @@ -80193,7 +80193,7 @@ "bodyB": null, "id": 540, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8796 }, @@ -80227,7 +80227,7 @@ "bodyB": null, "id": 541, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8800 }, @@ -80261,7 +80261,7 @@ "bodyB": null, "id": 542, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8804 }, @@ -80295,7 +80295,7 @@ "bodyB": null, "id": 543, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8808 }, @@ -80329,7 +80329,7 @@ "bodyB": null, "id": 544, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8812 }, @@ -80363,7 +80363,7 @@ "bodyB": null, "id": 545, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8816 }, @@ -80397,7 +80397,7 @@ "bodyB": null, "id": 546, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8820 }, @@ -80431,7 +80431,7 @@ "bodyB": null, "id": 547, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8824 }, @@ -80465,7 +80465,7 @@ "bodyB": null, "id": 548, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8828 }, @@ -80499,7 +80499,7 @@ "bodyB": null, "id": 549, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8832 }, @@ -80533,7 +80533,7 @@ "bodyB": null, "id": 550, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8836 }, @@ -80567,7 +80567,7 @@ "bodyB": null, "id": 551, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8840 }, @@ -80601,7 +80601,7 @@ "bodyB": null, "id": 552, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 8844 }, @@ -80635,7 +80635,7 @@ "bodyB": null, "id": 553, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8848 }, @@ -80669,7 +80669,7 @@ "bodyB": null, "id": 554, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8852 }, @@ -80703,7 +80703,7 @@ "bodyB": null, "id": 555, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 8856 }, @@ -81417,7 +81417,7 @@ "bodyB": null, "id": 576, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8940 }, @@ -81451,7 +81451,7 @@ "bodyB": null, "id": 577, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8944 }, @@ -81485,7 +81485,7 @@ "bodyB": null, "id": 578, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8948 }, @@ -81519,7 +81519,7 @@ "bodyB": null, "id": 579, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8952 }, @@ -81553,7 +81553,7 @@ "bodyB": null, "id": 580, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8956 }, @@ -81587,7 +81587,7 @@ "bodyB": null, "id": 581, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8960 }, @@ -81621,7 +81621,7 @@ "bodyB": null, "id": 582, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8964 }, @@ -81655,7 +81655,7 @@ "bodyB": null, "id": 583, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8968 }, @@ -81689,7 +81689,7 @@ "bodyB": null, "id": 584, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8972 }, @@ -81723,7 +81723,7 @@ "bodyB": null, "id": 585, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8976 }, @@ -81757,7 +81757,7 @@ "bodyB": null, "id": 586, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8980 }, @@ -81791,7 +81791,7 @@ "bodyB": null, "id": 587, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8984 }, @@ -81825,7 +81825,7 @@ "bodyB": null, "id": 588, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8988 }, @@ -81859,7 +81859,7 @@ "bodyB": null, "id": 589, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8992 }, @@ -81893,7 +81893,7 @@ "bodyB": null, "id": 590, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 8996 }, @@ -81927,7 +81927,7 @@ "bodyB": null, "id": 591, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 9000 }, @@ -81961,7 +81961,7 @@ "bodyB": null, "id": 592, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9004 }, @@ -81995,7 +81995,7 @@ "bodyB": null, "id": 593, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9008 }, @@ -82029,7 +82029,7 @@ "bodyB": null, "id": 594, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9012 }, @@ -82743,7 +82743,7 @@ "bodyB": null, "id": 615, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9096 }, @@ -82777,7 +82777,7 @@ "bodyB": null, "id": 616, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9100 }, @@ -82811,7 +82811,7 @@ "bodyB": null, "id": 617, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9104 }, @@ -82845,7 +82845,7 @@ "bodyB": null, "id": 618, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9108 }, @@ -82879,7 +82879,7 @@ "bodyB": null, "id": 619, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9112 }, @@ -82913,7 +82913,7 @@ "bodyB": null, "id": 620, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9116 }, @@ -82947,7 +82947,7 @@ "bodyB": null, "id": 621, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9120 }, @@ -82981,7 +82981,7 @@ "bodyB": null, "id": 622, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9124 }, @@ -83015,7 +83015,7 @@ "bodyB": null, "id": 623, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9128 }, @@ -83049,7 +83049,7 @@ "bodyB": null, "id": 624, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9132 }, @@ -83083,7 +83083,7 @@ "bodyB": null, "id": 625, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9136 }, @@ -83117,7 +83117,7 @@ "bodyB": null, "id": 626, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9140 }, @@ -83151,7 +83151,7 @@ "bodyB": null, "id": 627, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9144 }, @@ -83185,7 +83185,7 @@ "bodyB": null, "id": 628, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9148 }, @@ -83219,7 +83219,7 @@ "bodyB": null, "id": 629, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9152 }, @@ -83253,7 +83253,7 @@ "bodyB": null, "id": 630, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 9156 }, @@ -83287,7 +83287,7 @@ "bodyB": null, "id": 631, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9160 }, @@ -83321,7 +83321,7 @@ "bodyB": null, "id": 632, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9164 }, @@ -83355,7 +83355,7 @@ "bodyB": null, "id": 633, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9168 }, @@ -84069,7 +84069,7 @@ "bodyB": null, "id": 654, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9252 }, @@ -84103,7 +84103,7 @@ "bodyB": null, "id": 655, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9256 }, @@ -84137,7 +84137,7 @@ "bodyB": null, "id": 656, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9260 }, @@ -84171,7 +84171,7 @@ "bodyB": null, "id": 657, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9264 }, @@ -84205,7 +84205,7 @@ "bodyB": null, "id": 658, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9268 }, @@ -84239,7 +84239,7 @@ "bodyB": null, "id": 659, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9272 }, @@ -84273,7 +84273,7 @@ "bodyB": null, "id": 660, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9276 }, @@ -84307,7 +84307,7 @@ "bodyB": null, "id": 661, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9280 }, @@ -84341,7 +84341,7 @@ "bodyB": null, "id": 662, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9284 }, @@ -84375,7 +84375,7 @@ "bodyB": null, "id": 663, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9288 }, @@ -84409,7 +84409,7 @@ "bodyB": null, "id": 664, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9292 }, @@ -84443,7 +84443,7 @@ "bodyB": null, "id": 665, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9296 }, @@ -84477,7 +84477,7 @@ "bodyB": null, "id": 666, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9300 }, @@ -84511,7 +84511,7 @@ "bodyB": null, "id": 667, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9304 }, @@ -84545,7 +84545,7 @@ "bodyB": null, "id": 668, "label": "Constraint", - "length": 20.216000000000008, + "length": 20.216, "pointA": { "#": 9308 }, @@ -84579,7 +84579,7 @@ "bodyB": null, "id": 669, "label": "Constraint", - "length": 20.21599999999995, + "length": 20.216, "pointA": { "#": 9312 }, @@ -84613,7 +84613,7 @@ "bodyB": null, "id": 670, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9316 }, @@ -84647,7 +84647,7 @@ "bodyB": null, "id": 671, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9320 }, @@ -84681,7 +84681,7 @@ "bodyB": null, "id": 672, "label": "Constraint", - "length": 20.215999999999894, + "length": 20.216, "pointA": { "#": 9324 }, diff --git a/test/browser/refs/collisionFiltering/collisionFiltering-0.json b/test/browser/refs/collisionFiltering/collisionFiltering-0.json index 0a7e15e3..fa25faff 100644 --- a/test/browser/refs/collisionFiltering/collisionFiltering-0.json +++ b/test/browser/refs/collisionFiltering/collisionFiltering-0.json @@ -832,7 +832,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 87 }, @@ -854,13 +854,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 4991.137790304929, - "inverseInertia": 0.0002003551178135088, - "inverseMass": 0.35714487705224035, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -933,52 +933,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1226,7 +1226,7 @@ "index": 14, "isInternal": false, "x": 281.95, - "y": 29.362000000000002 + "y": 29.362 }, { "body": null, @@ -1296,7 +1296,7 @@ "index": 24, "isInternal": false, "x": 338.05, - "y": 29.362000000000002 + "y": 29.362 }, { "body": null, @@ -1310,7 +1310,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 141 }, @@ -1332,13 +1332,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 4991.137790304929, - "inverseInertia": 0.0002003551178135088, - "inverseMass": 0.35714487705224035, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -1411,52 +1411,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1704,7 +1704,7 @@ "index": 14, "isInternal": false, "x": 371.95, - "y": 29.362000000000002 + "y": 29.362 }, { "body": null, @@ -1774,7 +1774,7 @@ "index": 24, "isInternal": false, "x": 428.05, - "y": 29.362000000000002 + "y": 29.362 }, { "body": null, @@ -1788,7 +1788,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 195 }, @@ -1810,13 +1810,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 4991.137790304929, - "inverseInertia": 0.0002003551178135088, - "inverseMass": 0.35714487705224035, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -1889,52 +1889,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -2182,7 +2182,7 @@ "index": 14, "isInternal": false, "x": 451.95, - "y": 29.362000000000002 + "y": 29.362 }, { "body": null, @@ -2252,7 +2252,7 @@ "index": 24, "isInternal": false, "x": 508.05, - "y": 29.362000000000002 + "y": 29.362 }, { "body": null, @@ -2455,7 +2455,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 255 }, @@ -2477,13 +2477,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2547,40 +2547,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2595,8 +2595,8 @@ } }, { - "x": 314.50800000000004, - "y": 189.50799999999998 + "x": 314.508, + "y": 189.508 }, { "x": 275, @@ -2711,8 +2711,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 172.88299999999998 + "x": 314.508, + "y": 172.883 }, { "body": null, @@ -2733,28 +2733,28 @@ "index": 3, "isInternal": false, "x": 303.834, - "y": 187.57399999999998 + "y": 187.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 189.50799999999998 + "x": 297.883, + "y": 189.508 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 189.50799999999998 + "y": 189.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 187.57399999999998 + "x": 285.674, + "y": 187.574 }, { "body": null, @@ -2775,7 +2775,7 @@ "index": 9, "isInternal": false, "x": 275, - "y": 172.88299999999998 + "y": 172.883 }, { "body": null, @@ -2789,7 +2789,7 @@ "index": 11, "isInternal": false, "x": 276.934, - "y": 160.67399999999998 + "y": 160.674 }, { "body": null, @@ -2802,7 +2802,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, + "x": 285.674, "y": 151.934 }, { @@ -2816,7 +2816,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, + "x": 297.883, "y": 150 }, { @@ -2838,13 +2838,13 @@ "index": 18, "isInternal": false, "x": 312.574, - "y": 160.67399999999998 + "y": 160.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, + "x": 314.508, "y": 166.625 }, { @@ -2852,7 +2852,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 300 }, @@ -2874,13 +2874,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2944,40 +2944,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2992,11 +2992,11 @@ } }, { - "x": 364.0160000000001, - "y": 189.50799999999998 + "x": 364.016, + "y": 189.508 }, { - "x": 324.50800000000004, + "x": 324.508, "y": 150 }, { @@ -3014,7 +3014,7 @@ "y": 0 }, { - "x": 344.26200000000006, + "x": 344.262, "y": 169.754 }, { @@ -3022,7 +3022,7 @@ "y": 0 }, { - "x": 344.26200000000006, + "x": 344.262, "y": 169.754 }, { @@ -3108,140 +3108,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 172.88299999999998 + "x": 364.016, + "y": 172.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, + "x": 362.082, "y": 178.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, + "x": 358.404, "y": 183.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 187.57399999999998 + "x": 353.342, + "y": 187.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 189.50799999999998 + "x": 347.391, + "y": 189.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 189.50799999999998 + "x": 341.133, + "y": 189.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 187.57399999999998 + "x": 335.182, + "y": 187.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, + "x": 330.12, "y": 183.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, + "x": 326.442, "y": 178.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 172.88299999999998 + "x": 324.508, + "y": 172.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, + "x": 324.508, "y": 166.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 160.67399999999998 + "x": 326.442, + "y": 160.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, + "x": 330.12, "y": 155.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, + "x": 335.182, "y": 151.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, + "x": 341.133, "y": 150 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, + "x": 347.391, "y": 150 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, + "x": 353.342, "y": 151.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, + "x": 358.404, "y": 155.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 160.67399999999998 + "x": 362.082, + "y": 160.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, + "x": 364.016, "y": 166.625 }, { @@ -3249,7 +3249,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 345 }, @@ -3271,13 +3271,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3341,40 +3341,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3389,11 +3389,11 @@ } }, { - "x": 413.5240000000001, - "y": 189.50799999999998 + "x": 413.524, + "y": 189.508 }, { - "x": 374.0160000000001, + "x": 374.016, "y": 150 }, { @@ -3411,7 +3411,7 @@ "y": 0 }, { - "x": 393.7700000000001, + "x": 393.77, "y": 169.754 }, { @@ -3419,7 +3419,7 @@ "y": 0 }, { - "x": 393.7700000000001, + "x": 393.77, "y": 169.754 }, { @@ -3505,140 +3505,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 172.88299999999998 + "x": 413.524, + "y": 172.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, + "x": 411.59, "y": 178.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, + "x": 407.912, "y": 183.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 187.57399999999998 + "x": 402.85, + "y": 187.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 189.50799999999998 + "x": 396.899, + "y": 189.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 189.50799999999998 + "x": 390.641, + "y": 189.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 187.57399999999998 + "x": 384.69, + "y": 187.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, + "x": 379.628, "y": 183.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, + "x": 375.95, "y": 178.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 172.88299999999998 + "x": 374.016, + "y": 172.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, + "x": 374.016, "y": 166.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 160.67399999999998 + "x": 375.95, + "y": 160.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, + "x": 379.628, "y": 155.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, + "x": 384.69, "y": 151.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, + "x": 390.641, "y": 150 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, + "x": 396.899, "y": 150 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, + "x": 402.85, "y": 151.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, + "x": 407.912, "y": 155.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 160.67399999999998 + "x": 411.59, + "y": 160.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, + "x": 413.524, "y": 166.625 }, { @@ -3646,7 +3646,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 390 }, @@ -3668,13 +3668,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3738,40 +3738,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3786,11 +3786,11 @@ } }, { - "x": 463.03200000000015, - "y": 189.50799999999998 + "x": 463.032, + "y": 189.508 }, { - "x": 423.5240000000001, + "x": 423.524, "y": 150 }, { @@ -3808,7 +3808,7 @@ "y": 0 }, { - "x": 443.27800000000013, + "x": 443.278, "y": 169.754 }, { @@ -3816,7 +3816,7 @@ "y": 0 }, { - "x": 443.27800000000013, + "x": 443.278, "y": 169.754 }, { @@ -3902,140 +3902,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 172.88299999999998 + "x": 463.032, + "y": 172.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, + "x": 461.098, "y": 178.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, + "x": 457.42, "y": 183.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 187.57399999999998 + "x": 452.358, + "y": 187.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 189.50799999999998 + "x": 446.407, + "y": 189.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 189.50799999999998 + "x": 440.149, + "y": 189.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 187.57399999999998 + "x": 434.198, + "y": 187.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, + "x": 429.136, "y": 183.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, + "x": 425.458, "y": 178.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 172.88299999999998 + "x": 423.524, + "y": 172.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, + "x": 423.524, "y": 166.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 160.67399999999998 + "x": 425.458, + "y": 160.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, + "x": 429.136, "y": 155.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, + "x": 434.198, "y": 151.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, + "x": 440.149, "y": 150 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, + "x": 446.407, "y": 150 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, + "x": 452.358, "y": 151.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, + "x": 457.42, "y": 155.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 160.67399999999998 + "x": 461.098, + "y": 160.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, + "x": 463.032, "y": 166.625 }, { @@ -4043,7 +4043,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 435 }, @@ -4065,13 +4065,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4135,40 +4135,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4183,11 +4183,11 @@ } }, { - "x": 512.5400000000002, - "y": 189.50799999999998 + "x": 512.54, + "y": 189.508 }, { - "x": 473.03200000000015, + "x": 473.032, "y": 150 }, { @@ -4205,7 +4205,7 @@ "y": 0 }, { - "x": 492.7860000000002, + "x": 492.786, "y": 169.754 }, { @@ -4213,7 +4213,7 @@ "y": 0 }, { - "x": 492.7860000000002, + "x": 492.786, "y": 169.754 }, { @@ -4299,140 +4299,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 172.88299999999998 + "x": 512.54, + "y": 172.883 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, + "x": 510.606, "y": 178.834 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, + "x": 506.928, "y": 183.896 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 187.57399999999998 + "x": 501.866, + "y": 187.574 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 189.50799999999998 + "x": 495.915, + "y": 189.508 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 189.50799999999998 + "x": 489.657, + "y": 189.508 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 187.57399999999998 + "x": 483.706, + "y": 187.574 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, + "x": 478.644, "y": 183.896 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, + "x": 474.966, "y": 178.834 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 172.88299999999998 + "x": 473.032, + "y": 172.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, + "x": 473.032, "y": 166.625 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 160.67399999999998 + "x": 474.966, + "y": 160.674 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, + "x": 478.644, "y": 155.612 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, + "x": 483.706, "y": 151.934 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, + "x": 489.657, "y": 150 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, + "x": 495.915, "y": 150 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, + "x": 501.866, "y": 151.934 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, + "x": 506.928, "y": 155.612 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 160.67399999999998 + "x": 510.606, + "y": 160.674 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, + "x": 512.54, "y": 166.625 }, { @@ -4440,7 +4440,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 480 }, @@ -4462,13 +4462,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4532,40 +4532,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4580,12 +4580,12 @@ } }, { - "x": 314.50800000000004, - "y": 239.01599999999996 + "x": 314.508, + "y": 239.016 }, { "x": 275, - "y": 199.50799999999998 + "y": 199.508 }, { "category": 2, @@ -4603,7 +4603,7 @@ }, { "x": 294.754, - "y": 219.26199999999997 + "y": 219.262 }, { "x": 0, @@ -4611,7 +4611,7 @@ }, { "x": 294.754, - "y": 219.26199999999997 + "y": 219.262 }, { "fillStyle": "transparent", @@ -4696,148 +4696,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 222.39099999999996 + "x": 314.508, + "y": 222.391 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 228.34199999999998 + "y": 228.342 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 233.40399999999997 + "y": 233.404 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 237.08199999999997 + "y": 237.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 239.01599999999996 + "x": 297.883, + "y": 239.016 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 239.01599999999996 + "y": 239.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 237.08199999999997 + "x": 285.674, + "y": 237.082 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 233.40399999999997 + "y": 233.404 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 228.34199999999998 + "y": 228.342 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 222.39099999999996 + "y": 222.391 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 216.13299999999998 + "y": 216.133 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 210.18199999999996 + "y": 210.182 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 205.11999999999998 + "y": 205.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 201.44199999999998 + "x": 285.674, + "y": 201.442 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 199.50799999999998 + "y": 199.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 199.50799999999998 + "x": 297.883, + "y": 199.508 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 201.44199999999998 + "y": 201.442 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 205.11999999999998 + "y": 205.12 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 210.18199999999996 + "y": 210.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 216.13299999999998 + "x": 314.508, + "y": 216.133 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 525 }, @@ -4859,13 +4859,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4929,40 +4929,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4977,12 +4977,12 @@ } }, { - "x": 364.0160000000001, - "y": 239.01599999999996 + "x": 364.016, + "y": 239.016 }, { - "x": 324.50800000000004, - "y": 199.50799999999998 + "x": 324.508, + "y": 199.508 }, { "category": 2, @@ -4999,16 +4999,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 219.26199999999997 + "x": 344.262, + "y": 219.262 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 219.26199999999997 + "x": 344.262, + "y": 219.262 }, { "fillStyle": "transparent", @@ -5093,148 +5093,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 222.39099999999996 + "x": 364.016, + "y": 222.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 228.34199999999998 + "x": 362.082, + "y": 228.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 233.40399999999997 + "x": 358.404, + "y": 233.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 237.08199999999997 + "x": 353.342, + "y": 237.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 239.01599999999996 + "x": 347.391, + "y": 239.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 239.01599999999996 + "x": 341.133, + "y": 239.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 237.08199999999997 + "x": 335.182, + "y": 237.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 233.40399999999997 + "x": 330.12, + "y": 233.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 228.34199999999998 + "x": 326.442, + "y": 228.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 222.39099999999996 + "x": 324.508, + "y": 222.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 216.13299999999998 + "x": 324.508, + "y": 216.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 210.18199999999996 + "x": 326.442, + "y": 210.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 205.11999999999998 + "x": 330.12, + "y": 205.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 201.44199999999998 + "x": 335.182, + "y": 201.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 199.50799999999998 + "x": 341.133, + "y": 199.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 199.50799999999998 + "x": 347.391, + "y": 199.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 201.44199999999998 + "x": 353.342, + "y": 201.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 205.11999999999998 + "x": 358.404, + "y": 205.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 210.18199999999996 + "x": 362.082, + "y": 210.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 216.13299999999998 + "x": 364.016, + "y": 216.133 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 570 }, @@ -5256,13 +5256,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5326,40 +5326,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5374,12 +5374,12 @@ } }, { - "x": 413.5240000000001, - "y": 239.01599999999996 + "x": 413.524, + "y": 239.016 }, { - "x": 374.0160000000001, - "y": 199.50799999999998 + "x": 374.016, + "y": 199.508 }, { "category": 2, @@ -5396,16 +5396,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 219.26199999999997 + "x": 393.77, + "y": 219.262 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 219.26199999999997 + "x": 393.77, + "y": 219.262 }, { "fillStyle": "transparent", @@ -5490,148 +5490,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 222.39099999999996 + "x": 413.524, + "y": 222.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 228.34199999999998 + "x": 411.59, + "y": 228.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 233.40399999999997 + "x": 407.912, + "y": 233.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 237.08199999999997 + "x": 402.85, + "y": 237.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 239.01599999999996 + "x": 396.899, + "y": 239.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 239.01599999999996 + "x": 390.641, + "y": 239.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 237.08199999999997 + "x": 384.69, + "y": 237.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 233.40399999999997 + "x": 379.628, + "y": 233.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 228.34199999999998 + "x": 375.95, + "y": 228.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 222.39099999999996 + "x": 374.016, + "y": 222.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 216.13299999999998 + "x": 374.016, + "y": 216.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 210.18199999999996 + "x": 375.95, + "y": 210.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 205.11999999999998 + "x": 379.628, + "y": 205.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 201.44199999999998 + "x": 384.69, + "y": 201.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 199.50799999999998 + "x": 390.641, + "y": 199.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 199.50799999999998 + "x": 396.899, + "y": 199.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 201.44199999999998 + "x": 402.85, + "y": 201.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 205.11999999999998 + "x": 407.912, + "y": 205.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 210.18199999999996 + "x": 411.59, + "y": 210.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 216.13299999999998 + "x": 413.524, + "y": 216.133 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 615 }, @@ -5653,13 +5653,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5723,40 +5723,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5771,12 +5771,12 @@ } }, { - "x": 463.03200000000015, - "y": 239.01599999999996 + "x": 463.032, + "y": 239.016 }, { - "x": 423.5240000000001, - "y": 199.50799999999998 + "x": 423.524, + "y": 199.508 }, { "category": 2, @@ -5793,16 +5793,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 219.26199999999997 + "x": 443.278, + "y": 219.262 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 219.26199999999997 + "x": 443.278, + "y": 219.262 }, { "fillStyle": "transparent", @@ -5887,148 +5887,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 222.39099999999996 + "x": 463.032, + "y": 222.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 228.34199999999998 + "x": 461.098, + "y": 228.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 233.40399999999997 + "x": 457.42, + "y": 233.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 237.08199999999997 + "x": 452.358, + "y": 237.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 239.01599999999996 + "x": 446.407, + "y": 239.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 239.01599999999996 + "x": 440.149, + "y": 239.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 237.08199999999997 + "x": 434.198, + "y": 237.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 233.40399999999997 + "x": 429.136, + "y": 233.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 228.34199999999998 + "x": 425.458, + "y": 228.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 222.39099999999996 + "x": 423.524, + "y": 222.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 216.13299999999998 + "x": 423.524, + "y": 216.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 210.18199999999996 + "x": 425.458, + "y": 210.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 205.11999999999998 + "x": 429.136, + "y": 205.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 201.44199999999998 + "x": 434.198, + "y": 201.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 199.50799999999998 + "x": 440.149, + "y": 199.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 199.50799999999998 + "x": 446.407, + "y": 199.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 201.44199999999998 + "x": 452.358, + "y": 201.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 205.11999999999998 + "x": 457.42, + "y": 205.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 210.18199999999996 + "x": 461.098, + "y": 210.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 216.13299999999998 + "x": 463.032, + "y": 216.133 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 660 }, @@ -6050,13 +6050,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6120,40 +6120,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6168,12 +6168,12 @@ } }, { - "x": 512.5400000000002, - "y": 239.01599999999996 + "x": 512.54, + "y": 239.016 }, { - "x": 473.03200000000015, - "y": 199.50799999999998 + "x": 473.032, + "y": 199.508 }, { "category": 2, @@ -6190,16 +6190,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 219.26199999999997 + "x": 492.786, + "y": 219.262 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 219.26199999999997 + "x": 492.786, + "y": 219.262 }, { "fillStyle": "transparent", @@ -6284,148 +6284,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 222.39099999999996 + "x": 512.54, + "y": 222.391 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 228.34199999999998 + "x": 510.606, + "y": 228.342 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 233.40399999999997 + "x": 506.928, + "y": 233.404 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 237.08199999999997 + "x": 501.866, + "y": 237.082 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 239.01599999999996 + "x": 495.915, + "y": 239.016 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 239.01599999999996 + "x": 489.657, + "y": 239.016 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 237.08199999999997 + "x": 483.706, + "y": 237.082 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 233.40399999999997 + "x": 478.644, + "y": 233.404 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 228.34199999999998 + "x": 474.966, + "y": 228.342 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 222.39099999999996 + "x": 473.032, + "y": 222.391 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 216.13299999999998 + "x": 473.032, + "y": 216.133 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 210.18199999999996 + "x": 474.966, + "y": 210.182 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 205.11999999999998 + "x": 478.644, + "y": 205.12 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 201.44199999999998 + "x": 483.706, + "y": 201.442 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 199.50799999999998 + "x": 489.657, + "y": 199.508 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 199.50799999999998 + "x": 495.915, + "y": 199.508 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 201.44199999999998 + "x": 501.866, + "y": 201.442 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 205.11999999999998 + "x": 506.928, + "y": 205.12 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 210.18199999999996 + "x": 510.606, + "y": 210.182 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 216.13299999999998 + "x": 512.54, + "y": 216.133 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 705 }, @@ -6447,13 +6447,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6517,40 +6517,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6565,7 +6565,7 @@ } }, { - "x": 314.50800000000004, + "x": 314.508, "y": 288.524 }, { @@ -6681,7 +6681,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, + "x": 314.508, "y": 271.899 }, { @@ -6689,7 +6689,7 @@ "index": 1, "isInternal": false, "x": 312.574, - "y": 277.84999999999997 + "y": 277.85 }, { "body": null, @@ -6709,7 +6709,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, + "x": 297.883, "y": 288.524 }, { @@ -6723,7 +6723,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, + "x": 285.674, "y": 286.59 }, { @@ -6738,7 +6738,7 @@ "index": 8, "isInternal": false, "x": 276.934, - "y": 277.84999999999997 + "y": 277.85 }, { "body": null, @@ -6752,14 +6752,14 @@ "index": 10, "isInternal": false, "x": 275, - "y": 265.64099999999996 + "y": 265.641 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 259.68999999999994 + "y": 259.69 }, { "body": null, @@ -6772,7 +6772,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, + "x": 285.674, "y": 250.95 }, { @@ -6786,7 +6786,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, + "x": 297.883, "y": 249.016 }, { @@ -6808,21 +6808,21 @@ "index": 18, "isInternal": false, "x": 312.574, - "y": 259.68999999999994 + "y": 259.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 265.64099999999996 + "x": 314.508, + "y": 265.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 750 }, @@ -6844,13 +6844,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6914,40 +6914,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6962,11 +6962,11 @@ } }, { - "x": 364.0160000000001, + "x": 364.016, "y": 288.524 }, { - "x": 324.50800000000004, + "x": 324.508, "y": 249.016 }, { @@ -6984,7 +6984,7 @@ "y": 0 }, { - "x": 344.26200000000006, + "x": 344.262, "y": 268.77 }, { @@ -6992,7 +6992,7 @@ "y": 0 }, { - "x": 344.26200000000006, + "x": 344.262, "y": 268.77 }, { @@ -7078,148 +7078,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, + "x": 364.016, "y": 271.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 277.84999999999997 + "x": 362.082, + "y": 277.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, + "x": 358.404, "y": 282.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, + "x": 353.342, "y": 286.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, + "x": 347.391, "y": 288.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, + "x": 341.133, "y": 288.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, + "x": 335.182, "y": 286.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, + "x": 330.12, "y": 282.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 277.84999999999997 + "x": 326.442, + "y": 277.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, + "x": 324.508, "y": 271.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 265.64099999999996 + "x": 324.508, + "y": 265.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 259.68999999999994 + "x": 326.442, + "y": 259.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, + "x": 330.12, "y": 254.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, + "x": 335.182, "y": 250.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, + "x": 341.133, "y": 249.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, + "x": 347.391, "y": 249.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, + "x": 353.342, "y": 250.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, + "x": 358.404, "y": 254.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 259.68999999999994 + "x": 362.082, + "y": 259.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 265.64099999999996 + "x": 364.016, + "y": 265.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 795 }, @@ -7241,13 +7241,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7311,40 +7311,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7359,11 +7359,11 @@ } }, { - "x": 413.5240000000001, + "x": 413.524, "y": 288.524 }, { - "x": 374.0160000000001, + "x": 374.016, "y": 249.016 }, { @@ -7381,7 +7381,7 @@ "y": 0 }, { - "x": 393.7700000000001, + "x": 393.77, "y": 268.77 }, { @@ -7389,7 +7389,7 @@ "y": 0 }, { - "x": 393.7700000000001, + "x": 393.77, "y": 268.77 }, { @@ -7475,148 +7475,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, + "x": 413.524, "y": 271.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 277.84999999999997 + "x": 411.59, + "y": 277.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, + "x": 407.912, "y": 282.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, + "x": 402.85, "y": 286.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, + "x": 396.899, "y": 288.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, + "x": 390.641, "y": 288.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, + "x": 384.69, "y": 286.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, + "x": 379.628, "y": 282.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 277.84999999999997 + "x": 375.95, + "y": 277.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, + "x": 374.016, "y": 271.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 265.64099999999996 + "x": 374.016, + "y": 265.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 259.68999999999994 + "x": 375.95, + "y": 259.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, + "x": 379.628, "y": 254.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, + "x": 384.69, "y": 250.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, + "x": 390.641, "y": 249.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, + "x": 396.899, "y": 249.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, + "x": 402.85, "y": 250.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, + "x": 407.912, "y": 254.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 259.68999999999994 + "x": 411.59, + "y": 259.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 265.64099999999996 + "x": 413.524, + "y": 265.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 840 }, @@ -7638,13 +7638,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7708,40 +7708,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7756,11 +7756,11 @@ } }, { - "x": 463.03200000000015, + "x": 463.032, "y": 288.524 }, { - "x": 423.5240000000001, + "x": 423.524, "y": 249.016 }, { @@ -7778,7 +7778,7 @@ "y": 0 }, { - "x": 443.27800000000013, + "x": 443.278, "y": 268.77 }, { @@ -7786,7 +7786,7 @@ "y": 0 }, { - "x": 443.27800000000013, + "x": 443.278, "y": 268.77 }, { @@ -7872,148 +7872,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, + "x": 463.032, "y": 271.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 277.84999999999997 + "x": 461.098, + "y": 277.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, + "x": 457.42, "y": 282.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, + "x": 452.358, "y": 286.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, + "x": 446.407, "y": 288.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, + "x": 440.149, "y": 288.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, + "x": 434.198, "y": 286.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, + "x": 429.136, "y": 282.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 277.84999999999997 + "x": 425.458, + "y": 277.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, + "x": 423.524, "y": 271.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 265.64099999999996 + "x": 423.524, + "y": 265.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 259.68999999999994 + "x": 425.458, + "y": 259.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, + "x": 429.136, "y": 254.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, + "x": 434.198, "y": 250.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, + "x": 440.149, "y": 249.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, + "x": 446.407, "y": 249.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, + "x": 452.358, "y": 250.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, + "x": 457.42, "y": 254.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 259.68999999999994 + "x": 461.098, + "y": 259.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 265.64099999999996 + "x": 463.032, + "y": 265.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 885 }, @@ -8035,13 +8035,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8105,40 +8105,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8153,11 +8153,11 @@ } }, { - "x": 512.5400000000002, + "x": 512.54, "y": 288.524 }, { - "x": 473.03200000000015, + "x": 473.032, "y": 249.016 }, { @@ -8175,7 +8175,7 @@ "y": 0 }, { - "x": 492.7860000000002, + "x": 492.786, "y": 268.77 }, { @@ -8183,7 +8183,7 @@ "y": 0 }, { - "x": 492.7860000000002, + "x": 492.786, "y": 268.77 }, { @@ -8269,148 +8269,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, + "x": 512.54, "y": 271.899 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 277.84999999999997 + "x": 510.606, + "y": 277.85 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, + "x": 506.928, "y": 282.912 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, + "x": 501.866, "y": 286.59 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, + "x": 495.915, "y": 288.524 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, + "x": 489.657, "y": 288.524 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, + "x": 483.706, "y": 286.59 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, + "x": 478.644, "y": 282.912 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 277.84999999999997 + "x": 474.966, + "y": 277.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, + "x": 473.032, "y": 271.899 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 265.64099999999996 + "x": 473.032, + "y": 265.641 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 259.68999999999994 + "x": 474.966, + "y": 259.69 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, + "x": 478.644, "y": 254.628 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, + "x": 483.706, "y": 250.95 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, + "x": 489.657, "y": 249.016 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, + "x": 495.915, "y": 249.016 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, + "x": 501.866, "y": 250.95 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, + "x": 506.928, "y": 254.628 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 259.68999999999994 + "x": 510.606, + "y": 259.69 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 265.64099999999996 + "x": 512.54, + "y": 265.641 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 930 }, @@ -8432,13 +8432,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8502,40 +8502,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8550,8 +8550,8 @@ } }, { - "x": 314.50800000000004, - "y": 338.03200000000004 + "x": 314.508, + "y": 338.032 }, { "x": 275, @@ -8666,8 +8666,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 321.40700000000004 + "x": 314.508, + "y": 321.407 }, { "body": null, @@ -8694,21 +8694,21 @@ "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 338.03200000000004 + "x": 297.883, + "y": 338.032 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 338.03200000000004 + "y": 338.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, + "x": 285.674, "y": 336.098 }, { @@ -8730,7 +8730,7 @@ "index": 9, "isInternal": false, "x": 275, - "y": 321.40700000000004 + "y": 321.407 }, { "body": null, @@ -8744,7 +8744,7 @@ "index": 11, "isInternal": false, "x": 276.934, - "y": 309.19800000000004 + "y": 309.198 }, { "body": null, @@ -8757,7 +8757,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, + "x": 285.674, "y": 300.458 }, { @@ -8771,7 +8771,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, + "x": 297.883, "y": 298.524 }, { @@ -8793,13 +8793,13 @@ "index": 18, "isInternal": false, "x": 312.574, - "y": 309.19800000000004 + "y": 309.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, + "x": 314.508, "y": 315.149 }, { @@ -8807,7 +8807,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 975 }, @@ -8829,13 +8829,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8899,40 +8899,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8947,11 +8947,11 @@ } }, { - "x": 364.0160000000001, - "y": 338.03200000000004 + "x": 364.016, + "y": 338.032 }, { - "x": 324.50800000000004, + "x": 324.508, "y": 298.524 }, { @@ -8969,7 +8969,7 @@ "y": 0 }, { - "x": 344.26200000000006, + "x": 344.262, "y": 318.278 }, { @@ -8977,7 +8977,7 @@ "y": 0 }, { - "x": 344.26200000000006, + "x": 344.262, "y": 318.278 }, { @@ -9063,140 +9063,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 321.40700000000004 + "x": 364.016, + "y": 321.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, + "x": 362.082, "y": 327.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, + "x": 358.404, "y": 332.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, + "x": 353.342, "y": 336.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 338.03200000000004 + "x": 347.391, + "y": 338.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 338.03200000000004 + "x": 341.133, + "y": 338.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, + "x": 335.182, "y": 336.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, + "x": 330.12, "y": 332.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, + "x": 326.442, "y": 327.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 321.40700000000004 + "x": 324.508, + "y": 321.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, + "x": 324.508, "y": 315.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 309.19800000000004 + "x": 326.442, + "y": 309.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, + "x": 330.12, "y": 304.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, + "x": 335.182, "y": 300.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, + "x": 341.133, "y": 298.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, + "x": 347.391, "y": 298.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, + "x": 353.342, "y": 300.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, + "x": 358.404, "y": 304.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 309.19800000000004 + "x": 362.082, + "y": 309.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, + "x": 364.016, "y": 315.149 }, { @@ -9204,7 +9204,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1020 }, @@ -9226,13 +9226,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9296,40 +9296,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9344,11 +9344,11 @@ } }, { - "x": 413.5240000000001, - "y": 338.03200000000004 + "x": 413.524, + "y": 338.032 }, { - "x": 374.0160000000001, + "x": 374.016, "y": 298.524 }, { @@ -9366,7 +9366,7 @@ "y": 0 }, { - "x": 393.7700000000001, + "x": 393.77, "y": 318.278 }, { @@ -9374,7 +9374,7 @@ "y": 0 }, { - "x": 393.7700000000001, + "x": 393.77, "y": 318.278 }, { @@ -9460,140 +9460,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 321.40700000000004 + "x": 413.524, + "y": 321.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, + "x": 411.59, "y": 327.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, + "x": 407.912, "y": 332.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, + "x": 402.85, "y": 336.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 338.03200000000004 + "x": 396.899, + "y": 338.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 338.03200000000004 + "x": 390.641, + "y": 338.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, + "x": 384.69, "y": 336.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, + "x": 379.628, "y": 332.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, + "x": 375.95, "y": 327.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 321.40700000000004 + "x": 374.016, + "y": 321.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, + "x": 374.016, "y": 315.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 309.19800000000004 + "x": 375.95, + "y": 309.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, + "x": 379.628, "y": 304.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, + "x": 384.69, "y": 300.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, + "x": 390.641, "y": 298.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, + "x": 396.899, "y": 298.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, + "x": 402.85, "y": 300.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, + "x": 407.912, "y": 304.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 309.19800000000004 + "x": 411.59, + "y": 309.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, + "x": 413.524, "y": 315.149 }, { @@ -9601,7 +9601,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1065 }, @@ -9623,13 +9623,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9693,40 +9693,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9741,11 +9741,11 @@ } }, { - "x": 463.03200000000015, - "y": 338.03200000000004 + "x": 463.032, + "y": 338.032 }, { - "x": 423.5240000000001, + "x": 423.524, "y": 298.524 }, { @@ -9763,7 +9763,7 @@ "y": 0 }, { - "x": 443.27800000000013, + "x": 443.278, "y": 318.278 }, { @@ -9771,7 +9771,7 @@ "y": 0 }, { - "x": 443.27800000000013, + "x": 443.278, "y": 318.278 }, { @@ -9857,140 +9857,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 321.40700000000004 + "x": 463.032, + "y": 321.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, + "x": 461.098, "y": 327.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, + "x": 457.42, "y": 332.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, + "x": 452.358, "y": 336.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 338.03200000000004 + "x": 446.407, + "y": 338.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 338.03200000000004 + "x": 440.149, + "y": 338.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, + "x": 434.198, "y": 336.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, + "x": 429.136, "y": 332.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, + "x": 425.458, "y": 327.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 321.40700000000004 + "x": 423.524, + "y": 321.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, + "x": 423.524, "y": 315.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 309.19800000000004 + "x": 425.458, + "y": 309.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, + "x": 429.136, "y": 304.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, + "x": 434.198, "y": 300.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, + "x": 440.149, "y": 298.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, + "x": 446.407, "y": 298.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, + "x": 452.358, "y": 300.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, + "x": 457.42, "y": 304.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 309.19800000000004 + "x": 461.098, + "y": 309.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, + "x": 463.032, "y": 315.149 }, { @@ -9998,7 +9998,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1110 }, @@ -10020,13 +10020,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10090,40 +10090,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10138,11 +10138,11 @@ } }, { - "x": 512.5400000000002, - "y": 338.03200000000004 + "x": 512.54, + "y": 338.032 }, { - "x": 473.03200000000015, + "x": 473.032, "y": 298.524 }, { @@ -10160,7 +10160,7 @@ "y": 0 }, { - "x": 492.7860000000002, + "x": 492.786, "y": 318.278 }, { @@ -10168,7 +10168,7 @@ "y": 0 }, { - "x": 492.7860000000002, + "x": 492.786, "y": 318.278 }, { @@ -10254,140 +10254,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 321.40700000000004 + "x": 512.54, + "y": 321.407 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, + "x": 510.606, "y": 327.358 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, + "x": 506.928, "y": 332.42 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, + "x": 501.866, "y": 336.098 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 338.03200000000004 + "x": 495.915, + "y": 338.032 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 338.03200000000004 + "x": 489.657, + "y": 338.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, + "x": 483.706, "y": 336.098 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, + "x": 478.644, "y": 332.42 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, + "x": 474.966, "y": 327.358 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 321.40700000000004 + "x": 473.032, + "y": 321.407 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, + "x": 473.032, "y": 315.149 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 309.19800000000004 + "x": 474.966, + "y": 309.198 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, + "x": 478.644, "y": 304.136 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, + "x": 483.706, "y": 300.458 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, + "x": 489.657, "y": 298.524 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, + "x": 495.915, "y": 298.524 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, + "x": 501.866, "y": 300.458 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, + "x": 506.928, "y": 304.136 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 309.19800000000004 + "x": 510.606, + "y": 309.198 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, + "x": 512.54, "y": 315.149 }, { @@ -10395,7 +10395,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1155 }, @@ -10417,13 +10417,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10487,40 +10487,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10535,12 +10535,12 @@ } }, { - "x": 314.50800000000004, - "y": 387.5400000000001 + "x": 314.508, + "y": 387.54 }, { "x": 275, - "y": 348.03200000000004 + "y": 348.032 }, { "category": 4, @@ -10558,7 +10558,7 @@ }, { "x": 294.754, - "y": 367.78600000000006 + "y": 367.786 }, { "x": 0, @@ -10566,7 +10566,7 @@ }, { "x": 294.754, - "y": 367.78600000000006 + "y": 367.786 }, { "fillStyle": "transparent", @@ -10651,148 +10651,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 370.9150000000001 + "x": 314.508, + "y": 370.915 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 376.86600000000004 + "y": 376.866 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 381.92800000000005 + "y": 381.928 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 385.60600000000005 + "y": 385.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 387.5400000000001 + "x": 297.883, + "y": 387.54 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 387.5400000000001 + "y": 387.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 385.60600000000005 + "x": 285.674, + "y": 385.606 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 381.92800000000005 + "y": 381.928 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 376.86600000000004 + "y": 376.866 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 370.9150000000001 + "y": 370.915 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 364.65700000000004 + "y": 364.657 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 358.7060000000001 + "y": 358.706 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 353.64400000000006 + "y": 353.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 349.96600000000007 + "x": 285.674, + "y": 349.966 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 348.03200000000004 + "y": 348.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 348.03200000000004 + "x": 297.883, + "y": 348.032 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 349.96600000000007 + "y": 349.966 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 353.64400000000006 + "y": 353.644 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 358.7060000000001 + "y": 358.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 364.65700000000004 + "x": 314.508, + "y": 364.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1200 }, @@ -10814,13 +10814,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10884,40 +10884,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10932,12 +10932,12 @@ } }, { - "x": 364.0160000000001, - "y": 387.5400000000001 + "x": 364.016, + "y": 387.54 }, { - "x": 324.50800000000004, - "y": 348.03200000000004 + "x": 324.508, + "y": 348.032 }, { "category": 4, @@ -10954,16 +10954,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 367.78600000000006 + "x": 344.262, + "y": 367.786 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 367.78600000000006 + "x": 344.262, + "y": 367.786 }, { "fillStyle": "transparent", @@ -11048,148 +11048,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 370.9150000000001 + "x": 364.016, + "y": 370.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 376.86600000000004 + "x": 362.082, + "y": 376.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 381.92800000000005 + "x": 358.404, + "y": 381.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 385.60600000000005 + "x": 353.342, + "y": 385.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 387.5400000000001 + "x": 347.391, + "y": 387.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 387.5400000000001 + "x": 341.133, + "y": 387.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 385.60600000000005 + "x": 335.182, + "y": 385.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 381.92800000000005 + "x": 330.12, + "y": 381.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 376.86600000000004 + "x": 326.442, + "y": 376.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 370.9150000000001 + "x": 324.508, + "y": 370.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 364.65700000000004 + "x": 324.508, + "y": 364.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 358.7060000000001 + "x": 326.442, + "y": 358.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 353.64400000000006 + "x": 330.12, + "y": 353.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 349.96600000000007 + "x": 335.182, + "y": 349.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 348.03200000000004 + "x": 341.133, + "y": 348.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 348.03200000000004 + "x": 347.391, + "y": 348.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 349.96600000000007 + "x": 353.342, + "y": 349.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 353.64400000000006 + "x": 358.404, + "y": 353.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 358.7060000000001 + "x": 362.082, + "y": 358.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 364.65700000000004 + "x": 364.016, + "y": 364.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1245 }, @@ -11211,13 +11211,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11281,40 +11281,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11329,12 +11329,12 @@ } }, { - "x": 413.5240000000001, - "y": 387.5400000000001 + "x": 413.524, + "y": 387.54 }, { - "x": 374.0160000000001, - "y": 348.03200000000004 + "x": 374.016, + "y": 348.032 }, { "category": 4, @@ -11351,16 +11351,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 367.78600000000006 + "x": 393.77, + "y": 367.786 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 367.78600000000006 + "x": 393.77, + "y": 367.786 }, { "fillStyle": "transparent", @@ -11445,148 +11445,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 370.9150000000001 + "x": 413.524, + "y": 370.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 376.86600000000004 + "x": 411.59, + "y": 376.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 381.92800000000005 + "x": 407.912, + "y": 381.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 385.60600000000005 + "x": 402.85, + "y": 385.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 387.5400000000001 + "x": 396.899, + "y": 387.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 387.5400000000001 + "x": 390.641, + "y": 387.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 385.60600000000005 + "x": 384.69, + "y": 385.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 381.92800000000005 + "x": 379.628, + "y": 381.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 376.86600000000004 + "x": 375.95, + "y": 376.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 370.9150000000001 + "x": 374.016, + "y": 370.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 364.65700000000004 + "x": 374.016, + "y": 364.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 358.7060000000001 + "x": 375.95, + "y": 358.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 353.64400000000006 + "x": 379.628, + "y": 353.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 349.96600000000007 + "x": 384.69, + "y": 349.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 348.03200000000004 + "x": 390.641, + "y": 348.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 348.03200000000004 + "x": 396.899, + "y": 348.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 349.96600000000007 + "x": 402.85, + "y": 349.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 353.64400000000006 + "x": 407.912, + "y": 353.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 358.7060000000001 + "x": 411.59, + "y": 358.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 364.65700000000004 + "x": 413.524, + "y": 364.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1290 }, @@ -11608,13 +11608,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11678,40 +11678,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11726,12 +11726,12 @@ } }, { - "x": 463.03200000000015, - "y": 387.5400000000001 + "x": 463.032, + "y": 387.54 }, { - "x": 423.5240000000001, - "y": 348.03200000000004 + "x": 423.524, + "y": 348.032 }, { "category": 4, @@ -11748,16 +11748,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 367.78600000000006 + "x": 443.278, + "y": 367.786 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 367.78600000000006 + "x": 443.278, + "y": 367.786 }, { "fillStyle": "transparent", @@ -11842,148 +11842,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 370.9150000000001 + "x": 463.032, + "y": 370.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 376.86600000000004 + "x": 461.098, + "y": 376.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 381.92800000000005 + "x": 457.42, + "y": 381.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 385.60600000000005 + "x": 452.358, + "y": 385.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 387.5400000000001 + "x": 446.407, + "y": 387.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 387.5400000000001 + "x": 440.149, + "y": 387.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 385.60600000000005 + "x": 434.198, + "y": 385.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 381.92800000000005 + "x": 429.136, + "y": 381.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 376.86600000000004 + "x": 425.458, + "y": 376.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 370.9150000000001 + "x": 423.524, + "y": 370.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 364.65700000000004 + "x": 423.524, + "y": 364.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 358.7060000000001 + "x": 425.458, + "y": 358.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 353.64400000000006 + "x": 429.136, + "y": 353.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 349.96600000000007 + "x": 434.198, + "y": 349.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 348.03200000000004 + "x": 440.149, + "y": 348.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 348.03200000000004 + "x": 446.407, + "y": 348.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 349.96600000000007 + "x": 452.358, + "y": 349.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 353.64400000000006 + "x": 457.42, + "y": 353.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 358.7060000000001 + "x": 461.098, + "y": 358.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 364.65700000000004 + "x": 463.032, + "y": 364.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1335 }, @@ -12005,13 +12005,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12075,40 +12075,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12123,12 +12123,12 @@ } }, { - "x": 512.5400000000002, - "y": 387.5400000000001 + "x": 512.54, + "y": 387.54 }, { - "x": 473.03200000000015, - "y": 348.03200000000004 + "x": 473.032, + "y": 348.032 }, { "category": 4, @@ -12145,16 +12145,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 367.78600000000006 + "x": 492.786, + "y": 367.786 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 367.78600000000006 + "x": 492.786, + "y": 367.786 }, { "fillStyle": "transparent", @@ -12239,148 +12239,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 370.9150000000001 + "x": 512.54, + "y": 370.915 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 376.86600000000004 + "x": 510.606, + "y": 376.866 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 381.92800000000005 + "x": 506.928, + "y": 381.928 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 385.60600000000005 + "x": 501.866, + "y": 385.606 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 387.5400000000001 + "x": 495.915, + "y": 387.54 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 387.5400000000001 + "x": 489.657, + "y": 387.54 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 385.60600000000005 + "x": 483.706, + "y": 385.606 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 381.92800000000005 + "x": 478.644, + "y": 381.928 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 376.86600000000004 + "x": 474.966, + "y": 376.866 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 370.9150000000001 + "x": 473.032, + "y": 370.915 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 364.65700000000004 + "x": 473.032, + "y": 364.657 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 358.7060000000001 + "x": 474.966, + "y": 358.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 353.64400000000006 + "x": 478.644, + "y": 353.644 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 349.96600000000007 + "x": 483.706, + "y": 349.966 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 348.03200000000004 + "x": 489.657, + "y": 348.032 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 348.03200000000004 + "x": 495.915, + "y": 348.032 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 349.96600000000007 + "x": 501.866, + "y": 349.966 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 353.64400000000006 + "x": 506.928, + "y": 353.644 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 358.7060000000001 + "x": 510.606, + "y": 358.706 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 364.65700000000004 + "x": 512.54, + "y": 364.657 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1380 }, @@ -12402,13 +12402,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12472,40 +12472,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12520,12 +12520,12 @@ } }, { - "x": 314.50800000000004, - "y": 437.0480000000001 + "x": 314.508, + "y": 437.048 }, { "x": 275, - "y": 397.5400000000001 + "y": 397.54 }, { "category": 4, @@ -12543,7 +12543,7 @@ }, { "x": 294.754, - "y": 417.2940000000001 + "y": 417.294 }, { "x": 0, @@ -12551,7 +12551,7 @@ }, { "x": 294.754, - "y": 417.2940000000001 + "y": 417.294 }, { "fillStyle": "transparent", @@ -12636,148 +12636,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 420.4230000000001 + "x": 314.508, + "y": 420.423 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 426.3740000000001 + "y": 426.374 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 431.4360000000001 + "y": 431.436 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 435.1140000000001 + "y": 435.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 437.0480000000001 + "x": 297.883, + "y": 437.048 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 437.0480000000001 + "y": 437.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 435.1140000000001 + "x": 285.674, + "y": 435.114 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 431.4360000000001 + "y": 431.436 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 426.3740000000001 + "y": 426.374 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 420.4230000000001 + "y": 420.423 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 414.1650000000001 + "y": 414.165 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 408.2140000000001 + "y": 408.214 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 403.1520000000001 + "y": 403.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 399.4740000000001 + "x": 285.674, + "y": 399.474 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 397.5400000000001 + "y": 397.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 397.5400000000001 + "x": 297.883, + "y": 397.54 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 399.4740000000001 + "y": 399.474 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 403.1520000000001 + "y": 403.152 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 408.2140000000001 + "y": 408.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 414.1650000000001 + "x": 314.508, + "y": 414.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1425 }, @@ -12799,13 +12799,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12869,40 +12869,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12917,12 +12917,12 @@ } }, { - "x": 364.0160000000001, - "y": 437.0480000000001 + "x": 364.016, + "y": 437.048 }, { - "x": 324.50800000000004, - "y": 397.5400000000001 + "x": 324.508, + "y": 397.54 }, { "category": 4, @@ -12939,16 +12939,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 417.2940000000001 + "x": 344.262, + "y": 417.294 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 417.2940000000001 + "x": 344.262, + "y": 417.294 }, { "fillStyle": "transparent", @@ -13033,148 +13033,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 420.4230000000001 + "x": 364.016, + "y": 420.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 426.3740000000001 + "x": 362.082, + "y": 426.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 431.4360000000001 + "x": 358.404, + "y": 431.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 435.1140000000001 + "x": 353.342, + "y": 435.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 437.0480000000001 + "x": 347.391, + "y": 437.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 437.0480000000001 + "x": 341.133, + "y": 437.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 435.1140000000001 + "x": 335.182, + "y": 435.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 431.4360000000001 + "x": 330.12, + "y": 431.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 426.3740000000001 + "x": 326.442, + "y": 426.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 420.4230000000001 + "x": 324.508, + "y": 420.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 414.1650000000001 + "x": 324.508, + "y": 414.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 408.2140000000001 + "x": 326.442, + "y": 408.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 403.1520000000001 + "x": 330.12, + "y": 403.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 399.4740000000001 + "x": 335.182, + "y": 399.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 397.5400000000001 + "x": 341.133, + "y": 397.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 397.5400000000001 + "x": 347.391, + "y": 397.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 399.4740000000001 + "x": 353.342, + "y": 399.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 403.1520000000001 + "x": 358.404, + "y": 403.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 408.2140000000001 + "x": 362.082, + "y": 408.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 414.1650000000001 + "x": 364.016, + "y": 414.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1470 }, @@ -13196,13 +13196,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13266,40 +13266,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13314,12 +13314,12 @@ } }, { - "x": 413.5240000000001, - "y": 437.0480000000001 + "x": 413.524, + "y": 437.048 }, { - "x": 374.0160000000001, - "y": 397.5400000000001 + "x": 374.016, + "y": 397.54 }, { "category": 4, @@ -13336,16 +13336,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 417.2940000000001 + "x": 393.77, + "y": 417.294 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 417.2940000000001 + "x": 393.77, + "y": 417.294 }, { "fillStyle": "transparent", @@ -13430,148 +13430,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 420.4230000000001 + "x": 413.524, + "y": 420.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 426.3740000000001 + "x": 411.59, + "y": 426.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 431.4360000000001 + "x": 407.912, + "y": 431.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 435.1140000000001 + "x": 402.85, + "y": 435.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 437.0480000000001 + "x": 396.899, + "y": 437.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 437.0480000000001 + "x": 390.641, + "y": 437.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 435.1140000000001 + "x": 384.69, + "y": 435.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 431.4360000000001 + "x": 379.628, + "y": 431.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 426.3740000000001 + "x": 375.95, + "y": 426.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 420.4230000000001 + "x": 374.016, + "y": 420.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 414.1650000000001 + "x": 374.016, + "y": 414.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 408.2140000000001 + "x": 375.95, + "y": 408.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 403.1520000000001 + "x": 379.628, + "y": 403.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 399.4740000000001 + "x": 384.69, + "y": 399.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 397.5400000000001 + "x": 390.641, + "y": 397.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 397.5400000000001 + "x": 396.899, + "y": 397.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 399.4740000000001 + "x": 402.85, + "y": 399.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 403.1520000000001 + "x": 407.912, + "y": 403.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 408.2140000000001 + "x": 411.59, + "y": 408.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 414.1650000000001 + "x": 413.524, + "y": 414.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1515 }, @@ -13593,13 +13593,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13663,40 +13663,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13711,12 +13711,12 @@ } }, { - "x": 463.03200000000015, - "y": 437.0480000000001 + "x": 463.032, + "y": 437.048 }, { - "x": 423.5240000000001, - "y": 397.5400000000001 + "x": 423.524, + "y": 397.54 }, { "category": 4, @@ -13733,16 +13733,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 417.2940000000001 + "x": 443.278, + "y": 417.294 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 417.2940000000001 + "x": 443.278, + "y": 417.294 }, { "fillStyle": "transparent", @@ -13827,148 +13827,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 420.4230000000001 + "x": 463.032, + "y": 420.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 426.3740000000001 + "x": 461.098, + "y": 426.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 431.4360000000001 + "x": 457.42, + "y": 431.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 435.1140000000001 + "x": 452.358, + "y": 435.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 437.0480000000001 + "x": 446.407, + "y": 437.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 437.0480000000001 + "x": 440.149, + "y": 437.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 435.1140000000001 + "x": 434.198, + "y": 435.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 431.4360000000001 + "x": 429.136, + "y": 431.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 426.3740000000001 + "x": 425.458, + "y": 426.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 420.4230000000001 + "x": 423.524, + "y": 420.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 414.1650000000001 + "x": 423.524, + "y": 414.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 408.2140000000001 + "x": 425.458, + "y": 408.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 403.1520000000001 + "x": 429.136, + "y": 403.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 399.4740000000001 + "x": 434.198, + "y": 399.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 397.5400000000001 + "x": 440.149, + "y": 397.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 397.5400000000001 + "x": 446.407, + "y": 397.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 399.4740000000001 + "x": 452.358, + "y": 399.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 403.1520000000001 + "x": 457.42, + "y": 403.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 408.2140000000001 + "x": 461.098, + "y": 408.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 414.1650000000001 + "x": 463.032, + "y": 414.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1560 }, @@ -13990,13 +13990,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14060,40 +14060,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14108,12 +14108,12 @@ } }, { - "x": 512.5400000000002, - "y": 437.0480000000001 + "x": 512.54, + "y": 437.048 }, { - "x": 473.03200000000015, - "y": 397.5400000000001 + "x": 473.032, + "y": 397.54 }, { "category": 4, @@ -14130,16 +14130,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 417.2940000000001 + "x": 492.786, + "y": 417.294 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 417.2940000000001 + "x": 492.786, + "y": 417.294 }, { "fillStyle": "transparent", @@ -14224,148 +14224,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 420.4230000000001 + "x": 512.54, + "y": 420.423 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 426.3740000000001 + "x": 510.606, + "y": 426.374 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 431.4360000000001 + "x": 506.928, + "y": 431.436 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 435.1140000000001 + "x": 501.866, + "y": 435.114 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 437.0480000000001 + "x": 495.915, + "y": 437.048 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 437.0480000000001 + "x": 489.657, + "y": 437.048 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 435.1140000000001 + "x": 483.706, + "y": 435.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 431.4360000000001 + "x": 478.644, + "y": 431.436 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 426.3740000000001 + "x": 474.966, + "y": 426.374 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 420.4230000000001 + "x": 473.032, + "y": 420.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 414.1650000000001 + "x": 473.032, + "y": 414.165 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 408.2140000000001 + "x": 474.966, + "y": 408.214 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 403.1520000000001 + "x": 478.644, + "y": 403.152 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 399.4740000000001 + "x": 483.706, + "y": 399.474 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 397.5400000000001 + "x": 489.657, + "y": 397.54 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 397.5400000000001 + "x": 495.915, + "y": 397.54 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 399.4740000000001 + "x": 501.866, + "y": 399.474 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 403.1520000000001 + "x": 506.928, + "y": 403.152 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 408.2140000000001 + "x": 510.606, + "y": 408.214 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 414.1650000000001 + "x": 512.54, + "y": 414.165 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1605 }, @@ -14387,13 +14387,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14457,40 +14457,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14505,12 +14505,12 @@ } }, { - "x": 314.50800000000004, - "y": 486.55600000000015 + "x": 314.508, + "y": 486.556 }, { "x": 275, - "y": 447.0480000000001 + "y": 447.048 }, { "category": 8, @@ -14528,7 +14528,7 @@ }, { "x": 294.754, - "y": 466.80200000000013 + "y": 466.802 }, { "x": 0, @@ -14536,7 +14536,7 @@ }, { "x": 294.754, - "y": 466.80200000000013 + "y": 466.802 }, { "fillStyle": "transparent", @@ -14621,148 +14621,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 469.93100000000015 + "x": 314.508, + "y": 469.931 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 475.8820000000001 + "y": 475.882 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 480.94400000000013 + "y": 480.944 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 484.6220000000001 + "y": 484.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 486.55600000000015 + "x": 297.883, + "y": 486.556 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 486.55600000000015 + "y": 486.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 484.6220000000001 + "x": 285.674, + "y": 484.622 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 480.94400000000013 + "y": 480.944 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 475.8820000000001 + "y": 475.882 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 469.93100000000015 + "y": 469.931 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 463.6730000000001 + "y": 463.673 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 457.72200000000015 + "y": 457.722 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 452.66000000000014 + "y": 452.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 448.98200000000014 + "x": 285.674, + "y": 448.982 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 447.0480000000001 + "y": 447.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 447.0480000000001 + "x": 297.883, + "y": 447.048 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 448.98200000000014 + "y": 448.982 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 452.66000000000014 + "y": 452.66 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 457.72200000000015 + "y": 457.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 463.6730000000001 + "x": 314.508, + "y": 463.673 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1650 }, @@ -14784,13 +14784,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14854,40 +14854,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14902,12 +14902,12 @@ } }, { - "x": 364.0160000000001, - "y": 486.55600000000015 + "x": 364.016, + "y": 486.556 }, { - "x": 324.50800000000004, - "y": 447.0480000000001 + "x": 324.508, + "y": 447.048 }, { "category": 8, @@ -14924,16 +14924,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 466.80200000000013 + "x": 344.262, + "y": 466.802 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 466.80200000000013 + "x": 344.262, + "y": 466.802 }, { "fillStyle": "transparent", @@ -15018,148 +15018,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 469.93100000000015 + "x": 364.016, + "y": 469.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 475.8820000000001 + "x": 362.082, + "y": 475.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 480.94400000000013 + "x": 358.404, + "y": 480.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 484.6220000000001 + "x": 353.342, + "y": 484.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 486.55600000000015 + "x": 347.391, + "y": 486.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 486.55600000000015 + "x": 341.133, + "y": 486.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 484.6220000000001 + "x": 335.182, + "y": 484.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 480.94400000000013 + "x": 330.12, + "y": 480.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 475.8820000000001 + "x": 326.442, + "y": 475.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 469.93100000000015 + "x": 324.508, + "y": 469.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 463.6730000000001 + "x": 324.508, + "y": 463.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 457.72200000000015 + "x": 326.442, + "y": 457.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 452.66000000000014 + "x": 330.12, + "y": 452.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 448.98200000000014 + "x": 335.182, + "y": 448.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 447.0480000000001 + "x": 341.133, + "y": 447.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 447.0480000000001 + "x": 347.391, + "y": 447.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 448.98200000000014 + "x": 353.342, + "y": 448.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 452.66000000000014 + "x": 358.404, + "y": 452.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 457.72200000000015 + "x": 362.082, + "y": 457.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 463.6730000000001 + "x": 364.016, + "y": 463.673 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1695 }, @@ -15181,13 +15181,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15251,40 +15251,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15299,12 +15299,12 @@ } }, { - "x": 413.5240000000001, - "y": 486.55600000000015 + "x": 413.524, + "y": 486.556 }, { - "x": 374.0160000000001, - "y": 447.0480000000001 + "x": 374.016, + "y": 447.048 }, { "category": 8, @@ -15321,16 +15321,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 466.80200000000013 + "x": 393.77, + "y": 466.802 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 466.80200000000013 + "x": 393.77, + "y": 466.802 }, { "fillStyle": "transparent", @@ -15415,148 +15415,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 469.93100000000015 + "x": 413.524, + "y": 469.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 475.8820000000001 + "x": 411.59, + "y": 475.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 480.94400000000013 + "x": 407.912, + "y": 480.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 484.6220000000001 + "x": 402.85, + "y": 484.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 486.55600000000015 + "x": 396.899, + "y": 486.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 486.55600000000015 + "x": 390.641, + "y": 486.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 484.6220000000001 + "x": 384.69, + "y": 484.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 480.94400000000013 + "x": 379.628, + "y": 480.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 475.8820000000001 + "x": 375.95, + "y": 475.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 469.93100000000015 + "x": 374.016, + "y": 469.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 463.6730000000001 + "x": 374.016, + "y": 463.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 457.72200000000015 + "x": 375.95, + "y": 457.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 452.66000000000014 + "x": 379.628, + "y": 452.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 448.98200000000014 + "x": 384.69, + "y": 448.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 447.0480000000001 + "x": 390.641, + "y": 447.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 447.0480000000001 + "x": 396.899, + "y": 447.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 448.98200000000014 + "x": 402.85, + "y": 448.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 452.66000000000014 + "x": 407.912, + "y": 452.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 457.72200000000015 + "x": 411.59, + "y": 457.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 463.6730000000001 + "x": 413.524, + "y": 463.673 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1740 }, @@ -15578,13 +15578,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15648,40 +15648,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15696,12 +15696,12 @@ } }, { - "x": 463.03200000000015, - "y": 486.55600000000015 + "x": 463.032, + "y": 486.556 }, { - "x": 423.5240000000001, - "y": 447.0480000000001 + "x": 423.524, + "y": 447.048 }, { "category": 8, @@ -15718,16 +15718,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 466.80200000000013 + "x": 443.278, + "y": 466.802 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 466.80200000000013 + "x": 443.278, + "y": 466.802 }, { "fillStyle": "transparent", @@ -15812,148 +15812,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 469.93100000000015 + "x": 463.032, + "y": 469.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 475.8820000000001 + "x": 461.098, + "y": 475.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 480.94400000000013 + "x": 457.42, + "y": 480.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 484.6220000000001 + "x": 452.358, + "y": 484.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 486.55600000000015 + "x": 446.407, + "y": 486.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 486.55600000000015 + "x": 440.149, + "y": 486.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 484.6220000000001 + "x": 434.198, + "y": 484.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 480.94400000000013 + "x": 429.136, + "y": 480.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 475.8820000000001 + "x": 425.458, + "y": 475.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 469.93100000000015 + "x": 423.524, + "y": 469.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 463.6730000000001 + "x": 423.524, + "y": 463.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 457.72200000000015 + "x": 425.458, + "y": 457.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 452.66000000000014 + "x": 429.136, + "y": 452.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 448.98200000000014 + "x": 434.198, + "y": 448.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 447.0480000000001 + "x": 440.149, + "y": 447.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 447.0480000000001 + "x": 446.407, + "y": 447.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 448.98200000000014 + "x": 452.358, + "y": 448.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 452.66000000000014 + "x": 457.42, + "y": 452.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 457.72200000000015 + "x": 461.098, + "y": 457.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 463.6730000000001 + "x": 463.032, + "y": 463.673 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1785 }, @@ -15975,13 +15975,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16045,40 +16045,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16093,12 +16093,12 @@ } }, { - "x": 512.5400000000002, - "y": 486.55600000000015 + "x": 512.54, + "y": 486.556 }, { - "x": 473.03200000000015, - "y": 447.0480000000001 + "x": 473.032, + "y": 447.048 }, { "category": 8, @@ -16115,16 +16115,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 466.80200000000013 + "x": 492.786, + "y": 466.802 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 466.80200000000013 + "x": 492.786, + "y": 466.802 }, { "fillStyle": "transparent", @@ -16209,148 +16209,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 469.93100000000015 + "x": 512.54, + "y": 469.931 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 475.8820000000001 + "x": 510.606, + "y": 475.882 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 480.94400000000013 + "x": 506.928, + "y": 480.944 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 484.6220000000001 + "x": 501.866, + "y": 484.622 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 486.55600000000015 + "x": 495.915, + "y": 486.556 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 486.55600000000015 + "x": 489.657, + "y": 486.556 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 484.6220000000001 + "x": 483.706, + "y": 484.622 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 480.94400000000013 + "x": 478.644, + "y": 480.944 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 475.8820000000001 + "x": 474.966, + "y": 475.882 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 469.93100000000015 + "x": 473.032, + "y": 469.931 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 463.6730000000001 + "x": 473.032, + "y": 463.673 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 457.72200000000015 + "x": 474.966, + "y": 457.722 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 452.66000000000014 + "x": 478.644, + "y": 452.66 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 448.98200000000014 + "x": 483.706, + "y": 448.982 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 447.0480000000001 + "x": 489.657, + "y": 447.048 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 447.0480000000001 + "x": 495.915, + "y": 447.048 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 448.98200000000014 + "x": 501.866, + "y": 448.982 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 452.66000000000014 + "x": 506.928, + "y": 452.66 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 457.72200000000015 + "x": 510.606, + "y": 457.722 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 463.6730000000001 + "x": 512.54, + "y": 463.673 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1830 }, @@ -16372,13 +16372,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16442,40 +16442,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16490,12 +16490,12 @@ } }, { - "x": 314.50800000000004, - "y": 536.0640000000002 + "x": 314.508, + "y": 536.064 }, { "x": 275, - "y": 496.55600000000015 + "y": 496.556 }, { "category": 8, @@ -16513,7 +16513,7 @@ }, { "x": 294.754, - "y": 516.3100000000002 + "y": 516.31 }, { "x": 0, @@ -16521,7 +16521,7 @@ }, { "x": 294.754, - "y": 516.3100000000002 + "y": 516.31 }, { "fillStyle": "transparent", @@ -16606,148 +16606,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 519.4390000000002 + "x": 314.508, + "y": 519.439 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 525.3900000000001 + "y": 525.39 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 530.4520000000002 + "y": 530.452 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 534.1300000000002 + "y": 534.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 536.0640000000002 + "x": 297.883, + "y": 536.064 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 536.0640000000002 + "y": 536.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 534.1300000000002 + "x": 285.674, + "y": 534.13 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 530.4520000000002 + "y": 530.452 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 525.3900000000001 + "y": 525.39 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 519.4390000000002 + "y": 519.439 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 513.1810000000002 + "y": 513.181 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 507.2300000000002 + "y": 507.23 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 502.1680000000002 + "y": 502.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 498.4900000000002 + "x": 285.674, + "y": 498.49 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 496.55600000000015 + "y": 496.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 496.55600000000015 + "x": 297.883, + "y": 496.556 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 498.4900000000002 + "y": 498.49 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 502.1680000000002 + "y": 502.168 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 507.2300000000002 + "y": 507.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 513.1810000000002 + "x": 314.508, + "y": 513.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1875 }, @@ -16769,13 +16769,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16839,40 +16839,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16887,12 +16887,12 @@ } }, { - "x": 364.0160000000001, - "y": 536.0640000000002 + "x": 364.016, + "y": 536.064 }, { - "x": 324.50800000000004, - "y": 496.55600000000015 + "x": 324.508, + "y": 496.556 }, { "category": 8, @@ -16909,16 +16909,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 516.3100000000002 + "x": 344.262, + "y": 516.31 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 516.3100000000002 + "x": 344.262, + "y": 516.31 }, { "fillStyle": "transparent", @@ -17003,148 +17003,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 519.4390000000002 + "x": 364.016, + "y": 519.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 525.3900000000001 + "x": 362.082, + "y": 525.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 530.4520000000002 + "x": 358.404, + "y": 530.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 534.1300000000002 + "x": 353.342, + "y": 534.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 536.0640000000002 + "x": 347.391, + "y": 536.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 536.0640000000002 + "x": 341.133, + "y": 536.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 534.1300000000002 + "x": 335.182, + "y": 534.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 530.4520000000002 + "x": 330.12, + "y": 530.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 525.3900000000001 + "x": 326.442, + "y": 525.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 519.4390000000002 + "x": 324.508, + "y": 519.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 513.1810000000002 + "x": 324.508, + "y": 513.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 507.2300000000002 + "x": 326.442, + "y": 507.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 502.1680000000002 + "x": 330.12, + "y": 502.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 498.4900000000002 + "x": 335.182, + "y": 498.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 496.55600000000015 + "x": 341.133, + "y": 496.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 496.55600000000015 + "x": 347.391, + "y": 496.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 498.4900000000002 + "x": 353.342, + "y": 498.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 502.1680000000002 + "x": 358.404, + "y": 502.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 507.2300000000002 + "x": 362.082, + "y": 507.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 513.1810000000002 + "x": 364.016, + "y": 513.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1920 }, @@ -17166,13 +17166,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17236,40 +17236,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17284,12 +17284,12 @@ } }, { - "x": 413.5240000000001, - "y": 536.0640000000002 + "x": 413.524, + "y": 536.064 }, { - "x": 374.0160000000001, - "y": 496.55600000000015 + "x": 374.016, + "y": 496.556 }, { "category": 8, @@ -17306,16 +17306,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 516.3100000000002 + "x": 393.77, + "y": 516.31 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 516.3100000000002 + "x": 393.77, + "y": 516.31 }, { "fillStyle": "transparent", @@ -17400,148 +17400,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 519.4390000000002 + "x": 413.524, + "y": 519.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 525.3900000000001 + "x": 411.59, + "y": 525.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 530.4520000000002 + "x": 407.912, + "y": 530.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 534.1300000000002 + "x": 402.85, + "y": 534.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 536.0640000000002 + "x": 396.899, + "y": 536.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 536.0640000000002 + "x": 390.641, + "y": 536.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 534.1300000000002 + "x": 384.69, + "y": 534.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 530.4520000000002 + "x": 379.628, + "y": 530.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 525.3900000000001 + "x": 375.95, + "y": 525.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 519.4390000000002 + "x": 374.016, + "y": 519.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 513.1810000000002 + "x": 374.016, + "y": 513.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 507.2300000000002 + "x": 375.95, + "y": 507.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 502.1680000000002 + "x": 379.628, + "y": 502.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 498.4900000000002 + "x": 384.69, + "y": 498.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 496.55600000000015 + "x": 390.641, + "y": 496.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 496.55600000000015 + "x": 396.899, + "y": 496.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 498.4900000000002 + "x": 402.85, + "y": 498.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 502.1680000000002 + "x": 407.912, + "y": 502.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 507.2300000000002 + "x": 411.59, + "y": 507.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 513.1810000000002 + "x": 413.524, + "y": 513.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1965 }, @@ -17563,13 +17563,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17633,40 +17633,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17681,12 +17681,12 @@ } }, { - "x": 463.03200000000015, - "y": 536.0640000000002 + "x": 463.032, + "y": 536.064 }, { - "x": 423.5240000000001, - "y": 496.55600000000015 + "x": 423.524, + "y": 496.556 }, { "category": 8, @@ -17703,16 +17703,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 516.3100000000002 + "x": 443.278, + "y": 516.31 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 516.3100000000002 + "x": 443.278, + "y": 516.31 }, { "fillStyle": "transparent", @@ -17797,148 +17797,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 519.4390000000002 + "x": 463.032, + "y": 519.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 525.3900000000001 + "x": 461.098, + "y": 525.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 530.4520000000002 + "x": 457.42, + "y": 530.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 534.1300000000002 + "x": 452.358, + "y": 534.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 536.0640000000002 + "x": 446.407, + "y": 536.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 536.0640000000002 + "x": 440.149, + "y": 536.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 534.1300000000002 + "x": 434.198, + "y": 534.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 530.4520000000002 + "x": 429.136, + "y": 530.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 525.3900000000001 + "x": 425.458, + "y": 525.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 519.4390000000002 + "x": 423.524, + "y": 519.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 513.1810000000002 + "x": 423.524, + "y": 513.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 507.2300000000002 + "x": 425.458, + "y": 507.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 502.1680000000002 + "x": 429.136, + "y": 502.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 498.4900000000002 + "x": 434.198, + "y": 498.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 496.55600000000015 + "x": 440.149, + "y": 496.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 496.55600000000015 + "x": 446.407, + "y": 496.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 498.4900000000002 + "x": 452.358, + "y": 498.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 502.1680000000002 + "x": 457.42, + "y": 502.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 507.2300000000002 + "x": 461.098, + "y": 507.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 513.1810000000002 + "x": 463.032, + "y": 513.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2010 }, @@ -17960,13 +17960,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18030,40 +18030,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18078,12 +18078,12 @@ } }, { - "x": 512.5400000000002, - "y": 536.0640000000002 + "x": 512.54, + "y": 536.064 }, { - "x": 473.03200000000015, - "y": 496.55600000000015 + "x": 473.032, + "y": 496.556 }, { "category": 8, @@ -18100,16 +18100,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 516.3100000000002 + "x": 492.786, + "y": 516.31 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 516.3100000000002 + "x": 492.786, + "y": 516.31 }, { "fillStyle": "transparent", @@ -18194,148 +18194,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 519.4390000000002 + "x": 512.54, + "y": 519.439 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 525.3900000000001 + "x": 510.606, + "y": 525.39 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 530.4520000000002 + "x": 506.928, + "y": 530.452 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 534.1300000000002 + "x": 501.866, + "y": 534.13 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 536.0640000000002 + "x": 495.915, + "y": 536.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 536.0640000000002 + "x": 489.657, + "y": 536.064 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 534.1300000000002 + "x": 483.706, + "y": 534.13 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 530.4520000000002 + "x": 478.644, + "y": 530.452 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 525.3900000000001 + "x": 474.966, + "y": 525.39 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 519.4390000000002 + "x": 473.032, + "y": 519.439 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 513.1810000000002 + "x": 473.032, + "y": 513.181 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 507.2300000000002 + "x": 474.966, + "y": 507.23 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 502.1680000000002 + "x": 478.644, + "y": 502.168 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 498.4900000000002 + "x": 483.706, + "y": 498.49 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 496.55600000000015 + "x": 489.657, + "y": 496.556 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 496.55600000000015 + "x": 495.915, + "y": 496.556 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 498.4900000000002 + "x": 501.866, + "y": 498.49 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 502.1680000000002 + "x": 506.928, + "y": 502.168 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 507.2300000000002 + "x": 510.606, + "y": 507.23 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 513.1810000000002 + "x": 512.54, + "y": 513.181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2055 }, @@ -18357,13 +18357,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18427,40 +18427,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18475,12 +18475,12 @@ } }, { - "x": 314.50800000000004, - "y": 585.5720000000002 + "x": 314.508, + "y": 585.572 }, { "x": 275, - "y": 546.0640000000002 + "y": 546.064 }, { "category": 8, @@ -18498,7 +18498,7 @@ }, { "x": 294.754, - "y": 565.8180000000002 + "y": 565.818 }, { "x": 0, @@ -18506,7 +18506,7 @@ }, { "x": 294.754, - "y": 565.8180000000002 + "y": 565.818 }, { "fillStyle": "transparent", @@ -18591,148 +18591,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 568.9470000000002 + "x": 314.508, + "y": 568.947 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 574.8980000000003 + "y": 574.898 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 579.9600000000003 + "y": 579.96 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 583.6380000000003 + "y": 583.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 585.5720000000002 + "x": 297.883, + "y": 585.572 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 585.5720000000002 + "y": 585.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 583.6380000000003 + "x": 285.674, + "y": 583.638 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 579.9600000000003 + "y": 579.96 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 574.8980000000003 + "y": 574.898 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 568.9470000000002 + "y": 568.947 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 562.6890000000002 + "y": 562.689 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 556.7380000000002 + "y": 556.738 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 551.6760000000002 + "y": 551.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 547.9980000000002 + "x": 285.674, + "y": 547.998 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 546.0640000000002 + "y": 546.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 546.0640000000002 + "x": 297.883, + "y": 546.064 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 547.9980000000002 + "y": 547.998 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 551.6760000000002 + "y": 551.676 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 556.7380000000002 + "y": 556.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 562.6890000000002 + "x": 314.508, + "y": 562.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2100 }, @@ -18754,13 +18754,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18824,40 +18824,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18872,12 +18872,12 @@ } }, { - "x": 364.0160000000001, - "y": 585.5720000000002 + "x": 364.016, + "y": 585.572 }, { - "x": 324.50800000000004, - "y": 546.0640000000002 + "x": 324.508, + "y": 546.064 }, { "category": 8, @@ -18894,16 +18894,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 565.8180000000002 + "x": 344.262, + "y": 565.818 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 565.8180000000002 + "x": 344.262, + "y": 565.818 }, { "fillStyle": "transparent", @@ -18988,148 +18988,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 568.9470000000002 + "x": 364.016, + "y": 568.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 574.8980000000003 + "x": 362.082, + "y": 574.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 579.9600000000003 + "x": 358.404, + "y": 579.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 583.6380000000003 + "x": 353.342, + "y": 583.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 585.5720000000002 + "x": 347.391, + "y": 585.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 585.5720000000002 + "x": 341.133, + "y": 585.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 583.6380000000003 + "x": 335.182, + "y": 583.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 579.9600000000003 + "x": 330.12, + "y": 579.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 574.8980000000003 + "x": 326.442, + "y": 574.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 568.9470000000002 + "x": 324.508, + "y": 568.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 562.6890000000002 + "x": 324.508, + "y": 562.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 556.7380000000002 + "x": 326.442, + "y": 556.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 551.6760000000002 + "x": 330.12, + "y": 551.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 547.9980000000002 + "x": 335.182, + "y": 547.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 546.0640000000002 + "x": 341.133, + "y": 546.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 546.0640000000002 + "x": 347.391, + "y": 546.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 547.9980000000002 + "x": 353.342, + "y": 547.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 551.6760000000002 + "x": 358.404, + "y": 551.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 556.7380000000002 + "x": 362.082, + "y": 556.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 562.6890000000002 + "x": 364.016, + "y": 562.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2145 }, @@ -19151,13 +19151,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19221,40 +19221,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19269,12 +19269,12 @@ } }, { - "x": 413.5240000000001, - "y": 585.5720000000002 + "x": 413.524, + "y": 585.572 }, { - "x": 374.0160000000001, - "y": 546.0640000000002 + "x": 374.016, + "y": 546.064 }, { "category": 8, @@ -19291,16 +19291,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 565.8180000000002 + "x": 393.77, + "y": 565.818 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 565.8180000000002 + "x": 393.77, + "y": 565.818 }, { "fillStyle": "transparent", @@ -19385,148 +19385,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 568.9470000000002 + "x": 413.524, + "y": 568.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 574.8980000000003 + "x": 411.59, + "y": 574.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 579.9600000000003 + "x": 407.912, + "y": 579.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 583.6380000000003 + "x": 402.85, + "y": 583.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 585.5720000000002 + "x": 396.899, + "y": 585.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 585.5720000000002 + "x": 390.641, + "y": 585.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 583.6380000000003 + "x": 384.69, + "y": 583.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 579.9600000000003 + "x": 379.628, + "y": 579.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 574.8980000000003 + "x": 375.95, + "y": 574.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 568.9470000000002 + "x": 374.016, + "y": 568.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 562.6890000000002 + "x": 374.016, + "y": 562.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 556.7380000000002 + "x": 375.95, + "y": 556.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 551.6760000000002 + "x": 379.628, + "y": 551.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 547.9980000000002 + "x": 384.69, + "y": 547.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 546.0640000000002 + "x": 390.641, + "y": 546.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 546.0640000000002 + "x": 396.899, + "y": 546.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 547.9980000000002 + "x": 402.85, + "y": 547.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 551.6760000000002 + "x": 407.912, + "y": 551.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 556.7380000000002 + "x": 411.59, + "y": 556.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 562.6890000000002 + "x": 413.524, + "y": 562.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2190 }, @@ -19548,13 +19548,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19618,40 +19618,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19666,12 +19666,12 @@ } }, { - "x": 463.03200000000015, - "y": 585.5720000000002 + "x": 463.032, + "y": 585.572 }, { - "x": 423.5240000000001, - "y": 546.0640000000002 + "x": 423.524, + "y": 546.064 }, { "category": 8, @@ -19688,16 +19688,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 565.8180000000002 + "x": 443.278, + "y": 565.818 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 565.8180000000002 + "x": 443.278, + "y": 565.818 }, { "fillStyle": "transparent", @@ -19782,148 +19782,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 568.9470000000002 + "x": 463.032, + "y": 568.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 574.8980000000003 + "x": 461.098, + "y": 574.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 579.9600000000003 + "x": 457.42, + "y": 579.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 583.6380000000003 + "x": 452.358, + "y": 583.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 585.5720000000002 + "x": 446.407, + "y": 585.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 585.5720000000002 + "x": 440.149, + "y": 585.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 583.6380000000003 + "x": 434.198, + "y": 583.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 579.9600000000003 + "x": 429.136, + "y": 579.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 574.8980000000003 + "x": 425.458, + "y": 574.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 568.9470000000002 + "x": 423.524, + "y": 568.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 562.6890000000002 + "x": 423.524, + "y": 562.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 556.7380000000002 + "x": 425.458, + "y": 556.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 551.6760000000002 + "x": 429.136, + "y": 551.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 547.9980000000002 + "x": 434.198, + "y": 547.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 546.0640000000002 + "x": 440.149, + "y": 546.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 546.0640000000002 + "x": 446.407, + "y": 546.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 547.9980000000002 + "x": 452.358, + "y": 547.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 551.6760000000002 + "x": 457.42, + "y": 551.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 556.7380000000002 + "x": 461.098, + "y": 556.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 562.6890000000002 + "x": 463.032, + "y": 562.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2235 }, @@ -19945,13 +19945,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20015,40 +20015,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20063,12 +20063,12 @@ } }, { - "x": 512.5400000000002, - "y": 585.5720000000002 + "x": 512.54, + "y": 585.572 }, { - "x": 473.03200000000015, - "y": 546.0640000000002 + "x": 473.032, + "y": 546.064 }, { "category": 8, @@ -20085,16 +20085,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 565.8180000000002 + "x": 492.786, + "y": 565.818 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 565.8180000000002 + "x": 492.786, + "y": 565.818 }, { "fillStyle": "transparent", @@ -20179,148 +20179,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 568.9470000000002 + "x": 512.54, + "y": 568.947 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 574.8980000000003 + "x": 510.606, + "y": 574.898 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 579.9600000000003 + "x": 506.928, + "y": 579.96 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 583.6380000000003 + "x": 501.866, + "y": 583.638 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 585.5720000000002 + "x": 495.915, + "y": 585.572 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 585.5720000000002 + "x": 489.657, + "y": 585.572 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 583.6380000000003 + "x": 483.706, + "y": 583.638 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 579.9600000000003 + "x": 478.644, + "y": 579.96 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 574.8980000000003 + "x": 474.966, + "y": 574.898 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 568.9470000000002 + "x": 473.032, + "y": 568.947 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 562.6890000000002 + "x": 473.032, + "y": 562.689 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 556.7380000000002 + "x": 474.966, + "y": 556.738 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 551.6760000000002 + "x": 478.644, + "y": 551.676 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 547.9980000000002 + "x": 483.706, + "y": 547.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 546.0640000000002 + "x": 489.657, + "y": 546.064 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 546.0640000000002 + "x": 495.915, + "y": 546.064 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 547.9980000000002 + "x": 501.866, + "y": 547.998 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 551.6760000000002 + "x": 506.928, + "y": 551.676 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 556.7380000000002 + "x": 510.606, + "y": 556.738 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 562.6890000000002 + "x": 512.54, + "y": 562.689 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2280 }, @@ -20342,13 +20342,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20412,40 +20412,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20460,12 +20460,12 @@ } }, { - "x": 314.50800000000004, - "y": 635.0800000000003 + "x": 314.508, + "y": 635.08 }, { "x": 275, - "y": 595.5720000000002 + "y": 595.572 }, { "category": 8, @@ -20483,7 +20483,7 @@ }, { "x": 294.754, - "y": 615.3260000000002 + "y": 615.326 }, { "x": 0, @@ -20491,7 +20491,7 @@ }, { "x": 294.754, - "y": 615.3260000000002 + "y": 615.326 }, { "fillStyle": "transparent", @@ -20576,148 +20576,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 618.4550000000003 + "x": 314.508, + "y": 618.455 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 624.4060000000003 + "y": 624.406 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 629.4680000000003 + "y": 629.468 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 633.1460000000003 + "y": 633.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 635.0800000000003 + "x": 297.883, + "y": 635.08 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 635.0800000000003 + "y": 635.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 633.1460000000003 + "x": 285.674, + "y": 633.146 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 629.4680000000003 + "y": 629.468 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 624.4060000000003 + "y": 624.406 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 618.4550000000003 + "y": 618.455 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 612.1970000000002 + "y": 612.197 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 606.2460000000002 + "y": 606.246 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 601.1840000000002 + "y": 601.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 597.5060000000002 + "x": 285.674, + "y": 597.506 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 595.5720000000002 + "y": 595.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 595.5720000000002 + "x": 297.883, + "y": 595.572 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 597.5060000000002 + "y": 597.506 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 601.1840000000002 + "y": 601.184 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 606.2460000000002 + "y": 606.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 612.1970000000002 + "x": 314.508, + "y": 612.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2325 }, @@ -20739,13 +20739,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20809,40 +20809,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20857,12 +20857,12 @@ } }, { - "x": 364.0160000000001, - "y": 635.0800000000003 + "x": 364.016, + "y": 635.08 }, { - "x": 324.50800000000004, - "y": 595.5720000000002 + "x": 324.508, + "y": 595.572 }, { "category": 8, @@ -20879,16 +20879,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 615.3260000000002 + "x": 344.262, + "y": 615.326 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 615.3260000000002 + "x": 344.262, + "y": 615.326 }, { "fillStyle": "transparent", @@ -20973,148 +20973,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 618.4550000000003 + "x": 364.016, + "y": 618.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 624.4060000000003 + "x": 362.082, + "y": 624.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 629.4680000000003 + "x": 358.404, + "y": 629.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 633.1460000000003 + "x": 353.342, + "y": 633.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 635.0800000000003 + "x": 347.391, + "y": 635.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 635.0800000000003 + "x": 341.133, + "y": 635.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 633.1460000000003 + "x": 335.182, + "y": 633.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 629.4680000000003 + "x": 330.12, + "y": 629.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 624.4060000000003 + "x": 326.442, + "y": 624.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 618.4550000000003 + "x": 324.508, + "y": 618.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 612.1970000000002 + "x": 324.508, + "y": 612.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 606.2460000000002 + "x": 326.442, + "y": 606.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 601.1840000000002 + "x": 330.12, + "y": 601.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 597.5060000000002 + "x": 335.182, + "y": 597.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 595.5720000000002 + "x": 341.133, + "y": 595.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 595.5720000000002 + "x": 347.391, + "y": 595.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 597.5060000000002 + "x": 353.342, + "y": 597.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 601.1840000000002 + "x": 358.404, + "y": 601.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 606.2460000000002 + "x": 362.082, + "y": 606.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 612.1970000000002 + "x": 364.016, + "y": 612.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2370 }, @@ -21136,13 +21136,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21206,40 +21206,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21254,12 +21254,12 @@ } }, { - "x": 413.5240000000001, - "y": 635.0800000000003 + "x": 413.524, + "y": 635.08 }, { - "x": 374.0160000000001, - "y": 595.5720000000002 + "x": 374.016, + "y": 595.572 }, { "category": 8, @@ -21276,16 +21276,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 615.3260000000002 + "x": 393.77, + "y": 615.326 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 615.3260000000002 + "x": 393.77, + "y": 615.326 }, { "fillStyle": "transparent", @@ -21370,148 +21370,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 618.4550000000003 + "x": 413.524, + "y": 618.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 624.4060000000003 + "x": 411.59, + "y": 624.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 629.4680000000003 + "x": 407.912, + "y": 629.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 633.1460000000003 + "x": 402.85, + "y": 633.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 635.0800000000003 + "x": 396.899, + "y": 635.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 635.0800000000003 + "x": 390.641, + "y": 635.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 633.1460000000003 + "x": 384.69, + "y": 633.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 629.4680000000003 + "x": 379.628, + "y": 629.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 624.4060000000003 + "x": 375.95, + "y": 624.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 618.4550000000003 + "x": 374.016, + "y": 618.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 612.1970000000002 + "x": 374.016, + "y": 612.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 606.2460000000002 + "x": 375.95, + "y": 606.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 601.1840000000002 + "x": 379.628, + "y": 601.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 597.5060000000002 + "x": 384.69, + "y": 597.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 595.5720000000002 + "x": 390.641, + "y": 595.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 595.5720000000002 + "x": 396.899, + "y": 595.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 597.5060000000002 + "x": 402.85, + "y": 597.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 601.1840000000002 + "x": 407.912, + "y": 601.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 606.2460000000002 + "x": 411.59, + "y": 606.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 612.1970000000002 + "x": 413.524, + "y": 612.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2415 }, @@ -21533,13 +21533,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21603,40 +21603,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21651,12 +21651,12 @@ } }, { - "x": 463.03200000000015, - "y": 635.0800000000003 + "x": 463.032, + "y": 635.08 }, { - "x": 423.5240000000001, - "y": 595.5720000000002 + "x": 423.524, + "y": 595.572 }, { "category": 8, @@ -21673,16 +21673,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 615.3260000000002 + "x": 443.278, + "y": 615.326 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 615.3260000000002 + "x": 443.278, + "y": 615.326 }, { "fillStyle": "transparent", @@ -21767,148 +21767,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 618.4550000000003 + "x": 463.032, + "y": 618.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 624.4060000000003 + "x": 461.098, + "y": 624.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 629.4680000000003 + "x": 457.42, + "y": 629.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 633.1460000000003 + "x": 452.358, + "y": 633.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 635.0800000000003 + "x": 446.407, + "y": 635.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 635.0800000000003 + "x": 440.149, + "y": 635.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 633.1460000000003 + "x": 434.198, + "y": 633.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 629.4680000000003 + "x": 429.136, + "y": 629.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 624.4060000000003 + "x": 425.458, + "y": 624.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 618.4550000000003 + "x": 423.524, + "y": 618.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 612.1970000000002 + "x": 423.524, + "y": 612.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 606.2460000000002 + "x": 425.458, + "y": 606.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 601.1840000000002 + "x": 429.136, + "y": 601.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 597.5060000000002 + "x": 434.198, + "y": 597.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 595.5720000000002 + "x": 440.149, + "y": 595.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 595.5720000000002 + "x": 446.407, + "y": 595.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 597.5060000000002 + "x": 452.358, + "y": 597.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 601.1840000000002 + "x": 457.42, + "y": 601.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 606.2460000000002 + "x": 461.098, + "y": 606.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 612.1970000000002 + "x": 463.032, + "y": 612.197 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2460 }, @@ -21930,13 +21930,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -22000,40 +22000,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -22048,12 +22048,12 @@ } }, { - "x": 512.5400000000002, - "y": 635.0800000000003 + "x": 512.54, + "y": 635.08 }, { - "x": 473.03200000000015, - "y": 595.5720000000002 + "x": 473.032, + "y": 595.572 }, { "category": 8, @@ -22070,16 +22070,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 615.3260000000002 + "x": 492.786, + "y": 615.326 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 615.3260000000002 + "x": 492.786, + "y": 615.326 }, { "fillStyle": "transparent", @@ -22164,141 +22164,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 618.4550000000003 + "x": 512.54, + "y": 618.455 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 624.4060000000003 + "x": 510.606, + "y": 624.406 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 629.4680000000003 + "x": 506.928, + "y": 629.468 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 633.1460000000003 + "x": 501.866, + "y": 633.146 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 635.0800000000003 + "x": 495.915, + "y": 635.08 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 635.0800000000003 + "x": 489.657, + "y": 635.08 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 633.1460000000003 + "x": 483.706, + "y": 633.146 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 629.4680000000003 + "x": 478.644, + "y": 629.468 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 624.4060000000003 + "x": 474.966, + "y": 624.406 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 618.4550000000003 + "x": 473.032, + "y": 618.455 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 612.1970000000002 + "x": 473.032, + "y": 612.197 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 606.2460000000002 + "x": 474.966, + "y": 606.246 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 601.1840000000002 + "x": 478.644, + "y": 601.184 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 597.5060000000002 + "x": 483.706, + "y": 597.506 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 595.5720000000002 + "x": 489.657, + "y": 595.572 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 595.5720000000002 + "x": 495.915, + "y": 595.572 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 597.5060000000002 + "x": 501.866, + "y": 597.506 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 601.1840000000002 + "x": 506.928, + "y": 601.184 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 606.2460000000002 + "x": 510.606, + "y": 606.246 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 612.1970000000002 + "x": 512.54, + "y": 612.197 }, [], [], diff --git a/test/browser/refs/collisionFiltering/collisionFiltering-10.json b/test/browser/refs/collisionFiltering/collisionFiltering-10.json index 23ab67a4..9d9e29da 100644 --- a/test/browser/refs/collisionFiltering/collisionFiltering-10.json +++ b/test/browser/refs/collisionFiltering/collisionFiltering-10.json @@ -872,7 +872,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 91 }, @@ -894,13 +894,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 4991.137790304929, - "inverseInertia": 0.0002003551178135088, - "inverseMass": 0.35714487705224035, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -922,7 +922,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -976,52 +976,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1037,11 +1037,11 @@ }, { "x": 339.781, - "y": 135.99252924881458 + "y": 135.99253 }, { "x": 280.219, - "y": 73.08525853377894 + "y": 73.08526 }, { "category": 1, @@ -1059,15 +1059,15 @@ }, { "x": 310, - "y": 103.08525853377893 + "y": 103.08526 }, { "x": 0, - "y": 0.8523115466493796 + "y": 0.85231 }, { "x": 310, - "y": 100.17798781874328 + "y": 100.17799 }, { "endCol": 7, @@ -1091,7 +1091,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1178,189 +1178,189 @@ "index": 0, "isInternal": false, "x": 339.781, - "y": 106.70125853377894 + "y": 106.70126 }, { "body": null, "index": 1, "isInternal": false, "x": 338.05, - "y": 113.72325853377893 + "y": 113.72326 }, { "body": null, "index": 2, "isInternal": false, "x": 334.69, - "y": 120.12725853377896 + "y": 120.12726 }, { "body": null, "index": 3, "isInternal": false, "x": 329.894, - "y": 125.54025853377894 + "y": 125.54026 }, { "body": null, "index": 4, "isInternal": false, "x": 323.942, - "y": 129.64925853377892 + "y": 129.64926 }, { "body": null, "index": 5, "isInternal": false, "x": 317.179, - "y": 132.21325853377894 + "y": 132.21326 }, { "body": null, "index": 6, "isInternal": false, "x": 310, - "y": 133.08525853377893 + "y": 133.08526 }, { "body": null, "index": 7, "isInternal": false, "x": 302.821, - "y": 132.21325853377894 + "y": 132.21326 }, { "body": null, "index": 8, "isInternal": false, "x": 296.058, - "y": 129.64925853377892 + "y": 129.64926 }, { "body": null, "index": 9, "isInternal": false, "x": 290.106, - "y": 125.54025853377894 + "y": 125.54026 }, { "body": null, "index": 10, "isInternal": false, "x": 285.31, - "y": 120.12725853377896 + "y": 120.12726 }, { "body": null, "index": 11, "isInternal": false, "x": 281.95, - "y": 113.72325853377893 + "y": 113.72326 }, { "body": null, "index": 12, "isInternal": false, "x": 280.219, - "y": 106.70125853377894 + "y": 106.70126 }, { "body": null, "index": 13, "isInternal": false, "x": 280.219, - "y": 99.46925853377894 + "y": 99.46926 }, { "body": null, "index": 14, "isInternal": false, "x": 281.95, - "y": 92.44725853377892 + "y": 92.44726 }, { "body": null, "index": 15, "isInternal": false, "x": 285.31, - "y": 86.04325853377892 + "y": 86.04326 }, { "body": null, "index": 16, "isInternal": false, "x": 290.106, - "y": 80.63025853377894 + "y": 80.63026 }, { "body": null, "index": 17, "isInternal": false, "x": 296.058, - "y": 76.52125853377893 + "y": 76.52126 }, { "body": null, "index": 18, "isInternal": false, "x": 302.821, - "y": 73.95725853377894 + "y": 73.95726 }, { "body": null, "index": 19, "isInternal": false, "x": 310, - "y": 73.08525853377894 + "y": 73.08526 }, { "body": null, "index": 20, "isInternal": false, "x": 317.179, - "y": 73.95725853377894 + "y": 73.95726 }, { "body": null, "index": 21, "isInternal": false, "x": 323.942, - "y": 76.52125853377893 + "y": 76.52126 }, { "body": null, "index": 22, "isInternal": false, "x": 329.894, - "y": 80.63025853377894 + "y": 80.63026 }, { "body": null, "index": 23, "isInternal": false, "x": 334.69, - "y": 86.04325853377892 + "y": 86.04326 }, { "body": null, "index": 24, "isInternal": false, "x": 338.05, - "y": 92.44725853377892 + "y": 92.44726 }, { "body": null, "index": 25, "isInternal": false, "x": 339.781, - "y": 99.46925853377894 + "y": 99.46926 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 146 }, @@ -1382,13 +1382,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 4991.137790304929, - "inverseInertia": 0.0002003551178135088, - "inverseMass": 0.35714487705224035, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -1410,7 +1410,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1464,52 +1464,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1525,11 +1525,11 @@ }, { "x": 429.781, - "y": 135.99252924881458 + "y": 135.99253 }, { "x": 370.219, - "y": 73.08525853377894 + "y": 73.08526 }, { "category": 1, @@ -1547,15 +1547,15 @@ }, { "x": 400, - "y": 103.08525853377893 + "y": 103.08526 }, { "x": 0, - "y": 0.8523115466493796 + "y": 0.85231 }, { "x": 400, - "y": 100.17798781874328 + "y": 100.17799 }, { "endCol": 8, @@ -1579,7 +1579,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1666,189 +1666,189 @@ "index": 0, "isInternal": false, "x": 429.781, - "y": 106.70125853377894 + "y": 106.70126 }, { "body": null, "index": 1, "isInternal": false, "x": 428.05, - "y": 113.72325853377893 + "y": 113.72326 }, { "body": null, "index": 2, "isInternal": false, "x": 424.69, - "y": 120.12725853377896 + "y": 120.12726 }, { "body": null, "index": 3, "isInternal": false, "x": 419.894, - "y": 125.54025853377894 + "y": 125.54026 }, { "body": null, "index": 4, "isInternal": false, "x": 413.942, - "y": 129.64925853377892 + "y": 129.64926 }, { "body": null, "index": 5, "isInternal": false, "x": 407.179, - "y": 132.21325853377894 + "y": 132.21326 }, { "body": null, "index": 6, "isInternal": false, "x": 400, - "y": 133.08525853377893 + "y": 133.08526 }, { "body": null, "index": 7, "isInternal": false, "x": 392.821, - "y": 132.21325853377894 + "y": 132.21326 }, { "body": null, "index": 8, "isInternal": false, "x": 386.058, - "y": 129.64925853377892 + "y": 129.64926 }, { "body": null, "index": 9, "isInternal": false, "x": 380.106, - "y": 125.54025853377894 + "y": 125.54026 }, { "body": null, "index": 10, "isInternal": false, "x": 375.31, - "y": 120.12725853377896 + "y": 120.12726 }, { "body": null, "index": 11, "isInternal": false, "x": 371.95, - "y": 113.72325853377893 + "y": 113.72326 }, { "body": null, "index": 12, "isInternal": false, "x": 370.219, - "y": 106.70125853377894 + "y": 106.70126 }, { "body": null, "index": 13, "isInternal": false, "x": 370.219, - "y": 99.46925853377894 + "y": 99.46926 }, { "body": null, "index": 14, "isInternal": false, "x": 371.95, - "y": 92.44725853377892 + "y": 92.44726 }, { "body": null, "index": 15, "isInternal": false, "x": 375.31, - "y": 86.04325853377892 + "y": 86.04326 }, { "body": null, "index": 16, "isInternal": false, "x": 380.106, - "y": 80.63025853377894 + "y": 80.63026 }, { "body": null, "index": 17, "isInternal": false, "x": 386.058, - "y": 76.52125853377893 + "y": 76.52126 }, { "body": null, "index": 18, "isInternal": false, "x": 392.821, - "y": 73.95725853377894 + "y": 73.95726 }, { "body": null, "index": 19, "isInternal": false, "x": 400, - "y": 73.08525853377894 + "y": 73.08526 }, { "body": null, "index": 20, "isInternal": false, "x": 407.179, - "y": 73.95725853377894 + "y": 73.95726 }, { "body": null, "index": 21, "isInternal": false, "x": 413.942, - "y": 76.52125853377893 + "y": 76.52126 }, { "body": null, "index": 22, "isInternal": false, "x": 419.894, - "y": 80.63025853377894 + "y": 80.63026 }, { "body": null, "index": 23, "isInternal": false, "x": 424.69, - "y": 86.04325853377892 + "y": 86.04326 }, { "body": null, "index": 24, "isInternal": false, "x": 428.05, - "y": 92.44725853377892 + "y": 92.44726 }, { "body": null, "index": 25, "isInternal": false, "x": 429.781, - "y": 99.46925853377894 + "y": 99.46926 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 201 }, @@ -1870,13 +1870,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 4991.137790304929, - "inverseInertia": 0.0002003551178135088, - "inverseMass": 0.35714487705224035, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -1898,7 +1898,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1952,52 +1952,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -2013,11 +2013,11 @@ }, { "x": 509.781, - "y": 135.99252924881458 + "y": 135.99253 }, { "x": 450.219, - "y": 73.08525853377894 + "y": 73.08526 }, { "category": 1, @@ -2035,15 +2035,15 @@ }, { "x": 480, - "y": 103.08525853377893 + "y": 103.08526 }, { "x": 0, - "y": 0.8523115466493796 + "y": 0.85231 }, { "x": 480, - "y": 100.17798781874328 + "y": 100.17799 }, { "endCol": 10, @@ -2067,7 +2067,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2154,182 +2154,182 @@ "index": 0, "isInternal": false, "x": 509.781, - "y": 106.70125853377894 + "y": 106.70126 }, { "body": null, "index": 1, "isInternal": false, "x": 508.05, - "y": 113.72325853377893 + "y": 113.72326 }, { "body": null, "index": 2, "isInternal": false, "x": 504.69, - "y": 120.12725853377896 + "y": 120.12726 }, { "body": null, "index": 3, "isInternal": false, "x": 499.894, - "y": 125.54025853377894 + "y": 125.54026 }, { "body": null, "index": 4, "isInternal": false, "x": 493.942, - "y": 129.64925853377892 + "y": 129.64926 }, { "body": null, "index": 5, "isInternal": false, "x": 487.179, - "y": 132.21325853377894 + "y": 132.21326 }, { "body": null, "index": 6, "isInternal": false, "x": 480, - "y": 133.08525853377893 + "y": 133.08526 }, { "body": null, "index": 7, "isInternal": false, "x": 472.821, - "y": 132.21325853377894 + "y": 132.21326 }, { "body": null, "index": 8, "isInternal": false, "x": 466.058, - "y": 129.64925853377892 + "y": 129.64926 }, { "body": null, "index": 9, "isInternal": false, "x": 460.106, - "y": 125.54025853377894 + "y": 125.54026 }, { "body": null, "index": 10, "isInternal": false, "x": 455.31, - "y": 120.12725853377896 + "y": 120.12726 }, { "body": null, "index": 11, "isInternal": false, "x": 451.95, - "y": 113.72325853377893 + "y": 113.72326 }, { "body": null, "index": 12, "isInternal": false, "x": 450.219, - "y": 106.70125853377894 + "y": 106.70126 }, { "body": null, "index": 13, "isInternal": false, "x": 450.219, - "y": 99.46925853377894 + "y": 99.46926 }, { "body": null, "index": 14, "isInternal": false, "x": 451.95, - "y": 92.44725853377892 + "y": 92.44726 }, { "body": null, "index": 15, "isInternal": false, "x": 455.31, - "y": 86.04325853377892 + "y": 86.04326 }, { "body": null, "index": 16, "isInternal": false, "x": 460.106, - "y": 80.63025853377894 + "y": 80.63026 }, { "body": null, "index": 17, "isInternal": false, "x": 466.058, - "y": 76.52125853377893 + "y": 76.52126 }, { "body": null, "index": 18, "isInternal": false, "x": 472.821, - "y": 73.95725853377894 + "y": 73.95726 }, { "body": null, "index": 19, "isInternal": false, "x": 480, - "y": 73.08525853377894 + "y": 73.08526 }, { "body": null, "index": 20, "isInternal": false, "x": 487.179, - "y": 73.95725853377894 + "y": 73.95726 }, { "body": null, "index": 21, "isInternal": false, "x": 493.942, - "y": 76.52125853377893 + "y": 76.52126 }, { "body": null, "index": 22, "isInternal": false, "x": 499.894, - "y": 80.63025853377894 + "y": 80.63026 }, { "body": null, "index": 23, "isInternal": false, "x": 504.69, - "y": 86.04325853377892 + "y": 86.04326 }, { "body": null, "index": 24, "isInternal": false, "x": 508.05, - "y": 92.44725853377892 + "y": 92.44726 }, { "body": null, "index": 25, "isInternal": false, "x": 509.781, - "y": 99.46925853377894 + "y": 99.46926 }, { "max": { @@ -2525,7 +2525,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 262 }, @@ -2547,13 +2547,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2575,7 +2575,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2620,40 +2620,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -2668,12 +2668,12 @@ } }, { - "x": 314.50800000000004, - "y": 207.24375476702596 + "x": 314.508, + "y": 207.24375 }, { "x": 275, - "y": 167.73575476702598 + "y": 167.73575 }, { "category": 2, @@ -2691,7 +2691,7 @@ }, { "x": 294.754, - "y": 187.48975476702597 + "y": 187.48975 }, { "x": 0, @@ -2699,7 +2699,7 @@ }, { "x": 294.754, - "y": 184.5824840519903 + "y": 184.58248 }, { "endCol": 6, @@ -2723,7 +2723,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2791,148 +2791,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 190.61875476702596 + "x": 314.508, + "y": 190.61875 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 196.56975476702598 + "y": 196.56975 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 201.63175476702597 + "y": 201.63175 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 205.30975476702596 + "y": 205.30975 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 207.24375476702596 + "x": 297.883, + "y": 207.24375 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 207.24375476702596 + "y": 207.24375 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 205.30975476702596 + "x": 285.674, + "y": 205.30975 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 201.63175476702597 + "y": 201.63175 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 196.56975476702598 + "y": 196.56975 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 190.61875476702596 + "y": 190.61875 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 184.36075476702598 + "y": 184.36075 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 178.40975476702596 + "y": 178.40975 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 173.34775476702598 + "y": 173.34775 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 169.66975476702598 + "x": 285.674, + "y": 169.66975 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 167.73575476702598 + "y": 167.73575 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 167.73575476702598 + "x": 297.883, + "y": 167.73575 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 169.66975476702598 + "y": 169.66975 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 173.34775476702598 + "y": 173.34775 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 178.40975476702596 + "y": 178.40975 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 184.36075476702598 + "x": 314.508, + "y": 184.36075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 308 }, @@ -2954,13 +2954,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -2982,7 +2982,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3027,40 +3027,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3075,12 +3075,12 @@ } }, { - "x": 364.0160000000001, - "y": 207.24375476702596 + "x": 364.016, + "y": 207.24375 }, { - "x": 324.50800000000004, - "y": 167.73575476702598 + "x": 324.508, + "y": 167.73575 }, { "category": 2, @@ -3097,16 +3097,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 187.48975476702597 + "x": 344.262, + "y": 187.48975 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 184.5824840519903 + "x": 344.262, + "y": 184.58248 }, { "endCol": 7, @@ -3130,7 +3130,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3198,148 +3198,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 190.61875476702596 + "x": 364.016, + "y": 190.61875 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 196.56975476702598 + "x": 362.082, + "y": 196.56975 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 201.63175476702597 + "x": 358.404, + "y": 201.63175 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 205.30975476702596 + "x": 353.342, + "y": 205.30975 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 207.24375476702596 + "x": 347.391, + "y": 207.24375 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 207.24375476702596 + "x": 341.133, + "y": 207.24375 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 205.30975476702596 + "x": 335.182, + "y": 205.30975 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 201.63175476702597 + "x": 330.12, + "y": 201.63175 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 196.56975476702598 + "x": 326.442, + "y": 196.56975 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 190.61875476702596 + "x": 324.508, + "y": 190.61875 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 184.36075476702598 + "x": 324.508, + "y": 184.36075 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 178.40975476702596 + "x": 326.442, + "y": 178.40975 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 173.34775476702598 + "x": 330.12, + "y": 173.34775 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 169.66975476702598 + "x": 335.182, + "y": 169.66975 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 167.73575476702598 + "x": 341.133, + "y": 167.73575 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 167.73575476702598 + "x": 347.391, + "y": 167.73575 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 169.66975476702598 + "x": 353.342, + "y": 169.66975 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 173.34775476702598 + "x": 358.404, + "y": 173.34775 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 178.40975476702596 + "x": 362.082, + "y": 178.40975 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 184.36075476702598 + "x": 364.016, + "y": 184.36075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 354 }, @@ -3361,13 +3361,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3389,7 +3389,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3434,40 +3434,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3482,12 +3482,12 @@ } }, { - "x": 413.5240000000001, - "y": 207.24375476702596 + "x": 413.524, + "y": 207.24375 }, { - "x": 374.0160000000001, - "y": 167.73575476702598 + "x": 374.016, + "y": 167.73575 }, { "category": 2, @@ -3504,16 +3504,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 187.48975476702597 + "x": 393.77, + "y": 187.48975 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 184.5824840519903 + "x": 393.77, + "y": 184.58248 }, { "endCol": 8, @@ -3537,7 +3537,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3605,148 +3605,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 190.61875476702596 + "x": 413.524, + "y": 190.61875 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 196.56975476702598 + "x": 411.59, + "y": 196.56975 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 201.63175476702597 + "x": 407.912, + "y": 201.63175 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 205.30975476702596 + "x": 402.85, + "y": 205.30975 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 207.24375476702596 + "x": 396.899, + "y": 207.24375 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 207.24375476702596 + "x": 390.641, + "y": 207.24375 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 205.30975476702596 + "x": 384.69, + "y": 205.30975 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 201.63175476702597 + "x": 379.628, + "y": 201.63175 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 196.56975476702598 + "x": 375.95, + "y": 196.56975 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 190.61875476702596 + "x": 374.016, + "y": 190.61875 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 184.36075476702598 + "x": 374.016, + "y": 184.36075 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 178.40975476702596 + "x": 375.95, + "y": 178.40975 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 173.34775476702598 + "x": 379.628, + "y": 173.34775 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 169.66975476702598 + "x": 384.69, + "y": 169.66975 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 167.73575476702598 + "x": 390.641, + "y": 167.73575 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 167.73575476702598 + "x": 396.899, + "y": 167.73575 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 169.66975476702598 + "x": 402.85, + "y": 169.66975 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 173.34775476702598 + "x": 407.912, + "y": 173.34775 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 178.40975476702596 + "x": 411.59, + "y": 178.40975 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 184.36075476702598 + "x": 413.524, + "y": 184.36075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 400 }, @@ -3768,13 +3768,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3796,7 +3796,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3841,40 +3841,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3889,12 +3889,12 @@ } }, { - "x": 463.03200000000015, - "y": 207.24375476702596 + "x": 463.032, + "y": 207.24375 }, { - "x": 423.5240000000001, - "y": 167.73575476702598 + "x": 423.524, + "y": 167.73575 }, { "category": 2, @@ -3911,16 +3911,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 187.48975476702597 + "x": 443.278, + "y": 187.48975 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 184.5824840519903 + "x": 443.278, + "y": 184.58248 }, { "endCol": 9, @@ -3944,7 +3944,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4012,148 +4012,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 190.61875476702596 + "x": 463.032, + "y": 190.61875 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 196.56975476702598 + "x": 461.098, + "y": 196.56975 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 201.63175476702597 + "x": 457.42, + "y": 201.63175 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 205.30975476702596 + "x": 452.358, + "y": 205.30975 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 207.24375476702596 + "x": 446.407, + "y": 207.24375 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 207.24375476702596 + "x": 440.149, + "y": 207.24375 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 205.30975476702596 + "x": 434.198, + "y": 205.30975 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 201.63175476702597 + "x": 429.136, + "y": 201.63175 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 196.56975476702598 + "x": 425.458, + "y": 196.56975 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 190.61875476702596 + "x": 423.524, + "y": 190.61875 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 184.36075476702598 + "x": 423.524, + "y": 184.36075 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 178.40975476702596 + "x": 425.458, + "y": 178.40975 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 173.34775476702598 + "x": 429.136, + "y": 173.34775 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 169.66975476702598 + "x": 434.198, + "y": 169.66975 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 167.73575476702598 + "x": 440.149, + "y": 167.73575 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 167.73575476702598 + "x": 446.407, + "y": 167.73575 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 169.66975476702598 + "x": 452.358, + "y": 169.66975 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 173.34775476702598 + "x": 457.42, + "y": 173.34775 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 178.40975476702596 + "x": 461.098, + "y": 178.40975 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 184.36075476702598 + "x": 463.032, + "y": 184.36075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 446 }, @@ -4175,13 +4175,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4203,7 +4203,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4248,40 +4248,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4296,12 +4296,12 @@ } }, { - "x": 512.5400000000002, - "y": 207.24375476702596 + "x": 512.54, + "y": 207.24375 }, { - "x": 473.03200000000015, - "y": 167.73575476702598 + "x": 473.032, + "y": 167.73575 }, { "category": 2, @@ -4318,16 +4318,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 187.48975476702597 + "x": 492.786, + "y": 187.48975 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 184.5824840519903 + "x": 492.786, + "y": 184.58248 }, { "endCol": 10, @@ -4351,7 +4351,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4419,148 +4419,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 190.61875476702596 + "x": 512.54, + "y": 190.61875 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 196.56975476702598 + "x": 510.606, + "y": 196.56975 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 201.63175476702597 + "x": 506.928, + "y": 201.63175 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 205.30975476702596 + "x": 501.866, + "y": 205.30975 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 207.24375476702596 + "x": 495.915, + "y": 207.24375 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 207.24375476702596 + "x": 489.657, + "y": 207.24375 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 205.30975476702596 + "x": 483.706, + "y": 205.30975 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 201.63175476702597 + "x": 478.644, + "y": 201.63175 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 196.56975476702598 + "x": 474.966, + "y": 196.56975 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 190.61875476702596 + "x": 473.032, + "y": 190.61875 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 184.36075476702598 + "x": 473.032, + "y": 184.36075 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 178.40975476702596 + "x": 474.966, + "y": 178.40975 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 173.34775476702598 + "x": 478.644, + "y": 173.34775 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 169.66975476702598 + "x": 483.706, + "y": 169.66975 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 167.73575476702598 + "x": 489.657, + "y": 167.73575 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 167.73575476702598 + "x": 495.915, + "y": 167.73575 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 169.66975476702598 + "x": 501.866, + "y": 169.66975 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 173.34775476702598 + "x": 506.928, + "y": 173.34775 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 178.40975476702596 + "x": 510.606, + "y": 178.40975 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 184.36075476702598 + "x": 512.54, + "y": 184.36075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 492 }, @@ -4582,13 +4582,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4610,7 +4610,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4655,40 +4655,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4703,12 +4703,12 @@ } }, { - "x": 314.50800000000004, - "y": 256.75175476702594 + "x": 314.508, + "y": 256.75175 }, { "x": 275, - "y": 217.24375476702596 + "y": 217.24375 }, { "category": 2, @@ -4726,7 +4726,7 @@ }, { "x": 294.754, - "y": 236.99775476702595 + "y": 236.99775 }, { "x": 0, @@ -4734,7 +4734,7 @@ }, { "x": 294.754, - "y": 234.09048405199027 + "y": 234.09048 }, { "endCol": 6, @@ -4758,7 +4758,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4826,148 +4826,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 240.12675476702594 + "x": 314.508, + "y": 240.12675 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 246.07775476702597 + "y": 246.07775 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 251.13975476702595 + "y": 251.13975 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 254.81775476702595 + "y": 254.81775 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 256.75175476702594 + "x": 297.883, + "y": 256.75175 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 256.75175476702594 + "y": 256.75175 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 254.81775476702595 + "x": 285.674, + "y": 254.81775 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 251.13975476702595 + "y": 251.13975 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 246.07775476702597 + "y": 246.07775 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 240.12675476702594 + "y": 240.12675 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 233.86875476702596 + "y": 233.86875 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 227.91775476702594 + "y": 227.91775 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 222.85575476702596 + "y": 222.85575 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 219.17775476702596 + "x": 285.674, + "y": 219.17775 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 217.24375476702596 + "y": 217.24375 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 217.24375476702596 + "x": 297.883, + "y": 217.24375 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 219.17775476702596 + "y": 219.17775 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 222.85575476702596 + "y": 222.85575 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 227.91775476702594 + "y": 227.91775 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 233.86875476702596 + "x": 314.508, + "y": 233.86875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 538 }, @@ -4989,13 +4989,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5017,7 +5017,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5062,40 +5062,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5110,12 +5110,12 @@ } }, { - "x": 364.0160000000001, - "y": 256.75175476702594 + "x": 364.016, + "y": 256.75175 }, { - "x": 324.50800000000004, - "y": 217.24375476702596 + "x": 324.508, + "y": 217.24375 }, { "category": 2, @@ -5132,16 +5132,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 236.99775476702595 + "x": 344.262, + "y": 236.99775 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 234.09048405199027 + "x": 344.262, + "y": 234.09048 }, { "endCol": 7, @@ -5165,7 +5165,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5233,148 +5233,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 240.12675476702594 + "x": 364.016, + "y": 240.12675 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 246.07775476702597 + "x": 362.082, + "y": 246.07775 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 251.13975476702595 + "x": 358.404, + "y": 251.13975 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 254.81775476702595 + "x": 353.342, + "y": 254.81775 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 256.75175476702594 + "x": 347.391, + "y": 256.75175 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 256.75175476702594 + "x": 341.133, + "y": 256.75175 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 254.81775476702595 + "x": 335.182, + "y": 254.81775 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 251.13975476702595 + "x": 330.12, + "y": 251.13975 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 246.07775476702597 + "x": 326.442, + "y": 246.07775 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 240.12675476702594 + "x": 324.508, + "y": 240.12675 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 233.86875476702596 + "x": 324.508, + "y": 233.86875 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 227.91775476702594 + "x": 326.442, + "y": 227.91775 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 222.85575476702596 + "x": 330.12, + "y": 222.85575 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 219.17775476702596 + "x": 335.182, + "y": 219.17775 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 217.24375476702596 + "x": 341.133, + "y": 217.24375 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 217.24375476702596 + "x": 347.391, + "y": 217.24375 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 219.17775476702596 + "x": 353.342, + "y": 219.17775 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 222.85575476702596 + "x": 358.404, + "y": 222.85575 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 227.91775476702594 + "x": 362.082, + "y": 227.91775 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 233.86875476702596 + "x": 364.016, + "y": 233.86875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 584 }, @@ -5396,13 +5396,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5424,7 +5424,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5469,40 +5469,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5517,12 +5517,12 @@ } }, { - "x": 413.5240000000001, - "y": 256.75175476702594 + "x": 413.524, + "y": 256.75175 }, { - "x": 374.0160000000001, - "y": 217.24375476702596 + "x": 374.016, + "y": 217.24375 }, { "category": 2, @@ -5539,16 +5539,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 236.99775476702595 + "x": 393.77, + "y": 236.99775 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 234.09048405199027 + "x": 393.77, + "y": 234.09048 }, { "endCol": 8, @@ -5572,7 +5572,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5640,148 +5640,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 240.12675476702594 + "x": 413.524, + "y": 240.12675 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 246.07775476702597 + "x": 411.59, + "y": 246.07775 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 251.13975476702595 + "x": 407.912, + "y": 251.13975 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 254.81775476702595 + "x": 402.85, + "y": 254.81775 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 256.75175476702594 + "x": 396.899, + "y": 256.75175 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 256.75175476702594 + "x": 390.641, + "y": 256.75175 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 254.81775476702595 + "x": 384.69, + "y": 254.81775 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 251.13975476702595 + "x": 379.628, + "y": 251.13975 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 246.07775476702597 + "x": 375.95, + "y": 246.07775 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 240.12675476702594 + "x": 374.016, + "y": 240.12675 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 233.86875476702596 + "x": 374.016, + "y": 233.86875 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 227.91775476702594 + "x": 375.95, + "y": 227.91775 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 222.85575476702596 + "x": 379.628, + "y": 222.85575 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 219.17775476702596 + "x": 384.69, + "y": 219.17775 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 217.24375476702596 + "x": 390.641, + "y": 217.24375 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 217.24375476702596 + "x": 396.899, + "y": 217.24375 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 219.17775476702596 + "x": 402.85, + "y": 219.17775 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 222.85575476702596 + "x": 407.912, + "y": 222.85575 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 227.91775476702594 + "x": 411.59, + "y": 227.91775 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 233.86875476702596 + "x": 413.524, + "y": 233.86875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 630 }, @@ -5803,13 +5803,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5831,7 +5831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5876,40 +5876,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5924,12 +5924,12 @@ } }, { - "x": 463.03200000000015, - "y": 256.75175476702594 + "x": 463.032, + "y": 256.75175 }, { - "x": 423.5240000000001, - "y": 217.24375476702596 + "x": 423.524, + "y": 217.24375 }, { "category": 2, @@ -5946,16 +5946,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 236.99775476702595 + "x": 443.278, + "y": 236.99775 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 234.09048405199027 + "x": 443.278, + "y": 234.09048 }, { "endCol": 9, @@ -5979,7 +5979,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6047,148 +6047,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 240.12675476702594 + "x": 463.032, + "y": 240.12675 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 246.07775476702597 + "x": 461.098, + "y": 246.07775 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 251.13975476702595 + "x": 457.42, + "y": 251.13975 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 254.81775476702595 + "x": 452.358, + "y": 254.81775 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 256.75175476702594 + "x": 446.407, + "y": 256.75175 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 256.75175476702594 + "x": 440.149, + "y": 256.75175 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 254.81775476702595 + "x": 434.198, + "y": 254.81775 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 251.13975476702595 + "x": 429.136, + "y": 251.13975 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 246.07775476702597 + "x": 425.458, + "y": 246.07775 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 240.12675476702594 + "x": 423.524, + "y": 240.12675 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 233.86875476702596 + "x": 423.524, + "y": 233.86875 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 227.91775476702594 + "x": 425.458, + "y": 227.91775 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 222.85575476702596 + "x": 429.136, + "y": 222.85575 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 219.17775476702596 + "x": 434.198, + "y": 219.17775 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 217.24375476702596 + "x": 440.149, + "y": 217.24375 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 217.24375476702596 + "x": 446.407, + "y": 217.24375 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 219.17775476702596 + "x": 452.358, + "y": 219.17775 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 222.85575476702596 + "x": 457.42, + "y": 222.85575 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 227.91775476702594 + "x": 461.098, + "y": 227.91775 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 233.86875476702596 + "x": 463.032, + "y": 233.86875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 676 }, @@ -6210,13 +6210,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6238,7 +6238,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6283,40 +6283,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6331,12 +6331,12 @@ } }, { - "x": 512.5400000000002, - "y": 256.75175476702594 + "x": 512.54, + "y": 256.75175 }, { - "x": 473.03200000000015, - "y": 217.24375476702596 + "x": 473.032, + "y": 217.24375 }, { "category": 2, @@ -6353,16 +6353,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 236.99775476702595 + "x": 492.786, + "y": 236.99775 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 234.09048405199027 + "x": 492.786, + "y": 234.09048 }, { "endCol": 10, @@ -6386,7 +6386,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6454,148 +6454,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 240.12675476702594 + "x": 512.54, + "y": 240.12675 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 246.07775476702597 + "x": 510.606, + "y": 246.07775 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 251.13975476702595 + "x": 506.928, + "y": 251.13975 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 254.81775476702595 + "x": 501.866, + "y": 254.81775 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 256.75175476702594 + "x": 495.915, + "y": 256.75175 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 256.75175476702594 + "x": 489.657, + "y": 256.75175 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 254.81775476702595 + "x": 483.706, + "y": 254.81775 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 251.13975476702595 + "x": 478.644, + "y": 251.13975 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 246.07775476702597 + "x": 474.966, + "y": 246.07775 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 240.12675476702594 + "x": 473.032, + "y": 240.12675 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 233.86875476702596 + "x": 473.032, + "y": 233.86875 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 227.91775476702594 + "x": 474.966, + "y": 227.91775 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 222.85575476702596 + "x": 478.644, + "y": 222.85575 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 219.17775476702596 + "x": 483.706, + "y": 219.17775 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 217.24375476702596 + "x": 489.657, + "y": 217.24375 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 217.24375476702596 + "x": 495.915, + "y": 217.24375 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 219.17775476702596 + "x": 501.866, + "y": 219.17775 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 222.85575476702596 + "x": 506.928, + "y": 222.85575 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 227.91775476702594 + "x": 510.606, + "y": 227.91775 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 233.86875476702596 + "x": 512.54, + "y": 233.86875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 722 }, @@ -6617,13 +6617,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6645,7 +6645,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6690,40 +6690,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -6738,12 +6738,12 @@ } }, { - "x": 314.50800000000004, - "y": 306.25975476702496 + "x": 314.508, + "y": 306.25975 }, { "x": 275, - "y": 266.7517547670251 + "y": 266.75175 }, { "category": 2, @@ -6761,7 +6761,7 @@ }, { "x": 294.754, - "y": 286.50575476702494 + "y": 286.50575 }, { "x": 0, @@ -6769,7 +6769,7 @@ }, { "x": 294.754, - "y": 283.5984840519894 + "y": 283.59848 }, { "endCol": 6, @@ -6793,7 +6793,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6861,148 +6861,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 289.63475476702496 + "x": 314.508, + "y": 289.63475 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 295.5857547670249 + "y": 295.58575 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 300.64775476702494 + "y": 300.64775 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 304.32575476702493 + "y": 304.32575 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 306.25975476702496 + "x": 297.883, + "y": 306.25975 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 306.25975476702496 + "y": 306.25975 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 304.32575476702493 + "x": 285.674, + "y": 304.32575 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 300.64775476702494 + "y": 300.64775 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 295.5857547670249 + "y": 295.58575 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 289.63475476702496 + "y": 289.63475 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 283.3767547670249 + "y": 283.37675 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 277.4257547670249 + "y": 277.42575 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 272.363754767025 + "y": 272.36375 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 268.68575476702506 + "x": 285.674, + "y": 268.68575 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 266.7517547670251 + "y": 266.75175 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 266.7517547670251 + "x": 297.883, + "y": 266.75175 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 268.68575476702506 + "y": 268.68575 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 272.363754767025 + "y": 272.36375 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 277.4257547670249 + "y": 277.42575 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 283.3767547670249 + "x": 314.508, + "y": 283.37675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 768 }, @@ -7024,13 +7024,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7052,7 +7052,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7097,40 +7097,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7145,12 +7145,12 @@ } }, { - "x": 364.0160000000001, - "y": 306.25975476702496 + "x": 364.016, + "y": 306.25975 }, { - "x": 324.50800000000004, - "y": 266.7517547670251 + "x": 324.508, + "y": 266.75175 }, { "category": 2, @@ -7167,16 +7167,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 286.50575476702494 + "x": 344.262, + "y": 286.50575 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 283.5984840519894 + "x": 344.262, + "y": 283.59848 }, { "endCol": 7, @@ -7200,7 +7200,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7268,148 +7268,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 289.63475476702496 + "x": 364.016, + "y": 289.63475 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 295.5857547670249 + "x": 362.082, + "y": 295.58575 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 300.64775476702494 + "x": 358.404, + "y": 300.64775 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 304.32575476702493 + "x": 353.342, + "y": 304.32575 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 306.25975476702496 + "x": 347.391, + "y": 306.25975 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 306.25975476702496 + "x": 341.133, + "y": 306.25975 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 304.32575476702493 + "x": 335.182, + "y": 304.32575 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 300.64775476702494 + "x": 330.12, + "y": 300.64775 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 295.5857547670249 + "x": 326.442, + "y": 295.58575 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 289.63475476702496 + "x": 324.508, + "y": 289.63475 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 283.3767547670249 + "x": 324.508, + "y": 283.37675 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 277.4257547670249 + "x": 326.442, + "y": 277.42575 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 272.363754767025 + "x": 330.12, + "y": 272.36375 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 268.68575476702506 + "x": 335.182, + "y": 268.68575 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 266.7517547670251 + "x": 341.133, + "y": 266.75175 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 266.7517547670251 + "x": 347.391, + "y": 266.75175 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 268.68575476702506 + "x": 353.342, + "y": 268.68575 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 272.363754767025 + "x": 358.404, + "y": 272.36375 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 277.4257547670249 + "x": 362.082, + "y": 277.42575 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 283.3767547670249 + "x": 364.016, + "y": 283.37675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 814 }, @@ -7431,13 +7431,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7459,7 +7459,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7504,40 +7504,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7552,12 +7552,12 @@ } }, { - "x": 413.5240000000001, - "y": 306.25975476702496 + "x": 413.524, + "y": 306.25975 }, { - "x": 374.0160000000001, - "y": 266.7517547670251 + "x": 374.016, + "y": 266.75175 }, { "category": 2, @@ -7574,16 +7574,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 286.50575476702494 + "x": 393.77, + "y": 286.50575 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 283.5984840519894 + "x": 393.77, + "y": 283.59848 }, { "endCol": 8, @@ -7607,7 +7607,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7675,148 +7675,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 289.63475476702496 + "x": 413.524, + "y": 289.63475 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 295.5857547670249 + "x": 411.59, + "y": 295.58575 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 300.64775476702494 + "x": 407.912, + "y": 300.64775 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 304.32575476702493 + "x": 402.85, + "y": 304.32575 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 306.25975476702496 + "x": 396.899, + "y": 306.25975 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 306.25975476702496 + "x": 390.641, + "y": 306.25975 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 304.32575476702493 + "x": 384.69, + "y": 304.32575 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 300.64775476702494 + "x": 379.628, + "y": 300.64775 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 295.5857547670249 + "x": 375.95, + "y": 295.58575 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 289.63475476702496 + "x": 374.016, + "y": 289.63475 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 283.3767547670249 + "x": 374.016, + "y": 283.37675 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 277.4257547670249 + "x": 375.95, + "y": 277.42575 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 272.363754767025 + "x": 379.628, + "y": 272.36375 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 268.68575476702506 + "x": 384.69, + "y": 268.68575 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 266.7517547670251 + "x": 390.641, + "y": 266.75175 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 266.7517547670251 + "x": 396.899, + "y": 266.75175 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 268.68575476702506 + "x": 402.85, + "y": 268.68575 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 272.363754767025 + "x": 407.912, + "y": 272.36375 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 277.4257547670249 + "x": 411.59, + "y": 277.42575 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 283.3767547670249 + "x": 413.524, + "y": 283.37675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 860 }, @@ -7838,13 +7838,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -7866,7 +7866,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7911,40 +7911,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -7959,12 +7959,12 @@ } }, { - "x": 463.03200000000015, - "y": 306.25975476702496 + "x": 463.032, + "y": 306.25975 }, { - "x": 423.5240000000001, - "y": 266.7517547670251 + "x": 423.524, + "y": 266.75175 }, { "category": 2, @@ -7981,16 +7981,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 286.50575476702494 + "x": 443.278, + "y": 286.50575 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 283.5984840519894 + "x": 443.278, + "y": 283.59848 }, { "endCol": 9, @@ -8014,7 +8014,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8082,148 +8082,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 289.63475476702496 + "x": 463.032, + "y": 289.63475 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 295.5857547670249 + "x": 461.098, + "y": 295.58575 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 300.64775476702494 + "x": 457.42, + "y": 300.64775 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 304.32575476702493 + "x": 452.358, + "y": 304.32575 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 306.25975476702496 + "x": 446.407, + "y": 306.25975 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 306.25975476702496 + "x": 440.149, + "y": 306.25975 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 304.32575476702493 + "x": 434.198, + "y": 304.32575 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 300.64775476702494 + "x": 429.136, + "y": 300.64775 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 295.5857547670249 + "x": 425.458, + "y": 295.58575 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 289.63475476702496 + "x": 423.524, + "y": 289.63475 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 283.3767547670249 + "x": 423.524, + "y": 283.37675 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 277.4257547670249 + "x": 425.458, + "y": 277.42575 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 272.363754767025 + "x": 429.136, + "y": 272.36375 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 268.68575476702506 + "x": 434.198, + "y": 268.68575 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 266.7517547670251 + "x": 440.149, + "y": 266.75175 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 266.7517547670251 + "x": 446.407, + "y": 266.75175 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 268.68575476702506 + "x": 452.358, + "y": 268.68575 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 272.363754767025 + "x": 457.42, + "y": 272.36375 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 277.4257547670249 + "x": 461.098, + "y": 277.42575 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 283.3767547670249 + "x": 463.032, + "y": 283.37675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 906 }, @@ -8245,13 +8245,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8273,7 +8273,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8318,40 +8318,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8366,12 +8366,12 @@ } }, { - "x": 512.5400000000002, - "y": 306.25975476702496 + "x": 512.54, + "y": 306.25975 }, { - "x": 473.03200000000015, - "y": 266.7517547670251 + "x": 473.032, + "y": 266.75175 }, { "category": 2, @@ -8388,16 +8388,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 286.50575476702494 + "x": 492.786, + "y": 286.50575 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 283.5984840519894 + "x": 492.786, + "y": 283.59848 }, { "endCol": 10, @@ -8421,7 +8421,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8489,148 +8489,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 289.63475476702496 + "x": 512.54, + "y": 289.63475 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 295.5857547670249 + "x": 510.606, + "y": 295.58575 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 300.64775476702494 + "x": 506.928, + "y": 300.64775 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 304.32575476702493 + "x": 501.866, + "y": 304.32575 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 306.25975476702496 + "x": 495.915, + "y": 306.25975 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 306.25975476702496 + "x": 489.657, + "y": 306.25975 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 304.32575476702493 + "x": 483.706, + "y": 304.32575 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 300.64775476702494 + "x": 478.644, + "y": 300.64775 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 295.5857547670249 + "x": 474.966, + "y": 295.58575 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 289.63475476702496 + "x": 473.032, + "y": 289.63475 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 283.3767547670249 + "x": 473.032, + "y": 283.37675 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 277.4257547670249 + "x": 474.966, + "y": 277.42575 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 272.363754767025 + "x": 478.644, + "y": 272.36375 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 268.68575476702506 + "x": 483.706, + "y": 268.68575 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 266.7517547670251 + "x": 489.657, + "y": 266.75175 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 266.7517547670251 + "x": 495.915, + "y": 266.75175 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 268.68575476702506 + "x": 501.866, + "y": 268.68575 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 272.363754767025 + "x": 506.928, + "y": 272.36375 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 277.4257547670249 + "x": 510.606, + "y": 277.42575 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 283.3767547670249 + "x": 512.54, + "y": 283.37675 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 952 }, @@ -8652,13 +8652,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -8680,7 +8680,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8725,40 +8725,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -8773,12 +8773,12 @@ } }, { - "x": 314.50800000000004, - "y": 355.767754767025 + "x": 314.508, + "y": 355.76775 }, { "x": 275, - "y": 316.25975476702496 + "y": 316.25975 }, { "category": 4, @@ -8796,7 +8796,7 @@ }, { "x": 294.754, - "y": 336.013754767025 + "y": 336.01375 }, { "x": 0, @@ -8804,7 +8804,7 @@ }, { "x": 294.754, - "y": 333.1064840519894 + "y": 333.10648 }, { "endCol": 6, @@ -8828,7 +8828,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8896,148 +8896,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 339.142754767025 + "x": 314.508, + "y": 339.14275 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 345.09375476702496 + "y": 345.09375 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 350.155754767025 + "y": 350.15575 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 353.83375476702497 + "y": 353.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 355.767754767025 + "x": 297.883, + "y": 355.76775 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 355.767754767025 + "y": 355.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 353.83375476702497 + "x": 285.674, + "y": 353.83375 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 350.155754767025 + "y": 350.15575 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 345.09375476702496 + "y": 345.09375 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 339.142754767025 + "y": 339.14275 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 332.88475476702496 + "y": 332.88475 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 326.933754767025 + "y": 326.93375 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 321.871754767025 + "y": 321.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 318.193754767025 + "x": 285.674, + "y": 318.19375 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 316.25975476702496 + "y": 316.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 316.25975476702496 + "x": 297.883, + "y": 316.25975 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 318.193754767025 + "y": 318.19375 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 321.871754767025 + "y": 321.87175 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 326.933754767025 + "y": 326.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 332.88475476702496 + "x": 314.508, + "y": 332.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 998 }, @@ -9059,13 +9059,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9087,7 +9087,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9132,40 +9132,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9180,12 +9180,12 @@ } }, { - "x": 364.0160000000001, - "y": 355.767754767025 + "x": 364.016, + "y": 355.76775 }, { - "x": 324.50800000000004, - "y": 316.25975476702496 + "x": 324.508, + "y": 316.25975 }, { "category": 4, @@ -9202,16 +9202,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 336.013754767025 + "x": 344.262, + "y": 336.01375 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 333.1064840519894 + "x": 344.262, + "y": 333.10648 }, { "endCol": 7, @@ -9235,7 +9235,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9303,148 +9303,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 339.142754767025 + "x": 364.016, + "y": 339.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 345.09375476702496 + "x": 362.082, + "y": 345.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 350.155754767025 + "x": 358.404, + "y": 350.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 353.83375476702497 + "x": 353.342, + "y": 353.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 355.767754767025 + "x": 347.391, + "y": 355.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 355.767754767025 + "x": 341.133, + "y": 355.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 353.83375476702497 + "x": 335.182, + "y": 353.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 350.155754767025 + "x": 330.12, + "y": 350.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 345.09375476702496 + "x": 326.442, + "y": 345.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 339.142754767025 + "x": 324.508, + "y": 339.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 332.88475476702496 + "x": 324.508, + "y": 332.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 326.933754767025 + "x": 326.442, + "y": 326.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 321.871754767025 + "x": 330.12, + "y": 321.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 318.193754767025 + "x": 335.182, + "y": 318.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 316.25975476702496 + "x": 341.133, + "y": 316.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 316.25975476702496 + "x": 347.391, + "y": 316.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 318.193754767025 + "x": 353.342, + "y": 318.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 321.871754767025 + "x": 358.404, + "y": 321.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 326.933754767025 + "x": 362.082, + "y": 326.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 332.88475476702496 + "x": 364.016, + "y": 332.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1044 }, @@ -9466,13 +9466,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9494,7 +9494,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9539,40 +9539,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9587,12 +9587,12 @@ } }, { - "x": 413.5240000000001, - "y": 355.767754767025 + "x": 413.524, + "y": 355.76775 }, { - "x": 374.0160000000001, - "y": 316.25975476702496 + "x": 374.016, + "y": 316.25975 }, { "category": 4, @@ -9609,16 +9609,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 336.013754767025 + "x": 393.77, + "y": 336.01375 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 333.1064840519894 + "x": 393.77, + "y": 333.10648 }, { "endCol": 8, @@ -9642,7 +9642,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9710,148 +9710,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 339.142754767025 + "x": 413.524, + "y": 339.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 345.09375476702496 + "x": 411.59, + "y": 345.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 350.155754767025 + "x": 407.912, + "y": 350.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 353.83375476702497 + "x": 402.85, + "y": 353.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 355.767754767025 + "x": 396.899, + "y": 355.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 355.767754767025 + "x": 390.641, + "y": 355.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 353.83375476702497 + "x": 384.69, + "y": 353.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 350.155754767025 + "x": 379.628, + "y": 350.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 345.09375476702496 + "x": 375.95, + "y": 345.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 339.142754767025 + "x": 374.016, + "y": 339.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 332.88475476702496 + "x": 374.016, + "y": 332.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 326.933754767025 + "x": 375.95, + "y": 326.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 321.871754767025 + "x": 379.628, + "y": 321.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 318.193754767025 + "x": 384.69, + "y": 318.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 316.25975476702496 + "x": 390.641, + "y": 316.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 316.25975476702496 + "x": 396.899, + "y": 316.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 318.193754767025 + "x": 402.85, + "y": 318.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 321.871754767025 + "x": 407.912, + "y": 321.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 326.933754767025 + "x": 411.59, + "y": 326.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 332.88475476702496 + "x": 413.524, + "y": 332.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1090 }, @@ -9873,13 +9873,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -9901,7 +9901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9946,40 +9946,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -9994,12 +9994,12 @@ } }, { - "x": 463.03200000000015, - "y": 355.767754767025 + "x": 463.032, + "y": 355.76775 }, { - "x": 423.5240000000001, - "y": 316.25975476702496 + "x": 423.524, + "y": 316.25975 }, { "category": 4, @@ -10016,16 +10016,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 336.013754767025 + "x": 443.278, + "y": 336.01375 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 333.1064840519894 + "x": 443.278, + "y": 333.10648 }, { "endCol": 9, @@ -10049,7 +10049,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10117,148 +10117,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 339.142754767025 + "x": 463.032, + "y": 339.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 345.09375476702496 + "x": 461.098, + "y": 345.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 350.155754767025 + "x": 457.42, + "y": 350.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 353.83375476702497 + "x": 452.358, + "y": 353.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 355.767754767025 + "x": 446.407, + "y": 355.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 355.767754767025 + "x": 440.149, + "y": 355.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 353.83375476702497 + "x": 434.198, + "y": 353.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 350.155754767025 + "x": 429.136, + "y": 350.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 345.09375476702496 + "x": 425.458, + "y": 345.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 339.142754767025 + "x": 423.524, + "y": 339.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 332.88475476702496 + "x": 423.524, + "y": 332.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 326.933754767025 + "x": 425.458, + "y": 326.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 321.871754767025 + "x": 429.136, + "y": 321.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 318.193754767025 + "x": 434.198, + "y": 318.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 316.25975476702496 + "x": 440.149, + "y": 316.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 316.25975476702496 + "x": 446.407, + "y": 316.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 318.193754767025 + "x": 452.358, + "y": 318.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 321.871754767025 + "x": 457.42, + "y": 321.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 326.933754767025 + "x": 461.098, + "y": 326.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 332.88475476702496 + "x": 463.032, + "y": 332.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1136 }, @@ -10280,13 +10280,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10308,7 +10308,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10353,40 +10353,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10401,12 +10401,12 @@ } }, { - "x": 512.5400000000002, - "y": 355.767754767025 + "x": 512.54, + "y": 355.76775 }, { - "x": 473.03200000000015, - "y": 316.25975476702496 + "x": 473.032, + "y": 316.25975 }, { "category": 4, @@ -10423,16 +10423,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 336.013754767025 + "x": 492.786, + "y": 336.01375 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 333.1064840519894 + "x": 492.786, + "y": 333.10648 }, { "endCol": 10, @@ -10456,7 +10456,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10524,148 +10524,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 339.142754767025 + "x": 512.54, + "y": 339.14275 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 345.09375476702496 + "x": 510.606, + "y": 345.09375 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 350.155754767025 + "x": 506.928, + "y": 350.15575 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 353.83375476702497 + "x": 501.866, + "y": 353.83375 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 355.767754767025 + "x": 495.915, + "y": 355.76775 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 355.767754767025 + "x": 489.657, + "y": 355.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 353.83375476702497 + "x": 483.706, + "y": 353.83375 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 350.155754767025 + "x": 478.644, + "y": 350.15575 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 345.09375476702496 + "x": 474.966, + "y": 345.09375 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 339.142754767025 + "x": 473.032, + "y": 339.14275 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 332.88475476702496 + "x": 473.032, + "y": 332.88475 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 326.933754767025 + "x": 474.966, + "y": 326.93375 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 321.871754767025 + "x": 478.644, + "y": 321.87175 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 318.193754767025 + "x": 483.706, + "y": 318.19375 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 316.25975476702496 + "x": 489.657, + "y": 316.25975 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 316.25975476702496 + "x": 495.915, + "y": 316.25975 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 318.193754767025 + "x": 501.866, + "y": 318.19375 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 321.871754767025 + "x": 506.928, + "y": 321.87175 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 326.933754767025 + "x": 510.606, + "y": 326.93375 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 332.88475476702496 + "x": 512.54, + "y": 332.88475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1182 }, @@ -10687,13 +10687,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -10715,7 +10715,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10760,40 +10760,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -10808,12 +10808,12 @@ } }, { - "x": 314.50800000000004, - "y": 405.27575476702503 + "x": 314.508, + "y": 405.27575 }, { "x": 275, - "y": 365.767754767025 + "y": 365.76775 }, { "category": 4, @@ -10831,7 +10831,7 @@ }, { "x": 294.754, - "y": 385.521754767025 + "y": 385.52175 }, { "x": 0, @@ -10839,7 +10839,7 @@ }, { "x": 294.754, - "y": 382.61448405198945 + "y": 382.61448 }, { "endCol": 6, @@ -10863,7 +10863,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10931,148 +10931,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 388.65075476702503 + "x": 314.508, + "y": 388.65075 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 394.601754767025 + "y": 394.60175 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 399.663754767025 + "y": 399.66375 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 403.341754767025 + "y": 403.34175 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 405.27575476702503 + "x": 297.883, + "y": 405.27575 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 405.27575476702503 + "y": 405.27575 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 403.341754767025 + "x": 285.674, + "y": 403.34175 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 399.663754767025 + "y": 399.66375 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 394.601754767025 + "y": 394.60175 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 388.65075476702503 + "y": 388.65075 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 382.392754767025 + "y": 382.39275 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 376.44175476702503 + "y": 376.44175 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 371.379754767025 + "y": 371.37975 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 367.701754767025 + "x": 285.674, + "y": 367.70175 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 365.767754767025 + "y": 365.76775 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 365.767754767025 + "x": 297.883, + "y": 365.76775 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 367.701754767025 + "y": 367.70175 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 371.379754767025 + "y": 371.37975 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 376.44175476702503 + "y": 376.44175 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 382.392754767025 + "x": 314.508, + "y": 382.39275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1228 }, @@ -11094,13 +11094,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11122,7 +11122,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11167,40 +11167,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11215,12 +11215,12 @@ } }, { - "x": 364.0160000000001, - "y": 405.27575476702503 + "x": 364.016, + "y": 405.27575 }, { - "x": 324.50800000000004, - "y": 365.767754767025 + "x": 324.508, + "y": 365.76775 }, { "category": 4, @@ -11237,16 +11237,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 385.521754767025 + "x": 344.262, + "y": 385.52175 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 382.61448405198945 + "x": 344.262, + "y": 382.61448 }, { "endCol": 7, @@ -11270,7 +11270,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11338,148 +11338,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 388.65075476702503 + "x": 364.016, + "y": 388.65075 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 394.601754767025 + "x": 362.082, + "y": 394.60175 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 399.663754767025 + "x": 358.404, + "y": 399.66375 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 403.341754767025 + "x": 353.342, + "y": 403.34175 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 405.27575476702503 + "x": 347.391, + "y": 405.27575 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 405.27575476702503 + "x": 341.133, + "y": 405.27575 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 403.341754767025 + "x": 335.182, + "y": 403.34175 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 399.663754767025 + "x": 330.12, + "y": 399.66375 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 394.601754767025 + "x": 326.442, + "y": 394.60175 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 388.65075476702503 + "x": 324.508, + "y": 388.65075 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 382.392754767025 + "x": 324.508, + "y": 382.39275 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 376.44175476702503 + "x": 326.442, + "y": 376.44175 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 371.379754767025 + "x": 330.12, + "y": 371.37975 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 367.701754767025 + "x": 335.182, + "y": 367.70175 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 365.767754767025 + "x": 341.133, + "y": 365.76775 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 365.767754767025 + "x": 347.391, + "y": 365.76775 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 367.701754767025 + "x": 353.342, + "y": 367.70175 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 371.379754767025 + "x": 358.404, + "y": 371.37975 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 376.44175476702503 + "x": 362.082, + "y": 376.44175 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 382.392754767025 + "x": 364.016, + "y": 382.39275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1274 }, @@ -11501,13 +11501,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11529,7 +11529,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11574,40 +11574,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -11622,12 +11622,12 @@ } }, { - "x": 413.5240000000001, - "y": 405.27575476702503 + "x": 413.524, + "y": 405.27575 }, { - "x": 374.0160000000001, - "y": 365.767754767025 + "x": 374.016, + "y": 365.76775 }, { "category": 4, @@ -11644,16 +11644,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 385.521754767025 + "x": 393.77, + "y": 385.52175 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 382.61448405198945 + "x": 393.77, + "y": 382.61448 }, { "endCol": 8, @@ -11677,7 +11677,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11745,148 +11745,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 388.65075476702503 + "x": 413.524, + "y": 388.65075 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 394.601754767025 + "x": 411.59, + "y": 394.60175 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 399.663754767025 + "x": 407.912, + "y": 399.66375 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 403.341754767025 + "x": 402.85, + "y": 403.34175 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 405.27575476702503 + "x": 396.899, + "y": 405.27575 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 405.27575476702503 + "x": 390.641, + "y": 405.27575 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 403.341754767025 + "x": 384.69, + "y": 403.34175 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 399.663754767025 + "x": 379.628, + "y": 399.66375 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 394.601754767025 + "x": 375.95, + "y": 394.60175 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 388.65075476702503 + "x": 374.016, + "y": 388.65075 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 382.392754767025 + "x": 374.016, + "y": 382.39275 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 376.44175476702503 + "x": 375.95, + "y": 376.44175 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 371.379754767025 + "x": 379.628, + "y": 371.37975 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 367.701754767025 + "x": 384.69, + "y": 367.70175 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 365.767754767025 + "x": 390.641, + "y": 365.76775 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 365.767754767025 + "x": 396.899, + "y": 365.76775 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 367.701754767025 + "x": 402.85, + "y": 367.70175 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 371.379754767025 + "x": 407.912, + "y": 371.37975 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 376.44175476702503 + "x": 411.59, + "y": 376.44175 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 382.392754767025 + "x": 413.524, + "y": 382.39275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1320 }, @@ -11908,13 +11908,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -11936,7 +11936,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11981,40 +11981,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12029,12 +12029,12 @@ } }, { - "x": 463.03200000000015, - "y": 405.27575476702503 + "x": 463.032, + "y": 405.27575 }, { - "x": 423.5240000000001, - "y": 365.767754767025 + "x": 423.524, + "y": 365.76775 }, { "category": 4, @@ -12051,16 +12051,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 385.521754767025 + "x": 443.278, + "y": 385.52175 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 382.61448405198945 + "x": 443.278, + "y": 382.61448 }, { "endCol": 9, @@ -12084,7 +12084,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12152,148 +12152,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 388.65075476702503 + "x": 463.032, + "y": 388.65075 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 394.601754767025 + "x": 461.098, + "y": 394.60175 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 399.663754767025 + "x": 457.42, + "y": 399.66375 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 403.341754767025 + "x": 452.358, + "y": 403.34175 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 405.27575476702503 + "x": 446.407, + "y": 405.27575 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 405.27575476702503 + "x": 440.149, + "y": 405.27575 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 403.341754767025 + "x": 434.198, + "y": 403.34175 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 399.663754767025 + "x": 429.136, + "y": 399.66375 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 394.601754767025 + "x": 425.458, + "y": 394.60175 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 388.65075476702503 + "x": 423.524, + "y": 388.65075 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 382.392754767025 + "x": 423.524, + "y": 382.39275 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 376.44175476702503 + "x": 425.458, + "y": 376.44175 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 371.379754767025 + "x": 429.136, + "y": 371.37975 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 367.701754767025 + "x": 434.198, + "y": 367.70175 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 365.767754767025 + "x": 440.149, + "y": 365.76775 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 365.767754767025 + "x": 446.407, + "y": 365.76775 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 367.701754767025 + "x": 452.358, + "y": 367.70175 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 371.379754767025 + "x": 457.42, + "y": 371.37975 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 376.44175476702503 + "x": 461.098, + "y": 376.44175 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 382.392754767025 + "x": 463.032, + "y": 382.39275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1366 }, @@ -12315,13 +12315,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12343,7 +12343,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12388,40 +12388,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12436,12 +12436,12 @@ } }, { - "x": 512.5400000000002, - "y": 405.27575476702503 + "x": 512.54, + "y": 405.27575 }, { - "x": 473.03200000000015, - "y": 365.767754767025 + "x": 473.032, + "y": 365.76775 }, { "category": 4, @@ -12458,16 +12458,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 385.521754767025 + "x": 492.786, + "y": 385.52175 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 382.61448405198945 + "x": 492.786, + "y": 382.61448 }, { "endCol": 10, @@ -12491,7 +12491,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12559,148 +12559,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 388.65075476702503 + "x": 512.54, + "y": 388.65075 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 394.601754767025 + "x": 510.606, + "y": 394.60175 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 399.663754767025 + "x": 506.928, + "y": 399.66375 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 403.341754767025 + "x": 501.866, + "y": 403.34175 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 405.27575476702503 + "x": 495.915, + "y": 405.27575 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 405.27575476702503 + "x": 489.657, + "y": 405.27575 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 403.341754767025 + "x": 483.706, + "y": 403.34175 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 399.663754767025 + "x": 478.644, + "y": 399.66375 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 394.601754767025 + "x": 474.966, + "y": 394.60175 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 388.65075476702503 + "x": 473.032, + "y": 388.65075 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 382.392754767025 + "x": 473.032, + "y": 382.39275 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 376.44175476702503 + "x": 474.966, + "y": 376.44175 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 371.379754767025 + "x": 478.644, + "y": 371.37975 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 367.701754767025 + "x": 483.706, + "y": 367.70175 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 365.767754767025 + "x": 489.657, + "y": 365.76775 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 365.767754767025 + "x": 495.915, + "y": 365.76775 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 367.701754767025 + "x": 501.866, + "y": 367.70175 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 371.379754767025 + "x": 506.928, + "y": 371.37975 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 376.44175476702503 + "x": 510.606, + "y": 376.44175 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 382.392754767025 + "x": 512.54, + "y": 382.39275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1412 }, @@ -12722,13 +12722,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -12750,7 +12750,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12795,40 +12795,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -12843,12 +12843,12 @@ } }, { - "x": 314.50800000000004, - "y": 454.7837547670251 + "x": 314.508, + "y": 454.78375 }, { "x": 275, - "y": 415.27575476702503 + "y": 415.27575 }, { "category": 4, @@ -12866,7 +12866,7 @@ }, { "x": 294.754, - "y": 435.02975476702505 + "y": 435.02975 }, { "x": 0, @@ -12874,7 +12874,7 @@ }, { "x": 294.754, - "y": 432.1224840519895 + "y": 432.12248 }, { "endCol": 6, @@ -12898,7 +12898,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12966,148 +12966,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 438.1587547670251 + "x": 314.508, + "y": 438.15875 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 444.10975476702504 + "y": 444.10975 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 449.17175476702505 + "y": 449.17175 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 452.84975476702505 + "y": 452.84975 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 454.7837547670251 + "x": 297.883, + "y": 454.78375 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 454.7837547670251 + "y": 454.78375 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 452.84975476702505 + "x": 285.674, + "y": 452.84975 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 449.17175476702505 + "y": 449.17175 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 444.10975476702504 + "y": 444.10975 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 438.1587547670251 + "y": 438.15875 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 431.90075476702503 + "y": 431.90075 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 425.94975476702507 + "y": 425.94975 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 420.88775476702506 + "y": 420.88775 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 417.20975476702506 + "x": 285.674, + "y": 417.20975 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 415.27575476702503 + "y": 415.27575 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 415.27575476702503 + "x": 297.883, + "y": 415.27575 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 417.20975476702506 + "y": 417.20975 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 420.88775476702506 + "y": 420.88775 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 425.94975476702507 + "y": 425.94975 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 431.90075476702503 + "x": 314.508, + "y": 431.90075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1458 }, @@ -13129,13 +13129,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13157,7 +13157,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13202,40 +13202,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13250,12 +13250,12 @@ } }, { - "x": 364.0160000000001, - "y": 454.7837547670251 + "x": 364.016, + "y": 454.78375 }, { - "x": 324.50800000000004, - "y": 415.27575476702503 + "x": 324.508, + "y": 415.27575 }, { "category": 4, @@ -13272,16 +13272,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 435.02975476702505 + "x": 344.262, + "y": 435.02975 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 432.1224840519895 + "x": 344.262, + "y": 432.12248 }, { "endCol": 7, @@ -13305,7 +13305,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13373,148 +13373,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 438.1587547670251 + "x": 364.016, + "y": 438.15875 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 444.10975476702504 + "x": 362.082, + "y": 444.10975 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 449.17175476702505 + "x": 358.404, + "y": 449.17175 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 452.84975476702505 + "x": 353.342, + "y": 452.84975 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 454.7837547670251 + "x": 347.391, + "y": 454.78375 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 454.7837547670251 + "x": 341.133, + "y": 454.78375 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 452.84975476702505 + "x": 335.182, + "y": 452.84975 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 449.17175476702505 + "x": 330.12, + "y": 449.17175 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 444.10975476702504 + "x": 326.442, + "y": 444.10975 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 438.1587547670251 + "x": 324.508, + "y": 438.15875 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 431.90075476702503 + "x": 324.508, + "y": 431.90075 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 425.94975476702507 + "x": 326.442, + "y": 425.94975 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 420.88775476702506 + "x": 330.12, + "y": 420.88775 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 417.20975476702506 + "x": 335.182, + "y": 417.20975 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 415.27575476702503 + "x": 341.133, + "y": 415.27575 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 415.27575476702503 + "x": 347.391, + "y": 415.27575 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 417.20975476702506 + "x": 353.342, + "y": 417.20975 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 420.88775476702506 + "x": 358.404, + "y": 420.88775 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 425.94975476702507 + "x": 362.082, + "y": 425.94975 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 431.90075476702503 + "x": 364.016, + "y": 431.90075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1504 }, @@ -13536,13 +13536,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13564,7 +13564,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13609,40 +13609,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -13657,12 +13657,12 @@ } }, { - "x": 413.5240000000001, - "y": 454.7837547670251 + "x": 413.524, + "y": 454.78375 }, { - "x": 374.0160000000001, - "y": 415.27575476702503 + "x": 374.016, + "y": 415.27575 }, { "category": 4, @@ -13679,16 +13679,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 435.02975476702505 + "x": 393.77, + "y": 435.02975 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 432.1224840519895 + "x": 393.77, + "y": 432.12248 }, { "endCol": 8, @@ -13712,7 +13712,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13780,148 +13780,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 438.1587547670251 + "x": 413.524, + "y": 438.15875 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 444.10975476702504 + "x": 411.59, + "y": 444.10975 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 449.17175476702505 + "x": 407.912, + "y": 449.17175 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 452.84975476702505 + "x": 402.85, + "y": 452.84975 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 454.7837547670251 + "x": 396.899, + "y": 454.78375 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 454.7837547670251 + "x": 390.641, + "y": 454.78375 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 452.84975476702505 + "x": 384.69, + "y": 452.84975 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 449.17175476702505 + "x": 379.628, + "y": 449.17175 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 444.10975476702504 + "x": 375.95, + "y": 444.10975 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 438.1587547670251 + "x": 374.016, + "y": 438.15875 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 431.90075476702503 + "x": 374.016, + "y": 431.90075 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 425.94975476702507 + "x": 375.95, + "y": 425.94975 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 420.88775476702506 + "x": 379.628, + "y": 420.88775 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 417.20975476702506 + "x": 384.69, + "y": 417.20975 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 415.27575476702503 + "x": 390.641, + "y": 415.27575 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 415.27575476702503 + "x": 396.899, + "y": 415.27575 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 417.20975476702506 + "x": 402.85, + "y": 417.20975 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 420.88775476702506 + "x": 407.912, + "y": 420.88775 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 425.94975476702507 + "x": 411.59, + "y": 425.94975 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 431.90075476702503 + "x": 413.524, + "y": 431.90075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1550 }, @@ -13943,13 +13943,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -13971,7 +13971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14016,40 +14016,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14064,12 +14064,12 @@ } }, { - "x": 463.03200000000015, - "y": 454.7837547670251 + "x": 463.032, + "y": 454.78375 }, { - "x": 423.5240000000001, - "y": 415.27575476702503 + "x": 423.524, + "y": 415.27575 }, { "category": 4, @@ -14086,16 +14086,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 435.02975476702505 + "x": 443.278, + "y": 435.02975 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 432.1224840519895 + "x": 443.278, + "y": 432.12248 }, { "endCol": 9, @@ -14119,7 +14119,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -14187,148 +14187,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 438.1587547670251 + "x": 463.032, + "y": 438.15875 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 444.10975476702504 + "x": 461.098, + "y": 444.10975 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 449.17175476702505 + "x": 457.42, + "y": 449.17175 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 452.84975476702505 + "x": 452.358, + "y": 452.84975 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 454.7837547670251 + "x": 446.407, + "y": 454.78375 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 454.7837547670251 + "x": 440.149, + "y": 454.78375 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 452.84975476702505 + "x": 434.198, + "y": 452.84975 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 449.17175476702505 + "x": 429.136, + "y": 449.17175 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 444.10975476702504 + "x": 425.458, + "y": 444.10975 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 438.1587547670251 + "x": 423.524, + "y": 438.15875 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 431.90075476702503 + "x": 423.524, + "y": 431.90075 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 425.94975476702507 + "x": 425.458, + "y": 425.94975 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 420.88775476702506 + "x": 429.136, + "y": 420.88775 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 417.20975476702506 + "x": 434.198, + "y": 417.20975 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 415.27575476702503 + "x": 440.149, + "y": 415.27575 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 415.27575476702503 + "x": 446.407, + "y": 415.27575 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 417.20975476702506 + "x": 452.358, + "y": 417.20975 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 420.88775476702506 + "x": 457.42, + "y": 420.88775 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 425.94975476702507 + "x": 461.098, + "y": 425.94975 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 431.90075476702503 + "x": 463.032, + "y": 431.90075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1596 }, @@ -14350,13 +14350,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14378,7 +14378,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14423,40 +14423,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14471,12 +14471,12 @@ } }, { - "x": 512.5400000000002, - "y": 454.7837547670251 + "x": 512.54, + "y": 454.78375 }, { - "x": 473.03200000000015, - "y": 415.27575476702503 + "x": 473.032, + "y": 415.27575 }, { "category": 4, @@ -14493,16 +14493,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 435.02975476702505 + "x": 492.786, + "y": 435.02975 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 432.1224840519895 + "x": 492.786, + "y": 432.12248 }, { "endCol": 10, @@ -14526,7 +14526,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -14594,148 +14594,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 438.1587547670251 + "x": 512.54, + "y": 438.15875 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 444.10975476702504 + "x": 510.606, + "y": 444.10975 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 449.17175476702505 + "x": 506.928, + "y": 449.17175 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 452.84975476702505 + "x": 501.866, + "y": 452.84975 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 454.7837547670251 + "x": 495.915, + "y": 454.78375 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 454.7837547670251 + "x": 489.657, + "y": 454.78375 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 452.84975476702505 + "x": 483.706, + "y": 452.84975 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 449.17175476702505 + "x": 478.644, + "y": 449.17175 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 444.10975476702504 + "x": 474.966, + "y": 444.10975 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 438.1587547670251 + "x": 473.032, + "y": 438.15875 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 431.90075476702503 + "x": 473.032, + "y": 431.90075 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 425.94975476702507 + "x": 474.966, + "y": 425.94975 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 420.88775476702506 + "x": 478.644, + "y": 420.88775 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 417.20975476702506 + "x": 483.706, + "y": 417.20975 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 415.27575476702503 + "x": 489.657, + "y": 415.27575 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 415.27575476702503 + "x": 495.915, + "y": 415.27575 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 417.20975476702506 + "x": 501.866, + "y": 417.20975 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 420.88775476702506 + "x": 506.928, + "y": 420.88775 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 425.94975476702507 + "x": 510.606, + "y": 425.94975 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 431.90075476702503 + "x": 512.54, + "y": 431.90075 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1642 }, @@ -14757,13 +14757,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -14785,7 +14785,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8508707426264899, + "speed": 0.85087, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14830,40 +14830,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -14878,12 +14878,12 @@ } }, { - "x": 314.50800000000004, - "y": 502.52396527916176 + "x": 314.508, + "y": 502.52397 }, { "x": 275, - "y": 462.1650945365352 + "y": 462.16509 }, { "category": 8, @@ -14901,7 +14901,7 @@ }, { "x": 294.754, - "y": 481.9190945365352 + "y": 481.91909 }, { "x": 0, @@ -14909,7 +14909,7 @@ }, { "x": 294.754, - "y": 481.9190587800798 + "y": 481.91906 }, { "endCol": 6, @@ -14933,7 +14933,7 @@ }, { "x": 0, - "y": 0.00004743696308651124 + "y": 0.00005 }, [ { @@ -15001,148 +15001,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 485.04809453653525 + "x": 314.508, + "y": 485.04809 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 490.9990945365352 + "y": 490.99909 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 496.0610945365352 + "y": 496.06109 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 499.7390945365352 + "y": 499.73909 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 501.67309453653525 + "x": 297.883, + "y": 501.67309 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 501.67309453653525 + "y": 501.67309 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 499.7390945365352 + "x": 285.674, + "y": 499.73909 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 496.0610945365352 + "y": 496.06109 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 490.9990945365352 + "y": 490.99909 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 485.04809453653525 + "y": 485.04809 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 478.7900945365352 + "y": 478.79009 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 472.83909453653524 + "y": 472.83909 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 467.77709453653523 + "y": 467.77709 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 464.09909453653523 + "x": 285.674, + "y": 464.09909 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 462.1650945365352 + "y": 462.16509 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 462.1650945365352 + "x": 297.883, + "y": 462.16509 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 464.09909453653523 + "y": 464.09909 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 467.77709453653523 + "y": 467.77709 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 472.83909453653524 + "y": 472.83909 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 478.7900945365352 + "x": 314.508, + "y": 478.79009 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1688 }, @@ -15164,13 +15164,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15192,7 +15192,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8508707426264899, + "speed": 0.85087, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15237,40 +15237,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15285,12 +15285,12 @@ } }, { - "x": 364.0160000000001, - "y": 502.52396527916176 + "x": 364.016, + "y": 502.52397 }, { - "x": 324.50800000000004, - "y": 462.1650945365352 + "x": 324.508, + "y": 462.16509 }, { "category": 8, @@ -15307,16 +15307,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 481.9190945365352 + "x": 344.262, + "y": 481.91909 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 481.9190587800798 + "x": 344.262, + "y": 481.91906 }, { "endCol": 7, @@ -15340,7 +15340,7 @@ }, { "x": 0, - "y": 0.00004743696308651124 + "y": 0.00005 }, [ { @@ -15408,148 +15408,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 485.04809453653525 + "x": 364.016, + "y": 485.04809 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 490.9990945365352 + "x": 362.082, + "y": 490.99909 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 496.0610945365352 + "x": 358.404, + "y": 496.06109 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 499.7390945365352 + "x": 353.342, + "y": 499.73909 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 501.67309453653525 + "x": 347.391, + "y": 501.67309 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 501.67309453653525 + "x": 341.133, + "y": 501.67309 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 499.7390945365352 + "x": 335.182, + "y": 499.73909 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 496.0610945365352 + "x": 330.12, + "y": 496.06109 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 490.9990945365352 + "x": 326.442, + "y": 490.99909 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 485.04809453653525 + "x": 324.508, + "y": 485.04809 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 478.7900945365352 + "x": 324.508, + "y": 478.79009 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 472.83909453653524 + "x": 326.442, + "y": 472.83909 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 467.77709453653523 + "x": 330.12, + "y": 467.77709 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 464.09909453653523 + "x": 335.182, + "y": 464.09909 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 462.1650945365352 + "x": 341.133, + "y": 462.16509 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 462.1650945365352 + "x": 347.391, + "y": 462.16509 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 464.09909453653523 + "x": 353.342, + "y": 464.09909 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 467.77709453653523 + "x": 358.404, + "y": 467.77709 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 472.83909453653524 + "x": 362.082, + "y": 472.83909 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 478.7900945365352 + "x": 364.016, + "y": 478.79009 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1734 }, @@ -15571,13 +15571,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -15599,7 +15599,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8508707426264899, + "speed": 0.85087, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15644,40 +15644,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -15692,12 +15692,12 @@ } }, { - "x": 413.5240000000001, - "y": 502.52396527916176 + "x": 413.524, + "y": 502.52397 }, { - "x": 374.0160000000001, - "y": 462.1650945365352 + "x": 374.016, + "y": 462.16509 }, { "category": 8, @@ -15714,16 +15714,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 481.9190945365352 + "x": 393.77, + "y": 481.91909 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 481.9190587800798 + "x": 393.77, + "y": 481.91906 }, { "endCol": 8, @@ -15747,7 +15747,7 @@ }, { "x": 0, - "y": 0.00004743696308651124 + "y": 0.00005 }, [ { @@ -15815,148 +15815,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 485.04809453653525 + "x": 413.524, + "y": 485.04809 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 490.9990945365352 + "x": 411.59, + "y": 490.99909 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 496.0610945365352 + "x": 407.912, + "y": 496.06109 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 499.7390945365352 + "x": 402.85, + "y": 499.73909 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 501.67309453653525 + "x": 396.899, + "y": 501.67309 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 501.67309453653525 + "x": 390.641, + "y": 501.67309 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 499.7390945365352 + "x": 384.69, + "y": 499.73909 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 496.0610945365352 + "x": 379.628, + "y": 496.06109 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 490.9990945365352 + "x": 375.95, + "y": 490.99909 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 485.04809453653525 + "x": 374.016, + "y": 485.04809 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 478.7900945365352 + "x": 374.016, + "y": 478.79009 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 472.83909453653524 + "x": 375.95, + "y": 472.83909 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 467.77709453653523 + "x": 379.628, + "y": 467.77709 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 464.09909453653523 + "x": 384.69, + "y": 464.09909 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 462.1650945365352 + "x": 390.641, + "y": 462.16509 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 462.1650945365352 + "x": 396.899, + "y": 462.16509 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 464.09909453653523 + "x": 402.85, + "y": 464.09909 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 467.77709453653523 + "x": 407.912, + "y": 467.77709 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 472.83909453653524 + "x": 411.59, + "y": 472.83909 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 478.7900945365352 + "x": 413.524, + "y": 478.79009 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1780 }, @@ -15978,13 +15978,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16006,7 +16006,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8508707426264899, + "speed": 0.85087, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16051,40 +16051,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16099,12 +16099,12 @@ } }, { - "x": 463.03200000000015, - "y": 502.52396527916176 + "x": 463.032, + "y": 502.52397 }, { - "x": 423.5240000000001, - "y": 462.1650945365352 + "x": 423.524, + "y": 462.16509 }, { "category": 8, @@ -16121,16 +16121,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 481.9190945365352 + "x": 443.278, + "y": 481.91909 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 481.9190587800798 + "x": 443.278, + "y": 481.91906 }, { "endCol": 9, @@ -16154,7 +16154,7 @@ }, { "x": 0, - "y": 0.00004743696308651124 + "y": 0.00005 }, [ { @@ -16222,148 +16222,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 485.04809453653525 + "x": 463.032, + "y": 485.04809 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 490.9990945365352 + "x": 461.098, + "y": 490.99909 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 496.0610945365352 + "x": 457.42, + "y": 496.06109 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 499.7390945365352 + "x": 452.358, + "y": 499.73909 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 501.67309453653525 + "x": 446.407, + "y": 501.67309 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 501.67309453653525 + "x": 440.149, + "y": 501.67309 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 499.7390945365352 + "x": 434.198, + "y": 499.73909 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 496.0610945365352 + "x": 429.136, + "y": 496.06109 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 490.9990945365352 + "x": 425.458, + "y": 490.99909 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 485.04809453653525 + "x": 423.524, + "y": 485.04809 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 478.7900945365352 + "x": 423.524, + "y": 478.79009 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 472.83909453653524 + "x": 425.458, + "y": 472.83909 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 467.77709453653523 + "x": 429.136, + "y": 467.77709 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 464.09909453653523 + "x": 434.198, + "y": 464.09909 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 462.1650945365352 + "x": 440.149, + "y": 462.16509 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 462.1650945365352 + "x": 446.407, + "y": 462.16509 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 464.09909453653523 + "x": 452.358, + "y": 464.09909 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 467.77709453653523 + "x": 457.42, + "y": 467.77709 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 472.83909453653524 + "x": 461.098, + "y": 472.83909 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 478.7900945365352 + "x": 463.032, + "y": 478.79009 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1826 }, @@ -16385,13 +16385,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16413,7 +16413,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8508707426264899, + "speed": 0.85087, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16458,40 +16458,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16506,12 +16506,12 @@ } }, { - "x": 512.5400000000002, - "y": 502.52396527916176 + "x": 512.54, + "y": 502.52397 }, { - "x": 473.03200000000015, - "y": 462.1650945365352 + "x": 473.032, + "y": 462.16509 }, { "category": 8, @@ -16528,16 +16528,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 481.9190945365352 + "x": 492.786, + "y": 481.91909 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 481.9190587800798 + "x": 492.786, + "y": 481.91906 }, { "endCol": 10, @@ -16561,7 +16561,7 @@ }, { "x": 0, - "y": 0.00004743696308651124 + "y": 0.00005 }, [ { @@ -16629,148 +16629,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 485.04809453653525 + "x": 512.54, + "y": 485.04809 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 490.9990945365352 + "x": 510.606, + "y": 490.99909 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 496.0610945365352 + "x": 506.928, + "y": 496.06109 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 499.7390945365352 + "x": 501.866, + "y": 499.73909 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 501.67309453653525 + "x": 495.915, + "y": 501.67309 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 501.67309453653525 + "x": 489.657, + "y": 501.67309 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 499.7390945365352 + "x": 483.706, + "y": 499.73909 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 496.0610945365352 + "x": 478.644, + "y": 496.06109 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 490.9990945365352 + "x": 474.966, + "y": 490.99909 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 485.04809453653525 + "x": 473.032, + "y": 485.04809 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 478.7900945365352 + "x": 473.032, + "y": 478.79009 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 472.83909453653524 + "x": 474.966, + "y": 472.83909 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 467.77709453653523 + "x": 478.644, + "y": 467.77709 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 464.09909453653523 + "x": 483.706, + "y": 464.09909 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 462.1650945365352 + "x": 489.657, + "y": 462.16509 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 462.1650945365352 + "x": 495.915, + "y": 462.16509 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 464.09909453653523 + "x": 501.866, + "y": 464.09909 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 467.77709453653523 + "x": 506.928, + "y": 467.77709 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 472.83909453653524 + "x": 510.606, + "y": 472.83909 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 478.7900945365352 + "x": 512.54, + "y": 478.79009 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1872 }, @@ -16792,13 +16792,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -16820,7 +16820,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8462697322694335, + "speed": 0.84627, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16865,40 +16865,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -16913,12 +16913,12 @@ } }, { - "x": 314.50800000000004, - "y": 541.8282298956211 + "x": 314.508, + "y": 541.82823 }, { "x": 275, - "y": 501.4739601633515 + "y": 501.47396 }, { "category": 8, @@ -16936,7 +16936,7 @@ }, { "x": 294.754, - "y": 521.2279601633517 + "y": 521.22796 }, { "x": 0, @@ -16944,7 +16944,7 @@ }, { "x": 294.754, - "y": 521.2279246975352 + "y": 521.22792 }, { "endCol": 6, @@ -16968,7 +16968,7 @@ }, { "x": 0, - "y": 0.000023785308826518303 + "y": 0.00002 }, [ { @@ -17036,148 +17036,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 524.3569601633517 + "x": 314.508, + "y": 524.35696 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 530.3079601633516 + "y": 530.30796 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 535.3699601633517 + "y": 535.36996 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 539.0479601633517 + "y": 539.04796 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 540.9819601633517 + "x": 297.883, + "y": 540.98196 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 540.9819601633517 + "y": 540.98196 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 539.0479601633517 + "x": 285.674, + "y": 539.04796 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 535.3699601633517 + "y": 535.36996 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 530.3079601633516 + "y": 530.30796 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 524.3569601633517 + "y": 524.35696 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 518.0989601633516 + "y": 518.09896 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 512.1479601633515 + "y": 512.14796 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 507.0859601633515 + "y": 507.08596 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 503.4079601633515 + "x": 285.674, + "y": 503.40796 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 501.4739601633515 + "y": 501.47396 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 501.4739601633515 + "x": 297.883, + "y": 501.47396 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 503.4079601633515 + "y": 503.40796 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 507.0859601633515 + "y": 507.08596 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 512.1479601633515 + "y": 512.14796 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 518.0989601633516 + "x": 314.508, + "y": 518.09896 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1918 }, @@ -17199,13 +17199,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17227,7 +17227,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8462697322694335, + "speed": 0.84627, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17272,40 +17272,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17320,12 +17320,12 @@ } }, { - "x": 364.0160000000001, - "y": 541.8282298956211 + "x": 364.016, + "y": 541.82823 }, { - "x": 324.50800000000004, - "y": 501.4739601633515 + "x": 324.508, + "y": 501.47396 }, { "category": 8, @@ -17342,16 +17342,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 521.2279601633517 + "x": 344.262, + "y": 521.22796 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 521.2279246975352 + "x": 344.262, + "y": 521.22792 }, { "endCol": 7, @@ -17375,7 +17375,7 @@ }, { "x": 0, - "y": 0.000023785308826518303 + "y": 0.00002 }, [ { @@ -17443,148 +17443,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 524.3569601633517 + "x": 364.016, + "y": 524.35696 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 530.3079601633516 + "x": 362.082, + "y": 530.30796 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 535.3699601633517 + "x": 358.404, + "y": 535.36996 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 539.0479601633517 + "x": 353.342, + "y": 539.04796 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 540.9819601633517 + "x": 347.391, + "y": 540.98196 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 540.9819601633517 + "x": 341.133, + "y": 540.98196 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 539.0479601633517 + "x": 335.182, + "y": 539.04796 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 535.3699601633517 + "x": 330.12, + "y": 535.36996 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 530.3079601633516 + "x": 326.442, + "y": 530.30796 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 524.3569601633517 + "x": 324.508, + "y": 524.35696 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 518.0989601633516 + "x": 324.508, + "y": 518.09896 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 512.1479601633515 + "x": 326.442, + "y": 512.14796 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 507.0859601633515 + "x": 330.12, + "y": 507.08596 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 503.4079601633515 + "x": 335.182, + "y": 503.40796 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 501.4739601633515 + "x": 341.133, + "y": 501.47396 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 501.4739601633515 + "x": 347.391, + "y": 501.47396 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 503.4079601633515 + "x": 353.342, + "y": 503.40796 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 507.0859601633515 + "x": 358.404, + "y": 507.08596 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 512.1479601633515 + "x": 362.082, + "y": 512.14796 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 518.0989601633516 + "x": 364.016, + "y": 518.09896 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 1964 }, @@ -17606,13 +17606,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -17634,7 +17634,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8462697322694335, + "speed": 0.84627, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17679,40 +17679,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -17727,12 +17727,12 @@ } }, { - "x": 413.5240000000001, - "y": 541.8282298956211 + "x": 413.524, + "y": 541.82823 }, { - "x": 374.0160000000001, - "y": 501.4739601633515 + "x": 374.016, + "y": 501.47396 }, { "category": 8, @@ -17749,16 +17749,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 521.2279601633517 + "x": 393.77, + "y": 521.22796 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 521.2279246975352 + "x": 393.77, + "y": 521.22792 }, { "endCol": 8, @@ -17782,7 +17782,7 @@ }, { "x": 0, - "y": 0.000023785308826518303 + "y": 0.00002 }, [ { @@ -17850,148 +17850,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 524.3569601633517 + "x": 413.524, + "y": 524.35696 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 530.3079601633516 + "x": 411.59, + "y": 530.30796 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 535.3699601633517 + "x": 407.912, + "y": 535.36996 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 539.0479601633517 + "x": 402.85, + "y": 539.04796 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 540.9819601633517 + "x": 396.899, + "y": 540.98196 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 540.9819601633517 + "x": 390.641, + "y": 540.98196 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 539.0479601633517 + "x": 384.69, + "y": 539.04796 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 535.3699601633517 + "x": 379.628, + "y": 535.36996 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 530.3079601633516 + "x": 375.95, + "y": 530.30796 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 524.3569601633517 + "x": 374.016, + "y": 524.35696 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 518.0989601633516 + "x": 374.016, + "y": 518.09896 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 512.1479601633515 + "x": 375.95, + "y": 512.14796 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 507.0859601633515 + "x": 379.628, + "y": 507.08596 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 503.4079601633515 + "x": 384.69, + "y": 503.40796 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 501.4739601633515 + "x": 390.641, + "y": 501.47396 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 501.4739601633515 + "x": 396.899, + "y": 501.47396 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 503.4079601633515 + "x": 402.85, + "y": 503.40796 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 507.0859601633515 + "x": 407.912, + "y": 507.08596 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 512.1479601633515 + "x": 411.59, + "y": 512.14796 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 518.0989601633516 + "x": 413.524, + "y": 518.09896 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2010 }, @@ -18013,13 +18013,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18041,7 +18041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8462697322694335, + "speed": 0.84627, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18086,40 +18086,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18134,12 +18134,12 @@ } }, { - "x": 463.03200000000015, - "y": 541.8282298956211 + "x": 463.032, + "y": 541.82823 }, { - "x": 423.5240000000001, - "y": 501.4739601633515 + "x": 423.524, + "y": 501.47396 }, { "category": 8, @@ -18156,16 +18156,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 521.2279601633517 + "x": 443.278, + "y": 521.22796 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 521.2279246975352 + "x": 443.278, + "y": 521.22792 }, { "endCol": 9, @@ -18189,7 +18189,7 @@ }, { "x": 0, - "y": 0.000023785308826518303 + "y": 0.00002 }, [ { @@ -18257,148 +18257,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 524.3569601633517 + "x": 463.032, + "y": 524.35696 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 530.3079601633516 + "x": 461.098, + "y": 530.30796 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 535.3699601633517 + "x": 457.42, + "y": 535.36996 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 539.0479601633517 + "x": 452.358, + "y": 539.04796 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 540.9819601633517 + "x": 446.407, + "y": 540.98196 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 540.9819601633517 + "x": 440.149, + "y": 540.98196 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 539.0479601633517 + "x": 434.198, + "y": 539.04796 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 535.3699601633517 + "x": 429.136, + "y": 535.36996 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 530.3079601633516 + "x": 425.458, + "y": 530.30796 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 524.3569601633517 + "x": 423.524, + "y": 524.35696 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 518.0989601633516 + "x": 423.524, + "y": 518.09896 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 512.1479601633515 + "x": 425.458, + "y": 512.14796 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 507.0859601633515 + "x": 429.136, + "y": 507.08596 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 503.4079601633515 + "x": 434.198, + "y": 503.40796 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 501.4739601633515 + "x": 440.149, + "y": 501.47396 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 501.4739601633515 + "x": 446.407, + "y": 501.47396 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 503.4079601633515 + "x": 452.358, + "y": 503.40796 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 507.0859601633515 + "x": 457.42, + "y": 507.08596 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 512.1479601633515 + "x": 461.098, + "y": 512.14796 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 518.0989601633516 + "x": 463.032, + "y": 518.09896 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2056 }, @@ -18420,13 +18420,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18448,7 +18448,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8462697322694335, + "speed": 0.84627, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18493,40 +18493,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18541,12 +18541,12 @@ } }, { - "x": 512.5400000000002, - "y": 541.8282298956211 + "x": 512.54, + "y": 541.82823 }, { - "x": 473.03200000000015, - "y": 501.4739601633515 + "x": 473.032, + "y": 501.47396 }, { "category": 8, @@ -18563,16 +18563,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 521.2279601633517 + "x": 492.786, + "y": 521.22796 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 521.2279246975352 + "x": 492.786, + "y": 521.22792 }, { "endCol": 10, @@ -18596,7 +18596,7 @@ }, { "x": 0, - "y": 0.000023785308826518303 + "y": 0.00002 }, [ { @@ -18664,148 +18664,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 524.3569601633517 + "x": 512.54, + "y": 524.35696 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 530.3079601633516 + "x": 510.606, + "y": 530.30796 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 535.3699601633517 + "x": 506.928, + "y": 535.36996 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 539.0479601633517 + "x": 501.866, + "y": 539.04796 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 540.9819601633517 + "x": 495.915, + "y": 540.98196 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 540.9819601633517 + "x": 489.657, + "y": 540.98196 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 539.0479601633517 + "x": 483.706, + "y": 539.04796 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 535.3699601633517 + "x": 478.644, + "y": 535.36996 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 530.3079601633516 + "x": 474.966, + "y": 530.30796 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 524.3569601633517 + "x": 473.032, + "y": 524.35696 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 518.0989601633516 + "x": 473.032, + "y": 518.09896 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 512.1479601633515 + "x": 474.966, + "y": 512.14796 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 507.0859601633515 + "x": 478.644, + "y": 507.08596 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 503.4079601633515 + "x": 483.706, + "y": 503.40796 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 501.4739601633515 + "x": 489.657, + "y": 501.47396 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 501.4739601633515 + "x": 495.915, + "y": 501.47396 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 503.4079601633515 + "x": 501.866, + "y": 503.40796 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 507.0859601633515 + "x": 506.928, + "y": 507.08596 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 512.1479601633515 + "x": 510.606, + "y": 512.14796 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 518.0989601633516 + "x": 512.54, + "y": 518.09896 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2102 }, @@ -18827,13 +18827,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -18855,7 +18855,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6521944699496027, + "speed": 0.65219, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18900,40 +18900,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -18948,12 +18948,12 @@ } }, { - "x": 314.50800000000004, - "y": 580.6976075963938 + "x": 314.508, + "y": 580.69761 }, { "x": 275, - "y": 540.5374131264442 + "y": 540.53741 }, { "category": 8, @@ -18971,7 +18971,7 @@ }, { "x": 294.754, - "y": 560.2914131264442 + "y": 560.29141 }, { "x": 0, @@ -18979,7 +18979,7 @@ }, { "x": 294.754, - "y": 560.2913899129303 + "y": 560.29139 }, { "endCol": 6, @@ -19003,7 +19003,7 @@ }, { "x": 0, - "y": 2.3362031242868397e-7 + "y": 0 }, [ { @@ -19071,148 +19071,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 563.4204131264443 + "x": 314.508, + "y": 563.42041 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 569.3714131264443 + "y": 569.37141 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 574.4334131264443 + "y": 574.43341 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 578.1114131264443 + "y": 578.11141 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 580.0454131264443 + "x": 297.883, + "y": 580.04541 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 580.0454131264443 + "y": 580.04541 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 578.1114131264443 + "x": 285.674, + "y": 578.11141 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 574.4334131264443 + "y": 574.43341 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 569.3714131264443 + "y": 569.37141 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 563.4204131264443 + "y": 563.42041 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 557.1624131264442 + "y": 557.16241 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 551.2114131264442 + "y": 551.21141 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 546.1494131264442 + "y": 546.14941 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 542.4714131264442 + "x": 285.674, + "y": 542.47141 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 540.5374131264442 + "y": 540.53741 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 540.5374131264442 + "x": 297.883, + "y": 540.53741 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 542.4714131264442 + "y": 542.47141 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 546.1494131264442 + "y": 546.14941 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 551.2114131264442 + "y": 551.21141 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 557.1624131264442 + "x": 314.508, + "y": 557.16241 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2148 }, @@ -19234,13 +19234,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19262,7 +19262,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6521944699496027, + "speed": 0.65219, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19307,40 +19307,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19355,12 +19355,12 @@ } }, { - "x": 364.0160000000001, - "y": 580.6976075963938 + "x": 364.016, + "y": 580.69761 }, { - "x": 324.50800000000004, - "y": 540.5374131264442 + "x": 324.508, + "y": 540.53741 }, { "category": 8, @@ -19377,16 +19377,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 560.2914131264442 + "x": 344.262, + "y": 560.29141 }, { "x": 0, "y": 0 }, { - "x": 344.26200000000006, - "y": 560.2913899129303 + "x": 344.262, + "y": 560.29139 }, { "endCol": 7, @@ -19410,7 +19410,7 @@ }, { "x": 0, - "y": 2.3362031242868397e-7 + "y": 0 }, [ { @@ -19478,148 +19478,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 563.4204131264443 + "x": 364.016, + "y": 563.42041 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 569.3714131264443 + "x": 362.082, + "y": 569.37141 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 574.4334131264443 + "x": 358.404, + "y": 574.43341 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 578.1114131264443 + "x": 353.342, + "y": 578.11141 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 580.0454131264443 + "x": 347.391, + "y": 580.04541 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 580.0454131264443 + "x": 341.133, + "y": 580.04541 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 578.1114131264443 + "x": 335.182, + "y": 578.11141 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 574.4334131264443 + "x": 330.12, + "y": 574.43341 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 569.3714131264443 + "x": 326.442, + "y": 569.37141 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 563.4204131264443 + "x": 324.508, + "y": 563.42041 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 557.1624131264442 + "x": 324.508, + "y": 557.16241 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 551.2114131264442 + "x": 326.442, + "y": 551.21141 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 546.1494131264442 + "x": 330.12, + "y": 546.14941 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 542.4714131264442 + "x": 335.182, + "y": 542.47141 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 540.5374131264442 + "x": 341.133, + "y": 540.53741 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 540.5374131264442 + "x": 347.391, + "y": 540.53741 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 542.4714131264442 + "x": 353.342, + "y": 542.47141 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 546.1494131264442 + "x": 358.404, + "y": 546.14941 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 551.2114131264442 + "x": 362.082, + "y": 551.21141 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 557.1624131264442 + "x": 364.016, + "y": 557.16241 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2194 }, @@ -19641,13 +19641,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -19669,7 +19669,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6521944699496027, + "speed": 0.65219, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19714,40 +19714,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -19762,12 +19762,12 @@ } }, { - "x": 413.5240000000001, - "y": 580.6976075963938 + "x": 413.524, + "y": 580.69761 }, { - "x": 374.0160000000001, - "y": 540.5374131264442 + "x": 374.016, + "y": 540.53741 }, { "category": 8, @@ -19784,16 +19784,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 560.2914131264442 + "x": 393.77, + "y": 560.29141 }, { "x": 0, "y": 0 }, { - "x": 393.7700000000001, - "y": 560.2913899129303 + "x": 393.77, + "y": 560.29139 }, { "endCol": 8, @@ -19817,7 +19817,7 @@ }, { "x": 0, - "y": 2.3362031242868397e-7 + "y": 0 }, [ { @@ -19885,148 +19885,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 563.4204131264443 + "x": 413.524, + "y": 563.42041 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 569.3714131264443 + "x": 411.59, + "y": 569.37141 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 574.4334131264443 + "x": 407.912, + "y": 574.43341 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 578.1114131264443 + "x": 402.85, + "y": 578.11141 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 580.0454131264443 + "x": 396.899, + "y": 580.04541 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 580.0454131264443 + "x": 390.641, + "y": 580.04541 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 578.1114131264443 + "x": 384.69, + "y": 578.11141 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 574.4334131264443 + "x": 379.628, + "y": 574.43341 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 569.3714131264443 + "x": 375.95, + "y": 569.37141 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 563.4204131264443 + "x": 374.016, + "y": 563.42041 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 557.1624131264442 + "x": 374.016, + "y": 557.16241 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 551.2114131264442 + "x": 375.95, + "y": 551.21141 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 546.1494131264442 + "x": 379.628, + "y": 546.14941 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 542.4714131264442 + "x": 384.69, + "y": 542.47141 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 540.5374131264442 + "x": 390.641, + "y": 540.53741 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 540.5374131264442 + "x": 396.899, + "y": 540.53741 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 542.4714131264442 + "x": 402.85, + "y": 542.47141 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 546.1494131264442 + "x": 407.912, + "y": 546.14941 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 551.2114131264442 + "x": 411.59, + "y": 551.21141 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 557.1624131264442 + "x": 413.524, + "y": 557.16241 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2240 }, @@ -20048,13 +20048,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20076,7 +20076,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6521944699496027, + "speed": 0.65219, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20121,40 +20121,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20169,12 +20169,12 @@ } }, { - "x": 463.03200000000015, - "y": 580.6976075963938 + "x": 463.032, + "y": 580.69761 }, { - "x": 423.5240000000001, - "y": 540.5374131264442 + "x": 423.524, + "y": 540.53741 }, { "category": 8, @@ -20191,16 +20191,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 560.2914131264442 + "x": 443.278, + "y": 560.29141 }, { "x": 0, "y": 0 }, { - "x": 443.27800000000013, - "y": 560.2913899129303 + "x": 443.278, + "y": 560.29139 }, { "endCol": 9, @@ -20224,7 +20224,7 @@ }, { "x": 0, - "y": 2.3362031242868397e-7 + "y": 0 }, [ { @@ -20292,148 +20292,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 563.4204131264443 + "x": 463.032, + "y": 563.42041 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 569.3714131264443 + "x": 461.098, + "y": 569.37141 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 574.4334131264443 + "x": 457.42, + "y": 574.43341 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 578.1114131264443 + "x": 452.358, + "y": 578.11141 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 580.0454131264443 + "x": 446.407, + "y": 580.04541 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 580.0454131264443 + "x": 440.149, + "y": 580.04541 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 578.1114131264443 + "x": 434.198, + "y": 578.11141 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 574.4334131264443 + "x": 429.136, + "y": 574.43341 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 569.3714131264443 + "x": 425.458, + "y": 569.37141 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 563.4204131264443 + "x": 423.524, + "y": 563.42041 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 557.1624131264442 + "x": 423.524, + "y": 557.16241 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 551.2114131264442 + "x": 425.458, + "y": 551.21141 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 546.1494131264442 + "x": 429.136, + "y": 546.14941 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 542.4714131264442 + "x": 434.198, + "y": 542.47141 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 540.5374131264442 + "x": 440.149, + "y": 540.53741 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 540.5374131264442 + "x": 446.407, + "y": 540.53741 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 542.4714131264442 + "x": 452.358, + "y": 542.47141 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 546.1494131264442 + "x": 457.42, + "y": 546.14941 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 551.2114131264442 + "x": 461.098, + "y": 551.21141 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 557.1624131264442 + "x": 463.032, + "y": 557.16241 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2286 }, @@ -20455,13 +20455,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20483,7 +20483,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6521944699496027, + "speed": 0.65219, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20528,40 +20528,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20576,12 +20576,12 @@ } }, { - "x": 512.5400000000002, - "y": 580.6976075963938 + "x": 512.54, + "y": 580.69761 }, { - "x": 473.03200000000015, - "y": 540.5374131264442 + "x": 473.032, + "y": 540.53741 }, { "category": 8, @@ -20598,16 +20598,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 560.2914131264442 + "x": 492.786, + "y": 560.29141 }, { "x": 0, "y": 0 }, { - "x": 492.7860000000002, - "y": 560.2913899129303 + "x": 492.786, + "y": 560.29139 }, { "endCol": 10, @@ -20631,7 +20631,7 @@ }, { "x": 0, - "y": 2.3362031242868397e-7 + "y": 0 }, [ { @@ -20699,148 +20699,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 563.4204131264443 + "x": 512.54, + "y": 563.42041 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 569.3714131264443 + "x": 510.606, + "y": 569.37141 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 574.4334131264443 + "x": 506.928, + "y": 574.43341 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 578.1114131264443 + "x": 501.866, + "y": 578.11141 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 580.0454131264443 + "x": 495.915, + "y": 580.04541 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 580.0454131264443 + "x": 489.657, + "y": 580.04541 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 578.1114131264443 + "x": 483.706, + "y": 578.11141 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 574.4334131264443 + "x": 478.644, + "y": 574.43341 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 569.3714131264443 + "x": 474.966, + "y": 569.37141 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 563.4204131264443 + "x": 473.032, + "y": 563.42041 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 557.1624131264442 + "x": 473.032, + "y": 557.16241 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 551.2114131264442 + "x": 474.966, + "y": 551.21141 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 546.1494131264442 + "x": 478.644, + "y": 546.14941 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 542.4714131264442 + "x": 483.706, + "y": 542.47141 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 540.5374131264442 + "x": 489.657, + "y": 540.53741 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 540.5374131264442 + "x": 495.915, + "y": 540.53741 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 542.4714131264442 + "x": 501.866, + "y": 542.47141 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 546.1494131264442 + "x": 506.928, + "y": 546.14941 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 551.2114131264442 + "x": 510.606, + "y": 551.21141 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 557.1624131264442 + "x": 512.54, + "y": 557.16241 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2332 }, @@ -20862,13 +20862,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -20890,7 +20890,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20935,40 +20935,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -20983,12 +20983,12 @@ } }, { - "x": 314.50800000000004, - "y": 812.7206714898923 + "x": 314.508, + "y": 812.72067 }, { "x": 275, - "y": 770.3054007748564 + "y": 770.3054 }, { "category": 8, @@ -21006,15 +21006,15 @@ }, { "x": 294.754, - "y": 790.0594007748563 + "y": 790.0594 }, { "x": 0, - "y": 2.950658670433893 + "y": 2.95066 }, { "x": 294.754, - "y": 787.1521300598204 + "y": 787.15213 }, { "endCol": 6, @@ -21038,7 +21038,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -21106,148 +21106,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.50800000000004, - "y": 793.1884007748564 + "x": 314.508, + "y": 793.1884 }, { "body": null, "index": 1, "isInternal": false, "x": 312.574, - "y": 799.1394007748564 + "y": 799.1394 }, { "body": null, "index": 2, "isInternal": false, "x": 308.896, - "y": 804.2014007748563 + "y": 804.2014 }, { "body": null, "index": 3, "isInternal": false, "x": 303.834, - "y": 807.8794007748564 + "y": 807.8794 }, { "body": null, "index": 4, "isInternal": false, - "x": 297.88300000000004, - "y": 809.8134007748564 + "x": 297.883, + "y": 809.8134 }, { "body": null, "index": 5, "isInternal": false, "x": 291.625, - "y": 809.8134007748564 + "y": 809.8134 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.67400000000004, - "y": 807.8794007748564 + "x": 285.674, + "y": 807.8794 }, { "body": null, "index": 7, "isInternal": false, "x": 280.612, - "y": 804.2014007748563 + "y": 804.2014 }, { "body": null, "index": 8, "isInternal": false, "x": 276.934, - "y": 799.1394007748564 + "y": 799.1394 }, { "body": null, "index": 9, "isInternal": false, "x": 275, - "y": 793.1884007748564 + "y": 793.1884 }, { "body": null, "index": 10, "isInternal": false, "x": 275, - "y": 786.9304007748564 + "y": 786.9304 }, { "body": null, "index": 11, "isInternal": false, "x": 276.934, - "y": 780.9794007748563 + "y": 780.9794 }, { "body": null, "index": 12, "isInternal": false, "x": 280.612, - "y": 775.9174007748562 + "y": 775.9174 }, { "body": null, "index": 13, "isInternal": false, - "x": 285.67400000000004, - "y": 772.2394007748563 + "x": 285.674, + "y": 772.2394 }, { "body": null, "index": 14, "isInternal": false, "x": 291.625, - "y": 770.3054007748564 + "y": 770.3054 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.88300000000004, - "y": 770.3054007748564 + "x": 297.883, + "y": 770.3054 }, { "body": null, "index": 16, "isInternal": false, "x": 303.834, - "y": 772.2394007748563 + "y": 772.2394 }, { "body": null, "index": 17, "isInternal": false, "x": 308.896, - "y": 775.9174007748562 + "y": 775.9174 }, { "body": null, "index": 18, "isInternal": false, "x": 312.574, - "y": 780.9794007748563 + "y": 780.9794 }, { "body": null, "index": 19, "isInternal": false, - "x": 314.50800000000004, - "y": 786.9304007748564 + "x": 314.508, + "y": 786.9304 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2378 }, @@ -21269,13 +21269,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21297,7 +21297,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21342,40 +21342,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21390,12 +21390,12 @@ } }, { - "x": 364.0160000000001, - "y": 812.7206714898923 + "x": 364.016, + "y": 812.72067 }, { - "x": 324.50800000000004, - "y": 770.3054007748564 + "x": 324.508, + "y": 770.3054 }, { "category": 8, @@ -21412,16 +21412,16 @@ "y": 0 }, { - "x": 344.26200000000006, - "y": 790.0594007748563 + "x": 344.262, + "y": 790.0594 }, { "x": 0, - "y": 2.950658670433893 + "y": 2.95066 }, { - "x": 344.26200000000006, - "y": 787.1521300598204 + "x": 344.262, + "y": 787.15213 }, { "endCol": 7, @@ -21445,7 +21445,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -21513,148 +21513,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.0160000000001, - "y": 793.1884007748564 + "x": 364.016, + "y": 793.1884 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.08200000000005, - "y": 799.1394007748564 + "x": 362.082, + "y": 799.1394 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.40400000000005, - "y": 804.2014007748563 + "x": 358.404, + "y": 804.2014 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.34200000000004, - "y": 807.8794007748564 + "x": 353.342, + "y": 807.8794 }, { "body": null, "index": 4, "isInternal": false, - "x": 347.3910000000001, - "y": 809.8134007748564 + "x": 347.391, + "y": 809.8134 }, { "body": null, "index": 5, "isInternal": false, - "x": 341.13300000000004, - "y": 809.8134007748564 + "x": 341.133, + "y": 809.8134 }, { "body": null, "index": 6, "isInternal": false, - "x": 335.1820000000001, - "y": 807.8794007748564 + "x": 335.182, + "y": 807.8794 }, { "body": null, "index": 7, "isInternal": false, - "x": 330.12000000000006, - "y": 804.2014007748563 + "x": 330.12, + "y": 804.2014 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.44200000000006, - "y": 799.1394007748564 + "x": 326.442, + "y": 799.1394 }, { "body": null, "index": 9, "isInternal": false, - "x": 324.50800000000004, - "y": 793.1884007748564 + "x": 324.508, + "y": 793.1884 }, { "body": null, "index": 10, "isInternal": false, - "x": 324.50800000000004, - "y": 786.9304007748564 + "x": 324.508, + "y": 786.9304 }, { "body": null, "index": 11, "isInternal": false, - "x": 326.44200000000006, - "y": 780.9794007748563 + "x": 326.442, + "y": 780.9794 }, { "body": null, "index": 12, "isInternal": false, - "x": 330.12000000000006, - "y": 775.9174007748562 + "x": 330.12, + "y": 775.9174 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.1820000000001, - "y": 772.2394007748563 + "x": 335.182, + "y": 772.2394 }, { "body": null, "index": 14, "isInternal": false, - "x": 341.13300000000004, - "y": 770.3054007748564 + "x": 341.133, + "y": 770.3054 }, { "body": null, "index": 15, "isInternal": false, - "x": 347.3910000000001, - "y": 770.3054007748564 + "x": 347.391, + "y": 770.3054 }, { "body": null, "index": 16, "isInternal": false, - "x": 353.34200000000004, - "y": 772.2394007748563 + "x": 353.342, + "y": 772.2394 }, { "body": null, "index": 17, "isInternal": false, - "x": 358.40400000000005, - "y": 775.9174007748562 + "x": 358.404, + "y": 775.9174 }, { "body": null, "index": 18, "isInternal": false, - "x": 362.08200000000005, - "y": 780.9794007748563 + "x": 362.082, + "y": 780.9794 }, { "body": null, "index": 19, "isInternal": false, - "x": 364.0160000000001, - "y": 786.9304007748564 + "x": 364.016, + "y": 786.9304 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2424 }, @@ -21676,13 +21676,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -21704,7 +21704,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21749,40 +21749,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -21797,12 +21797,12 @@ } }, { - "x": 413.5240000000001, - "y": 812.7206714898923 + "x": 413.524, + "y": 812.72067 }, { - "x": 374.0160000000001, - "y": 770.3054007748564 + "x": 374.016, + "y": 770.3054 }, { "category": 8, @@ -21819,16 +21819,16 @@ "y": 0 }, { - "x": 393.7700000000001, - "y": 790.0594007748563 + "x": 393.77, + "y": 790.0594 }, { "x": 0, - "y": 2.950658670433893 + "y": 2.95066 }, { - "x": 393.7700000000001, - "y": 787.1521300598204 + "x": 393.77, + "y": 787.15213 }, { "endCol": 8, @@ -21852,7 +21852,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -21920,148 +21920,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.5240000000001, - "y": 793.1884007748564 + "x": 413.524, + "y": 793.1884 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.5900000000001, - "y": 799.1394007748564 + "x": 411.59, + "y": 799.1394 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.9120000000001, - "y": 804.2014007748563 + "x": 407.912, + "y": 804.2014 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.8500000000001, - "y": 807.8794007748564 + "x": 402.85, + "y": 807.8794 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.8990000000001, - "y": 809.8134007748564 + "x": 396.899, + "y": 809.8134 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.6410000000001, - "y": 809.8134007748564 + "x": 390.641, + "y": 809.8134 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.6900000000001, - "y": 807.8794007748564 + "x": 384.69, + "y": 807.8794 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.6280000000001, - "y": 804.2014007748563 + "x": 379.628, + "y": 804.2014 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.9500000000001, - "y": 799.1394007748564 + "x": 375.95, + "y": 799.1394 }, { "body": null, "index": 9, "isInternal": false, - "x": 374.0160000000001, - "y": 793.1884007748564 + "x": 374.016, + "y": 793.1884 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0160000000001, - "y": 786.9304007748564 + "x": 374.016, + "y": 786.9304 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.9500000000001, - "y": 780.9794007748563 + "x": 375.95, + "y": 780.9794 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.6280000000001, - "y": 775.9174007748562 + "x": 379.628, + "y": 775.9174 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.6900000000001, - "y": 772.2394007748563 + "x": 384.69, + "y": 772.2394 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.6410000000001, - "y": 770.3054007748564 + "x": 390.641, + "y": 770.3054 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.8990000000001, - "y": 770.3054007748564 + "x": 396.899, + "y": 770.3054 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.8500000000001, - "y": 772.2394007748563 + "x": 402.85, + "y": 772.2394 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.9120000000001, - "y": 775.9174007748562 + "x": 407.912, + "y": 775.9174 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.5900000000001, - "y": 780.9794007748563 + "x": 411.59, + "y": 780.9794 }, { "body": null, "index": 19, "isInternal": false, - "x": 413.5240000000001, - "y": 786.9304007748564 + "x": 413.524, + "y": 786.9304 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2470 }, @@ -22083,13 +22083,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -22111,7 +22111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22156,40 +22156,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -22204,12 +22204,12 @@ } }, { - "x": 463.03200000000015, - "y": 812.7206714898923 + "x": 463.032, + "y": 812.72067 }, { - "x": 423.5240000000001, - "y": 770.3054007748564 + "x": 423.524, + "y": 770.3054 }, { "category": 8, @@ -22226,16 +22226,16 @@ "y": 0 }, { - "x": 443.27800000000013, - "y": 790.0594007748563 + "x": 443.278, + "y": 790.0594 }, { "x": 0, - "y": 2.950658670433893 + "y": 2.95066 }, { - "x": 443.27800000000013, - "y": 787.1521300598204 + "x": 443.278, + "y": 787.15213 }, { "endCol": 9, @@ -22259,7 +22259,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -22327,148 +22327,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.03200000000015, - "y": 793.1884007748564 + "x": 463.032, + "y": 793.1884 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.0980000000001, - "y": 799.1394007748564 + "x": 461.098, + "y": 799.1394 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.42000000000013, - "y": 804.2014007748563 + "x": 457.42, + "y": 804.2014 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.3580000000001, - "y": 807.8794007748564 + "x": 452.358, + "y": 807.8794 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.40700000000015, - "y": 809.8134007748564 + "x": 446.407, + "y": 809.8134 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.1490000000001, - "y": 809.8134007748564 + "x": 440.149, + "y": 809.8134 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.19800000000015, - "y": 807.8794007748564 + "x": 434.198, + "y": 807.8794 }, { "body": null, "index": 7, "isInternal": false, - "x": 429.13600000000014, - "y": 804.2014007748563 + "x": 429.136, + "y": 804.2014 }, { "body": null, "index": 8, "isInternal": false, - "x": 425.45800000000014, - "y": 799.1394007748564 + "x": 425.458, + "y": 799.1394 }, { "body": null, "index": 9, "isInternal": false, - "x": 423.5240000000001, - "y": 793.1884007748564 + "x": 423.524, + "y": 793.1884 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.5240000000001, - "y": 786.9304007748564 + "x": 423.524, + "y": 786.9304 }, { "body": null, "index": 11, "isInternal": false, - "x": 425.45800000000014, - "y": 780.9794007748563 + "x": 425.458, + "y": 780.9794 }, { "body": null, "index": 12, "isInternal": false, - "x": 429.13600000000014, - "y": 775.9174007748562 + "x": 429.136, + "y": 775.9174 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.19800000000015, - "y": 772.2394007748563 + "x": 434.198, + "y": 772.2394 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.1490000000001, - "y": 770.3054007748564 + "x": 440.149, + "y": 770.3054 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.40700000000015, - "y": 770.3054007748564 + "x": 446.407, + "y": 770.3054 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.3580000000001, - "y": 772.2394007748563 + "x": 452.358, + "y": 772.2394 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.42000000000013, - "y": 775.9174007748562 + "x": 457.42, + "y": 775.9174 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.0980000000001, - "y": 780.9794007748563 + "x": 461.098, + "y": 780.9794 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.03200000000015, - "y": 786.9304007748564 + "x": 463.032, + "y": 786.9304 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 2516 }, @@ -22490,13 +22490,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 972.733631710278, - "inverseInertia": 0.0010280306626612484, - "inverseMass": 0.8090120420665812, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -22518,7 +22518,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035883, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22563,40 +22563,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -22611,12 +22611,12 @@ } }, { - "x": 512.5400000000002, - "y": 812.7206714898923 + "x": 512.54, + "y": 812.72067 }, { - "x": 473.03200000000015, - "y": 770.3054007748564 + "x": 473.032, + "y": 770.3054 }, { "category": 8, @@ -22633,16 +22633,16 @@ "y": 0 }, { - "x": 492.7860000000002, - "y": 790.0594007748563 + "x": 492.786, + "y": 790.0594 }, { "x": 0, - "y": 2.950658670433893 + "y": 2.95066 }, { - "x": 492.7860000000002, - "y": 787.1521300598204 + "x": 492.786, + "y": 787.15213 }, { "endCol": 10, @@ -22666,7 +22666,7 @@ }, { "x": 0, - "y": 2.907270715035883 + "y": 2.90727 }, [ { @@ -22734,141 +22734,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.5400000000002, - "y": 793.1884007748564 + "x": 512.54, + "y": 793.1884 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.60600000000017, - "y": 799.1394007748564 + "x": 510.606, + "y": 799.1394 }, { "body": null, "index": 2, "isInternal": false, - "x": 506.92800000000017, - "y": 804.2014007748563 + "x": 506.928, + "y": 804.2014 }, { "body": null, "index": 3, "isInternal": false, - "x": 501.86600000000016, - "y": 807.8794007748564 + "x": 501.866, + "y": 807.8794 }, { "body": null, "index": 4, "isInternal": false, - "x": 495.9150000000002, - "y": 809.8134007748564 + "x": 495.915, + "y": 809.8134 }, { "body": null, "index": 5, "isInternal": false, - "x": 489.65700000000015, - "y": 809.8134007748564 + "x": 489.657, + "y": 809.8134 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.7060000000002, - "y": 807.8794007748564 + "x": 483.706, + "y": 807.8794 }, { "body": null, "index": 7, "isInternal": false, - "x": 478.6440000000002, - "y": 804.2014007748563 + "x": 478.644, + "y": 804.2014 }, { "body": null, "index": 8, "isInternal": false, - "x": 474.9660000000002, - "y": 799.1394007748564 + "x": 474.966, + "y": 799.1394 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.03200000000015, - "y": 793.1884007748564 + "x": 473.032, + "y": 793.1884 }, { "body": null, "index": 10, "isInternal": false, - "x": 473.03200000000015, - "y": 786.9304007748564 + "x": 473.032, + "y": 786.9304 }, { "body": null, "index": 11, "isInternal": false, - "x": 474.9660000000002, - "y": 780.9794007748563 + "x": 474.966, + "y": 780.9794 }, { "body": null, "index": 12, "isInternal": false, - "x": 478.6440000000002, - "y": 775.9174007748562 + "x": 478.644, + "y": 775.9174 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.7060000000002, - "y": 772.2394007748563 + "x": 483.706, + "y": 772.2394 }, { "body": null, "index": 14, "isInternal": false, - "x": 489.65700000000015, - "y": 770.3054007748564 + "x": 489.657, + "y": 770.3054 }, { "body": null, "index": 15, "isInternal": false, - "x": 495.9150000000002, - "y": 770.3054007748564 + "x": 495.915, + "y": 770.3054 }, { "body": null, "index": 16, "isInternal": false, - "x": 501.86600000000016, - "y": 772.2394007748563 + "x": 501.866, + "y": 772.2394 }, { "body": null, "index": 17, "isInternal": false, - "x": 506.92800000000017, - "y": 775.9174007748562 + "x": 506.928, + "y": 775.9174 }, { "body": null, "index": 18, "isInternal": false, - "x": 510.60600000000017, - "y": 780.9794007748563 + "x": 510.606, + "y": 780.9794 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.5400000000002, - "y": 786.9304007748564 + "x": 512.54, + "y": 786.9304 }, [], [], diff --git a/test/browser/refs/compositeManipulation/compositeManipulation-0.json b/test/browser/refs/compositeManipulation/compositeManipulation-0.json index 294999cc..c97a6136 100644 --- a/test/browser/refs/compositeManipulation/compositeManipulation-0.json +++ b/test/browser/refs/compositeManipulation/compositeManipulation-0.json @@ -928,8 +928,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1108,8 +1108,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1288,8 +1288,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1468,8 +1468,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1648,8 +1648,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1828,8 +1828,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2008,8 +2008,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2188,8 +2188,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2368,8 +2368,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2548,8 +2548,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2728,8 +2728,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2908,8 +2908,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3088,8 +3088,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3268,8 +3268,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3448,8 +3448,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3628,8 +3628,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, diff --git a/test/browser/refs/compositeManipulation/compositeManipulation-10.json b/test/browser/refs/compositeManipulation/compositeManipulation-10.json index bc618e82..86b625b4 100644 --- a/test/browser/refs/compositeManipulation/compositeManipulation-10.json +++ b/test/browser/refs/compositeManipulation/compositeManipulation-10.json @@ -943,11 +943,11 @@ } ], { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994026, + "area": 1834.64159, "axes": { "#": 97 }, @@ -968,13 +968,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 554.5620428652178, - "inverseInertia": 0.0018032247480072173, - "inverseMass": 0.5482129677426495, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994025, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -1017,12 +1017,12 @@ } ], { - "x": -0.06569319738995522, - "y": 0.9978398688249955 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249955, - "y": -0.06569319738995513 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -1033,12 +1033,12 @@ } }, { - "x": 256.7569669235733, - "y": 232.36131954278187 + "x": 257.51457, + "y": 232.05877 }, { - "x": 211.33391141739025, - "y": 186.93826403659875 + "x": 211.84511, + "y": 186.38931 }, { "category": 1, @@ -1055,16 +1055,16 @@ "y": 0 }, { - "x": 234.04543917048179, - "y": 209.6497917896903 + "x": 234.67984, + "y": 209.22404 }, { - "x": -0.000539420130992882, - "y": -0.00006787133284218174 + "x": 0.00015, + "y": -0.00098 }, { - "x": 234.04543917048179, - "y": 209.6497917896903 + "x": 234.67984, + "y": 209.22404 }, { "endCol": 5, @@ -1108,36 +1108,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.1396405914181, - "y": 186.93826403659875 + "x": 214.78271, + "y": 186.38931 }, { "body": null, "index": 1, "isInternal": false, - "x": 256.7569669235733, - "y": 189.7439932106266 + "x": 257.51457, + "y": 189.3269 }, { "body": null, "index": 2, "isInternal": false, - "x": 253.95123774954547, - "y": 232.36131954278187 + "x": 254.57697, + "y": 232.05877 }, { "body": null, "index": 3, "isInternal": false, - "x": 211.33391141739025, - "y": 229.55559036875403 + "x": 211.84511, + "y": 229.12117 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994171, + "area": 1834.64159, "axes": { "#": 119 }, @@ -1158,13 +1158,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 554.5620428652263, - "inverseInertia": 0.0018032247480071896, - "inverseMass": 0.548212967742645, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994172, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -1207,12 +1207,12 @@ } ], { - "x": -0.06569319738995585, - "y": 0.9978398688249955 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249955, - "y": -0.06569319738995513 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -1223,12 +1223,12 @@ } }, { - "x": 299.31918614835047, - "y": 235.24100779201297 + "x": 300.19458, + "y": 235.02177 }, { - "x": 253.89613064216724, - "y": 189.8179522858298 + "x": 254.52512, + "y": 189.35231 }, { "category": 1, @@ -1245,16 +1245,16 @@ "y": 0 }, { - "x": 276.60765839525897, - "y": 212.52948003892138 + "x": 277.35985, + "y": 212.18704 }, { - "x": -0.00031385916830523096, - "y": -0.00011778755914032935 + "x": 0.00026, + "y": -0.00008 }, { - "x": 276.60765839525897, - "y": 212.52948003892138 + "x": 277.35985, + "y": 212.18704 }, { "endCol": 6, @@ -1298,36 +1298,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 256.70185981619505, - "y": 189.8179522858298 + "x": 257.46272, + "y": 189.35231 }, { "body": null, "index": 1, "isInternal": false, - "x": 299.31918614835047, - "y": 192.62368145985766 + "x": 300.19458, + "y": 192.28991 }, { "body": null, "index": 2, "isInternal": false, - "x": 296.5134569743229, - "y": 235.24100779201297 + "x": 297.25698, + "y": 235.02177 }, { "body": null, "index": 3, "isInternal": false, - "x": 253.89613064216724, - "y": 232.43527861798506 + "x": 254.52512, + "y": 232.08418 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.108619899409, + "area": 1834.64159, "axes": { "#": 141 }, @@ -1348,13 +1348,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 554.5620428652209, - "inverseInertia": 0.0018032247480072074, - "inverseMass": 0.5482129677426475, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.824108619899409, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -1397,12 +1397,12 @@ } ], { - "x": -0.06569319738995576, - "y": 0.9978398688249955 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249959, - "y": -0.06569319738995177 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -1413,12 +1413,12 @@ } }, { - "x": 341.9659376932718, - "y": 237.9716329186483 + "x": 342.97433, + "y": 237.91135 }, { - "x": 296.5428821870888, - "y": 192.54857741246514 + "x": 297.30487, + "y": 192.24189 }, { "category": 1, @@ -1435,16 +1435,16 @@ "y": 0 }, { - "x": 319.2544099401803, - "y": 215.26010516555672 + "x": 320.1396, + "y": 215.07662 }, { - "x": -0.00010494522049033337, - "y": -0.00001862589189249999 + "x": -0.00011, + "y": -0.00002 }, { - "x": 319.2544099401803, - "y": 215.26010516555672 + "x": 320.1396, + "y": 215.07662 }, { "endCol": 7, @@ -1488,36 +1488,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 299.3486113611165, - "y": 192.54857741246514 + "x": 300.24246, + "y": 192.24189 }, { "body": null, "index": 1, "isInternal": false, - "x": 341.9659376932718, - "y": 195.354306586493 + "x": 342.97433, + "y": 195.17948 }, { "body": null, "index": 2, "isInternal": false, - "x": 339.1602085192441, - "y": 237.9716329186483 + "x": 340.03673, + "y": 237.91135 }, { "body": null, "index": 3, "isInternal": false, - "x": 296.5428821870888, - "y": 235.16590374462044 + "x": 297.30487, + "y": 234.97375 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.108619899418, + "area": 1834.64159, "axes": { "#": 163 }, @@ -1538,13 +1538,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 554.5620428652269, - "inverseInertia": 0.0018032247480071878, - "inverseMass": 0.5482129677426448, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.824108619899418, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -1587,12 +1587,12 @@ } ], { - "x": -0.06569319738995624, - "y": 0.9978398688249955 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.997839868824996, - "y": -0.06569319738994892 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -1603,12 +1603,12 @@ } }, { - "x": 384.53329568567, - "y": 240.77523708637466 + "x": 385.65623, + "y": 240.84664 }, { - "x": 339.110240179487, - "y": 195.3521815801913 + "x": 339.98677, + "y": 195.17718 }, { "category": 1, @@ -1625,16 +1625,16 @@ "y": 0 }, { - "x": 361.8217679325785, - "y": 218.063709333283 + "x": 362.8215, + "y": 218.01191 }, { - "x": 0.00010494522049033337, - "y": 0.00001862589189249999 + "x": 0.00011, + "y": 0.00002 }, { - "x": 361.8217679325785, - "y": 218.063709333283 + "x": 362.8215, + "y": 218.01191 }, { "endCol": 8, @@ -1678,36 +1678,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 341.9159693535146, - "y": 195.3521815801913 + "x": 342.92437, + "y": 195.17718 }, { "body": null, "index": 1, "isInternal": false, - "x": 384.53329568567, - "y": 198.15791075421922 + "x": 385.65623, + "y": 198.11478 }, { "body": null, "index": 2, "isInternal": false, - "x": 381.7275665116424, - "y": 240.77523708637466 + "x": 382.71863, + "y": 240.84664 }, { "body": null, "index": 3, "isInternal": false, - "x": 339.110240179487, - "y": 237.96950791234676 + "x": 339.98677, + "y": 237.90905 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994162, + "area": 1834.64159, "axes": { "#": 185 }, @@ -1728,13 +1728,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 554.5620428652248, - "inverseInertia": 0.0018032247480071944, - "inverseMass": 0.5482129677426453, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994163, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -1777,12 +1777,12 @@ } ], { - "x": -0.06569319738994647, - "y": 0.9978398688249962 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249955, - "y": -0.06569319738995519 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -1793,12 +1793,12 @@ } }, { - "x": 253.94651130282728, - "y": 275.00591436116497 + "x": 254.58042, + "y": 274.74058 }, { - "x": 208.52345579664413, - "y": 229.58285885498185 + "x": 208.91096, + "y": 229.07112 }, { "category": 1, @@ -1815,16 +1815,16 @@ "y": 0 }, { - "x": 231.23498354973572, - "y": 252.29438660807358 + "x": 231.74569, + "y": 251.90585 }, { - "x": 0.000820415984889376, - "y": -0.00003687855267444716 + "x": 0.00007, + "y": -0.00086 }, { - "x": 231.23498354973572, - "y": 252.29438660807358 + "x": 231.74569, + "y": 251.90585 }, { "endCol": 5, @@ -1868,36 +1868,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 211.329184970672, - "y": 229.58285885498185 + "x": 211.84856, + "y": 229.07112 }, { "body": null, "index": 1, "isInternal": false, - "x": 253.94651130282728, - "y": 232.38858802900975 + "x": 254.58042, + "y": 232.00872 }, { "body": null, "index": 2, "isInternal": false, - "x": 251.14078212879943, - "y": 275.00591436116497 + "x": 251.64283, + "y": 274.74058 }, { "body": null, "index": 3, "isInternal": false, - "x": 208.52345579664413, - "y": 272.2001851871375 + "x": 208.91096, + "y": 271.80298 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994144, + "area": 1834.64159, "axes": { "#": 207 }, @@ -1918,13 +1918,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 554.5620428652244, - "inverseInertia": 0.0018032247480071959, - "inverseMass": 0.5482129677426458, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994145, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -1967,12 +1967,12 @@ } ], { - "x": -0.06569319738995297, - "y": 0.9978398688249956 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249955, - "y": -0.06569319738995479 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -1983,12 +1983,12 @@ } }, { - "x": 296.51501102750916, - "y": 277.8081730557052 + "x": 297.26041, + "y": 277.70359 }, { - "x": 251.09195552132618, - "y": 232.38511754952194 + "x": 251.59095, + "y": 232.03413 }, { "category": 1, @@ -2005,16 +2005,16 @@ "y": 0 }, { - "x": 273.80348327441766, - "y": 255.09664530261358 + "x": 274.42568, + "y": 254.86886 }, { - "x": 0.00037236836456235387, - "y": 0.0001995003930416393 + "x": 0.00032, + "y": 0.00004 }, { - "x": 273.80348327441766, - "y": 255.09664530261358 + "x": 274.42568, + "y": 254.86886 }, { "endCol": 6, @@ -2058,36 +2058,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 253.89768469535403, - "y": 232.38511754952194 + "x": 254.52854, + "y": 232.03413 }, { "body": null, "index": 1, "isInternal": false, - "x": 296.51501102750916, - "y": 235.1908467235497 + "x": 297.26041, + "y": 234.97173 }, { "body": null, "index": 2, "isInternal": false, - "x": 293.70928185348157, - "y": 277.8081730557052 + "x": 294.32281, + "y": 277.70359 }, { "body": null, "index": 3, "isInternal": false, - "x": 251.09195552132618, - "y": 275.00244388167744 + "x": 251.59095, + "y": 274.76599 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994144, + "area": 1834.64159, "axes": { "#": 229 }, @@ -2108,13 +2108,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 554.5620428652246, - "inverseInertia": 0.0018032247480071952, - "inverseMass": 0.5482129677426458, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994145, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -2157,12 +2157,12 @@ } ], { - "x": -0.06569319738995036, - "y": 0.9978398688249959 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249959, - "y": -0.06569319738995005 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -2173,12 +2173,12 @@ } }, { - "x": 339.08362435481206, - "y": 280.6104238479625 + "x": 340.01162, + "y": 280.70811 }, { - "x": 293.66056884862905, - "y": 235.18736834177932 + "x": 294.34215, + "y": 235.03865 }, { "category": 1, @@ -2195,16 +2195,16 @@ "y": 0 }, { - "x": 316.37209660172056, - "y": 257.898896094871 + "x": 317.17688, + "y": 257.87338 }, { - "x": -0.00002310451456168924, - "y": -0.000382215908986069 + "x": -0.00115, + "y": 0.0086 }, { - "x": 316.37209660172056, - "y": 257.898896094871 + "x": 317.17688, + "y": 257.87338 }, { "endCol": 7, @@ -2248,36 +2248,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 296.4662980226567, - "y": 235.18736834177932 + "x": 297.27975, + "y": 235.03865 }, { "body": null, "index": 1, "isInternal": false, - "x": 339.08362435481206, - "y": 237.99309751580725 + "x": 340.01162, + "y": 237.97625 }, { "body": null, "index": 2, "isInternal": false, - "x": 336.2778951807844, - "y": 280.6104238479625 + "x": 337.07402, + "y": 280.70811 }, { "body": null, "index": 3, "isInternal": false, - "x": 293.66056884862905, - "y": 277.8046946739349 + "x": 294.34215, + "y": 277.77051 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994126, + "area": 1834.64159, "axes": { "#": 251 }, @@ -2298,13 +2298,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 554.5620428652234, - "inverseInertia": 0.0018032247480071991, - "inverseMass": 0.5482129677426465, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994125, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -2347,12 +2347,12 @@ } ], { - "x": -0.06569319738995036, - "y": 0.9978398688249959 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249959, - "y": -0.06569319738995014 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -2363,12 +2363,12 @@ } }, { - "x": 381.6513990405508, - "y": 283.4130614729198 + "x": 382.69359, + "y": 283.64228 }, { - "x": 336.2283435343678, - "y": 237.9900059667367 + "x": 337.02413, + "y": 237.97282 }, { "category": 1, @@ -2385,16 +2385,16 @@ "y": 0 }, { - "x": 358.9398712874593, - "y": 260.7015337198283 + "x": 359.85886, + "y": 260.80755 }, { - "x": -0.00013930807037312707, - "y": -0.0009982465352391607 + "x": -0.00093, + "y": 0.00862 }, { - "x": 358.9398712874593, - "y": 260.7015337198283 + "x": 359.85886, + "y": 260.80755 }, { "endCol": 7, @@ -2438,36 +2438,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 339.03407270839546, - "y": 237.9900059667367 + "x": 339.96173, + "y": 237.97282 }, { "body": null, "index": 1, "isInternal": false, - "x": 381.6513990405508, - "y": 240.79573514076463 + "x": 382.69359, + "y": 240.91041 }, { "body": null, "index": 2, "isInternal": false, - "x": 378.84566986652317, - "y": 283.4130614729198 + "x": 379.75599, + "y": 283.64228 }, { "body": null, "index": 3, "isInternal": false, - "x": 336.2283435343678, - "y": 280.6073322988922 + "x": 337.02413, + "y": 280.70468 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994053, + "area": 1834.64159, "axes": { "#": 273 }, @@ -2488,13 +2488,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 554.5620428652197, - "inverseInertia": 0.001803224748007211, - "inverseMass": 0.5482129677426486, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994054, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -2537,12 +2537,12 @@ } ], { - "x": -0.06569319738995177, - "y": 0.9978398688249959 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249955, - "y": -0.06569319738995576 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -2553,12 +2553,12 @@ } }, { - "x": 251.14564109782592, - "y": 317.5736348599368 + "x": 251.64625, + "y": 317.42239 }, { - "x": 205.72258559164274, - "y": 272.1505793537538 + "x": 205.97679, + "y": 271.75293 }, { "category": 1, @@ -2575,16 +2575,16 @@ "y": 0 }, { - "x": 228.43411334473433, - "y": 294.8621071068453 + "x": 228.81152, + "y": 294.58766 }, { - "x": -0.0001798853448157612, - "y": -0.0003039662696228497 + "x": 0.00013, + "y": -0.00074 }, { - "x": 228.43411334473433, - "y": 294.8621071068453 + "x": 228.81152, + "y": 294.58766 }, { "endCol": 5, @@ -2628,36 +2628,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 208.52831476567061, - "y": 272.1505793537538 + "x": 208.91439, + "y": 271.75293 }, { "body": null, "index": 1, "isInternal": false, - "x": 251.14564109782592, - "y": 274.9563085277815 + "x": 251.64625, + "y": 274.69053 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.33991192379804, - "y": 317.5736348599368 + "x": 248.70865, + "y": 317.42239 }, { "body": null, "index": 3, "isInternal": false, - "x": 205.72258559164274, - "y": 314.7679056859091 + "x": 205.97679, + "y": 314.48479 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.108619899418, + "area": 1834.64159, "axes": { "#": 295 }, @@ -2678,13 +2678,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 554.5620428652259, - "inverseInertia": 0.001803224748007191, - "inverseMass": 0.5482129677426448, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.824108619899418, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -2727,12 +2727,12 @@ } ], { - "x": -0.06569319738994892, - "y": 0.997839868824996 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249955, - "y": -0.06569319738995558 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -2743,12 +2743,12 @@ } }, { - "x": 293.7137279083322, - "y": 320.3757722934915 + "x": 294.32626, + "y": 320.38541 }, { - "x": 248.29067240214903, - "y": 274.9527167873085 + "x": 248.6568, + "y": 274.71595 }, { "category": 1, @@ -2765,16 +2765,16 @@ "y": 0 }, { - "x": 271.0022001552407, - "y": 297.6642445404 + "x": 271.49153, + "y": 297.55068 }, { - "x": -0.00036959814644558207, - "y": 0.00028442919830276174 + "x": 0.00024, + "y": 0.00015 }, { - "x": 271.0022001552407, - "y": 297.6642445404 + "x": 271.49153, + "y": 297.55068 }, { "endCol": 6, @@ -2818,36 +2818,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 251.0964015761769, - "y": 274.9527167873085 + "x": 251.5944, + "y": 274.71595 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.7137279083322, - "y": 277.75844596133607 + "x": 294.32626, + "y": 277.65355 }, { "body": null, "index": 2, "isInternal": false, - "x": 290.9079987343045, - "y": 320.3757722934915 + "x": 291.38866, + "y": 320.38541 }, { "body": null, "index": 3, "isInternal": false, - "x": 248.29067240214903, - "y": 317.5700431194639 + "x": 248.6568, + "y": 317.44781 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994071, + "area": 1834.64159, "axes": { "#": 317 }, @@ -2868,13 +2868,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 554.5620428652209, - "inverseInertia": 0.0018032247480072074, - "inverseMass": 0.548212967742648, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994072, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -2917,12 +2917,12 @@ } ], { - "x": -0.06569319738995169, - "y": 0.9978398688249959 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249959, - "y": -0.06569319738995044 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -2933,12 +2933,12 @@ } }, { - "x": 336.28161244919573, - "y": 323.17803806653467 + "x": 337.08435, + "y": 323.38986 }, { - "x": 290.85855694301273, - "y": 277.75498256035166 + "x": 291.41489, + "y": 277.7204 }, { "category": 1, @@ -2955,16 +2955,16 @@ "y": 0 }, { - "x": 313.57008469610423, - "y": 300.46651031344317 + "x": 314.24962, + "y": 300.55513 }, { - "x": -0.0005493748992246888, - "y": 0.00013059510933983325 + "x": 0.00614, + "y": 0.00474 }, { - "x": 313.57008469610423, - "y": 300.46651031344317 + "x": 314.24962, + "y": 300.55513 }, { "endCol": 7, @@ -3008,36 +3008,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 293.6642861170404, - "y": 277.75498256035166 + "x": 294.35249, + "y": 277.7204 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.28161244919573, - "y": 280.56071173437937 + "x": 337.08435, + "y": 280.658 }, { "body": null, "index": 2, "isInternal": false, - "x": 333.4758832751681, - "y": 323.17803806653467 + "x": 334.14675, + "y": 323.38986 }, { "body": null, "index": 3, "isInternal": false, - "x": 290.85855694301273, - "y": 320.37230889250696 + "x": 291.41489, + "y": 320.45226 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.108619899409, + "area": 1834.64159, "axes": { "#": 339 }, @@ -3058,13 +3058,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 554.5620428652213, - "inverseInertia": 0.0018032247480072058, - "inverseMass": 0.5482129677426475, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.824108619899409, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -3107,12 +3107,12 @@ } ], { - "x": -0.06569319738995044, - "y": 0.9978398688249959 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249959, - "y": -0.06569319738995169 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -3123,12 +3123,12 @@ } }, { - "x": 378.9479312896865, - "y": 325.9869205642039 + "x": 379.76001, + "y": 326.32826 }, { - "x": 333.5248757835035, - "y": 280.5638650580209 + "x": 334.09055, + "y": 280.6588 }, { "category": 1, @@ -3145,16 +3145,16 @@ "y": 0 }, { - "x": 356.236403536595, - "y": 303.2753928111124 + "x": 356.92528, + "y": 303.49353 }, { - "x": 0.000016272634775549445, - "y": -0.0005618011418899065 + "x": 0.00092, + "y": 0.01372 }, { - "x": 356.236403536595, - "y": 303.2753928111124 + "x": 356.92528, + "y": 303.49353 }, { "endCol": 7, @@ -3198,36 +3198,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.3306049575312, - "y": 280.5638650580209 + "x": 337.02814, + "y": 280.6588 }, { "body": null, "index": 1, "isInternal": false, - "x": 378.9479312896865, - "y": 283.36959423204854 + "x": 379.76001, + "y": 283.59639 }, { "body": null, "index": 2, "isInternal": false, - "x": 376.1422021156588, - "y": 325.9869205642039 + "x": 376.82241, + "y": 326.32826 }, { "body": null, "index": 3, "isInternal": false, - "x": 333.5248757835035, - "y": 323.18119139017625 + "x": 334.09055, + "y": 323.39066 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994144, + "area": 1834.64159, "axes": { "#": 361 }, @@ -3248,13 +3248,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 554.5620428652243, - "inverseInertia": 0.0018032247480071963, - "inverseMass": 0.5482129677426458, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994145, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -3297,12 +3297,12 @@ } ], { - "x": -0.06569319738994785, - "y": 0.997839868824996 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249955, - "y": -0.06569319738995616 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -3313,12 +3313,12 @@ } }, { - "x": 248.34365748027997, - "y": 360.1413733184087 + "x": 248.67283, + "y": 360.23059 }, { - "x": 202.9206019740968, - "y": 314.7183178122257 + "x": 203.00336, + "y": 314.56113 }, { "category": 1, @@ -3335,16 +3335,16 @@ "y": 0 }, { - "x": 225.63212972718839, - "y": 337.4298455653172 + "x": 225.8381, + "y": 337.39586 }, { - "x": -0.0002652039815426161, - "y": -0.0005521980466791416 + "x": 0, + "y": 0 }, { - "x": 225.63212972718839, - "y": 337.4298455653172 + "x": 225.8381, + "y": 337.39586 }, { "endCol": 5, @@ -3388,36 +3388,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 205.7263311481247, - "y": 314.7183178122257 + "x": 205.94096, + "y": 314.56113 }, { "body": null, "index": 1, "isInternal": false, - "x": 248.34365748027997, - "y": 317.5240469862532 + "x": 248.67283, + "y": 317.49873 }, { "body": null, "index": 2, "isInternal": false, - "x": 245.53792830625207, - "y": 360.1413733184087 + "x": 245.73523, + "y": 360.23059 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.9206019740968, - "y": 357.33564414438115 + "x": 203.00336, + "y": 357.29299 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994108, + "area": 1834.64159, "axes": { "#": 383 }, @@ -3438,13 +3438,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 554.5620428652229, - "inverseInertia": 0.0018032247480072006, - "inverseMass": 0.548212967742647, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994108, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -3487,12 +3487,12 @@ } ], { - "x": -0.0656931973899501, - "y": 0.9978398688249959 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249955, - "y": -0.065693197389955 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -3503,12 +3503,12 @@ } }, { - "x": 290.91096579308027, - "y": 362.94321660231697 + "x": 291.43229, + "y": 363.13046 }, { - "x": 245.48791028689723, - "y": 317.52016109613396 + "x": 245.76283, + "y": 317.461 }, { "category": 1, @@ -3525,16 +3525,16 @@ "y": 0 }, { - "x": 268.19943803998876, - "y": 340.23168884922546 + "x": 268.59756, + "y": 340.29573 }, { - "x": 0.00012320413958424788, - "y": 0.00029807244118829605 + "x": 0.00022, + "y": -0.0055 }, { - "x": 268.19943803998876, - "y": 340.23168884922546 + "x": 268.59756, + "y": 340.29573 }, { "endCol": 6, @@ -3578,36 +3578,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 248.29363946092508, - "y": 317.52016109613396 + "x": 248.70043, + "y": 317.461 }, { "body": null, "index": 1, "isInternal": false, - "x": 290.91096579308027, - "y": 320.3258902701616 + "x": 291.43229, + "y": 320.3986 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.10523661905273, - "y": 362.94321660231697 + "x": 288.49469, + "y": 363.13046 }, { "body": null, "index": 3, "isInternal": false, - "x": 245.48791028689723, - "y": 360.1374874282893 + "x": 245.76283, + "y": 360.19286 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994108, + "area": 1834.64159, "axes": { "#": 405 }, @@ -3628,13 +3628,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 554.5620428652219, - "inverseInertia": 0.0018032247480072041, - "inverseMass": 0.548212967742647, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994108, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -3677,12 +3677,12 @@ } ], { - "x": -0.06569319738995044, - "y": 0.9978398688249959 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.9978398688249959, - "y": -0.06569319738995169 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -3693,12 +3693,12 @@ } }, { - "x": 333.5559903831156, - "y": 365.82391245035575 + "x": 334.11357, + "y": 366.07496 }, { - "x": 288.1329348769326, - "y": 320.40085694417274 + "x": 288.44411, + "y": 320.4055 }, { "category": 1, @@ -3715,16 +3715,16 @@ "y": 0 }, { - "x": 310.8444626300241, - "y": 343.11238469726425 + "x": 311.27884, + "y": 343.24023 }, { - "x": -0.000169783421017895, - "y": -0.00002543100787956869 + "x": 0.0017, + "y": -0.02369 }, { - "x": 310.8444626300241, - "y": 343.11238469726425 + "x": 311.27884, + "y": 343.24023 }, { "endCol": 6, @@ -3768,36 +3768,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 290.9386640509603, - "y": 320.40085694417274 + "x": 291.3817, + "y": 320.4055 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.5559903831156, - "y": 323.2065861182004 + "x": 334.11357, + "y": 323.3431 }, { "body": null, "index": 2, "isInternal": false, - "x": 330.7502612090879, - "y": 365.82391245035575 + "x": 331.17597, + "y": 366.07496 }, { "body": null, "index": 3, "isInternal": false, - "x": 288.1329348769326, - "y": 363.0181832763281 + "x": 288.44411, + "y": 363.13736 }, { - "angle": 0.06574054027377121, - "anglePrev": 0.06574054027377121, + "angle": 0.06864, + "anglePrev": 0.06864, "angularSpeed": 0, "angularVelocity": 0, - "area": 1824.1086198994162, + "area": 1834.64159, "axes": { "#": 427 }, @@ -3818,13 +3818,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 554.5620428652264, - "inverseInertia": 0.0018032247480071891, - "inverseMass": 0.5482129677426453, + "inertia": 560.98496, + "inverseInertia": 0.00178, + "inverseMass": 0.54507, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8241086198994163, + "mass": 1.83464, "motion": 0, "parent": null, "position": { @@ -3867,12 +3867,12 @@ } ], { - "x": -0.06569319738994886, - "y": 0.997839868824996 + "x": -0.06858, + "y": 0.99765 }, { - "x": -0.997839868824996, - "y": -0.06569319738994762 + "x": -0.99765, + "y": -0.06858 }, { "max": { @@ -3883,12 +3883,12 @@ } }, { - "x": 376.1282399998103, - "y": 368.5532149079787 + "x": 376.83832, + "y": 369.01593 }, { - "x": 330.7051844936273, - "y": 323.1301594017957 + "x": 331.16886, + "y": 323.34647 }, { "category": 1, @@ -3905,16 +3905,16 @@ "y": 0 }, { - "x": 353.4167122467188, - "y": 345.8416871548872 + "x": 354.00359, + "y": 346.1812 }, { - "x": 0.00006934130252772347, - "y": -0.000432204696169714 + "x": -0.02408, + "y": -0.02196 }, { - "x": 353.4167122467188, - "y": 345.8416871548872 + "x": 354.00359, + "y": 346.1812 }, { "endCol": 7, @@ -3958,29 +3958,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 333.51091366765485, - "y": 323.1301594017957 + "x": 334.10646, + "y": 323.34647 }, { "body": null, "index": 1, "isInternal": false, - "x": 376.1282399998103, - "y": 325.9358885758233 + "x": 376.83832, + "y": 326.28407 }, { "body": null, "index": 2, "isInternal": false, - "x": 373.3225108257828, - "y": 368.5532149079787 + "x": 373.90072, + "y": 369.01593 }, { "body": null, "index": 3, "isInternal": false, - "x": 330.7051844936273, - "y": 365.7474857339511 + "x": 331.16886, + "y": 366.07834 }, [], [], diff --git a/test/browser/refs/compound/compound-0.json b/test/browser/refs/compound/compound-0.json index e85894f8..55fc8c27 100644 --- a/test/browser/refs/compound/compound-0.json +++ b/test/browser/refs/compound/compound-0.json @@ -847,8 +847,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 221866.66666666666, - "inverseInertia": 0.000004507211538461539, + "inertia": 221866.66667, + "inverseInertia": 0, "inverseMass": 0.0625, "isSleeping": false, "isStatic": false, @@ -899,16 +899,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -1060,7 +1060,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 11199.936656, + "area": 11199.93666, "axes": { "#": 114 }, @@ -1081,13 +1081,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 19964.551161219715, - "inverseInertia": 0.0000500887794533772, - "inverseMass": 0.08928621926306009, + "inertia": 19964.55116, + "inverseInertia": 0.00005, + "inverseMass": 0.08929, "isSleeping": false, "isStatic": false, "label": "Body", - "mass": 11.199936656, + "mass": 11.19994, "motion": 0, "parent": null, "position": { @@ -1163,56 +1163,56 @@ } ], { - "x": -0.9709343487684781, - "y": -0.23934596378784284 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763894, - "y": -0.4646062470531942 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216208, - "y": -0.6631614281668055 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986314, - "y": -0.8229430741069413 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212715, - "y": -0.9350560084425523 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941160207, - "y": -0.9927037177016904 + "x": -0.12058, + "y": -0.9927 }, { "x": 0, "y": -1 }, { - "x": 0.12057913941160207, - "y": -0.9927037177016904 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212715, - "y": -0.9350560084425523 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986314, - "y": -0.8229430741069413 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216168, - "y": -0.6631614281668098 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763957, - "y": -0.4646062470531818 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.23934596378784284 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1382,7 +1382,7 @@ "index": 2, "isInternal": false, "x": 574.69, - "y": 467.04200000000003 + "y": 467.042 }, { "body": null, @@ -1445,7 +1445,7 @@ "index": 11, "isInternal": false, "x": 375.31, - "y": 467.04200000000003 + "y": 467.042 }, { "body": null, @@ -1480,7 +1480,7 @@ "index": 16, "isInternal": false, "x": 375.31, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -1543,7 +1543,7 @@ "index": 25, "isInternal": false, "x": 574.69, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -1635,7 +1635,7 @@ "bodyB": null, "id": 12, "label": "Constraint", - "length": 237.17082451262846, + "length": 237.17082, "pointA": { "#": 179 }, diff --git a/test/browser/refs/compound/compound-10.json b/test/browser/refs/compound/compound-10.json index 0275f2f2..b167801a 100644 --- a/test/browser/refs/compound/compound-10.json +++ b/test/browser/refs/compound/compound-10.json @@ -887,8 +887,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 221866.66666666666, - "inverseInertia": 0.000004507211538461539, + "inertia": 221866.66667, + "inverseInertia": 0, "inverseMass": 0.0625, "isSleeping": false, "isStatic": false, @@ -915,7 +915,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -942,16 +942,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -967,11 +967,11 @@ }, { "x": 300, - "y": 317.73575476702587 + "y": 317.73575 }, { "x": 100, - "y": 117.73575476702595 + "y": 117.73575 }, { "category": 1, @@ -989,7 +989,7 @@ }, { "x": 200, - "y": 217.73575476702598 + "y": 217.73575 }, { "x": 0, @@ -997,7 +997,7 @@ }, { "x": 200, - "y": 214.8284840519903 + "y": 214.82848 }, { "endCol": 6, @@ -1021,7 +1021,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -1054,63 +1054,63 @@ "index": 0, "isInternal": false, "x": 300, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 317.73575476702587 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 180, - "y": 317.73575476702587 + "y": 317.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 197.73575476702598 + "y": 197.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 180, - "y": 117.73575476702595 + "y": 117.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 220, - "y": 117.73575476702595 + "y": 117.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 300, - "y": 197.73575476702598 + "y": 197.73575 }, { - "angle": -0.07143107665746028, - "anglePrev": -0.060871862278235885, - "angularSpeed": 0.00980497409413378, - "angularVelocity": -0.009804974094133785, - "area": 11199.936656, + "angle": -0.07143, + "anglePrev": -0.06087, + "angularSpeed": 0.0098, + "angularVelocity": -0.0098, + "area": 11199.93666, "axes": { "#": 119 }, @@ -1131,13 +1131,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 19964.551161219715, - "inverseInertia": 0.0000500887794533772, - "inverseMass": 0.08928621926306009, + "inertia": 19964.55116, + "inverseInertia": 0.00005, + "inverseMass": 0.08929, "isSleeping": false, "isStatic": false, "label": "Body", - "mass": 11.199936656, + "mass": 11.19994, "motion": 0, "parent": null, "position": { @@ -1159,7 +1159,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9586143693926944, + "speed": 0.95861, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1216,60 +1216,60 @@ } ], { - "x": -0.9855405592758093, - "y": -0.16943968254905875 + "x": -0.98554, + "y": -0.16944 }, { - "x": -0.9164183209730334, - "y": -0.4002217647566994 + "x": -0.91642, + "y": -0.40022 }, { - "x": -0.793897759865241, - "y": -0.608051269944363 + "x": -0.7939, + "y": -0.60805 }, { - "x": -0.6254087912131313, - "y": -0.780297279165659 + "x": -0.62541, + "y": -0.7803 }, { - "x": -0.42033127185093555, - "y": -0.9073707191132934 + "x": -0.42033, + "y": -0.90737 }, { - "x": -0.19112125774692526, - "y": -0.9815664342454024 + "x": -0.19112, + "y": -0.98157 }, { - "x": -0.07137034718057023, - "y": -0.9974498852289905 + "x": -0.07137, + "y": -0.99745 }, { - "x": 0.049422039787300476, - "y": -0.9987779843304833 + "x": 0.04942, + "y": -0.99878 }, { - "x": 0.28686072793928924, - "y": -0.957972297494109 + "x": 0.28686, + "y": -0.95797 }, { - "x": 0.5079413253954148, - "y": -0.8613916704702625 + "x": 0.50794, + "y": -0.86139 }, { - "x": 0.6992376371351813, - "y": -0.714889310882187 + "x": 0.69924, + "y": -0.71489 }, { - "x": 0.8501001026641435, - "y": -0.5266211308430491 + "x": 0.8501, + "y": -0.52662 }, { - "x": 0.9513761502121961, - "y": -0.3080315256713529 + "x": 0.95138, + "y": -0.30803 }, { - "x": 0.9974498852289905, - "y": -0.07137034718057023 + "x": 0.99745, + "y": -0.07137 }, { "max": { @@ -1280,12 +1280,12 @@ } }, { - "x": 580.2464522298171, - "y": 487.75571135592 + "x": 580.24645, + "y": 487.75571 }, { - "x": 359.99715695356406, - "y": 267.58568338074673 + "x": 359.99716, + "y": 267.58568 }, { "category": 1, @@ -1302,16 +1302,16 @@ "y": 0 }, { - "x": 470.12180459169065, - "y": 377.6706973683334 + "x": 470.1218, + "y": 377.6707 }, { "x": 0, "y": 0 }, { - "x": 470.927746583416, - "y": 377.30496299836034 + "x": 470.92775, + "y": 377.30496 }, { "endCol": 12, @@ -1334,8 +1334,8 @@ "yScale": 1 }, { - "x": -0.7310209175915929, - "y": 0.6201208972851191 + "x": -0.73102, + "y": 0.62012 }, [ { @@ -1427,197 +1427,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 580.2464522298171, - "y": 448.6079611975685 + "x": 580.24645, + "y": 448.60796 }, { "body": null, "index": 1, "isInternal": false, - "x": 579.0210290563878, - "y": 455.735596362616 + "x": 579.02103, + "y": 455.7356 }, { "body": null, "index": 2, "isInternal": false, - "x": 576.1266531453625, - "y": 462.363069794149 + "x": 576.12665, + "y": 462.36307 }, { "body": null, "index": 3, "isInternal": false, - "x": 571.7292111850932, - "y": 468.10455820797165 + "x": 571.72921, + "y": 468.10456 }, { "body": null, "index": 4, "isInternal": false, - "x": 566.0856502247751, - "y": 472.6278760927963 + "x": 566.08565, + "y": 472.62788 }, { "body": null, "index": 5, "isInternal": false, - "x": 559.5228902211426, - "y": 475.6680152565056 + "x": 559.52289, + "y": 475.66802 }, { "body": null, "index": 6, "isInternal": false, - "x": 552.4244324378251, - "y": 477.0501592788345 + "x": 552.42443, + "y": 477.05016 }, { "body": null, "index": 7, "isInternal": false, - "x": 402.8069496534762, - "y": 487.75571135592 + "x": 402.80695, + "y": 487.75571 }, { "body": null, "index": 8, "isInternal": false, - "x": 395.5840219846759, - "y": 487.39830277840974 + "x": 395.58402, + "y": 487.3983 }, { "body": null, "index": 9, "isInternal": false, - "x": 388.6552748407013, - "y": 485.32351893066505 + "x": 388.65527, + "y": 485.32352 }, { "body": null, "index": 10, "isInternal": false, - "x": 382.42519236725343, - "y": 481.64979365867765 + "x": 382.42519, + "y": 481.64979 }, { "body": null, "index": 11, "isInternal": false, - "x": 377.2550950284067, - "y": 476.59288961501125 + "x": 377.2551, + "y": 476.59289 }, { "body": null, "index": 12, "isInternal": false, - "x": 373.44660771069283, - "y": 470.4450249165313 + "x": 373.44661, + "y": 470.44502 }, { "body": null, "index": 13, "isInternal": false, - "x": 371.2188593814595, - "y": 463.5644738934231 + "x": 371.21886, + "y": 463.56447 }, { "body": null, "index": 14, "isInternal": false, - "x": 359.99715695356406, - "y": 306.73343353909826 + "x": 359.99716, + "y": 306.73343 }, { "body": null, "index": 15, "isInternal": false, - "x": 361.22258012699365, - "y": 299.6057983740508 + "x": 361.22258, + "y": 299.6058 }, { "body": null, "index": 16, "isInternal": false, - "x": 364.11695603801854, - "y": 292.97832494251776 + "x": 364.11696, + "y": 292.97832 }, { "body": null, "index": 17, "isInternal": false, - "x": 368.5143979982884, - "y": 287.2368365286951 + "x": 368.5144, + "y": 287.23684 }, { "body": null, "index": 18, "isInternal": false, - "x": 374.15795895860623, - "y": 282.71351864387043 + "x": 374.15796, + "y": 282.71352 }, { "body": null, "index": 19, "isInternal": false, - "x": 380.72071896223895, - "y": 279.67337948016115 + "x": 380.72072, + "y": 279.67338 }, { "body": null, "index": 20, "isInternal": false, - "x": 387.8191767455566, - "y": 278.29123545783216 + "x": 387.81918, + "y": 278.29124 }, { "body": null, "index": 21, "isInternal": false, - "x": 537.4366595299048, - "y": 267.58568338074673 + "x": 537.43666, + "y": 267.58568 }, { "body": null, "index": 22, "isInternal": false, - "x": 544.6595871987055, - "y": 267.943091958257 + "x": 544.65959, + "y": 267.94309 }, { "body": null, "index": 23, "isInternal": false, - "x": 551.5883343426801, - "y": 270.0178758060017 + "x": 551.58833, + "y": 270.01788 }, { "body": null, "index": 24, "isInternal": false, - "x": 557.8184168161284, - "y": 273.6916010779891 + "x": 557.81842, + "y": 273.6916 }, { "body": null, "index": 25, "isInternal": false, - "x": 562.9885141549745, - "y": 278.7485051216555 + "x": 562.98851, + "y": 278.74851 }, { "body": null, "index": 26, "isInternal": false, - "x": 566.7970014726883, - "y": 284.89636982013536 + "x": 566.797, + "y": 284.89637 }, { "body": null, "index": 27, "isInternal": false, - "x": 569.0247498019216, - "y": 291.7769208432437 + "x": 569.02475, + "y": 291.77692 }, { "max": { @@ -1690,12 +1690,12 @@ "visible": true }, { - "angleB": -0.07143107665746028, + "angleB": -0.07143, "angularStiffness": 0, "bodyB": null, "id": 12, "label": "Constraint", - "length": 237.17082451262846, + "length": 237.17082, "pointA": { "#": 185 }, @@ -1713,8 +1713,8 @@ "y": 100 }, { - "x": -3.568517359028511, - "y": -49.872494261449496 + "x": -3.56852, + "y": -49.87249 }, { "lineWidth": 2, diff --git a/test/browser/refs/compoundStack/compoundStack-0.json b/test/browser/refs/compoundStack/compoundStack-0.json index 6e1b9960..e7fea04d 100644 --- a/test/browser/refs/compoundStack/compoundStack-0.json +++ b/test/browser/refs/compoundStack/compoundStack-0.json @@ -1099,8 +1099,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1151,16 +1151,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -1333,8 +1333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1385,16 +1385,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -1567,8 +1567,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1619,16 +1619,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -1801,8 +1801,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1853,16 +1853,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2035,8 +2035,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2087,16 +2087,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2269,8 +2269,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2321,16 +2321,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2503,8 +2503,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2555,16 +2555,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2737,8 +2737,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2789,16 +2789,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2971,8 +2971,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3023,16 +3023,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -3205,8 +3205,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3257,16 +3257,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -3439,8 +3439,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3491,16 +3491,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -3673,8 +3673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3725,16 +3725,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -3907,8 +3907,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3959,16 +3959,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -4141,8 +4141,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4193,16 +4193,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -4375,8 +4375,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4427,16 +4427,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -4609,8 +4609,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4661,16 +4661,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -4843,8 +4843,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4895,16 +4895,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -5077,8 +5077,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5129,16 +5129,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -5311,8 +5311,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5363,16 +5363,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -5545,8 +5545,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5597,16 +5597,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -5779,8 +5779,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5831,16 +5831,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6013,8 +6013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6065,16 +6065,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6247,8 +6247,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6299,16 +6299,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6481,8 +6481,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6533,16 +6533,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6715,8 +6715,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6767,16 +6767,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6949,8 +6949,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7001,16 +7001,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -7183,8 +7183,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7235,16 +7235,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -7417,8 +7417,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7469,16 +7469,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -7651,8 +7651,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7703,16 +7703,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -7885,8 +7885,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7937,16 +7937,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8119,8 +8119,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8171,16 +8171,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8353,8 +8353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8405,16 +8405,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8587,8 +8587,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8639,16 +8639,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8821,8 +8821,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 106, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8873,16 +8873,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9055,8 +9055,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -9107,16 +9107,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9289,8 +9289,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 112, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -9341,16 +9341,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9523,8 +9523,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -9575,16 +9575,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9757,8 +9757,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -9809,16 +9809,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9991,8 +9991,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 121, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10043,16 +10043,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10225,8 +10225,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 124, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10277,16 +10277,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10459,8 +10459,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 127, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10511,16 +10511,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10693,8 +10693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 130, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10745,16 +10745,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10927,8 +10927,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 133, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10979,16 +10979,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -11161,8 +11161,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 136, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -11213,16 +11213,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -11395,8 +11395,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 139, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -11447,16 +11447,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -11629,8 +11629,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 142, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -11681,16 +11681,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -11863,8 +11863,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 145, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -11915,16 +11915,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -12097,8 +12097,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 148, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -12149,16 +12149,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -12331,8 +12331,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 151, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -12383,16 +12383,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -12565,8 +12565,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 154, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -12617,16 +12617,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -12799,8 +12799,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 157, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -12851,16 +12851,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13033,8 +13033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 160, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -13085,16 +13085,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13267,8 +13267,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 163, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -13319,16 +13319,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13501,8 +13501,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 166, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -13553,16 +13553,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13735,8 +13735,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 169, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -13787,16 +13787,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13969,8 +13969,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 172, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14021,16 +14021,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -14203,8 +14203,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 175, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14255,16 +14255,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -14437,8 +14437,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 178, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14489,16 +14489,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -14671,8 +14671,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 181, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14723,16 +14723,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -14905,8 +14905,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 184, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14957,16 +14957,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -15139,8 +15139,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 187, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -15191,16 +15191,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -15373,8 +15373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 190, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -15425,16 +15425,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -15607,8 +15607,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 193, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -15659,16 +15659,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -15841,8 +15841,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 196, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -15893,16 +15893,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -16075,8 +16075,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 199, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -16127,16 +16127,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -16309,8 +16309,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 202, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -16361,16 +16361,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -16543,8 +16543,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 205, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -16595,16 +16595,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -16777,8 +16777,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 208, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -16829,16 +16829,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -17011,8 +17011,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 211, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -17063,16 +17063,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -17245,8 +17245,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 214, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -17297,16 +17297,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -17479,8 +17479,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 217, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -17531,16 +17531,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -17713,8 +17713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 220, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -17765,16 +17765,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, diff --git a/test/browser/refs/compoundStack/compoundStack-10.json b/test/browser/refs/compoundStack/compoundStack-10.json index 33645d6b..34e08fa4 100644 --- a/test/browser/refs/compoundStack/compoundStack-10.json +++ b/test/browser/refs/compoundStack/compoundStack-10.json @@ -1139,8 +1139,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1167,7 +1167,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1194,16 +1194,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -1219,11 +1219,11 @@ }, { "x": 150, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 100, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -1241,15 +1241,15 @@ }, { "x": 125, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 125, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 3, @@ -1273,7 +1273,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -1306,56 +1306,56 @@ "index": 0, "isInternal": false, "x": 150, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 130, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 120, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 120, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 130, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 150, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -1383,8 +1383,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1411,7 +1411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1438,16 +1438,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -1463,11 +1463,11 @@ }, { "x": 200, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 150, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -1485,15 +1485,15 @@ }, { "x": 175, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 175, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 4, @@ -1517,7 +1517,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -1550,56 +1550,56 @@ "index": 0, "isInternal": false, "x": 200, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 170, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 170, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 180, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 200, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -1627,8 +1627,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1655,7 +1655,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1682,16 +1682,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -1707,11 +1707,11 @@ }, { "x": 250, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 200, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -1729,15 +1729,15 @@ }, { "x": 225, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 225, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 5, @@ -1761,7 +1761,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -1794,56 +1794,56 @@ "index": 0, "isInternal": false, "x": 250, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 200, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 220, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 230, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -1871,8 +1871,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1899,7 +1899,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1926,16 +1926,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -1951,11 +1951,11 @@ }, { "x": 300, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 250, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -1973,15 +1973,15 @@ }, { "x": 275, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 275, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 6, @@ -2005,7 +2005,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -2038,56 +2038,56 @@ "index": 0, "isInternal": false, "x": 300, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 270, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 250, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 270, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 280, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 300, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -2115,8 +2115,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2143,7 +2143,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2170,16 +2170,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2195,11 +2195,11 @@ }, { "x": 350, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 300, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -2217,15 +2217,15 @@ }, { "x": 325, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 325, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 7, @@ -2249,7 +2249,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -2282,56 +2282,56 @@ "index": 0, "isInternal": false, "x": 350, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 330, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 300, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 320, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 330, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 350, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -2359,8 +2359,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2387,7 +2387,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2414,16 +2414,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2439,11 +2439,11 @@ }, { "x": 400, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 350, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -2461,15 +2461,15 @@ }, { "x": 375, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 375, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 8, @@ -2493,7 +2493,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -2526,56 +2526,56 @@ "index": 0, "isInternal": false, "x": 400, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 350, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 370, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 380, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 400, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -2603,8 +2603,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2631,7 +2631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2658,16 +2658,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2683,11 +2683,11 @@ }, { "x": 450, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 400, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -2705,15 +2705,15 @@ }, { "x": 425, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 425, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 9, @@ -2737,7 +2737,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -2770,56 +2770,56 @@ "index": 0, "isInternal": false, "x": 450, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 430, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 400, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 420, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 430, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 450, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -2847,8 +2847,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2875,7 +2875,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2902,16 +2902,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -2927,11 +2927,11 @@ }, { "x": 500, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 450, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -2949,15 +2949,15 @@ }, { "x": 475, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 475, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 10, @@ -2981,7 +2981,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -3014,56 +3014,56 @@ "index": 0, "isInternal": false, "x": 500, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 470, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 450, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 470, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 480, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 500, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -3091,8 +3091,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3119,7 +3119,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3146,16 +3146,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -3171,11 +3171,11 @@ }, { "x": 550, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 500, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -3193,15 +3193,15 @@ }, { "x": 525, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 525, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 11, @@ -3225,7 +3225,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -3258,56 +3258,56 @@ "index": 0, "isInternal": false, "x": 550, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 530, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 500, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 520, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 530, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 550, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -3335,8 +3335,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3363,7 +3363,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3390,16 +3390,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -3415,11 +3415,11 @@ }, { "x": 600, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 550, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -3437,15 +3437,15 @@ }, { "x": 575, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 575, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 12, @@ -3469,7 +3469,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -3502,56 +3502,56 @@ "index": 0, "isInternal": false, "x": 600, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 570, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 550, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 570, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 580, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 600, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -3579,8 +3579,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3607,7 +3607,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3634,16 +3634,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -3659,11 +3659,11 @@ }, { "x": 650, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 600, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -3681,15 +3681,15 @@ }, { "x": 625, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 625, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 13, @@ -3713,7 +3713,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -3746,56 +3746,56 @@ "index": 0, "isInternal": false, "x": 650, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 630, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 600, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 620, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 630, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 650, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -3823,8 +3823,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3851,7 +3851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3878,16 +3878,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -3903,11 +3903,11 @@ }, { "x": 700, - "y": 290.732848959517 + "y": 290.73285 }, { "x": 650, - "y": 237.82557824448148 + "y": 237.82558 }, { "category": 1, @@ -3925,15 +3925,15 @@ }, { "x": 675, - "y": 262.82557824448145 + "y": 262.82558 }, { "x": 0, - "y": 0.0043606346096648815 + "y": 0.00436 }, { "x": 675, - "y": 259.9183075294458 + "y": 259.91831 }, { "endCol": 14, @@ -3957,7 +3957,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -3990,56 +3990,56 @@ "index": 0, "isInternal": false, "x": 700, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 680, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 670, - "y": 287.8255782444814 + "y": 287.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 267.8255782444815 + "y": 267.82558 }, { "body": null, "index": 4, "isInternal": false, "x": 650, - "y": 257.8255782444815 + "y": 257.82558 }, { "body": null, "index": 5, "isInternal": false, "x": 670, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 6, "isInternal": false, "x": 680, - "y": 237.82557824448148 + "y": 237.82558 }, { "body": null, "index": 7, "isInternal": false, "x": 700, - "y": 257.8255782444815 + "y": 257.82558 }, { "angle": 0, @@ -4067,8 +4067,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4095,7 +4095,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4122,16 +4122,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -4147,11 +4147,11 @@ }, { "x": 150, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 100, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -4169,15 +4169,15 @@ }, { "x": 125, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 125, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 3, @@ -4201,7 +4201,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -4234,56 +4234,56 @@ "index": 0, "isInternal": false, "x": 150, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 130, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 120, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 120, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 130, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 150, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -4311,8 +4311,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4339,7 +4339,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4366,16 +4366,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -4391,11 +4391,11 @@ }, { "x": 200, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 150, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -4413,15 +4413,15 @@ }, { "x": 175, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 175, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 4, @@ -4445,7 +4445,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -4478,56 +4478,56 @@ "index": 0, "isInternal": false, "x": 200, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 170, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 170, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 180, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 200, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -4555,8 +4555,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4583,7 +4583,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4610,16 +4610,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -4635,11 +4635,11 @@ }, { "x": 250, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 200, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -4657,15 +4657,15 @@ }, { "x": 225, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 225, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 5, @@ -4689,7 +4689,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -4722,56 +4722,56 @@ "index": 0, "isInternal": false, "x": 250, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 200, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 220, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 230, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -4799,8 +4799,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4827,7 +4827,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4854,16 +4854,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -4879,11 +4879,11 @@ }, { "x": 300, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 250, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -4901,15 +4901,15 @@ }, { "x": 275, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 275, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 6, @@ -4933,7 +4933,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -4966,56 +4966,56 @@ "index": 0, "isInternal": false, "x": 300, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 270, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 250, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 270, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 280, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 300, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -5043,8 +5043,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5071,7 +5071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5098,16 +5098,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -5123,11 +5123,11 @@ }, { "x": 350, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 300, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -5145,15 +5145,15 @@ }, { "x": 325, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 325, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 7, @@ -5177,7 +5177,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -5210,56 +5210,56 @@ "index": 0, "isInternal": false, "x": 350, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 330, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 300, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 320, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 330, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 350, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -5287,8 +5287,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5315,7 +5315,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5342,16 +5342,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -5367,11 +5367,11 @@ }, { "x": 400, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 350, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -5389,15 +5389,15 @@ }, { "x": 375, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 375, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 8, @@ -5421,7 +5421,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -5454,56 +5454,56 @@ "index": 0, "isInternal": false, "x": 400, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 350, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 370, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 380, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 400, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -5531,8 +5531,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5559,7 +5559,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5586,16 +5586,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -5611,11 +5611,11 @@ }, { "x": 450, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 400, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -5633,15 +5633,15 @@ }, { "x": 425, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 425, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 9, @@ -5665,7 +5665,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -5698,56 +5698,56 @@ "index": 0, "isInternal": false, "x": 450, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 430, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 400, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 420, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 430, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 450, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -5775,8 +5775,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5803,7 +5803,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5830,16 +5830,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -5855,11 +5855,11 @@ }, { "x": 500, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 450, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -5877,15 +5877,15 @@ }, { "x": 475, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 475, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 10, @@ -5909,7 +5909,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -5942,56 +5942,56 @@ "index": 0, "isInternal": false, "x": 500, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 470, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 450, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 470, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 480, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 500, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -6019,8 +6019,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6047,7 +6047,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6074,16 +6074,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6099,11 +6099,11 @@ }, { "x": 550, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 500, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -6121,15 +6121,15 @@ }, { "x": 525, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 525, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 11, @@ -6153,7 +6153,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -6186,56 +6186,56 @@ "index": 0, "isInternal": false, "x": 550, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 530, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 500, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 520, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 530, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 550, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -6263,8 +6263,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6291,7 +6291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6318,16 +6318,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6343,11 +6343,11 @@ }, { "x": 600, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 550, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -6365,15 +6365,15 @@ }, { "x": 575, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 575, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 12, @@ -6397,7 +6397,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -6430,56 +6430,56 @@ "index": 0, "isInternal": false, "x": 600, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 570, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 550, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 570, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 580, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 600, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -6507,8 +6507,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6535,7 +6535,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6562,16 +6562,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6587,11 +6587,11 @@ }, { "x": 650, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 600, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -6609,15 +6609,15 @@ }, { "x": 625, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 625, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 13, @@ -6641,7 +6641,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -6674,56 +6674,56 @@ "index": 0, "isInternal": false, "x": 650, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 630, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 600, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 620, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 630, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 650, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -6751,8 +6751,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6779,7 +6779,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6806,16 +6806,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -6831,11 +6831,11 @@ }, { "x": 700, - "y": 340.6828510351859 + "y": 340.68285 }, { "x": 650, - "y": 287.7755803201502 + "y": 287.77558 }, { "category": 1, @@ -6853,15 +6853,15 @@ }, { "x": 675, - "y": 312.7755803201502 + "y": 312.77558 }, { "x": 0, - "y": 0.004377931191936242 + "y": 0.00438 }, { "x": 675, - "y": 309.8683096051145 + "y": 309.86831 }, { "endCol": 14, @@ -6885,7 +6885,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -6918,56 +6918,56 @@ "index": 0, "isInternal": false, "x": 700, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 680, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 670, - "y": 337.7755803201502 + "y": 337.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 317.7755803201502 + "y": 317.77558 }, { "body": null, "index": 4, "isInternal": false, "x": 650, - "y": 307.7755803201502 + "y": 307.77558 }, { "body": null, "index": 5, "isInternal": false, "x": 670, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 6, "isInternal": false, "x": 680, - "y": 287.7755803201502 + "y": 287.77558 }, { "body": null, "index": 7, "isInternal": false, "x": 700, - "y": 307.7755803201502 + "y": 307.77558 }, { "angle": 0, @@ -6995,8 +6995,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7023,7 +7023,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7050,16 +7050,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -7075,11 +7075,11 @@ }, { "x": 150, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 100, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -7097,15 +7097,15 @@ }, { "x": 125, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 125, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 3, @@ -7129,7 +7129,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -7162,56 +7162,56 @@ "index": 0, "isInternal": false, "x": 150, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 130, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 120, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 120, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 130, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 150, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -7239,8 +7239,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7267,7 +7267,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7294,16 +7294,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -7319,11 +7319,11 @@ }, { "x": 200, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 150, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -7341,15 +7341,15 @@ }, { "x": 175, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 175, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 4, @@ -7373,7 +7373,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -7406,56 +7406,56 @@ "index": 0, "isInternal": false, "x": 200, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 170, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 170, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 180, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 200, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -7483,8 +7483,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7511,7 +7511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7538,16 +7538,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -7563,11 +7563,11 @@ }, { "x": 250, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 200, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -7585,15 +7585,15 @@ }, { "x": 225, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 225, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 5, @@ -7617,7 +7617,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -7650,56 +7650,56 @@ "index": 0, "isInternal": false, "x": 250, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 200, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 220, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 230, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -7727,8 +7727,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7755,7 +7755,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7782,16 +7782,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -7807,11 +7807,11 @@ }, { "x": 300, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 250, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -7829,15 +7829,15 @@ }, { "x": 275, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 275, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 6, @@ -7861,7 +7861,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -7894,56 +7894,56 @@ "index": 0, "isInternal": false, "x": 300, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 270, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 250, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 270, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 280, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 300, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -7971,8 +7971,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7999,7 +7999,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8026,16 +8026,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8051,11 +8051,11 @@ }, { "x": 350, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 300, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -8073,15 +8073,15 @@ }, { "x": 325, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 325, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 7, @@ -8105,7 +8105,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -8138,56 +8138,56 @@ "index": 0, "isInternal": false, "x": 350, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 330, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 300, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 320, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 330, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 350, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -8215,8 +8215,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8243,7 +8243,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8270,16 +8270,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8295,11 +8295,11 @@ }, { "x": 400, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 350, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -8317,15 +8317,15 @@ }, { "x": 375, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 375, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 8, @@ -8349,7 +8349,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -8382,56 +8382,56 @@ "index": 0, "isInternal": false, "x": 400, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 350, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 370, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 380, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 400, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -8459,8 +8459,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8487,7 +8487,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8514,16 +8514,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8539,11 +8539,11 @@ }, { "x": 450, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 400, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -8561,15 +8561,15 @@ }, { "x": 425, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 425, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 9, @@ -8593,7 +8593,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -8626,56 +8626,56 @@ "index": 0, "isInternal": false, "x": 450, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 430, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 400, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 420, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 430, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 450, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -8703,8 +8703,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8731,7 +8731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8758,16 +8758,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8783,11 +8783,11 @@ }, { "x": 500, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 450, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -8805,15 +8805,15 @@ }, { "x": 475, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 475, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 10, @@ -8837,7 +8837,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -8870,56 +8870,56 @@ "index": 0, "isInternal": false, "x": 500, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 470, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 450, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 470, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 480, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 500, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -8947,8 +8947,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -8975,7 +8975,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9002,16 +9002,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9027,11 +9027,11 @@ }, { "x": 550, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 500, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -9049,15 +9049,15 @@ }, { "x": 525, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 525, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 11, @@ -9081,7 +9081,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -9114,56 +9114,56 @@ "index": 0, "isInternal": false, "x": 550, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 530, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 500, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 520, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 530, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 550, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -9191,8 +9191,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 106, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -9219,7 +9219,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9246,16 +9246,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9271,11 +9271,11 @@ }, { "x": 600, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 550, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -9293,15 +9293,15 @@ }, { "x": 575, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 575, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 12, @@ -9325,7 +9325,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -9358,56 +9358,56 @@ "index": 0, "isInternal": false, "x": 600, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 570, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 550, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 570, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 580, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 600, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -9435,8 +9435,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -9463,7 +9463,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9490,16 +9490,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9515,11 +9515,11 @@ }, { "x": 650, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 600, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -9537,15 +9537,15 @@ }, { "x": 625, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 625, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 13, @@ -9569,7 +9569,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -9602,56 +9602,56 @@ "index": 0, "isInternal": false, "x": 650, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 630, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 600, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 620, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 630, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 650, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -9679,8 +9679,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 112, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -9707,7 +9707,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9734,16 +9734,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -9759,11 +9759,11 @@ }, { "x": 700, - "y": 390.6328531108547 + "y": 390.63285 }, { "x": 650, - "y": 337.725582395819 + "y": 337.72558 }, { "category": 1, @@ -9781,15 +9781,15 @@ }, { "x": 675, - "y": 362.725582395819 + "y": 362.72558 }, { "x": 0, - "y": 0.004395227774375657 + "y": 0.0044 }, { "x": 675, - "y": 359.8183116807833 + "y": 359.81831 }, { "endCol": 14, @@ -9813,7 +9813,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -9846,56 +9846,56 @@ "index": 0, "isInternal": false, "x": 700, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 680, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 670, - "y": 387.725582395819 + "y": 387.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 367.725582395819 + "y": 367.72558 }, { "body": null, "index": 4, "isInternal": false, "x": 650, - "y": 357.725582395819 + "y": 357.72558 }, { "body": null, "index": 5, "isInternal": false, "x": 670, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 6, "isInternal": false, "x": 680, - "y": 337.725582395819 + "y": 337.72558 }, { "body": null, "index": 7, "isInternal": false, "x": 700, - "y": 357.725582395819 + "y": 357.72558 }, { "angle": 0, @@ -9923,8 +9923,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -9951,7 +9951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9978,16 +9978,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10003,11 +10003,11 @@ }, { "x": 150, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 100, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -10025,7 +10025,7 @@ }, { "x": 125, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -10033,7 +10033,7 @@ }, { "x": 125, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 3, @@ -10057,7 +10057,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10090,56 +10090,56 @@ "index": 0, "isInternal": false, "x": 150, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 130, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 120, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 120, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 130, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 150, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -10167,8 +10167,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10195,7 +10195,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10222,16 +10222,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10247,11 +10247,11 @@ }, { "x": 200, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -10269,7 +10269,7 @@ }, { "x": 175, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -10277,7 +10277,7 @@ }, { "x": 175, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 4, @@ -10301,7 +10301,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10334,56 +10334,56 @@ "index": 0, "isInternal": false, "x": 200, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 170, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 170, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 180, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 200, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -10411,8 +10411,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 121, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10439,7 +10439,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10466,16 +10466,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10491,11 +10491,11 @@ }, { "x": 250, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 200, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -10513,7 +10513,7 @@ }, { "x": 225, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -10521,7 +10521,7 @@ }, { "x": 225, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 5, @@ -10545,7 +10545,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10578,56 +10578,56 @@ "index": 0, "isInternal": false, "x": 250, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 200, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 220, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 230, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -10655,8 +10655,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 124, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10683,7 +10683,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10710,16 +10710,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10735,11 +10735,11 @@ }, { "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 250, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -10757,7 +10757,7 @@ }, { "x": 275, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -10765,7 +10765,7 @@ }, { "x": 275, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 6, @@ -10789,7 +10789,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10822,56 +10822,56 @@ "index": 0, "isInternal": false, "x": 300, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 270, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 250, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 270, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 280, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 300, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -10899,8 +10899,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 127, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -10927,7 +10927,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10954,16 +10954,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -10979,11 +10979,11 @@ }, { "x": 350, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 300, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -11001,7 +11001,7 @@ }, { "x": 325, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -11009,7 +11009,7 @@ }, { "x": 325, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 7, @@ -11033,7 +11033,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11066,56 +11066,56 @@ "index": 0, "isInternal": false, "x": 350, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 330, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 300, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 320, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 330, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 350, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -11143,8 +11143,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 130, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -11171,7 +11171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11198,16 +11198,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -11223,11 +11223,11 @@ }, { "x": 400, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 350, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -11245,7 +11245,7 @@ }, { "x": 375, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -11253,7 +11253,7 @@ }, { "x": 375, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 8, @@ -11277,7 +11277,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11310,56 +11310,56 @@ "index": 0, "isInternal": false, "x": 400, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 350, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 370, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 380, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 400, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -11387,8 +11387,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 133, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -11415,7 +11415,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11442,16 +11442,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -11467,11 +11467,11 @@ }, { "x": 450, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 400, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -11489,7 +11489,7 @@ }, { "x": 425, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -11497,7 +11497,7 @@ }, { "x": 425, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 9, @@ -11521,7 +11521,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11554,56 +11554,56 @@ "index": 0, "isInternal": false, "x": 450, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 430, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 400, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 420, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 430, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 450, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -11631,8 +11631,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 136, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -11659,7 +11659,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11686,16 +11686,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -11711,11 +11711,11 @@ }, { "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 450, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -11733,7 +11733,7 @@ }, { "x": 475, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -11741,7 +11741,7 @@ }, { "x": 475, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 10, @@ -11765,7 +11765,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11798,56 +11798,56 @@ "index": 0, "isInternal": false, "x": 500, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 470, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 450, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 470, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 480, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 500, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -11875,8 +11875,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 139, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -11903,7 +11903,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11930,16 +11930,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -11955,11 +11955,11 @@ }, { "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 500, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -11977,7 +11977,7 @@ }, { "x": 525, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -11985,7 +11985,7 @@ }, { "x": 525, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 11, @@ -12009,7 +12009,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12042,56 +12042,56 @@ "index": 0, "isInternal": false, "x": 550, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 530, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 500, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 520, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 530, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 550, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -12119,8 +12119,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 142, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -12147,7 +12147,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12174,16 +12174,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -12199,11 +12199,11 @@ }, { "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 550, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -12221,7 +12221,7 @@ }, { "x": 575, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -12229,7 +12229,7 @@ }, { "x": 575, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 12, @@ -12253,7 +12253,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12286,56 +12286,56 @@ "index": 0, "isInternal": false, "x": 600, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 570, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 550, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 570, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 580, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 600, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -12363,8 +12363,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 145, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -12391,7 +12391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12418,16 +12418,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -12443,11 +12443,11 @@ }, { "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 600, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -12465,7 +12465,7 @@ }, { "x": 625, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -12473,7 +12473,7 @@ }, { "x": 625, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 13, @@ -12497,7 +12497,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12530,56 +12530,56 @@ "index": 0, "isInternal": false, "x": 650, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 630, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 600, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 620, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 630, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 650, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -12607,8 +12607,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 148, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -12635,7 +12635,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12662,16 +12662,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -12687,11 +12687,11 @@ }, { "x": 700, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 650, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -12709,7 +12709,7 @@ }, { "x": 675, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 0, @@ -12717,7 +12717,7 @@ }, { "x": 675, - "y": 409.8284840519894 + "y": 409.82848 }, { "endCol": 14, @@ -12741,7 +12741,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12774,56 +12774,56 @@ "index": 0, "isInternal": false, "x": 700, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 680, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 670, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 650, - "y": 407.73575476702496 + "y": 407.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 670, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 680, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 700, - "y": 407.73575476702496 + "y": 407.73575 }, { "angle": 0, @@ -12851,8 +12851,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 151, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -12879,7 +12879,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12906,16 +12906,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -12931,11 +12931,11 @@ }, { "x": 150, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 100, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -12953,7 +12953,7 @@ }, { "x": 125, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -12961,7 +12961,7 @@ }, { "x": 125, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 3, @@ -12985,7 +12985,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13018,56 +13018,56 @@ "index": 0, "isInternal": false, "x": 150, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 130, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 120, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 120, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 130, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 150, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -13095,8 +13095,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 154, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -13123,7 +13123,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13150,16 +13150,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13175,11 +13175,11 @@ }, { "x": 200, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 150, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -13197,7 +13197,7 @@ }, { "x": 175, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -13205,7 +13205,7 @@ }, { "x": 175, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 4, @@ -13229,7 +13229,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13262,56 +13262,56 @@ "index": 0, "isInternal": false, "x": 200, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 170, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 170, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 180, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 200, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -13339,8 +13339,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 157, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -13367,7 +13367,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13394,16 +13394,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13419,11 +13419,11 @@ }, { "x": 250, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 200, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -13441,7 +13441,7 @@ }, { "x": 225, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -13449,7 +13449,7 @@ }, { "x": 225, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 5, @@ -13473,7 +13473,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13506,56 +13506,56 @@ "index": 0, "isInternal": false, "x": 250, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 200, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 220, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 230, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -13583,8 +13583,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 160, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -13611,7 +13611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13638,16 +13638,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13663,11 +13663,11 @@ }, { "x": 300, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 250, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -13685,7 +13685,7 @@ }, { "x": 275, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -13693,7 +13693,7 @@ }, { "x": 275, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 6, @@ -13717,7 +13717,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13750,56 +13750,56 @@ "index": 0, "isInternal": false, "x": 300, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 270, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 250, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 270, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 280, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 300, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -13827,8 +13827,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 163, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -13855,7 +13855,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13882,16 +13882,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -13907,11 +13907,11 @@ }, { "x": 350, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -13929,7 +13929,7 @@ }, { "x": 325, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -13937,7 +13937,7 @@ }, { "x": 325, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 7, @@ -13961,7 +13961,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13994,56 +13994,56 @@ "index": 0, "isInternal": false, "x": 350, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 330, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 300, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 320, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 330, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 350, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -14071,8 +14071,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 166, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14099,7 +14099,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14126,16 +14126,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -14151,11 +14151,11 @@ }, { "x": 400, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 350, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -14173,7 +14173,7 @@ }, { "x": 375, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -14181,7 +14181,7 @@ }, { "x": 375, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 8, @@ -14205,7 +14205,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -14238,56 +14238,56 @@ "index": 0, "isInternal": false, "x": 400, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 350, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 370, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 380, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 400, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -14315,8 +14315,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 169, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14343,7 +14343,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14370,16 +14370,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -14395,11 +14395,11 @@ }, { "x": 450, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 400, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -14417,7 +14417,7 @@ }, { "x": 425, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -14425,7 +14425,7 @@ }, { "x": 425, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 9, @@ -14449,7 +14449,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -14482,56 +14482,56 @@ "index": 0, "isInternal": false, "x": 450, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 430, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 400, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 420, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 430, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 450, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -14559,8 +14559,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 172, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14587,7 +14587,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14614,16 +14614,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -14639,11 +14639,11 @@ }, { "x": 500, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 450, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -14661,7 +14661,7 @@ }, { "x": 475, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -14669,7 +14669,7 @@ }, { "x": 475, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 10, @@ -14693,7 +14693,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -14726,56 +14726,56 @@ "index": 0, "isInternal": false, "x": 500, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 470, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 450, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 470, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 480, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 500, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -14803,8 +14803,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 175, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -14831,7 +14831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14858,16 +14858,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -14883,11 +14883,11 @@ }, { "x": 550, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -14905,7 +14905,7 @@ }, { "x": 525, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -14913,7 +14913,7 @@ }, { "x": 525, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 11, @@ -14937,7 +14937,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -14970,56 +14970,56 @@ "index": 0, "isInternal": false, "x": 550, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 530, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 500, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 520, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 530, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 550, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -15047,8 +15047,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 178, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -15075,7 +15075,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15102,16 +15102,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -15127,11 +15127,11 @@ }, { "x": 600, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -15149,7 +15149,7 @@ }, { "x": 575, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -15157,7 +15157,7 @@ }, { "x": 575, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 12, @@ -15181,7 +15181,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -15214,56 +15214,56 @@ "index": 0, "isInternal": false, "x": 600, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 570, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 550, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 570, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 580, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 600, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -15291,8 +15291,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 181, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -15319,7 +15319,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15346,16 +15346,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -15371,11 +15371,11 @@ }, { "x": 650, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -15393,7 +15393,7 @@ }, { "x": 625, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -15401,7 +15401,7 @@ }, { "x": 625, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 13, @@ -15425,7 +15425,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -15458,56 +15458,56 @@ "index": 0, "isInternal": false, "x": 650, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 630, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 600, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 620, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 630, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 650, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -15535,8 +15535,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 184, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -15563,7 +15563,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15590,16 +15590,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -15615,11 +15615,11 @@ }, { "x": 700, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -15637,7 +15637,7 @@ }, { "x": 675, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 0, @@ -15645,7 +15645,7 @@ }, { "x": 675, - "y": 459.8284840519894 + "y": 459.82848 }, { "endCol": 14, @@ -15669,7 +15669,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -15702,56 +15702,56 @@ "index": 0, "isInternal": false, "x": 700, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 680, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 670, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 650, - "y": 457.73575476702496 + "y": 457.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 670, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 680, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 700, - "y": 457.73575476702496 + "y": 457.73575 }, { "angle": 0, @@ -15779,8 +15779,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 187, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -15807,7 +15807,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15834,16 +15834,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -15859,11 +15859,11 @@ }, { "x": 150, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 100, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -15881,7 +15881,7 @@ }, { "x": 125, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -15889,7 +15889,7 @@ }, { "x": 125, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 3, @@ -15913,7 +15913,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -15946,56 +15946,56 @@ "index": 0, "isInternal": false, "x": 150, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 130, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 120, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 120, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 130, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 150, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -16023,8 +16023,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 190, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -16051,7 +16051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16078,16 +16078,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -16103,11 +16103,11 @@ }, { "x": 200, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 150, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -16125,7 +16125,7 @@ }, { "x": 175, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -16133,7 +16133,7 @@ }, { "x": 175, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 4, @@ -16157,7 +16157,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16190,56 +16190,56 @@ "index": 0, "isInternal": false, "x": 200, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 170, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 170, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 180, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 200, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -16267,8 +16267,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 193, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -16295,7 +16295,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16322,16 +16322,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -16347,11 +16347,11 @@ }, { "x": 250, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 200, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -16369,7 +16369,7 @@ }, { "x": 225, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -16377,7 +16377,7 @@ }, { "x": 225, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 5, @@ -16401,7 +16401,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16434,56 +16434,56 @@ "index": 0, "isInternal": false, "x": 250, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 200, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 220, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 230, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -16511,8 +16511,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 196, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -16539,7 +16539,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16566,16 +16566,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -16591,11 +16591,11 @@ }, { "x": 300, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 250, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -16613,7 +16613,7 @@ }, { "x": 275, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -16621,7 +16621,7 @@ }, { "x": 275, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 6, @@ -16645,7 +16645,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16678,56 +16678,56 @@ "index": 0, "isInternal": false, "x": 300, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 280, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 270, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 250, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 270, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 280, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 300, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -16755,8 +16755,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 199, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -16783,7 +16783,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16810,16 +16810,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -16835,11 +16835,11 @@ }, { "x": 350, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 300, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -16857,7 +16857,7 @@ }, { "x": 325, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -16865,7 +16865,7 @@ }, { "x": 325, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 7, @@ -16889,7 +16889,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16922,56 +16922,56 @@ "index": 0, "isInternal": false, "x": 350, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 330, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 300, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 320, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 330, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 350, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -16999,8 +16999,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 202, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -17027,7 +17027,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17054,16 +17054,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -17079,11 +17079,11 @@ }, { "x": 400, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 350, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -17101,7 +17101,7 @@ }, { "x": 375, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -17109,7 +17109,7 @@ }, { "x": 375, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 8, @@ -17133,7 +17133,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17166,56 +17166,56 @@ "index": 0, "isInternal": false, "x": 400, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 350, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 370, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 380, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 400, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -17243,8 +17243,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 205, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -17271,7 +17271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17298,16 +17298,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -17323,11 +17323,11 @@ }, { "x": 450, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 400, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -17345,7 +17345,7 @@ }, { "x": 425, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -17353,7 +17353,7 @@ }, { "x": 425, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 9, @@ -17377,7 +17377,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17410,56 +17410,56 @@ "index": 0, "isInternal": false, "x": 450, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 430, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 400, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 420, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 430, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 450, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -17487,8 +17487,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 208, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -17515,7 +17515,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17542,16 +17542,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -17567,11 +17567,11 @@ }, { "x": 500, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 450, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -17589,7 +17589,7 @@ }, { "x": 475, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -17597,7 +17597,7 @@ }, { "x": 475, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 10, @@ -17621,7 +17621,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17654,56 +17654,56 @@ "index": 0, "isInternal": false, "x": 500, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 470, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 450, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 470, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 480, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 500, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -17731,8 +17731,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 211, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -17759,7 +17759,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17786,16 +17786,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -17811,11 +17811,11 @@ }, { "x": 550, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 500, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -17833,7 +17833,7 @@ }, { "x": 525, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -17841,7 +17841,7 @@ }, { "x": 525, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 11, @@ -17865,7 +17865,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17898,56 +17898,56 @@ "index": 0, "isInternal": false, "x": 550, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 530, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 500, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 520, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 530, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 550, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -17975,8 +17975,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 214, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -18003,7 +18003,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18030,16 +18030,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -18055,11 +18055,11 @@ }, { "x": 600, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 550, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -18077,7 +18077,7 @@ }, { "x": 575, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -18085,7 +18085,7 @@ }, { "x": 575, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 12, @@ -18109,7 +18109,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18142,56 +18142,56 @@ "index": 0, "isInternal": false, "x": 600, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 570, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 550, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 570, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 580, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 600, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -18219,8 +18219,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 217, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -18247,7 +18247,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18274,16 +18274,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -18299,11 +18299,11 @@ }, { "x": 650, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 600, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -18321,7 +18321,7 @@ }, { "x": 625, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -18329,7 +18329,7 @@ }, { "x": 625, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 13, @@ -18353,7 +18353,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18386,56 +18386,56 @@ "index": 0, "isInternal": false, "x": 650, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 630, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 600, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 620, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 630, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 650, - "y": 507.73575476702496 + "y": 507.73575 }, { "angle": 0, @@ -18463,8 +18463,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 220, - "inertia": 866.6666666666666, - "inverseInertia": 0.001153846153846154, + "inertia": 866.66667, + "inverseInertia": 0.00115, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -18491,7 +18491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18518,16 +18518,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -18543,11 +18543,11 @@ }, { "x": 700, - "y": 537.7357547670252 + "y": 537.73575 }, { "x": 650, - "y": 487.73575476702496 + "y": 487.73575 }, { "category": 1, @@ -18565,7 +18565,7 @@ }, { "x": 675, - "y": 512.7357547670249 + "y": 512.73575 }, { "x": 0, @@ -18573,7 +18573,7 @@ }, { "x": 675, - "y": 509.8284840519894 + "y": 509.82848 }, { "endCol": 14, @@ -18597,7 +18597,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18630,56 +18630,56 @@ "index": 0, "isInternal": false, "x": 700, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 680, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 670, - "y": 537.7357547670252 + "y": 537.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 650, - "y": 507.73575476702496 + "y": 507.73575 }, { "body": null, "index": 5, "isInternal": false, "x": 670, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 6, "isInternal": false, "x": 680, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 700, - "y": 507.73575476702496 + "y": 507.73575 }, [], [], diff --git a/test/browser/refs/concave/concave-0.json b/test/browser/refs/concave/concave-0.json index c725d23d..aab703af 100644 --- a/test/browser/refs/concave/concave-0.json +++ b/test/browser/refs/concave/concave-0.json @@ -972,9 +972,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1027,24 +1027,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -1056,11 +1056,11 @@ }, { "x": 150, - "y": 145.2517006802721 + "y": 145.2517 }, { "x": 50, - "y": 45.251700680272116 + "y": 45.2517 }, { "category": 1, @@ -1127,35 +1127,35 @@ "index": 0, "isInternal": false, "x": 150, - "y": 83.25170068027211 + "y": 83.2517 }, { "body": null, "index": 1, "isInternal": false, "x": 132, - "y": 145.2517006802721 + "y": 145.2517 }, { "body": null, "index": 2, "isInternal": false, "x": 68, - "y": 145.2517006802721 + "y": 145.2517 }, { "body": null, "index": 3, "isInternal": false, "x": 50, - "y": 83.25170068027211 + "y": 83.2517 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 45.251700680272116 + "y": 45.2517 }, { "angle": 0, @@ -1183,9 +1183,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1238,24 +1238,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -1267,11 +1267,11 @@ }, { "x": 260, - "y": 145.2517006802721 + "y": 145.2517 }, { "x": 160, - "y": 45.251700680272116 + "y": 45.2517 }, { "category": 1, @@ -1338,35 +1338,35 @@ "index": 0, "isInternal": false, "x": 260, - "y": 83.25170068027211 + "y": 83.2517 }, { "body": null, "index": 1, "isInternal": false, "x": 242, - "y": 145.2517006802721 + "y": 145.2517 }, { "body": null, "index": 2, "isInternal": false, "x": 178, - "y": 145.2517006802721 + "y": 145.2517 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 83.25170068027211 + "y": 83.2517 }, { "body": null, "index": 4, "isInternal": false, "x": 210, - "y": 45.251700680272116 + "y": 45.2517 }, { "angle": 0, @@ -1394,9 +1394,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1449,20 +1449,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -1477,11 +1477,11 @@ } }, { - "x": 365.4761904761905, + "x": 365.47619, "y": 150 }, { - "x": 265.4761904761905, + "x": 265.47619, "y": 50 }, { @@ -1548,35 +1548,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 365.4761904761905, + "x": 365.47619, "y": 130 }, { "body": null, "index": 1, "isInternal": false, - "x": 305.4761904761905, + "x": 305.47619, "y": 150 }, { "body": null, "index": 2, "isInternal": false, - "x": 265.4761904761905, + "x": 265.47619, "y": 100 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.4761904761905, + "x": 305.47619, "y": 50 }, { "body": null, "index": 4, "isInternal": false, - "x": 365.4761904761905, + "x": 365.47619, "y": 70 }, { @@ -1605,9 +1605,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 634.4194592174847, - "inverseInertia": 0.0015762442110988134, - "inverseMass": 0.45126353790613716, + "inertia": 634.41946, + "inverseInertia": 0.00158, + "inverseMass": 0.45126, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1669,32 +1669,32 @@ } ], { - "x": 0.9998656545973652, - "y": 0.01639124023930107 + "x": 0.99987, + "y": 0.01639 }, { - "x": 0.04993761694389223, - "y": 0.9987523388778445 + "x": 0.04994, + "y": 0.99875 }, { - "x": -0.2873478855663454, - "y": 0.9578262852211513 + "x": -0.28735, + "y": 0.95783 }, { - "x": -0.8858315352801555, - "y": 0.4640069946705576 + "x": -0.88583, + "y": 0.46401 }, { "x": 1, "y": 0 }, { - "x": -0.9728062146853669, - "y": -0.23162052730603974 + "x": -0.97281, + "y": -0.23162 }, { - "x": -0.52999894000318, - "y": -0.847998304005088 + "x": -0.53, + "y": -0.848 }, { "x": 0, @@ -1709,12 +1709,12 @@ } }, { - "x": 430.21724041602204, - "y": 128.34250902527077 + "x": 430.21724, + "y": 128.34251 }, { - "x": 378.21724041602204, - "y": 50.342509025270765 + "x": 378.21724, + "y": 50.34251 }, { "category": 1, @@ -1731,7 +1731,7 @@ "y": 0 }, { - "x": 401.4761904761905, + "x": 401.47619, "y": 89 }, { @@ -1739,7 +1739,7 @@ "y": 0 }, { - "x": 401.4761904761905, + "x": 401.47619, "y": 89 }, { @@ -1792,64 +1792,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 430.21724041602204, - "y": 66.34250902527077 + "x": 430.21724, + "y": 66.34251 }, { "body": null, "index": 1, "isInternal": false, - "x": 429.21724041602204, - "y": 127.34250902527077 + "x": 429.21724, + "y": 127.34251 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.21724041602204, - "y": 128.34250902527077 + "x": 409.21724, + "y": 128.34251 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.21724041602204, - "y": 122.34250902527077 + "x": 389.21724, + "y": 122.34251 }, { "body": null, "index": 4, "isInternal": false, - "x": 378.21724041602204, - "y": 101.34250902527077 + "x": 378.21724, + "y": 101.34251 }, { "body": null, "index": 5, "isInternal": false, - "x": 378.21724041602204, - "y": 81.34250902527077 + "x": 378.21724, + "y": 81.34251 }, { "body": null, "index": 6, "isInternal": false, - "x": 383.21724041602204, - "y": 60.342509025270765 + "x": 383.21724, + "y": 60.34251 }, { "body": null, "index": 7, "isInternal": false, - "x": 399.21724041602204, - "y": 50.342509025270765 + "x": 399.21724, + "y": 50.34251 }, { "body": null, "index": 8, "isInternal": false, - "x": 430.21724041602204, - "y": 50.342509025270765 + "x": 430.21724, + "y": 50.34251 }, { "angle": 0, @@ -1877,9 +1877,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1932,20 +1932,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -1960,11 +1960,11 @@ } }, { - "x": 535.6934308922125, + "x": 535.69343, "y": 150 }, { - "x": 435.6934308922125, + "x": 435.69343, "y": 50 }, { @@ -1982,7 +1982,7 @@ "y": 0 }, { - "x": 490.21724041602204, + "x": 490.21724, "y": 100 }, { @@ -1990,7 +1990,7 @@ "y": 0 }, { - "x": 490.21724041602204, + "x": 490.21724, "y": 100 }, { @@ -2031,35 +2031,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 535.6934308922125, + "x": 535.69343, "y": 130 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.6934308922125, + "x": 475.69343, "y": 150 }, { "body": null, "index": 2, "isInternal": false, - "x": 435.6934308922125, + "x": 435.69343, "y": 100 }, { "body": null, "index": 3, "isInternal": false, - "x": 475.6934308922125, + "x": 475.69343, "y": 50 }, { "body": null, "index": 4, "isInternal": false, - "x": 535.6934308922125, + "x": 535.69343, "y": 70 }, { @@ -2088,9 +2088,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 634.4194592174847, - "inverseInertia": 0.0015762442110988134, - "inverseMass": 0.45126353790613716, + "inertia": 634.41946, + "inverseInertia": 0.00158, + "inverseMass": 0.45126, "isSleeping": false, "isStatic": false, "label": "Body", @@ -2152,32 +2152,32 @@ } ], { - "x": 0.9998656545973652, - "y": 0.01639124023930107 + "x": 0.99987, + "y": 0.01639 }, { - "x": 0.04993761694389223, - "y": 0.9987523388778445 + "x": 0.04994, + "y": 0.99875 }, { - "x": -0.2873478855663454, - "y": 0.9578262852211513 + "x": -0.28735, + "y": 0.95783 }, { - "x": -0.8858315352801555, - "y": 0.4640069946705576 + "x": -0.88583, + "y": 0.46401 }, { "x": 1, "y": 0 }, { - "x": -0.9728062146853669, - "y": -0.23162052730603974 + "x": -0.97281, + "y": -0.23162 }, { - "x": -0.52999894000318, - "y": -0.847998304005088 + "x": -0.53, + "y": -0.848 }, { "x": 0, @@ -2192,12 +2192,12 @@ } }, { - "x": 600.4344808320441, - "y": 128.34250902527077 + "x": 600.43448, + "y": 128.34251 }, { - "x": 548.4344808320441, - "y": 50.342509025270765 + "x": 548.43448, + "y": 50.34251 }, { "category": 1, @@ -2214,7 +2214,7 @@ "y": 0 }, { - "x": 571.6934308922125, + "x": 571.69343, "y": 89 }, { @@ -2222,7 +2222,7 @@ "y": 0 }, { - "x": 571.6934308922125, + "x": 571.69343, "y": 89 }, { @@ -2275,64 +2275,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 600.4344808320441, - "y": 66.34250902527077 + "x": 600.43448, + "y": 66.34251 }, { "body": null, "index": 1, "isInternal": false, - "x": 599.4344808320441, - "y": 127.34250902527077 + "x": 599.43448, + "y": 127.34251 }, { "body": null, "index": 2, "isInternal": false, - "x": 579.4344808320441, - "y": 128.34250902527077 + "x": 579.43448, + "y": 128.34251 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.4344808320441, - "y": 122.34250902527077 + "x": 559.43448, + "y": 122.34251 }, { "body": null, "index": 4, "isInternal": false, - "x": 548.4344808320441, - "y": 101.34250902527077 + "x": 548.43448, + "y": 101.34251 }, { "body": null, "index": 5, "isInternal": false, - "x": 548.4344808320441, - "y": 81.34250902527077 + "x": 548.43448, + "y": 81.34251 }, { "body": null, "index": 6, "isInternal": false, - "x": 553.4344808320441, - "y": 60.342509025270765 + "x": 553.43448, + "y": 60.34251 }, { "body": null, "index": 7, "isInternal": false, - "x": 569.4344808320441, - "y": 50.342509025270765 + "x": 569.43448, + "y": 50.34251 }, { "body": null, "index": 8, "isInternal": false, - "x": 600.4344808320441, - "y": 50.342509025270765 + "x": 600.43448, + "y": 50.34251 }, { "angle": 0, @@ -2360,9 +2360,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -2416,12 +2416,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -2564,9 +2564,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -2620,12 +2620,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -2768,9 +2768,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -2823,24 +2823,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -2852,11 +2852,11 @@ }, { "x": 370, - "y": 255.2517006802721 + "y": 255.2517 }, { "x": 270, - "y": 155.2517006802721 + "y": 155.2517 }, { "category": 1, @@ -2923,35 +2923,35 @@ "index": 0, "isInternal": false, "x": 370, - "y": 193.2517006802721 + "y": 193.2517 }, { "body": null, "index": 1, "isInternal": false, "x": 352, - "y": 255.2517006802721 + "y": 255.2517 }, { "body": null, "index": 2, "isInternal": false, "x": 288, - "y": 255.2517006802721 + "y": 255.2517 }, { "body": null, "index": 3, "isInternal": false, "x": 270, - "y": 193.2517006802721 + "y": 193.2517 }, { "body": null, "index": 4, "isInternal": false, "x": 320, - "y": 155.2517006802721 + "y": 155.2517 }, { "angle": 0, @@ -2979,9 +2979,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3034,24 +3034,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -3063,11 +3063,11 @@ }, { "x": 480, - "y": 255.2517006802721 + "y": 255.2517 }, { "x": 380, - "y": 155.2517006802721 + "y": 155.2517 }, { "category": 1, @@ -3134,35 +3134,35 @@ "index": 0, "isInternal": false, "x": 480, - "y": 193.2517006802721 + "y": 193.2517 }, { "body": null, "index": 1, "isInternal": false, "x": 462, - "y": 255.2517006802721 + "y": 255.2517 }, { "body": null, "index": 2, "isInternal": false, "x": 398, - "y": 255.2517006802721 + "y": 255.2517 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 193.2517006802721 + "y": 193.2517 }, { "body": null, "index": 4, "isInternal": false, "x": 430, - "y": 155.2517006802721 + "y": 155.2517 }, { "angle": 0, @@ -3190,9 +3190,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3245,20 +3245,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -3273,11 +3273,11 @@ } }, { - "x": 585.4761904761905, + "x": 585.47619, "y": 260 }, { - "x": 485.4761904761905, + "x": 485.47619, "y": 160 }, { @@ -3344,35 +3344,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 585.4761904761905, + "x": 585.47619, "y": 240 }, { "body": null, "index": 1, "isInternal": false, - "x": 525.4761904761905, + "x": 525.47619, "y": 260 }, { "body": null, "index": 2, "isInternal": false, - "x": 485.4761904761905, + "x": 485.47619, "y": 210 }, { "body": null, "index": 3, "isInternal": false, - "x": 525.4761904761905, + "x": 525.47619, "y": 160 }, { "body": null, "index": 4, "isInternal": false, - "x": 585.4761904761905, + "x": 585.47619, "y": 180 }, { @@ -3401,9 +3401,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3456,20 +3456,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -3484,11 +3484,11 @@ } }, { - "x": 690.952380952381, + "x": 690.95238, "y": 260 }, { - "x": 590.952380952381, + "x": 590.95238, "y": 160 }, { @@ -3506,7 +3506,7 @@ "y": 0 }, { - "x": 645.4761904761905, + "x": 645.47619, "y": 210 }, { @@ -3514,7 +3514,7 @@ "y": 0 }, { - "x": 645.4761904761905, + "x": 645.47619, "y": 210 }, { @@ -3555,35 +3555,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 690.952380952381, + "x": 690.95238, "y": 240 }, { "body": null, "index": 1, "isInternal": false, - "x": 630.952380952381, + "x": 630.95238, "y": 260 }, { "body": null, "index": 2, "isInternal": false, - "x": 590.952380952381, + "x": 590.95238, "y": 210 }, { "body": null, "index": 3, "isInternal": false, - "x": 630.952380952381, + "x": 630.95238, "y": 160 }, { "body": null, "index": 4, "isInternal": false, - "x": 690.952380952381, + "x": 690.95238, "y": 180 }, { @@ -3612,9 +3612,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3668,12 +3668,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -3816,9 +3816,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3871,20 +3871,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -3899,11 +3899,11 @@ } }, { - "x": 255.47619047619048, + "x": 255.47619, "y": 370 }, { - "x": 155.47619047619048, + "x": 155.47619, "y": 270 }, { @@ -3970,35 +3970,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.47619047619048, + "x": 255.47619, "y": 350 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.47619047619048, + "x": 195.47619, "y": 370 }, { "body": null, "index": 2, "isInternal": false, - "x": 155.47619047619048, + "x": 155.47619, "y": 320 }, { "body": null, "index": 3, "isInternal": false, - "x": 195.47619047619048, + "x": 195.47619, "y": 270 }, { "body": null, "index": 4, "isInternal": false, - "x": 255.47619047619048, + "x": 255.47619, "y": 290 }, { @@ -4027,9 +4027,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4082,24 +4082,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -4110,12 +4110,12 @@ } }, { - "x": 365.4761904761905, - "y": 365.2517006802721 + "x": 365.47619, + "y": 365.2517 }, { - "x": 265.4761904761905, - "y": 265.2517006802721 + "x": 265.47619, + "y": 265.2517 }, { "category": 1, @@ -4132,7 +4132,7 @@ "y": 0 }, { - "x": 315.4761904761905, + "x": 315.47619, "y": 320 }, { @@ -4140,7 +4140,7 @@ "y": 0 }, { - "x": 315.4761904761905, + "x": 315.47619, "y": 320 }, { @@ -4181,36 +4181,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 365.4761904761905, - "y": 303.2517006802721 + "x": 365.47619, + "y": 303.2517 }, { "body": null, "index": 1, "isInternal": false, - "x": 347.4761904761905, - "y": 365.2517006802721 + "x": 347.47619, + "y": 365.2517 }, { "body": null, "index": 2, "isInternal": false, - "x": 283.4761904761905, - "y": 365.2517006802721 + "x": 283.47619, + "y": 365.2517 }, { "body": null, "index": 3, "isInternal": false, - "x": 265.4761904761905, - "y": 303.2517006802721 + "x": 265.47619, + "y": 303.2517 }, { "body": null, "index": 4, "isInternal": false, - "x": 315.4761904761905, - "y": 265.2517006802721 + "x": 315.47619, + "y": 265.2517 }, { "angle": 0, @@ -4238,9 +4238,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4294,12 +4294,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -4314,11 +4314,11 @@ } }, { - "x": 475.4761904761905, + "x": 475.47619, "y": 370 }, { - "x": 375.4761904761905, + "x": 375.47619, "y": 270 }, { @@ -4336,7 +4336,7 @@ "y": 0 }, { - "x": 425.4761904761905, + "x": 425.47619, "y": 320 }, { @@ -4344,7 +4344,7 @@ "y": 0 }, { - "x": 425.4761904761905, + "x": 425.47619, "y": 320 }, { @@ -4385,35 +4385,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 475.4761904761905, + "x": 475.47619, "y": 370 }, { "body": null, "index": 1, "isInternal": false, - "x": 400.4761904761905, + "x": 400.47619, "y": 370 }, { "body": null, "index": 2, "isInternal": false, - "x": 375.4761904761905, + "x": 375.47619, "y": 320 }, { "body": null, "index": 3, "isInternal": false, - "x": 400.4761904761905, + "x": 400.47619, "y": 270 }, { "body": null, "index": 4, "isInternal": false, - "x": 475.4761904761905, + "x": 475.47619, "y": 270 }, { @@ -4442,9 +4442,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4497,24 +4497,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -4525,12 +4525,12 @@ } }, { - "x": 585.4761904761905, - "y": 365.2517006802721 + "x": 585.47619, + "y": 365.2517 }, { - "x": 485.4761904761905, - "y": 265.2517006802721 + "x": 485.47619, + "y": 265.2517 }, { "category": 1, @@ -4547,7 +4547,7 @@ "y": 0 }, { - "x": 535.4761904761905, + "x": 535.47619, "y": 320 }, { @@ -4555,7 +4555,7 @@ "y": 0 }, { - "x": 535.4761904761905, + "x": 535.47619, "y": 320 }, { @@ -4596,36 +4596,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 585.4761904761905, - "y": 303.2517006802721 + "x": 585.47619, + "y": 303.2517 }, { "body": null, "index": 1, "isInternal": false, - "x": 567.4761904761905, - "y": 365.2517006802721 + "x": 567.47619, + "y": 365.2517 }, { "body": null, "index": 2, "isInternal": false, - "x": 503.4761904761905, - "y": 365.2517006802721 + "x": 503.47619, + "y": 365.2517 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.4761904761905, - "y": 303.2517006802721 + "x": 485.47619, + "y": 303.2517 }, { "body": null, "index": 4, "isInternal": false, - "x": 535.4761904761905, - "y": 265.2517006802721 + "x": 535.47619, + "y": 265.2517 }, { "angle": 0, @@ -4653,9 +4653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4709,12 +4709,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -4729,11 +4729,11 @@ } }, { - "x": 695.4761904761905, + "x": 695.47619, "y": 370 }, { - "x": 595.4761904761905, + "x": 595.47619, "y": 270 }, { @@ -4751,7 +4751,7 @@ "y": 0 }, { - "x": 645.4761904761905, + "x": 645.47619, "y": 320 }, { @@ -4759,7 +4759,7 @@ "y": 0 }, { - "x": 645.4761904761905, + "x": 645.47619, "y": 320 }, { @@ -4800,35 +4800,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 695.4761904761905, + "x": 695.47619, "y": 370 }, { "body": null, "index": 1, "isInternal": false, - "x": 620.4761904761905, + "x": 620.47619, "y": 370 }, { "body": null, "index": 2, "isInternal": false, - "x": 595.4761904761905, + "x": 595.47619, "y": 320 }, { "body": null, "index": 3, "isInternal": false, - "x": 620.4761904761905, + "x": 620.47619, "y": 270 }, { "body": null, "index": 4, "isInternal": false, - "x": 695.4761904761905, + "x": 695.47619, "y": 270 }, { @@ -4857,9 +4857,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4913,12 +4913,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -5061,9 +5061,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 634.4194592174847, - "inverseInertia": 0.0015762442110988134, - "inverseMass": 0.45126353790613716, + "inertia": 634.41946, + "inverseInertia": 0.00158, + "inverseMass": 0.45126, "isSleeping": false, "isStatic": false, "label": "Body", @@ -5125,32 +5125,32 @@ } ], { - "x": 0.9998656545973652, - "y": 0.01639124023930107 + "x": 0.99987, + "y": 0.01639 }, { - "x": 0.04993761694389223, - "y": 0.9987523388778445 + "x": 0.04994, + "y": 0.99875 }, { - "x": -0.2873478855663454, - "y": 0.9578262852211513 + "x": -0.28735, + "y": 0.95783 }, { - "x": -0.8858315352801555, - "y": 0.4640069946705576 + "x": -0.88583, + "y": 0.46401 }, { "x": 1, "y": 0 }, { - "x": -0.9728062146853669, - "y": -0.23162052730603974 + "x": -0.97281, + "y": -0.23162 }, { - "x": -0.52999894000318, - "y": -0.847998304005088 + "x": -0.53, + "y": -0.848 }, { "x": 0, @@ -5165,12 +5165,12 @@ } }, { - "x": 214.74104993983153, - "y": 458.3425090252708 + "x": 214.74105, + "y": 458.34251 }, { - "x": 162.74104993983153, - "y": 380.3425090252708 + "x": 162.74105, + "y": 380.34251 }, { "category": 1, @@ -5248,64 +5248,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.74104993983153, - "y": 396.3425090252708 + "x": 214.74105, + "y": 396.34251 }, { "body": null, "index": 1, "isInternal": false, - "x": 213.74104993983153, - "y": 457.3425090252708 + "x": 213.74105, + "y": 457.34251 }, { "body": null, "index": 2, "isInternal": false, - "x": 193.74104993983153, - "y": 458.3425090252708 + "x": 193.74105, + "y": 458.34251 }, { "body": null, "index": 3, "isInternal": false, - "x": 173.74104993983153, - "y": 452.3425090252708 + "x": 173.74105, + "y": 452.34251 }, { "body": null, "index": 4, "isInternal": false, - "x": 162.74104993983153, - "y": 431.3425090252708 + "x": 162.74105, + "y": 431.34251 }, { "body": null, "index": 5, "isInternal": false, - "x": 162.74104993983153, - "y": 411.3425090252708 + "x": 162.74105, + "y": 411.34251 }, { "body": null, "index": 6, "isInternal": false, - "x": 167.74104993983153, - "y": 390.3425090252708 + "x": 167.74105, + "y": 390.34251 }, { "body": null, "index": 7, "isInternal": false, - "x": 183.74104993983153, - "y": 380.3425090252708 + "x": 183.74105, + "y": 380.34251 }, { "body": null, "index": 8, "isInternal": false, - "x": 214.74104993983153, - "y": 380.3425090252708 + "x": 214.74105, + "y": 380.34251 }, { "angle": 0, @@ -5333,9 +5333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -5389,12 +5389,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -5409,11 +5409,11 @@ } }, { - "x": 324.74104993983156, + "x": 324.74105, "y": 480 }, { - "x": 224.74104993983156, + "x": 224.74105, "y": 380 }, { @@ -5431,7 +5431,7 @@ "y": 0 }, { - "x": 274.74104993983156, + "x": 274.74105, "y": 430 }, { @@ -5439,7 +5439,7 @@ "y": 0 }, { - "x": 274.74104993983156, + "x": 274.74105, "y": 430 }, { @@ -5480,35 +5480,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 324.74104993983156, + "x": 324.74105, "y": 480 }, { "body": null, "index": 1, "isInternal": false, - "x": 249.74104993983156, + "x": 249.74105, "y": 480 }, { "body": null, "index": 2, "isInternal": false, - "x": 224.74104993983156, + "x": 224.74105, "y": 430 }, { "body": null, "index": 3, "isInternal": false, - "x": 249.74104993983156, + "x": 249.74105, "y": 380 }, { "body": null, "index": 4, "isInternal": false, - "x": 324.74104993983156, + "x": 324.74105, "y": 380 }, { @@ -5537,9 +5537,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 634.4194592174847, - "inverseInertia": 0.0015762442110988134, - "inverseMass": 0.45126353790613716, + "inertia": 634.41946, + "inverseInertia": 0.00158, + "inverseMass": 0.45126, "isSleeping": false, "isStatic": false, "label": "Body", @@ -5601,32 +5601,32 @@ } ], { - "x": 0.9998656545973652, - "y": 0.01639124023930107 + "x": 0.99987, + "y": 0.01639 }, { - "x": 0.04993761694389223, - "y": 0.9987523388778445 + "x": 0.04994, + "y": 0.99875 }, { - "x": -0.2873478855663454, - "y": 0.9578262852211513 + "x": -0.28735, + "y": 0.95783 }, { - "x": -0.8858315352801555, - "y": 0.4640069946705576 + "x": -0.88583, + "y": 0.46401 }, { "x": 1, "y": 0 }, { - "x": -0.9728062146853669, - "y": -0.23162052730603974 + "x": -0.97281, + "y": -0.23162 }, { - "x": -0.52999894000318, - "y": -0.847998304005088 + "x": -0.53, + "y": -0.848 }, { "x": 0, @@ -5641,12 +5641,12 @@ } }, { - "x": 389.4820998796631, - "y": 458.3425090252708 + "x": 389.4821, + "y": 458.34251 }, { - "x": 337.4820998796631, - "y": 380.3425090252708 + "x": 337.4821, + "y": 380.34251 }, { "category": 1, @@ -5663,7 +5663,7 @@ "y": 0 }, { - "x": 360.74104993983156, + "x": 360.74105, "y": 419 }, { @@ -5671,7 +5671,7 @@ "y": 0 }, { - "x": 360.74104993983156, + "x": 360.74105, "y": 419 }, { @@ -5724,64 +5724,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.4820998796631, - "y": 396.3425090252708 + "x": 389.4821, + "y": 396.34251 }, { "body": null, "index": 1, "isInternal": false, - "x": 388.4820998796631, - "y": 457.3425090252708 + "x": 388.4821, + "y": 457.34251 }, { "body": null, "index": 2, "isInternal": false, - "x": 368.4820998796631, - "y": 458.3425090252708 + "x": 368.4821, + "y": 458.34251 }, { "body": null, "index": 3, "isInternal": false, - "x": 348.4820998796631, - "y": 452.3425090252708 + "x": 348.4821, + "y": 452.34251 }, { "body": null, "index": 4, "isInternal": false, - "x": 337.4820998796631, - "y": 431.3425090252708 + "x": 337.4821, + "y": 431.34251 }, { "body": null, "index": 5, "isInternal": false, - "x": 337.4820998796631, - "y": 411.3425090252708 + "x": 337.4821, + "y": 411.34251 }, { "body": null, "index": 6, "isInternal": false, - "x": 342.4820998796631, - "y": 390.3425090252708 + "x": 342.4821, + "y": 390.34251 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.4820998796631, - "y": 380.3425090252708 + "x": 358.4821, + "y": 380.34251 }, { "body": null, "index": 8, "isInternal": false, - "x": 389.4820998796631, - "y": 380.3425090252708 + "x": 389.4821, + "y": 380.34251 }, { "angle": 0, @@ -5809,9 +5809,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -5864,24 +5864,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -5892,12 +5892,12 @@ } }, { - "x": 499.4820998796631, - "y": 475.2517006802721 + "x": 499.4821, + "y": 475.2517 }, { - "x": 399.4820998796631, - "y": 375.2517006802721 + "x": 399.4821, + "y": 375.2517 }, { "category": 1, @@ -5914,7 +5914,7 @@ "y": 0 }, { - "x": 449.4820998796631, + "x": 449.4821, "y": 430 }, { @@ -5922,7 +5922,7 @@ "y": 0 }, { - "x": 449.4820998796631, + "x": 449.4821, "y": 430 }, { @@ -5963,36 +5963,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 499.4820998796631, - "y": 413.2517006802721 + "x": 499.4821, + "y": 413.2517 }, { "body": null, "index": 1, "isInternal": false, - "x": 481.4820998796631, - "y": 475.2517006802721 + "x": 481.4821, + "y": 475.2517 }, { "body": null, "index": 2, "isInternal": false, - "x": 417.4820998796631, - "y": 475.2517006802721 + "x": 417.4821, + "y": 475.2517 }, { "body": null, "index": 3, "isInternal": false, - "x": 399.4820998796631, - "y": 413.2517006802721 + "x": 399.4821, + "y": 413.2517 }, { "body": null, "index": 4, "isInternal": false, - "x": 449.4820998796631, - "y": 375.2517006802721 + "x": 449.4821, + "y": 375.2517 }, { "angle": 0, @@ -6020,9 +6020,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -6076,12 +6076,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -6096,11 +6096,11 @@ } }, { - "x": 609.4820998796631, + "x": 609.4821, "y": 480 }, { - "x": 509.4820998796631, + "x": 509.4821, "y": 380 }, { @@ -6118,7 +6118,7 @@ "y": 0 }, { - "x": 559.4820998796631, + "x": 559.4821, "y": 430 }, { @@ -6126,7 +6126,7 @@ "y": 0 }, { - "x": 559.4820998796631, + "x": 559.4821, "y": 430 }, { @@ -6167,35 +6167,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 609.4820998796631, + "x": 609.4821, "y": 480 }, { "body": null, "index": 1, "isInternal": false, - "x": 534.4820998796631, + "x": 534.4821, "y": 480 }, { "body": null, "index": 2, "isInternal": false, - "x": 509.4820998796631, + "x": 509.4821, "y": 430 }, { "body": null, "index": 3, "isInternal": false, - "x": 534.4820998796631, + "x": 534.4821, "y": 380 }, { "body": null, "index": 4, "isInternal": false, - "x": 609.4820998796631, + "x": 609.4821, "y": 380 }, [], diff --git a/test/browser/refs/concave/concave-10.json b/test/browser/refs/concave/concave-10.json index 9be9b3d9..89b40248 100644 --- a/test/browser/refs/concave/concave-10.json +++ b/test/browser/refs/concave/concave-10.json @@ -1012,9 +1012,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1040,7 +1040,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1070,24 +1070,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -1099,11 +1099,11 @@ }, { "x": 150, - "y": 162.98745544729786 + "y": 162.98746 }, { "x": 50, - "y": 62.98745544729784 + "y": 62.98746 }, { "category": 1, @@ -1121,7 +1121,7 @@ }, { "x": 100, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -1129,7 +1129,7 @@ }, { "x": 100, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 3, @@ -1153,7 +1153,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1177,35 +1177,35 @@ "index": 0, "isInternal": false, "x": 150, - "y": 100.98745544729783 + "y": 100.98746 }, { "body": null, "index": 1, "isInternal": false, "x": 132, - "y": 162.98745544729786 + "y": 162.98746 }, { "body": null, "index": 2, "isInternal": false, "x": 68, - "y": 162.98745544729786 + "y": 162.98746 }, { "body": null, "index": 3, "isInternal": false, "x": 50, - "y": 100.98745544729783 + "y": 100.98746 }, { "body": null, "index": 4, "isInternal": false, "x": 100, - "y": 62.98745544729784 + "y": 62.98746 }, { "angle": 0, @@ -1233,9 +1233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1261,7 +1261,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1291,24 +1291,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -1320,11 +1320,11 @@ }, { "x": 260, - "y": 162.98745544729786 + "y": 162.98746 }, { "x": 160, - "y": 62.98745544729784 + "y": 62.98746 }, { "category": 1, @@ -1342,7 +1342,7 @@ }, { "x": 210, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -1350,7 +1350,7 @@ }, { "x": 210, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 5, @@ -1374,7 +1374,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1398,35 +1398,35 @@ "index": 0, "isInternal": false, "x": 260, - "y": 100.98745544729783 + "y": 100.98746 }, { "body": null, "index": 1, "isInternal": false, "x": 242, - "y": 162.98745544729786 + "y": 162.98746 }, { "body": null, "index": 2, "isInternal": false, "x": 178, - "y": 162.98745544729786 + "y": 162.98746 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 100.98745544729783 + "y": 100.98746 }, { "body": null, "index": 4, "isInternal": false, "x": 210, - "y": 62.98745544729784 + "y": 62.98746 }, { "angle": 0, @@ -1454,9 +1454,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1482,7 +1482,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1512,20 +1512,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -1540,12 +1540,12 @@ } }, { - "x": 365.4761904761905, - "y": 167.73575476702575 + "x": 365.47619, + "y": 167.73575 }, { - "x": 265.4761904761905, - "y": 67.73575476702574 + "x": 265.47619, + "y": 67.73575 }, { "category": 1, @@ -1563,7 +1563,7 @@ }, { "x": 320, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -1571,7 +1571,7 @@ }, { "x": 320, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 7, @@ -1595,7 +1595,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1618,36 +1618,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 365.4761904761905, - "y": 147.73575476702575 + "x": 365.47619, + "y": 147.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 305.4761904761905, - "y": 167.73575476702575 + "x": 305.47619, + "y": 167.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 265.4761904761905, - "y": 117.73575476702572 + "x": 265.47619, + "y": 117.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.4761904761905, - "y": 67.73575476702574 + "x": 305.47619, + "y": 67.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 365.4761904761905, - "y": 87.73575476702572 + "x": 365.47619, + "y": 87.73575 }, { "angle": 0, @@ -1675,9 +1675,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 634.4194592174847, - "inverseInertia": 0.0015762442110988134, - "inverseMass": 0.45126353790613716, + "inertia": 634.41946, + "inverseInertia": 0.00158, + "inverseMass": 0.45126, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1703,7 +1703,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1742,32 +1742,32 @@ } ], { - "x": 0.9998656545973652, - "y": 0.01639124023930107 + "x": 0.99987, + "y": 0.01639 }, { - "x": 0.04993761694389223, - "y": 0.9987523388778445 + "x": 0.04994, + "y": 0.99875 }, { - "x": -0.2873478855663454, - "y": 0.9578262852211513 + "x": -0.28735, + "y": 0.95783 }, { - "x": -0.8858315352801555, - "y": 0.4640069946705576 + "x": -0.88583, + "y": 0.46401 }, { "x": 1, "y": 0 }, { - "x": -0.9728062146853669, - "y": -0.23162052730603974 + "x": -0.97281, + "y": -0.23162 }, { - "x": -0.52999894000318, - "y": -0.847998304005088 + "x": -0.53, + "y": -0.848 }, { "x": 0, @@ -1782,12 +1782,12 @@ } }, { - "x": 430.21724041602204, - "y": 146.07826379229653 + "x": 430.21724, + "y": 146.07826 }, { - "x": 378.21724041602204, - "y": 68.0782637922965 + "x": 378.21724, + "y": 68.07826 }, { "category": 1, @@ -1804,16 +1804,16 @@ "y": 0 }, { - "x": 401.4761904761905, - "y": 106.73575476702572 + "x": 401.47619, + "y": 106.73575 }, { "x": 0, "y": 0 }, { - "x": 401.4761904761905, - "y": 103.82848405199007 + "x": 401.47619, + "y": 103.82848 }, { "endCol": 8, @@ -1837,7 +1837,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1872,64 +1872,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 430.21724041602204, - "y": 84.0782637922965 + "x": 430.21724, + "y": 84.07826 }, { "body": null, "index": 1, "isInternal": false, - "x": 429.21724041602204, - "y": 145.07826379229653 + "x": 429.21724, + "y": 145.07826 }, { "body": null, "index": 2, "isInternal": false, - "x": 409.21724041602204, - "y": 146.07826379229653 + "x": 409.21724, + "y": 146.07826 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.21724041602204, - "y": 140.07826379229653 + "x": 389.21724, + "y": 140.07826 }, { "body": null, "index": 4, "isInternal": false, - "x": 378.21724041602204, - "y": 119.0782637922965 + "x": 378.21724, + "y": 119.07826 }, { "body": null, "index": 5, "isInternal": false, - "x": 378.21724041602204, - "y": 99.0782637922965 + "x": 378.21724, + "y": 99.07826 }, { "body": null, "index": 6, "isInternal": false, - "x": 383.21724041602204, - "y": 78.0782637922965 + "x": 383.21724, + "y": 78.07826 }, { "body": null, "index": 7, "isInternal": false, - "x": 399.21724041602204, - "y": 68.0782637922965 + "x": 399.21724, + "y": 68.07826 }, { "body": null, "index": 8, "isInternal": false, - "x": 430.21724041602204, - "y": 68.0782637922965 + "x": 430.21724, + "y": 68.07826 }, { "angle": 0, @@ -1957,9 +1957,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -1985,7 +1985,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2015,20 +2015,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -2043,12 +2043,12 @@ } }, { - "x": 535.6934308922125, - "y": 167.73575476702575 + "x": 535.69343, + "y": 167.73575 }, { - "x": 435.6934308922125, - "y": 67.73575476702574 + "x": 435.69343, + "y": 67.73575 }, { "category": 1, @@ -2065,16 +2065,16 @@ "y": 0 }, { - "x": 490.21724041602204, - "y": 117.73575476702572 + "x": 490.21724, + "y": 117.73575 }, { "x": 0, "y": 0 }, { - "x": 490.21724041602204, - "y": 114.82848405199007 + "x": 490.21724, + "y": 114.82848 }, { "endCol": 11, @@ -2098,7 +2098,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2121,36 +2121,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 535.6934308922125, - "y": 147.73575476702575 + "x": 535.69343, + "y": 147.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 475.6934308922125, - "y": 167.73575476702575 + "x": 475.69343, + "y": 167.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 435.6934308922125, - "y": 117.73575476702572 + "x": 435.69343, + "y": 117.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 475.6934308922125, - "y": 67.73575476702574 + "x": 475.69343, + "y": 67.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 535.6934308922125, - "y": 87.73575476702572 + "x": 535.69343, + "y": 87.73575 }, { "angle": 0, @@ -2178,9 +2178,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 634.4194592174847, - "inverseInertia": 0.0015762442110988134, - "inverseMass": 0.45126353790613716, + "inertia": 634.41946, + "inverseInertia": 0.00158, + "inverseMass": 0.45126, "isSleeping": false, "isStatic": false, "label": "Body", @@ -2206,7 +2206,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2245,32 +2245,32 @@ } ], { - "x": 0.9998656545973652, - "y": 0.01639124023930107 + "x": 0.99987, + "y": 0.01639 }, { - "x": 0.04993761694389223, - "y": 0.9987523388778445 + "x": 0.04994, + "y": 0.99875 }, { - "x": -0.2873478855663454, - "y": 0.9578262852211513 + "x": -0.28735, + "y": 0.95783 }, { - "x": -0.8858315352801555, - "y": 0.4640069946705576 + "x": -0.88583, + "y": 0.46401 }, { "x": 1, "y": 0 }, { - "x": -0.9728062146853669, - "y": -0.23162052730603974 + "x": -0.97281, + "y": -0.23162 }, { - "x": -0.52999894000318, - "y": -0.847998304005088 + "x": -0.53, + "y": -0.848 }, { "x": 0, @@ -2285,12 +2285,12 @@ } }, { - "x": 600.4344808320441, - "y": 146.07826379229653 + "x": 600.43448, + "y": 146.07826 }, { - "x": 548.4344808320441, - "y": 68.0782637922965 + "x": 548.43448, + "y": 68.07826 }, { "category": 1, @@ -2307,16 +2307,16 @@ "y": 0 }, { - "x": 571.6934308922125, - "y": 106.73575476702572 + "x": 571.69343, + "y": 106.73575 }, { "x": 0, "y": 0 }, { - "x": 571.6934308922125, - "y": 103.82848405199007 + "x": 571.69343, + "y": 103.82848 }, { "endCol": 12, @@ -2340,7 +2340,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2375,64 +2375,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 600.4344808320441, - "y": 84.0782637922965 + "x": 600.43448, + "y": 84.07826 }, { "body": null, "index": 1, "isInternal": false, - "x": 599.4344808320441, - "y": 145.07826379229653 + "x": 599.43448, + "y": 145.07826 }, { "body": null, "index": 2, "isInternal": false, - "x": 579.4344808320441, - "y": 146.07826379229653 + "x": 579.43448, + "y": 146.07826 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.4344808320441, - "y": 140.07826379229653 + "x": 559.43448, + "y": 140.07826 }, { "body": null, "index": 4, "isInternal": false, - "x": 548.4344808320441, - "y": 119.0782637922965 + "x": 548.43448, + "y": 119.07826 }, { "body": null, "index": 5, "isInternal": false, - "x": 548.4344808320441, - "y": 99.0782637922965 + "x": 548.43448, + "y": 99.07826 }, { "body": null, "index": 6, "isInternal": false, - "x": 553.4344808320441, - "y": 78.0782637922965 + "x": 553.43448, + "y": 78.07826 }, { "body": null, "index": 7, "isInternal": false, - "x": 569.4344808320441, - "y": 68.0782637922965 + "x": 569.43448, + "y": 68.07826 }, { "body": null, "index": 8, "isInternal": false, - "x": 600.4344808320441, - "y": 68.0782637922965 + "x": 600.43448, + "y": 68.07826 }, { "angle": 0, @@ -2460,9 +2460,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -2488,7 +2488,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2519,12 +2519,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -2540,11 +2540,11 @@ }, { "x": 150, - "y": 277.73575476702587 + "y": 277.73575 }, { "x": 50, - "y": 177.73575476702598 + "y": 177.73575 }, { "category": 1, @@ -2562,7 +2562,7 @@ }, { "x": 100, - "y": 227.73575476702598 + "y": 227.73575 }, { "x": 0, @@ -2570,7 +2570,7 @@ }, { "x": 100, - "y": 224.8284840519903 + "y": 224.82848 }, { "endCol": 3, @@ -2594,7 +2594,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2618,35 +2618,35 @@ "index": 0, "isInternal": false, "x": 150, - "y": 277.73575476702587 + "y": 277.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 75, - "y": 277.73575476702587 + "y": 277.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 50, - "y": 227.73575476702598 + "y": 227.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 75, - "y": 177.73575476702598 + "y": 177.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 177.73575476702598 + "y": 177.73575 }, { "angle": 0, @@ -2674,9 +2674,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -2702,7 +2702,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2733,12 +2733,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -2754,11 +2754,11 @@ }, { "x": 260, - "y": 277.73575476702587 + "y": 277.73575 }, { "x": 160, - "y": 177.73575476702598 + "y": 177.73575 }, { "category": 1, @@ -2776,7 +2776,7 @@ }, { "x": 210, - "y": 227.73575476702598 + "y": 227.73575 }, { "x": 0, @@ -2784,7 +2784,7 @@ }, { "x": 210, - "y": 224.8284840519903 + "y": 224.82848 }, { "endCol": 5, @@ -2808,7 +2808,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2832,35 +2832,35 @@ "index": 0, "isInternal": false, "x": 260, - "y": 277.73575476702587 + "y": 277.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 185, - "y": 277.73575476702587 + "y": 277.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 227.73575476702598 + "y": 227.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 185, - "y": 177.73575476702598 + "y": 177.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 260, - "y": 177.73575476702598 + "y": 177.73575 }, { "angle": 0, @@ -2888,9 +2888,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -2916,7 +2916,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2946,24 +2946,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -2975,11 +2975,11 @@ }, { "x": 370, - "y": 272.987455447298 + "y": 272.98746 }, { "x": 270, - "y": 172.9874554472981 + "y": 172.98746 }, { "category": 1, @@ -2997,7 +2997,7 @@ }, { "x": 320, - "y": 227.73575476702598 + "y": 227.73575 }, { "x": 0, @@ -3005,7 +3005,7 @@ }, { "x": 320, - "y": 224.8284840519903 + "y": 224.82848 }, { "endCol": 7, @@ -3029,7 +3029,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3053,35 +3053,35 @@ "index": 0, "isInternal": false, "x": 370, - "y": 210.9874554472981 + "y": 210.98746 }, { "body": null, "index": 1, "isInternal": false, "x": 352, - "y": 272.987455447298 + "y": 272.98746 }, { "body": null, "index": 2, "isInternal": false, "x": 288, - "y": 272.987455447298 + "y": 272.98746 }, { "body": null, "index": 3, "isInternal": false, "x": 270, - "y": 210.9874554472981 + "y": 210.98746 }, { "body": null, "index": 4, "isInternal": false, "x": 320, - "y": 172.9874554472981 + "y": 172.98746 }, { "angle": 0, @@ -3109,9 +3109,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3137,7 +3137,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3167,24 +3167,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -3196,11 +3196,11 @@ }, { "x": 480, - "y": 272.987455447298 + "y": 272.98746 }, { "x": 380, - "y": 172.9874554472981 + "y": 172.98746 }, { "category": 1, @@ -3218,7 +3218,7 @@ }, { "x": 430, - "y": 227.73575476702598 + "y": 227.73575 }, { "x": 0, @@ -3226,7 +3226,7 @@ }, { "x": 430, - "y": 224.8284840519903 + "y": 224.82848 }, { "endCol": 10, @@ -3250,7 +3250,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3274,35 +3274,35 @@ "index": 0, "isInternal": false, "x": 480, - "y": 210.9874554472981 + "y": 210.98746 }, { "body": null, "index": 1, "isInternal": false, "x": 462, - "y": 272.987455447298 + "y": 272.98746 }, { "body": null, "index": 2, "isInternal": false, "x": 398, - "y": 272.987455447298 + "y": 272.98746 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 210.9874554472981 + "y": 210.98746 }, { "body": null, "index": 4, "isInternal": false, "x": 430, - "y": 172.9874554472981 + "y": 172.98746 }, { "angle": 0, @@ -3330,9 +3330,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3358,7 +3358,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3388,20 +3388,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -3416,12 +3416,12 @@ } }, { - "x": 585.4761904761905, - "y": 277.73575476702587 + "x": 585.47619, + "y": 277.73575 }, { - "x": 485.4761904761905, - "y": 177.73575476702598 + "x": 485.47619, + "y": 177.73575 }, { "category": 1, @@ -3439,7 +3439,7 @@ }, { "x": 540, - "y": 227.73575476702598 + "y": 227.73575 }, { "x": 0, @@ -3447,7 +3447,7 @@ }, { "x": 540, - "y": 224.8284840519903 + "y": 224.82848 }, { "endCol": 12, @@ -3471,7 +3471,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3494,36 +3494,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 585.4761904761905, - "y": 257.735754767026 + "x": 585.47619, + "y": 257.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 525.4761904761905, - "y": 277.73575476702587 + "x": 525.47619, + "y": 277.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 485.4761904761905, - "y": 227.73575476702598 + "x": 485.47619, + "y": 227.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 525.4761904761905, - "y": 177.73575476702598 + "x": 525.47619, + "y": 177.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 585.4761904761905, - "y": 197.73575476702598 + "x": 585.47619, + "y": 197.73575 }, { "angle": 0, @@ -3551,9 +3551,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3579,7 +3579,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3609,20 +3609,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -3637,12 +3637,12 @@ } }, { - "x": 690.952380952381, - "y": 277.73575476702587 + "x": 690.95238, + "y": 277.73575 }, { - "x": 590.952380952381, - "y": 177.73575476702598 + "x": 590.95238, + "y": 177.73575 }, { "category": 1, @@ -3659,16 +3659,16 @@ "y": 0 }, { - "x": 645.4761904761905, - "y": 227.73575476702598 + "x": 645.47619, + "y": 227.73575 }, { "x": 0, "y": 0 }, { - "x": 645.4761904761905, - "y": 224.8284840519903 + "x": 645.47619, + "y": 224.82848 }, { "endCol": 14, @@ -3692,7 +3692,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3715,36 +3715,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 690.952380952381, - "y": 257.735754767026 + "x": 690.95238, + "y": 257.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 630.952380952381, - "y": 277.73575476702587 + "x": 630.95238, + "y": 277.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 590.952380952381, - "y": 227.73575476702598 + "x": 590.95238, + "y": 227.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 630.952380952381, - "y": 177.73575476702598 + "x": 630.95238, + "y": 177.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 690.952380952381, - "y": 197.73575476702598 + "x": 690.95238, + "y": 197.73575 }, { "angle": 0, @@ -3772,9 +3772,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -3800,7 +3800,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3831,12 +3831,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -3852,11 +3852,11 @@ }, { "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 50, - "y": 287.73575476702496 + "y": 287.73575 }, { "category": 1, @@ -3874,7 +3874,7 @@ }, { "x": 100, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -3882,7 +3882,7 @@ }, { "x": 100, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 3, @@ -3906,7 +3906,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3930,35 +3930,35 @@ "index": 0, "isInternal": false, "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 75, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 50, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 75, - "y": 287.73575476702496 + "y": 287.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 287.73575476702496 + "y": 287.73575 }, { "angle": 0, @@ -3986,9 +3986,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 17168.888888888887, - "inverseInertia": 0.00005824488739321771, - "inverseMass": 0.17857142857142858, + "inertia": 17168.88889, + "inverseInertia": 0.00006, + "inverseMass": 0.17857, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4014,7 +4014,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4044,20 +4044,20 @@ } ], { - "x": 0.31622776601683794, - "y": 0.9486832980505138 + "x": 0.31623, + "y": 0.94868 }, { - "x": -0.7808688094430304, - "y": 0.6246950475544243 + "x": -0.78087, + "y": 0.6247 }, { - "x": -0.7808688094430304, - "y": -0.6246950475544243 + "x": -0.78087, + "y": -0.6247 }, { - "x": 0.31622776601683794, - "y": -0.9486832980505138 + "x": 0.31623, + "y": -0.94868 }, { "x": 1, @@ -4072,12 +4072,12 @@ } }, { - "x": 255.47619047619048, - "y": 387.73575476702496 + "x": 255.47619, + "y": 387.73575 }, { - "x": 155.47619047619048, - "y": 287.73575476702496 + "x": 155.47619, + "y": 287.73575 }, { "category": 1, @@ -4095,7 +4095,7 @@ }, { "x": 210, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -4103,7 +4103,7 @@ }, { "x": 210, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 5, @@ -4127,7 +4127,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4150,36 +4150,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.47619047619048, - "y": 367.73575476702496 + "x": 255.47619, + "y": 367.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.47619047619048, - "y": 387.73575476702496 + "x": 195.47619, + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 155.47619047619048, - "y": 337.73575476702496 + "x": 155.47619, + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 195.47619047619048, - "y": 287.73575476702496 + "x": 195.47619, + "y": 287.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 255.47619047619048, - "y": 307.73575476702496 + "x": 255.47619, + "y": 307.73575 }, { "angle": 0, @@ -4207,9 +4207,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4235,7 +4235,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4265,24 +4265,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -4293,12 +4293,12 @@ } }, { - "x": 365.4761904761905, - "y": 382.98745544729707 + "x": 365.47619, + "y": 382.98746 }, { - "x": 265.4761904761905, - "y": 282.98745544729707 + "x": 265.47619, + "y": 282.98746 }, { "category": 1, @@ -4315,16 +4315,16 @@ "y": 0 }, { - "x": 315.4761904761905, - "y": 337.73575476702496 + "x": 315.47619, + "y": 337.73575 }, { "x": 0, "y": 0 }, { - "x": 315.4761904761905, - "y": 334.8284840519894 + "x": 315.47619, + "y": 334.82848 }, { "endCol": 7, @@ -4348,7 +4348,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4371,36 +4371,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 365.4761904761905, - "y": 320.98745544729707 + "x": 365.47619, + "y": 320.98746 }, { "body": null, "index": 1, "isInternal": false, - "x": 347.4761904761905, - "y": 382.98745544729707 + "x": 347.47619, + "y": 382.98746 }, { "body": null, "index": 2, "isInternal": false, - "x": 283.4761904761905, - "y": 382.98745544729707 + "x": 283.47619, + "y": 382.98746 }, { "body": null, "index": 3, "isInternal": false, - "x": 265.4761904761905, - "y": 320.98745544729707 + "x": 265.47619, + "y": 320.98746 }, { "body": null, "index": 4, "isInternal": false, - "x": 315.4761904761905, - "y": 282.98745544729707 + "x": 315.47619, + "y": 282.98746 }, { "angle": 0, @@ -4428,9 +4428,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4456,7 +4456,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4487,12 +4487,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -4507,12 +4507,12 @@ } }, { - "x": 475.4761904761905, - "y": 387.73575476702496 + "x": 475.47619, + "y": 387.73575 }, { - "x": 375.4761904761905, - "y": 287.73575476702496 + "x": 375.47619, + "y": 287.73575 }, { "category": 1, @@ -4529,16 +4529,16 @@ "y": 0 }, { - "x": 425.4761904761905, - "y": 337.73575476702496 + "x": 425.47619, + "y": 337.73575 }, { "x": 0, "y": 0 }, { - "x": 425.4761904761905, - "y": 334.8284840519894 + "x": 425.47619, + "y": 334.82848 }, { "endCol": 9, @@ -4562,7 +4562,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4585,36 +4585,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 475.4761904761905, - "y": 387.73575476702496 + "x": 475.47619, + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 400.4761904761905, - "y": 387.73575476702496 + "x": 400.47619, + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 375.4761904761905, - "y": 337.73575476702496 + "x": 375.47619, + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 400.4761904761905, - "y": 287.73575476702496 + "x": 400.47619, + "y": 287.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 475.4761904761905, - "y": 287.73575476702496 + "x": 475.47619, + "y": 287.73575 }, { "angle": 0, @@ -4642,9 +4642,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4670,7 +4670,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4700,24 +4700,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -4728,12 +4728,12 @@ } }, { - "x": 585.4761904761905, - "y": 382.98745544729707 + "x": 585.47619, + "y": 382.98746 }, { - "x": 485.4761904761905, - "y": 282.98745544729707 + "x": 485.47619, + "y": 282.98746 }, { "category": 1, @@ -4750,16 +4750,16 @@ "y": 0 }, { - "x": 535.4761904761905, - "y": 337.73575476702496 + "x": 535.47619, + "y": 337.73575 }, { "x": 0, "y": 0 }, { - "x": 535.4761904761905, - "y": 334.8284840519894 + "x": 535.47619, + "y": 334.82848 }, { "endCol": 12, @@ -4783,7 +4783,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4806,36 +4806,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 585.4761904761905, - "y": 320.98745544729707 + "x": 585.47619, + "y": 320.98746 }, { "body": null, "index": 1, "isInternal": false, - "x": 567.4761904761905, - "y": 382.98745544729707 + "x": 567.47619, + "y": 382.98746 }, { "body": null, "index": 2, "isInternal": false, - "x": 503.4761904761905, - "y": 382.98745544729707 + "x": 503.47619, + "y": 382.98746 }, { "body": null, "index": 3, "isInternal": false, - "x": 485.4761904761905, - "y": 320.98745544729707 + "x": 485.47619, + "y": 320.98746 }, { "body": null, "index": 4, "isInternal": false, - "x": 535.4761904761905, - "y": 282.98745544729707 + "x": 535.47619, + "y": 282.98746 }, { "angle": 0, @@ -4863,9 +4863,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -4891,7 +4891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4922,12 +4922,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -4942,12 +4942,12 @@ } }, { - "x": 695.4761904761905, - "y": 387.73575476702496 + "x": 695.47619, + "y": 387.73575 }, { - "x": 595.4761904761905, - "y": 287.73575476702496 + "x": 595.47619, + "y": 287.73575 }, { "category": 1, @@ -4964,16 +4964,16 @@ "y": 0 }, { - "x": 645.4761904761905, - "y": 337.73575476702496 + "x": 645.47619, + "y": 337.73575 }, { "x": 0, "y": 0 }, { - "x": 645.4761904761905, - "y": 334.8284840519894 + "x": 645.47619, + "y": 334.82848 }, { "endCol": 14, @@ -4997,7 +4997,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5020,36 +5020,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 695.4761904761905, - "y": 387.73575476702496 + "x": 695.47619, + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 620.4761904761905, - "y": 387.73575476702496 + "x": 620.47619, + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 595.4761904761905, - "y": 337.73575476702496 + "x": 595.47619, + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 620.4761904761905, - "y": 287.73575476702496 + "x": 620.47619, + "y": 287.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 695.4761904761905, - "y": 287.73575476702496 + "x": 695.47619, + "y": 287.73575 }, { "angle": 0, @@ -5077,9 +5077,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -5105,7 +5105,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5136,12 +5136,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -5157,11 +5157,11 @@ }, { "x": 150, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 50, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -5179,7 +5179,7 @@ }, { "x": 100, - "y": 447.73575476702496 + "y": 447.73575 }, { "x": 0, @@ -5187,7 +5187,7 @@ }, { "x": 100, - "y": 444.8284840519894 + "y": 444.82848 }, { "endCol": 3, @@ -5211,7 +5211,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5235,35 +5235,35 @@ "index": 0, "isInternal": false, "x": 150, - "y": 497.73575476702496 + "y": 497.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 75, - "y": 497.73575476702496 + "y": 497.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 50, - "y": 447.73575476702496 + "y": 447.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 75, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 4, "isInternal": false, "x": 150, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -5291,9 +5291,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 634.4194592174847, - "inverseInertia": 0.0015762442110988134, - "inverseMass": 0.45126353790613716, + "inertia": 634.41946, + "inverseInertia": 0.00158, + "inverseMass": 0.45126, "isSleeping": false, "isStatic": false, "label": "Body", @@ -5319,7 +5319,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5358,32 +5358,32 @@ } ], { - "x": 0.9998656545973652, - "y": 0.01639124023930107 + "x": 0.99987, + "y": 0.01639 }, { - "x": 0.04993761694389223, - "y": 0.9987523388778445 + "x": 0.04994, + "y": 0.99875 }, { - "x": -0.2873478855663454, - "y": 0.9578262852211513 + "x": -0.28735, + "y": 0.95783 }, { - "x": -0.8858315352801555, - "y": 0.4640069946705576 + "x": -0.88583, + "y": 0.46401 }, { "x": 1, "y": 0 }, { - "x": -0.9728062146853669, - "y": -0.23162052730603974 + "x": -0.97281, + "y": -0.23162 }, { - "x": -0.52999894000318, - "y": -0.847998304005088 + "x": -0.53, + "y": -0.848 }, { "x": 0, @@ -5398,12 +5398,12 @@ } }, { - "x": 214.74104993983153, - "y": 476.07826379229573 + "x": 214.74105, + "y": 476.07826 }, { - "x": 162.74104993983153, - "y": 398.07826379229573 + "x": 162.74105, + "y": 398.07826 }, { "category": 1, @@ -5421,7 +5421,7 @@ }, { "x": 186, - "y": 436.73575476702496 + "y": 436.73575 }, { "x": 0, @@ -5429,7 +5429,7 @@ }, { "x": 186, - "y": 433.8284840519894 + "y": 433.82848 }, { "endCol": 4, @@ -5453,7 +5453,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5488,64 +5488,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.74104993983153, - "y": 414.07826379229573 + "x": 214.74105, + "y": 414.07826 }, { "body": null, "index": 1, "isInternal": false, - "x": 213.74104993983153, - "y": 475.07826379229573 + "x": 213.74105, + "y": 475.07826 }, { "body": null, "index": 2, "isInternal": false, - "x": 193.74104993983153, - "y": 476.07826379229573 + "x": 193.74105, + "y": 476.07826 }, { "body": null, "index": 3, "isInternal": false, - "x": 173.74104993983153, - "y": 470.07826379229573 + "x": 173.74105, + "y": 470.07826 }, { "body": null, "index": 4, "isInternal": false, - "x": 162.74104993983153, - "y": 449.07826379229573 + "x": 162.74105, + "y": 449.07826 }, { "body": null, "index": 5, "isInternal": false, - "x": 162.74104993983153, - "y": 429.07826379229573 + "x": 162.74105, + "y": 429.07826 }, { "body": null, "index": 6, "isInternal": false, - "x": 167.74104993983153, - "y": 408.07826379229573 + "x": 167.74105, + "y": 408.07826 }, { "body": null, "index": 7, "isInternal": false, - "x": 183.74104993983153, - "y": 398.07826379229573 + "x": 183.74105, + "y": 398.07826 }, { "body": null, "index": 8, "isInternal": false, - "x": 214.74104993983153, - "y": 398.07826379229573 + "x": 214.74105, + "y": 398.07826 }, { "angle": 0, @@ -5573,9 +5573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -5601,7 +5601,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5632,12 +5632,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -5652,12 +5652,12 @@ } }, { - "x": 324.74104993983156, - "y": 497.73575476702496 + "x": 324.74105, + "y": 497.73575 }, { - "x": 224.74104993983156, - "y": 397.73575476702496 + "x": 224.74105, + "y": 397.73575 }, { "category": 1, @@ -5674,16 +5674,16 @@ "y": 0 }, { - "x": 274.74104993983156, - "y": 447.73575476702496 + "x": 274.74105, + "y": 447.73575 }, { "x": 0, "y": 0 }, { - "x": 274.74104993983156, - "y": 444.8284840519894 + "x": 274.74105, + "y": 444.82848 }, { "endCol": 6, @@ -5707,7 +5707,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5730,36 +5730,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 324.74104993983156, - "y": 497.73575476702496 + "x": 324.74105, + "y": 497.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 249.74104993983156, - "y": 497.73575476702496 + "x": 249.74105, + "y": 497.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 224.74104993983156, - "y": 447.73575476702496 + "x": 224.74105, + "y": 447.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 249.74104993983156, - "y": 397.73575476702496 + "x": 249.74105, + "y": 397.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 324.74104993983156, - "y": 397.73575476702496 + "x": 324.74105, + "y": 397.73575 }, { "angle": 0, @@ -5787,9 +5787,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 634.4194592174847, - "inverseInertia": 0.0015762442110988134, - "inverseMass": 0.45126353790613716, + "inertia": 634.41946, + "inverseInertia": 0.00158, + "inverseMass": 0.45126, "isSleeping": false, "isStatic": false, "label": "Body", @@ -5815,7 +5815,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5854,32 +5854,32 @@ } ], { - "x": 0.9998656545973652, - "y": 0.01639124023930107 + "x": 0.99987, + "y": 0.01639 }, { - "x": 0.04993761694389223, - "y": 0.9987523388778445 + "x": 0.04994, + "y": 0.99875 }, { - "x": -0.2873478855663454, - "y": 0.9578262852211513 + "x": -0.28735, + "y": 0.95783 }, { - "x": -0.8858315352801555, - "y": 0.4640069946705576 + "x": -0.88583, + "y": 0.46401 }, { "x": 1, "y": 0 }, { - "x": -0.9728062146853669, - "y": -0.23162052730603974 + "x": -0.97281, + "y": -0.23162 }, { - "x": -0.52999894000318, - "y": -0.847998304005088 + "x": -0.53, + "y": -0.848 }, { "x": 0, @@ -5894,12 +5894,12 @@ } }, { - "x": 389.4820998796631, - "y": 476.07826379229573 + "x": 389.4821, + "y": 476.07826 }, { - "x": 337.4820998796631, - "y": 398.07826379229573 + "x": 337.4821, + "y": 398.07826 }, { "category": 1, @@ -5916,16 +5916,16 @@ "y": 0 }, { - "x": 360.74104993983156, - "y": 436.73575476702496 + "x": 360.74105, + "y": 436.73575 }, { "x": 0, "y": 0 }, { - "x": 360.74104993983156, - "y": 433.8284840519894 + "x": 360.74105, + "y": 433.82848 }, { "endCol": 8, @@ -5949,7 +5949,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5984,64 +5984,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.4820998796631, - "y": 414.07826379229573 + "x": 389.4821, + "y": 414.07826 }, { "body": null, "index": 1, "isInternal": false, - "x": 388.4820998796631, - "y": 475.07826379229573 + "x": 388.4821, + "y": 475.07826 }, { "body": null, "index": 2, "isInternal": false, - "x": 368.4820998796631, - "y": 476.07826379229573 + "x": 368.4821, + "y": 476.07826 }, { "body": null, "index": 3, "isInternal": false, - "x": 348.4820998796631, - "y": 470.07826379229573 + "x": 348.4821, + "y": 470.07826 }, { "body": null, "index": 4, "isInternal": false, - "x": 337.4820998796631, - "y": 449.07826379229573 + "x": 337.4821, + "y": 449.07826 }, { "body": null, "index": 5, "isInternal": false, - "x": 337.4820998796631, - "y": 429.07826379229573 + "x": 337.4821, + "y": 429.07826 }, { "body": null, "index": 6, "isInternal": false, - "x": 342.4820998796631, - "y": 408.07826379229573 + "x": 342.4821, + "y": 408.07826 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.4820998796631, - "y": 398.07826379229573 + "x": 358.4821, + "y": 398.07826 }, { "body": null, "index": 8, "isInternal": false, - "x": 389.4820998796631, - "y": 398.07826379229573 + "x": 389.4821, + "y": 398.07826 }, { "angle": 0, @@ -6069,9 +6069,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -6097,7 +6097,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6127,24 +6127,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -6155,12 +6155,12 @@ } }, { - "x": 499.4820998796631, - "y": 492.98745544729707 + "x": 499.4821, + "y": 492.98746 }, { - "x": 399.4820998796631, - "y": 392.98745544729707 + "x": 399.4821, + "y": 392.98746 }, { "category": 1, @@ -6177,16 +6177,16 @@ "y": 0 }, { - "x": 449.4820998796631, - "y": 447.73575476702496 + "x": 449.4821, + "y": 447.73575 }, { "x": 0, "y": 0 }, { - "x": 449.4820998796631, - "y": 444.8284840519894 + "x": 449.4821, + "y": 444.82848 }, { "endCol": 10, @@ -6210,7 +6210,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6233,36 +6233,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 499.4820998796631, - "y": 430.98745544729707 + "x": 499.4821, + "y": 430.98746 }, { "body": null, "index": 1, "isInternal": false, - "x": 481.4820998796631, - "y": 492.98745544729707 + "x": 481.4821, + "y": 492.98746 }, { "body": null, "index": 2, "isInternal": false, - "x": 417.4820998796631, - "y": 492.98745544729707 + "x": 417.4821, + "y": 492.98746 }, { "body": null, "index": 3, "isInternal": false, - "x": 399.4820998796631, - "y": 430.98745544729707 + "x": 399.4821, + "y": 430.98746 }, { "body": null, "index": 4, "isInternal": false, - "x": 449.4820998796631, - "y": 392.98745544729707 + "x": 449.4821, + "y": 392.98746 }, { "angle": 0, @@ -6290,9 +6290,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 26736.11111111111, - "inverseInertia": 0.00003740259740259741, - "inverseMass": 0.13333333333333333, + "inertia": 26736.11111, + "inverseInertia": 0.00004, + "inverseMass": 0.13333, "isSleeping": false, "isStatic": false, "label": "Body", @@ -6318,7 +6318,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6349,12 +6349,12 @@ "y": -1 }, { - "x": -0.8944271909999159, - "y": 0.4472135954999579 + "x": -0.89443, + "y": 0.44721 }, { - "x": -0.8944271909999159, - "y": -0.4472135954999579 + "x": -0.89443, + "y": -0.44721 }, { "x": 1, @@ -6369,12 +6369,12 @@ } }, { - "x": 609.4820998796631, - "y": 497.73575476702496 + "x": 609.4821, + "y": 497.73575 }, { - "x": 509.4820998796631, - "y": 397.73575476702496 + "x": 509.4821, + "y": 397.73575 }, { "category": 1, @@ -6391,16 +6391,16 @@ "y": 0 }, { - "x": 559.4820998796631, - "y": 447.73575476702496 + "x": 559.4821, + "y": 447.73575 }, { "x": 0, "y": 0 }, { - "x": 559.4820998796631, - "y": 444.8284840519894 + "x": 559.4821, + "y": 444.82848 }, { "endCol": 12, @@ -6424,7 +6424,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6447,36 +6447,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 609.4820998796631, - "y": 497.73575476702496 + "x": 609.4821, + "y": 497.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 534.4820998796631, - "y": 497.73575476702496 + "x": 534.4821, + "y": 497.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 509.4820998796631, - "y": 447.73575476702496 + "x": 509.4821, + "y": 447.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 534.4820998796631, - "y": 397.73575476702496 + "x": 534.4821, + "y": 397.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 609.4820998796631, - "y": 397.73575476702496 + "x": 609.4821, + "y": 397.73575 }, [], [], diff --git a/test/browser/refs/events/events-0.json b/test/browser/refs/events/events-0.json index a4171438..0f4bdd7e 100644 --- a/test/browser/refs/events/events-0.json +++ b/test/browser/refs/events/events-0.json @@ -958,7 +958,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 93 }, @@ -980,13 +980,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -1044,32 +1044,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -1259,7 +1259,7 @@ "index": 10, "isInternal": false, "x": 56.378, - "y": 102.24000000000001 + "y": 102.24 }, { "body": null, @@ -1280,7 +1280,7 @@ "index": 13, "isInternal": false, "x": 73.046, - "y": 102.24000000000001 + "y": 102.24 }, { "body": null, @@ -1301,7 +1301,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 132 }, @@ -1323,13 +1323,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -1387,32 +1387,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -1427,11 +1427,11 @@ } }, { - "x": 158.84799999999998, + "x": 158.848, "y": 129.424 }, { - "x": 129.42399999999998, + "x": 129.424, "y": 100 }, { @@ -1531,7 +1531,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 158.84799999999998, + "x": 158.848, "y": 117.638 }, { @@ -1552,14 +1552,14 @@ "body": null, "index": 3, "isInternal": false, - "x": 147.06199999999998, + "x": 147.062, "y": 129.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 141.20999999999998, + "x": 141.21, "y": 129.424 }, { @@ -1580,14 +1580,14 @@ "body": null, "index": 7, "isInternal": false, - "x": 129.42399999999998, + "x": 129.424, "y": 117.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.42399999999998, + "x": 129.424, "y": 111.786 }, { @@ -1602,20 +1602,20 @@ "index": 10, "isInternal": false, "x": 135.802, - "y": 102.24000000000001 + "y": 102.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.20999999999998, + "x": 141.21, "y": 100 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.06199999999998, + "x": 147.062, "y": 100 }, { @@ -1623,7 +1623,7 @@ "index": 13, "isInternal": false, "x": 152.47, - "y": 102.24000000000001 + "y": 102.24 }, { "body": null, @@ -1636,7 +1636,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 158.84799999999998, + "x": 158.848, "y": 111.786 }, { @@ -1644,7 +1644,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 171 }, @@ -1666,13 +1666,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -1730,32 +1730,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -1770,11 +1770,11 @@ } }, { - "x": 238.27199999999996, + "x": 238.272, "y": 129.424 }, { - "x": 208.84799999999998, + "x": 208.848, "y": 100 }, { @@ -1792,7 +1792,7 @@ "y": 0 }, { - "x": 223.55999999999997, + "x": 223.56, "y": 114.712 }, { @@ -1800,7 +1800,7 @@ "y": 0 }, { - "x": 223.55999999999997, + "x": 223.56, "y": 114.712 }, { @@ -1874,28 +1874,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.27199999999996, + "x": 238.272, "y": 117.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 236.03199999999998, + "x": 236.032, "y": 123.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.89399999999998, + "x": 231.894, "y": 127.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.48599999999996, + "x": 226.486, "y": 129.424 }, { @@ -1909,43 +1909,43 @@ "body": null, "index": 5, "isInternal": false, - "x": 215.22599999999997, + "x": 215.226, "y": 127.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 211.08799999999997, + "x": 211.088, "y": 123.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.84799999999998, + "x": 208.848, "y": 117.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 208.84799999999998, + "x": 208.848, "y": 111.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.08799999999997, + "x": 211.088, "y": 106.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.22599999999997, - "y": 102.24000000000001 + "x": 215.226, + "y": 102.24 }, { "body": null, @@ -1958,28 +1958,28 @@ "body": null, "index": 12, "isInternal": false, - "x": 226.48599999999996, + "x": 226.486, "y": 100 }, { "body": null, "index": 13, "isInternal": false, - "x": 231.89399999999998, - "y": 102.24000000000001 + "x": 231.894, + "y": 102.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 236.03199999999998, + "x": 236.032, "y": 106.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 238.27199999999996, + "x": 238.272, "y": 111.786 }, { @@ -1987,7 +1987,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 210 }, @@ -2009,13 +2009,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -2073,32 +2073,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -2113,11 +2113,11 @@ } }, { - "x": 317.6959999999999, + "x": 317.696, "y": 129.424 }, { - "x": 288.27199999999993, + "x": 288.272, "y": 100 }, { @@ -2135,7 +2135,7 @@ "y": 0 }, { - "x": 302.9839999999999, + "x": 302.984, "y": 114.712 }, { @@ -2143,7 +2143,7 @@ "y": 0 }, { - "x": 302.9839999999999, + "x": 302.984, "y": 114.712 }, { @@ -2217,112 +2217,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6959999999999, + "x": 317.696, "y": 117.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.4559999999999, + "x": 315.456, "y": 123.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.3179999999999, + "x": 311.318, "y": 127.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.9099999999999, + "x": 305.91, "y": 129.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.05799999999994, + "x": 300.058, "y": 129.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.6499999999999, + "x": 294.65, "y": 127.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 290.51199999999994, + "x": 290.512, "y": 123.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.27199999999993, + "x": 288.272, "y": 117.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 288.27199999999993, + "x": 288.272, "y": 111.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 290.51199999999994, + "x": 290.512, "y": 106.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.6499999999999, - "y": 102.24000000000001 + "x": 294.65, + "y": 102.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.05799999999994, + "x": 300.058, "y": 100 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.9099999999999, + "x": 305.91, "y": 100 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.3179999999999, - "y": 102.24000000000001 + "x": 311.318, + "y": 102.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.4559999999999, + "x": 315.456, "y": 106.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.6959999999999, + "x": 317.696, "y": 111.786 }, { @@ -2330,7 +2330,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 249 }, @@ -2352,13 +2352,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -2416,32 +2416,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -2456,11 +2456,11 @@ } }, { - "x": 397.1199999999999, + "x": 397.12, "y": 129.424 }, { - "x": 367.6959999999999, + "x": 367.696, "y": 100 }, { @@ -2478,7 +2478,7 @@ "y": 0 }, { - "x": 382.4079999999999, + "x": 382.408, "y": 114.712 }, { @@ -2486,7 +2486,7 @@ "y": 0 }, { - "x": 382.4079999999999, + "x": 382.408, "y": 114.712 }, { @@ -2560,112 +2560,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 117.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, + "x": 394.88, "y": 123.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, + "x": 390.742, "y": 127.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, + "x": 385.334, "y": 129.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, + "x": 379.482, "y": 129.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, + "x": 374.074, "y": 127.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, + "x": 369.936, "y": 123.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 117.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 111.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, + "x": 369.936, "y": 106.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 102.24000000000001 + "x": 374.074, + "y": 102.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, + "x": 379.482, "y": 100 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, + "x": 385.334, "y": 100 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 102.24000000000001 + "x": 390.742, + "y": 102.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, + "x": 394.88, "y": 106.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 111.786 }, { @@ -2673,7 +2673,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 288 }, @@ -2695,13 +2695,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -2759,32 +2759,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -2799,11 +2799,11 @@ } }, { - "x": 476.54399999999987, + "x": 476.544, "y": 129.424 }, { - "x": 447.1199999999999, + "x": 447.12, "y": 100 }, { @@ -2821,7 +2821,7 @@ "y": 0 }, { - "x": 461.8319999999999, + "x": 461.832, "y": 114.712 }, { @@ -2829,7 +2829,7 @@ "y": 0 }, { - "x": 461.8319999999999, + "x": 461.832, "y": 114.712 }, { @@ -2903,112 +2903,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.54399999999987, + "x": 476.544, "y": 117.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.30399999999986, + "x": 474.304, "y": 123.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.1659999999999, + "x": 470.166, "y": 127.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.75799999999987, + "x": 464.758, "y": 129.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 458.9059999999999, + "x": 458.906, "y": 129.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 453.4979999999999, + "x": 453.498, "y": 127.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.3599999999999, + "x": 449.36, "y": 123.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 447.1199999999999, + "x": 447.12, "y": 117.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 447.1199999999999, + "x": 447.12, "y": 111.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 449.3599999999999, + "x": 449.36, "y": 106.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.4979999999999, - "y": 102.24000000000001 + "x": 453.498, + "y": 102.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.9059999999999, + "x": 458.906, "y": 100 }, { "body": null, "index": 12, "isInternal": false, - "x": 464.75799999999987, + "x": 464.758, "y": 100 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1659999999999, - "y": 102.24000000000001 + "x": 470.166, + "y": 102.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 474.30399999999986, + "x": 474.304, "y": 106.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 476.54399999999987, + "x": 476.544, "y": 111.786 }, { @@ -3016,7 +3016,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 327 }, @@ -3038,13 +3038,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -3102,32 +3102,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -3142,11 +3142,11 @@ } }, { - "x": 555.9679999999998, + "x": 555.968, "y": 129.424 }, { - "x": 526.5439999999999, + "x": 526.544, "y": 100 }, { @@ -3164,7 +3164,7 @@ "y": 0 }, { - "x": 541.2559999999999, + "x": 541.256, "y": 114.712 }, { @@ -3172,7 +3172,7 @@ "y": 0 }, { - "x": 541.2559999999999, + "x": 541.256, "y": 114.712 }, { @@ -3246,112 +3246,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.9679999999998, + "x": 555.968, "y": 117.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.7279999999998, + "x": 553.728, "y": 123.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5899999999998, + "x": 549.59, "y": 127.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.1819999999999, + "x": 544.182, "y": 129.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 538.3299999999998, + "x": 538.33, "y": 129.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 532.9219999999999, + "x": 532.922, "y": 127.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.7839999999999, + "x": 528.784, "y": 123.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.5439999999999, + "x": 526.544, "y": 117.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5439999999999, + "x": 526.544, "y": 111.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.7839999999999, + "x": 528.784, "y": 106.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.9219999999999, - "y": 102.24000000000001 + "x": 532.922, + "y": 102.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 538.3299999999998, + "x": 538.33, "y": 100 }, { "body": null, "index": 12, "isInternal": false, - "x": 544.1819999999999, + "x": 544.182, "y": 100 }, { "body": null, "index": 13, "isInternal": false, - "x": 549.5899999999998, - "y": 102.24000000000001 + "x": 549.59, + "y": 102.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 553.7279999999998, + "x": 553.728, "y": 106.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 555.9679999999998, + "x": 555.968, "y": 111.786 }, { @@ -3359,7 +3359,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 366 }, @@ -3381,13 +3381,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -3445,32 +3445,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -3485,11 +3485,11 @@ } }, { - "x": 635.3919999999998, + "x": 635.392, "y": 129.424 }, { - "x": 605.9679999999998, + "x": 605.968, "y": 100 }, { @@ -3507,7 +3507,7 @@ "y": 0 }, { - "x": 620.6799999999998, + "x": 620.68, "y": 114.712 }, { @@ -3515,7 +3515,7 @@ "y": 0 }, { - "x": 620.6799999999998, + "x": 620.68, "y": 114.712 }, { @@ -3589,112 +3589,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.3919999999998, + "x": 635.392, "y": 117.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.1519999999998, + "x": 633.152, "y": 123.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.0139999999998, + "x": 629.014, "y": 127.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.6059999999999, + "x": 623.606, "y": 129.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.7539999999998, + "x": 617.754, "y": 129.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 612.3459999999999, + "x": 612.346, "y": 127.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 608.2079999999999, + "x": 608.208, "y": 123.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 605.9679999999998, + "x": 605.968, "y": 117.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.9679999999998, + "x": 605.968, "y": 111.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 608.2079999999999, + "x": 608.208, "y": 106.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.3459999999999, - "y": 102.24000000000001 + "x": 612.346, + "y": 102.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 617.7539999999998, + "x": 617.754, "y": 100 }, { "body": null, "index": 12, "isInternal": false, - "x": 623.6059999999999, + "x": 623.606, "y": 100 }, { "body": null, "index": 13, "isInternal": false, - "x": 629.0139999999998, - "y": 102.24000000000001 + "x": 629.014, + "y": 102.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 633.1519999999998, + "x": 633.152, "y": 106.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 635.3919999999998, + "x": 635.392, "y": 111.786 }, { @@ -3702,7 +3702,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 405 }, @@ -3724,13 +3724,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -3788,32 +3788,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -3829,7 +3829,7 @@ }, { "x": 79.424, - "y": 208.84799999999998 + "y": 208.848 }, { "x": 50, @@ -3933,7 +3933,7 @@ "index": 0, "isInternal": false, "x": 79.424, - "y": 197.06199999999998 + "y": 197.062 }, { "body": null, @@ -3954,14 +3954,14 @@ "index": 3, "isInternal": false, "x": 67.638, - "y": 208.84799999999998 + "y": 208.848 }, { "body": null, "index": 4, "isInternal": false, "x": 61.786, - "y": 208.84799999999998 + "y": 208.848 }, { "body": null, @@ -3982,7 +3982,7 @@ "index": 7, "isInternal": false, "x": 50, - "y": 197.06199999999998 + "y": 197.062 }, { "body": null, @@ -4045,7 +4045,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 444 }, @@ -4067,13 +4067,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -4131,32 +4131,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -4171,11 +4171,11 @@ } }, { - "x": 158.84799999999998, - "y": 208.84799999999998 + "x": 158.848, + "y": 208.848 }, { - "x": 129.42399999999998, + "x": 129.424, "y": 179.424 }, { @@ -4275,8 +4275,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 158.84799999999998, - "y": 197.06199999999998 + "x": 158.848, + "y": 197.062 }, { "body": null, @@ -4296,15 +4296,15 @@ "body": null, "index": 3, "isInternal": false, - "x": 147.06199999999998, - "y": 208.84799999999998 + "x": 147.062, + "y": 208.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 141.20999999999998, - "y": 208.84799999999998 + "x": 141.21, + "y": 208.848 }, { "body": null, @@ -4324,14 +4324,14 @@ "body": null, "index": 7, "isInternal": false, - "x": 129.42399999999998, - "y": 197.06199999999998 + "x": 129.424, + "y": 197.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.42399999999998, + "x": 129.424, "y": 191.21 }, { @@ -4352,14 +4352,14 @@ "body": null, "index": 11, "isInternal": false, - "x": 141.20999999999998, + "x": 141.21, "y": 179.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.06199999999998, + "x": 147.062, "y": 179.424 }, { @@ -4380,7 +4380,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 158.84799999999998, + "x": 158.848, "y": 191.21 }, { @@ -4388,7 +4388,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 483 }, @@ -4410,13 +4410,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -4474,32 +4474,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -4514,11 +4514,11 @@ } }, { - "x": 238.27199999999996, - "y": 208.84799999999998 + "x": 238.272, + "y": 208.848 }, { - "x": 208.84799999999998, + "x": 208.848, "y": 179.424 }, { @@ -4536,7 +4536,7 @@ "y": 0 }, { - "x": 223.55999999999997, + "x": 223.56, "y": 194.136 }, { @@ -4544,7 +4544,7 @@ "y": 0 }, { - "x": 223.55999999999997, + "x": 223.56, "y": 194.136 }, { @@ -4618,77 +4618,77 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.27199999999996, - "y": 197.06199999999998 + "x": 238.272, + "y": 197.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 236.03199999999998, + "x": 236.032, "y": 202.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.89399999999998, + "x": 231.894, "y": 206.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.48599999999996, - "y": 208.84799999999998 + "x": 226.486, + "y": 208.848 }, { "body": null, "index": 4, "isInternal": false, "x": 220.634, - "y": 208.84799999999998 + "y": 208.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.22599999999997, + "x": 215.226, "y": 206.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 211.08799999999997, + "x": 211.088, "y": 202.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.84799999999998, - "y": 197.06199999999998 + "x": 208.848, + "y": 197.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 208.84799999999998, + "x": 208.848, "y": 191.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.08799999999997, + "x": 211.088, "y": 185.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.22599999999997, + "x": 215.226, "y": 181.664 }, { @@ -4702,28 +4702,28 @@ "body": null, "index": 12, "isInternal": false, - "x": 226.48599999999996, + "x": 226.486, "y": 179.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 231.89399999999998, + "x": 231.894, "y": 181.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 236.03199999999998, + "x": 236.032, "y": 185.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 238.27199999999996, + "x": 238.272, "y": 191.21 }, { @@ -4731,7 +4731,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 522 }, @@ -4753,13 +4753,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -4817,32 +4817,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -4857,11 +4857,11 @@ } }, { - "x": 317.6959999999999, - "y": 208.84799999999998 + "x": 317.696, + "y": 208.848 }, { - "x": 288.27199999999993, + "x": 288.272, "y": 179.424 }, { @@ -4879,7 +4879,7 @@ "y": 0 }, { - "x": 302.9839999999999, + "x": 302.984, "y": 194.136 }, { @@ -4887,7 +4887,7 @@ "y": 0 }, { - "x": 302.9839999999999, + "x": 302.984, "y": 194.136 }, { @@ -4961,112 +4961,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6959999999999, - "y": 197.06199999999998 + "x": 317.696, + "y": 197.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.4559999999999, + "x": 315.456, "y": 202.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.3179999999999, + "x": 311.318, "y": 206.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.9099999999999, - "y": 208.84799999999998 + "x": 305.91, + "y": 208.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.05799999999994, - "y": 208.84799999999998 + "x": 300.058, + "y": 208.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.6499999999999, + "x": 294.65, "y": 206.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 290.51199999999994, + "x": 290.512, "y": 202.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.27199999999993, - "y": 197.06199999999998 + "x": 288.272, + "y": 197.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 288.27199999999993, + "x": 288.272, "y": 191.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 290.51199999999994, + "x": 290.512, "y": 185.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.6499999999999, + "x": 294.65, "y": 181.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.05799999999994, + "x": 300.058, "y": 179.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.9099999999999, + "x": 305.91, "y": 179.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.3179999999999, + "x": 311.318, "y": 181.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.4559999999999, + "x": 315.456, "y": 185.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.6959999999999, + "x": 317.696, "y": 191.21 }, { @@ -5074,7 +5074,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 561 }, @@ -5096,13 +5096,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -5160,32 +5160,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -5200,11 +5200,11 @@ } }, { - "x": 397.1199999999999, - "y": 208.84799999999998 + "x": 397.12, + "y": 208.848 }, { - "x": 367.6959999999999, + "x": 367.696, "y": 179.424 }, { @@ -5222,7 +5222,7 @@ "y": 0 }, { - "x": 382.4079999999999, + "x": 382.408, "y": 194.136 }, { @@ -5230,7 +5230,7 @@ "y": 0 }, { - "x": 382.4079999999999, + "x": 382.408, "y": 194.136 }, { @@ -5304,112 +5304,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 197.06199999999998 + "x": 397.12, + "y": 197.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, + "x": 394.88, "y": 202.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, + "x": 390.742, "y": 206.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 208.84799999999998 + "x": 385.334, + "y": 208.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 208.84799999999998 + "x": 379.482, + "y": 208.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, + "x": 374.074, "y": 206.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, + "x": 369.936, "y": 202.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 197.06199999999998 + "x": 367.696, + "y": 197.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 191.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, + "x": 369.936, "y": 185.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, + "x": 374.074, "y": 181.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, + "x": 379.482, "y": 179.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, + "x": 385.334, "y": 179.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, + "x": 390.742, "y": 181.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, + "x": 394.88, "y": 185.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 191.21 }, { @@ -5417,7 +5417,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 600 }, @@ -5439,13 +5439,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -5503,32 +5503,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -5543,11 +5543,11 @@ } }, { - "x": 476.54399999999987, - "y": 208.84799999999998 + "x": 476.544, + "y": 208.848 }, { - "x": 447.1199999999999, + "x": 447.12, "y": 179.424 }, { @@ -5565,7 +5565,7 @@ "y": 0 }, { - "x": 461.8319999999999, + "x": 461.832, "y": 194.136 }, { @@ -5573,7 +5573,7 @@ "y": 0 }, { - "x": 461.8319999999999, + "x": 461.832, "y": 194.136 }, { @@ -5647,112 +5647,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.54399999999987, - "y": 197.06199999999998 + "x": 476.544, + "y": 197.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.30399999999986, + "x": 474.304, "y": 202.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.1659999999999, + "x": 470.166, "y": 206.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.75799999999987, - "y": 208.84799999999998 + "x": 464.758, + "y": 208.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 458.9059999999999, - "y": 208.84799999999998 + "x": 458.906, + "y": 208.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 453.4979999999999, + "x": 453.498, "y": 206.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.3599999999999, + "x": 449.36, "y": 202.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 447.1199999999999, - "y": 197.06199999999998 + "x": 447.12, + "y": 197.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 447.1199999999999, + "x": 447.12, "y": 191.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 449.3599999999999, + "x": 449.36, "y": 185.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.4979999999999, + "x": 453.498, "y": 181.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.9059999999999, + "x": 458.906, "y": 179.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 464.75799999999987, + "x": 464.758, "y": 179.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1659999999999, + "x": 470.166, "y": 181.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 474.30399999999986, + "x": 474.304, "y": 185.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 476.54399999999987, + "x": 476.544, "y": 191.21 }, { @@ -5760,7 +5760,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 639 }, @@ -5782,13 +5782,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -5846,32 +5846,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -5886,11 +5886,11 @@ } }, { - "x": 555.9679999999998, - "y": 208.84799999999998 + "x": 555.968, + "y": 208.848 }, { - "x": 526.5439999999999, + "x": 526.544, "y": 179.424 }, { @@ -5908,7 +5908,7 @@ "y": 0 }, { - "x": 541.2559999999999, + "x": 541.256, "y": 194.136 }, { @@ -5916,7 +5916,7 @@ "y": 0 }, { - "x": 541.2559999999999, + "x": 541.256, "y": 194.136 }, { @@ -5990,112 +5990,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.9679999999998, - "y": 197.06199999999998 + "x": 555.968, + "y": 197.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.7279999999998, + "x": 553.728, "y": 202.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5899999999998, + "x": 549.59, "y": 206.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.1819999999999, - "y": 208.84799999999998 + "x": 544.182, + "y": 208.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 538.3299999999998, - "y": 208.84799999999998 + "x": 538.33, + "y": 208.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 532.9219999999999, + "x": 532.922, "y": 206.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.7839999999999, + "x": 528.784, "y": 202.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.5439999999999, - "y": 197.06199999999998 + "x": 526.544, + "y": 197.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5439999999999, + "x": 526.544, "y": 191.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.7839999999999, + "x": 528.784, "y": 185.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.9219999999999, + "x": 532.922, "y": 181.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 538.3299999999998, + "x": 538.33, "y": 179.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 544.1819999999999, + "x": 544.182, "y": 179.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 549.5899999999998, + "x": 549.59, "y": 181.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 553.7279999999998, + "x": 553.728, "y": 185.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 555.9679999999998, + "x": 555.968, "y": 191.21 }, { @@ -6103,7 +6103,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 678 }, @@ -6125,13 +6125,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -6189,32 +6189,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -6229,11 +6229,11 @@ } }, { - "x": 635.3919999999998, - "y": 208.84799999999998 + "x": 635.392, + "y": 208.848 }, { - "x": 605.9679999999998, + "x": 605.968, "y": 179.424 }, { @@ -6251,7 +6251,7 @@ "y": 0 }, { - "x": 620.6799999999998, + "x": 620.68, "y": 194.136 }, { @@ -6259,7 +6259,7 @@ "y": 0 }, { - "x": 620.6799999999998, + "x": 620.68, "y": 194.136 }, { @@ -6333,112 +6333,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.3919999999998, - "y": 197.06199999999998 + "x": 635.392, + "y": 197.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.1519999999998, + "x": 633.152, "y": 202.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.0139999999998, + "x": 629.014, "y": 206.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.6059999999999, - "y": 208.84799999999998 + "x": 623.606, + "y": 208.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.7539999999998, - "y": 208.84799999999998 + "x": 617.754, + "y": 208.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 612.3459999999999, + "x": 612.346, "y": 206.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 608.2079999999999, + "x": 608.208, "y": 202.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 605.9679999999998, - "y": 197.06199999999998 + "x": 605.968, + "y": 197.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.9679999999998, + "x": 605.968, "y": 191.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 608.2079999999999, + "x": 608.208, "y": 185.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.3459999999999, + "x": 612.346, "y": 181.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 617.7539999999998, + "x": 617.754, "y": 179.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 623.6059999999999, + "x": 623.606, "y": 179.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 629.0139999999998, + "x": 629.014, "y": 181.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 633.1519999999998, + "x": 633.152, "y": 185.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 635.3919999999998, + "x": 635.392, "y": 191.21 }, { @@ -6446,7 +6446,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 717 }, @@ -6468,13 +6468,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -6532,32 +6532,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -6573,11 +6573,11 @@ }, { "x": 79.424, - "y": 288.27199999999993 + "y": 288.272 }, { "x": 50, - "y": 258.84799999999996 + "y": 258.848 }, { "category": 1, @@ -6595,7 +6595,7 @@ }, { "x": 64.712, - "y": 273.55999999999995 + "y": 273.56 }, { "x": 0, @@ -6603,7 +6603,7 @@ }, { "x": 64.712, - "y": 273.55999999999995 + "y": 273.56 }, { "fillStyle": "#C7F464", @@ -6677,119 +6677,119 @@ "index": 0, "isInternal": false, "x": 79.424, - "y": 276.48599999999993 + "y": 276.486 }, { "body": null, "index": 1, "isInternal": false, "x": 77.184, - "y": 281.89399999999995 + "y": 281.894 }, { "body": null, "index": 2, "isInternal": false, "x": 73.046, - "y": 286.0319999999999 + "y": 286.032 }, { "body": null, "index": 3, "isInternal": false, "x": 67.638, - "y": 288.27199999999993 + "y": 288.272 }, { "body": null, "index": 4, "isInternal": false, "x": 61.786, - "y": 288.27199999999993 + "y": 288.272 }, { "body": null, "index": 5, "isInternal": false, "x": 56.378, - "y": 286.0319999999999 + "y": 286.032 }, { "body": null, "index": 6, "isInternal": false, "x": 52.24, - "y": 281.89399999999995 + "y": 281.894 }, { "body": null, "index": 7, "isInternal": false, "x": 50, - "y": 276.48599999999993 + "y": 276.486 }, { "body": null, "index": 8, "isInternal": false, "x": 50, - "y": 270.63399999999996 + "y": 270.634 }, { "body": null, "index": 9, "isInternal": false, "x": 52.24, - "y": 265.22599999999994 + "y": 265.226 }, { "body": null, "index": 10, "isInternal": false, "x": 56.378, - "y": 261.08799999999997 + "y": 261.088 }, { "body": null, "index": 11, "isInternal": false, "x": 61.786, - "y": 258.84799999999996 + "y": 258.848 }, { "body": null, "index": 12, "isInternal": false, "x": 67.638, - "y": 258.84799999999996 + "y": 258.848 }, { "body": null, "index": 13, "isInternal": false, "x": 73.046, - "y": 261.08799999999997 + "y": 261.088 }, { "body": null, "index": 14, "isInternal": false, "x": 77.184, - "y": 265.22599999999994 + "y": 265.226 }, { "body": null, "index": 15, "isInternal": false, "x": 79.424, - "y": 270.63399999999996 + "y": 270.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 756 }, @@ -6811,13 +6811,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -6875,32 +6875,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -6915,12 +6915,12 @@ } }, { - "x": 158.84799999999998, - "y": 288.27199999999993 + "x": 158.848, + "y": 288.272 }, { - "x": 129.42399999999998, - "y": 258.84799999999996 + "x": 129.424, + "y": 258.848 }, { "category": 1, @@ -6938,7 +6938,7 @@ }, { "x": 144.136, - "y": 273.55999999999995 + "y": 273.56 }, { "x": 0, @@ -6946,7 +6946,7 @@ }, { "x": 144.136, - "y": 273.55999999999995 + "y": 273.56 }, { "fillStyle": "#556270", @@ -7019,120 +7019,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 158.84799999999998, - "y": 276.48599999999993 + "x": 158.848, + "y": 276.486 }, { "body": null, "index": 1, "isInternal": false, "x": 156.608, - "y": 281.89399999999995 + "y": 281.894 }, { "body": null, "index": 2, "isInternal": false, "x": 152.47, - "y": 286.0319999999999 + "y": 286.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 147.06199999999998, - "y": 288.27199999999993 + "x": 147.062, + "y": 288.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 141.20999999999998, - "y": 288.27199999999993 + "x": 141.21, + "y": 288.272 }, { "body": null, "index": 5, "isInternal": false, "x": 135.802, - "y": 286.0319999999999 + "y": 286.032 }, { "body": null, "index": 6, "isInternal": false, "x": 131.664, - "y": 281.89399999999995 + "y": 281.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 129.42399999999998, - "y": 276.48599999999993 + "x": 129.424, + "y": 276.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.42399999999998, - "y": 270.63399999999996 + "x": 129.424, + "y": 270.634 }, { "body": null, "index": 9, "isInternal": false, "x": 131.664, - "y": 265.22599999999994 + "y": 265.226 }, { "body": null, "index": 10, "isInternal": false, "x": 135.802, - "y": 261.08799999999997 + "y": 261.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.20999999999998, - "y": 258.84799999999996 + "x": 141.21, + "y": 258.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.06199999999998, - "y": 258.84799999999996 + "x": 147.062, + "y": 258.848 }, { "body": null, "index": 13, "isInternal": false, "x": 152.47, - "y": 261.08799999999997 + "y": 261.088 }, { "body": null, "index": 14, "isInternal": false, "x": 156.608, - "y": 265.22599999999994 + "y": 265.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 158.84799999999998, - "y": 270.63399999999996 + "x": 158.848, + "y": 270.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 795 }, @@ -7154,13 +7154,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -7218,32 +7218,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -7258,12 +7258,12 @@ } }, { - "x": 238.27199999999996, - "y": 288.27199999999993 + "x": 238.272, + "y": 288.272 }, { - "x": 208.84799999999998, - "y": 258.84799999999996 + "x": 208.848, + "y": 258.848 }, { "category": 1, @@ -7280,16 +7280,16 @@ "y": 0 }, { - "x": 223.55999999999997, - "y": 273.55999999999995 + "x": 223.56, + "y": 273.56 }, { "x": 0, "y": 0 }, { - "x": 223.55999999999997, - "y": 273.55999999999995 + "x": 223.56, + "y": 273.56 }, { "fillStyle": "#4ECDC4", @@ -7362,120 +7362,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.27199999999996, - "y": 276.48599999999993 + "x": 238.272, + "y": 276.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 236.03199999999998, - "y": 281.89399999999995 + "x": 236.032, + "y": 281.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.89399999999998, - "y": 286.0319999999999 + "x": 231.894, + "y": 286.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.48599999999996, - "y": 288.27199999999993 + "x": 226.486, + "y": 288.272 }, { "body": null, "index": 4, "isInternal": false, "x": 220.634, - "y": 288.27199999999993 + "y": 288.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.22599999999997, - "y": 286.0319999999999 + "x": 215.226, + "y": 286.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 211.08799999999997, - "y": 281.89399999999995 + "x": 211.088, + "y": 281.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.84799999999998, - "y": 276.48599999999993 + "x": 208.848, + "y": 276.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 208.84799999999998, - "y": 270.63399999999996 + "x": 208.848, + "y": 270.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.08799999999997, - "y": 265.22599999999994 + "x": 211.088, + "y": 265.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.22599999999997, - "y": 261.08799999999997 + "x": 215.226, + "y": 261.088 }, { "body": null, "index": 11, "isInternal": false, "x": 220.634, - "y": 258.84799999999996 + "y": 258.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.48599999999996, - "y": 258.84799999999996 + "x": 226.486, + "y": 258.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 231.89399999999998, - "y": 261.08799999999997 + "x": 231.894, + "y": 261.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 236.03199999999998, - "y": 265.22599999999994 + "x": 236.032, + "y": 265.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 238.27199999999996, - "y": 270.63399999999996 + "x": 238.272, + "y": 270.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 834 }, @@ -7497,13 +7497,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -7561,32 +7561,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -7601,12 +7601,12 @@ } }, { - "x": 317.6959999999999, - "y": 288.27199999999993 + "x": 317.696, + "y": 288.272 }, { - "x": 288.27199999999993, - "y": 258.84799999999996 + "x": 288.272, + "y": 258.848 }, { "category": 1, @@ -7623,16 +7623,16 @@ "y": 0 }, { - "x": 302.9839999999999, - "y": 273.55999999999995 + "x": 302.984, + "y": 273.56 }, { "x": 0, "y": 0 }, { - "x": 302.9839999999999, - "y": 273.55999999999995 + "x": 302.984, + "y": 273.56 }, { "fillStyle": "#C7F464", @@ -7705,120 +7705,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6959999999999, - "y": 276.48599999999993 + "x": 317.696, + "y": 276.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.4559999999999, - "y": 281.89399999999995 + "x": 315.456, + "y": 281.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.3179999999999, - "y": 286.0319999999999 + "x": 311.318, + "y": 286.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.9099999999999, - "y": 288.27199999999993 + "x": 305.91, + "y": 288.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.05799999999994, - "y": 288.27199999999993 + "x": 300.058, + "y": 288.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.6499999999999, - "y": 286.0319999999999 + "x": 294.65, + "y": 286.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 290.51199999999994, - "y": 281.89399999999995 + "x": 290.512, + "y": 281.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.27199999999993, - "y": 276.48599999999993 + "x": 288.272, + "y": 276.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 288.27199999999993, - "y": 270.63399999999996 + "x": 288.272, + "y": 270.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 290.51199999999994, - "y": 265.22599999999994 + "x": 290.512, + "y": 265.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.6499999999999, - "y": 261.08799999999997 + "x": 294.65, + "y": 261.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.05799999999994, - "y": 258.84799999999996 + "x": 300.058, + "y": 258.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.9099999999999, - "y": 258.84799999999996 + "x": 305.91, + "y": 258.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.3179999999999, - "y": 261.08799999999997 + "x": 311.318, + "y": 261.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.4559999999999, - "y": 265.22599999999994 + "x": 315.456, + "y": 265.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.6959999999999, - "y": 270.63399999999996 + "x": 317.696, + "y": 270.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 873 }, @@ -7840,13 +7840,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -7904,32 +7904,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -7944,12 +7944,12 @@ } }, { - "x": 397.1199999999999, - "y": 288.27199999999993 + "x": 397.12, + "y": 288.272 }, { - "x": 367.6959999999999, - "y": 258.84799999999996 + "x": 367.696, + "y": 258.848 }, { "category": 1, @@ -7966,16 +7966,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 273.55999999999995 + "x": 382.408, + "y": 273.56 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 273.55999999999995 + "x": 382.408, + "y": 273.56 }, { "fillStyle": "#FF6B6B", @@ -8048,120 +8048,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 276.48599999999993 + "x": 397.12, + "y": 276.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 281.89399999999995 + "x": 394.88, + "y": 281.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 286.0319999999999 + "x": 390.742, + "y": 286.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 288.27199999999993 + "x": 385.334, + "y": 288.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 288.27199999999993 + "x": 379.482, + "y": 288.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 286.0319999999999 + "x": 374.074, + "y": 286.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 281.89399999999995 + "x": 369.936, + "y": 281.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 276.48599999999993 + "x": 367.696, + "y": 276.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 270.63399999999996 + "x": 367.696, + "y": 270.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 265.22599999999994 + "x": 369.936, + "y": 265.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 261.08799999999997 + "x": 374.074, + "y": 261.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 258.84799999999996 + "x": 379.482, + "y": 258.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 258.84799999999996 + "x": 385.334, + "y": 258.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 261.08799999999997 + "x": 390.742, + "y": 261.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 265.22599999999994 + "x": 394.88, + "y": 265.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 270.63399999999996 + "x": 397.12, + "y": 270.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 912 }, @@ -8183,13 +8183,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -8247,32 +8247,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -8287,12 +8287,12 @@ } }, { - "x": 476.54399999999987, - "y": 288.27199999999993 + "x": 476.544, + "y": 288.272 }, { - "x": 447.1199999999999, - "y": 258.84799999999996 + "x": 447.12, + "y": 258.848 }, { "category": 1, @@ -8309,16 +8309,16 @@ "y": 0 }, { - "x": 461.8319999999999, - "y": 273.55999999999995 + "x": 461.832, + "y": 273.56 }, { "x": 0, "y": 0 }, { - "x": 461.8319999999999, - "y": 273.55999999999995 + "x": 461.832, + "y": 273.56 }, { "fillStyle": "#FF6B6B", @@ -8391,120 +8391,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.54399999999987, - "y": 276.48599999999993 + "x": 476.544, + "y": 276.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.30399999999986, - "y": 281.89399999999995 + "x": 474.304, + "y": 281.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.1659999999999, - "y": 286.0319999999999 + "x": 470.166, + "y": 286.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.75799999999987, - "y": 288.27199999999993 + "x": 464.758, + "y": 288.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 458.9059999999999, - "y": 288.27199999999993 + "x": 458.906, + "y": 288.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 453.4979999999999, - "y": 286.0319999999999 + "x": 453.498, + "y": 286.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.3599999999999, - "y": 281.89399999999995 + "x": 449.36, + "y": 281.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 447.1199999999999, - "y": 276.48599999999993 + "x": 447.12, + "y": 276.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 447.1199999999999, - "y": 270.63399999999996 + "x": 447.12, + "y": 270.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 449.3599999999999, - "y": 265.22599999999994 + "x": 449.36, + "y": 265.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.4979999999999, - "y": 261.08799999999997 + "x": 453.498, + "y": 261.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.9059999999999, - "y": 258.84799999999996 + "x": 458.906, + "y": 258.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 464.75799999999987, - "y": 258.84799999999996 + "x": 464.758, + "y": 258.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1659999999999, - "y": 261.08799999999997 + "x": 470.166, + "y": 261.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 474.30399999999986, - "y": 265.22599999999994 + "x": 474.304, + "y": 265.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 476.54399999999987, - "y": 270.63399999999996 + "x": 476.544, + "y": 270.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 951 }, @@ -8526,13 +8526,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -8590,32 +8590,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -8630,12 +8630,12 @@ } }, { - "x": 555.9679999999998, - "y": 288.27199999999993 + "x": 555.968, + "y": 288.272 }, { - "x": 526.5439999999999, - "y": 258.84799999999996 + "x": 526.544, + "y": 258.848 }, { "category": 1, @@ -8652,16 +8652,16 @@ "y": 0 }, { - "x": 541.2559999999999, - "y": 273.55999999999995 + "x": 541.256, + "y": 273.56 }, { "x": 0, "y": 0 }, { - "x": 541.2559999999999, - "y": 273.55999999999995 + "x": 541.256, + "y": 273.56 }, { "fillStyle": "#4ECDC4", @@ -8734,120 +8734,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.9679999999998, - "y": 276.48599999999993 + "x": 555.968, + "y": 276.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.7279999999998, - "y": 281.89399999999995 + "x": 553.728, + "y": 281.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5899999999998, - "y": 286.0319999999999 + "x": 549.59, + "y": 286.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.1819999999999, - "y": 288.27199999999993 + "x": 544.182, + "y": 288.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 538.3299999999998, - "y": 288.27199999999993 + "x": 538.33, + "y": 288.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 532.9219999999999, - "y": 286.0319999999999 + "x": 532.922, + "y": 286.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.7839999999999, - "y": 281.89399999999995 + "x": 528.784, + "y": 281.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.5439999999999, - "y": 276.48599999999993 + "x": 526.544, + "y": 276.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5439999999999, - "y": 270.63399999999996 + "x": 526.544, + "y": 270.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.7839999999999, - "y": 265.22599999999994 + "x": 528.784, + "y": 265.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.9219999999999, - "y": 261.08799999999997 + "x": 532.922, + "y": 261.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 538.3299999999998, - "y": 258.84799999999996 + "x": 538.33, + "y": 258.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 544.1819999999999, - "y": 258.84799999999996 + "x": 544.182, + "y": 258.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 549.5899999999998, - "y": 261.08799999999997 + "x": 549.59, + "y": 261.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 553.7279999999998, - "y": 265.22599999999994 + "x": 553.728, + "y": 265.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 555.9679999999998, - "y": 270.63399999999996 + "x": 555.968, + "y": 270.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 990 }, @@ -8869,13 +8869,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -8933,32 +8933,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -8973,12 +8973,12 @@ } }, { - "x": 635.3919999999998, - "y": 288.27199999999993 + "x": 635.392, + "y": 288.272 }, { - "x": 605.9679999999998, - "y": 258.84799999999996 + "x": 605.968, + "y": 258.848 }, { "category": 1, @@ -8995,16 +8995,16 @@ "y": 0 }, { - "x": 620.6799999999998, - "y": 273.55999999999995 + "x": 620.68, + "y": 273.56 }, { "x": 0, "y": 0 }, { - "x": 620.6799999999998, - "y": 273.55999999999995 + "x": 620.68, + "y": 273.56 }, { "fillStyle": "#C44D58", @@ -9077,120 +9077,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.3919999999998, - "y": 276.48599999999993 + "x": 635.392, + "y": 276.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.1519999999998, - "y": 281.89399999999995 + "x": 633.152, + "y": 281.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.0139999999998, - "y": 286.0319999999999 + "x": 629.014, + "y": 286.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.6059999999999, - "y": 288.27199999999993 + "x": 623.606, + "y": 288.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.7539999999998, - "y": 288.27199999999993 + "x": 617.754, + "y": 288.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 612.3459999999999, - "y": 286.0319999999999 + "x": 612.346, + "y": 286.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 608.2079999999999, - "y": 281.89399999999995 + "x": 608.208, + "y": 281.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 605.9679999999998, - "y": 276.48599999999993 + "x": 605.968, + "y": 276.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.9679999999998, - "y": 270.63399999999996 + "x": 605.968, + "y": 270.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 608.2079999999999, - "y": 265.22599999999994 + "x": 608.208, + "y": 265.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.3459999999999, - "y": 261.08799999999997 + "x": 612.346, + "y": 261.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 617.7539999999998, - "y": 258.84799999999996 + "x": 617.754, + "y": 258.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 623.6059999999999, - "y": 258.84799999999996 + "x": 623.606, + "y": 258.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 629.0139999999998, - "y": 261.08799999999997 + "x": 629.014, + "y": 261.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 633.1519999999998, - "y": 265.22599999999994 + "x": 633.152, + "y": 265.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 635.3919999999998, - "y": 270.63399999999996 + "x": 635.392, + "y": 270.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1029 }, @@ -9212,13 +9212,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -9276,32 +9276,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -9317,11 +9317,11 @@ }, { "x": 79.424, - "y": 367.6959999999999 + "y": 367.696 }, { "x": 50, - "y": 338.27199999999993 + "y": 338.272 }, { "category": 1, @@ -9339,7 +9339,7 @@ }, { "x": 64.712, - "y": 352.9839999999999 + "y": 352.984 }, { "x": 0, @@ -9347,7 +9347,7 @@ }, { "x": 64.712, - "y": 352.9839999999999 + "y": 352.984 }, { "fillStyle": "#C44D58", @@ -9421,119 +9421,119 @@ "index": 0, "isInternal": false, "x": 79.424, - "y": 355.9099999999999 + "y": 355.91 }, { "body": null, "index": 1, "isInternal": false, "x": 77.184, - "y": 361.3179999999999 + "y": 361.318 }, { "body": null, "index": 2, "isInternal": false, "x": 73.046, - "y": 365.4559999999999 + "y": 365.456 }, { "body": null, "index": 3, "isInternal": false, "x": 67.638, - "y": 367.6959999999999 + "y": 367.696 }, { "body": null, "index": 4, "isInternal": false, "x": 61.786, - "y": 367.6959999999999 + "y": 367.696 }, { "body": null, "index": 5, "isInternal": false, "x": 56.378, - "y": 365.4559999999999 + "y": 365.456 }, { "body": null, "index": 6, "isInternal": false, "x": 52.24, - "y": 361.3179999999999 + "y": 361.318 }, { "body": null, "index": 7, "isInternal": false, "x": 50, - "y": 355.9099999999999 + "y": 355.91 }, { "body": null, "index": 8, "isInternal": false, "x": 50, - "y": 350.05799999999994 + "y": 350.058 }, { "body": null, "index": 9, "isInternal": false, "x": 52.24, - "y": 344.6499999999999 + "y": 344.65 }, { "body": null, "index": 10, "isInternal": false, "x": 56.378, - "y": 340.51199999999994 + "y": 340.512 }, { "body": null, "index": 11, "isInternal": false, "x": 61.786, - "y": 338.27199999999993 + "y": 338.272 }, { "body": null, "index": 12, "isInternal": false, "x": 67.638, - "y": 338.27199999999993 + "y": 338.272 }, { "body": null, "index": 13, "isInternal": false, "x": 73.046, - "y": 340.51199999999994 + "y": 340.512 }, { "body": null, "index": 14, "isInternal": false, "x": 77.184, - "y": 344.6499999999999 + "y": 344.65 }, { "body": null, "index": 15, "isInternal": false, "x": 79.424, - "y": 350.05799999999994 + "y": 350.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1068 }, @@ -9555,13 +9555,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -9619,32 +9619,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -9659,12 +9659,12 @@ } }, { - "x": 158.84799999999998, - "y": 367.6959999999999 + "x": 158.848, + "y": 367.696 }, { - "x": 129.42399999999998, - "y": 338.27199999999993 + "x": 129.424, + "y": 338.272 }, { "category": 1, @@ -9682,7 +9682,7 @@ }, { "x": 144.136, - "y": 352.9839999999999 + "y": 352.984 }, { "x": 0, @@ -9690,7 +9690,7 @@ }, { "x": 144.136, - "y": 352.9839999999999 + "y": 352.984 }, { "fillStyle": "#C7F464", @@ -9763,120 +9763,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 158.84799999999998, - "y": 355.9099999999999 + "x": 158.848, + "y": 355.91 }, { "body": null, "index": 1, "isInternal": false, "x": 156.608, - "y": 361.3179999999999 + "y": 361.318 }, { "body": null, "index": 2, "isInternal": false, "x": 152.47, - "y": 365.4559999999999 + "y": 365.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 147.06199999999998, - "y": 367.6959999999999 + "x": 147.062, + "y": 367.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 141.20999999999998, - "y": 367.6959999999999 + "x": 141.21, + "y": 367.696 }, { "body": null, "index": 5, "isInternal": false, "x": 135.802, - "y": 365.4559999999999 + "y": 365.456 }, { "body": null, "index": 6, "isInternal": false, "x": 131.664, - "y": 361.3179999999999 + "y": 361.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 129.42399999999998, - "y": 355.9099999999999 + "x": 129.424, + "y": 355.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.42399999999998, - "y": 350.05799999999994 + "x": 129.424, + "y": 350.058 }, { "body": null, "index": 9, "isInternal": false, "x": 131.664, - "y": 344.6499999999999 + "y": 344.65 }, { "body": null, "index": 10, "isInternal": false, "x": 135.802, - "y": 340.51199999999994 + "y": 340.512 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.20999999999998, - "y": 338.27199999999993 + "x": 141.21, + "y": 338.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.06199999999998, - "y": 338.27199999999993 + "x": 147.062, + "y": 338.272 }, { "body": null, "index": 13, "isInternal": false, "x": 152.47, - "y": 340.51199999999994 + "y": 340.512 }, { "body": null, "index": 14, "isInternal": false, "x": 156.608, - "y": 344.6499999999999 + "y": 344.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 158.84799999999998, - "y": 350.05799999999994 + "x": 158.848, + "y": 350.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1107 }, @@ -9898,13 +9898,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -9962,32 +9962,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -10002,12 +10002,12 @@ } }, { - "x": 238.27199999999996, - "y": 367.6959999999999 + "x": 238.272, + "y": 367.696 }, { - "x": 208.84799999999998, - "y": 338.27199999999993 + "x": 208.848, + "y": 338.272 }, { "category": 1, @@ -10024,16 +10024,16 @@ "y": 0 }, { - "x": 223.55999999999997, - "y": 352.9839999999999 + "x": 223.56, + "y": 352.984 }, { "x": 0, "y": 0 }, { - "x": 223.55999999999997, - "y": 352.9839999999999 + "x": 223.56, + "y": 352.984 }, { "fillStyle": "#C44D58", @@ -10106,120 +10106,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.27199999999996, - "y": 355.9099999999999 + "x": 238.272, + "y": 355.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 236.03199999999998, - "y": 361.3179999999999 + "x": 236.032, + "y": 361.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.89399999999998, - "y": 365.4559999999999 + "x": 231.894, + "y": 365.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.48599999999996, - "y": 367.6959999999999 + "x": 226.486, + "y": 367.696 }, { "body": null, "index": 4, "isInternal": false, "x": 220.634, - "y": 367.6959999999999 + "y": 367.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.22599999999997, - "y": 365.4559999999999 + "x": 215.226, + "y": 365.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 211.08799999999997, - "y": 361.3179999999999 + "x": 211.088, + "y": 361.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.84799999999998, - "y": 355.9099999999999 + "x": 208.848, + "y": 355.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 208.84799999999998, - "y": 350.05799999999994 + "x": 208.848, + "y": 350.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.08799999999997, - "y": 344.6499999999999 + "x": 211.088, + "y": 344.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.22599999999997, - "y": 340.51199999999994 + "x": 215.226, + "y": 340.512 }, { "body": null, "index": 11, "isInternal": false, "x": 220.634, - "y": 338.27199999999993 + "y": 338.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.48599999999996, - "y": 338.27199999999993 + "x": 226.486, + "y": 338.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 231.89399999999998, - "y": 340.51199999999994 + "x": 231.894, + "y": 340.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 236.03199999999998, - "y": 344.6499999999999 + "x": 236.032, + "y": 344.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 238.27199999999996, - "y": 350.05799999999994 + "x": 238.272, + "y": 350.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1146 }, @@ -10241,13 +10241,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -10305,32 +10305,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -10345,12 +10345,12 @@ } }, { - "x": 317.6959999999999, - "y": 367.6959999999999 + "x": 317.696, + "y": 367.696 }, { - "x": 288.27199999999993, - "y": 338.27199999999993 + "x": 288.272, + "y": 338.272 }, { "category": 1, @@ -10367,16 +10367,16 @@ "y": 0 }, { - "x": 302.9839999999999, - "y": 352.9839999999999 + "x": 302.984, + "y": 352.984 }, { "x": 0, "y": 0 }, { - "x": 302.9839999999999, - "y": 352.9839999999999 + "x": 302.984, + "y": 352.984 }, { "fillStyle": "#C44D58", @@ -10449,120 +10449,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6959999999999, - "y": 355.9099999999999 + "x": 317.696, + "y": 355.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.4559999999999, - "y": 361.3179999999999 + "x": 315.456, + "y": 361.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.3179999999999, - "y": 365.4559999999999 + "x": 311.318, + "y": 365.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.9099999999999, - "y": 367.6959999999999 + "x": 305.91, + "y": 367.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.05799999999994, - "y": 367.6959999999999 + "x": 300.058, + "y": 367.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.6499999999999, - "y": 365.4559999999999 + "x": 294.65, + "y": 365.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 290.51199999999994, - "y": 361.3179999999999 + "x": 290.512, + "y": 361.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.27199999999993, - "y": 355.9099999999999 + "x": 288.272, + "y": 355.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 288.27199999999993, - "y": 350.05799999999994 + "x": 288.272, + "y": 350.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 290.51199999999994, - "y": 344.6499999999999 + "x": 290.512, + "y": 344.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.6499999999999, - "y": 340.51199999999994 + "x": 294.65, + "y": 340.512 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.05799999999994, - "y": 338.27199999999993 + "x": 300.058, + "y": 338.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.9099999999999, - "y": 338.27199999999993 + "x": 305.91, + "y": 338.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.3179999999999, - "y": 340.51199999999994 + "x": 311.318, + "y": 340.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.4559999999999, - "y": 344.6499999999999 + "x": 315.456, + "y": 344.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.6959999999999, - "y": 350.05799999999994 + "x": 317.696, + "y": 350.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1185 }, @@ -10584,13 +10584,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -10648,32 +10648,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -10688,12 +10688,12 @@ } }, { - "x": 397.1199999999999, - "y": 367.6959999999999 + "x": 397.12, + "y": 367.696 }, { - "x": 367.6959999999999, - "y": 338.27199999999993 + "x": 367.696, + "y": 338.272 }, { "category": 1, @@ -10710,16 +10710,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 352.9839999999999 + "x": 382.408, + "y": 352.984 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 352.9839999999999 + "x": 382.408, + "y": 352.984 }, { "fillStyle": "#FF6B6B", @@ -10792,120 +10792,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 355.9099999999999 + "x": 397.12, + "y": 355.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 361.3179999999999 + "x": 394.88, + "y": 361.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 365.4559999999999 + "x": 390.742, + "y": 365.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 367.6959999999999 + "x": 385.334, + "y": 367.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 367.6959999999999 + "x": 379.482, + "y": 367.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 365.4559999999999 + "x": 374.074, + "y": 365.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 361.3179999999999 + "x": 369.936, + "y": 361.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 355.9099999999999 + "x": 367.696, + "y": 355.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 350.05799999999994 + "x": 367.696, + "y": 350.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 344.6499999999999 + "x": 369.936, + "y": 344.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 340.51199999999994 + "x": 374.074, + "y": 340.512 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 338.27199999999993 + "x": 379.482, + "y": 338.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 338.27199999999993 + "x": 385.334, + "y": 338.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 340.51199999999994 + "x": 390.742, + "y": 340.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 344.6499999999999 + "x": 394.88, + "y": 344.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 350.05799999999994 + "x": 397.12, + "y": 350.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1224 }, @@ -10927,13 +10927,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -10991,32 +10991,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -11031,12 +11031,12 @@ } }, { - "x": 476.54399999999987, - "y": 367.6959999999999 + "x": 476.544, + "y": 367.696 }, { - "x": 447.1199999999999, - "y": 338.27199999999993 + "x": 447.12, + "y": 338.272 }, { "category": 1, @@ -11053,16 +11053,16 @@ "y": 0 }, { - "x": 461.8319999999999, - "y": 352.9839999999999 + "x": 461.832, + "y": 352.984 }, { "x": 0, "y": 0 }, { - "x": 461.8319999999999, - "y": 352.9839999999999 + "x": 461.832, + "y": 352.984 }, { "fillStyle": "#556270", @@ -11135,120 +11135,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.54399999999987, - "y": 355.9099999999999 + "x": 476.544, + "y": 355.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.30399999999986, - "y": 361.3179999999999 + "x": 474.304, + "y": 361.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.1659999999999, - "y": 365.4559999999999 + "x": 470.166, + "y": 365.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.75799999999987, - "y": 367.6959999999999 + "x": 464.758, + "y": 367.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 458.9059999999999, - "y": 367.6959999999999 + "x": 458.906, + "y": 367.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 453.4979999999999, - "y": 365.4559999999999 + "x": 453.498, + "y": 365.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.3599999999999, - "y": 361.3179999999999 + "x": 449.36, + "y": 361.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 447.1199999999999, - "y": 355.9099999999999 + "x": 447.12, + "y": 355.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 447.1199999999999, - "y": 350.05799999999994 + "x": 447.12, + "y": 350.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 449.3599999999999, - "y": 344.6499999999999 + "x": 449.36, + "y": 344.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.4979999999999, - "y": 340.51199999999994 + "x": 453.498, + "y": 340.512 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.9059999999999, - "y": 338.27199999999993 + "x": 458.906, + "y": 338.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 464.75799999999987, - "y": 338.27199999999993 + "x": 464.758, + "y": 338.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1659999999999, - "y": 340.51199999999994 + "x": 470.166, + "y": 340.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 474.30399999999986, - "y": 344.6499999999999 + "x": 474.304, + "y": 344.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 476.54399999999987, - "y": 350.05799999999994 + "x": 476.544, + "y": 350.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1263 }, @@ -11270,13 +11270,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -11334,32 +11334,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -11374,12 +11374,12 @@ } }, { - "x": 555.9679999999998, - "y": 367.6959999999999 + "x": 555.968, + "y": 367.696 }, { - "x": 526.5439999999999, - "y": 338.27199999999993 + "x": 526.544, + "y": 338.272 }, { "category": 1, @@ -11396,16 +11396,16 @@ "y": 0 }, { - "x": 541.2559999999999, - "y": 352.9839999999999 + "x": 541.256, + "y": 352.984 }, { "x": 0, "y": 0 }, { - "x": 541.2559999999999, - "y": 352.9839999999999 + "x": 541.256, + "y": 352.984 }, { "fillStyle": "#4ECDC4", @@ -11478,120 +11478,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.9679999999998, - "y": 355.9099999999999 + "x": 555.968, + "y": 355.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.7279999999998, - "y": 361.3179999999999 + "x": 553.728, + "y": 361.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5899999999998, - "y": 365.4559999999999 + "x": 549.59, + "y": 365.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.1819999999999, - "y": 367.6959999999999 + "x": 544.182, + "y": 367.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 538.3299999999998, - "y": 367.6959999999999 + "x": 538.33, + "y": 367.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 532.9219999999999, - "y": 365.4559999999999 + "x": 532.922, + "y": 365.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.7839999999999, - "y": 361.3179999999999 + "x": 528.784, + "y": 361.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.5439999999999, - "y": 355.9099999999999 + "x": 526.544, + "y": 355.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5439999999999, - "y": 350.05799999999994 + "x": 526.544, + "y": 350.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.7839999999999, - "y": 344.6499999999999 + "x": 528.784, + "y": 344.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.9219999999999, - "y": 340.51199999999994 + "x": 532.922, + "y": 340.512 }, { "body": null, "index": 11, "isInternal": false, - "x": 538.3299999999998, - "y": 338.27199999999993 + "x": 538.33, + "y": 338.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 544.1819999999999, - "y": 338.27199999999993 + "x": 544.182, + "y": 338.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 549.5899999999998, - "y": 340.51199999999994 + "x": 549.59, + "y": 340.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 553.7279999999998, - "y": 344.6499999999999 + "x": 553.728, + "y": 344.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 555.9679999999998, - "y": 350.05799999999994 + "x": 555.968, + "y": 350.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1302 }, @@ -11613,13 +11613,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -11677,32 +11677,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -11717,12 +11717,12 @@ } }, { - "x": 635.3919999999998, - "y": 367.6959999999999 + "x": 635.392, + "y": 367.696 }, { - "x": 605.9679999999998, - "y": 338.27199999999993 + "x": 605.968, + "y": 338.272 }, { "category": 1, @@ -11739,16 +11739,16 @@ "y": 0 }, { - "x": 620.6799999999998, - "y": 352.9839999999999 + "x": 620.68, + "y": 352.984 }, { "x": 0, "y": 0 }, { - "x": 620.6799999999998, - "y": 352.9839999999999 + "x": 620.68, + "y": 352.984 }, { "fillStyle": "#C44D58", @@ -11821,113 +11821,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.3919999999998, - "y": 355.9099999999999 + "x": 635.392, + "y": 355.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.1519999999998, - "y": 361.3179999999999 + "x": 633.152, + "y": 361.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.0139999999998, - "y": 365.4559999999999 + "x": 629.014, + "y": 365.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.6059999999999, - "y": 367.6959999999999 + "x": 623.606, + "y": 367.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.7539999999998, - "y": 367.6959999999999 + "x": 617.754, + "y": 367.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 612.3459999999999, - "y": 365.4559999999999 + "x": 612.346, + "y": 365.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 608.2079999999999, - "y": 361.3179999999999 + "x": 608.208, + "y": 361.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 605.9679999999998, - "y": 355.9099999999999 + "x": 605.968, + "y": 355.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.9679999999998, - "y": 350.05799999999994 + "x": 605.968, + "y": 350.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 608.2079999999999, - "y": 344.6499999999999 + "x": 608.208, + "y": 344.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.3459999999999, - "y": 340.51199999999994 + "x": 612.346, + "y": 340.512 }, { "body": null, "index": 11, "isInternal": false, - "x": 617.7539999999998, - "y": 338.27199999999993 + "x": 617.754, + "y": 338.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 623.6059999999999, - "y": 338.27199999999993 + "x": 623.606, + "y": 338.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 629.0139999999998, - "y": 340.51199999999994 + "x": 629.014, + "y": 340.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 633.1519999999998, - "y": 344.6499999999999 + "x": 633.152, + "y": 344.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 635.3919999999998, - "y": 350.05799999999994 + "x": 635.392, + "y": 350.058 }, [], [], diff --git a/test/browser/refs/events/events-10.json b/test/browser/refs/events/events-10.json index d62f8f1c..cafa34b9 100644 --- a/test/browser/refs/events/events-10.json +++ b/test/browser/refs/events/events-10.json @@ -998,7 +998,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 97 }, @@ -1020,13 +1020,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -1048,7 +1048,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1087,32 +1087,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -1128,11 +1128,11 @@ }, { "x": 79.424, - "y": 147.15975476702576 + "y": 147.15975 }, { "x": 50, - "y": 117.73575476702574 + "y": 117.73575 }, { "category": 1, @@ -1150,7 +1150,7 @@ }, { "x": 64.712, - "y": 132.44775476702574 + "y": 132.44775 }, { "x": 0, @@ -1158,7 +1158,7 @@ }, { "x": 64.712, - "y": 129.5404840519901 + "y": 129.54048 }, { "endCol": 1, @@ -1182,7 +1182,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -1239,119 +1239,119 @@ "index": 0, "isInternal": false, "x": 79.424, - "y": 135.37375476702576 + "y": 135.37375 }, { "body": null, "index": 1, "isInternal": false, "x": 77.184, - "y": 140.78175476702575 + "y": 140.78175 }, { "body": null, "index": 2, "isInternal": false, "x": 73.046, - "y": 144.91975476702575 + "y": 144.91975 }, { "body": null, "index": 3, "isInternal": false, "x": 67.638, - "y": 147.15975476702576 + "y": 147.15975 }, { "body": null, "index": 4, "isInternal": false, "x": 61.786, - "y": 147.15975476702576 + "y": 147.15975 }, { "body": null, "index": 5, "isInternal": false, "x": 56.378, - "y": 144.91975476702575 + "y": 144.91975 }, { "body": null, "index": 6, "isInternal": false, "x": 52.24, - "y": 140.78175476702575 + "y": 140.78175 }, { "body": null, "index": 7, "isInternal": false, "x": 50, - "y": 135.37375476702576 + "y": 135.37375 }, { "body": null, "index": 8, "isInternal": false, "x": 50, - "y": 129.52175476702573 + "y": 129.52175 }, { "body": null, "index": 9, "isInternal": false, "x": 52.24, - "y": 124.11375476702574 + "y": 124.11375 }, { "body": null, "index": 10, "isInternal": false, "x": 56.378, - "y": 119.97575476702575 + "y": 119.97575 }, { "body": null, "index": 11, "isInternal": false, "x": 61.786, - "y": 117.73575476702574 + "y": 117.73575 }, { "body": null, "index": 12, "isInternal": false, "x": 67.638, - "y": 117.73575476702574 + "y": 117.73575 }, { "body": null, "index": 13, "isInternal": false, "x": 73.046, - "y": 119.97575476702575 + "y": 119.97575 }, { "body": null, "index": 14, "isInternal": false, "x": 77.184, - "y": 124.11375476702574 + "y": 124.11375 }, { "body": null, "index": 15, "isInternal": false, "x": 79.424, - "y": 129.52175476702573 + "y": 129.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 137 }, @@ -1373,13 +1373,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -1401,7 +1401,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1440,32 +1440,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -1480,12 +1480,12 @@ } }, { - "x": 158.84799999999998, - "y": 147.15975476702576 + "x": 158.848, + "y": 147.15975 }, { - "x": 129.42399999999998, - "y": 117.73575476702574 + "x": 129.424, + "y": 117.73575 }, { "category": 1, @@ -1503,7 +1503,7 @@ }, { "x": 144.136, - "y": 132.44775476702574 + "y": 132.44775 }, { "x": 0, @@ -1511,7 +1511,7 @@ }, { "x": 144.136, - "y": 129.5404840519901 + "y": 129.54048 }, { "endCol": 3, @@ -1535,7 +1535,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -1591,120 +1591,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 158.84799999999998, - "y": 135.37375476702576 + "x": 158.848, + "y": 135.37375 }, { "body": null, "index": 1, "isInternal": false, "x": 156.608, - "y": 140.78175476702575 + "y": 140.78175 }, { "body": null, "index": 2, "isInternal": false, "x": 152.47, - "y": 144.91975476702575 + "y": 144.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 147.06199999999998, - "y": 147.15975476702576 + "x": 147.062, + "y": 147.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 141.20999999999998, - "y": 147.15975476702576 + "x": 141.21, + "y": 147.15975 }, { "body": null, "index": 5, "isInternal": false, "x": 135.802, - "y": 144.91975476702575 + "y": 144.91975 }, { "body": null, "index": 6, "isInternal": false, "x": 131.664, - "y": 140.78175476702575 + "y": 140.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 129.42399999999998, - "y": 135.37375476702576 + "x": 129.424, + "y": 135.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.42399999999998, - "y": 129.52175476702573 + "x": 129.424, + "y": 129.52175 }, { "body": null, "index": 9, "isInternal": false, "x": 131.664, - "y": 124.11375476702574 + "y": 124.11375 }, { "body": null, "index": 10, "isInternal": false, "x": 135.802, - "y": 119.97575476702575 + "y": 119.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.20999999999998, - "y": 117.73575476702574 + "x": 141.21, + "y": 117.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.06199999999998, - "y": 117.73575476702574 + "x": 147.062, + "y": 117.73575 }, { "body": null, "index": 13, "isInternal": false, "x": 152.47, - "y": 119.97575476702575 + "y": 119.97575 }, { "body": null, "index": 14, "isInternal": false, "x": 156.608, - "y": 124.11375476702574 + "y": 124.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 158.84799999999998, - "y": 129.52175476702573 + "x": 158.848, + "y": 129.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 177 }, @@ -1726,13 +1726,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -1754,7 +1754,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1793,32 +1793,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -1833,12 +1833,12 @@ } }, { - "x": 238.27199999999996, - "y": 147.15975476702576 + "x": 238.272, + "y": 147.15975 }, { - "x": 208.84799999999998, - "y": 117.73575476702574 + "x": 208.848, + "y": 117.73575 }, { "category": 1, @@ -1855,16 +1855,16 @@ "y": 0 }, { - "x": 223.55999999999997, - "y": 132.44775476702574 + "x": 223.56, + "y": 132.44775 }, { "x": 0, "y": 0 }, { - "x": 223.55999999999997, - "y": 129.5404840519901 + "x": 223.56, + "y": 129.54048 }, { "endCol": 4, @@ -1888,7 +1888,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -1944,120 +1944,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.27199999999996, - "y": 135.37375476702576 + "x": 238.272, + "y": 135.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 236.03199999999998, - "y": 140.78175476702575 + "x": 236.032, + "y": 140.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.89399999999998, - "y": 144.91975476702575 + "x": 231.894, + "y": 144.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.48599999999996, - "y": 147.15975476702576 + "x": 226.486, + "y": 147.15975 }, { "body": null, "index": 4, "isInternal": false, "x": 220.634, - "y": 147.15975476702576 + "y": 147.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.22599999999997, - "y": 144.91975476702575 + "x": 215.226, + "y": 144.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 211.08799999999997, - "y": 140.78175476702575 + "x": 211.088, + "y": 140.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.84799999999998, - "y": 135.37375476702576 + "x": 208.848, + "y": 135.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 208.84799999999998, - "y": 129.52175476702573 + "x": 208.848, + "y": 129.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.08799999999997, - "y": 124.11375476702574 + "x": 211.088, + "y": 124.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.22599999999997, - "y": 119.97575476702575 + "x": 215.226, + "y": 119.97575 }, { "body": null, "index": 11, "isInternal": false, "x": 220.634, - "y": 117.73575476702574 + "y": 117.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.48599999999996, - "y": 117.73575476702574 + "x": 226.486, + "y": 117.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 231.89399999999998, - "y": 119.97575476702575 + "x": 231.894, + "y": 119.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 236.03199999999998, - "y": 124.11375476702574 + "x": 236.032, + "y": 124.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 238.27199999999996, - "y": 129.52175476702573 + "x": 238.272, + "y": 129.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 217 }, @@ -2079,13 +2079,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -2107,7 +2107,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2146,32 +2146,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -2186,12 +2186,12 @@ } }, { - "x": 317.6959999999999, - "y": 147.15975476702576 + "x": 317.696, + "y": 147.15975 }, { - "x": 288.27199999999993, - "y": 117.73575476702574 + "x": 288.272, + "y": 117.73575 }, { "category": 1, @@ -2208,16 +2208,16 @@ "y": 0 }, { - "x": 302.9839999999999, - "y": 132.44775476702574 + "x": 302.984, + "y": 132.44775 }, { "x": 0, "y": 0 }, { - "x": 302.9839999999999, - "y": 129.5404840519901 + "x": 302.984, + "y": 129.54048 }, { "endCol": 6, @@ -2241,7 +2241,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -2297,120 +2297,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6959999999999, - "y": 135.37375476702576 + "x": 317.696, + "y": 135.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.4559999999999, - "y": 140.78175476702575 + "x": 315.456, + "y": 140.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.3179999999999, - "y": 144.91975476702575 + "x": 311.318, + "y": 144.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.9099999999999, - "y": 147.15975476702576 + "x": 305.91, + "y": 147.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.05799999999994, - "y": 147.15975476702576 + "x": 300.058, + "y": 147.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.6499999999999, - "y": 144.91975476702575 + "x": 294.65, + "y": 144.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 290.51199999999994, - "y": 140.78175476702575 + "x": 290.512, + "y": 140.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.27199999999993, - "y": 135.37375476702576 + "x": 288.272, + "y": 135.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 288.27199999999993, - "y": 129.52175476702573 + "x": 288.272, + "y": 129.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 290.51199999999994, - "y": 124.11375476702574 + "x": 290.512, + "y": 124.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.6499999999999, - "y": 119.97575476702575 + "x": 294.65, + "y": 119.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.05799999999994, - "y": 117.73575476702574 + "x": 300.058, + "y": 117.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.9099999999999, - "y": 117.73575476702574 + "x": 305.91, + "y": 117.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.3179999999999, - "y": 119.97575476702575 + "x": 311.318, + "y": 119.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.4559999999999, - "y": 124.11375476702574 + "x": 315.456, + "y": 124.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.6959999999999, - "y": 129.52175476702573 + "x": 317.696, + "y": 129.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 257 }, @@ -2432,13 +2432,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -2460,7 +2460,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2499,32 +2499,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -2539,12 +2539,12 @@ } }, { - "x": 397.1199999999999, - "y": 147.15975476702576 + "x": 397.12, + "y": 147.15975 }, { - "x": 367.6959999999999, - "y": 117.73575476702574 + "x": 367.696, + "y": 117.73575 }, { "category": 1, @@ -2561,16 +2561,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 132.44775476702574 + "x": 382.408, + "y": 132.44775 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 129.5404840519901 + "x": 382.408, + "y": 129.54048 }, { "endCol": 8, @@ -2594,7 +2594,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -2650,120 +2650,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 135.37375476702576 + "x": 397.12, + "y": 135.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 140.78175476702575 + "x": 394.88, + "y": 140.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 144.91975476702575 + "x": 390.742, + "y": 144.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 147.15975476702576 + "x": 385.334, + "y": 147.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 147.15975476702576 + "x": 379.482, + "y": 147.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 144.91975476702575 + "x": 374.074, + "y": 144.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 140.78175476702575 + "x": 369.936, + "y": 140.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 135.37375476702576 + "x": 367.696, + "y": 135.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 129.52175476702573 + "x": 367.696, + "y": 129.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 124.11375476702574 + "x": 369.936, + "y": 124.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 119.97575476702575 + "x": 374.074, + "y": 119.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 117.73575476702574 + "x": 379.482, + "y": 117.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 117.73575476702574 + "x": 385.334, + "y": 117.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 119.97575476702575 + "x": 390.742, + "y": 119.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 124.11375476702574 + "x": 394.88, + "y": 124.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 129.52175476702573 + "x": 397.12, + "y": 129.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 297 }, @@ -2785,13 +2785,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -2813,7 +2813,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2852,32 +2852,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -2892,12 +2892,12 @@ } }, { - "x": 476.54399999999987, - "y": 147.15975476702576 + "x": 476.544, + "y": 147.15975 }, { - "x": 447.1199999999999, - "y": 117.73575476702574 + "x": 447.12, + "y": 117.73575 }, { "category": 1, @@ -2914,16 +2914,16 @@ "y": 0 }, { - "x": 461.8319999999999, - "y": 132.44775476702574 + "x": 461.832, + "y": 132.44775 }, { "x": 0, "y": 0 }, { - "x": 461.8319999999999, - "y": 129.5404840519901 + "x": 461.832, + "y": 129.54048 }, { "endCol": 9, @@ -2947,7 +2947,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -3003,120 +3003,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.54399999999987, - "y": 135.37375476702576 + "x": 476.544, + "y": 135.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.30399999999986, - "y": 140.78175476702575 + "x": 474.304, + "y": 140.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.1659999999999, - "y": 144.91975476702575 + "x": 470.166, + "y": 144.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.75799999999987, - "y": 147.15975476702576 + "x": 464.758, + "y": 147.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 458.9059999999999, - "y": 147.15975476702576 + "x": 458.906, + "y": 147.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 453.4979999999999, - "y": 144.91975476702575 + "x": 453.498, + "y": 144.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.3599999999999, - "y": 140.78175476702575 + "x": 449.36, + "y": 140.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 447.1199999999999, - "y": 135.37375476702576 + "x": 447.12, + "y": 135.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 447.1199999999999, - "y": 129.52175476702573 + "x": 447.12, + "y": 129.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 449.3599999999999, - "y": 124.11375476702574 + "x": 449.36, + "y": 124.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.4979999999999, - "y": 119.97575476702575 + "x": 453.498, + "y": 119.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.9059999999999, - "y": 117.73575476702574 + "x": 458.906, + "y": 117.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 464.75799999999987, - "y": 117.73575476702574 + "x": 464.758, + "y": 117.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1659999999999, - "y": 119.97575476702575 + "x": 470.166, + "y": 119.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 474.30399999999986, - "y": 124.11375476702574 + "x": 474.304, + "y": 124.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 476.54399999999987, - "y": 129.52175476702573 + "x": 476.544, + "y": 129.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 337 }, @@ -3138,13 +3138,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -3166,7 +3166,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3205,32 +3205,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -3245,12 +3245,12 @@ } }, { - "x": 555.9679999999998, - "y": 147.15975476702576 + "x": 555.968, + "y": 147.15975 }, { - "x": 526.5439999999999, - "y": 117.73575476702574 + "x": 526.544, + "y": 117.73575 }, { "category": 1, @@ -3267,16 +3267,16 @@ "y": 0 }, { - "x": 541.2559999999999, - "y": 132.44775476702574 + "x": 541.256, + "y": 132.44775 }, { "x": 0, "y": 0 }, { - "x": 541.2559999999999, - "y": 129.5404840519901 + "x": 541.256, + "y": 129.54048 }, { "endCol": 11, @@ -3300,7 +3300,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -3356,120 +3356,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.9679999999998, - "y": 135.37375476702576 + "x": 555.968, + "y": 135.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.7279999999998, - "y": 140.78175476702575 + "x": 553.728, + "y": 140.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5899999999998, - "y": 144.91975476702575 + "x": 549.59, + "y": 144.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.1819999999999, - "y": 147.15975476702576 + "x": 544.182, + "y": 147.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 538.3299999999998, - "y": 147.15975476702576 + "x": 538.33, + "y": 147.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 532.9219999999999, - "y": 144.91975476702575 + "x": 532.922, + "y": 144.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.7839999999999, - "y": 140.78175476702575 + "x": 528.784, + "y": 140.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.5439999999999, - "y": 135.37375476702576 + "x": 526.544, + "y": 135.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5439999999999, - "y": 129.52175476702573 + "x": 526.544, + "y": 129.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.7839999999999, - "y": 124.11375476702574 + "x": 528.784, + "y": 124.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.9219999999999, - "y": 119.97575476702575 + "x": 532.922, + "y": 119.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 538.3299999999998, - "y": 117.73575476702574 + "x": 538.33, + "y": 117.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 544.1819999999999, - "y": 117.73575476702574 + "x": 544.182, + "y": 117.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 549.5899999999998, - "y": 119.97575476702575 + "x": 549.59, + "y": 119.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 553.7279999999998, - "y": 124.11375476702574 + "x": 553.728, + "y": 124.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 555.9679999999998, - "y": 129.52175476702573 + "x": 555.968, + "y": 129.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 377 }, @@ -3491,13 +3491,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -3519,7 +3519,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3558,32 +3558,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -3598,12 +3598,12 @@ } }, { - "x": 635.3919999999998, - "y": 147.15975476702576 + "x": 635.392, + "y": 147.15975 }, { - "x": 605.9679999999998, - "y": 117.73575476702574 + "x": 605.968, + "y": 117.73575 }, { "category": 1, @@ -3620,16 +3620,16 @@ "y": 0 }, { - "x": 620.6799999999998, - "y": 132.44775476702574 + "x": 620.68, + "y": 132.44775 }, { "x": 0, "y": 0 }, { - "x": 620.6799999999998, - "y": 129.5404840519901 + "x": 620.68, + "y": 129.54048 }, { "endCol": 13, @@ -3653,7 +3653,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -3709,120 +3709,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.3919999999998, - "y": 135.37375476702576 + "x": 635.392, + "y": 135.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.1519999999998, - "y": 140.78175476702575 + "x": 633.152, + "y": 140.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.0139999999998, - "y": 144.91975476702575 + "x": 629.014, + "y": 144.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.6059999999999, - "y": 147.15975476702576 + "x": 623.606, + "y": 147.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.7539999999998, - "y": 147.15975476702576 + "x": 617.754, + "y": 147.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 612.3459999999999, - "y": 144.91975476702575 + "x": 612.346, + "y": 144.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 608.2079999999999, - "y": 140.78175476702575 + "x": 608.208, + "y": 140.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 605.9679999999998, - "y": 135.37375476702576 + "x": 605.968, + "y": 135.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.9679999999998, - "y": 129.52175476702573 + "x": 605.968, + "y": 129.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 608.2079999999999, - "y": 124.11375476702574 + "x": 608.208, + "y": 124.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.3459999999999, - "y": 119.97575476702575 + "x": 612.346, + "y": 119.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 617.7539999999998, - "y": 117.73575476702574 + "x": 617.754, + "y": 117.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 623.6059999999999, - "y": 117.73575476702574 + "x": 623.606, + "y": 117.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 629.0139999999998, - "y": 119.97575476702575 + "x": 629.014, + "y": 119.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 633.1519999999998, - "y": 124.11375476702574 + "x": 633.152, + "y": 124.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 635.3919999999998, - "y": 129.52175476702573 + "x": 635.392, + "y": 129.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 417 }, @@ -3844,13 +3844,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -3872,7 +3872,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3911,32 +3911,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -3952,11 +3952,11 @@ }, { "x": 79.424, - "y": 226.58375476702597 + "y": 226.58375 }, { "x": 50, - "y": 197.159754767026 + "y": 197.15975 }, { "category": 1, @@ -3974,7 +3974,7 @@ }, { "x": 64.712, - "y": 211.87175476702598 + "y": 211.87175 }, { "x": 0, @@ -3982,7 +3982,7 @@ }, { "x": 64.712, - "y": 208.9644840519903 + "y": 208.96448 }, { "endCol": 1, @@ -4006,7 +4006,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4063,119 +4063,119 @@ "index": 0, "isInternal": false, "x": 79.424, - "y": 214.79775476702596 + "y": 214.79775 }, { "body": null, "index": 1, "isInternal": false, "x": 77.184, - "y": 220.20575476702598 + "y": 220.20575 }, { "body": null, "index": 2, "isInternal": false, "x": 73.046, - "y": 224.34375476702598 + "y": 224.34375 }, { "body": null, "index": 3, "isInternal": false, "x": 67.638, - "y": 226.58375476702597 + "y": 226.58375 }, { "body": null, "index": 4, "isInternal": false, "x": 61.786, - "y": 226.58375476702597 + "y": 226.58375 }, { "body": null, "index": 5, "isInternal": false, "x": 56.378, - "y": 224.34375476702598 + "y": 224.34375 }, { "body": null, "index": 6, "isInternal": false, "x": 52.24, - "y": 220.20575476702598 + "y": 220.20575 }, { "body": null, "index": 7, "isInternal": false, "x": 50, - "y": 214.79775476702596 + "y": 214.79775 }, { "body": null, "index": 8, "isInternal": false, "x": 50, - "y": 208.945754767026 + "y": 208.94575 }, { "body": null, "index": 9, "isInternal": false, "x": 52.24, - "y": 203.53775476702597 + "y": 203.53775 }, { "body": null, "index": 10, "isInternal": false, "x": 56.378, - "y": 199.39975476702597 + "y": 199.39975 }, { "body": null, "index": 11, "isInternal": false, "x": 61.786, - "y": 197.159754767026 + "y": 197.15975 }, { "body": null, "index": 12, "isInternal": false, "x": 67.638, - "y": 197.159754767026 + "y": 197.15975 }, { "body": null, "index": 13, "isInternal": false, "x": 73.046, - "y": 199.39975476702597 + "y": 199.39975 }, { "body": null, "index": 14, "isInternal": false, "x": 77.184, - "y": 203.53775476702597 + "y": 203.53775 }, { "body": null, "index": 15, "isInternal": false, "x": 79.424, - "y": 208.945754767026 + "y": 208.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 457 }, @@ -4197,13 +4197,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -4225,7 +4225,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4264,32 +4264,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -4304,12 +4304,12 @@ } }, { - "x": 158.84799999999998, - "y": 226.58375476702597 + "x": 158.848, + "y": 226.58375 }, { - "x": 129.42399999999998, - "y": 197.159754767026 + "x": 129.424, + "y": 197.15975 }, { "category": 1, @@ -4327,7 +4327,7 @@ }, { "x": 144.136, - "y": 211.87175476702598 + "y": 211.87175 }, { "x": 0, @@ -4335,7 +4335,7 @@ }, { "x": 144.136, - "y": 208.9644840519903 + "y": 208.96448 }, { "endCol": 3, @@ -4359,7 +4359,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4415,120 +4415,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 158.84799999999998, - "y": 214.79775476702596 + "x": 158.848, + "y": 214.79775 }, { "body": null, "index": 1, "isInternal": false, "x": 156.608, - "y": 220.20575476702598 + "y": 220.20575 }, { "body": null, "index": 2, "isInternal": false, "x": 152.47, - "y": 224.34375476702598 + "y": 224.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 147.06199999999998, - "y": 226.58375476702597 + "x": 147.062, + "y": 226.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 141.20999999999998, - "y": 226.58375476702597 + "x": 141.21, + "y": 226.58375 }, { "body": null, "index": 5, "isInternal": false, "x": 135.802, - "y": 224.34375476702598 + "y": 224.34375 }, { "body": null, "index": 6, "isInternal": false, "x": 131.664, - "y": 220.20575476702598 + "y": 220.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 129.42399999999998, - "y": 214.79775476702596 + "x": 129.424, + "y": 214.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.42399999999998, - "y": 208.945754767026 + "x": 129.424, + "y": 208.94575 }, { "body": null, "index": 9, "isInternal": false, "x": 131.664, - "y": 203.53775476702597 + "y": 203.53775 }, { "body": null, "index": 10, "isInternal": false, "x": 135.802, - "y": 199.39975476702597 + "y": 199.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.20999999999998, - "y": 197.159754767026 + "x": 141.21, + "y": 197.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.06199999999998, - "y": 197.159754767026 + "x": 147.062, + "y": 197.15975 }, { "body": null, "index": 13, "isInternal": false, "x": 152.47, - "y": 199.39975476702597 + "y": 199.39975 }, { "body": null, "index": 14, "isInternal": false, "x": 156.608, - "y": 203.53775476702597 + "y": 203.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 158.84799999999998, - "y": 208.945754767026 + "x": 158.848, + "y": 208.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 497 }, @@ -4550,13 +4550,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -4578,7 +4578,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4617,32 +4617,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -4657,12 +4657,12 @@ } }, { - "x": 238.27199999999996, - "y": 226.58375476702597 + "x": 238.272, + "y": 226.58375 }, { - "x": 208.84799999999998, - "y": 197.159754767026 + "x": 208.848, + "y": 197.15975 }, { "category": 1, @@ -4679,16 +4679,16 @@ "y": 0 }, { - "x": 223.55999999999997, - "y": 211.87175476702598 + "x": 223.56, + "y": 211.87175 }, { "x": 0, "y": 0 }, { - "x": 223.55999999999997, - "y": 208.9644840519903 + "x": 223.56, + "y": 208.96448 }, { "endCol": 4, @@ -4712,7 +4712,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4768,120 +4768,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.27199999999996, - "y": 214.79775476702596 + "x": 238.272, + "y": 214.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 236.03199999999998, - "y": 220.20575476702598 + "x": 236.032, + "y": 220.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.89399999999998, - "y": 224.34375476702598 + "x": 231.894, + "y": 224.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.48599999999996, - "y": 226.58375476702597 + "x": 226.486, + "y": 226.58375 }, { "body": null, "index": 4, "isInternal": false, "x": 220.634, - "y": 226.58375476702597 + "y": 226.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.22599999999997, - "y": 224.34375476702598 + "x": 215.226, + "y": 224.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 211.08799999999997, - "y": 220.20575476702598 + "x": 211.088, + "y": 220.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.84799999999998, - "y": 214.79775476702596 + "x": 208.848, + "y": 214.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 208.84799999999998, - "y": 208.945754767026 + "x": 208.848, + "y": 208.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.08799999999997, - "y": 203.53775476702597 + "x": 211.088, + "y": 203.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.22599999999997, - "y": 199.39975476702597 + "x": 215.226, + "y": 199.39975 }, { "body": null, "index": 11, "isInternal": false, "x": 220.634, - "y": 197.159754767026 + "y": 197.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.48599999999996, - "y": 197.159754767026 + "x": 226.486, + "y": 197.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 231.89399999999998, - "y": 199.39975476702597 + "x": 231.894, + "y": 199.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 236.03199999999998, - "y": 203.53775476702597 + "x": 236.032, + "y": 203.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 238.27199999999996, - "y": 208.945754767026 + "x": 238.272, + "y": 208.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 537 }, @@ -4903,13 +4903,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -4931,7 +4931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4970,32 +4970,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -5010,12 +5010,12 @@ } }, { - "x": 317.6959999999999, - "y": 226.58375476702597 + "x": 317.696, + "y": 226.58375 }, { - "x": 288.27199999999993, - "y": 197.159754767026 + "x": 288.272, + "y": 197.15975 }, { "category": 1, @@ -5032,16 +5032,16 @@ "y": 0 }, { - "x": 302.9839999999999, - "y": 211.87175476702598 + "x": 302.984, + "y": 211.87175 }, { "x": 0, "y": 0 }, { - "x": 302.9839999999999, - "y": 208.9644840519903 + "x": 302.984, + "y": 208.96448 }, { "endCol": 6, @@ -5065,7 +5065,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5121,120 +5121,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6959999999999, - "y": 214.79775476702596 + "x": 317.696, + "y": 214.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.4559999999999, - "y": 220.20575476702598 + "x": 315.456, + "y": 220.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.3179999999999, - "y": 224.34375476702598 + "x": 311.318, + "y": 224.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.9099999999999, - "y": 226.58375476702597 + "x": 305.91, + "y": 226.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.05799999999994, - "y": 226.58375476702597 + "x": 300.058, + "y": 226.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.6499999999999, - "y": 224.34375476702598 + "x": 294.65, + "y": 224.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 290.51199999999994, - "y": 220.20575476702598 + "x": 290.512, + "y": 220.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.27199999999993, - "y": 214.79775476702596 + "x": 288.272, + "y": 214.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 288.27199999999993, - "y": 208.945754767026 + "x": 288.272, + "y": 208.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 290.51199999999994, - "y": 203.53775476702597 + "x": 290.512, + "y": 203.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.6499999999999, - "y": 199.39975476702597 + "x": 294.65, + "y": 199.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.05799999999994, - "y": 197.159754767026 + "x": 300.058, + "y": 197.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.9099999999999, - "y": 197.159754767026 + "x": 305.91, + "y": 197.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.3179999999999, - "y": 199.39975476702597 + "x": 311.318, + "y": 199.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.4559999999999, - "y": 203.53775476702597 + "x": 315.456, + "y": 203.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.6959999999999, - "y": 208.945754767026 + "x": 317.696, + "y": 208.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 577 }, @@ -5256,13 +5256,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -5284,7 +5284,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5323,32 +5323,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -5363,12 +5363,12 @@ } }, { - "x": 397.1199999999999, - "y": 226.58375476702597 + "x": 397.12, + "y": 226.58375 }, { - "x": 367.6959999999999, - "y": 197.159754767026 + "x": 367.696, + "y": 197.15975 }, { "category": 1, @@ -5385,16 +5385,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 211.87175476702598 + "x": 382.408, + "y": 211.87175 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 208.9644840519903 + "x": 382.408, + "y": 208.96448 }, { "endCol": 8, @@ -5418,7 +5418,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5474,120 +5474,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 214.79775476702596 + "x": 397.12, + "y": 214.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 220.20575476702598 + "x": 394.88, + "y": 220.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 224.34375476702598 + "x": 390.742, + "y": 224.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 226.58375476702597 + "x": 385.334, + "y": 226.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 226.58375476702597 + "x": 379.482, + "y": 226.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 224.34375476702598 + "x": 374.074, + "y": 224.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 220.20575476702598 + "x": 369.936, + "y": 220.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 214.79775476702596 + "x": 367.696, + "y": 214.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 208.945754767026 + "x": 367.696, + "y": 208.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 203.53775476702597 + "x": 369.936, + "y": 203.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 199.39975476702597 + "x": 374.074, + "y": 199.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 197.159754767026 + "x": 379.482, + "y": 197.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 197.159754767026 + "x": 385.334, + "y": 197.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 199.39975476702597 + "x": 390.742, + "y": 199.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 203.53775476702597 + "x": 394.88, + "y": 203.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 208.945754767026 + "x": 397.12, + "y": 208.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 617 }, @@ -5609,13 +5609,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -5637,7 +5637,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5676,32 +5676,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -5716,12 +5716,12 @@ } }, { - "x": 476.54399999999987, - "y": 226.58375476702597 + "x": 476.544, + "y": 226.58375 }, { - "x": 447.1199999999999, - "y": 197.159754767026 + "x": 447.12, + "y": 197.15975 }, { "category": 1, @@ -5738,16 +5738,16 @@ "y": 0 }, { - "x": 461.8319999999999, - "y": 211.87175476702598 + "x": 461.832, + "y": 211.87175 }, { "x": 0, "y": 0 }, { - "x": 461.8319999999999, - "y": 208.9644840519903 + "x": 461.832, + "y": 208.96448 }, { "endCol": 9, @@ -5771,7 +5771,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5827,120 +5827,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.54399999999987, - "y": 214.79775476702596 + "x": 476.544, + "y": 214.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.30399999999986, - "y": 220.20575476702598 + "x": 474.304, + "y": 220.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.1659999999999, - "y": 224.34375476702598 + "x": 470.166, + "y": 224.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.75799999999987, - "y": 226.58375476702597 + "x": 464.758, + "y": 226.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 458.9059999999999, - "y": 226.58375476702597 + "x": 458.906, + "y": 226.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 453.4979999999999, - "y": 224.34375476702598 + "x": 453.498, + "y": 224.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.3599999999999, - "y": 220.20575476702598 + "x": 449.36, + "y": 220.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 447.1199999999999, - "y": 214.79775476702596 + "x": 447.12, + "y": 214.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 447.1199999999999, - "y": 208.945754767026 + "x": 447.12, + "y": 208.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 449.3599999999999, - "y": 203.53775476702597 + "x": 449.36, + "y": 203.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.4979999999999, - "y": 199.39975476702597 + "x": 453.498, + "y": 199.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.9059999999999, - "y": 197.159754767026 + "x": 458.906, + "y": 197.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 464.75799999999987, - "y": 197.159754767026 + "x": 464.758, + "y": 197.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1659999999999, - "y": 199.39975476702597 + "x": 470.166, + "y": 199.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 474.30399999999986, - "y": 203.53775476702597 + "x": 474.304, + "y": 203.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 476.54399999999987, - "y": 208.945754767026 + "x": 476.544, + "y": 208.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 657 }, @@ -5962,13 +5962,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -5990,7 +5990,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6029,32 +6029,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -6069,12 +6069,12 @@ } }, { - "x": 555.9679999999998, - "y": 226.58375476702597 + "x": 555.968, + "y": 226.58375 }, { - "x": 526.5439999999999, - "y": 197.159754767026 + "x": 526.544, + "y": 197.15975 }, { "category": 1, @@ -6091,16 +6091,16 @@ "y": 0 }, { - "x": 541.2559999999999, - "y": 211.87175476702598 + "x": 541.256, + "y": 211.87175 }, { "x": 0, "y": 0 }, { - "x": 541.2559999999999, - "y": 208.9644840519903 + "x": 541.256, + "y": 208.96448 }, { "endCol": 11, @@ -6124,7 +6124,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6180,120 +6180,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.9679999999998, - "y": 214.79775476702596 + "x": 555.968, + "y": 214.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.7279999999998, - "y": 220.20575476702598 + "x": 553.728, + "y": 220.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5899999999998, - "y": 224.34375476702598 + "x": 549.59, + "y": 224.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.1819999999999, - "y": 226.58375476702597 + "x": 544.182, + "y": 226.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 538.3299999999998, - "y": 226.58375476702597 + "x": 538.33, + "y": 226.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 532.9219999999999, - "y": 224.34375476702598 + "x": 532.922, + "y": 224.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.7839999999999, - "y": 220.20575476702598 + "x": 528.784, + "y": 220.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.5439999999999, - "y": 214.79775476702596 + "x": 526.544, + "y": 214.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5439999999999, - "y": 208.945754767026 + "x": 526.544, + "y": 208.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.7839999999999, - "y": 203.53775476702597 + "x": 528.784, + "y": 203.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.9219999999999, - "y": 199.39975476702597 + "x": 532.922, + "y": 199.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 538.3299999999998, - "y": 197.159754767026 + "x": 538.33, + "y": 197.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 544.1819999999999, - "y": 197.159754767026 + "x": 544.182, + "y": 197.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 549.5899999999998, - "y": 199.39975476702597 + "x": 549.59, + "y": 199.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 553.7279999999998, - "y": 203.53775476702597 + "x": 553.728, + "y": 203.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 555.9679999999998, - "y": 208.945754767026 + "x": 555.968, + "y": 208.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 697 }, @@ -6315,13 +6315,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -6343,7 +6343,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6382,32 +6382,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -6422,12 +6422,12 @@ } }, { - "x": 635.3919999999998, - "y": 226.58375476702597 + "x": 635.392, + "y": 226.58375 }, { - "x": 605.9679999999998, - "y": 197.159754767026 + "x": 605.968, + "y": 197.15975 }, { "category": 1, @@ -6444,16 +6444,16 @@ "y": 0 }, { - "x": 620.6799999999998, - "y": 211.87175476702598 + "x": 620.68, + "y": 211.87175 }, { "x": 0, "y": 0 }, { - "x": 620.6799999999998, - "y": 208.9644840519903 + "x": 620.68, + "y": 208.96448 }, { "endCol": 13, @@ -6477,7 +6477,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6533,120 +6533,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.3919999999998, - "y": 214.79775476702596 + "x": 635.392, + "y": 214.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.1519999999998, - "y": 220.20575476702598 + "x": 633.152, + "y": 220.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.0139999999998, - "y": 224.34375476702598 + "x": 629.014, + "y": 224.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.6059999999999, - "y": 226.58375476702597 + "x": 623.606, + "y": 226.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.7539999999998, - "y": 226.58375476702597 + "x": 617.754, + "y": 226.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 612.3459999999999, - "y": 224.34375476702598 + "x": 612.346, + "y": 224.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 608.2079999999999, - "y": 220.20575476702598 + "x": 608.208, + "y": 220.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 605.9679999999998, - "y": 214.79775476702596 + "x": 605.968, + "y": 214.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.9679999999998, - "y": 208.945754767026 + "x": 605.968, + "y": 208.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 608.2079999999999, - "y": 203.53775476702597 + "x": 608.208, + "y": 203.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.3459999999999, - "y": 199.39975476702597 + "x": 612.346, + "y": 199.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 617.7539999999998, - "y": 197.159754767026 + "x": 617.754, + "y": 197.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 623.6059999999999, - "y": 197.159754767026 + "x": 623.606, + "y": 197.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 629.0139999999998, - "y": 199.39975476702597 + "x": 629.014, + "y": 199.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 633.1519999999998, - "y": 203.53775476702597 + "x": 633.152, + "y": 203.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 635.3919999999998, - "y": 208.945754767026 + "x": 635.392, + "y": 208.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 737 }, @@ -6668,13 +6668,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -6696,7 +6696,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6735,32 +6735,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -6776,11 +6776,11 @@ }, { "x": 79.424, - "y": 306.0077547670249 + "y": 306.00775 }, { "x": 50, - "y": 276.5837547670249 + "y": 276.58375 }, { "category": 1, @@ -6798,7 +6798,7 @@ }, { "x": 64.712, - "y": 291.2957547670249 + "y": 291.29575 }, { "x": 0, @@ -6806,7 +6806,7 @@ }, { "x": 64.712, - "y": 288.38848405198934 + "y": 288.38848 }, { "endCol": 1, @@ -6830,7 +6830,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6887,119 +6887,119 @@ "index": 0, "isInternal": false, "x": 79.424, - "y": 294.2217547670249 + "y": 294.22175 }, { "body": null, "index": 1, "isInternal": false, "x": 77.184, - "y": 299.6297547670249 + "y": 299.62975 }, { "body": null, "index": 2, "isInternal": false, "x": 73.046, - "y": 303.7677547670249 + "y": 303.76775 }, { "body": null, "index": 3, "isInternal": false, "x": 67.638, - "y": 306.0077547670249 + "y": 306.00775 }, { "body": null, "index": 4, "isInternal": false, "x": 61.786, - "y": 306.0077547670249 + "y": 306.00775 }, { "body": null, "index": 5, "isInternal": false, "x": 56.378, - "y": 303.7677547670249 + "y": 303.76775 }, { "body": null, "index": 6, "isInternal": false, "x": 52.24, - "y": 299.6297547670249 + "y": 299.62975 }, { "body": null, "index": 7, "isInternal": false, "x": 50, - "y": 294.2217547670249 + "y": 294.22175 }, { "body": null, "index": 8, "isInternal": false, "x": 50, - "y": 288.3697547670249 + "y": 288.36975 }, { "body": null, "index": 9, "isInternal": false, "x": 52.24, - "y": 282.9617547670249 + "y": 282.96175 }, { "body": null, "index": 10, "isInternal": false, "x": 56.378, - "y": 278.8237547670249 + "y": 278.82375 }, { "body": null, "index": 11, "isInternal": false, "x": 61.786, - "y": 276.5837547670249 + "y": 276.58375 }, { "body": null, "index": 12, "isInternal": false, "x": 67.638, - "y": 276.5837547670249 + "y": 276.58375 }, { "body": null, "index": 13, "isInternal": false, "x": 73.046, - "y": 278.8237547670249 + "y": 278.82375 }, { "body": null, "index": 14, "isInternal": false, "x": 77.184, - "y": 282.9617547670249 + "y": 282.96175 }, { "body": null, "index": 15, "isInternal": false, "x": 79.424, - "y": 288.3697547670249 + "y": 288.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 777 }, @@ -7021,13 +7021,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -7049,7 +7049,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7088,32 +7088,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -7128,12 +7128,12 @@ } }, { - "x": 158.84799999999998, - "y": 306.0077547670249 + "x": 158.848, + "y": 306.00775 }, { - "x": 129.42399999999998, - "y": 276.5837547670249 + "x": 129.424, + "y": 276.58375 }, { "category": 1, @@ -7151,7 +7151,7 @@ }, { "x": 144.136, - "y": 291.2957547670249 + "y": 291.29575 }, { "x": 0, @@ -7159,7 +7159,7 @@ }, { "x": 144.136, - "y": 288.38848405198934 + "y": 288.38848 }, { "endCol": 3, @@ -7183,7 +7183,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7239,120 +7239,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 158.84799999999998, - "y": 294.2217547670249 + "x": 158.848, + "y": 294.22175 }, { "body": null, "index": 1, "isInternal": false, "x": 156.608, - "y": 299.6297547670249 + "y": 299.62975 }, { "body": null, "index": 2, "isInternal": false, "x": 152.47, - "y": 303.7677547670249 + "y": 303.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 147.06199999999998, - "y": 306.0077547670249 + "x": 147.062, + "y": 306.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 141.20999999999998, - "y": 306.0077547670249 + "x": 141.21, + "y": 306.00775 }, { "body": null, "index": 5, "isInternal": false, "x": 135.802, - "y": 303.7677547670249 + "y": 303.76775 }, { "body": null, "index": 6, "isInternal": false, "x": 131.664, - "y": 299.6297547670249 + "y": 299.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 129.42399999999998, - "y": 294.2217547670249 + "x": 129.424, + "y": 294.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.42399999999998, - "y": 288.3697547670249 + "x": 129.424, + "y": 288.36975 }, { "body": null, "index": 9, "isInternal": false, "x": 131.664, - "y": 282.9617547670249 + "y": 282.96175 }, { "body": null, "index": 10, "isInternal": false, "x": 135.802, - "y": 278.8237547670249 + "y": 278.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.20999999999998, - "y": 276.5837547670249 + "x": 141.21, + "y": 276.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.06199999999998, - "y": 276.5837547670249 + "x": 147.062, + "y": 276.58375 }, { "body": null, "index": 13, "isInternal": false, "x": 152.47, - "y": 278.8237547670249 + "y": 278.82375 }, { "body": null, "index": 14, "isInternal": false, "x": 156.608, - "y": 282.9617547670249 + "y": 282.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 158.84799999999998, - "y": 288.3697547670249 + "x": 158.848, + "y": 288.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 817 }, @@ -7374,13 +7374,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -7402,7 +7402,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7441,32 +7441,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -7481,12 +7481,12 @@ } }, { - "x": 238.27199999999996, - "y": 306.0077547670249 + "x": 238.272, + "y": 306.00775 }, { - "x": 208.84799999999998, - "y": 276.5837547670249 + "x": 208.848, + "y": 276.58375 }, { "category": 1, @@ -7503,16 +7503,16 @@ "y": 0 }, { - "x": 223.55999999999997, - "y": 291.2957547670249 + "x": 223.56, + "y": 291.29575 }, { "x": 0, "y": 0 }, { - "x": 223.55999999999997, - "y": 288.38848405198934 + "x": 223.56, + "y": 288.38848 }, { "endCol": 4, @@ -7536,7 +7536,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7592,120 +7592,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.27199999999996, - "y": 294.2217547670249 + "x": 238.272, + "y": 294.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 236.03199999999998, - "y": 299.6297547670249 + "x": 236.032, + "y": 299.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.89399999999998, - "y": 303.7677547670249 + "x": 231.894, + "y": 303.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.48599999999996, - "y": 306.0077547670249 + "x": 226.486, + "y": 306.00775 }, { "body": null, "index": 4, "isInternal": false, "x": 220.634, - "y": 306.0077547670249 + "y": 306.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.22599999999997, - "y": 303.7677547670249 + "x": 215.226, + "y": 303.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 211.08799999999997, - "y": 299.6297547670249 + "x": 211.088, + "y": 299.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.84799999999998, - "y": 294.2217547670249 + "x": 208.848, + "y": 294.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 208.84799999999998, - "y": 288.3697547670249 + "x": 208.848, + "y": 288.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.08799999999997, - "y": 282.9617547670249 + "x": 211.088, + "y": 282.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.22599999999997, - "y": 278.8237547670249 + "x": 215.226, + "y": 278.82375 }, { "body": null, "index": 11, "isInternal": false, "x": 220.634, - "y": 276.5837547670249 + "y": 276.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.48599999999996, - "y": 276.5837547670249 + "x": 226.486, + "y": 276.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 231.89399999999998, - "y": 278.8237547670249 + "x": 231.894, + "y": 278.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 236.03199999999998, - "y": 282.9617547670249 + "x": 236.032, + "y": 282.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 238.27199999999996, - "y": 288.3697547670249 + "x": 238.272, + "y": 288.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 857 }, @@ -7727,13 +7727,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -7755,7 +7755,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7794,32 +7794,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -7834,12 +7834,12 @@ } }, { - "x": 317.6959999999999, - "y": 306.0077547670249 + "x": 317.696, + "y": 306.00775 }, { - "x": 288.27199999999993, - "y": 276.5837547670249 + "x": 288.272, + "y": 276.58375 }, { "category": 1, @@ -7856,16 +7856,16 @@ "y": 0 }, { - "x": 302.9839999999999, - "y": 291.2957547670249 + "x": 302.984, + "y": 291.29575 }, { "x": 0, "y": 0 }, { - "x": 302.9839999999999, - "y": 288.38848405198934 + "x": 302.984, + "y": 288.38848 }, { "endCol": 6, @@ -7889,7 +7889,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7945,120 +7945,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6959999999999, - "y": 294.2217547670249 + "x": 317.696, + "y": 294.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.4559999999999, - "y": 299.6297547670249 + "x": 315.456, + "y": 299.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.3179999999999, - "y": 303.7677547670249 + "x": 311.318, + "y": 303.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.9099999999999, - "y": 306.0077547670249 + "x": 305.91, + "y": 306.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.05799999999994, - "y": 306.0077547670249 + "x": 300.058, + "y": 306.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.6499999999999, - "y": 303.7677547670249 + "x": 294.65, + "y": 303.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 290.51199999999994, - "y": 299.6297547670249 + "x": 290.512, + "y": 299.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.27199999999993, - "y": 294.2217547670249 + "x": 288.272, + "y": 294.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 288.27199999999993, - "y": 288.3697547670249 + "x": 288.272, + "y": 288.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 290.51199999999994, - "y": 282.9617547670249 + "x": 290.512, + "y": 282.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.6499999999999, - "y": 278.8237547670249 + "x": 294.65, + "y": 278.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.05799999999994, - "y": 276.5837547670249 + "x": 300.058, + "y": 276.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.9099999999999, - "y": 276.5837547670249 + "x": 305.91, + "y": 276.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.3179999999999, - "y": 278.8237547670249 + "x": 311.318, + "y": 278.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.4559999999999, - "y": 282.9617547670249 + "x": 315.456, + "y": 282.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.6959999999999, - "y": 288.3697547670249 + "x": 317.696, + "y": 288.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 897 }, @@ -8080,13 +8080,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -8108,7 +8108,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8147,32 +8147,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -8187,12 +8187,12 @@ } }, { - "x": 397.1199999999999, - "y": 306.0077547670249 + "x": 397.12, + "y": 306.00775 }, { - "x": 367.6959999999999, - "y": 276.5837547670249 + "x": 367.696, + "y": 276.58375 }, { "category": 1, @@ -8209,16 +8209,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 291.2957547670249 + "x": 382.408, + "y": 291.29575 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 288.38848405198934 + "x": 382.408, + "y": 288.38848 }, { "endCol": 8, @@ -8242,7 +8242,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8298,120 +8298,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 294.2217547670249 + "x": 397.12, + "y": 294.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 299.6297547670249 + "x": 394.88, + "y": 299.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 303.7677547670249 + "x": 390.742, + "y": 303.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 306.0077547670249 + "x": 385.334, + "y": 306.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 306.0077547670249 + "x": 379.482, + "y": 306.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 303.7677547670249 + "x": 374.074, + "y": 303.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 299.6297547670249 + "x": 369.936, + "y": 299.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 294.2217547670249 + "x": 367.696, + "y": 294.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 288.3697547670249 + "x": 367.696, + "y": 288.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 282.9617547670249 + "x": 369.936, + "y": 282.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 278.8237547670249 + "x": 374.074, + "y": 278.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 276.5837547670249 + "x": 379.482, + "y": 276.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 276.5837547670249 + "x": 385.334, + "y": 276.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 278.8237547670249 + "x": 390.742, + "y": 278.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 282.9617547670249 + "x": 394.88, + "y": 282.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 288.3697547670249 + "x": 397.12, + "y": 288.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 937 }, @@ -8433,13 +8433,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -8461,7 +8461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8500,32 +8500,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -8540,12 +8540,12 @@ } }, { - "x": 476.54399999999987, - "y": 306.0077547670249 + "x": 476.544, + "y": 306.00775 }, { - "x": 447.1199999999999, - "y": 276.5837547670249 + "x": 447.12, + "y": 276.58375 }, { "category": 1, @@ -8562,16 +8562,16 @@ "y": 0 }, { - "x": 461.8319999999999, - "y": 291.2957547670249 + "x": 461.832, + "y": 291.29575 }, { "x": 0, "y": 0 }, { - "x": 461.8319999999999, - "y": 288.38848405198934 + "x": 461.832, + "y": 288.38848 }, { "endCol": 9, @@ -8595,7 +8595,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8651,120 +8651,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.54399999999987, - "y": 294.2217547670249 + "x": 476.544, + "y": 294.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.30399999999986, - "y": 299.6297547670249 + "x": 474.304, + "y": 299.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.1659999999999, - "y": 303.7677547670249 + "x": 470.166, + "y": 303.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.75799999999987, - "y": 306.0077547670249 + "x": 464.758, + "y": 306.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 458.9059999999999, - "y": 306.0077547670249 + "x": 458.906, + "y": 306.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 453.4979999999999, - "y": 303.7677547670249 + "x": 453.498, + "y": 303.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.3599999999999, - "y": 299.6297547670249 + "x": 449.36, + "y": 299.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 447.1199999999999, - "y": 294.2217547670249 + "x": 447.12, + "y": 294.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 447.1199999999999, - "y": 288.3697547670249 + "x": 447.12, + "y": 288.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 449.3599999999999, - "y": 282.9617547670249 + "x": 449.36, + "y": 282.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.4979999999999, - "y": 278.8237547670249 + "x": 453.498, + "y": 278.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.9059999999999, - "y": 276.5837547670249 + "x": 458.906, + "y": 276.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 464.75799999999987, - "y": 276.5837547670249 + "x": 464.758, + "y": 276.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1659999999999, - "y": 278.8237547670249 + "x": 470.166, + "y": 278.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 474.30399999999986, - "y": 282.9617547670249 + "x": 474.304, + "y": 282.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 476.54399999999987, - "y": 288.3697547670249 + "x": 476.544, + "y": 288.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 977 }, @@ -8786,13 +8786,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -8814,7 +8814,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8853,32 +8853,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -8893,12 +8893,12 @@ } }, { - "x": 555.9679999999998, - "y": 306.0077547670249 + "x": 555.968, + "y": 306.00775 }, { - "x": 526.5439999999999, - "y": 276.5837547670249 + "x": 526.544, + "y": 276.58375 }, { "category": 1, @@ -8915,16 +8915,16 @@ "y": 0 }, { - "x": 541.2559999999999, - "y": 291.2957547670249 + "x": 541.256, + "y": 291.29575 }, { "x": 0, "y": 0 }, { - "x": 541.2559999999999, - "y": 288.38848405198934 + "x": 541.256, + "y": 288.38848 }, { "endCol": 11, @@ -8948,7 +8948,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9004,120 +9004,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.9679999999998, - "y": 294.2217547670249 + "x": 555.968, + "y": 294.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.7279999999998, - "y": 299.6297547670249 + "x": 553.728, + "y": 299.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5899999999998, - "y": 303.7677547670249 + "x": 549.59, + "y": 303.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.1819999999999, - "y": 306.0077547670249 + "x": 544.182, + "y": 306.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 538.3299999999998, - "y": 306.0077547670249 + "x": 538.33, + "y": 306.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 532.9219999999999, - "y": 303.7677547670249 + "x": 532.922, + "y": 303.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.7839999999999, - "y": 299.6297547670249 + "x": 528.784, + "y": 299.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.5439999999999, - "y": 294.2217547670249 + "x": 526.544, + "y": 294.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5439999999999, - "y": 288.3697547670249 + "x": 526.544, + "y": 288.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.7839999999999, - "y": 282.9617547670249 + "x": 528.784, + "y": 282.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.9219999999999, - "y": 278.8237547670249 + "x": 532.922, + "y": 278.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 538.3299999999998, - "y": 276.5837547670249 + "x": 538.33, + "y": 276.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 544.1819999999999, - "y": 276.5837547670249 + "x": 544.182, + "y": 276.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 549.5899999999998, - "y": 278.8237547670249 + "x": 549.59, + "y": 278.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 553.7279999999998, - "y": 282.9617547670249 + "x": 553.728, + "y": 282.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 555.9679999999998, - "y": 288.3697547670249 + "x": 555.968, + "y": 288.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1017 }, @@ -9139,13 +9139,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -9167,7 +9167,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9206,32 +9206,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -9246,12 +9246,12 @@ } }, { - "x": 635.3919999999998, - "y": 306.0077547670249 + "x": 635.392, + "y": 306.00775 }, { - "x": 605.9679999999998, - "y": 276.5837547670249 + "x": 605.968, + "y": 276.58375 }, { "category": 1, @@ -9268,16 +9268,16 @@ "y": 0 }, { - "x": 620.6799999999998, - "y": 291.2957547670249 + "x": 620.68, + "y": 291.29575 }, { "x": 0, "y": 0 }, { - "x": 620.6799999999998, - "y": 288.38848405198934 + "x": 620.68, + "y": 288.38848 }, { "endCol": 13, @@ -9301,7 +9301,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9357,120 +9357,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.3919999999998, - "y": 294.2217547670249 + "x": 635.392, + "y": 294.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.1519999999998, - "y": 299.6297547670249 + "x": 633.152, + "y": 299.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.0139999999998, - "y": 303.7677547670249 + "x": 629.014, + "y": 303.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.6059999999999, - "y": 306.0077547670249 + "x": 623.606, + "y": 306.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.7539999999998, - "y": 306.0077547670249 + "x": 617.754, + "y": 306.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 612.3459999999999, - "y": 303.7677547670249 + "x": 612.346, + "y": 303.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 608.2079999999999, - "y": 299.6297547670249 + "x": 608.208, + "y": 299.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 605.9679999999998, - "y": 294.2217547670249 + "x": 605.968, + "y": 294.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.9679999999998, - "y": 288.3697547670249 + "x": 605.968, + "y": 288.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 608.2079999999999, - "y": 282.9617547670249 + "x": 608.208, + "y": 282.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.3459999999999, - "y": 278.8237547670249 + "x": 612.346, + "y": 278.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 617.7539999999998, - "y": 276.5837547670249 + "x": 617.754, + "y": 276.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 623.6059999999999, - "y": 276.5837547670249 + "x": 623.606, + "y": 276.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 629.0139999999998, - "y": 278.8237547670249 + "x": 629.014, + "y": 278.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 633.1519999999998, - "y": 282.9617547670249 + "x": 633.152, + "y": 282.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 635.3919999999998, - "y": 288.3697547670249 + "x": 635.392, + "y": 288.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1057 }, @@ -9492,13 +9492,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -9520,7 +9520,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9559,32 +9559,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -9600,11 +9600,11 @@ }, { "x": 79.424, - "y": 385.43175476702487 + "y": 385.43175 }, { "x": 50, - "y": 356.0077547670249 + "y": 356.00775 }, { "category": 1, @@ -9622,7 +9622,7 @@ }, { "x": 64.712, - "y": 370.7197547670249 + "y": 370.71975 }, { "x": 0, @@ -9630,7 +9630,7 @@ }, { "x": 64.712, - "y": 367.8124840519893 + "y": 367.81248 }, { "endCol": 1, @@ -9654,7 +9654,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9711,119 +9711,119 @@ "index": 0, "isInternal": false, "x": 79.424, - "y": 373.64575476702487 + "y": 373.64575 }, { "body": null, "index": 1, "isInternal": false, "x": 77.184, - "y": 379.0537547670249 + "y": 379.05375 }, { "body": null, "index": 2, "isInternal": false, "x": 73.046, - "y": 383.19175476702486 + "y": 383.19175 }, { "body": null, "index": 3, "isInternal": false, "x": 67.638, - "y": 385.43175476702487 + "y": 385.43175 }, { "body": null, "index": 4, "isInternal": false, "x": 61.786, - "y": 385.43175476702487 + "y": 385.43175 }, { "body": null, "index": 5, "isInternal": false, "x": 56.378, - "y": 383.19175476702486 + "y": 383.19175 }, { "body": null, "index": 6, "isInternal": false, "x": 52.24, - "y": 379.0537547670249 + "y": 379.05375 }, { "body": null, "index": 7, "isInternal": false, "x": 50, - "y": 373.64575476702487 + "y": 373.64575 }, { "body": null, "index": 8, "isInternal": false, "x": 50, - "y": 367.7937547670249 + "y": 367.79375 }, { "body": null, "index": 9, "isInternal": false, "x": 52.24, - "y": 362.3857547670249 + "y": 362.38575 }, { "body": null, "index": 10, "isInternal": false, "x": 56.378, - "y": 358.2477547670249 + "y": 358.24775 }, { "body": null, "index": 11, "isInternal": false, "x": 61.786, - "y": 356.0077547670249 + "y": 356.00775 }, { "body": null, "index": 12, "isInternal": false, "x": 67.638, - "y": 356.0077547670249 + "y": 356.00775 }, { "body": null, "index": 13, "isInternal": false, "x": 73.046, - "y": 358.2477547670249 + "y": 358.24775 }, { "body": null, "index": 14, "isInternal": false, "x": 77.184, - "y": 362.3857547670249 + "y": 362.38575 }, { "body": null, "index": 15, "isInternal": false, "x": 79.424, - "y": 367.7937547670249 + "y": 367.79375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1097 }, @@ -9845,13 +9845,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -9873,7 +9873,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9912,32 +9912,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -9952,12 +9952,12 @@ } }, { - "x": 158.84799999999998, - "y": 385.43175476702487 + "x": 158.848, + "y": 385.43175 }, { - "x": 129.42399999999998, - "y": 356.0077547670249 + "x": 129.424, + "y": 356.00775 }, { "category": 1, @@ -9975,7 +9975,7 @@ }, { "x": 144.136, - "y": 370.7197547670249 + "y": 370.71975 }, { "x": 0, @@ -9983,7 +9983,7 @@ }, { "x": 144.136, - "y": 367.8124840519893 + "y": 367.81248 }, { "endCol": 3, @@ -10007,7 +10007,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10063,120 +10063,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 158.84799999999998, - "y": 373.64575476702487 + "x": 158.848, + "y": 373.64575 }, { "body": null, "index": 1, "isInternal": false, "x": 156.608, - "y": 379.0537547670249 + "y": 379.05375 }, { "body": null, "index": 2, "isInternal": false, "x": 152.47, - "y": 383.19175476702486 + "y": 383.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 147.06199999999998, - "y": 385.43175476702487 + "x": 147.062, + "y": 385.43175 }, { "body": null, "index": 4, "isInternal": false, - "x": 141.20999999999998, - "y": 385.43175476702487 + "x": 141.21, + "y": 385.43175 }, { "body": null, "index": 5, "isInternal": false, "x": 135.802, - "y": 383.19175476702486 + "y": 383.19175 }, { "body": null, "index": 6, "isInternal": false, "x": 131.664, - "y": 379.0537547670249 + "y": 379.05375 }, { "body": null, "index": 7, "isInternal": false, - "x": 129.42399999999998, - "y": 373.64575476702487 + "x": 129.424, + "y": 373.64575 }, { "body": null, "index": 8, "isInternal": false, - "x": 129.42399999999998, - "y": 367.7937547670249 + "x": 129.424, + "y": 367.79375 }, { "body": null, "index": 9, "isInternal": false, "x": 131.664, - "y": 362.3857547670249 + "y": 362.38575 }, { "body": null, "index": 10, "isInternal": false, "x": 135.802, - "y": 358.2477547670249 + "y": 358.24775 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.20999999999998, - "y": 356.0077547670249 + "x": 141.21, + "y": 356.00775 }, { "body": null, "index": 12, "isInternal": false, - "x": 147.06199999999998, - "y": 356.0077547670249 + "x": 147.062, + "y": 356.00775 }, { "body": null, "index": 13, "isInternal": false, "x": 152.47, - "y": 358.2477547670249 + "y": 358.24775 }, { "body": null, "index": 14, "isInternal": false, "x": 156.608, - "y": 362.3857547670249 + "y": 362.38575 }, { "body": null, "index": 15, "isInternal": false, - "x": 158.84799999999998, - "y": 367.7937547670249 + "x": 158.848, + "y": 367.79375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1137 }, @@ -10198,13 +10198,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -10226,7 +10226,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10265,32 +10265,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -10305,12 +10305,12 @@ } }, { - "x": 238.27199999999996, - "y": 385.43175476702487 + "x": 238.272, + "y": 385.43175 }, { - "x": 208.84799999999998, - "y": 356.0077547670249 + "x": 208.848, + "y": 356.00775 }, { "category": 1, @@ -10327,16 +10327,16 @@ "y": 0 }, { - "x": 223.55999999999997, - "y": 370.7197547670249 + "x": 223.56, + "y": 370.71975 }, { "x": 0, "y": 0 }, { - "x": 223.55999999999997, - "y": 367.8124840519893 + "x": 223.56, + "y": 367.81248 }, { "endCol": 4, @@ -10360,7 +10360,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10416,120 +10416,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 238.27199999999996, - "y": 373.64575476702487 + "x": 238.272, + "y": 373.64575 }, { "body": null, "index": 1, "isInternal": false, - "x": 236.03199999999998, - "y": 379.0537547670249 + "x": 236.032, + "y": 379.05375 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.89399999999998, - "y": 383.19175476702486 + "x": 231.894, + "y": 383.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 226.48599999999996, - "y": 385.43175476702487 + "x": 226.486, + "y": 385.43175 }, { "body": null, "index": 4, "isInternal": false, "x": 220.634, - "y": 385.43175476702487 + "y": 385.43175 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.22599999999997, - "y": 383.19175476702486 + "x": 215.226, + "y": 383.19175 }, { "body": null, "index": 6, "isInternal": false, - "x": 211.08799999999997, - "y": 379.0537547670249 + "x": 211.088, + "y": 379.05375 }, { "body": null, "index": 7, "isInternal": false, - "x": 208.84799999999998, - "y": 373.64575476702487 + "x": 208.848, + "y": 373.64575 }, { "body": null, "index": 8, "isInternal": false, - "x": 208.84799999999998, - "y": 367.7937547670249 + "x": 208.848, + "y": 367.79375 }, { "body": null, "index": 9, "isInternal": false, - "x": 211.08799999999997, - "y": 362.3857547670249 + "x": 211.088, + "y": 362.38575 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.22599999999997, - "y": 358.2477547670249 + "x": 215.226, + "y": 358.24775 }, { "body": null, "index": 11, "isInternal": false, "x": 220.634, - "y": 356.0077547670249 + "y": 356.00775 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.48599999999996, - "y": 356.0077547670249 + "x": 226.486, + "y": 356.00775 }, { "body": null, "index": 13, "isInternal": false, - "x": 231.89399999999998, - "y": 358.2477547670249 + "x": 231.894, + "y": 358.24775 }, { "body": null, "index": 14, "isInternal": false, - "x": 236.03199999999998, - "y": 362.3857547670249 + "x": 236.032, + "y": 362.38575 }, { "body": null, "index": 15, "isInternal": false, - "x": 238.27199999999996, - "y": 367.7937547670249 + "x": 238.272, + "y": 367.79375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1177 }, @@ -10551,13 +10551,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -10579,7 +10579,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10618,32 +10618,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -10658,12 +10658,12 @@ } }, { - "x": 317.6959999999999, - "y": 385.43175476702487 + "x": 317.696, + "y": 385.43175 }, { - "x": 288.27199999999993, - "y": 356.0077547670249 + "x": 288.272, + "y": 356.00775 }, { "category": 1, @@ -10680,16 +10680,16 @@ "y": 0 }, { - "x": 302.9839999999999, - "y": 370.7197547670249 + "x": 302.984, + "y": 370.71975 }, { "x": 0, "y": 0 }, { - "x": 302.9839999999999, - "y": 367.8124840519893 + "x": 302.984, + "y": 367.81248 }, { "endCol": 6, @@ -10713,7 +10713,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10769,120 +10769,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6959999999999, - "y": 373.64575476702487 + "x": 317.696, + "y": 373.64575 }, { "body": null, "index": 1, "isInternal": false, - "x": 315.4559999999999, - "y": 379.0537547670249 + "x": 315.456, + "y": 379.05375 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.3179999999999, - "y": 383.19175476702486 + "x": 311.318, + "y": 383.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.9099999999999, - "y": 385.43175476702487 + "x": 305.91, + "y": 385.43175 }, { "body": null, "index": 4, "isInternal": false, - "x": 300.05799999999994, - "y": 385.43175476702487 + "x": 300.058, + "y": 385.43175 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.6499999999999, - "y": 383.19175476702486 + "x": 294.65, + "y": 383.19175 }, { "body": null, "index": 6, "isInternal": false, - "x": 290.51199999999994, - "y": 379.0537547670249 + "x": 290.512, + "y": 379.05375 }, { "body": null, "index": 7, "isInternal": false, - "x": 288.27199999999993, - "y": 373.64575476702487 + "x": 288.272, + "y": 373.64575 }, { "body": null, "index": 8, "isInternal": false, - "x": 288.27199999999993, - "y": 367.7937547670249 + "x": 288.272, + "y": 367.79375 }, { "body": null, "index": 9, "isInternal": false, - "x": 290.51199999999994, - "y": 362.3857547670249 + "x": 290.512, + "y": 362.38575 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.6499999999999, - "y": 358.2477547670249 + "x": 294.65, + "y": 358.24775 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.05799999999994, - "y": 356.0077547670249 + "x": 300.058, + "y": 356.00775 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.9099999999999, - "y": 356.0077547670249 + "x": 305.91, + "y": 356.00775 }, { "body": null, "index": 13, "isInternal": false, - "x": 311.3179999999999, - "y": 358.2477547670249 + "x": 311.318, + "y": 358.24775 }, { "body": null, "index": 14, "isInternal": false, - "x": 315.4559999999999, - "y": 362.3857547670249 + "x": 315.456, + "y": 362.38575 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.6959999999999, - "y": 367.7937547670249 + "x": 317.696, + "y": 367.79375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1217 }, @@ -10904,13 +10904,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -10932,7 +10932,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10971,32 +10971,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -11011,12 +11011,12 @@ } }, { - "x": 397.1199999999999, - "y": 385.43175476702487 + "x": 397.12, + "y": 385.43175 }, { - "x": 367.6959999999999, - "y": 356.0077547670249 + "x": 367.696, + "y": 356.00775 }, { "category": 1, @@ -11033,16 +11033,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 370.7197547670249 + "x": 382.408, + "y": 370.71975 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 367.8124840519893 + "x": 382.408, + "y": 367.81248 }, { "endCol": 8, @@ -11066,7 +11066,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11122,120 +11122,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 373.64575476702487 + "x": 397.12, + "y": 373.64575 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 379.0537547670249 + "x": 394.88, + "y": 379.05375 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 383.19175476702486 + "x": 390.742, + "y": 383.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 385.43175476702487 + "x": 385.334, + "y": 385.43175 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 385.43175476702487 + "x": 379.482, + "y": 385.43175 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 383.19175476702486 + "x": 374.074, + "y": 383.19175 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 379.0537547670249 + "x": 369.936, + "y": 379.05375 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 373.64575476702487 + "x": 367.696, + "y": 373.64575 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 367.7937547670249 + "x": 367.696, + "y": 367.79375 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 362.3857547670249 + "x": 369.936, + "y": 362.38575 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 358.2477547670249 + "x": 374.074, + "y": 358.24775 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 356.0077547670249 + "x": 379.482, + "y": 356.00775 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 356.0077547670249 + "x": 385.334, + "y": 356.00775 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 358.2477547670249 + "x": 390.742, + "y": 358.24775 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 362.3857547670249 + "x": 394.88, + "y": 362.38575 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 367.7937547670249 + "x": 397.12, + "y": 367.79375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1257 }, @@ -11257,13 +11257,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -11285,7 +11285,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11324,32 +11324,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -11364,12 +11364,12 @@ } }, { - "x": 476.54399999999987, - "y": 385.43175476702487 + "x": 476.544, + "y": 385.43175 }, { - "x": 447.1199999999999, - "y": 356.0077547670249 + "x": 447.12, + "y": 356.00775 }, { "category": 1, @@ -11386,16 +11386,16 @@ "y": 0 }, { - "x": 461.8319999999999, - "y": 370.7197547670249 + "x": 461.832, + "y": 370.71975 }, { "x": 0, "y": 0 }, { - "x": 461.8319999999999, - "y": 367.8124840519893 + "x": 461.832, + "y": 367.81248 }, { "endCol": 9, @@ -11419,7 +11419,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11475,120 +11475,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 476.54399999999987, - "y": 373.64575476702487 + "x": 476.544, + "y": 373.64575 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.30399999999986, - "y": 379.0537547670249 + "x": 474.304, + "y": 379.05375 }, { "body": null, "index": 2, "isInternal": false, - "x": 470.1659999999999, - "y": 383.19175476702486 + "x": 470.166, + "y": 383.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 464.75799999999987, - "y": 385.43175476702487 + "x": 464.758, + "y": 385.43175 }, { "body": null, "index": 4, "isInternal": false, - "x": 458.9059999999999, - "y": 385.43175476702487 + "x": 458.906, + "y": 385.43175 }, { "body": null, "index": 5, "isInternal": false, - "x": 453.4979999999999, - "y": 383.19175476702486 + "x": 453.498, + "y": 383.19175 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.3599999999999, - "y": 379.0537547670249 + "x": 449.36, + "y": 379.05375 }, { "body": null, "index": 7, "isInternal": false, - "x": 447.1199999999999, - "y": 373.64575476702487 + "x": 447.12, + "y": 373.64575 }, { "body": null, "index": 8, "isInternal": false, - "x": 447.1199999999999, - "y": 367.7937547670249 + "x": 447.12, + "y": 367.79375 }, { "body": null, "index": 9, "isInternal": false, - "x": 449.3599999999999, - "y": 362.3857547670249 + "x": 449.36, + "y": 362.38575 }, { "body": null, "index": 10, "isInternal": false, - "x": 453.4979999999999, - "y": 358.2477547670249 + "x": 453.498, + "y": 358.24775 }, { "body": null, "index": 11, "isInternal": false, - "x": 458.9059999999999, - "y": 356.0077547670249 + "x": 458.906, + "y": 356.00775 }, { "body": null, "index": 12, "isInternal": false, - "x": 464.75799999999987, - "y": 356.0077547670249 + "x": 464.758, + "y": 356.00775 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1659999999999, - "y": 358.2477547670249 + "x": 470.166, + "y": 358.24775 }, { "body": null, "index": 14, "isInternal": false, - "x": 474.30399999999986, - "y": 362.3857547670249 + "x": 474.304, + "y": 362.38575 }, { "body": null, "index": 15, "isInternal": false, - "x": 476.54399999999987, - "y": 367.7937547670249 + "x": 476.544, + "y": 367.79375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1297 }, @@ -11610,13 +11610,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -11638,7 +11638,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11677,32 +11677,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -11717,12 +11717,12 @@ } }, { - "x": 555.9679999999998, - "y": 385.43175476702487 + "x": 555.968, + "y": 385.43175 }, { - "x": 526.5439999999999, - "y": 356.0077547670249 + "x": 526.544, + "y": 356.00775 }, { "category": 1, @@ -11739,16 +11739,16 @@ "y": 0 }, { - "x": 541.2559999999999, - "y": 370.7197547670249 + "x": 541.256, + "y": 370.71975 }, { "x": 0, "y": 0 }, { - "x": 541.2559999999999, - "y": 367.8124840519893 + "x": 541.256, + "y": 367.81248 }, { "endCol": 11, @@ -11772,7 +11772,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -11828,120 +11828,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.9679999999998, - "y": 373.64575476702487 + "x": 555.968, + "y": 373.64575 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.7279999999998, - "y": 379.0537547670249 + "x": 553.728, + "y": 379.05375 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.5899999999998, - "y": 383.19175476702486 + "x": 549.59, + "y": 383.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 544.1819999999999, - "y": 385.43175476702487 + "x": 544.182, + "y": 385.43175 }, { "body": null, "index": 4, "isInternal": false, - "x": 538.3299999999998, - "y": 385.43175476702487 + "x": 538.33, + "y": 385.43175 }, { "body": null, "index": 5, "isInternal": false, - "x": 532.9219999999999, - "y": 383.19175476702486 + "x": 532.922, + "y": 383.19175 }, { "body": null, "index": 6, "isInternal": false, - "x": 528.7839999999999, - "y": 379.0537547670249 + "x": 528.784, + "y": 379.05375 }, { "body": null, "index": 7, "isInternal": false, - "x": 526.5439999999999, - "y": 373.64575476702487 + "x": 526.544, + "y": 373.64575 }, { "body": null, "index": 8, "isInternal": false, - "x": 526.5439999999999, - "y": 367.7937547670249 + "x": 526.544, + "y": 367.79375 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.7839999999999, - "y": 362.3857547670249 + "x": 528.784, + "y": 362.38575 }, { "body": null, "index": 10, "isInternal": false, - "x": 532.9219999999999, - "y": 358.2477547670249 + "x": 532.922, + "y": 358.24775 }, { "body": null, "index": 11, "isInternal": false, - "x": 538.3299999999998, - "y": 356.0077547670249 + "x": 538.33, + "y": 356.00775 }, { "body": null, "index": 12, "isInternal": false, - "x": 544.1819999999999, - "y": 356.0077547670249 + "x": 544.182, + "y": 356.00775 }, { "body": null, "index": 13, "isInternal": false, - "x": 549.5899999999998, - "y": 358.2477547670249 + "x": 549.59, + "y": 358.24775 }, { "body": null, "index": 14, "isInternal": false, - "x": 553.7279999999998, - "y": 362.3857547670249 + "x": 553.728, + "y": 362.38575 }, { "body": null, "index": 15, "isInternal": false, - "x": 555.9679999999998, - "y": 367.7937547670249 + "x": 555.968, + "y": 367.79375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1337 }, @@ -11963,13 +11963,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 302.12291579862625, - "inverseInertia": 0.00330991112460509, - "inverseMass": 1.451701917841081, + "inertia": 302.12292, + "inverseInertia": 0.00331, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -11991,7 +11991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12030,32 +12030,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -12070,12 +12070,12 @@ } }, { - "x": 635.3919999999998, - "y": 385.43175476702487 + "x": 635.392, + "y": 385.43175 }, { - "x": 605.9679999999998, - "y": 356.0077547670249 + "x": 605.968, + "y": 356.00775 }, { "category": 1, @@ -12092,16 +12092,16 @@ "y": 0 }, { - "x": 620.6799999999998, - "y": 370.7197547670249 + "x": 620.68, + "y": 370.71975 }, { "x": 0, "y": 0 }, { - "x": 620.6799999999998, - "y": 367.8124840519893 + "x": 620.68, + "y": 367.81248 }, { "endCol": 13, @@ -12125,7 +12125,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12181,113 +12181,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.3919999999998, - "y": 373.64575476702487 + "x": 635.392, + "y": 373.64575 }, { "body": null, "index": 1, "isInternal": false, - "x": 633.1519999999998, - "y": 379.0537547670249 + "x": 633.152, + "y": 379.05375 }, { "body": null, "index": 2, "isInternal": false, - "x": 629.0139999999998, - "y": 383.19175476702486 + "x": 629.014, + "y": 383.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.6059999999999, - "y": 385.43175476702487 + "x": 623.606, + "y": 385.43175 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.7539999999998, - "y": 385.43175476702487 + "x": 617.754, + "y": 385.43175 }, { "body": null, "index": 5, "isInternal": false, - "x": 612.3459999999999, - "y": 383.19175476702486 + "x": 612.346, + "y": 383.19175 }, { "body": null, "index": 6, "isInternal": false, - "x": 608.2079999999999, - "y": 379.0537547670249 + "x": 608.208, + "y": 379.05375 }, { "body": null, "index": 7, "isInternal": false, - "x": 605.9679999999998, - "y": 373.64575476702487 + "x": 605.968, + "y": 373.64575 }, { "body": null, "index": 8, "isInternal": false, - "x": 605.9679999999998, - "y": 367.7937547670249 + "x": 605.968, + "y": 367.79375 }, { "body": null, "index": 9, "isInternal": false, - "x": 608.2079999999999, - "y": 362.3857547670249 + "x": 608.208, + "y": 362.38575 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.3459999999999, - "y": 358.2477547670249 + "x": 612.346, + "y": 358.24775 }, { "body": null, "index": 11, "isInternal": false, - "x": 617.7539999999998, - "y": 356.0077547670249 + "x": 617.754, + "y": 356.00775 }, { "body": null, "index": 12, "isInternal": false, - "x": 623.6059999999999, - "y": 356.0077547670249 + "x": 623.606, + "y": 356.00775 }, { "body": null, "index": 13, "isInternal": false, - "x": 629.0139999999998, - "y": 358.2477547670249 + "x": 629.014, + "y": 358.24775 }, { "body": null, "index": 14, "isInternal": false, - "x": 633.1519999999998, - "y": 362.3857547670249 + "x": 633.152, + "y": 362.38575 }, { "body": null, "index": 15, "isInternal": false, - "x": 635.3919999999998, - "y": 367.7937547670249 + "x": 635.392, + "y": 367.79375 }, [], [], diff --git a/test/browser/refs/friction/friction-0.json b/test/browser/refs/friction/friction-0.json index b6855bbc..d36a548a 100644 --- a/test/browser/refs/friction/friction-0.json +++ b/test/browser/refs/friction/friction-0.json @@ -837,8 +837,8 @@ "y": 605.25 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -923,12 +923,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -939,12 +939,12 @@ } }, { - "x": 645.6743509008983, - "y": 255.4063326122905 + "x": 645.67435, + "y": 255.40633 }, { - "x": -45.674350900898276, - "y": 104.5936673877095 + "x": -45.67435, + "y": 104.59367 }, { "category": 1, @@ -1007,29 +1007,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -41.92672460918379, - "y": 104.5936673877095 + "x": -41.92672, + "y": 104.59367 }, { "body": null, "index": 1, "isInternal": false, - "x": 645.6743509008983, - "y": 235.76058759771672 + "x": 645.67435, + "y": 235.76059 }, { "body": null, "index": 2, "isInternal": false, - "x": 641.9267246091838, - "y": 255.4063326122905 + "x": 641.92672, + "y": 255.40633 }, { "body": null, "index": 3, "isInternal": false, - "x": -45.674350900898276, - "y": 124.23941240228328 + "x": -45.67435, + "y": 124.23941 }, { "angle": 0, @@ -1057,8 +1057,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1212,8 +1212,8 @@ "y": 90 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1298,12 +1298,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -1314,12 +1314,12 @@ } }, { - "x": 645.6743509008983, - "y": 425.4063326122905 + "x": 645.67435, + "y": 425.40633 }, { - "x": -45.674350900898276, - "y": 274.5936673877095 + "x": -45.67435, + "y": 274.59367 }, { "category": 1, @@ -1382,29 +1382,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -41.92672460918379, - "y": 274.5936673877095 + "x": -41.92672, + "y": 274.59367 }, { "body": null, "index": 1, "isInternal": false, - "x": 645.6743509008983, - "y": 405.7605875977167 + "x": 645.67435, + "y": 405.76059 }, { "body": null, "index": 2, "isInternal": false, - "x": 641.9267246091838, - "y": 425.4063326122905 + "x": 641.92672, + "y": 425.40633 }, { "body": null, "index": 3, "isInternal": false, - "x": -45.674350900898276, - "y": 294.2394124022833 + "x": -45.67435, + "y": 294.23941 }, { "angle": 0, @@ -1432,8 +1432,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1587,8 +1587,8 @@ "y": 270 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1673,12 +1673,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -1689,12 +1689,12 @@ } }, { - "x": 645.6743509008983, - "y": 595.4063326122905 + "x": 645.67435, + "y": 595.40633 }, { - "x": -45.674350900898276, - "y": 444.5936673877095 + "x": -45.67435, + "y": 444.59367 }, { "category": 1, @@ -1757,29 +1757,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -41.92672460918379, - "y": 444.5936673877095 + "x": -41.92672, + "y": 444.59367 }, { "body": null, "index": 1, "isInternal": false, - "x": 645.6743509008983, - "y": 575.7605875977167 + "x": 645.67435, + "y": 575.76059 }, { "body": null, "index": 2, "isInternal": false, - "x": 641.9267246091838, - "y": 595.4063326122905 + "x": 641.92672, + "y": 595.40633 }, { "body": null, "index": 3, "isInternal": false, - "x": -45.674350900898276, - "y": 464.2394124022833 + "x": -45.67435, + "y": 464.23941 }, { "angle": 0, @@ -1807,8 +1807,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, diff --git a/test/browser/refs/friction/friction-10.json b/test/browser/refs/friction/friction-10.json index 701fd1c2..6de6955f 100644 --- a/test/browser/refs/friction/friction-10.json +++ b/test/browser/refs/friction/friction-10.json @@ -877,8 +877,8 @@ "y": 605.25 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -966,12 +966,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -982,12 +982,12 @@ } }, { - "x": 645.6743509008983, - "y": 255.4063326122905 + "x": 645.67435, + "y": 255.40633 }, { - "x": -45.674350900898276, - "y": 104.5936673877095 + "x": -45.67435, + "y": 104.59367 }, { "category": 1, @@ -1057,29 +1057,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -41.92672460918379, - "y": 104.5936673877095 + "x": -41.92672, + "y": 104.59367 }, { "body": null, "index": 1, "isInternal": false, - "x": 645.6743509008983, - "y": 235.76058759771672 + "x": 645.67435, + "y": 235.76059 }, { "body": null, "index": 2, "isInternal": false, - "x": 641.9267246091838, - "y": 255.4063326122905 + "x": 641.92672, + "y": 255.40633 }, { "body": null, "index": 3, "isInternal": false, - "x": -45.674350900898276, - "y": 124.23941240228328 + "x": -45.67435, + "y": 124.23941 }, { "angle": 0, @@ -1107,8 +1107,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1135,7 +1135,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1173,11 +1173,11 @@ }, { "x": 320, - "y": 107.73575476702572 + "y": 107.73575 }, { "x": 280, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -1195,7 +1195,7 @@ }, { "x": 300, - "y": 87.73575476702572 + "y": 87.73575 }, { "x": 0, @@ -1203,7 +1203,7 @@ }, { "x": 300, - "y": 84.82848405199007 + "y": 84.82848 }, { "endCol": 6, @@ -1227,7 +1227,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1248,32 +1248,32 @@ "index": 0, "isInternal": false, "x": 280, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 320, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 107.73575476702572 + "y": 107.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 280, - "y": 107.73575476702572 + "y": 107.73575 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1361,12 +1361,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -1377,12 +1377,12 @@ } }, { - "x": 645.6743509008983, - "y": 425.4063326122905 + "x": 645.67435, + "y": 425.40633 }, { - "x": -45.674350900898276, - "y": 274.5936673877095 + "x": -45.67435, + "y": 274.59367 }, { "category": 1, @@ -1452,29 +1452,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -41.92672460918379, - "y": 274.5936673877095 + "x": -41.92672, + "y": 274.59367 }, { "body": null, "index": 1, "isInternal": false, - "x": 645.6743509008983, - "y": 405.7605875977167 + "x": 645.67435, + "y": 405.76059 }, { "body": null, "index": 2, "isInternal": false, - "x": 641.9267246091838, - "y": 425.4063326122905 + "x": 641.92672, + "y": 425.40633 }, { "body": null, "index": 3, "isInternal": false, - "x": -45.674350900898276, - "y": 294.2394124022833 + "x": -45.67435, + "y": 294.23941 }, { "angle": 0, @@ -1502,8 +1502,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1530,7 +1530,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1568,11 +1568,11 @@ }, { "x": 320, - "y": 287.73575476702587 + "y": 287.73575 }, { "x": 280, - "y": 247.73575476702592 + "y": 247.73575 }, { "category": 1, @@ -1590,7 +1590,7 @@ }, { "x": 300, - "y": 267.7357547670259 + "y": 267.73575 }, { "x": 0, @@ -1598,7 +1598,7 @@ }, { "x": 300, - "y": 264.82848405199024 + "y": 264.82848 }, { "endCol": 6, @@ -1622,7 +1622,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -1643,32 +1643,32 @@ "index": 0, "isInternal": false, "x": 280, - "y": 247.73575476702592 + "y": 247.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 320, - "y": 247.73575476702592 + "y": 247.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 287.73575476702587 + "y": 287.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 280, - "y": 287.73575476702587 + "y": 287.73575 }, { - "angle": 0.18849555921538758, - "anglePrev": 0.18849555921538758, + "angle": 0.1885, + "anglePrev": 0.1885, "angularSpeed": 0, "angularVelocity": 0, "area": 14000, @@ -1756,12 +1756,12 @@ } ], { - "x": -0.1873813145857246, - "y": 0.9822872507286887 + "x": -0.18738, + "y": 0.98229 }, { - "x": -0.9822872507286887, - "y": -0.1873813145857246 + "x": -0.98229, + "y": -0.18738 }, { "max": { @@ -1772,12 +1772,12 @@ } }, { - "x": 645.6743509008983, - "y": 595.4063326122905 + "x": 645.67435, + "y": 595.40633 }, { - "x": -45.674350900898276, - "y": 444.5936673877095 + "x": -45.67435, + "y": 444.59367 }, { "category": 1, @@ -1847,29 +1847,29 @@ "body": null, "index": 0, "isInternal": false, - "x": -41.92672460918379, - "y": 444.5936673877095 + "x": -41.92672, + "y": 444.59367 }, { "body": null, "index": 1, "isInternal": false, - "x": 645.6743509008983, - "y": 575.7605875977167 + "x": 645.67435, + "y": 575.76059 }, { "body": null, "index": 2, "isInternal": false, - "x": 641.9267246091838, - "y": 595.4063326122905 + "x": 641.92672, + "y": 595.40633 }, { "body": null, "index": 3, "isInternal": false, - "x": -45.674350900898276, - "y": 464.2394124022833 + "x": -45.67435, + "y": 464.23941 }, { "angle": 0, @@ -1897,8 +1897,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1925,7 +1925,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1963,11 +1963,11 @@ }, { "x": 320, - "y": 467.73575476702496 + "y": 467.73575 }, { "x": 280, - "y": 427.73575476702496 + "y": 427.73575 }, { "category": 1, @@ -1985,7 +1985,7 @@ }, { "x": 300, - "y": 447.73575476702496 + "y": 447.73575 }, { "x": 0, @@ -1993,7 +1993,7 @@ }, { "x": 300, - "y": 444.8284840519894 + "y": 444.82848 }, { "endCol": 6, @@ -2017,7 +2017,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2038,28 +2038,28 @@ "index": 0, "isInternal": false, "x": 280, - "y": 427.73575476702496 + "y": 427.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 320, - "y": 427.73575476702496 + "y": 427.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 320, - "y": 467.73575476702496 + "y": 467.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 280, - "y": 467.73575476702496 + "y": 467.73575 }, { "max": { diff --git a/test/browser/refs/gravity/gravity-0.json b/test/browser/refs/gravity/gravity-0.json index 1486d61a..0ab77c65 100644 --- a/test/browser/refs/gravity/gravity-0.json +++ b/test/browser/refs/gravity/gravity-0.json @@ -1159,7 +1159,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1534.906434764454, + "area": 1534.90643, "axes": { "#": 93 }, @@ -1180,13 +1180,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1242,12 +1242,12 @@ } }, { - "x": 56.40316358024691, - "y": 62.164094650205755 + "x": 56.40316, + "y": 62.16409 }, { - "x": 19.999999999999996, - "y": 19.999999999999993 + "x": 20, + "y": 20 }, { "category": 1, @@ -1264,16 +1264,16 @@ "y": 0 }, { - "x": 38.201581790123456, - "y": 41.08204732510288 + "x": 38.20158, + "y": 41.08205 }, { "x": 0, "y": 0 }, { - "x": 38.201581790123456, - "y": 41.08204732510288 + "x": 38.20158, + "y": 41.08205 }, { "fillStyle": "#C44D58", @@ -1310,36 +1310,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 19.999999999999996, - "y": 19.999999999999993 + "x": 20, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 56.40316358024691, - "y": 19.999999999999993 + "x": 56.40316, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.40316358024691, - "y": 62.164094650205755 + "x": 56.40316, + "y": 62.16409 }, { "body": null, "index": 3, "isInternal": false, - "x": 19.999999999999996, - "y": 62.164094650205755 + "x": 20, + "y": 62.16409 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.52878634164, + "area": 2220.52879, "axes": { "#": 114 }, @@ -1360,13 +1360,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1422,11 +1422,11 @@ } }, { - "x": 101.7190072016461, - "y": 69.0011574074074 + "x": 101.71901, + "y": 69.00116 }, { - "x": 56.40316358024691, + "x": 56.40316, "y": 20 }, { @@ -1444,16 +1444,16 @@ "y": 0 }, { - "x": 79.0610853909465, - "y": 44.5005787037037 + "x": 79.06109, + "y": 44.50058 }, { "x": 0, "y": 0 }, { - "x": 79.0610853909465, - "y": 44.5005787037037 + "x": 79.06109, + "y": 44.50058 }, { "fillStyle": "#C7F464", @@ -1490,36 +1490,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.40316358024691, + "x": 56.40316, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 101.7190072016461, - "y": 69.0011574074074 + "x": 101.71901, + "y": 69.00116 }, { "body": null, "index": 3, "isInternal": false, - "x": 56.40316358024691, - "y": 69.0011574074074 + "x": 56.40316, + "y": 69.00116 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1140.197701571206, + "area": 1140.1977, "axes": { "#": 135 }, @@ -1540,13 +1540,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1602,11 +1602,11 @@ } }, { - "x": 140.93981481481484, - "y": 49.07124485596708 + "x": 140.93981, + "y": 49.07124 }, { - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { @@ -1624,16 +1624,16 @@ "y": 0 }, { - "x": 121.32941100823047, - "y": 34.53562242798354 + "x": 121.32941, + "y": 34.53562 }, { "x": 0, "y": 0 }, { - "x": 121.32941100823047, - "y": 34.53562242798354 + "x": 121.32941, + "y": 34.53562 }, { "fillStyle": "#C7F464", @@ -1670,36 +1670,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 140.93981481481484, - "y": 49.07124485596708 + "x": 140.93981, + "y": 49.07124 }, { "body": null, "index": 3, "isInternal": false, - "x": 101.7190072016461, - "y": 49.07124485596708 + "x": 101.71901, + "y": 49.07124 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 752.4076041785743, + "area": 752.4076, "axes": { "#": 156 }, @@ -1720,13 +1720,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1782,11 +1782,11 @@ } }, { - "x": 165.81712962962968, - "y": 50.24472736625515 + "x": 165.81713, + "y": 50.24473 }, { - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { @@ -1804,16 +1804,16 @@ "y": 0 }, { - "x": 153.37847222222226, - "y": 35.122363683127574 + "x": 153.37847, + "y": 35.12236 }, { "x": 0, "y": 0 }, { - "x": 153.37847222222226, - "y": 35.122363683127574 + "x": 153.37847, + "y": 35.12236 }, { "fillStyle": "#C7F464", @@ -1850,36 +1850,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 165.81712962962968, + "x": 165.81713, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.81712962962968, - "y": 50.24472736625515 + "x": 165.81713, + "y": 50.24473 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.93981481481484, - "y": 50.24472736625515 + "x": 140.93981, + "y": 50.24473 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2027.2541820000001, + "area": 2027.25418, "axes": { "#": 177 }, @@ -1900,13 +1900,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -1949,12 +1949,12 @@ } ], { - "x": -0.500008582084709, - "y": -0.8660204488588239 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.500008582084709, - "y": -0.8660204488588239 + "x": 0.50001, + "y": -0.86602 }, { "x": 1, @@ -1969,12 +1969,12 @@ } }, { - "x": 214.19912962962968, + "x": 214.19913, "y": 75.868 }, { - "x": 165.81712962962968, - "y": 19.999999999999996 + "x": 165.81713, + "y": 20 }, { "category": 1, @@ -1991,7 +1991,7 @@ "y": 0 }, { - "x": 190.00812962962968, + "x": 190.00813, "y": 47.934 }, { @@ -1999,7 +1999,7 @@ "y": 0 }, { - "x": 190.00812962962968, + "x": 190.00813, "y": 47.934 }, { @@ -2043,42 +2043,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.19912962962968, - "y": 61.900999999999996 + "x": 214.19913, + "y": 61.901 }, { "body": null, "index": 1, "isInternal": false, - "x": 190.00812962962968, + "x": 190.00813, "y": 75.868 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.81712962962968, - "y": 61.900999999999996 + "x": 165.81713, + "y": 61.901 }, { "body": null, "index": 3, "isInternal": false, - "x": 165.81712962962968, + "x": 165.81713, "y": 33.967 }, { "body": null, "index": 4, "isInternal": false, - "x": 190.00812962962968, - "y": 19.999999999999996 + "x": 190.00813, + "y": 20 }, { "body": null, "index": 5, "isInternal": false, - "x": 214.19912962962968, + "x": 214.19913, "y": 33.967 }, { @@ -2107,13 +2107,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2162,20 +2162,20 @@ } ], { - "x": 0.30902000749156683, - "y": 0.95105553726894 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090188345853124, - "y": 0.5877827194518592 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090188345853124, - "y": -0.5877827194518592 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902000749156683, - "y": -0.95105553726894 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -2190,11 +2190,11 @@ } }, { - "x": 291.5277437444547, + "x": 291.52774, "y": 105.84 }, { - "x": 209.8897437444547, + "x": 209.88974, "y": 20 }, { @@ -2212,7 +2212,7 @@ "y": 0 }, { - "x": 255.0181296296297, + "x": 255.01813, "y": 62.92 }, { @@ -2220,7 +2220,7 @@ "y": 0 }, { - "x": 255.0181296296297, + "x": 255.01813, "y": 62.92 }, { @@ -2261,50 +2261,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 291.5277437444547, + "x": 291.52774, "y": 89.446 }, { "body": null, "index": 1, "isInternal": false, - "x": 241.0727437444547, + "x": 241.07274, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 209.8897437444547, + "x": 209.88974, "y": 62.92 }, { "body": null, "index": 3, "isInternal": false, - "x": 241.0727437444547, + "x": 241.07274, "y": 20 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.5277437444547, - "y": 36.394000000000005 + "x": 291.52774, + "y": 36.394 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3079.0178339999993, + "area": 3079.01783, "axes": { "#": 226 }, "bounds": { "#": 240 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 243 }, @@ -2319,13 +2319,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2398,52 +2398,52 @@ } ], { - "x": -0.9709437470087438, - "y": -0.23930783552700582 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.885418252251326, - "y": -0.46479513614086726 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.7485358222247293, - "y": -0.6630943544069339 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680780310049566, - "y": -0.8229746962632154 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545747323306568, - "y": -0.9350276783029703 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12051249760074473, - "y": -0.9927118101050428 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051249760074473, - "y": -0.9927118101050428 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545747323306568, - "y": -0.9350276783029703 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680780310049566, - "y": -0.8229746962632154 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485358222247293, - "y": -0.6630943544069339 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.885418252251326, - "y": -0.46479513614086726 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.9709437470087438, - "y": -0.23930783552700582 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -2458,12 +2458,12 @@ } }, { - "x": 353.98774374445475, + "x": 353.98774, "y": 82.918 }, { - "x": 291.5277437444547, - "y": 20.000000000000004 + "x": 291.52774, + "y": 20 }, { "category": 1, @@ -2480,7 +2480,7 @@ "y": 0 }, { - "x": 322.75774374445473, + "x": 322.75774, "y": 51.459 }, { @@ -2488,7 +2488,7 @@ "y": 0 }, { - "x": 322.75774374445473, + "x": 322.75774, "y": 51.459 }, { @@ -2592,182 +2592,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.98774374445475, - "y": 55.251000000000005 + "x": 353.98774, + "y": 55.251 }, { "body": null, "index": 1, "isInternal": false, - "x": 352.17274374445475, + "x": 352.17274, "y": 62.615 }, { "body": null, "index": 2, "isInternal": false, - "x": 348.6477437444547, + "x": 348.64774, "y": 69.33 }, { "body": null, "index": 3, "isInternal": false, - "x": 343.6187437444547, + "x": 343.61874, "y": 75.007 }, { "body": null, "index": 4, "isInternal": false, - "x": 337.37774374445473, + "x": 337.37774, "y": 79.315 }, { "body": null, "index": 5, "isInternal": false, - "x": 330.2867437444547, + "x": 330.28674, "y": 82.004 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.75774374445473, + "x": 322.75774, "y": 82.918 }, { "body": null, "index": 7, "isInternal": false, - "x": 315.22874374445473, + "x": 315.22874, "y": 82.004 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.1377437444547, + "x": 308.13774, "y": 79.315 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.89674374445474, + "x": 301.89674, "y": 75.007 }, { "body": null, "index": 10, "isInternal": false, - "x": 296.86774374445474, + "x": 296.86774, "y": 69.33 }, { "body": null, "index": 11, "isInternal": false, - "x": 293.3427437444547, + "x": 293.34274, "y": 62.615 }, { "body": null, "index": 12, "isInternal": false, - "x": 291.5277437444547, - "y": 55.251000000000005 + "x": 291.52774, + "y": 55.251 }, { "body": null, "index": 13, "isInternal": false, - "x": 291.5277437444547, + "x": 291.52774, "y": 47.667 }, { "body": null, "index": 14, "isInternal": false, - "x": 293.3427437444547, - "y": 40.303000000000004 + "x": 293.34274, + "y": 40.303 }, { "body": null, "index": 15, "isInternal": false, - "x": 296.86774374445474, - "y": 33.58800000000001 + "x": 296.86774, + "y": 33.588 }, { "body": null, "index": 16, "isInternal": false, - "x": 301.89674374445474, - "y": 27.911000000000005 + "x": 301.89674, + "y": 27.911 }, { "body": null, "index": 17, "isInternal": false, - "x": 308.1377437444547, + "x": 308.13774, "y": 23.603 }, { "body": null, "index": 18, "isInternal": false, - "x": 315.22874374445473, + "x": 315.22874, "y": 20.914 }, { "body": null, "index": 19, "isInternal": false, - "x": 322.75774374445473, - "y": 20.000000000000004 + "x": 322.75774, + "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 330.2867437444547, + "x": 330.28674, "y": 20.914 }, { "body": null, "index": 21, "isInternal": false, - "x": 337.37774374445473, + "x": 337.37774, "y": 23.603 }, { "body": null, "index": 22, "isInternal": false, - "x": 343.6187437444547, - "y": 27.911000000000005 + "x": 343.61874, + "y": 27.911 }, { "body": null, "index": 23, "isInternal": false, - "x": 348.6477437444547, - "y": 33.58800000000001 + "x": 348.64774, + "y": 33.588 }, { "body": null, "index": 24, "isInternal": false, - "x": 352.17274374445475, - "y": 40.303000000000004 + "x": 352.17274, + "y": 40.303 }, { "body": null, "index": 25, "isInternal": false, - "x": 353.98774374445475, + "x": 353.98774, "y": 47.667 }, { @@ -2775,7 +2775,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1329.4167625219097, + "area": 1329.41676, "axes": { "#": 280 }, @@ -2796,13 +2796,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2858,11 +2858,11 @@ } }, { - "x": 402.76539292140944, - "y": 47.25462962962963 + "x": 402.76539, + "y": 47.25463 }, { - "x": 353.98774374445475, + "x": 353.98774, "y": 20 }, { @@ -2880,16 +2880,16 @@ "y": 0 }, { - "x": 378.3765683329321, - "y": 33.62731481481482 + "x": 378.37657, + "y": 33.62731 }, { "x": 0, "y": 0 }, { - "x": 378.3765683329321, - "y": 33.62731481481482 + "x": 378.37657, + "y": 33.62731 }, { "fillStyle": "#4ECDC4", @@ -2926,36 +2926,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.98774374445475, + "x": 353.98774, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 402.76539292140944, + "x": 402.76539, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 402.76539292140944, - "y": 47.25462962962963 + "x": 402.76539, + "y": 47.25463 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.98774374445475, - "y": 47.25462962962963 + "x": 353.98774, + "y": 47.25463 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2858.632357296012, + "area": 2858.63236, "axes": { "#": 301 }, @@ -2976,13 +2976,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -3038,12 +3038,12 @@ } }, { - "x": 511.6199882574863, - "y": 46.261016803840874 + "x": 511.61999, + "y": 46.26102 }, { - "x": 402.76539292140944, - "y": 19.999999999999996 + "x": 402.76539, + "y": 20 }, { "category": 1, @@ -3060,16 +3060,16 @@ "y": 0 }, { - "x": 457.19269058944786, - "y": 33.13050840192044 + "x": 457.19269, + "y": 33.13051 }, { "x": 0, "y": 0 }, { - "x": 457.19269058944786, - "y": 33.13050840192044 + "x": 457.19269, + "y": 33.13051 }, { "fillStyle": "#C7F464", @@ -3106,36 +3106,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 402.76539292140944, - "y": 19.999999999999996 + "x": 402.76539, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.6199882574863, - "y": 19.999999999999996 + "x": 511.61999, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 511.6199882574863, - "y": 46.261016803840874 + "x": 511.61999, + "y": 46.26102 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.76539292140944, - "y": 46.261016803840874 + "x": 402.76539, + "y": 46.26102 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 926.8394636035856, + "area": 926.83946, "axes": { "#": 322 }, @@ -3156,13 +3156,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3218,11 +3218,11 @@ } }, { - "x": 550.3757752945232, - "y": 43.914866255144034 + "x": 550.37578, + "y": 43.91487 }, { - "x": 511.6199882574862, + "x": 511.61999, "y": 20 }, { @@ -3240,16 +3240,16 @@ "y": 0 }, { - "x": 530.9978817760048, - "y": 31.957433127572017 + "x": 530.99788, + "y": 31.95743 }, { "x": 0, "y": 0 }, { - "x": 530.9978817760048, - "y": 31.957433127572017 + "x": 530.99788, + "y": 31.95743 }, { "fillStyle": "#C44D58", @@ -3286,36 +3286,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 511.6199882574862, + "x": 511.61999, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 550.3757752945232, + "x": 550.37578, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.3757752945232, - "y": 43.914866255144034 + "x": 550.37578, + "y": 43.91487 }, { "body": null, "index": 3, "isInternal": false, - "x": 511.6199882574862, - "y": 43.914866255144034 + "x": 511.61999, + "y": 43.91487 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1290.4501361223834, + "area": 1290.45014, "axes": { "#": 343 }, @@ -3336,13 +3336,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3398,12 +3398,12 @@ } }, { - "x": 586.1460942245644, - "y": 56.076003086419746 + "x": 586.14609, + "y": 56.076 }, { - "x": 550.3757752945232, - "y": 19.999999999999996 + "x": 550.37578, + "y": 20 }, { "category": 1, @@ -3420,16 +3420,16 @@ "y": 0 }, { - "x": 568.2609347595438, - "y": 38.03800154320987 + "x": 568.26093, + "y": 38.038 }, { "x": 0, "y": 0 }, { - "x": 568.2609347595438, - "y": 38.03800154320987 + "x": 568.26093, + "y": 38.038 }, { "fillStyle": "#4ECDC4", @@ -3466,36 +3466,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 550.3757752945232, - "y": 19.999999999999996 + "x": 550.37578, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.1460942245644, - "y": 19.999999999999996 + "x": 586.14609, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.1460942245644, - "y": 56.076003086419746 + "x": 586.14609, + "y": 56.076 }, { "body": null, "index": 3, "isInternal": false, - "x": 550.3757752945232, - "y": 56.076003086419746 + "x": 550.37578, + "y": 56.076 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1148.2925932011974, + "area": 1148.29259, "axes": { "#": 364 }, @@ -3516,13 +3516,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3578,11 +3578,11 @@ } }, { - "x": 616.7010067760048, - "y": 57.58127572016461 + "x": 616.70101, + "y": 57.58128 }, { - "x": 586.1460942245644, + "x": 586.14609, "y": 20 }, { @@ -3600,16 +3600,16 @@ "y": 0 }, { - "x": 601.4235505002846, - "y": 38.790637860082306 + "x": 601.42355, + "y": 38.79064 }, { "x": 0, "y": 0 }, { - "x": 601.4235505002846, - "y": 38.790637860082306 + "x": 601.42355, + "y": 38.79064 }, { "fillStyle": "#C44D58", @@ -3646,36 +3646,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 586.1460942245644, + "x": 586.14609, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.7010067760048, + "x": 616.70101, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.7010067760048, - "y": 57.58127572016461 + "x": 616.70101, + "y": 57.58128 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.1460942245644, - "y": 57.58127572016461 + "x": 586.14609, + "y": 57.58128 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1926.7878890000002, + "area": 1926.78789, "axes": { "#": 385 }, @@ -3696,13 +3696,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3757,28 +3757,28 @@ } ], { - "x": 0.6234921001781484, - "y": 0.7818296496139309 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22251820971292155, - "y": 0.9749285339685962 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009815501548849, - "y": 0.43385740316433524 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009815501548849, - "y": -0.43385740316433524 + "x": -0.90098, + "y": -0.43386 }, { - "x": -0.22251820971292155, - "y": -0.9749285339685962 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234921001781484, - "y": -0.7818296496139309 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -3793,12 +3793,12 @@ } }, { - "x": 665.8303156438957, - "y": 71.74000000000001 + "x": 665.83032, + "y": 71.74 }, { - "x": 615.3873156438957, - "y": 20.000000000000004 + "x": 615.38732, + "y": 20 }, { "category": 1, @@ -3815,16 +3815,16 @@ "y": 0 }, { - "x": 641.9225067760048, - "y": 45.870000000000005 + "x": 641.92251, + "y": 45.87 }, { "x": 0, "y": 0 }, { - "x": 641.9225067760048, - "y": 45.870000000000005 + "x": 641.92251, + "y": 45.87 }, { "fillStyle": "#C7F464", @@ -3870,57 +3870,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 665.8303156438957, + "x": 665.83032, "y": 57.383 }, { "body": null, "index": 1, "isInternal": false, - "x": 647.8273156438956, - "y": 71.74000000000001 + "x": 647.82732, + "y": 71.74 }, { "body": null, "index": 2, "isInternal": false, - "x": 625.3773156438957, + "x": 625.37732, "y": 66.616 }, { "body": null, "index": 3, "isInternal": false, - "x": 615.3873156438957, - "y": 45.870000000000005 + "x": 615.38732, + "y": 45.87 }, { "body": null, "index": 4, "isInternal": false, - "x": 625.3773156438957, - "y": 25.124000000000006 + "x": 625.37732, + "y": 25.124 }, { "body": null, "index": 5, "isInternal": false, - "x": 647.8273156438956, - "y": 20.000000000000004 + "x": 647.82732, + "y": 20 }, { "body": null, "index": 6, "isInternal": false, - "x": 665.8303156438957, - "y": 34.357000000000006 + "x": 665.83032, + "y": 34.357 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1097.755875, + "area": 1097.75588, "axes": { "#": 414 }, @@ -3941,13 +3941,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 927.6617490689248, - "inverseInertia": 0.0010779791243992539, - "inverseMass": 0.9109493492804126, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "inverseMass": 0.91095, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.097755875, + "mass": 1.09776, "motion": 0, "parent": null, "position": { @@ -3990,12 +3990,12 @@ } ], { - "x": -0.49999466010690446, - "y": 0.8660284867512045 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999466010690446, - "y": -0.8660284867512045 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -4010,12 +4010,12 @@ } }, { - "x": 702.1678156438957, + "x": 702.16782, "y": 70.35 }, { - "x": 658.5628156438956, - "y": 19.999999999999996 + "x": 658.56282, + "y": 20 }, { "category": 1, @@ -4032,7 +4032,7 @@ "y": 0 }, { - "x": 687.6328156438957, + "x": 687.63282, "y": 45.175 }, { @@ -4040,7 +4040,7 @@ "y": 0 }, { - "x": 687.6328156438957, + "x": 687.63282, "y": 45.175 }, { @@ -4075,29 +4075,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 702.1678156438957, + "x": 702.16782, "y": 70.35 }, { "body": null, "index": 1, "isInternal": false, - "x": 658.5628156438956, + "x": 658.56282, "y": 45.175 }, { "body": null, "index": 2, "isInternal": false, - "x": 702.1678156438957, - "y": 19.999999999999996 + "x": 702.16782, + "y": 20 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 435 }, @@ -4118,13 +4118,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4173,20 +4173,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4201,12 +4201,12 @@ } }, { - "x": 737.0727729237212, - "y": 58.74600000000001 + "x": 737.07277, + "y": 58.746 }, { - "x": 700.2227729237212, - "y": 20.000000000000004 + "x": 700.22277, + "y": 20 }, { "category": 1, @@ -4223,16 +4223,16 @@ "y": 0 }, { - "x": 720.5928156438956, - "y": 39.373000000000005 + "x": 720.59282, + "y": 39.373 }, { "x": 0, "y": 0 }, { - "x": 720.5928156438956, - "y": 39.373000000000005 + "x": 720.59282, + "y": 39.373 }, { "fillStyle": "#C44D58", @@ -4272,43 +4272,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 737.0727729237212, - "y": 51.346000000000004 + "x": 737.07277, + "y": 51.346 }, { "body": null, "index": 1, "isInternal": false, - "x": 714.2977729237213, - "y": 58.74600000000001 + "x": 714.29777, + "y": 58.746 }, { "body": null, "index": 2, "isInternal": false, - "x": 700.2227729237212, - "y": 39.373000000000005 + "x": 700.22277, + "y": 39.373 }, { "body": null, "index": 3, "isInternal": false, - "x": 714.2977729237213, - "y": 20.000000000000004 + "x": 714.29777, + "y": 20 }, { "body": null, "index": 4, "isInternal": false, - "x": 737.0727729237212, - "y": 27.400000000000006 + "x": 737.07277, + "y": 27.4 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1201.454244, + "area": 1201.45424, "axes": { "#": 460 }, @@ -4329,13 +4329,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4391,12 +4391,12 @@ } }, { - "x": 771.7347729237213, - "y": 54.662000000000006 + "x": 771.73477, + "y": 54.662 }, { - "x": 737.0727729237212, - "y": 20.000000000000004 + "x": 737.07277, + "y": 20 }, { "category": 1, @@ -4413,7 +4413,7 @@ "y": 0 }, { - "x": 754.4037729237212, + "x": 754.40377, "y": 37.331 }, { @@ -4421,7 +4421,7 @@ "y": 0 }, { - "x": 754.4037729237212, + "x": 754.40377, "y": 37.331 }, { @@ -4459,36 +4459,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 771.7347729237213, - "y": 54.662000000000006 + "x": 771.73477, + "y": 54.662 }, { "body": null, "index": 1, "isInternal": false, - "x": 737.0727729237212, - "y": 54.662000000000006 + "x": 737.07277, + "y": 54.662 }, { "body": null, "index": 2, "isInternal": false, - "x": 737.0727729237212, - "y": 20.000000000000004 + "x": 737.07277, + "y": 20 }, { "body": null, "index": 3, "isInternal": false, - "x": 771.7347729237213, - "y": 20.000000000000004 + "x": 771.73477, + "y": 20 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1990.733346252218, + "area": 1990.73335, "axes": { "#": 481 }, @@ -4509,13 +4509,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4571,11 +4571,11 @@ } }, { - "x": 866.5585040622673, - "y": 40.9940414951989 + "x": 866.5585, + "y": 40.99404 }, { - "x": 771.7347729237213, + "x": 771.73477, "y": 20 }, { @@ -4593,16 +4593,16 @@ "y": 0 }, { - "x": 819.1466384929943, - "y": 30.49702074759945 + "x": 819.14664, + "y": 30.49702 }, { "x": 0, "y": 0 }, { - "x": 819.1466384929943, - "y": 30.49702074759945 + "x": 819.14664, + "y": 30.49702 }, { "fillStyle": "#FF6B6B", @@ -4639,29 +4639,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 771.7347729237213, + "x": 771.73477, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 866.5585040622673, + "x": 866.5585, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 866.5585040622673, - "y": 40.9940414951989 + "x": 866.5585, + "y": 40.99404 }, { "body": null, "index": 3, "isInternal": false, - "x": 771.7347729237213, - "y": 40.9940414951989 + "x": 771.73477, + "y": 40.99404 }, { "angle": 0, @@ -4675,7 +4675,7 @@ "bounds": { "#": 516 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 519 }, @@ -4690,13 +4690,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4769,52 +4769,52 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -4829,12 +4829,12 @@ } }, { - "x": 962.8725040622674, - "y": 117.01999999999998 + "x": 962.8725, + "y": 117.02 }, { - "x": 866.5585040622673, - "y": 19.999999999999993 + "x": 866.5585, + "y": 20 }, { "category": 1, @@ -4851,16 +4851,16 @@ "y": 0 }, { - "x": 914.7155040622673, - "y": 68.50999999999999 + "x": 914.7155, + "y": 68.51 }, { "x": 0, "y": 0 }, { - "x": 914.7155040622673, - "y": 68.50999999999999 + "x": 914.7155, + "y": 68.51 }, { "fillStyle": "#4ECDC4", @@ -4963,190 +4963,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 962.8725040622674, + "x": 962.8725, "y": 74.357 }, { "body": null, "index": 1, "isInternal": false, - "x": 960.0735040622673, - "y": 85.71199999999999 + "x": 960.0735, + "y": 85.712 }, { "body": null, "index": 2, "isInternal": false, - "x": 954.6385040622673, + "x": 954.6385, "y": 96.067 }, { "body": null, "index": 3, "isInternal": false, - "x": 946.8835040622673, + "x": 946.8835, "y": 104.821 }, { "body": null, "index": 4, "isInternal": false, - "x": 937.2595040622673, + "x": 937.2595, "y": 111.464 }, { "body": null, "index": 5, "isInternal": false, - "x": 926.3245040622674, - "y": 115.61099999999999 + "x": 926.3245, + "y": 115.611 }, { "body": null, "index": 6, "isInternal": false, - "x": 914.7155040622673, - "y": 117.01999999999998 + "x": 914.7155, + "y": 117.02 }, { "body": null, "index": 7, "isInternal": false, - "x": 903.1065040622673, - "y": 115.61099999999999 + "x": 903.1065, + "y": 115.611 }, { "body": null, "index": 8, "isInternal": false, - "x": 892.1715040622673, + "x": 892.1715, "y": 111.464 }, { "body": null, "index": 9, "isInternal": false, - "x": 882.5475040622673, + "x": 882.5475, "y": 104.821 }, { "body": null, "index": 10, "isInternal": false, - "x": 874.7925040622673, + "x": 874.7925, "y": 96.067 }, { "body": null, "index": 11, "isInternal": false, - "x": 869.3575040622674, - "y": 85.71199999999999 + "x": 869.3575, + "y": 85.712 }, { "body": null, "index": 12, "isInternal": false, - "x": 866.5585040622673, + "x": 866.5585, "y": 74.357 }, { "body": null, "index": 13, "isInternal": false, - "x": 866.5585040622673, - "y": 62.66299999999999 + "x": 866.5585, + "y": 62.663 }, { "body": null, "index": 14, "isInternal": false, - "x": 869.3575040622674, - "y": 51.30799999999999 + "x": 869.3575, + "y": 51.308 }, { "body": null, "index": 15, "isInternal": false, - "x": 874.7925040622673, - "y": 40.95299999999999 + "x": 874.7925, + "y": 40.953 }, { "body": null, "index": 16, "isInternal": false, - "x": 882.5475040622673, - "y": 32.19899999999999 + "x": 882.5475, + "y": 32.199 }, { "body": null, "index": 17, "isInternal": false, - "x": 892.1715040622673, - "y": 25.55599999999999 + "x": 892.1715, + "y": 25.556 }, { "body": null, "index": 18, "isInternal": false, - "x": 903.1065040622673, - "y": 21.408999999999992 + "x": 903.1065, + "y": 21.409 }, { "body": null, "index": 19, "isInternal": false, - "x": 914.7155040622673, - "y": 19.999999999999993 + "x": 914.7155, + "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 926.3245040622674, - "y": 21.408999999999992 + "x": 926.3245, + "y": 21.409 }, { "body": null, "index": 21, "isInternal": false, - "x": 937.2595040622673, - "y": 25.55599999999999 + "x": 937.2595, + "y": 25.556 }, { "body": null, "index": 22, "isInternal": false, - "x": 946.8835040622673, - "y": 32.19899999999999 + "x": 946.8835, + "y": 32.199 }, { "body": null, "index": 23, "isInternal": false, - "x": 954.6385040622673, - "y": 40.95299999999999 + "x": 954.6385, + "y": 40.953 }, { "body": null, "index": 24, "isInternal": false, - "x": 960.0735040622673, - "y": 51.30799999999999 + "x": 960.0735, + "y": 51.308 }, { "body": null, "index": 25, "isInternal": false, - "x": 962.8725040622674, - "y": 62.66299999999999 + "x": 962.8725, + "y": 62.663 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 556 }, @@ -5167,13 +5167,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5229,11 +5229,11 @@ } }, { - "x": 1047.1051858180972, - "y": 44.15646433470508 + "x": 1047.10519, + "y": 44.15646 }, { - "x": 962.8725040622674, + "x": 962.8725, "y": 20 }, { @@ -5251,16 +5251,16 @@ "y": 0 }, { - "x": 1004.9888449401823, - "y": 32.07823216735254 + "x": 1004.98884, + "y": 32.07823 }, { "x": 0, "y": 0 }, { - "x": 1004.9888449401823, - "y": 32.07823216735254 + "x": 1004.98884, + "y": 32.07823 }, { "fillStyle": "#556270", @@ -5297,36 +5297,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 962.8725040622674, + "x": 962.8725, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 1047.1051858180972, + "x": 1047.10519, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 1047.1051858180972, - "y": 44.15646433470508 + "x": 1047.10519, + "y": 44.15646 }, { "body": null, "index": 3, "isInternal": false, - "x": 962.8725040622674, - "y": 44.15646433470508 + "x": 962.8725, + "y": 44.15646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 577 }, @@ -5347,13 +5347,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5409,11 +5409,11 @@ } }, { - "x": 1096.491759892171, - "y": 40.865097736625515 + "x": 1096.49176, + "y": 40.8651 }, { - "x": 1047.1051858180972, + "x": 1047.10519, "y": 20 }, { @@ -5431,16 +5431,16 @@ "y": 0 }, { - "x": 1071.7984728551342, - "y": 30.432548868312757 + "x": 1071.79847, + "y": 30.43255 }, { "x": 0, "y": 0 }, { - "x": 1071.7984728551342, - "y": 30.432548868312757 + "x": 1071.79847, + "y": 30.43255 }, { "fillStyle": "#C7F464", @@ -5477,43 +5477,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 1047.1051858180972, + "x": 1047.10519, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 1096.491759892171, + "x": 1096.49176, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 1096.491759892171, - "y": 40.865097736625515 + "x": 1096.49176, + "y": 40.8651 }, { "body": null, "index": 3, "isInternal": false, - "x": 1047.1051858180972, - "y": 40.865097736625515 + "x": 1047.10519, + "y": 40.8651 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2157.165332, + "area": 2157.16533, "axes": { "#": 598 }, "bounds": { "#": 612 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 615 }, @@ -5528,13 +5528,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5607,52 +5607,52 @@ } ], { - "x": -0.9709433940705979, - "y": -0.2393092674984975 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854643472565572, - "y": -0.46470731620829797 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485032926619368, - "y": -0.6631310736756638 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680789542040116, - "y": -0.8229740590021511 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3546257389378823, - "y": -0.9350083343386629 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12050542549813427, - "y": -0.9927126686133876 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050542549813427, - "y": -0.9927126686133876 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546257389378823, - "y": -0.9350083343386629 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680789542040116, - "y": -0.8229740590021511 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485032926619368, - "y": -0.6631310736756638 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854643472565572, - "y": -0.46470731620829797 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709433940705979, - "y": -0.2393092674984975 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -5668,11 +5668,11 @@ }, { "x": 72.28, - "y": 169.68399999999997 + "y": 169.684 }, { "x": 20, - "y": 117.01999999999998 + "y": 117.02 }, { "category": 1, @@ -5690,7 +5690,7 @@ }, { "x": 46.14, - "y": 143.35199999999998 + "y": 143.352 }, { "x": 0, @@ -5698,7 +5698,7 @@ }, { "x": 46.14, - "y": 143.35199999999998 + "y": 143.352 }, { "fillStyle": "#4ECDC4", @@ -5802,104 +5802,104 @@ "index": 0, "isInternal": false, "x": 72.28, - "y": 146.52599999999998 + "y": 146.526 }, { "body": null, "index": 1, "isInternal": false, "x": 70.761, - "y": 152.68899999999996 + "y": 152.689 }, { "body": null, "index": 2, "isInternal": false, "x": 67.811, - "y": 158.30999999999997 + "y": 158.31 }, { "body": null, "index": 3, "isInternal": false, "x": 63.601, - "y": 163.06199999999998 + "y": 163.062 }, { "body": null, "index": 4, "isInternal": false, "x": 58.377, - "y": 166.66799999999998 + "y": 166.668 }, { "body": null, "index": 5, "isInternal": false, "x": 52.442, - "y": 168.91899999999998 + "y": 168.919 }, { "body": null, "index": 6, "isInternal": false, "x": 46.14, - "y": 169.68399999999997 + "y": 169.684 }, { "body": null, "index": 7, "isInternal": false, "x": 39.838, - "y": 168.91899999999998 + "y": 168.919 }, { "body": null, "index": 8, "isInternal": false, "x": 33.903, - "y": 166.66799999999998 + "y": 166.668 }, { "body": null, "index": 9, "isInternal": false, - "x": 28.679000000000002, - "y": 163.06199999999998 + "x": 28.679, + "y": 163.062 }, { "body": null, "index": 10, "isInternal": false, "x": 24.469, - "y": 158.30999999999997 + "y": 158.31 }, { "body": null, "index": 11, "isInternal": false, - "x": 21.519000000000002, - "y": 152.68899999999996 + "x": 21.519, + "y": 152.689 }, { "body": null, "index": 12, "isInternal": false, "x": 20, - "y": 146.52599999999998 + "y": 146.526 }, { "body": null, "index": 13, "isInternal": false, "x": 20, - "y": 140.17799999999997 + "y": 140.178 }, { "body": null, "index": 14, "isInternal": false, - "x": 21.519000000000002, + "x": 21.519, "y": 134.015 }, { @@ -5907,63 +5907,63 @@ "index": 15, "isInternal": false, "x": 24.469, - "y": 128.39399999999998 + "y": 128.394 }, { "body": null, "index": 16, "isInternal": false, - "x": 28.679000000000002, - "y": 123.64199999999997 + "x": 28.679, + "y": 123.642 }, { "body": null, "index": 17, "isInternal": false, "x": 33.903, - "y": 120.03599999999997 + "y": 120.036 }, { "body": null, "index": 18, "isInternal": false, "x": 39.838, - "y": 117.78499999999997 + "y": 117.785 }, { "body": null, "index": 19, "isInternal": false, "x": 46.14, - "y": 117.01999999999998 + "y": 117.02 }, { "body": null, "index": 20, "isInternal": false, "x": 52.442, - "y": 117.78499999999997 + "y": 117.785 }, { "body": null, "index": 21, "isInternal": false, "x": 58.377, - "y": 120.03599999999997 + "y": 120.036 }, { "body": null, "index": 22, "isInternal": false, "x": 63.601, - "y": 123.64199999999997 + "y": 123.642 }, { "body": null, "index": 23, "isInternal": false, "x": 67.811, - "y": 128.39399999999998 + "y": 128.394 }, { "body": null, @@ -5977,14 +5977,14 @@ "index": 25, "isInternal": false, "x": 72.28, - "y": 140.17799999999997 + "y": 140.178 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2399.6281959999997, + "area": 2399.6282, "axes": { "#": 652 }, @@ -6005,13 +6005,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6067,12 +6067,12 @@ } }, { - "x": 121.26599999999999, - "y": 166.00599999999997 + "x": 121.266, + "y": 166.006 }, { "x": 72.28, - "y": 117.01999999999998 + "y": 117.02 }, { "category": 1, @@ -6090,7 +6090,7 @@ }, { "x": 96.773, - "y": 141.51299999999998 + "y": 141.513 }, { "x": 0, @@ -6098,7 +6098,7 @@ }, { "x": 96.773, - "y": 141.51299999999998 + "y": 141.513 }, { "fillStyle": "#4ECDC4", @@ -6135,36 +6135,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 121.26599999999999, - "y": 166.00599999999997 + "x": 121.266, + "y": 166.006 }, { "body": null, "index": 1, "isInternal": false, "x": 72.28, - "y": 166.00599999999997 + "y": 166.006 }, { "body": null, "index": 2, "isInternal": false, "x": 72.28, - "y": 117.01999999999998 + "y": 117.02 }, { "body": null, "index": 3, "isInternal": false, - "x": 121.26599999999999, - "y": 117.01999999999998 + "x": 121.266, + "y": 117.02 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 673 }, @@ -6185,13 +6185,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6247,12 +6247,12 @@ } }, { - "x": 156.67893724279836, - "y": 159.08893004115225 + "x": 156.67894, + "y": 159.08893 }, { - "x": 121.26599999999999, - "y": 117.01999999999998 + "x": 121.266, + "y": 117.02 }, { "category": 1, @@ -6269,16 +6269,16 @@ "y": 0 }, { - "x": 138.97246862139917, - "y": 138.05446502057612 + "x": 138.97247, + "y": 138.05447 }, { "x": 0, "y": 0 }, { - "x": 138.97246862139917, - "y": 138.05446502057612 + "x": 138.97247, + "y": 138.05447 }, { "fillStyle": "#4ECDC4", @@ -6315,36 +6315,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 121.26599999999999, - "y": 117.01999999999998 + "x": 121.266, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 156.67893724279836, - "y": 117.01999999999998 + "x": 156.67894, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 156.67893724279836, - "y": 159.08893004115225 + "x": 156.67894, + "y": 159.08893 }, { "body": null, "index": 3, "isInternal": false, - "x": 121.26599999999999, - "y": 159.08893004115225 + "x": 121.266, + "y": 159.08893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 694 }, @@ -6365,13 +6365,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6427,12 +6427,12 @@ } }, { - "x": 198.4428261316872, - "y": 159.2901903292181 + "x": 198.44283, + "y": 159.29019 }, { - "x": 156.67893724279836, - "y": 117.01999999999998 + "x": 156.67894, + "y": 117.02 }, { "category": 1, @@ -6449,16 +6449,16 @@ "y": 0 }, { - "x": 177.56088168724278, - "y": 138.15509516460904 + "x": 177.56088, + "y": 138.1551 }, { "x": 0, "y": 0 }, { - "x": 177.56088168724278, - "y": 138.15509516460904 + "x": 177.56088, + "y": 138.1551 }, { "fillStyle": "#FF6B6B", @@ -6495,36 +6495,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 156.67893724279836, - "y": 117.01999999999998 + "x": 156.67894, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 198.4428261316872, - "y": 117.01999999999998 + "x": 198.44283, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 198.4428261316872, - "y": 159.2901903292181 + "x": 198.44283, + "y": 159.29019 }, { "body": null, "index": 3, "isInternal": false, - "x": 156.67893724279836, - "y": 159.2901903292181 + "x": 156.67894, + "y": 159.29019 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1919.5457599999997, + "area": 1919.54576, "axes": { "#": 715 }, @@ -6545,13 +6545,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6594,12 +6594,12 @@ } ], { - "x": -0.4999772266722585, - "y": -0.8660385515721092 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999772266722585, - "y": -0.8660385515721092 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -6614,11 +6614,11 @@ } }, { - "x": 245.5228261316872, + "x": 245.52283, "y": 171.382 }, { - "x": 198.4428261316872, + "x": 198.44283, "y": 117.02 }, { @@ -6636,7 +6636,7 @@ "y": 0 }, { - "x": 221.9828261316872, + "x": 221.98283, "y": 144.201 }, { @@ -6644,7 +6644,7 @@ "y": 0 }, { - "x": 221.9828261316872, + "x": 221.98283, "y": 144.201 }, { @@ -6688,42 +6688,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.5228261316872, + "x": 245.52283, "y": 157.792 }, { "body": null, "index": 1, "isInternal": false, - "x": 221.9828261316872, + "x": 221.98283, "y": 171.382 }, { "body": null, "index": 2, "isInternal": false, - "x": 198.4428261316872, + "x": 198.44283, "y": 157.792 }, { "body": null, "index": 3, "isInternal": false, - "x": 198.4428261316872, + "x": 198.44283, "y": 130.61 }, { "body": null, "index": 4, "isInternal": false, - "x": 221.9828261316872, + "x": 221.98283, "y": 117.02 }, { "body": null, "index": 5, "isInternal": false, - "x": 245.5228261316872, + "x": 245.52283, "y": 130.61 }, { @@ -6731,7 +6731,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6052.328004, + "area": 6052.328, "axes": { "#": 739 }, @@ -6752,13 +6752,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -6801,12 +6801,12 @@ } ], { - "x": -0.4999896834528559, - "y": -0.8660313599637792 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999896834528559, - "y": -0.8660313599637792 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -6821,12 +6821,12 @@ } }, { - "x": 329.1208261316872, - "y": 213.54999999999995 + "x": 329.12083, + "y": 213.55 }, { - "x": 245.5228261316872, - "y": 117.01999999999997 + "x": 245.52283, + "y": 117.02 }, { "category": 1, @@ -6843,16 +6843,16 @@ "y": 0 }, { - "x": 287.3218261316872, - "y": 165.28499999999997 + "x": 287.32183, + "y": 165.285 }, { "x": 0, "y": 0 }, { - "x": 287.3218261316872, - "y": 165.28499999999997 + "x": 287.32183, + "y": 165.285 }, { "fillStyle": "#4ECDC4", @@ -6895,42 +6895,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 329.1208261316872, - "y": 189.41799999999998 + "x": 329.12083, + "y": 189.418 }, { "body": null, "index": 1, "isInternal": false, - "x": 287.3218261316872, - "y": 213.54999999999995 + "x": 287.32183, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 245.5228261316872, - "y": 189.41799999999998 + "x": 245.52283, + "y": 189.418 }, { "body": null, "index": 3, "isInternal": false, - "x": 245.5228261316872, + "x": 245.52283, "y": 141.152 }, { "body": null, "index": 4, "isInternal": false, - "x": 287.3218261316872, - "y": 117.01999999999997 + "x": 287.32183, + "y": 117.02 }, { "body": null, "index": 5, "isInternal": false, - "x": 329.1208261316872, + "x": 329.12083, "y": 141.152 }, { @@ -6938,7 +6938,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 763 }, @@ -6959,13 +6959,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7021,12 +7021,12 @@ } }, { - "x": 374.27218930041147, - "y": 166.18846707818926 + "x": 374.27219, + "y": 166.18847 }, { - "x": 329.1208261316872, - "y": 117.01999999999997 + "x": 329.12083, + "y": 117.02 }, { "category": 1, @@ -7043,16 +7043,16 @@ "y": 0 }, { - "x": 351.6965077160493, - "y": 141.60423353909462 + "x": 351.69651, + "y": 141.60423 }, { "x": 0, "y": 0 }, { - "x": 351.6965077160493, - "y": 141.60423353909462 + "x": 351.69651, + "y": 141.60423 }, { "fillStyle": "#C7F464", @@ -7089,36 +7089,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 329.1208261316872, - "y": 117.01999999999997 + "x": 329.12083, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 374.27218930041147, - "y": 117.01999999999997 + "x": 374.27219, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 374.27218930041147, - "y": 166.18846707818926 + "x": 374.27219, + "y": 166.18847 }, { "body": null, "index": 3, "isInternal": false, - "x": 329.1208261316872, - "y": 166.18846707818926 + "x": 329.12083, + "y": 166.18847 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2601.1074479999997, + "area": 2601.10745, "axes": { "#": 784 }, @@ -7139,13 +7139,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7188,12 +7188,12 @@ } ], { - "x": -0.4999869137730785, - "y": -0.8660329589892477 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999869137730785, - "y": -0.8660329589892477 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7208,12 +7208,12 @@ } }, { - "x": 429.07618930041144, - "y": 180.30199999999996 + "x": 429.07619, + "y": 180.302 }, { - "x": 374.27218930041147, - "y": 117.01999999999998 + "x": 374.27219, + "y": 117.02 }, { "category": 1, @@ -7230,16 +7230,16 @@ "y": 0 }, { - "x": 401.67418930041146, - "y": 148.66099999999997 + "x": 401.67419, + "y": 148.661 }, { "x": 0, "y": 0 }, { - "x": 401.67418930041146, - "y": 148.66099999999997 + "x": 401.67419, + "y": 148.661 }, { "fillStyle": "#4ECDC4", @@ -7282,50 +7282,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 429.07618930041144, - "y": 164.48199999999997 + "x": 429.07619, + "y": 164.482 }, { "body": null, "index": 1, "isInternal": false, - "x": 401.67418930041146, - "y": 180.30199999999996 + "x": 401.67419, + "y": 180.302 }, { "body": null, "index": 2, "isInternal": false, - "x": 374.27218930041147, - "y": 164.48199999999997 + "x": 374.27219, + "y": 164.482 }, { "body": null, "index": 3, "isInternal": false, - "x": 374.27218930041147, - "y": 132.83999999999997 + "x": 374.27219, + "y": 132.84 }, { "body": null, "index": 4, "isInternal": false, - "x": 401.67418930041146, - "y": 117.01999999999998 + "x": 401.67419, + "y": 117.02 }, { "body": null, "index": 5, "isInternal": false, - "x": 429.07618930041144, - "y": 132.83999999999997 + "x": 429.07619, + "y": 132.84 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1413.3088360000002, + "area": 1413.30884, "axes": { "#": 808 }, @@ -7346,13 +7346,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7408,12 +7408,12 @@ } }, { - "x": 466.6701893004115, - "y": 154.61399999999998 + "x": 466.67019, + "y": 154.614 }, { - "x": 429.07618930041144, - "y": 117.01999999999998 + "x": 429.07619, + "y": 117.02 }, { "category": 1, @@ -7430,16 +7430,16 @@ "y": 0 }, { - "x": 447.87318930041147, - "y": 135.81699999999998 + "x": 447.87319, + "y": 135.817 }, { "x": 0, "y": 0 }, { - "x": 447.87318930041147, - "y": 135.81699999999998 + "x": 447.87319, + "y": 135.817 }, { "fillStyle": "#556270", @@ -7476,36 +7476,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 466.6701893004115, - "y": 154.61399999999998 + "x": 466.67019, + "y": 154.614 }, { "body": null, "index": 1, "isInternal": false, - "x": 429.07618930041144, - "y": 154.61399999999998 + "x": 429.07619, + "y": 154.614 }, { "body": null, "index": 2, "isInternal": false, - "x": 429.07618930041144, - "y": 117.01999999999998 + "x": 429.07619, + "y": 117.02 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.6701893004115, - "y": 117.01999999999998 + "x": 466.67019, + "y": 117.02 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5460.808751999999, + "area": 5460.80875, "axes": { "#": 829 }, @@ -7526,13 +7526,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7575,12 +7575,12 @@ } ], { - "x": -0.49999811726960197, - "y": -0.8660264907766121 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.49999811726960197, - "y": -0.8660264907766121 + "x": 0.5, + "y": -0.86603 }, { "x": 1, @@ -7595,12 +7595,12 @@ } }, { - "x": 546.0781893004115, + "x": 546.07819, "y": 208.712 }, { - "x": 466.6701893004115, - "y": 117.01999999999998 + "x": 466.67019, + "y": 117.02 }, { "category": 1, @@ -7617,16 +7617,16 @@ "y": 0 }, { - "x": 506.3741893004115, - "y": 162.86599999999999 + "x": 506.37419, + "y": 162.866 }, { "x": 0, "y": 0 }, { - "x": 506.3741893004115, - "y": 162.86599999999999 + "x": 506.37419, + "y": 162.866 }, { "fillStyle": "#4ECDC4", @@ -7669,50 +7669,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 546.0781893004115, + "x": 546.07819, "y": 185.789 }, { "body": null, "index": 1, "isInternal": false, - "x": 506.3741893004115, + "x": 506.37419, "y": 208.712 }, { "body": null, "index": 2, "isInternal": false, - "x": 466.6701893004115, + "x": 466.67019, "y": 185.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 466.6701893004115, - "y": 139.94299999999998 + "x": 466.67019, + "y": 139.943 }, { "body": null, "index": 4, "isInternal": false, - "x": 506.3741893004115, - "y": 117.01999999999998 + "x": 506.37419, + "y": 117.02 }, { "body": null, "index": 5, "isInternal": false, - "x": 546.0781893004115, - "y": 139.94299999999998 + "x": 546.07819, + "y": 139.943 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 853 }, @@ -7733,13 +7733,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -7795,12 +7795,12 @@ } }, { - "x": 566.2487139917695, - "y": 139.4097890946502 + "x": 566.24871, + "y": 139.40979 }, { - "x": 546.0781893004115, - "y": 117.01999999999998 + "x": 546.07819, + "y": 117.02 }, { "category": 1, @@ -7817,16 +7817,16 @@ "y": 0 }, { - "x": 556.1634516460905, - "y": 128.2148945473251 + "x": 556.16345, + "y": 128.21489 }, { "x": 0, "y": 0 }, { - "x": 556.1634516460905, - "y": 128.2148945473251 + "x": 556.16345, + "y": 128.21489 }, { "fillStyle": "#556270", @@ -7863,36 +7863,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 546.0781893004115, - "y": 117.01999999999998 + "x": 546.07819, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 566.2487139917695, - "y": 117.01999999999998 + "x": 566.24871, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 566.2487139917695, - "y": 139.4097890946502 + "x": 566.24871, + "y": 139.40979 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.0781893004115, - "y": 139.4097890946502 + "x": 546.07819, + "y": 139.40979 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 874 }, @@ -7913,13 +7913,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -7975,11 +7975,11 @@ } }, { - "x": 668.0818758573388, - "y": 146.69283950617285 + "x": 668.08188, + "y": 146.69284 }, { - "x": 566.2487139917695, + "x": 566.24871, "y": 117.02 }, { @@ -7997,16 +7997,16 @@ "y": 0 }, { - "x": 617.1652949245541, - "y": 131.8564197530864 + "x": 617.16529, + "y": 131.85642 }, { "x": 0, "y": 0 }, { - "x": 617.1652949245541, - "y": 131.8564197530864 + "x": 617.16529, + "y": 131.85642 }, { "fillStyle": "#C44D58", @@ -8043,36 +8043,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 566.2487139917695, + "x": 566.24871, "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 668.0818758573388, + "x": 668.08188, "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 668.0818758573388, - "y": 146.69283950617285 + "x": 668.08188, + "y": 146.69284 }, { "body": null, "index": 3, "isInternal": false, - "x": 566.2487139917695, - "y": 146.69283950617285 + "x": 566.24871, + "y": 146.69284 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 895 }, @@ -8093,13 +8093,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8155,12 +8155,12 @@ } }, { - "x": 708.1533779149519, - "y": 138.40027263374483 + "x": 708.15338, + "y": 138.40027 }, { - "x": 668.0818758573388, - "y": 117.01999999999998 + "x": 668.08188, + "y": 117.02 }, { "category": 1, @@ -8177,16 +8177,16 @@ "y": 0 }, { - "x": 688.1176268861453, - "y": 127.71013631687241 + "x": 688.11763, + "y": 127.71014 }, { "x": 0, "y": 0 }, { - "x": 688.1176268861453, - "y": 127.71013631687241 + "x": 688.11763, + "y": 127.71014 }, { "fillStyle": "#556270", @@ -8223,36 +8223,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 668.0818758573388, - "y": 117.01999999999998 + "x": 668.08188, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 708.1533779149519, - "y": 117.01999999999998 + "x": 708.15338, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 708.1533779149519, - "y": 138.40027263374483 + "x": 708.15338, + "y": 138.40027 }, { "body": null, "index": 3, "isInternal": false, - "x": 668.0818758573388, - "y": 138.40027263374483 + "x": 668.08188, + "y": 138.40027 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 916 }, @@ -8273,13 +8273,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8325,16 +8325,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8349,12 +8349,12 @@ } }, { - "x": 778.4053779149518, + "x": 778.40538, "y": 187.272 }, { - "x": 708.1533779149519, - "y": 117.01999999999998 + "x": 708.15338, + "y": 117.02 }, { "category": 1, @@ -8371,7 +8371,7 @@ "y": 0 }, { - "x": 743.2793779149519, + "x": 743.27938, "y": 152.146 }, { @@ -8379,7 +8379,7 @@ "y": 0 }, { - "x": 743.2793779149519, + "x": 743.27938, "y": 152.146 }, { @@ -8429,56 +8429,56 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.4053779149518, + "x": 778.40538, "y": 166.696 }, { "body": null, "index": 1, "isInternal": false, - "x": 757.8293779149518, + "x": 757.82938, "y": 187.272 }, { "body": null, "index": 2, "isInternal": false, - "x": 728.7293779149519, + "x": 728.72938, "y": 187.272 }, { "body": null, "index": 3, "isInternal": false, - "x": 708.1533779149519, + "x": 708.15338, "y": 166.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 708.1533779149519, + "x": 708.15338, "y": 137.596 }, { "body": null, "index": 5, "isInternal": false, - "x": 728.7293779149519, - "y": 117.01999999999998 + "x": 728.72938, + "y": 117.02 }, { "body": null, "index": 6, "isInternal": false, - "x": 757.8293779149518, - "y": 117.01999999999998 + "x": 757.82938, + "y": 117.02 }, { "body": null, "index": 7, "isInternal": false, - "x": 778.4053779149518, + "x": 778.40538, "y": 137.596 }, { @@ -8486,7 +8486,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 943 }, @@ -8507,13 +8507,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8569,12 +8569,12 @@ } }, { - "x": 867.9096646090533, - "y": 138.97584705075445 + "x": 867.90966, + "y": 138.97585 }, { - "x": 778.4053779149518, - "y": 117.01999999999998 + "x": 778.40538, + "y": 117.02 }, { "category": 1, @@ -8591,16 +8591,16 @@ "y": 0 }, { - "x": 823.1575212620025, - "y": 127.99792352537722 + "x": 823.15752, + "y": 127.99792 }, { "x": 0, "y": 0 }, { - "x": 823.1575212620025, - "y": 127.99792352537722 + "x": 823.15752, + "y": 127.99792 }, { "fillStyle": "#4ECDC4", @@ -8637,36 +8637,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.4053779149518, - "y": 117.01999999999998 + "x": 778.40538, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 867.9096646090533, - "y": 117.01999999999998 + "x": 867.90966, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 867.9096646090533, - "y": 138.97584705075445 + "x": 867.90966, + "y": 138.97585 }, { "body": null, "index": 3, "isInternal": false, - "x": 778.4053779149518, - "y": 138.97584705075445 + "x": 778.40538, + "y": 138.97585 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1492.5256200000001, + "area": 1492.52562, "axes": { "#": 964 }, @@ -8687,13 +8687,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1714.8324723309402, - "inverseInertia": 0.0005831473430408735, - "inverseMass": 0.6700052492231255, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "inverseMass": 0.67001, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.49252562, + "mass": 1.49253, "motion": 0, "parent": null, "position": { @@ -8736,12 +8736,12 @@ } ], { - "x": -0.5000025921589079, - "y": 0.8660239071956228 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000025921589079, - "y": -0.8660239071956228 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -8756,12 +8756,12 @@ } }, { - "x": 910.2796646090532, - "y": 175.72999999999996 + "x": 910.27966, + "y": 175.73 }, { - "x": 859.4356646090532, - "y": 117.01999999999997 + "x": 859.43566, + "y": 117.02 }, { "category": 1, @@ -8778,16 +8778,16 @@ "y": 0 }, { - "x": 893.3316646090532, - "y": 146.37499999999997 + "x": 893.33166, + "y": 146.375 }, { "x": 0, "y": 0 }, { - "x": 893.3316646090532, - "y": 146.37499999999997 + "x": 893.33166, + "y": 146.375 }, { "fillStyle": "#4ECDC4", @@ -8821,29 +8821,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 910.2796646090532, - "y": 175.72999999999996 + "x": 910.27966, + "y": 175.73 }, { "body": null, "index": 1, "isInternal": false, - "x": 859.4356646090532, - "y": 146.37499999999997 + "x": 859.43566, + "y": 146.375 }, { "body": null, "index": 2, "isInternal": false, - "x": 910.2796646090532, - "y": 117.01999999999997 + "x": 910.27966, + "y": 117.02 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 942.0065703840771, + "area": 942.00657, "axes": { "#": 985 }, @@ -8864,13 +8864,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -8926,12 +8926,12 @@ } }, { - "x": 931.3395925925923, - "y": 161.74980967078187 + "x": 931.33959, + "y": 161.74981 }, { - "x": 910.2796646090532, - "y": 117.01999999999998 + "x": 910.27966, + "y": 117.02 }, { "category": 1, @@ -8948,16 +8948,16 @@ "y": 0 }, { - "x": 920.8096286008227, - "y": 139.38490483539093 + "x": 920.80963, + "y": 139.3849 }, { "x": 0, "y": 0 }, { - "x": 920.8096286008227, - "y": 139.38490483539093 + "x": 920.80963, + "y": 139.3849 }, { "fillStyle": "#4ECDC4", @@ -8994,36 +8994,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 910.2796646090532, - "y": 117.01999999999998 + "x": 910.27966, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 931.3395925925923, - "y": 117.01999999999998 + "x": 931.33959, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 931.3395925925923, - "y": 161.74980967078187 + "x": 931.33959, + "y": 161.74981 }, { "body": null, "index": 3, "isInternal": false, - "x": 910.2796646090532, - "y": 161.74980967078187 + "x": 910.27966, + "y": 161.74981 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2898.415585731765, + "area": 2898.41559, "axes": { "#": 1006 }, @@ -9044,13 +9044,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -9106,12 +9106,12 @@ } }, { - "x": 1043.5355802469135, - "y": 142.85350480109736 + "x": 1043.53558, + "y": 142.8535 }, { - "x": 931.3395925925923, - "y": 117.01999999999997 + "x": 931.33959, + "y": 117.02 }, { "category": 1, @@ -9128,16 +9128,16 @@ "y": 0 }, { - "x": 987.4375864197528, - "y": 129.93675240054867 + "x": 987.43759, + "y": 129.93675 }, { "x": 0, "y": 0 }, { - "x": 987.4375864197528, - "y": 129.93675240054867 + "x": 987.43759, + "y": 129.93675 }, { "fillStyle": "#C44D58", @@ -9174,36 +9174,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 931.3395925925923, - "y": 117.01999999999997 + "x": 931.33959, + "y": 117.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 1043.5355802469135, - "y": 117.01999999999997 + "x": 1043.53558, + "y": 117.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 1043.5355802469135, - "y": 142.85350480109736 + "x": 1043.53558, + "y": 142.8535 }, { "body": null, "index": 3, "isInternal": false, - "x": 931.3395925925923, - "y": 142.85350480109736 + "x": 931.33959, + "y": 142.8535 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 842.523055, + "area": 842.52305, "axes": { "#": 1027 }, @@ -9224,13 +9224,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 546.4390114484775, - "inverseInertia": 0.001830030395065027, - "inverseMass": 1.1869111403722952, + "inertia": 546.43901, + "inverseInertia": 0.00183, + "inverseMass": 1.18691, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.842523055, + "mass": 0.84252, "motion": 0, "parent": null, "position": { @@ -9273,12 +9273,12 @@ } ], { - "x": -0.49999391924129877, - "y": 0.8660289144836479 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999391924129877, - "y": -0.8660289144836479 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -9293,12 +9293,12 @@ } }, { - "x": 1075.3697469135802, + "x": 1075.36975, "y": 161.13 }, { - "x": 1037.16874691358, - "y": 117.01999999999998 + "x": 1037.16875, + "y": 117.02 }, { "category": 1, @@ -9315,7 +9315,7 @@ "y": 0 }, { - "x": 1062.6360802469135, + "x": 1062.63608, "y": 139.075 }, { @@ -9323,7 +9323,7 @@ "y": 0 }, { - "x": 1062.6360802469135, + "x": 1062.63608, "y": 139.075 }, { @@ -9358,36 +9358,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1075.3697469135802, + "x": 1075.36975, "y": 161.13 }, { "body": null, "index": 1, "isInternal": false, - "x": 1037.16874691358, + "x": 1037.16875, "y": 139.075 }, { "body": null, "index": 2, "isInternal": false, - "x": 1075.3697469135802, - "y": 117.01999999999998 + "x": 1075.36975, + "y": 117.02 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6661.542482000001, + "area": 6661.54248, "axes": { "#": 1048 }, "bounds": { "#": 1062 }, - "circleRadius": 46.273148148148145, + "circleRadius": 46.27315, "collisionFilter": { "#": 1065 }, @@ -9402,13 +9402,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 28251.272419191544, - "inverseInertia": 0.00003539663577491412, - "inverseMass": 0.15011538284144801, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "inverseMass": 0.15012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.661542482000001, + "mass": 6.66154, "motion": 0, "parent": null, "position": { @@ -9481,52 +9481,52 @@ } ], { - "x": -0.9709335210486909, - "y": -0.23934932150309357 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854504735162902, - "y": -0.46473375060326466 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485309706272006, - "y": -0.6630998311053178 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680534091439667, - "y": -0.822991691549749 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35463801958119895, - "y": -0.9350036764994698 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12048128629971751, - "y": -0.992715598573713 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12048128629971751, - "y": -0.992715598573713 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.35463801958119895, - "y": -0.9350036764994698 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680534091439667, - "y": -0.822991691549749 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7485309706272006, - "y": -0.6630998311053178 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854504735162902, - "y": -0.46473375060326466 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709335210486909, - "y": -0.23934932150309357 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -9541,12 +9541,12 @@ } }, { - "x": 1167.24174691358, - "y": 209.56599999999997 + "x": 1167.24175, + "y": 209.566 }, { - "x": 1075.3697469135802, - "y": 117.01999999999998 + "x": 1075.36975, + "y": 117.02 }, { "category": 1, @@ -9563,16 +9563,16 @@ "y": 0 }, { - "x": 1121.3057469135802, - "y": 163.29299999999998 + "x": 1121.30575, + "y": 163.293 }, { "x": 0, "y": 0 }, { - "x": 1121.3057469135802, - "y": 163.29299999999998 + "x": 1121.30575, + "y": 163.293 }, { "fillStyle": "#FF6B6B", @@ -9675,190 +9675,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1167.24174691358, - "y": 168.87099999999998 + "x": 1167.24175, + "y": 168.871 }, { "body": null, "index": 1, "isInternal": false, - "x": 1164.5717469135802, - "y": 179.70199999999997 + "x": 1164.57175, + "y": 179.702 }, { "body": null, "index": 2, "isInternal": false, - "x": 1159.3877469135803, - "y": 189.57899999999998 + "x": 1159.38775, + "y": 189.579 }, { "body": null, "index": 3, "isInternal": false, - "x": 1151.99074691358, - "y": 197.92899999999997 + "x": 1151.99075, + "y": 197.929 }, { "body": null, "index": 4, "isInternal": false, - "x": 1142.80974691358, + "x": 1142.80975, "y": 204.266 }, { "body": null, "index": 5, "isInternal": false, - "x": 1132.3797469135802, - "y": 208.22199999999998 + "x": 1132.37975, + "y": 208.222 }, { "body": null, "index": 6, "isInternal": false, - "x": 1121.3057469135802, - "y": 209.56599999999997 + "x": 1121.30575, + "y": 209.566 }, { "body": null, "index": 7, "isInternal": false, - "x": 1110.23174691358, - "y": 208.22199999999998 + "x": 1110.23175, + "y": 208.222 }, { "body": null, "index": 8, "isInternal": false, - "x": 1099.8017469135802, + "x": 1099.80175, "y": 204.266 }, { "body": null, "index": 9, "isInternal": false, - "x": 1090.6207469135802, - "y": 197.92899999999997 + "x": 1090.62075, + "y": 197.929 }, { "body": null, "index": 10, "isInternal": false, - "x": 1083.22374691358, - "y": 189.57899999999998 + "x": 1083.22375, + "y": 189.579 }, { "body": null, "index": 11, "isInternal": false, - "x": 1078.03974691358, - "y": 179.70199999999997 + "x": 1078.03975, + "y": 179.702 }, { "body": null, "index": 12, "isInternal": false, - "x": 1075.3697469135802, - "y": 168.87099999999998 + "x": 1075.36975, + "y": 168.871 }, { "body": null, "index": 13, "isInternal": false, - "x": 1075.3697469135802, - "y": 157.71499999999997 + "x": 1075.36975, + "y": 157.715 }, { "body": null, "index": 14, "isInternal": false, - "x": 1078.03974691358, + "x": 1078.03975, "y": 146.884 }, { "body": null, "index": 15, "isInternal": false, - "x": 1083.22374691358, - "y": 137.00699999999998 + "x": 1083.22375, + "y": 137.007 }, { "body": null, "index": 16, "isInternal": false, - "x": 1090.6207469135802, - "y": 128.65699999999998 + "x": 1090.62075, + "y": 128.657 }, { "body": null, "index": 17, "isInternal": false, - "x": 1099.8017469135802, - "y": 122.31999999999998 + "x": 1099.80175, + "y": 122.32 }, { "body": null, "index": 18, "isInternal": false, - "x": 1110.23174691358, - "y": 118.36399999999998 + "x": 1110.23175, + "y": 118.364 }, { "body": null, "index": 19, "isInternal": false, - "x": 1121.3057469135802, - "y": 117.01999999999998 + "x": 1121.30575, + "y": 117.02 }, { "body": null, "index": 20, "isInternal": false, - "x": 1132.3797469135802, - "y": 118.36399999999998 + "x": 1132.37975, + "y": 118.364 }, { "body": null, "index": 21, "isInternal": false, - "x": 1142.80974691358, - "y": 122.31999999999998 + "x": 1142.80975, + "y": 122.32 }, { "body": null, "index": 22, "isInternal": false, - "x": 1151.99074691358, - "y": 128.65699999999998 + "x": 1151.99075, + "y": 128.657 }, { "body": null, "index": 23, "isInternal": false, - "x": 1159.3877469135803, - "y": 137.00699999999998 + "x": 1159.38775, + "y": 137.007 }, { "body": null, "index": 24, "isInternal": false, - "x": 1164.5717469135802, + "x": 1164.57175, "y": 146.884 }, { "body": null, "index": 25, "isInternal": false, - "x": 1167.24174691358, - "y": 157.71499999999997 + "x": 1167.24175, + "y": 157.715 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1051.3111283901928, + "area": 1051.31113, "axes": { "#": 1102 }, @@ -9879,13 +9879,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -9941,12 +9941,12 @@ } }, { - "x": 49.54835390946502, - "y": 249.12934670781885 + "x": 49.54835, + "y": 249.12935 }, { "x": 20, - "y": 213.54999999999995 + "y": 213.55 }, { "category": 1, @@ -9963,16 +9963,16 @@ "y": 0 }, { - "x": 34.77417695473251, - "y": 231.3396733539094 + "x": 34.77418, + "y": 231.33967 }, { "x": 0, "y": 0 }, { - "x": 34.77417695473251, - "y": 231.3396733539094 + "x": 34.77418, + "y": 231.33967 }, { "fillStyle": "#4ECDC4", @@ -10010,35 +10010,35 @@ "index": 0, "isInternal": false, "x": 20, - "y": 213.54999999999995 + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 49.54835390946502, - "y": 213.54999999999995 + "x": 49.54835, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 49.54835390946502, - "y": 249.12934670781885 + "x": 49.54835, + "y": 249.12935 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 249.12934670781885 + "y": 249.12935 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6245.524001, + "area": 6245.524, "axes": { "#": 1123 }, @@ -10059,13 +10059,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 24931.28629116745, - "inverseInertia": 0.00004011024494770155, - "inverseMass": 0.16011466769479796, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "inverseMass": 0.16011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.245524001, + "mass": 6.24552, "motion": 0, "parent": null, "position": { @@ -10120,28 +10120,28 @@ } ], { - "x": 0.6235088590146987, - "y": 0.7818162845133048 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22254054198130854, - "y": 0.9749234365706189 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009716362849914, - "y": 0.4338779904649981 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009716362849914, - "y": -0.4338779904649981 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22254054198130854, - "y": -0.9749234365706189 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.6235088590146987, - "y": -0.7818162845133048 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -10156,12 +10156,12 @@ } }, { - "x": 137.99981624467063, - "y": 306.70399999999995 + "x": 137.99982, + "y": 306.704 }, { - "x": 47.18281624467064, - "y": 213.54999999999995 + "x": 47.18282, + "y": 213.55 }, { "category": 1, @@ -10178,16 +10178,16 @@ "y": 0 }, { - "x": 94.95685390946502, - "y": 260.12699999999995 + "x": 94.95685, + "y": 260.127 }, { "x": 0, "y": 0 }, { - "x": 94.95685390946502, - "y": 260.12699999999995 + "x": 94.95685, + "y": 260.127 }, { "fillStyle": "#556270", @@ -10233,57 +10233,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 137.99981624467063, - "y": 280.85499999999996 + "x": 137.99982, + "y": 280.855 }, { "body": null, "index": 1, "isInternal": false, - "x": 105.58781624467063, - "y": 306.70399999999995 + "x": 105.58782, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 65.16981624467064, - "y": 297.47799999999995 + "x": 65.16982, + "y": 297.478 }, { "body": null, "index": 3, "isInternal": false, - "x": 47.18281624467064, - "y": 260.12699999999995 + "x": 47.18282, + "y": 260.127 }, { "body": null, "index": 4, "isInternal": false, - "x": 65.16981624467064, - "y": 222.77599999999995 + "x": 65.16982, + "y": 222.776 }, { "body": null, "index": 5, "isInternal": false, - "x": 105.58781624467063, - "y": 213.54999999999995 + "x": 105.58782, + "y": 213.55 }, { "body": null, "index": 6, "isInternal": false, - "x": 137.99981624467063, - "y": 239.39899999999994 + "x": 137.99982, + "y": 239.399 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1100.443548, + "area": 1100.44355, "axes": { "#": 1152 }, @@ -10304,13 +10304,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 932.2097612415441, - "inverseInertia": 0.001072719940915627, - "inverseMass": 0.9087244882460795, + "inertia": 932.20976, + "inverseInertia": 0.00107, + "inverseMass": 0.90872, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.1004435479999999, + "mass": 1.10044, "motion": 0, "parent": null, "position": { @@ -10353,12 +10353,12 @@ } ], { - "x": -0.5000006240740739, - "y": 0.8660250434748042 + "x": -0.5, + "y": 0.86603 }, { - "x": -0.5000006240740739, - "y": -0.8660250434748042 + "x": -0.5, + "y": -0.86603 }, { "x": 1, @@ -10373,12 +10373,12 @@ } }, { - "x": 174.3814829113373, - "y": 263.96199999999993 + "x": 174.38148, + "y": 263.962 }, { - "x": 130.7234829113373, - "y": 213.54999999999995 + "x": 130.72348, + "y": 213.55 }, { "category": 1, @@ -10395,16 +10395,16 @@ "y": 0 }, { - "x": 159.82881624467063, - "y": 238.75599999999994 + "x": 159.82882, + "y": 238.756 }, { "x": 0, "y": 0 }, { - "x": 159.82881624467063, - "y": 238.75599999999994 + "x": 159.82882, + "y": 238.756 }, { "fillStyle": "#556270", @@ -10438,29 +10438,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 174.3814829113373, - "y": 263.96199999999993 + "x": 174.38148, + "y": 263.962 }, { "body": null, "index": 1, "isInternal": false, - "x": 130.7234829113373, - "y": 238.75599999999994 + "x": 130.72348, + "y": 238.756 }, { "body": null, "index": 2, "isInternal": false, - "x": 174.3814829113373, - "y": 213.54999999999995 + "x": 174.38148, + "y": 213.55 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4695.386625, + "area": 4695.38663, "axes": { "#": 1173 }, @@ -10481,13 +10481,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -10542,28 +10542,28 @@ } ], { - "x": 0.6235000959518373, - "y": 0.7818232730918474 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.2225264190381346, - "y": 0.9749266602314579 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009718651359478, - "y": 0.43387751524301366 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009718651359478, - "y": -0.43387751524301366 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.2225264190381346, - "y": -0.9749266602314579 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235000959518373, - "y": -0.7818232730918474 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -10578,12 +10578,12 @@ } }, { - "x": 251.07435787900175, - "y": 294.31999999999994 + "x": 251.07436, + "y": 294.32 }, { - "x": 172.33035787900175, - "y": 213.54999999999995 + "x": 172.33036, + "y": 213.55 }, { "category": 1, @@ -10600,16 +10600,16 @@ "y": 0 }, { - "x": 213.7534829113373, - "y": 253.93499999999995 + "x": 213.75348, + "y": 253.935 }, { "x": 0, "y": 0 }, { - "x": 213.7534829113373, - "y": 253.93499999999995 + "x": 213.75348, + "y": 253.935 }, { "fillStyle": "#4ECDC4", @@ -10655,57 +10655,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 251.07435787900175, - "y": 271.90799999999996 + "x": 251.07436, + "y": 271.908 }, { "body": null, "index": 1, "isInternal": false, - "x": 222.97135787900177, - "y": 294.31999999999994 + "x": 222.97136, + "y": 294.32 }, { "body": null, "index": 2, "isInternal": false, - "x": 187.92635787900176, - "y": 286.3209999999999 + "x": 187.92636, + "y": 286.321 }, { "body": null, "index": 3, "isInternal": false, - "x": 172.33035787900175, - "y": 253.93499999999995 + "x": 172.33036, + "y": 253.935 }, { "body": null, "index": 4, "isInternal": false, - "x": 187.92635787900176, - "y": 221.54899999999995 + "x": 187.92636, + "y": 221.549 }, { "body": null, "index": 5, "isInternal": false, - "x": 222.97135787900177, - "y": 213.54999999999995 + "x": 222.97136, + "y": 213.55 }, { "body": null, "index": 6, "isInternal": false, - "x": 251.07435787900175, - "y": 235.96199999999993 + "x": 251.07436, + "y": 235.962 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2533.681298803042, + "area": 2533.6813, "axes": { "#": 1202 }, @@ -10726,13 +10726,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 9087.287047208478, - "inverseInertia": 0.00011004384419739331, - "inverseMass": 0.3946826305551604, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "inverseMass": 0.39468, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.533681298803042, + "mass": 2.53368, "motion": 0, "parent": null, "position": { @@ -10788,12 +10788,12 @@ } }, { - "x": 351.7014154921705, - "y": 238.72892661179696 + "x": 351.70142, + "y": 238.72893 }, { - "x": 251.07435787900175, - "y": 213.54999999999995 + "x": 251.07436, + "y": 213.55 }, { "category": 1, @@ -10810,16 +10810,16 @@ "y": 0 }, { - "x": 301.3878866855861, - "y": 226.13946330589846 + "x": 301.38789, + "y": 226.13946 }, { "x": 0, "y": 0 }, { - "x": 301.3878866855861, - "y": 226.13946330589846 + "x": 301.38789, + "y": 226.13946 }, { "fillStyle": "#556270", @@ -10856,36 +10856,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 251.07435787900175, - "y": 213.54999999999995 + "x": 251.07436, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 351.7014154921705, - "y": 213.54999999999995 + "x": 351.70142, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 351.7014154921705, - "y": 238.72892661179696 + "x": 351.70142, + "y": 238.72893 }, { "body": null, "index": 3, "isInternal": false, - "x": 251.07435787900175, - "y": 238.72892661179696 + "x": 251.07436, + "y": 238.72893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2082.1047164947227, + "area": 2082.10472, "axes": { "#": 1223 }, @@ -10906,13 +10906,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2917.86500075833, - "inverseInertia": 0.0003427163353136995, - "inverseMass": 0.4802832403566742, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "inverseMass": 0.48028, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.082104716494723, + "mass": 2.0821, "motion": 0, "parent": null, "position": { @@ -10968,12 +10968,12 @@ } }, { - "x": 394.2788331876438, - "y": 262.45162037037034 + "x": 394.27883, + "y": 262.45162 }, { - "x": 351.7014154921705, - "y": 213.54999999999995 + "x": 351.70142, + "y": 213.55 }, { "category": 1, @@ -10990,16 +10990,16 @@ "y": 0 }, { - "x": 372.99012433990714, - "y": 238.00081018518514 + "x": 372.99012, + "y": 238.00081 }, { "x": 0, "y": 0 }, { - "x": 372.99012433990714, - "y": 238.00081018518514 + "x": 372.99012, + "y": 238.00081 }, { "fillStyle": "#FF6B6B", @@ -11036,36 +11036,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 351.7014154921705, - "y": 213.54999999999995 + "x": 351.70142, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.2788331876438, - "y": 213.54999999999995 + "x": 394.27883, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 394.2788331876438, - "y": 262.45162037037034 + "x": 394.27883, + "y": 262.45162 }, { "body": null, "index": 3, "isInternal": false, - "x": 351.7014154921705, - "y": 262.45162037037034 + "x": 351.70142, + "y": 262.45162 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2570.1808866424026, + "area": 2570.18089, "axes": { "#": 1244 }, @@ -11086,13 +11086,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 7426.992944977438, - "inverseInertia": 0.00013464399487227974, - "inverseMass": 0.38907767355875333, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "inverseMass": 0.38908, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5701808866424027, + "mass": 2.57018, "motion": 0, "parent": null, "position": { @@ -11148,12 +11148,12 @@ } }, { - "x": 482.73682358544903, - "y": 242.60538408779144 + "x": 482.73682, + "y": 242.60538 }, { - "x": 394.2788331876438, - "y": 213.54999999999995 + "x": 394.27883, + "y": 213.55 }, { "category": 1, @@ -11170,16 +11170,16 @@ "y": 0 }, { - "x": 438.5078283865464, - "y": 228.0776920438957 + "x": 438.50783, + "y": 228.07769 }, { "x": 0, "y": 0 }, { - "x": 438.5078283865464, - "y": 228.0776920438957 + "x": 438.50783, + "y": 228.07769 }, { "fillStyle": "#FF6B6B", @@ -11216,36 +11216,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 394.2788331876438, - "y": 213.54999999999995 + "x": 394.27883, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 482.73682358544903, - "y": 213.54999999999995 + "x": 482.73682, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 482.73682358544903, - "y": 242.60538408779144 + "x": 482.73682, + "y": 242.60538 }, { "body": null, "index": 3, "isInternal": false, - "x": 394.2788331876438, - "y": 242.60538408779144 + "x": 394.27883, + "y": 242.60538 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1460.278512, + "area": 1460.27851, "axes": { "#": 1265 }, @@ -11266,13 +11266,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1641.5325488167716, - "inverseInertia": 0.0006091868240570722, - "inverseMass": 0.6848008731090607, + "inertia": 1641.53255, + "inverseInertia": 0.00061, + "inverseMass": 0.6848, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4602785120000001, + "mass": 1.46028, "motion": 0, "parent": null, "position": { @@ -11315,12 +11315,12 @@ } ], { - "x": -0.49999871188519596, - "y": 0.8660261474765902 + "x": -0.5, + "y": 0.86603 }, { - "x": -0.49999871188519596, - "y": -0.8660261474765902 + "x": -0.5, + "y": -0.86603 }, { "x": 1, @@ -11335,12 +11335,12 @@ } }, { - "x": 524.646823585449, - "y": 271.62199999999996 + "x": 524.64682, + "y": 271.622 }, { - "x": 474.354823585449, - "y": 213.54999999999995 + "x": 474.35482, + "y": 213.55 }, { "category": 1, @@ -11357,16 +11357,16 @@ "y": 0 }, { - "x": 507.88282358544905, - "y": 242.58599999999996 + "x": 507.88282, + "y": 242.586 }, { "x": 0, "y": 0 }, { - "x": 507.88282358544905, - "y": 242.58599999999996 + "x": 507.88282, + "y": 242.586 }, { "fillStyle": "#4ECDC4", @@ -11400,29 +11400,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 524.646823585449, - "y": 271.62199999999996 + "x": 524.64682, + "y": 271.622 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.354823585449, - "y": 242.58599999999996 + "x": 474.35482, + "y": 242.586 }, { "body": null, "index": 2, "isInternal": false, - "x": 524.646823585449, - "y": 213.54999999999995 + "x": 524.64682, + "y": 213.55 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4167.4330549999995, + "area": 4167.43305, "axes": { "#": 1286 }, @@ -11443,13 +11443,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 11100.542061550868, - "inverseInertia": 0.00009008569081177725, - "inverseMass": 0.23995586415004816, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "inverseMass": 0.23996, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.167433054999999, + "mass": 4.16743, "motion": 0, "parent": null, "position": { @@ -11504,28 +11504,28 @@ } ], { - "x": 0.6235095584460711, - "y": 0.7818157267069941 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22252973145772786, - "y": 0.974925904167774 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009725986708983, - "y": 0.43387599201178284 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009725986708983, - "y": -0.43387599201178284 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22252973145772786, - "y": -0.974925904167774 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235095584460711, - "y": -0.7818157267069941 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -11540,12 +11540,12 @@ } }, { - "x": 596.8995334433461, - "y": 289.64399999999995 + "x": 596.89953, + "y": 289.644 }, { - "x": 522.714533443346, - "y": 213.54999999999995 + "x": 522.71453, + "y": 213.55 }, { "category": 1, @@ -11562,16 +11562,16 @@ "y": 0 }, { - "x": 561.739323585449, - "y": 251.59699999999995 + "x": 561.73932, + "y": 251.597 }, { "x": 0, "y": 0 }, { - "x": 561.739323585449, - "y": 251.59699999999995 + "x": 561.73932, + "y": 251.597 }, { "fillStyle": "#FF6B6B", @@ -11617,57 +11617,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 596.8995334433461, - "y": 268.52899999999994 + "x": 596.89953, + "y": 268.529 }, { "body": null, "index": 1, "isInternal": false, - "x": 570.4235334433461, - "y": 289.64399999999995 + "x": 570.42353, + "y": 289.644 }, { "body": null, "index": 2, "isInternal": false, - "x": 537.4075334433461, - "y": 282.10799999999995 + "x": 537.40753, + "y": 282.108 }, { "body": null, "index": 3, "isInternal": false, - "x": 522.714533443346, - "y": 251.59699999999995 + "x": 522.71453, + "y": 251.597 }, { "body": null, "index": 4, "isInternal": false, - "x": 537.4075334433461, - "y": 221.08599999999996 + "x": 537.40753, + "y": 221.086 }, { "body": null, "index": 5, "isInternal": false, - "x": 570.4235334433461, - "y": 213.54999999999995 + "x": 570.42353, + "y": 213.55 }, { "body": null, "index": 6, "isInternal": false, - "x": 596.8995334433461, - "y": 234.66499999999996 + "x": 596.89953, + "y": 234.665 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1687.7661798887366, + "area": 1687.76618, "axes": { "#": 1315 }, @@ -11688,13 +11688,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1980.3012000583947, - "inverseInertia": 0.0005049736878261308, - "inverseMass": 0.5924991340127004, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "inverseMass": 0.5925, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6877661798887367, + "mass": 1.68777, "motion": 0, "parent": null, "position": { @@ -11750,12 +11750,12 @@ } }, { - "x": 632.4098215091898, - "y": 261.0789351851852 + "x": 632.40982, + "y": 261.07894 }, { - "x": 596.8995334433461, - "y": 213.54999999999995 + "x": 596.89953, + "y": 213.55 }, { "category": 1, @@ -11772,16 +11772,16 @@ "y": 0 }, { - "x": 614.6546774762679, - "y": 237.31446759259256 + "x": 614.65468, + "y": 237.31447 }, { "x": 0, "y": 0 }, { - "x": 614.6546774762679, - "y": 237.31446759259256 + "x": 614.65468, + "y": 237.31447 }, { "fillStyle": "#556270", @@ -11818,36 +11818,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 596.8995334433461, - "y": 213.54999999999995 + "x": 596.89953, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 632.4098215091898, - "y": 213.54999999999995 + "x": 632.40982, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 632.4098215091898, - "y": 261.0789351851852 + "x": 632.40982, + "y": 261.07894 }, { "body": null, "index": 3, "isInternal": false, - "x": 596.8995334433461, - "y": 261.0789351851852 + "x": 596.89953, + "y": 261.07894 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 888.874596, + "area": 888.8746, "axes": { "#": 1336 }, @@ -11868,13 +11868,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 526.7320316094421, - "inverseInertia": 0.0018984985533241191, - "inverseMass": 1.125018089728374, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "inverseMass": 1.12502, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.888874596, + "mass": 0.88887, "motion": 0, "parent": null, "position": { @@ -11930,12 +11930,12 @@ } }, { - "x": 662.2238215091899, - "y": 243.36399999999998 + "x": 662.22382, + "y": 243.364 }, { - "x": 632.4098215091898, - "y": 213.54999999999995 + "x": 632.40982, + "y": 213.55 }, { "category": 1, @@ -11952,16 +11952,16 @@ "y": 0 }, { - "x": 647.3168215091898, - "y": 228.45699999999997 + "x": 647.31682, + "y": 228.457 }, { "x": 0, "y": 0 }, { - "x": 647.3168215091898, - "y": 228.45699999999997 + "x": 647.31682, + "y": 228.457 }, { "fillStyle": "#FF6B6B", @@ -11998,36 +11998,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 662.2238215091899, - "y": 243.36399999999998 + "x": 662.22382, + "y": 243.364 }, { "body": null, "index": 1, "isInternal": false, - "x": 632.4098215091898, - "y": 243.36399999999998 + "x": 632.40982, + "y": 243.364 }, { "body": null, "index": 2, "isInternal": false, - "x": 632.4098215091898, - "y": 213.54999999999995 + "x": 632.40982, + "y": 213.55 }, { "body": null, "index": 3, "isInternal": false, - "x": 662.2238215091899, - "y": 213.54999999999995 + "x": 662.22382, + "y": 213.55 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1624.121534624581, + "area": 1624.12153, "axes": { "#": 1357 }, @@ -12048,13 +12048,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1766.6812602831346, - "inverseInertia": 0.0005660330601116675, - "inverseMass": 0.6157174686013581, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "inverseMass": 0.61572, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.624121534624581, + "mass": 1.62412, "motion": 0, "parent": null, "position": { @@ -12110,12 +12110,12 @@ } }, { - "x": 704.5130447602186, - "y": 251.95509259259256 + "x": 704.51304, + "y": 251.95509 }, { - "x": 662.2238215091899, - "y": 213.54999999999995 + "x": 662.22382, + "y": 213.55 }, { "category": 1, @@ -12132,16 +12132,16 @@ "y": 0 }, { - "x": 683.3684331347042, - "y": 232.75254629629626 + "x": 683.36843, + "y": 232.75255 }, { "x": 0, "y": 0 }, { - "x": 683.3684331347042, - "y": 232.75254629629626 + "x": 683.36843, + "y": 232.75255 }, { "fillStyle": "#C7F464", @@ -12178,36 +12178,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 662.2238215091899, - "y": 213.54999999999995 + "x": 662.22382, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 704.5130447602186, - "y": 213.54999999999995 + "x": 704.51304, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 704.5130447602186, - "y": 251.95509259259256 + "x": 704.51304, + "y": 251.95509 }, { "body": null, "index": 3, "isInternal": false, - "x": 662.2238215091899, - "y": 251.95509259259256 + "x": 662.22382, + "y": 251.95509 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 925.4335858447538, + "area": 925.43359, "axes": { "#": 1378 }, @@ -12228,13 +12228,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 658.9066011822378, - "inverseInertia": 0.001517665778739746, - "inverseMass": 1.080574570985751, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "inverseMass": 1.08057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9254335858447538, + "mass": 0.92543, "motion": 0, "parent": null, "position": { @@ -12290,12 +12290,12 @@ } }, { - "x": 744.5266764474615, - "y": 236.67795781893 + "x": 744.52668, + "y": 236.67796 }, { - "x": 704.5130447602186, - "y": 213.54999999999995 + "x": 704.51304, + "y": 213.55 }, { "category": 1, @@ -12312,16 +12312,16 @@ "y": 0 }, { - "x": 724.51986060384, - "y": 225.11397890946498 + "x": 724.51986, + "y": 225.11398 }, { "x": 0, "y": 0 }, { - "x": 724.51986060384, - "y": 225.11397890946498 + "x": 724.51986, + "y": 225.11398 }, { "fillStyle": "#C44D58", @@ -12358,36 +12358,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 704.5130447602186, - "y": 213.54999999999995 + "x": 704.51304, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 744.5266764474615, - "y": 213.54999999999995 + "x": 744.52668, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 744.5266764474615, - "y": 236.67795781893 + "x": 744.52668, + "y": 236.67796 }, { "body": null, "index": 3, "isInternal": false, - "x": 704.5130447602186, - "y": 236.67795781893 + "x": 704.51304, + "y": 236.67796 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5929.347511999999, + "area": 5929.34751, "axes": { "#": 1399 }, @@ -12409,13 +12409,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 22382.17146584697, - "inverseInertia": 0.00004467841744157413, - "inverseMass": 0.1686526212161066, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "inverseMass": 0.16865, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.929347512, + "mass": 5.92935, "motion": 0, "parent": null, "position": { @@ -12488,52 +12488,52 @@ } ], { - "x": -0.9709364586220396, - "y": -0.23933740476259086 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.885455576089853, - "y": -0.4647240286141727 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7484830648246673, - "y": -0.6631539049652597 + "x": -0.74848, + "y": -0.66315 }, { - "x": -0.5681125845628812, - "y": -0.8229508437697133 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.3546198602355774, - "y": -0.9350105639651882 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12047891877198527, - "y": -0.9927158859067047 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12047891877198527, - "y": -0.9927158859067047 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.3546198602355774, - "y": -0.9350105639651882 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.5681125845628812, - "y": -0.8229508437697133 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484830648246673, - "y": -0.6631539049652597 + "x": 0.74848, + "y": -0.66315 }, { - "x": 0.885455576089853, - "y": -0.4647240286141727 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709364586220396, - "y": -0.23933740476259086 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -12548,12 +12548,12 @@ } }, { - "x": 831.2026764474614, - "y": 300.86199999999997 + "x": 831.20268, + "y": 300.862 }, { - "x": 744.5266764474615, - "y": 213.54999999999995 + "x": 744.52668, + "y": 213.55 }, { "category": 1, @@ -12570,16 +12570,16 @@ "y": 0 }, { - "x": 787.8646764474614, - "y": 257.20599999999996 + "x": 787.86468, + "y": 257.206 }, { "x": 0, "y": 0 }, { - "x": 787.8646764474614, - "y": 257.20599999999996 + "x": 787.86468, + "y": 257.206 }, { "fillStyle": "#C7F464", @@ -12682,190 +12682,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 831.2026764474614, - "y": 262.46799999999996 + "x": 831.20268, + "y": 262.468 }, { "body": null, "index": 1, "isInternal": false, - "x": 828.6836764474614, - "y": 272.68699999999995 + "x": 828.68368, + "y": 272.687 }, { "body": null, "index": 2, "isInternal": false, - "x": 823.7926764474614, + "x": 823.79268, "y": 282.006 }, { "body": null, "index": 3, "isInternal": false, - "x": 816.8136764474614, - "y": 289.8829999999999 + "x": 816.81368, + "y": 289.883 }, { "body": null, "index": 4, "isInternal": false, - "x": 808.1526764474614, - "y": 295.86199999999997 + "x": 808.15268, + "y": 295.862 }, { "body": null, "index": 5, "isInternal": false, - "x": 798.3126764474614, - "y": 299.59399999999994 + "x": 798.31268, + "y": 299.594 }, { "body": null, "index": 6, "isInternal": false, - "x": 787.8646764474614, - "y": 300.86199999999997 + "x": 787.86468, + "y": 300.862 }, { "body": null, "index": 7, "isInternal": false, - "x": 777.4166764474614, - "y": 299.59399999999994 + "x": 777.41668, + "y": 299.594 }, { "body": null, "index": 8, "isInternal": false, - "x": 767.5766764474614, - "y": 295.86199999999997 + "x": 767.57668, + "y": 295.862 }, { "body": null, "index": 9, "isInternal": false, - "x": 758.9156764474615, - "y": 289.8829999999999 + "x": 758.91568, + "y": 289.883 }, { "body": null, "index": 10, "isInternal": false, - "x": 751.9366764474614, + "x": 751.93668, "y": 282.006 }, { "body": null, "index": 11, "isInternal": false, - "x": 747.0456764474615, - "y": 272.68699999999995 + "x": 747.04568, + "y": 272.687 }, { "body": null, "index": 12, "isInternal": false, - "x": 744.5266764474615, - "y": 262.46799999999996 + "x": 744.52668, + "y": 262.468 }, { "body": null, "index": 13, "isInternal": false, - "x": 744.5266764474615, - "y": 251.94399999999996 + "x": 744.52668, + "y": 251.944 }, { "body": null, "index": 14, "isInternal": false, - "x": 747.0456764474615, - "y": 241.72499999999997 + "x": 747.04568, + "y": 241.725 }, { "body": null, "index": 15, "isInternal": false, - "x": 751.9366764474614, - "y": 232.40599999999995 + "x": 751.93668, + "y": 232.406 }, { "body": null, "index": 16, "isInternal": false, - "x": 758.9156764474615, - "y": 224.52899999999997 + "x": 758.91568, + "y": 224.529 }, { "body": null, "index": 17, "isInternal": false, - "x": 767.5766764474614, - "y": 218.54999999999995 + "x": 767.57668, + "y": 218.55 }, { "body": null, "index": 18, "isInternal": false, - "x": 777.4166764474614, - "y": 214.81799999999996 + "x": 777.41668, + "y": 214.818 }, { "body": null, "index": 19, "isInternal": false, - "x": 787.8646764474614, - "y": 213.54999999999995 + "x": 787.86468, + "y": 213.55 }, { "body": null, "index": 20, "isInternal": false, - "x": 798.3126764474614, - "y": 214.81799999999996 + "x": 798.31268, + "y": 214.818 }, { "body": null, "index": 21, "isInternal": false, - "x": 808.1526764474614, - "y": 218.54999999999995 + "x": 808.15268, + "y": 218.55 }, { "body": null, "index": 22, "isInternal": false, - "x": 816.8136764474614, - "y": 224.52899999999997 + "x": 816.81368, + "y": 224.529 }, { "body": null, "index": 23, "isInternal": false, - "x": 823.7926764474614, - "y": 232.40599999999995 + "x": 823.79268, + "y": 232.406 }, { "body": null, "index": 24, "isInternal": false, - "x": 828.6836764474614, - "y": 241.72499999999997 + "x": 828.68368, + "y": 241.725 }, { "body": null, "index": 25, "isInternal": false, - "x": 831.2026764474614, - "y": 251.94399999999996 + "x": 831.20268, + "y": 251.944 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2550.166396822507, + "area": 2550.1664, "axes": { "#": 1453 }, @@ -12886,13 +12886,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 10939.165130883785, - "inverseInertia": 0.00009141465441240754, - "inverseMass": 0.392131274745834, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "inverseMass": 0.39213, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5501663968225072, + "mass": 2.55017, "motion": 0, "parent": null, "position": { @@ -12948,12 +12948,12 @@ } }, { - "x": 942.2964693144023, - "y": 236.50507544581615 + "x": 942.29647, + "y": 236.50508 }, { - "x": 831.2026764474614, - "y": 213.54999999999995 + "x": 831.20268, + "y": 213.55 }, { "category": 1, @@ -12970,16 +12970,16 @@ "y": 0 }, { - "x": 886.7495728809319, - "y": 225.02753772290805 + "x": 886.74957, + "y": 225.02754 }, { "x": 0, "y": 0 }, { - "x": 886.7495728809319, - "y": 225.02753772290805 + "x": 886.74957, + "y": 225.02754 }, { "fillStyle": "#FF6B6B", @@ -13016,43 +13016,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 831.2026764474614, - "y": 213.54999999999995 + "x": 831.20268, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 942.2964693144023, - "y": 213.54999999999995 + "x": 942.29647, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 942.2964693144023, - "y": 236.50507544581615 + "x": 942.29647, + "y": 236.50508 }, { "body": null, "index": 3, "isInternal": false, - "x": 831.2026764474614, - "y": 236.50507544581615 + "x": 831.20268, + "y": 236.50508 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5174.381305999998, + "area": 5174.38131, "axes": { "#": 1474 }, "bounds": { "#": 1488 }, - "circleRadius": 40.782407407407405, + "circleRadius": 40.78241, "collisionFilter": { "#": 1491 }, @@ -13067,13 +13067,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17045.3242729355, - "inverseInertia": 0.000058667115039154525, - "inverseMass": 0.1932598200369272, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "inverseMass": 0.19326, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.174381305999998, + "mass": 5.17438, "motion": 0, "parent": null, "position": { @@ -13146,52 +13146,52 @@ } ], { - "x": -0.9709389264723081, - "y": -0.23932739304309056 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854449940324717, - "y": -0.46474419043473386 + "x": -0.88544, + "y": -0.46474 }, { - "x": -0.748536249103088, - "y": -0.6630938725238529 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680775563568219, - "y": -0.8229750239002773 + "x": -0.56808, + "y": -0.82298 }, { - "x": -0.35456531449559353, - "y": -0.9350312496150279 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12052880622175748, - "y": -0.9927098301471373 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052880622175748, - "y": -0.9927098301471373 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35456531449559353, - "y": -0.9350312496150279 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680775563568219, - "y": -0.8229750239002773 + "x": 0.56808, + "y": -0.82298 }, { - "x": 0.748536249103088, - "y": -0.6630938725238529 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854449940324717, - "y": -0.46474419043473386 + "x": 0.88544, + "y": -0.46474 }, { - "x": 0.9709389264723081, - "y": -0.23932739304309056 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -13206,12 +13206,12 @@ } }, { - "x": 1023.2664693144023, - "y": 295.1139999999999 + "x": 1023.26647, + "y": 295.114 }, { - "x": 942.2964693144023, - "y": 213.54999999999995 + "x": 942.29647, + "y": 213.55 }, { "category": 1, @@ -13228,16 +13228,16 @@ "y": 0 }, { - "x": 982.7814693144023, - "y": 254.33199999999994 + "x": 982.78147, + "y": 254.332 }, { "x": 0, "y": 0 }, { - "x": 982.7814693144023, - "y": 254.33199999999994 + "x": 982.78147, + "y": 254.332 }, { "fillStyle": "#C7F464", @@ -13340,190 +13340,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1023.2664693144023, - "y": 259.24799999999993 + "x": 1023.26647, + "y": 259.248 }, { "body": null, "index": 1, "isInternal": false, - "x": 1020.9134693144023, - "y": 268.7939999999999 + "x": 1020.91347, + "y": 268.794 }, { "body": null, "index": 2, "isInternal": false, - "x": 1016.3444693144023, - "y": 277.4989999999999 + "x": 1016.34447, + "y": 277.499 }, { "body": null, "index": 3, "isInternal": false, - "x": 1009.8254693144023, - "y": 284.85799999999995 + "x": 1009.82547, + "y": 284.858 }, { "body": null, "index": 4, "isInternal": false, - "x": 1001.7344693144023, - "y": 290.4429999999999 + "x": 1001.73447, + "y": 290.443 }, { "body": null, "index": 5, "isInternal": false, - "x": 992.5414693144023, + "x": 992.54147, "y": 293.929 }, { "body": null, "index": 6, "isInternal": false, - "x": 982.7814693144023, - "y": 295.1139999999999 + "x": 982.78147, + "y": 295.114 }, { "body": null, "index": 7, "isInternal": false, - "x": 973.0214693144023, + "x": 973.02147, "y": 293.929 }, { "body": null, "index": 8, "isInternal": false, - "x": 963.8284693144024, - "y": 290.4429999999999 + "x": 963.82847, + "y": 290.443 }, { "body": null, "index": 9, "isInternal": false, - "x": 955.7374693144023, - "y": 284.85799999999995 + "x": 955.73747, + "y": 284.858 }, { "body": null, "index": 10, "isInternal": false, - "x": 949.2184693144023, - "y": 277.4989999999999 + "x": 949.21847, + "y": 277.499 }, { "body": null, "index": 11, "isInternal": false, - "x": 944.6494693144024, - "y": 268.7939999999999 + "x": 944.64947, + "y": 268.794 }, { "body": null, "index": 12, "isInternal": false, - "x": 942.2964693144023, - "y": 259.24799999999993 + "x": 942.29647, + "y": 259.248 }, { "body": null, "index": 13, "isInternal": false, - "x": 942.2964693144023, - "y": 249.41599999999994 + "x": 942.29647, + "y": 249.416 }, { "body": null, "index": 14, "isInternal": false, - "x": 944.6494693144024, - "y": 239.86999999999995 + "x": 944.64947, + "y": 239.87 }, { "body": null, "index": 15, "isInternal": false, - "x": 949.2184693144023, - "y": 231.16499999999994 + "x": 949.21847, + "y": 231.165 }, { "body": null, "index": 16, "isInternal": false, - "x": 955.7374693144023, - "y": 223.80599999999993 + "x": 955.73747, + "y": 223.806 }, { "body": null, "index": 17, "isInternal": false, - "x": 963.8284693144024, - "y": 218.22099999999995 + "x": 963.82847, + "y": 218.221 }, { "body": null, "index": 18, "isInternal": false, - "x": 973.0214693144023, - "y": 214.73499999999993 + "x": 973.02147, + "y": 214.735 }, { "body": null, "index": 19, "isInternal": false, - "x": 982.7814693144023, - "y": 213.54999999999995 + "x": 982.78147, + "y": 213.55 }, { "body": null, "index": 20, "isInternal": false, - "x": 992.5414693144023, - "y": 214.73499999999993 + "x": 992.54147, + "y": 214.735 }, { "body": null, "index": 21, "isInternal": false, - "x": 1001.7344693144023, - "y": 218.22099999999995 + "x": 1001.73447, + "y": 218.221 }, { "body": null, "index": 22, "isInternal": false, - "x": 1009.8254693144023, - "y": 223.80599999999993 + "x": 1009.82547, + "y": 223.806 }, { "body": null, "index": 23, "isInternal": false, - "x": 1016.3444693144023, - "y": 231.16499999999994 + "x": 1016.34447, + "y": 231.165 }, { "body": null, "index": 24, "isInternal": false, - "x": 1020.9134693144023, - "y": 239.86999999999995 + "x": 1020.91347, + "y": 239.87 }, { "body": null, "index": 25, "isInternal": false, - "x": 1023.2664693144023, - "y": 249.41599999999994 + "x": 1023.26647, + "y": 249.416 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1308.2034644955884, + "area": 1308.20346, "axes": { "#": 1528 }, @@ -13544,13 +13544,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1149.8579054087725, - "inverseInertia": 0.0008696726745940854, - "inverseMass": 0.7644070873834413, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "inverseMass": 0.76441, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3082034644955884, + "mass": 1.3082, "motion": 0, "parent": null, "position": { @@ -13606,12 +13606,12 @@ } }, { - "x": 1061.7685269275707, - "y": 247.527494855967 + "x": 1061.76853, + "y": 247.52749 }, { - "x": 1023.2664693144022, - "y": 213.54999999999993 + "x": 1023.26647, + "y": 213.55 }, { "category": 1, @@ -13628,16 +13628,16 @@ "y": 0 }, { - "x": 1042.5174981209866, - "y": 230.53874742798348 + "x": 1042.5175, + "y": 230.53875 }, { "x": 0, "y": 0 }, { - "x": 1042.5174981209866, - "y": 230.53874742798348 + "x": 1042.5175, + "y": 230.53875 }, { "fillStyle": "#FF6B6B", @@ -13674,36 +13674,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1023.2664693144022, - "y": 213.54999999999993 + "x": 1023.26647, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 1061.7685269275707, - "y": 213.54999999999993 + "x": 1061.76853, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 1061.7685269275707, - "y": 247.527494855967 + "x": 1061.76853, + "y": 247.52749 }, { "body": null, "index": 3, "isInternal": false, - "x": 1023.2664693144022, - "y": 247.527494855967 + "x": 1023.26647, + "y": 247.52749 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3803.7767479999993, + "area": 3803.77675, "axes": { "#": 1549 }, @@ -13724,13 +13724,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 9247.768748441516, - "inverseInertia": 0.00010813419184692798, - "inverseMass": 0.2628966067805618, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "inverseMass": 0.2629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.8037767479999993, + "mass": 3.80378, "motion": 0, "parent": null, "position": { @@ -13785,28 +13785,28 @@ } ], { - "x": 0.623488113338336, - "y": 0.7818328290151305 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22254280104331042, - "y": 0.9749229209039029 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009618424321717, - "y": 0.43389832735472317 + "x": -0.90096, + "y": 0.4339 }, { - "x": -0.9009618424321717, - "y": -0.43389832735472317 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.22254280104331042, - "y": -0.9749229209039029 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.623488113338336, - "y": -0.7818328290151305 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -13821,12 +13821,12 @@ } }, { - "x": 1130.797166256119, - "y": 286.24799999999993 + "x": 1130.79717, + "y": 286.248 }, { - "x": 1059.922166256119, - "y": 213.54999999999995 + "x": 1059.92217, + "y": 213.55 }, { "category": 1, @@ -13843,16 +13843,16 @@ "y": 0 }, { - "x": 1097.2060269275707, - "y": 249.89899999999994 + "x": 1097.20603, + "y": 249.899 }, { "x": 0, "y": 0 }, { - "x": 1097.2060269275707, - "y": 249.89899999999994 + "x": 1097.20603, + "y": 249.899 }, { "fillStyle": "#FF6B6B", @@ -13898,57 +13898,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 1130.797166256119, - "y": 266.0759999999999 + "x": 1130.79717, + "y": 266.076 }, { "body": null, "index": 1, "isInternal": false, - "x": 1105.5021662561192, - "y": 286.24799999999993 + "x": 1105.50217, + "y": 286.248 }, { "body": null, "index": 2, "isInternal": false, - "x": 1073.960166256119, - "y": 279.04799999999994 + "x": 1073.96017, + "y": 279.048 }, { "body": null, "index": 3, "isInternal": false, - "x": 1059.922166256119, - "y": 249.89899999999994 + "x": 1059.92217, + "y": 249.899 }, { "body": null, "index": 4, "isInternal": false, - "x": 1073.960166256119, - "y": 220.74999999999994 + "x": 1073.96017, + "y": 220.75 }, { "body": null, "index": 5, "isInternal": false, - "x": 1105.5021662561192, - "y": 213.54999999999995 + "x": 1105.50217, + "y": 213.55 }, { "body": null, "index": 6, "isInternal": false, - "x": 1130.797166256119, - "y": 233.72199999999995 + "x": 1130.79717, + "y": 233.722 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1519.5385669833, + "area": 1519.53857, "axes": { "#": 1578 }, @@ -13969,13 +13969,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1623.6987742797708, - "inverseInertia": 0.0006158777821604092, - "inverseMass": 0.6580945174595165, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "inverseMass": 0.65809, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5195385669833, + "mass": 1.51954, "motion": 0, "parent": null, "position": { @@ -14031,12 +14031,12 @@ } }, { - "x": 1163.8559368322508, - "y": 259.51476337448554 + "x": 1163.85594, + "y": 259.51476 }, { - "x": 1130.797166256119, - "y": 213.54999999999995 + "x": 1130.79717, + "y": 213.55 }, { "category": 1, @@ -14053,16 +14053,16 @@ "y": 0 }, { - "x": 1147.326551544185, - "y": 236.53238168724275 + "x": 1147.32655, + "y": 236.53238 }, { "x": 0, "y": 0 }, { - "x": 1147.326551544185, - "y": 236.53238168724275 + "x": 1147.32655, + "y": 236.53238 }, { "fillStyle": "#556270", @@ -14099,36 +14099,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1130.797166256119, - "y": 213.54999999999995 + "x": 1130.79717, + "y": 213.55 }, { "body": null, "index": 1, "isInternal": false, - "x": 1163.8559368322508, - "y": 213.54999999999995 + "x": 1163.85594, + "y": 213.55 }, { "body": null, "index": 2, "isInternal": false, - "x": 1163.8559368322508, - "y": 259.51476337448554 + "x": 1163.85594, + "y": 259.51476 }, { "body": null, "index": 3, "isInternal": false, - "x": 1130.797166256119, - "y": 259.51476337448554 + "x": 1130.79717, + "y": 259.51476 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3306.4800040000005, + "area": 3306.48, "axes": { "#": 1599 }, @@ -14149,13 +14149,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 7288.540011234562, - "inverseInertia": 0.00013720168901571494, - "inverseMass": 0.302436427496992, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "inverseMass": 0.30244, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.3064800040000004, + "mass": 3.30648, "motion": 0, "parent": null, "position": { @@ -14211,12 +14211,12 @@ } }, { - "x": 1221.3579368322507, - "y": 271.05199999999996 + "x": 1221.35794, + "y": 271.052 }, { - "x": 1163.8559368322508, - "y": 213.54999999999995 + "x": 1163.85594, + "y": 213.55 }, { "category": 1, @@ -14233,16 +14233,16 @@ "y": 0 }, { - "x": 1192.6069368322508, - "y": 242.30099999999996 + "x": 1192.60694, + "y": 242.301 }, { "x": 0, "y": 0 }, { - "x": 1192.6069368322508, - "y": 242.30099999999996 + "x": 1192.60694, + "y": 242.301 }, { "fillStyle": "#C7F464", @@ -14279,29 +14279,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 1221.3579368322507, - "y": 271.05199999999996 + "x": 1221.35794, + "y": 271.052 }, { "body": null, "index": 1, "isInternal": false, - "x": 1163.8559368322508, - "y": 271.05199999999996 + "x": 1163.85594, + "y": 271.052 }, { "body": null, "index": 2, "isInternal": false, - "x": 1163.8559368322508, - "y": 213.54999999999995 + "x": 1163.85594, + "y": 213.55 }, { "body": null, "index": 3, "isInternal": false, - "x": 1221.3579368322507, - "y": 213.54999999999995 + "x": 1221.35794, + "y": 213.55 }, { "angle": 0, @@ -14329,13 +14329,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 1838.3045471526925, - "inverseInertia": 0.000543979506305893, - "inverseMass": 0.6471132971461107, + "inertia": 1838.30455, + "inverseInertia": 0.00054, + "inverseMass": 0.64711, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.54532445, + "mass": 1.54532, "motion": 0, "parent": null, "position": { @@ -14378,12 +14378,12 @@ } ], { - "x": -0.5000098405967125, - "y": 0.8660197222387318 + "x": -0.50001, + "y": 0.86602 }, { - "x": -0.5000098405967125, - "y": -0.8660197222387318 + "x": -0.50001, + "y": -0.86602 }, { "x": 1, @@ -14398,12 +14398,12 @@ } }, { - "x": 63.11250000000001, - "y": 366.44399999999996 + "x": 63.1125, + "y": 366.444 }, { - "x": 11.377500000000005, - "y": 306.70399999999995 + "x": 11.3775, + "y": 306.704 }, { "category": 1, @@ -14420,16 +14420,16 @@ "y": 0 }, { - "x": 45.86750000000001, - "y": 336.57399999999996 + "x": 45.8675, + "y": 336.574 }, { "x": 0, "y": 0 }, { - "x": 45.86750000000001, - "y": 336.57399999999996 + "x": 45.8675, + "y": 336.574 }, { "fillStyle": "#FF6B6B", @@ -14463,29 +14463,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 63.11250000000001, - "y": 366.44399999999996 + "x": 63.1125, + "y": 366.444 }, { "body": null, "index": 1, "isInternal": false, - "x": 11.377500000000005, - "y": 336.57399999999996 + "x": 11.3775, + "y": 336.574 }, { "body": null, "index": 2, "isInternal": false, - "x": 63.11250000000001, - "y": 306.70399999999995 + "x": 63.1125, + "y": 306.704 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 832.6916065934118, + "area": 832.69161, "axes": { "#": 1641 }, @@ -14506,13 +14506,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 462.4740461527257, - "inverseInertia": 0.0021622835017854466, - "inverseMass": 1.2009247986671274, + "inertia": 462.47405, + "inverseInertia": 0.00216, + "inverseMass": 1.20092, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8326916065934119, + "mass": 0.83269, "motion": 0, "parent": null, "position": { @@ -14568,12 +14568,12 @@ } }, { - "x": 92.42139917695474, - "y": 335.1148796296296 + "x": 92.4214, + "y": 335.11488 }, { - "x": 63.11250000000001, - "y": 306.70399999999995 + "x": 63.1125, + "y": 306.704 }, { "category": 1, @@ -14590,16 +14590,16 @@ "y": 0 }, { - "x": 77.76694958847737, - "y": 320.9094398148148 + "x": 77.76695, + "y": 320.90944 }, { "x": 0, "y": 0 }, { - "x": 77.76694958847737, - "y": 320.9094398148148 + "x": 77.76695, + "y": 320.90944 }, { "fillStyle": "#C44D58", @@ -14636,36 +14636,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 63.11250000000001, - "y": 306.70399999999995 + "x": 63.1125, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 92.42139917695474, - "y": 306.70399999999995 + "x": 92.4214, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 92.42139917695474, - "y": 335.1148796296296 + "x": 92.4214, + "y": 335.11488 }, { "body": null, "index": 3, "isInternal": false, - "x": 63.11250000000001, - "y": 335.1148796296296 + "x": 63.1125, + "y": 335.11488 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 979.5317619999998, + "area": 979.53176, "axes": { "#": 1662 }, @@ -14686,13 +14686,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 621.1930410018283, - "inverseInertia": 0.0016098055419089229, - "inverseMass": 1.0208959410955785, + "inertia": 621.19304, + "inverseInertia": 0.00161, + "inverseMass": 1.0209, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9795317619999999, + "mass": 0.97953, "motion": 0, "parent": null, "position": { @@ -14741,20 +14741,20 @@ } ], { - "x": 0.30903963762764336, - "y": 0.9510491587583552 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090205210332716, - "y": 0.5877803982330935 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090205210332716, - "y": -0.5877803982330935 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30903963762764336, - "y": -0.9510491587583552 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, @@ -14769,12 +14769,12 @@ } }, { - "x": 127.20130264884645, - "y": 345.3119999999999 + "x": 127.2013, + "y": 345.312 }, { - "x": 90.48330264884645, - "y": 306.70399999999995 + "x": 90.4833, + "y": 306.704 }, { "category": 1, @@ -14791,16 +14791,16 @@ "y": 0 }, { - "x": 110.78039917695475, - "y": 326.0079999999999 + "x": 110.7804, + "y": 326.008 }, { "x": 0, "y": 0 }, { - "x": 110.78039917695475, - "y": 326.0079999999999 + "x": 110.7804, + "y": 326.008 }, { "fillStyle": "#4ECDC4", @@ -14840,43 +14840,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 127.20130264884645, - "y": 337.93799999999993 + "x": 127.2013, + "y": 337.938 }, { "body": null, "index": 1, "isInternal": false, - "x": 104.50830264884645, - "y": 345.3119999999999 + "x": 104.5083, + "y": 345.312 }, { "body": null, "index": 2, "isInternal": false, - "x": 90.48330264884645, - "y": 326.0079999999999 + "x": 90.4833, + "y": 326.008 }, { "body": null, "index": 3, "isInternal": false, - "x": 104.50830264884645, - "y": 306.70399999999995 + "x": 104.5083, + "y": 306.704 }, { "body": null, "index": 4, "isInternal": false, - "x": 127.20130264884645, - "y": 314.0779999999999 + "x": 127.2013, + "y": 314.078 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1515.3131811080627, + "area": 1515.31318, "axes": { "#": 1687 }, @@ -14897,13 +14897,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1532.4206796199487, - "inverseInertia": 0.0006525623239749069, - "inverseMass": 0.6599295858224876, + "inertia": 1532.42068, + "inverseInertia": 0.00065, + "inverseMass": 0.65993, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5153131811080627, + "mass": 1.51531, "motion": 0, "parent": null, "position": { @@ -14959,12 +14959,12 @@ } }, { - "x": 167.03913701098637, - "y": 344.741037037037 + "x": 167.03914, + "y": 344.74104 }, { - "x": 127.20130264884645, - "y": 306.70399999999995 + "x": 127.2013, + "y": 306.704 }, { "category": 1, @@ -14981,16 +14981,16 @@ "y": 0 }, { - "x": 147.1202198299164, - "y": 325.7225185185185 + "x": 147.12022, + "y": 325.72252 }, { "x": 0, "y": 0 }, { - "x": 147.1202198299164, - "y": 325.7225185185185 + "x": 147.12022, + "y": 325.72252 }, { "fillStyle": "#4ECDC4", @@ -15027,36 +15027,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 127.20130264884645, - "y": 306.70399999999995 + "x": 127.2013, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 167.03913701098637, - "y": 306.70399999999995 + "x": 167.03914, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.03913701098637, - "y": 344.741037037037 + "x": 167.03914, + "y": 344.74104 }, { "body": null, "index": 3, "isInternal": false, - "x": 127.20130264884645, - "y": 344.741037037037 + "x": 127.2013, + "y": 344.74104 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1347.9278604289448, + "area": 1347.92786, "axes": { "#": 1708 }, @@ -15077,13 +15077,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 1394.5666895178056, - "inverseInertia": 0.000717068611717498, - "inverseMass": 0.7418794650344082, + "inertia": 1394.56669, + "inverseInertia": 0.00072, + "inverseMass": 0.74188, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3479278604289449, + "mass": 1.34793, "motion": 0, "parent": null, "position": { @@ -15139,12 +15139,12 @@ } }, { - "x": 195.01804647600696, - "y": 354.88056893004114 + "x": 195.01805, + "y": 354.88057 }, { - "x": 167.03913701098637, - "y": 306.70399999999995 + "x": 167.03914, + "y": 306.704 }, { "category": 1, @@ -15161,16 +15161,16 @@ "y": 0 }, { - "x": 181.02859174349666, - "y": 330.79228446502054 + "x": 181.02859, + "y": 330.79228 }, { "x": 0, "y": 0 }, { - "x": 181.02859174349666, - "y": 330.79228446502054 + "x": 181.02859, + "y": 330.79228 }, { "fillStyle": "#C44D58", @@ -15207,36 +15207,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 167.03913701098637, - "y": 306.70399999999995 + "x": 167.03914, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.01804647600696, - "y": 306.70399999999995 + "x": 195.01805, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.01804647600696, - "y": 354.88056893004114 + "x": 195.01805, + "y": 354.88057 }, { "body": null, "index": 3, "isInternal": false, - "x": 167.03913701098637, - "y": 354.88056893004114 + "x": 167.03914, + "y": 354.88057 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2285.4053614040354, + "area": 2285.40536, "axes": { "#": 1729 }, @@ -15257,13 +15257,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 3483.877210739159, - "inverseInertia": 0.00028703652267579035, - "inverseMass": 0.43755913803652385, + "inertia": 3483.87721, + "inverseInertia": 0.00029, + "inverseMass": 0.43756, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.2854053614040355, + "mass": 2.28541, "motion": 0, "parent": null, "position": { @@ -15319,12 +15319,12 @@ } }, { - "x": 242.05624092045142, - "y": 355.2901625514403 + "x": 242.05624, + "y": 355.29016 }, { - "x": 195.01804647600696, - "y": 306.70399999999995 + "x": 195.01805, + "y": 306.704 }, { "category": 1, @@ -15341,16 +15341,16 @@ "y": 0 }, { - "x": 218.5371436982292, - "y": 330.9970812757201 + "x": 218.53714, + "y": 330.99708 }, { "x": 0, "y": 0 }, { - "x": 218.5371436982292, - "y": 330.9970812757201 + "x": 218.53714, + "y": 330.99708 }, { "fillStyle": "#C44D58", @@ -15387,29 +15387,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 195.01804647600696, - "y": 306.70399999999995 + "x": 195.01805, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 242.05624092045142, - "y": 306.70399999999995 + "x": 242.05624, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 242.05624092045142, - "y": 355.2901625514403 + "x": 242.05624, + "y": 355.29016 }, { "body": null, "index": 3, "isInternal": false, - "x": 195.01804647600696, - "y": 355.2901625514403 + "x": 195.01805, + "y": 355.29016 }, { "angle": 0, @@ -15437,13 +15437,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 12126.33710521863, - "inverseInertia": 0.0000824651328198393, - "inverseMass": 0.23106275618707614, + "inertia": 12126.33711, + "inverseInertia": 0.00008, + "inverseMass": 0.23106, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.32782858, + "mass": 4.32783, "motion": 0, "parent": null, "position": { @@ -15492,20 +15492,20 @@ } ], { - "x": 0.30902295452491274, - "y": 0.9510545797043899 + "x": 0.30902, + "y": 0.95105 }, { - "x": -0.8090187921715927, - "y": 0.587782777829716 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090187921715927, - "y": -0.587782777829716 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902295452491274, - "y": -0.9510545797043899 + "x": 0.30902, + "y": -0.95105 }, { "x": 1, @@ -15520,12 +15520,12 @@ } }, { - "x": 315.1622882764983, + "x": 315.16229, "y": 387.856 }, { - "x": 237.98228827649834, - "y": 306.70399999999995 + "x": 237.98229, + "y": 306.704 }, { "category": 1, @@ -15542,7 +15542,7 @@ "y": 0 }, { - "x": 280.6462409204514, + "x": 280.64624, "y": 347.28 }, { @@ -15550,7 +15550,7 @@ "y": 0 }, { - "x": 280.6462409204514, + "x": 280.64624, "y": 347.28 }, { @@ -15591,35 +15591,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.1622882764983, - "y": 372.35699999999997 + "x": 315.16229, + "y": 372.357 }, { "body": null, "index": 1, "isInternal": false, - "x": 267.4622882764984, + "x": 267.46229, "y": 387.856 }, { "body": null, "index": 2, "isInternal": false, - "x": 237.98228827649834, + "x": 237.98229, "y": 347.28 }, { "body": null, "index": 3, "isInternal": false, - "x": 267.4622882764984, - "y": 306.70399999999995 + "x": 267.46229, + "y": 306.704 }, { "body": null, "index": 4, "isInternal": false, - "x": 315.1622882764983, + "x": 315.16229, "y": 322.203 }, { @@ -15627,7 +15627,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2032.7292721140495, + "area": 2032.72927, "axes": { "#": 1775 }, @@ -15648,13 +15648,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 6700.374119056197, - "inverseInertia": 0.00014924539767950423, - "inverseMass": 0.49194942667401764, + "inertia": 6700.37412, + "inverseInertia": 0.00015, + "inverseMass": 0.49195, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.0327292721140497, + "mass": 2.03273, "motion": 0, "parent": null, "position": { @@ -15710,12 +15710,12 @@ } }, { - "x": 412.3814240789675, - "y": 327.6127362825788 + "x": 412.38142, + "y": 327.61274 }, { - "x": 315.1622882764983, - "y": 306.70399999999995 + "x": 315.16229, + "y": 306.704 }, { "category": 1, @@ -15732,16 +15732,16 @@ "y": 0 }, { - "x": 363.7718561777329, - "y": 317.1583681412894 + "x": 363.77186, + "y": 317.15837 }, { "x": 0, "y": 0 }, { - "x": 363.7718561777329, - "y": 317.1583681412894 + "x": 363.77186, + "y": 317.15837 }, { "fillStyle": "#C7F464", @@ -15778,36 +15778,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 315.1622882764983, - "y": 306.70399999999995 + "x": 315.16229, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 412.3814240789675, - "y": 306.70399999999995 + "x": 412.38142, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 412.3814240789675, - "y": 327.6127362825788 + "x": 412.38142, + "y": 327.61274 }, { "body": null, "index": 3, "isInternal": false, - "x": 315.1622882764983, - "y": 327.6127362825788 + "x": 315.16229, + "y": 327.61274 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1931.953486546484, + "area": 1931.95349, "axes": { "#": 1796 }, @@ -15828,13 +15828,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 4690.996610130106, - "inverseInertia": 0.00021317431733813697, - "inverseMass": 0.517610805313733, + "inertia": 4690.99661, + "inverseInertia": 0.00021, + "inverseMass": 0.51761, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.9319534865464842, + "mass": 1.93195, "motion": 0, "parent": null, "position": { @@ -15890,12 +15890,12 @@ } }, { - "x": 494.41623203507174, - "y": 330.25441152263375 + "x": 494.41623, + "y": 330.25441 }, { - "x": 412.3814240789675, - "y": 306.70399999999995 + "x": 412.38142, + "y": 306.704 }, { "category": 1, @@ -15912,16 +15912,16 @@ "y": 0 }, { - "x": 453.3988280570196, - "y": 318.47920576131685 + "x": 453.39883, + "y": 318.47921 }, { "x": 0, "y": 0 }, { - "x": 453.3988280570196, - "y": 318.47920576131685 + "x": 453.39883, + "y": 318.47921 }, { "fillStyle": "#C7F464", @@ -15958,36 +15958,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 412.3814240789675, - "y": 306.70399999999995 + "x": 412.38142, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.41623203507174, - "y": 306.70399999999995 + "x": 494.41623, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 494.41623203507174, - "y": 330.25441152263375 + "x": 494.41623, + "y": 330.25441 }, { "body": null, "index": 3, "isInternal": false, - "x": 412.3814240789675, - "y": 330.25441152263375 + "x": 412.38142, + "y": 330.25441 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2376.3179650719107, + "area": 2376.31797, "axes": { "#": 1817 }, @@ -16008,13 +16008,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 3764.591504006761, - "inverseInertia": 0.0002656330703970595, - "inverseMass": 0.42081910531267586, + "inertia": 3764.5915, + "inverseInertia": 0.00027, + "inverseMass": 0.42082, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.3763179650719106, + "mass": 2.37632, "motion": 0, "parent": null, "position": { @@ -16070,12 +16070,12 @@ } }, { - "x": 543.1574871791047, - "y": 355.4577294238683 + "x": 543.15749, + "y": 355.45773 }, { - "x": 494.41623203507174, - "y": 306.70399999999995 + "x": 494.41623, + "y": 306.704 }, { "category": 1, @@ -16092,16 +16092,16 @@ "y": 0 }, { - "x": 518.7868596070882, - "y": 331.0808647119341 + "x": 518.78686, + "y": 331.08086 }, { "x": 0, "y": 0 }, { - "x": 518.7868596070882, - "y": 331.0808647119341 + "x": 518.78686, + "y": 331.08086 }, { "fillStyle": "#C44D58", @@ -16138,43 +16138,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 494.41623203507174, - "y": 306.70399999999995 + "x": 494.41623, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 543.1574871791047, - "y": 306.70399999999995 + "x": 543.15749, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 543.1574871791047, - "y": 355.4577294238683 + "x": 543.15749, + "y": 355.45773 }, { "body": null, "index": 3, "isInternal": false, - "x": 494.41623203507174, - "y": 355.4577294238683 + "x": 494.41623, + "y": 355.45773 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 7163.665109999999, + "area": 7163.66511, "axes": { "#": 1838 }, "bounds": { "#": 1852 }, - "circleRadius": 47.985725308641975, + "circleRadius": 47.98573, "collisionFilter": { "#": 1855 }, @@ -16189,13 +16189,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 32670.739096352663, - "inverseInertia": 0.000030608429060964806, - "inverseMass": 0.13959334846684368, + "inertia": 32670.7391, + "inverseInertia": 0.00003, + "inverseMass": 0.13959, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.163665109999999, + "mass": 7.16367, "motion": 0, "parent": null, "position": { @@ -16268,52 +16268,52 @@ } ], { - "x": -0.9709305552368677, - "y": -0.23936135215908938 + "x": -0.97093, + "y": -0.23936 }, { - "x": -0.8854539309223355, - "y": -0.4647271631981327 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485195270433018, - "y": -0.6631127488103902 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.5680541170604241, - "y": -0.8229912029242489 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.3546073256135543, - "y": -0.9350153178537786 + "x": -0.35461, + "y": -0.93502 }, { - "x": -0.12058693531691794, - "y": -0.9927027707379854 + "x": -0.12059, + "y": -0.9927 }, { - "x": 0.12058693531691794, - "y": -0.9927027707379854 + "x": 0.12059, + "y": -0.9927 }, { - "x": 0.3546073256135543, - "y": -0.9350153178537786 + "x": 0.35461, + "y": -0.93502 }, { - "x": 0.5680541170604241, - "y": -0.8229912029242489 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7485195270433018, - "y": -0.6631127488103902 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854539309223355, - "y": -0.4647271631981327 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709305552368677, - "y": -0.23936135215908938 + "x": 0.97093, + "y": -0.23936 }, { "x": 1, @@ -16328,12 +16328,12 @@ } }, { - "x": 638.4294871791046, - "y": 402.67599999999993 + "x": 638.42949, + "y": 402.676 }, { - "x": 543.1574871791047, - "y": 306.70399999999995 + "x": 543.15749, + "y": 306.704 }, { "category": 1, @@ -16350,16 +16350,16 @@ "y": 0 }, { - "x": 590.7934871791047, - "y": 354.68999999999994 + "x": 590.79349, + "y": 354.69 }, { "x": 0, "y": 0 }, { - "x": 590.7934871791047, - "y": 354.68999999999994 + "x": 590.79349, + "y": 354.69 }, { "fillStyle": "#FF6B6B", @@ -16462,197 +16462,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.4294871791046, - "y": 360.47399999999993 + "x": 638.42949, + "y": 360.474 }, { "body": null, "index": 1, "isInternal": false, - "x": 635.6604871791046, - "y": 371.70599999999996 + "x": 635.66049, + "y": 371.706 }, { "body": null, "index": 2, "isInternal": false, - "x": 630.2844871791046, - "y": 381.94899999999996 + "x": 630.28449, + "y": 381.949 }, { "body": null, "index": 3, "isInternal": false, - "x": 622.6134871791047, - "y": 390.60799999999995 + "x": 622.61349, + "y": 390.608 }, { "body": null, "index": 4, "isInternal": false, - "x": 613.0934871791046, - "y": 397.1789999999999 + "x": 613.09349, + "y": 397.179 }, { "body": null, "index": 5, "isInternal": false, - "x": 602.2774871791047, - "y": 401.28099999999995 + "x": 602.27749, + "y": 401.281 }, { "body": null, "index": 6, "isInternal": false, - "x": 590.7934871791047, - "y": 402.67599999999993 + "x": 590.79349, + "y": 402.676 }, { "body": null, "index": 7, "isInternal": false, - "x": 579.3094871791046, - "y": 401.28099999999995 + "x": 579.30949, + "y": 401.281 }, { "body": null, "index": 8, "isInternal": false, - "x": 568.4934871791047, - "y": 397.1789999999999 + "x": 568.49349, + "y": 397.179 }, { "body": null, "index": 9, "isInternal": false, - "x": 558.9734871791047, - "y": 390.60799999999995 + "x": 558.97349, + "y": 390.608 }, { "body": null, "index": 10, "isInternal": false, - "x": 551.3024871791047, - "y": 381.94899999999996 + "x": 551.30249, + "y": 381.949 }, { "body": null, "index": 11, "isInternal": false, - "x": 545.9264871791047, - "y": 371.70599999999996 + "x": 545.92649, + "y": 371.706 }, { "body": null, "index": 12, "isInternal": false, - "x": 543.1574871791047, - "y": 360.47399999999993 + "x": 543.15749, + "y": 360.474 }, { "body": null, "index": 13, "isInternal": false, - "x": 543.1574871791047, - "y": 348.90599999999995 + "x": 543.15749, + "y": 348.906 }, { "body": null, "index": 14, "isInternal": false, - "x": 545.9264871791047, - "y": 337.6739999999999 + "x": 545.92649, + "y": 337.674 }, { "body": null, "index": 15, "isInternal": false, - "x": 551.3024871791047, - "y": 327.4309999999999 + "x": 551.30249, + "y": 327.431 }, { "body": null, "index": 16, "isInternal": false, - "x": 558.9734871791047, - "y": 318.77199999999993 + "x": 558.97349, + "y": 318.772 }, { "body": null, "index": 17, "isInternal": false, - "x": 568.4934871791047, - "y": 312.20099999999996 + "x": 568.49349, + "y": 312.201 }, { "body": null, "index": 18, "isInternal": false, - "x": 579.3094871791046, - "y": 308.09899999999993 + "x": 579.30949, + "y": 308.099 }, { "body": null, "index": 19, "isInternal": false, - "x": 590.7934871791047, - "y": 306.70399999999995 + "x": 590.79349, + "y": 306.704 }, { "body": null, "index": 20, "isInternal": false, - "x": 602.2774871791047, - "y": 308.09899999999993 + "x": 602.27749, + "y": 308.099 }, { "body": null, "index": 21, "isInternal": false, - "x": 613.0934871791046, - "y": 312.20099999999996 + "x": 613.09349, + "y": 312.201 }, { "body": null, "index": 22, "isInternal": false, - "x": 622.6134871791047, - "y": 318.77199999999993 + "x": 622.61349, + "y": 318.772 }, { "body": null, "index": 23, "isInternal": false, - "x": 630.2844871791046, - "y": 327.4309999999999 + "x": 630.28449, + "y": 327.431 }, { "body": null, "index": 24, "isInternal": false, - "x": 635.6604871791046, - "y": 337.6739999999999 + "x": 635.66049, + "y": 337.674 }, { "body": null, "index": 25, "isInternal": false, - "x": 638.4294871791046, - "y": 348.90599999999995 + "x": 638.42949, + "y": 348.906 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6059.0497460000015, + "area": 6059.04975, "axes": { "#": 1892 }, "bounds": { "#": 1906 }, - "circleRadius": 44.13130144032922, + "circleRadius": 44.1313, "collisionFilter": { "#": 1909 }, @@ -16667,13 +16667,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 23372.08438446153, - "inverseInertia": 0.00004278608546633651, - "inverseMass": 0.16504238154838874, + "inertia": 23372.08438, + "inverseInertia": 0.00004, + "inverseMass": 0.16504, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.059049746000001, + "mass": 6.05905, "motion": 0, "parent": null, "position": { @@ -16746,52 +16746,52 @@ } ], { - "x": -0.9709225149895018, - "y": -0.23939396376362687 + "x": -0.97092, + "y": -0.23939 }, { - "x": -0.8854559247382039, - "y": -0.46472336432119704 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7485335294885549, - "y": -0.663096942559236 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680558224819049, - "y": -0.8229900257867082 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.3546230668670807, - "y": -0.9350093477852434 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.1205054107991527, - "y": -0.9927126703976974 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.1205054107991527, - "y": -0.9927126703976974 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546230668670807, - "y": -0.9350093477852434 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.5680558224819049, - "y": -0.8229900257867082 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7485335294885549, - "y": -0.663096942559236 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854559247382039, - "y": -0.46472336432119704 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709225149895018, - "y": -0.23939396376362687 + "x": 0.97092, + "y": -0.23939 }, { "x": 1, @@ -16806,12 +16806,12 @@ } }, { - "x": 726.0494871791045, - "y": 394.9659999999999 + "x": 726.04949, + "y": 394.966 }, { - "x": 638.4294871791046, - "y": 306.70399999999995 + "x": 638.42949, + "y": 306.704 }, { "category": 1, @@ -16828,16 +16828,16 @@ "y": 0 }, { - "x": 682.2394871791046, - "y": 350.8349999999999 + "x": 682.23949, + "y": 350.835 }, { "x": 0, "y": 0 }, { - "x": 682.2394871791046, - "y": 350.8349999999999 + "x": 682.23949, + "y": 350.835 }, { "fillStyle": "#FF6B6B", @@ -16940,183 +16940,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 726.0494871791045, - "y": 356.15399999999994 + "x": 726.04949, + "y": 356.154 }, { "body": null, "index": 1, "isInternal": false, - "x": 723.5024871791046, - "y": 366.4839999999999 + "x": 723.50249, + "y": 366.484 }, { "body": null, "index": 2, "isInternal": false, - "x": 718.5584871791045, - "y": 375.90399999999994 + "x": 718.55849, + "y": 375.904 }, { "body": null, "index": 3, "isInternal": false, - "x": 711.5034871791046, - "y": 383.86799999999994 + "x": 711.50349, + "y": 383.868 }, { "body": null, "index": 4, "isInternal": false, - "x": 702.7484871791046, - "y": 389.91099999999994 + "x": 702.74849, + "y": 389.911 }, { "body": null, "index": 5, "isInternal": false, - "x": 692.8004871791046, - "y": 393.6839999999999 + "x": 692.80049, + "y": 393.684 }, { "body": null, "index": 6, "isInternal": false, - "x": 682.2394871791046, - "y": 394.9659999999999 + "x": 682.23949, + "y": 394.966 }, { "body": null, "index": 7, "isInternal": false, - "x": 671.6784871791045, - "y": 393.6839999999999 + "x": 671.67849, + "y": 393.684 }, { "body": null, "index": 8, "isInternal": false, - "x": 661.7304871791046, - "y": 389.91099999999994 + "x": 661.73049, + "y": 389.911 }, { "body": null, "index": 9, "isInternal": false, - "x": 652.9754871791046, - "y": 383.86799999999994 + "x": 652.97549, + "y": 383.868 }, { "body": null, "index": 10, "isInternal": false, - "x": 645.9204871791046, - "y": 375.90399999999994 + "x": 645.92049, + "y": 375.904 }, { "body": null, "index": 11, "isInternal": false, - "x": 640.9764871791045, - "y": 366.4839999999999 + "x": 640.97649, + "y": 366.484 }, { "body": null, "index": 12, "isInternal": false, - "x": 638.4294871791046, - "y": 356.15399999999994 + "x": 638.42949, + "y": 356.154 }, { "body": null, "index": 13, "isInternal": false, - "x": 638.4294871791046, - "y": 345.5159999999999 + "x": 638.42949, + "y": 345.516 }, { "body": null, "index": 14, "isInternal": false, - "x": 640.9764871791045, - "y": 335.1859999999999 + "x": 640.97649, + "y": 335.186 }, { "body": null, "index": 15, "isInternal": false, - "x": 645.9204871791046, - "y": 325.7659999999999 + "x": 645.92049, + "y": 325.766 }, { "body": null, "index": 16, "isInternal": false, - "x": 652.9754871791046, - "y": 317.8019999999999 + "x": 652.97549, + "y": 317.802 }, { "body": null, "index": 17, "isInternal": false, - "x": 661.7304871791046, - "y": 311.7589999999999 + "x": 661.73049, + "y": 311.759 }, { "body": null, "index": 18, "isInternal": false, - "x": 671.6784871791045, - "y": 307.98599999999993 + "x": 671.67849, + "y": 307.986 }, { "body": null, "index": 19, "isInternal": false, - "x": 682.2394871791046, - "y": 306.70399999999995 + "x": 682.23949, + "y": 306.704 }, { "body": null, "index": 20, "isInternal": false, - "x": 692.8004871791046, - "y": 307.98599999999993 + "x": 692.80049, + "y": 307.986 }, { "body": null, "index": 21, "isInternal": false, - "x": 702.7484871791046, - "y": 311.7589999999999 + "x": 702.74849, + "y": 311.759 }, { "body": null, "index": 22, "isInternal": false, - "x": 711.5034871791046, - "y": 317.8019999999999 + "x": 711.50349, + "y": 317.802 }, { "body": null, "index": 23, "isInternal": false, - "x": 718.5584871791045, - "y": 325.7659999999999 + "x": 718.55849, + "y": 325.766 }, { "body": null, "index": 24, "isInternal": false, - "x": 723.5024871791046, - "y": 335.1859999999999 + "x": 723.50249, + "y": 335.186 }, { "body": null, "index": 25, "isInternal": false, - "x": 726.0494871791045, - "y": 345.5159999999999 + "x": 726.04949, + "y": 345.516 }, { "angle": 0, @@ -17144,13 +17144,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 917.4702110738278, - "inverseInertia": 0.001089953644194701, - "inverseMass": 0.8400377092927702, + "inertia": 917.47021, + "inverseInertia": 0.00109, + "inverseMass": 0.84004, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.19042275, + "mass": 1.19042, "motion": 0, "parent": null, "position": { @@ -17199,20 +17199,20 @@ } ], { - "x": 0.30904480933870226, - "y": 0.9510474782158908 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090088872494576, - "y": 0.5877964106316017 + "x": -0.80901, + "y": 0.5878 }, { - "x": -0.8090088872494576, - "y": -0.5877964106316017 + "x": -0.80901, + "y": -0.5878 }, { - "x": 0.30904480933870226, - "y": -0.9510474782158908 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, @@ -17227,12 +17227,12 @@ } }, { - "x": 764.3907015176674, - "y": 349.26599999999996 + "x": 764.3907, + "y": 349.266 }, { - "x": 723.9127015176673, - "y": 306.70399999999995 + "x": 723.9127, + "y": 306.704 }, { "category": 1, @@ -17249,16 +17249,16 @@ "y": 0 }, { - "x": 746.2884871791045, - "y": 327.98499999999996 + "x": 746.28849, + "y": 327.985 }, { "x": 0, "y": 0 }, { - "x": 746.2884871791045, - "y": 327.98499999999996 + "x": 746.28849, + "y": 327.985 }, { "fillStyle": "#FF6B6B", @@ -17298,43 +17298,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 764.3907015176674, - "y": 341.13699999999994 + "x": 764.3907, + "y": 341.137 }, { "body": null, "index": 1, "isInternal": false, - "x": 739.3747015176673, - "y": 349.26599999999996 + "x": 739.3747, + "y": 349.266 }, { "body": null, "index": 2, "isInternal": false, - "x": 723.9127015176673, - "y": 327.98499999999996 + "x": 723.9127, + "y": 327.985 }, { "body": null, "index": 3, "isInternal": false, - "x": 739.3747015176673, - "y": 306.70399999999995 + "x": 739.3747, + "y": 306.704 }, { "body": null, "index": 4, "isInternal": false, - "x": 764.3907015176674, - "y": 314.83299999999997 + "x": 764.3907, + "y": 314.833 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2171.016137319483, + "area": 2171.01614, "axes": { "#": 1971 }, @@ -17355,13 +17355,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 3142.3211355327803, - "inverseInertia": 0.0003182360926425332, - "inverseMass": 0.46061380328323276, + "inertia": 3142.32114, + "inverseInertia": 0.00032, + "inverseMass": 0.46061, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.1710161373194827, + "mass": 2.17102, "motion": 0, "parent": null, "position": { @@ -17417,12 +17417,12 @@ } }, { - "x": 811.1835255917415, - "y": 353.1003477366255 + "x": 811.18353, + "y": 353.10035 }, { - "x": 764.3907015176674, - "y": 306.70399999999995 + "x": 764.3907, + "y": 306.704 }, { "category": 1, @@ -17439,16 +17439,16 @@ "y": 0 }, { - "x": 787.7871135547044, - "y": 329.90217386831273 + "x": 787.78711, + "y": 329.90217 }, { "x": 0, "y": 0 }, { - "x": 787.7871135547044, - "y": 329.90217386831273 + "x": 787.78711, + "y": 329.90217 }, { "fillStyle": "#C44D58", @@ -17485,36 +17485,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 764.3907015176674, - "y": 306.70399999999995 + "x": 764.3907, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 811.1835255917415, - "y": 306.70399999999995 + "x": 811.18353, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 811.1835255917415, - "y": 353.1003477366255 + "x": 811.18353, + "y": 353.10035 }, { "body": null, "index": 3, "isInternal": false, - "x": 764.3907015176674, - "y": 353.1003477366255 + "x": 764.3907, + "y": 353.10035 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1119.9948759999997, + "area": 1119.99488, "axes": { "#": 1992 }, @@ -17535,13 +17535,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 965.6287346905493, - "inverseInertia": 0.0010355947001934086, - "inverseMass": 0.8928612276972597, + "inertia": 965.62873, + "inverseInertia": 0.00104, + "inverseMass": 0.89286, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.1199948759999998, + "mass": 1.11999, "motion": 0, "parent": null, "position": { @@ -17584,12 +17584,12 @@ } ], { - "x": -0.5000027244187393, - "y": 0.8660238308348324 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000027244187393, - "y": -0.8660238308348324 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -17604,12 +17604,12 @@ } }, { - "x": 847.8868589250748, - "y": 357.5619999999999 + "x": 847.88686, + "y": 357.562 }, { - "x": 803.8428589250748, - "y": 306.70399999999995 + "x": 803.84286, + "y": 306.704 }, { "category": 1, @@ -17626,16 +17626,16 @@ "y": 0 }, { - "x": 833.2055255917414, - "y": 332.1329999999999 + "x": 833.20553, + "y": 332.133 }, { "x": 0, "y": 0 }, { - "x": 833.2055255917414, - "y": 332.1329999999999 + "x": 833.20553, + "y": 332.133 }, { "fillStyle": "#556270", @@ -17669,29 +17669,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 847.8868589250748, - "y": 357.5619999999999 + "x": 847.88686, + "y": 357.562 }, { "body": null, "index": 1, "isInternal": false, - "x": 803.8428589250748, - "y": 332.1329999999999 + "x": 803.84286, + "y": 332.133 }, { "body": null, "index": 2, "isInternal": false, - "x": 847.8868589250748, - "y": 306.70399999999995 + "x": 847.88686, + "y": 306.704 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5582.974756, + "area": 5582.97476, "axes": { "#": 2013 }, @@ -17712,13 +17712,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 19922.243813825833, - "inverseInertia": 0.000050195149168188086, - "inverseMass": 0.17911598094283054, + "inertia": 19922.24381, + "inverseInertia": 0.00005, + "inverseMass": 0.17912, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.582974756, + "mass": 5.58297, "motion": 0, "parent": null, "position": { @@ -17773,28 +17773,28 @@ } ], { - "x": 0.6234964763295189, - "y": 0.7818261597085848 + "x": 0.6235, + "y": 0.78183 }, { - "x": -0.22252413765652376, - "y": 0.9749271809526189 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009669496877173, - "y": 0.43388772230890577 + "x": -0.90097, + "y": 0.43389 }, { - "x": -0.9009669496877173, - "y": -0.43388772230890577 + "x": -0.90097, + "y": -0.43389 }, { - "x": -0.22252413765652376, - "y": -0.9749271809526189 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234964763295189, - "y": -0.7818261597085848 + "x": 0.6235, + "y": -0.78183 }, { "x": 1, @@ -17809,12 +17809,12 @@ } }, { - "x": 931.5152738853482, - "y": 394.7779999999999 + "x": 931.51527, + "y": 394.778 }, { - "x": 845.6502738853482, - "y": 306.70399999999995 + "x": 845.65027, + "y": 306.704 }, { "category": 1, @@ -17831,16 +17831,16 @@ "y": 0 }, { - "x": 890.8193589250748, - "y": 350.74099999999993 + "x": 890.81936, + "y": 350.741 }, { "x": 0, "y": 0 }, { - "x": 890.8193589250748, - "y": 350.74099999999993 + "x": 890.81936, + "y": 350.741 }, { "fillStyle": "#C7F464", @@ -17886,57 +17886,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 931.5152738853482, - "y": 370.33899999999994 + "x": 931.51527, + "y": 370.339 }, { "body": null, "index": 1, "isInternal": false, - "x": 900.8702738853482, - "y": 394.7779999999999 + "x": 900.87027, + "y": 394.778 }, { "body": null, "index": 2, "isInternal": false, - "x": 862.6572738853482, - "y": 386.0559999999999 + "x": 862.65727, + "y": 386.056 }, { "body": null, "index": 3, "isInternal": false, - "x": 845.6502738853482, - "y": 350.74099999999993 + "x": 845.65027, + "y": 350.741 }, { "body": null, "index": 4, "isInternal": false, - "x": 862.6572738853482, - "y": 315.42599999999993 + "x": 862.65727, + "y": 315.426 }, { "body": null, "index": 5, "isInternal": false, - "x": 900.8702738853482, - "y": 306.70399999999995 + "x": 900.87027, + "y": 306.704 }, { "body": null, "index": 6, "isInternal": false, - "x": 931.5152738853482, - "y": 331.1429999999999 + "x": 931.51527, + "y": 331.143 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1427.950596, + "area": 1427.9506, "axes": { "#": 2042 }, @@ -17957,13 +17957,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 1308.0466332042622, - "inverseInertia": 0.0007644987377478626, - "inverseMass": 0.7003043402210255, + "inertia": 1308.04663, + "inverseInertia": 0.00076, + "inverseMass": 0.7003, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4279505959999998, + "mass": 1.42795, "motion": 0, "parent": null, "position": { @@ -18006,12 +18006,12 @@ } ], { - "x": -0.5000018390041978, - "y": -0.8660243420322666 + "x": -0.5, + "y": -0.86602 }, { - "x": 0.5000018390041978, - "y": -0.8660243420322666 + "x": 0.5, + "y": -0.86602 }, { "x": 1, @@ -18026,12 +18026,12 @@ } }, { - "x": 972.1212738853482, + "x": 972.12127, "y": 353.592 }, { - "x": 931.5152738853482, - "y": 306.70399999999995 + "x": 931.51527, + "y": 306.704 }, { "category": 1, @@ -18048,16 +18048,16 @@ "y": 0 }, { - "x": 951.8182738853482, - "y": 330.14799999999997 + "x": 951.81827, + "y": 330.148 }, { "x": 0, "y": 0 }, { - "x": 951.8182738853482, - "y": 330.14799999999997 + "x": 951.81827, + "y": 330.148 }, { "fillStyle": "#556270", @@ -18100,42 +18100,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 972.1212738853482, - "y": 341.86999999999995 + "x": 972.12127, + "y": 341.87 }, { "body": null, "index": 1, "isInternal": false, - "x": 951.8182738853482, + "x": 951.81827, "y": 353.592 }, { "body": null, "index": 2, "isInternal": false, - "x": 931.5152738853482, - "y": 341.86999999999995 + "x": 931.51527, + "y": 341.87 }, { "body": null, "index": 3, "isInternal": false, - "x": 931.5152738853482, + "x": 931.51527, "y": 318.426 }, { "body": null, "index": 4, "isInternal": false, - "x": 951.8182738853482, - "y": 306.70399999999995 + "x": 951.81827, + "y": 306.704 }, { "body": null, "index": 5, "isInternal": false, - "x": 972.1212738853482, + "x": 972.12127, "y": 318.426 }, { @@ -18143,7 +18143,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1006.2524335919638, + "area": 1006.25243, "axes": { "#": 2066 }, @@ -18164,13 +18164,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 697.1461738741186, - "inverseInertia": 0.0014344194051053728, - "inverseMass": 0.9937864164266964, + "inertia": 697.14617, + "inverseInertia": 0.00143, + "inverseMass": 0.99379, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0062524335919638, + "mass": 1.00625, "motion": 0, "parent": null, "position": { @@ -18226,12 +18226,12 @@ } }, { - "x": 1008.1616545437843, - "y": 334.62413888888887 + "x": 1008.16165, + "y": 334.62414 }, { - "x": 972.1212738853482, - "y": 306.70399999999995 + "x": 972.12127, + "y": 306.704 }, { "category": 1, @@ -18248,16 +18248,16 @@ "y": 0 }, { - "x": 990.1414642145662, - "y": 320.6640694444444 + "x": 990.14146, + "y": 320.66407 }, { "x": 0, "y": 0 }, { - "x": 990.1414642145662, - "y": 320.6640694444444 + "x": 990.14146, + "y": 320.66407 }, { "fillStyle": "#FF6B6B", @@ -18294,36 +18294,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 972.1212738853482, - "y": 306.70399999999995 + "x": 972.12127, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 1008.1616545437843, - "y": 306.70399999999995 + "x": 1008.16165, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 1008.1616545437843, - "y": 334.62413888888887 + "x": 1008.16165, + "y": 334.62414 }, { "body": null, "index": 3, "isInternal": false, - "x": 972.1212738853482, - "y": 334.62413888888887 + "x": 972.12127, + "y": 334.62414 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3210.130139, + "area": 3210.13014, "axes": { "#": 2087 }, @@ -18344,13 +18344,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 6586.462154550281, - "inverseInertia": 0.00015182657647385802, - "inverseMass": 0.3115138504358312, + "inertia": 6586.46215, + "inverseInertia": 0.00015, + "inverseMass": 0.31151, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.210130139, + "mass": 3.21013, "motion": 0, "parent": null, "position": { @@ -18405,28 +18405,28 @@ } ], { - "x": 0.6234920819000309, - "y": 0.7818296641903307 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.2225269729299679, - "y": 0.9749265338058173 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009636744259215, - "y": 0.4338945233175249 + "x": -0.90096, + "y": 0.43389 }, { - "x": -0.9009636744259215, - "y": -0.4338945233175249 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.2225269729299679, - "y": -0.9749265338058173 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6234920819000309, - "y": -0.7818296641903307 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -18441,12 +18441,12 @@ } }, { - "x": 1071.57552335436, - "y": 373.48799999999994 + "x": 1071.57552, + "y": 373.488 }, { - "x": 1006.4655233543602, - "y": 306.70399999999995 + "x": 1006.46552, + "y": 306.704 }, { "category": 1, @@ -18463,16 +18463,16 @@ "y": 0 }, { - "x": 1040.7166545437842, - "y": 340.09599999999995 + "x": 1040.71665, + "y": 340.096 }, { "x": 0, "y": 0 }, { - "x": 1040.7166545437842, - "y": 340.09599999999995 + "x": 1040.71665, + "y": 340.096 }, { "fillStyle": "#C7F464", @@ -18518,57 +18518,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 1071.57552335436, - "y": 354.95699999999994 + "x": 1071.57552, + "y": 354.957 }, { "body": null, "index": 1, "isInternal": false, - "x": 1048.3385233543602, - "y": 373.48799999999994 + "x": 1048.33852, + "y": 373.488 }, { "body": null, "index": 2, "isInternal": false, - "x": 1019.3615233543602, - "y": 366.87399999999997 + "x": 1019.36152, + "y": 366.874 }, { "body": null, "index": 3, "isInternal": false, - "x": 1006.4655233543602, - "y": 340.09599999999995 + "x": 1006.46552, + "y": 340.096 }, { "body": null, "index": 4, "isInternal": false, - "x": 1019.3615233543602, - "y": 313.3179999999999 + "x": 1019.36152, + "y": 313.318 }, { "body": null, "index": 5, "isInternal": false, - "x": 1048.3385233543602, - "y": 306.70399999999995 + "x": 1048.33852, + "y": 306.704 }, { "body": null, "index": 6, "isInternal": false, - "x": 1071.57552335436, - "y": 325.23499999999996 + "x": 1071.57552, + "y": 325.235 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1352.927270280826, + "area": 1352.92727, "axes": { "#": 2116 }, @@ -18589,13 +18589,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 1256.990937022409, - "inverseInertia": 0.0007955506842148158, - "inverseMass": 0.7391380320040639, + "inertia": 1256.99094, + "inverseInertia": 0.0008, + "inverseMass": 0.73914, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.352927270280826, + "mass": 1.35293, "motion": 0, "parent": null, "position": { @@ -18651,12 +18651,12 @@ } }, { - "x": 1113.1448391979816, - "y": 339.25029629629626 + "x": 1113.14484, + "y": 339.2503 }, { - "x": 1071.57552335436, - "y": 306.70399999999995 + "x": 1071.57552, + "y": 306.704 }, { "category": 1, @@ -18673,16 +18673,16 @@ "y": 0 }, { - "x": 1092.3601812761708, - "y": 322.9771481481481 + "x": 1092.36018, + "y": 322.97715 }, { "x": 0, "y": 0 }, { - "x": 1092.3601812761708, - "y": 322.9771481481481 + "x": 1092.36018, + "y": 322.97715 }, { "fillStyle": "#C44D58", @@ -18719,36 +18719,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1071.57552335436, - "y": 306.70399999999995 + "x": 1071.57552, + "y": 306.704 }, { "body": null, "index": 1, "isInternal": false, - "x": 1113.1448391979816, - "y": 306.70399999999995 + "x": 1113.14484, + "y": 306.704 }, { "body": null, "index": 2, "isInternal": false, - "x": 1113.1448391979816, - "y": 339.25029629629626 + "x": 1113.14484, + "y": 339.2503 }, { "body": null, "index": 3, "isInternal": false, - "x": 1071.57552335436, - "y": 339.25029629629626 + "x": 1071.57552, + "y": 339.2503 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1720.1260092915415, + "area": 1720.12601, "axes": { "#": 2137 }, @@ -18769,13 +18769,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 2025.862459801684, - "inverseInertia": 0.0004936169260463478, - "inverseMass": 0.5813527582272093, + "inertia": 2025.86246, + "inverseInertia": 0.00049, + "inverseMass": 0.58135, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7201260092915416, + "mass": 1.72013, "motion": 0, "parent": null, "position": { @@ -18831,12 +18831,12 @@ } }, { - "x": 56.932613168724274, - "y": 449.25071707818927 + "x": 56.93261, + "y": 449.25072 }, { "x": 20, - "y": 402.67599999999993 + "y": 402.676 }, { "category": 1, @@ -18853,16 +18853,16 @@ "y": 0 }, { - "x": 38.46630658436214, - "y": 425.9633585390946 + "x": 38.46631, + "y": 425.96336 }, { "x": 0, "y": 0 }, { - "x": 38.46630658436214, - "y": 425.9633585390946 + "x": 38.46631, + "y": 425.96336 }, { "fillStyle": "#4ECDC4", @@ -18900,35 +18900,35 @@ "index": 0, "isInternal": false, "x": 20, - "y": 402.67599999999993 + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 56.932613168724274, - "y": 402.67599999999993 + "x": 56.93261, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.932613168724274, - "y": 449.25071707818927 + "x": 56.93261, + "y": 449.25072 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 449.25071707818927 + "y": 449.25072 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1250.161678324093, + "area": 1250.16168, "axes": { "#": 2158 }, @@ -18949,13 +18949,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 1044.2197391722605, - "inverseInertia": 0.0009576528411469095, - "inverseMass": 0.7998965392544685, + "inertia": 1044.21974, + "inverseInertia": 0.00096, + "inverseMass": 0.7999, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.250161678324093, + "mass": 1.25016, "motion": 0, "parent": null, "position": { @@ -19011,12 +19011,12 @@ } }, { - "x": 93.48006687242797, - "y": 436.8825329218106 + "x": 93.48007, + "y": 436.88253 }, { - "x": 56.932613168724274, - "y": 402.67599999999993 + "x": 56.93261, + "y": 402.676 }, { "category": 1, @@ -19033,16 +19033,16 @@ "y": 0 }, { - "x": 75.20634002057612, - "y": 419.77926646090526 + "x": 75.20634, + "y": 419.77927 }, { "x": 0, "y": 0 }, { - "x": 75.20634002057612, - "y": 419.77926646090526 + "x": 75.20634, + "y": 419.77927 }, { "fillStyle": "#FF6B6B", @@ -19079,36 +19079,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.932613168724274, - "y": 402.67599999999993 + "x": 56.93261, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 93.48006687242797, - "y": 402.67599999999993 + "x": 93.48007, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 93.48006687242797, - "y": 436.8825329218106 + "x": 93.48007, + "y": 436.88253 }, { "body": null, "index": 3, "isInternal": false, - "x": 56.932613168724274, - "y": 436.8825329218106 + "x": 56.93261, + "y": 436.88253 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3092.075232, + "area": 3092.07523, "axes": { "#": 2179 }, @@ -19129,13 +19129,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 6189.985619847792, - "inverseInertia": 0.00016155126383388745, - "inverseMass": 0.32340739631783966, + "inertia": 6189.98562, + "inverseInertia": 0.00016, + "inverseMass": 0.32341, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.092075232, + "mass": 3.09208, "motion": 0, "parent": null, "position": { @@ -19184,20 +19184,20 @@ } ], { - "x": 0.3090076656207097, - "y": 0.9510595473405646 + "x": 0.30901, + "y": 0.95106 }, { - "x": -0.8090195640060213, - "y": 0.5877817154824632 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090195640060213, - "y": -0.5877817154824632 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090076656207097, - "y": -0.9510595473405646 + "x": 0.30901, + "y": -0.95106 }, { "x": 1, @@ -19212,12 +19212,12 @@ } }, { - "x": 155.27345245050316, + "x": 155.27345, "y": 471.27 }, { - "x": 90.03645245050316, - "y": 402.67599999999993 + "x": 90.03645, + "y": 402.676 }, { "category": 1, @@ -19234,16 +19234,16 @@ "y": 0 }, { - "x": 126.09856687242797, - "y": 436.97299999999996 + "x": 126.09857, + "y": 436.973 }, { "x": 0, "y": 0 }, { - "x": 126.09856687242797, - "y": 436.97299999999996 + "x": 126.09857, + "y": 436.973 }, { "fillStyle": "#C44D58", @@ -19283,43 +19283,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 155.27345245050316, - "y": 458.16999999999996 + "x": 155.27345, + "y": 458.17 }, { "body": null, "index": 1, "isInternal": false, - "x": 114.95445245050317, + "x": 114.95445, "y": 471.27 }, { "body": null, "index": 2, "isInternal": false, - "x": 90.03645245050316, - "y": 436.97299999999996 + "x": 90.03645, + "y": 436.973 }, { "body": null, "index": 3, "isInternal": false, - "x": 114.95445245050317, - "y": 402.67599999999993 + "x": 114.95445, + "y": 402.676 }, { "body": null, "index": 4, "isInternal": false, - "x": 155.27345245050316, - "y": 415.77599999999995 + "x": 155.27345, + "y": 415.776 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1581.4152047253658, + "area": 1581.4152, "axes": { "#": 2204 }, @@ -19340,13 +19340,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 1771.7086023235004, - "inverseInertia": 0.0005644269033229019, - "inverseMass": 0.6323450014973541, + "inertia": 1771.7086, + "inverseInertia": 0.00056, + "inverseMass": 0.63235, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5814152047253658, + "mass": 1.58142, "motion": 0, "parent": null, "position": { @@ -19402,12 +19402,12 @@ } }, { - "x": 202.69706356161424, - "y": 436.0225792181069 + "x": 202.69706, + "y": 436.02258 }, { - "x": 155.27345245050316, - "y": 402.67599999999993 + "x": 155.27345, + "y": 402.676 }, { "category": 1, @@ -19424,16 +19424,16 @@ "y": 0 }, { - "x": 178.9852580060587, - "y": 419.3492896090534 + "x": 178.98526, + "y": 419.34929 }, { "x": 0, "y": 0 }, { - "x": 178.9852580060587, - "y": 419.3492896090534 + "x": 178.98526, + "y": 419.34929 }, { "fillStyle": "#556270", @@ -19470,36 +19470,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 155.27345245050316, - "y": 402.67599999999993 + "x": 155.27345, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 202.69706356161424, - "y": 402.67599999999993 + "x": 202.69706, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 202.69706356161424, - "y": 436.0225792181069 + "x": 202.69706, + "y": 436.02258 }, { "body": null, "index": 3, "isInternal": false, - "x": 155.27345245050316, - "y": 436.0225792181069 + "x": 155.27345, + "y": 436.02258 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4508.288001999999, + "area": 4508.288, "axes": { "#": 2225 }, @@ -19520,13 +19520,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 12968.580393466536, - "inverseInertia": 0.00007710944217948417, - "inverseMass": 0.22181369059748904, + "inertia": 12968.58039, + "inverseInertia": 0.00008, + "inverseMass": 0.22181, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.508288002, + "mass": 4.50829, "motion": 0, "parent": null, "position": { @@ -19572,16 +19572,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -19596,12 +19596,12 @@ } }, { - "x": 276.4670635616142, - "y": 476.4459999999999 + "x": 276.46706, + "y": 476.446 }, { - "x": 202.69706356161424, - "y": 402.67599999999993 + "x": 202.69706, + "y": 402.676 }, { "category": 1, @@ -19618,16 +19618,16 @@ "y": 0 }, { - "x": 239.58206356161423, - "y": 439.5609999999999 + "x": 239.58206, + "y": 439.561 }, { "x": 0, "y": 0 }, { - "x": 239.58206356161423, - "y": 439.5609999999999 + "x": 239.58206, + "y": 439.561 }, { "fillStyle": "#4ECDC4", @@ -19676,64 +19676,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 276.4670635616142, - "y": 454.83899999999994 + "x": 276.46706, + "y": 454.839 }, { "body": null, "index": 1, "isInternal": false, - "x": 254.86006356161423, - "y": 476.4459999999999 + "x": 254.86006, + "y": 476.446 }, { "body": null, "index": 2, "isInternal": false, - "x": 224.30406356161424, - "y": 476.4459999999999 + "x": 224.30406, + "y": 476.446 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.69706356161424, - "y": 454.83899999999994 + "x": 202.69706, + "y": 454.839 }, { "body": null, "index": 4, "isInternal": false, - "x": 202.69706356161424, - "y": 424.2829999999999 + "x": 202.69706, + "y": 424.283 }, { "body": null, "index": 5, "isInternal": false, - "x": 224.30406356161424, - "y": 402.67599999999993 + "x": 224.30406, + "y": 402.676 }, { "body": null, "index": 6, "isInternal": false, - "x": 254.86006356161423, - "y": 402.67599999999993 + "x": 254.86006, + "y": 402.676 }, { "body": null, "index": 7, "isInternal": false, - "x": 276.4670635616142, - "y": 424.2829999999999 + "x": 276.46706, + "y": 424.283 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1039.6267295619953, + "area": 1039.62673, "axes": { "#": 2252 }, @@ -19754,13 +19754,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 836.7694481463552, - "inverseInertia": 0.0011950723131864333, - "inverseMass": 0.9618836949501189, + "inertia": 836.76945, + "inverseInertia": 0.0012, + "inverseMass": 0.96188, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0396267295619952, + "mass": 1.03963, "motion": 0, "parent": null, "position": { @@ -19816,12 +19816,12 @@ } }, { - "x": 319.1418320801327, - "y": 427.0376255144032 + "x": 319.14183, + "y": 427.03763 }, { - "x": 276.46706356161417, - "y": 402.67599999999993 + "x": 276.46706, + "y": 402.676 }, { "category": 1, @@ -19838,16 +19838,16 @@ "y": 0 }, { - "x": 297.80444782087346, - "y": 414.85681275720157 + "x": 297.80445, + "y": 414.85681 }, { "x": 0, "y": 0 }, { - "x": 297.80444782087346, - "y": 414.85681275720157 + "x": 297.80445, + "y": 414.85681 }, { "fillStyle": "#C7F464", @@ -19884,36 +19884,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 276.46706356161417, - "y": 402.67599999999993 + "x": 276.46706, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 319.1418320801327, - "y": 402.67599999999993 + "x": 319.14183, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 319.1418320801327, - "y": 427.0376255144032 + "x": 319.14183, + "y": 427.03763 }, { "body": null, "index": 3, "isInternal": false, - "x": 276.46706356161417, - "y": 427.0376255144032 + "x": 276.46706, + "y": 427.03763 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1574.8717250450893, + "area": 1574.87173, "axes": { "#": 2273 }, @@ -19934,13 +19934,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 1691.4099419533813, - "inverseInertia": 0.0005912227279716214, - "inverseMass": 0.6349723498727298, + "inertia": 1691.40994, + "inverseInertia": 0.00059, + "inverseMass": 0.63497, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5748717250450894, + "mass": 1.57487, "motion": 0, "parent": null, "position": { @@ -19996,12 +19996,12 @@ } }, { - "x": 354.8033547138776, - "y": 446.83765123456783 + "x": 354.80335, + "y": 446.83765 }, { - "x": 319.1418320801327, - "y": 402.67599999999993 + "x": 319.14183, + "y": 402.676 }, { "category": 1, @@ -20018,16 +20018,16 @@ "y": 0 }, { - "x": 336.97259339700514, - "y": 424.7568256172839 + "x": 336.97259, + "y": 424.75683 }, { "x": 0, "y": 0 }, { - "x": 336.97259339700514, - "y": 424.7568256172839 + "x": 336.97259, + "y": 424.75683 }, { "fillStyle": "#556270", @@ -20064,36 +20064,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 319.1418320801327, - "y": 402.67599999999993 + "x": 319.14183, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.8033547138776, - "y": 402.67599999999993 + "x": 354.80335, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 354.8033547138776, - "y": 446.83765123456783 + "x": 354.80335, + "y": 446.83765 }, { "body": null, "index": 3, "isInternal": false, - "x": 319.1418320801327, - "y": 446.83765123456783 + "x": 319.14183, + "y": 446.83765 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 968.3879641074045, + "area": 968.38796, "axes": { "#": 2294 }, @@ -20114,13 +20114,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 797.6175154248832, - "inverseInertia": 0.001253733751655779, - "inverseMass": 1.0326439785130264, + "inertia": 797.61752, + "inverseInertia": 0.00125, + "inverseMass": 1.03264, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9683879641074046, + "mass": 0.96839, "motion": 0, "parent": null, "position": { @@ -20176,12 +20176,12 @@ } }, { - "x": 399.55502652457716, - "y": 424.3151460905349 + "x": 399.55503, + "y": 424.31515 }, { - "x": 354.8033547138776, - "y": 402.67599999999993 + "x": 354.80335, + "y": 402.676 }, { "category": 1, @@ -20198,16 +20198,16 @@ "y": 0 }, { - "x": 377.17919061922737, - "y": 413.4955730452674 + "x": 377.17919, + "y": 413.49557 }, { "x": 0, "y": 0 }, { - "x": 377.17919061922737, - "y": 413.4955730452674 + "x": 377.17919, + "y": 413.49557 }, { "fillStyle": "#C7F464", @@ -20244,36 +20244,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 354.8033547138776, - "y": 402.67599999999993 + "x": 354.80335, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 399.55502652457716, - "y": 402.67599999999993 + "x": 399.55503, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 399.55502652457716, - "y": 424.3151460905349 + "x": 399.55503, + "y": 424.31515 }, { "body": null, "index": 3, "isInternal": false, - "x": 354.8033547138776, - "y": 424.3151460905349 + "x": 354.80335, + "y": 424.31515 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1379.2675785219164, + "area": 1379.26758, "axes": { "#": 2315 }, @@ -20294,13 +20294,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 1297.383606626366, - "inverseInertia": 0.0007707820531202307, - "inverseMass": 0.7250224797364148, + "inertia": 1297.38361, + "inverseInertia": 0.00077, + "inverseMass": 0.72502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3792675785219164, + "mass": 1.37927, "motion": 0, "parent": null, "position": { @@ -20356,12 +20356,12 @@ } }, { - "x": 432.9261684998858, - "y": 444.00714711934154 + "x": 432.92617, + "y": 444.00715 }, { - "x": 399.55502652457716, - "y": 402.67599999999993 + "x": 399.55503, + "y": 402.676 }, { "category": 1, @@ -20378,16 +20378,16 @@ "y": 0 }, { - "x": 416.2405975122315, - "y": 423.34157355967073 + "x": 416.2406, + "y": 423.34157 }, { "x": 0, "y": 0 }, { - "x": 416.2405975122315, - "y": 423.34157355967073 + "x": 416.2406, + "y": 423.34157 }, { "fillStyle": "#C7F464", @@ -20424,36 +20424,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 399.55502652457716, - "y": 402.67599999999993 + "x": 399.55503, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 432.9261684998858, - "y": 402.67599999999993 + "x": 432.92617, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 432.9261684998858, - "y": 444.00714711934154 + "x": 432.92617, + "y": 444.00715 }, { "body": null, "index": 3, "isInternal": false, - "x": 399.55502652457716, - "y": 444.00714711934154 + "x": 399.55503, + "y": 444.00715 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1475.914064, + "area": 1475.91406, "axes": { "#": 2336 }, @@ -20474,13 +20474,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 1397.3944234227881, - "inverseInertia": 0.0007156175688397215, - "inverseMass": 0.6775462233145303, + "inertia": 1397.39442, + "inverseInertia": 0.00072, + "inverseMass": 0.67755, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4759140640000001, + "mass": 1.47591, "motion": 0, "parent": null, "position": { @@ -20523,12 +20523,12 @@ } ], { - "x": -0.5000287318776591, - "y": -0.8660088147916394 + "x": -0.50003, + "y": -0.86601 }, { - "x": 0.5000287318776591, - "y": -0.8660088147916394 + "x": 0.50003, + "y": -0.86601 }, { "x": 1, @@ -20543,12 +20543,12 @@ } }, { - "x": 474.20816849988586, - "y": 450.3459999999999 + "x": 474.20817, + "y": 450.346 }, { - "x": 432.9261684998858, - "y": 402.67599999999993 + "x": 432.92617, + "y": 402.676 }, { "category": 1, @@ -20565,16 +20565,16 @@ "y": 0 }, { - "x": 453.56716849988584, - "y": 426.5109999999999 + "x": 453.56717, + "y": 426.511 }, { "x": 0, "y": 0 }, { - "x": 453.56716849988584, - "y": 426.5109999999999 + "x": 453.56717, + "y": 426.511 }, { "fillStyle": "#556270", @@ -20617,50 +20617,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 474.20816849988586, - "y": 438.4279999999999 + "x": 474.20817, + "y": 438.428 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.56716849988584, - "y": 450.3459999999999 + "x": 453.56717, + "y": 450.346 }, { "body": null, "index": 2, "isInternal": false, - "x": 432.9261684998858, - "y": 438.4279999999999 + "x": 432.92617, + "y": 438.428 }, { "body": null, "index": 3, "isInternal": false, - "x": 432.9261684998858, - "y": 414.59399999999994 + "x": 432.92617, + "y": 414.594 }, { "body": null, "index": 4, "isInternal": false, - "x": 453.56716849988584, - "y": 402.67599999999993 + "x": 453.56717, + "y": 402.676 }, { "body": null, "index": 5, "isInternal": false, - "x": 474.20816849988586, - "y": 414.59399999999994 + "x": 474.20817, + "y": 414.594 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2731.525696, + "area": 2731.5257, "axes": { "#": 2360 }, @@ -20681,13 +20681,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 4974.15508527219, - "inverseInertia": 0.00020103916803094191, - "inverseMass": 0.3660957689193197, + "inertia": 4974.15509, + "inverseInertia": 0.0002, + "inverseMass": 0.3661, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.7315256960000003, + "mass": 2.73153, "motion": 0, "parent": null, "position": { @@ -20743,12 +20743,12 @@ } }, { - "x": 526.4721684998858, - "y": 454.93999999999994 + "x": 526.47217, + "y": 454.94 }, { - "x": 474.20816849988586, - "y": 402.67599999999993 + "x": 474.20817, + "y": 402.676 }, { "category": 1, @@ -20765,16 +20765,16 @@ "y": 0 }, { - "x": 500.34016849988586, - "y": 428.80799999999994 + "x": 500.34017, + "y": 428.808 }, { "x": 0, "y": 0 }, { - "x": 500.34016849988586, - "y": 428.80799999999994 + "x": 500.34017, + "y": 428.808 }, { "fillStyle": "#556270", @@ -20811,29 +20811,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 526.4721684998858, - "y": 454.93999999999994 + "x": 526.47217, + "y": 454.94 }, { "body": null, "index": 1, "isInternal": false, - "x": 474.20816849988586, - "y": 454.93999999999994 + "x": 474.20817, + "y": 454.94 }, { "body": null, "index": 2, "isInternal": false, - "x": 474.20816849988586, - "y": 402.67599999999993 + "x": 474.20817, + "y": 402.676 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.4721684998858, - "y": 402.67599999999993 + "x": 526.47217, + "y": 402.676 }, { "angle": 0, @@ -20861,13 +20861,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 1356.1358869695257, - "inverseInertia": 0.0007373892318671982, - "inverseMass": 0.6877756996176496, + "inertia": 1356.13589, + "inverseInertia": 0.00074, + "inverseMass": 0.68778, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.45396239, + "mass": 1.45396, "motion": 0, "parent": null, "position": { @@ -20910,12 +20910,12 @@ } ], { - "x": -0.5000261561969946, - "y": -0.8660103019703972 + "x": -0.50003, + "y": -0.86601 }, { - "x": 0.5000261561969946, - "y": -0.8660103019703972 + "x": 0.50003, + "y": -0.86601 }, { "x": 1, @@ -20930,12 +20930,12 @@ } }, { - "x": 567.4461684998857, - "y": 449.9899999999999 + "x": 567.44617, + "y": 449.99 }, { - "x": 526.4721684998858, - "y": 402.67599999999993 + "x": 526.47217, + "y": 402.676 }, { "category": 1, @@ -20952,16 +20952,16 @@ "y": 0 }, { - "x": 546.9591684998858, - "y": 426.3329999999999 + "x": 546.95917, + "y": 426.333 }, { "x": 0, "y": 0 }, { - "x": 546.9591684998858, - "y": 426.3329999999999 + "x": 546.95917, + "y": 426.333 }, { "fillStyle": "#C44D58", @@ -21004,43 +21004,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 567.4461684998857, - "y": 438.1609999999999 + "x": 567.44617, + "y": 438.161 }, { "body": null, "index": 1, "isInternal": false, - "x": 546.9591684998858, - "y": 449.9899999999999 + "x": 546.95917, + "y": 449.99 }, { "body": null, "index": 2, "isInternal": false, - "x": 526.4721684998858, - "y": 438.1609999999999 + "x": 526.47217, + "y": 438.161 }, { "body": null, "index": 3, "isInternal": false, - "x": 526.4721684998858, - "y": 414.50499999999994 + "x": 526.47217, + "y": 414.505 }, { "body": null, "index": 4, "isInternal": false, - "x": 546.9591684998858, - "y": 402.67599999999993 + "x": 546.95917, + "y": 402.676 }, { "body": null, "index": 5, "isInternal": false, - "x": 567.4461684998857, - "y": 414.50499999999994 + "x": 567.44617, + "y": 414.505 }, { "angle": 0, @@ -21068,13 +21068,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 15527.371235563205, - "inverseInertia": 0.00006440240172204064, - "inverseMass": 0.20720746724324493, + "inertia": 15527.37124, + "inverseInertia": 0.00006, + "inverseMass": 0.20721, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.8260809, + "mass": 4.82608, "motion": 0, "parent": null, "position": { @@ -21130,12 +21130,12 @@ } }, { - "x": 636.9161684998858, - "y": 472.14599999999996 + "x": 636.91617, + "y": 472.146 }, { - "x": 567.4461684998857, - "y": 402.67599999999993 + "x": 567.44617, + "y": 402.676 }, { "category": 1, @@ -21152,16 +21152,16 @@ "y": 0 }, { - "x": 602.1811684998858, - "y": 437.41099999999994 + "x": 602.18117, + "y": 437.411 }, { "x": 0, "y": 0 }, { - "x": 602.1811684998858, - "y": 437.41099999999994 + "x": 602.18117, + "y": 437.411 }, { "fillStyle": "#C7F464", @@ -21198,36 +21198,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 636.9161684998858, - "y": 472.14599999999996 + "x": 636.91617, + "y": 472.146 }, { "body": null, "index": 1, "isInternal": false, - "x": 567.4461684998857, - "y": 472.14599999999996 + "x": 567.44617, + "y": 472.146 }, { "body": null, "index": 2, "isInternal": false, - "x": 567.4461684998857, - "y": 402.67599999999993 + "x": 567.44617, + "y": 402.676 }, { "body": null, "index": 3, "isInternal": false, - "x": 636.9161684998858, - "y": 402.67599999999993 + "x": 636.91617, + "y": 402.676 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1288.7426280768939, + "area": 1288.74263, "axes": { "#": 2426 }, @@ -21248,13 +21248,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 1283.525413611018, - "inverseInertia": 0.0007791041684064836, - "inverseMass": 0.7759501224012698, + "inertia": 1283.52541, + "inverseInertia": 0.00078, + "inverseMass": 0.77595, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2887426280768939, + "mass": 1.28874, "motion": 0, "parent": null, "position": { @@ -21310,12 +21310,12 @@ } }, { - "x": 684.3455666480339, - "y": 429.8478106995884 + "x": 684.34557, + "y": 429.84781 }, { - "x": 636.9161684998858, - "y": 402.67599999999993 + "x": 636.91617, + "y": 402.676 }, { "category": 1, @@ -21332,16 +21332,16 @@ "y": 0 }, { - "x": 660.6308675739599, - "y": 416.2619053497942 + "x": 660.63087, + "y": 416.26191 }, { "x": 0, "y": 0 }, { - "x": 660.6308675739599, - "y": 416.2619053497942 + "x": 660.63087, + "y": 416.26191 }, { "fillStyle": "#FF6B6B", @@ -21378,36 +21378,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 636.9161684998858, - "y": 402.67599999999993 + "x": 636.91617, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 684.3455666480339, - "y": 402.67599999999993 + "x": 684.34557, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 684.3455666480339, - "y": 429.8478106995884 + "x": 684.34557, + "y": 429.84781 }, { "body": null, "index": 3, "isInternal": false, - "x": 636.9161684998858, - "y": 429.8478106995884 + "x": 636.91617, + "y": 429.84781 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1779.883796, + "area": 1779.8838, "axes": { "#": 2447 }, @@ -21428,13 +21428,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 2051.033881833643, - "inverseInertia": 0.0004875589861567722, - "inverseMass": 0.5618344311282218, + "inertia": 2051.03388, + "inverseInertia": 0.00049, + "inverseMass": 0.56183, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.779883796, + "mass": 1.77988, "motion": 0, "parent": null, "position": { @@ -21483,20 +21483,20 @@ } ], { - "x": 0.30900874044209636, - "y": 0.9510591981209104 + "x": 0.30901, + "y": 0.95106 }, { - "x": -0.8090075783738877, - "y": 0.5877982120878029 + "x": -0.80901, + "y": 0.5878 }, { - "x": -0.8090075783738877, - "y": -0.5877982120878029 + "x": -0.80901, + "y": -0.5878 }, { - "x": 0.30900874044209636, - "y": -0.9510591981209104 + "x": 0.30901, + "y": -0.95106 }, { "x": 1, @@ -21511,12 +21511,12 @@ } }, { - "x": 731.228775125426, - "y": 454.71799999999996 + "x": 731.22878, + "y": 454.718 }, { - "x": 681.732775125426, - "y": 402.67599999999993 + "x": 681.73278, + "y": 402.676 }, { "category": 1, @@ -21533,16 +21533,16 @@ "y": 0 }, { - "x": 709.0935666480339, - "y": 428.69699999999995 + "x": 709.09357, + "y": 428.697 }, { "x": 0, "y": 0 }, { - "x": 709.0935666480339, - "y": 428.69699999999995 + "x": 709.09357, + "y": 428.697 }, { "fillStyle": "#4ECDC4", @@ -21582,43 +21582,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 731.228775125426, - "y": 444.77899999999994 + "x": 731.22878, + "y": 444.779 }, { "body": null, "index": 1, "isInternal": false, - "x": 700.6387751254259, - "y": 454.71799999999996 + "x": 700.63878, + "y": 454.718 }, { "body": null, "index": 2, "isInternal": false, - "x": 681.732775125426, - "y": 428.69699999999995 + "x": 681.73278, + "y": 428.697 }, { "body": null, "index": 3, "isInternal": false, - "x": 700.6387751254259, - "y": 402.67599999999993 + "x": 700.63878, + "y": 402.676 }, { "body": null, "index": 4, "isInternal": false, - "x": 731.228775125426, - "y": 412.61499999999995 + "x": 731.22878, + "y": 412.615 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4428.370116000001, + "area": 4428.37012, "axes": { "#": 2472 }, @@ -21639,13 +21639,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 13073.641256187908, - "inverseInertia": 0.0000764897843228403, - "inverseMass": 0.22581671671636758, + "inertia": 13073.64126, + "inverseInertia": 0.00008, + "inverseMass": 0.22582, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.428370116000001, + "mass": 4.42837, "motion": 0, "parent": null, "position": { @@ -21701,12 +21701,12 @@ } }, { - "x": 797.774775125426, + "x": 797.77478, "y": 469.222 }, { - "x": 731.228775125426, - "y": 402.67599999999993 + "x": 731.22878, + "y": 402.676 }, { "category": 1, @@ -21723,16 +21723,16 @@ "y": 0 }, { - "x": 764.501775125426, - "y": 435.94899999999996 + "x": 764.50178, + "y": 435.949 }, { "x": 0, "y": 0 }, { - "x": 764.501775125426, - "y": 435.94899999999996 + "x": 764.50178, + "y": 435.949 }, { "fillStyle": "#4ECDC4", @@ -21769,43 +21769,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 797.774775125426, + "x": 797.77478, "y": 469.222 }, { "body": null, "index": 1, "isInternal": false, - "x": 731.228775125426, + "x": 731.22878, "y": 469.222 }, { "body": null, "index": 2, "isInternal": false, - "x": 731.228775125426, - "y": 402.67599999999993 + "x": 731.22878, + "y": 402.676 }, { "body": null, "index": 3, "isInternal": false, - "x": 797.774775125426, - "y": 402.67599999999993 + "x": 797.77478, + "y": 402.676 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4006.5774799999995, + "area": 4006.57748, "axes": { "#": 2493 }, "bounds": { "#": 2507 }, - "circleRadius": 35.88631687242798, + "circleRadius": 35.88632, "collisionFilter": { "#": 2510 }, @@ -21820,13 +21820,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 10219.637720405184, - "inverseInertia": 0.00009785082674734506, - "inverseMass": 0.2495895823784244, + "inertia": 10219.63772, + "inverseInertia": 0.0001, + "inverseMass": 0.24959, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.00657748, + "mass": 4.00658, "motion": 0, "parent": null, "position": { @@ -21899,52 +21899,52 @@ } ], { - "x": -0.9709194534434736, - "y": -0.2394063802930625 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8854942138286769, - "y": -0.4646504032882501 + "x": -0.88549, + "y": -0.46465 }, { - "x": -0.7484734206820648, - "y": -0.6631647898769117 + "x": -0.74847, + "y": -0.66316 }, { - "x": -0.5680975359623629, - "y": -0.8229612321570753 + "x": -0.5681, + "y": -0.82296 }, { - "x": -0.35462984236614764, - "y": -0.9350067779986203 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12044873884362048, - "y": -0.9927195481660375 + "x": -0.12045, + "y": -0.99272 }, { - "x": 0.12044873884362048, - "y": -0.9927195481660375 + "x": 0.12045, + "y": -0.99272 }, { - "x": 0.35462984236614764, - "y": -0.9350067779986203 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680975359623629, - "y": -0.8229612321570753 + "x": 0.5681, + "y": -0.82296 }, { - "x": 0.7484734206820648, - "y": -0.6631647898769117 + "x": 0.74847, + "y": -0.66316 }, { - "x": 0.8854942138286769, - "y": -0.4646504032882501 + "x": 0.88549, + "y": -0.46465 }, { - "x": 0.9709194534434736, - "y": -0.2394063802930625 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -21959,12 +21959,12 @@ } }, { - "x": 869.024775125426, + "x": 869.02478, "y": 474.448 }, { - "x": 797.774775125426, - "y": 402.67599999999993 + "x": 797.77478, + "y": 402.676 }, { "category": 1, @@ -21981,16 +21981,16 @@ "y": 0 }, { - "x": 833.399775125426, - "y": 438.56199999999995 + "x": 833.39978, + "y": 438.562 }, { "x": 0, "y": 0 }, { - "x": 833.399775125426, - "y": 438.56199999999995 + "x": 833.39978, + "y": 438.562 }, { "fillStyle": "#C7F464", @@ -22093,190 +22093,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 869.024775125426, + "x": 869.02478, "y": 442.888 }, { "body": null, "index": 1, "isInternal": false, - "x": 866.953775125426, + "x": 866.95378, "y": 451.287 }, { "body": null, "index": 2, "isInternal": false, - "x": 862.933775125426, + "x": 862.93378, "y": 458.948 }, { "body": null, "index": 3, "isInternal": false, - "x": 857.196775125426, - "y": 465.42299999999994 + "x": 857.19678, + "y": 465.423 }, { "body": null, "index": 4, "isInternal": false, - "x": 850.076775125426, - "y": 470.33799999999997 + "x": 850.07678, + "y": 470.338 }, { "body": null, "index": 5, "isInternal": false, - "x": 841.987775125426, - "y": 473.40599999999995 + "x": 841.98778, + "y": 473.406 }, { "body": null, "index": 6, "isInternal": false, - "x": 833.399775125426, + "x": 833.39978, "y": 474.448 }, { "body": null, "index": 7, "isInternal": false, - "x": 824.811775125426, - "y": 473.40599999999995 + "x": 824.81178, + "y": 473.406 }, { "body": null, "index": 8, "isInternal": false, - "x": 816.722775125426, - "y": 470.33799999999997 + "x": 816.72278, + "y": 470.338 }, { "body": null, "index": 9, "isInternal": false, - "x": 809.602775125426, - "y": 465.42299999999994 + "x": 809.60278, + "y": 465.423 }, { "body": null, "index": 10, "isInternal": false, - "x": 803.865775125426, + "x": 803.86578, "y": 458.948 }, { "body": null, "index": 11, "isInternal": false, - "x": 799.845775125426, + "x": 799.84578, "y": 451.287 }, { "body": null, "index": 12, "isInternal": false, - "x": 797.774775125426, + "x": 797.77478, "y": 442.888 }, { "body": null, "index": 13, "isInternal": false, - "x": 797.774775125426, - "y": 434.23599999999993 + "x": 797.77478, + "y": 434.236 }, { "body": null, "index": 14, "isInternal": false, - "x": 799.845775125426, - "y": 425.83699999999993 + "x": 799.84578, + "y": 425.837 }, { "body": null, "index": 15, "isInternal": false, - "x": 803.865775125426, - "y": 418.17599999999993 + "x": 803.86578, + "y": 418.176 }, { "body": null, "index": 16, "isInternal": false, - "x": 809.602775125426, - "y": 411.70099999999996 + "x": 809.60278, + "y": 411.701 }, { "body": null, "index": 17, "isInternal": false, - "x": 816.722775125426, - "y": 406.78599999999994 + "x": 816.72278, + "y": 406.786 }, { "body": null, "index": 18, "isInternal": false, - "x": 824.811775125426, - "y": 403.71799999999996 + "x": 824.81178, + "y": 403.718 }, { "body": null, "index": 19, "isInternal": false, - "x": 833.399775125426, - "y": 402.67599999999993 + "x": 833.39978, + "y": 402.676 }, { "body": null, "index": 20, "isInternal": false, - "x": 841.987775125426, - "y": 403.71799999999996 + "x": 841.98778, + "y": 403.718 }, { "body": null, "index": 21, "isInternal": false, - "x": 850.076775125426, - "y": 406.78599999999994 + "x": 850.07678, + "y": 406.786 }, { "body": null, "index": 22, "isInternal": false, - "x": 857.196775125426, - "y": 411.70099999999996 + "x": 857.19678, + "y": 411.701 }, { "body": null, "index": 23, "isInternal": false, - "x": 862.933775125426, - "y": 418.17599999999993 + "x": 862.93378, + "y": 418.176 }, { "body": null, "index": 24, "isInternal": false, - "x": 866.953775125426, - "y": 425.83699999999993 + "x": 866.95378, + "y": 425.837 }, { "body": null, "index": 25, "isInternal": false, - "x": 869.024775125426, - "y": 434.23599999999993 + "x": 869.02478, + "y": 434.236 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2513.037024864943, + "area": 2513.03702, "axes": { "#": 2547 }, @@ -22297,13 +22297,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 7118.367975988358, - "inverseInertia": 0.000140481638961795, - "inverseMass": 0.3979248972878713, + "inertia": 7118.36798, + "inverseInertia": 0.00014, + "inverseMass": 0.39792, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5130370248649427, + "mass": 2.51304, "motion": 0, "parent": null, "position": { @@ -22359,12 +22359,12 @@ } }, { - "x": 956.6310851391434, - "y": 431.3615709876542 + "x": 956.63109, + "y": 431.36157 }, { - "x": 869.024775125426, - "y": 402.67599999999993 + "x": 869.02478, + "y": 402.676 }, { "category": 1, @@ -22381,16 +22381,16 @@ "y": 0 }, { - "x": 912.8279301322847, - "y": 417.01878549382707 + "x": 912.82793, + "y": 417.01879 }, { "x": 0, "y": 0 }, { - "x": 912.8279301322847, - "y": 417.01878549382707 + "x": 912.82793, + "y": 417.01879 }, { "fillStyle": "#FF6B6B", @@ -22427,36 +22427,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 869.024775125426, - "y": 402.67599999999993 + "x": 869.02478, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 956.6310851391434, - "y": 402.67599999999993 + "x": 956.63109, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 956.6310851391434, - "y": 431.3615709876542 + "x": 956.63109, + "y": 431.36157 }, { "body": null, "index": 3, "isInternal": false, - "x": 869.024775125426, - "y": 431.3615709876542 + "x": 869.02478, + "y": 431.36157 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1629.3666616192165, + "area": 1629.36666, "axes": { "#": 2568 }, @@ -22477,13 +22477,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 1918.0622160315609, - "inverseInertia": 0.0005213595219392745, - "inverseMass": 0.6137354001132129, + "inertia": 1918.06222, + "inverseInertia": 0.00052, + "inverseMass": 0.61374, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6293666616192166, + "mass": 1.62937, "motion": 0, "parent": null, "position": { @@ -22539,12 +22539,12 @@ } }, { - "x": 989.5741149745343, - "y": 452.1361337448559 + "x": 989.57411, + "y": 452.13613 }, { - "x": 956.6310851391434, - "y": 402.67599999999993 + "x": 956.63109, + "y": 402.676 }, { "category": 1, @@ -22561,16 +22561,16 @@ "y": 0 }, { - "x": 973.1026000568388, - "y": 427.4060668724279 + "x": 973.1026, + "y": 427.40607 }, { "x": 0, "y": 0 }, { - "x": 973.1026000568388, - "y": 427.4060668724279 + "x": 973.1026, + "y": 427.40607 }, { "fillStyle": "#C44D58", @@ -22607,29 +22607,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 956.6310851391434, - "y": 402.67599999999993 + "x": 956.63109, + "y": 402.676 }, { "body": null, "index": 1, "isInternal": false, - "x": 989.5741149745343, - "y": 402.67599999999993 + "x": 989.57411, + "y": 402.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 989.5741149745343, - "y": 452.1361337448559 + "x": 989.57411, + "y": 452.13613 }, { "body": null, "index": 3, "isInternal": false, - "x": 956.6310851391434, - "y": 452.1361337448559 + "x": 956.63109, + "y": 452.13613 }, { "angle": 0, @@ -22657,13 +22657,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 1107.5429879268129, - "inverseInertia": 0.0009028994909460621, - "inverseMass": 0.759666832613354, + "inertia": 1107.54299, + "inverseInertia": 0.0009, + "inverseMass": 0.75967, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.31636654, + "mass": 1.31637, "motion": 0, "parent": null, "position": { @@ -22718,28 +22718,28 @@ } ], { - "x": 0.6235089422456015, - "y": 0.7818162181355482 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22250665600611816, - "y": 0.9749311709207862 + "x": -0.22251, + "y": 0.97493 }, { - "x": -0.9009697215706803, - "y": 0.43388196645268706 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009697215706803, - "y": -0.43388196645268706 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22250665600611816, - "y": -0.9749311709207862 + "x": -0.22251, + "y": -0.97493 }, { - "x": 0.6235089422456015, - "y": -0.7818162181355482 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -22754,12 +22754,12 @@ } }, { - "x": 1030.182141764567, - "y": 445.4419999999999 + "x": 1030.18214, + "y": 445.442 }, { - "x": 988.488141764567, - "y": 402.67599999999993 + "x": 988.48814, + "y": 402.676 }, { "category": 1, @@ -22776,16 +22776,16 @@ "y": 0 }, { - "x": 1010.4211149745342, - "y": 424.0589999999999 + "x": 1010.42111, + "y": 424.059 }, { "x": 0, "y": 0 }, { - "x": 1010.4211149745342, - "y": 424.0589999999999 + "x": 1010.42111, + "y": 424.059 }, { "fillStyle": "#C7F464", @@ -22831,50 +22831,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 1030.182141764567, - "y": 433.57499999999993 + "x": 1030.18214, + "y": 433.575 }, { "body": null, "index": 1, "isInternal": false, - "x": 1015.302141764567, - "y": 445.4419999999999 + "x": 1015.30214, + "y": 445.442 }, { "body": null, "index": 2, "isInternal": false, - "x": 996.7461417645669, - "y": 441.20699999999994 + "x": 996.74614, + "y": 441.207 }, { "body": null, "index": 3, "isInternal": false, - "x": 988.488141764567, - "y": 424.0589999999999 + "x": 988.48814, + "y": 424.059 }, { "body": null, "index": 4, "isInternal": false, - "x": 996.7461417645669, - "y": 406.9109999999999 + "x": 996.74614, + "y": 406.911 }, { "body": null, "index": 5, "isInternal": false, - "x": 1015.302141764567, - "y": 402.67599999999993 + "x": 1015.30214, + "y": 402.676 }, { "body": null, "index": 6, "isInternal": false, - "x": 1030.182141764567, - "y": 414.5429999999999 + "x": 1030.18214, + "y": 414.543 }, [], [], diff --git a/test/browser/refs/gravity/gravity-10.json b/test/browser/refs/gravity/gravity-10.json index fb87a1fa..928a9d2b 100644 --- a/test/browser/refs/gravity/gravity-10.json +++ b/test/browser/refs/gravity/gravity-10.json @@ -1195,11 +1195,11 @@ } ], { - "angle": -0.0001959765554855968, - "anglePrev": -0.0002020405291276624, - "angularSpeed": 0.000001929317564678257, - "angularVelocity": 0.000007312766279799095, - "area": 1534.906434764454, + "angle": -0.0002, + "anglePrev": -0.0002, + "angularSpeed": 0, + "angularVelocity": 0.00001, + "area": 1534.90643, "axes": { "#": 97 }, @@ -1220,13 +1220,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1248,7 +1248,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2777419130647224, + "speed": 0.27774, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1269,12 +1269,12 @@ } ], { - "x": 0.00019597655423112437, - "y": 0.9999999807965947 + "x": 0.0002, + "y": 1 }, { - "x": -0.9999999807965947, - "y": 0.00019597655423112437 + "x": -1, + "y": 0.0002 }, { "max": { @@ -1285,12 +1285,12 @@ } }, { - "x": 56.48848334443743, - "y": 62.33419304928775 + "x": 56.48848, + "y": 62.33419 }, { - "x": 20.07697859109038, - "y": 19.885223140299427 + "x": 20.07698, + "y": 19.88522 }, { "category": 1, @@ -1307,16 +1307,16 @@ "y": 0 }, { - "x": 38.28269161867241, - "y": 41.24857904575118 + "x": 38.28269, + "y": 41.24858 }, { "x": 0, "y": 0 }, { - "x": 38.284346340086074, - "y": 41.24871608407425 + "x": 38.28435, + "y": 41.24872 }, { "endCol": 1, @@ -1339,8 +1339,8 @@ "yScale": 1 }, { - "x": -0.00030070877897969694, - "y": 0.000058616345846473905 + "x": -0.0003, + "y": 0.00006 }, [ { @@ -1360,36 +1360,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 20.07697859109038, - "y": 20.17009920877615 + "x": 20.07698, + "y": 20.1701 }, { "body": null, "index": 1, "isInternal": false, - "x": 56.48014147227261, - "y": 20.162965042214584 + "x": 56.48014, + "y": 20.16297 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.48840464625444, - "y": 62.32705888272618 + "x": 56.4884, + "y": 62.32706 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.0852417650722, - "y": 62.33419304928775 + "x": 20.08524, + "y": 62.33419 }, { - "angle": -0.000019721487986384265, - "anglePrev": -0.0000130047705658681, - "angularSpeed": 0.000009692057732935638, - "angularVelocity": 0.000013844521672796759, - "area": 2220.52878634164, + "angle": -0.00002, + "anglePrev": -0.00001, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 2220.52879, "axes": { "#": 119 }, @@ -1410,13 +1410,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1438,7 +1438,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.27787063926899624, + "speed": 0.27787, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1459,12 +1459,12 @@ } ], { - "x": 0.000019721487985105872, - "y": 0.9999999998055316 + "x": 0.00002, + "y": 1 }, { - "x": -0.9999999998055316, - "y": 0.000019721487985105872 + "x": -1, + "y": 0.00002 }, { "max": { @@ -1475,12 +1475,12 @@ } }, { - "x": 101.50444655647534, - "y": 69.16498041170654 + "x": 101.50445, + "y": 69.16498 }, { - "x": 56.18728845598434, - "y": 19.88505889674872 + "x": 56.18729, + "y": 19.88506 }, { "category": 1, @@ -1497,16 +1497,16 @@ "y": 0 }, { - "x": 78.84604156231346, - "y": 44.66395486483466 + "x": 78.84604, + "y": 44.66395 }, { "x": 0, "y": 0 }, { - "x": 78.85121751707729, - "y": 44.6645917059216 + "x": 78.85122, + "y": 44.66459 }, { "endCol": 2, @@ -1529,8 +1529,8 @@ "yScale": 1 }, { - "x": -0.0025673831444237294, - "y": -0.00009797985841686341 + "x": -0.00257, + "y": -0.0001 }, [ { @@ -1550,36 +1550,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.18763656815159, - "y": 20.16382301382831 + "x": 56.18764, + "y": 20.16382 }, { "body": null, "index": 1, "isInternal": false, - "x": 101.50348018073826, - "y": 20.16292931796278 + "x": 101.50348, + "y": 20.16293 }, { "body": null, "index": 2, "isInternal": false, - "x": 101.50444655647534, - "y": 69.16408671584102 + "x": 101.50445, + "y": 69.16409 }, { "body": null, "index": 3, "isInternal": false, - "x": 56.188602943888654, - "y": 69.16498041170654 + "x": 56.1886, + "y": 69.16498 }, { - "angle": -0.0001950947603882722, - "anglePrev": -0.00020936881237330286, - "angularSpeed": 0.0000644511499394486, - "angularVelocity": 0.00006486204302744614, - "area": 1140.197701571206, + "angle": -0.0002, + "anglePrev": -0.00021, + "angularSpeed": 0.00006, + "angularVelocity": 0.00006, + "area": 1140.1977, "axes": { "#": 141 }, @@ -1600,13 +1600,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1628,7 +1628,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2805518537840089, + "speed": 0.28055, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1649,12 +1649,12 @@ } ], { - "x": 0.0001950947591506572, - "y": 0.9999999809690174 + "x": 0.0002, + "y": 1 }, { - "x": -0.9999999809690174, - "y": 0.0001950947591506572 + "x": -1, + "y": 0.0002 }, { "max": { @@ -1665,12 +1665,12 @@ } }, { - "x": 140.41792998617666, - "y": 49.24101582559091 + "x": 140.41793, + "y": 49.24102 }, { - "x": 101.18746589409673, - "y": 19.881596206480072 + "x": 101.18747, + "y": 19.8816 }, { "category": 1, @@ -1687,16 +1687,16 @@ "y": 0 }, { - "x": 120.80469072904097, - "y": 34.701567787227056 + "x": 120.80469, + "y": 34.70157 }, { "x": 0, "y": 0 }, { - "x": 120.81805033706519, - "y": 34.705526552882446 + "x": 120.81805, + "y": 34.70553 }, { "endCol": 2, @@ -1719,8 +1719,8 @@ "yScale": 1 }, { - "x": -0.006833788367458737, - "y": 0.00022804522220098988 + "x": -0.00683, + "y": 0.00023 }, [ { @@ -1740,36 +1740,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 101.19145147190515, - "y": 20.16977152287819 + "x": 101.19145, + "y": 20.16977 }, { "body": null, "index": 1, "isInternal": false, - "x": 140.41225833866332, - "y": 20.162119748863198 + "x": 140.41226, + "y": 20.16212 }, { "body": null, "index": 2, "isInternal": false, - "x": 140.41792998617666, - "y": 49.23336405157593 + "x": 140.41793, + "y": 49.23336 }, { "body": null, "index": 3, "isInternal": false, - "x": 101.19712311941856, - "y": 49.24101582559091 + "x": 101.19712, + "y": 49.24102 }, { - "angle": 0.0021773458007706657, - "anglePrev": 0.001722468321823362, - "angularSpeed": 0.000044714404986596036, - "angularVelocity": 0.0007180041448168575, - "area": 752.4076041785743, + "angle": 0.00218, + "anglePrev": 0.00172, + "angularSpeed": 0.00004, + "angularVelocity": 0.00072, + "area": 752.4076, "axes": { "#": 163 }, @@ -1790,13 +1790,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1818,7 +1818,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.28466601706350075, + "speed": 0.28467, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1839,12 +1839,12 @@ } ], { - "x": -0.0021773440803649715, - "y": 0.9999976295835685 + "x": -0.00218, + "y": 1 }, { - "x": -0.9999976295835685, - "y": -0.0021773440803649715 + "x": -1, + "y": -0.00218 }, { "max": { @@ -1855,12 +1855,12 @@ } }, { - "x": 165.0262484905527, - "y": 50.46038740998971 + "x": 165.02625, + "y": 50.46039 }, { - "x": 140.07625539892913, - "y": 19.87698249588703 + "x": 140.07626, + "y": 19.87698 }, { "category": 1, @@ -1877,16 +1877,16 @@ "y": 0 }, { - "x": 152.5546939788966, - "y": 35.31097633608778 + "x": 152.55469, + "y": 35.31098 }, { "x": 0, "y": 0 }, { - "x": 152.57416186829826, - "y": 35.31344184601115 + "x": 152.57416, + "y": 35.31344 }, { "endCol": 3, @@ -1909,8 +1909,8 @@ "yScale": 1 }, { - "x": -0.02935710972874972, - "y": -0.008810198776892264 + "x": -0.02936, + "y": -0.00881 }, [ { @@ -1930,36 +1930,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 140.14899264533366, - "y": 20.16156526218584 + "x": 140.14899, + "y": 20.16157 }, { "body": null, "index": 1, "isInternal": false, - "x": 165.0262484905527, - "y": 20.21573173633326 + "x": 165.02625, + "y": 20.21573 }, { "body": null, "index": 2, "isInternal": false, - "x": 164.96039531245955, - "y": 50.46038740998971 + "x": 164.9604, + "y": 50.46039 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.08313946724053, - "y": 50.406220935842285 + "x": 140.08314, + "y": 50.40622 }, { - "angle": 0.005498123141157145, - "anglePrev": 0.006443906758052634, - "angularSpeed": 0.000949460535088276, - "angularVelocity": -0.0009967972542360417, - "area": 2027.2541820000001, + "angle": 0.0055, + "anglePrev": 0.00644, + "angularSpeed": 0.00095, + "angularVelocity": -0.001, + "area": 2027.25418, "axes": { "#": 185 }, @@ -1980,13 +1980,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -2008,7 +2008,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.27201931853925276, + "speed": 0.27202, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2032,16 +2032,16 @@ } ], { - "x": -0.49523956155334037, - "y": -0.8687564541759997 + "x": -0.49524, + "y": -0.86876 }, { - "x": 0.5047624877156854, - "y": -0.8632582643653479 + "x": 0.50476, + "y": -0.86326 }, { - "x": 0.999984885359038, - "y": 0.0054980954404101525 + "x": 0.99998, + "y": 0.0055 }, { "max": { @@ -2052,12 +2052,12 @@ } }, { - "x": 213.08021593187695, - "y": 75.95257897171139 + "x": 213.08022, + "y": 75.95258 }, { - "x": 164.52438840251978, - "y": 19.81421395950037 + "x": 164.52439, + "y": 19.81421 }, { "category": 1, @@ -2074,16 +2074,16 @@ "y": 0 }, { - "x": 188.81278967114028, - "y": 48.01900118409205 + "x": 188.81279, + "y": 48.019 }, { "x": 0, "y": 0 }, { - "x": 188.84685281509567, - "y": 48.049963210654454 + "x": 188.84685, + "y": 48.04996 }, { "endCol": 4, @@ -2106,8 +2106,8 @@ "yScale": 1 }, { - "x": -0.047251471519928145, - "y": -0.03296089487025 + "x": -0.04725, + "y": -0.03296 }, [ { @@ -2133,49 +2133,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 212.92663213384458, - "y": 62.11879450470069 + "x": 212.92663, + "y": 62.11879 }, { "body": null, "index": 1, "isInternal": false, - "x": 188.6592058731079, - "y": 75.95257897171139 + "x": 188.65921, + "y": 75.95258 }, { "body": null, "index": 2, "isInternal": false, - "x": 164.5453634104036, - "y": 61.852785651102764 + "x": 164.54536, + "y": 61.85279 }, { "body": null, "index": 3, "isInternal": false, - "x": 164.69894720843598, - "y": 33.91920786348339 + "x": 164.69895, + "y": 33.91921 }, { "body": null, "index": 4, "isInternal": false, - "x": 188.96637346917265, - "y": 20.08542339647267 + "x": 188.96637, + "y": 20.08542 }, { "body": null, "index": 5, "isInternal": false, - "x": 213.08021593187695, - "y": 34.18521671708133 + "x": 213.08022, + "y": 34.18522 }, { - "angle": -0.027916300632346132, - "anglePrev": -0.025667985463242927, - "angularSpeed": 0.0020079591357333275, - "angularVelocity": -0.002301652371836972, + "angle": -0.02792, + "anglePrev": -0.02567, + "angularSpeed": 0.00201, + "angularVelocity": -0.0023, "area": 4842.27229, "axes": { "#": 210 @@ -2197,13 +2197,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2225,7 +2225,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.31341056829430325, + "speed": 0.31341, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2255,24 +2255,24 @@ } ], { - "x": 0.3354461065465415, - "y": 0.9420593981287838 + "x": 0.33545, + "y": 0.94206 }, { - "x": -0.7922970249305229, - "y": 0.610135578610396 + "x": -0.7923, + "y": 0.61014 }, { - "x": -0.8251102007552589, - "y": -0.5649718193057209 + "x": -0.82511, + "y": -0.56497 }, { - "x": 0.2823530986530857, - "y": -0.9593105480922233 + "x": 0.28235, + "y": -0.95931 }, { - "x": 0.9996103653846538, - "y": -0.027912674819137423 + "x": 0.99961, + "y": -0.02791 }, { "max": { @@ -2283,12 +2283,12 @@ } }, { - "x": 293.19174949091536, - "y": 106.47282870866097 + "x": 293.19175, + "y": 106.47283 }, { - "x": 210.83528306875843, - "y": 20.35301963322434 + "x": 210.83528, + "y": 20.35302 }, { "category": 1, @@ -2305,16 +2305,16 @@ "y": 0 }, { - "x": 255.95594917328992, - "y": 63.180298804911345 + "x": 255.95595, + "y": 63.1803 }, { "x": 0, "y": 0 }, { - "x": 255.95821839133043, - "y": 63.367139084230146 + "x": 255.95822, + "y": 63.36714 }, { "endCol": 6, @@ -2337,8 +2337,8 @@ "yScale": 1 }, { - "x": -0.0009134944487811936, - "y": -0.19179595322569298 + "x": -0.00091, + "y": -0.1918 }, [ { @@ -2361,50 +2361,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 293.19174949091536, - "y": 88.67688237054539 + "x": 293.19175, + "y": 88.67688 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.21400889641757, - "y": 106.47282870866097 + "x": 243.21401, + "y": 106.47283 }, { "body": null, "index": 2, "isInternal": false, - "x": 210.84514686939062, - "y": 64.43995276523678 + "x": 210.84515, + "y": 64.43995 }, { "body": null, "index": 3, "isInternal": false, - "x": 240.81798488994278, - "y": 20.666274944042282 + "x": 240.81798, + "y": 20.66627 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.7109262664105, - "y": 35.645553266158714 + "x": 291.71093, + "y": 35.64555 }, { - "angle": 0.025061596962569665, - "anglePrev": 0.021040919423128624, - "angularSpeed": 0.004086243029936438, - "angularVelocity": 0.003970828239551864, - "area": 3079.0178339999993, + "angle": 0.02506, + "anglePrev": 0.02104, + "angularSpeed": 0.00409, + "angularVelocity": 0.00397, + "area": 3079.01783, "axes": { "#": 236 }, "bounds": { "#": 250 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 253 }, @@ -2419,13 +2419,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2447,7 +2447,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2726973685631275, + "speed": 0.2727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2501,56 +2501,56 @@ } ], { - "x": -0.9646420372969208, - "y": -0.2635635404976301 + "x": -0.96464, + "y": -0.26356 }, { - "x": -0.8734929194067671, - "y": -0.4868368512615318 + "x": -0.87349, + "y": -0.48684 }, { - "x": -0.7316842990660694, - "y": -0.6816436653414997 + "x": -0.73168, + "y": -0.68164 }, { - "x": -0.5472767389107416, - "y": -0.8369517136891613 + "x": -0.54728, + "y": -0.83695 }, { - "x": -0.33103255297519785, - "y": -0.9436193347270511 + "x": -0.33103, + "y": -0.94362 }, { - "x": -0.09559831459361803, - "y": -0.9954199928908701 + "x": -0.0956, + "y": -0.99542 }, { - "x": 0.14535099264108953, - "y": -0.989380153903569 + "x": 0.14535, + "y": -0.98938 }, { - "x": 0.37789422075283796, - "y": -0.9258487770265753 + "x": 0.37789, + "y": -0.92585 }, { - "x": 0.588522541254996, - "y": -0.8084808089464843 + "x": 0.58852, + "y": -0.80848 }, { - "x": 0.7649172268846812, - "y": -0.6441285865532203 + "x": 0.76492, + "y": -0.64413 }, { - "x": 0.8967874974817478, - "y": -0.4424615060775618 + "x": 0.89679, + "y": -0.44246 }, { - "x": 0.9766356547536856, - "y": -0.21490183308627164 + "x": 0.97664, + "y": -0.2149 }, { - "x": 0.9996859746155431, - "y": 0.025058973581772406 + "x": 0.99969, + "y": 0.02506 }, { "max": { @@ -2561,12 +2561,12 @@ } }, { - "x": 354.44985958752216, - "y": 83.13593342388394 + "x": 354.44986, + "y": 83.13593 }, { - "x": 291.8043102943096, - "y": 19.965413180885445 + "x": 291.80431, + "y": 19.96541 }, { "category": 1, @@ -2583,16 +2583,16 @@ "y": 0 }, { - "x": 323.1346429724566, - "y": 51.68681234845356 + "x": 323.13464, + "y": 51.68681 }, { "x": 0, "y": 0 }, { - "x": 323.14789875219935, - "y": 51.6940944990956 + "x": 323.1479, + "y": 51.69409 }, { "endCol": 7, @@ -2615,8 +2615,8 @@ "yScale": 1 }, { - "x": -0.010271655866347373, - "y": -0.010826508809792301 + "x": -0.01027, + "y": -0.01083 }, [ { @@ -2702,190 +2702,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 354.259812331878, - "y": 56.260213309154445 + "x": 354.25981, + "y": 56.26021 }, { "body": null, "index": 1, "isInternal": false, - "x": 352.2608480064946, - "y": 63.576418789172386 + "x": 352.26085, + "y": 63.57642 }, { "body": null, "index": 2, "isInternal": false, - "x": 348.5686839383731, - "y": 70.20097722684 + "x": 348.56868, + "y": 70.20098 }, { "body": null, "index": 3, "isInternal": false, - "x": 343.3990033790079, - "y": 75.75017292658973 + "x": 343.399, + "y": 75.75017 }, { "body": null, "index": 4, "isInternal": false, - "x": 337.05200915324195, - "y": 79.90042705110963 + "x": 337.05201, + "y": 79.90043 }, { "body": null, "index": 5, "isInternal": false, - "x": 329.8958523272819, - "y": 82.41088945518248 + "x": 329.89585, + "y": 82.41089 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.34631272254774, - "y": 83.13593342388394 + "x": 322.34631, + "y": 83.13593 }, { "body": null, "index": 7, "isInternal": false, - "x": 314.8425809215209, - "y": 82.03355143098815 + "x": 314.84258, + "y": 82.03355 }, { "body": null, "index": 8, "isInternal": false, - "x": 307.82119125548354, - "y": 79.16770266357861 + "x": 307.82119, + "y": 79.1677 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.6901051460982, - "y": 74.70466243081103 + "x": 301.69011, + "y": 74.70466 }, { "body": null, "index": 10, "isInternal": false, - "x": 296.8049441727803, - "y": 68.90342357477586 + "x": 296.80494, + "y": 68.90342 }, { "body": null, "index": 11, "isInternal": false, - "x": 293.44932211986213, - "y": 62.10219937335672 + "x": 293.44932, + "y": 62.1022 }, { "body": null, "index": 12, "isInternal": false, - "x": 291.8194263573911, - "y": 54.695029819236936 + "x": 291.81943, + "y": 54.69503 }, { "body": null, "index": 13, "isInternal": false, - "x": 292.00947361303525, - "y": 47.11341138775267 + "x": 292.00947, + "y": 47.11341 }, { "body": null, "index": 14, "isInternal": false, - "x": 294.00843793841864, - "y": 39.79720590773473 + "x": 294.00844, + "y": 39.79721 }, { "body": null, "index": 15, "isInternal": false, - "x": 297.7006020065401, - "y": 33.17264747006711 + "x": 297.7006, + "y": 33.17265 }, { "body": null, "index": 16, "isInternal": false, - "x": 302.8702825659053, - "y": 27.623451770317395 + "x": 302.87028, + "y": 27.62345 }, { "body": null, "index": 17, "isInternal": false, - "x": 309.2172767916713, - "y": 23.47319764579748 + "x": 309.21728, + "y": 23.4732 }, { "body": null, "index": 18, "isInternal": false, - "x": 316.37343361763135, - "y": 20.962735241724626 + "x": 316.37343, + "y": 20.96274 }, { "body": null, "index": 19, "isInternal": false, - "x": 323.9229732223655, - "y": 20.237691273023188 + "x": 323.92297, + "y": 20.23769 }, { "body": null, "index": 20, "isInternal": false, - "x": 331.42670502339234, - "y": 21.340073265918964 + "x": 331.42671, + "y": 21.34007 }, { "body": null, "index": 21, "isInternal": false, - "x": 338.4480946894297, - "y": 24.205922033328502 + "x": 338.44809, + "y": 24.20592 }, { "body": null, "index": 22, "isInternal": false, - "x": 344.57918079881506, - "y": 28.668962266096102 + "x": 344.57918, + "y": 28.66896 }, { "body": null, "index": 23, "isInternal": false, - "x": 349.4643417721329, - "y": 34.47020112213128 + "x": 349.46434, + "y": 34.4702 }, { "body": null, "index": 24, "isInternal": false, - "x": 352.8199638250511, - "y": 41.271425323550396 + "x": 352.81996, + "y": 41.27143 }, { "body": null, "index": 25, "isInternal": false, - "x": 354.44985958752216, - "y": 48.67859487767018 + "x": 354.44986, + "y": 48.67859 }, { - "angle": -0.012993252182921963, - "anglePrev": -0.010374306816716373, - "angularSpeed": 0.002838566077301364, - "angularVelocity": -0.0026683495428695882, - "area": 1329.4167625219097, + "angle": -0.01299, + "anglePrev": -0.01037, + "angularSpeed": 0.00284, + "angularVelocity": -0.00267, + "area": 1329.41676, "axes": { "#": 291 }, @@ -2906,13 +2906,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2934,7 +2934,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.21568853174038502, + "speed": 0.21569, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2955,12 +2955,12 @@ } ], { - "x": 0.012992886589236, - "y": 0.9999155888864217 + "x": 0.01299, + "y": 0.99992 }, { - "x": -0.9999155888864217, - "y": 0.012992886589236 + "x": -0.99992, + "y": 0.01299 }, { "max": { @@ -2971,12 +2971,12 @@ } }, { - "x": 402.5554691949446, - "y": 48.03068424573196 + "x": 402.55547, + "y": 48.03068 }, { - "x": 353.38960432332584, - "y": 19.932316929817016 + "x": 353.3896, + "y": 19.93232 }, { "category": 1, @@ -2993,16 +2993,16 @@ "y": 0 }, { - "x": 377.9916451384049, - "y": 34.08763849581288 + "x": 377.99165, + "y": 34.08764 }, { "x": 0, "y": 0 }, { - "x": 378.0272659652558, - "y": 34.028864311710755 + "x": 378.02727, + "y": 34.02886 }, { "endCol": 8, @@ -3025,8 +3025,8 @@ "yScale": 1 }, { - "x": -0.03593233585621647, - "y": 0.05648724886464862 + "x": -0.03593, + "y": 0.05649 }, [ { @@ -3046,36 +3046,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.42782108186526, - "y": 20.778355209739512 + "x": 353.42782, + "y": 20.77836 }, { "body": null, "index": 1, "isInternal": false, - "x": 402.20135288313514, - "y": 20.1445927458938 + "x": 402.20135, + "y": 20.14459 }, { "body": null, "index": 2, "isInternal": false, - "x": 402.5554691949446, - "y": 47.39692178188625 + "x": 402.55547, + "y": 47.39692 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.7819373936747, - "y": 48.03068424573196 + "x": 353.78194, + "y": 48.03068 }, { - "angle": -0.0005141341631346567, - "anglePrev": -0.0005431988187778571, - "angularSpeed": 0.000012742758786161588, - "angularVelocity": 0.000014805103820662792, - "area": 2858.632357296012, + "angle": -0.00051, + "anglePrev": -0.00054, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 2858.63236, "axes": { "#": 313 }, @@ -3096,13 +3096,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -3124,7 +3124,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2786142453819283, + "speed": 0.27861, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3145,12 +3145,12 @@ } ], { - "x": 0.000514134140484139, - "y": 0.9999998678330341 + "x": 0.00051, + "y": 1 }, { - "x": -0.9999998678330341, - "y": 0.000514134140484139 + "x": -1, + "y": 0.00051 }, { "max": { @@ -3161,12 +3161,12 @@ } }, { - "x": 510.8416193433973, - "y": 46.476775660609746 + "x": 510.84162, + "y": 46.47678 }, { - "x": 401.9730569427667, - "y": 19.881182631487576 + "x": 401.97306, + "y": 19.88118 }, { "category": 1, @@ -3183,16 +3183,16 @@ "y": 0 }, { - "x": 456.40757802619834, - "y": 33.31828606220333 + "x": 456.40758, + "y": 33.31829 }, { "x": 0, "y": 0 }, { - "x": 456.4093962844365, - "y": 33.31970970037092 + "x": 456.4094, + "y": 33.31971 }, { "endCol": 10, @@ -3215,8 +3215,8 @@ "yScale": 1 }, { - "x": -0.0016733899090581872, - "y": -0.0003600911074954638 + "x": -0.00167, + "y": -0.00036 }, [ { @@ -3236,36 +3236,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 401.97353670899935, - "y": 20.2157623276078 + "x": 401.97354, + "y": 20.21576 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.8281176580945, - "y": 20.159796463796926 + "x": 510.82812, + "y": 20.1598 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.8416193433973, - "y": 46.42080979679888 + "x": 510.84162, + "y": 46.42081 }, { "body": null, "index": 3, "isInternal": false, - "x": 401.98703839430215, - "y": 46.476775660609746 + "x": 401.98704, + "y": 46.47678 }, { - "angle": -0.001759135927921671, - "anglePrev": -0.0017492410369790287, - "angularSpeed": 6.116867531717534e-7, - "angularVelocity": -6.60149102617389e-7, - "area": 926.8394636035856, + "angle": -0.00176, + "anglePrev": -0.00175, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.83946, "axes": { "#": 335 }, @@ -3286,13 +3286,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3314,7 +3314,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2777506204459238, + "speed": 0.27775, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3335,12 +3335,12 @@ } ], { - "x": 0.0017591350206300953, - "y": 0.9999984527207924 + "x": 0.00176, + "y": 1 }, { - "x": -0.9999984527207924, - "y": 0.0017591350206300953 + "x": -1, + "y": 0.00176 }, { "max": { @@ -3351,12 +3351,12 @@ } }, { - "x": 549.0209754135537, - "y": 44.14607419079999 + "x": 549.02098, + "y": 44.14607 }, { - "x": 510.223054319813, - "y": 19.885317683879347 + "x": 510.22305, + "y": 19.88532 }, { "category": 1, @@ -3373,16 +3373,16 @@ "y": 0 }, { - "x": 529.6219525946913, - "y": 32.15457123360119 + "x": 529.62195, + "y": 32.15457 }, { "x": 0, "y": 0 }, { - "x": 529.6231821663598, - "y": 32.15441713261812 + "x": 529.62318, + "y": 32.15442 }, { "endCol": 11, @@ -3405,8 +3405,8 @@ "yScale": 1 }, { - "x": -0.0015224181488520117, - "y": 0.00030550913151472514 + "x": -0.00152, + "y": 0.00031 }, [ { @@ -3426,36 +3426,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 510.223054319813, - "y": 20.231244938631306 + "x": 510.22305, + "y": 20.23124 }, { "body": null, "index": 1, "isInternal": false, - "x": 548.9787813908265, - "y": 20.16306827640237 + "x": 548.97878, + "y": 20.16307 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.0208508695695, - "y": 44.07789752857107 + "x": 549.02085, + "y": 44.0779 }, { "body": null, "index": 3, "isInternal": false, - "x": 510.2651237985561, - "y": 44.14607419079999 + "x": 510.26512, + "y": 44.14607 }, { - "angle": -0.000057946847383434116, - "anglePrev": -0.00006494950410863072, - "angularSpeed": 0.000004016230630165926, - "angularVelocity": 0.000007786712053553832, - "area": 1290.4501361223834, + "angle": -0.00006, + "anglePrev": -0.00006, + "angularSpeed": 0, + "angularVelocity": 0.00001, + "area": 1290.45014, "axes": { "#": 357 }, @@ -3476,13 +3476,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3504,7 +3504,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2777772409612517, + "speed": 0.27778, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3525,12 +3525,12 @@ } ], { - "x": 0.00005794684735100476, - "y": 0.9999999983210813 + "x": 0.00006, + "y": 1 }, { - "x": -0.9999999983210813, - "y": 0.00005794684735100476 + "x": -1, + "y": 0.00006 }, { "max": { @@ -3541,12 +3541,12 @@ } }, { - "x": 584.1789313987341, - "y": 56.24123911681662 + "x": 584.17893, + "y": 56.24124 }, { - "x": 548.4063538274007, - "y": 19.885386123724384 + "x": 548.40635, + "y": 19.88539 }, { "category": 1, @@ -3563,16 +3563,16 @@ "y": 0 }, { - "x": 566.2925585077156, - "y": 38.20220121528571 + "x": 566.29256, + "y": 38.2022 }, { "x": 0, "y": 0 }, { - "x": 566.2930939269652, - "y": 38.202116590390254 + "x": 566.29309, + "y": 38.20212 }, { "endCol": 12, @@ -3595,8 +3595,8 @@ "yScale": 1 }, { - "x": -0.0003250882440397618, - "y": -0.000024120915917080765 + "x": -0.00033, + "y": -0.00002 }, [ { @@ -3616,36 +3616,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 548.4063538274007, - "y": 20.165236090965546 + "x": 548.40635, + "y": 20.16524 }, { "body": null, "index": 1, "isInternal": false, - "x": 584.1766726973865, - "y": 20.16316331375482 + "x": 584.17667, + "y": 20.16316 }, { "body": null, "index": 2, "isInternal": false, - "x": 584.1787631880305, - "y": 56.23916633960587 + "x": 584.17876, + "y": 56.23917 }, { "body": null, "index": 3, "isInternal": false, - "x": 548.4084443180448, - "y": 56.24123911681662 + "x": 548.40844, + "y": 56.24124 }, { - "angle": -0.00001488183935489576, - "anglePrev": -0.000017362267055458884, - "angularSpeed": 0.0000027787287163369257, - "angularVelocity": 0.000002583238547237782, - "area": 1148.2925932011974, + "angle": -0.00001, + "anglePrev": -0.00002, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.29259, "axes": { "#": 379 }, @@ -3666,13 +3666,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3694,7 +3694,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2778093977976706, + "speed": 0.27781, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3715,12 +3715,12 @@ } ], { - "x": 0.000014881839354346447, - "y": 0.9999999998892655 + "x": 0.00001, + "y": 1 }, { - "x": -0.9999999998892655, - "y": 0.000014881839354346447 + "x": -1, + "y": 0.00001 }, { "max": { @@ -3731,12 +3731,12 @@ } }, { - "x": 614.1610166967745, - "y": 57.76122639397363 + "x": 614.16102, + "y": 57.76123 }, { - "x": 583.6053879372961, - "y": 19.901686611198055 + "x": 583.60539, + "y": 19.90169 }, { "category": 1, @@ -3753,16 +3753,16 @@ "y": 0 }, { - "x": 598.8831238505784, - "y": 38.970361179322055 + "x": 598.88312, + "y": 38.97036 }, { "x": 0, "y": 0 }, { - "x": 598.8833307348151, - "y": 38.97028605453953 + "x": 598.88333, + "y": 38.97029 }, { "endCol": 12, @@ -3785,8 +3785,8 @@ "yScale": 1 }, { - "x": -0.000044741031047124125, - "y": 0.000015962087005050307 + "x": -0.00004, + "y": 0.00002 }, [ { @@ -3806,36 +3806,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 583.6053879372961, - "y": 20.179950677970556 + "x": 583.60539, + "y": 20.17995 }, { "body": null, "index": 1, "isInternal": false, - "x": 614.1603004853528, - "y": 20.179495964670476 + "x": 614.1603, + "y": 20.1795 }, { "body": null, "index": 2, "isInternal": false, - "x": 614.1608597638607, - "y": 57.76077168067355 + "x": 614.16086, + "y": 57.76077 }, { "body": null, "index": 3, "isInternal": false, - "x": 583.605947215804, - "y": 57.76122639397363 + "x": 583.60595, + "y": 57.76123 }, { - "angle": 0.0005641946119140708, - "anglePrev": 0.0005660848329308176, - "angularSpeed": 5.268164422033837e-7, - "angularVelocity": -0.0000018582773906886335, - "area": 1926.7878890000002, + "angle": 0.00056, + "anglePrev": 0.00057, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1926.78789, "axes": { "#": 401 }, @@ -3856,13 +3856,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3884,7 +3884,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.27778862522785197, + "speed": 0.27779, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3920,32 +3920,32 @@ } ], { - "x": 0.623050896892187, - "y": 0.782181296044492 + "x": 0.62305, + "y": 0.78218 }, { - "x": -0.2230682236941031, - "y": 0.9748028352328265 + "x": -0.22307, + "y": 0.9748 }, { - "x": -0.9012261867528831, - "y": 0.43334900520349273 + "x": -0.90123, + "y": 0.43335 }, { - "x": -0.9007366267604469, - "y": -0.43436566302161916 + "x": -0.90074, + "y": -0.43437 }, { - "x": -0.2219681249007334, - "y": -0.9750539223694514 + "x": -0.22197, + "y": -0.97505 }, { - "x": 0.6239331049968773, - "y": -0.7814777543148337 + "x": 0.62393, + "y": -0.78148 }, { - "x": 0.9999998408422242, - "y": 0.0005641945819820839 + "x": 1, + "y": 0.00056 }, { "max": { @@ -3956,12 +3956,12 @@ } }, { - "x": 664.1128430375538, - "y": 71.93873596440818 + "x": 664.11284, + "y": 71.93874 }, { - "x": 613.6632674895275, - "y": 19.920955587943663 + "x": 613.66327, + "y": 19.92096 }, { "category": 1, @@ -3978,16 +3978,16 @@ "y": 0 }, { - "x": 640.1984543983546, - "y": 46.06540862064896 + "x": 640.19845, + "y": 46.06541 }, { "x": 0, "y": 0 }, { - "x": 640.1985004026045, - "y": 46.0653938021581 + "x": 640.1985, + "y": 46.06539 }, { "endCol": 13, @@ -4010,8 +4010,8 @@ "yScale": 1 }, { - "x": -0.00006351225954404072, - "y": 0.000017002602199056582 + "x": -0.00006, + "y": 0.00002 }, [ { @@ -4040,57 +4040,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 664.0997638889095, - "y": 57.591895444495805 + "x": 664.09976, + "y": 57.5919 }, { "body": null, "index": 1, "isInternal": false, - "x": 646.088666612613, - "y": 71.93873596440818 + "x": 646.08867, + "y": 71.93874 }, { "body": null, "index": 2, "isInternal": false, - "x": 623.6415611187435, - "y": 66.80207061156715 + "x": 623.64156, + "y": 66.80207 }, { "body": null, "index": 3, "isInternal": false, - "x": 613.6632674895275, - "y": 46.050437609580364 + "x": 613.66327, + "y": 46.05044 }, { "body": null, "index": 4, "isInternal": false, - "x": 623.6649706803393, - "y": 25.31007721534159 + "x": 623.66497, + "y": 25.31008 }, { "body": null, "index": 5, "isInternal": false, - "x": 646.117858040285, - "y": 20.198744199231527 + "x": 646.11786, + "y": 20.19874 }, { "body": null, "index": 6, "isInternal": false, - "x": 664.1127550333543, - "y": 34.56589910926275 + "x": 664.11276, + "y": 34.5659 }, { - "angle": -0.00021377428807937068, - "anglePrev": -0.00021462227795512054, - "angularSpeed": 4.788818264813802e-7, - "angularVelocity": 6.538453166765287e-7, - "area": 1097.755875, + "angle": -0.00021, + "anglePrev": -0.00021, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1097.75588, "axes": { "#": 431 }, @@ -4111,13 +4111,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 927.6617490689248, - "inverseInertia": 0.0010779791243992539, - "inverseMass": 0.9109493492804126, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "inverseMass": 0.91095, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.097755875, + "mass": 1.09776, "motion": 0, "parent": null, "position": { @@ -4139,7 +4139,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.27778193589081124, + "speed": 0.27778, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4163,16 +4163,16 @@ } ], { - "x": -0.49980951406036345, - "y": 0.866135352964387 + "x": -0.49981, + "y": 0.86614 }, { - "x": -0.5001797833039664, - "y": -0.8659215809609999 + "x": -0.50018, + "y": -0.86592 }, { - "x": 0.999999977150277, - "y": -0.00021377428645114288 + "x": 1, + "y": -0.00021 }, { "max": { @@ -4183,12 +4183,12 @@ } }, { - "x": 707.2880787224813, - "y": 70.54899815679669 + "x": 707.28808, + "y": 70.549 }, { - "x": 663.6776440052556, - "y": 19.921217376627602 + "x": 663.67764, + "y": 19.92122 }, { "category": 1, @@ -4205,16 +4205,16 @@ "y": 0 }, { - "x": 692.747643341014, - "y": 45.377105941291994 + "x": 692.74764, + "y": 45.37711 }, { "x": 0, "y": 0 }, { - "x": 692.7476670180895, - "y": 45.37711421643134 + "x": 692.74767, + "y": 45.37711 }, { "endCol": 14, @@ -4237,8 +4237,8 @@ "yScale": 1 }, { - "x": -0.00004725760061319306, - "y": -0.000010206233106657692 + "x": -0.00005, + "y": -0.00001 }, [ { @@ -4255,29 +4255,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 707.288024776555, - "y": 70.54899815679669 + "x": 707.28802, + "y": 70.549 }, { "body": null, "index": 1, "isInternal": false, - "x": 663.6776440052556, - "y": 45.38332035979912 + "x": 663.67764, + "y": 45.38332 }, { "body": null, "index": 2, "isInternal": false, - "x": 707.2772612412319, - "y": 20.1989993072802 + "x": 707.27726, + "y": 20.199 }, { - "angle": -0.0011979043430086643, - "anglePrev": -0.001197701128134641, - "angularSpeed": 2.462355100683834e-8, - "angularVelocity": -3.0392266993860793e-7, - "area": 986.5801250000001, + "angle": -0.0012, + "anglePrev": -0.0012, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 986.58013, "axes": { "#": 453 }, @@ -4298,13 +4298,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4326,7 +4326,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2777824221222826, + "speed": 0.27778, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4356,24 +4356,24 @@ } ], { - "x": 0.3101543072346706, - "y": 0.9506862288388221 + "x": 0.31015, + "y": 0.95069 }, { - "x": -0.8083184378041789, - "y": 0.5887455334062516 + "x": -0.80832, + "y": 0.58875 }, { - "x": -0.8097266382855005, - "y": -0.5868072692552997 + "x": -0.80973, + "y": -0.58681 }, { - "x": 0.30787575696205255, - "y": -0.951426570090957 + "x": 0.30788, + "y": -0.95143 }, { - "x": 0.9999992825126781, - "y": -0.001197904056514924 + "x": 1, + "y": -0.0012 }, { "max": { @@ -4384,12 +4384,12 @@ } }, { - "x": 743.8054660646656, - "y": 58.93804742613401 + "x": 743.80547, + "y": 58.93805 }, { - "x": 706.9411185246794, - "y": 19.91429280555857 + "x": 706.94112, + "y": 19.91429 }, { "category": 1, @@ -4406,16 +4406,16 @@ "y": 0 }, { - "x": 727.3111466296062, - "y": 39.55752046880546 + "x": 727.31115, + "y": 39.55752 }, { "x": 0, "y": 0 }, { - "x": 727.3111521534148, - "y": 39.55752108021158 + "x": 727.31115, + "y": 39.55752 }, { "endCol": 15, @@ -4438,8 +4438,8 @@ "yScale": 1 }, { - "x": -0.000018960405213874765, - "y": -0.0000043999114680559614 + "x": -0.00002, + "y": 0 }, [ { @@ -4462,43 +4462,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 743.8054345905401, - "y": 51.51077047065305 + "x": 743.80543, + "y": 51.51077 }, { "body": null, "index": 1, "isInternal": false, - "x": 721.0393154213318, - "y": 58.93804742613401 + "x": 721.03932, + "y": 58.93805 }, { "body": null, "index": 2, "isInternal": false, - "x": 706.9411185246794, - "y": 39.581921825611325 + "x": 706.94112, + "y": 39.58192 }, { "body": null, "index": 3, "isInternal": false, - "x": 720.9929014307584, - "y": 20.192075225897767 + "x": 720.9929, + "y": 20.19208 }, { "body": null, "index": 4, "isInternal": false, - "x": 743.7767495800028, - "y": 27.564787651604465 + "x": 743.77675, + "y": 27.56479 }, { - "angle": -0.00019845310884952517, - "anglePrev": -0.0001982121109056332, - "angularSpeed": 8.90632239271345e-8, - "angularVelocity": -3.33614880980291e-7, - "area": 1201.454244, + "angle": -0.0002, + "anglePrev": -0.0002, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1201.45424, "axes": { "#": 479 }, @@ -4519,13 +4519,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4547,7 +4547,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2777782095857254, + "speed": 0.27778, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4568,12 +4568,12 @@ } ], { - "x": -0.000198453107546891, - "y": -0.9999999803081819 + "x": -0.0002, + "y": -1 }, { - "x": 0.9999999803081819, - "y": -0.000198453107546891 + "x": 1, + "y": -0.0002 }, { "max": { @@ -4584,12 +4584,12 @@ } }, { - "x": 778.2673711794521, - "y": 54.86095465053623 + "x": 778.26737, + "y": 54.86095 }, { - "x": 743.5984685694203, - "y": 19.91429834297593 + "x": 743.59847, + "y": 19.9143 }, { "category": 1, @@ -4606,16 +4606,16 @@ "y": 0 }, { - "x": 760.9329076189483, - "y": 37.52651560100824 + "x": 760.93291, + "y": 37.52652 }, { "x": 0, "y": 0 }, { - "x": 760.9329087797684, - "y": 37.52652177964106 + "x": 760.93291, + "y": 37.52652 }, { "endCol": 16, @@ -4638,8 +4638,8 @@ "yScale": 1 }, { - "x": 0.000009872708119473828, - "y": -0.00000306768281177483 + "x": 0.00001, + "y": 0 }, [ { @@ -4659,36 +4659,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.2673466684763, - "y": 54.85407586892246 + "x": 778.26735, + "y": 54.85408 }, { "body": null, "index": 1, "isInternal": false, - "x": 743.6053473510341, - "y": 54.86095465053623 + "x": 743.60535, + "y": 54.86095 }, { "body": null, "index": 2, "isInternal": false, - "x": 743.5984685694203, - "y": 20.198955333094034 + "x": 743.59847, + "y": 20.19896 }, { "body": null, "index": 3, "isInternal": false, - "x": 778.2604678868626, - "y": 20.192076551480238 + "x": 778.26047, + "y": 20.19208 }, { - "angle": -0.0954203908538847, - "anglePrev": -0.07512659335884726, - "angularSpeed": 0.017897963134984585, - "angularVelocity": -0.02027714095152154, - "area": 1990.733346252218, + "angle": -0.09542, + "anglePrev": -0.07513, + "angularSpeed": 0.0179, + "angularVelocity": -0.02028, + "area": 1990.73335, "axes": { "#": 501 }, @@ -4709,13 +4709,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4737,7 +4737,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1429899294032546, + "speed": 1.14299, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4758,12 +4758,12 @@ } ], { - "x": 0.09527565550668946, - "y": 0.9954509277045107 + "x": 0.09528, + "y": 0.99545 }, { - "x": -0.9954509277045107, - "y": 0.09527565550668946 + "x": -0.99545, + "y": 0.09528 }, { "max": { @@ -4774,12 +4774,12 @@ } }, { - "x": 868.0086187545954, - "y": 19.641338814566726 + "x": 868.00862, + "y": 19.64134 }, { - "x": 771.5040584951882, - "y": -11.429084885214923 + "x": 771.50406, + "y": -11.42908 }, { "category": 1, @@ -4796,16 +4796,16 @@ "y": 0 }, { - "x": 819.7003545929176, - "y": 4.674873202327833 + "x": 819.70035, + "y": 4.67487 }, { "x": 0, "y": 0 }, { - "x": 819.600963344792, - "y": 5.651049504825576 + "x": 819.60096, + "y": 5.65105 }, { "endCol": 18, @@ -4828,8 +4828,8 @@ "yScale": 1 }, { - "x": 0.1052654901840242, - "y": -0.9767385323848723 + "x": 0.10527, + "y": -0.97674 }, [ { @@ -4849,35 +4849,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 771.5040584951882, - "y": -1.2571992680959978 + "x": 771.50406, + "y": -1.2572 }, { "body": null, "index": 1, "isInternal": false, - "x": 865.8964296254572, - "y": -10.291592409911061 + "x": 865.89643, + "y": -10.29159 }, { "body": null, "index": 2, "isInternal": false, - "x": 867.896650690647, - "y": 10.606945672751666 + "x": 867.89665, + "y": 10.60695 }, { "body": null, "index": 3, "isInternal": false, - "x": 773.504279560378, - "y": 19.641338814566726 + "x": 773.50428, + "y": 19.64134 }, { - "angle": -0.00029402354363371354, - "anglePrev": -0.0002585503609881394, - "angularSpeed": 0.00003547318264557414, - "angularVelocity": -0.00003547318264557414, + "angle": -0.00029, + "anglePrev": -0.00026, + "angularSpeed": 0.00004, + "angularVelocity": -0.00004, "area": 7321.24308, "axes": { "#": 523 @@ -4885,7 +4885,7 @@ "bounds": { "#": 537 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 540 }, @@ -4900,13 +4900,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4928,7 +4928,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.908974514182302, + "speed": 2.90897, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4982,56 +4982,56 @@ } ], { - "x": -0.9710073002046187, - "y": -0.2390498336107714 + "x": -0.97101, + "y": -0.23905 }, { - "x": -0.8855828942701608, - "y": -0.4644813638630561 + "x": -0.88558, + "y": -0.46448 }, { - "x": -0.7487212712409831, - "y": -0.6628849507956008 + "x": -0.74872, + "y": -0.66288 }, { - "x": -0.5683085773704935, - "y": -0.822815508414326 + "x": -0.56831, + "y": -0.82282 }, { - "x": -0.3548724273627757, - "y": -0.9349147342392521 + "x": -0.35487, + "y": -0.93491 }, { - "x": -0.12077902220269135, - "y": -0.9926794184406977 + "x": -0.12078, + "y": -0.99268 }, { - "x": 0.12019525911307521, - "y": -0.9927502705548563 + "x": 0.1202, + "y": -0.99275 }, { - "x": 0.35432259215081796, - "y": -0.9351232542780257 + "x": 0.35432, + "y": -0.93512 }, { - "x": 0.5678246248749248, - "y": -0.8231495583341163 + "x": 0.56782, + "y": -0.82315 }, { - "x": 0.7483313342452693, - "y": -0.6633251195203564 + "x": 0.74833, + "y": -0.66333 }, { - "x": 0.8853096042557907, - "y": -0.4650020479658714 + "x": 0.88531, + "y": -0.465 }, { - "x": 0.9708665597674988, - "y": -0.23962079026082314 + "x": 0.97087, + "y": -0.23962 }, { - "x": 0.9999999567750781, - "y": -0.00029402353939733195 + "x": 1, + "y": -0.00029 }, { "max": { @@ -5042,12 +5042,12 @@ } }, { - "x": 962.8867287895174, - "y": 99.27012424559821 + "x": 962.88673, + "y": 99.27012 }, { - "x": 866.569294641413, - "y": 2.2501284392801466 + "x": 866.56929, + "y": 2.25013 }, { "category": 1, @@ -5064,16 +5064,16 @@ "y": 0 }, { - "x": 914.7280117154653, - "y": 50.76012634243918 + "x": 914.72801, + "y": 50.76013 }, { "x": 0, "y": 0 }, { - "x": 914.7265026993475, - "y": 53.66910046522413 + "x": 914.7265, + "y": 53.6691 }, { "endCol": 20, @@ -5096,8 +5096,8 @@ "yScale": 1 }, { - "x": 0.0015090161178272865, - "y": -2.908974122784958 + "x": 0.00151, + "y": -2.90897 }, [ { @@ -5183,190 +5183,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 962.8867287895174, - "y": 56.592966798116315 + "x": 962.88673, + "y": 56.59297 }, { "body": null, "index": 1, "isInternal": false, - "x": 960.091067547794, - "y": 67.9487892791841 + "x": 960.09107, + "y": 67.94879 }, { "body": null, "index": 2, "isInternal": false, - "x": 954.659112396472, - "y": 78.30538684952664 + "x": 954.65911, + "y": 78.30539 }, { "body": null, "index": 3, "isInternal": false, - "x": 946.9066866137451, - "y": 87.06166662368375 + "x": 946.90669, + "y": 87.06167 }, { "body": null, "index": 4, "isInternal": false, - "x": 937.284640228114, - "y": 93.70749601908375 + "x": 937.28464, + "y": 93.7075 }, { "body": null, "index": 5, "isInternal": false, - "x": 926.3508600163965, - "y": 97.85771098723329 + "x": 926.35086, + "y": 97.85771 }, { "body": null, "index": 6, "isInternal": false, - "x": 914.7422747973615, - "y": 99.27012424559821 + "x": 914.74227, + "y": 99.27012 }, { "body": null, "index": 7, "isInternal": false, - "x": 903.1328610199926, - "y": 97.864537625771 + "x": 903.13286, + "y": 97.86454 }, { "body": null, "index": 8, "isInternal": false, - "x": 892.196642177039, - "y": 93.72075295242809 + "x": 892.19664, + "y": 93.72075 }, { "body": null, "index": 9, "isInternal": false, - "x": 882.5706893946635, - "y": 87.08058292211443 + "x": 882.57069, + "y": 87.08058 }, { "body": null, "index": 10, "isInternal": false, - "x": 874.813115847809, - "y": 78.32886345305337 + "x": 874.81312, + "y": 78.32886 }, { "body": null, "index": 11, "isInternal": false, - "x": 869.3750714689859, - "y": 67.97546191858407 + "x": 869.37507, + "y": 67.97546 }, { "body": null, "index": 12, "isInternal": false, - "x": 866.5727329526825, - "y": 56.62128538128984 + "x": 866.57273, + "y": 56.62129 }, { "body": null, "index": 13, "isInternal": false, - "x": 866.569294641413, - "y": 44.92728588676204 + "x": 866.56929, + "y": 44.92729 }, { "body": null, "index": 14, "isInternal": false, - "x": 869.3649558831366, - "y": 33.571463405694274 + "x": 869.36496, + "y": 33.57146 }, { "body": null, "index": 15, "isInternal": false, - "x": 874.7969110344586, - "y": 23.21486583535172 + "x": 874.79691, + "y": 23.21487 }, { "body": null, "index": 16, "isInternal": false, - "x": 882.5493368171855, - "y": 14.458586061194644 + "x": 882.54934, + "y": 14.45859 }, { "body": null, "index": 17, "isInternal": false, - "x": 892.1713832028166, - "y": 7.812756665794645 + "x": 892.17138, + "y": 7.81276 }, { "body": null, "index": 18, "isInternal": false, - "x": 903.1051634145341, - "y": 3.6625416976451106 + "x": 903.10516, + "y": 3.66254 }, { "body": null, "index": 19, "isInternal": false, - "x": 914.7137486335691, - "y": 2.2501284392801466 + "x": 914.71375, + "y": 2.25013 }, { "body": null, "index": 20, "isInternal": false, - "x": 926.323162410938, - "y": 3.655715059107365 + "x": 926.32316, + "y": 3.65572 }, { "body": null, "index": 21, "isInternal": false, - "x": 937.2593812538913, - "y": 7.7994997324503075 + "x": 937.25938, + "y": 7.7995 }, { "body": null, "index": 22, "isInternal": false, - "x": 946.8853340362668, - "y": 14.439669762763984 + "x": 946.88533, + "y": 14.43967 }, { "body": null, "index": 23, "isInternal": false, - "x": 954.6429075831217, - "y": 23.191389231824985 + "x": 954.64291, + "y": 23.19139 }, { "body": null, "index": 24, "isInternal": false, - "x": 960.0809519619445, - "y": 33.54479076629429 + "x": 960.08095, + "y": 33.54479 }, { "body": null, "index": 25, "isInternal": false, - "x": 962.8832904782479, - "y": 44.89896730358855 + "x": 962.88329, + "y": 44.89897 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 578 }, @@ -5387,13 +5387,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5415,7 +5415,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356547, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5452,12 +5452,12 @@ } }, { - "x": 1047.1051858180972, - "y": 26.4207095676793 + "x": 1047.10519, + "y": 26.42071 }, { - "x": 962.8725040622674, - "y": 2.2642452329742233 + "x": 962.8725, + "y": 2.26425 }, { "category": 1, @@ -5474,16 +5474,16 @@ "y": 0 }, { - "x": 1004.9888449401823, - "y": 14.34247740032676 + "x": 1004.98884, + "y": 14.34248 }, { "x": 0, "y": 0 }, { - "x": 1004.9888449401823, - "y": 17.249748115362415 + "x": 1004.98884, + "y": 17.24975 }, { "endCol": 21, @@ -5507,7 +5507,7 @@ }, { "x": 0, - "y": -2.9072707150356547 + "y": -2.90727 }, [ { @@ -5527,36 +5527,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 962.8725040622674, - "y": 2.2642452329742233 + "x": 962.8725, + "y": 2.26425 }, { "body": null, "index": 1, "isInternal": false, - "x": 1047.1051858180972, - "y": 2.2642452329742233 + "x": 1047.10519, + "y": 2.26425 }, { "body": null, "index": 2, "isInternal": false, - "x": 1047.1051858180972, - "y": 26.4207095676793 + "x": 1047.10519, + "y": 26.42071 }, { "body": null, "index": 3, "isInternal": false, - "x": 962.8725040622674, - "y": 26.4207095676793 + "x": 962.8725, + "y": 26.42071 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 600 }, @@ -5577,13 +5577,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5605,7 +5605,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356565, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5642,12 +5642,12 @@ } }, { - "x": 1096.491759892171, - "y": 23.129342969599726 + "x": 1096.49176, + "y": 23.12934 }, { - "x": 1047.1051858180972, - "y": 2.2642452329742215 + "x": 1047.10519, + "y": 2.26425 }, { "category": 1, @@ -5664,16 +5664,16 @@ "y": 0 }, { - "x": 1071.7984728551342, - "y": 12.696794101286976 + "x": 1071.79847, + "y": 12.69679 }, { "x": 0, "y": 0 }, { - "x": 1071.7984728551342, - "y": 15.604064816322632 + "x": 1071.79847, + "y": 15.60406 }, { "endCol": 22, @@ -5697,7 +5697,7 @@ }, { "x": 0, - "y": -2.9072707150356565 + "y": -2.90727 }, [ { @@ -5717,43 +5717,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 1047.1051858180972, - "y": 2.2642452329742215 + "x": 1047.10519, + "y": 2.26425 }, { "body": null, "index": 1, "isInternal": false, - "x": 1096.491759892171, - "y": 2.2642452329742215 + "x": 1096.49176, + "y": 2.26425 }, { "body": null, "index": 2, "isInternal": false, - "x": 1096.491759892171, - "y": 23.129342969599726 + "x": 1096.49176, + "y": 23.12934 }, { "body": null, "index": 3, "isInternal": false, - "x": 1047.1051858180972, - "y": 23.129342969599726 + "x": 1047.10519, + "y": 23.12934 }, { - "angle": -0.17003603562450043, - "anglePrev": -0.1303479524890572, - "angularSpeed": 0.03549442744577603, - "angularVelocity": -0.03983710022101267, - "area": 2157.165332, + "angle": -0.17004, + "anglePrev": -0.13035, + "angularSpeed": 0.03549, + "angularVelocity": -0.03984, + "area": 2157.16533, "axes": { "#": 622 }, "bounds": { "#": 636 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 639 }, @@ -5768,13 +5768,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5796,7 +5796,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6618060995495865, + "speed": 1.66181, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5850,56 +5850,56 @@ } ], { - "x": -0.9974365020102348, - "y": -0.07155714120607781 + "x": -0.99744, + "y": -0.07156 }, { - "x": -0.9513315533707284, - "y": -0.3081692320158481 + "x": -0.95133, + "y": -0.30817 }, { - "x": -0.849922504013321, - "y": -0.5269077121960983 + "x": -0.84992, + "y": -0.52691 }, { - "x": -0.6991484132697294, - "y": -0.71497657040103 + "x": -0.69915, + "y": -0.71498 }, { - "x": -0.5077316782219172, - "y": -0.8615152598358053 + "x": -0.50773, + "y": -0.86152 }, { - "x": -0.2867522954114891, - "y": -0.958004760466378 + "x": -0.28675, + "y": -0.958 }, { - "x": -0.049217141508615565, - "y": -0.998788102142652 + "x": -0.04922, + "y": -0.99879 }, { - "x": 0.19129144981005924, - "y": -0.9815332807549446 + "x": 0.19129, + "y": -0.98153 }, { - "x": 0.4206245866432293, - "y": -0.907234786100716 + "x": 0.42062, + "y": -0.90723 }, { - "x": 0.6254952548494408, - "y": -0.7802279706347581 + "x": 0.6255, + "y": -0.78023 }, { - "x": 0.794057993462167, - "y": -0.6078420049806008 + "x": 0.79406, + "y": -0.60784 }, { - "x": 0.9164456953113179, - "y": -0.40015907779951093 + "x": 0.91645, + "y": -0.40016 }, { - "x": 0.9855786696780355, - "y": -0.1692178651197148 + "x": 0.98558, + "y": -0.16922 }, { "max": { @@ -5910,12 +5910,12 @@ } }, { - "x": 71.93678871773623, - "y": 158.8005664022771 + "x": 71.93679, + "y": 158.80057 }, { - "x": 19.32397281075596, - "y": 104.60940616147406 + "x": 19.32397, + "y": 104.60941 }, { "category": 1, @@ -5932,16 +5932,16 @@ "y": 0 }, { - "x": 45.62409674002979, - "y": 132.53586556863434 + "x": 45.6241, + "y": 132.53587 }, { "x": 0, "y": 0 }, { - "x": 45.52512545447509, - "y": 134.00590796548317 + "x": 45.52513, + "y": 134.00591 }, { "endCol": 1, @@ -5964,8 +5964,8 @@ "yScale": 1 }, { - "x": 0.1392401640917882, - "y": -1.4683712356720378 + "x": 0.13924, + "y": -1.46837 }, [ { @@ -6051,190 +6051,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 71.9242206693036, - "y": 131.2407372719631 + "x": 71.92422, + "y": 131.24074 }, { "body": null, "index": 1, "isInternal": false, - "x": 71.47001637279547, - "y": 137.57190055030566 + "x": 71.47002, + "y": 137.5719 }, { "body": null, "index": 2, "isInternal": false, - "x": 69.51373291708319, - "y": 143.61103095466905 + "x": 69.51373, + "y": 143.61103 }, { "body": null, "index": 3, "isInternal": false, - "x": 66.16857001278757, - "y": 149.00690800513306 + "x": 66.16857, + "y": 149.00691 }, { "body": null, "index": 4, "isInternal": false, - "x": 61.63010666401118, - "y": 153.44489881537746 + "x": 61.63011, + "y": 153.4449 }, { "body": null, "index": 5, "isInternal": false, - "x": 56.16160667385652, - "y": 156.66774443030823 + "x": 56.16161, + "y": 156.66774 }, { "body": null, "index": 6, "isInternal": false, - "x": 50.07994156436211, - "y": 158.48812309859633 + "x": 50.07994, + "y": 158.48812 }, { "body": null, "index": 7, "isInternal": false, - "x": 43.73937312123455, - "y": 158.8005664022771 + "x": 43.73937, + "y": 158.80057 }, { "body": null, "index": 8, "isInternal": false, - "x": 37.50905430231094, - "y": 157.58633684631735 + "x": 37.50905, + "y": 157.58634 }, { "body": null, "index": 9, "isInternal": false, - "x": 31.750191710291197, - "y": 154.9163342908438 + "x": 31.75019, + "y": 154.91633 }, { "body": null, "index": 10, "isInternal": false, - "x": 26.796782215897778, - "y": 150.94527166468777 + "x": 26.79678, + "y": 150.94527 }, { "body": null, "index": 11, "isInternal": false, - "x": 22.938151520509642, - "y": 145.9045266645306 + "x": 22.93815, + "y": 145.90453 }, { "body": null, "index": 12, "isInternal": false, - "x": 20.3981678185359, - "y": 140.08744726042173 + "x": 20.39817, + "y": 140.08745 }, { "body": null, "index": 13, "isInternal": false, - "x": 19.32397281075596, - "y": 133.83099386530557 + "x": 19.32397, + "y": 133.83099 }, { "body": null, "index": 14, "isInternal": false, - "x": 19.778177107264096, - "y": 127.49983058696303 + "x": 19.77818, + "y": 127.49983 }, { "body": null, "index": 15, "isInternal": false, - "x": 21.734460562976373, - "y": 121.46070018259958 + "x": 21.73446, + "y": 121.4607 }, { "body": null, "index": 16, "isInternal": false, - "x": 25.07962346727202, - "y": 116.06482313213556 + "x": 25.07962, + "y": 116.06482 }, { "body": null, "index": 17, "isInternal": false, - "x": 29.618086816048393, - "y": 111.62683232189116 + "x": 29.61809, + "y": 111.62683 }, { "body": null, "index": 18, "isInternal": false, - "x": 35.08658680620306, - "y": 108.40398670696041 + "x": 35.08659, + "y": 108.40399 }, { "body": null, "index": 19, "isInternal": false, - "x": 41.168251915697454, - "y": 106.58360803867225 + "x": 41.16825, + "y": 106.58361 }, { "body": null, "index": 20, "isInternal": false, - "x": 47.50882035882501, - "y": 106.27116473499152 + "x": 47.50882, + "y": 106.27116 }, { "body": null, "index": 21, "isInternal": false, - "x": 53.73913917774863, - "y": 107.48539429095126 + "x": 53.73914, + "y": 107.48539 }, { "body": null, "index": 22, "isInternal": false, - "x": 59.498001769768365, - "y": 110.15539684642488 + "x": 59.498, + "y": 110.1554 }, { "body": null, "index": 23, "isInternal": false, - "x": 64.4514112641618, - "y": 114.1264594725809 + "x": 64.45141, + "y": 114.12646 }, { "body": null, "index": 24, "isInternal": false, - "x": 68.31004195954992, - "y": 119.16720447273805 + "x": 68.31004, + "y": 119.1672 }, { "body": null, "index": 25, "isInternal": false, - "x": 70.85002566152366, - "y": 124.98428387684693 + "x": 70.85003, + "y": 124.98428 }, { - "angle": -0.013632198538076009, - "anglePrev": -0.008100026061653609, - "angularSpeed": 0.0038528896918866027, - "angularVelocity": -0.005743454381081968, - "area": 2399.6281959999997, + "angle": -0.01363, + "anglePrev": -0.0081, + "angularSpeed": 0.00385, + "angularVelocity": -0.00574, + "area": 2399.6282, "axes": { "#": 677 }, @@ -6255,13 +6255,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6283,7 +6283,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6859509011618625, + "speed": 2.68595, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6304,12 +6304,12 @@ } ], { - "x": -0.013631776314556362, - "y": -0.9999070830204723 + "x": -0.01363, + "y": -0.99991 }, { - "x": 0.9999070830204723, - "y": -0.013631776314556362 + "x": 0.99991, + "y": -0.01363 }, { "max": { @@ -6320,12 +6320,12 @@ } }, { - "x": 119.1742048519399, - "y": 149.44235128489458 + "x": 119.1742, + "y": 149.44235 }, { - "x": 69.50386420000014, - "y": 97.10726890424117 + "x": 69.50386, + "y": 97.10727 }, { "category": 1, @@ -6342,16 +6342,16 @@ "y": 0 }, { - "x": 94.34959757024704, - "y": 124.61774400320176 + "x": 94.3496, + "y": 124.61774 }, { "x": 0, "y": 0 }, { - "x": 94.25277693207522, - "y": 127.25044186744628 + "x": 94.25278, + "y": 127.25044 }, { "endCol": 2, @@ -6374,8 +6374,8 @@ "yScale": 1 }, { - "x": 0.11543371443876538, - "y": -2.63608493041707 + "x": 0.11543, + "y": -2.63608 }, [ { @@ -6395,36 +6395,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 119.1742048519399, - "y": 148.7745850903497 + "x": 119.1742, + "y": 148.77459 }, { "body": null, "index": 1, "isInternal": false, - "x": 70.19275648309906, - "y": 149.44235128489458 + "x": 70.19276, + "y": 149.44235 }, { "body": null, "index": 2, "isInternal": false, - "x": 69.52499028855418, - "y": 100.46090291605375 + "x": 69.52499, + "y": 100.4609 }, { "body": null, "index": 3, "isInternal": false, - "x": 118.50643865739502, - "y": 99.79313672150892 + "x": 118.50644, + "y": 99.79314 }, { - "angle": -0.008132791647870114, - "anglePrev": -0.0049658210163389845, - "angularSpeed": 0.0022371587499779464, - "angularVelocity": -0.003578915672997402, - "area": 1489.7843794189994, + "angle": -0.00813, + "anglePrev": -0.00497, + "angularSpeed": 0.00224, + "angularVelocity": -0.00358, + "area": 1489.78438, "axes": { "#": 699 }, @@ -6445,13 +6445,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6473,7 +6473,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8169650254871144, + "speed": 2.81697, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6494,12 +6494,12 @@ } ], { - "x": 0.008132701994575789, - "y": 0.9999669290322892 + "x": 0.00813, + "y": 0.99997 }, { - "x": -0.9999669290322892, - "y": 0.008132701994575789 + "x": -0.99997, + "y": 0.00813 }, { "max": { @@ -6510,12 +6510,12 @@ } }, { - "x": 152.0478701243681, - "y": 141.8081741064491 + "x": 152.04787, + "y": 141.80817 }, { - "x": 116.29006966388428, - "y": 96.6356701348005 + "x": 116.29007, + "y": 96.63567 }, { "category": 1, @@ -6532,16 +6532,16 @@ "y": 0 }, { - "x": 134.17092003739333, - "y": 120.63040328331233 + "x": 134.17092, + "y": 120.6304 }, { - "x": -1.4113601361474917, - "y": -0.030435222061082953 + "x": -1.41136, + "y": -0.03044 }, { - "x": 134.12901559440766, - "y": 123.43271686296406 + "x": 134.12902, + "y": 123.43272 }, { "endCol": 3, @@ -6564,8 +6564,8 @@ "yScale": 1 }, { - "x": 0.057590540060118656, - "y": -2.807235231007695 + "x": 0.05759, + "y": -2.80724 }, [ { @@ -6585,36 +6585,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 116.29396995041849, - "y": 99.74063532552385 + "x": 116.29397, + "y": 99.74064 }, { "body": null, "index": 1, "isInternal": false, - "x": 151.70573605311282, - "y": 99.45263246017558 + "x": 151.70574, + "y": 99.45263 }, { "body": null, "index": 2, "isInternal": false, - "x": 152.0478701243681, - "y": 141.52017124110085 + "x": 152.04787, + "y": 141.52017 }, { "body": null, "index": 3, "isInternal": false, - "x": 116.63610402167386, - "y": 141.8081741064491 + "x": 116.6361, + "y": 141.80817 }, { - "angle": -0.0037774799504086552, - "anglePrev": -0.002464250656145218, - "angularSpeed": 0.0010314231725018618, - "angularVelocity": -0.0014533562225900417, - "area": 1765.3675322216507, + "angle": -0.00378, + "anglePrev": -0.00246, + "angularSpeed": 0.00103, + "angularVelocity": -0.00145, + "area": 1765.36753, "axes": { "#": 721 }, @@ -6635,13 +6635,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6663,7 +6663,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.878138865350955, + "speed": 2.87814, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6684,12 +6684,12 @@ } ], { - "x": 0.003777470966714802, - "y": 0.9999928653310959 + "x": 0.00378, + "y": 0.99999 }, { - "x": -0.9999928653310959, - "y": 0.003777470966714802 + "x": -0.99999, + "y": 0.00378 }, { "max": { @@ -6700,12 +6700,12 @@ } }, { - "x": 190.82029973869172, - "y": 141.70045893519273 + "x": 190.8203, + "y": 141.70046 }, { - "x": 148.88352510396498, - "y": 96.39470115160121 + "x": 148.88353, + "y": 96.3947 }, { "category": 1, @@ -6722,16 +6722,16 @@ "y": 0 }, { - "x": 169.84515777101277, - "y": 120.48663362362255 + "x": 169.84516, + "y": 120.48663 }, { "x": 0, "y": 0 }, { - "x": 169.8164466006011, - "y": 123.36212933343309 + "x": 169.81645, + "y": 123.36213 }, { "endCol": 4, @@ -6754,8 +6754,8 @@ "yScale": 1 }, { - "x": 0.03724543618179155, - "y": -2.877743280245838 + "x": 0.03725, + "y": -2.87774 }, [ { @@ -6775,36 +6775,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 148.88352510396498, - "y": 99.43057018978723 + "x": 148.88353, + "y": 99.43057 }, { "body": null, "index": 1, "isInternal": false, - "x": 190.64711602133445, - "y": 99.27280831205235 + "x": 190.64712, + "y": 99.27281 }, { "body": null, "index": 2, "isInternal": false, - "x": 190.80679043806055, - "y": 141.54269705745784 + "x": 190.80679, + "y": 141.5427 }, { "body": null, "index": 3, "isInternal": false, - "x": 149.04319952069108, - "y": 141.70045893519273 + "x": 149.0432, + "y": 141.70046 }, { - "angle": -0.0009037104038105393, - "anglePrev": -0.000491417431349512, - "angularSpeed": 0.0003785673509738079, - "angularVelocity": -0.00047027890230514464, - "area": 1919.5457599999997, + "angle": -0.0009, + "anglePrev": -0.00049, + "angularSpeed": 0.00038, + "angularVelocity": -0.00047, + "area": 1919.54576, "axes": { "#": 743 }, @@ -6825,13 +6825,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6853,7 +6853,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905644514999238, + "speed": 2.90564, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6877,16 +6877,16 @@ } ], { - "x": -0.5007596704510746, - "y": -0.8655863633686304 + "x": -0.50076, + "y": -0.86559 }, { - "x": 0.499194374565822, - "y": -0.8664900324884512 + "x": 0.49919, + "y": -0.86649 }, { - "x": 0.9999995916537808, - "y": -0.0009037102808016272 + "x": 1, + "y": -0.0009 }, { "max": { @@ -6897,12 +6897,12 @@ } }, { - "x": 234.492339035142, - "y": 153.53858706403648 + "x": 234.49234, + "y": 153.53859 }, { - "x": 187.36638278680994, - "y": 96.27104363357293 + "x": 187.36638, + "y": 96.27104 }, { "category": 1, @@ -6919,16 +6919,16 @@ "y": 0 }, { - "x": 210.9186555007663, - "y": 126.35759816329502 + "x": 210.91866, + "y": 126.3576 }, { - "x": -0.8558307063275269, - "y": -0.03002266592886868 + "x": -0.85583, + "y": -0.03002 }, { - "x": 210.89060738666186, - "y": 129.26390857920964 + "x": 210.89061, + "y": 129.26391 }, { "endCol": 4, @@ -6951,8 +6951,8 @@ "yScale": 1 }, { - "x": 0.03375152608307985, - "y": -2.9070200835993205 + "x": 0.03375, + "y": -2.90702 }, [ { @@ -6978,50 +6978,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 234.47092821472268, - "y": 139.92731927345147 + "x": 234.47093, + "y": 139.92732 }, { "body": null, "index": 1, "isInternal": false, - "x": 210.9432192499088, - "y": 153.53858706403648 + "x": 210.94322, + "y": 153.53859 }, { "body": null, "index": 2, "isInternal": false, - "x": 187.3909474396627, - "y": 139.96986595347164 + "x": 187.39095, + "y": 139.96987 }, { "body": null, "index": 3, "isInternal": false, - "x": 187.36638278680994, - "y": 112.78787705313859 + "x": 187.36638, + "y": 112.78788 }, { "body": null, "index": 4, "isInternal": false, - "x": 210.89409175162382, - "y": 99.17660926255365 + "x": 210.89409, + "y": 99.17661 }, { "body": null, "index": 5, "isInternal": false, - "x": 234.4463635618699, - "y": 112.74533037311846 + "x": 234.44636, + "y": 112.74533 }, { - "angle": 0.0003968374962754574, - "anglePrev": 0.00030329103880200113, - "angularSpeed": 0.00008781567703132468, - "angularVelocity": 0.00009568597445227427, - "area": 6052.328004, + "angle": 0.0004, + "anglePrev": 0.0003, + "angularSpeed": 0.00009, + "angularVelocity": 0.0001, + "area": 6052.328, "axes": { "#": 768 }, @@ -7042,13 +7042,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -7070,7 +7070,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9107558563292475, + "speed": 2.91076, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7094,16 +7094,16 @@ } ], { - "x": -0.49964597037610536, - "y": -0.8662297064214088 + "x": -0.49965, + "y": -0.86623 }, { - "x": 0.5003333177912329, - "y": -0.8658328771235344 + "x": 0.50033, + "y": -0.86583 }, { - "x": 0.9999999212600018, - "y": 0.0003968374858597961 + "x": 1, + "y": 0.0004 }, { "max": { @@ -7114,12 +7114,12 @@ } }, { - "x": 314.6594394797798, - "y": 195.8197136904332 + "x": 314.65944, + "y": 195.81971 }, { - "x": 231.02049957155404, - "y": 96.37904701675289 + "x": 231.0205, + "y": 96.37905 }, { "category": 1, @@ -7136,16 +7136,16 @@ "y": 0 }, { - "x": 272.8290731593471, - "y": 147.55471749081923 + "x": 272.82907, + "y": 147.55472 }, { - "x": 0.46837771860092714, - "y": 0.0020698470676999347 + "x": 0.46838, + "y": 0.00207 }, { - "x": 272.80104273151625, - "y": 150.46632844993377 + "x": 272.80104, + "y": 150.46633 }, { "endCol": 6, @@ -7168,8 +7168,8 @@ "yScale": 1 }, { - "x": 0.02839844820101689, - "y": -2.911596723450799 + "x": 0.0284, + "y": -2.9116 }, [ { @@ -7195,50 +7195,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 314.6184929890476, - "y": 171.7043030006583 + "x": 314.61849, + "y": 171.7043 }, { "body": null, "index": 1, "isInternal": false, - "x": 272.8099197980921, - "y": 195.8197136904332 + "x": 272.80992, + "y": 195.81971 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.02049957155404, - "y": 171.6711281805154 + "x": 231.0205, + "y": 171.67113 }, { "body": null, "index": 3, "isInternal": false, - "x": 231.0396533296465, - "y": 123.40513198098017 + "x": 231.03965, + "y": 123.40513 }, { "body": null, "index": 4, "isInternal": false, - "x": 272.8482265206021, - "y": 99.28972129120531 + "x": 272.84823, + "y": 99.28972 }, { "body": null, "index": 5, "isInternal": false, - "x": 314.63764674714014, - "y": 123.43830680112308 + "x": 314.63765, + "y": 123.43831 }, { - "angle": -0.00013416487099172762, - "anglePrev": -0.0001408264231248385, - "angularSpeed": 0.000013794262729797865, - "angularVelocity": 0.000011621769218086731, - "area": 2220.023313496789, + "angle": -0.00013, + "anglePrev": -0.00014, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 2220.02331, "axes": { "#": 793 }, @@ -7259,13 +7259,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7287,7 +7287,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9069243505677202, + "speed": 2.90692, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7308,12 +7308,12 @@ } ], { - "x": 0.00013416487058922827, - "y": 0.9999999909998937 + "x": 0.00013, + "y": 1 }, { - "x": -0.9999999909998937, - "y": 0.00013416487058922827 + "x": -1, + "y": 0.00013 }, { "max": { @@ -7324,12 +7324,12 @@ } }, { - "x": 356.76176782099895, - "y": 148.45961552136995 + "x": 356.76177, + "y": 148.45962 }, { - "x": 311.580620651315, - "y": 96.37825929082787 + "x": 311.58062, + "y": 96.37826 }, { "category": 1, @@ -7346,16 +7346,16 @@ "y": 0 }, { - "x": 334.1596003730049, - "y": 123.87235334013776 + "x": 334.1596, + "y": 123.87235 }, { - "x": 2.3024687887109927, - "y": -0.0003237083990973776 + "x": 2.30247, + "y": -0.00032 }, { - "x": 334.13065788221587, - "y": 126.77997789400332 + "x": 334.13066, + "y": 126.77998 }, { "endCol": 7, @@ -7378,8 +7378,8 @@ "yScale": 1 }, { - "x": 0.029209931946752477, - "y": -2.9075516592292843 + "x": 0.02921, + "y": -2.90755 }, [ { @@ -7399,36 +7399,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 311.580620651315, - "y": 99.29114888570207 + "x": 311.58062, + "y": 99.29115 }, { "body": null, "index": 1, "isInternal": false, - "x": 356.73198341367214, - "y": 99.28509115890563 + "x": 356.73198, + "y": 99.28509 }, { "body": null, "index": 2, "isInternal": false, - "x": 356.7385800946948, - "y": 148.45355779457347 + "x": 356.73858, + "y": 148.45356 }, { "body": null, "index": 3, "isInternal": false, - "x": 311.5872173323376, - "y": 148.45961552136995 + "x": 311.58722, + "y": 148.45962 }, { - "angle": -0.00016181884574446907, - "anglePrev": -0.00011105613980048356, - "angularSpeed": 0.00006441698271782335, - "angularVelocity": -0.00005372061137694078, - "area": 2601.1074479999997, + "angle": -0.00016, + "anglePrev": -0.00011, + "angularSpeed": 0.00006, + "angularVelocity": -0.00005, + "area": 2601.10745, "axes": { "#": 815 }, @@ -7449,13 +7449,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7477,7 +7477,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.908588430383429, + "speed": 2.90859, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7501,16 +7501,16 @@ } ], { - "x": -0.5001270476801039, - "y": -0.8659520403456434 + "x": -0.50013, + "y": -0.86595 }, { - "x": 0.49984676677372647, - "y": -0.8661138549554854 + "x": 0.49985, + "y": -0.86611 }, { - "x": 0.9999999869073306, - "y": -0.00016181884503825556 + "x": 1, + "y": -0.00016 }, { "max": { @@ -7521,12 +7521,12 @@ } }, { - "x": 409.13944026017873, - "y": 162.5475805900061 + "x": 409.13944, + "y": 162.54758 }, { - "x": 354.30716214554167, - "y": 96.35708518535235 + "x": 354.30716, + "y": 96.35709 }, { "category": 1, @@ -7543,16 +7543,16 @@ "y": 0 }, { - "x": 381.71172192272365, - "y": 130.9065810042713 + "x": 381.71172, + "y": 130.90658 }, { - "x": 4.155551842045788, - "y": -0.0026833332175621957 + "x": 4.15555, + "y": -0.00268 }, { - "x": 381.68287594683255, - "y": 133.81562902520537 + "x": 381.68288, + "y": 133.81563 }, { "endCol": 8, @@ -7575,8 +7575,8 @@ "yScale": 1 }, { - "x": 0.028617717114002517, - "y": -2.909110235892598 + "x": 0.02862, + "y": -2.90911 }, [ { @@ -7602,50 +7602,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 409.11628169990564, - "y": 146.72314663714042 + "x": 409.11628, + "y": 146.72315 }, { "body": null, "index": 1, "isInternal": false, - "x": 381.71684203279955, - "y": 162.5475805900061 + "x": 381.71684, + "y": 162.54758 }, { "body": null, "index": 2, "isInternal": false, - "x": 354.31228241743634, - "y": 146.7320149571239 + "x": 354.31228, + "y": 146.73201 }, { "body": null, "index": 3, "isInternal": false, - "x": 354.30716214554167, - "y": 115.09001537140217 + "x": 354.30716, + "y": 115.09002 }, { "body": null, "index": 4, "isInternal": false, - "x": 381.70660181264776, - "y": 99.2655814185365 + "x": 381.7066, + "y": 99.26558 }, { "body": null, "index": 5, "isInternal": false, - "x": 409.111161428011, - "y": 115.08114705141871 + "x": 409.11116, + "y": 115.08115 }, { - "angle": -0.00007669236366627312, - "anglePrev": -0.00008486321104853115, - "angularSpeed": 0.000015701855028378046, - "angularVelocity": 0.000010112724927145494, - "area": 1413.3088360000002, + "angle": -0.00008, + "anglePrev": -0.00008, + "angularSpeed": 0.00002, + "angularVelocity": 0.00001, + "area": 1413.30884, "axes": { "#": 840 }, @@ -7666,13 +7666,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7694,7 +7694,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.910925311815922, + "speed": 2.91093, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7715,12 +7715,12 @@ } ], { - "x": -0.00007669236359109263, - "y": -0.9999999970591407 + "x": -0.00008, + "y": -1 }, { - "x": 0.9999999970591407, - "y": -0.00007669236359109263 + "x": 1, + "y": -0.00008 }, { "max": { @@ -7731,12 +7731,12 @@ } }, { - "x": 444.98789129871915, - "y": 136.86959530406742 + "x": 444.98789, + "y": 136.8696 }, { - "x": 407.3681572097627, - "y": 96.36187662278809 + "x": 407.36816, + "y": 96.36188 }, { "category": 1, @@ -7753,16 +7753,16 @@ "y": 0 }, { - "x": 426.16659874084183, - "y": 118.07115377298838 + "x": 426.1666, + "y": 118.07115 }, { - "x": 5.401444102668367, - "y": -0.0009555788801166561 + "x": 5.40144, + "y": -0.00096 }, { - "x": 426.13806818592667, - "y": 120.98178645289174 + "x": 426.13807, + "y": 120.98179 }, { "endCol": 9, @@ -7785,8 +7785,8 @@ "yScale": 1 }, { - "x": 0.029257530090774253, - "y": -2.910775138388516 + "x": 0.02926, + "y": -2.91078 }, [ { @@ -7806,36 +7806,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 444.96504027192094, - "y": 136.86671213135057 + "x": 444.96504, + "y": 136.86671 }, { "body": null, "index": 1, "isInternal": false, - "x": 407.3710403824796, - "y": 136.86959530406742 + "x": 407.37104, + "y": 136.8696 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.3681572097627, - "y": 99.27559541462617 + "x": 407.36816, + "y": 99.2756 }, { "body": null, "index": 3, "isInternal": false, - "x": 444.9621570992041, - "y": 99.27271224190932 + "x": 444.96216, + "y": 99.27271 }, { - "angle": 0.00008179203463960782, - "anglePrev": -0.000010861585706060593, - "angularSpeed": 0.0000753810076314073, - "angularVelocity": 0.00009360398549052095, - "area": 5460.808751999999, + "angle": 0.00008, + "anglePrev": -0.00001, + "angularSpeed": 0.00008, + "angularVelocity": 0.00009, + "area": 5460.80875, "axes": { "#": 862 }, @@ -7856,13 +7856,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7884,7 +7884,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9084298481285633, + "speed": 2.90843, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7908,16 +7908,16 @@ } ], { - "x": -0.4999272815284707, - "y": -0.8660673837430627 + "x": -0.49993, + "y": -0.86607 }, { - "x": 0.5000689496657774, - "y": -0.8659855920164988 + "x": 0.50007, + "y": -0.86599 }, { - "x": 0.9999999966550316, - "y": 0.00008179203454841058 + "x": 1, + "y": 0.00008 }, { "max": { @@ -7928,12 +7928,12 @@ } }, { - "x": 523.388557087664, - "y": 188.4123637040154 + "x": 523.38856, + "y": 188.41236 }, { - "x": 443.9543634205134, - "y": 93.81202076342869 + "x": 443.95436, + "y": 93.81202 }, { "category": 1, @@ -7950,16 +7950,16 @@ "y": 0 }, { - "x": 483.66023820651264, - "y": 142.5663638573688 + "x": 483.66024, + "y": 142.56636 }, { "x": 0, "y": 0 }, { - "x": 483.63237053016417, - "y": 145.47311355512576 + "x": 483.63237, + "y": 145.47311 }, { "endCol": 10, @@ -7982,8 +7982,8 @@ "yScale": 1 }, { - "x": 0.028072297157393677, - "y": -2.906727437594924 + "x": 0.02807, + "y": -2.90673 }, [ { @@ -8009,50 +8009,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 523.362363154896, - "y": 165.4926112516318 + "x": 523.36236, + "y": 165.49261 }, { "body": null, "index": 1, "isInternal": false, - "x": 483.65648836889676, - "y": 188.4123637040154 + "x": 483.65649, + "y": 188.41236 }, { "body": null, "index": 2, "isInternal": false, - "x": 443.9543634205134, - "y": 165.4861163097524 + "x": 443.95436, + "y": 165.48612 }, { "body": null, "index": 3, "isInternal": false, - "x": 443.95811325812923, - "y": 119.64011646310583 + "x": 443.95811, + "y": 119.64012 }, { "body": null, "index": 4, "isInternal": false, - "x": 483.66398804412853, - "y": 96.72036401072224 + "x": 483.66399, + "y": 96.72036 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.366112992512, - "y": 119.64661140498524 + "x": 523.36611, + "y": 119.64661 }, { - "angle": -0.0006652222530514394, - "anglePrev": -0.0009299333278021283, - "angularSpeed": 0.00026471107475068887, - "angularVelocity": 0.00026471107475068887, - "area": 451.6137937679406, + "angle": -0.00067, + "anglePrev": -0.00093, + "angularSpeed": 0.00026, + "angularVelocity": 0.00026, + "area": 451.61379, "axes": { "#": 887 }, @@ -8073,13 +8073,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -8101,7 +8101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8624936894419846, + "speed": 2.86249, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8122,12 +8122,12 @@ } ], { - "x": 0.0006652222039890104, - "y": 0.999999778739685 + "x": 0.00067, + "y": 1 }, { - "x": -0.999999778739685, - "y": 0.0006652222039890104 + "x": -1, + "y": 0.00067 }, { "max": { @@ -8138,12 +8138,12 @@ } }, { - "x": 567.501666966954, - "y": 121.7848107119843 + "x": 567.50167, + "y": 121.78481 }, { - "x": 547.3162525536843, - "y": 99.38160869041513 + "x": 547.31625, + "y": 99.38161 }, { "category": 1, @@ -8160,16 +8160,16 @@ "y": 0 }, { - "x": 557.4089597603191, - "y": 110.58320970119975 + "x": 557.40896, + "y": 110.58321 }, { "x": 0, "y": 0 }, { - "x": 557.4135476138598, - "y": 113.44569971405483 + "x": 557.41355, + "y": 113.4457 }, { "endCol": 11, @@ -8192,8 +8192,8 @@ "yScale": 1 }, { - "x": -0.004587853540712104, - "y": -2.8624900128550794 + "x": -0.00459, + "y": -2.86249 }, [ { @@ -8213,36 +8213,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 547.3162525536843, - "y": 99.39502657130595 + "x": 547.31625, + "y": 99.39503 }, { "body": null, "index": 1, "isInternal": false, - "x": 567.4867727821056, - "y": 99.38160869041513 + "x": 567.48677, + "y": 99.38161 }, { "body": null, "index": 2, "isInternal": false, - "x": 567.501666966954, - "y": 121.77139283109352 + "x": 567.50167, + "y": 121.77139 }, { "body": null, "index": 3, "isInternal": false, - "x": 547.3311467385327, - "y": 121.7848107119843 + "x": 547.33115, + "y": 121.78481 }, { - "angle": 0.00026115318850659377, - "anglePrev": 0.00013001231698610472, - "angularSpeed": 0.00013114087152048907, - "angularVelocity": 0.00013114087152048907, - "area": 3021.679068443158, + "angle": 0.00026, + "anglePrev": 0.00013, + "angularSpeed": 0.00013, + "angularVelocity": 0.00013, + "area": 3021.67907, "axes": { "#": 909 }, @@ -8263,13 +8263,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -8291,7 +8291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907744544823594, + "speed": 2.90774, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8312,12 +8312,12 @@ } ], { - "x": -0.0002611531855381096, - "y": 0.9999999658995062 + "x": -0.00026, + "y": 1 }, { - "x": -0.9999999658995062, - "y": -0.0002611531855381096 + "x": -1, + "y": -0.00026 }, { "max": { @@ -8328,12 +8328,12 @@ } }, { - "x": 669.3884400396778, - "y": 110.08692831155611 + "x": 669.38844, + "y": 110.08693 }, { - "x": 567.5451515327596, - "y": 77.479752192607 + "x": 567.54515, + "y": 77.47975 }, { "category": 1, @@ -8350,16 +8350,16 @@ "y": 0 }, { - "x": 618.4679862648933, - "y": 95.2372120370916 + "x": 618.46799, + "y": 95.23721 }, { - "x": 0.03590850546030952, - "y": -1.3417747786440055 + "x": 0.03591, + "y": -1.34177 }, { - "x": 618.4703672222424, - "y": 98.14495560711174 + "x": 618.47037, + "y": 98.14496 }, { "endCol": 13, @@ -8382,8 +8382,8 @@ "yScale": 1 }, { - "x": -0.0023809573491291756, - "y": -2.9077435700201404 + "x": -0.00238, + "y": -2.90774 }, [ { @@ -8403,36 +8403,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 567.5552816466696, - "y": 80.38749576262714 + "x": 567.55528, + "y": 80.3875 }, { "body": null, "index": 1, "isInternal": false, - "x": 669.3884400396778, - "y": 80.41408981724175 + "x": 669.38844, + "y": 80.41409 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.3806908831169, - "y": 110.08692831155611 + "x": 669.38069, + "y": 110.08693 }, { "body": null, "index": 3, "isInternal": false, - "x": 567.5475324901088, - "y": 110.0603342569415 + "x": 567.54753, + "y": 110.06033 }, { - "angle": 0.0013673473034861358, - "anglePrev": 0.0013253418845796169, - "angularSpeed": 0.00004200541890651895, - "angularVelocity": 0.00004200541890651895, - "area": 856.7396388354374, + "angle": 0.00137, + "anglePrev": 0.00133, + "angularSpeed": 0.00004, + "angularVelocity": 0.00004, + "area": 856.73964, "axes": { "#": 931 }, @@ -8453,13 +8453,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8481,7 +8481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.934702673804129, + "speed": 2.9347, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8502,12 +8502,12 @@ } ], { - "x": -0.0013673468774119482, - "y": 0.9999990651808216 + "x": -0.00137, + "y": 1 }, { - "x": -0.9999990651808216, - "y": -0.0013673468774119482 + "x": -1, + "y": -0.00137 }, { "max": { @@ -8518,12 +8518,12 @@ } }, { - "x": 710.898404551409, - "y": 117.59409646617316 + "x": 710.8984, + "y": 117.5941 }, { - "x": 670.7806869146154, - "y": 93.22439884979902 + "x": 670.78069, + "y": 93.2244 }, { "category": 1, @@ -8540,16 +8540,16 @@ "y": 0 }, { - "x": 690.8310363381297, - "y": 106.87657432103934 + "x": 690.83104, + "y": 106.87657 }, { - "x": 0.36446862914958705, - "y": -0.43653949828059874 + "x": 0.36447, + "y": -0.43654 }, { - "x": 690.8140175483646, - "y": 109.81122764714586 + "x": 690.81402, + "y": 109.81123 }, { "endCol": 14, @@ -8572,8 +8572,8 @@ "yScale": 1 }, { - "x": 0.017018789765103293, - "y": -2.934653326106516 + "x": 0.01702, + "y": -2.93465 }, [ { @@ -8593,36 +8593,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 670.8099211636394, - "y": 96.15905217590553 + "x": 670.80992, + "y": 96.15905 }, { "body": null, "index": 1, "isInternal": false, - "x": 710.881385761644, - "y": 96.2138438191172 + "x": 710.88139, + "y": 96.21384 }, { "body": null, "index": 2, "isInternal": false, - "x": 710.85215151262, - "y": 117.59409646617316 + "x": 710.85215, + "y": 117.5941 }, { "body": null, "index": 3, "isInternal": false, - "x": 670.7806869146154, - "y": 117.53930482296147 + "x": 670.78069, + "y": 117.5393 }, { - "angle": 0.00009411879603218737, - "anglePrev": 0.00010564212981025353, - "angularSpeed": 0.000011523333778066163, - "angularVelocity": -0.000011523333778066163, - "area": 4088.5999519999996, + "angle": 0.00009, + "anglePrev": 0.00011, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 4088.59995, "axes": { "#": 953 }, @@ -8643,13 +8643,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8671,7 +8671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9048442411924866, + "speed": 2.90484, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8698,20 +8698,20 @@ } ], { - "x": -0.7070402260158354, - "y": -0.7071733300934618 + "x": -0.70704, + "y": -0.70717 }, { - "x": 0.0000941187958932312, - "y": -0.9999999955708262 + "x": 0.00009, + "y": -1 }, { - "x": 0.7071733300934618, - "y": -0.7070402260158354 + "x": 0.70717, + "y": -0.70704 }, { - "x": 0.9999999955708262, - "y": 0.0000941187958932312 + "x": 1, + "y": 0.00009 }, { "max": { @@ -8722,12 +8722,12 @@ } }, { - "x": 778.6962262612524, - "y": 169.81428189309582 + "x": 778.69623, + "y": 169.81428 }, { - "x": 708.4414877154502, - "y": 99.5595433472937 + "x": 708.44149, + "y": 99.55954 }, { "category": 1, @@ -8744,16 +8744,16 @@ "y": 0 }, { - "x": 743.5688569883513, - "y": 134.68691262019473 + "x": 743.56886, + "y": 134.68691 }, { "x": 0, "y": 0 }, { - "x": 743.5656697965195, - "y": 137.59175511289504 + "x": 743.56567, + "y": 137.59176 }, { "endCol": 16, @@ -8776,8 +8776,8 @@ "yScale": 1 }, { - "x": 0.003187191831793825, - "y": -2.904842492700315 + "x": 0.00319, + "y": -2.90484 }, [ { @@ -8809,64 +8809,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 778.6934874042919, - "y": 149.24021857257483 + "x": 778.69349, + "y": 149.24022 }, { "body": null, "index": 1, "isInternal": false, - "x": 758.1155509070821, - "y": 169.81428189309582 + "x": 758.11555, + "y": 169.81428 }, { "body": null, "index": 2, "isInternal": false, - "x": 729.0155510359713, - "y": 169.81154303613533 + "x": 729.01555, + "y": 169.81154 }, { "body": null, "index": 3, "isInternal": false, - "x": 708.4414877154502, - "y": 149.2336065389257 + "x": 708.44149, + "y": 149.23361 }, { "body": null, "index": 4, "isInternal": false, - "x": 708.4442265724107, - "y": 120.1336066678147 + "x": 708.44423, + "y": 120.13361 }, { "body": null, "index": 5, "isInternal": false, - "x": 729.0221630696204, - "y": 99.5595433472937 + "x": 729.02216, + "y": 99.55954 }, { "body": null, "index": 6, "isInternal": false, - "x": 758.1221629407313, - "y": 99.56228220425417 + "x": 758.12216, + "y": 99.56228 }, { "body": null, "index": 7, "isInternal": false, - "x": 778.6962262612524, - "y": 120.1402187014638 + "x": 778.69623, + "y": 120.14022 }, { - "angle": -0.003155427260849589, - "anglePrev": -0.002913171824698238, - "angularSpeed": 0.000242255436151351, - "angularVelocity": -0.000242255436151351, - "area": 1965.14242904257, + "angle": -0.00316, + "anglePrev": -0.00291, + "angularSpeed": 0.00024, + "angularVelocity": -0.00024, + "area": 1965.14243, "axes": { "#": 981 }, @@ -8887,13 +8887,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8915,7 +8915,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8830762274288175, + "speed": 2.88308, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8936,12 +8936,12 @@ } ], { - "x": 0.0031554220245672802, - "y": 0.9999950216435318 + "x": 0.00316, + "y": 1 }, { - "x": -0.9999950216435318, - "y": 0.0031554220245672802 + "x": -1, + "y": 0.00316 }, { "max": { @@ -8952,12 +8952,12 @@ } }, { - "x": 1294.0245481976492, - "y": 33.0833565761506 + "x": 1294.02455, + "y": 33.08336 }, { - "x": 1204.4473452004172, - "y": 7.962121694114045 + "x": 1204.44735, + "y": 7.96212 }, { "category": 1, @@ -8974,16 +8974,16 @@ "y": 0 }, { - "x": 1249.2339057370218, - "y": 21.96427580402611 + "x": 1249.23391, + "y": 21.96428 }, { - "x": 8.006226998521845, - "y": -2.13121596648861 + "x": 8.00623, + "y": -2.13122 }, { - "x": 1249.2298238129986, - "y": 24.84734914181366 + "x": 1249.22982, + "y": 24.84735 }, { "endCol": 26, @@ -9006,8 +9006,8 @@ "yScale": 1 }, { - "x": 0.004081924023219017, - "y": -2.8830733377875513 + "x": 0.00408, + "y": -2.88307 }, [ { @@ -9027,36 +9027,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1204.4473452004172, - "y": 11.12761882942935 + "x": 1204.44735, + "y": 11.12762 }, { "body": null, "index": 1, "isInternal": false, - "x": 1293.9511863102741, - "y": 10.845195031901596 + "x": 1293.95119, + "y": 10.8452 }, { "body": null, "index": 2, "isInternal": false, - "x": 1294.020466273626, - "y": 32.80093277862282 + "x": 1294.02047, + "y": 32.80093 }, { "body": null, "index": 3, "isInternal": false, - "x": 1204.5166251637695, - "y": 33.0833565761506 + "x": 1204.51663, + "y": 33.08336 }, { - "angle": 0.0012601621914320065, - "anglePrev": 0.0011888753985445954, - "angularSpeed": 0.00007128679288741112, - "angularVelocity": 0.00007128679288741112, - "area": 1492.5256200000001, + "angle": 0.00126, + "anglePrev": 0.00119, + "angularSpeed": 0.00007, + "angularVelocity": 0.00007, + "area": 1492.52562, "axes": { "#": 1003 }, @@ -9077,13 +9077,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1714.8324723309402, - "inverseInertia": 0.0005831473430408735, - "inverseMass": 0.6700052492231255, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "inverseMass": 0.67001, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.49252562, + "mass": 1.49253, "motion": 0, "parent": null, "position": { @@ -9105,7 +9105,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.894112664184195, + "speed": 2.89411, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9129,16 +9129,16 @@ } ], { - "x": -0.501093525450599, - "y": 0.8653931353734498 + "x": -0.50109, + "y": 0.86539 }, { - "x": -0.49891086485883135, - "y": -0.8666533037644367 + "x": -0.49891, + "y": -0.86665 }, { - "x": 0.9999992059957308, - "y": 0.001260161857907269 + "x": 1, + "y": 0.00126 }, { "max": { @@ -9149,12 +9149,12 @@ } }, { - "x": 906.5729364681173, - "y": 178.00801262652348 + "x": 906.57294, + "y": 178.00801 }, { - "x": 855.6919847871316, - "y": 119.2980592425142 + "x": 855.69198, + "y": 119.29806 }, { "category": 1, @@ -9171,16 +9171,16 @@ "y": 0 }, { - "x": 889.5879578735628, - "y": 148.63167871135101 + "x": 889.58796, + "y": 148.63168 }, { "x": 0, "y": 0 }, { - "x": 889.5932750843426, - "y": 151.52578649100624 + "x": 889.59328, + "y": 151.52579 }, { "endCol": 18, @@ -9203,8 +9203,8 @@ "yScale": 1 }, { - "x": -0.005317210779871857, - "y": -2.894107779655219 + "x": -0.00532, + "y": -2.89411 }, [ { @@ -9221,29 +9221,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 906.4989523654394, - "y": 178.00801262652348 + "x": 906.49895, + "y": 178.00801 }, { "body": null, "index": 1, "isInternal": false, - "x": 855.6919847871316, - "y": 148.58896426501542 + "x": 855.69198, + "y": 148.58896 }, { "body": null, "index": 2, "isInternal": false, - "x": 906.5729364681173, - "y": 119.2980592425142 + "x": 906.57294, + "y": 119.29806 }, { - "angle": -0.00278234566445996, - "anglePrev": -0.0022336940871724347, - "angularSpeed": 0.0005486515772875254, - "angularVelocity": -0.0005486515772875254, - "area": 942.0065703840771, + "angle": -0.00278, + "anglePrev": -0.00223, + "angularSpeed": 0.00055, + "angularVelocity": -0.00055, + "area": 942.00657, "axes": { "#": 1025 }, @@ -9264,13 +9264,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -9292,7 +9292,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9000640143461665, + "speed": 2.90006, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9313,12 +9313,12 @@ } ], { - "x": 0.0027823420745642508, - "y": 0.9999961292787991 + "x": 0.00278, + "y": 1 }, { - "x": -0.9999961292787991, - "y": 0.0027823420745642508 + "x": -1, + "y": 0.00278 }, { "max": { @@ -9329,12 +9329,12 @@ } }, { - "x": 929.3357318440516, - "y": 150.88156828781763 + "x": 929.33573, + "y": 150.88157 }, { - "x": 908.1514317461878, - "y": 106.09333582994253 + "x": 908.15143, + "y": 106.09334 }, { "category": 1, @@ -9351,16 +9351,16 @@ "y": 0 }, { - "x": 918.7435817951197, - "y": 128.48745205888005 + "x": 918.74358, + "y": 128.48745 }, { "x": 0, "y": 0 }, { - "x": 918.7422034209235, - "y": 131.3875157456618 + "x": 918.7422, + "y": 131.38752 }, { "endCol": 19, @@ -9383,8 +9383,8 @@ "yScale": 1 }, { - "x": 0.0013783741961754003, - "y": -2.9000636867817535 + "x": 0.00138, + "y": -2.90006 }, [ { @@ -9404,36 +9404,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 908.1514317461878, - "y": 106.15193175365843 + "x": 908.15143, + "y": 106.15193 }, { "body": null, "index": 1, "isInternal": false, - "x": 929.2112782126175, - "y": 106.09333582994253 + "x": 929.21128, + "y": 106.09334 }, { "body": null, "index": 2, "isInternal": false, - "x": 929.3357318440516, - "y": 150.82297236410173 + "x": 929.33573, + "y": 150.82297 }, { "body": null, "index": 3, "isInternal": false, - "x": 908.2758853776219, - "y": 150.88156828781763 + "x": 908.27589, + "y": 150.88157 }, { - "angle": 0.00009834545680414817, - "anglePrev": 0.00010978820178082184, - "angularSpeed": 0.000011442744976673662, - "angularVelocity": -0.000011442744976673662, - "area": 2898.415585731765, + "angle": 0.0001, + "anglePrev": 0.00011, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 2898.41559, "axes": { "#": 1047 }, @@ -9454,13 +9454,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -9482,7 +9482,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.877628642772627, + "speed": 2.87763, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9503,12 +9503,12 @@ } ], { - "x": -0.00009834545664561811, - "y": 0.9999999951640857 + "x": -0.0001, + "y": 1 }, { - "x": -0.9999999951640857, - "y": -0.00009834545664561811 + "x": -1, + "y": -0.0001 }, { "max": { @@ -9519,12 +9519,12 @@ } }, { - "x": 1042.2847620360242, - "y": 131.9087130570584 + "x": 1042.28476, + "y": 131.90871 }, { - "x": 930.0828986061931, - "y": 103.18654770583426 + "x": 930.0829, + "y": 103.18655 }, { "category": 1, @@ -9541,16 +9541,16 @@ "y": 0 }, { - "x": 986.182162465982, - "y": 118.9864437361542 + "x": 986.18216, + "y": 118.98644 }, { - "x": 0.17831828539172315, - "y": -0.0003029192537507702 + "x": 0.17832, + "y": -0.0003 }, { - "x": 986.1788267557281, - "y": 121.86407044556988 + "x": 986.17883, + "y": 121.86407 }, { "endCol": 21, @@ -9573,8 +9573,8 @@ "yScale": 1 }, { - "x": 0.003335710253822981, - "y": -2.8776267094156838 + "x": 0.00334, + "y": -2.87763 }, [ { @@ -9594,36 +9594,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 930.0854392140197, - "y": 106.06417441524994 + "x": 930.08544, + "y": 106.06417 }, { "body": null, "index": 1, "isInternal": false, - "x": 1042.2814263257703, - "y": 106.07520838088962 + "x": 1042.28143, + "y": 106.07521 }, { "body": null, "index": 2, "isInternal": false, - "x": 1042.2788857179437, - "y": 131.9087130570584 + "x": 1042.27889, + "y": 131.90871 }, { "body": null, "index": 3, "isInternal": false, - "x": 930.0828986061931, - "y": 131.89767909141872 + "x": 930.0829, + "y": 131.89768 }, { - "angle": 0.004597976511571769, - "anglePrev": 0.0034657530968359575, - "angularSpeed": 0.0011322234147358111, - "angularVelocity": 0.0011322234147358111, - "area": 842.523055, + "angle": 0.0046, + "anglePrev": 0.00347, + "angularSpeed": 0.00113, + "angularVelocity": 0.00113, + "area": 842.52305, "axes": { "#": 1069 }, @@ -9644,13 +9644,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 546.4390114484775, - "inverseInertia": 0.001830030395065027, - "inverseMass": 1.1869111403722952, + "inertia": 546.43901, + "inverseInertia": 0.00183, + "inverseMass": 1.18691, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.842523055, + "mass": 0.84252, "motion": 0, "parent": null, "position": { @@ -9672,7 +9672,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.936106797328251, + "speed": 2.93611, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9696,16 +9696,16 @@ } ], { - "x": -0.5039706005442743, - "y": 0.8637208077770521 + "x": -0.50397, + "y": 0.86372 }, { - "x": -0.4960066673915014, - "y": -0.8683187121691991 + "x": -0.49601, + "y": -0.86832 }, { - "x": 0.9999894293246228, - "y": 0.004597960310321319 + "x": 0.99999, + "y": 0.0046 }, { "max": { @@ -9716,12 +9716,12 @@ } }, { - "x": 1081.2699607698225, - "y": 143.33525470289047 + "x": 1081.26996, + "y": 143.33525 }, { - "x": 1042.9646706148724, - "y": 96.28961601679337 + "x": 1042.96467, + "y": 96.28962 }, { "category": 1, @@ -9738,16 +9738,16 @@ "y": 0 }, { - "x": 1068.4317347412923, - "y": 121.22193894519778 + "x": 1068.43173, + "y": 121.22194 }, { - "x": 0.1875682495206461, - "y": -0.000020468893368564192 + "x": 0.18757, + "y": -0.00002 }, { - "x": 1068.4284487906164, - "y": 124.15804390378582 + "x": 1068.42845, + "y": 124.15804 }, { "endCol": 22, @@ -9770,8 +9770,8 @@ "yScale": 1 }, { - "x": 0.0032859506759018585, - "y": -2.9361049585880465 + "x": 0.00329, + "y": -2.9361 }, [ { @@ -9788,36 +9788,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1081.0638587898582, - "y": 143.33525470289047 + "x": 1081.06386, + "y": 143.33525 }, { "body": null, "index": 1, "isInternal": false, - "x": 1042.9646706148724, - "y": 121.10484115732137 + "x": 1042.96467, + "y": 121.10484 }, { "body": null, "index": 2, "isInternal": false, - "x": 1081.2666748191466, - "y": 99.22572097538142 + "x": 1081.26667, + "y": 99.22572 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6661.542482000001, + "area": 6661.54248, "axes": { "#": 1091 }, "bounds": { "#": 1105 }, - "circleRadius": 46.273148148148145, + "circleRadius": 46.27315, "collisionFilter": { "#": 1108 }, @@ -9832,13 +9832,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 28251.272419191544, - "inverseInertia": 0.00003539663577491412, - "inverseMass": 0.15011538284144801, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "inverseMass": 0.15012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.661542482000001, + "mass": 6.66154, "motion": 0, "parent": null, "position": { @@ -9860,7 +9860,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9914,52 +9914,52 @@ } ], { - "x": -0.9709335210486909, - "y": -0.23934932150309357 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854504735162902, - "y": -0.46473375060326466 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485309706272006, - "y": -0.6630998311053178 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680534091439667, - "y": -0.822991691549749 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35463801958119895, - "y": -0.9350036764994698 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12048128629971751, - "y": -0.992715598573713 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12048128629971751, - "y": -0.992715598573713 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.35463801958119895, - "y": -0.9350036764994698 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680534091439667, - "y": -0.822991691549749 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7485309706272006, - "y": -0.6630998311053178 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854504735162902, - "y": -0.46473375060326466 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709335210486909, - "y": -0.23934932150309357 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -9974,12 +9974,12 @@ } }, { - "x": 1189.9663484629357, - "y": 191.830245232974 + "x": 1189.96635, + "y": 191.83025 }, { - "x": 1098.0943484629358, - "y": 96.37697451793835 + "x": 1098.09435, + "y": 96.37697 }, { "category": 1, @@ -9996,16 +9996,16 @@ "y": 0 }, { - "x": 1144.0303484629358, - "y": 145.557245232974 + "x": 1144.03035, + "y": 145.55725 }, { - "x": 0.5467095984940997, + "x": 0.54671, "y": 0 }, { - "x": 1144.0303484629358, - "y": 148.46451594800968 + "x": 1144.03035, + "y": 148.46452 }, { "endCol": 24, @@ -10029,7 +10029,7 @@ }, { "x": 0, - "y": -2.9072707150356862 + "y": -2.90727 }, [ { @@ -10115,190 +10115,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1189.9663484629357, - "y": 151.135245232974 + "x": 1189.96635, + "y": 151.13525 }, { "body": null, "index": 1, "isInternal": false, - "x": 1187.2963484629358, - "y": 161.966245232974 + "x": 1187.29635, + "y": 161.96625 }, { "body": null, "index": 2, "isInternal": false, - "x": 1182.1123484629359, - "y": 171.843245232974 + "x": 1182.11235, + "y": 171.84325 }, { "body": null, "index": 3, "isInternal": false, - "x": 1174.7153484629357, - "y": 180.193245232974 + "x": 1174.71535, + "y": 180.19325 }, { "body": null, "index": 4, "isInternal": false, - "x": 1165.5343484629357, - "y": 186.530245232974 + "x": 1165.53435, + "y": 186.53025 }, { "body": null, "index": 5, "isInternal": false, - "x": 1155.1043484629358, - "y": 190.486245232974 + "x": 1155.10435, + "y": 190.48625 }, { "body": null, "index": 6, "isInternal": false, - "x": 1144.0303484629358, - "y": 191.830245232974 + "x": 1144.03035, + "y": 191.83025 }, { "body": null, "index": 7, "isInternal": false, - "x": 1132.9563484629357, - "y": 190.486245232974 + "x": 1132.95635, + "y": 190.48625 }, { "body": null, "index": 8, "isInternal": false, - "x": 1122.5263484629359, - "y": 186.530245232974 + "x": 1122.52635, + "y": 186.53025 }, { "body": null, "index": 9, "isInternal": false, - "x": 1113.3453484629358, - "y": 180.193245232974 + "x": 1113.34535, + "y": 180.19325 }, { "body": null, "index": 10, "isInternal": false, - "x": 1105.9483484629357, - "y": 171.843245232974 + "x": 1105.94835, + "y": 171.84325 }, { "body": null, "index": 11, "isInternal": false, - "x": 1100.7643484629357, - "y": 161.966245232974 + "x": 1100.76435, + "y": 161.96625 }, { "body": null, "index": 12, "isInternal": false, - "x": 1098.0943484629358, - "y": 151.135245232974 + "x": 1098.09435, + "y": 151.13525 }, { "body": null, "index": 13, "isInternal": false, - "x": 1098.0943484629358, - "y": 139.979245232974 + "x": 1098.09435, + "y": 139.97925 }, { "body": null, "index": 14, "isInternal": false, - "x": 1100.7643484629357, - "y": 129.148245232974 + "x": 1100.76435, + "y": 129.14825 }, { "body": null, "index": 15, "isInternal": false, - "x": 1105.9483484629357, - "y": 119.271245232974 + "x": 1105.94835, + "y": 119.27125 }, { "body": null, "index": 16, "isInternal": false, - "x": 1113.3453484629358, - "y": 110.92124523297403 + "x": 1113.34535, + "y": 110.92125 }, { "body": null, "index": 17, "isInternal": false, - "x": 1122.5263484629359, - "y": 104.58424523297404 + "x": 1122.52635, + "y": 104.58425 }, { "body": null, "index": 18, "isInternal": false, - "x": 1132.9563484629357, - "y": 100.62824523297402 + "x": 1132.95635, + "y": 100.62825 }, { "body": null, "index": 19, "isInternal": false, - "x": 1144.0303484629358, - "y": 99.28424523297403 + "x": 1144.03035, + "y": 99.28425 }, { "body": null, "index": 20, "isInternal": false, - "x": 1155.1043484629358, - "y": 100.62824523297402 + "x": 1155.10435, + "y": 100.62825 }, { "body": null, "index": 21, "isInternal": false, - "x": 1165.5343484629357, - "y": 104.58424523297404 + "x": 1165.53435, + "y": 104.58425 }, { "body": null, "index": 22, "isInternal": false, - "x": 1174.7153484629357, - "y": 110.92124523297403 + "x": 1174.71535, + "y": 110.92125 }, { "body": null, "index": 23, "isInternal": false, - "x": 1182.1123484629359, - "y": 119.271245232974 + "x": 1182.11235, + "y": 119.27125 }, { "body": null, "index": 24, "isInternal": false, - "x": 1187.2963484629358, - "y": 129.148245232974 + "x": 1187.29635, + "y": 129.14825 }, { "body": null, "index": 25, "isInternal": false, - "x": 1189.9663484629357, - "y": 139.979245232974 + "x": 1189.96635, + "y": 139.97925 }, { - "angle": -0.06456182660548623, - "anglePrev": -0.0544242352914618, - "angularSpeed": 0.010137591314024426, - "angularVelocity": -0.010137591314024426, - "area": 1051.3111283901928, + "angle": -0.06456, + "anglePrev": -0.05442, + "angularSpeed": 0.01014, + "angularVelocity": -0.01014, + "area": 1051.31113, "axes": { "#": 1146 }, @@ -10319,13 +10319,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -10347,7 +10347,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.489933002522173, + "speed": 2.48993, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10368,12 +10368,12 @@ } ], { - "x": 0.06451698453422494, - "y": 0.9979166090944726 + "x": 0.06452, + "y": 0.99792 }, { - "x": -0.9979166090944726, - "y": 0.06451698453422494 + "x": -0.99792, + "y": 0.06452 }, { "max": { @@ -10384,12 +10384,12 @@ } }, { - "x": 53.04770148513805, - "y": 232.49110787976923 + "x": 53.0477, + "y": 232.49111 }, { - "x": 21.14079507279175, - "y": 192.5927047649601 + "x": 21.1408, + "y": 192.5927 }, { "category": 1, @@ -10406,16 +10406,16 @@ "y": 0 }, { - "x": 37.15656883566659, - "y": 213.78531202344323 + "x": 37.15657, + "y": 213.78531 }, { - "x": 0.12127080187589, - "y": -0.36159390865765895 + "x": 0.12127, + "y": -0.36159 }, { - "x": 37.28120994906998, - "y": 216.27212342560034 + "x": 37.28121, + "y": 216.27212 }, { "endCol": 1, @@ -10438,8 +10438,8 @@ "yScale": 1 }, { - "x": -0.124641113403395, - "y": -2.486811402157117 + "x": -0.12464, + "y": -2.48681 }, [ { @@ -10459,36 +10459,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 21.265436186195146, - "y": 196.98588685930602 + "x": 21.26544, + "y": 196.98589 }, { "body": null, "index": 1, "isInternal": false, - "x": 50.75222932385187, - "y": 195.07951616711722 + "x": 50.75223, + "y": 195.07952 }, { "body": null, "index": 2, "isInternal": false, - "x": 53.04770148513805, - "y": 230.5847371875804 + "x": 53.0477, + "y": 230.58474 }, { "body": null, "index": 3, "isInternal": false, - "x": 23.560908347481327, - "y": 232.49110787976923 + "x": 23.56091, + "y": 232.49111 }, { - "angle": -0.0030377762339700294, - "anglePrev": -0.0020921376922808936, - "angularSpeed": 0.0009456385416891357, - "angularVelocity": -0.0009456385416891357, - "area": 6245.524001, + "angle": -0.00304, + "anglePrev": -0.00209, + "angularSpeed": 0.00095, + "angularVelocity": -0.00095, + "area": 6245.524, "axes": { "#": 1168 }, @@ -10509,13 +10509,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 24931.28629116745, - "inverseInertia": 0.00004011024494770155, - "inverseMass": 0.16011466769479796, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "inverseMass": 0.16011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.245524001, + "mass": 6.24552, "motion": 0, "parent": null, "position": { @@ -10537,7 +10537,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7987283828401113, + "speed": 2.79873, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10573,32 +10573,32 @@ } ], { - "x": 0.6258809613963782, - "y": 0.7799185997022671 + "x": 0.62588, + "y": 0.77992 }, { - "x": -0.21957792048006552, - "y": 0.9755949655659615 + "x": -0.21958, + "y": 0.97559 }, { - "x": -0.8996494569462775, - "y": 0.4366129345498911 + "x": -0.89965, + "y": 0.43661 }, { - "x": -0.902285501387754, - "y": -0.43113904252044793 + "x": -0.90229, + "y": -0.43114 }, { - "x": -0.22550110986121627, - "y": -0.9742429109063916 + "x": -0.2255, + "y": -0.97424 }, { - "x": 0.6211310028450385, - "y": -0.7837067546631943 + "x": 0.62113, + "y": -0.78371 }, { - "x": 0.9999953859613241, - "y": -0.0030377715618295814 + "x": 1, + "y": -0.00304 }, { "max": { @@ -10609,12 +10609,12 @@ } }, { - "x": 138.45976921345468, - "y": 288.9729977718823 + "x": 138.45977, + "y": 288.973 }, { - "x": 47.58022131767151, - "y": 195.81942758804112 + "x": 47.58022, + "y": 195.81943 }, { "category": 1, @@ -10631,16 +10631,16 @@ "y": 0 }, { - "x": 95.3540385512084, - "y": 242.42850711501856 + "x": 95.35404, + "y": 242.42851 }, { "x": 0, "y": 0 }, { - "x": 95.25425848431199, - "y": 245.2254562563447 + "x": 95.25426, + "y": 245.22546 }, { "endCol": 2, @@ -10663,8 +10663,8 @@ "yScale": 1 }, { - "x": 0.09978006689641461, - "y": -2.796949141326129 + "x": 0.09978, + "y": -2.79695 }, [ { @@ -10693,57 +10693,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 138.45976921345468, - "y": 263.02565678830615 + "x": 138.45977, + "y": 263.02566 }, { "body": null, "index": 1, "isInternal": false, - "x": 106.12644212077798, - "y": 288.9729977718823 + "x": 106.12644, + "y": 288.973 }, { "body": null, "index": 2, "isInternal": false, - "x": 65.68060213056373, - "y": 279.8698209919892 + "x": 65.6806, + "y": 279.86982 }, { "body": null, "index": 3, "isInternal": false, - "x": 47.58022131767151, - "y": 242.57363372803042 + "x": 47.58022, + "y": 242.57363 }, { "body": null, "index": 4, "isInternal": false, - "x": 65.45367451935194, - "y": 205.16816566990624 + "x": 65.45367, + "y": 205.16817 }, { "body": null, "index": 5, "isInternal": false, - "x": 105.8434615487073, - "y": 195.81942758804112 + "x": 105.84346, + "y": 195.81943 }, { "body": null, "index": 6, "isInternal": false, - "x": 138.3338353555875, - "y": 221.5698480678933 + "x": 138.33384, + "y": 221.56985 }, { - "angle": -0.000012710257434153481, - "anglePrev": 0.000022256452268372938, - "angularSpeed": 0.00003496670970252642, - "angularVelocity": -0.00003496670970252642, - "area": 1100.443548, + "angle": -0.00001, + "anglePrev": 0.00002, + "angularSpeed": 0.00003, + "angularVelocity": -0.00003, + "area": 1100.44355, "axes": { "#": 1198 }, @@ -10764,13 +10764,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 932.2097612415441, - "inverseInertia": 0.001072719940915627, - "inverseMass": 0.9087244882460795, + "inertia": 932.20976, + "inverseInertia": 0.00107, + "inverseMass": 0.90872, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.1004435479999999, + "mass": 1.10044, "motion": 0, "parent": null, "position": { @@ -10792,7 +10792,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9159334527008034, + "speed": 2.91593, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10816,16 +10816,16 @@ } ], { - "x": -0.49998961663243924, - "y": 0.8660313985414999 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.5000116314349329, - "y": -0.8660186882682018 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.9999999999192248, - "y": -0.000012710257433811256 + "x": 1, + "y": -0.00001 }, { "max": { @@ -10836,12 +10836,12 @@ } }, { - "x": 172.5925518891975, - "y": 238.57406850099247 + "x": 172.59255, + "y": 238.57407 }, { - "x": 128.9288880714026, - "y": 185.24613994829946 + "x": 128.92889, + "y": 185.24614 }, { "category": 1, @@ -10858,16 +10858,16 @@ "y": 0 }, { - "x": 158.034221402385, - "y": 213.36825347116823 + "x": 158.03422, + "y": 213.36825 }, { - "x": -0.07257967172150943, - "y": -0.18533575549456494 + "x": -0.07258, + "y": -0.18534 }, { - "x": 158.0288779558125, - "y": 216.28418202793335 + "x": 158.02888, + "y": 216.28418 }, { "endCol": 3, @@ -10890,8 +10890,8 @@ "yScale": 1 }, { - "x": 0.005343446572495054, - "y": -2.915928556765127 + "x": 0.00534, + "y": -2.91593 }, [ { @@ -10908,29 +10908,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 172.587208442625, - "y": 238.57406850099247 + "x": 172.58721, + "y": 238.57407 }, { "body": null, "index": 1, "isInternal": false, - "x": 128.9288880714026, - "y": 213.36862340744761 + "x": 128.92889, + "y": 213.36862 }, { "body": null, "index": 2, "isInternal": false, - "x": 172.58656769312728, - "y": 188.16206850506458 + "x": 172.58657, + "y": 188.16207 }, { - "angle": -0.0003501838385855283, - "anglePrev": -0.0002838637420299505, - "angularSpeed": 0.00006632009655557778, - "angularVelocity": -0.00006632009655557778, - "area": 4695.386625, + "angle": -0.00035, + "anglePrev": -0.00028, + "angularSpeed": 0.00007, + "angularVelocity": -0.00007, + "area": 4695.38663, "axes": { "#": 1220 }, @@ -10951,13 +10951,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -10979,7 +10979,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9046197418434923, + "speed": 2.90462, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11015,32 +11015,32 @@ } ], { - "x": 0.6237738395915994, - "y": 0.7816048855023574 + "x": 0.62377, + "y": 0.7816 }, { - "x": -0.22218500184082807, - "y": 0.9750045256084666 + "x": -0.22219, + "y": 0.975 }, { - "x": -0.9008198730027761, - "y": 0.4341929944198341 + "x": -0.90082, + "y": 0.43419 }, { - "x": -0.9011237467840931, - "y": -0.433561982860349 + "x": -0.90112, + "y": -0.43356 }, { - "x": -0.22286780894731129, - "y": -0.9748486753004411 + "x": -0.22287, + "y": -0.97485 }, { - "x": 0.6232262758530567, - "y": -0.7820415648073503 + "x": 0.62323, + "y": -0.78204 }, { - "x": 0.9999999386856401, - "y": -0.0003501838314284288 + "x": 1, + "y": -0.00035 }, { "max": { @@ -11051,12 +11051,12 @@ } }, { - "x": 252.02193333321998, - "y": 276.59314483348555 + "x": 252.02193, + "y": 276.59314 }, { - "x": 173.27164430735567, - "y": 195.8231497858464 + "x": 173.27164, + "y": 195.82315 }, { "category": 1, @@ -11073,16 +11073,16 @@ "y": 0 }, { - "x": 214.6947667998588, - "y": 236.21137526043975 + "x": 214.69477, + "y": 236.21138 }, { "x": 0, "y": 0 }, { - "x": 214.69120095243568, - "y": 239.11599281348165 + "x": 214.6912, + "y": 239.11599 }, { "endCol": 5, @@ -11105,8 +11105,8 @@ "yScale": 1 }, { - "x": 0.003565847423114974, - "y": -2.9046175530418994 + "x": 0.00357, + "y": -2.90462 }, [ { @@ -11135,57 +11135,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.02193333321998, - "y": 254.17130499144832 + "x": 252.02193, + "y": 254.1713 }, { "body": null, "index": 1, "isInternal": false, - "x": 223.9267833763674, - "y": 276.59314483348555 + "x": 223.92678, + "y": 276.59314 }, { "body": null, "index": 2, "isInternal": false, - "x": 188.87898440466157, - "y": 268.6064175163115 + "x": 188.87898, + "y": 268.60642 }, { "body": null, "index": 3, "isInternal": false, - "x": 173.27164430735567, - "y": 236.22588096907333 + "x": 173.27164, + "y": 236.22588 }, { "body": null, "index": 4, "isInternal": false, - "x": 188.85630229753224, - "y": 203.83442148776524 + "x": 188.8563, + "y": 203.83442 }, { "body": null, "index": 5, "isInternal": false, - "x": 223.89849902830295, - "y": 195.8231497858464 + "x": 223.8985, + "y": 195.82315 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.0093456252154, - "y": 218.22530719545423 + "x": 252.00935, + "y": 218.22531 }, { - "angle": -0.00018314288898211762, - "anglePrev": -0.00015338084014754696, - "angularSpeed": 0.000029762048834570652, - "angularVelocity": -0.000029762048834570652, - "area": 2533.681298803042, + "angle": -0.00018, + "anglePrev": -0.00015, + "angularSpeed": 0.00003, + "angularVelocity": -0.00003, + "area": 2533.6813, "axes": { "#": 1250 }, @@ -11206,13 +11206,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 9087.287047208478, - "inverseInertia": 0.00011004384419739331, - "inverseMass": 0.3946826305551604, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "inverseMass": 0.39468, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.533681298803042, + "mass": 2.53368, "motion": 0, "parent": null, "position": { @@ -11234,7 +11234,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905523514238343, + "speed": 2.90552, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11255,12 +11255,12 @@ } ], { - "x": 0.00018314288795830868, - "y": 0.9999999832293414 + "x": 0.00018, + "y": 1 }, { - "x": -0.9999999832293414, - "y": 0.00018314288795830868 + "x": -1, + "y": 0.00018 }, { "max": { @@ -11271,12 +11271,12 @@ } }, { - "x": 353.19282069237363, - "y": 221.0131406073107 + "x": 353.19282, + "y": 221.01314 }, { - "x": 252.56115342545147, - "y": 195.81578528784283 + "x": 252.56115, + "y": 195.81579 }, { "category": 1, @@ -11293,16 +11293,16 @@ "y": 0 }, { - "x": 302.87698705891256, - "y": 208.41446294757677 + "x": 302.87699, + "y": 208.41446 }, { "x": 0, "y": 0 }, { - "x": 302.87533674965556, - "y": 211.31998599313522 + "x": 302.87534, + "y": 211.31999 }, { "endCol": 7, @@ -11325,8 +11325,8 @@ "yScale": 1 }, { - "x": 0.001650309256982041, - "y": -2.905523045558456 + "x": 0.00165, + "y": -2.90552 }, [ { @@ -11346,36 +11346,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.56115342545147, - "y": 195.83421441778088 + "x": 252.56115, + "y": 195.83421 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.1882093510382, - "y": 195.81578528784283 + "x": 353.18821, + "y": 195.81579 }, { "body": null, "index": 2, "isInternal": false, - "x": 353.19282069237363, - "y": 220.99471147737265 + "x": 353.19282, + "y": 220.99471 }, { "body": null, "index": 3, "isInternal": false, - "x": 252.5657647667868, - "y": 221.0131406073107 + "x": 252.56576, + "y": 221.01314 }, { - "angle": 0.00007211996304651327, - "anglePrev": 0.00003295418714828468, - "angularSpeed": 0.00003916577589822859, - "angularVelocity": 0.00003916577589822859, - "area": 2082.1047164947227, + "angle": 0.00007, + "anglePrev": 0.00003, + "angularSpeed": 0.00004, + "angularVelocity": 0.00004, + "area": 2082.10472, "axes": { "#": 1272 }, @@ -11396,13 +11396,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2917.86500075833, - "inverseInertia": 0.0003427163353136995, - "inverseMass": 0.4802832403566742, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "inverseMass": 0.48028, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.082104716494723, + "mass": 2.0821, "motion": 0, "parent": null, "position": { @@ -11424,7 +11424,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.904133093348478, + "speed": 2.90413, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11445,12 +11445,12 @@ } ], { - "x": -0.00007211996298399381, - "y": 0.9999999973993554 + "x": -0.00007, + "y": 1 }, { - "x": -0.9999999973993554, - "y": -0.00007211996298399381 + "x": -1, + "y": -0.00007 }, { "max": { @@ -11461,12 +11461,12 @@ } }, { - "x": 398.3321680984848, - "y": 244.72388125311872 + "x": 398.33217, + "y": 244.72388 }, { - "x": 355.7512237306893, - "y": 195.81919032813587 + "x": 355.75122, + "y": 195.81919 }, { "category": 1, @@ -11483,16 +11483,16 @@ "y": 0 }, { - "x": 377.041695914587, - "y": 220.27153579062727 + "x": 377.0417, + "y": 220.27154 }, { "x": 0, "y": 0 }, { - "x": 377.04264087128104, - "y": 223.17566873023912 + "x": 377.04264, + "y": 223.17567 }, { "endCol": 8, @@ -11515,8 +11515,8 @@ "yScale": 1 }, { - "x": -0.0009449566940236309, - "y": -2.904132939611864 + "x": -0.00094, + "y": -2.90413 }, [ { @@ -11536,36 +11536,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 355.7547505137402, - "y": 195.81919032813587 + "x": 355.75475, + "y": 195.81919 }, { "body": null, "index": 1, "isInternal": false, - "x": 398.3321680984848, - "y": 195.82226100992403 + "x": 398.33217, + "y": 195.82226 }, { "body": null, "index": 2, "isInternal": false, - "x": 398.32864131543386, - "y": 244.72388125311872 + "x": 398.32864, + "y": 244.72388 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.7512237306893, - "y": 244.72081057133056 + "x": 355.75122, + "y": 244.72081 }, { - "angle": 0.00002746038185218051, - "anglePrev": -0.000004186245339239481, - "angularSpeed": 0.000031703940596082106, - "angularVelocity": 0.00003162567909541174, - "area": 2570.1808866424026, + "angle": 0.00003, + "anglePrev": 0, + "angularSpeed": 0.00003, + "angularVelocity": 0.00003, + "area": 2570.18089, "axes": { "#": 1294 }, @@ -11586,13 +11586,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 7426.992944977438, - "inverseInertia": 0.00013464399487227974, - "inverseMass": 0.38907767355875333, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "inverseMass": 0.38908, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5701808866424027, + "mass": 2.57018, "motion": 0, "parent": null, "position": { @@ -11614,7 +11614,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.909904950060489, + "speed": 2.9099, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11635,12 +11635,12 @@ } ], { - "x": -0.00002746038184872933, - "y": 0.9999999996229637 + "x": -0.00003, + "y": 1 }, { - "x": -0.9999999996229637, - "y": -0.00002746038184872933 + "x": -1, + "y": -0.00003 }, { "max": { @@ -11651,12 +11651,12 @@ } }, { - "x": 487.4102594147416, - "y": 217.72087660112928 + "x": 487.41026, + "y": 217.72088 }, { - "x": 398.95034688621905, - "y": 185.75315870123313 + "x": 398.95035, + "y": 185.75316 }, { "category": 1, @@ -11673,16 +11673,16 @@ "y": 0 }, { - "x": 443.18086529654397, - "y": 203.191970017614 + "x": 443.18087, + "y": 203.19197 }, { - "x": 0.14227247265829282, - "y": -0.08166641805482677 + "x": 0.14227, + "y": -0.08167 }, { - "x": 443.18198545512496, - "y": 206.1018771372008 + "x": 443.18199, + "y": 206.10188 }, { "endCol": 10, @@ -11705,8 +11705,8 @@ "yScale": 1 }, { - "x": -0.0011186477664750782, - "y": -2.909907991935313 + "x": -0.00112, + "y": -2.90991 }, [ { @@ -11726,36 +11726,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 398.95226905028824, - "y": 188.66306343409875 + "x": 398.95227, + "y": 188.66306 }, { "body": null, "index": 1, "isInternal": false, - "x": 487.4102594147416, - "y": 188.66549252429266 + "x": 487.41026, + "y": 188.66549 }, { "body": null, "index": 2, "isInternal": false, - "x": 487.4094615427997, - "y": 217.72087660112928 + "x": 487.40946, + "y": 217.72088 }, { "body": null, "index": 3, "isInternal": false, - "x": 398.95147117834637, - "y": 217.71844751093536 + "x": 398.95147, + "y": 217.71845 }, { - "angle": -0.00004087908263729249, - "anglePrev": -0.00004248114734523084, - "angularSpeed": 0.0000017269795762484993, - "angularVelocity": 0.000001556408221996791, - "area": 1460.278512, + "angle": -0.00004, + "anglePrev": -0.00004, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1460.27851, "axes": { "#": 1316 }, @@ -11776,13 +11776,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1641.5325488167716, - "inverseInertia": 0.0006091868240570722, - "inverseMass": 0.6848008731090607, + "inertia": 1641.53255, + "inverseInertia": 0.00061, + "inverseMass": 0.6848, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4602785120000001, + "mass": 1.46028, "motion": 0, "parent": null, "position": { @@ -11804,7 +11804,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9056491786166374, + "speed": 2.90565, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11828,16 +11828,16 @@ } ], { - "x": -0.49996330911298315, - "y": 0.8660465862416383 + "x": -0.49996, + "y": 0.86605 }, { - "x": -0.500034113821861, - "y": -0.8660057072643261 + "x": -0.50003, + "y": -0.86601 }, { - "x": 0.9999999991644503, - "y": -0.000040879082625906984 + "x": 1, + "y": -0.00004 }, { "max": { @@ -11848,12 +11848,12 @@ } }, { - "x": 518.311381365811, - "y": 257.89450937810625 + "x": 518.31138, + "y": 257.89451 }, { - "x": 468.01814951715954, - "y": 196.91686024835903 + "x": 468.01815, + "y": 196.91686 }, { "category": 1, @@ -11870,16 +11870,16 @@ "y": 0 }, { - "x": 501.54614948914525, - "y": 228.85919469930846 + "x": 501.54615, + "y": 228.85919 }, { - "x": -0.0012761370817611336, - "y": -0.002210122547083198 + "x": -0.00128, + "y": -0.00221 }, { - "x": 501.54611183881366, - "y": 231.76483967680025 + "x": 501.54611, + "y": 231.76484 }, { "endCol": 10, @@ -11902,8 +11902,8 @@ "yScale": 1 }, { - "x": 0.00003499120418837265, - "y": -2.9056434421041786 + "x": 0.00003, + "y": -2.90564 }, [ { @@ -11920,29 +11920,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 518.3113364401812, - "y": 257.89450937810625 + "x": 518.31134, + "y": 257.89451 }, { "body": null, "index": 1, "isInternal": false, - "x": 468.01814951715954, - "y": 228.86056529319075 + "x": 468.01815, + "y": 228.86057 }, { "body": null, "index": 2, "isInternal": false, - "x": 518.3089625100951, - "y": 199.82250942662836 + "x": 518.30896, + "y": 199.82251 }, { - "angle": 0.00003210620494130309, - "anglePrev": 0.00002332786466683925, - "angularSpeed": 0.000008778340274463842, - "angularVelocity": 0.000008778340274463842, - "area": 4167.4330549999995, + "angle": 0.00003, + "anglePrev": 0.00002, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 4167.43305, "axes": { "#": 1338 }, @@ -11963,13 +11963,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 11100.542061550868, - "inverseInertia": 0.00009008569081177725, - "inverseMass": 0.23995586415004816, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "inverseMass": 0.23996, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.167433054999999, + "mass": 4.16743, "motion": 0, "parent": null, "position": { @@ -11991,7 +11991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9070318252157703, + "speed": 2.90703, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12027,32 +12027,32 @@ } ], { - "x": 0.6234844569887681, - "y": 0.7818357448297059 + "x": 0.62348, + "y": 0.78184 }, { - "x": -0.22256103251391152, - "y": 0.9749187590801308 + "x": -0.22256, + "y": 0.97492 }, { - "x": -0.9009865283180496, - "y": 0.4338470649772669 + "x": -0.90099, + "y": 0.43385 }, { - "x": -0.9009586680950169, - "y": -0.4339049185990558 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.22249843017215873, - "y": -0.9749330482504557 + "x": -0.2225, + "y": -0.97493 }, { - "x": 0.6235346592606554, - "y": -0.7817957077783804 + "x": 0.62353, + "y": -0.7818 }, { - "x": 0.9999999994845958, - "y": 0.0000321062049357872 + "x": 1, + "y": 0.00003 }, { "max": { @@ -12063,12 +12063,12 @@ } }, { - "x": 593.000223986292, - "y": 264.4540554816352 + "x": 593.00022, + "y": 264.45406 }, { - "x": 518.8145936851596, - "y": 185.453023696932 + "x": 518.81459, + "y": 185.45302 }, { "category": 1, @@ -12085,16 +12085,16 @@ "y": 0 }, { - "x": 557.8394705242548, - "y": 226.40677668422342 + "x": 557.83947, + "y": 226.40678 }, { - "x": 0.040072745445051364, - "y": -0.3955488295377201 + "x": 0.04007, + "y": -0.39555 }, { - "x": 557.8395572413606, - "y": 229.3138085081458 + "x": 557.83956, + "y": 229.31381 }, { "endCol": 12, @@ -12117,8 +12117,8 @@ "yScale": 1 }, { - "x": -0.00008671710578028068, - "y": -2.9070318239223796 + "x": -0.00009, + "y": -2.90703 }, [ { @@ -12147,57 +12147,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 592.9991367417681, - "y": 243.33990553639975 + "x": 592.99914, + "y": 243.33991 }, { "body": null, "index": 1, "isInternal": false, - "x": 566.5224588328969, - "y": 264.4540554816352 + "x": 566.52246, + "y": 264.45406 }, { "body": null, "index": 2, "isInternal": false, - "x": 533.5067008022737, - "y": 256.9169954670572 + "x": 533.5067, + "y": 256.917 }, { "body": null, "index": 3, "isInternal": false, - "x": 518.8146804022654, - "y": 226.40552374631355 + "x": 518.81468, + "y": 226.40552 }, { "body": null, "index": 4, "isInternal": false, - "x": 533.5086599871113, - "y": 195.89499549850814 + "x": 533.50866, + "y": 195.895 }, { "body": null, "index": 5, "isInternal": false, - "x": 566.5249019224551, - "y": 188.3600555208544 + "x": 566.5249, + "y": 188.36006 }, { "body": null, "index": 6, "isInternal": false, - "x": 593.000223986292, - "y": 209.47590555385355 + "x": 593.00022, + "y": 209.47591 }, { - "angle": -0.005168767194661946, - "anglePrev": -0.004496688551899041, - "angularSpeed": 0.000672078642762905, - "angularVelocity": -0.000672078642762905, - "area": 1687.7661798887366, + "angle": -0.00517, + "anglePrev": -0.0045, + "angularSpeed": 0.00067, + "angularVelocity": -0.00067, + "area": 1687.76618, "axes": { "#": 1368 }, @@ -12218,13 +12218,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1980.3012000583947, - "inverseInertia": 0.0005049736878261308, - "inverseMass": 0.5924991340127004, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "inverseMass": 0.5925, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6877661798887367, + "mass": 1.68777, "motion": 0, "parent": null, "position": { @@ -12246,7 +12246,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.901237025505347, + "speed": 2.90124, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12267,12 +12267,12 @@ } ], { - "x": 0.00516874417976236, - "y": 0.9999866419525832 + "x": 0.00517, + "y": 0.99999 }, { - "x": -0.9999866419525832, - "y": 0.00516874417976236 + "x": -0.99999, + "y": 0.00517 }, { "max": { @@ -12283,12 +12283,12 @@ } }, { - "x": 636.5683460407896, - "y": 193.0367145148601 + "x": 636.56835, + "y": 193.03671 }, { - "x": 600.7903207558576, - "y": 142.42372121400544 + "x": 600.79032, + "y": 142.42372 }, { "category": 1, @@ -12305,16 +12305,16 @@ "y": 0 }, { - "x": 618.6680600682779, - "y": 169.18079257177138 + "x": 618.66806, + "y": 169.18079 }, { - "x": 0.050142466918345834, - "y": -1.5644626467540796 + "x": 0.05014, + "y": -1.56446 }, { - "x": 618.6455134081865, - "y": 172.08194198644858 + "x": 618.64551, + "y": 172.08194 }, { "endCol": 13, @@ -12337,8 +12337,8 @@ "yScale": 1 }, { - "x": 0.022546660091419427, - "y": -2.9011494146771954 + "x": 0.02255, + "y": -2.90115 }, [ { @@ -12358,36 +12358,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 600.7903207558576, - "y": 145.5084142234447 + "x": 600.79032, + "y": 145.50841 }, { "body": null, "index": 1, "isInternal": false, - "x": 636.3001344735894, - "y": 145.32487062868265 + "x": 636.30013, + "y": 145.32487 }, { "body": null, "index": 2, "isInternal": false, - "x": 636.5457993806982, - "y": 192.85317092009808 + "x": 636.5458, + "y": 192.85317 }, { "body": null, "index": 3, "isInternal": false, - "x": 601.0359856629664, - "y": 193.0367145148601 + "x": 601.03599, + "y": 193.03671 }, { - "angle": 0.00014588391655155744, - "anglePrev": 0.00072632318591547, - "angularSpeed": 0.00028909740604354215, - "angularVelocity": -0.0005866115731476555, - "area": 888.874596, + "angle": 0.00015, + "anglePrev": 0.00073, + "angularSpeed": 0.00029, + "angularVelocity": -0.00059, + "area": 888.8746, "axes": { "#": 1390 }, @@ -12408,13 +12408,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 526.7320316094421, - "inverseInertia": 0.0018984985533241191, - "inverseMass": 1.125018089728374, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "inverseMass": 1.12502, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.888874596, + "mass": 0.88887, "motion": 0, "parent": null, "position": { @@ -12436,7 +12436,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.901292228886559, + "speed": 2.90129, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12457,12 +12457,12 @@ } ], { - "x": 0.00014588391603410396, - "y": -0.9999999893589416 + "x": 0.00015, + "y": -1 }, { - "x": 0.9999999893589416, - "y": 0.00014588391603410396 + "x": 1, + "y": 0.00015 }, { "max": { @@ -12473,12 +12473,12 @@ } }, { - "x": 540.5583785797327, - "y": 112.62972048706507 + "x": 540.55838, + "y": 112.62972 }, { - "x": 510.73937787778215, - "y": 79.91007926553776 + "x": 510.73938, + "y": 79.91008 }, { "category": 1, @@ -12495,16 +12495,16 @@ "y": 0 }, { - "x": 525.6492040468227, - "y": 97.72054595415499 + "x": 525.6492, + "y": 97.72055 }, { - "x": 1.010495756383722, - "y": -6.804657324326492 + "x": 1.0105, + "y": -6.80466 }, { - "x": 525.6284392657474, - "y": 100.63159511250167 + "x": 525.62844, + "y": 100.6316 }, { "endCol": 11, @@ -12527,8 +12527,8 @@ "yScale": 1 }, { - "x": 0.019580587920700054, - "y": -2.9096226582269367 + "x": 0.01958, + "y": -2.90962 }, [ { @@ -12548,36 +12548,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 540.5540291966602, - "y": 112.62972048706507 + "x": 540.55403, + "y": 112.62972 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.7400295139127, - "y": 112.6253711039924 + "x": 510.74003, + "y": 112.62537 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.7443788969852, - "y": 82.81137142124491 + "x": 510.74438, + "y": 82.81137 }, { "body": null, "index": 3, "isInternal": false, - "x": 540.5583785797327, - "y": 82.81572080431751 + "x": 540.55838, + "y": 82.81572 }, { - "angle": -0.0001333126335067146, - "anglePrev": 0.000006550375617186982, - "angularSpeed": 0.00013986300912390158, - "angularVelocity": -0.00013986300912390158, - "area": 1624.121534624581, + "angle": -0.00013, + "anglePrev": 0.00001, + "angularSpeed": 0.00014, + "angularVelocity": -0.00014, + "area": 1624.12153, "axes": { "#": 1412 }, @@ -12598,13 +12598,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1766.6812602831346, - "inverseInertia": 0.0005660330601116675, - "inverseMass": 0.6157174686013581, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "inverseMass": 0.61572, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.624121534624581, + "mass": 1.62412, "motion": 0, "parent": null, "position": { @@ -12626,7 +12626,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9069431094865124, + "speed": 2.90694, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12647,12 +12647,12 @@ } ], { - "x": 0.00013331263311183681, - "y": 0.9999999911138708 + "x": 0.00013, + "y": 1 }, { - "x": -0.9999999911138708, - "y": 0.00013331263311183681 + "x": -1, + "y": 0.00013 }, { "max": { @@ -12663,12 +12663,12 @@ } }, { - "x": 704.5012606569396, - "y": 156.5653931170571 + "x": 704.50126, + "y": 156.56539 }, { - "x": 662.1985147531855, - "y": 115.24773221412065 + "x": 662.19851, + "y": 115.24773 }, { "category": 1, @@ -12685,16 +12685,16 @@ "y": 0 }, { - "x": 683.3540892773099, - "y": 137.36002814754522 + "x": 683.35409, + "y": 137.36003 }, { - "x": -0.00008588353153818644, - "y": -0.30636627848969455 + "x": -0.00009, + "y": -0.30637 }, { - "x": 683.3624924218045, - "y": 140.2669591114578 + "x": 683.36249, + "y": 140.26696 }, { "endCol": 14, @@ -12717,8 +12717,8 @@ "yScale": 1 }, { - "x": -0.008403144494643584, - "y": -2.906930963912579 + "x": -0.0084, + "y": -2.90693 }, [ { @@ -12738,36 +12738,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 662.2069178976801, - "y": 118.16030086573713 + "x": 662.20692, + "y": 118.1603 }, { "body": null, "index": 1, "isInternal": false, - "x": 704.4961407729212, - "y": 118.15466317803323 + "x": 704.49614, + "y": 118.15466 }, { "body": null, "index": 2, "isInternal": false, - "x": 704.5012606569396, - "y": 156.5597554293533 + "x": 704.50126, + "y": 156.55976 }, { "body": null, "index": 3, "isInternal": false, - "x": 662.2120377816985, - "y": 156.5653931170571 + "x": 662.21204, + "y": 156.56539 }, { - "angle": 0.0003819801945061525, - "anglePrev": 0.00034122406827272525, - "angularSpeed": 0.00004075612623342721, - "angularVelocity": 0.00004075612623342721, - "area": 925.4335858447538, + "angle": 0.00038, + "anglePrev": 0.00034, + "angularSpeed": 0.00004, + "angularVelocity": 0.00004, + "area": 925.43359, "axes": { "#": 1434 }, @@ -12788,13 +12788,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 658.9066011822378, - "inverseInertia": 0.001517665778739746, - "inverseMass": 1.080574570985751, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "inverseMass": 1.08057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9254335858447538, + "mass": 0.92543, "motion": 0, "parent": null, "position": { @@ -12816,7 +12816,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907655876534939, + "speed": 2.90766, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12837,12 +12837,12 @@ } ], { - "x": -0.0003819801852171027, - "y": 0.9999999270455663 + "x": -0.00038, + "y": 1 }, { - "x": -0.9999999270455663, - "y": -0.0003819801852171027 + "x": -1, + "y": -0.00038 }, { "max": { @@ -12853,12 +12853,12 @@ } }, { - "x": 744.5324630224056, - "y": 218.9462345861678 + "x": 744.53246, + "y": 218.94623 }, { - "x": 704.509999832723, - "y": 195.80299404008178 + "x": 704.51, + "y": 195.80299 }, { "category": 1, @@ -12875,16 +12875,16 @@ "y": 0 }, { - "x": 724.5212314275643, - "y": 207.3746143131248 + "x": 724.52123, + "y": 207.37461 }, { "x": 0, "y": 0 }, { - "x": 724.5210851648377, - "y": 210.28227018598105 + "x": 724.52109, + "y": 210.28227 }, { "endCol": 15, @@ -12907,8 +12907,8 @@ "yScale": 1 }, { - "x": 0.00014626272660734686, - "y": -2.9076558728562394 + "x": 0.00015, + "y": -2.90766 }, [ { @@ -12928,36 +12928,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 704.5188342543346, - "y": 195.80299404008178 + "x": 704.51883, + "y": 195.80299 }, { "body": null, "index": 1, "isInternal": false, - "x": 744.5324630224056, - "y": 195.81827845452486 + "x": 744.53246, + "y": 195.81828 }, { "body": null, "index": 2, "isInternal": false, - "x": 744.523628600794, - "y": 218.9462345861678 + "x": 744.52363, + "y": 218.94623 }, { "body": null, "index": 3, "isInternal": false, - "x": 704.509999832723, - "y": 218.93095017172473 + "x": 704.51, + "y": 218.93095 }, { - "angle": 0.002904898989147602, - "anglePrev": 0.0027800197017961155, - "angularSpeed": 0.0001248792873514865, - "angularVelocity": 0.0001248792873514865, - "area": 5929.347511999999, + "angle": 0.0029, + "anglePrev": 0.00278, + "angularSpeed": 0.00012, + "angularVelocity": 0.00012, + "area": 5929.34751, "axes": { "#": 1456 }, @@ -12979,13 +12979,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 22382.17146584697, - "inverseInertia": 0.00004467841744157413, - "inverseMass": 0.1686526212161066, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "inverseMass": 0.16865, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.929347512, + "mass": 5.92935, "motion": 0, "parent": null, "position": { @@ -13007,7 +13007,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9021506738609877, + "speed": 2.90215, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13061,56 +13061,56 @@ } ], { - "x": -0.9702371120239448, - "y": -0.2421568633168081 + "x": -0.97024, + "y": -0.24216 }, { - "x": -0.8841018656990898, - "y": -0.4672942232334877 + "x": -0.8841, + "y": -0.46729 }, { - "x": -0.746553514413979, - "y": -0.665325371616127 + "x": -0.74655, + "y": -0.66533 }, { - "x": -0.5657196018610702, - "y": -0.8245976789138761 + "x": -0.56572, + "y": -0.8246 }, { - "x": -0.351902256595603, - "y": -0.9360367523783041 + "x": -0.3519, + "y": -0.93604 }, { - "x": -0.11759467512761783, - "y": -0.9930616760209966 + "x": -0.11759, + "y": -0.99306 }, { - "x": 0.1233621457631648, - "y": -0.9923617188267128 + "x": 0.12336, + "y": -0.99236 }, { - "x": 0.3573344714399035, - "y": -0.9339764855288191 + "x": 0.35733, + "y": -0.93398 }, { - "x": 0.5705007732851636, - "y": -0.8212970642106489 + "x": 0.5705, + "y": -0.8213 }, { - "x": 0.7504062992117582, - "y": -0.6609768423351252 + "x": 0.75041, + "y": -0.66098 }, { - "x": 0.8868018146237686, - "y": -0.46214991245264914 + "x": 0.8868, + "y": -0.46215 }, { - "x": 0.9716276120386553, - "y": -0.23651592657590975 + "x": 0.97163, + "y": -0.23652 }, { - "x": 0.9999957807838986, - "y": 0.002904894903680924 + "x": 1, + "y": 0.0029 }, { "max": { @@ -13121,12 +13121,12 @@ } }, { - "x": 680.3050067536011, - "y": 295.1848156834023 + "x": 680.30501, + "y": 295.18482 }, { - "x": 593.5942280621157, - "y": 204.97103700108678 + "x": 593.59423, + "y": 204.97104 }, { "category": 1, @@ -13143,16 +13143,16 @@ "y": 0 }, { - "x": 636.9473307667114, - "y": 251.52899987750044 + "x": 636.94733, + "y": 251.529 }, { - "x": -0.20634093553583363, - "y": -0.9233586368477935 + "x": -0.20634, + "y": -0.92336 }, { - "x": 636.9427574844174, - "y": 254.43114694801235 + "x": 636.94276, + "y": 254.43115 }, { "endCol": 14, @@ -13175,8 +13175,8 @@ "yScale": 1 }, { - "x": 0.004573282294046521, - "y": -2.902147070511907 + "x": 0.00457, + "y": -2.90215 }, [ { @@ -13262,190 +13262,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 680.2698623573409, - "y": 256.91687001132107 + "x": 680.26986, + "y": 256.91687 }, { "body": null, "index": 1, "isInternal": false, - "x": 677.7211878645255, - "y": 267.12850946488936 + "x": 677.72119, + "y": 267.12851 }, { "body": null, "index": 2, "isInternal": false, - "x": 672.8031377851039, - "y": 276.43326230504056 + "x": 672.80314, + "y": 276.43326 }, { "body": null, "index": 3, "isInternal": false, - "x": 665.8012853738569, - "y": 284.2899558087426 + "x": 665.80129, + "y": 284.28996 }, { "body": null, "index": 4, "isInternal": false, - "x": 657.1229535498585, - "y": 290.2437712872887 + "x": 657.12295, + "y": 290.24377 }, { "body": null, "index": 5, "isInternal": false, - "x": 647.2721539991642, - "y": 293.94717137532206 + "x": 647.27215, + "y": 293.94717 }, { "body": null, "index": 6, "isInternal": false, - "x": 636.8205146747964, - "y": 295.1848156834023 + "x": 636.82051, + "y": 295.18482 }, { "body": null, "index": 7, "isInternal": false, - "x": 626.3762421639038, - "y": 293.8864706914148 + "x": 626.37624, + "y": 293.88647 }, { "body": null, "index": 8, "isInternal": false, - "x": 616.5471247487708, - "y": 290.1259022716769 + "x": 616.54712, + "y": 290.1259 }, { "body": null, "index": 9, "isInternal": false, - "x": 607.9035296580307, - "y": 284.1217682036092 + "x": 607.90353, + "y": 284.12177 }, { "body": null, "index": 10, "isInternal": false, - "x": 600.9474409610963, - "y": 276.2245281768417 + "x": 600.94744, + "y": 276.22453 }, { "body": null, "index": 11, "isInternal": false, - "x": 596.0835323128897, - "y": 266.89135965474264 + "x": 596.08353, + "y": 266.89136 }, { "body": null, "index": 12, "isInternal": false, - "x": 593.5942280621157, - "y": 256.6650853406497 + "x": 593.59423, + "y": 256.66509 }, { "body": null, "index": 13, "isInternal": false, - "x": 593.6247991760819, - "y": 246.14112974367993 + "x": 593.6248, + "y": 246.14113 }, { "body": null, "index": 14, "isInternal": false, - "x": 596.1734736688973, - "y": 235.9294902901116 + "x": 596.17347, + "y": 235.92949 }, { "body": null, "index": 15, "isInternal": false, - "x": 601.0915237483189, - "y": 226.6247374499605 + "x": 601.09152, + "y": 226.62474 }, { "body": null, "index": 16, "isInternal": false, - "x": 608.0933761595659, - "y": 218.76804394625844 + "x": 608.09338, + "y": 218.76804 }, { "body": null, "index": 17, "isInternal": false, - "x": 616.7717079835643, - "y": 212.81422846771238 + "x": 616.77171, + "y": 212.81423 }, { "body": null, "index": 18, "isInternal": false, - "x": 626.6225075342586, - "y": 209.11082837967905 + "x": 626.62251, + "y": 209.11083 }, { "body": null, "index": 19, "isInternal": false, - "x": 637.0741468586264, - "y": 207.8731840715987 + "x": 637.07415, + "y": 207.87318 }, { "body": null, "index": 20, "isInternal": false, - "x": 647.5184193695189, - "y": 209.1715290635864 + "x": 647.51842, + "y": 209.17153 }, { "body": null, "index": 21, "isInternal": false, - "x": 657.347536784652, - "y": 212.93209748332407 + "x": 657.34754, + "y": 212.9321 }, { "body": null, "index": 22, "isInternal": false, - "x": 665.991131875392, - "y": 218.93623155139178 + "x": 665.99113, + "y": 218.93623 }, { "body": null, "index": 23, "isInternal": false, - "x": 672.9472205723265, - "y": 226.8334715781594 + "x": 672.94722, + "y": 226.83347 }, { "body": null, "index": 24, "isInternal": false, - "x": 677.8111292205331, - "y": 236.16664010025835 + "x": 677.81113, + "y": 236.16664 }, { "body": null, "index": 25, "isInternal": false, - "x": 680.3004334713071, - "y": 246.39291441435125 + "x": 680.30043, + "y": 246.39291 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2550.166396822507, + "area": 2550.1664, "axes": { "#": 1511 }, @@ -13466,13 +13466,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 10939.165130883785, - "inverseInertia": 0.00009141465441240754, - "inverseMass": 0.392131274745834, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "inverseMass": 0.39213, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5501663968225072, + "mass": 2.55017, "motion": 0, "parent": null, "position": { @@ -13494,7 +13494,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13531,12 +13531,12 @@ } }, { - "x": 942.2964693144023, - "y": 218.76932067879017 + "x": 942.29647, + "y": 218.76932 }, { - "x": 831.2026764474614, - "y": 195.81424523297397 + "x": 831.20268, + "y": 195.81425 }, { "category": 1, @@ -13553,16 +13553,16 @@ "y": 0 }, { - "x": 886.7495728809319, - "y": 207.29178295588207 + "x": 886.74957, + "y": 207.29178 }, { "x": 0, "y": 0 }, { - "x": 886.7495728809319, - "y": 210.19905367091775 + "x": 886.74957, + "y": 210.19905 }, { "endCol": 19, @@ -13586,7 +13586,7 @@ }, { "x": 0, - "y": -2.9072707150356862 + "y": -2.90727 }, [ { @@ -13606,43 +13606,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 831.2026764474614, - "y": 195.81424523297397 + "x": 831.20268, + "y": 195.81425 }, { "body": null, "index": 1, "isInternal": false, - "x": 942.2964693144023, - "y": 195.81424523297397 + "x": 942.29647, + "y": 195.81425 }, { "body": null, "index": 2, "isInternal": false, - "x": 942.2964693144023, - "y": 218.76932067879017 + "x": 942.29647, + "y": 218.76932 }, { "body": null, "index": 3, "isInternal": false, - "x": 831.2026764474614, - "y": 218.76932067879017 + "x": 831.20268, + "y": 218.76932 }, { - "angle": -0.0004163078228375868, - "anglePrev": -0.00030738984108524256, - "angularSpeed": 0.00006425905177449534, - "angularVelocity": 0.000004477426779834364, - "area": 5174.381305999998, + "angle": -0.00042, + "anglePrev": -0.00031, + "angularSpeed": 0.00006, + "angularVelocity": 0, + "area": 5174.38131, "axes": { "#": 1533 }, "bounds": { "#": 1547 }, - "circleRadius": 40.782407407407405, + "circleRadius": 40.78241, "collisionFilter": { "#": 1550 }, @@ -13657,13 +13657,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17045.3242729355, - "inverseInertia": 0.000058667115039154525, - "inverseMass": 0.1932598200369272, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "inverseMass": 0.19326, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.174381305999998, + "mass": 5.17438, "motion": 0, "parent": null, "position": { @@ -13685,7 +13685,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9152896284418692, + "speed": 2.91529, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13739,56 +13739,56 @@ } ], { - "x": -0.9710384761975923, - "y": -0.23892316284499981 + "x": -0.97104, + "y": -0.23892 }, { - "x": -0.8856383939397692, - "y": -0.4643755324947543 + "x": -0.88564, + "y": -0.46438 }, { - "x": -0.7488122353962892, - "y": -0.6627821935755458 + "x": -0.74881, + "y": -0.66278 }, { - "x": -0.5684201180599894, - "y": -0.8227384574606127 + "x": -0.56842, + "y": -0.82274 }, { - "x": -0.3549545445829145, - "y": -0.9348835602789985 + "x": -0.35495, + "y": -0.93488 }, { - "x": -0.12094206863336164, - "y": -0.9926595670393166 + "x": -0.12094, + "y": -0.99266 }, { - "x": 0.12011552292104066, - "y": -0.9927599212062328 + "x": 0.12012, + "y": -0.99276 }, { - "x": 0.35417602295777767, - "y": -0.935178776898734 + "x": 0.35418, + "y": -0.93518 }, { - "x": 0.5677348961988832, - "y": -0.8232114477083298 + "x": 0.56773, + "y": -0.82321 }, { - "x": 0.7482601330794221, - "y": -0.6634054365499014 + "x": 0.74826, + "y": -0.66341 }, { - "x": 0.8852514406667539, - "y": -0.46511276782887506 + "x": 0.88525, + "y": -0.46511 }, { - "x": 0.9708392084714617, - "y": -0.2397315817628242 + "x": 0.97084, + "y": -0.23973 }, { - "x": 0.9999999133438998, - "y": -0.00041630781081238266 + "x": 1, + "y": -0.00042 }, { "max": { @@ -13799,12 +13799,12 @@ } }, { - "x": 1027.824284446427, - "y": 219.73268714519128 + "x": 1027.82428, + "y": 219.73269 }, { - "x": 946.84702381736, - "y": 135.25340631315476 + "x": 946.84702, + "y": 135.25341 }, { "category": 1, @@ -13821,16 +13821,16 @@ "y": 0 }, { - "x": 987.3340668782859, - "y": 178.95069067920028 + "x": 987.33407, + "y": 178.95069 }, { - "x": -0.49662490203629056, - "y": -1.8317161351975668 + "x": -0.49662, + "y": -1.83172 }, { - "x": 987.3320081912138, - "y": 181.8694784624965 + "x": 987.33201, + "y": 181.86948 }, { "endCol": 21, @@ -13853,8 +13853,8 @@ "yScale": 1 }, { - "x": 0.0013987244552708944, - "y": -2.90950374148278 + "x": 0.0014, + "y": -2.9095 }, [ { @@ -13940,190 +13940,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1027.821109939211, - "y": 183.8498360314782 + "x": 1027.82111, + "y": 183.84984 }, { "body": null, "index": 1, "isInternal": false, - "x": 1025.472084217475, - "y": 193.39681477653787 + "x": 1025.47208, + "y": 193.39681 }, { "body": null, "index": 2, "isInternal": false, - "x": 1020.9067085729005, - "y": 202.10371613258414 + "x": 1020.90671, + "y": 202.10372 }, { "body": null, "index": 3, "isInternal": false, - "x": 1014.3907727469913, - "y": 209.46542940550069 + "x": 1014.39077, + "y": 209.46543 }, { "body": null, "index": 4, "isInternal": false, - "x": 1006.3020985272491, - "y": 215.05379726802357 + "x": 1006.3021, + "y": 215.0538 }, { "body": null, "index": 5, "isInternal": false, - "x": 997.1105505729071, - "y": 218.54362408364523 + "x": 997.11055, + "y": 218.54362 }, { "body": null, "index": 6, "isInternal": false, - "x": 987.3510447434265, - "y": 219.73268714519128 + "x": 987.35104, + "y": 219.73269 }, { "body": null, "index": 7, "isInternal": false, - "x": 977.5905522644343, - "y": 218.5517504121123 + "x": 977.59055, + "y": 218.55175 }, { "body": null, "index": 8, "isInternal": false, - "x": 968.396101812035, - "y": 215.0695778319002 + "x": 968.3961, + "y": 215.06958 }, { "body": null, "index": 9, "isInternal": false, - "x": 960.3027774340463, - "y": 209.48794666237188 + "x": 960.30278, + "y": 209.48795 }, { "body": null, "index": 10, "isInternal": false, - "x": 953.7807143897778, - "y": 202.1316612106927 + "x": 953.78071, + "y": 202.13166 }, { "body": null, "index": 11, "isInternal": false, - "x": 949.2080908262162, - "y": 193.4285640754216 + "x": 949.20809, + "y": 193.42856 }, { "body": null, "index": 12, "isInternal": false, - "x": 946.8511169557561, - "y": 183.88354447491963 + "x": 946.85112, + "y": 183.88354 }, { "body": null, "index": 13, "isInternal": false, - "x": 946.84702381736, - "y": 174.05154532692237 + "x": 946.84702, + "y": 174.05155 }, { "body": null, "index": 14, "isInternal": false, - "x": 949.1960495390964, - "y": 164.5045665818627 + "x": 949.19605, + "y": 164.50457 }, { "body": null, "index": 15, "isInternal": false, - "x": 953.7614251836712, - "y": 155.79766522581642 + "x": 953.76143, + "y": 155.79767 }, { "body": null, "index": 16, "isInternal": false, - "x": 960.2773610095804, - "y": 148.43595195289998 + "x": 960.27736, + "y": 148.43595 }, { "body": null, "index": 17, "isInternal": false, - "x": 968.3660352293226, - "y": 142.84758409037704 + "x": 968.36604, + "y": 142.84758 }, { "body": null, "index": 18, "isInternal": false, - "x": 977.5575831836646, - "y": 139.3577572747554 + "x": 977.55758, + "y": 139.35776 }, { "body": null, "index": 19, "isInternal": false, - "x": 987.3170890131452, - "y": 138.16869421320933 + "x": 987.31709, + "y": 138.16869 }, { "body": null, "index": 20, "isInternal": false, - "x": 997.0775814921374, - "y": 139.34963094628836 + "x": 997.07758, + "y": 139.34963 }, { "body": null, "index": 21, "isInternal": false, - "x": 1006.2720319445367, - "y": 142.83180352650035 + "x": 1006.27203, + "y": 142.8318 }, { "body": null, "index": 22, "isInternal": false, - "x": 1014.3653563225254, - "y": 148.41343469602873 + "x": 1014.36536, + "y": 148.41343 }, { "body": null, "index": 23, "isInternal": false, - "x": 1020.8874193667939, - "y": 155.76972014770786 + "x": 1020.88742, + "y": 155.76972 }, { "body": null, "index": 24, "isInternal": false, - "x": 1025.4600429303553, - "y": 164.4728172829789 + "x": 1025.46004, + "y": 164.47282 }, { "body": null, "index": 25, "isInternal": false, - "x": 1027.8170168008153, - "y": 174.01783688348092 + "x": 1027.81702, + "y": 174.01784 }, { - "angle": -0.004791579552306189, - "anglePrev": -0.003659575533177995, - "angularSpeed": 0.0009078537278077311, - "angularVelocity": -0.00028372365897098937, - "area": 1308.2034644955884, + "angle": -0.00479, + "anglePrev": -0.00366, + "angularSpeed": 0.00091, + "angularVelocity": -0.00028, + "area": 1308.20346, "axes": { "#": 1588 }, @@ -14144,13 +14144,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1149.8579054087725, - "inverseInertia": 0.0008696726745940854, - "inverseMass": 0.7644070873834413, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "inverseMass": 0.76441, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3082034644955884, + "mass": 1.3082, "motion": 0, "parent": null, "position": { @@ -14172,7 +14172,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.920073601620103, + "speed": 2.92007, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14193,12 +14193,12 @@ } ], { - "x": 0.004791561217160725, - "y": 0.9999885204046607 + "x": 0.00479, + "y": 0.99999 }, { - "x": -0.9999885204046607, - "y": 0.004791561217160725 + "x": -0.99999, + "y": 0.00479 }, { "max": { @@ -14209,12 +14209,12 @@ } }, { - "x": 1066.432561531742, - "y": 206.99102622657855 + "x": 1066.43256, + "y": 206.99103 }, { - "x": 1027.7622046754166, - "y": 169.9093688842437 + "x": 1027.7622, + "y": 169.90937 }, { "category": 1, @@ -14231,16 +14231,16 @@ "y": 0 }, { - "x": 1047.0944151112844, - "y": 189.91023133952072 + "x": 1047.09442, + "y": 189.91023 }, { - "x": -0.20591115808569205, - "y": -1.2407618862830483 + "x": -0.20591, + "y": -1.24076 }, { - "x": 1047.0840656856274, - "y": 192.81645570145722 + "x": 1047.08407, + "y": 192.81646 }, { "endCol": 22, @@ -14263,8 +14263,8 @@ "yScale": 1 }, { - "x": 0.012959798064457573, - "y": -2.94294584579373 + "x": 0.01296, + "y": -2.94295 }, [ { @@ -14284,36 +14284,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1027.7622046754166, - "y": 173.01392141850303 + "x": 1027.7622, + "y": 173.01392 }, { "body": null, "index": 1, "isInternal": false, - "x": 1066.263820300544, - "y": 172.8294364524629 + "x": 1066.26382, + "y": 172.82944 }, { "body": null, "index": 2, "isInternal": false, - "x": 1066.426625547152, - "y": 206.8065412605384 + "x": 1066.42663, + "y": 206.80654 }, { "body": null, "index": 3, "isInternal": false, - "x": 1027.9250099220246, - "y": 206.99102622657855 + "x": 1027.92501, + "y": 206.99103 }, { - "angle": -0.001175711930161885, - "anglePrev": -0.0009522887928797848, - "angularSpeed": 0.00022342313728210042, - "angularVelocity": -0.00022342313728210042, - "area": 3803.7767479999993, + "angle": -0.00118, + "anglePrev": -0.00095, + "angularSpeed": 0.00022, + "angularVelocity": -0.00022, + "area": 3803.77675, "axes": { "#": 1610 }, @@ -14334,13 +14334,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 9247.768748441516, - "inverseInertia": 0.00010813419184692798, - "inverseMass": 0.2628966067805618, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "inverseMass": 0.2629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.8037767479999993, + "mass": 3.80378, "motion": 0, "parent": null, "position": { @@ -14362,7 +14362,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907142839266271, + "speed": 2.90714, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14398,32 +14398,32 @@ } ], { - "x": 0.6244068923877252, - "y": 0.781099246407717 + "x": 0.62441, + "y": 0.7811 }, { - "x": -0.22139641898801002, - "y": 0.9751838932525932 + "x": -0.2214, + "y": 0.97518 }, { - "x": -0.9004510804107017, - "y": 0.43495729880897477 + "x": -0.90045, + "y": 0.43496 }, { - "x": -0.9014713590555434, - "y": -0.432838756123515 + "x": -0.90147, + "y": -0.43284 }, { - "x": -0.22368887547805671, - "y": -0.9746606009208348 + "x": -0.22369, + "y": -0.97466 }, { - "x": 0.6225684724423356, - "y": -0.782565330896288 + "x": 0.62257, + "y": -0.78257 }, { - "x": 0.9999993088508081, - "y": -0.0011757116592977558 + "x": 1, + "y": -0.00118 }, { "max": { @@ -14434,12 +14434,12 @@ } }, { - "x": 1130.183732961886, - "y": 268.49400753128225 + "x": 1130.18373, + "y": 268.49401 }, { - "x": 1059.2887995176143, - "y": 192.88891509665902 + "x": 1059.2888, + "y": 192.88892 }, { "category": 1, @@ -14456,16 +14456,16 @@ "y": 0 }, { - "x": 1096.5735973623139, - "y": 232.1547865215999 + "x": 1096.5736, + "y": 232.15479 }, { - "x": 0.02038303094809737, - "y": -0.4203447972683916 + "x": 0.02038, + "y": -0.42034 }, { - "x": 1096.574560304272, - "y": 235.06192920138704 + "x": 1096.57456, + "y": 235.06193 }, { "endCol": 23, @@ -14488,8 +14488,8 @@ "yScale": 1 }, { - "x": -0.0009629419579641762, - "y": -2.9071426797871376 + "x": -0.00096, + "y": -2.90714 }, [ { @@ -14518,57 +14518,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 1130.183732961886, - "y": 248.29228184672178 + "x": 1130.18373, + "y": 248.29228 }, { "body": null, "index": 1, "isInternal": false, - "x": 1104.9124669000964, - "y": 268.49400753128225 + "x": 1104.91247, + "y": 268.49401 }, { "body": null, "index": 2, "isInternal": false, - "x": 1073.362023576377, - "y": 261.33109680471404 + "x": 1073.36202, + "y": 261.3311 }, { "body": null, "index": 3, "isInternal": false, - "x": 1059.2897624595723, - "y": 232.19862159129497 + "x": 1059.28976, + "y": 232.19862 }, { "body": null, "index": 4, "isInternal": false, - "x": 1073.2934819380632, - "y": 203.03313709732953 + "x": 1073.29348, + "y": 203.03314 }, { "body": null, "index": 5, "isInternal": false, - "x": 1104.8269950138883, - "y": 195.79605777644616 + "x": 1104.827, + "y": 195.79606 }, { "body": null, "index": 6, "isInternal": false, - "x": 1130.145693986861, - "y": 215.93830420816275 + "x": 1130.14569, + "y": 215.9383 }, { - "angle": -0.0030690149303487617, - "anglePrev": -0.0024477294074841923, - "angularSpeed": 0.0006212855228645692, - "angularVelocity": -0.0006212855228645692, - "area": 1519.5385669833, + "angle": -0.00307, + "anglePrev": -0.00245, + "angularSpeed": 0.00062, + "angularVelocity": -0.00062, + "area": 1519.53857, "axes": { "#": 1640 }, @@ -14589,13 +14589,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1623.6987742797708, - "inverseInertia": 0.0006158777821604092, - "inverseMass": 0.6580945174595165, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "inverseMass": 0.65809, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5195385669833, + "mass": 1.51954, "motion": 0, "parent": null, "position": { @@ -14617,7 +14617,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9110166449876647, + "speed": 2.91102, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14638,12 +14638,12 @@ } ], { - "x": 0.0030690101125844657, - "y": 0.9999952905773751 + "x": 0.00307, + "y": 1 }, { - "x": -0.9999952905773751, - "y": 0.0030690101125844657 + "x": -1, + "y": 0.00307 }, { "max": { @@ -14654,12 +14654,12 @@ } }, { - "x": 1168.1502356059268, - "y": 241.8225960289607 + "x": 1168.15024, + "y": 241.8226 }, { - "x": 1134.950554393898, - "y": 195.7565914207639 + "x": 1134.95055, + "y": 195.75659 }, { "category": 1, @@ -14676,16 +14676,16 @@ "y": 0 }, { - "x": 1151.5503949999124, - "y": 218.78959372486224 + "x": 1151.55039, + "y": 218.78959 }, { "x": 0, "y": 0 }, { - "x": 1151.554563590535, - "y": 221.70060738512692 + "x": 1151.55456, + "y": 221.70061 }, { "endCol": 24, @@ -14708,8 +14708,8 @@ "yScale": 1 }, { - "x": -0.004168590622650754, - "y": -2.9110136602646612 + "x": -0.00417, + "y": -2.91101 }, [ { @@ -14729,36 +14729,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1134.950554393898, - "y": 195.85804912197162 + "x": 1134.95055, + "y": 195.85805 }, { "body": null, "index": 1, "isInternal": false, - "x": 1168.009169282308, - "y": 195.7565914207639 + "x": 1168.00917, + "y": 195.75659 }, { "body": null, "index": 2, "isInternal": false, - "x": 1168.1502356059268, - "y": 241.72113832775298 + "x": 1168.15024, + "y": 241.72114 }, { "body": null, "index": 3, "isInternal": false, - "x": 1135.091620717517, - "y": 241.8225960289607 + "x": 1135.09162, + "y": 241.8226 }, { - "angle": -0.000760387128499708, - "anglePrev": -0.0005944951075460047, - "angularSpeed": 0.00016589202095370338, - "angularVelocity": -0.00016589202095370338, - "area": 3306.4800040000005, + "angle": -0.00076, + "anglePrev": -0.00059, + "angularSpeed": 0.00017, + "angularVelocity": -0.00017, + "area": 3306.48, "axes": { "#": 1662 }, @@ -14779,13 +14779,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 7288.540011234562, - "inverseInertia": 0.00013720168901571494, - "inverseMass": 0.302436427496992, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "inverseMass": 0.30244, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.3064800040000004, + "mass": 3.30648, "motion": 0, "parent": null, "position": { @@ -14807,7 +14807,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8962677923100384, + "speed": 2.89627, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14828,12 +14828,12 @@ } ], { - "x": -0.0007603870552251838, - "y": -0.9999997109057213 + "x": -0.00076, + "y": -1 }, { - "x": 0.9999997109057213, - "y": -0.0007603870552251838 + "x": 1, + "y": -0.00076 }, { "max": { @@ -14844,12 +14844,12 @@ } }, { - "x": 1233.4067834934149, - "y": 253.3888678149733 + "x": 1233.40678, + "y": 253.38887 }, { - "x": 1175.8587579092593, - "y": 192.9468937976527 + "x": 1175.85876, + "y": 192.94689 }, { "category": 1, @@ -14866,16 +14866,16 @@ "y": 0 }, { - "x": 1204.6316114857348, - "y": 224.61601423849814 + "x": 1204.63161, + "y": 224.61601 }, { - "x": 0.815405057661124, + "x": 0.81541, "y": 0 }, { - "x": 1204.62929305453, - "y": 227.5122811028684 + "x": 1204.62929, + "y": 227.51228 }, { "endCol": 25, @@ -14898,8 +14898,8 @@ "yScale": 1 }, { - "x": 0.0023184312046623744, - "y": -2.896266864370273 + "x": 0.00232, + "y": -2.89627 }, [ { @@ -14919,35 +14919,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 1233.4044650622102, - "y": 253.34514403852376 + "x": 1233.40447, + "y": 253.34514 }, { "body": null, "index": 1, "isInternal": false, - "x": 1175.9024816857093, - "y": 253.3888678149733 + "x": 1175.90248, + "y": 253.38887 }, { "body": null, "index": 2, "isInternal": false, - "x": 1175.8587579092593, - "y": 195.8868844384725 + "x": 1175.85876, + "y": 195.88688 }, { "body": null, "index": 3, "isInternal": false, - "x": 1233.3607412857602, - "y": 195.84316066202297 + "x": 1233.36074, + "y": 195.84316 }, { - "angle": -0.07442512141606533, - "anglePrev": -0.04003764591244662, - "angularSpeed": 0.021046028009200465, - "angularVelocity": -0.033254015933553795, + "angle": -0.07443, + "anglePrev": -0.04004, + "angularSpeed": 0.02105, + "angularVelocity": -0.03325, "area": 1545.32445, "axes": { "#": 1684 @@ -14969,13 +14969,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 1838.3045471526925, - "inverseInertia": 0.000543979506305893, - "inverseMass": 0.6471132971461107, + "inertia": 1838.30455, + "inverseInertia": 0.00054, + "inverseMass": 0.64711, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.54532445, + "mass": 1.54532, "motion": 0, "parent": null, "position": { @@ -14997,7 +14997,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.306341431621366, + "speed": 2.30634, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15021,16 +15021,16 @@ } ], { - "x": -0.43423154080596915, - "y": 0.9008012927218046 + "x": -0.43423, + "y": 0.9008 }, { - "x": -0.5630198147202603, - "y": -0.8264433968714153 + "x": -0.56302, + "y": -0.82644 }, { - "x": 0.997231728815685, - "y": -0.07435643242706003 + "x": 0.99723, + "y": -0.07436 }, { "max": { @@ -15041,12 +15041,12 @@ } }, { - "x": 80.37498438089652, - "y": 350.10615016182135 + "x": 80.37498, + "y": 350.10615 }, { - "x": 26.55575378638824, - "y": 288.22519418752074 + "x": 26.55575, + "y": 288.22519 }, { "category": 1, @@ -15063,16 +15063,16 @@ "y": 0 }, { - "x": 60.95669658087375, - "y": 321.6011150993016 + "x": 60.9567, + "y": 321.60112 }, { "x": 0, "y": 0 }, { - "x": 60.96311704850627, - "y": 323.44601161489163 + "x": 60.96312, + "y": 323.44601 }, { "endCol": 1, @@ -15095,8 +15095,8 @@ "yScale": 1 }, { - "x": -0.006420467632516136, - "y": -1.8840990853925632 + "x": -0.00642, + "y": -1.8841 }, [ { @@ -15113,29 +15113,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 80.37498438089652, - "y": 350.10615016182135 + "x": 80.37498, + "y": 350.10615 }, { "body": null, "index": 1, "isInternal": false, - "x": 26.562174254020753, - "y": 324.1656684537109 + "x": 26.56217, + "y": 324.16567 }, { "body": null, "index": 2, "isInternal": false, - "x": 75.93293110770398, - "y": 290.5315266823724 + "x": 75.93293, + "y": 290.53153 }, { - "angle": -0.013090984805482497, - "anglePrev": -0.008139204296005016, - "angularSpeed": 0.004852682833267881, - "angularVelocity": -0.0049514713299681126, - "area": 832.6916065934118, + "angle": -0.01309, + "anglePrev": -0.00814, + "angularSpeed": 0.00485, + "angularVelocity": -0.00495, + "area": 832.69161, "axes": { "#": 1706 }, @@ -15156,13 +15156,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 462.4740461527257, - "inverseInertia": 0.0021622835017854466, - "inverseMass": 1.2009247986671274, + "inertia": 462.47405, + "inverseInertia": 0.00216, + "inverseMass": 1.20092, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8326916065934119, + "mass": 0.83269, "motion": 0, "parent": null, "position": { @@ -15184,7 +15184,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7916214681372145, + "speed": 2.79162, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15205,12 +15205,12 @@ } ], { - "x": 0.013090610899869603, - "y": 0.9999143142821127 + "x": 0.01309, + "y": 0.99991 }, { - "x": -0.9999143142821127, - "y": 0.013090610899869603 + "x": -0.99991, + "y": 0.01309 }, { "max": { @@ -15221,12 +15221,12 @@ } }, { - "x": 92.0116725552267, - "y": 318.1776662283827 + "x": 92.01167, + "y": 318.17767 }, { - "x": 62.31164230577707, - "y": 286.59401269068826 + "x": 62.31164, + "y": 286.59401 }, { "category": 1, @@ -15243,16 +15243,16 @@ "y": 0 }, { - "x": 77.1725207585053, - "y": 303.78160791936176 + "x": 77.17252, + "y": 303.78161 }, { - "x": -1.9975865102589232, - "y": -0.12977207929668164 + "x": -1.99759, + "y": -0.12977 }, { - "x": 77.20418457480324, - "y": 306.57997467326163 + "x": 77.20418, + "y": 306.57997 }, { "endCol": 1, @@ -15275,8 +15275,8 @@ "yScale": 1 }, { - "x": -0.03158355085652431, - "y": -2.798330303826333 + "x": -0.03158, + "y": -2.79833 }, [ { @@ -15296,36 +15296,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 62.3333689617839, - "y": 289.7692210053699 + "x": 62.33337, + "y": 289.76922 }, { "body": null, "index": 1, "isInternal": false, - "x": 91.63975678467217, - "y": 289.38554961034083 + "x": 91.63976, + "y": 289.38555 }, { "body": null, "index": 2, "isInternal": false, - "x": 92.0116725552267, - "y": 317.7939948333536 + "x": 92.01167, + "y": 317.79399 }, { "body": null, "index": 3, "isInternal": false, - "x": 62.70528473233842, - "y": 318.1776662283827 + "x": 62.70528, + "y": 318.17767 }, { - "angle": 0.00027202611391938204, - "anglePrev": 0.0010912468320649685, - "angularSpeed": 0.0007617880265641005, - "angularVelocity": -0.0008206096746457496, - "area": 979.5317619999998, + "angle": 0.00027, + "anglePrev": 0.00109, + "angularSpeed": 0.00076, + "angularVelocity": -0.00082, + "area": 979.53176, "axes": { "#": 1728 }, @@ -15346,13 +15346,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 621.1930410018283, - "inverseInertia": 0.0016098055419089229, - "inverseMass": 1.0208959410955785, + "inertia": 621.19304, + "inverseInertia": 0.00161, + "inverseMass": 1.0209, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9795317619999999, + "mass": 0.97953, "motion": 0, "parent": null, "position": { @@ -15374,7 +15374,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.888921323460935, + "speed": 2.88892, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15404,24 +15404,24 @@ } ], { - "x": 0.3087809159898413, - "y": 0.9511331904210234 + "x": 0.30878, + "y": 0.95113 }, { - "x": -0.8091803827158353, - "y": 0.5875603017800425 + "x": -0.80918, + "y": 0.58756 }, { - "x": -0.8088605994846405, - "y": -0.5880004511914495 + "x": -0.80886, + "y": -0.588 }, { - "x": 0.3092983363970668, - "y": -0.9509650567197554 + "x": 0.3093, + "y": -0.95097 }, { - "x": 0.9999999630008971, - "y": 0.00027202611056447476 + "x": 1, + "y": 0.00027 }, { "max": { @@ -15432,12 +15432,12 @@ } }, { - "x": 128.4715196039122, - "y": 327.5700930082743 + "x": 128.47152, + "y": 327.57009 }, { - "x": 91.74474530581291, - "y": 286.0731784068056 + "x": 91.74475, + "y": 286.07318 }, { "category": 1, @@ -15454,16 +15454,16 @@ "y": 0 }, { - "x": 112.04737146808016, - "y": 308.2677998965287 + "x": 112.04737, + "y": 308.2678 }, { - "x": -1.7886709376227028, - "y": -0.018291183010657505 + "x": -1.78867, + "y": -0.01829 }, { - "x": 112.05705726274907, - "y": 311.1551146814158 + "x": 112.05706, + "y": 311.15511 }, { "endCol": 2, @@ -15486,8 +15486,8 @@ "yScale": 1 }, { - "x": -0.009476948676876873, - "y": -2.887216622545168 + "x": -0.00948, + "y": -2.88722 }, [ { @@ -15510,43 +15510,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 128.46502906091416, - "y": 320.20226636963287 + "x": 128.46503, + "y": 320.20227 }, { "body": null, "index": 1, "isInternal": false, - "x": 105.7700239799955, - "y": 327.5700930082743 + "x": 105.77002, + "y": 327.57009 }, { "body": null, "index": 2, "isInternal": false, - "x": 91.75027569094622, - "y": 308.2622785563044 + "x": 91.75028, + "y": 308.26228 }, { "body": null, "index": 3, "isInternal": false, - "x": 105.78052636407214, - "y": 288.96209443673575 + "x": 105.78053, + "y": 288.96209 }, { "body": null, "index": 4, "isInternal": false, - "x": 128.4715196039122, - "y": 296.34226725243144 + "x": 128.47152, + "y": 296.34227 }, { - "angle": 0.00024604985108307064, - "anglePrev": 0.0003579175164405313, - "angularSpeed": 0.00011210871714860571, - "angularVelocity": -0.00011656261670983035, - "area": 1515.3131811080627, + "angle": 0.00025, + "anglePrev": 0.00036, + "angularSpeed": 0.00011, + "angularVelocity": -0.00012, + "area": 1515.31318, "axes": { "#": 1754 }, @@ -15567,13 +15567,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1532.4206796199487, - "inverseInertia": 0.0006525623239749069, - "inverseMass": 0.6599295858224876, + "inertia": 1532.42068, + "inverseInertia": 0.00065, + "inverseMass": 0.65993, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5153131811080627, + "mass": 1.51531, "motion": 0, "parent": null, "position": { @@ -15595,7 +15595,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.904387910519076, + "speed": 2.90439, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15616,12 +15616,12 @@ } ], { - "x": -0.000246049848600406, - "y": 0.9999999697297357 + "x": -0.00025, + "y": 1 }, { - "x": -0.9999999697297357, - "y": -0.000246049848600406 + "x": -1, + "y": -0.00025 }, { "max": { @@ -15632,12 +15632,12 @@ } }, { - "x": 167.94134080969678, - "y": 326.9927056335369 + "x": 167.94134, + "y": 326.99271 }, { - "x": 128.09355185664964, - "y": 286.0414798055724 + "x": 128.09355, + "y": 286.04148 }, { "category": 1, @@ -15654,16 +15654,16 @@ "y": 0 }, { - "x": 148.01774472797564, - "y": 307.9692866441573 + "x": 148.01774, + "y": 307.96929 }, { - "x": -1.4593633535753638, - "y": -0.0005669771302050521 + "x": -1.45936, + "y": -0.00057 }, { - "x": 148.0198326739039, - "y": 310.87249976106915 + "x": 148.01983, + "y": 310.8725 }, { "endCol": 3, @@ -15686,8 +15686,8 @@ "yScale": 1 }, { - "x": -0.0017607848810143878, - "y": -2.9031378599916025 + "x": -0.00176, + "y": -2.90314 }, [ { @@ -15707,36 +15707,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 128.10350765345868, - "y": 288.9458676547777 + "x": 128.10351, + "y": 288.94587 }, { "body": null, "index": 1, "isInternal": false, - "x": 167.94134080969678, - "y": 288.9556697478911 + "x": 167.94134, + "y": 288.95567 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.9319818024926, - "y": 326.9927056335369 + "x": 167.93198, + "y": 326.99271 }, { "body": null, "index": 3, "isInternal": false, - "x": 128.0941486462545, - "y": 326.98290354042354 + "x": 128.09415, + "y": 326.9829 }, { - "angle": 0.00025046827830537457, - "anglePrev": 0.00022739593860854587, - "angularSpeed": 0.00001031123146357061, - "angularVelocity": 0.000029149143857146317, - "area": 1347.9278604289448, + "angle": 0.00025, + "anglePrev": 0.00023, + "angularSpeed": 0.00001, + "angularVelocity": 0.00003, + "area": 1347.92786, "axes": { "#": 1776 }, @@ -15757,13 +15757,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 1394.5666895178056, - "inverseInertia": 0.000717068611717498, - "inverseMass": 0.7418794650344082, + "inertia": 1394.56669, + "inverseInertia": 0.00072, + "inverseMass": 0.74188, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3479278604289449, + "mass": 1.34793, "motion": 0, "parent": null, "position": { @@ -15785,7 +15785,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9065301834429915, + "speed": 2.90653, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15806,12 +15806,12 @@ } ], { - "x": -0.0002504682756865467, - "y": 0.9999999686328209 + "x": -0.00025, + "y": 1 }, { - "x": -0.9999999686328209, - "y": -0.0002504682756865467 + "x": -1, + "y": -0.00025 }, { "max": { @@ -15822,12 +15822,12 @@ } }, { - "x": 195.35416191826113, - "y": 337.1488218846809 + "x": 195.35416, + "y": 337.14882 }, { - "x": 167.36272742534535, - "y": 286.0587164894252 + "x": 167.36273, + "y": 286.05872 }, { "category": 1, @@ -15844,16 +15844,16 @@ "y": 0 }, { - "x": 181.35867427348632, - "y": 313.0570342606371 + "x": 181.35867, + "y": 313.05703 }, { "x": 0, "y": 0 }, { - "x": 181.35920573100097, - "y": 315.96230989973964 + "x": 181.35921, + "y": 315.96231 }, { "endCol": 4, @@ -15876,8 +15876,8 @@ "yScale": 1 }, { - "x": -0.0008992453331018169, - "y": -2.9053602414069815 + "x": -0.0009, + "y": -2.90536 }, [ { @@ -15897,36 +15897,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 167.37525333086, - "y": 288.96524663659335 + "x": 167.37525, + "y": 288.96525 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.35416191826113, - "y": 288.9722544658028 + "x": 195.35416, + "y": 288.97225 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.34209521611263, - "y": 337.1488218846809 + "x": 195.3421, + "y": 337.14882 }, { "body": null, "index": 3, "isInternal": false, - "x": 167.3631866287115, - "y": 337.14181405547146 + "x": 167.36319, + "y": 337.14181 }, { - "angle": 0.000324475316207535, - "anglePrev": 0.00026745618866581643, - "angularSpeed": 0.00007003211968487952, - "angularVelocity": 0.00006095094936921068, - "area": 2285.4053614040354, + "angle": 0.00032, + "anglePrev": 0.00027, + "angularSpeed": 0.00007, + "angularVelocity": 0.00006, + "area": 2285.40536, "axes": { "#": 1798 }, @@ -15947,13 +15947,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 3483.877210739159, - "inverseInertia": 0.00028703652267579035, - "inverseMass": 0.43755913803652385, + "inertia": 3483.87721, + "inverseInertia": 0.00029, + "inverseMass": 0.43756, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.2854053614040355, + "mass": 2.28541, "motion": 0, "parent": null, "position": { @@ -15975,7 +15975,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.904383312295452, + "speed": 2.90438, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15996,12 +15996,12 @@ } ], { - "x": -0.00032447531051384615, - "y": 0.9999999473578853 + "x": -0.00032, + "y": 1 }, { - "x": -0.9999999473578853, - "y": -0.00032447531051384615 + "x": -1, + "y": -0.00032 }, { "max": { @@ -16012,12 +16012,12 @@ } }, { - "x": 241.761922785117, - "y": 337.5713377158841 + "x": 241.76192, + "y": 337.57134 }, { - "x": 194.70587722775232, - "y": 286.06553242804034 + "x": 194.70588, + "y": 286.06553 }, { "category": 1, @@ -16034,16 +16034,16 @@ "y": 0 }, { - "x": 218.2349442958995, - "y": 313.270626352629 + "x": 218.23494, + "y": 313.27063 }, { - "x": -0.5977446617815325, - "y": 0.00010532398187359366 + "x": -0.59774, + "y": 0.00011 }, { - "x": 218.23618466432424, - "y": 316.17432738663183 + "x": 218.23618, + "y": 316.17433 }, { "endCol": 5, @@ -16066,8 +16066,8 @@ "yScale": 1 }, { - "x": -0.0014880977739153423, - "y": -2.903702876835041 + "x": -0.00149, + "y": -2.9037 }, [ { @@ -16087,35 +16087,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 194.7237308168626, - "y": 288.9699149893739 + "x": 194.72373, + "y": 288.96991 }, { "body": null, "index": 1, "isInternal": false, - "x": 241.761922785117, - "y": 288.98517772212216 + "x": 241.76192, + "y": 288.98518 }, { "body": null, "index": 2, "isInternal": false, - "x": 241.74615777493642, - "y": 337.5713377158841 + "x": 241.74616, + "y": 337.57134 }, { "body": null, "index": 3, "isInternal": false, - "x": 194.707965806682, - "y": 337.55607498313583 + "x": 194.70797, + "y": 337.55607 }, { - "angle": -0.00032435733408170105, - "anglePrev": -0.00022012750290323506, - "angularSpeed": 0.00009747927721572349, - "angularVelocity": -0.00010429170279975156, + "angle": -0.00032, + "anglePrev": -0.00022, + "angularSpeed": 0.0001, + "angularVelocity": -0.0001, "area": 4327.82858, "axes": { "#": 1820 @@ -16137,13 +16137,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 12126.33710521863, - "inverseInertia": 0.0000824651328198393, - "inverseMass": 0.23106275618707614, + "inertia": 12126.33711, + "inverseInertia": 0.00008, + "inverseMass": 0.23106, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.32782858, + "mass": 4.32783, "motion": 0, "parent": null, "position": { @@ -16165,7 +16165,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.906704657715344, + "speed": 2.9067, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16195,24 +16195,24 @@ } ], { - "x": 0.3093314197917489, - "y": 0.9509542958153251 + "x": 0.30933, + "y": 0.95095 }, { - "x": -0.8088280979626047, - "y": 0.5880451580841344 + "x": -0.80883, + "y": 0.58805 }, { - "x": -0.8092094012655908, - "y": -0.5875203357360356 + "x": -0.80921, + "y": -0.58752 }, { - "x": 0.3087144567464888, - "y": -0.9511547635352093 + "x": 0.30871, + "y": -0.95115 }, { - "x": 0.9999999473961602, - "y": -0.0003243573283942206 + "x": 1, + "y": -0.00032 }, { "max": { @@ -16223,12 +16223,12 @@ } }, { - "x": 318.30099321761037, - "y": 370.13090313906224 + "x": 318.30099, + "y": 370.1309 }, { - "x": 241.1090957699662, - "y": 286.072205191989 + "x": 241.1091, + "y": 286.07221 }, { "category": 1, @@ -16245,16 +16245,16 @@ "y": 0 }, { - "x": 283.776813768516, - "y": 329.5506289618583 + "x": 283.77681, + "y": 329.55063 }, { "x": 0, "y": 0 }, { - "x": 283.7792722295451, - "y": 332.4573891130673 + "x": 283.77927, + "y": 332.45739 }, { "endCol": 6, @@ -16277,8 +16277,8 @@ "yScale": 1 }, { - "x": -0.0024757561179171717, - "y": -2.9067468485823724 + "x": -0.00248, + "y": -2.90675 }, [ { @@ -16301,43 +16301,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.30099321761037, - "y": 354.61643210980475 + "x": 318.30099, + "y": 354.61643 }, { "body": null, "index": 1, "isInternal": false, - "x": 270.6060229410464, - "y": 370.13090313906224 + "x": 270.60602, + "y": 370.1309 }, { "body": null, "index": 2, "isInternal": false, - "x": 241.1128633688507, - "y": 329.5644673275566 + "x": 241.11286, + "y": 329.56447 }, { "body": null, "index": 3, "isInternal": false, - "x": 270.57970069513254, - "y": 288.9789074079689 + "x": 270.5797, + "y": 288.97891 }, { "body": null, "index": 4, "isInternal": false, - "x": 318.28472540016213, - "y": 304.4624347480976 + "x": 318.28473, + "y": 304.46243 }, { - "angle": -0.000024633336234247963, - "anglePrev": -0.000025700625469665377, - "angularSpeed": 0.0000027385915211240755, - "angularVelocity": 0.000005337910804331234, - "area": 2032.7292721140495, + "angle": -0.00002, + "anglePrev": -0.00003, + "angularSpeed": 0, + "angularVelocity": 0.00001, + "area": 2032.72927, "axes": { "#": 1846 }, @@ -16358,13 +16358,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 6700.374119056197, - "inverseInertia": 0.00014924539767950423, - "inverseMass": 0.49194942667401764, + "inertia": 6700.37412, + "inverseInertia": 0.00015, + "inverseMass": 0.49195, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.0327292721140497, + "mass": 2.03273, "motion": 0, "parent": null, "position": { @@ -16386,7 +16386,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9097578964086663, + "speed": 2.90976, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16407,12 +16407,12 @@ } ], { - "x": 0.00002463333623175671, - "y": 0.9999999996965994 + "x": 0.00002, + "y": 1 }, { - "x": -0.9999999996965994, - "y": 0.00002463333623175671 + "x": -1, + "y": 0.00002 }, { "max": { @@ -16423,12 +16423,12 @@ } }, { - "x": 414.87711743135344, - "y": 309.8686376115707 + "x": 414.87712, + "y": 309.86864 }, { - "x": 317.6520210440523, - "y": 286.04775370290974 + "x": 317.65202, + "y": 286.04775 }, { "category": 1, @@ -16445,16 +16445,16 @@ "y": 0 }, { - "x": 366.2672920189015, - "y": 299.41307205762297 + "x": 366.26729, + "y": 299.41307 }, { "x": 0, "y": 0 }, { - "x": 366.27256296044493, - "y": 302.3234415972286 + "x": 366.27256, + "y": 302.32344 }, { "endCol": 8, @@ -16477,8 +16477,8 @@ "yScale": 1 }, { - "x": -0.00474260676691074, - "y": -2.9101056419505085 + "x": -0.00474, + "y": -2.91011 }, [ { @@ -16498,36 +16498,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 317.6574666064496, - "y": 288.9599013353356 + "x": 317.65747, + "y": 288.9599 }, { "body": null, "index": 1, "isInternal": false, - "x": 414.8766023794223, - "y": 288.95750650367523 + "x": 414.8766, + "y": 288.95751 }, { "body": null, "index": 2, "isInternal": false, - "x": 414.87711743135344, - "y": 309.86624277991035 + "x": 414.87712, + "y": 309.86624 }, { "body": null, "index": 3, "isInternal": false, - "x": 317.6579816583807, - "y": 309.8686376115707 + "x": 317.65798, + "y": 309.86864 }, { - "angle": -0.00015078445130603597, - "anglePrev": -0.00011201866413490279, - "angularSpeed": 0.000021301563387309615, - "angularVelocity": -0.00002340548361709556, - "area": 1931.953486546484, + "angle": -0.00015, + "anglePrev": -0.00011, + "angularSpeed": 0.00002, + "angularVelocity": -0.00002, + "area": 1931.95349, "axes": { "#": 1868 }, @@ -16548,13 +16548,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 4690.996610130106, - "inverseInertia": 0.00021317431733813697, - "inverseMass": 0.517610805313733, + "inertia": 4690.99661, + "inverseInertia": 0.00021, + "inverseMass": 0.51761, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.9319534865464842, + "mass": 1.93195, "motion": 0, "parent": null, "position": { @@ -16576,7 +16576,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.908516543497306, + "speed": 2.90852, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16597,12 +16597,12 @@ } ], { - "x": 0.00015078445073466462, - "y": 0.9999999886320247 + "x": 0.00015, + "y": 1 }, { - "x": -0.9999999886320247, - "y": 0.00015078445073466462 + "x": -1, + "y": 0.00015 }, { "max": { @@ -16613,12 +16613,12 @@ } }, { - "x": 496.285816175316, - "y": 312.4841521458154 + "x": 496.28582, + "y": 312.48415 }, { - "x": 414.2438740944333, - "y": 286.0128569821533 + "x": 414.24387, + "y": 286.01286 }, { "category": 1, @@ -16635,16 +16635,16 @@ "y": 0 }, { - "x": 455.2666371456157, - "y": 300.7027617316294 + "x": 455.26664, + "y": 300.70276 }, { - "x": 0.4044060679232704, - "y": -0.005995384622501102 + "x": 0.40441, + "y": -0.006 }, { - "x": 455.2734968542837, - "y": 303.61559198471093 + "x": 455.2735, + "y": 303.61559 }, { "endCol": 10, @@ -16667,8 +16667,8 @@ "yScale": 1 }, { - "x": -0.0052900082343398935, - "y": -2.9114606721877294 + "x": -0.00529, + "y": -2.91146 }, [ { @@ -16688,36 +16688,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 414.2474581159154, - "y": 288.9337408909022 + "x": 414.24746, + "y": 288.93374 }, { "body": null, "index": 1, "isInternal": false, - "x": 496.28226513945003, - "y": 288.92137131744335 + "x": 496.28227, + "y": 288.92137 }, { "body": null, "index": 2, "isInternal": false, - "x": 496.285816175316, - "y": 312.4717825723566 + "x": 496.28582, + "y": 312.47178 }, { "body": null, "index": 3, "isInternal": false, - "x": 414.2510091517813, - "y": 312.4841521458154 + "x": 414.25101, + "y": 312.48415 }, { - "angle": 0.003299828380328299, - "anglePrev": 0.002820456514308874, - "angularSpeed": 0.0007323801979837999, - "angularVelocity": 0.0004987875732493405, - "area": 2376.3179650719107, + "angle": 0.0033, + "anglePrev": 0.00282, + "angularSpeed": 0.00073, + "angularVelocity": 0.0005, + "area": 2376.31797, "axes": { "#": 1890 }, @@ -16738,13 +16738,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 3764.591504006761, - "inverseInertia": 0.0002656330703970595, - "inverseMass": 0.42081910531267586, + "inertia": 3764.5915, + "inverseInertia": 0.00027, + "inverseMass": 0.42082, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.3763179650719106, + "mass": 2.37632, "motion": 0, "parent": null, "position": { @@ -16766,7 +16766,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8896181093325723, + "speed": 2.88962, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16787,12 +16787,12 @@ } ], { - "x": -0.00329982239176598, - "y": 0.9999945555712705 + "x": -0.0033, + "y": 0.99999 }, { - "x": -0.9999945555712705, - "y": -0.00329982239176598 + "x": -0.99999, + "y": -0.0033 }, { "max": { @@ -16803,12 +16803,12 @@ } }, { - "x": 544.499939368938, - "y": 337.90461328952654 + "x": 544.49994, + "y": 337.90461 }, { - "x": 495.5947819389197, - "y": 286.10069557920207 + "x": 495.59478, + "y": 286.1007 }, { "category": 1, @@ -16825,16 +16825,16 @@ "y": 0 }, { - "x": 520.0490051570491, - "y": 313.44746255313134 + "x": 520.04901, + "y": 313.44746 }, { "x": 0, "y": 0 }, { - "x": 520.0609798679214, - "y": 316.3540914767906 + "x": 520.06098, + "y": 316.35409 }, { "endCol": 11, @@ -16857,8 +16857,8 @@ "yScale": 1 }, { - "x": -0.010108365513588069, - "y": -2.904321575484687 + "x": -0.01011, + "y": -2.90432 }, [ { @@ -16878,43 +16878,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 495.7589495931949, - "y": 288.99031181673615 + "x": 495.75895, + "y": 288.99031 }, { "body": null, "index": 1, "isInternal": false, - "x": 544.499939368938, - "y": 289.15114930186337 + "x": 544.49994, + "y": 289.15115 }, { "body": null, "index": 2, "isInternal": false, - "x": 544.339060720903, - "y": 337.90461328952654 + "x": 544.33906, + "y": 337.90461 }, { "body": null, "index": 3, "isInternal": false, - "x": 495.59807094516003, - "y": 337.7437758043993 + "x": 495.59807, + "y": 337.74378 }, { - "angle": 0.0010168319418853346, - "anglePrev": 0.000852594525684203, - "angularSpeed": 0.00022090755695316466, - "angularVelocity": 0.0001716449881814068, - "area": 7163.665109999999, + "angle": 0.00102, + "anglePrev": 0.00085, + "angularSpeed": 0.00022, + "angularVelocity": 0.00017, + "area": 7163.66511, "axes": { "#": 1912 }, "bounds": { "#": 1926 }, - "circleRadius": 47.985725308641975, + "circleRadius": 47.98573, "collisionFilter": { "#": 1929 }, @@ -16929,13 +16929,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 32670.739096352663, - "inverseInertia": 0.000030608429060964806, - "inverseMass": 0.13959334846684368, + "inertia": 32670.7391, + "inverseInertia": 0.00003, + "inverseMass": 0.13959, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.163665109999999, + "mass": 7.16367, "motion": 0, "parent": null, "position": { @@ -16957,7 +16957,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.899976157311957, + "speed": 2.89998, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17011,56 +17011,56 @@ } ], { - "x": -0.970686663064861, - "y": -0.24034850144738626 + "x": -0.97069, + "y": -0.24035 }, { - "x": -0.8849809238236995, - "y": -0.4656272806313553 + "x": -0.88498, + "y": -0.46563 }, { - "x": -0.7478448659706336, - "y": -0.6638735244316986 + "x": -0.74784, + "y": -0.66387 }, { - "x": -0.5672169797926528, - "y": -0.8235683929309704 + "x": -0.56722, + "y": -0.82357 }, { - "x": -0.353656389013437, - "y": -0.9353754104689604 + "x": -0.35366, + "y": -0.93538 }, { - "x": -0.1195774612645233, - "y": -0.9928248741633797 + "x": -0.11958, + "y": -0.99282 }, { - "x": 0.12159628468879942, - "y": -0.9925796409104308 + "x": 0.1216, + "y": -0.99258 }, { - "x": 0.35555789556845235, - "y": -0.9346542584822116 + "x": 0.35556, + "y": -0.93465 }, { - "x": 0.5688906669902835, - "y": -0.8224131619881522 + "x": 0.56889, + "y": -0.82241 }, { - "x": 0.7491934141863692, - "y": -0.662351287565572 + "x": 0.74919, + "y": -0.66235 }, { - "x": 0.8859260225084392, - "y": -0.4638265652616031 + "x": 0.88593, + "y": -0.46383 }, { - "x": 0.9711734435180336, - "y": -0.2383739553838144 + "x": 0.97117, + "y": -0.23837 }, { - "x": 0.9999994830264451, - "y": 0.0010168317666602539 + "x": 1, + "y": 0.00102 }, { "max": { @@ -17071,12 +17071,12 @@ } }, { - "x": 639.180515866289, - "y": 378.7668511557902 + "x": 639.18052, + "y": 378.76685 }, { - "x": 543.8735379524119, - "y": 279.895017932106 + "x": 543.87354, + "y": 279.89502 }, { "category": 1, @@ -17093,16 +17093,16 @@ "y": 0 }, { - "x": 591.5386591379029, - "y": 330.78087596328317 + "x": 591.53866, + "y": 330.78088 }, { - "x": 0.7649235800058615, - "y": -0.4099543229548823 + "x": 0.76492, + "y": -0.40995 }, { - "x": 591.5594649321645, - "y": 333.67337460427285 + "x": 591.55946, + "y": 333.67337 }, { "endCol": 13, @@ -17125,8 +17125,8 @@ "yScale": 1 }, { - "x": -0.021424894950541784, - "y": -2.8932640303308403 + "x": -0.02142, + "y": -2.89326 }, [ { @@ -17212,197 +17212,197 @@ "body": null, "index": 0, "isInternal": false, - "x": 639.1687531564121, - "y": 336.61331077114477 + "x": 639.16875, + "y": 336.61331 }, { "body": null, "index": 1, "isInternal": false, - "x": 636.3883335335088, - "y": 347.842489357336 + "x": 636.38833, + "y": 347.84249 }, { "body": null, "index": 2, "isInternal": false, - "x": 631.0019209049726, - "y": 358.08001757439825 + "x": 631.00192, + "y": 358.08002 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.3221201244097, - "y": 366.73121298144224 + "x": 623.32212, + "y": 366.73121 }, { "body": null, "index": 4, "isInternal": false, - "x": 613.7954434444589, - "y": 373.2925293459903 + "x": 613.79544, + "y": 373.29253 }, { "body": null, "index": 5, "isInternal": false, - "x": 602.9752779921382, - "y": 377.3835291729766 + "x": 602.97528, + "y": 377.38353 }, { "body": null, "index": 6, "isInternal": false, - "x": 591.4898654487479, - "y": 378.7668511557902 + "x": 591.48987, + "y": 378.76685 }, { "body": null, "index": 7, "isInternal": false, - "x": 580.0072898659868, - "y": 377.36017458095995 + "x": 580.00729, + "y": 377.36017 }, { "body": null, "index": 8, "isInternal": false, - "x": 569.1954665014795, - "y": 373.2471786491972 + "x": 569.19547, + "y": 373.24718 }, { "body": null, "index": 9, "isInternal": false, - "x": 559.6821530246065, - "y": 366.6665018078119 + "x": 559.68215, + "y": 366.6665 }, { "body": null, "index": 10, "isInternal": false, - "x": 552.019961736578, - "y": 357.99970616780394 + "x": 552.01996, + "y": 357.99971 }, { "body": null, "index": 11, "isInternal": false, - "x": 546.654379923614, - "y": 347.7512449755865 + "x": 546.65438, + "y": 347.75124 }, { "body": null, "index": 12, "isInternal": false, - "x": 543.8968024095167, - "y": 336.5164351750714 + "x": 543.8968, + "y": 336.51644 }, { "body": null, "index": 13, "isInternal": false, - "x": 543.9085651193936, - "y": 324.94844115542156 + "x": 543.90857, + "y": 324.94844 }, { "body": null, "index": 14, "isInternal": false, - "x": 546.688984742297, - "y": 313.71926256923035 + "x": 546.68898, + "y": 313.71926 }, { "body": null, "index": 15, "isInternal": false, - "x": 552.0753973708329, - "y": 303.4817343521681 + "x": 552.0754, + "y": 303.48173 }, { "body": null, "index": 16, "isInternal": false, - "x": 559.755198151396, - "y": 294.8305389451241 + "x": 559.7552, + "y": 294.83054 }, { "body": null, "index": 17, "isInternal": false, - "x": 569.2818748313468, - "y": 288.269222580576 + "x": 569.28187, + "y": 288.26922 }, { "body": null, "index": 18, "isInternal": false, - "x": 580.1020402836675, - "y": 284.17822275358975 + "x": 580.10204, + "y": 284.17822 }, { "body": null, "index": 19, "isInternal": false, - "x": 591.5874528270579, - "y": 282.7949007707761 + "x": 591.58745, + "y": 282.7949 }, { "body": null, "index": 20, "isInternal": false, - "x": 603.070028409819, - "y": 284.2015773456064 + "x": 603.07003, + "y": 284.20158 }, { "body": null, "index": 21, "isInternal": false, - "x": 613.8818517743263, - "y": 288.3145732773691 + "x": 613.88185, + "y": 288.31457 }, { "body": null, "index": 22, "isInternal": false, - "x": 623.3951652511993, - "y": 294.8952501187544 + "x": 623.39517, + "y": 294.89525 }, { "body": null, "index": 23, "isInternal": false, - "x": 631.0573565392277, - "y": 303.5620457587624 + "x": 631.05736, + "y": 303.56205 }, { "body": null, "index": 24, "isInternal": false, - "x": 636.4229383521917, - "y": 313.81050695097986 + "x": 636.42294, + "y": 313.81051 }, { "body": null, "index": 25, "isInternal": false, - "x": 639.180515866289, - "y": 325.0453167514949 + "x": 639.18052, + "y": 325.04532 }, { - "angle": 0.0016737889098653203, - "anglePrev": 0.0012930184482692383, - "angularSpeed": 0.00036996049979266154, - "angularVelocity": 0.00038960068081594955, - "area": 6059.0497460000015, + "angle": 0.00167, + "anglePrev": 0.00129, + "angularSpeed": 0.00037, + "angularVelocity": 0.00039, + "area": 6059.04975, "axes": { "#": 1967 }, "bounds": { "#": 1981 }, - "circleRadius": 44.13130144032922, + "circleRadius": 44.1313, "collisionFilter": { "#": 1984 }, @@ -17417,13 +17417,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 23372.08438446153, - "inverseInertia": 0.00004278608546633651, - "inverseMass": 0.16504238154838874, + "inertia": 23372.08438, + "inverseInertia": 0.00004, + "inverseMass": 0.16504, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.059049746000001, + "mass": 6.05905, "motion": 0, "parent": null, "position": { @@ -17445,7 +17445,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8720443773527355, + "speed": 2.87204, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17499,56 +17499,56 @@ } ], { - "x": -0.9705204601619164, - "y": -0.2410187470034277 + "x": -0.97052, + "y": -0.24102 }, { - "x": -0.8846768359552626, - "y": -0.46620477895897317 + "x": -0.88468, + "y": -0.4662 }, { - "x": -0.747422597164131, - "y": -0.6643489002387415 + "x": -0.74742, + "y": -0.66435 }, { - "x": -0.5666775158233174, - "y": -0.8239396780470728 + "x": -0.56668, + "y": -0.82394 }, { - "x": -0.35305756257044857, - "y": -0.935601601918153 + "x": -0.35306, + "y": -0.9356 }, { - "x": -0.11884365131451093, - "y": -0.9929129803473391 + "x": -0.11884, + "y": -0.99291 }, { - "x": 0.12216683267961213, - "y": -0.9925095792953496 + "x": 0.12217, + "y": -0.99251 }, { - "x": 0.35618757766284237, - "y": -0.9344144741594476 + "x": 0.35619, + "y": -0.93441 }, { - "x": 0.5694325376931026, - "y": -0.8220380678632793 + "x": 0.56943, + "y": -0.82204 }, { - "x": 0.7496423647449011, - "y": -0.6618431271681173 + "x": 0.74964, + "y": -0.66184 }, { - "x": 0.8862325328555758, - "y": -0.4632406477290075 + "x": 0.88623, + "y": -0.46324 }, { - "x": 0.9713218497109971, - "y": -0.23776850984519968 + "x": 0.97132, + "y": -0.23777 }, { - "x": 0.9999985992156696, - "y": 0.0016737881283261549 + "x": 1, + "y": 0.00167 }, { "max": { @@ -17559,12 +17559,12 @@ } }, { - "x": 725.0765981908451, - "y": 392.18494703700514 + "x": 725.0766, + "y": 392.18495 }, { - "x": 637.4110356579756, - "y": 301.05116161487507 + "x": 637.41104, + "y": 301.05116 }, { "category": 1, @@ -17581,16 +17581,16 @@ "y": 0 }, { - "x": 681.2577566801522, - "y": 348.0540088550185 + "x": 681.25776, + "y": 348.05401 }, { "x": 0, "y": 0 }, { - "x": 681.2829793136591, - "y": 350.9265017973069 + "x": 681.28298, + "y": 350.9265 }, { "endCol": 15, @@ -17613,8 +17613,8 @@ "yScale": 1 }, { - "x": -0.02553811995767319, - "y": -2.8733216875340304 + "x": -0.02554, + "y": -2.87332 }, [ { @@ -17700,189 +17700,189 @@ "body": null, "index": 0, "isInternal": false, - "x": 725.0587924327359, - "y": 353.4463300621486 + "x": 725.05879, + "y": 353.44633 }, { "body": null, "index": 1, "isInternal": false, - "x": 722.4945057691682, - "y": 363.7720524536836 + "x": 722.49451, + "y": 363.77205 }, { "body": null, "index": 2, "isInternal": false, - "x": 717.534745610477, - "y": 373.1837640497888 + "x": 717.53475, + "y": 373.18376 }, { "body": null, "index": 3, "isInternal": false, - "x": 710.4664254443564, - "y": 381.13594431869706 + "x": 710.46643, + "y": 381.13594 }, { "body": null, "index": 4, "isInternal": false, - "x": 701.7013230065639, - "y": 387.16428183869385 + "x": 701.70132, + "y": 387.16428 }, { "body": null, "index": 5, "isInternal": false, - "x": 691.7470217389582, - "y": 390.92062570923395 + "x": 691.74702, + "y": 390.92063 }, { "body": null, "index": 6, "isInternal": false, - "x": 681.1838907362609, - "y": 392.18494703700514 + "x": 681.18389, + "y": 392.18495 }, { "body": null, "index": 7, "isInternal": false, - "x": 670.6250513263246, - "y": 390.88527195638744 + "x": 670.62505, + "y": 390.88527 }, { "body": null, "index": 8, "isInternal": false, - "x": 660.6833804639355, - "y": 387.0956263972461 + "x": 660.68338, + "y": 387.09563 }, { "body": null, "index": 9, "isInternal": false, - "x": 651.9385074294619, - "y": 381.0379808471224 + "x": 651.93851, + "y": 381.03798 }, { "body": null, "index": 10, "isInternal": false, - "x": 644.8968473606493, - "y": 373.06218342772337 + "x": 644.89685, + "y": 373.06218 }, { "body": null, "index": 11, "isInternal": false, - "x": 639.9686213702958, - "y": 363.6339214146053 + "x": 639.96862, + "y": 363.63392 }, { "body": null, "index": 12, "isInternal": false, - "x": 637.4389151694593, - "y": 353.2996727463447 + "x": 637.43892, + "y": 353.29967 }, { "body": null, "index": 13, "isInternal": false, - "x": 637.4567209275684, - "y": 342.66168764788836 + "x": 637.45672, + "y": 342.66169 }, { "body": null, "index": 14, "isInternal": false, - "x": 640.0210075911361, - "y": 332.33596525635335 + "x": 640.02101, + "y": 332.33597 }, { "body": null, "index": 15, "isInternal": false, - "x": 644.9807677498274, - "y": 322.92425366024816 + "x": 644.98077, + "y": 322.92425 }, { "body": null, "index": 16, "isInternal": false, - "x": 652.0490879159479, - "y": 314.9720733913399 + "x": 652.04909, + "y": 314.97207 }, { "body": null, "index": 17, "isInternal": false, - "x": 660.8141903537404, - "y": 308.9437358713431 + "x": 660.81419, + "y": 308.94374 }, { "body": null, "index": 18, "isInternal": false, - "x": 670.7684916213461, - "y": 305.187392000803 + "x": 670.76849, + "y": 305.18739 }, { "body": null, "index": 19, "isInternal": false, - "x": 681.3316226240435, - "y": 303.9230706730318 + "x": 681.33162, + "y": 303.92307 }, { "body": null, "index": 20, "isInternal": false, - "x": 691.8904620339797, - "y": 305.2227457536495 + "x": 691.89046, + "y": 305.22275 }, { "body": null, "index": 21, "isInternal": false, - "x": 701.8321328963689, - "y": 309.01239131279084 + "x": 701.83213, + "y": 309.01239 }, { "body": null, "index": 22, "isInternal": false, - "x": 710.5770059308425, - "y": 315.07003686291455 + "x": 710.57701, + "y": 315.07004 }, { "body": null, "index": 23, "isInternal": false, - "x": 717.618665999655, - "y": 323.0458342823136 + "x": 717.61867, + "y": 323.04583 }, { "body": null, "index": 24, "isInternal": false, - "x": 722.5468919900086, - "y": 332.47409629543165 + "x": 722.54689, + "y": 332.4741 }, { "body": null, "index": 25, "isInternal": false, - "x": 725.0765981908451, - "y": 342.80834496369226 + "x": 725.0766, + "y": 342.80834 }, { - "angle": 0.022406852274999476, - "anglePrev": 0.02082174892937732, - "angularSpeed": 0.0015851033456221574, - "angularVelocity": 0.0015851033456221574, + "angle": 0.02241, + "anglePrev": 0.02082, + "angularSpeed": 0.00159, + "angularVelocity": 0.00159, "area": 1190.42275, "axes": { "#": 2022 @@ -17904,13 +17904,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 917.4702110738278, - "inverseInertia": 0.001089953644194701, - "inverseMass": 0.8400377092927702, + "inertia": 917.47021, + "inverseInertia": 0.00109, + "inverseMass": 0.84004, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.19042275, + "mass": 1.19042, "motion": 0, "parent": null, "position": { @@ -17932,7 +17932,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8248863755508142, + "speed": 2.82489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17962,24 +17962,24 @@ } ], { - "x": 0.28765903475735916, - "y": 0.9577328853717326 + "x": 0.28766, + "y": 0.95773 }, { - "x": -0.8219753726776285, - "y": 0.5695230343993771 + "x": -0.82198, + "y": 0.56952 }, { - "x": -0.7956362421266424, - "y": -0.6057746860133685 + "x": -0.79564, + "y": -0.60577 }, { - "x": 0.3302754292025004, - "y": -0.9438846014556567 + "x": 0.33028, + "y": -0.94388 }, { - "x": 0.9997489769883581, - "y": 0.022404977365108603 + "x": 0.99975, + "y": 0.0224 }, { "max": { @@ -17990,12 +17990,12 @@ } }, { - "x": 721.1402693636365, - "y": 282.6732680099716 + "x": 721.14027, + "y": 282.67327 }, { - "x": 680.3540899144543, - "y": 237.2971648450159 + "x": 680.35409, + "y": 237.29716 }, { "category": 1, @@ -18012,16 +18012,16 @@ "y": 0 }, { - "x": 702.724258738787, - "y": 261.55251324193404 + "x": 702.72426, + "y": 261.55251 }, { - "x": 0.4646252506704565, - "y": -2.0245160858751237 + "x": 0.46463, + "y": -2.02452 }, { - "x": 702.7005886424454, - "y": 264.37730044831113 + "x": 702.70059, + "y": 264.3773 }, { "endCol": 15, @@ -18044,8 +18044,8 @@ "yScale": 1 }, { - "x": 0.023670096341559203, - "y": -2.82478720637711 + "x": 0.02367, + "y": -2.82479 }, [ { @@ -18068,43 +18068,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 720.5272587426833, - "y": 275.10679148979875 + "x": 720.52726, + "y": 275.10679 }, { "body": null, "index": 1, "isInternal": false, - "x": 695.3354082733414, - "y": 282.6732680099716 + "x": 695.33541, + "y": 282.67327 }, { "body": null, "index": 2, "isInternal": false, - "x": 680.3540899144543, - "y": 261.05118427066304 + "x": 680.35409, + "y": 261.05118 }, { "body": null, "index": 3, "isInternal": false, - "x": 696.2890089199552, - "y": 240.12195205139304 + "x": 696.28901, + "y": 240.12195 }, { "body": null, "index": 4, "isInternal": false, - "x": 721.116599267295, - "y": 248.80939439909693 + "x": 721.1166, + "y": 248.80939 }, { - "angle": 0.036969299004938776, - "anglePrev": 0.03327059522594237, - "angularSpeed": 0.0036987037789964054, - "angularVelocity": 0.0036987037789964054, - "area": 2171.016137319483, + "angle": 0.03697, + "anglePrev": 0.03327, + "angularSpeed": 0.0037, + "angularVelocity": 0.0037, + "area": 2171.01614, "axes": { "#": 2048 }, @@ -18125,13 +18125,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 3142.3211355327803, - "inverseInertia": 0.0003182360926425332, - "inverseMass": 0.46061380328323276, + "inertia": 3142.32114, + "inverseInertia": 0.00032, + "inverseMass": 0.46061, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.1710161373194827, + "mass": 2.17102, "motion": 0, "parent": null, "position": { @@ -18153,7 +18153,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7715650253848887, + "speed": 2.77157, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18174,12 +18174,12 @@ } ], { - "x": -0.03696087841112496, - "y": 0.9993167132931773 + "x": -0.03696, + "y": 0.99932 }, { - "x": -0.9993167132931773, - "y": -0.03696087841112496 + "x": -0.99932, + "y": -0.03696 }, { "max": { @@ -18190,12 +18190,12 @@ } }, { - "x": 777.2373553369885, - "y": 335.5021081150284 + "x": 777.23736, + "y": 335.50211 }, { - "x": 728.721200832364, - "y": 284.63668872414036 + "x": 728.7212, + "y": 284.63669 }, { "category": 1, @@ -18212,16 +18212,16 @@ "y": 0 }, { - "x": 752.9590512957758, - "y": 311.4550333099848 + "x": 752.95905, + "y": 311.45503 }, { - "x": 1.5261111431418009, - "y": -0.3751681927072294 + "x": 1.52611, + "y": -0.37517 }, { - "x": 752.9185977179749, - "y": 314.2263030907856 + "x": 752.9186, + "y": 314.2263 }, { "endCol": 16, @@ -18244,8 +18244,8 @@ "yScale": 1 }, { - "x": 0.04045357780089148, - "y": -2.7712697808008238 + "x": 0.04045, + "y": -2.77127 }, [ { @@ -18265,36 +18265,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 730.4360505997779, - "y": 287.4079585049412 + "x": 730.43605, + "y": 287.40796 }, { "body": null, "index": 1, "isInternal": false, - "x": 777.1969017591875, - "y": 289.1374623860563 + "x": 777.1969, + "y": 289.13746 }, { "body": null, "index": 2, "isInternal": false, - "x": 775.4820519917737, - "y": 335.5021081150284 + "x": 775.48205, + "y": 335.50211 }, { "body": null, "index": 3, "isInternal": false, - "x": 728.721200832364, - "y": 333.7726042339133 + "x": 728.7212, + "y": 333.7726 }, { - "angle": -0.08167284309181953, - "anglePrev": -0.06468695450577151, - "angularSpeed": 0.016985888586048017, - "angularVelocity": -0.016985888586048017, - "area": 1119.9948759999997, + "angle": -0.08167, + "anglePrev": -0.06469, + "angularSpeed": 0.01699, + "angularVelocity": -0.01699, + "area": 1119.99488, "axes": { "#": 2070 }, @@ -18315,13 +18315,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 965.6287346905493, - "inverseInertia": 0.0010355947001934086, - "inverseMass": 0.8928612276972597, + "inertia": 965.62873, + "inverseInertia": 0.00104, + "inverseMass": 0.89286, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.1199948759999998, + "mass": 1.11999, "motion": 0, "parent": null, "position": { @@ -18343,7 +18343,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.435037554879634, + "speed": 2.43504, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18367,16 +18367,16 @@ } ], { - "x": -0.4276840083385014, - "y": 0.9039283096637215 + "x": -0.42768, + "y": 0.90393 }, { - "x": -0.5689880492305772, - "y": -0.822345790913277 + "x": -0.56899, + "y": -0.82235 }, { - "x": 0.9966666268946083, - "y": -0.08158207422298136 + "x": 0.99667, + "y": -0.08158 }, { "max": { @@ -18387,12 +18387,12 @@ } }, { - "x": 879.3938629372273, - "y": 341.34264859517475 + "x": 879.39386, + "y": 341.34265 }, { - "x": 833.4221274568649, - "y": 290.65417728456885 + "x": 833.42213, + "y": 290.65418 }, { "category": 1, @@ -18409,16 +18409,16 @@ "y": 0 }, { - "x": 862.6869174001623, - "y": 317.19614656556405 + "x": 862.68692, + "y": 317.19615 }, { "x": 0, "y": 0 }, { - "x": 862.7030476930755, - "y": 319.63113069432643 + "x": 862.70305, + "y": 319.63113 }, { "endCol": 18, @@ -18441,8 +18441,8 @@ "yScale": 1 }, { - "x": -0.01613029291322391, - "y": -2.434984128762387 + "x": -0.01613, + "y": -2.43498 }, [ { @@ -18459,29 +18459,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 879.3938629372273, - "y": 341.34264859517475 + "x": 879.39386, + "y": 341.34265 }, { "body": null, "index": 1, "isInternal": false, - "x": 833.4221274568649, - "y": 319.5916138169489 + "x": 833.42213, + "y": 319.59161 }, { "body": null, "index": 2, "isInternal": false, - "x": 875.2447618063948, - "y": 290.65417728456885 + "x": 875.24476, + "y": 290.65418 }, { - "angle": -0.0047580007386038925, - "anglePrev": -0.004202127893268353, - "angularSpeed": 0.0005558728453355394, - "angularVelocity": -0.0005558728453355394, - "area": 5582.974756, + "angle": -0.00476, + "anglePrev": -0.0042, + "angularSpeed": 0.00056, + "angularVelocity": -0.00056, + "area": 5582.97476, "axes": { "#": 2092 }, @@ -18502,13 +18502,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 19922.243813825833, - "inverseInertia": 0.000050195149168188086, - "inverseMass": 0.17911598094283054, + "inertia": 19922.24381, + "inverseInertia": 0.00005, + "inverseMass": 0.17912, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.582974756, + "mass": 5.58297, "motion": 0, "parent": null, "position": { @@ -18530,7 +18530,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8768258499092023, + "speed": 2.87683, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18566,32 +18566,32 @@ } ], { - "x": 0.6272093342179219, - "y": 0.7788507245101023 + "x": 0.62721, + "y": 0.77885 }, { - "x": -0.21788293210222287, - "y": 0.9759749115108123 + "x": -0.21788, + "y": 0.97597 }, { - "x": -0.89889232109091, - "y": 0.4381695962567417 + "x": -0.89889, + "y": 0.43817 }, { - "x": -0.903021181718719, - "y": -0.42959602578158074 + "x": -0.90302, + "y": -0.4296 }, { - "x": -0.22716030559183248, - "y": -0.9738573794778298 + "x": -0.22716, + "y": -0.97386 }, { - "x": 0.6197695033984792, - "y": -0.7847838955134099 + "x": 0.61977, + "y": -0.78478 }, { - "x": 0.9999886807358399, - "y": -0.004757982786234601 + "x": 0.99999, + "y": -0.00476 }, { "max": { @@ -18602,12 +18602,12 @@ } }, { - "x": 959.8745099688873, - "y": 324.93194582586904 + "x": 959.87451, + "y": 324.93195 }, { - "x": 873.8868229345247, - "y": 233.98227766179815 + "x": 873.88682, + "y": 233.98228 }, { "category": 1, @@ -18624,16 +18624,16 @@ "y": 0 }, { - "x": 919.055396693446, - "y": 280.9432663726718 + "x": 919.0554, + "y": 280.94327 }, { - "x": -0.4542640554097601, - "y": -1.90462782089614 + "x": -0.45426, + "y": -1.90463 }, { - "x": 919.0249846771111, - "y": 283.8199314696145 + "x": 919.02498, + "y": 283.81993 }, { "endCol": 20, @@ -18656,8 +18656,8 @@ "yScale": 1 }, { - "x": 0.03041201633490914, - "y": -2.876665096942682 + "x": 0.03041, + "y": -2.87667 }, [ { @@ -18686,57 +18686,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 959.8440979525524, - "y": 300.34741407488184 + "x": 959.8441, + "y": 300.34741 }, { "body": null, "index": 1, "isInternal": false, - "x": 929.3157251727154, - "y": 324.93194582586904 + "x": 929.31573, + "y": 324.93195 }, { "body": null, "index": 2, "isInternal": false, - "x": 891.0616585898952, - "y": 316.3918613487016 + "x": 891.06166, + "y": 316.39186 }, { "body": null, "index": 3, "isInternal": false, - "x": 873.8868229345247, - "y": 281.1581801017608 + "x": 873.88682, + "y": 281.15818 }, { "body": null, "index": 4, "isInternal": false, - "x": 890.7256022657034, - "y": 245.76266082832908 + "x": 890.7256, + "y": 245.76266 }, { "body": null, "index": 5, "isInternal": false, - "x": 928.8966705968005, - "y": 236.85894275874082 + "x": 928.89667, + "y": 236.85894 }, { "body": null, "index": 6, "isInternal": false, - "x": 959.6576040592633, - "y": 261.1518577447598 + "x": 959.6576, + "y": 261.15186 }, { - "angle": -0.0068774632073058005, - "anglePrev": -0.0060950105660691, - "angularSpeed": 0.0007824526412367003, - "angularVelocity": -0.0007824526412367003, - "area": 1427.950596, + "angle": -0.00688, + "anglePrev": -0.0061, + "angularSpeed": 0.00078, + "angularVelocity": -0.00078, + "area": 1427.9506, "axes": { "#": 2122 }, @@ -18757,13 +18757,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 1308.0466332042622, - "inverseInertia": 0.0007644987377478626, - "inverseMass": 0.7003043402210255, + "inertia": 1308.04663, + "inverseInertia": 0.00076, + "inverseMass": 0.7003, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4279505959999998, + "mass": 1.42795, "motion": 0, "parent": null, "position": { @@ -18785,7 +18785,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8860942838691455, + "speed": 2.88609, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18809,16 +18809,16 @@ } ], { - "x": -0.5059460177283067, - "y": -0.8625651437108206 + "x": -0.50595, + "y": -0.86257 }, { - "x": 0.4940340105362397, - "y": -0.8694425779966605 + "x": 0.49403, + "y": -0.86944 }, { - "x": 0.9999763503431343, - "y": -0.006877408990671999 + "x": 0.99998, + "y": -0.00688 }, { "max": { @@ -18829,12 +18829,12 @@ } }, { - "x": 1007.9397201901953, - "y": 270.0716986454212 + "x": 1007.93972, + "y": 270.0717 }, { - "x": 967.1408453418891, - "y": 220.29889738331715 + "x": 967.14085, + "y": 220.2989 }, { "category": 1, @@ -18851,16 +18851,16 @@ "y": 0 }, { - "x": 987.5239821710943, - "y": 246.6282530879767 + "x": 987.52398, + "y": 246.62825 }, { - "x": 0.6740337299093937, - "y": -1.5021055962932444 + "x": 0.67403, + "y": -1.50211 }, { - "x": 987.4913809811985, - "y": 249.5141632351919 + "x": 987.49138, + "y": 249.51416 }, { "endCol": 20, @@ -18883,8 +18883,8 @@ "yScale": 1 }, { - "x": 0.03260118989576654, - "y": -2.8859101472151787 + "x": 0.0326, + "y": -2.88591 }, [ { @@ -18910,50 +18910,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 1007.9071190002995, - "y": 258.2103438319612 + "x": 1007.90712, + "y": 258.21034 }, { "body": null, "index": 1, "isInternal": false, - "x": 987.6852161474715, - "y": 270.0716986454212 + "x": 987.68522, + "y": 270.0717 }, { "body": null, "index": 2, "isInternal": false, - "x": 967.3020793182662, - "y": 258.48960790143656 + "x": 967.30208, + "y": 258.48961 }, { "body": null, "index": 3, "isInternal": false, - "x": 967.1408453418891, - "y": 235.0461623439922 + "x": 967.14085, + "y": 235.04616 }, { "body": null, "index": 4, "isInternal": false, - "x": 987.3627481947171, - "y": 223.18480753053234 + "x": 987.36275, + "y": 223.18481 }, { "body": null, "index": 5, "isInternal": false, - "x": 1007.7458850239224, - "y": 234.76689827451688 + "x": 1007.74589, + "y": 234.7669 }, { - "angle": 0.008908222520349474, - "anglePrev": 0.007742519688509008, - "angularSpeed": 0.0011657028318404657, - "angularVelocity": 0.0011657028318404657, - "area": 1006.2524335919638, + "angle": 0.00891, + "anglePrev": 0.00774, + "angularSpeed": 0.00117, + "angularVelocity": 0.00117, + "area": 1006.25243, "axes": { "#": 2147 }, @@ -18974,13 +18974,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 697.1461738741186, - "inverseInertia": 0.0014344194051053728, - "inverseMass": 0.9937864164266964, + "inertia": 697.14617, + "inverseInertia": 0.00143, + "inverseMass": 0.99379, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0062524335919638, + "mass": 1.00625, "motion": 0, "parent": null, "position": { @@ -19002,7 +19002,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9284702853023, + "speed": 2.92847, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19023,12 +19023,12 @@ } ], { - "x": -0.008908104700029755, - "y": 0.9999603220481565 + "x": -0.00891, + "y": 0.99996 }, { - "x": -0.9999603220481565, - "y": -0.008908104700029755 + "x": -0.99996, + "y": -0.00891 }, { "max": { @@ -19039,12 +19039,12 @@ } }, { - "x": 1040.2832986905728, - "y": 294.0996956383885 + "x": 1040.2833, + "y": 294.0997 }, { - "x": 1003.9748879072397, - "y": 262.9312162697548 + "x": 1003.97489, + "y": 262.93122 }, { "category": 1, @@ -19061,16 +19061,16 @@ "y": 0 }, { - "x": 1022.1187209924445, - "y": 279.97965435874 + "x": 1022.11872, + "y": 279.97965 }, { - "x": 0.3996331210423691, - "y": -0.9889528184531651 + "x": 0.39963, + "y": -0.98895 }, { - "x": 1022.0979763795208, - "y": 282.90805116807667 + "x": 1022.09798, + "y": 282.90805 }, { "endCol": 21, @@ -19093,8 +19093,8 @@ "yScale": 1 }, { - "x": 0.020744612923742807, - "y": -2.9283968093366686 + "x": 0.02074, + "y": -2.9284 }, [ { @@ -19114,36 +19114,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1004.2236034277014, - "y": 265.8596130790915 + "x": 1004.2236, + "y": 265.85961 }, { "body": null, "index": 1, "isInternal": false, - "x": 1040.2625540776492, - "y": 266.18066456342586 + "x": 1040.26255, + "y": 266.18066 }, { "body": null, "index": 2, "isInternal": false, - "x": 1040.0138385571872, - "y": 294.0996956383885 + "x": 1040.01384, + "y": 294.0997 }, { "body": null, "index": 3, "isInternal": false, - "x": 1003.9748879072397, - "y": 293.7786441540541 + "x": 1003.97489, + "y": 293.77864 }, { - "angle": -0.0005344849010392773, - "anglePrev": -0.00040855096180586025, - "angularSpeed": 0.00012593393923341695, - "angularVelocity": -0.00012593393923341695, - "area": 3210.130139, + "angle": -0.00053, + "anglePrev": -0.00041, + "angularSpeed": 0.00013, + "angularVelocity": -0.00013, + "area": 3210.13014, "axes": { "#": 2169 }, @@ -19164,13 +19164,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 6586.462154550281, - "inverseInertia": 0.00015182657647385802, - "inverseMass": 0.3115138504358312, + "inertia": 6586.46215, + "inverseInertia": 0.00015, + "inverseMass": 0.31151, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.210130139, + "mass": 3.21013, "motion": 0, "parent": null, "position": { @@ -19192,7 +19192,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9104445324389454, + "speed": 2.91044, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19228,32 +19228,32 @@ } ], { - "x": 0.6239098689730587, - "y": 0.7814963054282608 + "x": 0.62391, + "y": 0.7815 }, { - "x": -0.22200585765773953, - "y": 0.9750453318516282 + "x": -0.22201, + "y": 0.97505 }, { - "x": -0.9007316356746119, - "y": 0.4343760127987483 + "x": -0.90073, + "y": 0.43438 }, { - "x": -0.9011954557952421, - "y": -0.43341290988387293 + "x": -0.9012, + "y": -0.43341 }, { - "x": -0.223048024632003, - "y": -0.9748074572487438 + "x": -0.22305, + "y": -0.97481 }, { - "x": 0.6230741167114621, - "y": -0.7821627996039133 + "x": 0.62307, + "y": -0.78216 }, { - "x": 0.9999998571629488, - "y": -0.0005344848755911946 + "x": 1, + "y": -0.00053 }, { "max": { @@ -19264,12 +19264,12 @@ } }, { - "x": 1085.9754549737638, - "y": 369.32952360685 + "x": 1085.97545, + "y": 369.32952 }, { - "x": 1020.8575212941485, - "y": 302.5455331460796 + "x": 1020.85752, + "y": 302.54553 }, { "category": 1, @@ -19286,16 +19286,16 @@ "y": 0 }, { - "x": 1055.1086475912418, - "y": 335.9416021500678 + "x": 1055.10865, + "y": 335.9416 }, { "x": 0, "y": 0 }, { - "x": 1055.1088452143408, - "y": 338.85204667579734 + "x": 1055.10885, + "y": 338.85205 }, { "endCol": 22, @@ -19318,8 +19318,8 @@ "yScale": 1 }, { - "x": -0.0001976230989157557, - "y": -2.9104445257295084 + "x": -0.0002, + "y": -2.91044 }, [ { @@ -19348,57 +19348,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 1085.9754549737638, - "y": 350.7861064287093 + "x": 1085.97545, + "y": 350.78611 }, { "body": null, "index": 1, "isInternal": false, - "x": 1062.7483628320983, - "y": 369.32952360685 + "x": 1062.74836, + "y": 369.32952 }, { "body": null, "index": 2, "isInternal": false, - "x": 1033.7678318881206, - "y": 362.7310123198142 + "x": 1033.76783, + "y": 362.73101 }, { "body": null, "index": 3, "isInternal": false, - "x": 1020.8575212941485, - "y": 335.9599088616604 + "x": 1020.85752, + "y": 335.95991 }, { "body": null, "index": 4, "isInternal": false, - "x": 1033.7392070161231, - "y": 309.1750199695954 + "x": 1033.73921, + "y": 309.17502 }, { "body": null, "index": 5, "isInternal": false, - "x": 1062.7126677941667, - "y": 302.5455331460796 + "x": 1062.71267, + "y": 302.54553 }, { "body": null, "index": 6, "isInternal": false, - "x": 1085.959569014292, - "y": 321.06411067411216 + "x": 1085.95957, + "y": 321.06411 }, { - "angle": -0.003715553380120742, - "anglePrev": -0.0030107606268374863, - "angularSpeed": 0.0007047927532832556, - "angularVelocity": -0.0007047927532832556, - "area": 1352.927270280826, + "angle": -0.00372, + "anglePrev": -0.00301, + "angularSpeed": 0.0007, + "angularVelocity": -0.0007, + "area": 1352.92727, "axes": { "#": 2199 }, @@ -19419,13 +19419,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 1256.990937022409, - "inverseInertia": 0.0007955506842148158, - "inverseMass": 0.7391380320040639, + "inertia": 1256.99094, + "inverseInertia": 0.0008, + "inverseMass": 0.73914, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.352927270280826, + "mass": 1.35293, "motion": 0, "parent": null, "position": { @@ -19447,7 +19447,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.892824921631505, + "speed": 2.89282, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19468,12 +19468,12 @@ } ], { - "x": 0.0037155448310489335, - "y": 0.9999930973394808 + "x": 0.00372, + "y": 0.99999 }, { - "x": -0.9999930973394808, - "y": 0.0037155448310489335 + "x": -0.99999, + "y": 0.00372 }, { "max": { @@ -19484,12 +19484,12 @@ } }, { - "x": 1136.1310459858676, - "y": 303.21228169913724 + "x": 1136.13105, + "y": 303.21228 }, { - "x": 1094.4197332345896, - "y": 267.61901131561 + "x": 1094.41973, + "y": 267.61901 }, { "category": 1, @@ -19506,16 +19506,16 @@ "y": 0 }, { - "x": 1115.2647112984494, - "y": 286.8620195506998 + "x": 1115.26471, + "y": 286.86202 }, { - "x": 1.2109052412827588, - "y": -0.11420851894736009 + "x": 1.21091, + "y": -0.11421 }, { - "x": 1115.243354674891, - "y": 289.7547656373522 + "x": 1115.24335, + "y": 289.75477 }, { "endCol": 23, @@ -19538,8 +19538,8 @@ "yScale": 1 }, { - "x": 0.021356623558435785, - "y": -2.8927460866523536 + "x": 0.02136, + "y": -2.89275 }, [ { @@ -19559,36 +19559,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 1094.4197332345896, - "y": 270.66621005887544 + "x": 1094.41973, + "y": 270.66621 }, { "body": null, "index": 1, "isInternal": false, - "x": 1135.9887621393357, - "y": 270.5117574022624 + "x": 1135.98876, + "y": 270.51176 }, { "body": null, "index": 2, "isInternal": false, - "x": 1136.1096893623092, - "y": 303.0578290425242 + "x": 1136.10969, + "y": 303.05783 }, { "body": null, "index": 3, "isInternal": false, - "x": 1094.540660457563, - "y": 303.21228169913724 + "x": 1094.54066, + "y": 303.21228 }, { - "angle": -0.06786427358263085, - "anglePrev": -0.05972710063667762, - "angularSpeed": 0.008137172945953227, - "angularVelocity": -0.008137172945953227, - "area": 1720.1260092915415, + "angle": -0.06786, + "anglePrev": -0.05973, + "angularSpeed": 0.00814, + "angularVelocity": -0.00814, + "area": 1720.12601, "axes": { "#": 2221 }, @@ -19609,13 +19609,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 2025.862459801684, - "inverseInertia": 0.0004936169260463478, - "inverseMass": 0.5813527582272093, + "inertia": 2025.86246, + "inverseInertia": 0.00049, + "inverseMass": 0.58135, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7201260092915416, + "mass": 1.72013, "motion": 0, "parent": null, "position": { @@ -19637,7 +19637,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.383764158680365, + "speed": 2.38376, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19658,12 +19658,12 @@ } ], { - "x": 0.06781219341721681, - "y": 0.9976981038490279 + "x": 0.06781, + "y": 0.9977 }, { - "x": -0.9976981038490279, - "y": 0.06781219341721681 + "x": -0.9977, + "y": 0.06781 }, { "max": { @@ -19674,12 +19674,12 @@ } }, { - "x": 60.30883285944456, - "y": 437.4421989468682 + "x": 60.30883, + "y": 437.4422 }, { - "x": 20.302901007960383, - "y": 388.47021052305297 + "x": 20.3029, + "y": 388.47021 }, { "category": 1, @@ -19696,16 +19696,16 @@ "y": 0 }, { - "x": 40.305866933702475, - "y": 412.9562047349606 + "x": 40.30587, + "y": 412.9562 }, { "x": 0, "y": 0 }, { - "x": 40.164355408796936, - "y": 415.33576478936726 + "x": 40.16436, + "y": 415.33576 }, { "endCol": 1, @@ -19728,8 +19728,8 @@ "yScale": 1 }, { - "x": 0.14151152490553684, - "y": -2.3795600544067 + "x": 0.14151, + "y": -2.37956 }, [ { @@ -19749,36 +19749,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 20.302901007960383, - "y": 390.9746920306538 + "x": 20.3029, + "y": 390.97469 }, { "body": null, "index": 1, "isInternal": false, - "x": 57.15049913658626, - "y": 388.47021052305297 + "x": 57.1505, + "y": 388.47021 }, { "body": null, "index": 2, "isInternal": false, - "x": 60.30883285944456, - "y": 434.9377174392674 + "x": 60.30883, + "y": 434.93772 }, { "body": null, "index": 3, "isInternal": false, - "x": 23.4612347308187, - "y": 437.4421989468682 + "x": 23.46123, + "y": 437.4422 }, { - "angle": -0.05084397216786413, - "anglePrev": -0.044075422122167585, - "angularSpeed": 0.006768550045696545, - "angularVelocity": -0.006768550045696545, - "area": 1250.161678324093, + "angle": -0.05084, + "anglePrev": -0.04408, + "angularSpeed": 0.00677, + "angularVelocity": -0.00677, + "area": 1250.16168, "axes": { "#": 2243 }, @@ -19799,13 +19799,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 1044.2197391722605, - "inverseInertia": 0.0009576528411469095, - "inverseMass": 0.7998965392544685, + "inertia": 1044.21974, + "inverseInertia": 0.00096, + "inverseMass": 0.7999, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.250161678324093, + "mass": 1.25016, "motion": 0, "parent": null, "position": { @@ -19827,7 +19827,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7591471763884363, + "speed": 2.75915, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19848,12 +19848,12 @@ } ], { - "x": 0.05082206879322623, - "y": 0.9987077236727352 + "x": 0.05082, + "y": 0.99871 }, { - "x": -0.9987077236727352, - "y": 0.05082206879322623 + "x": -0.99871, + "y": 0.05082 }, { "max": { @@ -19864,12 +19864,12 @@ } }, { - "x": 95.69859945831179, - "y": 411.1049778726145 + "x": 95.6986, + "y": 411.10498 }, { - "x": 57.42172394446337, - "y": 372.326349371876 + "x": 57.42172, + "y": 372.32635 }, { "category": 1, @@ -19886,16 +19886,16 @@ "y": 0 }, { - "x": 76.54105947635864, - "y": 393.09510495490207 + "x": 76.54106, + "y": 393.0951 }, { - "x": 0.016128798635922988, - "y": -0.26696415847000454 + "x": 0.01613, + "y": -0.26696 }, { - "x": 76.50285502630081, - "y": 395.8539876202157 + "x": 76.50286, + "y": 395.85399 }, { "endCol": 1, @@ -19918,8 +19918,8 @@ "yScale": 1 }, { - "x": 0.03820445005783796, - "y": -2.7588826653136334 + "x": 0.0382, + "y": -2.75888 }, [ { @@ -19939,36 +19939,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 57.42172394446337, - "y": 376.94264924353644 + "x": 57.42172, + "y": 376.94265 }, { "body": null, "index": 1, "isInternal": false, - "x": 93.92194823892393, - "y": 375.08523203718966 + "x": 93.92195, + "y": 375.08523 }, { "body": null, "index": 2, "isInternal": false, - "x": 95.66039500825396, - "y": 409.2475606662677 + "x": 95.6604, + "y": 409.24756 }, { "body": null, "index": 3, "isInternal": false, - "x": 59.16017071379337, - "y": 411.1049778726145 + "x": 59.16017, + "y": 411.10498 }, { - "angle": -0.0029279117957837636, - "anglePrev": -0.002246679784040421, - "angularSpeed": 0.0006489291768092167, - "angularVelocity": -0.0006895199067662359, - "area": 3092.075232, + "angle": -0.00293, + "anglePrev": -0.00225, + "angularSpeed": 0.00065, + "angularVelocity": -0.00069, + "area": 3092.07523, "axes": { "#": 2265 }, @@ -19989,13 +19989,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 6189.985619847792, - "inverseInertia": 0.00016155126383388745, - "inverseMass": 0.32340739631783966, + "inertia": 6189.98562, + "inverseInertia": 0.00016, + "inverseMass": 0.32341, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.092075232, + "mass": 3.09208, "motion": 0, "parent": null, "position": { @@ -20017,7 +20017,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8852451190736343, + "speed": 2.88525, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20047,24 +20047,24 @@ } ], { - "x": 0.3117909556002238, - "y": 0.9501507248883723 + "x": 0.31179, + "y": 0.95015 }, { - "x": -0.8072951257214235, - "y": 0.5901479305957373 + "x": -0.8073, + "y": 0.59015 }, { - "x": -0.8107370668398635, - "y": -0.5854104615155891 + "x": -0.81074, + "y": -0.58541 }, { - "x": 0.30622172662312075, - "y": -0.9519602166813248 + "x": 0.30622, + "y": -0.95196 }, { - "x": 0.9999957136693203, - "y": -0.002927907612449849 + "x": 1, + "y": -0.00293 }, { "max": { @@ -20075,12 +20075,12 @@ } }, { - "x": 150.5133005136044, - "y": 456.0339343250916 + "x": 150.5133, + "y": 456.03393 }, { - "x": 85.17062212850225, - "y": 384.5553171450138 + "x": 85.17062, + "y": 384.55532 }, { "category": 1, @@ -20097,16 +20097,16 @@ "y": 0 }, { - "x": 121.27647713107523, - "y": 421.7044523959248 + "x": 121.27648, + "y": 421.70445 }, { - "x": -1.7412958968499266, - "y": 0.004367075301233731 + "x": -1.7413, + "y": 0.00437 }, { - "x": 121.35484259965297, - "y": 424.5873243920417 + "x": 121.35484, + "y": 424.58732 }, { "endCol": 3, @@ -20129,8 +20129,8 @@ "yScale": 1 }, { - "x": -0.0768081299720933, - "y": -2.8831524841399414 + "x": -0.07681, + "y": -2.88315 }, [ { @@ -20153,43 +20153,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 150.5133005136044, - "y": 442.81594016899703 + "x": 150.5133, + "y": 442.81594 }, { "body": null, "index": 1, "isInternal": false, - "x": 110.23282892389417, - "y": 456.0339343250916 + "x": 110.23283, + "y": 456.03393 }, { "body": null, "index": 2, "isInternal": false, - "x": 85.21451728329787, - "y": 421.8100389352618 + "x": 85.21452, + "y": 421.81004 }, { "body": null, "index": 3, "isInternal": false, - "x": 110.03199202912579, - "y": 387.4402283416581 + "x": 110.03199, + "y": 387.44023 }, { "body": null, "index": 4, "isInternal": false, - "x": 150.3891747982822, - "y": 400.42212188369984 + "x": 150.38917, + "y": 400.42212 }, { - "angle": 0.00037384967571873513, - "anglePrev": -0.00009738007275939671, - "angularSpeed": 0.00034037681306315097, - "angularVelocity": 0.0004252408876948248, - "area": 1581.4152047253658, + "angle": 0.00037, + "anglePrev": -0.0001, + "angularSpeed": 0.00034, + "angularVelocity": 0.00043, + "area": 1581.4152, "axes": { "#": 2291 }, @@ -20210,13 +20210,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 1771.7086023235004, - "inverseInertia": 0.0005644269033229019, - "inverseMass": 0.6323450014973541, + "inertia": 1771.7086, + "inverseInertia": 0.00056, + "inverseMass": 0.63235, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5814152047253658, + "mass": 1.58142, "motion": 0, "parent": null, "position": { @@ -20238,7 +20238,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8948716858313954, + "speed": 2.89487, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20259,12 +20259,12 @@ } ], { - "x": -0.00037384966701030695, - "y": 0.9999999301182108 + "x": -0.00037, + "y": 1 }, { - "x": -0.9999999301182108, - "y": -0.00037384966701030695 + "x": -1, + "y": -0.00037 }, { "max": { @@ -20275,12 +20275,12 @@ } }, { - "x": 197.5915862771061, - "y": 418.30095756082824 + "x": 197.59159, + "y": 418.30096 }, { - "x": 150.10065582751227, - "y": 382.04229947687537 + "x": 150.10066, + "y": 382.0423 }, { "category": 1, @@ -20297,16 +20297,16 @@ "y": 0 }, { - "x": 173.87354907480565, - "y": 401.61880446632296 + "x": 173.87355, + "y": 401.6188 }, { - "x": -1.634700215897241, - "y": -0.002990622736386112 + "x": -1.6347, + "y": -0.00299 }, { - "x": 173.962206213428, - "y": 404.50855199219643 + "x": 173.96221, + "y": 404.50855 }, { "endCol": 4, @@ -20329,8 +20329,8 @@ "yScale": 1 }, { - "x": -0.08410098191788506, - "y": -2.8905145629855724 + "x": -0.0841, + "y": -2.89051 }, [ { @@ -20350,36 +20350,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 150.1679784800418, - "y": 384.9366513718177 + "x": 150.16798, + "y": 384.93665 }, { "body": null, "index": 1, "isInternal": false, - "x": 197.5915862771061, - "y": 384.95438067303996 + "x": 197.59159, + "y": 384.95438 }, { "body": null, "index": 2, "isInternal": false, - "x": 197.5791196695695, - "y": 418.30095756082824 + "x": 197.57912, + "y": 418.30096 }, { "body": null, "index": 3, "isInternal": false, - "x": 150.1555118725052, - "y": 418.28322825960595 + "x": 150.15551, + "y": 418.28323 }, { - "angle": -0.00020735592969856252, - "anglePrev": -0.00003073217047838371, - "angularSpeed": 0.00011222073870659284, - "angularVelocity": -0.00018719700575015036, - "area": 4508.288001999999, + "angle": -0.00021, + "anglePrev": -0.00003, + "angularSpeed": 0.00011, + "angularVelocity": -0.00019, + "area": 4508.288, "axes": { "#": 2313 }, @@ -20400,13 +20400,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 12968.580393466536, - "inverseInertia": 0.00007710944217948417, - "inverseMass": 0.22181369059748904, + "inertia": 12968.58039, + "inverseInertia": 0.00008, + "inverseMass": 0.22181, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.508288002, + "mass": 4.50829, "motion": 0, "parent": null, "position": { @@ -20428,7 +20428,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8913394934869197, + "speed": 2.89134, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20455,20 +20455,20 @@ } ], { - "x": -0.7072533887679541, - "y": -0.7069601432020373 + "x": -0.70725, + "y": -0.70696 }, { - "x": -0.00020735592821263332, - "y": -0.9999999785017593 + "x": -0.00021, + "y": -1 }, { - "x": 0.7069601432020373, - "y": -0.7072533887679541 + "x": 0.70696, + "y": -0.70725 }, { - "x": 0.9999999785017593, - "y": -0.00020735592821263332 + "x": 1, + "y": -0.00021 }, { "max": { @@ -20479,12 +20479,12 @@ } }, { - "x": 270.6426366679979, - "y": 458.76505601674313 + "x": 270.64264, + "y": 458.76506 }, { - "x": 196.80895660511035, - "y": 382.09795088312643 + "x": 196.80896, + "y": 382.09795 }, { "category": 1, @@ -20501,16 +20501,16 @@ "y": 0 }, { - "x": 233.75446947708926, - "y": 421.87688882583456 + "x": 233.75447, + "y": 421.87689 }, { - "x": -1.392627687806656, - "y": 0.008528999771725996 + "x": -1.39263, + "y": 0.00853 }, { - "x": 233.84638671057542, - "y": 424.76222460850374 + "x": 233.84639, + "y": 424.76222 }, { "endCol": 5, @@ -20533,8 +20533,8 @@ "yScale": 1 }, { - "x": -0.0935154400524425, - "y": -2.885066721741566 + "x": -0.09352, + "y": -2.88507 }, [ { @@ -20566,64 +20566,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 270.6426366679979, - "y": 437.1472401739723 + "x": 270.64264, + "y": 437.14724 }, { "body": null, "index": 1, "isInternal": false, - "x": 249.04011747205126, - "y": 458.7587200490007 + "x": 249.04012, + "y": 458.75872 }, { "body": null, "index": 2, "isInternal": false, - "x": 218.4841181289515, - "y": 458.76505601674313 + "x": 218.48412, + "y": 458.76506 }, { "body": null, "index": 3, "isInternal": false, - "x": 196.8726382539231, - "y": 437.1625368207966 + "x": 196.87264, + "y": 437.16254 }, { "body": null, "index": 4, "isInternal": false, - "x": 196.86630228618063, - "y": 406.6065374776968 + "x": 196.8663, + "y": 406.60654 }, { "body": null, "index": 5, "isInternal": false, - "x": 218.46882148212725, - "y": 384.9950576026684 + "x": 218.46882, + "y": 384.99506 }, { "body": null, "index": 6, "isInternal": false, - "x": 249.024820825227, - "y": 384.988721634926 + "x": 249.02482, + "y": 384.98872 }, { "body": null, "index": 7, "isInternal": false, - "x": 270.6363007002555, - "y": 406.5912408308725 + "x": 270.6363, + "y": 406.59124 }, { - "angle": -0.003571073786903415, - "anglePrev": -0.001647120176488226, - "angularSpeed": 0.0015540135004741913, - "angularVelocity": -0.002091104418092072, - "area": 1039.6267295619953, + "angle": -0.00357, + "anglePrev": -0.00165, + "angularSpeed": 0.00155, + "angularVelocity": -0.00209, + "area": 1039.62673, "axes": { "#": 2341 }, @@ -20644,13 +20644,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 836.7694481463552, - "inverseInertia": 0.0011950723131864333, - "inverseMass": 0.9618836949501189, + "inertia": 836.76945, + "inverseInertia": 0.0012, + "inverseMass": 0.96188, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0396267295619952, + "mass": 1.03963, "motion": 0, "parent": null, "position": { @@ -20672,7 +20672,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.925595455020784, + "speed": 2.9256, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20693,12 +20693,12 @@ } ], { - "x": 0.0035710661968480426, - "y": 0.9999936237227803 + "x": 0.00357, + "y": 0.99999 }, { - "x": -0.9999936237227803, - "y": 0.0035710661968480426 + "x": -0.99999, + "y": 0.00357 }, { "max": { @@ -20709,12 +20709,12 @@ } }, { - "x": 312.2753338179985, - "y": 409.34382068389897 + "x": 312.27533, + "y": 409.34382 }, { - "x": 269.41735086146144, - "y": 381.9059522300728 + "x": 269.41735, + "y": 381.90595 }, { "category": 1, @@ -20731,16 +20731,16 @@ "y": 0 }, { - "x": 290.89458712312904, - "y": 397.08688838327885 + "x": 290.89459, + "y": 397.08689 }, { - "x": -1.085324150664358, - "y": -0.003895767836427501 + "x": -1.08532, + "y": -0.0039 }, { - "x": 291.02759869476165, - "y": 400.017258224452 + "x": 291.0276, + "y": 400.01726 }, { "endCol": 6, @@ -20763,8 +20763,8 @@ "yScale": 1 }, { - "x": -0.11900902183845119, - "y": -2.931003336502613 + "x": -0.11901, + "y": -2.931 }, [ { @@ -20784,36 +20784,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 269.5138404282595, - "y": 384.9823505059735 + "x": 269.51384, + "y": 384.98235 }, { "body": null, "index": 1, "isInternal": false, - "x": 312.1883368406237, - "y": 384.8299560826587 + "x": 312.18834, + "y": 384.82996 }, { "body": null, "index": 2, "isInternal": false, - "x": 312.2753338179985, - "y": 409.1914262605842 + "x": 312.27533, + "y": 409.19143 }, { "body": null, "index": 3, "isInternal": false, - "x": 269.6008374056343, - "y": 409.34382068389897 + "x": 269.60084, + "y": 409.34382 }, { - "angle": -0.0013433361897664093, - "anglePrev": -0.0007023689537620531, - "angularSpeed": 0.0003931328568103971, - "angularVelocity": -0.0006016700530099751, - "area": 1574.8717250450893, + "angle": -0.00134, + "anglePrev": -0.0007, + "angularSpeed": 0.00039, + "angularVelocity": -0.0006, + "area": 1574.87173, "axes": { "#": 2363 }, @@ -20834,13 +20834,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 1691.4099419533813, - "inverseInertia": 0.0005912227279716214, - "inverseMass": 0.6349723498727298, + "inertia": 1691.40994, + "inverseInertia": 0.00059, + "inverseMass": 0.63497, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5748717250450894, + "mass": 1.57487, "motion": 0, "parent": null, "position": { @@ -20862,7 +20862,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.965756778231396, + "speed": 2.96576, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20883,12 +20883,12 @@ } ], { - "x": 0.0013433357857464178, - "y": 0.9999990977240762 + "x": 0.00134, + "y": 1 }, { - "x": -0.9999990977240762, - "y": 0.0013433357857464178 + "x": -1, + "y": 0.00134 }, { "max": { @@ -20899,12 +20899,12 @@ } }, { - "x": 346.712764910006, - "y": 429.0069445830412 + "x": 346.71276, + "y": 429.00694 }, { - "x": 310.8829293084183, - "y": 381.83367550406433 + "x": 310.88293, + "y": 381.83368 }, { "category": 1, @@ -20921,16 +20921,16 @@ "y": 0 }, { - "x": 328.8523577181697, - "y": 406.9021861889905 + "x": 328.85236, + "y": 406.90219 }, { - "x": -0.8018340274394551, - "y": 0.0003131011891507457 + "x": -0.80183, + "y": 0.00031 }, { - "x": 328.99264619063774, - "y": 409.8853406574819 + "x": 328.99265, + "y": 409.88534 }, { "endCol": 7, @@ -20953,8 +20953,8 @@ "yScale": 1 }, { - "x": -0.1302422177773792, - "y": -2.9835828672509024 + "x": -0.13024, + "y": -2.98358 }, [ { @@ -20974,36 +20974,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 310.99195052633337, - "y": 384.84533319446797 + "x": 310.99195, + "y": 384.84533 }, { "body": null, "index": 1, "isInternal": false, - "x": 346.653440983545, - "y": 384.79742779493984 + "x": 346.65344, + "y": 384.79743 }, { "body": null, "index": 2, "isInternal": false, - "x": 346.712764910006, - "y": 428.9590391835131 + "x": 346.71276, + "y": 428.95904 }, { "body": null, "index": 3, "isInternal": false, - "x": 311.05127445279436, - "y": 429.0069445830412 + "x": 311.05127, + "y": 429.00694 }, { - "angle": 0.0017102674233485187, - "anglePrev": 0.0008357934299054207, - "angularSpeed": 0.0007253639934800309, - "angularVelocity": 0.0007725011397802425, - "area": 968.3879641074045, + "angle": 0.00171, + "anglePrev": 0.00084, + "angularSpeed": 0.00073, + "angularVelocity": 0.00077, + "area": 968.38796, "axes": { "#": 2385 }, @@ -21024,13 +21024,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 797.6175154248832, - "inverseInertia": 0.001253733751655779, - "inverseMass": 1.0326439785130264, + "inertia": 797.61752, + "inverseInertia": 0.00125, + "inverseMass": 1.03264, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9683879641074046, + "mass": 0.96839, "motion": 0, "parent": null, "position": { @@ -21052,7 +21052,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9560119573930934, + "speed": 2.95601, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21073,12 +21073,12 @@ } ], { - "x": -0.0017102665895890933, - "y": 0.9999985374930269 + "x": -0.00171, + "y": 1 }, { - "x": -0.9999985374930269, - "y": -0.0017102665895890933 + "x": -1, + "y": -0.00171 }, { "max": { @@ -21089,12 +21089,12 @@ } }, { - "x": 390.1178608802118, - "y": 406.45383288176436 + "x": 390.11786, + "y": 406.45383 }, { - "x": 345.1923963997387, - "y": 381.7853386323689 + "x": 345.1924, + "y": 381.78534 }, { "category": 1, @@ -21111,16 +21111,16 @@ "y": 0 }, { - "x": 367.7235533453852, - "y": 395.5960070156349 + "x": 367.72355, + "y": 395.59601 }, { - "x": -0.5790605350803791, - "y": -0.019278291759610613 + "x": -0.57906, + "y": -0.01928 }, { - "x": 367.8909834937555, - "y": 398.5691901309006 + "x": 367.89098, + "y": 398.56919 }, { "endCol": 8, @@ -21143,8 +21143,8 @@ "yScale": 1 }, { - "x": -0.1503383126438962, - "y": -2.973438110280597 + "x": -0.15034, + "y": -2.97344 }, [ { @@ -21164,36 +21164,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 345.36625451914443, - "y": 384.7381811495054 + "x": 345.36625, + "y": 384.73818 }, { "body": null, "index": 1, "isInternal": false, - "x": 390.1178608802118, - "y": 384.8147184386315 + "x": 390.11786, + "y": 384.81472 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.08085217162596, - "y": 406.45383288176436 + "x": 390.08085, + "y": 406.45383 }, { "body": null, "index": 3, "isInternal": false, - "x": 345.3292458105586, - "y": 406.3772955926383 + "x": 345.32925, + "y": 406.3773 }, { - "angle": 0.004386515130874521, - "anglePrev": 0.0025635967137461395, - "angularSpeed": 0.0014998512818876378, - "angularVelocity": 0.0019191288776707026, - "area": 1379.2675785219164, + "angle": 0.00439, + "anglePrev": 0.00256, + "angularSpeed": 0.0015, + "angularVelocity": 0.00192, + "area": 1379.26758, "axes": { "#": 2407 }, @@ -21214,13 +21214,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 1297.383606626366, - "inverseInertia": 0.0007707820531202307, - "inverseMass": 0.7250224797364148, + "inertia": 1297.38361, + "inverseInertia": 0.00077, + "inverseMass": 0.72502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3792675785219164, + "mass": 1.37927, "motion": 0, "parent": null, "position": { @@ -21242,7 +21242,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.921593357661096, + "speed": 2.92159, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21263,12 +21263,12 @@ } ], { - "x": -0.004386501063688612, - "y": 0.9999903792579299 + "x": -0.00439, + "y": 0.99999 }, { - "x": -0.9999903792579299, - "y": -0.004386501063688612 + "x": -0.99999, + "y": -0.00439 }, { "max": { @@ -21279,12 +21279,12 @@ } }, { - "x": 422.15463411387253, - "y": 426.3370201897354 + "x": 422.15463, + "y": 426.33702 }, { - "x": 388.431879006785, - "y": 381.943282009068 + "x": 388.43188, + "y": 381.94328 }, { "category": 1, @@ -21301,16 +21301,16 @@ "y": 0 }, { - "x": 405.3785740933917, - "y": 405.59845417333196 + "x": 405.37857, + "y": 405.59845 }, { - "x": -0.42606879414445675, - "y": 0.0008209196608031036 + "x": -0.42607, + "y": 0.00082 }, { - "x": 405.5806128028703, - "y": 408.52578122758985 + "x": 405.58061, + "y": 408.52578 }, { "endCol": 8, @@ -21333,8 +21333,8 @@ "yScale": 1 }, { - "x": -0.1898438231817181, - "y": -2.926601359089034 + "x": -0.18984, + "y": -2.9266 }, [ { @@ -21354,36 +21354,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 388.78381319371334, - "y": 384.8598881569285 + "x": 388.78381, + "y": 384.85989 }, { "body": null, "index": 1, "isInternal": false, - "x": 422.15463411387253, - "y": 385.00627070669975 + "x": 422.15463, + "y": 385.00627 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.97333499307007, - "y": 426.3370201897354 + "x": 421.97333, + "y": 426.33702 }, { "body": null, "index": 3, "isInternal": false, - "x": 388.6025140729109, - "y": 426.19063763996417 + "x": 388.60251, + "y": 426.19064 }, { - "angle": 0.000043281104635484665, - "anglePrev": -0.0001860340489219122, - "angularSpeed": 0.00006032963403767296, - "angularVelocity": 0.00012639587123362605, - "area": 1475.914064, + "angle": 0.00004, + "anglePrev": -0.00019, + "angularSpeed": 0.00006, + "angularVelocity": 0.00013, + "area": 1475.91406, "axes": { "#": 2429 }, @@ -21404,13 +21404,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 1397.3944234227881, - "inverseInertia": 0.0007156175688397215, - "inverseMass": 0.6775462233145303, + "inertia": 1397.39442, + "inverseInertia": 0.00072, + "inverseMass": 0.67755, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4759140640000001, + "mass": 1.47591, "motion": 0, "parent": null, "position": { @@ -21432,7 +21432,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9004460147312456, + "speed": 2.90045, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21456,16 +21456,16 @@ } ], { - "x": -0.4999912495912021, - "y": -0.8660304557763705 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.5000662132274352, - "y": -0.8659871721846537 + "x": 0.50007, + "y": -0.86599 }, { - "x": 0.9999999990633729, - "y": 0.00004328110462197192 + "x": 1, + "y": 0.00004 }, { "max": { @@ -21476,12 +21476,12 @@ } }, { - "x": 461.9790113618566, - "y": 432.7027291106835 + "x": 461.97901, + "y": 432.70273 }, { - "x": 420.5167544481352, - "y": 382.13782581605574 + "x": 420.51675, + "y": 382.13783 }, { "category": 1, @@ -21498,16 +21498,16 @@ "y": 0 }, { - "x": 441.3374956002658, - "y": 408.867729133008 + "x": 441.3375, + "y": 408.86773 }, { - "x": -0.3202224894964104, - "y": 0.01671008738824149 + "x": -0.32022, + "y": 0.01671 }, { - "x": 441.54865354599895, - "y": 411.76419370263244 + "x": 441.54865, + "y": 411.76419 }, { "endCol": 9, @@ -21530,8 +21530,8 @@ "yScale": 1 }, { - "x": -0.22255428086089069, - "y": -2.897142744487496 + "x": -0.22255, + "y": -2.89714 }, [ { @@ -21557,50 +21557,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 461.97797980000917, - "y": 420.7856224871267 + "x": 461.97798, + "y": 420.78562 }, { "body": null, "index": 1, "isInternal": false, - "x": 441.33646399513714, - "y": 432.7027291106835 + "x": 441.33646, + "y": 432.70273 }, { "body": null, "index": 2, "isInternal": false, - "x": 420.69597983867504, - "y": 420.7838357565657 + "x": 420.69598, + "y": 420.78384 }, { "body": null, "index": 3, "isInternal": false, - "x": 420.69701140052246, - "y": 396.94983577888934 + "x": 420.69701, + "y": 396.94984 }, { "body": null, "index": 4, "isInternal": false, - "x": 441.3385272053945, - "y": 385.03272915533256 + "x": 441.33853, + "y": 385.03273 }, { "body": null, "index": 5, "isInternal": false, - "x": 461.9790113618566, - "y": 396.9516225094504 + "x": 461.97901, + "y": 396.95162 }, { - "angle": -0.001019552886917643, - "anglePrev": -0.0006392169483486427, - "angularSpeed": 0.00033959952370004215, - "angularVelocity": -0.00039126650458314624, - "area": 2731.525696, + "angle": -0.00102, + "anglePrev": -0.00064, + "angularSpeed": 0.00034, + "angularVelocity": -0.00039, + "area": 2731.5257, "axes": { "#": 2454 }, @@ -21621,13 +21621,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 4974.15508527219, - "inverseInertia": 0.00020103916803094191, - "inverseMass": 0.3660957689193197, + "inertia": 4974.15509, + "inverseInertia": 0.0002, + "inverseMass": 0.3661, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.7315256960000003, + "mass": 2.73153, "motion": 0, "parent": null, "position": { @@ -21649,7 +21649,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.912663380736735, + "speed": 2.91266, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21670,12 +21670,12 @@ } ], { - "x": -0.0010195527102821386, - "y": -0.9999994802560007 + "x": -0.00102, + "y": -1 }, { - "x": 0.9999994802560007, - "y": -0.0010195527102821386 + "x": 1, + "y": -0.00102 }, { "max": { @@ -21686,12 +21686,12 @@ } }, { - "x": 512.861887850427, - "y": 437.2345643652543 + "x": 512.86189, + "y": 437.23456 }, { - "x": 460.3505462388738, - "y": 382.0111157137133 + "x": 460.35055, + "y": 382.01112 }, { "category": 1, @@ -21708,16 +21708,16 @@ "y": 0 }, { - "x": 486.70325848095234, - "y": 411.0759349957794 + "x": 486.70326, + "y": 411.07593 }, { - "x": -0.2332223847741377, - "y": 0.00011805232676300958 + "x": -0.23322, + "y": 0.00012 }, { - "x": 486.9272305143209, - "y": 413.9809106618492 + "x": 486.92723, + "y": 413.98091 }, { "endCol": 10, @@ -21740,8 +21740,8 @@ "yScale": 1 }, { - "x": -0.23016094075774163, - "y": -2.905771638522083 + "x": -0.23016, + "y": -2.90577 }, [ { @@ -21761,35 +21761,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 512.861887850427, - "y": 437.1812784624042 + "x": 512.86189, + "y": 437.18128 }, { "body": null, "index": 1, "isInternal": false, - "x": 460.59791501432755, - "y": 437.2345643652543 + "x": 460.59792, + "y": 437.23456 }, { "body": null, "index": 2, "isInternal": false, - "x": 460.54462911147743, - "y": 384.9705915291546 + "x": 460.54463, + "y": 384.97059 }, { "body": null, "index": 3, "isInternal": false, - "x": 512.8086019475769, - "y": 384.9173056263045 + "x": 512.8086, + "y": 384.91731 }, { - "angle": 0.0003070847891504465, - "anglePrev": 0.00003907791871316644, - "angularSpeed": 0.00018293756860980823, - "angularVelocity": 0.0003652856714105594, + "angle": 0.00031, + "anglePrev": 0.00004, + "angularSpeed": 0.00018, + "angularVelocity": 0.00037, "area": 1453.96239, "axes": { "#": 2476 @@ -21811,13 +21811,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 1356.1358869695257, - "inverseInertia": 0.0007373892318671982, - "inverseMass": 0.6877756996176496, + "inertia": 1356.13589, + "inverseInertia": 0.00074, + "inverseMass": 0.68778, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.45396239, + "mass": 1.45396, "motion": 0, "parent": null, "position": { @@ -21839,7 +21839,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9192353318627258, + "speed": 2.91924, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21863,16 +21863,16 @@ } ], { - "x": -0.4997601940336918, - "y": -0.8661638115618817 + "x": -0.49976, + "y": -0.86616 }, { - "x": 0.5002920712072978, - "y": -0.8658567107132176 + "x": 0.50029, + "y": -0.86586 }, { - "x": 0.9999999528494666, - "y": 0.0003070847843240427 + "x": 1, + "y": 0.00031 }, { "max": { @@ -21883,12 +21883,12 @@ } }, { - "x": 552.3684625102221, - "y": 432.20624270149045 + "x": 552.36846, + "y": 432.20624 }, { - "x": 511.18284663768856, - "y": 381.98017099651065 + "x": 511.18285, + "y": 381.98017 }, { "category": 1, @@ -21905,16 +21905,16 @@ "y": 0 }, { - "x": 531.8778312773661, - "y": 408.54924381693064 + "x": 531.87783, + "y": 408.54924 }, { - "x": -0.15713304892215227, - "y": -0.012782436719778021 + "x": -0.15713, + "y": -0.01278 }, { - "x": 532.1110663404677, - "y": 411.4594647538029 + "x": 532.11107, + "y": 411.45946 }, { "endCol": 11, @@ -21937,8 +21937,8 @@ "yScale": 1 }, { - "x": -0.24451576847616252, - "y": -2.911589761165203 + "x": -0.24452, + "y": -2.91159 }, [ { @@ -21964,49 +21964,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 552.3611981125641, - "y": 420.3835345052105 + "x": 552.3612, + "y": 420.38353 }, { "body": null, "index": 1, "isInternal": false, - "x": 531.8705665726234, - "y": 432.20624270149045 + "x": 531.87057, + "y": 432.20624 }, { "body": null, "index": 2, "isInternal": false, - "x": 511.38720004450994, - "y": 420.3709520132577 + "x": 511.3872, + "y": 420.37095 }, { "body": null, "index": 3, "isInternal": false, - "x": 511.3944644421681, - "y": 396.7149531286508 + "x": 511.39446, + "y": 396.71495 }, { "body": null, "index": 4, "isInternal": false, - "x": 531.8850959821089, - "y": 384.89224493237083 + "x": 531.8851, + "y": 384.89224 }, { "body": null, "index": 5, "isInternal": false, - "x": 552.3684625102221, - "y": 396.7275356206036 + "x": 552.36846, + "y": 396.72754 }, { - "angle": 0.0034199827719380606, - "anglePrev": 0.001993522935395176, - "angularSpeed": 0.0011859073829786951, - "angularVelocity": 0.0014285151042871726, + "angle": 0.00342, + "anglePrev": 0.00199, + "angularSpeed": 0.00119, + "angularVelocity": 0.00143, "area": 4826.0809, "axes": { "#": 2501 @@ -22028,13 +22028,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 15527.371235563205, - "inverseInertia": 0.00006440240172204064, - "inverseMass": 0.20720746724324493, + "inertia": 15527.37124, + "inverseInertia": 0.00006, + "inverseMass": 0.20721, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.8260809, + "mass": 4.82608, "motion": 0, "parent": null, "position": { @@ -22056,7 +22056,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.881152684483799, + "speed": 2.88115, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22077,12 +22077,12 @@ } ], { - "x": 0.003419976105094712, - "y": -0.9999941518646198 + "x": 0.00342, + "y": -0.99999 }, { - "x": 0.9999941518646198, - "y": 0.003419976105094712 + "x": 0.99999, + "y": 0.00342 }, { "max": { @@ -22093,12 +22093,12 @@ } }, { - "x": 620.4393281660218, - "y": 454.6592893276553 + "x": 620.43933, + "y": 454.65929 }, { - "x": 550.5000257656042, - "y": 382.0803230033029 + "x": 550.50003, + "y": 382.08032 }, { "category": 1, @@ -22115,16 +22115,16 @@ "y": 0 }, { - "x": 585.585738430994, - "y": 419.8056995926272 + "x": 585.58574, + "y": 419.8057 }, { - "x": -0.08351635960244477, - "y": -0.00028562562460217897 + "x": -0.08352, + "y": -0.00029 }, { - "x": 585.8479745462752, - "y": 422.66590007234447 + "x": 585.84797, + "y": 422.6659 }, { "endCol": 12, @@ -22147,8 +22147,8 @@ "yScale": 1 }, { - "x": -0.2655164325726673, - "y": -2.860490059553797 + "x": -0.26552, + "y": -2.86049 }, [ { @@ -22168,36 +22168,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 620.2017424260011, - "y": 454.6592893276553 + "x": 620.20174, + "y": 454.65929 }, { "body": null, "index": 1, "isInternal": false, - "x": 550.7321486959661, - "y": 454.4217035876344 + "x": 550.73215, + "y": 454.4217 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.9697344359868, - "y": 384.9521098575991 + "x": 550.96973, + "y": 384.95211 }, { "body": null, "index": 3, "isInternal": false, - "x": 620.4393281660218, - "y": 385.18969559762 + "x": 620.43933, + "y": 385.1897 }, { - "angle": 0.02599495357151301, - "anglePrev": 0.019437538620000357, - "angularSpeed": 0.005700290986063056, - "angularVelocity": 0.006674292610489966, - "area": 1288.7426280768939, + "angle": 0.02599, + "anglePrev": 0.01944, + "angularSpeed": 0.0057, + "angularVelocity": 0.00667, + "area": 1288.74263, "axes": { "#": 2523 }, @@ -22218,13 +22218,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 1283.525413611018, - "inverseInertia": 0.0007791041684064836, - "inverseMass": 0.7759501224012698, + "inertia": 1283.52541, + "inverseInertia": 0.00078, + "inverseMass": 0.77595, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2887426280768939, + "mass": 1.28874, "motion": 0, "parent": null, "position": { @@ -22246,7 +22246,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.698775308659087, + "speed": 2.69878, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22267,12 +22267,12 @@ } ], { - "x": -0.02599202604245528, - "y": 0.9996621502198668 + "x": -0.02599, + "y": 0.99966 }, { - "x": -0.9996621502198668, - "y": -0.02599202604245528 + "x": -0.99966, + "y": -0.02599 }, { "max": { @@ -22283,12 +22283,12 @@ } }, { - "x": 666.8672644127688, - "y": 419.9005216361846 + "x": 666.86726, + "y": 419.90052 }, { - "x": 618.5703218364763, - "y": 388.8121609428234 + "x": 618.57032, + "y": 388.81216 }, { "category": 1, @@ -22305,16 +22305,16 @@ "y": 0 }, { - "x": 642.8074521389009, - "y": 405.7028132056033 + "x": 642.80745, + "y": 405.70281 }, { - "x": -0.03354348935195315, - "y": -0.12512274470635976 + "x": -0.03354, + "y": -0.12512 }, { - "x": 643.0003560382639, - "y": 408.3563630718705 + "x": 643.00036, + "y": 408.35636 }, { "endCol": 13, @@ -22337,8 +22337,8 @@ "yScale": 1 }, { - "x": -0.20256754200681826, - "y": -2.6531680385220398 + "x": -0.20257, + "y": -2.65317 }, [ { @@ -22358,36 +22358,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 619.453890276357, - "y": 391.50510477502206 + "x": 619.45389, + "y": 391.5051 }, { "body": null, "index": 1, "isInternal": false, - "x": 666.8672644127688, - "y": 392.7378909268668 + "x": 666.86726, + "y": 392.73789 }, { "body": null, "index": 2, "isInternal": false, - "x": 666.1610140014446, - "y": 419.9005216361846 + "x": 666.16101, + "y": 419.90052 }, { "body": null, "index": 3, "isInternal": false, - "x": 618.7476398650329, - "y": 418.6677354843398 + "x": 618.74764, + "y": 418.66774 }, { - "angle": 0.06273538684162683, - "anglePrev": 0.04968889279040413, - "angularSpeed": 0.011650303494165003, - "angularVelocity": 0.013078093216255846, - "area": 1779.883796, + "angle": 0.06274, + "anglePrev": 0.04969, + "angularSpeed": 0.01165, + "angularVelocity": 0.01308, + "area": 1779.8838, "axes": { "#": 2545 }, @@ -22408,13 +22408,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 2051.033881833643, - "inverseInertia": 0.0004875589861567722, - "inverseMass": 0.5618344311282218, + "inertia": 2051.03388, + "inverseInertia": 0.00049, + "inverseMass": 0.56183, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.779883796, + "mass": 1.77988, "motion": 0, "parent": null, "position": { @@ -22436,7 +22436,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.2625769608676376, + "speed": 2.26258, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22466,24 +22466,24 @@ } ], { - "x": 0.24877491574315452, - "y": 0.9685613255220271 + "x": 0.24877, + "y": 0.96856 }, { - "x": -0.8442676474094538, - "y": 0.5359217662473749 + "x": -0.84427, + "y": 0.53592 }, { - "x": -0.7705645190976234, - "y": -0.6373620022466416 + "x": -0.77056, + "y": -0.63736 }, { - "x": 0.36802678937896866, - "y": -0.9298151871739935 + "x": 0.36803, + "y": -0.92982 }, { - "x": 0.9980327809492862, - "y": 0.06269424336120735 + "x": 0.99803, + "y": 0.06269 }, { "max": { @@ -22494,12 +22494,12 @@ } }, { - "x": 715.025490989112, - "y": 444.03905720559175 + "x": 715.02549, + "y": 444.03906 }, { - "x": 664.3400034601934, - "y": 389.8540773448014 + "x": 664.34, + "y": 389.85408 }, { "category": 1, @@ -22516,16 +22516,16 @@ "y": 0 }, { - "x": 691.9255784937931, - "y": 418.59931296979704 + "x": 691.92558, + "y": 418.59931 }, { - "x": 0.000898930773000739, - "y": -0.1749369992620053 + "x": 0.0009, + "y": -0.17494 }, { - "x": 692.2312781310407, - "y": 420.75068094121343 + "x": 692.23128, + "y": 420.75068 }, { "endCol": 14, @@ -22548,8 +22548,8 @@ "yScale": 1 }, { - "x": -0.29930787355726807, - "y": -2.1522458300252083 + "x": -0.29931, + "y": -2.15225 }, [ { @@ -22572,43 +22572,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 713.0089933456421, - "y": 436.03742630015614 + "x": 713.00899, + "y": 436.03743 }, { "body": null, "index": 1, "isInternal": false, - "x": 681.8560524916362, - "y": 444.03905720559175 + "x": 681.85605, + "y": 444.03906 }, { "body": null, "index": 2, "isInternal": false, - "x": 664.6186116415109, - "y": 416.88394884752336 + "x": 664.61861, + "y": 416.88395 }, { "body": null, "index": 3, "isInternal": false, - "x": 685.1187863046401, - "y": 392.0994352194289 + "x": 685.11879, + "y": 392.09944 }, { "body": null, "index": 4, "isInternal": false, - "x": 715.025490989112, - "y": 403.93669993370327 + "x": 715.02549, + "y": 403.9367 }, { - "angle": 0.0579524548420116, - "anglePrev": 0.045278000863540675, - "angularSpeed": 0.011025457016621826, - "angularVelocity": 0.012657224788889726, - "area": 4428.370116000001, + "angle": 0.05795, + "anglePrev": 0.04528, + "angularSpeed": 0.01103, + "angularVelocity": 0.01266, + "area": 4428.37012, "axes": { "#": 2571 }, @@ -22629,13 +22629,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 13073.641256187908, - "inverseInertia": 0.0000764897843228403, - "inverseMass": 0.22581671671636758, + "inertia": 13073.64126, + "inverseInertia": 0.00008, + "inverseMass": 0.22582, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.428370116000001, + "mass": 4.42837, "motion": 0, "parent": null, "position": { @@ -22657,7 +22657,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.672235485631505, + "speed": 1.67224, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22678,12 +22678,12 @@ } ], { - "x": 0.05792002152758523, - "y": -0.9983212264127433 + "x": 0.05792, + "y": -0.99832 }, { - "x": 0.9983212264127433, - "y": 0.05792002152758523 + "x": 0.99832, + "y": 0.05792 }, { "max": { @@ -22694,12 +22694,12 @@ } }, { - "x": 780.6045182198059, - "y": 460.4934645254817 + "x": 780.60452, + "y": 460.49346 }, { - "x": 709.9707727276635, - "y": 388.5685988593716 + "x": 709.97077, + "y": 388.5686 }, { "category": 1, @@ -22716,16 +22716,16 @@ "y": 0 }, { - "x": 745.4602031770871, - "y": 425.34914948276315 + "x": 745.4602, + "y": 425.34915 }, { "x": 0, "y": 0 }, { - "x": 745.85377030548, - "y": 426.8111785786474 + "x": 745.85377, + "y": 426.81118 }, { "endCol": 16, @@ -22748,8 +22748,8 @@ "yScale": 1 }, { - "x": -0.39613615408904934, - "y": -1.461676260355091 + "x": -0.39614, + "y": -1.46168 }, [ { @@ -22769,43 +22769,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 776.7501724672312, - "y": 460.4934645254817 + "x": 776.75017, + "y": 460.49346 }, { "body": null, "index": 1, "isInternal": false, - "x": 710.3158881343684, - "y": 456.63911877290707 + "x": 710.31589, + "y": 456.63912 }, { "body": null, "index": 2, "isInternal": false, - "x": 714.170233886943, - "y": 390.2048344400446 + "x": 714.17023, + "y": 390.20483 }, { "body": null, "index": 3, "isInternal": false, - "x": 780.6045182198059, - "y": 394.05918019261924 + "x": 780.60452, + "y": 394.05918 }, { - "angle": -0.024386193065139932, - "anglePrev": -0.021901501366766628, - "angularSpeed": 0.0024846916983733047, - "angularVelocity": -0.0024846916983733047, - "area": 4006.5774799999995, + "angle": -0.02439, + "anglePrev": -0.0219, + "angularSpeed": 0.00248, + "angularVelocity": -0.00248, + "area": 4006.57748, "axes": { "#": 2593 }, "bounds": { "#": 2607 }, - "circleRadius": 35.88631687242798, + "circleRadius": 35.88632, "collisionFilter": { "#": 2610 }, @@ -22820,13 +22820,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 10219.637720405184, - "inverseInertia": 0.00009785082674734506, - "inverseMass": 0.2495895823784244, + "inertia": 10219.63772, + "inverseInertia": 0.0001, + "inverseMass": 0.24959, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.00657748, + "mass": 4.00658, "motion": 0, "parent": null, "position": { @@ -22848,7 +22848,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.722180958932134, + "speed": 2.72218, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22902,56 +22902,56 @@ } ], { - "x": -0.9764684030243582, - "y": -0.21566051538253125 + "x": -0.97647, + "y": -0.21566 }, { - "x": -0.8965608625931785, - "y": -0.44292055683403986 + "x": -0.89656, + "y": -0.44292 }, { - "x": -0.7644213399874726, - "y": -0.6447170037867438 + "x": -0.76442, + "y": -0.64472 }, { - "x": -0.5879955268261451, - "y": -0.8088641792244505 + "x": -0.588, + "y": -0.80886 }, { - "x": -0.377323396757232, - "y": -0.9260815591834147 + "x": -0.37732, + "y": -0.92608 }, { - "x": -0.14461917721081355, - "y": -0.9894873892995644 + "x": -0.14462, + "y": -0.98949 }, { - "x": 0.09620667479774293, - "y": -0.9953613794619328 + "x": 0.09621, + "y": -0.99536 }, { - "x": 0.33172540487753077, - "y": -0.9433759885426585 + "x": 0.33173, + "y": -0.94338 }, { - "x": 0.547861721955201, - "y": -0.8365689054801657 + "x": 0.54786, + "y": -0.83657 }, { - "x": 0.7320804164612955, - "y": -0.6812182204212217 + "x": 0.73208, + "y": -0.68122 }, { - "x": 0.873900999782998, - "y": -0.48610394215463487 + "x": 0.8739, + "y": -0.4861 }, { - "x": 0.9647931398696699, - "y": -0.26300988053764124 + "x": 0.96479, + "y": -0.26301 }, { - "x": 0.9997026715291001, - "y": -0.024383776114063893 + "x": 0.9997, + "y": -0.02438 }, { "max": { @@ -22962,12 +22962,12 @@ } }, { - "x": 921.1445869653361, - "y": 475.5788383014444 + "x": 921.14459, + "y": 475.57884 }, { - "x": 849.7048031879489, - "y": 403.8281781604579 + "x": 849.7048, + "y": 403.82818 }, { "category": 1, @@ -22984,16 +22984,16 @@ "y": 0 }, { - "x": 885.4246950766425, - "y": 439.70350823095123 + "x": 885.4247, + "y": 439.70351 }, { "x": 0, "y": 0 }, { - "x": 885.4132349081074, - "y": 442.4256650665707 + "x": 885.41323, + "y": 442.42567 }, { "endCol": 19, @@ -23016,8 +23016,8 @@ "yScale": 1 }, { - "x": 0.011460168535149933, - "y": -2.7221568356194723 + "x": 0.01146, + "y": -2.72216 }, [ { @@ -23103,190 +23103,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 921.1445869653361, - "y": 443.15954996392253 + "x": 921.14459, + "y": 443.15955 }, { "body": null, "index": 1, "isInternal": false, - "x": 919.2790020681813, - "y": 451.60655150242764 + "x": 919.279, + "y": 451.60655 }, { "body": null, "index": 2, "isInternal": false, - "x": 915.4470014374442, - "y": 459.3632964489907 + "x": 915.447, + "y": 459.3633 }, { "body": null, "index": 3, "isInternal": false, - "x": 909.8695921612202, - "y": 465.976260970708 + "x": 909.86959, + "y": 465.97626 }, { "body": null, "index": 4, "isInternal": false, - "x": 902.8715553995338, - "y": 471.0634120872056 + "x": 902.87156, + "y": 471.06341 }, { "body": null, "index": 5, "isInternal": false, - "x": 894.8597699146527, - "y": 474.3277402484436 + "x": 894.85977, + "y": 474.32774 }, { "body": null, "index": 6, "isInternal": false, - "x": 886.299731266272, - "y": 475.5788383014444 + "x": 886.29973, + "y": 475.57884 }, { "body": null, "index": 7, "isInternal": false, - "x": 877.688876828469, - "y": 474.7465559869787 + "x": 877.68888, + "y": 474.74656 }, { "body": null, "index": 8, "isInternal": false, - "x": 869.5274724933522, - "y": 471.8767085557141 + "x": 869.52747, + "y": 471.87671 }, { "body": null, "index": 9, "isInternal": false, - "x": 862.2897432124644, - "y": 467.13678241108073 + "x": 862.28974, + "y": 467.13678 }, { "body": null, "index": 10, "isInternal": false, - "x": 856.3965640355635, - "y": 460.8035973364962 + "x": 856.39656, + "y": 460.8036 }, { "body": null, "index": 11, "isInternal": false, - "x": 852.1909551872064, - "y": 453.24289794989045 + "x": 852.19096, + "y": 453.2429 }, { "body": null, "index": 12, "isInternal": false, - "x": 849.9157716188877, - "y": 444.8968940120496 + "x": 849.91577, + "y": 444.89689 }, { "body": null, "index": 13, "isInternal": false, - "x": 849.7048031879489, - "y": 436.2474664979798 + "x": 849.7048, + "y": 436.24747 }, { "body": null, "index": 14, "isInternal": false, - "x": 851.5703880851037, - "y": 427.8004649594747 + "x": 851.57039, + "y": 427.80046 }, { "body": null, "index": 15, "isInternal": false, - "x": 855.4023887158407, - "y": 420.04372001291176 + "x": 855.40239, + "y": 420.04372 }, { "body": null, "index": 16, "isInternal": false, - "x": 860.9797979920647, - "y": 413.4307554911945 + "x": 860.9798, + "y": 413.43076 }, { "body": null, "index": 17, "isInternal": false, - "x": 867.9778347537512, - "y": 408.3436043746967 + "x": 867.97783, + "y": 408.3436 }, { "body": null, "index": 18, "isInternal": false, - "x": 875.9896202386323, - "y": 405.07927621345874 + "x": 875.98962, + "y": 405.07928 }, { "body": null, "index": 19, "isInternal": false, - "x": 884.5496588870129, - "y": 403.8281781604579 + "x": 884.54966, + "y": 403.82818 }, { "body": null, "index": 20, "isInternal": false, - "x": 893.160513324816, - "y": 404.66046047492364 + "x": 893.16051, + "y": 404.66046 }, { "body": null, "index": 21, "isInternal": false, - "x": 901.3219176599328, - "y": 407.53030790618834 + "x": 901.32192, + "y": 407.53031 }, { "body": null, "index": 22, "isInternal": false, - "x": 908.5596469408206, - "y": 412.2702340508217 + "x": 908.55965, + "y": 412.27023 }, { "body": null, "index": 23, "isInternal": false, - "x": 914.4528261177214, - "y": 418.6034191254063 + "x": 914.45283, + "y": 418.60342 }, { "body": null, "index": 24, "isInternal": false, - "x": 918.6584349660785, - "y": 426.164118512012 + "x": 918.65843, + "y": 426.16412 }, { "body": null, "index": 25, "isInternal": false, - "x": 920.9336185343973, - "y": 434.51012244985276 + "x": 920.93362, + "y": 434.51012 }, { - "angle": 0.0031266244587785626, - "anglePrev": 0.002755469271122734, - "angularSpeed": 0.0003711484657862961, - "angularVelocity": 0.00037115515798075496, - "area": 2513.037024864943, + "angle": 0.00313, + "anglePrev": 0.00276, + "angularSpeed": 0.00037, + "angularVelocity": 0.00037, + "area": 2513.03702, "axes": { "#": 2648 }, @@ -23307,13 +23307,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 7118.367975988358, - "inverseInertia": 0.000140481638961795, - "inverseMass": 0.3979248972878713, + "inertia": 7118.36798, + "inverseInertia": 0.00014, + "inverseMass": 0.39792, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5130370248649427, + "mass": 2.51304, "motion": 0, "parent": null, "position": { @@ -23335,7 +23335,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.888924005089781, + "speed": 2.88892, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23356,12 +23356,12 @@ } ], { - "x": -0.0031266193645819802, - "y": 0.9999951121137289 + "x": -0.00313, + "y": 1 }, { - "x": -0.9999951121137289, - "y": -0.0031266193645819802 + "x": -1, + "y": -0.00313 }, { "max": { @@ -23372,12 +23372,12 @@ } }, { - "x": 963.2440458137992, - "y": 398.98212707100043 + "x": 963.24405, + "y": 398.98213 }, { - "x": 875.5200969597812, - "y": 367.1340000889638 + "x": 875.5201, + "y": 367.134 }, { "category": 1, @@ -23394,16 +23394,16 @@ "y": 0 }, { - "x": 919.367882292667, - "y": 384.5024558904033 + "x": 919.36788, + "y": 384.50246 }, { - "x": 0.002800192326127144, - "y": 0.0000029234279839839776 + "x": 0.0028, + "y": 0 }, { - "x": 919.339504104489, - "y": 387.39124048938936 + "x": 919.3395, + "y": 387.39124 }, { "endCol": 20, @@ -23426,8 +23426,8 @@ "yScale": 1 }, { - "x": 0.028378188186479747, - "y": -2.888784601709858 + "x": 0.02838, + "y": -2.88878 }, [ { @@ -23447,36 +23447,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 875.6097858215153, - "y": 370.0227847098062 + "x": 875.60979, + "y": 370.02278 }, { "body": null, "index": 1, "isInternal": false, - "x": 963.2156676255528, - "y": 370.29669629515473 + "x": 963.21567, + "y": 370.2967 }, { "body": null, "index": 2, "isInternal": false, - "x": 963.1259787638187, - "y": 398.98212707100043 + "x": 963.12598, + "y": 398.98213 }, { "body": null, "index": 3, "isInternal": false, - "x": 875.5200969597812, - "y": 398.7082154856519 + "x": 875.5201, + "y": 398.70822 }, { - "angle": 0.0004941269894584979, - "anglePrev": 0.0004365323315798548, - "angularSpeed": 0.00005761787780206806, - "angularVelocity": 0.000057594552850587905, - "area": 1629.3666616192165, + "angle": 0.00049, + "anglePrev": 0.00044, + "angularSpeed": 0.00006, + "angularVelocity": 0.00006, + "area": 1629.36666, "axes": { "#": 2670 }, @@ -23497,13 +23497,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 1918.0622160315609, - "inverseInertia": 0.0005213595219392745, - "inverseMass": 0.6137354001132129, + "inertia": 1918.06222, + "inverseInertia": 0.00052, + "inverseMass": 0.61374, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6293666616192166, + "mass": 1.62937, "motion": 0, "parent": null, "position": { @@ -23525,7 +23525,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.871717771995962, + "speed": 2.87172, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23546,12 +23546,12 @@ } ], { - "x": -0.0004941269693507019, - "y": 0.9999998779192617 + "x": -0.00049, + "y": 1 }, { - "x": -0.9999998779192617, - "y": -0.0004941269693507019 + "x": -1, + "y": -0.00049 }, { "max": { @@ -23562,12 +23562,12 @@ } }, { - "x": 996.0893904050839, - "y": 434.67951765926625 + "x": 996.08939, + "y": 434.67952 }, { - "x": 963.0946208797507, - "y": 382.3315239470039 + "x": 963.09462, + "y": 382.33152 }, { "category": 1, @@ -23584,16 +23584,16 @@ "y": 0 }, { - "x": 979.578353579587, - "y": 409.9413147861563 + "x": 979.57835, + "y": 409.94131 }, { - "x": 0.0023135346282102125, - "y": -6.712866532244311e-7 + "x": 0.00231, + "y": 0 }, { - "x": 979.5510494538208, - "y": 412.8129027859086 + "x": 979.55105, + "y": 412.8129 }, { "endCol": 20, @@ -23616,8 +23616,8 @@ "yScale": 1 }, { - "x": 0.027304125752948494, - "y": -2.871587995551238 + "x": 0.0273, + "y": -2.87159 }, [ { @@ -23637,35 +23637,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 963.1190604657418, - "y": 385.2031119130463 + "x": 963.11906, + "y": 385.20311 }, { "body": null, "index": 1, "isInternal": false, - "x": 996.0620862794233, - "y": 385.21938995254 + "x": 996.06209, + "y": 385.21939 }, { "body": null, "index": 2, "isInternal": false, - "x": 996.0376466934322, - "y": 434.67951765926625 + "x": 996.03765, + "y": 434.67952 }, { "body": null, "index": 3, "isInternal": false, - "x": 963.0946208797507, - "y": 434.6632396197726 + "x": 963.09462, + "y": 434.66324 }, { - "angle": 0.000012807800713702392, - "anglePrev": 0.00001126257257179796, - "angularSpeed": 0.000001545228141904433, - "angularVelocity": 0.000001545228141904433, + "angle": 0.00001, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": 0, "area": 1316.36654, "axes": { "#": 2692 @@ -23687,13 +23687,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 1107.5429879268129, - "inverseInertia": 0.0009028994909460621, - "inverseMass": 0.759666832613354, + "inertia": 1107.54299, + "inverseInertia": 0.0009, + "inverseMass": 0.75967, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.31636654, + "mass": 1.31637, "motion": 0, "parent": null, "position": { @@ -23715,7 +23715,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907341008958508, + "speed": 2.90734, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23751,32 +23751,32 @@ } ], { - "x": 0.6234989288481452, - "y": 0.7818242038496992 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.22251914271201456, - "y": 0.9749283210199147 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009752785705423, - "y": 0.43387042697645745 + "x": -0.90098, + "y": 0.43387 }, { - "x": -0.9009641644230235, - "y": -0.4338935058577428 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.22249416926372173, - "y": -0.97493402066173 + "x": -0.22249, + "y": -0.97493 }, { - "x": 0.6235189555407779, - "y": -0.7818082322931484 + "x": 0.62352, + "y": -0.78181 }, { - "x": 0.9999999999179803, - "y": 0.000012807800713352227 + "x": 1, + "y": 0.00001 }, { "max": { @@ -23787,12 +23787,12 @@ } }, { - "x": 1056.801371171746, - "y": 427.7057402444727 + "x": 1056.80137, + "y": 427.70574 }, { - "x": 1015.0992451958118, - "y": 382.03241025694916 + "x": 1015.09925, + "y": 382.03241 }, { "category": 1, @@ -23809,16 +23809,16 @@ "y": 0 }, { - "x": 1037.0322184039796, - "y": 406.3226777310081 + "x": 1037.03222, + "y": 406.32268 }, { - "x": 0.7709843649561361, - "y": -0.0000023621463284856804 + "x": 0.77098, + "y": 0 }, { - "x": 1037.024214303657, - "y": 409.2300077220394 + "x": 1037.02421, + "y": 409.23001 }, { "endCol": 21, @@ -23841,8 +23841,8 @@ "yScale": 1 }, { - "x": 0.00800410032285754, - "y": -2.907329991031272 + "x": 0.008, + "y": -2.90733 }, [ { @@ -23871,50 +23871,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 1056.7931233133597, - "y": 415.8389308255206 + "x": 1056.79312, + "y": 415.83893 }, { "body": null, "index": 1, "isInternal": false, - "x": 1041.9129713244095, - "y": 427.7057402444727 + "x": 1041.91297, + "y": 427.70574 }, { "body": null, "index": 2, "isInternal": false, - "x": 1023.3570255669676, - "y": 423.47050258327005 + "x": 1023.35703, + "y": 423.4705 }, { "body": null, "index": 3, "isInternal": false, - "x": 1015.0992451958118, - "y": 406.3223968178582 + "x": 1015.09925, + "y": 406.3224 }, { "body": null, "index": 4, "isInternal": false, - "x": 1023.357464823301, - "y": 389.1745025860829 + "x": 1023.35746, + "y": 389.1745 }, { "body": null, "index": 5, "isInternal": false, - "x": 1041.9135190628147, - "y": 384.9397402479804 + "x": 1041.91352, + "y": 384.93974 }, { "body": null, "index": 6, "isInternal": false, - "x": 1056.7933670714233, - "y": 396.8069308270816 + "x": 1056.79337, + "y": 396.80693 }, [], [], diff --git a/test/browser/refs/manipulation/manipulation-0.json b/test/browser/refs/manipulation/manipulation-0.json index 88b012b8..a9ba0893 100644 --- a/test/browser/refs/manipulation/manipulation-0.json +++ b/test/browser/refs/manipulation/manipulation-0.json @@ -1060,8 +1060,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1240,8 +1240,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1420,8 +1420,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1600,8 +1600,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1780,8 +1780,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1939,7 +1939,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1944.4530819999998, + "area": 1944.45308, "axes": { "#": 213 }, @@ -1961,13 +1961,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 2407.040215928269, - "inverseInertia": 0.0004154479818752644, - "inverseMass": 0.5142834297505565, + "inertia": 2407.04022, + "inverseInertia": 0.00042, + "inverseMass": 0.51428, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9444530819999999, + "mass": 1.94445, "motion": 0, "parent": null, "position": { @@ -2040,52 +2040,52 @@ } ], { - "x": -0.9709182366411434, - "y": -0.23941131501592125 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8855293211163864, - "y": -0.4645834924350539 + "x": -0.88553, + "y": -0.46458 }, { - "x": -0.748461108518164, - "y": -0.6631786856012194 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5679927261836174, - "y": -0.8230335734358 + "x": -0.56799, + "y": -0.82303 }, { - "x": -0.35473926289412316, - "y": -0.9349652696016757 + "x": -0.35474, + "y": -0.93497 }, { - "x": -0.1204602009454297, - "y": -0.9927181573781084 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.1204602009454297, - "y": -0.9927181573781084 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35473926289412316, - "y": -0.9349652696016757 + "x": 0.35474, + "y": -0.93497 }, { - "x": 0.5679927261836174, - "y": -0.8230335734358 + "x": 0.56799, + "y": -0.82303 }, { - "x": 0.748461108518164, - "y": -0.6631786856012194 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8855293211163864, - "y": -0.4645834924350539 + "x": 0.88553, + "y": -0.46458 }, { - "x": 0.9709182366411434, - "y": -0.23941131501592125 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -2509,16 +2509,16 @@ "y": -1 }, { - "x": -0.5931990380498501, - "y": 0.8050558373533679 + "x": -0.5932, + "y": 0.80506 }, { "x": 1, "y": 0 }, { - "x": -0.5931990380498501, - "y": -0.8050558373533679 + "x": -0.5932, + "y": -0.80506 }, { "max": { @@ -2551,7 +2551,7 @@ "y": 0 }, { - "x": 636.7741935483871, + "x": 636.77419, "y": 200 }, { @@ -2559,7 +2559,7 @@ "y": 0 }, { - "x": 636.7741935483871, + "x": 636.77419, "y": 200 }, { diff --git a/test/browser/refs/manipulation/manipulation-10.json b/test/browser/refs/manipulation/manipulation-10.json index 9443ec35..b85b580a 100644 --- a/test/browser/refs/manipulation/manipulation-10.json +++ b/test/browser/refs/manipulation/manipulation-10.json @@ -948,7 +948,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.34694662356878325, + "speed": 0.12533, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -986,11 +986,11 @@ }, { "x": 125, - "y": 225.73048573998472 + "y": 225.14727 }, { "x": 75, - "y": 175.73048573998472 + "y": 175.14727 }, { "category": 1, @@ -1008,7 +1008,7 @@ }, { "x": 100, - "y": 200.73048573998472 + "y": 200.14727 }, { "x": 0, @@ -1016,7 +1016,7 @@ }, { "x": 100, - "y": 200.38353911641593 + "y": 200.02193 }, { "endCol": 2, @@ -1040,7 +1040,7 @@ }, { "x": 0, - "y": 0.34694662356878325 + "y": 0.12533 }, [ { @@ -1061,28 +1061,28 @@ "index": 0, "isInternal": false, "x": 75, - "y": 175.73048573998472 + "y": 175.14727 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 175.73048573998472 + "y": 175.14727 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 225.73048573998472 + "y": 225.14727 }, { "body": null, "index": 3, "isInternal": false, "x": 75, - "y": 225.73048573998472 + "y": 225.14727 }, { "angle": 0, @@ -1110,8 +1110,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1138,7 +1138,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1176,11 +1176,11 @@ }, { "x": 225, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 175, - "y": 192.73575476702598 + "y": 192.73575 }, { "category": 1, @@ -1198,7 +1198,7 @@ }, { "x": 200, - "y": 217.73575476702598 + "y": 217.73575 }, { "x": 0, @@ -1206,7 +1206,7 @@ }, { "x": 200, - "y": 214.8284840519903 + "y": 214.82848 }, { "endCol": 4, @@ -1230,7 +1230,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -1251,28 +1251,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 192.73575476702598 + "y": 192.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 192.73575476702598 + "y": 192.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -1300,8 +1300,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1328,7 +1328,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1366,11 +1366,11 @@ }, { "x": 325, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 275, - "y": 192.73575476702598 + "y": 192.73575 }, { "category": 1, @@ -1388,7 +1388,7 @@ }, { "x": 300, - "y": 217.73575476702598 + "y": 217.73575 }, { "x": 0, @@ -1396,7 +1396,7 @@ }, { "x": 300, - "y": 214.8284840519903 + "y": 214.82848 }, { "endCol": 6, @@ -1420,7 +1420,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -1441,28 +1441,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 192.73575476702598 + "y": 192.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 192.73575476702598 + "y": 192.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -1490,8 +1490,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1518,7 +1518,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1556,11 +1556,11 @@ }, { "x": 425, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 375, - "y": 192.73575476702598 + "y": 192.73575 }, { "category": 1, @@ -1578,7 +1578,7 @@ }, { "x": 400, - "y": 217.73575476702598 + "y": 217.73575 }, { "x": 0, @@ -1586,7 +1586,7 @@ }, { "x": 400, - "y": 214.8284840519903 + "y": 214.82848 }, { "endCol": 8, @@ -1610,7 +1610,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -1631,35 +1631,35 @@ "index": 0, "isInternal": false, "x": 375, - "y": 192.73575476702598 + "y": 192.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 192.73575476702598 + "y": 192.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 242.73575476702598 + "y": 242.73575 }, { - "angle": 0.14612798086844309, - "anglePrev": 0.1246010035041571, - "angularSpeed": 0.02056706941041114, - "angularVelocity": 0.02162624928823663, - "area": 2724.393522189719, + "angle": 0.147, + "anglePrev": 0.12521, + "angularSpeed": 0.0208, + "angularVelocity": 0.02188, + "area": 2724.39039, "axes": { "#": 179 }, @@ -1680,13 +1680,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 4951.138232236453, - "inverseInertia": 0.00020197375898113333, - "inverseMass": 0.3670541688838896, + "inertia": 4951.12679, + "inverseInertia": 0.0002, + "inverseMass": 0.36705, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.724393522189719, + "mass": 2.72439, "motion": 0, "parent": null, "position": { @@ -1708,7 +1708,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1314145030349199, + "speed": 1.22098, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1735,20 +1735,20 @@ } ], { - "x": 0.14190682660976545, - "y": -0.9898800192758442 + "x": 0.14275, + "y": -0.98976 }, { - "x": 0.982725000864904, - "y": 0.18507180410606755 + "x": 0.98257, + "y": 0.18592 }, { - "x": -0.14560848128307743, - "y": 0.9893422917162874 + "x": -0.14647, + "y": 0.98922 }, { - "x": -0.9947967681522271, - "y": -0.10187929168326662 + "x": -0.99471, + "y": -0.10274 }, { "max": { @@ -1759,12 +1759,12 @@ } }, { - "x": 589.3031747114876, - "y": 167.891423454808 + "x": 589.37668, + "y": 167.35894 }, { - "x": 529.0766103860074, - "y": 108.37873508322603 + "x": 529.1059, + "y": 107.59616 }, { "category": 1, @@ -1781,16 +1781,16 @@ "y": 0 }, { - "x": 557.6285646868931, - "y": 138.0642972214066 + "x": 557.67729, + "y": 137.5137 }, { - "x": 0.005865588352549408, - "y": -0.09764246594429205 + "x": 0.00594, + "y": -0.09893 }, { - "x": 556.4736439173896, - "y": 138.549195439965 + "x": 556.51634, + "y": 138.21172 }, { "endCol": 12, @@ -1813,8 +1813,8 @@ "yScale": 1 }, { - "x": 1.1508810430499352, - "y": -0.48802682838967826 + "x": 1.15697, + "y": -0.7011 }, [ { @@ -1834,36 +1834,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 534.3890581958299, - "y": 108.73778919383847 + "x": 534.46303, + "y": 108.16732 }, { "body": null, "index": 1, "isInternal": false, - "x": 588.2302446469773, - "y": 116.45633261466281 + "x": 588.29753, + "y": 115.93198 }, { "body": null, "index": 2, "isInternal": false, - "x": 578.5437249718218, - "y": 167.891423454808 + "x": 578.56668, + "y": 167.35894 }, { "body": null, "index": 3, "isInternal": false, - "x": 529.0766103860074, - "y": 160.61099939065411 + "x": 529.1059, + "y": 160.03563 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3111.7896493773515, + "area": 3111.78965, "axes": { "#": 203 }, @@ -1884,13 +1884,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1613.8724703286705, - "inverseInertia": 0.0006196276461648464, - "inverseMass": 0.32135848263397027, + "inertia": 1613.87247, + "inverseInertia": 0.00062, + "inverseMass": 0.32136, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.1117896493773514, + "mass": 3.11179, "motion": 0, "parent": null, "position": { @@ -1912,7 +1912,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1949,12 +1949,12 @@ } }, { - "x": 727.8917086666333, - "y": 245.6274634336589 + "x": 727.89171, + "y": 245.62746 }, { - "x": 672.1082913333667, - "y": 189.84404610039306 + "x": 672.10829, + "y": 189.84405 }, { "category": 1, @@ -1972,7 +1972,7 @@ }, { "x": 700, - "y": 217.73575476702598 + "y": 217.73575 }, { "x": 0, @@ -1980,7 +1980,7 @@ }, { "x": 700, - "y": 214.8284840519903 + "y": 214.82848 }, { "endCol": 15, @@ -2004,7 +2004,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2024,36 +2024,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 672.1082913333667, - "y": 189.84404610039306 + "x": 672.10829, + "y": 189.84405 }, { "body": null, "index": 1, "isInternal": false, - "x": 727.8917086666333, - "y": 189.84404610039306 + "x": 727.89171, + "y": 189.84405 }, { "body": null, "index": 2, "isInternal": false, - "x": 727.8917086666333, - "y": 245.6274634336589 + "x": 727.89171, + "y": 245.62746 }, { "body": null, "index": 3, "isInternal": false, - "x": 672.1082913333667, - "y": 245.6274634336589 + "x": 672.10829, + "y": 245.62746 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1944.4530819999998, + "area": 1944.45308, "axes": { "#": 225 }, @@ -2075,13 +2075,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 2407.040215928269, - "inverseInertia": 0.0004154479818752644, - "inverseMass": 0.5142834297505565, + "inertia": 2407.04022, + "inverseInertia": 0.00042, + "inverseMass": 0.51428, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9444530819999999, + "mass": 1.94445, "motion": 0, "parent": null, "position": { @@ -2103,7 +2103,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2157,52 +2157,52 @@ } ], { - "x": -0.9709182366411434, - "y": -0.23941131501592125 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8855293211163864, - "y": -0.4645834924350539 + "x": -0.88553, + "y": -0.46458 }, { - "x": -0.748461108518164, - "y": -0.6631786856012194 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5679927261836174, - "y": -0.8230335734358 + "x": -0.56799, + "y": -0.82303 }, { - "x": -0.35473926289412316, - "y": -0.9349652696016757 + "x": -0.35474, + "y": -0.93497 }, { - "x": -0.1204602009454297, - "y": -0.9927181573781084 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.1204602009454297, - "y": -0.9927181573781084 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35473926289412316, - "y": -0.9349652696016757 + "x": 0.35474, + "y": -0.93497 }, { - "x": 0.5679927261836174, - "y": -0.8230335734358 + "x": 0.56799, + "y": -0.82303 }, { - "x": 0.748461108518164, - "y": -0.6631786856012194 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8855293211163864, - "y": -0.4645834924350539 + "x": 0.88553, + "y": -0.46458 }, { - "x": 0.9709182366411434, - "y": -0.23941131501592125 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -2218,11 +2218,11 @@ }, { "x": 424.818, - "y": 142.73575476702572 + "y": 142.73575 }, { "x": 375.182, - "y": 92.73575476702572 + "y": 92.73575 }, { "category": 1, @@ -2240,7 +2240,7 @@ }, { "x": 400, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -2248,7 +2248,7 @@ }, { "x": 400, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 8, @@ -2272,7 +2272,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2359,188 +2359,188 @@ "index": 0, "isInternal": false, "x": 424.818, - "y": 120.74875476702573 + "y": 120.74875 }, { "body": null, "index": 1, "isInternal": false, "x": 423.375, - "y": 126.60075476702572 + "y": 126.60075 }, { "body": null, "index": 2, "isInternal": false, "x": 420.575, - "y": 131.93775476702572 + "y": 131.93775 }, { "body": null, "index": 3, "isInternal": false, "x": 416.578, - "y": 136.44875476702572 + "y": 136.44875 }, { "body": null, "index": 4, "isInternal": false, "x": 411.618, - "y": 139.87175476702575 + "y": 139.87175 }, { "body": null, "index": 5, "isInternal": false, "x": 405.983, - "y": 142.00975476702573 + "y": 142.00975 }, { "body": null, "index": 6, "isInternal": false, "x": 400, - "y": 142.73575476702572 + "y": 142.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 394.017, - "y": 142.00975476702573 + "y": 142.00975 }, { "body": null, "index": 8, "isInternal": false, "x": 388.382, - "y": 139.87175476702575 + "y": 139.87175 }, { "body": null, "index": 9, "isInternal": false, "x": 383.422, - "y": 136.44875476702572 + "y": 136.44875 }, { "body": null, "index": 10, "isInternal": false, "x": 379.425, - "y": 131.93775476702572 + "y": 131.93775 }, { "body": null, "index": 11, "isInternal": false, "x": 376.625, - "y": 126.60075476702572 + "y": 126.60075 }, { "body": null, "index": 12, "isInternal": false, "x": 375.182, - "y": 120.74875476702573 + "y": 120.74875 }, { "body": null, "index": 13, "isInternal": false, "x": 375.182, - "y": 114.72275476702572 + "y": 114.72275 }, { "body": null, "index": 14, "isInternal": false, "x": 376.625, - "y": 108.87075476702573 + "y": 108.87075 }, { "body": null, "index": 15, "isInternal": false, "x": 379.425, - "y": 103.53375476702573 + "y": 103.53375 }, { "body": null, "index": 16, "isInternal": false, "x": 383.422, - "y": 99.02275476702573 + "y": 99.02275 }, { "body": null, "index": 17, "isInternal": false, "x": 388.382, - "y": 95.59975476702573 + "y": 95.59975 }, { "body": null, "index": 18, "isInternal": false, "x": 394.017, - "y": 93.46175476702572 + "y": 93.46175 }, { "body": null, "index": 19, "isInternal": false, "x": 400, - "y": 92.73575476702572 + "y": 92.73575 }, { "body": null, "index": 20, "isInternal": false, "x": 405.983, - "y": 93.46175476702572 + "y": 93.46175 }, { "body": null, "index": 21, "isInternal": false, "x": 411.618, - "y": 95.59975476702573 + "y": 95.59975 }, { "body": null, "index": 22, "isInternal": false, "x": 416.578, - "y": 99.02275476702573 + "y": 99.02275 }, { "body": null, "index": 23, "isInternal": false, "x": 420.575, - "y": 103.53375476702573 + "y": 103.53375 }, { "body": null, "index": 24, "isInternal": false, "x": 423.375, - "y": 108.87075476702573 + "y": 108.87075 }, { "body": null, "index": 25, "isInternal": false, "x": 424.818, - "y": 114.72275476702572 + "y": 114.72275 }, { - "angle": 0.21999999999999997, - "anglePrev": 0.19999999999999998, + "angle": 0.22, + "anglePrev": 0.2, "angularSpeed": 0.02, - "angularVelocity": 0.01999999999999999, + "angularVelocity": 0.02, "area": 15500, "axes": { "#": 280 @@ -2605,7 +2605,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.34694662356878325, + "speed": 0.12533, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2632,20 +2632,20 @@ } ], { - "x": 0.21822962308086777, - "y": -0.9758974493306056 + "x": 0.21823, + "y": -0.9759 }, { - "x": -0.7545884601228973, - "y": 0.6561983357563127 + "x": -0.75459, + "y": 0.6562 }, { - "x": 0.9758974493306051, - "y": 0.21822962308087102 + "x": 0.9759, + "y": 0.21823 }, { - "x": -0.403214396233538, - "y": -0.9151055407274198 + "x": -0.40321, + "y": -0.91511 }, { "max": { @@ -2656,12 +2656,12 @@ } }, { - "x": 664.1583507220029, - "y": 298.4269817895894 + "x": 664.15835, + "y": 297.84376 }, { - "x": 505.46161034424784, - "y": 112.62729771248 + "x": 505.46161, + "y": 112.04408 }, { "category": 1, @@ -2679,7 +2679,7 @@ }, { "x": 600, - "y": 200.73048573998472 + "y": 200.14727 }, { "x": 0, @@ -2687,7 +2687,7 @@ }, { "x": 600, - "y": 200.38353911641593 + "y": 200.02193 }, { "endCol": 13, @@ -2711,7 +2711,7 @@ }, { "x": 0, - "y": 0.34694662356878325 + "y": 0.12533 }, [ { @@ -2737,43 +2737,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 624.9190561038296, - "y": 298.4269817895894 + "x": 624.91906, + "y": 297.84376 }, { "body": null, "index": 1, "isInternal": false, - "x": 578.7418050737159, - "y": 288.10085162691234 + "x": 578.74181, + "y": 287.51763 }, { "body": null, "index": 2, "isInternal": false, - "x": 505.46161034424784, - "y": 203.8330528756666 + "x": 505.46161, + "y": 203.24983 }, { "body": null, "index": 3, "isInternal": false, - "x": 515.7877405069246, - "y": 157.6558018455528 + "x": 515.78774, + "y": 157.07258 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.9810996918889, - "y": 112.62729771248 + "x": 617.9811, + "y": 112.04408 }, { "body": null, "index": 5, "isInternal": false, - "x": 664.1583507220029, - "y": 122.95342787515708 + "x": 664.15835, + "y": 122.37021 }, { "max": { diff --git a/test/browser/refs/mixed/mixed-0.json b/test/browser/refs/mixed/mixed-0.json index 9ea00d11..c6f0c0f3 100644 --- a/test/browser/refs/mixed/mixed-0.json +++ b/test/browser/refs/mixed/mixed-0.json @@ -13,7 +13,7 @@ "#": 2026 }, "gravity": { - "#": 2030 + "#": 2031 }, "id": 0, "isModified": true, @@ -1059,7 +1059,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4652.0400580000005, + "area": 4652.04006, "axes": { "#": 93 }, @@ -1067,7 +1067,7 @@ "#": 107 }, "chamfer": "", - "circleRadius": 38.6693029835391, + "circleRadius": 38.6693, "collisionFilter": { "#": 110 }, @@ -1082,13 +1082,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 13777.654848191112, - "inverseInertia": 0.00007258129275399081, - "inverseMass": 0.21495945596606034, + "inertia": 13777.65485, + "inverseInertia": 0.00007, + "inverseMass": 0.21496, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.652040058000001, + "mass": 4.65204, "motion": 0, "parent": null, "position": { @@ -1161,52 +1161,52 @@ } ], { - "x": -0.970938605280551, - "y": -0.2393286960977694 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854806638699364, - "y": -0.46467622481945037 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7484618993833455, - "y": -0.663177793032513 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.568144016285212, - "y": -0.8229291444342633 + "x": -0.56814, + "y": -0.82293 }, { - "x": -0.354612198176752, - "y": -0.935013469905248 + "x": -0.35461, + "y": -0.93501 }, { - "x": -0.12046912413389774, - "y": -0.9927170745637508 + "x": -0.12047, + "y": -0.99272 }, { - "x": 0.12046912413389774, - "y": -0.9927170745637508 + "x": 0.12047, + "y": -0.99272 }, { - "x": 0.354612198176752, - "y": -0.935013469905248 + "x": 0.35461, + "y": -0.93501 }, { - "x": 0.568144016285212, - "y": -0.8229291444342633 + "x": 0.56814, + "y": -0.82293 }, { - "x": 0.7484618993833455, - "y": -0.663177793032513 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8854806638699364, - "y": -0.46467622481945037 + "x": 0.88548, + "y": -0.46468 }, { - "x": 0.970938605280551, - "y": -0.2393286960977694 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -1384,13 +1384,13 @@ "index": 4, "isInternal": false, "x": 76.358, - "y": 92.90899999999999 + "y": 92.909 }, { "body": null, "index": 5, "isInternal": false, - "x": 67.64099999999999, + "x": 67.641, "y": 96.215 }, { @@ -1412,13 +1412,13 @@ "index": 8, "isInternal": false, "x": 40.416, - "y": 92.90899999999999 + "y": 92.909 }, { "body": null, "index": 9, "isInternal": false, - "x": 32.745000000000005, + "x": 32.745, "y": 87.613 }, { @@ -1447,14 +1447,14 @@ "index": 13, "isInternal": false, "x": 20, - "y": 54.007999999999996 + "y": 54.008 }, { "body": null, "index": 14, "isInternal": false, "x": 22.231, - "y": 44.956999999999994 + "y": 44.957 }, { "body": null, @@ -1467,22 +1467,22 @@ "body": null, "index": 16, "isInternal": false, - "x": 32.745000000000005, - "y": 29.724999999999998 + "x": 32.745, + "y": 29.725 }, { "body": null, "index": 17, "isInternal": false, "x": 40.416, - "y": 24.428999999999995 + "y": 24.429 }, { "body": null, "index": 18, "isInternal": false, "x": 49.133, - "y": 21.122999999999998 + "y": 21.123 }, { "body": null, @@ -1495,22 +1495,22 @@ "body": null, "index": 20, "isInternal": false, - "x": 67.64099999999999, - "y": 21.122999999999998 + "x": 67.641, + "y": 21.123 }, { "body": null, "index": 21, "isInternal": false, "x": 76.358, - "y": 24.428999999999995 + "y": 24.429 }, { "body": null, "index": 22, "isInternal": false, "x": 84.029, - "y": 29.724999999999998 + "y": 29.725 }, { "body": null, @@ -1524,21 +1524,21 @@ "index": 24, "isInternal": false, "x": 94.543, - "y": 44.956999999999994 + "y": 44.957 }, { "body": null, "index": 25, "isInternal": false, "x": 96.774, - "y": 54.007999999999996 + "y": 54.008 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3285.224192447692, + "area": 3285.22419, "axes": { "#": 147 }, @@ -1560,13 +1560,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 16260.276467540087, - "inverseInertia": 0.00006149956933366236, - "inverseMass": 0.3043932290218949, + "inertia": 16260.27647, + "inverseInertia": 0.00006, + "inverseMass": 0.30439, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.285224192447692, + "mass": 3.28522, "motion": 0, "parent": null, "position": { @@ -1622,8 +1622,8 @@ } }, { - "x": 215.44220987654322, - "y": 47.68411351165981 + "x": 215.44221, + "y": 47.68411 }, { "x": 96.774, @@ -1644,16 +1644,16 @@ "y": 0 }, { - "x": 156.1081049382716, - "y": 33.8420567558299 + "x": 156.1081, + "y": 33.84206 }, { "x": 0, "y": 0 }, { - "x": 156.1081049382716, - "y": 33.8420567558299 + "x": 156.1081, + "y": 33.84206 }, { "fillStyle": "#556270", @@ -1697,29 +1697,29 @@ "body": null, "index": 1, "isInternal": false, - "x": 215.44220987654322, + "x": 215.44221, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 215.44220987654322, - "y": 47.68411351165981 + "x": 215.44221, + "y": 47.68411 }, { "body": null, "index": 3, "isInternal": false, "x": 96.774, - "y": 47.68411351165981 + "y": 47.68411 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1082.552735856085, + "area": 1082.55274, "axes": { "#": 168 }, @@ -1741,13 +1741,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 830.3537019899098, - "inverseInertia": 0.0012043060657205955, - "inverseMass": 0.923742527156608, + "inertia": 830.3537, + "inverseInertia": 0.0012, + "inverseMass": 0.92374, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0825527358560851, + "mass": 1.08255, "motion": 0, "parent": null, "position": { @@ -1803,11 +1803,11 @@ } }, { - "x": 243.02622908093278, - "y": 59.24564900548697 + "x": 243.02623, + "y": 59.24565 }, { - "x": 215.44220987654322, + "x": 215.44221, "y": 20 }, { @@ -1825,16 +1825,16 @@ "y": 0 }, { - "x": 229.234219478738, - "y": 39.622824502743484 + "x": 229.23422, + "y": 39.62282 }, { "x": 0, "y": 0 }, { - "x": 229.234219478738, - "y": 39.622824502743484 + "x": 229.23422, + "y": 39.62282 }, { "fillStyle": "#556270", @@ -1871,29 +1871,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.44220987654322, + "x": 215.44221, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.02622908093278, + "x": 243.02623, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 243.02622908093278, - "y": 59.24564900548697 + "x": 243.02623, + "y": 59.24565 }, { "body": null, "index": 3, "isInternal": false, - "x": 215.44220987654322, - "y": 59.24564900548697 + "x": 215.44221, + "y": 59.24565 }, { "angle": 0, @@ -1922,13 +1922,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 10263.978582589441, - "inverseInertia": 0.00009742810665021045, - "inverseMass": 0.2548569620397691, + "inertia": 10263.97858, + "inverseInertia": 0.0001, + "inverseMass": 0.25486, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.9237696, + "mass": 3.92377, "motion": 0, "parent": null, "position": { @@ -1984,11 +1984,11 @@ } }, { - "x": 305.6662290809328, + "x": 305.66623, "y": 82.64 }, { - "x": 243.0262290809328, + "x": 243.02623, "y": 20 }, { @@ -2006,7 +2006,7 @@ "y": 0 }, { - "x": 274.3462290809328, + "x": 274.34623, "y": 51.32 }, { @@ -2014,7 +2014,7 @@ "y": 0 }, { - "x": 274.3462290809328, + "x": 274.34623, "y": 51.32 }, { @@ -2052,28 +2052,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 305.6662290809328, + "x": 305.66623, "y": 82.64 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.0262290809328, + "x": 243.02623, "y": 82.64 }, { "body": null, "index": 2, "isInternal": false, - "x": 243.0262290809328, + "x": 243.02623, "y": 20 }, { "body": null, "index": 3, "isInternal": false, - "x": 305.6662290809328, + "x": 305.66623, "y": 20 }, { @@ -2081,7 +2081,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4997.272746939517, + "area": 4997.27275, "axes": { "#": 210 }, @@ -2102,13 +2102,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 15946.952308478234, - "inverseInertia": 0.00006270790685618014, - "inverseMass": 0.20010914965816717, + "inertia": 15946.95231, + "inverseInertia": 0.00006, + "inverseMass": 0.20011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.997272746939517, + "mass": 4.99727, "motion": 0, "parent": null, "position": { @@ -2226,116 +2226,116 @@ } ], { - "x": 0.9924760554349678, - "y": 0.1224388802147695 + "x": 0.99248, + "y": 0.12244 }, { - "x": 0.9329621121022841, - "y": 0.3599745787991772 + "x": 0.93296, + "y": 0.35997 }, { - "x": 0.8175029860449042, - "y": 0.5759243594498024 + "x": 0.8175, + "y": 0.57592 }, { - "x": 0.6269579598581204, - "y": 0.7790530896996324 + "x": 0.62696, + "y": 0.77905 }, { - "x": 0.5230761169267524, - "y": 0.8522859707286224 + "x": 0.52308, + "y": 0.85229 }, { - "x": 0.30025322413582944, - "y": 0.9538595291739971 + "x": 0.30025, + "y": 0.95386 }, { - "x": 0.05942497739698501, - "y": 0.9982327744876783 + "x": 0.05942, + "y": 0.99823 }, { - "x": -0.2181973087050441, - "y": 0.9759046748908808 + "x": -0.2182, + "y": 0.9759 }, { - "x": -0.340219004107252, - "y": 0.9403462283883897 + "x": -0.34022, + "y": 0.94035 }, { - "x": -0.5585577794349429, - "y": 0.8294656153408083 + "x": -0.55856, + "y": 0.82947 }, { - "x": -0.7434018939882578, - "y": 0.6688449925167049 + "x": -0.7434, + "y": 0.66884 }, { - "x": -0.8990380556862142, - "y": 0.4378704996091327 + "x": -0.89904, + "y": 0.43787 }, { - "x": -0.947315604262863, - "y": 0.3203016483255851 + "x": -0.94732, + "y": 0.3203 }, { - "x": -0.9967572247557309, - "y": 0.08046760153784385 + "x": -0.99676, + "y": 0.08047 }, { - "x": -0.98642845392417, - "y": -0.1641916724099355 + "x": -0.98643, + "y": -0.16419 }, { - "x": -0.9028867965324314, - "y": -0.4298783928594269 + "x": -0.90289, + "y": -0.42988 }, { - "x": -0.8410675239064238, - "y": -0.5409301435767072 + "x": -0.84107, + "y": -0.54093 }, { - "x": -0.684383219840347, - "y": -0.7291224920416043 + "x": -0.68438, + "y": -0.72912 }, { - "x": -0.4866589649720178, - "y": -0.8735920396915052 + "x": -0.48666, + "y": -0.87359 }, { - "x": -0.2268457523351642, - "y": -0.9739306980722465 + "x": -0.22685, + "y": -0.97393 }, { - "x": -0.10147762418942655, - "y": -0.9948378218528232 + "x": -0.10148, + "y": -0.99484 }, { - "x": 0.14334995646771803, - "y": -0.9896720618370024 + "x": 0.14335, + "y": -0.98967 }, { - "x": 0.37958123741135696, - "y": -0.9251584103305028 + "x": 0.37958, + "y": -0.92516 }, { - "x": 0.6200225840150356, - "y": -0.7845839632004457 + "x": 0.62002, + "y": -0.78458 }, { - "x": 0.7145300645280549, - "y": -0.6996047361800329 + "x": 0.71453, + "y": -0.6996 }, { - "x": 0.8631352814186796, - "y": -0.5049727576516347 + "x": 0.86314, + "y": -0.50497 }, { - "x": 0.9599824896949003, - "y": -0.2800600283496034 + "x": 0.95998, + "y": -0.28006 }, { - "x": 0.9999901643865531, - "y": -0.004435214781111542 + "x": 0.99999, + "y": -0.00444 }, { "max": { @@ -2346,12 +2346,12 @@ } }, { - "x": 384.53447413016573, - "y": 101.9717452787574 + "x": 384.53447, + "y": 101.97175 }, { - "x": 304.09615416491675, - "y": 19.991102139699215 + "x": 304.09615, + "y": 19.9911 }, { "category": 1, @@ -2368,16 +2368,16 @@ "y": 0 }, { - "x": 345.8853890635573, - "y": 60.99032156952909 + "x": 345.88539, + "y": 60.99032 }, { "x": 0, "y": 0 }, { - "x": 345.8853890635573, - "y": 60.99032156952909 + "x": 345.88539, + "y": 60.99032 }, { "fillStyle": "#C44D58", @@ -2486,204 +2486,204 @@ "body": null, "index": 0, "isInternal": false, - "x": 384.53447413016573, - "y": 74.78732248926119 + "x": 384.53447, + "y": 74.78732 }, { "body": null, "index": 1, "isInternal": false, - "x": 384.2346485424008, - "y": 77.21767562660979 + "x": 384.23465, + "y": 77.21768 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.3531508557217, - "y": 79.502292352382 + "x": 383.35315, + "y": 79.50229 }, { "body": null, "index": 3, "isInternal": false, - "x": 381.94284018253285, - "y": 81.50417535605338 + "x": 381.94284, + "y": 81.50418 }, { "body": null, "index": 4, "isInternal": false, - "x": 359.1961172290219, - "y": 99.81003821052148 + "x": 359.19612, + "y": 99.81004 }, { "body": null, "index": 5, "isInternal": false, - "x": 357.1090216821008, - "y": 101.09095784528364 + "x": 357.10902, + "y": 101.09096 }, { "body": null, "index": 6, "isInternal": false, - "x": 354.77319070036424, - "y": 101.8262241626523 + "x": 354.77319, + "y": 101.82622 }, { "body": null, "index": 7, "isInternal": false, - "x": 352.3286975959631, - "y": 101.9717452787574 + "x": 352.3287, + "y": 101.97175 }, { "body": null, "index": 8, "isInternal": false, - "x": 323.83440250851476, - "y": 95.60085818138411 + "x": 323.8344, + "y": 95.60086 }, { "body": null, "index": 9, "isInternal": false, - "x": 321.5316804226027, - "y": 94.76772907302637 + "x": 321.53168, + "y": 94.76773 }, { "body": null, "index": 10, "isInternal": false, - "x": 319.5004830462667, - "y": 93.39993145111511 + "x": 319.50048, + "y": 93.39993 }, { "body": null, "index": 11, "isInternal": false, - "x": 317.86261383403036, - "y": 91.57948712080766 + "x": 317.86261, + "y": 91.57949 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.07754668862725, - "y": 65.32911876194066 + "x": 305.07755, + "y": 65.32912 }, { "body": null, "index": 13, "isInternal": false, - "x": 304.2932009757114, - "y": 63.009358820441335 + "x": 304.2932, + "y": 63.00936 }, { "body": null, "index": 14, "isInternal": false, - "x": 304.09615416491675, - "y": 60.568527622281536 + "x": 304.09615, + "y": 60.56853 }, { "body": null, "index": 15, "isInternal": false, - "x": 304.49822213748087, - "y": 58.152989229087865 + "x": 304.49822, + "y": 58.15299 }, { "body": null, "index": 16, "isInternal": false, - "x": 317.0499250855058, - "y": 31.790261876390264 + "x": 317.04993, + "y": 31.79026 }, { "body": null, "index": 17, "isInternal": false, - "x": 318.3745561107022, - "y": 29.730653718699234 + "x": 318.37456, + "y": 29.73065 }, { "body": null, "index": 18, "isInternal": false, - "x": 320.16003300747985, - "y": 28.05473445834879 + "x": 320.16003, + "y": 28.05473 }, { "body": null, "index": 19, "isInternal": false, - "x": 322.2992872769655, - "y": 26.86300282470488 + "x": 322.29929, + "y": 26.863 }, { "body": null, "index": 20, "isInternal": false, - "x": 350.73593504578605, - "y": 20.23960264872065 + "x": 350.73594, + "y": 20.2396 }, { "body": null, "index": 21, "isInternal": false, - "x": 353.1721145198219, - "y": 19.991102139699215 + "x": 353.17211, + "y": 19.9911 }, { "body": null, "index": 22, "isInternal": false, - "x": 355.5956439736816, - "y": 20.34214048371811 + "x": 355.59564, + "y": 20.34214 }, { "body": null, "index": 23, "isInternal": false, - "x": 357.86119106082504, - "y": 21.27166688389901 + "x": 357.86119, + "y": 21.27167 }, { "body": null, "index": 24, "isInternal": false, - "x": 380.7694257245824, - "y": 39.37504844360711 + "x": 380.76943, + "y": 39.37505 }, { "body": null, "index": 25, "isInternal": false, - "x": 382.4826021343991, - "y": 41.12477366321916 + "x": 382.4826, + "y": 41.12477 }, { "body": null, "index": 26, "isInternal": false, - "x": 383.7191681141157, - "y": 43.238400009834436 + "x": 383.71917, + "y": 43.2384 }, { "body": null, "index": 27, "isInternal": false, - "x": 384.4049728393965, - "y": 45.58918363111506 + "x": 384.40497, + "y": 45.58918 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2424.7221285720684, + "area": 2424.72213, "axes": { "#": 281 }, @@ -2705,13 +2705,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 6421.581536792131, - "inverseInertia": 0.00015572487778447566, - "inverseMass": 0.41241839145869685, + "inertia": 6421.58154, + "inverseInertia": 0.00016, + "inverseMass": 0.41242, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.4247221285720686, + "mass": 2.42472, "motion": 0, "parent": null, "position": { @@ -2767,11 +2767,11 @@ } }, { - "x": 468.9105029367501, - "y": 48.73709705075446 + "x": 468.9105, + "y": 48.7371 }, { - "x": 384.53447413016573, + "x": 384.53447, "y": 20 }, { @@ -2789,16 +2789,16 @@ "y": 0 }, { - "x": 426.7224885334579, - "y": 34.36854852537723 + "x": 426.72249, + "y": 34.36855 }, { "x": 0, "y": 0 }, { - "x": 426.7224885334579, - "y": 34.36854852537723 + "x": 426.72249, + "y": 34.36855 }, { "fillStyle": "#C44D58", @@ -2835,36 +2835,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 384.53447413016573, + "x": 384.53447, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 468.9105029367501, + "x": 468.9105, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 468.9105029367501, - "y": 48.73709705075446 + "x": 468.9105, + "y": 48.7371 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.53447413016573, - "y": 48.73709705075446 + "x": 384.53447, + "y": 48.7371 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3062.135108689158, + "area": 3062.13511, "axes": { "#": 302 }, @@ -2886,13 +2886,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 12902.457783405109, - "inverseInertia": 0.00007750461321300974, - "inverseMass": 0.3265695224101594, + "inertia": 12902.45778, + "inverseInertia": 0.00008, + "inverseMass": 0.32657, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.062135108689158, + "mass": 3.06214, "motion": 0, "parent": null, "position": { @@ -2948,11 +2948,11 @@ } }, { - "x": 577.7650982728269, - "y": 48.13050840192044 + "x": 577.7651, + "y": 48.13051 }, { - "x": 468.9105029367501, + "x": 468.9105, "y": 20 }, { @@ -2970,16 +2970,16 @@ "y": 0 }, { - "x": 523.3378006047885, - "y": 34.06525420096022 + "x": 523.3378, + "y": 34.06525 }, { "x": 0, "y": 0 }, { - "x": 523.3378006047885, - "y": 34.06525420096022 + "x": 523.3378, + "y": 34.06525 }, { "fillStyle": "#C7F464", @@ -3016,36 +3016,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 468.9105029367501, + "x": 468.9105, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 577.7650982728269, + "x": 577.7651, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 577.7650982728269, - "y": 48.13050840192044 + "x": 577.7651, + "y": 48.13051 }, { "body": null, "index": 3, "isInternal": false, - "x": 468.9105029367501, - "y": 48.13050840192044 + "x": 468.9105, + "y": 48.13051 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1378.042832459846, + "area": 1378.04283, "axes": { "#": 323 }, @@ -3067,13 +3067,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1458.976407551466, - "inverseInertia": 0.0006854120428706963, - "inverseMass": 0.7256668489868136, + "inertia": 1458.97641, + "inverseInertia": 0.00069, + "inverseMass": 0.72567, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3780428324598462, + "mass": 1.37804, "motion": 0, "parent": null, "position": { @@ -3129,11 +3129,11 @@ } }, { - "x": 606.0274868187803, - "y": 68.75889489026063 + "x": 606.02749, + "y": 68.75889 }, { - "x": 577.7650982728269, + "x": 577.7651, "y": 20 }, { @@ -3151,16 +3151,16 @@ "y": 0 }, { - "x": 591.8962925458036, - "y": 44.37944744513032 + "x": 591.89629, + "y": 44.37945 }, { "x": 0, "y": 0 }, { - "x": 591.8962925458036, - "y": 44.37944744513032 + "x": 591.89629, + "y": 44.37945 }, { "fillStyle": "#C7F464", @@ -3197,36 +3197,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 577.7650982728269, + "x": 577.7651, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 606.0274868187803, + "x": 606.02749, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 606.0274868187803, - "y": 68.75889489026063 + "x": 606.02749, + "y": 68.75889 }, { "body": null, "index": 3, "isInternal": false, - "x": 577.7650982728269, - "y": 68.75889489026063 + "x": 577.7651, + "y": 68.75889 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4586.778272, + "area": 4586.77827, "axes": { "#": 344 }, @@ -3234,7 +3234,7 @@ "#": 358 }, "chamfer": "", - "circleRadius": 38.39666923868313, + "circleRadius": 38.39667, "collisionFilter": { "#": 361 }, @@ -3249,13 +3249,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 13393.80286068791, - "inverseInertia": 0.00007466139455696301, - "inverseMass": 0.21801795087948828, + "inertia": 13393.80286, + "inverseInertia": 0.00007, + "inverseMass": 0.21802, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.586778271999999, + "mass": 4.58678, "motion": 0, "parent": null, "position": { @@ -3328,52 +3328,52 @@ } ], { - "x": -0.9709504274119591, - "y": -0.23928072949682755 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.885437915675226, - "y": -0.4647576760901441 + "x": -0.88544, + "y": -0.46476 }, { - "x": -0.7484931813297513, - "y": -0.6631424865765035 + "x": -0.74849, + "y": -0.66314 }, { - "x": -0.5681140797141272, - "y": -0.8229498116109939 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.3545663008318936, - "y": -0.935030875594163 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12056365736134667, - "y": -0.9927055981123789 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056365736134667, - "y": -0.9927055981123789 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545663008318936, - "y": -0.935030875594163 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5681140797141272, - "y": -0.8229498116109939 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484931813297513, - "y": -0.6631424865765035 + "x": 0.74849, + "y": -0.66314 }, { - "x": 0.885437915675226, - "y": -0.4647576760901441 + "x": 0.88544, + "y": -0.46476 }, { - "x": 0.9709504274119591, - "y": -0.23928072949682755 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -3388,11 +3388,11 @@ } }, { - "x": 682.2614868187802, + "x": 682.26149, "y": 96.794 }, { - "x": 606.0274868187803, + "x": 606.02749, "y": 20 }, { @@ -3410,7 +3410,7 @@ "y": 0 }, { - "x": 644.1444868187803, + "x": 644.14449, "y": 58.397 }, { @@ -3418,7 +3418,7 @@ "y": 0 }, { - "x": 644.1444868187803, + "x": 644.14449, "y": 58.397 }, { @@ -3522,182 +3522,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 682.2614868187802, + "x": 682.26149, "y": 63.025 }, { "body": null, "index": 1, "isInternal": false, - "x": 680.0464868187803, + "x": 680.04649, "y": 72.013 }, { "body": null, "index": 2, "isInternal": false, - "x": 675.7444868187803, + "x": 675.74449, "y": 80.209 }, { "body": null, "index": 3, "isInternal": false, - "x": 669.6064868187802, + "x": 669.60649, "y": 87.137 }, { "body": null, "index": 4, "isInternal": false, - "x": 661.9884868187803, + "x": 661.98849, "y": 92.396 }, { "body": null, "index": 5, "isInternal": false, - "x": 653.3334868187802, + "x": 653.33349, "y": 95.678 }, { "body": null, "index": 6, "isInternal": false, - "x": 644.1444868187803, + "x": 644.14449, "y": 96.794 }, { "body": null, "index": 7, "isInternal": false, - "x": 634.9554868187803, + "x": 634.95549, "y": 95.678 }, { "body": null, "index": 8, "isInternal": false, - "x": 626.3004868187802, + "x": 626.30049, "y": 92.396 }, { "body": null, "index": 9, "isInternal": false, - "x": 618.6824868187803, + "x": 618.68249, "y": 87.137 }, { "body": null, "index": 10, "isInternal": false, - "x": 612.5444868187802, + "x": 612.54449, "y": 80.209 }, { "body": null, "index": 11, "isInternal": false, - "x": 608.2424868187802, + "x": 608.24249, "y": 72.013 }, { "body": null, "index": 12, "isInternal": false, - "x": 606.0274868187803, + "x": 606.02749, "y": 63.025 }, { "body": null, "index": 13, "isInternal": false, - "x": 606.0274868187803, + "x": 606.02749, "y": 53.769 }, { "body": null, "index": 14, "isInternal": false, - "x": 608.2424868187802, + "x": 608.24249, "y": 44.781 }, { "body": null, "index": 15, "isInternal": false, - "x": 612.5444868187802, - "y": 36.584999999999994 + "x": 612.54449, + "y": 36.585 }, { "body": null, "index": 16, "isInternal": false, - "x": 618.6824868187803, + "x": 618.68249, "y": 29.657 }, { "body": null, "index": 17, "isInternal": false, - "x": 626.3004868187802, - "y": 24.397999999999996 + "x": 626.30049, + "y": 24.398 }, { "body": null, "index": 18, "isInternal": false, - "x": 634.9554868187803, + "x": 634.95549, "y": 21.116 }, { "body": null, "index": 19, "isInternal": false, - "x": 644.1444868187803, + "x": 644.14449, "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 653.3334868187802, + "x": 653.33349, "y": 21.116 }, { "body": null, "index": 21, "isInternal": false, - "x": 661.9884868187803, - "y": 24.397999999999996 + "x": 661.98849, + "y": 24.398 }, { "body": null, "index": 22, "isInternal": false, - "x": 669.6064868187802, + "x": 669.60649, "y": 29.657 }, { "body": null, "index": 23, "isInternal": false, - "x": 675.7444868187803, - "y": 36.584999999999994 + "x": 675.74449, + "y": 36.585 }, { "body": null, "index": 24, "isInternal": false, - "x": 680.0464868187803, + "x": 680.04649, "y": 44.781 }, { "body": null, "index": 25, "isInternal": false, - "x": 682.2614868187802, + "x": 682.26149, "y": 53.769 }, { @@ -3705,7 +3705,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1977.449427607814, + "area": 1977.44943, "axes": { "#": 398 }, @@ -3727,13 +3727,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 2674.507793468318, - "inverseInertia": 0.0003739005743195812, - "inverseMass": 0.5057019340361756, + "inertia": 2674.50779, + "inverseInertia": 0.00037, + "inverseMass": 0.5057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.977449427607814, + "mass": 1.97745, "motion": 0, "parent": null, "position": { @@ -3789,12 +3789,12 @@ } }, { - "x": 732.0824101726896, - "y": 59.69114368998629 + "x": 732.08241, + "y": 59.69114 }, { - "x": 682.2614868187802, - "y": 20.000000000000004 + "x": 682.26149, + "y": 20 }, { "category": 1, @@ -3811,16 +3811,16 @@ "y": 0 }, { - "x": 707.1719484957349, - "y": 39.845571844993145 + "x": 707.17195, + "y": 39.84557 }, { "x": 0, "y": 0 }, { - "x": 707.1719484957349, - "y": 39.845571844993145 + "x": 707.17195, + "y": 39.84557 }, { "fillStyle": "#C44D58", @@ -3857,36 +3857,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 682.2614868187802, - "y": 20.000000000000004 + "x": 682.26149, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 732.0824101726896, - "y": 20.000000000000004 + "x": 732.08241, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 732.0824101726896, - "y": 59.69114368998629 + "x": 732.08241, + "y": 59.69114 }, { "body": null, "index": 3, "isInternal": false, - "x": 682.2614868187802, - "y": 59.69114368998629 + "x": 682.26149, + "y": 59.69114 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2209.188004, + "area": 2209.188, "axes": { "#": 419 }, @@ -3908,13 +3908,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 3253.6744246783364, - "inverseInertia": 0.00030734482602661194, - "inverseMass": 0.4526550018329721, + "inertia": 3253.67442, + "inverseInertia": 0.00031, + "inverseMass": 0.45266, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.209188004, + "mass": 2.20919, "motion": 0, "parent": null, "position": { @@ -3970,12 +3970,12 @@ } }, { - "x": 779.0844101726896, - "y": 67.00200000000001 + "x": 779.08441, + "y": 67.002 }, { - "x": 732.0824101726896, - "y": 20.000000000000004 + "x": 732.08241, + "y": 20 }, { "category": 1, @@ -3992,16 +3992,16 @@ "y": 0 }, { - "x": 755.5834101726896, - "y": 43.501000000000005 + "x": 755.58341, + "y": 43.501 }, { "x": 0, "y": 0 }, { - "x": 755.5834101726896, - "y": 43.501000000000005 + "x": 755.58341, + "y": 43.501 }, { "fillStyle": "#4ECDC4", @@ -4038,36 +4038,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 779.0844101726896, - "y": 67.00200000000001 + "x": 779.08441, + "y": 67.002 }, { "body": null, "index": 1, "isInternal": false, - "x": 732.0824101726896, - "y": 67.00200000000001 + "x": 732.08241, + "y": 67.002 }, { "body": null, "index": 2, "isInternal": false, - "x": 732.0824101726896, - "y": 20.000000000000004 + "x": 732.08241, + "y": 20 }, { "body": null, "index": 3, "isInternal": false, - "x": 779.0844101726896, - "y": 20.000000000000004 + "x": 779.08441, + "y": 20 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5068.594224000001, + "area": 5068.59422, "axes": { "#": 440 }, @@ -4075,7 +4075,7 @@ "#": 454 }, "chamfer": "", - "circleRadius": 40.363404492455416, + "circleRadius": 40.3634, "collisionFilter": { "#": 457 }, @@ -4090,13 +4090,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 16355.486166242355, - "inverseInertia": 0.00006114156374415793, - "inverseMass": 0.19729336297329916, + "inertia": 16355.48617, + "inverseInertia": 0.00006, + "inverseMass": 0.19729, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.068594224000002, + "mass": 5.06859, "motion": 0, "parent": null, "position": { @@ -4169,52 +4169,52 @@ } ], { - "x": -0.9709351990101542, - "y": -0.23934251465862083 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854571098935062, - "y": -0.4647211061906261 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7485196743273241, - "y": -0.6631125825566249 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568097926977753, - "y": -0.8229609622354999 + "x": -0.5681, + "y": -0.82296 }, { - "x": -0.35465733215779727, - "y": -0.9349963511943317 + "x": -0.35466, + "y": -0.935 }, { - "x": -0.12044185194079757, - "y": -0.992720383744119 + "x": -0.12044, + "y": -0.99272 }, { - "x": 0.12044185194079757, - "y": -0.992720383744119 + "x": 0.12044, + "y": -0.99272 }, { - "x": 0.35465733215779727, - "y": -0.9349963511943317 + "x": 0.35466, + "y": -0.935 }, { - "x": 0.568097926977753, - "y": -0.8229609622354999 + "x": 0.5681, + "y": -0.82296 }, { - "x": 0.7485196743273241, - "y": -0.6631125825566249 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854571098935062, - "y": -0.4647211061906261 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709351990101542, - "y": -0.23934251465862083 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -4229,11 +4229,11 @@ } }, { - "x": 859.2224101726895, + "x": 859.22241, "y": 100.726 }, { - "x": 779.0844101726896, + "x": 779.08441, "y": 20 }, { @@ -4251,7 +4251,7 @@ "y": 0 }, { - "x": 819.1534101726895, + "x": 819.15341, "y": 60.363 }, { @@ -4259,7 +4259,7 @@ "y": 0 }, { - "x": 819.1534101726895, + "x": 819.15341, "y": 60.363 }, { @@ -4363,182 +4363,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 859.2224101726895, - "y": 65.22800000000001 + "x": 859.22241, + "y": 65.228 }, { "body": null, "index": 1, "isInternal": false, - "x": 856.8934101726895, + "x": 856.89341, "y": 74.676 }, { "body": null, "index": 2, "isInternal": false, - "x": 852.3714101726895, + "x": 852.37141, "y": 83.292 }, { "body": null, "index": 3, "isInternal": false, - "x": 845.9194101726895, + "x": 845.91941, "y": 90.575 }, { "body": null, "index": 4, "isInternal": false, - "x": 837.9114101726896, - "y": 96.10300000000001 + "x": 837.91141, + "y": 96.103 }, { "body": null, "index": 5, "isInternal": false, - "x": 828.8134101726895, + "x": 828.81341, "y": 99.554 }, { "body": null, "index": 6, "isInternal": false, - "x": 819.1534101726895, + "x": 819.15341, "y": 100.726 }, { "body": null, "index": 7, "isInternal": false, - "x": 809.4934101726896, + "x": 809.49341, "y": 99.554 }, { "body": null, "index": 8, "isInternal": false, - "x": 800.3954101726895, - "y": 96.10300000000001 + "x": 800.39541, + "y": 96.103 }, { "body": null, "index": 9, "isInternal": false, - "x": 792.3874101726896, + "x": 792.38741, "y": 90.575 }, { "body": null, "index": 10, "isInternal": false, - "x": 785.9354101726896, + "x": 785.93541, "y": 83.292 }, { "body": null, "index": 11, "isInternal": false, - "x": 781.4134101726895, + "x": 781.41341, "y": 74.676 }, { "body": null, "index": 12, "isInternal": false, - "x": 779.0844101726896, - "y": 65.22800000000001 + "x": 779.08441, + "y": 65.228 }, { "body": null, "index": 13, "isInternal": false, - "x": 779.0844101726896, + "x": 779.08441, "y": 55.498 }, { "body": null, "index": 14, "isInternal": false, - "x": 781.4134101726895, + "x": 781.41341, "y": 46.05 }, { "body": null, "index": 15, "isInternal": false, - "x": 785.9354101726896, + "x": 785.93541, "y": 37.434 }, { "body": null, "index": 16, "isInternal": false, - "x": 792.3874101726896, + "x": 792.38741, "y": 30.151 }, { "body": null, "index": 17, "isInternal": false, - "x": 800.3954101726895, - "y": 24.622999999999998 + "x": 800.39541, + "y": 24.623 }, { "body": null, "index": 18, "isInternal": false, - "x": 809.4934101726896, - "y": 21.171999999999997 + "x": 809.49341, + "y": 21.172 }, { "body": null, "index": 19, "isInternal": false, - "x": 819.1534101726895, + "x": 819.15341, "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 828.8134101726895, - "y": 21.171999999999997 + "x": 828.81341, + "y": 21.172 }, { "body": null, "index": 21, "isInternal": false, - "x": 837.9114101726896, - "y": 24.622999999999998 + "x": 837.91141, + "y": 24.623 }, { "body": null, "index": 22, "isInternal": false, - "x": 845.9194101726895, + "x": 845.91941, "y": 30.151 }, { "body": null, "index": 23, "isInternal": false, - "x": 852.3714101726895, + "x": 852.37141, "y": 37.434 }, { "body": null, "index": 24, "isInternal": false, - "x": 856.8934101726895, + "x": 856.89341, "y": 46.05 }, { "body": null, "index": 25, "isInternal": false, - "x": 859.2224101726895, + "x": 859.22241, "y": 55.498 }, { @@ -4546,7 +4546,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 703.4621424265246, + "area": 703.46214, "axes": { "#": 494 }, @@ -4567,13 +4567,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 321.3570390953915, - "inverseInertia": 0.003111803627563174, - "inverseMass": 1.4215406056544801, + "inertia": 321.35704, + "inverseInertia": 0.00311, + "inverseMass": 1.42154, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7034621424265246, + "mass": 0.70346, "motion": 0, "parent": null, "position": { @@ -4631,36 +4631,36 @@ } ], { - "x": 0.9770171932916059, - "y": 0.21316051232016 + "x": 0.97702, + "y": 0.21316 }, { - "x": 0.7994446935362444, - "y": 0.6007396956891898 + "x": 0.79944, + "y": 0.60074 }, { - "x": 0.4765734276771622, - "y": 0.8791346700204928 + "x": 0.47657, + "y": 0.87913 }, { - "x": 0.029057800211286955, - "y": 0.9995777329687177 + "x": 0.02906, + "y": 0.99958 }, { - "x": -0.21316051232015995, - "y": 0.9770171932916059 + "x": -0.21316, + "y": 0.97702 }, { - "x": -0.6007396956891901, - "y": 0.7994446935362443 + "x": -0.60074, + "y": 0.79944 }, { - "x": -0.8791346700204927, - "y": 0.4765734276771623 + "x": -0.87913, + "y": 0.47657 }, { - "x": -0.9990185135275219, - "y": 0.04429457787653578 + "x": -0.99902, + "y": 0.04429 }, { "max": { @@ -4671,11 +4671,11 @@ } }, { - "x": 890.0224144593835, - "y": 46.12289951989026 + "x": 890.02241, + "y": 46.1229 }, { - "x": 859.2224101726895, + "x": 859.22241, "y": 20 }, { @@ -4693,16 +4693,16 @@ "y": 0 }, { - "x": 874.6224123160365, - "y": 33.061449759945134 + "x": 874.62241, + "y": 33.06145 }, { "x": 0, "y": 0 }, { - "x": 874.6224123160365, - "y": 33.061449759945134 + "x": 874.62241, + "y": 33.06145 }, { "fillStyle": "#C44D58", @@ -4775,120 +4775,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 859.2224101726895, + "x": 859.22241, "y": 30 }, { "body": null, "index": 1, "isInternal": false, - "x": 860.1311582529413, - "y": 25.834770290647132 + "x": 860.13116, + "y": 25.83477 }, { "body": null, "index": 2, "isInternal": false, - "x": 862.6922378790246, - "y": 22.42656948173075 + "x": 862.69224, + "y": 22.42657 }, { "body": null, "index": 3, "isInternal": false, - "x": 866.4401738122243, - "y": 20.394836761693977 + "x": 866.44017, + "y": 20.39484 }, { "body": null, "index": 4, "isInternal": false, - "x": 880.0224144593835, + "x": 880.02241, "y": 20 }, { "body": null, "index": 5, "isInternal": false, - "x": 884.1876441687364, - "y": 20.90874808025186 + "x": 884.18764, + "y": 20.90875 }, { "body": null, "index": 6, "isInternal": false, - "x": 887.5958449776527, - "y": 23.469827706335156 + "x": 887.59584, + "y": 23.46983 }, { "body": null, "index": 7, "isInternal": false, - "x": 889.6275776976896, - "y": 27.217763639534816 + "x": 889.62758, + "y": 27.21776 }, { "body": null, "index": 8, "isInternal": false, - "x": 890.0224144593835, - "y": 36.12289951989026 + "x": 890.02241, + "y": 36.1229 }, { "body": null, "index": 9, "isInternal": false, - "x": 889.1136663791317, - "y": 40.288129229243125 + "x": 889.11367, + "y": 40.28813 }, { "body": null, "index": 10, "isInternal": false, - "x": 886.5525867530484, - "y": 43.696330038159516 + "x": 886.55259, + "y": 43.69633 }, { "body": null, "index": 11, "isInternal": false, - "x": 882.8046508198487, - "y": 45.72806275819629 + "x": 882.80465, + "y": 45.72806 }, { "body": null, "index": 12, "isInternal": false, - "x": 869.2224101726895, - "y": 46.12289951989026 + "x": 869.22241, + "y": 46.1229 }, { "body": null, "index": 13, "isInternal": false, - "x": 865.0571804633365, - "y": 45.2141514396384 + "x": 865.05718, + "y": 45.21415 }, { "body": null, "index": 14, "isInternal": false, - "x": 861.6489796544201, - "y": 42.6530718135551 + "x": 861.64898, + "y": 42.65307 }, { "body": null, "index": 15, "isInternal": false, - "x": 859.6172469343834, - "y": 38.905135880355445 + "x": 859.61725, + "y": 38.90514 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3272.2976160000003, + "area": 3272.29762, "axes": { "#": 533 }, @@ -4910,13 +4910,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 7138.621125119525, - "inverseInertia": 0.000140083075214789, - "inverseMass": 0.30559567537820187, + "inertia": 7138.62113, + "inverseInertia": 0.00014, + "inverseMass": 0.3056, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.2722976160000004, + "mass": 3.2723, "motion": 0, "parent": null, "position": { @@ -4972,12 +4972,12 @@ } }, { - "x": 947.2264144593835, - "y": 77.20400000000001 + "x": 947.22641, + "y": 77.204 }, { - "x": 890.0224144593835, - "y": 20.000000000000004 + "x": 890.02241, + "y": 20 }, { "category": 1, @@ -4994,16 +4994,16 @@ "y": 0 }, { - "x": 918.6244144593835, - "y": 48.602000000000004 + "x": 918.62441, + "y": 48.602 }, { "x": 0, "y": 0 }, { - "x": 918.6244144593835, - "y": 48.602000000000004 + "x": 918.62441, + "y": 48.602 }, { "fillStyle": "#556270", @@ -5040,36 +5040,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 947.2264144593835, - "y": 77.20400000000001 + "x": 947.22641, + "y": 77.204 }, { "body": null, "index": 1, "isInternal": false, - "x": 890.0224144593835, - "y": 77.20400000000001 + "x": 890.02241, + "y": 77.204 }, { "body": null, "index": 2, "isInternal": false, - "x": 890.0224144593835, - "y": 20.000000000000004 + "x": 890.02241, + "y": 20 }, { "body": null, "index": 3, "isInternal": false, - "x": 947.2264144593835, - "y": 20.000000000000004 + "x": 947.22641, + "y": 20 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2280.8721126630826, + "area": 2280.87211, "axes": { "#": 554 }, @@ -5091,13 +5091,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 5951.840994899971, - "inverseInertia": 0.0001680152411425108, - "inverseMass": 0.4384287897809527, + "inertia": 5951.84099, + "inverseInertia": 0.00017, + "inverseMass": 0.43843, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.2808721126630824, + "mass": 2.28087, "motion": 0, "parent": null, "position": { @@ -5153,11 +5153,11 @@ } }, { - "x": 1031.4590962152133, - "y": 47.07823216735254 + "x": 1031.4591, + "y": 47.07823 }, { - "x": 947.2264144593835, + "x": 947.22641, "y": 20 }, { @@ -5175,16 +5175,16 @@ "y": 0 }, { - "x": 989.3427553372984, - "y": 33.53911608367627 + "x": 989.34276, + "y": 33.53912 }, { "x": 0, "y": 0 }, { - "x": 989.3427553372984, - "y": 33.53911608367627 + "x": 989.34276, + "y": 33.53912 }, { "fillStyle": "#556270", @@ -5221,36 +5221,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 947.2264144593835, + "x": 947.22641, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 1031.4590962152133, + "x": 1031.4591, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 1031.4590962152133, - "y": 47.07823216735254 + "x": 1031.4591, + "y": 47.07823 }, { "body": null, "index": 3, "isInternal": false, - "x": 947.2264144593835, - "y": 47.07823216735254 + "x": 947.22641, + "y": 47.07823 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 7619.538811999999, + "area": 7619.53881, "axes": { "#": 575 }, @@ -5258,7 +5258,7 @@ "#": 589 }, "chamfer": "", - "circleRadius": 49.48881172839506, + "circleRadius": 49.48881, "collisionFilter": { "#": 592 }, @@ -5273,13 +5273,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 36961.17597180369, - "inverseInertia": 0.00002705541622276474, - "inverseMass": 0.13124153897938043, + "inertia": 36961.17597, + "inverseInertia": 0.00003, + "inverseMass": 0.13124, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.619538811999999, + "mass": 7.61954, "motion": 0, "parent": null, "position": { @@ -5352,52 +5352,52 @@ } ], { - "x": -0.9709457040416061, - "y": -0.23929989511729818 + "x": -0.97095, + "y": -0.2393 }, { - "x": -0.8854358451601851, - "y": -0.464761620732036 + "x": -0.88544, + "y": -0.46476 }, { - "x": -0.7485227991107622, - "y": -0.6631090552928601 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.5680717815464582, - "y": -0.8229790100668625 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3546112819461554, - "y": -0.9350138173933603 + "x": -0.35461, + "y": -0.93501 }, { - "x": -0.12053663504574892, - "y": -0.992708879587489 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12053663504574892, - "y": -0.992708879587489 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.3546112819461554, - "y": -0.9350138173933603 + "x": 0.35461, + "y": -0.93501 }, { - "x": 0.5680717815464582, - "y": -0.8229790100668625 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485227991107622, - "y": -0.6631090552928601 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854358451601851, - "y": -0.464761620732036 + "x": 0.88544, + "y": -0.46476 }, { - "x": 0.9709457040416061, - "y": -0.23929989511729818 + "x": 0.97095, + "y": -0.2393 }, { "x": 1, @@ -5413,11 +5413,11 @@ }, { "x": 118.256, - "y": 200.95864313905818 + "y": 200.95864 }, { "x": 20, - "y": 101.98064313905817 + "y": 101.98064 }, { "category": 1, @@ -5435,7 +5435,7 @@ }, { "x": 69.128, - "y": 151.46964313905818 + "y": 151.46964 }, { "x": 0, @@ -5443,7 +5443,7 @@ }, { "x": 69.128, - "y": 151.46964313905818 + "y": 151.46964 }, { "fillStyle": "#556270", @@ -5547,189 +5547,189 @@ "index": 0, "isInternal": false, "x": 118.256, - "y": 157.43464313905818 + "y": 157.43464 }, { "body": null, "index": 1, "isInternal": false, "x": 115.401, - "y": 169.01864313905818 + "y": 169.01864 }, { "body": null, "index": 2, "isInternal": false, "x": 109.856, - "y": 179.58264313905818 + "y": 179.58264 }, { "body": null, "index": 3, "isInternal": false, "x": 101.945, - "y": 188.51264313905818 + "y": 188.51264 }, { "body": null, "index": 4, "isInternal": false, "x": 92.127, - "y": 195.28964313905817 + "y": 195.28964 }, { "body": null, "index": 5, "isInternal": false, "x": 80.971, - "y": 199.5206431390582 + "y": 199.52064 }, { "body": null, "index": 6, "isInternal": false, "x": 69.128, - "y": 200.95864313905818 + "y": 200.95864 }, { "body": null, "index": 7, "isInternal": false, "x": 57.285, - "y": 199.5206431390582 + "y": 199.52064 }, { "body": null, "index": 8, "isInternal": false, - "x": 46.129000000000005, - "y": 195.28964313905817 + "x": 46.129, + "y": 195.28964 }, { "body": null, "index": 9, "isInternal": false, "x": 36.311, - "y": 188.51264313905818 + "y": 188.51264 }, { "body": null, "index": 10, "isInternal": false, "x": 28.4, - "y": 179.58264313905818 + "y": 179.58264 }, { "body": null, "index": 11, "isInternal": false, - "x": 22.854999999999997, - "y": 169.01864313905818 + "x": 22.855, + "y": 169.01864 }, { "body": null, "index": 12, "isInternal": false, "x": 20, - "y": 157.43464313905818 + "y": 157.43464 }, { "body": null, "index": 13, "isInternal": false, "x": 20, - "y": 145.50464313905817 + "y": 145.50464 }, { "body": null, "index": 14, "isInternal": false, - "x": 22.854999999999997, - "y": 133.92064313905817 + "x": 22.855, + "y": 133.92064 }, { "body": null, "index": 15, "isInternal": false, "x": 28.4, - "y": 123.35664313905818 + "y": 123.35664 }, { "body": null, "index": 16, "isInternal": false, "x": 36.311, - "y": 114.42664313905817 + "y": 114.42664 }, { "body": null, "index": 17, "isInternal": false, - "x": 46.129000000000005, - "y": 107.64964313905818 + "x": 46.129, + "y": 107.64964 }, { "body": null, "index": 18, "isInternal": false, "x": 57.285, - "y": 103.41864313905818 + "y": 103.41864 }, { "body": null, "index": 19, "isInternal": false, "x": 69.128, - "y": 101.98064313905817 + "y": 101.98064 }, { "body": null, "index": 20, "isInternal": false, "x": 80.971, - "y": 103.41864313905818 + "y": 103.41864 }, { "body": null, "index": 21, "isInternal": false, "x": 92.127, - "y": 107.64964313905818 + "y": 107.64964 }, { "body": null, "index": 22, "isInternal": false, "x": 101.945, - "y": 114.42664313905817 + "y": 114.42664 }, { "body": null, "index": 23, "isInternal": false, "x": 109.856, - "y": 123.35664313905818 + "y": 123.35664 }, { "body": null, "index": 24, "isInternal": false, "x": 115.401, - "y": 133.92064313905817 + "y": 133.92064 }, { "body": null, "index": 25, "isInternal": false, "x": 118.256, - "y": 145.50464313905817 + "y": 145.50464 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1222.702510148351, + "area": 1222.70251, "axes": { "#": 629 }, @@ -5750,13 +5750,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1019.6065850774935, - "inverseInertia": 0.0009807704409088302, - "inverseMass": 0.8178604294176753, + "inertia": 1019.60659, + "inverseInertia": 0.00098, + "inverseMass": 0.81786, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.222702510148351, + "mass": 1.2227, "motion": 0, "parent": null, "position": { @@ -5814,36 +5814,36 @@ } ], { - "x": 0.9770171932916056, - "y": 0.21316051232015978 + "x": 0.97702, + "y": 0.21316 }, { - "x": 0.7994446935362437, - "y": 0.6007396956891906 + "x": 0.79944, + "y": 0.60074 }, { - "x": 0.4765734276771634, - "y": 0.879134670020492 + "x": 0.47657, + "y": 0.87913 }, { - "x": 0.028769526977757462, - "y": 0.9995860714903325 + "x": 0.02877, + "y": 0.99959 }, { - "x": -0.21316051232015995, - "y": 0.9770171932916059 + "x": -0.21316, + "y": 0.97702 }, { - "x": -0.6007396956891905, - "y": 0.7994446935362437 + "x": -0.60074, + "y": 0.79944 }, { - "x": -0.8791346700204924, - "y": 0.4765734276771626 + "x": -0.87913, + "y": 0.47657 }, { - "x": -0.9998828419386167, - "y": 0.015306939496688661 + "x": -0.99988, + "y": 0.01531 }, { "max": { @@ -5854,12 +5854,12 @@ } }, { - "x": 149.19221399176953, - "y": 144.99000956566996 + "x": 149.19221, + "y": 144.99001 }, { - "x": 118.25599999999999, - "y": 101.98064313905817 + "x": 118.256, + "y": 101.98064 }, { "category": 1, @@ -5876,16 +5876,16 @@ "y": 0 }, { - "x": 133.72410699588477, - "y": 123.48532635236407 + "x": 133.72411, + "y": 123.48533 }, { "x": 0, "y": 0 }, { - "x": 133.72410699588477, - "y": 123.48532635236407 + "x": 133.72411, + "y": 123.48533 }, { "fillStyle": "#C7F464", @@ -5958,120 +5958,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 118.25599999999999, - "y": 111.98064313905817 + "x": 118.256, + "y": 111.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 119.16474808025185, - "y": 107.8154134297053 + "x": 119.16475, + "y": 107.81541 }, { "body": null, "index": 2, "isInternal": false, - "x": 121.72582770633514, - "y": 104.40721262078891 + "x": 121.72583, + "y": 104.40721 }, { "body": null, "index": 3, "isInternal": false, - "x": 125.47376363953481, - "y": 102.37547990075214 + "x": 125.47376, + "y": 102.37548 }, { "body": null, "index": 4, "isInternal": false, - "x": 139.19221399176953, - "y": 101.98064313905817 + "x": 139.19221, + "y": 101.98064 }, { "body": null, "index": 5, "isInternal": false, - "x": 143.3574437011224, - "y": 102.88939121931003 + "x": 143.35744, + "y": 102.88939 }, { "body": null, "index": 6, "isInternal": false, - "x": 146.76564451003878, - "y": 105.45047084539333 + "x": 146.76564, + "y": 105.45047 }, { "body": null, "index": 7, "isInternal": false, - "x": 148.79737723007557, - "y": 109.19840677859298 + "x": 148.79738, + "y": 109.19841 }, { "body": null, "index": 8, "isInternal": false, - "x": 149.19221399176953, - "y": 134.99000956566996 + "x": 149.19221, + "y": 134.99001 }, { "body": null, "index": 9, "isInternal": false, - "x": 148.28346591151768, - "y": 139.15523927502284 + "x": 148.28347, + "y": 139.15524 }, { "body": null, "index": 10, "isInternal": false, - "x": 145.7223862854344, - "y": 142.5634400839392 + "x": 145.72239, + "y": 142.56344 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.97445035223473, - "y": 144.595172803976 + "x": 141.97445, + "y": 144.59517 }, { "body": null, "index": 12, "isInternal": false, - "x": 128.25599999999997, - "y": 144.99000956566996 + "x": 128.256, + "y": 144.99001 }, { "body": null, "index": 13, "isInternal": false, - "x": 124.09077029064713, - "y": 144.0812614854181 + "x": 124.09077, + "y": 144.08126 }, { "body": null, "index": 14, "isInternal": false, - "x": 120.68256948173074, - "y": 141.5201818593348 + "x": 120.68257, + "y": 141.52018 }, { "body": null, "index": 15, "isInternal": false, - "x": 118.65083676169397, - "y": 137.77224592613516 + "x": 118.65084, + "y": 137.77225 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1642.0854529572955, + "area": 1642.08545, "axes": { "#": 668 }, @@ -6093,13 +6093,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1814.469586184716, - "inverseInertia": 0.0005511252476282611, - "inverseMass": 0.6089817056713225, + "inertia": 1814.46959, + "inverseInertia": 0.00055, + "inverseMass": 0.60898, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6420854529572955, + "mass": 1.64209, "motion": 0, "parent": null, "position": { @@ -6155,12 +6155,12 @@ } }, { - "x": 187.03632836076818, - "y": 145.3714181733517 + "x": 187.03633, + "y": 145.37142 }, { - "x": 149.19221399176953, - "y": 101.98064313905817 + "x": 149.19221, + "y": 101.98064 }, { "category": 1, @@ -6177,16 +6177,16 @@ "y": 0 }, { - "x": 168.11427117626886, - "y": 123.67603065620494 + "x": 168.11427, + "y": 123.67603 }, { "x": 0, "y": 0 }, { - "x": 168.11427117626886, - "y": 123.67603065620494 + "x": 168.11427, + "y": 123.67603 }, { "fillStyle": "#4ECDC4", @@ -6223,36 +6223,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 149.19221399176953, - "y": 101.98064313905817 + "x": 149.19221, + "y": 101.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 187.03632836076818, - "y": 101.98064313905817 + "x": 187.03633, + "y": 101.98064 }, { "body": null, "index": 2, "isInternal": false, - "x": 187.03632836076818, - "y": 145.3714181733517 + "x": 187.03633, + "y": 145.37142 }, { "body": null, "index": 3, "isInternal": false, - "x": 149.19221399176953, - "y": 145.3714181733517 + "x": 149.19221, + "y": 145.37142 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3794.8064039999995, + "area": 3794.8064, "axes": { "#": 689 }, @@ -6274,13 +6274,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 9600.370429226272, - "inverseInertia": 0.00010416264740740775, - "inverseMass": 0.2635180542928166, + "inertia": 9600.37043, + "inverseInertia": 0.0001, + "inverseMass": 0.26352, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.7948064039999996, + "mass": 3.79481, "motion": 0, "parent": null, "position": { @@ -6336,12 +6336,12 @@ } }, { - "x": 248.63832836076816, - "y": 163.58264313905815 + "x": 248.63833, + "y": 163.58264 }, { - "x": 187.03632836076818, - "y": 101.98064313905816 + "x": 187.03633, + "y": 101.98064 }, { "category": 1, @@ -6358,16 +6358,16 @@ "y": 0 }, { - "x": 217.83732836076817, - "y": 132.78164313905816 + "x": 217.83733, + "y": 132.78164 }, { "x": 0, "y": 0 }, { - "x": 217.83732836076817, - "y": 132.78164313905816 + "x": 217.83733, + "y": 132.78164 }, { "fillStyle": "#FF6B6B", @@ -6404,36 +6404,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 248.63832836076816, - "y": 163.58264313905815 + "x": 248.63833, + "y": 163.58264 }, { "body": null, "index": 1, "isInternal": false, - "x": 187.03632836076818, - "y": 163.58264313905815 + "x": 187.03633, + "y": 163.58264 }, { "body": null, "index": 2, "isInternal": false, - "x": 187.03632836076818, - "y": 101.98064313905816 + "x": 187.03633, + "y": 101.98064 }, { "body": null, "index": 3, "isInternal": false, - "x": 248.63832836076816, - "y": 101.98064313905816 + "x": 248.63833, + "y": 101.98064 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1826.8784465641675, + "area": 1826.87845, "axes": { "#": 710 }, @@ -6455,13 +6455,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 2226.3146730460744, - "inverseInertia": 0.00044917280207823734, - "inverseMass": 0.547381793178803, + "inertia": 2226.31467, + "inverseInertia": 0.00045, + "inverseMass": 0.54738, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8268784465641674, + "mass": 1.82688, "motion": 0, "parent": null, "position": { @@ -6517,12 +6517,12 @@ } }, { - "x": 292.1241608367627, - "y": 143.991531342076 + "x": 292.12416, + "y": 143.99153 }, { - "x": 248.63832836076816, - "y": 101.98064313905817 + "x": 248.63833, + "y": 101.98064 }, { "category": 1, @@ -6539,16 +6539,16 @@ "y": 0 }, { - "x": 270.3812445987654, - "y": 122.98608724056709 + "x": 270.38124, + "y": 122.98609 }, { "x": 0, "y": 0 }, { - "x": 270.3812445987654, - "y": 122.98608724056709 + "x": 270.38124, + "y": 122.98609 }, { "fillStyle": "#C44D58", @@ -6585,36 +6585,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 248.63832836076816, - "y": 101.98064313905817 + "x": 248.63833, + "y": 101.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 292.1241608367627, - "y": 101.98064313905817 + "x": 292.12416, + "y": 101.98064 }, { "body": null, "index": 2, "isInternal": false, - "x": 292.1241608367627, - "y": 143.991531342076 + "x": 292.12416, + "y": 143.99153 }, { "body": null, "index": 3, "isInternal": false, - "x": 248.63832836076816, - "y": 143.991531342076 + "x": 248.63833, + "y": 143.99153 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3215.056842335567, + "area": 3215.05684, "axes": { "#": 731 }, @@ -6636,13 +6636,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 15932.11540305455, - "inverseInertia": 0.00006276630407838228, - "inverseMass": 0.3110364914337108, + "inertia": 15932.1154, + "inverseInertia": 0.00006, + "inverseMass": 0.31104, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.215056842335567, + "mass": 3.21506, "motion": 0, "parent": null, "position": { @@ -6698,12 +6698,12 @@ } }, { - "x": 411.0154502743485, - "y": 129.02263130778246 + "x": 411.01545, + "y": 129.02263 }, { - "x": 292.1241608367627, - "y": 101.98064313905817 + "x": 292.12416, + "y": 101.98064 }, { "category": 1, @@ -6720,16 +6720,16 @@ "y": 0 }, { - "x": 351.5698055555556, - "y": 115.50163722342032 + "x": 351.56981, + "y": 115.50164 }, { "x": 0, "y": 0 }, { - "x": 351.5698055555556, - "y": 115.50163722342032 + "x": 351.56981, + "y": 115.50164 }, { "fillStyle": "#FF6B6B", @@ -6766,36 +6766,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 292.1241608367627, - "y": 101.98064313905817 + "x": 292.12416, + "y": 101.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.0154502743485, - "y": 101.98064313905817 + "x": 411.01545, + "y": 101.98064 }, { "body": null, "index": 2, "isInternal": false, - "x": 411.0154502743485, - "y": 129.02263130778246 + "x": 411.01545, + "y": 129.02263 }, { "body": null, "index": 3, "isInternal": false, - "x": 292.1241608367627, - "y": 129.02263130778246 + "x": 292.12416, + "y": 129.02263 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2527.170838894569, + "area": 2527.17084, "axes": { "#": 752 }, @@ -6817,13 +6817,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 8473.144372295323, - "inverseInertia": 0.0001180199411294943, - "inverseMass": 0.3956994060747466, + "inertia": 8473.14437, + "inverseInertia": 0.00012, + "inverseMass": 0.3957, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.527170838894569, + "mass": 2.52717, "motion": 0, "parent": null, "position": { @@ -6879,12 +6879,12 @@ } }, { - "x": 507.85238443072717, - "y": 128.0778224943394 + "x": 507.85238, + "y": 128.07782 }, { - "x": 411.01545027434855, - "y": 101.98064313905817 + "x": 411.01545, + "y": 101.98064 }, { "category": 1, @@ -6901,16 +6901,16 @@ "y": 0 }, { - "x": 459.43391735253783, - "y": 115.02923281669878 + "x": 459.43392, + "y": 115.02923 }, { "x": 0, "y": 0 }, { - "x": 459.43391735253783, - "y": 115.02923281669878 + "x": 459.43392, + "y": 115.02923 }, { "fillStyle": "#556270", @@ -6947,36 +6947,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 411.01545027434855, - "y": 101.98064313905817 + "x": 411.01545, + "y": 101.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 507.85238443072717, - "y": 101.98064313905817 + "x": 507.85238, + "y": 101.98064 }, { "body": null, "index": 2, "isInternal": false, - "x": 507.85238443072717, - "y": 128.0778224943394 + "x": 507.85238, + "y": 128.07782 }, { "body": null, "index": 3, "isInternal": false, - "x": 411.01545027434855, - "y": 128.0778224943394 + "x": 411.01545, + "y": 128.07782 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2948.769805, + "area": 2948.7698, "axes": { "#": 773 }, @@ -6998,13 +6998,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 5557.617636669042, - "inverseInertia": 0.0001799332133614269, - "inverseMass": 0.3391244709249185, + "inertia": 5557.61764, + "inverseInertia": 0.00018, + "inverseMass": 0.33912, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.948769805, + "mass": 2.94877, "motion": 0, "parent": null, "position": { @@ -7059,28 +7059,28 @@ } ], { - "x": 0.6234998905587619, - "y": 0.7818234368917397 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.2225283489437671, - "y": 0.9749262197296579 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009635514300213, - "y": 0.43389477871323057 + "x": -0.90096, + "y": 0.43389 }, { - "x": -0.9009635514300213, - "y": -0.43389477871323057 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.2225283489437671, - "y": -0.9749262197296579 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6234998905587619, - "y": -0.7818234368917397 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -7095,12 +7095,12 @@ } }, { - "x": 568.6298038722055, - "y": 165.98864313905815 + "x": 568.6298, + "y": 165.98864 }, { - "x": 506.2268038722055, - "y": 101.98064313905817 + "x": 506.2268, + "y": 101.98064 }, { "category": 1, @@ -7117,16 +7117,16 @@ "y": 0 }, { - "x": 539.0538844307272, - "y": 133.98464313905816 + "x": 539.05388, + "y": 133.98464 }, { "x": 0, "y": 0 }, { - "x": 539.0538844307272, - "y": 133.98464313905816 + "x": 539.05388, + "y": 133.98464 }, { "fillStyle": "#556270", @@ -7172,57 +7172,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 568.6298038722055, - "y": 148.22764313905816 + "x": 568.6298, + "y": 148.22764 }, { "body": null, "index": 1, "isInternal": false, - "x": 546.3588038722055, - "y": 165.98864313905815 + "x": 546.3588, + "y": 165.98864 }, { "body": null, "index": 2, "isInternal": false, - "x": 518.5868038722055, - "y": 159.64964313905816 + "x": 518.5868, + "y": 159.64964 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.2268038722055, - "y": 133.98464313905816 + "x": 506.2268, + "y": 133.98464 }, { "body": null, "index": 4, "isInternal": false, - "x": 518.5868038722055, - "y": 108.31964313905817 + "x": 518.5868, + "y": 108.31964 }, { "body": null, "index": 5, "isInternal": false, - "x": 546.3588038722055, - "y": 101.98064313905817 + "x": 546.3588, + "y": 101.98064 }, { "body": null, "index": 6, "isInternal": false, - "x": 568.6298038722055, - "y": 119.74164313905817 + "x": 568.6298, + "y": 119.74164 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1650.224030690591, + "area": 1650.22403, "axes": { "#": 802 }, @@ -7244,13 +7244,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1883.1376850445035, - "inverseInertia": 0.0005310286167293006, - "inverseMass": 0.6059783286403342, + "inertia": 1883.13769, + "inverseInertia": 0.00053, + "inverseMass": 0.60598, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.650224030690591, + "mass": 1.65022, "motion": 0, "parent": null, "position": { @@ -7306,12 +7306,12 @@ } }, { - "x": 604.0847292837282, - "y": 148.52492468912678 + "x": 604.08473, + "y": 148.52492 }, { - "x": 568.6298038722055, - "y": 101.98064313905817 + "x": 568.6298, + "y": 101.98064 }, { "category": 1, @@ -7328,16 +7328,16 @@ "y": 0 }, { - "x": 586.3572665779668, - "y": 125.25278391409248 + "x": 586.35727, + "y": 125.25278 }, { "x": 0, "y": 0 }, { - "x": 586.3572665779668, - "y": 125.25278391409248 + "x": 586.35727, + "y": 125.25278 }, { "fillStyle": "#C7F464", @@ -7374,36 +7374,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 568.6298038722055, - "y": 101.98064313905817 + "x": 568.6298, + "y": 101.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 604.0847292837282, - "y": 101.98064313905817 + "x": 604.08473, + "y": 101.98064 }, { "body": null, "index": 2, "isInternal": false, - "x": 604.0847292837282, - "y": 148.52492468912678 + "x": 604.08473, + "y": 148.52492 }, { "body": null, "index": 3, "isInternal": false, - "x": 568.6298038722055, - "y": 148.52492468912678 + "x": 568.6298, + "y": 148.52492 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 985.702813436139, + "area": 985.70281, "axes": { "#": 823 }, @@ -7424,13 +7424,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 694.3954590109718, - "inverseInertia": 0.00144010158336044, - "inverseMass": 1.014504560978193, + "inertia": 694.39546, + "inverseInertia": 0.00144, + "inverseMass": 1.0145, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.985702813436139, + "mass": 0.9857, "motion": 0, "parent": null, "position": { @@ -7488,36 +7488,36 @@ } ], { - "x": 0.9770171932916059, - "y": 0.21316051232016 + "x": 0.97702, + "y": 0.21316 }, { - "x": 0.799444693536244, - "y": 0.6007396956891904 + "x": 0.79944, + "y": 0.60074 }, { - "x": 0.4765734276771625, - "y": 0.8791346700204926 + "x": 0.47657, + "y": 0.87913 }, { - "x": 0.016108114574245137, - "y": 0.9998702559056664 + "x": 0.01611, + "y": 0.99987 }, { - "x": -0.21316051232015995, - "y": 0.9770171932916059 + "x": -0.21316, + "y": 0.97702 }, { - "x": -0.6007396956891901, - "y": 0.7994446935362443 + "x": -0.60074, + "y": 0.79944 }, { - "x": -0.8791346700204927, - "y": 0.4765734276771623 + "x": -0.87913, + "y": 0.47657 }, { - "x": -0.9990245010225166, - "y": 0.04415932921491988 + "x": -0.99902, + "y": 0.04416 }, { "max": { @@ -7528,12 +7528,12 @@ } }, { - "x": 645.8109809984057, - "y": 128.13087033384554 + "x": 645.81098, + "y": 128.13087 }, { - "x": 604.0847292837282, - "y": 101.98064313905816 + "x": 604.08473, + "y": 101.98064 }, { "category": 1, @@ -7550,16 +7550,16 @@ "y": 0 }, { - "x": 624.947855141067, - "y": 115.05575673645185 + "x": 624.94786, + "y": 115.05576 }, { "x": 0, "y": 0 }, { - "x": 624.947855141067, - "y": 115.05575673645185 + "x": 624.94786, + "y": 115.05576 }, { "fillStyle": "#556270", @@ -7632,120 +7632,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 604.0847292837282, - "y": 111.98064313905816 + "x": 604.08473, + "y": 111.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 604.99347736398, - "y": 107.81541342970529 + "x": 604.99348, + "y": 107.81541 }, { "body": null, "index": 2, "isInternal": false, - "x": 607.5545569900632, - "y": 104.40721262078891 + "x": 607.55456, + "y": 104.40721 }, { "body": null, "index": 3, "isInternal": false, - "x": 611.3024929232629, - "y": 102.37547990075214 + "x": 611.30249, + "y": 102.37548 }, { "body": null, "index": 4, "isInternal": false, - "x": 635.8109809984057, - "y": 101.98064313905816 + "x": 635.81098, + "y": 101.98064 }, { "body": null, "index": 5, "isInternal": false, - "x": 639.9762107077587, - "y": 102.88939121931003 + "x": 639.97621, + "y": 102.88939 }, { "body": null, "index": 6, "isInternal": false, - "x": 643.3844115166751, - "y": 105.45047084539331 + "x": 643.38441, + "y": 105.45047 }, { "body": null, "index": 7, "isInternal": false, - "x": 645.4161442367118, - "y": 109.19840677859298 + "x": 645.41614, + "y": 109.19841 }, { "body": null, "index": 8, "isInternal": false, - "x": 645.8109809984057, - "y": 118.13087033384554 + "x": 645.81098, + "y": 118.13087 }, { "body": null, "index": 9, "isInternal": false, - "x": 644.9022329181539, - "y": 122.29610004319841 + "x": 644.90223, + "y": 122.2961 }, { "body": null, "index": 10, "isInternal": false, - "x": 642.3411532920707, - "y": 125.7043008521148 + "x": 642.34115, + "y": 125.7043 }, { "body": null, "index": 11, "isInternal": false, - "x": 638.5932173588709, - "y": 127.73603357215157 + "x": 638.59322, + "y": 127.73603 }, { "body": null, "index": 12, "isInternal": false, - "x": 614.0847292837282, - "y": 128.13087033384554 + "x": 614.08473, + "y": 128.13087 }, { "body": null, "index": 13, "isInternal": false, - "x": 609.9194995743752, - "y": 127.22212225359368 + "x": 609.9195, + "y": 127.22212 }, { "body": null, "index": 14, "isInternal": false, - "x": 606.5112987654588, - "y": 124.66104262751038 + "x": 606.5113, + "y": 124.66104 }, { "body": null, "index": 15, "isInternal": false, - "x": 604.4795660454221, - "y": 120.91310669431073 + "x": 604.47957, + "y": 120.91311 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4952.7985079569, + "area": 4952.79851, "axes": { "#": 862 }, @@ -7766,13 +7766,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 15818.469397063342, - "inverseInertia": 0.0000632172414978182, - "inverseMass": 0.2019060533945513, + "inertia": 15818.4694, + "inverseInertia": 0.00006, + "inverseMass": 0.20191, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.9527985079569, + "mass": 4.9528, "motion": 0, "parent": null, "position": { @@ -7866,84 +7866,84 @@ } ], { - "x": 0.9852706907275951, - "y": 0.1710019473373548 + "x": 0.98527, + "y": 0.171 }, { - "x": 0.8700268649231405, - "y": 0.49300431469918327 + "x": 0.87003, + "y": 0.493 }, { - "x": 0.6530188991620234, - "y": 0.7573416120465185 + "x": 0.65302, + "y": 0.75734 }, { - "x": 0.314779076564745, - "y": 0.9491649661450039 + "x": 0.31478, + "y": 0.94916 }, { - "x": 0.14183590877131155, - "y": 0.9898901832945997 + "x": 0.14184, + "y": 0.98989 }, { - "x": -0.20001917819990497, - "y": 0.9797919821840934 + "x": -0.20002, + "y": 0.97979 }, { - "x": -0.5184786471262719, - "y": 0.8550905755965919 + "x": -0.51848, + "y": 0.85509 }, { - "x": -0.8054355711467087, - "y": 0.592683339340305 + "x": -0.80544, + "y": 0.59268 }, { - "x": -0.8976116499482651, - "y": 0.44078716618925434 + "x": -0.89761, + "y": 0.44079 }, { - "x": -0.9936472264221324, - "y": 0.11253972375833993 + "x": -0.99365, + "y": 0.11254 }, { - "x": -0.9734566664259817, - "y": -0.22887140186317512 + "x": -0.97346, + "y": -0.22887 }, { - "x": -0.8125610392520469, - "y": -0.5828761081822049 + "x": -0.81256, + "y": -0.58288 }, { - "x": -0.6965843892916697, - "y": -0.7174748696610574 + "x": -0.69658, + "y": -0.71747 }, { - "x": -0.41408059568440286, - "y": -0.9102402211930927 + "x": -0.41408, + "y": -0.91024 }, { - "x": -0.08314308915220521, - "y": -0.9965376193231384 + "x": -0.08314, + "y": -0.99654 }, { - "x": 0.3032498980752684, - "y": -0.9529110657964568 + "x": 0.30325, + "y": -0.95291 }, { - "x": 0.4671007549713962, - "y": -0.8842040967475505 + "x": 0.4671, + "y": -0.8842 }, { - "x": 0.7377302297636824, - "y": -0.6750956288503315 + "x": 0.73773, + "y": -0.6751 }, { - "x": 0.9220698606687172, - "y": -0.3870234773839601 + "x": 0.92207, + "y": -0.38702 }, { - "x": 0.9999816308338934, - "y": -0.006061187572337409 + "x": 0.99998, + "y": -0.00606 }, { "max": { @@ -7954,12 +7954,12 @@ } }, { - "x": 723.4549281351422, - "y": 185.9525090843233 + "x": 723.45493, + "y": 185.95251 }, { - "x": 642.6067463244755, - "y": 101.99807763961768 + "x": 642.60675, + "y": 101.99808 }, { "category": 1, @@ -7976,16 +7976,16 @@ "y": 0 }, { - "x": 686.235071903739, - "y": 143.95785886141098 + "x": 686.23507, + "y": 143.95786 }, { "x": 0, "y": 0 }, { - "x": 686.235071903739, - "y": 143.95785886141098 + "x": 686.23507, + "y": 143.95786 }, { "fillStyle": "#4ECDC4", @@ -8070,148 +8070,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 723.4549281351422, - "y": 163.7343376940529 + "x": 723.45493, + "y": 163.73434 }, { "body": null, "index": 1, "isInternal": false, - "x": 722.8700948152788, - "y": 167.10400182942968 + "x": 722.87009, + "y": 167.104 }, { "body": null, "index": 2, "isInternal": false, - "x": 721.1840008580932, - "y": 170.0795275921831 + "x": 721.184, + "y": 170.07953 }, { "body": null, "index": 3, "isInternal": false, - "x": 718.5938630489019, - "y": 172.31287766027913 + "x": 718.59386, + "y": 172.31288 }, { "body": null, "index": 4, "isInternal": false, - "x": 678.9284730623283, - "y": 185.46742431644665 + "x": 678.92847, + "y": 185.46742 }, { "body": null, "index": 5, "isInternal": false, - "x": 675.5430070407368, - "y": 185.9525090843233 + "x": 675.54301, + "y": 185.95251 }, { "body": null, "index": 6, "isInternal": false, - "x": 672.1920772912649, - "y": 185.26843509016703 + "x": 672.19208, + "y": 185.26844 }, { "body": null, "index": 7, "isInternal": false, - "x": 669.2676315922173, - "y": 183.49521633076415 + "x": 669.26763, + "y": 183.49522 }, { "body": null, "index": 8, "isInternal": false, - "x": 644.4991664780822, - "y": 149.83575347521014 + "x": 644.49917, + "y": 149.83575 }, { "body": null, "index": 9, "isInternal": false, - "x": 642.9916407606411, - "y": 146.76585319142828 + "x": 642.99164, + "y": 146.76585 }, { "body": null, "index": 10, "isInternal": false, - "x": 642.6067463244755, - "y": 143.36750391359948 + "x": 642.60675, + "y": 143.3675 }, { "body": null, "index": 11, "isInternal": false, - "x": 643.3895039698, - "y": 140.03820789044434 + "x": 643.3895, + "y": 140.03821 }, { "body": null, "index": 12, "isInternal": false, - "x": 667.7481337120751, - "y": 106.08095141639507 + "x": 667.74813, + "y": 106.08095 }, { "body": null, "index": 13, "isInternal": false, - "x": 670.2019279142753, - "y": 103.6986035348663 + "x": 670.20193, + "y": 103.6986 }, { "body": null, "index": 14, "isInternal": false, - "x": 673.3149877186254, - "y": 102.28243049815205 + "x": 673.31499, + "y": 102.28243 }, { "body": null, "index": 15, "isInternal": false, - "x": 676.7231882507567, - "y": 101.99807763961768 + "x": 676.72319, + "y": 101.99808 }, { "body": null, "index": 16, "isInternal": false, - "x": 716.5451287461676, - "y": 114.67082311382359 + "x": 716.54513, + "y": 114.67082 }, { "body": null, "index": 17, "isInternal": false, - "x": 719.5691411939176, - "y": 116.26832588788074 + "x": 719.56914, + "y": 116.26833 }, { "body": null, "index": 18, "isInternal": false, - "x": 721.8779945373644, - "y": 118.79139200586522 + "x": 721.87799, + "y": 118.79139 }, { "body": null, "index": 19, "isInternal": false, - "x": 723.2016299033231, - "y": 121.9449068409739 + "x": 723.20163, + "y": 121.94491 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1624.41915552185, + "area": 1624.41916, "axes": { "#": 917 }, @@ -8233,13 +8233,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1869.3319950134544, - "inverseInertia": 0.000534950454316063, - "inverseMass": 0.6156046588103344, + "inertia": 1869.332, + "inverseInertia": 0.00053, + "inverseMass": 0.6156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.62441915552185, + "mass": 1.62442, "motion": 0, "parent": null, "position": { @@ -8295,12 +8295,12 @@ } }, { - "x": 771.5173424012601, - "y": 135.77876128034762 + "x": 771.51734, + "y": 135.77876 }, { - "x": 723.4549281351422, - "y": 101.98064313905817 + "x": 723.45493, + "y": 101.98064 }, { "category": 1, @@ -8317,16 +8317,16 @@ "y": 0 }, { - "x": 747.4861352682011, - "y": 118.87970220970288 + "x": 747.48614, + "y": 118.8797 }, { "x": 0, "y": 0 }, { - "x": 747.4861352682011, - "y": 118.87970220970288 + "x": 747.48614, + "y": 118.8797 }, { "fillStyle": "#C7F464", @@ -8363,36 +8363,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 723.4549281351422, - "y": 101.98064313905817 + "x": 723.45493, + "y": 101.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 771.5173424012601, - "y": 101.98064313905817 + "x": 771.51734, + "y": 101.98064 }, { "body": null, "index": 2, "isInternal": false, - "x": 771.5173424012601, - "y": 135.77876128034762 + "x": 771.51734, + "y": 135.77876 }, { "body": null, "index": 3, "isInternal": false, - "x": 723.4549281351422, - "y": 135.77876128034762 + "x": 723.45493, + "y": 135.77876 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1339.8528159999998, + "area": 1339.85282, "axes": { "#": 938 }, @@ -8414,13 +8414,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1196.8037123620863, - "inverseInertia": 0.0008355589055003328, - "inverseMass": 0.7463506349789991, + "inertia": 1196.80371, + "inverseInertia": 0.00084, + "inverseMass": 0.74635, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.3398528159999998, + "mass": 1.33985, "motion": 0, "parent": null, "position": { @@ -8476,12 +8476,12 @@ } }, { - "x": 808.1213424012601, - "y": 138.58464313905816 + "x": 808.12134, + "y": 138.58464 }, { - "x": 771.5173424012601, - "y": 101.98064313905817 + "x": 771.51734, + "y": 101.98064 }, { "category": 1, @@ -8498,16 +8498,16 @@ "y": 0 }, { - "x": 789.8193424012601, - "y": 120.28264313905817 + "x": 789.81934, + "y": 120.28264 }, { "x": 0, "y": 0 }, { - "x": 789.8193424012601, - "y": 120.28264313905817 + "x": 789.81934, + "y": 120.28264 }, { "fillStyle": "#C44D58", @@ -8544,36 +8544,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 808.1213424012601, - "y": 138.58464313905816 + "x": 808.12134, + "y": 138.58464 }, { "body": null, "index": 1, "isInternal": false, - "x": 771.5173424012601, - "y": 138.58464313905816 + "x": 771.51734, + "y": 138.58464 }, { "body": null, "index": 2, "isInternal": false, - "x": 771.5173424012601, - "y": 101.98064313905817 + "x": 771.51734, + "y": 101.98064 }, { "body": null, "index": 3, "isInternal": false, - "x": 808.1213424012601, - "y": 101.98064313905817 + "x": 808.12134, + "y": 101.98064 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4071.9713439999996, + "area": 4071.97134, "axes": { "#": 959 }, @@ -8595,13 +8595,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 11053.96708423811, - "inverseInertia": 0.00009046525942943176, - "inverseMass": 0.24558129601611461, + "inertia": 11053.96708, + "inverseInertia": 0.00009, + "inverseMass": 0.24558, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.071971344, + "mass": 4.07197, "motion": 0, "parent": null, "position": { @@ -8657,12 +8657,12 @@ } }, { - "x": 871.93334240126, - "y": 165.79264313905819 + "x": 871.93334, + "y": 165.79264 }, { - "x": 808.1213424012601, - "y": 101.98064313905817 + "x": 808.12134, + "y": 101.98064 }, { "category": 1, @@ -8679,16 +8679,16 @@ "y": 0 }, { - "x": 840.0273424012601, - "y": 133.88664313905818 + "x": 840.02734, + "y": 133.88664 }, { "x": 0, "y": 0 }, { - "x": 840.0273424012601, - "y": 133.88664313905818 + "x": 840.02734, + "y": 133.88664 }, { "fillStyle": "#C7F464", @@ -8725,36 +8725,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 871.93334240126, - "y": 165.79264313905819 + "x": 871.93334, + "y": 165.79264 }, { "body": null, "index": 1, "isInternal": false, - "x": 808.1213424012601, - "y": 165.79264313905819 + "x": 808.12134, + "y": 165.79264 }, { "body": null, "index": 2, "isInternal": false, - "x": 808.1213424012601, - "y": 101.98064313905817 + "x": 808.12134, + "y": 101.98064 }, { "body": null, "index": 3, "isInternal": false, - "x": 871.93334240126, - "y": 101.98064313905817 + "x": 871.93334, + "y": 101.98064 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1410.4247505938968, + "area": 1410.42475, "axes": { "#": 980 }, @@ -8776,13 +8776,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1475.1971281420765, - "inverseInertia": 0.0006778755062107806, - "inverseMass": 0.7090062760022635, + "inertia": 1475.19713, + "inverseInertia": 0.00068, + "inverseMass": 0.70901, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4104247505938967, + "mass": 1.41042, "motion": 0, "parent": null, "position": { @@ -8838,12 +8838,12 @@ } }, { - "x": 901.628236948585, - "y": 149.4778567878922 + "x": 901.62824, + "y": 149.47786 }, { - "x": 871.93334240126, - "y": 101.98064313905817 + "x": 871.93334, + "y": 101.98064 }, { "category": 1, @@ -8860,16 +8860,16 @@ "y": 0 }, { - "x": 886.7807896749225, - "y": 125.72924996347518 + "x": 886.78079, + "y": 125.72925 }, { "x": 0, "y": 0 }, { - "x": 886.7807896749225, - "y": 125.72924996347518 + "x": 886.78079, + "y": 125.72925 }, { "fillStyle": "#556270", @@ -8906,36 +8906,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 871.93334240126, - "y": 101.98064313905817 + "x": 871.93334, + "y": 101.98064 }, { "body": null, "index": 1, "isInternal": false, - "x": 901.628236948585, - "y": 101.98064313905817 + "x": 901.62824, + "y": 101.98064 }, { "body": null, "index": 2, "isInternal": false, - "x": 901.628236948585, - "y": 149.4778567878922 + "x": 901.62824, + "y": 149.47786 }, { "body": null, "index": 3, "isInternal": false, - "x": 871.93334240126, - "y": 149.4778567878922 + "x": 871.93334, + "y": 149.47786 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1145.1396745385214, + "area": 1145.13967, "axes": { "#": 1001 }, @@ -8956,13 +8956,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 855.9197793798912, - "inverseInertia": 0.001168333790258351, - "inverseMass": 0.8732559199845983, + "inertia": 855.91978, + "inverseInertia": 0.00117, + "inverseMass": 0.87326, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1451396745385214, + "mass": 1.14514, "motion": 0, "parent": null, "position": { @@ -9020,36 +9020,36 @@ } ], { - "x": 0.9770171932916056, - "y": 0.21316051232015978 + "x": 0.97702, + "y": 0.21316 }, { - "x": 0.7994446935362437, - "y": 0.6007396956891906 + "x": 0.79944, + "y": 0.60074 }, { - "x": 0.4765734276771622, - "y": 0.8791346700204928 + "x": 0.47657, + "y": 0.87913 }, { - "x": 0.02507831610142034, - "y": 0.9996854895723541 + "x": 0.02508, + "y": 0.99969 }, { - "x": -0.21316051232015995, - "y": 0.9770171932916059 + "x": -0.21316, + "y": 0.97702 }, { - "x": -0.6007396956891905, - "y": 0.7994446935362437 + "x": -0.60074, + "y": 0.79944 }, { - "x": -0.8791346700204924, - "y": 0.4765734276771626 + "x": -0.87913, + "y": 0.47657 }, { - "x": -0.9998192732273806, - "y": 0.019011072643923082 + "x": -0.99982, + "y": 0.01901 }, { "max": { @@ -9060,12 +9060,12 @@ } }, { - "x": 52.956961591220846, - "y": 238.94143206224064 + "x": 52.95696, + "y": 238.94143 }, { - "x": 19.999999999999996, - "y": 200.95864313905818 + "x": 20, + "y": 200.95864 }, { "category": 1, @@ -9082,16 +9082,16 @@ "y": 0 }, { - "x": 36.47848079561042, - "y": 219.9500376006494 + "x": 36.47848, + "y": 219.95004 }, { "x": 0, "y": 0 }, { - "x": 36.47848079561042, - "y": 219.9500376006494 + "x": 36.47848, + "y": 219.95004 }, { "fillStyle": "#4ECDC4", @@ -9164,120 +9164,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 19.999999999999996, - "y": 210.95864313905818 + "x": 20, + "y": 210.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 20.908748080251858, - "y": 206.7934134297053 + "x": 20.90875, + "y": 206.79341 }, { "body": null, "index": 2, "isInternal": false, - "x": 23.469827706335153, - "y": 203.38521262078893 + "x": 23.46983, + "y": 203.38521 }, { "body": null, "index": 3, "isInternal": false, - "x": 27.217763639534816, - "y": 201.35347990075218 + "x": 27.21776, + "y": 201.35348 }, { "body": null, "index": 4, "isInternal": false, - "x": 42.956961591220846, - "y": 200.95864313905818 + "x": 42.95696, + "y": 200.95864 }, { "body": null, "index": 5, "isInternal": false, - "x": 47.12219130057371, - "y": 201.86739121931006 + "x": 47.12219, + "y": 201.86739 }, { "body": null, "index": 6, "isInternal": false, - "x": 50.530392109490094, - "y": 204.42847084539335 + "x": 50.53039, + "y": 204.42847 }, { "body": null, "index": 7, "isInternal": false, - "x": 52.562124829526866, - "y": 208.17640677859302 + "x": 52.56212, + "y": 208.17641 }, { "body": null, "index": 8, "isInternal": false, - "x": 52.956961591220846, - "y": 228.94143206224064 + "x": 52.95696, + "y": 228.94143 }, { "body": null, "index": 9, "isInternal": false, - "x": 52.04821351096898, - "y": 233.1066617715935 + "x": 52.04821, + "y": 233.10666 }, { "body": null, "index": 10, "isInternal": false, - "x": 49.48713388488569, - "y": 236.51486258050988 + "x": 49.48713, + "y": 236.51486 }, { "body": null, "index": 11, "isInternal": false, - "x": 45.73919795168602, - "y": 238.54659530054664 + "x": 45.7392, + "y": 238.5466 }, { "body": null, "index": 12, "isInternal": false, - "x": 29.999999999999996, - "y": 238.94143206224064 + "x": 30, + "y": 238.94143 }, { "body": null, "index": 13, "isInternal": false, - "x": 25.83477029064713, - "y": 238.03268398198875 + "x": 25.83477, + "y": 238.03268 }, { "body": null, "index": 14, "isInternal": false, - "x": 22.426569481730745, - "y": 235.47160435590547 + "x": 22.42657, + "y": 235.4716 }, { "body": null, "index": 15, "isInternal": false, - "x": 20.394836761693973, - "y": 231.7236684227058 + "x": 20.39484, + "y": 231.72367 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1884.7709190881956, + "area": 1884.77092, "axes": { "#": 1040 }, @@ -9298,13 +9298,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 2264.182707269258, - "inverseInertia": 0.00044166047059252596, - "inverseMass": 0.5305684578812234, + "inertia": 2264.18271, + "inverseInertia": 0.00044, + "inverseMass": 0.53057, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.8847709190881956, + "mass": 1.88477, "motion": 0, "parent": null, "position": { @@ -9386,68 +9386,68 @@ } ], { - "x": -0.9942376962506515, - "y": -0.10719796338642447 + "x": -0.99424, + "y": -0.1072 }, { - "x": -0.9485369506603959, - "y": -0.31666647001518455 + "x": -0.94854, + "y": -0.31667 }, { - "x": -0.8592361222845448, - "y": -0.5115792081011685 + "x": -0.85924, + "y": -0.51158 }, { - "x": -0.7124804361391147, - "y": -0.7016919752419981 + "x": -0.71248, + "y": -0.70169 }, { - "x": -0.6272318102901987, - "y": -0.7788326239700544 + "x": -0.62723, + "y": -0.77883 }, { - "x": -0.44679990169583184, - "y": -0.8946339183401191 + "x": -0.4468, + "y": -0.89463 }, { - "x": -0.24583056154545463, - "y": -0.9693128158702156 + "x": -0.24583, + "y": -0.96931 }, { - "x": -0.007628802720947643, - "y": -0.999970900261125 + "x": -0.00763, + "y": -0.99997 }, { - "x": 0.10719796338642447, - "y": -0.9942376962506515 + "x": 0.1072, + "y": -0.99424 }, { - "x": 0.31666647001518455, - "y": -0.9485369506603959 + "x": 0.31667, + "y": -0.94854 }, { - "x": 0.5115792081011685, - "y": -0.8592361222845448 + "x": 0.51158, + "y": -0.85924 }, { - "x": 0.7016919752419981, - "y": -0.7124804361391147 + "x": 0.70169, + "y": -0.71248 }, { - "x": 0.7788326239700544, - "y": -0.6272318102901987 + "x": 0.77883, + "y": -0.62723 }, { - "x": 0.8946339183401191, - "y": -0.44679990169583184 + "x": 0.89463, + "y": -0.4468 }, { - "x": 0.9693128158702156, - "y": -0.24583056154545463 + "x": 0.96931, + "y": -0.24583 }, { - "x": 0.999970900261125, - "y": -0.007628802720947643 + "x": 0.99997, + "y": -0.00763 }, { "max": { @@ -9458,12 +9458,12 @@ } }, { - "x": 100.9577022936933, - "y": 248.95938384153064 + "x": 100.9577, + "y": 248.95938 }, { - "x": 52.95696159122084, - "y": 200.95864313905818 + "x": 52.95696, + "y": 200.95864 }, { "category": 1, @@ -9480,16 +9480,16 @@ "y": 0 }, { - "x": 76.95733194245707, - "y": 224.9590134902944 + "x": 76.95733, + "y": 224.95901 }, { "x": 0, "y": 0 }, { - "x": 76.95733194245707, - "y": 224.9590134902944 + "x": 76.95733, + "y": 224.95901 }, { "fillStyle": "#FF6B6B", @@ -9610,232 +9610,232 @@ "body": null, "index": 0, "isInternal": false, - "x": 100.9577022936933, - "y": 230.75805248883245 + "x": 100.9577, + "y": 230.75805 }, { "body": null, "index": 1, "isInternal": false, - "x": 100.72787422660937, - "y": 232.88965761203403 + "x": 100.72787, + "y": 232.88966 }, { "body": null, "index": 2, "isInternal": false, - "x": 100.04895421344145, - "y": 234.92328219818532 + "x": 100.04895, + "y": 234.92328 }, { "body": null, "index": 3, "isInternal": false, - "x": 98.95214922905575, - "y": 236.76544944572433 + "x": 98.95215, + "y": 236.76545 }, { "body": null, "index": 4, "isInternal": false, - "x": 89.82743875286059, - "y": 246.0304516533961 + "x": 89.82744, + "y": 246.03045 }, { "body": null, "index": 5, "isInternal": false, - "x": 88.15765333069069, - "y": 247.3752111060819 + "x": 88.15765, + "y": 247.37521 }, { "body": null, "index": 6, "isInternal": false, - "x": 86.23959465024114, - "y": 248.33313189614287 + "x": 86.23959, + "y": 248.33313 }, { "body": null, "index": 7, "isInternal": false, - "x": 84.16142745532821, - "y": 248.86018260685913 + "x": 84.16143, + "y": 248.86018 }, { "body": null, "index": 8, "isInternal": false, - "x": 71.15829294391904, - "y": 248.95938384153064 + "x": 71.15829, + "y": 248.95938 }, { "body": null, "index": 9, "isInternal": false, - "x": 69.02668782071744, - "y": 248.7295557744467 + "x": 69.02669, + "y": 248.72956 }, { "body": null, "index": 10, "isInternal": false, - "x": 66.99306323456618, - "y": 248.05063576127878 + "x": 66.99306, + "y": 248.05064 }, { "body": null, "index": 11, "isInternal": false, - "x": 65.15089598702714, - "y": 246.95383077689308 + "x": 65.1509, + "y": 246.95383 }, { "body": null, "index": 12, "isInternal": false, - "x": 55.885893779355364, - "y": 237.82912030069792 + "x": 55.88589, + "y": 237.82912 }, { "body": null, "index": 13, "isInternal": false, - "x": 54.54113432666958, - "y": 236.15933487852803 + "x": 54.54113, + "y": 236.15933 }, { "body": null, "index": 14, "isInternal": false, - "x": 53.583213536608625, - "y": 234.24127619807848 + "x": 53.58321, + "y": 234.24128 }, { "body": null, "index": 15, "isInternal": false, - "x": 53.05616282589235, - "y": 232.16310900316554 + "x": 53.05616, + "y": 232.16311 }, { "body": null, "index": 16, "isInternal": false, - "x": 52.95696159122084, - "y": 219.15997449175637 + "x": 52.95696, + "y": 219.15997 }, { "body": null, "index": 17, "isInternal": false, - "x": 53.18678965830478, - "y": 217.0283693685548 + "x": 53.18679, + "y": 217.02837 }, { "body": null, "index": 18, "isInternal": false, - "x": 53.8657096714727, - "y": 214.9947447824035 + "x": 53.86571, + "y": 214.99474 }, { "body": null, "index": 19, "isInternal": false, - "x": 54.9625146558584, - "y": 213.1525775348645 + "x": 54.96251, + "y": 213.15258 }, { "body": null, "index": 20, "isInternal": false, - "x": 64.08722513205356, - "y": 203.8875753271927 + "x": 64.08723, + "y": 203.88758 }, { "body": null, "index": 21, "isInternal": false, - "x": 65.75701055422346, - "y": 202.5428158745069 + "x": 65.75701, + "y": 202.54282 }, { "body": null, "index": 22, "isInternal": false, - "x": 67.675069234673, - "y": 201.58489508444595 + "x": 67.67507, + "y": 201.5849 }, { "body": null, "index": 23, "isInternal": false, - "x": 69.75323642958594, - "y": 201.0578443737297 + "x": 69.75324, + "y": 201.05784 }, { "body": null, "index": 24, "isInternal": false, - "x": 82.75637094099511, - "y": 200.95864313905818 + "x": 82.75637, + "y": 200.95864 }, { "body": null, "index": 25, "isInternal": false, - "x": 84.8879760641967, - "y": 201.1884712061421 + "x": 84.88798, + "y": 201.18847 }, { "body": null, "index": 26, "isInternal": false, - "x": 86.92160065034797, - "y": 201.86739121931004 + "x": 86.9216, + "y": 201.86739 }, { "body": null, "index": 27, "isInternal": false, - "x": 88.763767897887, - "y": 202.96419620369574 + "x": 88.76377, + "y": 202.9642 }, { "body": null, "index": 28, "isInternal": false, - "x": 98.02877010555878, - "y": 212.0889066798909 + "x": 98.02877, + "y": 212.08891 }, { "body": null, "index": 29, "isInternal": false, - "x": 99.37352955824457, - "y": 213.7586921020608 + "x": 99.37353, + "y": 213.75869 }, { "body": null, "index": 30, "isInternal": false, - "x": 100.33145034830552, - "y": 215.67675078251034 + "x": 100.33145, + "y": 215.67675 }, { "body": null, "index": 31, "isInternal": false, - "x": 100.85850105902179, - "y": 217.75491797742328 + "x": 100.8585, + "y": 217.75492 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3192.987712697058, + "area": 3192.98771, "axes": { "#": 1103 }, @@ -9857,13 +9857,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 14162.074980074754, - "inverseInertia": 0.00007061112170405424, - "inverseMass": 0.31318629759314615, + "inertia": 14162.07498, + "inverseInertia": 0.00007, + "inverseMass": 0.31319, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.1929877126970583, + "mass": 3.19299, "motion": 0, "parent": null, "position": { @@ -9919,12 +9919,12 @@ } }, { - "x": 212.71558981084007, - "y": 229.5292235574395 + "x": 212.71559, + "y": 229.52922 }, { - "x": 100.9577022936933, - "y": 200.95864313905818 + "x": 100.9577, + "y": 200.95864 }, { "category": 1, @@ -9941,16 +9941,16 @@ "y": 0 }, { - "x": 156.8366460522667, - "y": 215.24393334824885 + "x": 156.83665, + "y": 215.24393 }, { "x": 0, "y": 0 }, { - "x": 156.8366460522667, - "y": 215.24393334824885 + "x": 156.83665, + "y": 215.24393 }, { "fillStyle": "#4ECDC4", @@ -9987,36 +9987,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 100.9577022936933, - "y": 200.95864313905818 + "x": 100.9577, + "y": 200.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 212.71558981084007, - "y": 200.95864313905818 + "x": 212.71559, + "y": 200.95864 }, { "body": null, "index": 2, "isInternal": false, - "x": 212.71558981084007, - "y": 229.5292235574395 + "x": 212.71559, + "y": 229.52922 }, { "body": null, "index": 3, "isInternal": false, - "x": 100.9577022936933, - "y": 229.5292235574395 + "x": 100.9577, + "y": 229.52922 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4466.9579779999995, + "area": 4466.95798, "axes": { "#": 1124 }, @@ -10024,7 +10024,7 @@ "#": 1138 }, "chamfer": "", - "circleRadius": 37.89191100823045, + "circleRadius": 37.89191, "collisionFilter": { "#": 1141 }, @@ -10039,13 +10039,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 12703.170970181629, - "inverseInertia": 0.00007872050233341874, - "inverseMass": 0.2238659967085099, + "inertia": 12703.17097, + "inverseInertia": 0.00008, + "inverseMass": 0.22387, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.466957978, + "mass": 4.46696, "motion": 0, "parent": null, "position": { @@ -10118,52 +10118,52 @@ } ], { - "x": -0.9709483957746872, - "y": -0.23928897329915064 + "x": -0.97095, + "y": -0.23929 }, { - "x": -0.8854069135689516, - "y": -0.46481673528854694 + "x": -0.88541, + "y": -0.46482 }, { - "x": -0.7485617883876168, - "y": -0.6630650412787066 + "x": -0.74856, + "y": -0.66307 }, { - "x": -0.568042449918069, - "y": -0.8229992558265641 + "x": -0.56804, + "y": -0.823 }, { - "x": -0.3545882298397037, - "y": -0.9350225597594667 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12053079587770753, - "y": -0.9927095885731568 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12053079587770753, - "y": -0.9927095885731568 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3545882298397037, - "y": -0.9350225597594667 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.568042449918069, - "y": -0.8229992558265641 + "x": 0.56804, + "y": -0.823 }, { - "x": 0.7485617883876168, - "y": -0.6630650412787066 + "x": 0.74856, + "y": -0.66307 }, { - "x": 0.8854069135689516, - "y": -0.46481673528854694 + "x": 0.88541, + "y": -0.46482 }, { - "x": 0.9709483957746872, - "y": -0.23928897329915064 + "x": 0.97095, + "y": -0.23929 }, { "x": 1, @@ -10178,12 +10178,12 @@ } }, { - "x": 287.94758981084004, - "y": 276.74264313905815 + "x": 287.94759, + "y": 276.74264 }, { - "x": 212.71558981084007, - "y": 200.95864313905818 + "x": 212.71559, + "y": 200.95864 }, { "category": 1, @@ -10200,16 +10200,16 @@ "y": 0 }, { - "x": 250.33158981084006, - "y": 238.85064313905818 + "x": 250.33159, + "y": 238.85064 }, { "x": 0, "y": 0 }, { - "x": 250.33158981084006, - "y": 238.85064313905818 + "x": 250.33159, + "y": 238.85064 }, { "fillStyle": "#C7F464", @@ -10312,190 +10312,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 287.94758981084004, - "y": 243.41764313905819 + "x": 287.94759, + "y": 243.41764 }, { "body": null, "index": 1, "isInternal": false, - "x": 285.76158981084006, - "y": 252.2876431390582 + "x": 285.76159, + "y": 252.28764 }, { "body": null, "index": 2, "isInternal": false, - "x": 281.5155898108401, - "y": 260.3756431390582 + "x": 281.51559, + "y": 260.37564 }, { "body": null, "index": 3, "isInternal": false, - "x": 275.45858981084007, - "y": 267.21364313905815 + "x": 275.45859, + "y": 267.21364 }, { "body": null, "index": 4, "isInternal": false, - "x": 267.94058981084004, - "y": 272.40264313905817 + "x": 267.94059, + "y": 272.40264 }, { "body": null, "index": 5, "isInternal": false, - "x": 259.3995898108401, - "y": 275.64164313905815 + "x": 259.39959, + "y": 275.64164 }, { "body": null, "index": 6, "isInternal": false, - "x": 250.33158981084006, - "y": 276.74264313905815 + "x": 250.33159, + "y": 276.74264 }, { "body": null, "index": 7, "isInternal": false, - "x": 241.26358981084005, - "y": 275.64164313905815 + "x": 241.26359, + "y": 275.64164 }, { "body": null, "index": 8, "isInternal": false, - "x": 232.72258981084005, - "y": 272.40264313905817 + "x": 232.72259, + "y": 272.40264 }, { "body": null, "index": 9, "isInternal": false, - "x": 225.20458981084005, - "y": 267.21364313905815 + "x": 225.20459, + "y": 267.21364 }, { "body": null, "index": 10, "isInternal": false, - "x": 219.14758981084006, - "y": 260.3756431390582 + "x": 219.14759, + "y": 260.37564 }, { "body": null, "index": 11, "isInternal": false, - "x": 214.90158981084005, - "y": 252.2876431390582 + "x": 214.90159, + "y": 252.28764 }, { "body": null, "index": 12, "isInternal": false, - "x": 212.71558981084007, - "y": 243.41764313905819 + "x": 212.71559, + "y": 243.41764 }, { "body": null, "index": 13, "isInternal": false, - "x": 212.71558981084007, - "y": 234.28364313905817 + "x": 212.71559, + "y": 234.28364 }, { "body": null, "index": 14, "isInternal": false, - "x": 214.90158981084005, - "y": 225.41364313905817 + "x": 214.90159, + "y": 225.41364 }, { "body": null, "index": 15, "isInternal": false, - "x": 219.14758981084006, - "y": 217.32564313905817 + "x": 219.14759, + "y": 217.32564 }, { "body": null, "index": 16, "isInternal": false, - "x": 225.20458981084005, - "y": 210.48764313905818 + "x": 225.20459, + "y": 210.48764 }, { "body": null, "index": 17, "isInternal": false, - "x": 232.72258981084005, - "y": 205.29864313905819 + "x": 232.72259, + "y": 205.29864 }, { "body": null, "index": 18, "isInternal": false, - "x": 241.26358981084005, - "y": 202.05964313905818 + "x": 241.26359, + "y": 202.05964 }, { "body": null, "index": 19, "isInternal": false, - "x": 250.33158981084006, - "y": 200.95864313905818 + "x": 250.33159, + "y": 200.95864 }, { "body": null, "index": 20, "isInternal": false, - "x": 259.3995898108401, - "y": 202.05964313905818 + "x": 259.39959, + "y": 202.05964 }, { "body": null, "index": 21, "isInternal": false, - "x": 267.94058981084004, - "y": 205.29864313905819 + "x": 267.94059, + "y": 205.29864 }, { "body": null, "index": 22, "isInternal": false, - "x": 275.45858981084007, - "y": 210.48764313905818 + "x": 275.45859, + "y": 210.48764 }, { "body": null, "index": 23, "isInternal": false, - "x": 281.5155898108401, - "y": 217.32564313905817 + "x": 281.51559, + "y": 217.32564 }, { "body": null, "index": 24, "isInternal": false, - "x": 285.76158981084006, - "y": 225.41364313905817 + "x": 285.76159, + "y": 225.41364 }, { "body": null, "index": 25, "isInternal": false, - "x": 287.94758981084004, - "y": 234.28364313905817 + "x": 287.94759, + "y": 234.28364 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2150.621595245249, + "area": 2150.6216, "axes": { "#": 1178 }, @@ -10517,13 +10517,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 3103.359772962483, - "inverseInertia": 0.00032223141148903753, - "inverseMass": 0.4649818462768498, + "inertia": 3103.35977, + "inverseInertia": 0.00032, + "inverseMass": 0.46498, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.150621595245249, + "mass": 2.15062, "motion": 0, "parent": null, "position": { @@ -10579,12 +10579,12 @@ } }, { - "x": 331.76210455706774, - "y": 250.04332678103347 + "x": 331.7621, + "y": 250.04333 }, { - "x": 287.94758981084004, - "y": 200.95864313905818 + "x": 287.94759, + "y": 200.95864 }, { "category": 1, @@ -10601,16 +10601,16 @@ "y": 0 }, { - "x": 309.8548471839539, - "y": 225.50098496004583 + "x": 309.85485, + "y": 225.50098 }, { "x": 0, "y": 0 }, { - "x": 309.8548471839539, - "y": 225.50098496004583 + "x": 309.85485, + "y": 225.50098 }, { "fillStyle": "#FF6B6B", @@ -10647,29 +10647,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 287.94758981084004, - "y": 200.95864313905818 + "x": 287.94759, + "y": 200.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 331.76210455706774, - "y": 200.95864313905818 + "x": 331.7621, + "y": 200.95864 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.76210455706774, - "y": 250.04332678103347 + "x": 331.7621, + "y": 250.04333 }, { "body": null, "index": 3, "isInternal": false, - "x": 287.94758981084004, - "y": 250.04332678103347 + "x": 287.94759, + "y": 250.04333 }, { "angle": 0, @@ -10684,7 +10684,7 @@ "#": 1213 }, "chamfer": "", - "circleRadius": 30.286243998628258, + "circleRadius": 30.28624, "collisionFilter": { "#": 1216 }, @@ -10699,13 +10699,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 5184.355561525051, - "inverseInertia": 0.0001928880047158332, - "inverseMass": 0.3504263983158311, + "inertia": 5184.35556, + "inverseInertia": 0.00019, + "inverseMass": 0.35043, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.85366629, + "mass": 2.85367, "motion": 0, "parent": null, "position": { @@ -10778,52 +10778,52 @@ } ], { - "x": -0.9709507779118274, - "y": -0.2392793072382511 + "x": -0.97095, + "y": -0.23928 }, { - "x": -0.8854613092871422, - "y": -0.4647131047813263 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7484813473909255, - "y": -0.6631558433791145 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5680626153308821, - "y": -0.8229853370889656 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.3545881737623323, - "y": -0.9350225810256638 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.1205276998806746, - "y": -0.9927099644717353 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.1205276998806746, - "y": -0.9927099644717353 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.3545881737623323, - "y": -0.9350225810256638 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680626153308821, - "y": -0.8229853370889656 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7484813473909255, - "y": -0.6631558433791145 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8854613092871422, - "y": -0.4647131047813263 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709507779118274, - "y": -0.2392793072382511 + "x": 0.97095, + "y": -0.23928 }, { "x": 1, @@ -10838,12 +10838,12 @@ } }, { - "x": 391.89210455706774, - "y": 261.53064313905816 + "x": 391.8921, + "y": 261.53064 }, { - "x": 331.76210455706774, - "y": 200.95864313905818 + "x": 331.7621, + "y": 200.95864 }, { "category": 1, @@ -10860,16 +10860,16 @@ "y": 0 }, { - "x": 361.82710455706774, - "y": 231.24464313905818 + "x": 361.8271, + "y": 231.24464 }, { "x": 0, "y": 0 }, { - "x": 361.82710455706774, - "y": 231.24464313905818 + "x": 361.8271, + "y": 231.24464 }, { "fillStyle": "#C44D58", @@ -10972,190 +10972,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.89210455706774, - "y": 234.8956431390582 + "x": 391.8921, + "y": 234.89564 }, { "body": null, "index": 1, "isInternal": false, - "x": 390.1451045570677, - "y": 241.9846431390582 + "x": 390.1451, + "y": 241.98464 }, { "body": null, "index": 2, "isInternal": false, - "x": 386.75210455706775, - "y": 248.4496431390582 + "x": 386.7521, + "y": 248.44964 }, { "body": null, "index": 3, "isInternal": false, - "x": 381.91010455706777, - "y": 253.91464313905817 + "x": 381.9101, + "y": 253.91464 }, { "body": null, "index": 4, "isInternal": false, - "x": 375.90210455706773, - "y": 258.0616431390582 + "x": 375.9021, + "y": 258.06164 }, { "body": null, "index": 5, "isInternal": false, - "x": 369.07510455706773, - "y": 260.65064313905816 + "x": 369.0751, + "y": 260.65064 }, { "body": null, "index": 6, "isInternal": false, - "x": 361.82710455706774, - "y": 261.53064313905816 + "x": 361.8271, + "y": 261.53064 }, { "body": null, "index": 7, "isInternal": false, - "x": 354.57910455706775, - "y": 260.65064313905816 + "x": 354.5791, + "y": 260.65064 }, { "body": null, "index": 8, "isInternal": false, - "x": 347.75210455706775, - "y": 258.0616431390582 + "x": 347.7521, + "y": 258.06164 }, { "body": null, "index": 9, "isInternal": false, - "x": 341.7441045570677, - "y": 253.91464313905817 + "x": 341.7441, + "y": 253.91464 }, { "body": null, "index": 10, "isInternal": false, - "x": 336.90210455706773, - "y": 248.4496431390582 + "x": 336.9021, + "y": 248.44964 }, { "body": null, "index": 11, "isInternal": false, - "x": 333.50910455706776, - "y": 241.9846431390582 + "x": 333.5091, + "y": 241.98464 }, { "body": null, "index": 12, "isInternal": false, - "x": 331.76210455706774, - "y": 234.8956431390582 + "x": 331.7621, + "y": 234.89564 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.76210455706774, - "y": 227.59364313905817 + "x": 331.7621, + "y": 227.59364 }, { "body": null, "index": 14, "isInternal": false, - "x": 333.50910455706776, - "y": 220.50464313905817 + "x": 333.5091, + "y": 220.50464 }, { "body": null, "index": 15, "isInternal": false, - "x": 336.90210455706773, - "y": 214.03964313905817 + "x": 336.9021, + "y": 214.03964 }, { "body": null, "index": 16, "isInternal": false, - "x": 341.7441045570677, - "y": 208.5746431390582 + "x": 341.7441, + "y": 208.57464 }, { "body": null, "index": 17, "isInternal": false, - "x": 347.75210455706775, - "y": 204.42764313905818 + "x": 347.7521, + "y": 204.42764 }, { "body": null, "index": 18, "isInternal": false, - "x": 354.57910455706775, - "y": 201.83864313905818 + "x": 354.5791, + "y": 201.83864 }, { "body": null, "index": 19, "isInternal": false, - "x": 361.82710455706774, - "y": 200.95864313905818 + "x": 361.8271, + "y": 200.95864 }, { "body": null, "index": 20, "isInternal": false, - "x": 369.07510455706773, - "y": 201.83864313905818 + "x": 369.0751, + "y": 201.83864 }, { "body": null, "index": 21, "isInternal": false, - "x": 375.90210455706773, - "y": 204.42764313905818 + "x": 375.9021, + "y": 204.42764 }, { "body": null, "index": 22, "isInternal": false, - "x": 381.91010455706777, - "y": 208.5746431390582 + "x": 381.9101, + "y": 208.57464 }, { "body": null, "index": 23, "isInternal": false, - "x": 386.75210455706775, - "y": 214.03964313905817 + "x": 386.7521, + "y": 214.03964 }, { "body": null, "index": 24, "isInternal": false, - "x": 390.1451045570677, - "y": 220.50464313905817 + "x": 390.1451, + "y": 220.50464 }, { "body": null, "index": 25, "isInternal": false, - "x": 391.89210455706774, - "y": 227.59364313905817 + "x": 391.8921, + "y": 227.59364 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1365.5999734968448, + "area": 1365.59997, "axes": { "#": 1253 }, @@ -11177,13 +11177,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1298.9605101084082, - "inverseInertia": 0.0007698463442253086, - "inverseMass": 0.732278865998609, + "inertia": 1298.96051, + "inverseInertia": 0.00077, + "inverseMass": 0.73228, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3655999734968447, + "mass": 1.3656, "motion": 0, "parent": null, "position": { @@ -11239,12 +11239,12 @@ } }, { - "x": 423.7260594610458, - "y": 243.85623401697316 + "x": 423.72606, + "y": 243.85623 }, { - "x": 391.89210455706774, - "y": 200.95864313905818 + "x": 391.8921, + "y": 200.95864 }, { "category": 1, @@ -11261,16 +11261,16 @@ "y": 0 }, { - "x": 407.80908200905674, - "y": 222.40743857801567 + "x": 407.80908, + "y": 222.40744 }, { "x": 0, "y": 0 }, { - "x": 407.80908200905674, - "y": 222.40743857801567 + "x": 407.80908, + "y": 222.40744 }, { "fillStyle": "#C44D58", @@ -11307,36 +11307,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.89210455706774, - "y": 200.95864313905818 + "x": 391.8921, + "y": 200.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 423.7260594610458, - "y": 200.95864313905818 + "x": 423.72606, + "y": 200.95864 }, { "body": null, "index": 2, "isInternal": false, - "x": 423.7260594610458, - "y": 243.85623401697316 + "x": 423.72606, + "y": 243.85623 }, { "body": null, "index": 3, "isInternal": false, - "x": 391.89210455706774, - "y": 243.85623401697316 + "x": 391.8921, + "y": 243.85623 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1818.1655641659895, + "area": 1818.16556, "axes": { "#": 1274 }, @@ -11358,13 +11358,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 2264.6113640186218, - "inverseInertia": 0.00044157687093182715, - "inverseMass": 0.5500049168837436, + "inertia": 2264.61136, + "inverseInertia": 0.00044, + "inverseMass": 0.55, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8181655641659895, + "mass": 1.81817, "motion": 0, "parent": null, "position": { @@ -11420,12 +11420,12 @@ } }, { - "x": 461.6512995159155, - "y": 248.89942246004583 + "x": 461.6513, + "y": 248.89942 }, { - "x": 423.7260594610458, - "y": 200.95864313905818 + "x": 423.72606, + "y": 200.95864 }, { "category": 1, @@ -11442,16 +11442,16 @@ "y": 0 }, { - "x": 442.68867948848066, - "y": 224.929032799552 + "x": 442.68868, + "y": 224.92903 }, { "x": 0, "y": 0 }, { - "x": 442.68867948848066, - "y": 224.929032799552 + "x": 442.68868, + "y": 224.92903 }, { "fillStyle": "#556270", @@ -11488,36 +11488,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 423.7260594610458, - "y": 200.95864313905818 + "x": 423.72606, + "y": 200.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.6512995159155, - "y": 200.95864313905818 + "x": 461.6513, + "y": 200.95864 }, { "body": null, "index": 2, "isInternal": false, - "x": 461.6512995159155, - "y": 248.89942246004583 + "x": 461.6513, + "y": 248.89942 }, { "body": null, "index": 3, "isInternal": false, - "x": 423.7260594610458, - "y": 248.89942246004583 + "x": 423.72606, + "y": 248.89942 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1013.362993496838, + "area": 1013.36299, "axes": { "#": 1295 }, @@ -11539,13 +11539,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 687.3887813315329, - "inverseInertia": 0.001454780798230241, - "inverseMass": 0.9868132213406314, + "inertia": 687.38878, + "inverseInertia": 0.00145, + "inverseMass": 0.98681, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.013362993496838, + "mass": 1.01336, "motion": 0, "parent": null, "position": { @@ -11601,12 +11601,12 @@ } }, { - "x": 492.08114776694435, - "y": 234.26025493604035 + "x": 492.08115, + "y": 234.26025 }, { - "x": 461.6512995159155, - "y": 200.95864313905818 + "x": 461.6513, + "y": 200.95864 }, { "category": 1, @@ -11623,16 +11623,16 @@ "y": 0 }, { - "x": 476.86622364142994, - "y": 217.60944903754927 + "x": 476.86622, + "y": 217.60945 }, { "x": 0, "y": 0 }, { - "x": 476.86622364142994, - "y": 217.60944903754927 + "x": 476.86622, + "y": 217.60945 }, { "fillStyle": "#FF6B6B", @@ -11669,36 +11669,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 461.6512995159155, - "y": 200.95864313905818 + "x": 461.6513, + "y": 200.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 492.08114776694435, - "y": 200.95864313905818 + "x": 492.08115, + "y": 200.95864 }, { "body": null, "index": 2, "isInternal": false, - "x": 492.08114776694435, - "y": 234.26025493604035 + "x": 492.08115, + "y": 234.26025 }, { "body": null, "index": 3, "isInternal": false, - "x": 461.6512995159155, - "y": 234.26025493604035 + "x": 461.6513, + "y": 234.26025 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1150.5899172961686, + "area": 1150.58992, "axes": { "#": 1316 }, @@ -11720,13 +11720,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 958.5119663079198, - "inverseInertia": 0.0010432837931610675, - "inverseMass": 0.8691193838634986, + "inertia": 958.51197, + "inverseInertia": 0.00104, + "inverseMass": 0.86912, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1505899172961687, + "mass": 1.15059, "motion": 0, "parent": null, "position": { @@ -11782,12 +11782,12 @@ } }, { - "x": 533.7591741729801, - "y": 228.56527465483322 + "x": 533.75917, + "y": 228.56527 }, { - "x": 492.0811477669444, - "y": 200.95864313905818 + "x": 492.08115, + "y": 200.95864 }, { "category": 1, @@ -11804,16 +11804,16 @@ "y": 0 }, { - "x": 512.9201609699622, - "y": 214.7619588969457 + "x": 512.92016, + "y": 214.76196 }, { "x": 0, "y": 0 }, { - "x": 512.9201609699622, - "y": 214.7619588969457 + "x": 512.92016, + "y": 214.76196 }, { "fillStyle": "#C44D58", @@ -11850,36 +11850,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 492.0811477669444, - "y": 200.95864313905818 + "x": 492.08115, + "y": 200.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 533.7591741729801, - "y": 200.95864313905818 + "x": 533.75917, + "y": 200.95864 }, { "body": null, "index": 2, "isInternal": false, - "x": 533.7591741729801, - "y": 228.56527465483322 + "x": 533.75917, + "y": 228.56527 }, { "body": null, "index": 3, "isInternal": false, - "x": 492.0811477669444, - "y": 228.56527465483322 + "x": 492.08115, + "y": 228.56527 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3070.122224999999, + "area": 3070.12222, "axes": { "#": 1337 }, @@ -11901,13 +11901,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 6102.402752435917, - "inverseInertia": 0.00016386987889333043, - "inverseMass": 0.32571993123172815, + "inertia": 6102.40275, + "inverseInertia": 0.00016, + "inverseMass": 0.32572, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.070122224999999, + "mass": 3.07012, "motion": 0, "parent": null, "position": { @@ -11956,20 +11956,20 @@ } ], { - "x": 0.30900310206539655, - "y": 0.9510610300679774 + "x": 0.309, + "y": 0.95106 }, { - "x": -0.8090123890471207, - "y": 0.5877915909302124 + "x": -0.80901, + "y": 0.58779 }, { - "x": -0.8090123890471207, - "y": -0.5877915909302124 + "x": -0.80901, + "y": -0.58779 }, { - "x": 0.30900310206539655, - "y": -0.9510610300679774 + "x": 0.309, + "y": -0.95106 }, { "x": 1, @@ -11984,12 +11984,12 @@ } }, { - "x": 595.3325851846472, - "y": 269.3086431390582 + "x": 595.33259, + "y": 269.30864 }, { - "x": 530.3275851846472, - "y": 200.95864313905818 + "x": 530.32759, + "y": 200.95864 }, { "category": 1, @@ -12006,16 +12006,16 @@ "y": 0 }, { - "x": 566.2616741729801, - "y": 235.13364313905817 + "x": 566.26167, + "y": 235.13364 }, { "x": 0, "y": 0 }, { - "x": 566.2616741729801, - "y": 235.13364313905817 + "x": 566.26167, + "y": 235.13364 }, { "fillStyle": "#556270", @@ -12055,43 +12055,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 595.3325851846472, - "y": 256.2556431390582 + "x": 595.33259, + "y": 256.25564 }, { "body": null, "index": 1, "isInternal": false, - "x": 555.1575851846472, - "y": 269.3086431390582 + "x": 555.15759, + "y": 269.30864 }, { "body": null, "index": 2, "isInternal": false, - "x": 530.3275851846472, - "y": 235.13364313905817 + "x": 530.32759, + "y": 235.13364 }, { "body": null, "index": 3, "isInternal": false, - "x": 555.1575851846472, - "y": 200.95864313905818 + "x": 555.15759, + "y": 200.95864 }, { "body": null, "index": 4, "isInternal": false, - "x": 595.3325851846472, - "y": 214.01164313905818 + "x": 595.33259, + "y": 214.01164 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1289.2729575874455, + "area": 1289.27296, "axes": { "#": 1362 }, @@ -12112,13 +12112,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1245.9739295541528, - "inverseInertia": 0.0008025850110345649, - "inverseMass": 0.7756309430946662, + "inertia": 1245.97393, + "inverseInertia": 0.0008, + "inverseMass": 0.77563, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2892729575874455, + "mass": 1.28927, "motion": 0, "parent": null, "position": { @@ -12176,36 +12176,36 @@ } ], { - "x": 0.9770171932916059, - "y": 0.21316051232016 + "x": 0.97702, + "y": 0.21316 }, { - "x": 0.799444693536244, - "y": 0.6007396956891904 + "x": 0.79944, + "y": 0.60074 }, { - "x": 0.4765734276771625, - "y": 0.8791346700204926 + "x": 0.47657, + "y": 0.87913 }, { - "x": 0.012266683251741968, - "y": 0.9999247614105781 + "x": 0.01227, + "y": 0.99992 }, { - "x": -0.21316051232015995, - "y": 0.9770171932916059 + "x": -0.21316, + "y": 0.97702 }, { - "x": -0.6007396956891901, - "y": 0.7994446935362443 + "x": -0.60074, + "y": 0.79944 }, { - "x": -0.8791346700204927, - "y": 0.4765734276771623 + "x": -0.87913, + "y": 0.47657 }, { - "x": -0.9993670806623404, - "y": 0.03557299661865815 + "x": -0.99937, + "y": 0.03557 }, { "max": { @@ -12216,12 +12216,12 @@ } }, { - "x": 644.735663031012, - "y": 229.26872115689085 + "x": 644.73566, + "y": 229.26872 }, { - "x": 595.3325851846472, - "y": 200.95864313905818 + "x": 595.33259, + "y": 200.95864 }, { "category": 1, @@ -12238,16 +12238,16 @@ "y": 0 }, { - "x": 620.0341241078296, - "y": 215.11368214797452 + "x": 620.03412, + "y": 215.11368 }, { "x": 0, "y": 0 }, { - "x": 620.0341241078296, - "y": 215.11368214797452 + "x": 620.03412, + "y": 215.11368 }, { "fillStyle": "#FF6B6B", @@ -12320,120 +12320,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 595.3325851846472, - "y": 210.95864313905818 + "x": 595.33259, + "y": 210.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.241333264899, - "y": 206.7934134297053 + "x": 596.24133, + "y": 206.79341 }, { "body": null, "index": 2, "isInternal": false, - "x": 598.8024128909823, - "y": 203.38521262078893 + "x": 598.80241, + "y": 203.38521 }, { "body": null, "index": 3, "isInternal": false, - "x": 602.550348824182, - "y": 201.35347990075218 + "x": 602.55035, + "y": 201.35348 }, { "body": null, "index": 4, "isInternal": false, - "x": 634.735663031012, - "y": 200.95864313905818 + "x": 634.73566, + "y": 200.95864 }, { "body": null, "index": 5, "isInternal": false, - "x": 638.900892740365, - "y": 201.86739121931006 + "x": 638.90089, + "y": 201.86739 }, { "body": null, "index": 6, "isInternal": false, - "x": 642.3090935492813, - "y": 204.42847084539335 + "x": 642.30909, + "y": 204.42847 }, { "body": null, "index": 7, "isInternal": false, - "x": 644.3408262693181, - "y": 208.17640677859302 + "x": 644.34083, + "y": 208.17641 }, { "body": null, "index": 8, "isInternal": false, - "x": 644.735663031012, - "y": 219.26872115689085 + "x": 644.73566, + "y": 219.26872 }, { "body": null, "index": 9, "isInternal": false, - "x": 643.8269149507602, - "y": 223.43395086624372 + "x": 643.82691, + "y": 223.43395 }, { "body": null, "index": 10, "isInternal": false, - "x": 641.2658353246769, - "y": 226.8421516751601 + "x": 641.26584, + "y": 226.84215 }, { "body": null, "index": 11, "isInternal": false, - "x": 637.5178993914773, - "y": 228.87388439519685 + "x": 637.5179, + "y": 228.87388 }, { "body": null, "index": 12, "isInternal": false, - "x": 605.3325851846472, - "y": 229.26872115689085 + "x": 605.33259, + "y": 229.26872 }, { "body": null, "index": 13, "isInternal": false, - "x": 601.1673554752942, - "y": 228.35997307663897 + "x": 601.16736, + "y": 228.35997 }, { "body": null, "index": 14, "isInternal": false, - "x": 597.7591546663779, - "y": 225.79889345055568 + "x": 597.75915, + "y": 225.79889 }, { "body": null, "index": 15, "isInternal": false, - "x": 595.7274219463411, - "y": 222.050957517356 + "x": 595.72742, + "y": 222.05096 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1558.1253951107035, + "area": 1558.1254, "axes": { "#": 1401 }, @@ -12455,13 +12455,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1636.3880205903727, - "inverseInertia": 0.0006111020047917621, - "inverseMass": 0.6417968689413157, + "inertia": 1636.38802, + "inverseInertia": 0.00061, + "inverseMass": 0.6418, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5581253951107035, + "mass": 1.55813, "motion": 0, "parent": null, "position": { @@ -12517,12 +12517,12 @@ } }, { - "x": 681.3835754109845, - "y": 243.4747182419388 + "x": 681.38358, + "y": 243.47472 }, { - "x": 644.735663031012, - "y": 200.95864313905815 + "x": 644.73566, + "y": 200.95864 }, { "category": 1, @@ -12539,16 +12539,16 @@ "y": 0 }, { - "x": 663.0596192209982, - "y": 222.2166806904985 + "x": 663.05962, + "y": 222.21668 }, { "x": 0, "y": 0 }, { - "x": 663.0596192209982, - "y": 222.2166806904985 + "x": 663.05962, + "y": 222.21668 }, { "fillStyle": "#C44D58", @@ -12585,36 +12585,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 644.735663031012, - "y": 200.95864313905815 + "x": 644.73566, + "y": 200.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 681.3835754109845, - "y": 200.95864313905815 + "x": 681.38358, + "y": 200.95864 }, { "body": null, "index": 2, "isInternal": false, - "x": 681.3835754109845, - "y": 243.4747182419388 + "x": 681.38358, + "y": 243.47472 }, { "body": null, "index": 3, "isInternal": false, - "x": 644.735663031012, - "y": 243.4747182419388 + "x": 644.73566, + "y": 243.47472 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3629.791971, + "area": 3629.79197, "axes": { "#": 1422 }, @@ -12636,13 +12636,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 8421.130427783828, - "inverseInertia": 0.00011874890296208937, - "inverseMass": 0.2754978819693907, + "inertia": 8421.13043, + "inverseInertia": 0.00012, + "inverseMass": 0.2755, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.6297919710000004, + "mass": 3.62979, "motion": 0, "parent": null, "position": { @@ -12697,28 +12697,28 @@ } ], { - "x": 0.6234981676733052, - "y": 0.7818248108803091 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.22253182288154505, - "y": 0.9749254267917197 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009668551215138, - "y": 0.4338879186753755 + "x": -0.90097, + "y": 0.43389 }, { - "x": -0.9009668551215138, - "y": -0.4338879186753755 + "x": -0.90097, + "y": -0.43389 }, { - "x": -0.22253182288154505, - "y": -0.9749254267917197 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6234981676733052, - "y": -0.7818248108803091 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -12733,12 +12733,12 @@ } }, { - "x": 748.8152138572083, - "y": 271.97464313905823 + "x": 748.81521, + "y": 271.97464 }, { - "x": 679.5802138572083, - "y": 200.95864313905818 + "x": 679.58021, + "y": 200.95864 }, { "category": 1, @@ -12755,16 +12755,16 @@ "y": 0 }, { - "x": 716.0010754109844, - "y": 236.4666431390582 + "x": 716.00108, + "y": 236.46664 }, { "x": 0, "y": 0 }, { - "x": 716.0010754109844, - "y": 236.4666431390582 + "x": 716.00108, + "y": 236.46664 }, { "fillStyle": "#4ECDC4", @@ -12810,57 +12810,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 748.8152138572083, - "y": 252.26864313905818 + "x": 748.81521, + "y": 252.26864 }, { "body": null, "index": 1, "isInternal": false, - "x": 724.1052138572082, - "y": 271.97464313905823 + "x": 724.10521, + "y": 271.97464 }, { "body": null, "index": 2, "isInternal": false, - "x": 693.2932138572082, - "y": 264.9416431390582 + "x": 693.29321, + "y": 264.94164 }, { "body": null, "index": 3, "isInternal": false, - "x": 679.5802138572083, - "y": 236.4666431390582 + "x": 679.58021, + "y": 236.46664 }, { "body": null, "index": 4, "isInternal": false, - "x": 693.2932138572082, - "y": 207.9916431390582 + "x": 693.29321, + "y": 207.99164 }, { "body": null, "index": 5, "isInternal": false, - "x": 724.1052138572082, - "y": 200.95864313905818 + "x": 724.10521, + "y": 200.95864 }, { "body": null, "index": 6, "isInternal": false, - "x": 748.8152138572083, - "y": 220.6646431390582 + "x": 748.81521, + "y": 220.66464 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1408.6913580494604, + "area": 1408.69136, "axes": { "#": 1451 }, @@ -12881,13 +12881,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1303.4279840613233, - "inverseInertia": 0.0007672077109194184, - "inverseMass": 0.7098787071318777, + "inertia": 1303.42798, + "inverseInertia": 0.00077, + "inverseMass": 0.70988, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4086913580494604, + "mass": 1.40869, "motion": 0, "parent": null, "position": { @@ -12945,36 +12945,36 @@ } ], { - "x": 0.9770171932916056, - "y": 0.21316051232015978 + "x": 0.97702, + "y": 0.21316 }, { - "x": 0.7994446935362434, - "y": 0.6007396956891912 + "x": 0.79944, + "y": 0.60074 }, { - "x": 0.4765734276771625, - "y": 0.8791346700204926 + "x": 0.47657, + "y": 0.87913 }, { - "x": 0.021059236201301092, - "y": 0.9997782296942747 + "x": 0.02106, + "y": 0.99978 }, { - "x": -0.21316051232015995, - "y": 0.9770171932916059 + "x": -0.21316, + "y": 0.97702 }, { - "x": -0.6007396956891905, - "y": 0.7994446935362437 + "x": -0.60074, + "y": 0.79944 }, { - "x": -0.8791346700204924, - "y": 0.4765734276771626 + "x": -0.87913, + "y": 0.47657 }, { - "x": -0.9998752932213341, - "y": 0.015792340091048476 + "x": -0.99988, + "y": 0.01579 }, { "max": { @@ -12985,12 +12985,12 @@ } }, { - "x": 784.7776838503495, - "y": 243.17507832424334 + "x": 784.77768, + "y": 243.17508 }, { - "x": 748.8152138572083, - "y": 200.95864313905818 + "x": 748.81521, + "y": 200.95864 }, { "category": 1, @@ -13007,16 +13007,16 @@ "y": 0 }, { - "x": 766.7964488537789, - "y": 222.06686073165076 + "x": 766.79645, + "y": 222.06686 }, { "x": 0, "y": 0 }, { - "x": 766.7964488537789, - "y": 222.06686073165076 + "x": 766.79645, + "y": 222.06686 }, { "fillStyle": "#C7F464", @@ -13089,120 +13089,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 748.8152138572083, - "y": 210.95864313905818 + "x": 748.81521, + "y": 210.95864 }, { "body": null, "index": 1, "isInternal": false, - "x": 749.7239619374601, - "y": 206.7934134297053 + "x": 749.72396, + "y": 206.79341 }, { "body": null, "index": 2, "isInternal": false, - "x": 752.2850415635434, - "y": 203.3852126207889 + "x": 752.28504, + "y": 203.38521 }, { "body": null, "index": 3, "isInternal": false, - "x": 756.032977496743, - "y": 201.35347990075215 + "x": 756.03298, + "y": 201.35348 }, { "body": null, "index": 4, "isInternal": false, - "x": 774.7776838503495, - "y": 200.95864313905818 + "x": 774.77768, + "y": 200.95864 }, { "body": null, "index": 5, "isInternal": false, - "x": 778.9429135597024, - "y": 201.86739121931004 + "x": 778.94291, + "y": 201.86739 }, { "body": null, "index": 6, "isInternal": false, - "x": 782.3511143686188, - "y": 204.42847084539332 + "x": 782.35111, + "y": 204.42847 }, { "body": null, "index": 7, "isInternal": false, - "x": 784.3828470886556, - "y": 208.176406778593 + "x": 784.38285, + "y": 208.17641 }, { "body": null, "index": 8, "isInternal": false, - "x": 784.7776838503495, - "y": 233.17507832424334 + "x": 784.77768, + "y": 233.17508 }, { "body": null, "index": 9, "isInternal": false, - "x": 783.8689357700977, - "y": 237.34030803359624 + "x": 783.86894, + "y": 237.34031 }, { "body": null, "index": 10, "isInternal": false, - "x": 781.3078561440144, - "y": 240.74850884251262 + "x": 781.30786, + "y": 240.74851 }, { "body": null, "index": 11, "isInternal": false, - "x": 777.5599202108148, - "y": 242.78024156254938 + "x": 777.55992, + "y": 242.78024 }, { "body": null, "index": 12, "isInternal": false, - "x": 758.8152138572083, - "y": 243.17507832424334 + "x": 758.81521, + "y": 243.17508 }, { "body": null, "index": 13, "isInternal": false, - "x": 754.6499841478553, - "y": 242.2663302439915 + "x": 754.64998, + "y": 242.26633 }, { "body": null, "index": 14, "isInternal": false, - "x": 751.241783338939, - "y": 239.7052506179082 + "x": 751.24178, + "y": 239.70525 }, { "body": null, "index": 15, "isInternal": false, - "x": 749.2100506189022, - "y": 235.95731468470854 + "x": 749.21005, + "y": 235.95731 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 968.997894652155, + "area": 968.99789, "axes": { "#": 1490 }, @@ -13224,13 +13224,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 632.1170940384557, - "inverseInertia": 0.0015819853780748472, - "inverseMass": 1.0319939862810268, + "inertia": 632.11709, + "inverseInertia": 0.00158, + "inverseMass": 1.03199, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.968997894652155, + "mass": 0.969, "motion": 0, "parent": null, "position": { @@ -13286,12 +13286,12 @@ } }, { - "x": 53.38605967078189, - "y": 305.7666700594971 + "x": 53.38606, + "y": 305.76667 }, { "x": 20, - "y": 276.74264313905815 + "y": 276.74264 }, { "category": 1, @@ -13308,16 +13308,16 @@ "y": 0 }, { - "x": 36.693029835390945, - "y": 291.2546565992776 + "x": 36.69303, + "y": 291.25466 }, { "x": 0, "y": 0 }, { - "x": 36.693029835390945, - "y": 291.2546565992776 + "x": 36.69303, + "y": 291.25466 }, { "fillStyle": "#4ECDC4", @@ -13355,35 +13355,35 @@ "index": 0, "isInternal": false, "x": 20, - "y": 276.74264313905815 + "y": 276.74264 }, { "body": null, "index": 1, "isInternal": false, - "x": 53.38605967078189, - "y": 276.74264313905815 + "x": 53.38606, + "y": 276.74264 }, { "body": null, "index": 2, "isInternal": false, - "x": 53.38605967078189, - "y": 305.7666700594971 + "x": 53.38606, + "y": 305.76667 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 305.7666700594971 + "y": 305.76667 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.2142076873033, + "area": 2799.21421, "axes": { "#": 1511 }, @@ -13404,13 +13404,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 5133.714051104223, - "inverseInertia": 0.00019479074799363, - "inverseMass": 0.3572431138902353, + "inertia": 5133.71405, + "inverseInertia": 0.00019, + "inverseMass": 0.35724, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.7992142076873034, + "mass": 2.79921, "motion": 0, "parent": null, "position": { @@ -13468,36 +13468,36 @@ } ], { - "x": -0.9770171932916059, - "y": -0.21316051232016 + "x": -0.97702, + "y": -0.21316 }, { - "x": -0.7994446935362444, - "y": -0.6007396956891898 + "x": -0.79944, + "y": -0.60074 }, { - "x": -0.4765734276771622, - "y": -0.8791346700204928 + "x": -0.47657, + "y": -0.87913 }, { - "x": -0.010721581935230895, - "y": -0.9999425221885537 + "x": -0.01072, + "y": -0.99994 }, { - "x": 0.21316051232016, - "y": -0.9770171932916059 + "x": 0.21316, + "y": -0.97702 }, { - "x": 0.6007396956891898, - "y": -0.7994446935362444 + "x": 0.60074, + "y": -0.79944 }, { - "x": 0.8791346700204928, - "y": -0.4765734276771622 + "x": 0.87913, + "y": -0.47657 }, { - "x": 0.9999425221885537, - "y": -0.010721581935230895 + "x": 0.99994, + "y": -0.01072 }, { "max": { @@ -13508,12 +13508,12 @@ } }, { - "x": 107.42805967078189, - "y": 330.7846431390582 + "x": 107.42806, + "y": 330.78464 }, { - "x": 53.38605967078189, - "y": 276.74264313905815 + "x": 53.38606, + "y": 276.74264 }, { "category": 1, @@ -13530,16 +13530,16 @@ "y": 0 }, { - "x": 80.40705967078189, - "y": 303.76364313905816 + "x": 80.40706, + "y": 303.76364 }, { "x": 0, "y": 0 }, { - "x": 80.40705967078189, - "y": 303.76364313905816 + "x": 80.40706, + "y": 303.76364 }, { "fillStyle": "#556270", @@ -13612,120 +13612,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 107.42805967078189, - "y": 320.7846431390582 + "x": 107.42806, + "y": 320.78464 }, { "body": null, "index": 1, "isInternal": false, - "x": 106.51931159053002, - "y": 324.949872848411 + "x": 106.51931, + "y": 324.94987 }, { "body": null, "index": 2, "isInternal": false, - "x": 103.95823196444674, - "y": 328.3580736573274 + "x": 103.95823, + "y": 328.35807 }, { "body": null, "index": 3, "isInternal": false, - "x": 100.21029603124707, - "y": 330.3898063773642 + "x": 100.2103, + "y": 330.38981 }, { "body": null, "index": 4, "isInternal": false, - "x": 63.38605967078189, - "y": 330.7846431390582 + "x": 63.38606, + "y": 330.78464 }, { "body": null, "index": 5, "isInternal": false, - "x": 59.22082996142902, - "y": 329.8758950588063 + "x": 59.22083, + "y": 329.8759 }, { "body": null, "index": 6, "isInternal": false, - "x": 55.81262915251264, - "y": 327.314815432723 + "x": 55.81263, + "y": 327.31482 }, { "body": null, "index": 7, "isInternal": false, - "x": 53.78089643247587, - "y": 323.56687949952334 + "x": 53.7809, + "y": 323.56688 }, { "body": null, "index": 8, "isInternal": false, - "x": 53.38605967078189, - "y": 286.74264313905815 + "x": 53.38606, + "y": 286.74264 }, { "body": null, "index": 9, "isInternal": false, - "x": 54.29480775103375, - "y": 282.5774134297053 + "x": 54.29481, + "y": 282.57741 }, { "body": null, "index": 10, "isInternal": false, - "x": 56.85588737711704, - "y": 279.1692126207889 + "x": 56.85589, + "y": 279.16921 }, { "body": null, "index": 11, "isInternal": false, - "x": 60.603823310316706, - "y": 277.13747990075217 + "x": 60.60382, + "y": 277.13748 }, { "body": null, "index": 12, "isInternal": false, - "x": 97.42805967078189, - "y": 276.74264313905815 + "x": 97.42806, + "y": 276.74264 }, { "body": null, "index": 13, "isInternal": false, - "x": 101.59328938013476, - "y": 277.65139121931 + "x": 101.59329, + "y": 277.65139 }, { "body": null, "index": 14, "isInternal": false, - "x": 105.00149018905114, - "y": 280.21247084539334 + "x": 105.00149, + "y": 280.21247 }, { "body": null, "index": 15, "isInternal": false, - "x": 107.03322290908791, - "y": 283.960406778593 + "x": 107.03322, + "y": 283.96041 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1295.0356940051904, + "area": 1295.03569, "axes": { "#": 1550 }, @@ -13747,13 +13747,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1143.53929922107, - "inverseInertia": 0.0008744780355875458, - "inverseMass": 0.7721794886651149, + "inertia": 1143.5393, + "inverseInertia": 0.00087, + "inverseMass": 0.77218, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2950356940051904, + "mass": 1.29504, "motion": 0, "parent": null, "position": { @@ -13809,12 +13809,12 @@ } }, { - "x": 147.45892386831275, - "y": 309.0935733516782 + "x": 147.45892, + "y": 309.09357 }, { - "x": 107.42805967078189, - "y": 276.74264313905815 + "x": 107.42806, + "y": 276.74264 }, { "category": 1, @@ -13831,16 +13831,16 @@ "y": 0 }, { - "x": 127.44349176954732, - "y": 292.91810824536816 + "x": 127.44349, + "y": 292.91811 }, { "x": 0, "y": 0 }, { - "x": 127.44349176954732, - "y": 292.91810824536816 + "x": 127.44349, + "y": 292.91811 }, { "fillStyle": "#556270", @@ -13877,36 +13877,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 107.42805967078189, - "y": 276.74264313905815 + "x": 107.42806, + "y": 276.74264 }, { "body": null, "index": 1, "isInternal": false, - "x": 147.45892386831275, - "y": 276.74264313905815 + "x": 147.45892, + "y": 276.74264 }, { "body": null, "index": 2, "isInternal": false, - "x": 147.45892386831275, - "y": 309.0935733516782 + "x": 147.45892, + "y": 309.09357 }, { "body": null, "index": 3, "isInternal": false, - "x": 107.42805967078189, - "y": 309.0935733516782 + "x": 107.42806, + "y": 309.09357 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4450.490944, + "area": 4450.49094, "axes": { "#": 1571 }, @@ -13928,13 +13928,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 13204.579761750676, - "inverseInertia": 0.00007573130065802405, - "inverseMass": 0.22469431183725153, + "inertia": 13204.57976, + "inverseInertia": 0.00008, + "inverseMass": 0.22469, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.450490944, + "mass": 4.45049, "motion": 0, "parent": null, "position": { @@ -13990,12 +13990,12 @@ } }, { - "x": 214.17092386831274, - "y": 343.45464313905813 + "x": 214.17092, + "y": 343.45464 }, { - "x": 147.45892386831275, - "y": 276.74264313905815 + "x": 147.45892, + "y": 276.74264 }, { "category": 1, @@ -14012,16 +14012,16 @@ "y": 0 }, { - "x": 180.81492386831275, - "y": 310.09864313905814 + "x": 180.81492, + "y": 310.09864 }, { "x": 0, "y": 0 }, { - "x": 180.81492386831275, - "y": 310.09864313905814 + "x": 180.81492, + "y": 310.09864 }, { "fillStyle": "#4ECDC4", @@ -14058,36 +14058,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.17092386831274, - "y": 343.45464313905813 + "x": 214.17092, + "y": 343.45464 }, { "body": null, "index": 1, "isInternal": false, - "x": 147.45892386831275, - "y": 343.45464313905813 + "x": 147.45892, + "y": 343.45464 }, { "body": null, "index": 2, "isInternal": false, - "x": 147.45892386831275, - "y": 276.74264313905815 + "x": 147.45892, + "y": 276.74264 }, { "body": null, "index": 3, "isInternal": false, - "x": 214.17092386831274, - "y": 276.74264313905815 + "x": 214.17092, + "y": 276.74264 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5038.307216146175, + "area": 5038.30722, "axes": { "#": 1592 }, @@ -14108,13 +14108,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 16255.679819965306, - "inverseInertia": 0.00006151695967656764, - "inverseMass": 0.1984793616386308, + "inertia": 16255.67982, + "inverseInertia": 0.00006, + "inverseMass": 0.19848, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.038307216146175, + "mass": 5.03831, "motion": 0, "parent": null, "position": { @@ -14184,52 +14184,52 @@ } ], { - "x": -0.9897638017130415, - "y": -0.14271515973626295 + "x": -0.98976, + "y": -0.14272 }, { - "x": -0.9091272822964028, - "y": -0.41651840845796567 + "x": -0.90913, + "y": -0.41652 }, { - "x": -0.7544237383793627, - "y": -0.6563877078142969 + "x": -0.75442, + "y": -0.65639 }, { - "x": -0.5044167476188847, - "y": -0.8634603318749429 + "x": -0.50442, + "y": -0.86346 }, { - "x": -0.3712936455239811, - "y": -0.9285154973362116 + "x": -0.37129, + "y": -0.92852 }, { - "x": -0.09384530787584071, - "y": -0.995586790887509 + "x": -0.09385, + "y": -0.99559 }, { - "x": 0.19124918307270655, - "y": -0.9815415171932477 + "x": 0.19125, + "y": -0.98154 }, { - "x": 0.4955976732703051, - "y": -0.8685522127362637 + "x": 0.4956, + "y": -0.86855 }, { - "x": 0.6184864671615099, - "y": -0.7857954504437364 + "x": 0.61849, + "y": -0.7858 }, { - "x": 0.8152862475384012, - "y": -0.5790581443816785 + "x": 0.81529, + "y": -0.57906 }, { - "x": 0.9456642763661172, - "y": -0.3251447007179235 + "x": 0.94566, + "y": -0.32514 }, { - "x": 0.999987037295899, - "y": -0.005091683431878638 + "x": 0.99999, + "y": -0.00509 }, { "max": { @@ -14240,12 +14240,12 @@ } }, { - "x": 290.84793994249037, - "y": 362.1641452568091 + "x": 290.84794, + "y": 362.16415 }, { - "x": 214.17092386831274, - "y": 276.74264313905815 + "x": 214.17092, + "y": 276.74264 }, { "category": 1, @@ -14262,16 +14262,16 @@ "y": 0 }, { - "x": 252.50943190540156, - "y": 319.4533941979336 + "x": 252.50943, + "y": 319.45339 }, { "x": 0, "y": 0 }, { - "x": 252.50943190540156, - "y": 319.4533941979336 + "x": 252.50943, + "y": 319.45339 }, { "fillStyle": "#FF6B6B", @@ -14368,176 +14368,176 @@ "body": null, "index": 0, "isInternal": false, - "x": 290.84793994249037, - "y": 335.8144012960544 + "x": 290.84794, + "y": 335.8144 }, { "body": null, "index": 1, "isInternal": false, - "x": 290.44058760611944, - "y": 338.63948727730735 + "x": 290.44059, + "y": 338.63949 }, { "body": null, "index": 2, "isInternal": false, - "x": 289.251717782196, - "y": 341.2344121835779 + "x": 289.25172, + "y": 341.23441 }, { "body": null, "index": 3, "isInternal": false, - "x": 287.37818825080325, - "y": 343.38776627021065 + "x": 287.37819, + "y": 343.38777 }, { "body": null, "index": 4, "isInternal": false, - "x": 257.509537843559, - "y": 360.83645144775943 + "x": 257.50954, + "y": 360.83645 }, { "body": null, "index": 5, "isInternal": false, - "x": 254.85918085150476, - "y": 361.8962729718405 + "x": 254.85918, + "y": 361.89627 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.0173753889191, - "y": 362.1641452568091 + "x": 252.01738, + "y": 362.16415 }, { "body": null, "index": 7, "isInternal": false, - "x": 249.21566079121152, - "y": 361.61824310327955 + "x": 249.21566, + "y": 361.61824 }, { "body": null, "index": 8, "isInternal": false, - "x": 219.17081793015535, - "y": 344.4745941696112 + "x": 219.17082, + "y": 344.47459 }, { "body": null, "index": 9, "isInternal": false, - "x": 216.92791946555323, - "y": 342.7092462704977 + "x": 216.92792, + "y": 342.70925 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.2751119541129, - "y": 340.3821721295333 + "x": 215.27511, + "y": 340.38217 }, { "body": null, "index": 11, "isInternal": false, - "x": 214.34705039610574, - "y": 337.68295956436395 + "x": 214.34705, + "y": 337.68296 }, { "body": null, "index": 12, "isInternal": false, - "x": 214.17092386831274, - "y": 303.0923870998128 + "x": 214.17092, + "y": 303.09239 }, { "body": null, "index": 13, "isInternal": false, - "x": 214.57827620468368, - "y": 300.2673011185599 + "x": 214.57828, + "y": 300.2673 }, { "body": null, "index": 14, "isInternal": false, - "x": 215.76714602860713, - "y": 297.67237621228935 + "x": 215.76715, + "y": 297.67238 }, { "body": null, "index": 15, "isInternal": false, - "x": 217.64067555999986, - "y": 295.51902212565653 + "x": 217.64068, + "y": 295.51902 }, { "body": null, "index": 16, "isInternal": false, - "x": 247.50932596724417, - "y": 278.0703369481078 + "x": 247.50933, + "y": 278.07034 }, { "body": null, "index": 17, "isInternal": false, - "x": 250.15968295929835, - "y": 277.0105154240267 + "x": 250.15968, + "y": 277.01052 }, { "body": null, "index": 18, "isInternal": false, - "x": 253.001488421884, - "y": 276.74264313905815 + "x": 253.00149, + "y": 276.74264 }, { "body": null, "index": 19, "isInternal": false, - "x": 255.8032030195916, - "y": 277.2885452925877 + "x": 255.8032, + "y": 277.28855 }, { "body": null, "index": 20, "isInternal": false, - "x": 285.84804588064776, - "y": 294.43219422625606 + "x": 285.84805, + "y": 294.43219 }, { "body": null, "index": 21, "isInternal": false, - "x": 288.0909443452499, - "y": 296.1975421253695 + "x": 288.09094, + "y": 296.19754 }, { "body": null, "index": 22, "isInternal": false, - "x": 289.7437518566902, - "y": 298.52461626633396 + "x": 289.74375, + "y": 298.52462 }, { "body": null, "index": 23, "isInternal": false, - "x": 290.67181341469734, - "y": 301.2238288315033 + "x": 290.67181, + "y": 301.22383 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2586.1538465710973, + "area": 2586.15385, "axes": { "#": 1643 }, @@ -14558,13 +14558,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 4301.698960136058, - "inverseInertia": 0.00023246629047430392, - "inverseMass": 0.38667459839091534, + "inertia": 4301.69896, + "inverseInertia": 0.00023, + "inverseMass": 0.38667, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.5861538465710976, + "mass": 2.58615, "motion": 0, "parent": null, "position": { @@ -14658,84 +14658,84 @@ } ], { - "x": 0.9852707152677412, - "y": 0.17100180594307654 + "x": 0.98527, + "y": 0.171 }, { - "x": 0.870027077173325, - "y": 0.49300394013155857 + "x": 0.87003, + "y": 0.493 }, { - "x": 0.6530194425849519, - "y": 0.7573411434789733 + "x": 0.65302, + "y": 0.75734 }, { - "x": 0.31793208336224765, - "y": 0.9481134902367654 + "x": 0.31793, + "y": 0.94811 }, { - "x": 0.14183463150892228, - "y": 0.9898903663056471 + "x": 0.14183, + "y": 0.98989 }, { - "x": -0.20002502729662638, - "y": 0.979790788104779 + "x": -0.20003, + "y": 0.97979 }, { - "x": -0.5184877530988952, - "y": 0.8550850541825996 + "x": -0.51849, + "y": 0.85509 }, { - "x": -0.8034768919857411, - "y": 0.5953359421746125 + "x": -0.80348, + "y": 0.59534 }, { - "x": -0.8976167927401081, - "y": 0.44077669333911224 + "x": -0.89762, + "y": 0.44078 }, { - "x": -0.9936475508251871, - "y": 0.11253685946883091 + "x": -0.99365, + "y": 0.11254 }, { - "x": -0.973458017259726, - "y": -0.22886565629810662 + "x": -0.97346, + "y": -0.22887 }, { - "x": -0.8145048379741128, - "y": -0.5801567623640738 + "x": -0.8145, + "y": -0.58016 }, { - "x": -0.6965942330729632, - "y": -0.7174653123667304 + "x": -0.69659, + "y": -0.71747 }, { - "x": -0.4140888248743737, - "y": -0.910236477578305 + "x": -0.41409, + "y": -0.91024 }, { - "x": -0.08314743531918575, - "y": -0.9965372567043551 + "x": -0.08315, + "y": -0.99654 }, { - "x": 0.30008822731566825, - "y": -0.9539114507261875 + "x": 0.30009, + "y": -0.95391 }, { - "x": 0.46710155597152475, - "y": -0.8842036736007041 + "x": 0.4671, + "y": -0.8842 }, { - "x": 0.7377306475692237, - "y": -0.6750951722809858 + "x": 0.73773, + "y": -0.6751 }, { - "x": 0.9220699891092197, - "y": -0.38702317137882536 + "x": 0.92207, + "y": -0.38702 }, { - "x": 0.9999559957459572, - "y": -0.009381181786492257 + "x": 0.99996, + "y": -0.00938 }, { "max": { @@ -14746,12 +14746,12 @@ } }, { - "x": 346.93445546939375, - "y": 336.78457521486814 + "x": 346.93446, + "y": 336.78458 }, { - "x": 288.8452771290252, - "y": 276.7600774552627 + "x": 288.84528, + "y": 276.76008 }, { "category": 1, @@ -14768,16 +14768,16 @@ "y": 0 }, { - "x": 319.89252911267465, - "y": 306.75489201886086 + "x": 319.89253, + "y": 306.75489 }, { "x": 0, "y": 0 }, { - "x": 319.89252911267465, - "y": 306.75489201886086 + "x": 319.89253, + "y": 306.75489 }, { "fillStyle": "#C44D58", @@ -14862,148 +14862,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 346.93445546939375, - "y": 319.13637810079825 + "x": 346.93446, + "y": 319.13638 }, { "body": null, "index": 1, "isInternal": false, - "x": 346.3496231166779, - "y": 322.5060395338705 + "x": 346.34962, + "y": 322.50604 }, { "body": null, "index": 2, "isInternal": false, - "x": 344.66353183468686, - "y": 325.48156356219073 + "x": 344.66353, + "y": 325.48156 }, { "body": null, "index": 3, "isInternal": false, - "x": 342.07339776968894, - "y": 327.7149136421501 + "x": 342.0734, + "y": 327.71491 }, { "body": null, "index": 4, "isInternal": false, - "x": 316.4731156836074, - "y": 336.2994882759912 + "x": 316.47312, + "y": 336.29949 }, { "body": null, "index": 5, "isInternal": false, - "x": 313.0876033971758, - "y": 336.78457521486814 + "x": 313.0876, + "y": 336.78458 }, { "body": null, "index": 6, "isInternal": false, - "x": 309.73663255821225, - "y": 336.1004719943935 + "x": 309.73663, + "y": 336.10047 }, { "body": null, "index": 7, "isInternal": false, - "x": 306.81216631890214, - "y": 334.3271981872832 + "x": 306.81217, + "y": 334.3272 }, { "body": null, "index": 8, "isInternal": false, - "x": 290.7376037769113, - "y": 312.632657951577 + "x": 290.7376, + "y": 312.63266 }, { "body": null, "index": 9, "isInternal": false, - "x": 289.2301520285493, - "y": 309.56281777167857 + "x": 289.23015, + "y": 309.56282 }, { "body": null, "index": 10, "isInternal": false, - "x": 288.8452771290252, - "y": 306.1645533888686 + "x": 288.84528, + "y": 306.16455 }, { "body": null, "index": 11, "isInternal": false, - "x": 289.6279953147646, - "y": 302.83533700276945 + "x": 289.628, + "y": 302.83534 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.29267195587147, - "y": 280.8430829480372 + "x": 305.29267, + "y": 280.84308 }, { "body": null, "index": 13, "isInternal": false, - "x": 307.74646655049025, - "y": 278.460669283858 + "x": 307.74647, + "y": 278.46067 }, { "body": null, "index": 14, "isInternal": false, - "x": 310.85955551800936, - "y": 277.04444901138663 + "x": 310.85956, + "y": 277.04445 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.2678007553589, - "y": 276.7600774552627 + "x": 314.2678, + "y": 276.76008 }, { "body": null, "index": 16, "isInternal": false, - "x": 340.0246660608689, - "y": 284.862854756924 + "x": 340.02467, + "y": 284.86285 }, { "body": null, "index": 17, "isInternal": false, - "x": 343.04867456101334, - "y": 286.460358949523 + "x": 343.04867, + "y": 286.46036 }, { "body": null, "index": 18, "isInternal": false, - "x": 345.3575244338834, - "y": 288.9834244102009 + "x": 345.35752, + "y": 288.98342 }, { "body": null, "index": 19, "isInternal": false, - "x": 346.6811576588353, - "y": 292.1369370770727 + "x": 346.68116, + "y": 292.13694 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1290.9794889800137, + "area": 1290.97949, "axes": { "#": 1698 }, @@ -15025,13 +15025,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1336.116554880955, - "inverseInertia": 0.0007484376990517102, - "inverseMass": 0.7746056451989699, + "inertia": 1336.11655, + "inverseInertia": 0.00075, + "inverseMass": 0.77461, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2909794889800137, + "mass": 1.29098, "motion": 0, "parent": null, "position": { @@ -15087,12 +15087,12 @@ } }, { - "x": 396.0739016285158, - "y": 303.01439811162334 + "x": 396.0739, + "y": 303.0144 }, { - "x": 346.93445546939375, - "y": 276.74264313905815 + "x": 346.93446, + "y": 276.74264 }, { "category": 1, @@ -15109,16 +15109,16 @@ "y": 0 }, { - "x": 371.50417854895477, - "y": 289.87852062534074 + "x": 371.50418, + "y": 289.87852 }, { "x": 0, "y": 0 }, { - "x": 371.50417854895477, - "y": 289.87852062534074 + "x": 371.50418, + "y": 289.87852 }, { "fillStyle": "#4ECDC4", @@ -15155,36 +15155,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 346.93445546939375, - "y": 276.74264313905815 + "x": 346.93446, + "y": 276.74264 }, { "body": null, "index": 1, "isInternal": false, - "x": 396.0739016285158, - "y": 276.74264313905815 + "x": 396.0739, + "y": 276.74264 }, { "body": null, "index": 2, "isInternal": false, - "x": 396.0739016285158, - "y": 303.01439811162334 + "x": 396.0739, + "y": 303.0144 }, { "body": null, "index": 3, "isInternal": false, - "x": 346.93445546939375, - "y": 303.01439811162334 + "x": 346.93446, + "y": 303.0144 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3447.135803417324, + "area": 3447.1358, "axes": { "#": 1719 }, @@ -15206,13 +15206,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 17066.17470089766, - "inverseInertia": 0.000058595439079116026, - "inverseMass": 0.29009591064229273, + "inertia": 17066.1747, + "inverseInertia": 0.00006, + "inverseMass": 0.2901, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.447135803417324, + "mass": 3.44714, "motion": 0, "parent": null, "position": { @@ -15268,12 +15268,12 @@ } }, { - "x": 514.4122075270068, - "y": 305.8721441678647 + "x": 514.41221, + "y": 305.87214 }, { - "x": 396.0739016285158, - "y": 276.74264313905815 + "x": 396.0739, + "y": 276.74264 }, { "category": 1, @@ -15290,16 +15290,16 @@ "y": 0 }, { - "x": 455.2430545777613, - "y": 291.3073936534614 + "x": 455.24305, + "y": 291.30739 }, { "x": 0, "y": 0 }, { - "x": 455.2430545777613, - "y": 291.3073936534614 + "x": 455.24305, + "y": 291.30739 }, { "fillStyle": "#C44D58", @@ -15336,36 +15336,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.0739016285158, - "y": 276.74264313905815 + "x": 396.0739, + "y": 276.74264 }, { "body": null, "index": 1, "isInternal": false, - "x": 514.4122075270068, - "y": 276.74264313905815 + "x": 514.41221, + "y": 276.74264 }, { "body": null, "index": 2, "isInternal": false, - "x": 514.4122075270068, - "y": 305.8721441678647 + "x": 514.41221, + "y": 305.87214 }, { "body": null, "index": 3, "isInternal": false, - "x": 396.0739016285158, - "y": 305.8721441678647 + "x": 396.0739, + "y": 305.87214 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5745.916024000001, + "area": 5745.91602, "axes": { "#": 1740 }, @@ -15373,7 +15373,7 @@ "#": 1754 }, "chamfer": "", - "circleRadius": 42.97560871056241, + "circleRadius": 42.97561, "collisionFilter": { "#": 1757 }, @@ -15388,13 +15388,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 21018.753567668347, - "inverseInertia": 0.00004757656046447154, - "inverseMass": 0.17403665417717906, + "inertia": 21018.75357, + "inverseInertia": 0.00005, + "inverseMass": 0.17404, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.745916024000001, + "mass": 5.74592, "motion": 0, "parent": null, "position": { @@ -15467,52 +15467,52 @@ } ], { - "x": -0.9709490126883462, - "y": -0.23928647007201603 + "x": -0.97095, + "y": -0.23929 }, { - "x": -0.8854515230322831, - "y": -0.4647317509701811 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485265813733493, - "y": -0.6631047858201046 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680599819247337, - "y": -0.822987154781696 + "x": -0.56806, + "y": -0.82299 }, { - "x": -0.3546222271012525, - "y": -0.9350096662846582 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12055331653660395, - "y": -0.9927068539463326 + "x": -0.12055, + "y": -0.99271 }, { - "x": 0.12055331653660395, - "y": -0.9927068539463326 + "x": 0.12055, + "y": -0.99271 }, { - "x": 0.3546222271012525, - "y": -0.9350096662846582 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.5680599819247337, - "y": -0.822987154781696 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7485265813733493, - "y": -0.6631047858201046 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854515230322831, - "y": -0.4647317509701811 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709490126883462, - "y": -0.23928647007201603 + "x": 0.97095, + "y": -0.23929 }, { "x": 1, @@ -15527,12 +15527,12 @@ } }, { - "x": 599.7362075270069, - "y": 362.69464313905814 + "x": 599.73621, + "y": 362.69464 }, { - "x": 514.4122075270068, - "y": 276.74264313905815 + "x": 514.41221, + "y": 276.74264 }, { "category": 1, @@ -15549,16 +15549,16 @@ "y": 0 }, { - "x": 557.0742075270068, - "y": 319.71864313905814 + "x": 557.07421, + "y": 319.71864 }, { "x": 0, "y": 0 }, { - "x": 557.0742075270068, - "y": 319.71864313905814 + "x": 557.07421, + "y": 319.71864 }, { "fillStyle": "#C44D58", @@ -15661,190 +15661,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.7362075270069, - "y": 324.89864313905815 + "x": 599.73621, + "y": 324.89864 }, { "body": null, "index": 1, "isInternal": false, - "x": 597.2572075270068, - "y": 334.9576431390581 + "x": 597.25721, + "y": 334.95764 }, { "body": null, "index": 2, "isInternal": false, - "x": 592.4422075270069, - "y": 344.13164313905816 + "x": 592.44221, + "y": 344.13164 }, { "body": null, "index": 3, "isInternal": false, - "x": 585.5722075270069, - "y": 351.88664313905815 + "x": 585.57221, + "y": 351.88664 }, { "body": null, "index": 4, "isInternal": false, - "x": 577.0462075270068, - "y": 357.77164313905814 + "x": 577.04621, + "y": 357.77164 }, { "body": null, "index": 5, "isInternal": false, - "x": 567.3592075270068, - "y": 361.4456431390581 + "x": 567.35921, + "y": 361.44564 }, { "body": null, "index": 6, "isInternal": false, - "x": 557.0742075270068, - "y": 362.69464313905814 + "x": 557.07421, + "y": 362.69464 }, { "body": null, "index": 7, "isInternal": false, - "x": 546.7892075270067, - "y": 361.4456431390581 + "x": 546.78921, + "y": 361.44564 }, { "body": null, "index": 8, "isInternal": false, - "x": 537.1022075270068, - "y": 357.77164313905814 + "x": 537.10221, + "y": 357.77164 }, { "body": null, "index": 9, "isInternal": false, - "x": 528.5762075270068, - "y": 351.88664313905815 + "x": 528.57621, + "y": 351.88664 }, { "body": null, "index": 10, "isInternal": false, - "x": 521.7062075270069, - "y": 344.13164313905816 + "x": 521.70621, + "y": 344.13164 }, { "body": null, "index": 11, "isInternal": false, - "x": 516.8912075270068, - "y": 334.9576431390581 + "x": 516.89121, + "y": 334.95764 }, { "body": null, "index": 12, "isInternal": false, - "x": 514.4122075270068, - "y": 324.89864313905815 + "x": 514.41221, + "y": 324.89864 }, { "body": null, "index": 13, "isInternal": false, - "x": 514.4122075270068, - "y": 314.53864313905814 + "x": 514.41221, + "y": 314.53864 }, { "body": null, "index": 14, "isInternal": false, - "x": 516.8912075270068, - "y": 304.47964313905817 + "x": 516.89121, + "y": 304.47964 }, { "body": null, "index": 15, "isInternal": false, - "x": 521.7062075270069, - "y": 295.30564313905813 + "x": 521.70621, + "y": 295.30564 }, { "body": null, "index": 16, "isInternal": false, - "x": 528.5762075270068, - "y": 287.55064313905814 + "x": 528.57621, + "y": 287.55064 }, { "body": null, "index": 17, "isInternal": false, - "x": 537.1022075270068, - "y": 281.66564313905815 + "x": 537.10221, + "y": 281.66564 }, { "body": null, "index": 18, "isInternal": false, - "x": 546.7892075270067, - "y": 277.99164313905817 + "x": 546.78921, + "y": 277.99164 }, { "body": null, "index": 19, "isInternal": false, - "x": 557.0742075270068, - "y": 276.74264313905815 + "x": 557.07421, + "y": 276.74264 }, { "body": null, "index": 20, "isInternal": false, - "x": 567.3592075270068, - "y": 277.99164313905817 + "x": 567.35921, + "y": 277.99164 }, { "body": null, "index": 21, "isInternal": false, - "x": 577.0462075270068, - "y": 281.66564313905815 + "x": 577.04621, + "y": 281.66564 }, { "body": null, "index": 22, "isInternal": false, - "x": 585.5722075270069, - "y": 287.55064313905814 + "x": 585.57221, + "y": 287.55064 }, { "body": null, "index": 23, "isInternal": false, - "x": 592.4422075270069, - "y": 295.30564313905813 + "x": 592.44221, + "y": 295.30564 }, { "body": null, "index": 24, "isInternal": false, - "x": 597.2572075270068, - "y": 304.47964313905817 + "x": 597.25721, + "y": 304.47964 }, { "body": null, "index": 25, "isInternal": false, - "x": 599.7362075270069, - "y": 314.53864313905814 + "x": 599.73621, + "y": 314.53864 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5746.742950000001, + "area": 5746.74295, "axes": { "#": 1794 }, @@ -15852,7 +15852,7 @@ "#": 1808 }, "chamfer": "", - "circleRadius": 42.97860939643347, + "circleRadius": 42.97861, "collisionFilter": { "#": 1811 }, @@ -15867,13 +15867,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 21024.80384916412, - "inverseInertia": 0.000047562869417198245, - "inverseMass": 0.1740116112205784, + "inertia": 21024.80385, + "inverseInertia": 0.00005, + "inverseMass": 0.17401, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.746742950000001, + "mass": 5.74674, "motion": 0, "parent": null, "position": { @@ -15946,52 +15946,52 @@ } ], { - "x": -0.9709545387643245, - "y": -0.23926404588436972 + "x": -0.97095, + "y": -0.23926 }, { - "x": -0.8854723657848331, - "y": -0.4646920371938932 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7484786737389684, - "y": -0.6631588610264928 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5680802305207977, - "y": -0.8229731779902898 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545902254432111, - "y": -0.9350218029651141 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12055331653660395, - "y": -0.9927068539463326 + "x": -0.12055, + "y": -0.99271 }, { - "x": 0.12055331653660395, - "y": -0.9927068539463326 + "x": 0.12055, + "y": -0.99271 }, { - "x": 0.3545902254432111, - "y": -0.9350218029651141 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680802305207977, - "y": -0.8229731779902898 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7484786737389684, - "y": -0.6631588610264928 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8854723657848331, - "y": -0.4646920371938932 + "x": 0.88547, + "y": -0.46469 }, { - "x": 0.9709545387643245, - "y": -0.23926404588436972 + "x": 0.97095, + "y": -0.23926 }, { "x": 1, @@ -16006,12 +16006,12 @@ } }, { - "x": 685.0662075270068, - "y": 362.7006431390581 + "x": 685.06621, + "y": 362.70064 }, { - "x": 599.7362075270069, - "y": 276.74264313905815 + "x": 599.73621, + "y": 276.74264 }, { "category": 1, @@ -16028,16 +16028,16 @@ "y": 0 }, { - "x": 642.4012075270068, - "y": 319.72164313905813 + "x": 642.40121, + "y": 319.72164 }, { "x": 0, "y": 0 }, { - "x": 642.4012075270068, - "y": 319.72164313905813 + "x": 642.40121, + "y": 319.72164 }, { "fillStyle": "#C44D58", @@ -16140,190 +16140,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 685.0662075270068, - "y": 324.90164313905814 + "x": 685.06621, + "y": 324.90164 }, { "body": null, "index": 1, "isInternal": false, - "x": 682.5872075270069, - "y": 334.96164313905814 + "x": 682.58721, + "y": 334.96164 }, { "body": null, "index": 2, "isInternal": false, - "x": 677.7722075270068, - "y": 344.13664313905815 + "x": 677.77221, + "y": 344.13664 }, { "body": null, "index": 3, "isInternal": false, - "x": 670.9012075270068, - "y": 351.89164313905815 + "x": 670.90121, + "y": 351.89164 }, { "body": null, "index": 4, "isInternal": false, - "x": 662.3742075270068, - "y": 357.7776431390581 + "x": 662.37421, + "y": 357.77764 }, { "body": null, "index": 5, "isInternal": false, - "x": 652.6862075270068, - "y": 361.45164313905815 + "x": 652.68621, + "y": 361.45164 }, { "body": null, "index": 6, "isInternal": false, - "x": 642.4012075270068, - "y": 362.7006431390581 + "x": 642.40121, + "y": 362.70064 }, { "body": null, "index": 7, "isInternal": false, - "x": 632.1162075270068, - "y": 361.45164313905815 + "x": 632.11621, + "y": 361.45164 }, { "body": null, "index": 8, "isInternal": false, - "x": 622.4282075270069, - "y": 357.7776431390581 + "x": 622.42821, + "y": 357.77764 }, { "body": null, "index": 9, "isInternal": false, - "x": 613.9012075270068, - "y": 351.89164313905815 + "x": 613.90121, + "y": 351.89164 }, { "body": null, "index": 10, "isInternal": false, - "x": 607.0302075270068, - "y": 344.13664313905815 + "x": 607.03021, + "y": 344.13664 }, { "body": null, "index": 11, "isInternal": false, - "x": 602.2152075270068, - "y": 334.96164313905814 + "x": 602.21521, + "y": 334.96164 }, { "body": null, "index": 12, "isInternal": false, - "x": 599.7362075270069, - "y": 324.90164313905814 + "x": 599.73621, + "y": 324.90164 }, { "body": null, "index": 13, "isInternal": false, - "x": 599.7362075270069, - "y": 314.5416431390581 + "x": 599.73621, + "y": 314.54164 }, { "body": null, "index": 14, "isInternal": false, - "x": 602.2152075270068, - "y": 304.4816431390581 + "x": 602.21521, + "y": 304.48164 }, { "body": null, "index": 15, "isInternal": false, - "x": 607.0302075270068, - "y": 295.3066431390581 + "x": 607.03021, + "y": 295.30664 }, { "body": null, "index": 16, "isInternal": false, - "x": 613.9012075270068, - "y": 287.5516431390581 + "x": 613.90121, + "y": 287.55164 }, { "body": null, "index": 17, "isInternal": false, - "x": 622.4282075270069, - "y": 281.66564313905815 + "x": 622.42821, + "y": 281.66564 }, { "body": null, "index": 18, "isInternal": false, - "x": 632.1162075270068, - "y": 277.99164313905817 + "x": 632.11621, + "y": 277.99164 }, { "body": null, "index": 19, "isInternal": false, - "x": 642.4012075270068, - "y": 276.74264313905815 + "x": 642.40121, + "y": 276.74264 }, { "body": null, "index": 20, "isInternal": false, - "x": 652.6862075270068, - "y": 277.99164313905817 + "x": 652.68621, + "y": 277.99164 }, { "body": null, "index": 21, "isInternal": false, - "x": 662.3742075270068, - "y": 281.66564313905815 + "x": 662.37421, + "y": 281.66564 }, { "body": null, "index": 22, "isInternal": false, - "x": 670.9012075270068, - "y": 287.5516431390581 + "x": 670.90121, + "y": 287.55164 }, { "body": null, "index": 23, "isInternal": false, - "x": 677.7722075270068, - "y": 295.3066431390581 + "x": 677.77221, + "y": 295.30664 }, { "body": null, "index": 24, "isInternal": false, - "x": 682.5872075270069, - "y": 304.4816431390581 + "x": 682.58721, + "y": 304.48164 }, { "body": null, "index": 25, "isInternal": false, - "x": 685.0662075270068, - "y": 314.5416431390581 + "x": 685.06621, + "y": 314.54164 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3203.0307430000003, + "area": 3203.03074, "axes": { "#": 1848 }, @@ -16345,13 +16345,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 6642.19697105125, - "inverseInertia": 0.00015055259643131775, - "inverseMass": 0.3122043090549256, + "inertia": 6642.19697, + "inverseInertia": 0.00015, + "inverseMass": 0.3122, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.2030307430000002, + "mass": 3.20303, "motion": 0, "parent": null, "position": { @@ -16400,20 +16400,20 @@ } ], { - "x": 0.30900851155322884, - "y": 0.9510592724891851 + "x": 0.30901, + "y": 0.95106 }, { - "x": -0.8090216234775411, - "y": 0.5877788808265942 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090216234775411, - "y": -0.5877788808265942 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30900851155322884, - "y": -0.9510592724891851 + "x": 0.30901, + "y": -0.95106 }, { "x": 1, @@ -16428,12 +16428,12 @@ } }, { - "x": 747.9583791928894, - "y": 346.5566431390581 + "x": 747.95838, + "y": 346.55664 }, { - "x": 681.5613791928895, - "y": 276.74264313905815 + "x": 681.56138, + "y": 276.74264 }, { "category": 1, @@ -16450,16 +16450,16 @@ "y": 0 }, { - "x": 718.2647075270067, - "y": 311.6496431390581 + "x": 718.26471, + "y": 311.64964 }, { "x": 0, "y": 0 }, { - "x": 718.2647075270067, - "y": 311.6496431390581 + "x": 718.26471, + "y": 311.64964 }, { "fillStyle": "#4ECDC4", @@ -16499,43 +16499,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 747.9583791928894, - "y": 333.22364313905814 + "x": 747.95838, + "y": 333.22364 }, { "body": null, "index": 1, "isInternal": false, - "x": 706.9223791928895, - "y": 346.5566431390581 + "x": 706.92238, + "y": 346.55664 }, { "body": null, "index": 2, "isInternal": false, - "x": 681.5613791928895, - "y": 311.6496431390581 + "x": 681.56138, + "y": 311.64964 }, { "body": null, "index": 3, "isInternal": false, - "x": 706.9223791928895, - "y": 276.74264313905815 + "x": 706.92238, + "y": 276.74264 }, { "body": null, "index": 4, "isInternal": false, - "x": 747.9583791928894, - "y": 290.0756431390581 + "x": 747.95838, + "y": 290.07564 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5067.6702751239845, + "area": 5067.67028, "axes": { "#": 1873 }, @@ -16556,13 +16556,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 16399.583595559714, - "inverseInertia": 0.00006097715799752111, - "inverseMass": 0.19732933393649693, + "inertia": 16399.5836, + "inverseInertia": 0.00006, + "inverseMass": 0.19733, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.067670275123985, + "mass": 5.06767, "motion": 0, "parent": null, "position": { @@ -16680,116 +16680,116 @@ } ], { - "x": 0.9924755050981582, - "y": 0.12244334110173448 + "x": 0.99248, + "y": 0.12244 }, { - "x": 0.9329572580776412, - "y": 0.3599871589379958 + "x": 0.93296, + "y": 0.35999 }, { - "x": 0.8174900427847476, - "y": 0.5759427314827332 + "x": 0.81749, + "y": 0.57594 }, { - "x": 0.6268952834093632, - "y": 0.7791035256235811 + "x": 0.6269, + "y": 0.7791 }, { - "x": 0.5230540479398909, - "y": 0.8522995148031555 + "x": 0.52305, + "y": 0.8523 }, { - "x": 0.30024182968554397, - "y": 0.953863115812262 + "x": 0.30024, + "y": 0.95386 }, { - "x": 0.05942697631850539, - "y": 0.9982326554895106 + "x": 0.05943, + "y": 0.99823 }, { - "x": -0.2182119161873597, - "y": 0.975901408767218 + "x": -0.21821, + "y": 0.9759 }, { - "x": -0.3402033836054012, - "y": 0.9403518797681197 + "x": -0.3402, + "y": 0.94035 }, { - "x": -0.5585465203579355, - "y": 0.8294731970329375 + "x": -0.55855, + "y": 0.82947 }, { - "x": -0.7433948468129344, - "y": 0.6688528251655769 + "x": -0.74339, + "y": 0.66885 }, { - "x": -0.899051915803456, - "y": 0.43784204079797495 + "x": -0.89905, + "y": 0.43784 }, { - "x": -0.9473139697680368, - "y": 0.32030648242319887 + "x": -0.94731, + "y": 0.32031 }, { - "x": -0.9967571233050424, - "y": 0.08046885820400612 + "x": -0.99676, + "y": 0.08047 }, { - "x": -0.9864280300702043, - "y": -0.16419421881362425 + "x": -0.98643, + "y": -0.16419 }, { - "x": -0.9028668891057183, - "y": -0.4299202025452659 + "x": -0.90287, + "y": -0.42992 }, { - "x": -0.8410629028057156, - "y": -0.5409373286472503 + "x": -0.84106, + "y": -0.54094 }, { - "x": -0.6843747762799663, - "y": -0.729130417409496 + "x": -0.68437, + "y": -0.72913 }, { - "x": -0.4866461948083627, - "y": -0.8735991535472899 + "x": -0.48665, + "y": -0.8736 }, { - "x": -0.226783823541681, - "y": -0.9739451203121332 + "x": -0.22678, + "y": -0.97395 }, { - "x": -0.10146652564062283, - "y": -0.9948389538887291 + "x": -0.10147, + "y": -0.99484 }, { - "x": 0.14334719336938195, - "y": -0.9896724620565741 + "x": 0.14335, + "y": -0.98967 }, { - "x": 0.3795657502084073, - "y": -0.9251647643899592 + "x": 0.37957, + "y": -0.92516 }, { - "x": 0.6200210263474298, - "y": -0.7845851941548984 + "x": 0.62002, + "y": -0.78459 }, { - "x": 0.7145102143578946, - "y": -0.6996250092572702 + "x": 0.71451, + "y": -0.69963 }, { - "x": 0.8631254930746587, - "y": -0.5049894882120096 + "x": 0.86313, + "y": -0.50499 }, { - "x": 0.9599795786510026, - "y": -0.28007000655736697 + "x": 0.95998, + "y": -0.28007 }, { - "x": 0.9999903355888731, - "y": -0.004396445024447187 + "x": 0.99999, + "y": -0.0044 }, { "max": { @@ -16800,12 +16800,12 @@ } }, { - "x": 827.3820006065704, - "y": 359.2963503188976 + "x": 827.382, + "y": 359.29635 }, { - "x": 746.3735800800362, - "y": 276.7337487627887 + "x": 746.37358, + "y": 276.73375 }, { "category": 1, @@ -16822,16 +16822,16 @@ "y": 0 }, { - "x": 788.4625894561566, - "y": 318.0239439171126 + "x": 788.46259, + "y": 318.02394 }, { "x": 0, "y": 0 }, { - "x": 788.4625894561566, - "y": 318.0239439171126 + "x": 788.46259, + "y": 318.02394 }, { "fillStyle": "#4ECDC4", @@ -16940,204 +16940,204 @@ "body": null, "index": 0, "isInternal": false, - "x": 827.3820006065704, - "y": 331.95073564778795 + "x": 827.382, + "y": 331.95074 }, { "body": null, "index": 1, "isInternal": false, - "x": 827.0821531709672, - "y": 334.38117598390494 + "x": 827.08215, + "y": 334.38118 }, { "body": null, "index": 2, "isInternal": false, - "x": 826.2005925610855, - "y": 336.6658640595877 + "x": 826.20059, + "y": 336.66586 }, { "body": null, "index": 3, "isInternal": false, - "x": 824.7901855145653, - "y": 338.66778830270704 + "x": 824.79019, + "y": 338.66779 }, { "body": null, "index": 4, "isInternal": false, - "x": 801.8393874909949, - "y": 357.1348424980292 + "x": 801.83939, + "y": 357.13484 }, { "body": null, "index": 5, "isInternal": false, - "x": 799.7523767619327, - "y": 358.4156356827843 + "x": 799.75238, + "y": 358.41564 }, { "body": null, "index": 6, "isInternal": false, - "x": 797.4166690416055, - "y": 359.1508325343415 + "x": 797.41667, + "y": 359.15083 }, { "body": null, "index": 7, "isInternal": false, - "x": 794.9723144151828, - "y": 359.2963503188976 + "x": 794.97231, + "y": 359.29635 }, { "body": null, "index": 8, "isInternal": false, - "x": 766.2248658389794, - "y": 352.8684101776541 + "x": 766.22487, + "y": 352.86841 }, { "body": null, "index": 9, "isInternal": false, - "x": 763.9221015651551, - "y": 352.0353090647028 + "x": 763.9221, + "y": 352.03531 }, { "body": null, "index": 10, "isInternal": false, - "x": 761.8908606166143, - "y": 350.6675221755371 + "x": 761.89086, + "y": 350.66752 }, { "body": null, "index": 11, "isInternal": false, - "x": 760.2529520598541, - "y": 348.8470726912355 + "x": 760.25295, + "y": 348.84707 }, { "body": null, "index": 12, "isInternal": false, - "x": 747.3550028013412, - "y": 322.36280459841373 + "x": 747.355, + "y": 322.3628 }, { "body": null, "index": 13, "isInternal": false, - "x": 746.5706330366261, - "y": 320.04301253564614 + "x": 746.57063, + "y": 320.04301 }, { "body": null, "index": 14, "isInternal": false, - "x": 746.3735800800362, - "y": 317.60214357673453 + "x": 746.37358, + "y": 317.60214 }, { "body": null, "index": 15, "isInternal": false, - "x": 746.7756605493546, - "y": 315.18656860615886 + "x": 746.77566, + "y": 315.18657 }, { "body": null, "index": 16, "isInternal": false, - "x": 759.4402421357784, - "y": 288.58993204182786 + "x": 759.44024, + "y": 288.58993 }, { "body": null, "index": 17, "isInternal": false, - "x": 760.7649070634371, - "y": 286.53030984476527 + "x": 760.76491, + "y": 286.53031 }, { "body": null, "index": 18, "isInternal": false, - "x": 762.5504253489786, - "y": 284.8543906291705 + "x": 762.55043, + "y": 284.85439 }, { "body": null, "index": 19, "isInternal": false, - "x": 764.689723375296, - "y": 283.6626755962048 + "x": 764.68972, + "y": 283.66268 }, { "body": null, "index": 20, "isInternal": false, - "x": 793.3796390360841, - "y": 276.98220804731795 + "x": 793.37964, + "y": 276.98221 }, { "body": null, "index": 21, "isInternal": false, - "x": 795.8156835654938, - "y": 276.7337487627887 + "x": 795.81568, + "y": 276.73375 }, { "body": null, "index": 22, "isInternal": false, - "x": 798.2390769978443, - "y": 277.084760496747 + "x": 798.23908, + "y": 277.08476 }, { "body": null, "index": 23, "isInternal": false, - "x": 800.5045115732448, - "y": 278.01419642779103 + "x": 800.50451, + "y": 278.0142 }, { "body": null, "index": 24, "isInternal": false, - "x": 823.6166952289789, - "y": 296.2786754647602 + "x": 823.6167, + "y": 296.27868 }, { "body": null, "index": 25, "isInternal": false, - "x": 825.3299837020147, - "y": 298.02841582270617 + "x": 825.32998, + "y": 298.02842 }, { "body": null, "index": 26, "isInternal": false, - "x": 826.5666357051734, - "y": 300.14209520594903 + "x": 826.56664, + "y": 300.1421 }, { "body": null, "index": 27, "isInternal": false, - "x": 827.2524898520787, - "y": 302.4929573459383 + "x": 827.25249, + "y": 302.49296 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4184.019856, + "area": 4184.01986, "axes": { "#": 1944 }, @@ -17159,13 +17159,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 11670.68143693484, - "inverseInertia": 0.00008568479958978622, - "inverseMass": 0.23900460189403078, + "inertia": 11670.68144, + "inverseInertia": 0.00009, + "inverseMass": 0.239, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.184019856, + "mass": 4.18402, "motion": 0, "parent": null, "position": { @@ -17221,12 +17221,12 @@ } }, { - "x": 892.0660006065704, - "y": 341.4266431390581 + "x": 892.066, + "y": 341.42664 }, { - "x": 827.3820006065704, - "y": 276.74264313905815 + "x": 827.382, + "y": 276.74264 }, { "category": 1, @@ -17243,16 +17243,16 @@ "y": 0 }, { - "x": 859.7240006065704, - "y": 309.08464313905813 + "x": 859.724, + "y": 309.08464 }, { "x": 0, "y": 0 }, { - "x": 859.7240006065704, - "y": 309.08464313905813 + "x": 859.724, + "y": 309.08464 }, { "fillStyle": "#C44D58", @@ -17289,36 +17289,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 892.0660006065704, - "y": 341.4266431390581 + "x": 892.066, + "y": 341.42664 }, { "body": null, "index": 1, "isInternal": false, - "x": 827.3820006065704, - "y": 341.4266431390581 + "x": 827.382, + "y": 341.42664 }, { "body": null, "index": 2, "isInternal": false, - "x": 827.3820006065704, - "y": 276.74264313905815 + "x": 827.382, + "y": 276.74264 }, { "body": null, "index": 3, "isInternal": false, - "x": 892.0660006065704, - "y": 276.74264313905815 + "x": 892.066, + "y": 276.74264 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1443.6911839874222, + "area": 1443.69118, "axes": { "#": 1965 }, @@ -17339,13 +17339,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1352.2644248067172, - "inverseInertia": 0.0007395003385842475, - "inverseMass": 0.6926689108386993, + "inertia": 1352.26442, + "inverseInertia": 0.00074, + "inverseMass": 0.69267, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4436911839874222, + "mass": 1.44369, "motion": 0, "parent": null, "position": { @@ -17403,36 +17403,36 @@ } ], { - "x": -0.9770171932916059, - "y": -0.21316051232016 + "x": -0.97702, + "y": -0.21316 }, { - "x": -0.7994446935362444, - "y": -0.6007396956891898 + "x": -0.79944, + "y": -0.60074 }, { - "x": -0.476573427677162, - "y": -0.879134670020493 + "x": -0.47657, + "y": -0.87913 }, { - "x": -0.017785641726564928, - "y": -0.9998418229641998 + "x": -0.01779, + "y": -0.99984 }, { - "x": 0.21316051232016, - "y": -0.9770171932916059 + "x": 0.21316, + "y": -0.97702 }, { - "x": 0.6007396956891898, - "y": -0.7994446935362444 + "x": 0.60074, + "y": -0.79944 }, { - "x": 0.879134670020493, - "y": -0.476573427677162 + "x": 0.87913, + "y": -0.47657 }, { - "x": 0.9998418229641998, - "y": -0.017785641726564928 + "x": 0.99984, + "y": -0.01779 }, { "max": { @@ -17443,12 +17443,12 @@ } }, { - "x": 931.4800006065703, - "y": 316.15664313905813 + "x": 931.48, + "y": 316.15664 }, { - "x": 892.0660006065704, - "y": 276.74264313905815 + "x": 892.066, + "y": 276.74264 }, { "category": 1, @@ -17465,16 +17465,16 @@ "y": 0 }, { - "x": 911.7730006065703, - "y": 296.44964313905814 + "x": 911.773, + "y": 296.44964 }, { "x": 0, "y": 0 }, { - "x": 911.7730006065703, - "y": 296.44964313905814 + "x": 911.773, + "y": 296.44964 }, { "fillStyle": "#556270", @@ -17547,120 +17547,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 931.4800006065703, - "y": 306.15664313905813 + "x": 931.48, + "y": 306.15664 }, { "body": null, "index": 1, "isInternal": false, - "x": 930.5712525263185, - "y": 310.32187284841103 + "x": 930.57125, + "y": 310.32187 }, { "body": null, "index": 2, "isInternal": false, - "x": 928.0101729002351, - "y": 313.7300736573274 + "x": 928.01017, + "y": 313.73007 }, { "body": null, "index": 3, "isInternal": false, - "x": 924.2622369670355, - "y": 315.76180637736417 + "x": 924.26224, + "y": 315.76181 }, { "body": null, "index": 4, "isInternal": false, - "x": 902.0660006065704, - "y": 316.15664313905813 + "x": 902.066, + "y": 316.15664 }, { "body": null, "index": 5, "isInternal": false, - "x": 897.9007708972175, - "y": 315.2478950588063 + "x": 897.90077, + "y": 315.2479 }, { "body": null, "index": 6, "isInternal": false, - "x": 894.4925700883011, - "y": 312.686815432723 + "x": 894.49257, + "y": 312.68682 }, { "body": null, "index": 7, "isInternal": false, - "x": 892.4608373682644, - "y": 308.9388794995233 + "x": 892.46084, + "y": 308.93888 }, { "body": null, "index": 8, "isInternal": false, - "x": 892.0660006065704, - "y": 286.74264313905815 + "x": 892.066, + "y": 286.74264 }, { "body": null, "index": 9, "isInternal": false, - "x": 892.9747486868222, - "y": 282.57741342970525 + "x": 892.97475, + "y": 282.57741 }, { "body": null, "index": 10, "isInternal": false, - "x": 895.5358283129056, - "y": 279.16921262078887 + "x": 895.53583, + "y": 279.16921 }, { "body": null, "index": 11, "isInternal": false, - "x": 899.2837642461052, - "y": 277.1374799007521 + "x": 899.28376, + "y": 277.13748 }, { "body": null, "index": 12, "isInternal": false, - "x": 921.4800006065703, - "y": 276.74264313905815 + "x": 921.48, + "y": 276.74264 }, { "body": null, "index": 13, "isInternal": false, - "x": 925.6452303159232, - "y": 277.65139121930997 + "x": 925.64523, + "y": 277.65139 }, { "body": null, "index": 14, "isInternal": false, - "x": 929.0534311248396, - "y": 280.2124708453933 + "x": 929.05343, + "y": 280.21247 }, { "body": null, "index": 15, "isInternal": false, - "x": 931.0851638448763, - "y": 283.960406778593 + "x": 931.08516, + "y": 283.96041 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1357.5262341709852, + "area": 1357.52623, "axes": { "#": 2004 }, @@ -17682,13 +17682,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 1286.9750720555298, - "inverseInertia": 0.0007770158270453683, - "inverseMass": 0.7366340147457117, + "inertia": 1286.97507, + "inverseInertia": 0.00078, + "inverseMass": 0.73663, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3575262341709853, + "mass": 1.35753, "motion": 0, "parent": null, "position": { @@ -17744,12 +17744,12 @@ } }, { - "x": 963.080116347311, - "y": 319.70217674673995 + "x": 963.08012, + "y": 319.70218 }, { - "x": 931.4800006065703, - "y": 276.74264313905815 + "x": 931.48, + "y": 276.74264 }, { "category": 1, @@ -17766,16 +17766,16 @@ "y": 0 }, { - "x": 947.2800584769407, - "y": 298.22240994289905 + "x": 947.28006, + "y": 298.22241 }, { "x": 0, "y": 0 }, { - "x": 947.2800584769407, - "y": 298.22240994289905 + "x": 947.28006, + "y": 298.22241 }, { "fillStyle": "#C44D58", @@ -17812,29 +17812,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 931.4800006065703, - "y": 276.74264313905815 + "x": 931.48, + "y": 276.74264 }, { "body": null, "index": 1, "isInternal": false, - "x": 963.080116347311, - "y": 276.74264313905815 + "x": 963.08012, + "y": 276.74264 }, { "body": null, "index": 2, "isInternal": false, - "x": 963.080116347311, - "y": 319.70217674673995 + "x": 963.08012, + "y": 319.70218 }, { "body": null, "index": 3, "isInternal": false, - "x": 931.4800006065703, - "y": 319.70217674673995 + "x": 931.48, + "y": 319.70218 }, [], [], @@ -17845,17 +17845,18 @@ ], { "angularStiffness": 1, - "bodyB": "", "id": 1, "label": "Mouse Constraint", "length": 0.01, "pointA": { "#": 2028 }, - "pointB": "", - "render": { + "pointB": { "#": 2029 }, + "render": { + "#": 2030 + }, "stiffness": 0.1, "type": "constraint" }, @@ -17863,6 +17864,10 @@ "x": 0, "y": 0 }, + { + "x": 0, + "y": 0 + }, { "lineWidth": 3, "strokeStyle": "#90EE90", diff --git a/test/browser/refs/mixed/mixed-10.json b/test/browser/refs/mixed/mixed-10.json index 994b5b44..c814c066 100644 --- a/test/browser/refs/mixed/mixed-10.json +++ b/test/browser/refs/mixed/mixed-10.json @@ -1095,11 +1095,11 @@ } ], { - "angle": 0.05998209819750067, - "anglePrev": 0.04159333881736875, - "angularSpeed": 0.015556889139439915, - "angularVelocity": 0.018356354369759173, - "area": 4652.0400580000005, + "angle": 0.05998, + "anglePrev": 0.04159, + "angularSpeed": 0.01556, + "angularVelocity": 0.01836, + "area": 4652.04006, "axes": { "#": 97 }, @@ -1107,7 +1107,7 @@ "#": 111 }, "chamfer": "", - "circleRadius": 38.6693029835391, + "circleRadius": 38.6693, "collisionFilter": { "#": 114 }, @@ -1122,13 +1122,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 13777.654848191112, - "inverseInertia": 0.00007258129275399081, - "inverseMass": 0.21495945596606034, + "inertia": 13777.65485, + "inverseInertia": 0.00007, + "inverseMass": 0.21496, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.652040058000001, + "mass": 4.65204, "motion": 0, "parent": null, "position": { @@ -1150,7 +1150,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.913690733811717, + "speed": 1.91369, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1204,56 +1204,56 @@ } ], { - "x": -0.954845651371317, - "y": -0.2971023090743073 + "x": -0.95485, + "y": -0.2971 }, { - "x": -0.856032682588627, - "y": -0.5169217023303617 + "x": -0.85603, + "y": -0.51692 }, { - "x": -0.7073609286549124, - "y": -0.7068525423399559 + "x": -0.70736, + "y": -0.70685 }, { - "x": -0.5177908504724634, - "y": -0.8555072385240247 + "x": -0.51779, + "y": -0.85551 }, { - "x": -0.29792402284184105, - "y": -0.9545895854312123 + "x": -0.29792, + "y": -0.95459 }, { - "x": -0.06074292042013131, - "y": -0.9981534439247471 + "x": -0.06074, + "y": -0.99815 }, { - "x": 0.1797620276917744, - "y": -0.9837101267142377 + "x": 0.17976, + "y": -0.98371 }, { - "x": 0.41002491374672245, - "y": -0.91207432268812 + "x": 0.41002, + "y": -0.91207 }, { - "x": 0.616453696743567, - "y": -0.7873911605874109 + "x": 0.61645, + "y": -0.78739 }, { - "x": 0.7868708221699349, - "y": -0.6171177433987867 + "x": 0.78687, + "y": -0.61712 }, { - "x": 0.9117437717452954, - "y": -0.4107594121668578 + "x": 0.91174, + "y": -0.41076 }, { - "x": 0.9835393129229332, - "y": -0.18069427200407925 + "x": 0.98354, + "y": -0.18069 }, { - "x": 0.9982016132390561, - "y": 0.05994613688091643 + "x": 0.9982, + "y": 0.05995 }, { "max": { @@ -1264,12 +1264,12 @@ } }, { - "x": 97.4152815065919, - "y": 113.71337293672501 + "x": 97.41528, + "y": 113.71337 }, { - "x": 20.18503926360278, - "y": 34.60109502180602 + "x": 20.18504, + "y": 34.6011 }, { "category": 1, @@ -1286,16 +1286,16 @@ "y": 0 }, { - "x": 58.78241353501236, - "y": 73.20055320414706 + "x": 58.78241, + "y": 73.20055 }, { - "x": 0.003090387328743695, - "y": 0.06082743591511955 + "x": 0.00309, + "y": 0.06083 }, { - "x": 58.74171009343898, - "y": 71.46310342528125 + "x": 58.74171, + "y": 71.4631 }, { "endCol": 2, @@ -1318,8 +1318,8 @@ "yScale": 1 }, { - "x": 0.04317639758041025, - "y": 1.7342785051271221 + "x": 0.04318, + "y": 1.73428 }, [ { @@ -1405,190 +1405,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 96.82096991841807, - "y": 80.15432327990202 + "x": 96.82097, + "y": 80.15432 }, { "body": null, "index": 1, "isInternal": false, - "x": 94.05140963437253, - "y": 89.05530624994736 + "x": 94.05141, + "y": 89.05531 }, { "body": null, "index": 2, "isInternal": false, - "x": 89.23234488586901, - "y": 97.03577390226764 + "x": 89.23234, + "y": 97.03577 }, { "body": null, "index": 3, "isInternal": false, - "x": 82.643218315807, - "y": 103.62963953963876 + "x": 82.64322, + "y": 103.62964 }, { "body": null, "index": 4, "isInternal": false, - "x": 74.66853899972888, - "y": 108.45626846733926 + "x": 74.66854, + "y": 108.45627 }, { "body": null, "index": 5, "isInternal": false, - "x": 65.7690336085957, - "y": 111.23377252551666 + "x": 65.76903, + "y": 111.23377 }, { "body": null, "index": 6, "isInternal": false, - "x": 56.4643563679642, - "y": 111.80001138648808 + "x": 56.46436, + "y": 111.80001 }, { "body": null, "index": 7, "isInternal": false, - "x": 47.294318150767246, - "y": 110.12428942412461 + "x": 47.29432, + "y": 110.12429 }, { "body": null, "index": 8, "isInternal": false, - "x": 38.791176616690706, - "y": 106.30168441556535 + "x": 38.79118, + "y": 106.30168 }, { "body": null, "index": 9, "isInternal": false, - "x": 31.451446782455243, - "y": 100.55536185583782 + "x": 31.45145, + "y": 100.55536 }, { "body": null, "index": 10, "isInternal": false, - "x": 25.698808606429548, - "y": 93.22032218207107 + "x": 25.69881, + "y": 93.22032 }, { "body": null, "index": 11, "isInternal": false, - "x": 21.86945457782993, - "y": 84.72048119981456 + "x": 21.86945, + "y": 84.72048 }, { "body": null, "index": 12, "isInternal": false, - "x": 20.18503926360278, - "y": 75.55201856700651 + "x": 20.18504, + "y": 75.55202 }, { "body": null, "index": 13, "isInternal": false, - "x": 20.74385715160665, - "y": 66.24678312839208 + "x": 20.74386, + "y": 66.24678 }, { "body": null, "index": 14, "isInternal": false, - "x": 23.513417435652176, - "y": 57.345800158346705 + "x": 23.51342, + "y": 57.3458 }, { "body": null, "index": 15, "isInternal": false, - "x": 28.332482184155722, - "y": 49.36533250602644 + "x": 28.33248, + "y": 49.36533 }, { "body": null, "index": 16, "isInternal": false, - "x": 34.92160875421772, - "y": 42.77146686865537 + "x": 34.92161, + "y": 42.77147 }, { "body": null, "index": 17, "isInternal": false, - "x": 42.89628807029586, - "y": 37.94483794095481 + "x": 42.89629, + "y": 37.94484 }, { "body": null, "index": 18, "isInternal": false, - "x": 51.79579346142903, - "y": 35.16733388277742 + "x": 51.79579, + "y": 35.16733 }, { "body": null, "index": 19, "isInternal": false, - "x": 61.10047070206052, - "y": 34.60109502180602 + "x": 61.10047, + "y": 34.6011 }, { "body": null, "index": 20, "isInternal": false, - "x": 70.27050891925748, - "y": 36.276816984169436 + "x": 70.27051, + "y": 36.27682 }, { "body": null, "index": 21, "isInternal": false, - "x": 78.773650453334, - "y": 40.099421992728715 + "x": 78.77365, + "y": 40.09942 }, { "body": null, "index": 22, "isInternal": false, - "x": 86.11338028756948, - "y": 45.84574455245627 + "x": 86.11338, + "y": 45.84574 }, { "body": null, "index": 23, "isInternal": false, - "x": 91.86601846359518, - "y": 53.18078422622301 + "x": 91.86602, + "y": 53.18078 }, { "body": null, "index": 24, "isInternal": false, - "x": 95.69537249219478, - "y": 61.68062520847954 + "x": 95.69537, + "y": 61.68063 }, { "body": null, "index": 25, "isInternal": false, - "x": 97.37978780642196, - "y": 70.84908784128757 + "x": 97.37979, + "y": 70.84909 }, { - "angle": 0.005876799090719365, - "anglePrev": 0.0037088246972078053, - "angularSpeed": 0.002019711576276686, - "angularVelocity": 0.0021236143961908447, - "area": 3285.224192447692, + "angle": 0.00588, + "anglePrev": 0.00371, + "angularSpeed": 0.00202, + "angularVelocity": 0.00212, + "area": 3285.22419, "axes": { "#": 152 }, @@ -1610,13 +1610,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 16260.276467540087, - "inverseInertia": 0.00006149956933366236, - "inverseMass": 0.3043932290218949, + "inertia": 16260.27647, + "inverseInertia": 0.00006, + "inverseMass": 0.30439, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.285224192447692, + "mass": 3.28522, "motion": 0, "parent": null, "position": { @@ -1638,7 +1638,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.69611936399773, + "speed": 2.69612, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1659,12 +1659,12 @@ } ], { - "x": -0.00587676526317042, - "y": 0.9999827316659231 + "x": -0.00588, + "y": 0.99998 }, { - "x": -0.9999827316659231, - "y": -0.00587676526317042 + "x": -0.99998, + "y": -0.00588 }, { "max": { @@ -1675,12 +1675,12 @@ } }, { - "x": 215.1309066813935, - "y": 67.56961165034048 + "x": 215.13091, + "y": 67.56961 }, { - "x": 96.07508676729823, - "y": 36.50204190201685 + "x": 96.07509, + "y": 36.50204 }, { "category": 1, @@ -1697,16 +1697,16 @@ "y": 0 }, { - "x": 155.48951362273704, - "y": 50.69255223540893 + "x": 155.48951, + "y": 50.69255 }, { "x": 0, "y": 0 }, { - "x": 155.24266918931974, - "y": 48.07896262872643 + "x": 155.24267, + "y": 48.07896 }, { "endCol": 4, @@ -1729,8 +1729,8 @@ "yScale": 1 }, { - "x": 0.24334260531287555, - "y": 2.6180802872580244 + "x": 0.24334, + "y": 2.61808 }, [ { @@ -1750,36 +1750,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 96.23777980392519, - "y": 36.50204190201685 + "x": 96.23778, + "y": 36.50204 }, { "body": null, "index": 1, "isInternal": false, - "x": 214.9039404781759, - "y": 37.19942711566193 + "x": 214.90394, + "y": 37.19943 }, { "body": null, "index": 2, "isInternal": false, - "x": 214.74124744154895, - "y": 64.88306256880102 + "x": 214.74125, + "y": 64.88306 }, { "body": null, "index": 3, "isInternal": false, - "x": 96.07508676729823, - "y": 64.18567735515593 + "x": 96.07509, + "y": 64.18568 }, { - "angle": 0.006215800492324188, - "anglePrev": 0.004097418271864945, - "angularSpeed": 0.0023824318517084693, - "angularVelocity": 0.0027644986238944207, - "area": 1082.552735856085, + "angle": 0.00622, + "anglePrev": 0.0041, + "angularSpeed": 0.00238, + "angularVelocity": 0.00276, + "area": 1082.55274, "axes": { "#": 174 }, @@ -1801,13 +1801,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 830.3537019899098, - "inverseInertia": 0.0012043060657205955, - "inverseMass": 0.923742527156608, + "inertia": 830.3537, + "inverseInertia": 0.0012, + "inverseMass": 0.92374, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0825527358560851, + "mass": 1.08255, "motion": 0, "parent": null, "position": { @@ -1829,7 +1829,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8076686432624576, + "speed": 2.80767, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1850,12 +1850,12 @@ } ], { - "x": -0.006215760466608124, - "y": 0.9999806819743177 + "x": -0.00622, + "y": 0.99998 }, { - "x": -0.9999806819743177, - "y": -0.006215760466608124 + "x": -0.99998, + "y": -0.00622 }, { "max": { @@ -1866,12 +1866,12 @@ } }, { - "x": 242.607518797428, - "y": 79.6581705975064 + "x": 242.60752, + "y": 79.65817 }, { - "x": 214.58986820519203, - "y": 37.44060675373247 + "x": 214.58987, + "y": 37.44061 }, { "category": 1, @@ -1888,16 +1888,16 @@ "y": 0 }, { - "x": 228.50358214977845, - "y": 57.14878001028864 + "x": 228.50358, + "y": 57.14878 }, { - "x": 0.006068921359528016, - "y": 0.00003772369020872418 + "x": 0.00607, + "y": 0.00004 }, { - "x": 228.28189511155094, - "y": 54.33540988119535 + "x": 228.2819, + "y": 54.33541 }, { "endCol": 5, @@ -1920,8 +1920,8 @@ "yScale": 1 }, { - "x": 0.20458667687242382, - "y": 2.776213504432903 + "x": 0.20459, + "y": 2.77621 }, [ { @@ -1941,35 +1941,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.8338097587667, - "y": 37.44060675373247 + "x": 214.83381, + "y": 37.44061 }, { "body": null, "index": 1, "isInternal": false, - "x": 242.41729609436487, - "y": 37.61206240981327 + "x": 242.4173, + "y": 37.61206 }, { "body": null, "index": 2, "isInternal": false, - "x": 242.1733545407902, - "y": 76.85695326684485 + "x": 242.17335, + "y": 76.85695 }, { "body": null, "index": 3, "isInternal": false, - "x": 214.58986820519203, - "y": 76.68549761076406 + "x": 214.58987, + "y": 76.6855 }, { - "angle": 0.0021935306455217593, - "anglePrev": -0.0004067759591721694, - "angularSpeed": 0.0015726025263865673, - "angularVelocity": 0.0025820557410834704, + "angle": 0.00219, + "anglePrev": -0.00041, + "angularSpeed": 0.00157, + "angularVelocity": 0.00258, "area": 3923.7696, "axes": { "#": 196 @@ -1992,13 +1992,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 10263.978582589441, - "inverseInertia": 0.00009742810665021045, - "inverseMass": 0.2548569620397691, + "inertia": 10263.97858, + "inverseInertia": 0.0001, + "inverseMass": 0.25486, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.9237696, + "mass": 3.92377, "motion": 0, "parent": null, "position": { @@ -2020,7 +2020,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.901414097387853, + "speed": 2.90141, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2041,12 +2041,12 @@ } ], { - "x": 0.0021935288864653605, - "y": -0.9999975942126182 + "x": 0.00219, + "y": -1 }, { - "x": 0.9999975942126182, - "y": 0.0021935288864653605 + "x": 1, + "y": 0.00219 }, { "max": { @@ -2057,12 +2057,12 @@ } }, { - "x": 305.09047846646433, - "y": 103.33347109009736 + "x": 305.09048, + "y": 103.33347 }, { - "x": 242.2091131638254, - "y": 37.656673627454104 + "x": 242.20911, + "y": 37.65667 }, { "category": 1, @@ -2079,16 +2079,16 @@ "y": 0 }, { - "x": 273.5977391392886, - "y": 69.04529960291741 + "x": 273.59774, + "y": 69.0453 }, { - "x": 0.07674987831488242, - "y": 0.0005660703400298947 + "x": 0.07675, + "y": 0.00057 }, { - "x": 273.4336039981512, - "y": 66.15485224224823 + "x": 273.4336, + "y": 66.15485 }, { "endCol": 6, @@ -2111,8 +2111,8 @@ "yScale": 1 }, { - "x": 0.15936632276844875, - "y": 2.8897005949827417 + "x": 0.15937, + "y": 2.8897 }, [ { @@ -2132,36 +2132,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 304.84896246530366, - "y": 100.43392557838071 + "x": 304.84896, + "y": 100.43393 }, { "body": null, "index": 1, "isInternal": false, - "x": 242.2091131638254, - "y": 100.29652292893252 + "x": 242.20911, + "y": 100.29652 }, { "body": null, "index": 2, "isInternal": false, - "x": 242.3465158132736, - "y": 37.656673627454104 + "x": 242.34652, + "y": 37.65667 }, { "body": null, "index": 3, "isInternal": false, - "x": 304.9863651147519, - "y": 37.79407627690229 + "x": 304.98637, + "y": 37.79408 }, { - "angle": 0.00011353911346216165, - "anglePrev": -0.00008040724242465701, - "angularSpeed": 0.00009721616179068449, - "angularVelocity": 0.00020384493947927238, - "area": 4997.272746939517, + "angle": 0.00011, + "anglePrev": -0.00008, + "angularSpeed": 0.0001, + "angularVelocity": 0.0002, + "area": 4997.27275, "axes": { "#": 218 }, @@ -2182,13 +2182,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 15946.952308478234, - "inverseInertia": 0.00006270790685618014, - "inverseMass": 0.20010914965816717, + "inertia": 15946.95231, + "inverseInertia": 0.00006, + "inverseMass": 0.20011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.997272746939517, + "mass": 4.99727, "motion": 0, "parent": null, "position": { @@ -2210,7 +2210,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9120816546842487, + "speed": 2.91208, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2309,116 +2309,116 @@ } ], { - "x": 0.9924621474360158, - "y": 0.12255156427680614 + "x": 0.99246, + "y": 0.12255 }, { - "x": 0.9329212348943582, - "y": 0.3600805041698119 + "x": 0.93292, + "y": 0.36008 }, { - "x": 0.8174375908345829, - "y": 0.5760171743017333 + "x": 0.81744, + "y": 0.57602 }, { - "x": 0.6268695028200676, - "y": 0.7791242689289825 + "x": 0.62687, + "y": 0.77912 }, { - "x": 0.5229793457619064, - "y": 0.8523453548336194 + "x": 0.52298, + "y": 0.85235 }, { - "x": 0.30014492183545066, - "y": 0.9538936135106427 + "x": 0.30014, + "y": 0.95389 }, { - "x": 0.05931163854995676, - "y": 0.9982395151127408 + "x": 0.05931, + "y": 0.99824 }, { - "x": -0.21830811065001182, - "y": 0.9758798946716869 + "x": -0.21831, + "y": 0.97588 }, { - "x": -0.34032576799123754, - "y": 0.9403075941633007 + "x": -0.34033, + "y": 0.94031 }, { - "x": -0.5586519526251332, - "y": 0.8294021918394755 + "x": -0.55865, + "y": 0.8294 }, { - "x": -0.7434778292639435, - "y": 0.6687605830138127 + "x": -0.74348, + "y": 0.66876 }, { - "x": -0.8990877653196361, - "y": 0.43776842080321793 + "x": -0.89909, + "y": 0.43777 }, { - "x": -0.947351964921992, - "y": 0.3201940888874143 + "x": -0.94735, + "y": 0.32019 }, { - "x": -0.9967663545511888, - "y": 0.08035443008779207 + "x": -0.99677, + "y": 0.08035 }, { - "x": -0.986409805389198, - "y": -0.16430366956353923 + "x": -0.98641, + "y": -0.1643 }, { - "x": -0.9028379827012989, - "y": -0.42998090305483244 + "x": -0.90284, + "y": -0.42998 }, { - "x": -0.8410061017564536, - "y": -0.5410256341509277 + "x": -0.84101, + "y": -0.54103 }, { - "x": -0.6843004315079365, - "y": -0.72920019160588 + "x": -0.6843, + "y": -0.7292 }, { - "x": -0.48655977496972486, - "y": -0.8736472888880336 + "x": -0.48656, + "y": -0.87365 }, { - "x": -0.22673517164522, - "y": -0.9739564476602705 + "x": -0.22674, + "y": -0.97396 }, { - "x": -0.10136467053125679, - "y": -0.9948493371199933 + "x": -0.10136, + "y": -0.99485 }, { - "x": 0.14346232203202441, - "y": -0.9896557796310695 + "x": 0.14346, + "y": -0.98966 }, { - "x": 0.3796862766302367, - "y": -0.9251153070502441 + "x": 0.37969, + "y": -0.92512 }, { - "x": 0.6201116609860667, - "y": -0.7845135613289943 + "x": 0.62011, + "y": -0.78451 }, { - "x": 0.7146094924238541, - "y": -0.6995236045607909 + "x": 0.71461, + "y": -0.69952 }, { - "x": 0.8631926100143881, - "y": -0.5048747547823604 + "x": 0.86319, + "y": -0.50487 }, { - "x": 0.9600142812745374, - "y": -0.27995103098387336 + "x": 0.96001, + "y": -0.27995 }, { - "x": 0.9999906615114047, - "y": -0.004321676756032685 + "x": 0.99999, + "y": -0.00432 }, { "max": { @@ -2429,12 +2429,12 @@ } }, { - "x": 385.35295527068007, - "y": 122.67917751382653 + "x": 385.35296, + "y": 122.67918 }, { - "x": 304.8379671052237, - "y": 37.78760140983484 + "x": 304.83797, + "y": 37.7876 }, { "category": 1, @@ -2451,16 +2451,16 @@ "y": 0 }, { - "x": 346.62715384439826, - "y": 78.785993247055 + "x": 346.62715, + "y": 78.78599 }, { - "x": 0.08830908065368949, - "y": 0.003909010399741966 + "x": 0.08831, + "y": 0.00391 }, { - "x": 346.49055209739174, - "y": 75.86979773907022 + "x": 346.49055, + "y": 75.8698 }, { "endCol": 8, @@ -2483,8 +2483,8 @@ "yScale": 1 }, { - "x": 0.13572658497997736, - "y": 2.9155310294732857 + "x": 0.13573, + "y": 2.91553 }, [ { @@ -2576,204 +2576,204 @@ "body": null, "index": 0, "isInternal": false, - "x": 385.27467216264205, - "y": 92.58738226070278 + "x": 385.27467, + "y": 92.58738 }, { "body": null, "index": 1, "isInternal": false, - "x": 384.9745706366696, - "y": 95.01770134045503 + "x": 384.97457, + "y": 95.0177 }, { "body": null, "index": 2, "isInternal": false, - "x": 384.0928135623152, - "y": 97.30221796703596 + "x": 384.09281, + "y": 97.30222 }, { "body": null, "index": 3, "isInternal": false, - "x": 382.6822756061956, - "y": 99.30394083238086 + "x": 382.68228, + "y": 99.30394 }, { "body": null, "index": 4, "isInternal": false, - "x": 359.93347436786496, - "y": 117.60722092610457 + "x": 359.93347, + "y": 117.60722 }, { "body": null, "index": 5, "isInternal": false, - "x": 357.84623339991685, - "y": 118.88790358563288 + "x": 357.84623, + "y": 118.8879 }, { "body": null, "index": 6, "isInternal": false, - "x": 355.51031895175043, - "y": 119.62290469008403 + "x": 355.51032, + "y": 119.6229 }, { "body": null, "index": 7, "isInternal": false, - "x": 353.0658093407669, - "y": 119.76814825967183 + "x": 353.06581, + "y": 119.76815 }, { "body": null, "index": 8, "isInternal": false, - "x": 324.57223778185187, - "y": 113.39402598636651 + "x": 324.57224, + "y": 113.39403 }, { "body": null, "index": 9, "isInternal": false, - "x": 322.2696103035223, - "y": 112.56063543435512 + "x": 322.26961, + "y": 112.56064 }, { "body": null, "index": 10, "isInternal": false, - "x": 320.2385682388076, - "y": 111.19260720091121 + "x": 320.23857, + "y": 111.19261 }, { "body": null, "index": 11, "isInternal": false, - "x": 318.60090572876317, - "y": 109.37197692011962 + "x": 318.60091, + "y": 109.37198 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.8188191093122, - "y": 83.12015712526497 + "x": 305.81882, + "y": 83.12016 }, { "body": null, "index": 13, "isInternal": false, - "x": 305.0347367849385, - "y": 80.80030814480112 + "x": 305.03474, + "y": 80.80031 }, { "body": null, "index": 14, "isInternal": false, - "x": 304.8379671052237, - "y": 78.3594545898537 + "x": 304.83797, + "y": 78.35945 }, { "body": null, "index": 15, "isInternal": false, - "x": 305.2403093332834, - "y": 75.9439618626706 + "x": 305.24031, + "y": 75.94396 }, { "body": null, "index": 16, "isInternal": false, - "x": 317.7950054010911, - "y": 49.58265978911777 + "x": 317.79501, + "y": 49.58266 }, { "body": null, "index": 17, "isInternal": false, - "x": 319.1198702638333, - "y": 47.52320204213402 + "x": 319.11987, + "y": 47.5232 }, { "body": null, "index": 18, "isInternal": false, - "x": 320.9055374314892, - "y": 45.84748551404934 + "x": 320.90554, + "y": 45.84749 }, { "body": null, "index": 19, "isInternal": false, - "x": 323.0449269953391, - "y": 44.65599677711953 + "x": 323.04493, + "y": 44.656 }, { "body": null, "index": 20, "isInternal": false, - "x": 351.48232659585176, - "y": 38.035825315597435 + "x": 351.48233, + "y": 38.03583 }, { "body": null, "index": 21, "isInternal": false, - "x": 353.9185342687125, - "y": 37.78760140983484 + "x": 353.91853, + "y": 37.7876 }, { "body": null, "index": 22, "isInternal": false, - "x": 356.3420238503689, - "y": 38.138914916976155 + "x": 356.34202, + "y": 38.13891 }, { "body": null, "index": 23, "isInternal": false, - "x": 358.6074653853064, - "y": 39.06869853937295 + "x": 358.60747, + "y": 39.0687 }, { "body": null, "index": 24, "isInternal": false, - "x": 381.51364445951873, - "y": 57.174680963043656 + "x": 381.51364, + "y": 57.17468 }, { "body": null, "index": 25, "isInternal": false, - "x": 383.2266221960432, - "y": 58.924600683908096 + "x": 383.22662, + "y": 58.9246 }, { "body": null, "index": 26, "isInternal": false, - "x": 384.4629481885284, - "y": 61.03836741550464 + "x": 384.46295, + "y": 61.03837 }, { "body": null, "index": 27, "isInternal": false, - "x": 385.1484860035011, - "y": 63.38922888729348 + "x": 385.14849, + "y": 63.38923 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2424.7221285720684, + "area": 2424.72213, "axes": { "#": 290 }, @@ -2795,13 +2795,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 6421.581536792131, - "inverseInertia": 0.00015572487778447566, - "inverseMass": 0.41241839145869685, + "inertia": 6421.58154, + "inverseInertia": 0.00016, + "inverseMass": 0.41242, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.4247221285720686, + "mass": 2.42472, "motion": 0, "parent": null, "position": { @@ -2823,7 +2823,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2860,12 +2860,12 @@ } }, { - "x": 469.48949597941765, - "y": 66.46913445915244 + "x": 469.4895, + "y": 66.46913 }, { - "x": 385.1134671728333, - "y": 37.732037408397986 + "x": 385.11347, + "y": 37.73204 }, { "category": 1, @@ -2882,16 +2882,16 @@ "y": 0 }, { - "x": 427.30148157612547, - "y": 52.100585933775214 + "x": 427.30148, + "y": 52.10059 }, { "x": 0, "y": 0 }, { - "x": 427.30148157612547, - "y": 49.19331521873956 + "x": 427.30148, + "y": 49.19332 }, { "endCol": 9, @@ -2915,7 +2915,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -2935,36 +2935,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 385.1134671728333, - "y": 37.732037408397986 + "x": 385.11347, + "y": 37.73204 }, { "body": null, "index": 1, "isInternal": false, - "x": 469.48949597941765, - "y": 37.732037408397986 + "x": 469.4895, + "y": 37.73204 }, { "body": null, "index": 2, "isInternal": false, - "x": 469.48949597941765, - "y": 66.46913445915244 + "x": 469.4895, + "y": 66.46913 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.1134671728333, - "y": 66.46913445915244 + "x": 385.11347, + "y": 66.46913 }, { - "angle": -5.95725003586558e-14, - "anglePrev": 0.000014857112182855894, - "angularSpeed": 1.9577268951061136e-14, - "angularVelocity": -0.000013066670653156444, - "area": 3062.135108689158, + "angle": 0, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": -0.00001, + "area": 3062.13511, "axes": { "#": 312 }, @@ -2986,13 +2986,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 12902.457783405109, - "inverseInertia": 0.00007750461321300974, - "inverseMass": 0.3265695224101594, + "inertia": 12902.45778, + "inverseInertia": 0.00008, + "inverseMass": 0.32657, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.062135108689158, + "mass": 3.06214, "motion": 0, "parent": null, "position": { @@ -3014,7 +3014,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150341315, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3035,12 +3035,12 @@ } ], { - "x": 5.95725003586558e-14, + "x": 0, "y": 1 }, { "x": -1, - "y": 5.95725003586558e-14 + "y": 0 }, { "max": { @@ -3051,12 +3051,12 @@ } }, { - "x": 578.598646375718, - "y": 68.77352013114806 + "x": 578.59865, + "y": 68.77352 }, { - "x": 469.7440510396395, - "y": 37.73574101418701 + "x": 469.74405, + "y": 37.73574 }, { "category": 1, @@ -3073,16 +3073,16 @@ "y": 0 }, { - "x": 524.1713487076788, - "y": 51.80099521515047 + "x": 524.17135, + "y": 51.801 }, { "x": 0, "y": 0 }, { - "x": 524.185369822002, - "y": 48.897079382365696 + "x": 524.18537, + "y": 48.89708 }, { "endCol": 12, @@ -3105,8 +3105,8 @@ "yScale": 1 }, { - "x": -0.011946581884330953, - "y": 2.904632031681551 + "x": -0.01195, + "y": 2.90463 }, [ { @@ -3126,36 +3126,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 469.7440510396395, - "y": 37.73574101419351 + "x": 469.74405, + "y": 37.73574 }, { "body": null, "index": 1, "isInternal": false, - "x": 578.5986463757164, - "y": 37.73574101418701 + "x": 578.59865, + "y": 37.73574 }, { "body": null, "index": 2, "isInternal": false, - "x": 578.598646375718, - "y": 65.86624941610745 + "x": 578.59865, + "y": 65.86625 }, { "body": null, "index": 3, "isInternal": false, - "x": 469.7440510396412, - "y": 65.86624941611393 + "x": 469.74405, + "y": 65.86625 }, { - "angle": 0.0001269567397339905, - "anglePrev": -0.000392876824773127, - "angularSpeed": 0.0001269567398289086, - "angularVelocity": 0.0004758140897828893, - "area": 1378.042832459846, + "angle": 0.00013, + "anglePrev": -0.00039, + "angularSpeed": 0.00013, + "angularVelocity": 0.00048, + "area": 1378.04283, "axes": { "#": 334 }, @@ -3177,13 +3177,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1458.976407551466, - "inverseInertia": 0.0006854120428706963, - "inverseMass": 0.7256668489868136, + "inertia": 1458.97641, + "inverseInertia": 0.00069, + "inverseMass": 0.72567, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3780428324598462, + "mass": 1.37804, "motion": 0, "parent": null, "position": { @@ -3205,7 +3205,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905454176937781, + "speed": 2.90545, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3226,12 +3226,12 @@ } ], { - "x": -0.00012695673939294206, - "y": 0.9999999919409931 + "x": -0.00013, + "y": 1 }, { - "x": -0.9999999919409931, - "y": -0.00012695673939294206 + "x": -1, + "y": -0.00013 }, { "max": { @@ -3242,12 +3242,12 @@ } }, { - "x": 606.8046173188283, - "y": 89.40003151224711 + "x": 606.80462, + "y": 89.40003 }, { - "x": 578.523638260961, - "y": 37.732121200002545 + "x": 578.52364, + "y": 37.73212 }, { "category": 1, @@ -3264,16 +3264,16 @@ "y": 0 }, { - "x": 592.6703280245791, - "y": 62.113362499007344 + "x": 592.67033, + "y": 62.11336 }, { - "x": -0.06681123368927021, - "y": 0.000002630116428091686 + "x": -0.06681, + "y": 0 }, { - "x": 592.6954349098514, - "y": 59.20705738492943 + "x": 592.69543, + "y": 59.20706 }, { "endCol": 12, @@ -3296,8 +3296,8 @@ "yScale": 1 }, { - "x": -0.01942407238823307, - "y": 2.907849489587015 + "x": -0.01942, + "y": 2.90785 }, [ { @@ -3317,36 +3317,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 578.5422290006417, - "y": 37.732121200002545 + "x": 578.54223, + "y": 37.73212 }, { "body": null, "index": 1, "isInternal": false, - "x": 606.8046173188283, - "y": 37.73570930069978 + "x": 606.80462, + "y": 37.73571 }, { "body": null, "index": 2, "isInternal": false, - "x": 606.7984270485166, - "y": 86.49460379801215 + "x": 606.79843, + "y": 86.4946 }, { "body": null, "index": 3, "isInternal": false, - "x": 578.53603873033, - "y": 86.49101569731488 + "x": 578.53604, + "y": 86.49102 }, { - "angle": -0.00007423372747940437, - "anglePrev": 0.00009240153593463822, - "angularSpeed": 0.00002444600201969303, - "angularVelocity": -0.00017967722079647013, - "area": 4586.778272, + "angle": -0.00007, + "anglePrev": 0.00009, + "angularSpeed": 0.00002, + "angularVelocity": -0.00018, + "area": 4586.77827, "axes": { "#": 356 }, @@ -3354,7 +3354,7 @@ "#": 370 }, "chamfer": "", - "circleRadius": 38.39666923868313, + "circleRadius": 38.39667, "collisionFilter": { "#": 373 }, @@ -3369,13 +3369,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 13393.80286068791, - "inverseInertia": 0.00007466139455696301, - "inverseMass": 0.21801795087948828, + "inertia": 13393.80286, + "inverseInertia": 0.00007, + "inverseMass": 0.21802, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.586778271999999, + "mass": 4.58678, "motion": 0, "parent": null, "position": { @@ -3397,7 +3397,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9090470908674244, + "speed": 2.90905, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3451,56 +3451,56 @@ } ], { - "x": -0.9709681874371251, - "y": -0.2392086515681735 + "x": -0.97097, + "y": -0.23921 }, { - "x": -0.8854724139301976, - "y": -0.46469194545271464 + "x": -0.88547, + "y": -0.46469 }, { - "x": -0.7485424068059939, - "y": -0.6630869213105398 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5681751687807776, - "y": -0.8229076361177693 + "x": -0.56818, + "y": -0.82291 }, { - "x": -0.3546357106820888, - "y": -0.9350045522397255 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12063734926592469, - "y": -0.9926966454874777 + "x": -0.12064, + "y": -0.9927 }, { - "x": 0.12048996479238495, - "y": -0.9927145452668306 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.3544968890278089, - "y": -0.9350571937959758 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5680529875168011, - "y": -0.8229919825692331 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7484439517288274, - "y": -0.6631980481881237 + "x": 0.74844, + "y": -0.6632 }, { - "x": 0.8854034125409193, - "y": -0.46482340416645834 + "x": 0.8854, + "y": -0.46482 }, { - "x": 0.9709326620362287, - "y": -0.2393528061068901 + "x": 0.97093, + "y": -0.23935 }, { - "x": 0.9999999972446768, - "y": -0.00007423372741122506 + "x": 1, + "y": -0.00007 }, { "max": { @@ -3511,12 +3511,12 @@ } }, { - "x": 682.958021282072, - "y": 117.43825236305817 + "x": 682.95802, + "y": 117.43825 }, { - "x": 606.7046404656272, - "y": 37.73526554919428 + "x": 606.70464, + "y": 37.73527 }, { "category": 1, @@ -3533,16 +3533,16 @@ "y": 0 }, { - "x": 644.8406778334062, - "y": 76.13226544339815 + "x": 644.84068, + "y": 76.13227 }, { - "x": -0.07132104981976868, - "y": 0.0005538774351983786 + "x": -0.07132, + "y": 0.00055 }, { - "x": 644.8776474931722, - "y": 73.22685210082899 + "x": 644.87765, + "y": 73.22685 }, { "endCol": 14, @@ -3565,8 +3565,8 @@ "yScale": 1 }, { - "x": -0.032660114798773066, - "y": 2.903888913514308 + "x": -0.03266, + "y": 2.90389 }, [ { @@ -3652,190 +3652,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 682.958021282072, - "y": 80.75743586365878 + "x": 682.95802, + "y": 80.75744 }, { "body": null, "index": 1, "isInternal": false, - "x": 680.743688500917, - "y": 89.74560026660015 + "x": 680.74369, + "y": 89.7456 }, { "body": null, "index": 2, "isInternal": false, - "x": 676.4422969324003, - "y": 97.94191959751284 + "x": 676.4423, + "y": 97.94192 }, { "body": null, "index": 3, "isInternal": false, - "x": 670.3048112405759, - "y": 104.8703752250428 + "x": 670.30481, + "y": 104.87038 }, { "body": null, "index": 4, "isInternal": false, - "x": 662.6872016567385, - "y": 110.12994072308798 + "x": 662.6872, + "y": 110.12994 }, { "body": null, "index": 5, "isInternal": false, - "x": 654.0324453156791, - "y": 113.41258320695573 + "x": 654.03245, + "y": 113.41258 }, { "body": null, "index": 6, "isInternal": false, - "x": 644.8435281858375, - "y": 114.52926533760198 + "x": 644.84353, + "y": 114.52927 }, { "body": null, "index": 7, "isInternal": false, - "x": 635.6544453663164, - "y": 113.41394747439814 + "x": 635.65445, + "y": 113.41395 }, { "body": null, "index": 8, "isInternal": false, - "x": 626.9992017550703, - "y": 110.13258997635182 + "x": 626.9992, + "y": 110.13259 }, { "body": null, "index": 9, "isInternal": false, - "x": 619.380811380888, - "y": 104.87415550337751 + "x": 619.38081, + "y": 104.87416 }, { "body": null, "index": 10, "isInternal": false, - "x": 613.2422971065366, - "y": 97.94661116908522 + "x": 613.2423, + "y": 97.94661 }, { "body": null, "index": 11, "isInternal": false, - "x": 608.9396886987602, - "y": 89.75093054516316 + "x": 608.93969, + "y": 89.75093 }, { "body": null, "index": 12, "isInternal": false, - "x": 606.7240214921213, - "y": 80.76309499763423 + "x": 606.72402, + "y": 80.76309 }, { "body": null, "index": 13, "isInternal": false, - "x": 606.7233343847404, - "y": 71.50709502313751 + "x": 606.72333, + "y": 71.5071 }, { "body": null, "index": 14, "isInternal": false, - "x": 608.9376671658954, - "y": 62.51893062019613 + "x": 608.93767, + "y": 62.51893 }, { "body": null, "index": 15, "isInternal": false, - "x": 613.2390587344121, - "y": 54.32261128928344 + "x": 613.23906, + "y": 54.32261 }, { "body": null, "index": 16, "isInternal": false, - "x": 619.3765444262365, - "y": 47.39415566175346 + "x": 619.37654, + "y": 47.39416 }, { "body": null, "index": 17, "isInternal": false, - "x": 626.9941540100739, - "y": 42.13459016370829 + "x": 626.99415, + "y": 42.13459 }, { "body": null, "index": 18, "isInternal": false, - "x": 635.6489103511333, - "y": 38.85194767984052 + "x": 635.64891, + "y": 38.85195 }, { "body": null, "index": 19, "isInternal": false, - "x": 644.8378274809749, - "y": 37.73526554919428 + "x": 644.83783, + "y": 37.73527 }, { "body": null, "index": 20, "isInternal": false, - "x": 654.026910300496, - "y": 38.850583412398144 + "x": 654.02691, + "y": 38.85058 }, { "body": null, "index": 21, "isInternal": false, - "x": 662.682153911742, - "y": 42.13194091044444 + "x": 662.68215, + "y": 42.13194 }, { "body": null, "index": 22, "isInternal": false, - "x": 670.3005442859244, - "y": 47.390375383418785 + "x": 670.30054, + "y": 47.39038 }, { "body": null, "index": 23, "isInternal": false, - "x": 676.4390585602757, - "y": 54.31791971771105 + "x": 676.43906, + "y": 54.31792 }, { "body": null, "index": 24, "isInternal": false, - "x": 680.7416669680522, - "y": 62.5136003416331 + "x": 680.74167, + "y": 62.5136 }, { "body": null, "index": 25, "isInternal": false, - "x": 682.957334174691, - "y": 71.50143588916204 + "x": 682.95733, + "y": 71.50144 }, { - "angle": -0.007680970208705633, - "anglePrev": 0.000010713599733281975, - "angularSpeed": 0.004467369704902799, - "angularVelocity": -0.007260602074310345, - "area": 1977.449427607814, + "angle": -0.00768, + "anglePrev": 0.00001, + "angularSpeed": 0.00447, + "angularVelocity": -0.00726, + "area": 1977.44943, "axes": { "#": 411 }, @@ -3857,13 +3857,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 2674.507793468318, - "inverseInertia": 0.0003739005743195812, - "inverseMass": 0.5057019340361756, + "inertia": 2674.50779, + "inverseInertia": 0.00037, + "inverseMass": 0.5057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.977449427607814, + "mass": 1.97745, "motion": 0, "parent": null, "position": { @@ -3885,7 +3885,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.77994977803416, + "speed": 2.77995, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3906,12 +3906,12 @@ } ], { - "x": 0.007680894682840191, - "y": 0.9999705014933545 + "x": 0.00768, + "y": 0.99997 }, { - "x": -0.9999705014933545, - "y": 0.007680894682840191 + "x": -0.99997, + "y": 0.00768 }, { "max": { @@ -3922,12 +3922,12 @@ } }, { - "x": 732.7343586374594, - "y": 80.1722686813395 + "x": 732.73436, + "y": 80.17227 }, { - "x": 682.5103031155061, - "y": 37.321466546349534 + "x": 682.5103, + "y": 37.32147 }, { "category": 1, @@ -3944,16 +3944,16 @@ "y": 0 }, { - "x": 707.6722000346618, - "y": 57.35778760925133 + "x": 707.6722, + "y": 57.35779 }, { - "x": -0.05312592903682695, - "y": 0.0003569973427762238 + "x": -0.05313, + "y": 0.00036 }, { - "x": 707.8404083922084, - "y": 54.65282773790987 + "x": 707.84041, + "y": 54.65283 }, { "endCol": 15, @@ -3976,8 +3976,8 @@ "yScale": 1 }, { - "x": -0.15715915019791282, - "y": 2.727526882294036 + "x": -0.15716, + "y": 2.72753 }, [ { @@ -3997,36 +3997,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 682.6100414318643, - "y": 37.70413581163276 + "x": 682.61004, + "y": 37.70414 }, { "body": null, "index": 1, "isInternal": false, - "x": 732.4294951429351, - "y": 37.321466546349534 + "x": 732.4295, + "y": 37.32147 }, { "body": null, "index": 2, "isInternal": false, - "x": 732.7343586374594, - "y": 77.01143940686991 + "x": 732.73436, + "y": 77.01144 }, { "body": null, "index": 3, "isInternal": false, - "x": 682.9149049263885, - "y": 77.39410867215317 + "x": 682.9149, + "y": 77.39411 }, { - "angle": -0.010364760804742135, - "anglePrev": -0.0025159498790982495, - "angularSpeed": 0.0050306345479038395, - "angularVelocity": -0.007710908858397229, - "area": 2209.188004, + "angle": -0.01036, + "anglePrev": -0.00252, + "angularSpeed": 0.00503, + "angularVelocity": -0.00771, + "area": 2209.188, "axes": { "#": 433 }, @@ -4048,13 +4048,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 3253.6744246783364, - "inverseInertia": 0.00030734482602661194, - "inverseMass": 0.4526550018329721, + "inertia": 3253.67442, + "inverseInertia": 0.00031, + "inverseMass": 0.45266, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.209188004, + "mass": 2.20919, "motion": 0, "parent": null, "position": { @@ -4076,7 +4076,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.474588351749468, + "speed": 2.47459, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4097,12 +4097,12 @@ } ], { - "x": -0.010364575227691224, - "y": -0.9999462863475965 + "x": -0.01036, + "y": -0.99995 }, { - "x": 0.9999462863475965, - "y": -0.010364575227691224 + "x": 0.99995, + "y": -0.01036 }, { "max": { @@ -4113,12 +4113,12 @@ } }, { - "x": 779.8219791471736, - "y": 86.6661689204492 + "x": 779.82198, + "y": 86.66617 }, { - "x": 732.2281243731913, - "y": 36.70727353933644 + "x": 732.22812, + "y": 36.70727 }, { "category": 1, @@ -4135,16 +4135,16 @@ "y": 0 }, { - "x": 756.0786635892928, - "y": 60.45058909721728 + "x": 756.07866, + "y": 60.45059 }, { "x": 0, "y": 0 }, { - "x": 756.2507136827635, - "y": 58.236470311520094 + "x": 756.25071, + "y": 58.23647 }, { "endCol": 16, @@ -4167,8 +4167,8 @@ "yScale": 1 }, { - "x": -0.1522366392183585, - "y": 2.2420797466808224 + "x": -0.15224, + "y": 2.24208 }, [ { @@ -4188,36 +4188,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 779.8219791471736, - "y": 83.70674889024616 + "x": 779.82198, + "y": 83.70675 }, { "body": null, "index": 1, "isInternal": false, - "x": 732.822503796264, - "y": 84.19390465509811 + "x": 732.8225, + "y": 84.1939 }, { "body": null, "index": 2, "isInternal": false, - "x": 732.335348031412, - "y": 37.19442930418839 + "x": 732.33535, + "y": 37.19443 }, { "body": null, "index": 3, "isInternal": false, - "x": 779.3348233823216, - "y": 36.70727353933644 + "x": 779.33482, + "y": 36.70727 }, { - "angle": 0.0020792548342075195, - "anglePrev": 0.0019114143708082187, - "angularSpeed": 0.00016784046339930075, - "angularVelocity": 0.00016784046339930075, - "area": 5068.594224000001, + "angle": 0.00208, + "anglePrev": 0.00191, + "angularSpeed": 0.00017, + "angularVelocity": 0.00017, + "area": 5068.59422, "axes": { "#": 455 }, @@ -4225,7 +4225,7 @@ "#": 469 }, "chamfer": "", - "circleRadius": 40.363404492455416, + "circleRadius": 40.3634, "collisionFilter": { "#": 472 }, @@ -4240,13 +4240,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 16355.486166242355, - "inverseInertia": 0.00006114156374415793, - "inverseMass": 0.19729336297329916, + "inertia": 16355.48617, + "inverseInertia": 0.00006, + "inverseMass": 0.19729, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.068594224000002, + "mass": 5.06859, "motion": 0, "parent": null, "position": { @@ -4268,7 +4268,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8899287893253165, + "speed": 2.88993, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4322,56 +4322,56 @@ } ], { - "x": -0.9704354464664638, - "y": -0.24136081753556302 + "x": -0.97044, + "y": -0.24136 }, { - "x": -0.8844889229351829, - "y": -0.4665611912760857 + "x": -0.88449, + "y": -0.46656 }, { - "x": -0.7471392772406792, - "y": -0.6646675111695136 + "x": -0.74714, + "y": -0.66467 }, { - "x": -0.5663855546229962, - "y": -0.8241404027921463 + "x": -0.56639, + "y": -0.82414 }, { - "x": -0.3527124712305643, - "y": -0.9357317525009122 + "x": -0.35271, + "y": -0.93573 }, { - "x": -0.11837747441810632, - "y": -0.9929686669529862 + "x": -0.11838, + "y": -0.99297 }, { - "x": 0.12250570875733775, - "y": -0.9924678087081021 + "x": 0.12251, + "y": -0.99247 }, { - "x": 0.35660065979530253, - "y": -0.9342569076188599 + "x": 0.3566, + "y": -0.93426 }, { - "x": 0.5698078432752488, - "y": -0.8217779637724593 + "x": 0.56981, + "y": -0.82178 }, { - "x": 0.7498968353395288, - "y": -0.6615547871096994 + "x": 0.7499, + "y": -0.66155 }, { - "x": 0.8864214687558964, - "y": -0.46287901197682274 + "x": 0.88642, + "y": -0.46288 }, { - "x": 0.971430753910565, - "y": -0.23732317703239852 + "x": 0.97143, + "y": -0.23732 }, { - "x": 0.9999978383504461, - "y": 0.002079253336000542 + "x": 1, + "y": 0.00208 }, { "max": { @@ -4382,12 +4382,12 @@ } }, { - "x": 1203.9613257675244, - "y": 198.83768011783565 + "x": 1203.96133, + "y": 198.83768 }, { - "x": 1123.802003690179, - "y": 115.22192610633255 + "x": 1123.802, + "y": 115.22193 }, { "category": 1, @@ -4404,16 +4404,16 @@ "y": 0 }, { - "x": 1163.8822968151806, - "y": 155.58483885567162 + "x": 1163.8823, + "y": 155.58484 }, { - "x": 6.080190863886244, - "y": 1.8690629475994058 + "x": 6.08019, + "y": 1.86906 }, { - "x": 1163.8835609878388, - "y": 152.69491034284664 + "x": 1163.88356, + "y": 152.69491 }, { "endCol": 24, @@ -4436,8 +4436,8 @@ "yScale": 1 }, { - "x": -0.0012641726583387935, - "y": 2.8899285128249765 + "x": -0.00126, + "y": 2.88993 }, [ { @@ -4523,190 +4523,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 1203.941094632565, - "y": 160.53314194116672 + "x": 1203.94109, + "y": 160.53314 }, { "body": null, "index": 1, "isInternal": false, - "x": 1201.5924548815283, - "y": 169.97627893688218 + "x": 1201.59245, + "y": 169.97628 }, { "body": null, "index": 2, "isInternal": false, - "x": 1197.0525498097645, - "y": 178.58285792852422 + "x": 1197.05255, + "y": 178.58286 }, { "body": null, "index": 3, "isInternal": false, - "x": 1190.5854205546814, - "y": 185.85242684270665 + "x": 1190.58542, + "y": 185.85243 }, { "body": null, "index": 4, "isInternal": false, - "x": 1182.5659437527295, - "y": 191.36376423239327 + "x": 1182.56594, + "y": 191.36376 }, { "body": null, "index": 5, "isInternal": false, - "x": 1173.460787916155, - "y": 194.79583972568975 + "x": 1173.46079, + "y": 194.79584 }, { "body": null, "index": 6, "isInternal": false, - "x": 1163.7983719127797, - "y": 195.94775160501067 + "x": 1163.79837, + "y": 195.94775 }, { "body": null, "index": 7, "isInternal": false, - "x": 1154.1408296792245, - "y": 194.75566855123822 + "x": 1154.14083, + "y": 194.75567 }, { "body": null, "index": 8, "isInternal": false, - "x": 1145.0500248491742, - "y": 191.28575896423985 + "x": 1145.05002, + "y": 191.28576 }, { "body": null, "index": 9, "isInternal": false, - "x": 1137.0535362721052, - "y": 185.74112025312388 + "x": 1137.05354, + "y": 185.74112 }, { "body": null, "index": 10, "isInternal": false, - "x": 1130.6166934211142, - "y": 178.44472065389368 + "x": 1130.61669, + "y": 178.44472 }, { "body": null, "index": 11, "isInternal": false, - "x": 1126.1126180428366, - "y": 169.81933689508088 + "x": 1126.11262, + "y": 169.81934 }, { "body": null, "index": 12, "isInternal": false, - "x": 1123.8032678628372, - "y": 160.36651473732636 + "x": 1123.80327, + "y": 160.36651 }, { "body": null, "index": 13, "isInternal": false, - "x": 1123.8234989977966, - "y": 150.63653577017652 + "x": 1123.8235, + "y": 150.63654 }, { "body": null, "index": 14, "isInternal": false, - "x": 1126.1721387488328, - "y": 141.19339877446097 + "x": 1126.17214, + "y": 141.1934 }, { "body": null, "index": 15, "isInternal": false, - "x": 1130.7120438205966, - "y": 132.58681978281894 + "x": 1130.71204, + "y": 132.58682 }, { "body": null, "index": 16, "isInternal": false, - "x": 1137.1791730756797, - "y": 125.31725086863653 + "x": 1137.17917, + "y": 125.31725 }, { "body": null, "index": 17, "isInternal": false, - "x": 1145.1986498776316, - "y": 119.80591347894998 + "x": 1145.19865, + "y": 119.80591 }, { "body": null, "index": 18, "isInternal": false, - "x": 1154.3038057142066, - "y": 116.3738379856535 + "x": 1154.30381, + "y": 116.37384 }, { "body": null, "index": 19, "isInternal": false, - "x": 1163.966221717582, - "y": 115.22192610633255 + "x": 1163.96622, + "y": 115.22193 }, { "body": null, "index": 20, "isInternal": false, - "x": 1173.623763951137, - "y": 116.41400916010505 + "x": 1173.62376, + "y": 116.41401 }, { "body": null, "index": 21, "isInternal": false, - "x": 1182.714568781187, - "y": 119.88391874710337 + "x": 1182.71457, + "y": 119.88392 }, { "body": null, "index": 22, "isInternal": false, - "x": 1190.7110573582563, - "y": 125.4285574582193 + "x": 1190.71106, + "y": 125.42856 }, { "body": null, "index": 23, "isInternal": false, - "x": 1197.147900209247, - "y": 132.72495705744947 + "x": 1197.1479, + "y": 132.72496 }, { "body": null, "index": 24, "isInternal": false, - "x": 1201.6519755875245, - "y": 141.35034081626233 + "x": 1201.65198, + "y": 141.35034 }, { "body": null, "index": 25, "isInternal": false, - "x": 1203.9613257675244, - "y": 150.80316297401689 + "x": 1203.96133, + "y": 150.80316 }, { - "angle": -0.0001340411870231332, - "anglePrev": -0.00011973939960754184, - "angularSpeed": 0.000014301787415591368, - "angularVelocity": -0.000014301787415591368, - "area": 703.4621424265246, + "angle": -0.00013, + "anglePrev": -0.00012, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 703.46214, "axes": { "#": 510 }, @@ -4727,13 +4727,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 321.3570390953915, - "inverseInertia": 0.003111803627563174, - "inverseMass": 1.4215406056544801, + "inertia": 321.35704, + "inverseInertia": 0.00311, + "inverseMass": 1.42154, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7034621424265246, + "mass": 0.70346, "motion": 0, "parent": null, "position": { @@ -4755,7 +4755,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.899810695257733, + "speed": 2.89981, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4794,36 +4794,36 @@ } ], { - "x": 0.9770457568025648, - "y": 0.21302954986128972 + "x": 0.97705, + "y": 0.21303 }, { - "x": 0.7995252102160779, - "y": 0.6006325317770725 + "x": 0.79953, + "y": 0.60063 }, { - "x": 0.47669126365022524, - "y": 0.8790707816550105 + "x": 0.47669, + "y": 0.87907 }, { - "x": 0.029191784535693432, - "y": 0.9995738290469701 + "x": 0.02919, + "y": 0.99957 }, { - "x": -0.21302954986128966, - "y": 0.9770457568025648 + "x": -0.21303, + "y": 0.97705 }, { - "x": -0.6006325317770728, - "y": 0.7995252102160778 + "x": -0.60063, + "y": 0.79953 }, { - "x": -0.8790707816550104, - "y": 0.47669126365022535 + "x": -0.87907, + "y": 0.47669 }, { - "x": -0.9990125672550398, - "y": 0.044428487105624886 + "x": -0.99901, + "y": 0.04443 }, { "max": { @@ -4834,12 +4834,12 @@ } }, { - "x": 889.9438526891767, - "y": 63.789345428768705 + "x": 889.94385, + "y": 63.78935 }, { - "x": 859.143027958458, - "y": 37.66499849816392 + "x": 859.14303, + "y": 37.665 }, { "category": 1, @@ -4856,16 +4856,16 @@ "y": 0 }, { - "x": 874.5434403238173, - "y": 50.72717196346631 + "x": 874.54344, + "y": 50.72717 }, { "x": 0, "y": 0 }, { - "x": 874.5518663954568, - "y": 47.82737351018583 + "x": 874.55187, + "y": 47.82737 }, { "endCol": 18, @@ -4888,8 +4888,8 @@ "yScale": 1 }, { - "x": -0.008426071639554493, - "y": 2.8997984532804795 + "x": -0.00843, + "y": 2.8998 }, [ { @@ -4945,120 +4945,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 859.143027958458, - "y": 47.66778646558505 + "x": 859.14303, + "y": 47.66779 }, { "body": null, "index": 1, "isInternal": false, - "x": 860.0512177182134, - "y": 43.50243498397959 + "x": 860.05122, + "y": 43.50243 }, { "body": null, "index": 2, "isInternal": false, - "x": 862.6118404820081, - "y": 40.09389091552872 + "x": 862.61184, + "y": 40.09389 }, { "body": null, "index": 3, "isInternal": false, - "x": 866.3595040456737, - "y": 38.0616558359642 + "x": 866.3595, + "y": 38.06166 }, { "body": null, "index": 4, "isInternal": false, - "x": 879.9416916464286, - "y": 37.66499849816392 + "x": 879.94169, + "y": 37.665 }, { "body": null, "index": 5, "isInternal": false, - "x": 884.1070431280341, - "y": 38.57318825791923 + "x": 884.10704, + "y": 38.57319 }, { "body": null, "index": 6, "isInternal": false, - "x": 887.515587196485, - "y": 41.13381102171435 + "x": 887.51559, + "y": 41.13381 }, { "body": null, "index": 7, "isInternal": false, - "x": 889.5478222760496, - "y": 44.88147458537966 + "x": 889.54782, + "y": 44.88147 }, { "body": null, "index": 8, "isInternal": false, - "x": 889.9438526891767, - "y": 53.78655746134757 + "x": 889.94385, + "y": 53.78656 }, { "body": null, "index": 9, "isInternal": false, - "x": 889.0356629294215, - "y": 57.95190894295303 + "x": 889.03566, + "y": 57.95191 }, { "body": null, "index": 10, "isInternal": false, - "x": 886.4750401656268, - "y": 61.360453011403905 + "x": 886.47504, + "y": 61.36045 }, { "body": null, "index": 11, "isInternal": false, - "x": 882.7273766019612, - "y": 63.392688090968434 + "x": 882.72738, + "y": 63.39269 }, { "body": null, "index": 12, "isInternal": false, - "x": 869.1451890012063, - "y": 63.789345428768705 + "x": 869.14519, + "y": 63.78935 }, { "body": null, "index": 13, "isInternal": false, - "x": 864.9798375196006, - "y": 62.88115566901338 + "x": 864.97984, + "y": 62.88116 }, { "body": null, "index": 14, "isInternal": false, - "x": 861.5712934511497, - "y": 60.32053290521827 + "x": 861.57129, + "y": 60.32053 }, { "body": null, "index": 15, "isInternal": false, - "x": 859.539058371585, - "y": 56.572869341552966 + "x": 859.53906, + "y": 56.57287 }, { - "angle": 0.00005488515975969057, - "anglePrev": 0.00004902907996372163, - "angularSpeed": 0.000005856079795968938, - "angularVelocity": 0.000005856079795968938, - "area": 3272.2976160000003, + "angle": 0.00005, + "anglePrev": 0.00005, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 3272.29762, "axes": { "#": 550 }, @@ -5080,13 +5080,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 7138.621125119525, - "inverseInertia": 0.000140083075214789, - "inverseMass": 0.30559567537820187, + "inertia": 7138.62113, + "inverseInertia": 0.00014, + "inverseMass": 0.3056, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.2722976160000004, + "mass": 3.2723, "motion": 0, "parent": null, "position": { @@ -5108,7 +5108,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8831534944338517, + "speed": 2.88315, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5129,12 +5129,12 @@ } ], { - "x": 0.000054885159732134746, - "y": -0.9999999984938096 + "x": 0.00005, + "y": -1 }, { - "x": 0.9999999984938096, - "y": 0.000054885159732134746 + "x": 1, + "y": 0.00005 }, { "max": { @@ -5145,12 +5145,12 @@ } }, { - "x": 947.2620111595302, - "y": 55.02417165730411 + "x": 947.26201, + "y": 55.02417 }, { - "x": 890.0548715950129, - "y": -2.1829679072130723 + "x": 890.05487, + "y": -2.18297 }, { "category": 1, @@ -5167,16 +5167,16 @@ "y": 0 }, { - "x": 918.6584413772715, - "y": 26.420601875045513 + "x": 918.65844, + "y": 26.4206 }, { "x": 0, "y": 0 }, { - "x": 918.6548108085124, - "y": 23.537450666482805 + "x": 918.65481, + "y": 23.53745 }, { "endCol": 19, @@ -5199,8 +5199,8 @@ "yScale": 1 }, { - "x": 0.0036305687591789136, - "y": 2.88315120856271 + "x": 0.00363, + "y": 2.88315 }, [ { @@ -5220,36 +5220,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 947.2588715088527, - "y": 55.02417165730411 + "x": 947.25887, + "y": 55.02417 }, { "body": null, "index": 1, "isInternal": false, - "x": 890.0548715950129, - "y": 55.0210320066268 + "x": 890.05487, + "y": 55.02103 }, { "body": null, "index": 2, "isInternal": false, - "x": 890.0580112456903, - "y": -2.1829679072130723 + "x": 890.05801, + "y": -2.18297 }, { "body": null, "index": 3, "isInternal": false, - "x": 947.2620111595302, - "y": -2.1798282565357603 + "x": 947.26201, + "y": -2.17983 }, { - "angle": 0.0007028977115909669, - "anglePrev": 0.0006279006612862367, - "angularSpeed": 0.00007499705030473015, - "angularVelocity": 0.00007499705030473015, - "area": 2280.8721126630826, + "angle": 0.0007, + "anglePrev": 0.00063, + "angularSpeed": 0.00007, + "angularVelocity": 0.00007, + "area": 2280.87211, "axes": { "#": 572 }, @@ -5271,13 +5271,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 5951.840994899971, - "inverseInertia": 0.0001680152411425108, - "inverseMass": 0.4384287897809527, + "inertia": 5951.84099, + "inverseInertia": 0.00017, + "inverseMass": 0.43843, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.2808721126630824, + "mass": 2.28087, "motion": 0, "parent": null, "position": { @@ -5299,7 +5299,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8993083041525916, + "speed": 2.89931, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5320,12 +5320,12 @@ } ], { - "x": -0.0007028976537114195, - "y": 0.9999997529674138 + "x": -0.0007, + "y": 1 }, { - "x": -0.9999997529674138, - "y": -0.0007028976537114195 + "x": -1, + "y": -0.0007 }, { "max": { @@ -5336,12 +5336,12 @@ } }, { - "x": 1082.4621826142668, - "y": 52.23899058627068 + "x": 1082.46218, + "y": 52.23899 }, { - "x": 998.210488440797, - "y": 25.10155815375189 + "x": 998.21049, + "y": 25.10156 }, { "category": 1, @@ -5358,16 +5358,16 @@ "y": 0 }, { - "x": 1040.336335527532, - "y": 38.67027437001129 + "x": 1040.33634, + "y": 38.67027 }, { "x": 0, "y": 0 }, { - "x": 1040.330701669581, - "y": 35.77097153964452 + "x": 1040.3307, + "y": 35.77097 }, { "endCol": 22, @@ -5390,8 +5390,8 @@ "yScale": 1 }, { - "x": 0.00563385795084514, - "y": 2.89930283036677 + "x": 0.00563, + "y": 2.8993 }, [ { @@ -5411,36 +5411,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 998.229521666654, - "y": 25.10155815375189 + "x": 998.22952, + "y": 25.10156 }, { "body": null, "index": 1, "isInternal": false, - "x": 1082.4621826142668, - "y": 25.160765108123886 + "x": 1082.46218, + "y": 25.16077 }, { "body": null, "index": 2, "isInternal": false, - "x": 1082.4431493884097, - "y": 52.23899058627068 + "x": 1082.44315, + "y": 52.23899 }, { "body": null, "index": 3, "isInternal": false, - "x": 998.210488440797, - "y": 52.179783631898715 + "x": 998.21049, + "y": 52.17978 }, { - "angle": 0.012412850991559232, - "anglePrev": 0.01113784837383909, - "angularSpeed": 0.0012750026177201414, - "angularVelocity": 0.0012750026177201414, - "area": 7619.538811999999, + "angle": 0.01241, + "anglePrev": 0.01114, + "angularSpeed": 0.00128, + "angularVelocity": 0.00128, + "area": 7619.53881, "axes": { "#": 594 }, @@ -5448,7 +5448,7 @@ "#": 608 }, "chamfer": "", - "circleRadius": 49.48881172839506, + "circleRadius": 49.48881, "collisionFilter": { "#": 611 }, @@ -5463,13 +5463,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 36961.17597180369, - "inverseInertia": 0.00002705541622276474, - "inverseMass": 0.13124153897938043, + "inertia": 36961.17597, + "inverseInertia": 0.00003, + "inverseMass": 0.13124, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.619538811999999, + "mass": 7.61954, "motion": 0, "parent": null, "position": { @@ -5491,7 +5491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.780630826343592, + "speed": 2.78063, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5545,56 +5545,56 @@ } ], { - "x": -0.9679005862318948, - "y": -0.25133335467453355 + "x": -0.9679, + "y": -0.25133 }, { - "x": -0.8795987639602908, - "y": -0.4757163171886467 + "x": -0.8796, + "y": -0.47572 }, { - "x": -0.7402342715540462, - "y": -0.6723490337740144 + "x": -0.74023, + "y": -0.67235 }, { - "x": -0.5578127646887248, - "y": -0.8299668183429515 + "x": -0.55781, + "y": -0.82997 }, { - "x": -0.3429780740962201, - "y": -0.9393434093499818 + "x": -0.34298, + "y": -0.93934 }, { - "x": -0.10820531812354067, - "y": -0.9941285677063019 + "x": -0.10821, + "y": -0.99413 }, { - "x": 0.13284938005793068, - "y": -0.9911362379704532 + "x": 0.13285, + "y": -0.99114 }, { - "x": 0.3661898523921164, - "y": -0.9305401614143476 + "x": 0.36619, + "y": -0.93054 }, { - "x": 0.5782432716700049, - "y": -0.8158643997432229 + "x": 0.57824, + "y": -0.81586 }, { - "x": 0.7566959966014567, - "y": -0.6537669070298133 + "x": 0.7567, + "y": -0.65377 }, { - "x": 0.8911365011575314, - "y": -0.45373531524966526 + "x": 0.89114, + "y": -0.45374 }, { - "x": 0.9738412215555298, - "y": -0.22722956497611313 + "x": 0.97384, + "y": -0.22723 }, { - "x": 0.9999229615543047, - "y": 0.012412532234339763 + "x": 0.99992, + "y": 0.01241 }, { "max": { @@ -5605,12 +5605,12 @@ } }, { - "x": 119.30647437904257, - "y": 220.2383287810983 + "x": 119.30647, + "y": 220.23833 }, { - "x": 20.90372884144913, - "y": 118.48733005307848 + "x": 20.90373, + "y": 118.48733 }, { "category": 1, @@ -5627,16 +5627,16 @@ "y": 0 }, { - "x": 70.10198485146682, - "y": 167.97251749743947 + "x": 70.10198, + "y": 167.97252 }, { - "x": 0.017179852004130775, + "x": 0.01718, "y": 0 }, { - "x": 70.09575133390882, - "y": 165.19189365814168 + "x": 70.09575, + "y": 165.19189 }, { "endCol": 2, @@ -5659,8 +5659,8 @@ "yScale": 1 }, { - "x": 0.006233517557995327, - "y": 2.780623839297776 + "x": 0.00623, + "y": 2.78062 }, [ { @@ -5746,190 +5746,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 119.15215935192886, - "y": 174.54686084671962 + "x": 119.15216, + "y": 174.54686 }, { "body": null, "index": 1, "isInternal": false, - "x": 116.15359252328874, - "y": 186.09453065383556 + "x": 116.15359, + "y": 186.09453 }, { "body": null, "index": 2, "isInternal": false, - "x": 110.47789371094656, - "y": 196.58888932845585 + "x": 110.47789, + "y": 196.58889 }, { "body": null, "index": 3, "isInternal": false, - "x": 102.4566592492378, - "y": 205.42000583262987 + "x": 102.45666, + "y": 205.42001 }, { "body": null, "index": 4, "isInternal": false, - "x": 92.55529588174552, - "y": 212.07461750160667 + "x": 92.5553, + "y": 212.07462 }, { "body": null, "index": 5, "isInternal": false, - "x": 81.34763789876219, - "y": 216.16681734233669 + "x": 81.34764, + "y": 216.16682 }, { "body": null, "index": 6, "isInternal": false, - "x": 69.48770104372156, - "y": 217.4577049418005 + "x": 69.4877, + "y": 217.4577 }, { "body": null, "index": 7, "isInternal": false, - "x": 57.66346263138695, - "y": 215.8728141038341 + "x": 57.66346, + "y": 215.87281 }, { "body": null, "index": 8, "isInternal": false, - "x": 46.56083949617061, - "y": 211.5036658438915 + "x": 46.56084, + "y": 211.50367 }, { "body": null, "index": 9, "isInternal": false, - "x": 36.82771559058257, - "y": 204.60532169196125 + "x": 36.82772, + "y": 204.60532 }, { "body": null, "index": 10, "isInternal": false, - "x": 29.028168954579122, - "y": 195.57781410277536 + "x": 29.02817, + "y": 195.57781 }, { "body": null, "index": 11, "isInternal": false, - "x": 23.614722123284082, - "y": 184.94580044567633 + "x": 23.61472, + "y": 184.9458 }, { "body": null, "index": 12, "isInternal": false, - "x": 20.90372884144913, - "y": 173.32725507950232 + "x": 20.90373, + "y": 173.32726 }, { "body": null, "index": 13, "isInternal": false, - "x": 21.05181035100481, - "y": 161.3981741481593 + "x": 21.05181, + "y": 161.39817 }, { "body": null, "index": 14, "isInternal": false, - "x": 24.050377179644926, - "y": 149.85050434104338 + "x": 24.05038, + "y": 149.8505 }, { "body": null, "index": 15, "isInternal": false, - "x": 29.72607599198711, - "y": 139.35614566642315 + "x": 29.72608, + "y": 139.35615 }, { "body": null, "index": 16, "isInternal": false, - "x": 37.74731045369585, - "y": 130.52502916224904 + "x": 37.74731, + "y": 130.52503 }, { "body": null, "index": 17, "isInternal": false, - "x": 47.648673821188154, - "y": 123.87041749327226 + "x": 47.64867, + "y": 123.87042 }, { "body": null, "index": 18, "isInternal": false, - "x": 58.85633180417147, - "y": 119.77821765254231 + "x": 58.85633, + "y": 119.77822 }, { "body": null, "index": 19, "isInternal": false, - "x": 70.71626865921209, - "y": 118.48733005307848 + "x": 70.71627, + "y": 118.48733 }, { "body": null, "index": 20, "isInternal": false, - "x": 82.54050707154671, - "y": 120.07222089104485 + "x": 82.54051, + "y": 120.07222 }, { "body": null, "index": 21, "isInternal": false, - "x": 93.64313020676305, - "y": 124.44136915098741 + "x": 93.64313, + "y": 124.44137 }, { "body": null, "index": 22, "isInternal": false, - "x": 103.37625411235106, - "y": 131.3397133029177 + "x": 103.37625, + "y": 131.33971 }, { "body": null, "index": 23, "isInternal": false, - "x": 111.17580074835452, - "y": 140.36722089210352 + "x": 111.1758, + "y": 140.36722 }, { "body": null, "index": 24, "isInternal": false, - "x": 116.58924757964955, - "y": 150.9992345492026 + "x": 116.58925, + "y": 150.99923 }, { "body": null, "index": 25, "isInternal": false, - "x": 119.30024086148457, - "y": 162.61777991537662 + "x": 119.30024, + "y": 162.61778 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1222.702510148351, + "area": 1222.70251, "axes": { "#": 649 }, @@ -5950,13 +5950,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1019.6065850774935, - "inverseInertia": 0.0009807704409088302, - "inverseMass": 0.8178604294176753, + "inertia": 1019.60659, + "inverseInertia": 0.00098, + "inverseMass": 0.81786, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.222702510148351, + "mass": 1.2227, "motion": 0, "parent": null, "position": { @@ -5978,7 +5978,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6017,36 +6017,36 @@ } ], { - "x": 0.9770171932916056, - "y": 0.21316051232015978 + "x": 0.97702, + "y": 0.21316 }, { - "x": 0.7994446935362437, - "y": 0.6007396956891906 + "x": 0.79944, + "y": 0.60074 }, { - "x": 0.4765734276771634, - "y": 0.879134670020492 + "x": 0.47657, + "y": 0.87913 }, { - "x": 0.028769526977757462, - "y": 0.9995860714903325 + "x": 0.02877, + "y": 0.99959 }, { - "x": -0.21316051232015995, - "y": 0.9770171932916059 + "x": -0.21316, + "y": 0.97702 }, { - "x": -0.6007396956891905, - "y": 0.7994446935362437 + "x": -0.60074, + "y": 0.79944 }, { - "x": -0.8791346700204924, - "y": 0.4765734276771626 + "x": -0.87913, + "y": 0.47657 }, { - "x": -0.9998828419386167, - "y": 0.015306939496688661 + "x": -0.99988, + "y": 0.01531 }, { "max": { @@ -6057,12 +6057,12 @@ } }, { - "x": 149.19221399176953, - "y": 162.72576433269586 + "x": 149.19221, + "y": 162.72576 }, { - "x": 118.25599999999999, - "y": 119.71639790608404 + "x": 118.256, + "y": 119.7164 }, { "category": 1, @@ -6079,16 +6079,16 @@ "y": 0 }, { - "x": 133.72410699588477, - "y": 141.22108111938996 + "x": 133.72411, + "y": 141.22108 }, { "x": 0, "y": 0 }, { - "x": 133.72410699588477, - "y": 138.31381040435429 + "x": 133.72411, + "y": 138.31381 }, { "endCol": 3, @@ -6112,7 +6112,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6168,120 +6168,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 118.25599999999999, - "y": 129.71639790608404 + "x": 118.256, + "y": 129.7164 }, { "body": null, "index": 1, "isInternal": false, - "x": 119.16474808025185, - "y": 125.55116819673117 + "x": 119.16475, + "y": 125.55117 }, { "body": null, "index": 2, "isInternal": false, - "x": 121.72582770633514, - "y": 122.14296738781476 + "x": 121.72583, + "y": 122.14297 }, { "body": null, "index": 3, "isInternal": false, - "x": 125.47376363953481, - "y": 120.111234667778 + "x": 125.47376, + "y": 120.11123 }, { "body": null, "index": 4, "isInternal": false, - "x": 139.19221399176953, - "y": 119.71639790608404 + "x": 139.19221, + "y": 119.7164 }, { "body": null, "index": 5, "isInternal": false, - "x": 143.3574437011224, - "y": 120.6251459863359 + "x": 143.35744, + "y": 120.62515 }, { "body": null, "index": 6, "isInternal": false, - "x": 146.76564451003878, - "y": 123.18622561241918 + "x": 146.76564, + "y": 123.18623 }, { "body": null, "index": 7, "isInternal": false, - "x": 148.79737723007557, - "y": 126.93416154561885 + "x": 148.79738, + "y": 126.93416 }, { "body": null, "index": 8, "isInternal": false, - "x": 149.19221399176953, - "y": 152.72576433269586 + "x": 149.19221, + "y": 152.72576 }, { "body": null, "index": 9, "isInternal": false, - "x": 148.28346591151768, - "y": 156.89099404204873 + "x": 148.28347, + "y": 156.89099 }, { "body": null, "index": 10, "isInternal": false, - "x": 145.7223862854344, - "y": 160.2991948509651 + "x": 145.72239, + "y": 160.29919 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.97445035223473, - "y": 162.3309275710019 + "x": 141.97445, + "y": 162.33093 }, { "body": null, "index": 12, "isInternal": false, - "x": 128.25599999999997, - "y": 162.72576433269586 + "x": 128.256, + "y": 162.72576 }, { "body": null, "index": 13, "isInternal": false, - "x": 124.09077029064713, - "y": 161.817016252444 + "x": 124.09077, + "y": 161.81702 }, { "body": null, "index": 14, "isInternal": false, - "x": 120.68256948173074, - "y": 159.2559366263607 + "x": 120.68257, + "y": 159.25594 }, { "body": null, "index": 15, "isInternal": false, - "x": 118.65083676169397, - "y": 155.50800069316105 + "x": 118.65084, + "y": 155.508 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1642.0854529572955, + "area": 1642.08545, "axes": { "#": 689 }, @@ -6303,13 +6303,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1814.469586184716, - "inverseInertia": 0.0005511252476282611, - "inverseMass": 0.6089817056713225, + "inertia": 1814.46959, + "inverseInertia": 0.00055, + "inverseMass": 0.60898, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6420854529572955, + "mass": 1.64209, "motion": 0, "parent": null, "position": { @@ -6331,7 +6331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6368,12 +6368,12 @@ } }, { - "x": 187.03632836076818, - "y": 163.1071729403776 + "x": 187.03633, + "y": 163.10717 }, { - "x": 149.19221399176953, - "y": 119.71639790608404 + "x": 149.19221, + "y": 119.7164 }, { "category": 1, @@ -6390,16 +6390,16 @@ "y": 0 }, { - "x": 168.11427117626886, - "y": 141.41178542323084 + "x": 168.11427, + "y": 141.41179 }, { "x": 0, "y": 0 }, { - "x": 168.11427117626886, - "y": 138.50451470819516 + "x": 168.11427, + "y": 138.50451 }, { "endCol": 3, @@ -6423,7 +6423,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6443,36 +6443,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 149.19221399176953, - "y": 119.71639790608404 + "x": 149.19221, + "y": 119.7164 }, { "body": null, "index": 1, "isInternal": false, - "x": 187.03632836076818, - "y": 119.71639790608404 + "x": 187.03633, + "y": 119.7164 }, { "body": null, "index": 2, "isInternal": false, - "x": 187.03632836076818, - "y": 163.1071729403776 + "x": 187.03633, + "y": 163.10717 }, { "body": null, "index": 3, "isInternal": false, - "x": 149.19221399176953, - "y": 163.1071729403776 + "x": 149.19221, + "y": 163.10717 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3794.8064039999995, + "area": 3794.8064, "axes": { "#": 711 }, @@ -6494,13 +6494,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 9600.370429226272, - "inverseInertia": 0.00010416264740740775, - "inverseMass": 0.2635180542928166, + "inertia": 9600.37043, + "inverseInertia": 0.0001, + "inverseMass": 0.26352, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.7948064039999996, + "mass": 3.79481, "motion": 0, "parent": null, "position": { @@ -6522,7 +6522,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6559,12 +6559,12 @@ } }, { - "x": 248.63832836076816, - "y": 181.31839790608413 + "x": 248.63833, + "y": 181.3184 }, { - "x": 187.03632836076818, - "y": 119.7163979060841 + "x": 187.03633, + "y": 119.7164 }, { "category": 1, @@ -6581,16 +6581,16 @@ "y": 0 }, { - "x": 217.83732836076817, - "y": 150.51739790608414 + "x": 217.83733, + "y": 150.5174 }, { "x": 0, "y": 0 }, { - "x": 217.83732836076817, - "y": 147.61012719104846 + "x": 217.83733, + "y": 147.61013 }, { "endCol": 5, @@ -6614,7 +6614,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6634,36 +6634,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 248.63832836076816, - "y": 181.31839790608413 + "x": 248.63833, + "y": 181.3184 }, { "body": null, "index": 1, "isInternal": false, - "x": 187.03632836076818, - "y": 181.31839790608413 + "x": 187.03633, + "y": 181.3184 }, { "body": null, "index": 2, "isInternal": false, - "x": 187.03632836076818, - "y": 119.7163979060841 + "x": 187.03633, + "y": 119.7164 }, { "body": null, "index": 3, "isInternal": false, - "x": 248.63832836076816, - "y": 119.7163979060841 + "x": 248.63833, + "y": 119.7164 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1826.8784465641675, + "area": 1826.87845, "axes": { "#": 733 }, @@ -6685,13 +6685,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 2226.3146730460744, - "inverseInertia": 0.00044917280207823734, - "inverseMass": 0.547381793178803, + "inertia": 2226.31467, + "inverseInertia": 0.00045, + "inverseMass": 0.54738, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8268784465641674, + "mass": 1.82688, "motion": 0, "parent": null, "position": { @@ -6713,7 +6713,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6750,12 +6750,12 @@ } }, { - "x": 292.1241608367627, - "y": 161.7272861091019 + "x": 292.12416, + "y": 161.72729 }, { - "x": 248.63832836076816, - "y": 119.71639790608404 + "x": 248.63833, + "y": 119.7164 }, { "category": 1, @@ -6772,16 +6772,16 @@ "y": 0 }, { - "x": 270.3812445987654, - "y": 140.72184200759298 + "x": 270.38124, + "y": 140.72184 }, { "x": 0, "y": 0 }, { - "x": 270.3812445987654, - "y": 137.8145712925573 + "x": 270.38124, + "y": 137.81457 }, { "endCol": 6, @@ -6805,7 +6805,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6825,36 +6825,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 248.63832836076816, - "y": 119.71639790608404 + "x": 248.63833, + "y": 119.7164 }, { "body": null, "index": 1, "isInternal": false, - "x": 292.1241608367627, - "y": 119.71639790608404 + "x": 292.12416, + "y": 119.7164 }, { "body": null, "index": 2, "isInternal": false, - "x": 292.1241608367627, - "y": 161.7272861091019 + "x": 292.12416, + "y": 161.72729 }, { "body": null, "index": 3, "isInternal": false, - "x": 248.63832836076816, - "y": 161.7272861091019 + "x": 248.63833, + "y": 161.72729 }, { - "angle": 0.00004571885484194826, - "anglePrev": -0.000003962995418936039, - "angularSpeed": 0.00002588340013075825, - "angularVelocity": 0.000050402466311239266, - "area": 3215.056842335567, + "angle": 0.00005, + "anglePrev": 0, + "angularSpeed": 0.00003, + "angularVelocity": 0.00005, + "area": 3215.05684, "axes": { "#": 755 }, @@ -6876,13 +6876,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 15932.11540305455, - "inverseInertia": 0.00006276630407838228, - "inverseMass": 0.3110364914337108, + "inertia": 15932.1154, + "inverseInertia": 0.00006, + "inverseMass": 0.31104, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.215056842335567, + "mass": 3.21506, "motion": 0, "parent": null, "position": { @@ -6904,7 +6904,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9119897355040734, + "speed": 2.91199, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6925,12 +6925,12 @@ } ], { - "x": -0.00004571885482602123, - "y": 0.9999999989548932 + "x": -0.00005, + "y": 1 }, { - "x": -0.9999999989548932, - "y": -0.00004571885482602123 + "x": -1, + "y": -0.00005 }, { "max": { @@ -6941,12 +6941,12 @@ } }, { - "x": 411.0767086641933, - "y": 149.6747281958903 + "x": 411.07671, + "y": 149.67473 }, { - "x": 292.16982958804704, - "y": 119.71535012115825 + "x": 292.16983, + "y": 119.71535 }, { "category": 1, @@ -6963,16 +6963,16 @@ "y": 0 }, { - "x": 351.61609240907853, - "y": 133.23906197819048 + "x": 351.61609, + "y": 133.23906 }, { - "x": 0.006220087239726389, - "y": 0.003630698613753208 + "x": 0.00622, + "y": 0.00363 }, { - "x": 351.5852378032183, - "y": 130.32151202685003 + "x": 351.58524, + "y": 130.32151 }, { "endCol": 8, @@ -6995,8 +6995,8 @@ "yScale": 1 }, { - "x": 0.03034824960275273, - "y": 2.9174337592931465 + "x": 0.03035, + "y": 2.91743 }, [ { @@ -7016,36 +7016,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 292.17106591677833, - "y": 119.71535012115825 + "x": 292.17107, + "y": 119.71535 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.06235523011003, - "y": 119.72078569476014 + "x": 411.06236, + "y": 119.72079 }, { "body": null, "index": 2, "isInternal": false, - "x": 411.06111890137873, - "y": 146.7627738352227 + "x": 411.06112, + "y": 146.76277 }, { "body": null, "index": 3, "isInternal": false, - "x": 292.16982958804704, - "y": 146.75733826162082 + "x": 292.16983, + "y": 146.75734 }, { - "angle": -0.00005200637852947943, - "anglePrev": 0.00004043822827470408, - "angularSpeed": 0.00005200637852947943, - "angularVelocity": -0.00009864322362904311, - "area": 2527.170838894569, + "angle": -0.00005, + "anglePrev": 0.00004, + "angularSpeed": 0.00005, + "angularVelocity": -0.0001, + "area": 2527.17084, "axes": { "#": 777 }, @@ -7067,13 +7067,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 8473.144372295323, - "inverseInertia": 0.0001180199411294943, - "inverseMass": 0.3956994060747466, + "inertia": 8473.14437, + "inverseInertia": 0.00012, + "inverseMass": 0.3957, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.527170838894569, + "mass": 2.52717, "motion": 0, "parent": null, "position": { @@ -7095,7 +7095,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.911542638486728, + "speed": 2.91154, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7116,12 +7116,12 @@ } ], { - "x": 0.00005200637850603614, - "y": 0.9999999986476683 + "x": 0.00005, + "y": 1 }, { - "x": -0.9999999986476683, - "y": 0.00005200637850603614 + "x": -1, + "y": 0.00005 }, { "max": { @@ -7132,12 +7132,12 @@ } }, { - "x": 507.86499790672696, - "y": 148.73183899237299 + "x": 507.865, + "y": 148.73184 }, { - "x": 411.0123515451637, - "y": 119.71811628420856 + "x": 411.01235, + "y": 119.71812 }, { "category": 1, @@ -7154,16 +7154,16 @@ "y": 0 }, { - "x": 459.4314971677689, - "y": 132.7692240133287 + "x": 459.4315, + "y": 132.76922 }, { - "x": 0.007030341825208582, - "y": 3.214191776199337e-7 + "x": 0.00703, + "y": 0 }, { - "x": 459.4005711323206, - "y": 129.85307146991215 + "x": 459.40057, + "y": 129.85307 }, { "endCol": 10, @@ -7186,8 +7186,8 @@ "yScale": 1 }, { - "x": 0.031570219895684204, - "y": 2.916300362484037 + "x": 0.03157, + "y": 2.9163 }, [ { @@ -7207,36 +7207,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 411.0123515451637, - "y": 119.72315242245966 + "x": 411.01235, + "y": 119.72315 }, { "body": null, "index": 1, "isInternal": false, - "x": 507.8492855705867, - "y": 119.71811628420856 + "x": 507.84929, + "y": 119.71812 }, { "body": null, "index": 2, "isInternal": false, - "x": 507.85064279037414, - "y": 145.81529560419776 + "x": 507.85064, + "y": 145.8153 }, { "body": null, "index": 3, "isInternal": false, - "x": 411.0137087649512, - "y": 145.82033174244887 + "x": 411.01371, + "y": 145.82033 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2948.769805, + "area": 2948.7698, "axes": { "#": 799 }, @@ -7258,13 +7258,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 5557.617636669042, - "inverseInertia": 0.0001799332133614269, - "inverseMass": 0.3391244709249185, + "inertia": 5557.61764, + "inverseInertia": 0.00018, + "inverseMass": 0.33912, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.948769805, + "mass": 2.94877, "motion": 0, "parent": null, "position": { @@ -7286,7 +7286,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7322,28 +7322,28 @@ } ], { - "x": 0.6234998905587619, - "y": 0.7818234368917397 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.2225283489437671, - "y": 0.9749262197296579 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009635514300213, - "y": 0.43389477871323057 + "x": -0.90096, + "y": 0.43389 }, { - "x": -0.9009635514300213, - "y": -0.43389477871323057 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.2225283489437671, - "y": -0.9749262197296579 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6234998905587619, - "y": -0.7818234368917397 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -7358,12 +7358,12 @@ } }, { - "x": 568.6298038722055, - "y": 183.72439790608414 + "x": 568.6298, + "y": 183.7244 }, { - "x": 506.2268038722055, - "y": 119.71639790608413 + "x": 506.2268, + "y": 119.7164 }, { "category": 1, @@ -7380,16 +7380,16 @@ "y": 0 }, { - "x": 539.0538844307272, - "y": 151.72039790608414 + "x": 539.05388, + "y": 151.7204 }, { "x": 0, "y": 0 }, { - "x": 539.0538844307272, - "y": 148.81312719104847 + "x": 539.05388, + "y": 148.81313 }, { "endCol": 11, @@ -7413,7 +7413,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7442,57 +7442,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 568.6298038722055, - "y": 165.96339790608414 + "x": 568.6298, + "y": 165.9634 }, { "body": null, "index": 1, "isInternal": false, - "x": 546.3588038722055, - "y": 183.72439790608414 + "x": 546.3588, + "y": 183.7244 }, { "body": null, "index": 2, "isInternal": false, - "x": 518.5868038722055, - "y": 177.38539790608414 + "x": 518.5868, + "y": 177.3854 }, { "body": null, "index": 3, "isInternal": false, - "x": 506.2268038722055, - "y": 151.72039790608414 + "x": 506.2268, + "y": 151.7204 }, { "body": null, "index": 4, "isInternal": false, - "x": 518.5868038722055, - "y": 126.05539790608412 + "x": 518.5868, + "y": 126.0554 }, { "body": null, "index": 5, "isInternal": false, - "x": 546.3588038722055, - "y": 119.71639790608413 + "x": 546.3588, + "y": 119.7164 }, { "body": null, "index": 6, "isInternal": false, - "x": 568.6298038722055, - "y": 137.47739790608412 + "x": 568.6298, + "y": 137.4774 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1650.224030690591, + "area": 1650.22403, "axes": { "#": 829 }, @@ -7514,13 +7514,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1883.1376850445035, - "inverseInertia": 0.0005310286167293006, - "inverseMass": 0.6059783286403342, + "inertia": 1883.13769, + "inverseInertia": 0.00053, + "inverseMass": 0.60598, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.650224030690591, + "mass": 1.65022, "motion": 0, "parent": null, "position": { @@ -7542,7 +7542,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7579,12 +7579,12 @@ } }, { - "x": 604.0847292837282, - "y": 166.26067945615253 + "x": 604.08473, + "y": 166.26068 }, { - "x": 568.6298038722055, - "y": 119.71639790608393 + "x": 568.6298, + "y": 119.7164 }, { "category": 1, @@ -7601,16 +7601,16 @@ "y": 0 }, { - "x": 586.3572665779668, - "y": 142.98853868111823 + "x": 586.35727, + "y": 142.98854 }, { "x": 0, "y": 0 }, { - "x": 586.3572665779668, - "y": 140.08126796608258 + "x": 586.35727, + "y": 140.08127 }, { "endCol": 12, @@ -7634,7 +7634,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -7654,36 +7654,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 568.6298038722055, - "y": 119.71639790608393 + "x": 568.6298, + "y": 119.7164 }, { "body": null, "index": 1, "isInternal": false, - "x": 604.0847292837282, - "y": 119.71639790608393 + "x": 604.08473, + "y": 119.7164 }, { "body": null, "index": 2, "isInternal": false, - "x": 604.0847292837282, - "y": 166.26067945615253 + "x": 604.08473, + "y": 166.26068 }, { "body": null, "index": 3, "isInternal": false, - "x": 568.6298038722055, - "y": 166.26067945615253 + "x": 568.6298, + "y": 166.26068 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 985.702813436139, + "area": 985.70281, "axes": { "#": 851 }, @@ -7704,13 +7704,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 694.3954590109718, - "inverseInertia": 0.00144010158336044, - "inverseMass": 1.014504560978193, + "inertia": 694.39546, + "inverseInertia": 0.00144, + "inverseMass": 1.0145, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.985702813436139, + "mass": 0.9857, "motion": 0, "parent": null, "position": { @@ -7732,7 +7732,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7771,36 +7771,36 @@ } ], { - "x": 0.9770171932916059, - "y": 0.21316051232016 + "x": 0.97702, + "y": 0.21316 }, { - "x": 0.799444693536244, - "y": 0.6007396956891904 + "x": 0.79944, + "y": 0.60074 }, { - "x": 0.4765734276771625, - "y": 0.8791346700204926 + "x": 0.47657, + "y": 0.87913 }, { - "x": 0.016108114574245137, - "y": 0.9998702559056664 + "x": 0.01611, + "y": 0.99987 }, { - "x": -0.21316051232015995, - "y": 0.9770171932916059 + "x": -0.21316, + "y": 0.97702 }, { - "x": -0.6007396956891901, - "y": 0.7994446935362443 + "x": -0.60074, + "y": 0.79944 }, { - "x": -0.8791346700204927, - "y": 0.4765734276771623 + "x": -0.87913, + "y": 0.47657 }, { - "x": -0.9990245010225166, - "y": 0.04415932921491988 + "x": -0.99902, + "y": 0.04416 }, { "max": { @@ -7811,12 +7811,12 @@ } }, { - "x": 645.8109809984057, - "y": 145.8666251008713 + "x": 645.81098, + "y": 145.86663 }, { - "x": 604.0847292837282, - "y": 119.71639790608388 + "x": 604.08473, + "y": 119.7164 }, { "category": 1, @@ -7833,16 +7833,16 @@ "y": 0 }, { - "x": 624.947855141067, - "y": 132.79151150347758 + "x": 624.94786, + "y": 132.79151 }, { "x": 0, "y": 0 }, { - "x": 624.947855141067, - "y": 129.88424078844193 + "x": 624.94786, + "y": 129.88424 }, { "endCol": 13, @@ -7866,7 +7866,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7922,120 +7922,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 604.0847292837282, - "y": 129.71639790608387 + "x": 604.08473, + "y": 129.7164 }, { "body": null, "index": 1, "isInternal": false, - "x": 604.99347736398, - "y": 125.55116819673101 + "x": 604.99348, + "y": 125.55117 }, { "body": null, "index": 2, "isInternal": false, - "x": 607.5545569900632, - "y": 122.14296738781464 + "x": 607.55456, + "y": 122.14297 }, { "body": null, "index": 3, "isInternal": false, - "x": 611.3024929232629, - "y": 120.11123466777786 + "x": 611.30249, + "y": 120.11123 }, { "body": null, "index": 4, "isInternal": false, - "x": 635.8109809984057, - "y": 119.71639790608388 + "x": 635.81098, + "y": 119.7164 }, { "body": null, "index": 5, "isInternal": false, - "x": 639.9762107077587, - "y": 120.62514598633575 + "x": 639.97621, + "y": 120.62515 }, { "body": null, "index": 6, "isInternal": false, - "x": 643.3844115166751, - "y": 123.18622561241904 + "x": 643.38441, + "y": 123.18623 }, { "body": null, "index": 7, "isInternal": false, - "x": 645.4161442367118, - "y": 126.93416154561871 + "x": 645.41614, + "y": 126.93416 }, { "body": null, "index": 8, "isInternal": false, - "x": 645.8109809984057, - "y": 135.8666251008713 + "x": 645.81098, + "y": 135.86663 }, { "body": null, "index": 9, "isInternal": false, - "x": 644.9022329181539, - "y": 140.03185481022416 + "x": 644.90223, + "y": 140.03185 }, { "body": null, "index": 10, "isInternal": false, - "x": 642.3411532920707, - "y": 143.44005561914054 + "x": 642.34115, + "y": 143.44006 }, { "body": null, "index": 11, "isInternal": false, - "x": 638.5932173588709, - "y": 145.47178833917732 + "x": 638.59322, + "y": 145.47179 }, { "body": null, "index": 12, "isInternal": false, - "x": 614.0847292837282, - "y": 145.8666251008713 + "x": 614.08473, + "y": 145.86663 }, { "body": null, "index": 13, "isInternal": false, - "x": 609.9194995743752, - "y": 144.95787702061943 + "x": 609.9195, + "y": 144.95788 }, { "body": null, "index": 14, "isInternal": false, - "x": 606.5112987654588, - "y": 142.39679739453612 + "x": 606.5113, + "y": 142.3968 }, { "body": null, "index": 15, "isInternal": false, - "x": 604.4795660454221, - "y": 138.64886146133648 + "x": 604.47957, + "y": 138.64886 }, { - "angle": -0.00022886112034574538, - "anglePrev": -0.000349178107303018, - "angularSpeed": 0.000006779054803494896, - "angularVelocity": 0.00009811850915894982, - "area": 4952.7985079569, + "angle": -0.00023, + "anglePrev": -0.00035, + "angularSpeed": 0.00001, + "angularVelocity": 0.0001, + "area": 4952.79851, "axes": { "#": 891 }, @@ -8056,13 +8056,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 15818.469397063342, - "inverseInertia": 0.0000632172414978182, - "inverseMass": 0.2019060533945513, + "inertia": 15818.4694, + "inverseInertia": 0.00006, + "inverseMass": 0.20191, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.9527985079569, + "mass": 4.9528, "motion": 0, "parent": null, "position": { @@ -8084,7 +8084,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9040438299539097, + "speed": 2.90404, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8159,84 +8159,84 @@ } ], { - "x": 0.9853098006215378, - "y": 0.1707764527068798 + "x": 0.98531, + "y": 0.17078 }, { - "x": 0.8701396716570752, - "y": 0.49280518646673926 + "x": 0.87014, + "y": 0.49281 }, { - "x": 0.6531922081086078, - "y": 0.7571921415771569 + "x": 0.65319, + "y": 0.75719 }, { - "x": 0.31499629527673695, - "y": 0.9490929005961067 + "x": 0.315, + "y": 0.94909 }, { - "x": 0.14206245243120305, - "y": 0.9898576966459536 + "x": 0.14206, + "y": 0.98986 }, { - "x": -0.19979493667287057, - "y": 0.9798377331374231 + "x": -0.19979, + "y": 0.97984 }, { - "x": -0.5182829365625674, - "y": 0.8552092128058969 + "x": -0.51828, + "y": 0.85521 }, { - "x": -0.8052999078815256, - "y": 0.592867656704265 + "x": -0.8053, + "y": 0.59287 }, { - "x": -0.89751074739717, - "y": 0.4409925830516581 + "x": -0.89751, + "y": 0.44099 }, { - "x": -0.9936214444327596, - "y": 0.11276712802655242 + "x": -0.99362, + "y": 0.11277 }, { - "x": -0.9735090206973996, - "y": -0.22864860948798785 + "x": -0.97351, + "y": -0.22865 }, { - "x": -0.8126944156501017, - "y": -0.5826901292892647 + "x": -0.81269, + "y": -0.58269 }, { - "x": -0.696748573150083, - "y": -0.7173154297889619 + "x": -0.69675, + "y": -0.71732 }, { - "x": -0.4142889034351554, - "y": -0.9101454304068645 + "x": -0.41429, + "y": -0.91015 }, { - "x": -0.0833711556888293, - "y": -0.9965185650047413 + "x": -0.08337, + "y": -0.99652 }, { - "x": 0.30303180584134176, - "y": -0.9529804429517614 + "x": 0.30303, + "y": -0.95298 }, { - "x": 0.46689838280020235, - "y": -0.8843109747925534 + "x": 0.4669, + "y": -0.88431 }, { - "x": 0.737575707302872, - "y": -0.6752644489358733 + "x": 0.73758, + "y": -0.67526 }, { - "x": 0.9219812618950399, - "y": -0.38723449318782355 + "x": 0.92198, + "y": -0.38723 }, { - "x": 0.9999802174755019, - "y": -0.006290044327962739 + "x": 0.99998, + "y": -0.00629 }, { "max": { @@ -8247,12 +8247,12 @@ } }, { - "x": 696.7283938891712, - "y": 239.16756383880494 + "x": 696.72839, + "y": 239.16756 }, { - "x": 615.85018251679, - "y": 152.30893148907066 + "x": 615.85018, + "y": 152.30893 }, { "category": 1, @@ -8269,16 +8269,16 @@ "y": 0 }, { - "x": 659.5040125654454, - "y": 194.26653471166122 + "x": 659.50401, + "y": 194.26653 }, { - "x": -0.18835751747092533, - "y": 0.05069290410214886 + "x": -0.18836, + "y": 0.05069 }, { - "x": 659.5344069840253, - "y": 191.3732566699382 + "x": 659.53441, + "y": 191.37326 }, { "endCol": 14, @@ -8301,8 +8301,8 @@ "yScale": 1 }, { - "x": -0.029292590845784616, - "y": 2.894874016205705 + "x": -0.02929, + "y": 2.89487 }, [ { @@ -8370,148 +8370,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 696.7283938891712, - "y": 214.0344948484609 + "x": 696.72839, + "y": 214.03449 }, { "body": null, "index": 1, "isInternal": false, - "x": 696.1443317697264, - "y": 217.40429274119813 + "x": 696.14433, + "y": 217.40429 }, { "body": null, "index": 2, "isInternal": false, - "x": 694.4589188388513, - "y": 220.38020430737507 + "x": 694.45892, + "y": 220.3802 }, { "body": null, "index": 3, "isInternal": false, - "x": 691.8692922244863, - "y": 222.61414709881825 + "x": 691.86929, + "y": 222.61415 }, { "body": null, "index": 4, "isInternal": false, - "x": 652.2069138409572, - "y": 235.77777127599722 + "x": 652.20691, + "y": 235.77777 }, { "body": null, "index": 5, "isInternal": false, - "x": 648.8215589250692, - "y": 236.26363083270996 + "x": 648.82156, + "y": 236.26363 }, { "body": null, "index": 6, "isInternal": false, - "x": 645.4704727054144, - "y": 235.5803237539987 + "x": 645.47047, + "y": 235.58032 }, { "body": null, "index": 7, "isInternal": false, - "x": 642.5456212621259, - "y": 233.80777433294736 + "x": 642.54562, + "y": 233.80777 }, { "body": null, "index": 8, "isInternal": false, - "x": 617.7694534543327, - "y": 200.15398089751693 + "x": 617.76945, + "y": 200.15398 }, { "body": null, "index": 9, "isInternal": false, - "x": 616.2612251955595, - "y": 197.0844257081534 + "x": 616.26123, + "y": 197.08443 }, { "body": null, "index": 10, "isInternal": false, - "x": 615.8755530194575, - "y": 193.6861646066941 + "x": 615.87555, + "y": 193.68616 }, { "body": null, "index": 11, "isInternal": false, - "x": 616.6575486978716, - "y": 190.35668952793876 + "x": 616.65755, + "y": 190.35669 }, { "body": null, "index": 12, "isInternal": false, - "x": 641.0084063065328, - "y": 156.39385919994186 + "x": 641.00841, + "y": 156.39386 }, { "body": null, "index": 13, "isInternal": false, - "x": 643.461655217671, - "y": 154.01094980271841 + "x": 643.46166, + "y": 154.01095 }, { "body": null, "index": 14, "isInternal": false, - "x": 646.574390833549, - "y": 152.59406434474357 + "x": 646.57439, + "y": 152.59406 }, { "body": null, "index": 15, "isInternal": false, - "x": 649.9825261991109, - "y": 152.30893148907066 + "x": 649.98253, + "y": 152.30893 }, { "body": null, "index": 16, "isInternal": false, - "x": 689.8073659503386, - "y": 164.97256293755726 + "x": 689.80737, + "y": 164.97256 }, { "body": null, "index": 17, "isInternal": false, - "x": 692.8317439251649, - "y": 166.56937359090716 + "x": 692.83174, + "y": 166.56937 }, { "body": null, "index": 18, "isInternal": false, - "x": 695.1411746398793, - "y": 169.09191123605754 + "x": 695.14117, + "y": 169.09191 }, { "body": null, "index": 19, "isInternal": false, - "x": 696.4655316881054, - "y": 172.2451230599096 + "x": 696.46553, + "y": 172.24512 }, { - "angle": -0.023974631562854204, - "anglePrev": -0.021292423915072016, - "angularSpeed": 0.002682207647782188, - "angularVelocity": -0.002682207647782188, - "area": 1624.41915552185, + "angle": -0.02397, + "anglePrev": -0.02129, + "angularSpeed": 0.00268, + "angularVelocity": -0.00268, + "area": 1624.41916, "axes": { "#": 947 }, @@ -8533,13 +8533,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1869.3319950134544, - "inverseInertia": 0.000534950454316063, - "inverseMass": 0.6156046588103344, + "inertia": 1869.332, + "inverseInertia": 0.00053, + "inverseMass": 0.6156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.62441915552185, + "mass": 1.62442, "motion": 0, "parent": null, "position": { @@ -8561,7 +8561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.860019583768058, + "speed": 2.86002, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8582,12 +8582,12 @@ } ], { - "x": 0.02397233492724848, - "y": 0.9997126222860929 + "x": 0.02397, + "y": 0.99971 }, { - "x": -0.9997126222860929, - "y": 0.02397233492724848 + "x": -0.99971, + "y": 0.02397 }, { "max": { @@ -8598,12 +8598,12 @@ } }, { - "x": 720.6385770526612, - "y": 140.51306292820954 + "x": 720.63858, + "y": 140.51306 }, { - "x": 671.7797550452862, - "y": 105.57248932064635 + "x": 671.77976, + "y": 105.57249 }, { "category": 1, @@ -8620,16 +8620,16 @@ "y": 0 }, { - "x": 696.2091660489737, - "y": 123.04277612442796 + "x": 696.20917, + "y": 123.04278 }, { "x": 0, "y": 0 }, { - "x": 696.2523067838378, - "y": 120.18308192809644 + "x": 696.25231, + "y": 120.18308 }, { "endCol": 15, @@ -8652,8 +8652,8 @@ "yScale": 1 }, { - "x": -0.0431407348641244, - "y": 2.859694196331524 + "x": -0.04314, + "y": 2.85969 }, [ { @@ -8673,36 +8673,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 671.7797550452862, - "y": 106.72465761284593 + "x": 671.77976, + "y": 106.72466 }, { "body": null, "index": 1, "isInternal": false, - "x": 719.8283572446674, - "y": 105.57248932064635 + "x": 719.82836, + "y": 105.57249 }, { "body": null, "index": 2, "isInternal": false, - "x": 720.6385770526612, - "y": 139.36089463601004 + "x": 720.63858, + "y": 139.36089 }, { "body": null, "index": 3, "isInternal": false, - "x": 672.58997485328, - "y": 140.51306292820954 + "x": 672.58997, + "y": 140.51306 }, { - "angle": -0.021069507995020633, - "anglePrev": -0.01924572796685744, - "angularSpeed": 0.001823780028163196, - "angularVelocity": -0.001823780028163196, - "area": 1339.8528159999998, + "angle": -0.02107, + "anglePrev": -0.01925, + "angularSpeed": 0.00182, + "angularVelocity": -0.00182, + "area": 1339.85282, "axes": { "#": 969 }, @@ -8724,13 +8724,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1196.8037123620863, - "inverseInertia": 0.0008355589055003328, - "inverseMass": 0.7463506349789991, + "inertia": 1196.80371, + "inverseInertia": 0.00084, + "inverseMass": 0.74635, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.3398528159999998, + "mass": 1.33985, "motion": 0, "parent": null, "position": { @@ -8752,7 +8752,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6712842167703705, + "speed": 2.67128, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8773,12 +8773,12 @@ } ], { - "x": -0.021067949152323264, - "y": -0.9997780461274968 + "x": -0.02107, + "y": -0.99978 }, { - "x": 0.9997780461274968, - "y": -0.021067949152323264 + "x": 0.99978, + "y": -0.02107 }, { "max": { @@ -8789,12 +8789,12 @@ } }, { - "x": 772.2697642778668, - "y": 154.1740282071487 + "x": 772.26976, + "y": 154.17403 }, { - "x": 734.9027174666443, - "y": 116.8069813959261 + "x": 734.90272, + "y": 116.80698 }, { "category": 1, @@ -8811,16 +8811,16 @@ "y": 0 }, { - "x": 753.5862408722555, - "y": 135.4905048015374 + "x": 753.58624, + "y": 135.4905 }, { "x": 0, "y": 0 }, { - "x": 753.612606762459, - "y": 132.8193507051588 + "x": 753.61261, + "y": 132.81935 }, { "endCol": 16, @@ -8843,8 +8843,8 @@ "yScale": 1 }, { - "x": -0.026365890203450135, - "y": 2.671154096378618 + "x": -0.02637, + "y": 2.67115 }, [ { @@ -8864,36 +8864,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 772.2697642778668, - "y": 153.402856996377 + "x": 772.26976, + "y": 153.40286 }, { "body": null, "index": 1, "isInternal": false, - "x": 735.6738886774158, - "y": 154.1740282071487 + "x": 735.67389, + "y": 154.17403 }, { "body": null, "index": 2, "isInternal": false, - "x": 734.9027174666443, - "y": 117.57815260669778 + "x": 734.90272, + "y": 117.57815 }, { "body": null, "index": 3, "isInternal": false, - "x": 771.4985930670953, - "y": 116.8069813959261 + "x": 771.49859, + "y": 116.80698 }, { - "angle": 0.01770766561338645, - "anglePrev": 0.015902942993325092, - "angularSpeed": 0.0018047226200613587, - "angularVelocity": 0.0018047226200613587, - "area": 4071.9713439999996, + "angle": 0.01771, + "anglePrev": 0.0159, + "angularSpeed": 0.0018, + "angularVelocity": 0.0018, + "area": 4071.97134, "axes": { "#": 991 }, @@ -8915,13 +8915,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 11053.96708423811, - "inverseInertia": 0.00009046525942943176, - "inverseMass": 0.24558129601611461, + "inertia": 11053.96708, + "inverseInertia": 0.00009, + "inverseMass": 0.24558, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.071971344, + "mass": 4.07197, "motion": 0, "parent": null, "position": { @@ -8943,7 +8943,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.730310925495883, + "speed": 2.73031, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8964,12 +8964,12 @@ } ], { - "x": 0.01770674022109481, - "y": -0.9998432233859179 + "x": 0.01771, + "y": -0.99984 }, { - "x": 0.9998432233859179, - "y": 0.01770674022109481 + "x": 0.99984, + "y": 0.01771 }, { "max": { @@ -8980,12 +8980,12 @@ } }, { - "x": 914.7677207848874, - "y": 185.044136089202 + "x": 914.76772, + "y": 185.04414 }, { - "x": 849.798999376506, - "y": 117.38217521022747 + "x": 849.799, + "y": 117.38218 }, { "category": 1, @@ -9002,16 +9002,16 @@ "y": 0 }, { - "x": 882.2649485153515, - "y": 149.84812434907286 + "x": 882.26495, + "y": 149.84812 }, { - "x": 0.4763911166908648, - "y": -0.0010376643476210858 + "x": 0.47639, + "y": -0.00104 }, { - "x": 882.2281253846612, - "y": 147.11806174778908 + "x": 882.22813, + "y": 147.11806 }, { "endCol": 19, @@ -9034,8 +9034,8 @@ "yScale": 1 }, { - "x": 0.03682313069033398, - "y": 2.7300626012837776 + "x": 0.03682, + "y": 2.73006 }, [ { @@ -9055,36 +9055,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 913.6009951472083, - "y": 182.31407348791822 + "x": 913.601, + "y": 182.31407 }, { "body": null, "index": 1, "isInternal": false, - "x": 849.798999376506, - "y": 181.18417098092974 + "x": 849.799, + "y": 181.18417 }, { "body": null, "index": 2, "isInternal": false, - "x": 850.9289018834947, - "y": 117.38217521022747 + "x": 850.9289, + "y": 117.38218 }, { "body": null, "index": 3, "isInternal": false, - "x": 914.7308976541971, - "y": 118.51207771721597 + "x": 914.7309, + "y": 118.51208 }, { - "angle": 0.016885883418594514, - "anglePrev": 0.015083626235635812, - "angularSpeed": 0.0018022571829587005, - "angularVelocity": 0.0018022571829587005, - "area": 1410.4247505938968, + "angle": 0.01689, + "anglePrev": 0.01508, + "angularSpeed": 0.0018, + "angularVelocity": 0.0018, + "area": 1410.42475, "axes": { "#": 1013 }, @@ -9106,13 +9106,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1475.1971281420765, - "inverseInertia": 0.0006778755062107806, - "inverseMass": 0.7090062760022635, + "inertia": 1475.19713, + "inverseInertia": 0.00068, + "inverseMass": 0.70901, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4104247505938967, + "mass": 1.41042, "motion": 0, "parent": null, "position": { @@ -9134,7 +9134,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.840272089312285, + "speed": 2.84027, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9155,12 +9155,12 @@ } ], { - "x": -0.016885080976103053, - "y": 0.9998574368580906 + "x": -0.01689, + "y": 0.99986 }, { - "x": -0.9998574368580906, - "y": -0.016885080976103053 + "x": -0.99986, + "y": -0.01689 }, { "max": { @@ -9171,12 +9171,12 @@ } }, { - "x": 1020.6267188935303, - "y": 169.74753782844655 + "x": 1020.62672, + "y": 169.74754 }, { - "x": 990.0816198581037, - "y": 118.91590695118454 + "x": 990.08162, + "y": 118.91591 }, { "category": 1, @@ -9193,16 +9193,16 @@ "y": 0 }, { - "x": 1005.3279475823335, - "y": 142.91182844910088 + "x": 1005.32795, + "y": 142.91183 }, { - "x": 2.8402984665805615, - "y": 0.0020753286952421715 + "x": 2.8403, + "y": 0.00208 }, { - "x": 1005.2755039953665, - "y": 140.07204056767162 + "x": 1005.2755, + "y": 140.07204 }, { "endCol": 21, @@ -9225,8 +9225,8 @@ "yScale": 1 }, { - "x": 0.0524435869670026, - "y": 2.839787881429246 + "x": 0.05244, + "y": 2.83979 }, [ { @@ -9246,36 +9246,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 990.8836141567035, - "y": 118.91590695118454 + "x": 990.88361, + "y": 118.91591 }, { "body": null, "index": 1, "isInternal": false, - "x": 1020.5742753065633, - "y": 119.41730765019298 + "x": 1020.57428, + "y": 119.41731 }, { "body": null, "index": 2, "isInternal": false, - "x": 1019.7722810079636, - "y": 166.9077499470173 + "x": 1019.77228, + "y": 166.90775 }, { "body": null, "index": 3, "isInternal": false, - "x": 990.0816198581037, - "y": 166.4063492480088 + "x": 990.08162, + "y": 166.40635 }, { - "angle": 0.017542060029909042, - "anglePrev": 0.01586632606732407, - "angularSpeed": 0.0016757339625849737, - "angularVelocity": 0.002460906020898471, - "area": 1145.1396745385214, + "angle": 0.01754, + "anglePrev": 0.01587, + "angularSpeed": 0.00168, + "angularVelocity": 0.00246, + "area": 1145.13967, "axes": { "#": 1035 }, @@ -9296,13 +9296,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 855.9197793798912, - "inverseInertia": 0.001168333790258351, - "inverseMass": 0.8732559199845983, + "inertia": 855.91978, + "inverseInertia": 0.00117, + "inverseMass": 0.87326, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1451396745385214, + "mass": 1.14514, "motion": 0, "parent": null, "position": { @@ -9324,7 +9324,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.831249510522457, + "speed": 2.83125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9363,36 +9363,36 @@ } ], { - "x": 0.9731277886617938, - "y": 0.23026573113298 + "x": 0.97313, + "y": 0.23027 }, { - "x": 0.7887840212470848, - "y": 0.6146704546545885 + "x": 0.78878, + "y": 0.61467 }, { - "x": 0.4610790608240489, - "y": 0.8873590590452172 + "x": 0.46108, + "y": 0.88736 }, { - "x": 0.007538814121319255, - "y": 0.9999715827370519 + "x": 0.00754, + "y": 0.99997 }, { - "x": -0.23026573113298016, - "y": 0.9731277886617941 + "x": -0.23027, + "y": 0.97313 }, { - "x": -0.6146704546545884, - "y": 0.7887840212470848 + "x": -0.61467, + "y": 0.78878 }, { - "x": -0.8873590590452167, - "y": 0.4610790608240493 + "x": -0.88736, + "y": 0.46108 }, { - "x": -0.9999989193179711, - "y": 0.0014701574371560112 + "x": -1, + "y": 0.00147 }, { "max": { @@ -9403,12 +9403,12 @@ } }, { - "x": 52.98775104080359, - "y": 258.6071218930517 + "x": 52.98775, + "y": 258.60712 }, { - "x": 20.35010978624825, - "y": 218.0262078057251 + "x": 20.35011, + "y": 218.02621 }, { "category": 1, @@ -9425,16 +9425,16 @@ "y": 0 }, { - "x": 36.66952508321712, - "y": 236.90104021903036 + "x": 36.66953, + "y": 236.90104 }, { - "x": -0.007566201853934103, - "y": 0.00028973985568621683 + "x": -0.00757, + "y": 0.00029 }, { - "x": 36.670714422599524, - "y": 234.06979095831426 + "x": 36.67071, + "y": 234.06979 }, { "endCol": 1, @@ -9457,8 +9457,8 @@ "yScale": 1 }, { - "x": -0.001552758629664197, - "y": 2.867355353086907 + "x": -0.00155, + "y": 2.86736 }, [ { @@ -9514,120 +9514,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 20.351299125630657, - "y": 227.62197748121102 + "x": 20.3513, + "y": 227.62198 }, { "body": null, "index": 1, "isInternal": false, - "x": 21.3329703499923, - "y": 223.47332912152842 + "x": 21.33297, + "y": 223.47333 }, { "body": null, "index": 2, "isInternal": false, - "x": 23.95343973043706, - "y": 220.11057699994873 + "x": 23.95344, + "y": 220.11058 }, { "body": null, "index": 3, "isInternal": false, - "x": 27.736437963197332, - "y": 218.14490002344166 + "x": 27.73644, + "y": 218.1449 }, { "body": null, "index": 4, "isInternal": false, - "x": 43.48014020848245, - "y": 218.0262078057251 + "x": 43.48014, + "y": 218.02621 }, { "body": null, "index": 5, "isInternal": false, - "x": 47.62878856816509, - "y": 219.00787903008683 + "x": 47.62879, + "y": 219.00788 }, { "body": null, "index": 6, "isInternal": false, - "x": 50.991540689744795, - "y": 221.62834841053154 + "x": 50.99154, + "y": 221.62835 }, { "body": null, "index": 7, "isInternal": false, - "x": 52.95721766625184, - "y": 225.4113466432918 + "x": 52.95722, + "y": 225.41135 }, { "body": null, "index": 8, "isInternal": false, - "x": 52.98775104080359, - "y": 246.1801029568497 + "x": 52.98775, + "y": 246.1801 }, { "body": null, "index": 9, "isInternal": false, - "x": 52.00607981644192, - "y": 250.3287513165323 + "x": 52.00608, + "y": 250.32875 }, { "body": null, "index": 10, "isInternal": false, - "x": 49.385610435997165, - "y": 253.691503438112 + "x": 49.38561, + "y": 253.6915 }, { "body": null, "index": 11, "isInternal": false, - "x": 45.6026122032369, - "y": 255.65718041461906 + "x": 45.60261, + "y": 255.65718 }, { "body": null, "index": 12, "isInternal": false, - "x": 29.858909957951777, - "y": 255.77587263233562 + "x": 29.85891, + "y": 255.77587 }, { "body": null, "index": 13, "isInternal": false, - "x": 25.710261598269128, - "y": 254.7942014079739 + "x": 25.71026, + "y": 254.7942 }, { "body": null, "index": 14, "isInternal": false, - "x": 22.34750947668944, - "y": 252.17373202752918 + "x": 22.34751, + "y": 252.17373 }, { "body": null, "index": 15, "isInternal": false, - "x": 20.381832500182387, - "y": 248.39073379476892 + "x": 20.38183, + "y": 248.39073 }, { - "angle": -0.001928628611022823, - "anglePrev": -0.0016598825474911003, - "angularSpeed": 0.000268746063531723, - "angularVelocity": 0.00017078844830335132, - "area": 1884.7709190881956, + "angle": -0.00193, + "anglePrev": -0.00166, + "angularSpeed": 0.00027, + "angularVelocity": 0.00017, + "area": 1884.77092, "axes": { "#": 1075 }, @@ -9648,13 +9648,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 2264.182707269258, - "inverseInertia": 0.00044166047059252596, - "inverseMass": 0.5305684578812234, + "inertia": 2264.18271, + "inverseInertia": 0.00044, + "inverseMass": 0.53057, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.8847709190881956, + "mass": 1.88477, "motion": 0, "parent": null, "position": { @@ -9676,7 +9676,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8938464882133728, + "speed": 2.89385, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9739,68 +9739,68 @@ } ], { - "x": -0.9944425920948836, - "y": -0.10528024994085569 + "x": -0.99444, + "y": -0.10528 }, { - "x": -0.9491459182035853, - "y": -0.3148365067101861 + "x": -0.94915, + "y": -0.31484 }, { - "x": -0.8602211699600179, - "y": -0.5099211103225849 + "x": -0.86022, + "y": -0.50992 }, { - "x": -0.7138324134460637, - "y": -0.7003165609306745 + "x": -0.71383, + "y": -0.70032 }, { - "x": -0.6287327217128266, - "y": -0.7776214790292135 + "x": -0.62873, + "y": -0.77762 }, { - "x": -0.4485244862374303, - "y": -0.8937705439571437 + "x": -0.44852, + "y": -0.89377 }, { - "x": -0.24769954761968047, - "y": -0.9688368975782276 + "x": -0.2477, + "y": -0.96884 }, { - "x": -0.00955735982571804, - "y": -0.9999543273935873 + "x": -0.00956, + "y": -0.99995 }, { - "x": 0.10528024994085569, - "y": -0.9944425920948836 + "x": 0.10528, + "y": -0.99444 }, { - "x": 0.3148365067101861, - "y": -0.9491459182035853 + "x": 0.31484, + "y": -0.94915 }, { - "x": 0.5099211103225849, - "y": -0.8602211699600179 + "x": 0.50992, + "y": -0.86022 }, { - "x": 0.7003165609306745, - "y": -0.7138324134460637 + "x": 0.70032, + "y": -0.71383 }, { - "x": 0.7776214790292135, - "y": -0.6287327217128266 + "x": 0.77762, + "y": -0.62873 }, { - "x": 0.8937705439571437, - "y": -0.4485244862374303 + "x": 0.89377, + "y": -0.44852 }, { - "x": 0.9688368975782276, - "y": -0.24769954761968047 + "x": 0.96884, + "y": -0.2477 }, { - "x": 0.9999543273935873, - "y": -0.00955735982571804 + "x": 0.99995, + "y": -0.00956 }, { "max": { @@ -9811,12 +9811,12 @@ } }, { - "x": 100.94704581290128, - "y": 269.5045089258262 + "x": 100.94705, + "y": 269.50451 }, { - "x": 52.92385909652649, - "y": 218.58764264071246 + "x": 52.92386, + "y": 218.58764 }, { "category": 1, @@ -9833,16 +9833,16 @@ "y": 0 }, { - "x": 76.93553591204427, - "y": 242.59915254156945 + "x": 76.93554, + "y": 242.59915 }, { - "x": -0.006946404337057001, - "y": 0.00005688758939086284 + "x": -0.00695, + "y": 0.00006 }, { - "x": 76.93570282670508, - "y": 239.70530605816984 + "x": 76.9357, + "y": 239.70531 }, { "endCol": 2, @@ -9865,8 +9865,8 @@ "yScale": 1 }, { - "x": 0.000053889785135652346, - "y": 2.871909324645941 + "x": 0.00005, + "y": 2.87191 }, [ { @@ -9970,232 +9970,232 @@ "body": null, "index": 0, "isInternal": false, - "x": 100.94704581290128, - "y": 248.35189298279482 + "x": 100.94705, + "y": 248.35189 }, { "body": null, "index": 1, "isInternal": false, - "x": 100.72132924533182, - "y": 250.4839373943406 + "x": 100.72133, + "y": 250.48394 }, { "body": null, "index": 2, "isInternal": false, - "x": 100.04633259895124, - "y": 252.51886758209983 + "x": 100.04633, + "y": 252.51887 }, { "body": null, "index": 3, "isInternal": false, - "x": 98.95308250866475, - "y": 254.36314673173183 + "x": 98.95308, + "y": 254.36315 }, { "body": null, "index": 4, "isInternal": false, - "x": 89.84625773990025, - "y": 263.6457298751014 + "x": 89.84626, + "y": 263.64573 }, { "body": null, "index": 5, "isInternal": false, - "x": 88.17906896315088, - "y": 264.9937072207417 + "x": 88.17907, + "y": 264.99371 }, { "body": null, "index": 6, "isInternal": false, - "x": 86.26286132221121, - "y": 265.9553254498137 + "x": 86.26286, + "y": 265.95533 }, { "body": null, "index": 7, "isInternal": false, - "x": 84.18571447673105, - "y": 266.48638319054504 + "x": 84.18571, + "y": 266.48638 }, { "body": null, "index": 8, "isInternal": false, - "x": 71.18279547081887, - "y": 266.6106624424266 + "x": 71.1828, + "y": 266.61066 }, { "body": null, "index": 9, "isInternal": false, - "x": 69.05075105927311, - "y": 266.3849458748571 + "x": 69.05075, + "y": 266.38495 }, { "body": null, "index": 10, "isInternal": false, - "x": 67.0158208715139, - "y": 265.7099492284765 + "x": 67.01582, + "y": 265.70995 }, { "body": null, "index": 11, "isInternal": false, - "x": 65.17154172188187, - "y": 264.61669913819 + "x": 65.17154, + "y": 264.6167 }, { "body": null, "index": 12, "isInternal": false, - "x": 55.888958578512444, - "y": 255.50987436942543 + "x": 55.88896, + "y": 255.50987 }, { "body": null, "index": 13, "isInternal": false, - "x": 54.54098123287208, - "y": 253.84268559267602 + "x": 54.54098, + "y": 253.84269 }, { "body": null, "index": 14, "isInternal": false, - "x": 53.57936300380019, - "y": 251.92647795173642 + "x": 53.57936, + "y": 251.92648 }, { "body": null, "index": 15, "isInternal": false, - "x": 53.04830526306881, - "y": 249.84933110625622 + "x": 53.04831, + "y": 249.84933 }, { "body": null, "index": 16, "isInternal": false, - "x": 52.924026011187294, - "y": 236.84641210034408 + "x": 52.92403, + "y": 236.84641 }, { "body": null, "index": 17, "isInternal": false, - "x": 53.14974257875675, - "y": 234.71436768879832 + "x": 53.14974, + "y": 234.71437 }, { "body": null, "index": 18, "isInternal": false, - "x": 53.824739225137336, - "y": 232.67943750103908 + "x": 53.82474, + "y": 232.67944 }, { "body": null, "index": 19, "isInternal": false, - "x": 54.91798931542384, - "y": 230.83515835140707 + "x": 54.91799, + "y": 230.83516 }, { "body": null, "index": 20, "isInternal": false, - "x": 64.0248140841883, - "y": 221.55257520803758 + "x": 64.02481, + "y": 221.55258 }, { "body": null, "index": 21, "isInternal": false, - "x": 65.69200286093766, - "y": 220.2045978623972 + "x": 65.692, + "y": 220.2046 }, { "body": null, "index": 22, "isInternal": false, - "x": 67.60821050187734, - "y": 219.24297963332532 + "x": 67.60821, + "y": 219.24298 }, { "body": null, "index": 23, "isInternal": false, - "x": 69.6853573473575, - "y": 218.71192189259398 + "x": 69.68536, + "y": 218.71192 }, { "body": null, "index": 24, "isInternal": false, - "x": 82.68827635326967, - "y": 218.58764264071246 + "x": 82.68828, + "y": 218.58764 }, { "body": null, "index": 25, "isInternal": false, - "x": 84.82032076481543, - "y": 218.81335920828192 + "x": 84.82032, + "y": 218.81336 }, { "body": null, "index": 26, "isInternal": false, - "x": 86.85525095257465, - "y": 219.4883558546625 + "x": 86.85525, + "y": 219.48836 }, { "body": null, "index": 27, "isInternal": false, - "x": 88.69953010220668, - "y": 220.58160594494896 + "x": 88.69953, + "y": 220.58161 }, { "body": null, "index": 28, "isInternal": false, - "x": 97.98211324557612, - "y": 229.68843071371347 + "x": 97.98211, + "y": 229.68843 }, { "body": null, "index": 29, "isInternal": false, - "x": 99.3300905912165, - "y": 231.35561949046289 + "x": 99.33009, + "y": 231.35562 }, { "body": null, "index": 30, "isInternal": false, - "x": 100.29170882028836, - "y": 233.2718271314025 + "x": 100.29171, + "y": 233.27183 }, { "body": null, "index": 31, "isInternal": false, - "x": 100.82276656101976, - "y": 235.3489739768827 + "x": 100.82277, + "y": 235.34897 }, { - "angle": -0.0007157083363083084, - "anglePrev": -0.0006148386152591197, - "angularSpeed": 0.00010024908935164966, - "angularVelocity": -0.00010100236171081819, - "area": 3192.987712697058, + "angle": -0.00072, + "anglePrev": -0.00061, + "angularSpeed": 0.0001, + "angularVelocity": -0.0001, + "area": 3192.98771, "axes": { "#": 1139 }, @@ -10217,13 +10217,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 14162.074980074754, - "inverseInertia": 0.00007061112170405424, - "inverseMass": 0.31318629759314615, + "inertia": 14162.07498, + "inverseInertia": 0.00007, + "inverseMass": 0.31319, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.1929877126970583, + "mass": 3.19299, "motion": 0, "parent": null, "position": { @@ -10245,7 +10245,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9151914164625006, + "speed": 2.91519, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10266,12 +10266,12 @@ } ], { - "x": 0.0007157082752060919, - "y": 0.9999997438807994 + "x": 0.00072, + "y": 1 }, { - "x": -0.9999997438807994, - "y": 0.0007157082752060919 + "x": -1, + "y": 0.00072 }, { "max": { @@ -10282,12 +10282,12 @@ } }, { - "x": 211.68787011519169, - "y": 249.9864092205348 + "x": 211.68787, + "y": 249.98641 }, { - "x": 99.90903794630803, - "y": 218.4206587055369 + "x": 99.90904, + "y": 218.42066 }, { "category": 1, @@ -10304,16 +10304,16 @@ "y": 0 }, { - "x": 155.79819149362748, - "y": 232.74593827844825 + "x": 155.79819, + "y": 232.74594 }, { "x": 0, "y": 0 }, { - "x": 155.80277230091707, - "y": 229.83194209125097 + "x": 155.80277, + "y": 229.83194 }, { "endCol": 4, @@ -10336,8 +10336,8 @@ "yScale": 1 }, { - "x": -0.004609701077356476, - "y": 2.913984892657254 + "x": -0.00461, + "y": 2.91398 }, [ { @@ -10357,36 +10357,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 99.90903794630803, - "y": 218.5006447504525 + "x": 99.90904, + "y": 218.50064 }, { "body": null, "index": 1, "isInternal": false, - "x": 211.66689684011405, - "y": 218.4206587055369 + "x": 211.6669, + "y": 218.42066 }, { "body": null, "index": 2, "isInternal": false, - "x": 211.68734504094692, - "y": 246.991231806444 + "x": 211.68735, + "y": 246.99123 }, { "body": null, "index": 3, "isInternal": false, - "x": 99.9294861471409, - "y": 247.0712178513596 + "x": 99.92949, + "y": 247.07122 }, { - "angle": 0.000023545011330823848, - "anglePrev": -0.000024068983862839327, - "angularSpeed": 0.000023545011330823848, - "angularVelocity": 0.000047674448353327803, - "area": 4466.9579779999995, + "angle": 0.00002, + "anglePrev": -0.00002, + "angularSpeed": 0.00002, + "angularVelocity": 0.00005, + "area": 4466.95798, "axes": { "#": 1161 }, @@ -10394,7 +10394,7 @@ "#": 1175 }, "chamfer": "", - "circleRadius": 37.89191100823045, + "circleRadius": 37.89191, "collisionFilter": { "#": 1178 }, @@ -10409,13 +10409,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 12703.170970181629, - "inverseInertia": 0.00007872050233341874, - "inverseMass": 0.2238659967085099, + "inertia": 12703.17097, + "inverseInertia": 0.00008, + "inverseMass": 0.22387, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.466957978, + "mass": 4.46696, "motion": 0, "parent": null, "position": { @@ -10437,7 +10437,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9078252615992075, + "speed": 2.90783, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10491,56 +10491,56 @@ } ], { - "x": -0.9709427614439688, - "y": -0.23931183422380164 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.885395969208233, - "y": -0.46483758207551773 + "x": -0.8854, + "y": -0.46484 }, { - "x": -0.748546176306219, - "y": -0.6630826659907035 + "x": -0.74855, + "y": -0.66308 }, { - "x": -0.5680230722338149, - "y": -0.8230126301643604 + "x": -0.56802, + "y": -0.82301 }, { - "x": -0.3545662146246555, - "y": -0.9350309082841821 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12050742248578933, - "y": -0.9927124261969482 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12055416920280734, - "y": -0.9927067503990394 + "x": 0.12055, + "y": -0.99271 }, { - "x": 0.35461024485817966, - "y": -0.935014210716405 + "x": 0.35461, + "y": -0.93501 }, { - "x": 0.5680618272874187, - "y": -0.8229858810325236 + "x": 0.56806, + "y": -0.82299 }, { - "x": 0.7485774000540361, - "y": -0.6630474161991279 + "x": 0.74858, + "y": -0.66305 }, { - "x": 0.8854178574388293, - "y": -0.46479588824389684 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.9709540295671432, - "y": -0.23926611224184557 + "x": 0.97095, + "y": -0.23927 }, { - "x": 0.9999999997228162, - "y": 0.000023545011328648417 + "x": 1, + "y": 0.00002 }, { "max": { @@ -10551,12 +10551,12 @@ } }, { - "x": 285.5676995085651, - "y": 297.53120951317896 + "x": 285.5677, + "y": 297.53121 }, { - "x": 210.32939616830177, - "y": 218.83939064632685 + "x": 210.3294, + "y": 218.83939 }, { "category": 1, @@ -10573,16 +10573,16 @@ "y": 0 }, { - "x": 247.95159198892492, - "y": 256.7313906358238 + "x": 247.95159, + "y": 256.73139 }, { - "x": 0.21999584912676662, - "y": 0.11567979630641323 + "x": 0.22, + "y": 0.11568 }, { - "x": 247.9554756032739, - "y": 253.82135979724998 + "x": 247.95548, + "y": 253.82136 }, { "endCol": 5, @@ -10605,8 +10605,8 @@ "yScale": 1 }, { - "x": -0.003862961029710732, - "y": 2.9100389119265913 + "x": -0.00386, + "y": 2.91004 }, [ { @@ -10692,190 +10692,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.5674844484316, - "y": 261.29927630370406 + "x": 285.56748, + "y": 261.29928 }, { "body": null, "index": 1, "isInternal": false, - "x": 283.38127560478705, - "y": 270.1692248318506 + "x": 283.38128, + "y": 270.16922 }, { "body": null, "index": 2, "isInternal": false, - "x": 279.1350851739124, - "y": 278.2571248574906 + "x": 279.13509, + "y": 278.25712 }, { "body": null, "index": 3, "isInternal": false, - "x": 273.0779241748038, - "y": 285.0949822434616 + "x": 273.07792, + "y": 285.09498 }, { "body": null, "index": 4, "isInternal": false, - "x": 265.55980200182387, - "y": 290.2838052306281 + "x": 265.5598, + "y": 290.28381 }, { "body": null, "index": 5, "isInternal": false, - "x": 257.0187257418997, - "y": 293.52260413178857 + "x": 257.01873, + "y": 293.5226 }, { "body": null, "index": 6, "isInternal": false, - "x": 247.95069982135564, - "y": 294.6233906253206 + "x": 247.9507, + "y": 294.62339 }, { "body": null, "index": 7, "isInternal": false, - "x": 238.8827257469266, - "y": 293.5221771194631 + "x": 238.88273, + "y": 293.52218 }, { "body": null, "index": 8, "isInternal": false, - "x": 230.34180201158574, - "y": 290.2829760224192 + "x": 230.3418, + "y": 290.28298 }, { "body": null, "index": 9, "isInternal": false, - "x": 222.8239241887334, - "y": 285.0937990124623 + "x": 222.82392, + "y": 285.0938 }, { "body": null, "index": 10, "isInternal": false, - "x": 216.76708519119975, - "y": 278.2556564022241 + "x": 216.76709, + "y": 278.25566 }, { "body": null, "index": 11, "isInternal": false, - "x": 212.5212756244283, - "y": 270.16755643234785 + "x": 212.52128, + "y": 270.16756 }, { "body": null, "index": 12, "isInternal": false, - "x": 210.33548446928475, - "y": 261.29750496541175 + "x": 210.33548, + "y": 261.2975 }, { "body": null, "index": 13, "isInternal": false, - "x": 210.3356995294182, - "y": 252.16350496794354 + "x": 210.3357, + "y": 252.1635 }, { "body": null, "index": 14, "isInternal": false, - "x": 212.52190837306276, - "y": 243.29355643979693 + "x": 212.52191, + "y": 243.29356 }, { "body": null, "index": 15, "isInternal": false, - "x": 216.76809880393748, - "y": 235.2056564141569 + "x": 216.7681, + "y": 235.20566 }, { "body": null, "index": 16, "isInternal": false, - "x": 222.825259803046, - "y": 228.3677990281859 + "x": 222.82526, + "y": 228.3678 }, { "body": null, "index": 17, "isInternal": false, - "x": 230.34338197602594, - "y": 223.17897604101938 + "x": 230.34338, + "y": 223.17898 }, { "body": null, "index": 18, "isInternal": false, - "x": 238.8844582359502, - "y": 219.94017713985895 + "x": 238.88446, + "y": 219.94018 }, { "body": null, "index": 19, "isInternal": false, - "x": 247.9524841564942, - "y": 218.83939064632685 + "x": 247.95248, + "y": 218.83939 }, { "body": null, "index": 20, "isInternal": false, - "x": 257.0204582309232, - "y": 219.9406041521844 + "x": 257.02046, + "y": 219.9406 }, { "body": null, "index": 21, "isInternal": false, - "x": 265.56138196626404, - "y": 223.17980524922837 + "x": 265.56138, + "y": 223.17981 }, { "body": null, "index": 22, "isInternal": false, - "x": 273.07925978911646, - "y": 228.36898225918523 + "x": 273.07926, + "y": 228.36898 }, { "body": null, "index": 23, "isInternal": false, - "x": 279.1360987866501, - "y": 235.20712486942344 + "x": 279.1361, + "y": 235.20712 }, { "body": null, "index": 24, "isInternal": false, - "x": 283.3819083534215, - "y": 243.2952248392997 + "x": 283.38191, + "y": 243.29522 }, { "body": null, "index": 25, "isInternal": false, - "x": 285.5676995085651, - "y": 252.16527630623582 + "x": 285.5677, + "y": 252.16528 }, { - "angle": 0.00012076499479816909, - "anglePrev": 0.0000534647906333835, - "angularSpeed": 0.00006217908667413261, - "angularVelocity": 0.00006530549999607206, - "area": 2150.621595245249, + "angle": 0.00012, + "anglePrev": 0.00005, + "angularSpeed": 0.00006, + "angularVelocity": 0.00007, + "area": 2150.6216, "axes": { "#": 1216 }, @@ -10897,13 +10897,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 3103.359772962483, - "inverseInertia": 0.00032223141148903753, - "inverseMass": 0.4649818462768498, + "inertia": 3103.35977, + "inverseInertia": 0.00032, + "inverseMass": 0.46498, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.150621595245249, + "mass": 2.15062, "motion": 0, "parent": null, "position": { @@ -10925,7 +10925,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.916187571809465, + "speed": 2.91619, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10946,12 +10946,12 @@ } ], { - "x": -0.00012076499450462593, - "y": 0.999999992707908 + "x": -0.00012, + "y": 1 }, { - "x": -0.999999992707908, - "y": -0.00012076499450462593 + "x": -1, + "y": -0.00012 }, { "max": { @@ -10962,12 +10962,12 @@ } }, { - "x": 329.3125606463655, - "y": 270.7076447215867 + "x": 329.31256, + "y": 270.70764 }, { - "x": 285.48641033397655, - "y": 218.70148819272273 + "x": 285.48641, + "y": 218.70149 }, { "category": 1, @@ -10984,16 +10984,16 @@ "y": 0 }, { - "x": 307.40233957722626, - "y": 243.24647546456163 + "x": 307.40234, + "y": 243.24648 }, { "x": 0, "y": 0 }, { - "x": 307.40504639839406, - "y": 240.33311335691184 + "x": 307.40505, + "y": 240.33311 }, { "endCol": 6, @@ -11016,8 +11016,8 @@ "yScale": 1 }, { - "x": -0.0026068962587828537, - "y": 2.9134113144420724 + "x": -0.00261, + "y": 2.91341 }, [ { @@ -11037,35 +11037,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.49804621963733, - "y": 218.70148819272273 + "x": 285.49805, + "y": 218.70149 }, { "body": null, "index": 1, "isInternal": false, - "x": 329.3125606463655, - "y": 218.70677945235528 + "x": 329.31256, + "y": 218.70678 }, { "body": null, "index": 2, "isInternal": false, - "x": 329.3066329348152, - "y": 267.79146273640055 + "x": 329.30663, + "y": 267.79146 }, { "body": null, "index": 3, "isInternal": false, - "x": 285.492118508087, - "y": 267.78617147676795 + "x": 285.49212, + "y": 267.78617 }, { - "angle": 0.00032821961112353647, - "anglePrev": 0.00020138195217226837, - "angularSpeed": 0.0001268376589512681, - "angularVelocity": 0.0001268376589512681, + "angle": 0.00033, + "anglePrev": 0.0002, + "angularSpeed": 0.00013, + "angularVelocity": 0.00013, "area": 2853.66629, "axes": { "#": 1238 @@ -11074,7 +11074,7 @@ "#": 1252 }, "chamfer": "", - "circleRadius": 30.286243998628258, + "circleRadius": 30.28624, "collisionFilter": { "#": 1255 }, @@ -11089,13 +11089,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 5184.355561525051, - "inverseInertia": 0.0001928880047158332, - "inverseMass": 0.3504263983158311, + "inertia": 5184.35556, + "inverseInertia": 0.00019, + "inverseMass": 0.35043, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.85366629, + "mass": 2.85367, "motion": 0, "parent": null, "position": { @@ -11117,7 +11117,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.900225598877963, + "speed": 2.90023, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11171,56 +11171,56 @@ } ], { - "x": -0.9708721894527186, - "y": -0.2395979794307215 + "x": -0.97087, + "y": -0.2396 }, { - "x": -0.8853087336408076, - "y": -0.4650037055113746 + "x": -0.88531, + "y": -0.465 }, { - "x": -0.7482636463255641, - "y": -0.663401473911214 + "x": -0.74826, + "y": -0.6634 }, { - "x": -0.5677924648102757, - "y": -0.8231717420469873 + "x": -0.56779, + "y": -0.82317 }, { - "x": -0.35428126192034926, - "y": -0.9351389134519669 + "x": -0.35428, + "y": -0.93514 }, { - "x": -0.12020186651591656, - "y": -0.9927494705544243 + "x": -0.1202, + "y": -0.99275 }, { - "x": 0.12085352026121107, - "y": -0.992670351446276 + "x": 0.12085, + "y": -0.99267 }, { - "x": 0.35489504740520084, - "y": -0.9349061478711435 + "x": 0.3549, + "y": -0.93491 }, { - "x": 0.5683327046551753, - "y": -0.8227988434722872 + "x": 0.56833, + "y": -0.8228 }, { - "x": 0.7486989678238043, - "y": -0.6629101414064879 + "x": 0.7487, + "y": -0.66291 }, { - "x": 0.8856137895444013, - "y": -0.46442245398861254 + "x": 0.88561, + "y": -0.46442 }, { - "x": 0.9710292617722418, - "y": -0.23896060926867269 + "x": 0.97103, + "y": -0.23896 }, { - "x": 0.9999999461359439, - "y": 0.0003282196052304566 + "x": 1, + "y": 0.00033 }, { "max": { @@ -11231,12 +11231,12 @@ } }, { - "x": 389.0284319837204, - "y": 282.1719316517047 + "x": 389.02843, + "y": 282.17193 }, { - "x": 328.8882275448467, - "y": 218.6997198339924 + "x": 328.88823, + "y": 218.69972 }, { "category": 1, @@ -11253,16 +11253,16 @@ "y": 0 }, { - "x": 358.9622352733645, - "y": 248.98571820266557 + "x": 358.96224, + "y": 248.98572 }, { - "x": -0.1993594325412792, - "y": 0.0000796087279621504 + "x": -0.19936, + "y": 0.00008 }, { - "x": 358.97004629152644, - "y": 246.08550312229957 + "x": 358.97005, + "y": 246.0855 }, { "endCol": 8, @@ -11285,8 +11285,8 @@ "yScale": 1 }, { - "x": -0.007811018161909829, - "y": 2.9002150803659914 + "x": -0.00781, + "y": 2.90022 }, [ { @@ -11372,190 +11372,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.026035324163, - "y": 252.64658592843915 + "x": 389.02604, + "y": 252.64659 }, { "body": null, "index": 1, "isInternal": false, - "x": 387.276708669482, - "y": 259.73501214694653 + "x": 387.27671, + "y": 259.73501 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.8815869124949, - "y": 266.19889814959487 + "x": 383.88159, + "y": 266.1989 }, { "body": null, "index": 3, "isInternal": false, - "x": 379.0377934531621, - "y": 271.6623086158993 + "x": 379.03779, + "y": 271.66231 }, { "body": null, "index": 4, "isInternal": false, - "x": 373.0284326500745, - "y": 275.8073364491368 + "x": 373.02843, + "y": 275.80734 }, { "body": null, "index": 5, "isInternal": false, - "x": 366.2005832572464, - "y": 278.3940955544378 + "x": 366.20058, + "y": 278.3941 }, { "body": null, "index": 6, "isInternal": false, - "x": 358.95229481440055, - "y": 279.27171657133874 + "x": 358.95229, + "y": 279.27172 }, { "body": null, "index": 7, "isInternal": false, - "x": 351.7045840380598, - "y": 278.38933768304037 + "x": 351.70458, + "y": 278.38934 }, { "body": null, "index": 8, "isInternal": false, - "x": 344.87843416634763, - "y": 275.79809706724956 + "x": 344.87843, + "y": 275.7981 }, { "body": null, "index": 9, "isInternal": false, - "x": 338.8717956166658, - "y": 271.64912534723555 + "x": 338.8718, + "y": 271.64913 }, { "body": null, "index": 10, "isInternal": false, - "x": 334.0315895976181, - "y": 266.18253640227414 + "x": 334.03159, + "y": 266.18254 }, { "body": null, "index": 11, "isInternal": false, - "x": 330.64071172012666, - "y": 259.7164231013847 + "x": 330.64071, + "y": 259.71642 }, { "body": null, "index": 12, "isInternal": false, - "x": 328.89603856300863, - "y": 252.62685008357667 + "x": 328.89604, + "y": 252.62685 }, { "body": null, "index": 13, "isInternal": false, - "x": 328.89843522256604, - "y": 245.32485047689198 + "x": 328.89844, + "y": 245.32485 }, { "body": null, "index": 14, "isInternal": false, - "x": 330.64776187724704, - "y": 238.2364242583846 + "x": 330.64776, + "y": 238.23642 }, { "body": null, "index": 15, "isInternal": false, - "x": 334.0428836342341, - "y": 231.77253825573627 + "x": 334.04288, + "y": 231.77254 }, { "body": null, "index": 16, "isInternal": false, - "x": 338.8866770935669, - "y": 226.30912778943187 + "x": 338.88668, + "y": 226.30913 }, { "body": null, "index": 17, "isInternal": false, - "x": 344.89603789665455, - "y": 222.16409995619432 + "x": 344.89604, + "y": 222.1641 }, { "body": null, "index": 18, "isInternal": false, - "x": 351.7238872894826, - "y": 219.57734085089328 + "x": 351.72389, + "y": 219.57734 }, { "body": null, "index": 19, "isInternal": false, - "x": 358.9721757323285, - "y": 218.6997198339924 + "x": 358.97218, + "y": 218.69972 }, { "body": null, "index": 20, "isInternal": false, - "x": 366.2198865086692, - "y": 219.58209872229068 + "x": 366.21989, + "y": 219.5821 }, { "body": null, "index": 21, "isInternal": false, - "x": 373.0460363803814, - "y": 222.17333933808155 + "x": 373.04604, + "y": 222.17334 }, { "body": null, "index": 22, "isInternal": false, - "x": 379.05267493006323, - "y": 226.32231105809558 + "x": 379.05267, + "y": 226.32231 }, { "body": null, "index": 23, "isInternal": false, - "x": 383.8928809491109, - "y": 231.78890000305702 + "x": 383.89288, + "y": 231.7889 }, { "body": null, "index": 24, "isInternal": false, - "x": 387.28375882660237, - "y": 238.25501330394644 + "x": 387.28376, + "y": 238.25501 }, { "body": null, "index": 25, "isInternal": false, - "x": 389.0284319837204, - "y": 245.34458632175446 + "x": 389.02843, + "y": 245.34459 }, { - "angle": -0.0002505311570355707, - "anglePrev": -0.000002385343520785099, - "angularSpeed": 0.0005384878805841506, - "angularVelocity": -0.0006969005685228949, - "area": 1365.5999734968448, + "angle": -0.00025, + "anglePrev": 0, + "angularSpeed": 0.00054, + "angularVelocity": -0.0007, + "area": 1365.59997, "axes": { "#": 1293 }, @@ -11577,13 +11577,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1298.9605101084082, - "inverseInertia": 0.0007698463442253086, - "inverseMass": 0.732278865998609, + "inertia": 1298.96051, + "inverseInertia": 0.00077, + "inverseMass": 0.73228, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3655999734968447, + "mass": 1.3656, "motion": 0, "parent": null, "position": { @@ -11605,7 +11605,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9014164864918364, + "speed": 2.90142, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11626,12 +11626,12 @@ } ], { - "x": 0.00025053115441477005, - "y": 0.99999996861707 + "x": 0.00025, + "y": 1 }, { - "x": -0.99999996861707, - "y": 0.00025053115441477005 + "x": -1, + "y": 0.00025 }, { "max": { @@ -11642,12 +11642,12 @@ } }, { - "x": 421.2441077924399, - "y": 264.5195885666043 + "x": 421.24411, + "y": 264.51959 }, { - "x": 389.3872305987904, - "y": 218.71263270025779 + "x": 389.38723, + "y": 218.71263 }, { "category": 1, @@ -11664,16 +11664,16 @@ "y": 0 }, { - "x": 405.32175724849014, - "y": 240.1654151648251 + "x": 405.32176, + "y": 240.16542 }, { - "x": -0.10749944434586396, - "y": -0.00004780903493431789 + "x": -0.1075, + "y": -0.00005 }, { - "x": 405.33549891206377, - "y": 237.24879133675032 + "x": 405.3355, + "y": 237.24879 }, { "endCol": 8, @@ -11696,8 +11696,8 @@ "yScale": 1 }, { - "x": -0.012976478917664735, - "y": 2.8908527931394588 + "x": -0.01298, + "y": 2.89085 }, [ { @@ -11717,36 +11717,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.39940670454047, - "y": 218.7206080977295 + "x": 389.39941, + "y": 218.72061 }, { "body": null, "index": 1, "isInternal": false, - "x": 421.2333606094756, - "y": 218.71263270025779 + "x": 421.23336, + "y": 218.71263 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.2441077924399, - "y": 261.6102222319207 + "x": 421.24411, + "y": 261.61022 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.41015388750475, - "y": 261.6181976293924 + "x": 389.41015, + "y": 261.6182 }, { - "angle": -0.0004554819170823507, - "anglePrev": -0.0003640451078095484, - "angularSpeed": 0.0002473967337746574, - "angularVelocity": -0.00037652062847817454, - "area": 1818.1655641659895, + "angle": -0.00046, + "anglePrev": -0.00036, + "angularSpeed": 0.00025, + "angularVelocity": -0.00038, + "area": 1818.16556, "axes": { "#": 1315 }, @@ -11768,13 +11768,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 2264.6113640186218, - "inverseInertia": 0.00044157687093182715, - "inverseMass": 0.5500049168837436, + "inertia": 2264.61136, + "inverseInertia": 0.00044, + "inverseMass": 0.55, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.8181655641659895, + "mass": 1.81817, "motion": 0, "parent": null, "position": { @@ -11796,7 +11796,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9139614115183288, + "speed": 2.91396, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11817,12 +11817,12 @@ } ], { - "x": 0.00045548190133301754, - "y": 0.999999896268113 + "x": 0.00046, + "y": 1 }, { - "x": -0.999999896268113, - "y": 0.00045548190133301754 + "x": -1, + "y": 0.00046 }, { "max": { @@ -11833,12 +11833,12 @@ } }, { - "x": 459.1306074469026, - "y": 269.5103820512791 + "x": 459.13061, + "y": 269.51038 }, { - "x": 421.17396330199364, - "y": 218.63838775233012 + "x": 421.17396, + "y": 218.63839 }, { "category": 1, @@ -11855,16 +11855,16 @@ "y": 0 }, { - "x": 440.15707130783784, - "y": 242.61741205655454 + "x": 440.15707, + "y": 242.61741 }, { - "x": -0.11396227628453322, - "y": 0.0000025461853955189846 + "x": -0.11396, + "y": 0 }, { - "x": 440.1654672874676, - "y": 239.7148940848086 + "x": 440.16547, + "y": 239.71489 }, { "endCol": 9, @@ -11887,8 +11887,8 @@ "yScale": 1 }, { - "x": -0.008970699647875335, - "y": 2.9218742533290367 + "x": -0.00897, + "y": 2.92187 }, [ { @@ -11908,36 +11908,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 421.18353516877306, - "y": 218.6556620127788 + "x": 421.18354, + "y": 218.65566 }, { "body": null, "index": 1, "isInternal": false, - "x": 459.10877128958606, - "y": 218.63838775233012 + "x": 459.10877, + "y": 218.63839 }, { "body": null, "index": 2, "isInternal": false, - "x": 459.1306074469026, - "y": 266.57916210033034 + "x": 459.13061, + "y": 266.57916 }, { "body": null, "index": 3, "isInternal": false, - "x": 421.2053713260896, - "y": 266.596436360779 + "x": 421.20537, + "y": 266.59644 }, { - "angle": -0.001295298882237998, - "anglePrev": -0.0014021195075180478, - "angularSpeed": 0.00010624674634025835, - "angularVelocity": -0.0006289206542106022, - "area": 1013.362993496838, + "angle": -0.0013, + "anglePrev": -0.0014, + "angularSpeed": 0.00011, + "angularVelocity": -0.00063, + "area": 1013.36299, "axes": { "#": 1337 }, @@ -11959,13 +11959,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 687.3887813315329, - "inverseInertia": 0.001454780798230241, - "inverseMass": 0.9868132213406314, + "inertia": 687.38878, + "inverseInertia": 0.00145, + "inverseMass": 0.98681, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.013362993496838, + "mass": 1.01336, "motion": 0, "parent": null, "position": { @@ -11987,7 +11987,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8784642327978975, + "speed": 2.87846, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12008,12 +12008,12 @@ } ], { - "x": 0.0012952985200294584, - "y": 0.9999991611005202 + "x": 0.0013, + "y": 1 }, { - "x": -0.9999991611005202, - "y": 0.0012952985200294584 + "x": -1, + "y": 0.0013 }, { "max": { @@ -12024,12 +12024,12 @@ } }, { - "x": 489.5319191587439, - "y": 254.81003887733505 + "x": 489.53192, + "y": 254.81004 }, { - "x": 459.05101921446936, - "y": 218.59058600245407 + "x": 459.05102, + "y": 218.59059 }, { "category": 1, @@ -12046,16 +12046,16 @@ "y": 0 }, { - "x": 474.2954400327838, - "y": 235.2610858012949 + "x": 474.29544, + "y": 235.26109 }, { - "x": -0.12131360478678682, - "y": 0.00018236409289659565 + "x": -0.12131, + "y": 0.00018 }, { - "x": 474.30338175651923, - "y": 232.3826567509945 + "x": 474.30338, + "y": 232.38266 }, { "endCol": 10, @@ -12078,8 +12078,8 @@ "yScale": 1 }, { - "x": -0.007137090245123545, - "y": 2.910444852392658 + "x": -0.00714, + "y": 2.91044 }, [ { @@ -12099,36 +12099,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 459.0589609068237, - "y": 218.63000173985836 + "x": 459.05896, + "y": 218.63 }, { "body": null, "index": 1, "isInternal": false, - "x": 489.4887836302686, - "y": 218.59058600245407 + "x": 489.48878, + "y": 218.59059 }, { "body": null, "index": 2, "isInternal": false, - "x": 489.5319191587439, - "y": 251.89216986273146 + "x": 489.53192, + "y": 251.89217 }, { "body": null, "index": 3, "isInternal": false, - "x": 459.102096435299, - "y": 251.93158560013575 + "x": 459.1021, + "y": 251.93159 }, { - "angle": 0.0002246687920388095, - "anglePrev": 0.00011753993441572168, - "angularSpeed": 0.00010712885762308784, - "angularVelocity": 0.00010712885762308784, - "area": 1150.5899172961686, + "angle": 0.00022, + "anglePrev": 0.00012, + "angularSpeed": 0.00011, + "angularVelocity": 0.00011, + "area": 1150.58992, "axes": { "#": 1359 }, @@ -12150,13 +12150,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 958.5119663079198, - "inverseInertia": 0.0010432837931610675, - "inverseMass": 0.8691193838634986, + "inertia": 958.51197, + "inverseInertia": 0.00104, + "inverseMass": 0.86912, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1505899172961687, + "mass": 1.15059, "motion": 0, "parent": null, "position": { @@ -12178,7 +12178,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072098477377786, + "speed": 2.90721, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12199,12 +12199,12 @@ } ], { - "x": -0.00022466879014874344, - "y": 0.9999999747619668 + "x": -0.00022, + "y": 1 }, { - "x": -0.9999999747619668, - "y": -0.00022466879014874344 + "x": -1, + "y": -0.00022 }, { "max": { @@ -12215,12 +12215,12 @@ } }, { - "x": 531.9979744240633, - "y": 244.08159937758518 + "x": 531.99797, + "y": 244.0816 }, { - "x": 490.31374672139617, - "y": 216.4656048067788 + "x": 490.31375, + "y": 216.4656 }, { "category": 1, @@ -12237,16 +12237,16 @@ "y": 0 }, { - "x": 511.1558605727296, - "y": 230.273602092182 + "x": 511.15586, + "y": 230.2736 }, { "x": 0, "y": 0 }, { - "x": 511.18062196632974, - "y": 227.3664976956784 + "x": 511.18062, + "y": 227.3665 }, { "endCol": 11, @@ -12269,8 +12269,8 @@ "yScale": 1 }, { - "x": -0.02476139360017328, - "y": 2.907104396503589 + "x": -0.02476, + "y": 2.9071 }, [ { @@ -12290,36 +12290,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 490.3199490698988, - "y": 216.4656048067788 + "x": 490.31995, + "y": 216.4656 }, { "body": null, "index": 1, "isInternal": false, - "x": 531.9979744240633, - "y": 216.4749685585472 + "x": 531.99797, + "y": 216.47497 }, { "body": null, "index": 2, "isInternal": false, - "x": 531.9917720755604, - "y": 244.08159937758518 + "x": 531.99177, + "y": 244.0816 }, { "body": null, "index": 3, "isInternal": false, - "x": 490.31374672139617, - "y": 244.07223562581675 + "x": 490.31375, + "y": 244.07224 }, { - "angle": -0.005517218834920903, - "anglePrev": -0.004662755326161294, - "angularSpeed": 0.0008544635087596088, - "angularVelocity": -0.0008544635087596088, - "area": 3070.122224999999, + "angle": -0.00552, + "anglePrev": -0.00466, + "angularSpeed": 0.00085, + "angularVelocity": -0.00085, + "area": 3070.12222, "axes": { "#": 1381 }, @@ -12341,13 +12341,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 6102.402752435917, - "inverseInertia": 0.00016386987889333043, - "inverseMass": 0.32571993123172815, + "inertia": 6102.40275, + "inverseInertia": 0.00016, + "inverseMass": 0.32572, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.070122224999999, + "mass": 3.07012, "motion": 0, "parent": null, "position": { @@ -12369,7 +12369,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9053589125352586, + "speed": 2.90536, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12399,24 +12399,24 @@ } ], { - "x": 0.31424558430359134, - "y": 0.9493417260110792 + "x": 0.31425, + "y": 0.94934 }, { - "x": -0.8057571176456783, - "y": 0.5922461205979556 + "x": -0.80576, + "y": 0.59225 }, { - "x": -0.812243034413641, - "y": -0.5833191691060061 + "x": -0.81224, + "y": -0.58332 }, { - "x": 0.3037512138882007, - "y": -0.9527513841823819 + "x": 0.30375, + "y": -0.95275 }, { - "x": 0.9999847801867713, - "y": -0.005517190844545767 + "x": 0.99998, + "y": -0.00552 }, { "max": { @@ -12427,12 +12427,12 @@ } }, { - "x": 587.4485704063367, - "y": 296.46789920264894 + "x": 587.44857, + "y": 296.4679 }, { - "x": 522.2835600335136, - "y": 225.21392085073992 + "x": 522.28356, + "y": 225.21392 }, { "category": 1, @@ -12449,16 +12449,16 @@ "y": 0 }, { - "x": 558.261567743487, - "y": 259.32713733551935 + "x": 558.26157, + "y": 259.32714 }, { - "x": -0.10298440263741482, - "y": 0.37681192888977305 + "x": -0.10298, + "y": 0.37681 }, { - "x": 558.3060333752505, - "y": 256.422118709376 + "x": 558.30603, + "y": 256.42212 }, { "endCol": 12, @@ -12481,8 +12481,8 @@ "yScale": 1 }, { - "x": -0.04446563176353038, - "y": 2.905018626143373 + "x": -0.04447, + "y": 2.90502 }, [ { @@ -12505,43 +12505,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 587.4485704063367, - "y": 280.2884260985481 + "x": 587.44857, + "y": 280.28843 }, { "body": null, "index": 1, "isInternal": false, - "x": 547.346197754427, - "y": 293.56288057650556 + "x": 547.3462, + "y": 293.56288 }, { "body": null, "index": 2, "isInternal": false, - "x": 522.3280256652771, - "y": 259.5253925622929 + "x": 522.32803, + "y": 259.52539 }, { "body": null, "index": 3, "isInternal": false, - "x": 546.9690977602024, - "y": 225.21392085073992 + "x": 546.9691, + "y": 225.21392 }, { "body": null, "index": 4, "isInternal": false, - "x": 587.2155021962997, - "y": 238.04506904433822 + "x": 587.2155, + "y": 238.04507 }, { - "angle": -0.010967077329317388, - "anglePrev": -0.01024549121963566, - "angularSpeed": 0.0019015607215979182, - "angularVelocity": -0.0009119772250394832, - "area": 1289.2729575874455, + "angle": -0.01097, + "anglePrev": -0.01025, + "angularSpeed": 0.0019, + "angularVelocity": -0.00091, + "area": 1289.27296, "axes": { "#": 1407 }, @@ -12562,13 +12562,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1245.9739295541528, - "inverseInertia": 0.0008025850110345649, - "inverseMass": 0.7756309430946662, + "inertia": 1245.97393, + "inverseInertia": 0.0008, + "inverseMass": 0.77563, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2892729575874455, + "mass": 1.28927, "motion": 0, "parent": null, "position": { @@ -12590,7 +12590,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.856105703556289, + "speed": 2.85611, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12629,36 +12629,36 @@ } ], { - "x": 0.979296138596655, - "y": 0.20243288500063739 + "x": 0.9793, + "y": 0.20243 }, { - "x": 0.8059848433264111, - "y": 0.5919361725119535 + "x": 0.80598, + "y": 0.59194 }, { - "x": 0.4861861122391725, - "y": 0.8738552879428945 + "x": 0.48619, + "y": 0.87386 }, { - "x": 0.02323197791280778, - "y": 0.9997301011784424 + "x": 0.02323, + "y": 0.99973 }, { - "x": -0.20243288500063733, - "y": 0.979296138596655 + "x": -0.20243, + "y": 0.9793 }, { - "x": -0.5919361725119532, - "y": 0.8059848433264113 + "x": -0.59194, + "y": 0.80598 }, { - "x": -0.8738552879428946, - "y": 0.48618611223917235 + "x": -0.87386, + "y": 0.48619 }, { - "x": -0.9989168569507393, - "y": 0.04653077368426255 + "x": -0.99892, + "y": 0.04653 }, { "max": { @@ -12669,12 +12669,12 @@ } }, { - "x": 636.5546352250228, - "y": 250.1687258168725 + "x": 636.55464, + "y": 250.16873 }, { - "x": 587.0077009674472, - "y": 218.68232826447917 + "x": 587.0077, + "y": 218.68233 }, { "category": 1, @@ -12691,16 +12691,16 @@ "y": 0 }, { - "x": 611.8090140771483, - "y": 232.99774570278873 + "x": 611.80901, + "y": 232.99775 }, { - "x": -0.6597891715614639, - "y": 0.4857415929569947 + "x": -0.65979, + "y": 0.48574 }, { - "x": 611.8454064460624, - "y": 230.10125151492997 + "x": 611.84541, + "y": 230.10125 }, { "endCol": 13, @@ -12723,8 +12723,8 @@ "yScale": 1 }, { - "x": -0.04062508839012935, - "y": 2.8903631820155056 + "x": -0.04063, + "y": 2.89036 }, [ { @@ -12780,120 +12780,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 587.0633929292737, - "y": 229.1138548257205 + "x": 587.06339, + "y": 229.11385 }, { "body": null, "index": 1, "isInternal": false, - "x": 587.9264068788175, - "y": 224.93890949339217 + "x": 587.92641, + "y": 224.93891 }, { "body": null, "index": 2, "isInternal": false, - "x": 590.4499552346869, - "y": 221.50282665087735 + "x": 590.44996, + "y": 221.50283 }, { "body": null, "index": 3, "isInternal": false, - "x": 594.1753840521188, - "y": 219.43011303552038 + "x": 594.17538, + "y": 219.43011 }, { "body": null, "index": 4, "isInternal": false, - "x": 626.3544325867936, - "y": 218.68232826447917 + "x": 626.35443, + "y": 218.68233 }, { "body": null, "index": 5, "isInternal": false, - "x": 630.5293779191219, - "y": 219.54534221402287 + "x": 630.52938, + "y": 219.54534 }, { "body": null, "index": 6, "isInternal": false, - "x": 633.9654607616369, - "y": 222.06889056989246 + "x": 633.96546, + "y": 222.06889 }, { "body": null, "index": 7, "isInternal": false, - "x": 636.0381743769938, - "y": 225.79431938732426 + "x": 636.03817, + "y": 225.79432 }, { "body": null, "index": 8, "isInternal": false, - "x": 636.5546352250228, - "y": 236.88163657985697 + "x": 636.55464, + "y": 236.88164 }, { "body": null, "index": 9, "isInternal": false, - "x": 635.6916212754791, - "y": 241.0565819121853 + "x": 635.69162, + "y": 241.05658 }, { "body": null, "index": 10, "isInternal": false, - "x": 633.1680729196097, - "y": 244.49266475470012 + "x": 633.16807, + "y": 244.49266 }, { "body": null, "index": 11, "isInternal": false, - "x": 629.4426441021778, - "y": 246.5653783700571 + "x": 629.44264, + "y": 246.56538 }, { "body": null, "index": 12, "isInternal": false, - "x": 597.263595567503, - "y": 247.3131631410983 + "x": 597.2636, + "y": 247.31316 }, { "body": null, "index": 13, "isInternal": false, - "x": 593.0886502351747, - "y": 246.4501491915546 + "x": 593.08865, + "y": 246.45015 }, { "body": null, "index": 14, "isInternal": false, - "x": 589.6525673926596, - "y": 243.926600835685 + "x": 589.65257, + "y": 243.9266 }, { "body": null, "index": 15, "isInternal": false, - "x": 587.5798537773028, - "y": 240.2011720182532 + "x": 587.57985, + "y": 240.20117 }, { - "angle": 0.021758503085541392, - "anglePrev": 0.018366402721084585, - "angularSpeed": 0.003392100364456807, - "angularVelocity": 0.003392100364456807, - "area": 1558.1253951107035, + "angle": 0.02176, + "anglePrev": 0.01837, + "angularSpeed": 0.00339, + "angularVelocity": 0.00339, + "area": 1558.1254, "axes": { "#": 1447 }, @@ -12915,13 +12915,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1636.3880205903727, - "inverseInertia": 0.0006111020047917621, - "inverseMass": 0.6417968689413157, + "inertia": 1636.38802, + "inverseInertia": 0.00061, + "inverseMass": 0.6418, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5581253951107035, + "mass": 1.55813, "motion": 0, "parent": null, "position": { @@ -12943,7 +12943,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8422519415680783, + "speed": 2.84225, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12964,12 +12964,12 @@ } ], { - "x": -0.02175678626258754, - "y": 0.9997632931106863 + "x": -0.02176, + "y": 0.99976 }, { - "x": -0.9997632931106863, - "y": -0.02175678626258754 + "x": -0.99976, + "y": -0.02176 }, { "max": { @@ -12980,12 +12980,12 @@ } }, { - "x": 672.6374133142666, - "y": 286.9570514695152 + "x": 672.63741, + "y": 286.95705 }, { - "x": 635.073162588896, - "y": 243.65369941789695 + "x": 635.07316, + "y": 243.6537 }, { "category": 1, @@ -13002,16 +13002,16 @@ "y": 0 }, { - "x": 653.8552879515813, - "y": 265.30537544370605 + "x": 653.85529, + "y": 265.30538 }, { "x": 0, "y": 0 }, { - "x": 653.990308954906, - "y": 262.4663323957745 + "x": 653.99031, + "y": 262.46633 }, { "endCol": 14, @@ -13034,8 +13034,8 @@ "yScale": 1 }, { - "x": -0.13502100332467307, - "y": 2.839043047931593 + "x": -0.13502, + "y": 2.83904 }, [ { @@ -13055,36 +13055,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 635.9981757476335, - "y": 243.65369941789695 + "x": 635.99818, + "y": 243.6537 }, { "body": null, "index": 1, "isInternal": false, - "x": 672.6374133142666, - "y": 244.45104021451795 + "x": 672.63741, + "y": 244.45104 }, { "body": null, "index": 2, "isInternal": false, - "x": 671.7124001555292, - "y": 286.9570514695152 + "x": 671.7124, + "y": 286.95705 }, { "body": null, "index": 3, "isInternal": false, - "x": 635.073162588896, - "y": 286.15971067289416 + "x": 635.07316, + "y": 286.15971 }, { - "angle": -0.03579806926337733, - "anglePrev": -0.03084287571523706, - "angularSpeed": 0.004955193548140272, - "angularVelocity": -0.004955193548140272, - "area": 3629.791971, + "angle": -0.0358, + "anglePrev": -0.03084, + "angularSpeed": 0.00496, + "angularVelocity": -0.00496, + "area": 3629.79197, "axes": { "#": 1469 }, @@ -13106,13 +13106,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 8421.130427783828, - "inverseInertia": 0.00011874890296208937, - "inverseMass": 0.2754978819693907, + "inertia": 8421.13043, + "inverseInertia": 0.00012, + "inverseMass": 0.2755, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.6297919710000004, + "mass": 3.62979, "motion": 0, "parent": null, "position": { @@ -13134,7 +13134,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7806489665441685, + "speed": 2.78065, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13170,32 +13170,32 @@ } ], { - "x": 0.6510805447099055, - "y": 0.7590086457348512 + "x": 0.65108, + "y": 0.75901 }, { - "x": -0.1874962563781312, - "y": 0.9822653174393291 + "x": -0.1875, + "y": 0.98227 }, { - "x": -0.8848605889404357, - "y": 0.46585591993660974 + "x": -0.88486, + "y": 0.46586 }, { - "x": -0.9159186539849203, - "y": -0.40136394865813696 + "x": -0.91592, + "y": -0.40136 }, { - "x": -0.2572822449146621, - "y": -0.9663363009075421 + "x": -0.25728, + "y": -0.96634 }, { - "x": 0.5951168619601224, - "y": -0.8036391731434803 + "x": 0.59512, + "y": -0.80364 }, { - "x": 0.9993593175425329, - "y": -0.03579042387179416 + "x": 0.99936, + "y": -0.03579 }, { "max": { @@ -13206,12 +13206,12 @@ } }, { - "x": 742.0963870858386, - "y": 292.07004796972427 + "x": 742.09639, + "y": 292.07005 }, { - "x": 672.2149358275129, - "y": 218.32171992462887 + "x": 672.21494, + "y": 218.32172 }, { "category": 1, @@ -13228,16 +13228,16 @@ "y": 0 }, { - "x": 708.737711804452, - "y": 254.09702112203524 + "x": 708.73771, + "y": 254.09702 }, { - "x": -0.11345770052096563, - "y": 0.02686308661329296 + "x": -0.11346, + "y": 0.02686 }, { - "x": 708.8629604346982, - "y": 251.31919437154042 + "x": 708.86296, + "y": 251.31919 }, { "endCol": 15, @@ -13260,8 +13260,8 @@ "yScale": 1 }, { - "x": -0.1252486302461625, - "y": 2.77782675049482 + "x": -0.12525, + "y": 2.77783 }, [ { @@ -13290,57 +13290,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 742.0963870858386, - "y": 268.7144651338642 + "x": 742.09639, + "y": 268.71447 }, { "body": null, "index": 1, "isInternal": false, - "x": 718.1075044421801, - "y": 289.2922212192295 + "x": 718.1075, + "y": 289.29222 }, { "body": null, "index": 2, "isInternal": false, - "x": 687.0635310989693, - "y": 283.36650167929054 + "x": 687.06353, + "y": 283.3665 }, { "body": null, "index": 3, "isInternal": false, - "x": 672.340184457759, - "y": 255.40053919482085 + "x": 672.34018, + "y": 255.40054 }, { "body": null, "index": 4, "isInternal": false, - "x": 685.0252664594707, - "y": 226.45298854524327 + "x": 685.02527, + "y": 226.45299 }, { "body": null, "index": 5, "isInternal": false, - "x": 715.565811700501, - "y": 218.32171992462887 + "x": 715.56581, + "y": 218.32172 }, { "body": null, "index": 6, "isInternal": false, - "x": 740.9652665297943, - "y": 237.13071326225003 + "x": 740.96527, + "y": 237.13071 }, { - "angle": -0.1598050908632879, - "anglePrev": -0.13862902627124346, - "angularSpeed": 0.02117606459204443, - "angularVelocity": -0.02117606459204443, - "area": 1408.6913580494604, + "angle": -0.15981, + "anglePrev": -0.13863, + "angularSpeed": 0.02118, + "angularVelocity": -0.02118, + "area": 1408.69136, "axes": { "#": 1499 }, @@ -13361,13 +13361,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1303.4279840613233, - "inverseInertia": 0.0007672077109194184, - "inverseMass": 0.7098787071318777, + "inertia": 1303.42798, + "inverseInertia": 0.00077, + "inverseMass": 0.70988, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4086913580494604, + "mass": 1.40869, "motion": 0, "parent": null, "position": { @@ -13389,7 +13389,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.104484356945139, + "speed": 2.10448, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13428,36 +13428,36 @@ } ], { - "x": 0.9984876837567279, - "y": 0.05497586184976669 + "x": 0.99849, + "y": 0.05498 }, { - "x": 0.8848515978724292, - "y": 0.46587299743879684 + "x": 0.88485, + "y": 0.46587 }, { - "x": 0.6103940738132589, - "y": 0.7920978946150872 + "x": 0.61039, + "y": 0.7921 }, { - "x": 0.17988140069150602, - "y": 0.9836883051481612 + "x": 0.17988, + "y": 0.98369 }, { - "x": -0.0549758618497668, - "y": 0.9984876837567281 + "x": -0.05498, + "y": 0.99849 }, { - "x": -0.46587299743879607, - "y": 0.8848515978724294 + "x": -0.46587, + "y": 0.88485 }, { - "x": -0.792097894615087, - "y": 0.6103940738132589 + "x": -0.7921, + "y": 0.61039 }, { - "x": -0.9846222308951885, - "y": 0.17469705901068297 + "x": -0.98462, + "y": 0.1747 }, { "max": { @@ -13468,12 +13468,12 @@ } }, { - "x": 779.1299780678748, - "y": 257.83199839149813 + "x": 779.12998, + "y": 257.832 }, { - "x": 739.8633492836481, - "y": 211.5212440420677 + "x": 739.86335, + "y": 211.52124 }, { "category": 1, @@ -13490,16 +13490,16 @@ "y": 0 }, { - "x": 759.6102504310804, - "y": 233.63052769745838 + "x": 759.61025, + "y": 233.63053 }, { - "x": -0.03870484708497135, - "y": -0.003488690602941154 + "x": -0.0387, + "y": -0.00349 }, { - "x": 759.8374239417184, - "y": 231.5383406588093 + "x": 759.83742, + "y": 231.53834 }, { "endCol": 16, @@ -13522,8 +13522,8 @@ "yScale": 1 }, { - "x": -0.22717351063792307, - "y": 2.092187038649087 + "x": -0.22717, + "y": 2.09219 }, [ { @@ -13579,120 +13579,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 740.090522794286, - "y": 225.525125605542 + "x": 740.09052, + "y": 225.52513 }, { "body": null, "index": 1, "isInternal": false, - "x": 740.3248964518287, - "y": 221.2683626812429 + "x": 740.3249, + "y": 221.26836 }, { "body": null, "index": 2, "isInternal": false, - "x": 742.3110109880326, - "y": 217.49605428264687 + "x": 742.31101, + "y": 217.49605 }, { "body": null, "index": 3, "isInternal": false, - "x": 745.6878908485097, - "y": 214.89381601282244 + "x": 745.68789, + "y": 214.89382 }, { "body": null, "index": 4, "isInternal": false, - "x": 764.1309293902849, - "y": 211.5212440420677 + "x": 764.13093, + "y": 211.52124 }, { "body": null, "index": 5, "isInternal": false, - "x": 768.387692314584, - "y": 211.75561769961047 + "x": 768.38769, + "y": 211.75562 }, { "body": null, "index": 6, "isInternal": false, - "x": 772.1600007131798, - "y": 213.74173223581414 + "x": 772.16, + "y": 213.74173 }, { "body": null, "index": 7, "isInternal": false, - "x": 774.7622389830044, - "y": 217.11861209629154 + "x": 774.76224, + "y": 217.11861 }, { "body": null, "index": 8, "isInternal": false, - "x": 779.1299780678748, - "y": 241.73592978937475 + "x": 779.12998, + "y": 241.73593 }, { "body": null, "index": 9, "isInternal": false, - "x": 778.8956044103321, - "y": 245.99269271367388 + "x": 778.8956, + "y": 245.99269 }, { "body": null, "index": 10, "isInternal": false, - "x": 776.9094898741282, - "y": 249.76500111226989 + "x": 776.90949, + "y": 249.765 }, { "body": null, "index": 11, "isInternal": false, - "x": 773.5326100136512, - "y": 252.3672393820943 + "x": 773.53261, + "y": 252.36724 }, { "body": null, "index": 12, "isInternal": false, - "x": 755.089571471876, - "y": 255.73981135284905 + "x": 755.08957, + "y": 255.73981 }, { "body": null, "index": 13, "isInternal": false, - "x": 750.8328085475769, - "y": 255.50543769530628 + "x": 750.83281, + "y": 255.50544 }, { "body": null, "index": 14, "isInternal": false, - "x": 747.0605001489811, - "y": 253.5193231591026 + "x": 747.0605, + "y": 253.51932 }, { "body": null, "index": 15, "isInternal": false, - "x": 744.4582618791565, - "y": 250.1424432986252 + "x": 744.45826, + "y": 250.14244 }, { - "angle": 0.15958110851025928, - "anglePrev": 0.1278940858220583, - "angularSpeed": 0.02820765513582343, - "angularVelocity": 0.032141550115294626, - "area": 968.997894652155, + "angle": 0.15958, + "anglePrev": 0.12789, + "angularSpeed": 0.02821, + "angularVelocity": 0.03214, + "area": 968.99789, "axes": { "#": 1539 }, @@ -13714,13 +13714,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 632.1170940384557, - "inverseInertia": 0.0015819853780748472, - "inverseMass": 1.0319939862810268, + "inertia": 632.11709, + "inverseInertia": 0.00158, + "inverseMass": 1.03199, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.968997894652155, + "mass": 0.969, "motion": 0, "parent": null, "position": { @@ -13742,7 +13742,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3564001776048507, + "speed": 1.3564, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13763,12 +13763,12 @@ } ], { - "x": -0.15890465154110506, - "y": 0.9872939338001625 + "x": -0.1589, + "y": 0.98729 }, { - "x": -0.9872939338001625, - "y": -0.15890465154110506 + "x": -0.98729, + "y": -0.1589 }, { "max": { @@ -13779,12 +13779,12 @@ } }, { - "x": 57.81203990518811, - "y": 318.0766574392771 + "x": 57.81204, + "y": 318.07666 }, { - "x": 19.89536356824131, - "y": 282.8038355835987 + "x": 19.89536, + "y": 282.80384 }, { "category": 1, @@ -13801,16 +13801,16 @@ "y": 0 }, { - "x": 38.68231710352391, - "y": 299.7840585292577 + "x": 38.68232, + "y": 299.78406 }, { "x": 0, "y": 0 }, { - "x": 38.27085003192457, - "y": 298.6494665694403 + "x": 38.27085, + "y": 298.64947 }, { "endCol": 1, @@ -13833,8 +13833,8 @@ "yScale": 1 }, { - "x": 0.39976852292547704, - "y": 1.1494785380115786 + "x": 0.39977, + "y": 1.14948 }, [ { @@ -13854,36 +13854,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 24.507416452353315, - "y": 282.8038355835987 + "x": 24.50742, + "y": 282.80384 }, { "body": null, "index": 1, "isInternal": false, - "x": 57.46927063880651, - "y": 288.1090357619148 + "x": 57.46927, + "y": 288.10904 }, { "body": null, "index": 2, "isInternal": false, - "x": 52.85721775469451, - "y": 316.76428147491674 + "x": 52.85722, + "y": 316.76428 }, { "body": null, "index": 3, "isInternal": false, - "x": 19.89536356824131, - "y": 311.45908129660063 + "x": 19.89536, + "y": 311.45908 }, { - "angle": 0.06584903828031399, - "anglePrev": 0.049617786304257214, - "angularSpeed": 0.014360769130394729, - "angularVelocity": 0.016151287105841558, - "area": 2799.2142076873033, + "angle": 0.06585, + "anglePrev": 0.04962, + "angularSpeed": 0.01436, + "angularVelocity": 0.01615, + "area": 2799.21421, "axes": { "#": 1561 }, @@ -13904,13 +13904,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 5133.714051104223, - "inverseInertia": 0.00019479074799363, - "inverseMass": 0.3572431138902353, + "inertia": 5133.71405, + "inverseInertia": 0.00019, + "inverseMass": 0.35724, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.7992142076873034, + "mass": 2.79921, "motion": 0, "parent": null, "position": { @@ -13932,7 +13932,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1458048272425603, + "speed": 2.1458, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13971,36 +13971,36 @@ } ], { - "x": -0.9608734654251465, - "y": -0.2769876954701593 + "x": -0.96087, + "y": -0.27699 }, { - "x": -0.758182535888392, - "y": -0.6520423623307364 + "x": -0.75818, + "y": -0.65204 }, { - "x": -0.4176922215578239, - "y": -0.9085885801891248 + "x": -0.41769, + "y": -0.90859 }, { - "x": 0.055099333085811567, - "y": -0.9984808778807428 + "x": 0.0551, + "y": -0.99848 }, { - "x": 0.2769876954701593, - "y": -0.9608734654251465 + "x": 0.27699, + "y": -0.96087 }, { - "x": 0.6520423623307364, - "y": -0.758182535888392 + "x": 0.65204, + "y": -0.75818 }, { - "x": 0.9085885801891248, - "y": -0.4176922215578239 + "x": 0.90859, + "y": -0.41769 }, { - "x": 0.9984808778807428, - "y": 0.055099333085811567 + "x": 0.99848, + "y": 0.0551 }, { "max": { @@ -14011,12 +14011,12 @@ } }, { - "x": 108.41174412248068, - "y": 350.5704023855875 + "x": 108.41174, + "y": 350.5704 }, { - "x": 52.58477080696941, - "y": 292.68315986598117 + "x": 52.58477, + "y": 292.68316 }, { "category": 1, @@ -14033,16 +14033,16 @@ "y": 0 }, { - "x": 80.45630998139087, - "y": 320.5546990404027 + "x": 80.45631, + "y": 320.5547 }, { - "x": 0.20069271675651415, - "y": 0.42449363256991424 + "x": 0.20069, + "y": 0.42449 }, { - "x": 80.37202729012043, - "y": 318.4949573985993 + "x": 80.37203, + "y": 318.49496 }, { "endCol": 2, @@ -14065,8 +14065,8 @@ "yScale": 1 }, { - "x": 0.0770541193914056, - "y": 2.0591503516468492 + "x": 0.07705, + "y": 2.05915 }, [ { @@ -14122,120 +14122,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 106.29874166229851, - "y": 339.3168312970951 + "x": 106.29874, + "y": 339.31683 }, { "body": null, "index": 1, "isInternal": false, - "x": 105.11788488084254, - "y": 343.4132369003927 + "x": 105.11788, + "y": 343.41324 }, { "body": null, "index": 2, "isInternal": false, - "x": 102.33809120066522, - "y": 346.6455284560359 + "x": 102.33809, + "y": 346.64553 }, { "body": null, "index": 3, "isInternal": false, - "x": 98.46458705583798, - "y": 348.4262382148242 + "x": 98.46459, + "y": 348.42624 }, { "body": null, "index": 4, "isInternal": false, - "x": 61.694177724698406, - "y": 346.39713072131036 + "x": 61.69418, + "y": 346.39713 }, { "body": null, "index": 5, "isInternal": false, - "x": 57.59777212140097, - "y": 345.2162739398542 + "x": 57.59777, + "y": 345.21627 }, { "body": null, "index": 6, "isInternal": false, - "x": 54.36548056575763, - "y": 342.43648025967696 + "x": 54.36548, + "y": 342.43648 }, { "body": null, "index": 7, "isInternal": false, - "x": 52.58477080696941, - "y": 338.56297611484973 + "x": 52.58477, + "y": 338.56298 }, { "body": null, "index": 8, "isInternal": false, - "x": 54.61387830048324, - "y": 301.79256678371024 + "x": 54.61388, + "y": 301.79257 }, { "body": null, "index": 9, "isInternal": false, - "x": 55.79473508193922, - "y": 297.6961611804127 + "x": 55.79474, + "y": 297.69616 }, { "body": null, "index": 10, "isInternal": false, - "x": 58.574528762116564, - "y": 294.4638696247695 + "x": 58.57453, + "y": 294.46387 }, { "body": null, "index": 11, "isInternal": false, - "x": 62.44803290694377, - "y": 292.68315986598117 + "x": 62.44803, + "y": 292.68316 }, { "body": null, "index": 12, "isInternal": false, - "x": 99.21844223808334, - "y": 294.712267359495 + "x": 99.21844, + "y": 294.71227 }, { "body": null, "index": 13, "isInternal": false, - "x": 103.31484784138078, - "y": 295.89312414095116 + "x": 103.31485, + "y": 295.89312 }, { "body": null, "index": 14, "isInternal": false, - "x": 106.54713939702411, - "y": 298.6729178211284 + "x": 106.54714, + "y": 298.67292 }, { "body": null, "index": 15, "isInternal": false, - "x": 108.32784915581234, - "y": 302.54642196595563 + "x": 108.32785, + "y": 302.54642 }, { - "angle": 0.018262964042722426, - "anglePrev": 0.013774286434892894, - "angularSpeed": 0.004821041429342834, - "angularVelocity": 0.004395686964636035, - "area": 1295.0356940051904, + "angle": 0.01826, + "anglePrev": 0.01377, + "angularSpeed": 0.00482, + "angularVelocity": 0.0044, + "area": 1295.03569, "axes": { "#": 1601 }, @@ -14257,13 +14257,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1143.53929922107, - "inverseInertia": 0.0008744780355875458, - "inverseMass": 0.7721794886651149, + "inertia": 1143.5393, + "inverseInertia": 0.00087, + "inverseMass": 0.77218, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2950356940051904, + "mass": 1.29504, "motion": 0, "parent": null, "position": { @@ -14285,7 +14285,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6572929034466486, + "speed": 2.65729, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14306,12 +14306,12 @@ } ], { - "x": -0.01826194883409662, - "y": 0.9998332367073925 + "x": -0.01826, + "y": 0.99983 }, { - "x": -0.9998332367073925, - "y": -0.01826194883409662 + "x": -0.99983, + "y": -0.01826 }, { "max": { @@ -14322,12 +14322,12 @@ } }, { - "x": 148.23141130866634, - "y": 328.9084592695698 + "x": 148.23141, + "y": 328.90846 }, { - "x": 107.30358789184996, - "y": 293.1930693650876 + "x": 107.30359, + "y": 293.19307 }, { "category": 1, @@ -14344,16 +14344,16 @@ "y": 0 }, { - "x": 127.61107766739481, - "y": 309.73135779445704 + "x": 127.61108, + "y": 309.73136 }, { - "x": 0.38935150307684013, - "y": 0.00474301962691054 + "x": 0.38935, + "y": 0.00474 }, { - "x": 127.25048448688213, - "y": 307.1307914150367 + "x": 127.25048, + "y": 307.13079 }, { "endCol": 3, @@ -14376,8 +14376,8 @@ "yScale": 1 }, { - "x": 0.34499728638775196, - "y": 2.5980424582725163 + "x": 0.345, + "y": 2.59804 }, [ { @@ -14397,36 +14397,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 107.89437892412828, - "y": 293.1930693650876 + "x": 107.89438, + "y": 293.19307 }, { "body": null, "index": 1, "isInternal": false, - "x": 147.91856744293958, - "y": 293.9241109588476 + "x": 147.91857, + "y": 293.92411 }, { "body": null, "index": 2, "isInternal": false, - "x": 147.32777641066127, - "y": 326.2696462238265 + "x": 147.32778, + "y": 326.26965 }, { "body": null, "index": 3, "isInternal": false, - "x": 107.30358789184996, - "y": 325.53860463006646 + "x": 107.30359, + "y": 325.5386 }, { - "angle": 0.012554820909040696, - "anglePrev": 0.007889579403913573, - "angularSpeed": 0.0037540500397460776, - "angularVelocity": 0.004687790887060311, - "area": 4450.490944, + "angle": 0.01255, + "anglePrev": 0.00789, + "angularSpeed": 0.00375, + "angularVelocity": 0.00469, + "area": 4450.49094, "axes": { "#": 1623 }, @@ -14448,13 +14448,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 13204.579761750676, - "inverseInertia": 0.00007573130065802405, - "inverseMass": 0.22469431183725153, + "inertia": 13204.57976, + "inverseInertia": 0.00008, + "inverseMass": 0.22469, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.450490944, + "mass": 4.45049, "motion": 0, "parent": null, "position": { @@ -14476,7 +14476,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8754992242982174, + "speed": 2.8755, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14497,12 +14497,12 @@ } ], { - "x": 0.01255449108911244, - "y": -0.9999211892711815 + "x": 0.01255, + "y": -0.99992 }, { - "x": 0.9999211892711815, - "y": 0.01255449108911244 + "x": 0.99992, + "y": 0.01255 }, { "max": { @@ -14513,12 +14513,12 @@ } }, { - "x": 214.32842747051575, - "y": 364.37428428410885 + "x": 214.32843, + "y": 364.37428 }, { - "x": 146.538242097706, - "y": 293.96504157389035 + "x": 146.53824, + "y": 293.96504 }, { "category": 1, @@ -14535,16 +14535,16 @@ "y": 0 }, { - "x": 180.31038089180393, - "y": 327.73718036798823 + "x": 180.31038, + "y": 327.73718 }, { - "x": 0.5389176497888702, - "y": 0.012019246696652126 + "x": 0.53892, + "y": 0.01202 }, { - "x": 180.028561339142, - "y": 324.8915578479201 + "x": 180.02856, + "y": 324.89156 }, { "endCol": 4, @@ -14567,8 +14567,8 @@ "yScale": 1 }, { - "x": 0.28635775750851167, - "y": 2.84635694870002 + "x": 0.28636, + "y": 2.84636 }, [ { @@ -14588,36 +14588,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 213.244984476365, - "y": 361.50931916208623 + "x": 213.24498, + "y": 361.50932 }, { "body": null, "index": 1, "isInternal": false, - "x": 146.538242097706, - "y": 360.6717839525494 + "x": 146.53824, + "y": 360.67178 }, { "body": null, "index": 2, "isInternal": false, - "x": 147.37577730724286, - "y": 293.96504157389035 + "x": 147.37578, + "y": 293.96504 }, { "body": null, "index": 3, "isInternal": false, - "x": 214.08251968590187, - "y": 294.80257678342707 + "x": 214.08252, + "y": 294.80258 }, { - "angle": 0.0017050151689293846, - "anglePrev": 0.0010955468913743075, - "angularSpeed": 0.0005434010949488425, - "angularVelocity": 0.000622058310605177, - "area": 5038.307216146175, + "angle": 0.00171, + "anglePrev": 0.0011, + "angularSpeed": 0.00054, + "angularVelocity": 0.00062, + "area": 5038.30722, "axes": { "#": 1645 }, @@ -14638,13 +14638,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 16255.679819965306, - "inverseInertia": 0.00006151695967656764, - "inverseMass": 0.1984793616386308, + "inertia": 16255.67982, + "inverseInertia": 0.00006, + "inverseMass": 0.19848, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.038307216146175, + "mass": 5.03831, "motion": 0, "parent": null, "position": { @@ -14666,7 +14666,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.018397044701351, + "speed": 3.0184, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14717,52 +14717,52 @@ } ], { - "x": -0.9895190316594443, - "y": -0.1444025137722861 + "x": -0.98952, + "y": -0.1444 }, { - "x": -0.9084157909848686, - "y": -0.4180678780883982 + "x": -0.90842, + "y": -0.41807 }, { - "x": -0.7533034913395033, - "y": -0.6576730570243203 + "x": -0.7533, + "y": -0.65767 }, { - "x": -0.502943802179659, - "y": -0.8643191145919824 + "x": -0.50294, + "y": -0.86432 }, { - "x": -0.3697099735940579, - "y": -0.9291472086946617 + "x": -0.36971, + "y": -0.92915 }, { - "x": -0.0921476817101254, - "y": -0.9957453513602005 + "x": -0.09215, + "y": -0.99575 }, { - "x": 0.19292244744964482, - "y": -0.98121400788515 + "x": 0.19292, + "y": -0.98121 }, { - "x": 0.49707784688045903, - "y": -0.86770594912141 + "x": 0.49708, + "y": -0.86771 }, { - "x": 0.6198253606814561, - "y": -0.7847397799628252 + "x": 0.61983, + "y": -0.78474 }, { - "x": 0.8162723649303525, - "y": -0.5776672279530917 + "x": 0.81627, + "y": -0.57767 }, { - "x": 0.9462172781853646, - "y": -0.3235318569530379 + "x": 0.94622, + "y": -0.32353 }, { - "x": 0.9999942651700101, - "y": -0.0033866837896917917 + "x": 0.99999, + "y": -0.00339 }, { "max": { @@ -14773,12 +14773,12 @@ } }, { - "x": 290.1977988757861, - "y": 383.5302685885776 + "x": 290.1978, + "y": 383.53027 }, { - "x": 213.310815081518, - "y": 295.1039037139614 + "x": 213.31082, + "y": 295.1039 }, { "category": 1, @@ -14795,16 +14795,16 @@ "y": 0 }, { - "x": 251.62137164036267, - "y": 337.8137537277186 + "x": 251.62137, + "y": 337.81375 }, { - "x": 0.6359921413269229, - "y": 0.03234351978727584 + "x": 0.63599, + "y": 0.03234 }, { - "x": 251.30951192387036, - "y": 334.78658642656546 + "x": 251.30951, + "y": 334.78659 }, { "endCol": 6, @@ -14827,8 +14827,8 @@ "yScale": 1 }, { - "x": 0.3152180871426822, - "y": 3.0275771403657927 + "x": 0.31522, + "y": 3.02758 }, [ { @@ -14908,176 +14908,176 @@ "body": null, "index": 0, "isInternal": false, - "x": 289.9319281992074, - "y": 354.2401047505796 + "x": 289.93193, + "y": 354.2401 }, { "body": null, "index": 1, "isInternal": false, - "x": 289.5197596428209, - "y": 357.06449208388653 + "x": 289.51976, + "y": 357.06449 }, { "body": null, "index": 2, "isInternal": false, - "x": 288.32646716278106, - "y": 359.65738617823354 + "x": 288.32647, + "y": 359.65739 }, { "body": null, "index": 3, "isInternal": false, - "x": 286.44926885503185, - "y": 361.80754274016147 + "x": 286.44927, + "y": 361.80754 }, { "body": null, "index": 4, "isInternal": false, - "x": 256.550911604515, - "y": 379.20527607803785 + "x": 256.55091, + "y": 379.20528 }, { "body": null, "index": 5, "isInternal": false, - "x": 253.89875145395607, - "y": 380.260577164943 + "x": 253.89875, + "y": 380.26058 }, { "body": null, "index": 6, "isInternal": false, - "x": 251.05649339595476, - "y": 380.5236037414758 + "x": 251.05649, + "y": 380.5236 }, { "body": null, "index": 7, "isInternal": false, - "x": 248.25571364164733, - "y": 379.9729254178622 + "x": 248.25571, + "y": 379.97293 }, { "body": null, "index": 8, "isInternal": false, - "x": 218.24014461923267, - "y": 362.7780745151332 + "x": 218.24014, + "y": 362.77807 }, { "body": null, "index": 9, "isInternal": false, - "x": 216.0002593582567, - "y": 361.00890500796834 + "x": 216.00026, + "y": 361.00891 }, { "body": null, "index": 10, "isInternal": false, - "x": 214.35142194402215, - "y": 358.6790161889817 + "x": 214.35142, + "y": 358.67902 }, { "body": null, "index": 11, "isInternal": false, - "x": 213.4279639311257, - "y": 355.97822518895293 + "x": 213.42796, + "y": 355.97823 }, { "body": null, "index": 12, "isInternal": false, - "x": 213.310815081518, - "y": 321.38740270485766 + "x": 213.31082, + "y": 321.3874 }, { "body": null, "index": 13, "isInternal": false, - "x": 213.72298363790452, - "y": 318.5630153715507 + "x": 213.72298, + "y": 318.56302 }, { "body": null, "index": 14, "isInternal": false, - "x": 214.91627611794428, - "y": 315.9701212772037 + "x": 214.91628, + "y": 315.97012 }, { "body": null, "index": 15, "isInternal": false, - "x": 216.7934744256935, - "y": 313.81996471527566 + "x": 216.79347, + "y": 313.81996 }, { "body": null, "index": 16, "isInternal": false, - "x": 246.69183167621034, - "y": 296.4222313773994 + "x": 246.69183, + "y": 296.42223 }, { "body": null, "index": 17, "isInternal": false, - "x": 249.34399182676927, - "y": 295.3669302904942 + "x": 249.34399, + "y": 295.36693 }, { "body": null, "index": 18, "isInternal": false, - "x": 252.18624988477058, - "y": 295.1039037139614 + "x": 252.18625, + "y": 295.1039 }, { "body": null, "index": 19, "isInternal": false, - "x": 254.98702963907795, - "y": 295.65458203757504 + "x": 254.98703, + "y": 295.65458 }, { "body": null, "index": 20, "isInternal": false, - "x": 285.00259866149275, - "y": 312.84943294030404 + "x": 285.0026, + "y": 312.84943 }, { "body": null, "index": 21, "isInternal": false, - "x": 287.24248392246875, - "y": 314.6186024474689 + "x": 287.24248, + "y": 314.6186 }, { "body": null, "index": 22, "isInternal": false, - "x": 288.8913213367034, - "y": 316.94849126645556 + "x": 288.89132, + "y": 316.94849 }, { "body": null, "index": 23, "isInternal": false, - "x": 289.81477934959975, - "y": 319.6492822664843 + "x": 289.81478, + "y": 319.64928 }, { - "angle": -0.006106052329019446, - "anglePrev": -0.0036754909854364573, - "angularSpeed": 0.0020152426071325166, - "angularVelocity": -0.002441958259029212, - "area": 2586.1538465710973, + "angle": -0.00611, + "anglePrev": -0.00368, + "angularSpeed": 0.00202, + "angularVelocity": -0.00244, + "area": 2586.15385, "axes": { "#": 1697 }, @@ -15098,13 +15098,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 4301.698960136058, - "inverseInertia": 0.00023246629047430392, - "inverseMass": 0.38667459839091534, + "inertia": 4301.69896, + "inverseInertia": 0.00023, + "inverseMass": 0.38667, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.5861538465710976, + "mass": 2.58615, "motion": 0, "parent": null, "position": { @@ -15126,7 +15126,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.975681106945499, + "speed": 2.97568, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15201,84 +15201,84 @@ } ], { - "x": 0.9862964874568478, - "y": 0.164982540986264 + "x": 0.9863, + "y": 0.16498 }, { - "x": 0.8730211473842022, - "y": 0.48768235176185243 + "x": 0.87302, + "y": 0.48768 }, { - "x": 0.6576316049924753, - "y": 0.7533396791056615 + "x": 0.65763, + "y": 0.75334 }, { - "x": 0.3237153511217718, - "y": 0.9461545177443843 + "x": 0.32372, + "y": 0.94615 }, { - "x": 0.14787627226222946, - "y": 0.9890058685881631 + "x": 0.14788, + "y": 0.98901 }, { - "x": -0.19403868180650802, - "y": 0.9809938786571467 + "x": -0.19404, + "y": 0.98099 }, { - "x": -0.5132569258703563, - "y": 0.8582350074694646 + "x": -0.51326, + "y": 0.85824 }, { - "x": -0.7998267838387126, - "y": 0.6002308854551065 + "x": -0.79983, + "y": 0.60023 }, { - "x": -0.8949086706452952, - "y": 0.44624933748283674 + "x": -0.89491, + "y": 0.44625 }, { - "x": -0.9929418756842824, - "y": 0.11860198781040499 + "x": -0.99294, + "y": 0.1186 }, { - "x": -0.9748373271624359, - "y": -0.22291744115433929 + "x": -0.97484, + "y": -0.22292 }, { - "x": -0.818032099610239, - "y": -0.5751725688932534 + "x": -0.81803, + "y": -0.57517 }, { - "x": -0.7009621007660554, - "y": -0.7131985230562656 + "x": -0.70096, + "y": -0.7132 }, { - "x": -0.4196390225073005, - "y": -0.9076910767376296 + "x": -0.41964, + "y": -0.90769 }, { - "x": -0.0892307561205365, - "y": -0.9960109799405615 + "x": -0.08923, + "y": -0.99601 }, { - "x": 0.2942580360657618, - "y": -0.9557260110568934 + "x": 0.29426, + "y": -0.95573 }, { - "x": 0.46169388796921235, - "y": -0.8870393192028594 + "x": 0.46169, + "y": -0.88704 }, { - "x": 0.7335947540493056, - "y": -0.6795871811852684 + "x": 0.73359, + "y": -0.67959 }, { - "x": 0.9196896309392628, - "y": -0.39264612915805297 + "x": 0.91969, + "y": -0.39265 }, { - "x": 0.9998800730557292, - "y": -0.015486752599230796 + "x": 0.99988, + "y": -0.01549 }, { "max": { @@ -15289,12 +15289,12 @@ } }, { - "x": 347.94146806082745, - "y": 357.9185961944406 + "x": 347.94147, + "y": 357.9186 }, { - "x": 289.5043488363375, - "y": 294.9245879974182 + "x": 289.50435, + "y": 294.92459 }, { "category": 1, @@ -15311,16 +15311,16 @@ "y": 0 }, { - "x": 320.5546266570209, - "y": 324.8844987290263 + "x": 320.55463, + "y": 324.8845 }, { - "x": 0.7052534099944348, - "y": 0.0121049196666078 + "x": 0.70525, + "y": 0.0121 }, { - "x": 320.23321720701045, - "y": 321.9100113010646 + "x": 320.23322, + "y": 321.91001 }, { "endCol": 7, @@ -15343,8 +15343,8 @@ "yScale": 1 }, { - "x": 0.31930915237632007, - "y": 2.9750490976442734 + "x": 0.31931, + "y": 2.97505 }, [ { @@ -15412,148 +15412,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 347.67165043354356, - "y": 337.1006356054259 + "x": 347.67165, + "y": 337.10064 }, { "body": null, "index": 1, "isInternal": false, - "x": 347.10740418438894, - "y": 340.4738052164346 + "x": 347.1074, + "y": 340.47381 }, { "body": null, "index": 2, "isInternal": false, - "x": 345.4395129268321, - "y": 343.45956907301854 + "x": 345.43951, + "y": 343.45957 }, { "body": null, "index": 3, "isInternal": false, - "x": 342.86306401451924, - "y": 345.70869291499764 + "x": 342.86306, + "y": 345.70869 }, { "body": null, "index": 4, "isInternal": false, - "x": 317.3156767020278, - "y": 354.4494232069406 + "x": 317.31568, + "y": 354.44942 }, { "body": null, "index": 5, "isInternal": false, - "x": 313.933189475736, - "y": 354.9551730896108 + "x": 313.93319, + "y": 354.95517 }, { "body": null, "index": 6, "isInternal": false, - "x": 310.5781039610616, - "y": 354.2915436982566 + "x": 310.5781, + "y": 354.29154 }, { "body": null, "index": 7, "isInternal": false, - "x": 307.6428646039221, - "y": 352.53615978123236 + "x": 307.64286, + "y": 352.53616 }, { "body": null, "index": 8, "isInternal": false, - "x": 291.4361345472094, - "y": 330.94017548266663 + "x": 291.43613, + "y": 330.94018 }, { "body": null, "index": 9, "isInternal": false, - "x": 289.9099664122795, - "y": 327.87959705242116 + "x": 289.90997, + "y": 327.8796 }, { "body": null, "index": 10, "isInternal": false, - "x": 289.5043488363375, - "y": 324.48374607132007 + "x": 289.50435, + "y": 324.48375 }, { "body": null, "index": 11, "isInternal": false, - "x": 290.2667241875903, - "y": 321.14981245956955 + "x": 290.26672, + "y": 321.14981 }, { "body": null, "index": 12, "isInternal": false, - "x": 305.796823790038, - "y": 299.06231964086356 + "x": 305.79682, + "y": 299.06232 }, { "body": null, "index": 13, "isInternal": false, - "x": 308.2360255892059, - "y": 296.6649674842576 + "x": 308.23603, + "y": 296.66497 }, { "body": null, "index": 14, "isInternal": false, - "x": 311.3404090615375, - "y": 295.2297650467728 + "x": 311.34041, + "y": 295.22977 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.74685438597703, - "y": 294.9245879974182 + "x": 314.74685, + "y": 294.92459 }, { "body": null, "index": 16, "isInternal": false, - "x": 340.55271520987725, - "y": 302.86994245798144 + "x": 340.55272, + "y": 302.86994 }, { "body": null, "index": 17, "isInternal": false, - "x": 343.5864217204013, - "y": 304.4489522306938 + "x": 343.58642, + "y": 304.44895 }, { "body": null, "index": 18, "isInternal": false, - "x": 345.9106344259703, - "y": 306.9578727861499 + "x": 345.91063, + "y": 306.95787 }, { "body": null, "index": 19, "isInternal": false, - "x": 347.25349836962187, - "y": 310.10324454210445 + "x": 347.2535, + "y": 310.10324 }, { - "angle": -0.004298329655376176, - "anglePrev": -0.0034101029622488647, - "angularSpeed": 0.0008463519012864666, - "angularVelocity": -0.0008736788442288246, - "area": 1290.9794889800137, + "angle": -0.0043, + "anglePrev": -0.00341, + "angularSpeed": 0.00085, + "angularVelocity": -0.00087, + "area": 1290.97949, "axes": { "#": 1753 }, @@ -15575,13 +15575,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1336.116554880955, - "inverseInertia": 0.0007484376990517102, - "inverseMass": 0.7746056451989699, + "inertia": 1336.11655, + "inverseInertia": 0.00075, + "inverseMass": 0.77461, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2909794889800137, + "mass": 1.29098, "motion": 0, "parent": null, "position": { @@ -15603,7 +15603,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8978152698733095, + "speed": 2.89782, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15624,12 +15624,12 @@ } ], { - "x": 0.004298316419658076, - "y": 0.99999076219531 + "x": 0.0043, + "y": 0.99999 }, { - "x": -0.99999076219531, - "y": 0.004298316419658076 + "x": -0.99999, + "y": 0.0043 }, { "max": { @@ -15640,12 +15640,12 @@ } }, { - "x": 396.58423386837484, - "y": 323.52159986042574 + "x": 396.58423, + "y": 323.5216 }, { - "x": 347.0885100576343, - "y": 294.1513299832084 + "x": 347.08851, + "y": 294.15133 }, { "category": 1, @@ -15662,16 +15662,16 @@ "y": 0 }, { - "x": 371.7144683247781, - "y": 307.39269456695973 + "x": 371.71447, + "y": 307.39269 }, { - "x": 0.7456585240052256, - "y": -0.01158910526608559 + "x": 0.74566, + "y": -0.01159 }, { - "x": 371.4235101093062, - "y": 304.506474971602 + "x": 371.42351, + "y": 304.50647 }, { "endCol": 8, @@ -15694,8 +15694,8 @@ "yScale": 1 }, { - "x": 0.2915809216931393, - "y": 2.886982577417257 + "x": 0.29158, + "y": 2.88698 }, [ { @@ -15715,36 +15715,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 347.0885100576343, - "y": 294.36254687148715 + "x": 347.08851, + "y": 294.36255 }, { "body": null, "index": 1, "isInternal": false, - "x": 396.22750227615006, - "y": 294.1513299832084 + "x": 396.2275, + "y": 294.15133 }, { "body": null, "index": 2, "isInternal": false, - "x": 396.3404265919219, - "y": 320.4228422624323 + "x": 396.34043, + "y": 320.42284 }, { "body": null, "index": 3, "isInternal": false, - "x": 347.2014343734062, - "y": 320.63405915071104 + "x": 347.20143, + "y": 320.63406 }, { - "angle": 0.00019263368985743352, - "anglePrev": 0.00033016259652100073, - "angularSpeed": 0.000058504179003173714, - "angularVelocity": -0.00013343110834199934, - "area": 3447.135803417324, + "angle": 0.00019, + "anglePrev": 0.00033, + "angularSpeed": 0.00006, + "angularVelocity": -0.00013, + "area": 3447.1358, "axes": { "#": 1775 }, @@ -15766,13 +15766,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 17066.17470089766, - "inverseInertia": 0.000058595439079116026, - "inverseMass": 0.29009591064229273, + "inertia": 17066.1747, + "inverseInertia": 0.00006, + "inverseMass": 0.2901, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.447135803417324, + "mass": 3.44714, "motion": 0, "parent": null, "position": { @@ -15794,7 +15794,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8722568554236947, + "speed": 2.87226, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15815,12 +15815,12 @@ } ], { - "x": -0.0001926336886660668, - "y": 0.9999999814461309 + "x": -0.00019, + "y": 1 }, { - "x": -0.9999999814461309, - "y": -0.0001926336886660668 + "x": -1, + "y": -0.00019 }, { "max": { @@ -15831,12 +15831,12 @@ } }, { - "x": 514.789458520434, - "y": 316.1677911766381 + "x": 514.78946, + "y": 316.16779 }, { - "x": 396.2049321320729, - "y": 284.1533337393869 + "x": 396.20493, + "y": 284.15333 }, { "category": 1, @@ -15853,16 +15853,16 @@ "y": 0 }, { - "x": 455.3768896451177, - "y": 298.72948195574554 + "x": 455.37689, + "y": 298.72948 }, { - "x": 0.7626384435181044, - "y": -0.0017286239092136968 + "x": 0.76264, + "y": -0.00173 }, { - "x": 455.0836455524498, - "y": 295.873659760044 + "x": 455.08365, + "y": 295.87366 }, { "endCol": 10, @@ -15885,8 +15885,8 @@ "yScale": 1 }, { - "x": 0.2930108842870709, - "y": 2.855536452915203 + "x": 0.29301, + "y": 2.85554 }, [ { @@ -15906,36 +15906,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.21054345530507, - "y": 284.1533337393869 + "x": 396.21054, + "y": 284.15333 }, { "body": null, "index": 1, "isInternal": false, - "x": 514.5488471581626, - "y": 284.1761296837627 + "x": 514.54885, + "y": 284.17613 }, { "body": null, "index": 2, "isInternal": false, - "x": 514.5432358349302, - "y": 313.3056301721042 + "x": 514.54324, + "y": 313.30563 }, { "body": null, "index": 3, "isInternal": false, - "x": 396.2049321320729, - "y": 313.28283422772836 + "x": 396.20493, + "y": 313.28283 }, { - "angle": 0.000981710433697312, - "anglePrev": 0.0008412559032674705, - "angularSpeed": 0.00014045453042984152, - "angularVelocity": 0.00014045453042984152, - "area": 5745.916024000001, + "angle": 0.00098, + "anglePrev": 0.00084, + "angularSpeed": 0.00014, + "angularVelocity": 0.00014, + "area": 5745.91602, "axes": { "#": 1797 }, @@ -15943,7 +15943,7 @@ "#": 1811 }, "chamfer": "", - "circleRadius": 42.97560871056241, + "circleRadius": 42.97561, "collisionFilter": { "#": 1814 }, @@ -15958,13 +15958,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 21018.753567668347, - "inverseInertia": 0.00004757656046447154, - "inverseMass": 0.17403665417717906, + "inertia": 21018.75357, + "inverseInertia": 0.00005, + "inverseMass": 0.17404, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.745916024000001, + "mass": 5.74592, "motion": 0, "parent": null, "position": { @@ -15986,7 +15986,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.912869487508737, + "speed": 2.91287, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16040,56 +16040,56 @@ } ], { - "x": -0.9707136348231385, - "y": -0.24023954538845144 + "x": -0.97071, + "y": -0.24024 }, { - "x": -0.8849948644174698, - "y": -0.46560078388540627 + "x": -0.88499, + "y": -0.4656 }, { - "x": -0.7478752438928093, - "y": -0.6638393025215295 + "x": -0.74788, + "y": -0.66384 }, { - "x": -0.5672517732424524, - "y": -0.8235444285242259 + "x": -0.56725, + "y": -0.82354 }, { - "x": -0.3537041476191678, - "y": -0.9353573520088447 + "x": -0.3537, + "y": -0.93536 }, { - "x": -0.11957870792507132, - "y": -0.9928247240127385 + "x": -0.11958, + "y": -0.99282 }, { - "x": 0.12152780896423905, - "y": -0.9925880271534366 + "x": 0.12153, + "y": -0.99259 }, { - "x": 0.35553996481428707, - "y": -0.934661079439952 + "x": 0.35554, + "y": -0.93466 }, { - "x": 0.5688676431361979, - "y": -0.8224290878809354 + "x": 0.56887, + "y": -0.82243 }, { - "x": 0.7491771974574302, - "y": -0.662369630047929 + "x": 0.74918, + "y": -0.66237 }, { - "x": 0.8859073282885, - "y": -0.4638622701672686 + "x": 0.88591, + "y": -0.46386 }, { - "x": 0.971183454796298, - "y": -0.2383331641419772 + "x": 0.97118, + "y": -0.23833 }, { - "x": 0.9999995181223508, - "y": 0.0009817102760092014 + "x": 1, + "y": 0.00098 }, { "max": { @@ -16100,12 +16100,12 @@ } }, { - "x": 555.4581517313123, - "y": 420.3208383497759 + "x": 555.45815, + "y": 420.32084 }, { - "x": 470.10067536657687, - "y": 331.4561038463223 + "x": 470.10068, + "y": 331.4561 }, { "category": 1, @@ -16122,16 +16122,16 @@ "y": 0 }, { - "x": 512.7910870299469, - "y": 374.43208313714854 + "x": 512.79109, + "y": 374.43208 }, { - "x": -0.7544234401255503, - "y": 1.1785681167848747 + "x": -0.75442, + "y": 1.17857 }, { - "x": 512.8144339919513, - "y": 371.5193072153474 + "x": 512.81443, + "y": 371.51931 }, { "endCol": 11, @@ -16154,8 +16154,8 @@ "yScale": 1 }, { - "x": -0.023346962004422947, - "y": 2.9127759218011566 + "x": -0.02335, + "y": 2.91278 }, [ { @@ -16241,190 +16241,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 555.4479812128528, - "y": 379.6539623648174 + "x": 555.44798, + "y": 379.65396 }, { "body": null, "index": 1, "isInternal": false, - "x": 552.9591073837611, - "y": 389.71052385783594 + "x": 552.95911, + "y": 389.71052 }, { "body": null, "index": 2, "isInternal": false, - "x": 548.13510349393, - "y": 398.8797925021114 + "x": 548.1351, + "y": 398.87979 }, { "body": null, "index": 3, "isInternal": false, - "x": 541.2574936412392, - "y": 406.6280444155541 + "x": 541.25749, + "y": 406.62804 }, { "body": null, "index": 4, "isInternal": false, - "x": 532.7257203847535, - "y": 412.5046715178908 + "x": 532.72572, + "y": 412.50467 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.0351182491481, - "y": 416.16915992002856 + "x": 523.03512, + "y": 416.16916 }, { "body": null, "index": 6, "isInternal": false, - "x": 512.7488970491252, - "y": 417.40806242797476 + "x": 512.7489, + "y": 417.40806 }, { "body": null, "index": 7, "isInternal": false, - "x": 502.4651281613711, - "y": 416.14896613965124 + "x": 502.46513, + "y": 416.14897 }, { "body": null, "index": 8, "isInternal": false, - "x": 492.7817396328743, - "y": 412.46545808262596 + "x": 492.78174, + "y": 412.46546 }, { "body": null, "index": 9, "isInternal": false, - "x": 484.2615211063375, - "y": 406.5720908566626 + "x": 484.26152, + "y": 406.57209 }, { "body": null, "index": 10, "isInternal": false, - "x": 477.3991375800274, - "y": 398.81035024402763 + "x": 477.39914, + "y": 398.81035 }, { "body": null, "index": 11, "isInternal": false, - "x": 472.59314611034034, - "y": 389.6316277297941 + "x": 472.59315, + "y": 389.63163 }, { "body": null, "index": 12, "isInternal": false, - "x": 470.1240223285813, - "y": 379.57019891722723 + "x": 470.12402, + "y": 379.5702 }, { "body": null, "index": 13, "isInternal": false, - "x": 470.1341928470408, - "y": 369.2102039094797 + "x": 470.13419, + "y": 369.2102 }, { "body": null, "index": 14, "isInternal": false, - "x": 472.6230666761325, - "y": 359.15364241646114 + "x": 472.62307, + "y": 359.15364 }, { "body": null, "index": 15, "isInternal": false, - "x": 477.4470705659638, - "y": 349.9843737721857 + "x": 477.44707, + "y": 349.98437 }, { "body": null, "index": 16, "isInternal": false, - "x": 484.3246804186548, - "y": 342.236121858743 + "x": 484.32468, + "y": 342.23612 }, { "body": null, "index": 17, "isInternal": false, - "x": 492.8564536751402, - "y": 336.35949475640626 + "x": 492.85645, + "y": 336.35949 }, { "body": null, "index": 18, "isInternal": false, - "x": 502.54705581074535, - "y": 332.6950063542685 + "x": 502.54706, + "y": 332.69501 }, { "body": null, "index": 19, "isInternal": false, - "x": 512.8332770107686, - "y": 331.4561038463223 + "x": 512.83328, + "y": 331.4561 }, { "body": null, "index": 20, "isInternal": false, - "x": 523.1170458985224, - "y": 332.71520013464584 + "x": 523.11705, + "y": 332.7152 }, { "body": null, "index": 21, "isInternal": false, - "x": 532.8004344270196, - "y": 336.3987081916711 + "x": 532.80043, + "y": 336.39871 }, { "body": null, "index": 22, "isInternal": false, - "x": 541.3206529535564, - "y": 342.29207541763446 + "x": 541.32065, + "y": 342.29208 }, { "body": null, "index": 23, "isInternal": false, - "x": 548.1830364798665, - "y": 350.05381603026945 + "x": 548.18304, + "y": 350.05382 }, { "body": null, "index": 24, "isInternal": false, - "x": 552.9890279495534, - "y": 359.232538544503 + "x": 552.98903, + "y": 359.23254 }, { "body": null, "index": 25, "isInternal": false, - "x": 555.4581517313123, - "y": 369.29396735706985 + "x": 555.45815, + "y": 369.29397 }, { - "angle": -0.004711849320799181, - "anglePrev": -0.004134549973085742, - "angularSpeed": 0.0005772993477134395, - "angularVelocity": -0.0005772993477134395, - "area": 5746.742950000001, + "angle": -0.00471, + "anglePrev": -0.00413, + "angularSpeed": 0.00058, + "angularVelocity": -0.00058, + "area": 5746.74295, "axes": { "#": 1852 }, @@ -16432,7 +16432,7 @@ "#": 1866 }, "chamfer": "", - "circleRadius": 42.97860939643347, + "circleRadius": 42.97861, "collisionFilter": { "#": 1869 }, @@ -16447,13 +16447,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 21024.80384916412, - "inverseInertia": 0.000047562869417198245, - "inverseMass": 0.1740116112205784, + "inertia": 21024.80385, + "inverseInertia": 0.00005, + "inverseMass": 0.17401, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.746742950000001, + "mass": 5.74674, "motion": 0, "parent": null, "position": { @@ -16475,7 +16475,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8861060110217003, + "speed": 2.88611, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16529,56 +16529,56 @@ } ], { - "x": -0.9720711324095257, - "y": -0.23468641532066067 + "x": -0.97207, + "y": -0.23469 }, { - "x": -0.8876520871429369, - "y": -0.46051468184064226 + "x": -0.88765, + "y": -0.46051 }, { - "x": -0.7515950581374347, - "y": -0.6596247937906716 + "x": -0.7516, + "y": -0.65962 }, { - "x": -0.5719516356702181, - "y": -0.8202873438339527 + "x": -0.57195, + "y": -0.82029 }, { - "x": -0.35899195477389934, - "y": -0.9333406539991785 + "x": -0.35899, + "y": -0.93334 }, { - "x": -0.12522944611305925, - "y": -0.9921278072033947 + "x": -0.12523, + "y": -0.99213 }, { - "x": 0.11587451049774738, - "y": -0.9932638611249819 + "x": 0.11587, + "y": -0.99326 }, { - "x": 0.3501806236836797, - "y": -0.9366821930604367 + "x": 0.35018, + "y": -0.93668 }, { - "x": 0.5641962131478269, - "y": -0.8256407409216502 + "x": 0.5642, + "y": -0.82564 }, { - "x": 0.7453456720039914, - "y": -0.6666782051521697 + "x": 0.74535, + "y": -0.66668 }, { - "x": 0.8832729856271012, - "y": -0.46885907569480506 + "x": 0.88327, + "y": -0.46886 }, { - "x": 0.969816388488489, - "y": -0.24383636443144432 + "x": 0.96982, + "y": -0.24384 }, { - "x": 0.9999888992585266, - "y": -0.0047118318857792205 + "x": 0.99999, + "y": -0.00471 }, { "max": { @@ -16589,12 +16589,12 @@ } }, { - "x": 648.9381275309458, - "y": 431.24480946705233 + "x": 648.93813, + "y": 431.24481 }, { - "x": 563.5415945001993, - "y": 342.40171801365045 + "x": 563.54159, + "y": 342.40172 }, { "category": 1, @@ -16611,16 +16611,16 @@ "y": 0 }, { - "x": 606.2491938549125, - "y": 385.3802409148827 + "x": 606.24919, + "y": 385.38024 }, { - "x": -0.2611593994962574, - "y": 1.1706166550625097 + "x": -0.26116, + "y": 1.17062 }, { - "x": 606.2678595335924, - "y": 382.49419526394524 + "x": 606.26786, + "y": 382.4942 }, { "endCol": 13, @@ -16643,8 +16643,8 @@ "yScale": 1 }, { - "x": -0.01866567867989602, - "y": 2.886045650937457 + "x": -0.01867, + "y": 2.88605 }, [ { @@ -16730,190 +16730,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 648.9381275309458, - "y": 390.35915310563496 + "x": 648.93813, + "y": 390.35915 }, { "body": null, "index": 1, "isInternal": false, - "x": 646.506556078455, - "y": 400.4307220634208 + "x": 646.50656, + "y": 400.43072 }, { "body": null, "index": 2, "isInternal": false, - "x": 641.7348405860771, - "y": 409.6283076846478 + "x": 641.73484, + "y": 409.62831 }, { "body": null, "index": 3, "isInternal": false, - "x": 634.900457115546, - "y": 417.41559659528474 + "x": 634.90046, + "y": 417.4156 }, { "body": null, "index": 4, "isInternal": false, - "x": 626.401285614048, - "y": 423.3417090468105 + "x": 626.40129, + "y": 423.34171 }, { "body": null, "index": 5, "isInternal": false, - "x": 616.73070442838, - "y": 427.0613164899958 + "x": 616.7307, + "y": 427.06132 }, { "body": null, "index": 6, "isInternal": false, - "x": 606.4517036775316, - "y": 428.3587638161149 + "x": 606.4517, + "y": 428.35876 }, { "body": null, "index": 7, "isInternal": false, - "x": 596.1609327706321, - "y": 427.1582388718862 + "x": 596.16093, + "y": 427.15824 }, { "body": null, "index": 8, "isInternal": false, - "x": 586.4557290442671, - "y": 423.52992788331983 + "x": 586.45573, + "y": 423.52993 }, { "body": null, "index": 9, "isInternal": false, - "x": 577.90108985781, - "y": 417.6841710127743 + "x": 577.90109, + "y": 417.68417 }, { "body": null, "index": 10, "isInternal": false, - "x": 570.9936258747304, - "y": 409.9616320959115 + "x": 570.99363, + "y": 409.96163 }, { "body": null, "index": 11, "isInternal": false, - "x": 566.1354482672484, - "y": 400.80942141574457 + "x": 566.13545, + "y": 400.80942 }, { "body": null, "index": 12, "isInternal": false, - "x": 563.6090747572159, - "y": 390.76121372044867 + "x": 563.60907, + "y": 390.76121 }, { "body": null, "index": 13, "isInternal": false, - "x": 563.5602601788792, - "y": 380.4013287241304 + "x": 563.56026, + "y": 380.40133 }, { "body": null, "index": 14, "isInternal": false, - "x": 565.99183163137, - "y": 370.3297597663446 + "x": 565.99183, + "y": 370.32976 }, { "body": null, "index": 15, "isInternal": false, - "x": 570.7635471237479, - "y": 361.1321741451176 + "x": 570.76355, + "y": 361.13217 }, { "body": null, "index": 16, "isInternal": false, - "x": 577.597930594279, - "y": 353.3448852344806 + "x": 577.59793, + "y": 353.34489 }, { "body": null, "index": 17, "isInternal": false, - "x": 586.097102095777, - "y": 347.4187727829549 + "x": 586.0971, + "y": 347.41877 }, { "body": null, "index": 18, "isInternal": false, - "x": 595.767683281445, - "y": 343.69916533976965 + "x": 595.76768, + "y": 343.69917 }, { "body": null, "index": 19, "isInternal": false, - "x": 606.0466840322935, - "y": 342.40171801365045 + "x": 606.04668, + "y": 342.40172 }, { "body": null, "index": 20, "isInternal": false, - "x": 616.3374549391929, - "y": 343.6022429578791 + "x": 616.33745, + "y": 343.60224 }, { "body": null, "index": 21, "isInternal": false, - "x": 626.042658665558, - "y": 347.2305539464455 + "x": 626.04266, + "y": 347.23055 }, { "body": null, "index": 22, "isInternal": false, - "x": 634.597297852015, - "y": 353.07631081699105 + "x": 634.5973, + "y": 353.07631 }, { "body": null, "index": 23, "isInternal": false, - "x": 641.5047618350947, - "y": 360.79884973385384 + "x": 641.50476, + "y": 360.79885 }, { "body": null, "index": 24, "isInternal": false, - "x": 646.3629394425766, - "y": 369.9510604140208 + "x": 646.36294, + "y": 369.95106 }, { "body": null, "index": 25, "isInternal": false, - "x": 648.8893129526091, - "y": 379.9992681093167 + "x": 648.88931, + "y": 379.99927 }, { - "angle": -0.010089721503005324, - "anglePrev": -0.0087632861508566, - "angularSpeed": 0.001326435352148724, - "angularVelocity": -0.001326435352148724, - "area": 3203.0307430000003, + "angle": -0.01009, + "anglePrev": -0.00876, + "angularSpeed": 0.00133, + "angularVelocity": -0.00133, + "area": 3203.03074, "axes": { "#": 1907 }, @@ -16935,13 +16935,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 6642.19697105125, - "inverseInertia": 0.00015055259643131775, - "inverseMass": 0.3122043090549256, + "inertia": 6642.19697, + "inverseInertia": 0.00015, + "inverseMass": 0.3122, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.2030307430000002, + "mass": 3.20303, "motion": 0, "parent": null, "position": { @@ -16963,7 +16963,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8113555110147264, + "speed": 2.81136, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16993,24 +16993,24 @@ } ], { - "x": 0.3185885431485544, - "y": 0.9478931058798148 + "x": 0.31859, + "y": 0.94789 }, { - "x": -0.8030500190333638, - "y": 0.5959116267791005 + "x": -0.80305, + "y": 0.59591 }, { - "x": -0.8149108682127734, - "y": -0.5795862980339542 + "x": -0.81491, + "y": -0.57959 }, { - "x": 0.29939702239195654, - "y": -0.9541286197273562 + "x": 0.2994, + "y": -0.95413 }, { - "x": 0.999949099191817, - "y": -0.010089550310764783 + "x": 0.99995, + "y": -0.01009 }, { "max": { @@ -17021,12 +17021,12 @@ } }, { - "x": 689.2877681475969, - "y": 365.06579859122684 + "x": 689.28777, + "y": 365.0658 }, { - "x": 622.5644002898471, - "y": 292.4462315210224 + "x": 622.5644, + "y": 292.44623 }, { "category": 1, @@ -17043,16 +17043,16 @@ "y": 0 }, { - "x": 659.3779359551955, - "y": 327.2370157341429 + "x": 659.37794, + "y": 327.23702 }, { - "x": -0.5865870628561365, - "y": 1.3250539038435463 + "x": -0.58659, + "y": 1.32505 }, { - "x": 659.4900115155019, - "y": 324.4278950749161 + "x": 659.49001, + "y": 324.4279 }, { "endCol": 14, @@ -17075,8 +17075,8 @@ "yScale": 1 }, { - "x": -0.11207556030637875, - "y": 2.809120659226813 + "x": -0.11208, + "y": 2.80912 }, [ { @@ -17099,43 +17099,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 689.2877681475969, - "y": 348.51032180592296 + "x": 689.28777, + "y": 348.51032 }, { "body": null, "index": 1, "isInternal": false, - "x": 648.3883808874551, - "y": 362.256677932 + "x": 648.38838, + "y": 362.25668 }, { "body": null, "index": 2, "isInternal": false, - "x": 622.6764758501535, - "y": 327.6073358119425 + "x": 622.67648, + "y": 327.60734 }, { "body": null, "index": 3, "isInternal": false, - "x": 647.6839890220593, - "y": 292.4462315210224 + "x": 647.68399, + "y": 292.44623 }, { "body": null, "index": 4, "isInternal": false, - "x": 688.852424230788, - "y": 305.3645180739944 + "x": 688.85242, + "y": 305.36452 }, { - "angle": -0.06018949835712188, - "anglePrev": -0.05269740365034768, - "angularSpeed": 0.007492094706774199, - "angularVelocity": -0.007492094706774199, - "area": 5067.6702751239845, + "angle": -0.06019, + "anglePrev": -0.0527, + "angularSpeed": 0.00749, + "angularVelocity": -0.00749, + "area": 5067.67028, "axes": { "#": 1933 }, @@ -17156,13 +17156,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 16399.583595559714, - "inverseInertia": 0.00006097715799752111, - "inverseMass": 0.19732933393649693, + "inertia": 16399.5836, + "inverseInertia": 0.00006, + "inverseMass": 0.19733, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.067670275123985, + "mass": 5.06767, "motion": 0, "parent": null, "position": { @@ -17184,7 +17184,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.4114774921359547, + "speed": 2.41148, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17283,116 +17283,116 @@ } ], { - "x": 0.9980436439212638, - "y": 0.06252107507365287 + "x": 0.99804, + "y": 0.06252 }, { - "x": 0.9529221869246461, - "y": 0.3032149496095965 + "x": 0.95292, + "y": 0.30321 }, { - "x": 0.8506544751122969, - "y": 0.5257251791301449 + "x": 0.85065, + "y": 0.52573 }, { - "x": 0.6726256168717561, - "y": 0.7399829589442511 + "x": 0.67263, + "y": 0.73998 }, { - "x": 0.5733753916268138, - "y": 0.8192927805594269 + "x": 0.57338, + "y": 0.81929 }, { - "x": 0.357076022710128, - "y": 0.934075325659294 + "x": 0.35708, + "y": 0.93408 }, { - "x": 0.11936621491131011, - "y": 0.9928502942225212 + "x": 0.11937, + "y": 0.99285 }, { - "x": -0.15911321280475663, - "y": 0.9872603433294322 + "x": -0.15911, + "y": 0.98726 }, { - "x": -0.283022189667727, - "y": 0.9591133614728163 + "x": -0.28302, + "y": 0.95911 }, { - "x": -0.5076396451509602, - "y": 0.8615694926533827 + "x": -0.50764, + "y": 0.86157 }, { - "x": -0.7018150640372354, - "y": 0.712359190219661 + "x": -0.70182, + "y": 0.71236 }, { - "x": -0.8710862921270316, - "y": 0.4911299946738949 + "x": -0.87109, + "y": 0.49113 }, { - "x": -0.9263310867557532, - "y": 0.3767103897026274 + "x": -0.92633, + "y": 0.37671 }, { - "x": -0.990111698246409, - "y": 0.14028123536528977 + "x": -0.99011, + "y": 0.14028 }, { - "x": -0.9945185672519937, - "y": -0.10456012333122729 + "x": -0.99452, + "y": -0.10456 }, { - "x": -0.9270930005833019, - "y": -0.37483138645189484 + "x": -0.92709, + "y": -0.37483 }, { - "x": -0.8720789627358655, - "y": -0.48936518343006075 + "x": -0.87208, + "y": -0.48937 }, { - "x": -0.7269949830038762, - "y": -0.6866427707965718 + "x": -0.72699, + "y": -0.68664 }, { - "x": -0.5383147079671241, - "y": -0.8427438965583022 + "x": -0.53831, + "y": -0.84274 }, { - "x": -0.2849590334258692, - "y": -0.9585396962405858 + "x": -0.28496, + "y": -0.95854 }, { - "x": -0.16112549540627266, - "y": -0.9869339262230696 + "x": -0.16113, + "y": -0.98693 }, { - "x": 0.08355568569145093, - "y": -0.9965031095729867 + "x": 0.08356, + "y": -0.9965 }, { - "x": 0.32322683030401606, - "y": -0.9463215183919357 + "x": 0.32323, + "y": -0.94632 }, { - "x": 0.5717029859236538, - "y": -0.8204606607790396 + "x": 0.5717, + "y": -0.82046 }, { - "x": 0.671131692862604, - "y": -0.7413381487792027 + "x": 0.67113, + "y": -0.74134 }, { - "x": 0.831185795106448, - "y": -0.5559947607786085 + "x": 0.83119, + "y": -0.55599 }, { - "x": 0.941394111515813, - "y": -0.3373086521323659 + "x": 0.94139, + "y": -0.33731 }, { - "x": 0.9979150519485, - "y": -0.06454106518041425 + "x": 0.99792, + "y": -0.06454 }, { "max": { @@ -17403,12 +17403,12 @@ } }, { - "x": 776.7342850187239, - "y": 374.93456910874585 + "x": 776.73429, + "y": 374.93457 }, { - "x": 694.9015464826712, - "y": 290.06168157450946 + "x": 694.90155, + "y": 290.06168 }, { "category": 1, @@ -17425,16 +17425,16 @@ "y": 0 }, { - "x": 737.0476101666052, - "y": 331.71941861452285 + "x": 737.04761, + "y": 331.71942 }, { - "x": -0.2000294901522784, - "y": -0.001464698811098709 + "x": -0.20003, + "y": -0.00146 }, { - "x": 737.1555083565775, - "y": 329.31035620859 + "x": 737.15551, + "y": 329.31036 }, { "endCol": 16, @@ -17457,8 +17457,8 @@ "yScale": 1 }, { - "x": -0.1078981899722703, - "y": 2.4090624059328603 + "x": -0.1079, + "y": 2.40906 }, [ { @@ -17550,204 +17550,204 @@ "body": null, "index": 0, "isInternal": false, - "x": 776.7342850187239, - "y": 343.279865465175 + "x": 776.73429, + "y": 343.27987 }, { "body": null, "index": 1, "isInternal": false, - "x": 776.5811792322979, - "y": 345.7239414317165 + "x": 776.58118, + "y": 345.72394 }, { "body": null, "index": 2, "isInternal": false, - "x": 775.8386462022545, - "y": 348.05752095925686 + "x": 775.83865, + "y": 348.05752 }, { "body": null, "index": 3, "isInternal": false, - "x": 774.5512152535742, - "y": 350.1406604803749 + "x": 774.55122, + "y": 350.14066 }, { "body": null, "index": 4, "isInternal": false, - "x": 752.7528291943911, - "y": 369.9548368646332 + "x": 752.75283, + "y": 369.95484 }, { "body": null, "index": 5, "isInternal": false, - "x": 750.746641470976, - "y": 371.3588510325653 + "x": 750.74664, + "y": 371.35885 }, { "body": null, "index": 6, "isInternal": false, - "x": 748.4593877619866, - "y": 372.2332167661409 + "x": 748.45939, + "y": 372.23322 }, { "body": null, "index": 7, "isInternal": false, - "x": 746.0282128282859, - "y": 372.525506702813 + "x": 746.02821, + "y": 372.52551 }, { "body": null, "index": 8, "isInternal": false, - "x": 716.9461603830091, - "y": 367.8384564928154 + "x": 716.94616, + "y": 367.83846 }, { "body": null, "index": 9, "isInternal": false, - "x": 714.5974523824552, - "y": 367.1453825477439 + "x": 714.59745, + "y": 367.14538 }, { "body": null, "index": 10, "isInternal": false, - "x": 712.4876129810725, - "y": 365.90225807063985 + "x": 712.48761, + "y": 365.90226 }, { "body": null, "index": 11, "isInternal": false, - "x": 710.7431646222594, - "y": 364.18363051103404 + "x": 710.74316, + "y": 364.18363 }, { "body": null, "index": 12, "isInternal": false, - "x": 696.2754590106813, - "y": 338.5231736595993 + "x": 696.27546, + "y": 338.52317 }, { "body": null, "index": 13, "isInternal": false, - "x": 695.3529667854182, - "y": 336.2547646936921 + "x": 695.35297, + "y": 336.25476 }, { "body": null, "index": 14, "isInternal": false, - "x": 695.0094446726434, - "y": 333.83016911910374 + "x": 695.00944, + "y": 333.83017 }, { "body": null, "index": 15, "isInternal": false, - "x": 695.2654925637617, - "y": 331.3947819589723 + "x": 695.26549, + "y": 331.39478 }, { "body": null, "index": 16, "isInternal": false, - "x": 706.3072687975097, - "y": 304.08449303889427 + "x": 706.30727, + "y": 304.08449 }, { "body": null, "index": 17, "isInternal": false, - "x": 707.5056421782637, - "y": 301.94891770528926 + "x": 707.50564, + "y": 301.94892 }, { "body": null, "index": 18, "isInternal": false, - "x": 709.1871153326109, - "y": 300.1686287409882 + "x": 709.18712, + "y": 300.16863 }, { "body": null, "index": 19, "isInternal": false, - "x": 711.2508540018594, - "y": 298.85038617216765 + "x": 711.25085, + "y": 298.85039 }, { "body": null, "index": 20, "isInternal": false, - "x": 739.4869655333247, - "y": 290.4562267218406 + "x": 739.48697, + "y": 290.45623 }, { "body": null, "index": 21, "isInternal": false, - "x": 741.9036531614747, - "y": 290.06168157450946 + "x": 741.90365, + "y": 290.06168 }, { "body": null, "index": 22, "isInternal": false, - "x": 744.343772679439, - "y": 290.26628290242706 + "x": 744.34377, + "y": 290.26628 }, { "body": null, "index": 23, "isInternal": false, - "x": 746.6610134237123, - "y": 291.05776271797174 + "x": 746.66101, + "y": 291.05776 }, { "body": null, "index": 24, "isInternal": false, - "x": 770.8300107684245, - "y": 307.89889674093985 + "x": 770.83001, + "y": 307.8989 }, { "body": null, "index": 25, "isInternal": false, - "x": 772.6454491648784, - "y": 309.5424088768069 + "x": 772.64545, + "y": 309.54241 }, { "body": null, "index": 26, "isInternal": false, - "x": 774.0070062877744, - "y": 311.5778721933897 + "x": 774.00701, + "y": 311.57787 }, { "body": null, "index": 27, "isInternal": false, - "x": 774.8330302547664, - "y": 313.88322099953956 + "x": 774.83303, + "y": 313.88322 }, { - "angle": 0.017099771588343735, - "anglePrev": 0.01535272267454948, - "angularSpeed": 0.0016780367157996931, - "angularVelocity": 0.0017466536836349307, - "area": 4184.019856, + "angle": 0.0171, + "anglePrev": 0.01535, + "angularSpeed": 0.00168, + "angularVelocity": 0.00175, + "area": 4184.01986, "axes": { "#": 2005 }, @@ -17769,13 +17769,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 11670.68143693484, - "inverseInertia": 0.00008568479958978622, - "inverseMass": 0.23900460189403078, + "inertia": 11670.68144, + "inverseInertia": 0.00009, + "inverseMass": 0.239, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.184019856, + "mass": 4.18402, "motion": 0, "parent": null, "position": { @@ -17797,7 +17797,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7312002435428306, + "speed": 2.7312, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17818,12 +17818,12 @@ } ], { - "x": 0.017098938265421575, - "y": -0.9998538024682382 + "x": 0.0171, + "y": -0.99985 }, { - "x": 0.9998538024682382, - "y": 0.017098938265421575 + "x": 0.99985, + "y": 0.0171 }, { "max": { @@ -17834,12 +17834,12 @@ } }, { - "x": 897.5846757517255, - "y": 360.7586890056094 + "x": 897.58468, + "y": 360.75869 }, { - "x": 831.7793007093056, - "y": 292.2470303139274 + "x": 831.7793, + "y": 292.24703 }, { "category": 1, @@ -17856,16 +17856,16 @@ "y": 0 }, { - "x": 864.6695862501136, - "y": 325.13731585473533 + "x": 864.66959, + "y": 325.13732 }, { - "x": 0.04079737382511412, - "y": -0.00017533012787191495 + "x": 0.0408, + "y": -0.00018 }, { - "x": 864.6448842210569, - "y": 322.4002678251702 + "x": 864.64488, + "y": 322.40027 }, { "endCol": 18, @@ -17888,8 +17888,8 @@ "yScale": 1 }, { - "x": 0.02470261281587227, - "y": 2.7370138944757514 + "x": 0.0247, + "y": 2.73701 }, [ { @@ -17909,36 +17909,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 896.4538440681612, - "y": 358.0276013955433 + "x": 896.45384, + "y": 358.0276 }, { "body": null, "index": 1, "isInternal": false, - "x": 831.7793007093056, - "y": 356.92157367278276 + "x": 831.7793, + "y": 356.92157 }, { "body": null, "index": 2, "isInternal": false, - "x": 832.8853284320661, - "y": 292.2470303139274 + "x": 832.88533, + "y": 292.24703 }, { "body": null, "index": 3, "isInternal": false, - "x": 897.5598717909216, - "y": 293.3530580366879 + "x": 897.55987, + "y": 293.35306 }, { - "angle": 0.015638326813957878, - "anglePrev": 0.013913984131271427, - "angularSpeed": 0.0013605910014668108, - "angularVelocity": 0.0017222594910319255, - "area": 1443.6911839874222, + "angle": 0.01564, + "anglePrev": 0.01391, + "angularSpeed": 0.00136, + "angularVelocity": 0.00172, + "area": 1443.69118, "axes": { "#": 2027 }, @@ -17959,13 +17959,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1352.2644248067172, - "inverseInertia": 0.0007395003385842475, - "inverseMass": 0.6926689108386993, + "inertia": 1352.26442, + "inverseInertia": 0.00074, + "inverseMass": 0.69267, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4436911839874222, + "mass": 1.44369, "motion": 0, "parent": null, "position": { @@ -17987,7 +17987,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.845643655830218, + "speed": 2.84564, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18026,36 +18026,36 @@ } ], { - "x": -0.9735643895134513, - "y": -0.22841273929293343 + "x": -0.97356, + "y": -0.22841 }, { - "x": -0.7899527597464991, - "y": -0.6131677073761223 + "x": -0.78995, + "y": -0.61317 }, { - "x": -0.46276751919768805, - "y": -0.8864796800692152 + "x": -0.46277, + "y": -0.88648 }, { - "x": -0.002148251079612923, - "y": -0.9999976925059869 + "x": -0.00215, + "y": -1 }, { - "x": 0.22841273929293343, - "y": -0.9735643895134513 + "x": 0.22841, + "y": -0.97356 }, { - "x": 0.6131677073761223, - "y": -0.7899527597464991 + "x": 0.61317, + "y": -0.78995 }, { - "x": 0.8864796800692152, - "y": -0.46276751919768805 + "x": 0.88648, + "y": -0.46277 }, { - "x": 0.9999976925059869, - "y": -0.002148251079612923 + "x": 1, + "y": -0.00215 }, { "max": { @@ -18066,12 +18066,12 @@ } }, { - "x": 936.4891045793055, - "y": 335.8853247438556 + "x": 936.4891, + "y": 335.88532 }, { - "x": 897.3362785114474, - "y": 293.9344826466111 + "x": 897.33628, + "y": 293.93448 }, { "category": 1, @@ -18088,16 +18088,16 @@ "y": 0 }, { - "x": 916.8890737644316, - "y": 313.48727789959526 + "x": 916.88907, + "y": 313.48728 }, { - "x": 0.040105644362954586, - "y": 0.0002652020216612492 + "x": 0.04011, + "y": 0.00027 }, { - "x": 916.8415427900193, - "y": 310.6593004413266 + "x": 916.84154, + "y": 310.6593 }, { "endCol": 19, @@ -18120,8 +18120,8 @@ "yScale": 1 }, { - "x": 0.04752928259631517, - "y": 2.8280763865529366 + "x": 0.04753, + "y": 2.82808 }, [ { @@ -18177,120 +18177,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 936.4418690174158, - "y": 323.50126291031285 + "x": 936.44187, + "y": 323.50126 }, { "body": null, "index": 1, "isInternal": false, - "x": 935.4680974868534, - "y": 327.6517725912199 + "x": 935.4681, + "y": 327.65177 }, { "body": null, "index": 2, "isInternal": false, - "x": 932.8540346340037, - "y": 331.01950729074576 + "x": 932.85403, + "y": 331.01951 }, { "body": null, "index": 3, "isInternal": false, - "x": 929.0747853787044, - "y": 332.99238252029187 + "x": 929.07479, + "y": 332.99238 }, { "body": null, "index": 4, "isInternal": false, - "x": 906.8750887537137, - "y": 333.0400731525794 + "x": 906.87509, + "y": 333.04007 }, { "body": null, "index": 5, "isInternal": false, - "x": 902.7245790728069, - "y": 332.0663016220168 + "x": 902.72458, + "y": 332.0663 }, { "body": null, "index": 6, "isInternal": false, - "x": 899.3568443732813, - "y": 329.4522387691674 + "x": 899.35684, + "y": 329.45224 }, { "body": null, "index": 7, "isInternal": false, - "x": 897.383969143735, - "y": 325.67298951386795 + "x": 897.38397, + "y": 325.67299 }, { "body": null, "index": 8, "isInternal": false, - "x": 897.3362785114474, - "y": 303.47329288887767 + "x": 897.33628, + "y": 303.47329 }, { "body": null, "index": 9, "isInternal": false, - "x": 898.3100500420098, - "y": 299.3227832079706 + "x": 898.31005, + "y": 299.32278 }, { "body": null, "index": 10, "isInternal": false, - "x": 900.9241128948595, - "y": 295.95504850844475 + "x": 900.92411, + "y": 295.95505 }, { "body": null, "index": 11, "isInternal": false, - "x": 904.7033621501588, - "y": 293.98217327889864 + "x": 904.70336, + "y": 293.98217 }, { "body": null, "index": 12, "isInternal": false, - "x": 926.9030587751495, - "y": 293.9344826466111 + "x": 926.90306, + "y": 293.93448 }, { "body": null, "index": 13, "isInternal": false, - "x": 931.0535684560563, - "y": 294.9082541771737 + "x": 931.05357, + "y": 294.90825 }, { "body": null, "index": 14, "isInternal": false, - "x": 934.4213031555819, - "y": 297.5223170300231 + "x": 934.4213, + "y": 297.52232 }, { "body": null, "index": 15, "isInternal": false, - "x": 936.3941783851282, - "y": 301.30156628532256 + "x": 936.39418, + "y": 301.30157 }, { - "angle": 0.0035407352079389, - "anglePrev": 0.003121647238092832, - "angularSpeed": 0.00041908796984606826, - "angularVelocity": 0.00041908796984606826, - "area": 1357.5262341709852, + "angle": 0.00354, + "anglePrev": 0.00312, + "angularSpeed": 0.00042, + "angularVelocity": 0.00042, + "area": 1357.52623, "axes": { "#": 2067 }, @@ -18312,13 +18312,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 1286.9750720555298, - "inverseInertia": 0.0007770158270453683, - "inverseMass": 0.7366340147457117, + "inertia": 1286.97507, + "inverseInertia": 0.00078, + "inverseMass": 0.73663, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3575262341709853, + "mass": 1.35753, "motion": 0, "parent": null, "position": { @@ -18340,7 +18340,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.910796581230487, + "speed": 2.9108, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18361,12 +18361,12 @@ } ], { - "x": -0.003540727809691915, - "y": 0.9999937316036424 + "x": -0.00354, + "y": 0.99999 }, { - "x": -0.9999937316036424, - "y": -0.003540727809691915 + "x": -0.99999, + "y": -0.00354 }, { "max": { @@ -18377,12 +18377,12 @@ } }, { - "x": 979.3736445649986, - "y": 340.4274292084647 + "x": 979.37364, + "y": 340.42743 }, { - "x": 947.5791152838577, - "y": 294.4457912348574 + "x": 947.57912, + "y": 294.44579 }, { "category": 1, @@ -18399,16 +18399,16 @@ "y": 0 }, { - "x": 963.455128120871, - "y": 315.98136709930264 + "x": 963.45513, + "y": 315.98137 }, { - "x": 0.49058442415388015, + "x": 0.49058, "y": 0 }, { - "x": 963.4126245137567, - "y": 313.0708808545859 + "x": 963.41262, + "y": 313.07088 }, { "endCol": 20, @@ -18431,8 +18431,8 @@ "yScale": 1 }, { - "x": 0.04250360711434155, - "y": 2.9104862447167412 + "x": 0.0425, + "y": 2.91049 }, [ { @@ -18452,29 +18452,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 947.7312232991939, - "y": 294.4457912348574 + "x": 947.73122, + "y": 294.44579 }, { "body": null, "index": 1, "isInternal": false, - "x": 979.3311409578843, - "y": 294.5576786434501 + "x": 979.33114, + "y": 294.55768 }, { "body": null, "index": 2, "isInternal": false, - "x": 979.1790329425481, - "y": 337.5169429637479 + "x": 979.17903, + "y": 337.51694 }, { "body": null, "index": 3, "isInternal": false, - "x": 947.5791152838577, - "y": 337.4050555551552 + "x": 947.57912, + "y": 337.40506 }, [], [], diff --git a/test/browser/refs/mixedSolid/mixedSolid-0.json b/test/browser/refs/mixedSolid/mixedSolid-0.json index 65b8e4e9..9af0a77a 100644 --- a/test/browser/refs/mixedSolid/mixedSolid-0.json +++ b/test/browser/refs/mixedSolid/mixedSolid-0.json @@ -987,7 +987,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1534.906434764454, + "area": 1534.90643, "axes": { "#": 93 }, @@ -1008,13 +1008,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1070,12 +1070,12 @@ } }, { - "x": 86.40316358024691, - "y": 92.16409465020575 + "x": 86.40316, + "y": 92.16409 }, { "x": 50, - "y": 49.99999999999999 + "y": 50 }, { "category": 1, @@ -1092,16 +1092,16 @@ "y": 0 }, { - "x": 68.20158179012346, - "y": 71.08204732510288 + "x": 68.20158, + "y": 71.08205 }, { "x": 0, "y": 0 }, { - "x": 68.20158179012346, - "y": 71.08204732510288 + "x": 68.20158, + "y": 71.08205 }, { "fillStyle": "#C44D58", @@ -1139,35 +1139,35 @@ "index": 0, "isInternal": false, "x": 50, - "y": 49.99999999999999 + "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 86.40316358024691, - "y": 49.99999999999999 + "x": 86.40316, + "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 86.40316358024691, - "y": 92.16409465020575 + "x": 86.40316, + "y": 92.16409 }, { "body": null, "index": 3, "isInternal": false, "x": 50, - "y": 92.16409465020575 + "y": 92.16409 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.52878634164, + "area": 2220.52879, "axes": { "#": 114 }, @@ -1188,13 +1188,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1250,12 +1250,12 @@ } }, { - "x": 131.7190072016461, - "y": 99.00115740740739 + "x": 131.71901, + "y": 99.00116 }, { - "x": 86.40316358024691, - "y": 49.99999999999999 + "x": 86.40316, + "y": 50 }, { "category": 1, @@ -1272,16 +1272,16 @@ "y": 0 }, { - "x": 109.0610853909465, - "y": 74.5005787037037 + "x": 109.06109, + "y": 74.50058 }, { "x": 0, "y": 0 }, { - "x": 109.0610853909465, - "y": 74.5005787037037 + "x": 109.06109, + "y": 74.50058 }, { "fillStyle": "#C7F464", @@ -1318,36 +1318,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 86.40316358024691, - "y": 49.99999999999999 + "x": 86.40316, + "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 131.7190072016461, - "y": 49.99999999999999 + "x": 131.71901, + "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 131.7190072016461, - "y": 99.00115740740739 + "x": 131.71901, + "y": 99.00116 }, { "body": null, "index": 3, "isInternal": false, - "x": 86.40316358024691, - "y": 99.00115740740739 + "x": 86.40316, + "y": 99.00116 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1140.197701571206, + "area": 1140.1977, "axes": { "#": 135 }, @@ -1368,13 +1368,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1430,11 +1430,11 @@ } }, { - "x": 170.93981481481484, - "y": 79.07124485596708 + "x": 170.93981, + "y": 79.07124 }, { - "x": 131.7190072016461, + "x": 131.71901, "y": 50 }, { @@ -1452,16 +1452,16 @@ "y": 0 }, { - "x": 151.32941100823047, - "y": 64.53562242798354 + "x": 151.32941, + "y": 64.53562 }, { "x": 0, "y": 0 }, { - "x": 151.32941100823047, - "y": 64.53562242798354 + "x": 151.32941, + "y": 64.53562 }, { "fillStyle": "#C7F464", @@ -1498,36 +1498,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 131.7190072016461, + "x": 131.71901, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 170.93981481481484, + "x": 170.93981, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 170.93981481481484, - "y": 79.07124485596708 + "x": 170.93981, + "y": 79.07124 }, { "body": null, "index": 3, "isInternal": false, - "x": 131.7190072016461, - "y": 79.07124485596708 + "x": 131.71901, + "y": 79.07124 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 752.4076041785743, + "area": 752.4076, "axes": { "#": 156 }, @@ -1548,13 +1548,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1610,11 +1610,11 @@ } }, { - "x": 195.81712962962968, - "y": 80.24472736625515 + "x": 195.81713, + "y": 80.24473 }, { - "x": 170.93981481481484, + "x": 170.93981, "y": 50 }, { @@ -1632,16 +1632,16 @@ "y": 0 }, { - "x": 183.37847222222226, - "y": 65.12236368312757 + "x": 183.37847, + "y": 65.12236 }, { "x": 0, "y": 0 }, { - "x": 183.37847222222226, - "y": 65.12236368312757 + "x": 183.37847, + "y": 65.12236 }, { "fillStyle": "#C7F464", @@ -1678,36 +1678,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 170.93981481481484, + "x": 170.93981, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.81712962962968, + "x": 195.81713, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.81712962962968, - "y": 80.24472736625515 + "x": 195.81713, + "y": 80.24473 }, { "body": null, "index": 3, "isInternal": false, - "x": 170.93981481481484, - "y": 80.24472736625515 + "x": 170.93981, + "y": 80.24473 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2027.2541820000001, + "area": 2027.25418, "axes": { "#": 177 }, @@ -1728,13 +1728,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -1777,12 +1777,12 @@ } ], { - "x": -0.500008582084709, - "y": -0.8660204488588239 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.500008582084709, - "y": -0.8660204488588239 + "x": 0.50001, + "y": -0.86602 }, { "x": 1, @@ -1797,11 +1797,11 @@ } }, { - "x": 244.19912962962968, + "x": 244.19913, "y": 105.868 }, { - "x": 195.81712962962968, + "x": 195.81713, "y": 50 }, { @@ -1819,7 +1819,7 @@ "y": 0 }, { - "x": 220.00812962962968, + "x": 220.00813, "y": 77.934 }, { @@ -1827,7 +1827,7 @@ "y": 0 }, { - "x": 220.00812962962968, + "x": 220.00813, "y": 77.934 }, { @@ -1871,42 +1871,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 244.19912962962968, + "x": 244.19913, "y": 91.901 }, { "body": null, "index": 1, "isInternal": false, - "x": 220.00812962962968, + "x": 220.00813, "y": 105.868 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.81712962962968, + "x": 195.81713, "y": 91.901 }, { "body": null, "index": 3, "isInternal": false, - "x": 195.81712962962968, + "x": 195.81713, "y": 63.967 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.00812962962968, + "x": 220.00813, "y": 50 }, { "body": null, "index": 5, "isInternal": false, - "x": 244.19912962962968, + "x": 244.19913, "y": 63.967 }, { @@ -1935,13 +1935,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -1990,20 +1990,20 @@ } ], { - "x": 0.30902000749156683, - "y": 0.95105553726894 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090188345853124, - "y": 0.5877827194518592 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090188345853124, - "y": -0.5877827194518592 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902000749156683, - "y": -0.95105553726894 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -2018,11 +2018,11 @@ } }, { - "x": 321.5277437444547, + "x": 321.52774, "y": 135.84 }, { - "x": 239.8897437444547, + "x": 239.88974, "y": 50 }, { @@ -2040,7 +2040,7 @@ "y": 0 }, { - "x": 285.0181296296297, + "x": 285.01813, "y": 92.92 }, { @@ -2048,7 +2048,7 @@ "y": 0 }, { - "x": 285.0181296296297, + "x": 285.01813, "y": 92.92 }, { @@ -2089,35 +2089,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 321.5277437444547, + "x": 321.52774, "y": 119.446 }, { "body": null, "index": 1, "isInternal": false, - "x": 271.07274374445467, + "x": 271.07274, "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.8897437444547, + "x": 239.88974, "y": 92.92 }, { "body": null, "index": 3, "isInternal": false, - "x": 271.07274374445467, + "x": 271.07274, "y": 50 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.5277437444547, + "x": 321.52774, "y": 66.394 }, { @@ -2125,14 +2125,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3079.0178339999993, + "area": 3079.01783, "axes": { "#": 226 }, "bounds": { "#": 240 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 243 }, @@ -2147,13 +2147,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2226,52 +2226,52 @@ } ], { - "x": -0.9709437470087438, - "y": -0.23930783552700582 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.885418252251326, - "y": -0.46479513614086726 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.7485358222247293, - "y": -0.6630943544069339 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680780310049566, - "y": -0.8229746962632154 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545747323306568, - "y": -0.9350276783029703 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12051249760074473, - "y": -0.9927118101050428 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051249760074473, - "y": -0.9927118101050428 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545747323306568, - "y": -0.9350276783029703 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680780310049566, - "y": -0.8229746962632154 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485358222247293, - "y": -0.6630943544069339 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.885418252251326, - "y": -0.46479513614086726 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.9709437470087438, - "y": -0.23930783552700582 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -2286,11 +2286,11 @@ } }, { - "x": 383.98774374445475, + "x": 383.98774, "y": 112.918 }, { - "x": 321.5277437444547, + "x": 321.52774, "y": 50 }, { @@ -2308,7 +2308,7 @@ "y": 0 }, { - "x": 352.75774374445473, + "x": 352.75774, "y": 81.459 }, { @@ -2316,7 +2316,7 @@ "y": 0 }, { - "x": 352.75774374445473, + "x": 352.75774, "y": 81.459 }, { @@ -2420,182 +2420,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 383.98774374445475, + "x": 383.98774, "y": 85.251 }, { "body": null, "index": 1, "isInternal": false, - "x": 382.17274374445475, - "y": 92.61500000000001 + "x": 382.17274, + "y": 92.615 }, { "body": null, "index": 2, "isInternal": false, - "x": 378.6477437444547, + "x": 378.64774, "y": 99.33 }, { "body": null, "index": 3, "isInternal": false, - "x": 373.6187437444547, + "x": 373.61874, "y": 105.007 }, { "body": null, "index": 4, "isInternal": false, - "x": 367.37774374445473, + "x": 367.37774, "y": 109.315 }, { "body": null, "index": 5, "isInternal": false, - "x": 360.2867437444547, + "x": 360.28674, "y": 112.004 }, { "body": null, "index": 6, "isInternal": false, - "x": 352.75774374445473, + "x": 352.75774, "y": 112.918 }, { "body": null, "index": 7, "isInternal": false, - "x": 345.22874374445473, + "x": 345.22874, "y": 112.004 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.1377437444547, + "x": 338.13774, "y": 109.315 }, { "body": null, "index": 9, "isInternal": false, - "x": 331.89674374445474, + "x": 331.89674, "y": 105.007 }, { "body": null, "index": 10, "isInternal": false, - "x": 326.86774374445474, + "x": 326.86774, "y": 99.33 }, { "body": null, "index": 11, "isInternal": false, - "x": 323.3427437444547, - "y": 92.61500000000001 + "x": 323.34274, + "y": 92.615 }, { "body": null, "index": 12, "isInternal": false, - "x": 321.5277437444547, + "x": 321.52774, "y": 85.251 }, { "body": null, "index": 13, "isInternal": false, - "x": 321.5277437444547, + "x": 321.52774, "y": 77.667 }, { "body": null, "index": 14, "isInternal": false, - "x": 323.3427437444547, + "x": 323.34274, "y": 70.303 }, { "body": null, "index": 15, "isInternal": false, - "x": 326.86774374445474, - "y": 63.58800000000001 + "x": 326.86774, + "y": 63.588 }, { "body": null, "index": 16, "isInternal": false, - "x": 331.89674374445474, + "x": 331.89674, "y": 57.911 }, { "body": null, "index": 17, "isInternal": false, - "x": 338.1377437444547, + "x": 338.13774, "y": 53.603 }, { "body": null, "index": 18, "isInternal": false, - "x": 345.22874374445473, + "x": 345.22874, "y": 50.914 }, { "body": null, "index": 19, "isInternal": false, - "x": 352.75774374445473, + "x": 352.75774, "y": 50 }, { "body": null, "index": 20, "isInternal": false, - "x": 360.2867437444547, + "x": 360.28674, "y": 50.914 }, { "body": null, "index": 21, "isInternal": false, - "x": 367.37774374445473, + "x": 367.37774, "y": 53.603 }, { "body": null, "index": 22, "isInternal": false, - "x": 373.6187437444547, + "x": 373.61874, "y": 57.911 }, { "body": null, "index": 23, "isInternal": false, - "x": 378.6477437444547, - "y": 63.58800000000001 + "x": 378.64774, + "y": 63.588 }, { "body": null, "index": 24, "isInternal": false, - "x": 382.17274374445475, + "x": 382.17274, "y": 70.303 }, { "body": null, "index": 25, "isInternal": false, - "x": 383.98774374445475, + "x": 383.98774, "y": 77.667 }, { @@ -2603,7 +2603,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1329.4167625219097, + "area": 1329.41676, "axes": { "#": 280 }, @@ -2624,13 +2624,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2686,11 +2686,11 @@ } }, { - "x": 432.76539292140944, - "y": 77.25462962962963 + "x": 432.76539, + "y": 77.25463 }, { - "x": 383.98774374445475, + "x": 383.98774, "y": 50 }, { @@ -2708,16 +2708,16 @@ "y": 0 }, { - "x": 408.3765683329321, - "y": 63.62731481481482 + "x": 408.37657, + "y": 63.62731 }, { "x": 0, "y": 0 }, { - "x": 408.3765683329321, - "y": 63.62731481481482 + "x": 408.37657, + "y": 63.62731 }, { "fillStyle": "#4ECDC4", @@ -2754,36 +2754,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 383.98774374445475, + "x": 383.98774, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 432.76539292140944, + "x": 432.76539, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 432.76539292140944, - "y": 77.25462962962963 + "x": 432.76539, + "y": 77.25463 }, { "body": null, "index": 3, "isInternal": false, - "x": 383.98774374445475, - "y": 77.25462962962963 + "x": 383.98774, + "y": 77.25463 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2858.632357296012, + "area": 2858.63236, "axes": { "#": 301 }, @@ -2804,13 +2804,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -2866,11 +2866,11 @@ } }, { - "x": 541.6199882574863, - "y": 76.26101680384087 + "x": 541.61999, + "y": 76.26102 }, { - "x": 432.76539292140944, + "x": 432.76539, "y": 50 }, { @@ -2888,16 +2888,16 @@ "y": 0 }, { - "x": 487.19269058944786, - "y": 63.13050840192044 + "x": 487.19269, + "y": 63.13051 }, { "x": 0, "y": 0 }, { - "x": 487.19269058944786, - "y": 63.13050840192044 + "x": 487.19269, + "y": 63.13051 }, { "fillStyle": "#C7F464", @@ -2934,36 +2934,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 432.76539292140944, + "x": 432.76539, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 541.6199882574863, + "x": 541.61999, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 541.6199882574863, - "y": 76.26101680384087 + "x": 541.61999, + "y": 76.26102 }, { "body": null, "index": 3, "isInternal": false, - "x": 432.76539292140944, - "y": 76.26101680384087 + "x": 432.76539, + "y": 76.26102 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 926.8394636035856, + "area": 926.83946, "axes": { "#": 322 }, @@ -2984,13 +2984,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3046,11 +3046,11 @@ } }, { - "x": 580.3757752945232, - "y": 73.91486625514403 + "x": 580.37578, + "y": 73.91487 }, { - "x": 541.6199882574863, + "x": 541.61999, "y": 50 }, { @@ -3068,16 +3068,16 @@ "y": 0 }, { - "x": 560.9978817760048, - "y": 61.95743312757202 + "x": 560.99788, + "y": 61.95743 }, { "x": 0, "y": 0 }, { - "x": 560.9978817760048, - "y": 61.95743312757202 + "x": 560.99788, + "y": 61.95743 }, { "fillStyle": "#C44D58", @@ -3114,36 +3114,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 541.6199882574863, + "x": 541.61999, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.3757752945232, + "x": 580.37578, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 580.3757752945232, - "y": 73.91486625514403 + "x": 580.37578, + "y": 73.91487 }, { "body": null, "index": 3, "isInternal": false, - "x": 541.6199882574863, - "y": 73.91486625514403 + "x": 541.61999, + "y": 73.91487 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1290.4501361223834, + "area": 1290.45014, "axes": { "#": 343 }, @@ -3164,13 +3164,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3226,11 +3226,11 @@ } }, { - "x": 616.1460942245644, - "y": 86.07600308641975 + "x": 616.14609, + "y": 86.076 }, { - "x": 580.3757752945232, + "x": 580.37578, "y": 50 }, { @@ -3248,16 +3248,16 @@ "y": 0 }, { - "x": 598.2609347595438, - "y": 68.03800154320987 + "x": 598.26093, + "y": 68.038 }, { "x": 0, "y": 0 }, { - "x": 598.2609347595438, - "y": 68.03800154320987 + "x": 598.26093, + "y": 68.038 }, { "fillStyle": "#4ECDC4", @@ -3294,36 +3294,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 580.3757752945232, + "x": 580.37578, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.1460942245644, + "x": 616.14609, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.1460942245644, - "y": 86.07600308641975 + "x": 616.14609, + "y": 86.076 }, { "body": null, "index": 3, "isInternal": false, - "x": 580.3757752945232, - "y": 86.07600308641975 + "x": 580.37578, + "y": 86.076 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1148.2925932011974, + "area": 1148.29259, "axes": { "#": 364 }, @@ -3344,13 +3344,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3406,12 +3406,12 @@ } }, { - "x": 646.7010067760048, - "y": 87.58127572016463 + "x": 646.70101, + "y": 87.58128 }, { - "x": 616.1460942245644, - "y": 50.00000000000001 + "x": 616.14609, + "y": 50 }, { "category": 1, @@ -3428,16 +3428,16 @@ "y": 0 }, { - "x": 631.4235505002846, - "y": 68.79063786008231 + "x": 631.42355, + "y": 68.79064 }, { "x": 0, "y": 0 }, { - "x": 631.4235505002846, - "y": 68.79063786008231 + "x": 631.42355, + "y": 68.79064 }, { "fillStyle": "#C44D58", @@ -3474,36 +3474,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 616.1460942245644, - "y": 50.00000000000001 + "x": 616.14609, + "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 646.7010067760048, - "y": 50.00000000000001 + "x": 646.70101, + "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 646.7010067760048, - "y": 87.58127572016463 + "x": 646.70101, + "y": 87.58128 }, { "body": null, "index": 3, "isInternal": false, - "x": 616.1460942245644, - "y": 87.58127572016463 + "x": 616.14609, + "y": 87.58128 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1926.7878890000002, + "area": 1926.78789, "axes": { "#": 385 }, @@ -3524,13 +3524,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3585,28 +3585,28 @@ } ], { - "x": 0.6234921001781484, - "y": 0.7818296496139309 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22251820971292155, - "y": 0.9749285339685962 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009815501548849, - "y": 0.43385740316433524 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009815501548849, - "y": -0.43385740316433524 + "x": -0.90098, + "y": -0.43386 }, { - "x": -0.22251820971292155, - "y": -0.9749285339685962 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234921001781484, - "y": -0.7818296496139309 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -3621,11 +3621,11 @@ } }, { - "x": 99.1293088678909, + "x": 99.12931, "y": 187.58 }, { - "x": 48.6863088678909, + "x": 48.68631, "y": 135.84 }, { @@ -3643,7 +3643,7 @@ "y": 0 }, { - "x": 75.22149999999999, + "x": 75.2215, "y": 161.71 }, { @@ -3651,7 +3651,7 @@ "y": 0 }, { - "x": 75.22149999999999, + "x": 75.2215, "y": 161.71 }, { @@ -3698,49 +3698,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 99.1293088678909, + "x": 99.12931, "y": 173.223 }, { "body": null, "index": 1, "isInternal": false, - "x": 81.1263088678909, + "x": 81.12631, "y": 187.58 }, { "body": null, "index": 2, "isInternal": false, - "x": 58.676308867890896, - "y": 182.45600000000002 + "x": 58.67631, + "y": 182.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 48.6863088678909, + "x": 48.68631, "y": 161.71 }, { "body": null, "index": 4, "isInternal": false, - "x": 58.676308867890896, + "x": 58.67631, "y": 140.964 }, { "body": null, "index": 5, "isInternal": false, - "x": 81.1263088678909, + "x": 81.12631, "y": 135.84 }, { "body": null, "index": 6, "isInternal": false, - "x": 99.1293088678909, + "x": 99.12931, "y": 150.197 }, { @@ -3748,7 +3748,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1097.755875, + "area": 1097.75588, "axes": { "#": 414 }, @@ -3769,13 +3769,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 927.6617490689248, - "inverseInertia": 0.0010779791243992539, - "inverseMass": 0.9109493492804126, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "inverseMass": 0.91095, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.097755875, + "mass": 1.09776, "motion": 0, "parent": null, "position": { @@ -3818,12 +3818,12 @@ } ], { - "x": -0.49999466010690446, - "y": 0.8660284867512045 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999466010690446, - "y": -0.8660284867512045 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -3838,12 +3838,12 @@ } }, { - "x": 135.4668088678909, - "y": 186.19000000000003 + "x": 135.46681, + "y": 186.19 }, { - "x": 91.8618088678909, - "y": 135.84000000000003 + "x": 91.86181, + "y": 135.84 }, { "category": 1, @@ -3860,16 +3860,16 @@ "y": 0 }, { - "x": 120.9318088678909, - "y": 161.01500000000001 + "x": 120.93181, + "y": 161.015 }, { "x": 0, "y": 0 }, { - "x": 120.9318088678909, - "y": 161.01500000000001 + "x": 120.93181, + "y": 161.015 }, { "fillStyle": "#4ECDC4", @@ -3903,29 +3903,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 135.4668088678909, - "y": 186.19000000000003 + "x": 135.46681, + "y": 186.19 }, { "body": null, "index": 1, "isInternal": false, - "x": 91.8618088678909, - "y": 161.01500000000001 + "x": 91.86181, + "y": 161.015 }, { "body": null, "index": 2, "isInternal": false, - "x": 135.4668088678909, - "y": 135.84000000000003 + "x": 135.46681, + "y": 135.84 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 435 }, @@ -3946,13 +3946,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4001,20 +4001,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4029,12 +4029,12 @@ } }, { - "x": 170.37176614771653, - "y": 174.58599999999998 + "x": 170.37177, + "y": 174.586 }, { - "x": 133.5217661477165, - "y": 135.83999999999997 + "x": 133.52177, + "y": 135.84 }, { "category": 1, @@ -4051,7 +4051,7 @@ "y": 0 }, { - "x": 153.89180886789092, + "x": 153.89181, "y": 155.213 }, { @@ -4059,7 +4059,7 @@ "y": 0 }, { - "x": 153.89180886789092, + "x": 153.89181, "y": 155.213 }, { @@ -4100,35 +4100,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 170.37176614771653, + "x": 170.37177, "y": 167.186 }, { "body": null, "index": 1, "isInternal": false, - "x": 147.59676614771652, - "y": 174.58599999999998 + "x": 147.59677, + "y": 174.586 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.5217661477165, + "x": 133.52177, "y": 155.213 }, { "body": null, "index": 3, "isInternal": false, - "x": 147.59676614771652, - "y": 135.83999999999997 + "x": 147.59677, + "y": 135.84 }, { "body": null, "index": 4, "isInternal": false, - "x": 170.37176614771653, + "x": 170.37177, "y": 143.24 }, { @@ -4136,7 +4136,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1201.454244, + "area": 1201.45424, "axes": { "#": 460 }, @@ -4157,13 +4157,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4219,12 +4219,12 @@ } }, { - "x": 205.0337661477165, - "y": 170.50199999999998 + "x": 205.03377, + "y": 170.502 }, { - "x": 170.37176614771653, - "y": 135.83999999999997 + "x": 170.37177, + "y": 135.84 }, { "category": 1, @@ -4241,7 +4241,7 @@ "y": 0 }, { - "x": 187.70276614771652, + "x": 187.70277, "y": 153.171 }, { @@ -4249,7 +4249,7 @@ "y": 0 }, { - "x": 187.70276614771652, + "x": 187.70277, "y": 153.171 }, { @@ -4287,36 +4287,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 205.0337661477165, - "y": 170.50199999999998 + "x": 205.03377, + "y": 170.502 }, { "body": null, "index": 1, "isInternal": false, - "x": 170.37176614771653, - "y": 170.50199999999998 + "x": 170.37177, + "y": 170.502 }, { "body": null, "index": 2, "isInternal": false, - "x": 170.37176614771653, - "y": 135.83999999999997 + "x": 170.37177, + "y": 135.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 205.0337661477165, - "y": 135.83999999999997 + "x": 205.03377, + "y": 135.84 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1990.733346252218, + "area": 1990.73335, "axes": { "#": 481 }, @@ -4337,13 +4337,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4399,12 +4399,12 @@ } }, { - "x": 299.85749728626246, - "y": 156.83404149519893 + "x": 299.8575, + "y": 156.83404 }, { - "x": 205.0337661477165, - "y": 135.84000000000003 + "x": 205.03377, + "y": 135.84 }, { "category": 1, @@ -4421,16 +4421,16 @@ "y": 0 }, { - "x": 252.44563171698948, - "y": 146.33702074759947 + "x": 252.44563, + "y": 146.33702 }, { "x": 0, "y": 0 }, { - "x": 252.44563171698948, - "y": 146.33702074759947 + "x": 252.44563, + "y": 146.33702 }, { "fillStyle": "#FF6B6B", @@ -4467,29 +4467,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 205.0337661477165, - "y": 135.84000000000003 + "x": 205.03377, + "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 299.85749728626246, - "y": 135.84000000000003 + "x": 299.8575, + "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 299.85749728626246, - "y": 156.83404149519893 + "x": 299.8575, + "y": 156.83404 }, { "body": null, "index": 3, "isInternal": false, - "x": 205.0337661477165, - "y": 156.83404149519893 + "x": 205.03377, + "y": 156.83404 }, { "angle": 0, @@ -4503,7 +4503,7 @@ "bounds": { "#": 516 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 519 }, @@ -4518,13 +4518,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4597,52 +4597,52 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -4657,11 +4657,11 @@ } }, { - "x": 396.1714972862624, - "y": 232.85999999999999 + "x": 396.1715, + "y": 232.86 }, { - "x": 299.85749728626246, + "x": 299.8575, "y": 135.84 }, { @@ -4679,7 +4679,7 @@ "y": 0 }, { - "x": 348.01449728626244, + "x": 348.0145, "y": 184.35 }, { @@ -4687,7 +4687,7 @@ "y": 0 }, { - "x": 348.01449728626244, + "x": 348.0145, "y": 184.35 }, { @@ -4791,182 +4791,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.1714972862624, + "x": 396.1715, "y": 190.197 }, { "body": null, "index": 1, "isInternal": false, - "x": 393.37249728626244, + "x": 393.3725, "y": 201.552 }, { "body": null, "index": 2, "isInternal": false, - "x": 387.93749728626244, - "y": 211.90699999999998 + "x": 387.9375, + "y": 211.907 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.18249728626245, + "x": 380.1825, "y": 220.661 }, { "body": null, "index": 4, "isInternal": false, - "x": 370.5584972862624, + "x": 370.5585, "y": 227.304 }, { "body": null, "index": 5, "isInternal": false, - "x": 359.6234972862624, + "x": 359.6235, "y": 231.451 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.01449728626244, - "y": 232.85999999999999 + "x": 348.0145, + "y": 232.86 }, { "body": null, "index": 7, "isInternal": false, - "x": 336.40549728626246, + "x": 336.4055, "y": 231.451 }, { "body": null, "index": 8, "isInternal": false, - "x": 325.47049728626246, + "x": 325.4705, "y": 227.304 }, { "body": null, "index": 9, "isInternal": false, - "x": 315.84649728626243, + "x": 315.8465, "y": 220.661 }, { "body": null, "index": 10, "isInternal": false, - "x": 308.09149728626244, - "y": 211.90699999999998 + "x": 308.0915, + "y": 211.907 }, { "body": null, "index": 11, "isInternal": false, - "x": 302.65649728626244, + "x": 302.6565, "y": 201.552 }, { "body": null, "index": 12, "isInternal": false, - "x": 299.85749728626246, + "x": 299.8575, "y": 190.197 }, { "body": null, "index": 13, "isInternal": false, - "x": 299.85749728626246, + "x": 299.8575, "y": 178.503 }, { "body": null, "index": 14, "isInternal": false, - "x": 302.65649728626244, + "x": 302.6565, "y": 167.148 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.09149728626244, + "x": 308.0915, "y": 156.793 }, { "body": null, "index": 16, "isInternal": false, - "x": 315.84649728626243, + "x": 315.8465, "y": 148.039 }, { "body": null, "index": 17, "isInternal": false, - "x": 325.47049728626246, + "x": 325.4705, "y": 141.396 }, { "body": null, "index": 18, "isInternal": false, - "x": 336.40549728626246, + "x": 336.4055, "y": 137.249 }, { "body": null, "index": 19, "isInternal": false, - "x": 348.01449728626244, + "x": 348.0145, "y": 135.84 }, { "body": null, "index": 20, "isInternal": false, - "x": 359.6234972862624, + "x": 359.6235, "y": 137.249 }, { "body": null, "index": 21, "isInternal": false, - "x": 370.5584972862624, + "x": 370.5585, "y": 141.396 }, { "body": null, "index": 22, "isInternal": false, - "x": 380.18249728626245, + "x": 380.1825, "y": 148.039 }, { "body": null, "index": 23, "isInternal": false, - "x": 387.93749728626244, + "x": 387.9375, "y": 156.793 }, { "body": null, "index": 24, "isInternal": false, - "x": 393.37249728626244, + "x": 393.3725, "y": 167.148 }, { "body": null, "index": 25, "isInternal": false, - "x": 396.1714972862624, + "x": 396.1715, "y": 178.503 }, { @@ -4974,7 +4974,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 556 }, @@ -4995,13 +4995,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5057,12 +5057,12 @@ } }, { - "x": 480.4041790420924, - "y": 159.99646433470505 + "x": 480.40418, + "y": 159.99646 }, { - "x": 396.1714972862624, - "y": 135.83999999999997 + "x": 396.1715, + "y": 135.84 }, { "category": 1, @@ -5079,16 +5079,16 @@ "y": 0 }, { - "x": 438.2878381641774, - "y": 147.91823216735253 + "x": 438.28784, + "y": 147.91823 }, { "x": 0, "y": 0 }, { - "x": 438.2878381641774, - "y": 147.91823216735253 + "x": 438.28784, + "y": 147.91823 }, { "fillStyle": "#556270", @@ -5125,36 +5125,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.1714972862624, - "y": 135.83999999999997 + "x": 396.1715, + "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 480.4041790420924, - "y": 135.83999999999997 + "x": 480.40418, + "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 480.4041790420924, - "y": 159.99646433470505 + "x": 480.40418, + "y": 159.99646 }, { "body": null, "index": 3, "isInternal": false, - "x": 396.1714972862624, - "y": 159.99646433470505 + "x": 396.1715, + "y": 159.99646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 577 }, @@ -5175,13 +5175,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5237,11 +5237,11 @@ } }, { - "x": 529.7907531161663, - "y": 156.7050977366255 + "x": 529.79075, + "y": 156.7051 }, { - "x": 480.4041790420924, + "x": 480.40418, "y": 135.84 }, { @@ -5259,16 +5259,16 @@ "y": 0 }, { - "x": 505.0974660791294, - "y": 146.27254886831275 + "x": 505.09747, + "y": 146.27255 }, { "x": 0, "y": 0 }, { - "x": 505.0974660791294, - "y": 146.27254886831275 + "x": 505.09747, + "y": 146.27255 }, { "fillStyle": "#C7F464", @@ -5305,43 +5305,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 480.4041790420924, + "x": 480.40418, "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 529.7907531161663, + "x": 529.79075, "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 529.7907531161663, - "y": 156.7050977366255 + "x": 529.79075, + "y": 156.7051 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.4041790420924, - "y": 156.7050977366255 + "x": 480.40418, + "y": 156.7051 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2157.165332, + "area": 2157.16533, "axes": { "#": 598 }, "bounds": { "#": 612 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 615 }, @@ -5356,13 +5356,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5435,52 +5435,52 @@ } ], { - "x": -0.9709433940705979, - "y": -0.2393092674984975 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854643472565572, - "y": -0.46470731620829797 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485032926619368, - "y": -0.6631310736756638 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680789542040116, - "y": -0.8229740590021511 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3546257389378823, - "y": -0.9350083343386629 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12050542549813427, - "y": -0.9927126686133876 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050542549813427, - "y": -0.9927126686133876 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546257389378823, - "y": -0.9350083343386629 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680789542040116, - "y": -0.8229740590021511 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485032926619368, - "y": -0.6631310736756638 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854643472565572, - "y": -0.46470731620829797 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709433940705979, - "y": -0.2393092674984975 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -5495,11 +5495,11 @@ } }, { - "x": 582.0707531161663, + "x": 582.07075, "y": 188.504 }, { - "x": 529.7907531161663, + "x": 529.79075, "y": 135.84 }, { @@ -5517,7 +5517,7 @@ "y": 0 }, { - "x": 555.9307531161663, + "x": 555.93075, "y": 162.172 }, { @@ -5525,7 +5525,7 @@ "y": 0 }, { - "x": 555.9307531161663, + "x": 555.93075, "y": 162.172 }, { @@ -5629,182 +5629,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 582.0707531161663, + "x": 582.07075, "y": 165.346 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.5517531161663, + "x": 580.55175, "y": 171.509 }, { "body": null, "index": 2, "isInternal": false, - "x": 577.6017531161664, + "x": 577.60175, "y": 177.13 }, { "body": null, "index": 3, "isInternal": false, - "x": 573.3917531161663, + "x": 573.39175, "y": 181.882 }, { "body": null, "index": 4, "isInternal": false, - "x": 568.1677531161663, + "x": 568.16775, "y": 185.488 }, { "body": null, "index": 5, "isInternal": false, - "x": 562.2327531161664, + "x": 562.23275, "y": 187.739 }, { "body": null, "index": 6, "isInternal": false, - "x": 555.9307531161663, + "x": 555.93075, "y": 188.504 }, { "body": null, "index": 7, "isInternal": false, - "x": 549.6287531161663, + "x": 549.62875, "y": 187.739 }, { "body": null, "index": 8, "isInternal": false, - "x": 543.6937531161664, + "x": 543.69375, "y": 185.488 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.4697531161663, + "x": 538.46975, "y": 181.882 }, { "body": null, "index": 10, "isInternal": false, - "x": 534.2597531161664, + "x": 534.25975, "y": 177.13 }, { "body": null, "index": 11, "isInternal": false, - "x": 531.3097531161663, + "x": 531.30975, "y": 171.509 }, { "body": null, "index": 12, "isInternal": false, - "x": 529.7907531161663, + "x": 529.79075, "y": 165.346 }, { "body": null, "index": 13, "isInternal": false, - "x": 529.7907531161663, + "x": 529.79075, "y": 158.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 531.3097531161663, - "y": 152.83499999999998 + "x": 531.30975, + "y": 152.835 }, { "body": null, "index": 15, "isInternal": false, - "x": 534.2597531161664, + "x": 534.25975, "y": 147.214 }, { "body": null, "index": 16, "isInternal": false, - "x": 538.4697531161663, + "x": 538.46975, "y": 142.462 }, { "body": null, "index": 17, "isInternal": false, - "x": 543.6937531161664, + "x": 543.69375, "y": 138.856 }, { "body": null, "index": 18, "isInternal": false, - "x": 549.6287531161663, + "x": 549.62875, "y": 136.605 }, { "body": null, "index": 19, "isInternal": false, - "x": 555.9307531161663, + "x": 555.93075, "y": 135.84 }, { "body": null, "index": 20, "isInternal": false, - "x": 562.2327531161664, + "x": 562.23275, "y": 136.605 }, { "body": null, "index": 21, "isInternal": false, - "x": 568.1677531161663, + "x": 568.16775, "y": 138.856 }, { "body": null, "index": 22, "isInternal": false, - "x": 573.3917531161663, + "x": 573.39175, "y": 142.462 }, { "body": null, "index": 23, "isInternal": false, - "x": 577.6017531161664, + "x": 577.60175, "y": 147.214 }, { "body": null, "index": 24, "isInternal": false, - "x": 580.5517531161663, - "y": 152.83499999999998 + "x": 580.55175, + "y": 152.835 }, { "body": null, "index": 25, "isInternal": false, - "x": 582.0707531161663, + "x": 582.07075, "y": 158.998 }, { @@ -5812,7 +5812,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2399.6281959999997, + "area": 2399.6282, "axes": { "#": 652 }, @@ -5833,13 +5833,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -5895,11 +5895,11 @@ } }, { - "x": 631.0567531161664, + "x": 631.05675, "y": 184.826 }, { - "x": 582.0707531161663, + "x": 582.07075, "y": 135.84 }, { @@ -5917,7 +5917,7 @@ "y": 0 }, { - "x": 606.5637531161664, + "x": 606.56375, "y": 160.333 }, { @@ -5925,7 +5925,7 @@ "y": 0 }, { - "x": 606.5637531161664, + "x": 606.56375, "y": 160.333 }, { @@ -5963,28 +5963,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.0567531161664, + "x": 631.05675, "y": 184.826 }, { "body": null, "index": 1, "isInternal": false, - "x": 582.0707531161663, + "x": 582.07075, "y": 184.826 }, { "body": null, "index": 2, "isInternal": false, - "x": 582.0707531161663, + "x": 582.07075, "y": 135.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 631.0567531161664, + "x": 631.05675, "y": 135.84 }, { @@ -5992,7 +5992,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 673 }, @@ -6013,13 +6013,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6075,11 +6075,11 @@ } }, { - "x": 666.4696903589647, - "y": 177.90893004115227 + "x": 666.46969, + "y": 177.90893 }, { - "x": 631.0567531161664, + "x": 631.05675, "y": 135.84 }, { @@ -6097,16 +6097,16 @@ "y": 0 }, { - "x": 648.7632217375656, - "y": 156.87446502057614 + "x": 648.76322, + "y": 156.87447 }, { "x": 0, "y": 0 }, { - "x": 648.7632217375656, - "y": 156.87446502057614 + "x": 648.76322, + "y": 156.87447 }, { "fillStyle": "#4ECDC4", @@ -6143,36 +6143,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.0567531161664, + "x": 631.05675, "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 666.4696903589647, + "x": 666.46969, "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 666.4696903589647, - "y": 177.90893004115227 + "x": 666.46969, + "y": 177.90893 }, { "body": null, "index": 3, "isInternal": false, - "x": 631.0567531161664, - "y": 177.90893004115227 + "x": 631.05675, + "y": 177.90893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 694 }, @@ -6193,13 +6193,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6255,11 +6255,11 @@ } }, { - "x": 708.2335792478536, - "y": 178.1101903292181 + "x": 708.23358, + "y": 178.11019 }, { - "x": 666.4696903589647, + "x": 666.46969, "y": 135.84 }, { @@ -6277,16 +6277,16 @@ "y": 0 }, { - "x": 687.3516348034092, - "y": 156.97509516460906 + "x": 687.35163, + "y": 156.9751 }, { "x": 0, "y": 0 }, { - "x": 687.3516348034092, - "y": 156.97509516460906 + "x": 687.35163, + "y": 156.9751 }, { "fillStyle": "#FF6B6B", @@ -6323,36 +6323,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 666.4696903589647, + "x": 666.46969, "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 708.2335792478536, + "x": 708.23358, "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 708.2335792478536, - "y": 178.1101903292181 + "x": 708.23358, + "y": 178.11019 }, { "body": null, "index": 3, "isInternal": false, - "x": 666.4696903589647, - "y": 178.1101903292181 + "x": 666.46969, + "y": 178.11019 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1919.5457599999997, + "area": 1919.54576, "axes": { "#": 715 }, @@ -6373,13 +6373,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6422,12 +6422,12 @@ } ], { - "x": -0.4999772266722585, - "y": -0.8660385515721092 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999772266722585, - "y": -0.8660385515721092 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -6442,12 +6442,12 @@ } }, { - "x": 97.07999999999998, + "x": 97.08, "y": 287.222 }, { - "x": 49.99999999999999, - "y": 232.85999999999999 + "x": 50, + "y": 232.86 }, { "category": 1, @@ -6464,7 +6464,7 @@ "y": 0 }, { - "x": 73.53999999999999, + "x": 73.54, "y": 260.041 }, { @@ -6472,7 +6472,7 @@ "y": 0 }, { - "x": 73.53999999999999, + "x": 73.54, "y": 260.041 }, { @@ -6516,42 +6516,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 97.07999999999998, + "x": 97.08, "y": 273.632 }, { "body": null, "index": 1, "isInternal": false, - "x": 73.53999999999999, + "x": 73.54, "y": 287.222 }, { "body": null, "index": 2, "isInternal": false, - "x": 49.99999999999999, + "x": 50, "y": 273.632 }, { "body": null, "index": 3, "isInternal": false, - "x": 49.99999999999999, + "x": 50, "y": 246.45 }, { "body": null, "index": 4, "isInternal": false, - "x": 73.53999999999999, - "y": 232.85999999999999 + "x": 73.54, + "y": 232.86 }, { "body": null, "index": 5, "isInternal": false, - "x": 97.07999999999998, + "x": 97.08, "y": 246.45 }, { @@ -6559,7 +6559,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6052.328004, + "area": 6052.328, "axes": { "#": 739 }, @@ -6580,13 +6580,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -6629,12 +6629,12 @@ } ], { - "x": -0.4999896834528559, - "y": -0.8660313599637792 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999896834528559, - "y": -0.8660313599637792 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -6653,8 +6653,8 @@ "y": 329.39 }, { - "x": 97.07999999999998, - "y": 232.85999999999999 + "x": 97.08, + "y": 232.86 }, { "category": 1, @@ -6724,7 +6724,7 @@ "index": 0, "isInternal": false, "x": 180.678, - "y": 305.25800000000004 + "y": 305.258 }, { "body": null, @@ -6737,36 +6737,36 @@ "body": null, "index": 2, "isInternal": false, - "x": 97.07999999999998, - "y": 305.25800000000004 + "x": 97.08, + "y": 305.258 }, { "body": null, "index": 3, "isInternal": false, - "x": 97.07999999999998, - "y": 256.99199999999996 + "x": 97.08, + "y": 256.992 }, { "body": null, "index": 4, "isInternal": false, "x": 138.879, - "y": 232.85999999999999 + "y": 232.86 }, { "body": null, "index": 5, "isInternal": false, "x": 180.678, - "y": 256.99199999999996 + "y": 256.992 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 763 }, @@ -6787,13 +6787,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -6849,12 +6849,12 @@ } }, { - "x": 225.82936316872429, - "y": 282.02846707818924 + "x": 225.82936, + "y": 282.02847 }, { "x": 180.678, - "y": 232.85999999999999 + "y": 232.86 }, { "category": 1, @@ -6871,16 +6871,16 @@ "y": 0 }, { - "x": 203.25368158436214, - "y": 257.4442335390946 + "x": 203.25368, + "y": 257.44423 }, { "x": 0, "y": 0 }, { - "x": 203.25368158436214, - "y": 257.4442335390946 + "x": 203.25368, + "y": 257.44423 }, { "fillStyle": "#C7F464", @@ -6918,35 +6918,35 @@ "index": 0, "isInternal": false, "x": 180.678, - "y": 232.85999999999999 + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 225.82936316872429, - "y": 232.85999999999999 + "x": 225.82936, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.82936316872429, - "y": 282.02846707818924 + "x": 225.82936, + "y": 282.02847 }, { "body": null, "index": 3, "isInternal": false, "x": 180.678, - "y": 282.02846707818924 + "y": 282.02847 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2601.1074479999997, + "area": 2601.10745, "axes": { "#": 784 }, @@ -6967,13 +6967,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7016,12 +7016,12 @@ } ], { - "x": -0.4999869137730785, - "y": -0.8660329589892477 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999869137730785, - "y": -0.8660329589892477 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7036,12 +7036,12 @@ } }, { - "x": 280.63336316872426, - "y": 296.14199999999994 + "x": 280.63336, + "y": 296.142 }, { - "x": 225.82936316872429, - "y": 232.85999999999999 + "x": 225.82936, + "y": 232.86 }, { "category": 1, @@ -7058,7 +7058,7 @@ "y": 0 }, { - "x": 253.23136316872427, + "x": 253.23136, "y": 264.501 }, { @@ -7066,7 +7066,7 @@ "y": 0 }, { - "x": 253.23136316872427, + "x": 253.23136, "y": 264.501 }, { @@ -7110,50 +7110,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 280.63336316872426, + "x": 280.63336, "y": 280.322 }, { "body": null, "index": 1, "isInternal": false, - "x": 253.23136316872427, - "y": 296.14199999999994 + "x": 253.23136, + "y": 296.142 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.82936316872429, + "x": 225.82936, "y": 280.322 }, { "body": null, "index": 3, "isInternal": false, - "x": 225.82936316872429, - "y": 248.67999999999998 + "x": 225.82936, + "y": 248.68 }, { "body": null, "index": 4, "isInternal": false, - "x": 253.23136316872427, - "y": 232.85999999999999 + "x": 253.23136, + "y": 232.86 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.63336316872426, - "y": 248.67999999999998 + "x": 280.63336, + "y": 248.68 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1413.3088360000002, + "area": 1413.30884, "axes": { "#": 808 }, @@ -7174,13 +7174,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7236,12 +7236,12 @@ } }, { - "x": 318.2273631687243, - "y": 270.45399999999995 + "x": 318.22736, + "y": 270.454 }, { - "x": 280.63336316872426, - "y": 232.85999999999999 + "x": 280.63336, + "y": 232.86 }, { "category": 1, @@ -7258,16 +7258,16 @@ "y": 0 }, { - "x": 299.4303631687243, - "y": 251.65699999999998 + "x": 299.43036, + "y": 251.657 }, { "x": 0, "y": 0 }, { - "x": 299.4303631687243, - "y": 251.65699999999998 + "x": 299.43036, + "y": 251.657 }, { "fillStyle": "#556270", @@ -7304,36 +7304,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.2273631687243, - "y": 270.45399999999995 + "x": 318.22736, + "y": 270.454 }, { "body": null, "index": 1, "isInternal": false, - "x": 280.63336316872426, - "y": 270.45399999999995 + "x": 280.63336, + "y": 270.454 }, { "body": null, "index": 2, "isInternal": false, - "x": 280.63336316872426, - "y": 232.85999999999999 + "x": 280.63336, + "y": 232.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 318.2273631687243, - "y": 232.85999999999999 + "x": 318.22736, + "y": 232.86 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5460.808751999999, + "area": 5460.80875, "axes": { "#": 829 }, @@ -7354,13 +7354,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7403,12 +7403,12 @@ } ], { - "x": -0.49999811726960197, - "y": -0.8660264907766121 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.49999811726960197, - "y": -0.8660264907766121 + "x": 0.5, + "y": -0.86603 }, { "x": 1, @@ -7423,12 +7423,12 @@ } }, { - "x": 397.6353631687243, - "y": 324.5519999999999 + "x": 397.63536, + "y": 324.552 }, { - "x": 318.2273631687243, - "y": 232.85999999999996 + "x": 318.22736, + "y": 232.86 }, { "category": 1, @@ -7445,16 +7445,16 @@ "y": 0 }, { - "x": 357.9313631687243, - "y": 278.70599999999996 + "x": 357.93136, + "y": 278.706 }, { "x": 0, "y": 0 }, { - "x": 357.9313631687243, - "y": 278.70599999999996 + "x": 357.93136, + "y": 278.706 }, { "fillStyle": "#4ECDC4", @@ -7497,50 +7497,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.6353631687243, - "y": 301.62899999999996 + "x": 397.63536, + "y": 301.629 }, { "body": null, "index": 1, "isInternal": false, - "x": 357.9313631687243, - "y": 324.5519999999999 + "x": 357.93136, + "y": 324.552 }, { "body": null, "index": 2, "isInternal": false, - "x": 318.2273631687243, - "y": 301.62899999999996 + "x": 318.22736, + "y": 301.629 }, { "body": null, "index": 3, "isInternal": false, - "x": 318.2273631687243, - "y": 255.78299999999996 + "x": 318.22736, + "y": 255.783 }, { "body": null, "index": 4, "isInternal": false, - "x": 357.9313631687243, - "y": 232.85999999999996 + "x": 357.93136, + "y": 232.86 }, { "body": null, "index": 5, "isInternal": false, - "x": 397.6353631687243, - "y": 255.78299999999996 + "x": 397.63536, + "y": 255.783 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 853 }, @@ -7561,13 +7561,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -7623,12 +7623,12 @@ } }, { - "x": 417.80588786008235, - "y": 255.2497890946502 + "x": 417.80589, + "y": 255.24979 }, { - "x": 397.6353631687243, - "y": 232.85999999999999 + "x": 397.63536, + "y": 232.86 }, { "category": 1, @@ -7645,16 +7645,16 @@ "y": 0 }, { - "x": 407.7206255144033, - "y": 244.0548945473251 + "x": 407.72063, + "y": 244.05489 }, { "x": 0, "y": 0 }, { - "x": 407.7206255144033, - "y": 244.0548945473251 + "x": 407.72063, + "y": 244.05489 }, { "fillStyle": "#556270", @@ -7691,36 +7691,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.6353631687243, - "y": 232.85999999999999 + "x": 397.63536, + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 417.80588786008235, - "y": 232.85999999999999 + "x": 417.80589, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 417.80588786008235, - "y": 255.2497890946502 + "x": 417.80589, + "y": 255.24979 }, { "body": null, "index": 3, "isInternal": false, - "x": 397.6353631687243, - "y": 255.2497890946502 + "x": 397.63536, + "y": 255.24979 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 874 }, @@ -7741,13 +7741,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -7803,12 +7803,12 @@ } }, { - "x": 519.6390497256516, - "y": 262.5328395061729 + "x": 519.63905, + "y": 262.53284 }, { - "x": 417.80588786008235, - "y": 232.85999999999999 + "x": 417.80589, + "y": 232.86 }, { "category": 1, @@ -7825,16 +7825,16 @@ "y": 0 }, { - "x": 468.722468792867, - "y": 247.69641975308642 + "x": 468.72247, + "y": 247.69642 }, { "x": 0, "y": 0 }, { - "x": 468.722468792867, - "y": 247.69641975308642 + "x": 468.72247, + "y": 247.69642 }, { "fillStyle": "#C44D58", @@ -7871,36 +7871,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.80588786008235, - "y": 232.85999999999999 + "x": 417.80589, + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 519.6390497256516, - "y": 232.85999999999999 + "x": 519.63905, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 519.6390497256516, - "y": 262.5328395061729 + "x": 519.63905, + "y": 262.53284 }, { "body": null, "index": 3, "isInternal": false, - "x": 417.80588786008235, - "y": 262.5328395061729 + "x": 417.80589, + "y": 262.53284 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 895 }, @@ -7921,13 +7921,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -7983,12 +7983,12 @@ } }, { - "x": 559.7105517832647, - "y": 254.24027263374484 + "x": 559.71055, + "y": 254.24027 }, { - "x": 519.6390497256516, - "y": 232.85999999999999 + "x": 519.63905, + "y": 232.86 }, { "category": 1, @@ -8005,16 +8005,16 @@ "y": 0 }, { - "x": 539.6748007544581, - "y": 243.5501363168724 + "x": 539.6748, + "y": 243.55014 }, { "x": 0, "y": 0 }, { - "x": 539.6748007544581, - "y": 243.5501363168724 + "x": 539.6748, + "y": 243.55014 }, { "fillStyle": "#556270", @@ -8051,36 +8051,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 519.6390497256516, - "y": 232.85999999999999 + "x": 519.63905, + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 559.7105517832647, - "y": 232.85999999999999 + "x": 559.71055, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 559.7105517832647, - "y": 254.24027263374484 + "x": 559.71055, + "y": 254.24027 }, { "body": null, "index": 3, "isInternal": false, - "x": 519.6390497256516, - "y": 254.24027263374484 + "x": 519.63905, + "y": 254.24027 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 916 }, @@ -8101,13 +8101,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8153,16 +8153,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8177,12 +8177,12 @@ } }, { - "x": 629.9625517832646, - "y": 303.11199999999997 + "x": 629.96255, + "y": 303.112 }, { - "x": 559.7105517832647, - "y": 232.85999999999999 + "x": 559.71055, + "y": 232.86 }, { "category": 1, @@ -8199,7 +8199,7 @@ "y": 0 }, { - "x": 594.8365517832647, + "x": 594.83655, "y": 267.986 }, { @@ -8207,7 +8207,7 @@ "y": 0 }, { - "x": 594.8365517832647, + "x": 594.83655, "y": 267.986 }, { @@ -8257,64 +8257,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 629.9625517832646, + "x": 629.96255, "y": 282.536 }, { "body": null, "index": 1, "isInternal": false, - "x": 609.3865517832646, - "y": 303.11199999999997 + "x": 609.38655, + "y": 303.112 }, { "body": null, "index": 2, "isInternal": false, - "x": 580.2865517832647, - "y": 303.11199999999997 + "x": 580.28655, + "y": 303.112 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.7105517832647, + "x": 559.71055, "y": 282.536 }, { "body": null, "index": 4, "isInternal": false, - "x": 559.7105517832647, - "y": 253.43599999999998 + "x": 559.71055, + "y": 253.436 }, { "body": null, "index": 5, "isInternal": false, - "x": 580.2865517832647, - "y": 232.85999999999999 + "x": 580.28655, + "y": 232.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 609.3865517832646, - "y": 232.85999999999999 + "x": 609.38655, + "y": 232.86 }, { "body": null, "index": 7, "isInternal": false, - "x": 629.9625517832646, - "y": 253.43599999999998 + "x": 629.96255, + "y": 253.436 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 943 }, @@ -8335,13 +8335,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8397,12 +8397,12 @@ } }, { - "x": 719.4668384773661, - "y": 254.81584705075446 + "x": 719.46684, + "y": 254.81585 }, { - "x": 629.9625517832646, - "y": 232.85999999999999 + "x": 629.96255, + "y": 232.86 }, { "category": 1, @@ -8419,16 +8419,16 @@ "y": 0 }, { - "x": 674.7146951303154, - "y": 243.83792352537722 + "x": 674.7147, + "y": 243.83792 }, { "x": 0, "y": 0 }, { - "x": 674.7146951303154, - "y": 243.83792352537722 + "x": 674.7147, + "y": 243.83792 }, { "fillStyle": "#4ECDC4", @@ -8465,36 +8465,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 629.9625517832646, - "y": 232.85999999999999 + "x": 629.96255, + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 719.4668384773661, - "y": 232.85999999999999 + "x": 719.46684, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 719.4668384773661, - "y": 254.81584705075446 + "x": 719.46684, + "y": 254.81585 }, { "body": null, "index": 3, "isInternal": false, - "x": 629.9625517832646, - "y": 254.81584705075446 + "x": 629.96255, + "y": 254.81585 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1492.5256200000001, + "area": 1492.52562, "axes": { "#": 964 }, @@ -8515,13 +8515,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1714.8324723309402, - "inverseInertia": 0.0005831473430408735, - "inverseMass": 0.6700052492231255, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "inverseMass": 0.67001, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.49252562, + "mass": 1.49253, "motion": 0, "parent": null, "position": { @@ -8564,12 +8564,12 @@ } ], { - "x": -0.5000025921589079, - "y": 0.8660239071956228 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000025921589079, - "y": -0.8660239071956228 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -8584,12 +8584,12 @@ } }, { - "x": 761.8368384773661, - "y": 291.56999999999994 + "x": 761.83684, + "y": 291.57 }, { - "x": 710.9928384773661, - "y": 232.85999999999999 + "x": 710.99284, + "y": 232.86 }, { "category": 1, @@ -8606,7 +8606,7 @@ "y": 0 }, { - "x": 744.8888384773661, + "x": 744.88884, "y": 262.215 }, { @@ -8614,7 +8614,7 @@ "y": 0 }, { - "x": 744.8888384773661, + "x": 744.88884, "y": 262.215 }, { @@ -8649,22 +8649,22 @@ "body": null, "index": 0, "isInternal": false, - "x": 761.8368384773661, - "y": 291.56999999999994 + "x": 761.83684, + "y": 291.57 }, { "body": null, "index": 1, "isInternal": false, - "x": 710.9928384773661, + "x": 710.99284, "y": 262.215 }, { "body": null, "index": 2, "isInternal": false, - "x": 761.8368384773661, - "y": 232.85999999999999 + "x": 761.83684, + "y": 232.86 }, [], [], diff --git a/test/browser/refs/mixedSolid/mixedSolid-10.json b/test/browser/refs/mixedSolid/mixedSolid-10.json index 8703dec5..d262b7ac 100644 --- a/test/browser/refs/mixedSolid/mixedSolid-10.json +++ b/test/browser/refs/mixedSolid/mixedSolid-10.json @@ -1027,7 +1027,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1534.906434764454, + "area": 1534.90643, "axes": { "#": 97 }, @@ -1048,13 +1048,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1076,7 +1076,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1113,12 +1113,12 @@ } }, { - "x": 82.40102309415396, - "y": 112.80712013226713 + "x": 82.40102, + "y": 112.80712 }, { - "x": 45.99785951390703, - "y": 67.73575476702572 + "x": 45.99786, + "y": 67.73575 }, { "category": 1, @@ -1135,16 +1135,16 @@ "y": 0 }, { - "x": 64.1994413040305, - "y": 88.8178020921286 + "x": 64.19944, + "y": 88.8178 }, { - "x": -0.21240689241880487, + "x": -0.21241, "y": 0 }, { - "x": 64.1994413040305, - "y": 85.91053137709295 + "x": 64.19944, + "y": 85.91053 }, { "endCol": 1, @@ -1168,7 +1168,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1188,36 +1188,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 45.99785951390703, - "y": 67.73575476702572 + "x": 45.99786, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 82.40102309415396, - "y": 67.73575476702572 + "x": 82.40102, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 82.40102309415396, - "y": 109.89984941723148 + "x": 82.40102, + "y": 109.89985 }, { "body": null, "index": 3, "isInternal": false, - "x": 45.99785951390703, - "y": 109.89984941723148 + "x": 45.99786, + "y": 109.89985 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.52878634164, + "area": 2220.52879, "axes": { "#": 119 }, @@ -1238,13 +1238,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1266,7 +1266,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1303,12 +1303,12 @@ } }, { - "x": 130.08822378996675, - "y": 119.64418288946877 + "x": 130.08822, + "y": 119.64418 }, { - "x": 84.7723801685676, - "y": 67.73575476702572 + "x": 84.77238, + "y": 67.73575 }, { "category": 1, @@ -1325,16 +1325,16 @@ "y": 0 }, { - "x": 107.43030197926718, - "y": 92.23633347072942 + "x": 107.4303, + "y": 92.23633 }, { - "x": -0.0402285530991624, + "x": -0.04023, "y": 0 }, { - "x": 107.43030197926718, - "y": 89.32906275569377 + "x": 107.4303, + "y": 89.32906 }, { "endCol": 2, @@ -1358,7 +1358,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1378,36 +1378,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 84.7723801685676, - "y": 67.73575476702572 + "x": 84.77238, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 130.08822378996675, - "y": 67.73575476702572 + "x": 130.08822, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 130.08822378996675, - "y": 116.73691217443312 + "x": 130.08822, + "y": 116.73691 }, { "body": null, "index": 3, "isInternal": false, - "x": 84.7723801685676, - "y": 116.73691217443312 + "x": 84.77238, + "y": 116.73691 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1140.197701571206, + "area": 1140.1977, "axes": { "#": 141 }, @@ -1428,13 +1428,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1456,7 +1456,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1493,12 +1493,12 @@ } }, { - "x": 169.54388458953156, - "y": 99.71427033802846 + "x": 169.54388, + "y": 99.71427 }, { - "x": 130.3230769763628, - "y": 67.73575476702574 + "x": 130.32308, + "y": 67.73575 }, { "category": 1, @@ -1515,16 +1515,16 @@ "y": 0 }, { - "x": 149.93348078294719, - "y": 82.27137719500926 + "x": 149.93348, + "y": 82.27138 }, { - "x": -0.026009009225921916, + "x": -0.02601, "y": 0 }, { - "x": 149.93348078294719, - "y": 79.36410647997361 + "x": 149.93348, + "y": 79.36411 }, { "endCol": 3, @@ -1548,7 +1548,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -1568,36 +1568,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 130.3230769763628, - "y": 67.73575476702574 + "x": 130.32308, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 169.54388458953156, - "y": 67.73575476702574 + "x": 169.54388, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 169.54388458953156, - "y": 96.8069996229928 + "x": 169.54388, + "y": 96.807 }, { "body": null, "index": 3, "isInternal": false, - "x": 130.3230769763628, - "y": 96.8069996229928 + "x": 130.32308, + "y": 96.807 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 752.4076041785743, + "area": 752.4076, "axes": { "#": 163 }, @@ -1618,13 +1618,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1646,7 +1646,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1683,12 +1683,12 @@ } }, { - "x": 194.37119940434638, - "y": 100.88775284831652 + "x": 194.3712, + "y": 100.88775 }, { - "x": 169.49388458953155, - "y": 67.73575476702574 + "x": 169.49388, + "y": 67.73575 }, { "category": 1, @@ -1705,16 +1705,16 @@ "y": 0 }, { - "x": 181.93254199693897, - "y": 82.8581184501533 + "x": 181.93254, + "y": 82.85812 }, { - "x": -0.026009009225915793, + "x": -0.02601, "y": 0 }, { - "x": 181.93254199693897, - "y": 79.95084773511765 + "x": 181.93254, + "y": 79.95085 }, { "endCol": 4, @@ -1738,7 +1738,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -1758,36 +1758,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 169.49388458953155, - "y": 67.73575476702574 + "x": 169.49388, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 194.37119940434638, - "y": 67.73575476702574 + "x": 194.3712, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 194.37119940434638, - "y": 97.98048213328087 + "x": 194.3712, + "y": 97.98048 }, { "body": null, "index": 3, "isInternal": false, - "x": 169.49388458953155, - "y": 97.98048213328087 + "x": 169.49388, + "y": 97.98048 }, { - "angle": 3.8762187644967887e-16, - "anglePrev": 2.649710854317212e-16, - "angularSpeed": 1.3074381196637362e-16, - "angularVelocity": 1.2762254350449912e-16, - "area": 2027.2541820000001, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2027.25418, "axes": { "#": 185 }, @@ -1808,13 +1808,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -1836,7 +1836,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1860,16 +1860,16 @@ } ], { - "x": -0.5000085820847088, - "y": -0.8660204488588241 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.5000085820847092, - "y": -0.8660204488588237 + "x": 0.50001, + "y": -0.86602 }, { "x": 1, - "y": 3.8762187644967887e-16 + "y": 0 }, { "max": { @@ -1880,12 +1880,12 @@ } }, { - "x": 243.74874325981477, - "y": 125.11162465181849 + "x": 243.74874, + "y": 125.11162 }, { - "x": 195.36674325981477, - "y": 66.33635393678286 + "x": 195.36674, + "y": 66.33635 }, { "category": 1, @@ -1902,16 +1902,16 @@ "y": 0 }, { - "x": 219.55774325981477, - "y": 94.27035393678284 + "x": 219.55774, + "y": 94.27035 }, { "x": 0, "y": 0 }, { - "x": 219.55774325981477, - "y": 91.36308322174719 + "x": 219.55774, + "y": 91.36308 }, { "endCol": 5, @@ -1935,7 +1935,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -1961,49 +1961,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 243.74874325981477, - "y": 108.23735393678284 + "x": 243.74874, + "y": 108.23735 }, { "body": null, "index": 1, "isInternal": false, - "x": 219.55774325981477, - "y": 122.20435393678284 + "x": 219.55774, + "y": 122.20435 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.36674325981477, - "y": 108.23735393678284 + "x": 195.36674, + "y": 108.23735 }, { "body": null, "index": 3, "isInternal": false, - "x": 195.36674325981477, - "y": 80.30335393678284 + "x": 195.36674, + "y": 80.30335 }, { "body": null, "index": 4, "isInternal": false, - "x": 219.55774325981477, - "y": 66.33635393678286 + "x": 219.55774, + "y": 66.33635 }, { "body": null, "index": 5, "isInternal": false, - "x": 243.74874325981477, - "y": 80.30335393678284 + "x": 243.74874, + "y": 80.30335 }, { - "angle": -5.246583236285029e-16, - "anglePrev": -4.472887203722439e-16, - "angularSpeed": 7.552552256704208e-17, - "angularVelocity": -7.623673670241777e-17, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 4842.27229, "axes": { "#": 210 @@ -2025,13 +2025,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2053,7 +2053,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2083,24 +2083,24 @@ } ], { - "x": 0.30902000749156733, - "y": 0.95105553726894 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090188345853122, - "y": 0.5877827194518598 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090188345853127, - "y": -0.5877827194518587 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902000749156633, - "y": -0.95105553726894 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, - "y": -5.246583236285029e-16 + "y": 0 }, { "max": { @@ -2111,12 +2111,12 @@ } }, { - "x": 321.55578938876494, - "y": 159.2340691690158 + "x": 321.55579, + "y": 159.23407 }, { - "x": 239.91778938876496, - "y": 70.48679845398011 + "x": 239.91779, + "y": 70.4868 }, { "category": 1, @@ -2133,16 +2133,16 @@ "y": 0 }, { - "x": 285.0461752739399, - "y": 113.4067984539801 + "x": 285.04618, + "y": 113.4068 }, { - "x": -0.07479604864768871, - "y": 0.06773793189966067 + "x": -0.0748, + "y": 0.06774 }, { - "x": 285.0461752739399, - "y": 110.49952773894445 + "x": 285.04618, + "y": 110.49953 }, { "endCol": 6, @@ -2166,7 +2166,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -2189,50 +2189,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 321.55578938876494, - "y": 139.93279845398013 + "x": 321.55579, + "y": 139.9328 }, { "body": null, "index": 1, "isInternal": false, - "x": 271.1007893887649, - "y": 156.32679845398016 + "x": 271.10079, + "y": 156.3268 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.91778938876496, - "y": 113.4067984539801 + "x": 239.91779, + "y": 113.4068 }, { "body": null, "index": 3, "isInternal": false, - "x": 271.1007893887649, - "y": 70.48679845398011 + "x": 271.10079, + "y": 70.4868 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.55578938876494, - "y": 86.8807984539801 + "x": 321.55579, + "y": 86.8808 }, { - "angle": -3.7063810097861765e-14, - "anglePrev": -3.826149409715343e-14, - "angularSpeed": 1.2129725087057634e-15, - "angularVelocity": 1.3311857637445273e-15, - "area": 3079.0178339999993, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3079.01783, "axes": { "#": 236 }, "bounds": { "#": 250 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 253 }, @@ -2247,13 +2247,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2275,7 +2275,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035813, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2329,56 +2329,56 @@ } ], { - "x": -0.9709437470087525, - "y": -0.23930783552696983 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854182522513432, - "y": -0.46479513614083445 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.748535822224754, - "y": -0.6630943544069062 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.568078031004987, - "y": -0.8229746962631944 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545747323306915, - "y": -0.9350276783029573 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12051249760078153, - "y": -0.9927118101050384 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051249760070792, - "y": -0.9927118101050473 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545747323306221, - "y": -0.9350276783029833 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680780310049262, - "y": -0.8229746962632364 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485358222247045, - "y": -0.6630943544069615 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854182522513088, - "y": -0.46479513614090007 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.970943747008735, - "y": -0.23930783552704182 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, - "y": -3.7063810097861765e-14 + "y": 0 }, { "max": { @@ -2389,12 +2389,12 @@ } }, { - "x": 385.6670196756233, - "y": 135.78713498479874 + "x": 385.66702, + "y": 135.78713 }, { - "x": 323.2070196756228, - "y": 69.9618642697629 + "x": 323.20702, + "y": 69.96186 }, { "category": 1, @@ -2411,16 +2411,16 @@ "y": 0 }, { - "x": 354.43701967562316, - "y": 101.42086426976292 + "x": 354.43702, + "y": 101.42086 }, { - "x": 0.03923072902534478, - "y": 0.1085176250201706 + "x": 0.03923, + "y": 0.10852 }, { - "x": 354.4370196756234, - "y": 98.51359355472711 + "x": 354.43702, + "y": 98.51359 }, { "endCol": 8, @@ -2443,8 +2443,8 @@ "yScale": 1 }, { - "x": -2.2737367544323206e-13, - "y": 2.9072707150358212 + "x": 0, + "y": 2.90727 }, [ { @@ -2530,190 +2530,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 385.6670196756233, - "y": 105.21286426976177 + "x": 385.66702, + "y": 105.21286 }, { "body": null, "index": 1, "isInternal": false, - "x": 383.85201967562364, - "y": 112.57686426976183 + "x": 383.85202, + "y": 112.57686 }, { "body": null, "index": 2, "isInternal": false, - "x": 380.32701967562383, - "y": 119.29186426976196 + "x": 380.32702, + "y": 119.29186 }, { "body": null, "index": 3, "isInternal": false, - "x": 375.2980196756239, - "y": 124.96886426976214 + "x": 375.29802, + "y": 124.96886 }, { "body": null, "index": 4, "isInternal": false, - "x": 369.0570196756242, - "y": 129.2768642697624 + "x": 369.05702, + "y": 129.27686 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.9660196756243, - "y": 131.96586426976262 + "x": 361.96602, + "y": 131.96586 }, { "body": null, "index": 6, "isInternal": false, - "x": 354.43701967562436, - "y": 132.87986426976292 + "x": 354.43702, + "y": 132.87986 }, { "body": null, "index": 7, "isInternal": false, - "x": 346.9080196756243, - "y": 131.96586426976322 + "x": 346.90802, + "y": 131.96586 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.8170196756242, - "y": 129.27686426976345 + "x": 339.81702, + "y": 129.27686 }, { "body": null, "index": 9, "isInternal": false, - "x": 333.5760196756239, - "y": 124.9688642697637 + "x": 333.57602, + "y": 124.96886 }, { "body": null, "index": 10, "isInternal": false, - "x": 328.54701967562386, - "y": 119.29186426976386 + "x": 328.54702, + "y": 119.29186 }, { "body": null, "index": 11, "isInternal": false, - "x": 325.0220196756236, - "y": 112.57686426976402 + "x": 325.02202, + "y": 112.57686 }, { "body": null, "index": 12, "isInternal": false, - "x": 323.20701967562326, - "y": 105.21286426976407 + "x": 323.20702, + "y": 105.21286 }, { "body": null, "index": 13, "isInternal": false, - "x": 323.20701967562303, - "y": 97.62886426976407 + "x": 323.20702, + "y": 97.62886 }, { "body": null, "index": 14, "isInternal": false, - "x": 325.0220196756227, - "y": 90.264864269764 + "x": 325.02202, + "y": 90.26486 }, { "body": null, "index": 15, "isInternal": false, - "x": 328.5470196756225, - "y": 83.54986426976387 + "x": 328.54702, + "y": 83.54986 }, { "body": null, "index": 16, "isInternal": false, - "x": 333.57601967562243, - "y": 77.8728642697637 + "x": 333.57602, + "y": 77.87286 }, { "body": null, "index": 17, "isInternal": false, - "x": 339.81701967562213, - "y": 73.56486426976343 + "x": 339.81702, + "y": 73.56486 }, { "body": null, "index": 18, "isInternal": false, - "x": 346.90801967562203, - "y": 70.87586426976318 + "x": 346.90802, + "y": 70.87586 }, { "body": null, "index": 19, "isInternal": false, - "x": 354.43701967562197, - "y": 69.9618642697629 + "x": 354.43702, + "y": 69.96186 }, { "body": null, "index": 20, "isInternal": false, - "x": 361.966019675622, - "y": 70.87586426976264 + "x": 361.96602, + "y": 70.87586 }, { "body": null, "index": 21, "isInternal": false, - "x": 369.05701967562214, - "y": 73.56486426976237 + "x": 369.05702, + "y": 73.56486 }, { "body": null, "index": 22, "isInternal": false, - "x": 375.2980196756224, - "y": 77.87286426976213 + "x": 375.29802, + "y": 77.87286 }, { "body": null, "index": 23, "isInternal": false, - "x": 380.32701967562247, - "y": 83.54986426976197 + "x": 380.32702, + "y": 83.54986 }, { "body": null, "index": 24, "isInternal": false, - "x": 383.8520196756227, - "y": 90.26486426976182 + "x": 383.85202, + "y": 90.26486 }, { "body": null, "index": 25, "isInternal": false, - "x": 385.66701967562307, - "y": 97.62886426976176 + "x": 385.66702, + "y": 97.62886 }, { - "angle": 3.1270943006816335e-14, - "anglePrev": 1.139144336234155e-15, - "angularSpeed": 3.0189439393504445e-14, - "angularVelocity": 3.063512688957546e-14, - "area": 1329.4167625219097, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1329.41676, "axes": { "#": 291 }, @@ -2734,13 +2734,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2762,7 +2762,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150365305, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2783,12 +2783,12 @@ } ], { - "x": -3.1270943006816335e-14, + "x": 0, "y": 1 }, { "x": -1, - "y": -3.1270943006816335e-14 + "y": 0 }, { "max": { @@ -2799,12 +2799,12 @@ } }, { - "x": 433.5840495877597, - "y": 97.28102533816305 + "x": 433.58405, + "y": 97.28103 }, { - "x": 384.80640041080363, - "y": 67.11912499349533 + "x": 384.8064, + "y": 67.11912 }, { "category": 1, @@ -2821,16 +2821,16 @@ "y": 0 }, { - "x": 409.19522499928144, - "y": 80.74643980831094 + "x": 409.19522, + "y": 80.74644 }, { "x": 0, "y": 0 }, { - "x": 409.19522499928104, - "y": 77.83916909327442 + "x": 409.19522, + "y": 77.83917 }, { "endCol": 9, @@ -2853,8 +2853,8 @@ "yScale": 1 }, { - "x": 3.979039320256561e-13, - "y": 2.9072707150365034 + "x": 0, + "y": 2.90727 }, [ { @@ -2874,36 +2874,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 384.80640041080454, - "y": 67.11912499349533 + "x": 384.8064, + "y": 67.11912 }, { "body": null, "index": 1, "isInternal": false, - "x": 433.58404958775924, - "y": 67.11912499349688 + "x": 433.58405, + "y": 67.11912 }, { "body": null, "index": 2, "isInternal": false, - "x": 433.58404958775833, - "y": 94.37375462312652 + "x": 433.58405, + "y": 94.37375 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.80640041080363, - "y": 94.37375462312498 + "x": 384.8064, + "y": 94.37375 }, { - "angle": 2.724524244792797e-13, - "anglePrev": 2.2058148727003345e-13, - "angularSpeed": 5.187093720924626e-14, - "angularVelocity": 5.187093720924626e-14, - "area": 2858.632357296012, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2858.63236, "axes": { "#": 313 }, @@ -2924,13 +2924,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -2952,7 +2952,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150385986, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2973,12 +2973,12 @@ } ], { - "x": -2.724524244792797e-13, + "x": 0, "y": 1 }, { "x": -1, - "y": -2.724524244792797e-13 + "y": 0 }, { "max": { @@ -2989,12 +2989,12 @@ } }, { - "x": 542.7594267767965, - "y": 93.99677157089602 + "x": 542.75943, + "y": 93.99677 }, { - "x": 433.90483144071266, - "y": 67.73575476702547 + "x": 433.90483, + "y": 67.73575 }, { "category": 1, @@ -3011,16 +3011,16 @@ "y": 0 }, { - "x": 488.33212910875466, - "y": 80.86626316896076 + "x": 488.33213, + "y": 80.86626 }, { "x": 0, "y": 0 }, { - "x": 488.33212910875477, - "y": 77.95899245392216 + "x": 488.33213, + "y": 77.95899 }, { "endCol": 11, @@ -3043,8 +3043,8 @@ "yScale": 1 }, { - "x": -1.1254996934439987e-13, - "y": 2.9072707150385986 + "x": 0, + "y": 2.90727 }, [ { @@ -3064,36 +3064,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 433.9048314407198, - "y": 67.73575476702547 + "x": 433.90483, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 542.7594267767965, - "y": 67.73575476705516 + "x": 542.75943, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 542.7594267767895, - "y": 93.99677157089602 + "x": 542.75943, + "y": 93.99677 }, { "body": null, "index": 3, "isInternal": false, - "x": 433.90483144071266, - "y": 93.99677157086631 + "x": 433.90483, + "y": 93.99677 }, { - "angle": 4.6274066257391704e-11, - "anglePrev": 3.4965524074084626e-11, - "angularSpeed": 1.1308542183307076e-11, - "angularVelocity": 1.1308542183307076e-11, - "area": 926.8394636035856, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.83946, "axes": { "#": 335 }, @@ -3114,13 +3114,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3142,7 +3142,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707154143185, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3163,12 +3163,12 @@ } ], { - "x": -4.6274066257391704e-11, + "x": 0, "y": 1 }, { "x": -1, - "y": -4.6274066257391704e-11 + "y": 0 }, { "max": { @@ -3179,12 +3179,12 @@ } }, { - "x": 581.6982079649686, - "y": 91.65062102459468 + "x": 581.69821, + "y": 91.65062 }, { - "x": 542.942420926825, - "y": 67.7357547676573 + "x": 542.94242, + "y": 67.73575 }, { "category": 1, @@ -3201,16 +3201,16 @@ "y": 0 }, { - "x": 562.3203144458968, - "y": 79.693187896126 + "x": 562.32031, + "y": 79.69319 }, { "x": 0, "y": 0 }, { - "x": 562.3203144459022, - "y": 76.78591718071169 + "x": 562.32031, + "y": 76.78592 }, { "endCol": 12, @@ -3233,8 +3233,8 @@ "yScale": 1 }, { - "x": -5.402398528531193e-12, - "y": 2.9072707154143185 + "x": 0, + "y": 2.90727 }, [ { @@ -3254,36 +3254,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 542.9424209279316, - "y": 67.7357547676573 + "x": 542.94242, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 581.6982079649686, - "y": 67.7357547694507 + "x": 581.69821, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 581.6982079638619, - "y": 91.65062102459468 + "x": 581.69821, + "y": 91.65062 }, { "body": null, "index": 3, "isInternal": false, - "x": 542.942420926825, - "y": 91.65062102280133 + "x": 542.94242, + "y": 91.65062 }, { - "angle": 5.778969774103411e-10, - "anglePrev": 3.8934966410839723e-10, - "angularSpeed": 1.8854731330194388e-10, - "angularVelocity": 1.8854731330194388e-10, - "area": 1290.4501361223834, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.45014, "axes": { "#": 357 }, @@ -3304,13 +3304,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3332,7 +3332,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707233708694, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3353,12 +3353,12 @@ } ], { - "x": -5.778969774103411e-10, + "x": 0, "y": 1 }, { "x": -1, - "y": -5.778969774103411e-10 + "y": 0 }, { "max": { @@ -3369,12 +3369,12 @@ } }, { - "x": 617.905126771844, - "y": 103.81175788879091 + "x": 617.90513, + "y": 103.81176 }, { - "x": 582.1348078209545, - "y": 67.7357547816996 + "x": 582.13481, + "y": 67.73575 }, { "category": 1, @@ -3391,16 +3391,16 @@ "y": 0 }, { - "x": 600.0199672963993, - "y": 85.77375633524524 + "x": 600.01997, + "y": 85.77376 }, { "x": 0, "y": 0 }, { - "x": 600.0199672964426, - "y": 82.86648561187437 + "x": 600.01997, + "y": 82.86649 }, { "endCol": 12, @@ -3423,8 +3423,8 @@ "yScale": 1 }, { - "x": -4.333173819759395e-11, - "y": 2.9072707233708694 + "x": 0, + "y": 2.90727 }, [ { @@ -3444,36 +3444,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 582.1348078418029, - "y": 67.7357547816996 + "x": 582.13481, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 617.905126771844, - "y": 67.73575480237113 + "x": 617.90513, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 617.9051267509957, - "y": 103.81175788879091 + "x": 617.90513, + "y": 103.81176 }, { "body": null, "index": 3, "isInternal": false, - "x": 582.1348078209545, - "y": 103.81175786811932 + "x": 582.13481, + "y": 103.81176 }, { - "angle": 5.956212439516393e-10, - "anglePrev": 3.995224559150968e-10, - "angularSpeed": 1.9609878803654246e-10, - "angularVelocity": 1.9609878803654246e-10, - "area": 1148.2925932011974, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.29259, "axes": { "#": 379 }, @@ -3494,13 +3494,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3522,7 +3522,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270705354363, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3543,12 +3543,12 @@ } ], { - "x": -5.956212439516393e-10, + "x": 0, "y": 1 }, { "x": -1, - "y": -5.956212439516393e-10 + "y": 0 }, { "max": { @@ -3559,12 +3559,12 @@ } }, { - "x": 651.7068713667743, - "y": 108.22430117226149 + "x": 651.70687, + "y": 108.2243 }, { - "x": 621.151958792897, - "y": 67.73575472854337 + "x": 621.15196, + "y": 67.73575 }, { "category": 1, @@ -3581,16 +3581,16 @@ "y": 0 }, { - "x": 636.4294150798091, - "y": 86.52639259772523 + "x": 636.42942, + "y": 86.52639 }, { - "x": 0.4879586224890938, - "y": 1.7661525060908387e-14 + "x": 0.48796, + "y": 0 }, { - "x": 636.4294150797562, - "y": 83.61912189237087 + "x": 636.42942, + "y": 83.61912 }, { "endCol": 13, @@ -3613,8 +3613,8 @@ "yScale": 1 }, { - "x": 5.301103556121234e-11, - "y": 2.907270705354363 + "x": 0, + "y": 2.90727 }, [ { @@ -3634,36 +3634,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 621.151958815281, - "y": 67.73575472854337 + "x": 621.15196, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 651.7068713667213, - "y": 67.7357547467425 + "x": 651.70687, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 651.7068713443373, - "y": 105.31703046690713 + "x": 651.70687, + "y": 105.31703 }, { "body": null, "index": 3, "isInternal": false, - "x": 621.151958792897, - "y": 105.31703044870797 + "x": 621.15196, + "y": 105.31703 }, { "angle": 0, - "anglePrev": -0.002944761536477951, + "anglePrev": -0.00294, "angularSpeed": 0, - "angularVelocity": 0.0022085711523584634, - "area": 1926.7878890000002, + "angularVelocity": 0.00221, + "area": 1926.78789, "axes": { "#": 401 }, @@ -3684,13 +3684,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3712,7 +3712,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3748,28 +3748,28 @@ } ], { - "x": 0.6234921001781484, - "y": 0.7818296496139309 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22251820971292155, - "y": 0.9749285339685962 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009815501548849, - "y": 0.43385740316433524 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009815501548849, - "y": -0.43385740316433524 + "x": -0.90098, + "y": -0.43386 }, { - "x": -0.22251820971292155, - "y": -0.9749285339685962 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234921001781484, - "y": -0.7818296496139309 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -3784,12 +3784,12 @@ } }, { - "x": 71.60503020064793, - "y": 208.22302548206167 + "x": 71.60503, + "y": 208.22303 }, { - "x": 21.162030200647923, - "y": 153.57575476702598 + "x": 21.16203, + "y": 153.57575 }, { "category": 1, @@ -3806,16 +3806,16 @@ "y": 0 }, { - "x": 47.69722133275702, - "y": 179.445754767026 + "x": 47.69722, + "y": 179.44575 }, { - "x": 1.1736736849064155, + "x": 1.17367, "y": 0 }, { - "x": 47.69722133275702, - "y": 176.67515265086743 + "x": 47.69722, + "y": 176.67515 }, { "endCol": 1, @@ -3839,7 +3839,7 @@ }, { "x": 0, - "y": 2.8047692658778374 + "y": 2.80477 }, [ { @@ -3868,57 +3868,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 71.60503020064793, - "y": 190.958754767026 + "x": 71.60503, + "y": 190.95875 }, { "body": null, "index": 1, "isInternal": false, - "x": 53.60203020064791, - "y": 205.315754767026 + "x": 53.60203, + "y": 205.31575 }, { "body": null, "index": 2, "isInternal": false, - "x": 31.15203020064792, - "y": 200.191754767026 + "x": 31.15203, + "y": 200.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 21.162030200647923, - "y": 179.445754767026 + "x": 21.16203, + "y": 179.44575 }, { "body": null, "index": 4, "isInternal": false, - "x": 31.15203020064792, - "y": 158.69975476702598 + "x": 31.15203, + "y": 158.69975 }, { "body": null, "index": 5, "isInternal": false, - "x": 53.60203020064791, - "y": 153.57575476702598 + "x": 53.60203, + "y": 153.57575 }, { "body": null, "index": 6, "isInternal": false, - "x": 71.60503020064793, - "y": 167.93275476702598 + "x": 71.60503, + "y": 167.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1097.755875, + "area": 1097.75588, "axes": { "#": 431 }, @@ -3939,13 +3939,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 927.6617490689248, - "inverseInertia": 0.0010779791243992539, - "inverseMass": 0.9109493492804126, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "inverseMass": 0.91095, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.097755875, + "mass": 1.09776, "motion": 0, "parent": null, "position": { @@ -3967,7 +3967,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3991,12 +3991,12 @@ } ], { - "x": -0.49999466010690446, - "y": 0.8660284867512045 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999466010690446, - "y": -0.8660284867512045 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -4011,12 +4011,12 @@ } }, { - "x": 135.0581670975326, - "y": 206.8330254820617 + "x": 135.05817, + "y": 206.83303 }, { - "x": 91.45316709753263, - "y": 153.575754767026 + "x": 91.45317, + "y": 153.57575 }, { "category": 1, @@ -4033,16 +4033,16 @@ "y": 0 }, { - "x": 120.52316709753262, - "y": 178.750754767026 + "x": 120.52317, + "y": 178.75075 }, { - "x": -0.08142826800548551, + "x": -0.08143, "y": 0 }, { - "x": 120.52316709753262, - "y": 175.84348405199032 + "x": 120.52317, + "y": 175.84348 }, { "endCol": 2, @@ -4066,7 +4066,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4083,29 +4083,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 135.0581670975326, - "y": 203.925754767026 + "x": 135.05817, + "y": 203.92575 }, { "body": null, "index": 1, "isInternal": false, - "x": 91.45316709753263, - "y": 178.750754767026 + "x": 91.45317, + "y": 178.75075 }, { "body": null, "index": 2, "isInternal": false, - "x": 135.0581670975326, - "y": 153.575754767026 + "x": 135.05817, + "y": 153.57575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 453 }, @@ -4126,13 +4126,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4154,7 +4154,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4184,20 +4184,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4212,12 +4212,12 @@ } }, { - "x": 174.72886866010404, - "y": 195.22902548206164 + "x": 174.72887, + "y": 195.22903 }, { - "x": 137.87886866010402, - "y": 153.57575476702596 + "x": 137.87887, + "y": 153.57575 }, { "category": 1, @@ -4234,16 +4234,16 @@ "y": 0 }, { - "x": 158.24891138027843, - "y": 172.94875476702597 + "x": 158.24891, + "y": 172.94875 }, { - "x": 0.021814475646813734, + "x": 0.02181, "y": 0 }, { - "x": 158.24891138027843, - "y": 170.0414840519903 + "x": 158.24891, + "y": 170.04148 }, { "endCol": 3, @@ -4267,7 +4267,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4290,43 +4290,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 174.72886866010404, - "y": 184.921754767026 + "x": 174.72887, + "y": 184.92175 }, { "body": null, "index": 1, "isInternal": false, - "x": 151.95386866010404, - "y": 192.32175476702596 + "x": 151.95387, + "y": 192.32175 }, { "body": null, "index": 2, "isInternal": false, - "x": 137.87886866010402, - "y": 172.94875476702597 + "x": 137.87887, + "y": 172.94875 }, { "body": null, "index": 3, "isInternal": false, - "x": 151.95386866010404, - "y": 153.57575476702596 + "x": 151.95387, + "y": 153.57575 }, { "body": null, "index": 4, "isInternal": false, - "x": 174.72886866010404, - "y": 160.975754767026 + "x": 174.72887, + "y": 160.97575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1201.454244, + "area": 1201.45424, "axes": { "#": 479 }, @@ -4347,13 +4347,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4375,7 +4375,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4412,12 +4412,12 @@ } }, { - "x": 211.840233827826, - "y": 191.14502548206164 + "x": 211.84023, + "y": 191.14503 }, { - "x": 177.17823382782603, - "y": 153.57575476702596 + "x": 177.17823, + "y": 153.57575 }, { "category": 1, @@ -4434,16 +4434,16 @@ "y": 0 }, { - "x": 194.50923382782602, - "y": 170.90675476702597 + "x": 194.50923, + "y": 170.90675 }, { - "x": 0.09930741871464581, + "x": 0.09931, "y": 0 }, { - "x": 194.50923382782602, - "y": 167.9994840519903 + "x": 194.50923, + "y": 167.99948 }, { "endCol": 4, @@ -4467,7 +4467,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4487,36 +4487,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 211.840233827826, - "y": 188.23775476702596 + "x": 211.84023, + "y": 188.23775 }, { "body": null, "index": 1, "isInternal": false, - "x": 177.17823382782603, - "y": 188.23775476702596 + "x": 177.17823, + "y": 188.23775 }, { "body": null, "index": 2, "isInternal": false, - "x": 177.17823382782603, - "y": 153.57575476702596 + "x": 177.17823, + "y": 153.57575 }, { "body": null, "index": 3, "isInternal": false, - "x": 211.840233827826, - "y": 153.57575476702596 + "x": 211.84023, + "y": 153.57575 }, { - "angle": 3.9974424435108666e-17, - "anglePrev": 1.7538705035440855e-17, - "angularSpeed": 2.2435719399667814e-17, - "angularVelocity": 2.2435719399667814e-17, - "area": 1990.733346252218, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1990.73335, "axes": { "#": 501 }, @@ -4537,13 +4537,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4565,7 +4565,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4586,12 +4586,12 @@ } ], { - "x": -3.9974424435108666e-17, + "x": 0, "y": 1 }, { "x": -1, - "y": -3.9974424435108666e-17 + "y": 0 }, { "max": { @@ -4602,12 +4602,12 @@ } }, { - "x": 307.34296051071, - "y": 180.32189202809863 + "x": 307.34296, + "y": 180.32189 }, { - "x": 212.51922937216403, - "y": 156.42057981786405 + "x": 212.51923, + "y": 156.42058 }, { "category": 1, @@ -4624,16 +4624,16 @@ "y": 0 }, { - "x": 259.93109494143704, - "y": 166.9176005654635 + "x": 259.93109, + "y": 166.9176 }, { "x": 0, - "y": 0.11534049587384015 + "y": 0.11534 }, { - "x": 259.93109494143704, - "y": 164.0103298504278 + "x": 259.93109, + "y": 164.01033 }, { "endCol": 6, @@ -4657,7 +4657,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4677,35 +4677,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 212.51922937216403, - "y": 156.42057981786405 + "x": 212.51923, + "y": 156.42058 }, { "body": null, "index": 1, "isInternal": false, - "x": 307.34296051071, - "y": 156.42057981786405 + "x": 307.34296, + "y": 156.42058 }, { "body": null, "index": 2, "isInternal": false, - "x": 307.34296051071, - "y": 177.41462131306295 + "x": 307.34296, + "y": 177.41462 }, { "body": null, "index": 3, "isInternal": false, - "x": 212.51922937216403, - "y": 177.41462131306295 + "x": 212.51923, + "y": 177.41462 }, { - "angle": 1.793205365100331e-17, - "anglePrev": 1.441736752030682e-17, - "angularSpeed": 3.514686130696492e-18, - "angularVelocity": 3.514686130696492e-18, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 7321.24308, "axes": { "#": 523 @@ -4713,7 +4713,7 @@ "bounds": { "#": 537 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 540 }, @@ -4728,13 +4728,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4756,7 +4756,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4810,56 +4810,56 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, - "y": 1.793205365100331e-17 + "y": 0 }, { "max": { @@ -4870,12 +4870,12 @@ } }, { - "x": 401.2838636848368, - "y": 251.4495581463108 + "x": 401.28386, + "y": 251.44956 }, { - "x": 304.9698636848368, - "y": 154.42955814631082 + "x": 304.96986, + "y": 154.42956 }, { "category": 1, @@ -4892,16 +4892,16 @@ "y": 0 }, { - "x": 353.1268636848368, - "y": 202.93955814631082 + "x": 353.12686, + "y": 202.93956 }, { "x": 0, "y": 0 }, { - "x": 353.1268636848368, - "y": 200.0322874312752 + "x": 353.12686, + "y": 200.03229 }, { "endCol": 8, @@ -4925,7 +4925,7 @@ }, { "x": 0, - "y": 2.90727071503563 + "y": 2.90727 }, [ { @@ -5011,190 +5011,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 401.2838636848368, - "y": 208.78655814631082 + "x": 401.28386, + "y": 208.78656 }, { "body": null, "index": 1, "isInternal": false, - "x": 398.4848636848368, - "y": 220.1415581463108 + "x": 398.48486, + "y": 220.14156 }, { "body": null, "index": 2, "isInternal": false, - "x": 393.0498636848368, - "y": 230.4965581463108 + "x": 393.04986, + "y": 230.49656 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.2948636848368, - "y": 239.25055814631082 + "x": 385.29486, + "y": 239.25056 }, { "body": null, "index": 4, "isInternal": false, - "x": 375.6708636848368, - "y": 245.89355814631082 + "x": 375.67086, + "y": 245.89356 }, { "body": null, "index": 5, "isInternal": false, - "x": 364.7358636848368, - "y": 250.04055814631081 + "x": 364.73586, + "y": 250.04056 }, { "body": null, "index": 6, "isInternal": false, - "x": 353.1268636848368, - "y": 251.4495581463108 + "x": 353.12686, + "y": 251.44956 }, { "body": null, "index": 7, "isInternal": false, - "x": 341.5178636848368, - "y": 250.04055814631081 + "x": 341.51786, + "y": 250.04056 }, { "body": null, "index": 8, "isInternal": false, - "x": 330.5828636848368, - "y": 245.89355814631082 + "x": 330.58286, + "y": 245.89356 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.9588636848368, - "y": 239.25055814631082 + "x": 320.95886, + "y": 239.25056 }, { "body": null, "index": 10, "isInternal": false, - "x": 313.2038636848368, - "y": 230.4965581463108 + "x": 313.20386, + "y": 230.49656 }, { "body": null, "index": 11, "isInternal": false, - "x": 307.7688636848368, - "y": 220.1415581463108 + "x": 307.76886, + "y": 220.14156 }, { "body": null, "index": 12, "isInternal": false, - "x": 304.9698636848368, - "y": 208.78655814631082 + "x": 304.96986, + "y": 208.78656 }, { "body": null, "index": 13, "isInternal": false, - "x": 304.9698636848368, - "y": 197.0925581463108 + "x": 304.96986, + "y": 197.09256 }, { "body": null, "index": 14, "isInternal": false, - "x": 307.7688636848368, - "y": 185.73755814631082 + "x": 307.76886, + "y": 185.73756 }, { "body": null, "index": 15, "isInternal": false, - "x": 313.2038636848368, - "y": 175.38255814631083 + "x": 313.20386, + "y": 175.38256 }, { "body": null, "index": 16, "isInternal": false, - "x": 320.9588636848368, - "y": 166.6285581463108 + "x": 320.95886, + "y": 166.62856 }, { "body": null, "index": 17, "isInternal": false, - "x": 330.5828636848368, - "y": 159.9855581463108 + "x": 330.58286, + "y": 159.98556 }, { "body": null, "index": 18, "isInternal": false, - "x": 341.5178636848368, - "y": 155.83855814631082 + "x": 341.51786, + "y": 155.83856 }, { "body": null, "index": 19, "isInternal": false, - "x": 353.1268636848368, - "y": 154.42955814631082 + "x": 353.12686, + "y": 154.42956 }, { "body": null, "index": 20, "isInternal": false, - "x": 364.7358636848368, - "y": 155.83855814631082 + "x": 364.73586, + "y": 155.83856 }, { "body": null, "index": 21, "isInternal": false, - "x": 375.6708636848368, - "y": 159.9855581463108 + "x": 375.67086, + "y": 159.98556 }, { "body": null, "index": 22, "isInternal": false, - "x": 385.2948636848368, - "y": 166.6285581463108 + "x": 385.29486, + "y": 166.62856 }, { "body": null, "index": 23, "isInternal": false, - "x": 393.0498636848368, - "y": 175.38255814631083 + "x": 393.04986, + "y": 175.38256 }, { "body": null, "index": 24, "isInternal": false, - "x": 398.4848636848368, - "y": 185.73755814631082 + "x": 398.48486, + "y": 185.73756 }, { "body": null, "index": 25, "isInternal": false, - "x": 401.2838636848368, - "y": 197.0925581463108 + "x": 401.28386, + "y": 197.09256 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 578 }, @@ -5215,13 +5215,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5243,7 +5243,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5280,12 +5280,12 @@ } }, { - "x": 480.4041790420924, - "y": 177.73221910173103 + "x": 480.40418, + "y": 177.73222 }, { - "x": 396.1714972862624, - "y": 153.57575476702596 + "x": 396.1715, + "y": 153.57575 }, { "category": 1, @@ -5302,16 +5302,16 @@ "y": 0 }, { - "x": 438.2878381641774, - "y": 165.6539869343785 + "x": 438.28784, + "y": 165.65399 }, { "x": 0, "y": 0 }, { - "x": 438.2878381641774, - "y": 162.74671621934283 + "x": 438.28784, + "y": 162.74672 }, { "endCol": 10, @@ -5335,7 +5335,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5355,36 +5355,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.1714972862624, - "y": 153.57575476702596 + "x": 396.1715, + "y": 153.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 480.4041790420924, - "y": 153.57575476702596 + "x": 480.40418, + "y": 153.57575 }, { "body": null, "index": 2, "isInternal": false, - "x": 480.4041790420924, - "y": 177.73221910173103 + "x": 480.40418, + "y": 177.73222 }, { "body": null, "index": 3, "isInternal": false, - "x": 396.1714972862624, - "y": 177.73221910173103 + "x": 396.1715, + "y": 177.73222 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 600 }, @@ -5405,13 +5405,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5433,7 +5433,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5470,12 +5470,12 @@ } }, { - "x": 529.7907531161663, - "y": 174.44085250365148 + "x": 529.79075, + "y": 174.44085 }, { - "x": 480.4041790420924, - "y": 153.57575476702598 + "x": 480.40418, + "y": 153.57575 }, { "category": 1, @@ -5492,16 +5492,16 @@ "y": 0 }, { - "x": 505.0974660791294, - "y": 164.00830363533873 + "x": 505.09747, + "y": 164.0083 }, { "x": 0, "y": 0 }, { - "x": 505.0974660791294, - "y": 161.10103292030306 + "x": 505.09747, + "y": 161.10103 }, { "endCol": 11, @@ -5525,7 +5525,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5545,43 +5545,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 480.4041790420924, - "y": 153.57575476702598 + "x": 480.40418, + "y": 153.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 529.7907531161663, - "y": 153.57575476702598 + "x": 529.79075, + "y": 153.57575 }, { "body": null, "index": 2, "isInternal": false, - "x": 529.7907531161663, - "y": 174.44085250365148 + "x": 529.79075, + "y": 174.44085 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.4041790420924, - "y": 174.44085250365148 + "x": 480.40418, + "y": 174.44085 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2157.165332, + "area": 2157.16533, "axes": { "#": 622 }, "bounds": { "#": 636 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 639 }, @@ -5596,13 +5596,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5624,7 +5624,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5678,52 +5678,52 @@ } ], { - "x": -0.9709433940705979, - "y": -0.2393092674984975 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854643472565572, - "y": -0.46470731620829797 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485032926619368, - "y": -0.6631310736756638 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680789542040116, - "y": -0.8229740590021511 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3546257389378823, - "y": -0.9350083343386629 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12050542549813427, - "y": -0.9927126686133876 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050542549813427, - "y": -0.9927126686133876 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546257389378823, - "y": -0.9350083343386629 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680789542040116, - "y": -0.8229740590021511 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485032926619368, - "y": -0.6631310736756638 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854643472565572, - "y": -0.46470731620829797 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709433940705979, - "y": -0.2393092674984975 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -5738,12 +5738,12 @@ } }, { - "x": 582.0707531161663, - "y": 206.23975476702597 + "x": 582.07075, + "y": 206.23975 }, { - "x": 529.7907531161663, - "y": 153.57575476702598 + "x": 529.79075, + "y": 153.57575 }, { "category": 1, @@ -5760,16 +5760,16 @@ "y": 0 }, { - "x": 555.9307531161663, - "y": 179.90775476702598 + "x": 555.93075, + "y": 179.90775 }, { "x": 0, "y": 0 }, { - "x": 555.9307531161663, - "y": 177.0004840519903 + "x": 555.93075, + "y": 177.00048 }, { "endCol": 12, @@ -5793,7 +5793,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5879,190 +5879,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 582.0707531161663, - "y": 183.08175476702598 + "x": 582.07075, + "y": 183.08175 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.5517531161663, - "y": 189.24475476702597 + "x": 580.55175, + "y": 189.24475 }, { "body": null, "index": 2, "isInternal": false, - "x": 577.6017531161664, - "y": 194.86575476702598 + "x": 577.60175, + "y": 194.86575 }, { "body": null, "index": 3, "isInternal": false, - "x": 573.3917531161663, - "y": 199.61775476702599 + "x": 573.39175, + "y": 199.61775 }, { "body": null, "index": 4, "isInternal": false, - "x": 568.1677531161663, - "y": 203.22375476702598 + "x": 568.16775, + "y": 203.22375 }, { "body": null, "index": 5, "isInternal": false, - "x": 562.2327531161664, - "y": 205.47475476702598 + "x": 562.23275, + "y": 205.47475 }, { "body": null, "index": 6, "isInternal": false, - "x": 555.9307531161663, - "y": 206.23975476702597 + "x": 555.93075, + "y": 206.23975 }, { "body": null, "index": 7, "isInternal": false, - "x": 549.6287531161663, - "y": 205.47475476702598 + "x": 549.62875, + "y": 205.47475 }, { "body": null, "index": 8, "isInternal": false, - "x": 543.6937531161664, - "y": 203.22375476702598 + "x": 543.69375, + "y": 203.22375 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.4697531161663, - "y": 199.61775476702599 + "x": 538.46975, + "y": 199.61775 }, { "body": null, "index": 10, "isInternal": false, - "x": 534.2597531161664, - "y": 194.86575476702598 + "x": 534.25975, + "y": 194.86575 }, { "body": null, "index": 11, "isInternal": false, - "x": 531.3097531161663, - "y": 189.24475476702597 + "x": 531.30975, + "y": 189.24475 }, { "body": null, "index": 12, "isInternal": false, - "x": 529.7907531161663, - "y": 183.08175476702598 + "x": 529.79075, + "y": 183.08175 }, { "body": null, "index": 13, "isInternal": false, - "x": 529.7907531161663, - "y": 176.73375476702597 + "x": 529.79075, + "y": 176.73375 }, { "body": null, "index": 14, "isInternal": false, - "x": 531.3097531161663, - "y": 170.57075476702596 + "x": 531.30975, + "y": 170.57075 }, { "body": null, "index": 15, "isInternal": false, - "x": 534.2597531161664, - "y": 164.94975476702598 + "x": 534.25975, + "y": 164.94975 }, { "body": null, "index": 16, "isInternal": false, - "x": 538.4697531161663, - "y": 160.19775476702597 + "x": 538.46975, + "y": 160.19775 }, { "body": null, "index": 17, "isInternal": false, - "x": 543.6937531161664, - "y": 156.59175476702598 + "x": 543.69375, + "y": 156.59175 }, { "body": null, "index": 18, "isInternal": false, - "x": 549.6287531161663, - "y": 154.34075476702597 + "x": 549.62875, + "y": 154.34075 }, { "body": null, "index": 19, "isInternal": false, - "x": 555.9307531161663, - "y": 153.57575476702598 + "x": 555.93075, + "y": 153.57575 }, { "body": null, "index": 20, "isInternal": false, - "x": 562.2327531161664, - "y": 154.34075476702597 + "x": 562.23275, + "y": 154.34075 }, { "body": null, "index": 21, "isInternal": false, - "x": 568.1677531161663, - "y": 156.59175476702598 + "x": 568.16775, + "y": 156.59175 }, { "body": null, "index": 22, "isInternal": false, - "x": 573.3917531161663, - "y": 160.19775476702597 + "x": 573.39175, + "y": 160.19775 }, { "body": null, "index": 23, "isInternal": false, - "x": 577.6017531161664, - "y": 164.94975476702598 + "x": 577.60175, + "y": 164.94975 }, { "body": null, "index": 24, "isInternal": false, - "x": 580.5517531161663, - "y": 170.57075476702596 + "x": 580.55175, + "y": 170.57075 }, { "body": null, "index": 25, "isInternal": false, - "x": 582.0707531161663, - "y": 176.73375476702597 + "x": 582.07075, + "y": 176.73375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2399.6281959999997, + "area": 2399.6282, "axes": { "#": 677 }, @@ -6083,13 +6083,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6111,7 +6111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6148,12 +6148,12 @@ } }, { - "x": 631.0567531161664, - "y": 202.56175476702597 + "x": 631.05675, + "y": 202.56175 }, { - "x": 582.0707531161663, - "y": 153.57575476702598 + "x": 582.07075, + "y": 153.57575 }, { "category": 1, @@ -6170,16 +6170,16 @@ "y": 0 }, { - "x": 606.5637531161664, - "y": 178.06875476702598 + "x": 606.56375, + "y": 178.06875 }, { "x": 0, "y": 0 }, { - "x": 606.5637531161664, - "y": 175.1614840519903 + "x": 606.56375, + "y": 175.16148 }, { "endCol": 13, @@ -6203,7 +6203,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6223,36 +6223,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.0567531161664, - "y": 202.56175476702597 + "x": 631.05675, + "y": 202.56175 }, { "body": null, "index": 1, "isInternal": false, - "x": 582.0707531161663, - "y": 202.56175476702597 + "x": 582.07075, + "y": 202.56175 }, { "body": null, "index": 2, "isInternal": false, - "x": 582.0707531161663, - "y": 153.57575476702598 + "x": 582.07075, + "y": 153.57575 }, { "body": null, "index": 3, "isInternal": false, - "x": 631.0567531161664, - "y": 153.57575476702598 + "x": 631.05675, + "y": 153.57575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 699 }, @@ -6273,13 +6273,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6301,7 +6301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6338,12 +6338,12 @@ } }, { - "x": 666.4696903589647, - "y": 195.64468480817825 + "x": 666.46969, + "y": 195.64468 }, { - "x": 631.0567531161664, - "y": 153.57575476702598 + "x": 631.05675, + "y": 153.57575 }, { "category": 1, @@ -6360,16 +6360,16 @@ "y": 0 }, { - "x": 648.7632217375656, - "y": 174.61021978760212 + "x": 648.76322, + "y": 174.61022 }, { "x": 0, "y": 0 }, { - "x": 648.7632217375656, - "y": 171.70294907256644 + "x": 648.76322, + "y": 171.70295 }, { "endCol": 13, @@ -6393,7 +6393,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6413,36 +6413,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.0567531161664, - "y": 153.57575476702598 + "x": 631.05675, + "y": 153.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 666.4696903589647, - "y": 153.57575476702598 + "x": 666.46969, + "y": 153.57575 }, { "body": null, "index": 2, "isInternal": false, - "x": 666.4696903589647, - "y": 195.64468480817825 + "x": 666.46969, + "y": 195.64468 }, { "body": null, "index": 3, "isInternal": false, - "x": 631.0567531161664, - "y": 195.64468480817825 + "x": 631.05675, + "y": 195.64468 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 721 }, @@ -6463,13 +6463,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6491,7 +6491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6528,12 +6528,12 @@ } }, { - "x": 708.2335792478536, - "y": 195.8459450962441 + "x": 708.23358, + "y": 195.84595 }, { - "x": 666.4696903589647, - "y": 153.57575476702598 + "x": 666.46969, + "y": 153.57575 }, { "category": 1, @@ -6550,16 +6550,16 @@ "y": 0 }, { - "x": 687.3516348034092, - "y": 174.71084993163504 + "x": 687.35163, + "y": 174.71085 }, { "x": 0, "y": 0 }, { - "x": 687.3516348034092, - "y": 171.80357921659936 + "x": 687.35163, + "y": 171.80358 }, { "endCol": 14, @@ -6583,7 +6583,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6603,36 +6603,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 666.4696903589647, - "y": 153.57575476702598 + "x": 666.46969, + "y": 153.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 708.2335792478536, - "y": 153.57575476702598 + "x": 708.23358, + "y": 153.57575 }, { "body": null, "index": 2, "isInternal": false, - "x": 708.2335792478536, - "y": 195.8459450962441 + "x": 708.23358, + "y": 195.84595 }, { "body": null, "index": 3, "isInternal": false, - "x": 666.4696903589647, - "y": 195.8459450962441 + "x": 666.46969, + "y": 195.84595 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1919.5457599999997, + "area": 1919.54576, "axes": { "#": 743 }, @@ -6653,13 +6653,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6681,7 +6681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6705,12 +6705,12 @@ } ], { - "x": -0.4999772266722585, - "y": -0.8660385515721092 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999772266722585, - "y": -0.8660385515721092 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -6725,12 +6725,12 @@ } }, { - "x": 97.07999999999998, - "y": 304.95775476702494 + "x": 97.08, + "y": 304.95775 }, { - "x": 49.99999999999999, - "y": 250.59575476702506 + "x": 50, + "y": 250.59575 }, { "category": 1, @@ -6747,16 +6747,16 @@ "y": 0 }, { - "x": 73.53999999999999, - "y": 277.77675476702495 + "x": 73.54, + "y": 277.77675 }, { "x": 0, "y": 0 }, { - "x": 73.53999999999999, - "y": 274.8694840519894 + "x": 73.54, + "y": 274.86948 }, { "endCol": 2, @@ -6780,7 +6780,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6806,50 +6806,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 97.07999999999998, - "y": 291.36775476702496 + "x": 97.08, + "y": 291.36775 }, { "body": null, "index": 1, "isInternal": false, - "x": 73.53999999999999, - "y": 304.95775476702494 + "x": 73.54, + "y": 304.95775 }, { "body": null, "index": 2, "isInternal": false, - "x": 49.99999999999999, - "y": 291.36775476702496 + "x": 50, + "y": 291.36775 }, { "body": null, "index": 3, "isInternal": false, - "x": 49.99999999999999, - "y": 264.18575476702506 + "x": 50, + "y": 264.18575 }, { "body": null, "index": 4, "isInternal": false, - "x": 73.53999999999999, - "y": 250.59575476702506 + "x": 73.54, + "y": 250.59575 }, { "body": null, "index": 5, "isInternal": false, - "x": 97.07999999999998, - "y": 264.18575476702506 + "x": 97.08, + "y": 264.18575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6052.328004, + "area": 6052.328, "axes": { "#": 768 }, @@ -6870,13 +6870,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -6898,7 +6898,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6922,12 +6922,12 @@ } ], { - "x": -0.4999896834528559, - "y": -0.8660313599637792 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999896834528559, - "y": -0.8660313599637792 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -6943,11 +6943,11 @@ }, { "x": 180.678, - "y": 347.12575476702494 + "y": 347.12575 }, { - "x": 97.07999999999998, - "y": 250.59575476702506 + "x": 97.08, + "y": 250.59575 }, { "category": 1, @@ -6965,7 +6965,7 @@ }, { "x": 138.879, - "y": 298.86075476702496 + "y": 298.86075 }, { "x": 0, @@ -6973,7 +6973,7 @@ }, { "x": 138.879, - "y": 295.9534840519894 + "y": 295.95348 }, { "endCol": 3, @@ -6997,7 +6997,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7024,49 +7024,49 @@ "index": 0, "isInternal": false, "x": 180.678, - "y": 322.993754767025 + "y": 322.99375 }, { "body": null, "index": 1, "isInternal": false, "x": 138.879, - "y": 347.12575476702494 + "y": 347.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 97.07999999999998, - "y": 322.993754767025 + "x": 97.08, + "y": 322.99375 }, { "body": null, "index": 3, "isInternal": false, - "x": 97.07999999999998, - "y": 274.7277547670249 + "x": 97.08, + "y": 274.72775 }, { "body": null, "index": 4, "isInternal": false, "x": 138.879, - "y": 250.59575476702506 + "y": 250.59575 }, { "body": null, "index": 5, "isInternal": false, "x": 180.678, - "y": 274.7277547670249 + "y": 274.72775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 793 }, @@ -7087,13 +7087,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7115,7 +7115,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7152,12 +7152,12 @@ } }, { - "x": 225.82936316872429, - "y": 299.7642218452142 + "x": 225.82936, + "y": 299.76422 }, { "x": 180.678, - "y": 250.59575476702506 + "y": 250.59575 }, { "category": 1, @@ -7174,16 +7174,16 @@ "y": 0 }, { - "x": 203.25368158436214, - "y": 275.1799883061196 + "x": 203.25368, + "y": 275.17999 }, { "x": 0, "y": 0 }, { - "x": 203.25368158436214, - "y": 272.272717591084 + "x": 203.25368, + "y": 272.27272 }, { "endCol": 4, @@ -7207,7 +7207,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7228,35 +7228,35 @@ "index": 0, "isInternal": false, "x": 180.678, - "y": 250.59575476702506 + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 225.82936316872429, - "y": 250.59575476702506 + "x": 225.82936, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.82936316872429, - "y": 299.7642218452142 + "x": 225.82936, + "y": 299.76422 }, { "body": null, "index": 3, "isInternal": false, "x": 180.678, - "y": 299.7642218452142 + "y": 299.76422 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2601.1074479999997, + "area": 2601.10745, "axes": { "#": 815 }, @@ -7277,13 +7277,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7305,7 +7305,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7329,12 +7329,12 @@ } ], { - "x": -0.4999869137730785, - "y": -0.8660329589892477 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999869137730785, - "y": -0.8660329589892477 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7349,12 +7349,12 @@ } }, { - "x": 280.63336316872426, - "y": 313.8777547670249 + "x": 280.63336, + "y": 313.87775 }, { - "x": 225.82936316872429, - "y": 250.59575476702506 + "x": 225.82936, + "y": 250.59575 }, { "category": 1, @@ -7371,16 +7371,16 @@ "y": 0 }, { - "x": 253.23136316872427, - "y": 282.23675476702493 + "x": 253.23136, + "y": 282.23675 }, { "x": 0, "y": 0 }, { - "x": 253.23136316872427, - "y": 279.32948405198937 + "x": 253.23136, + "y": 279.32948 }, { "endCol": 5, @@ -7404,7 +7404,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7430,50 +7430,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 280.63336316872426, - "y": 298.05775476702496 + "x": 280.63336, + "y": 298.05775 }, { "body": null, "index": 1, "isInternal": false, - "x": 253.23136316872427, - "y": 313.8777547670249 + "x": 253.23136, + "y": 313.87775 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.82936316872429, - "y": 298.05775476702496 + "x": 225.82936, + "y": 298.05775 }, { "body": null, "index": 3, "isInternal": false, - "x": 225.82936316872429, - "y": 266.4157547670251 + "x": 225.82936, + "y": 266.41575 }, { "body": null, "index": 4, "isInternal": false, - "x": 253.23136316872427, - "y": 250.59575476702506 + "x": 253.23136, + "y": 250.59575 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.63336316872426, - "y": 266.4157547670251 + "x": 280.63336, + "y": 266.41575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1413.3088360000002, + "area": 1413.30884, "axes": { "#": 840 }, @@ -7494,13 +7494,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7522,7 +7522,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7559,12 +7559,12 @@ } }, { - "x": 318.2273631687243, - "y": 288.1897547670258 + "x": 318.22736, + "y": 288.18975 }, { - "x": 280.63336316872426, - "y": 250.5957547670259 + "x": 280.63336, + "y": 250.59575 }, { "category": 1, @@ -7581,16 +7581,16 @@ "y": 0 }, { - "x": 299.4303631687243, - "y": 269.3927547670259 + "x": 299.43036, + "y": 269.39275 }, { "x": 0, "y": 0 }, { - "x": 299.4303631687243, - "y": 266.4854840519902 + "x": 299.43036, + "y": 266.48548 }, { "endCol": 6, @@ -7614,7 +7614,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -7634,36 +7634,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.2273631687243, - "y": 288.1897547670258 + "x": 318.22736, + "y": 288.18975 }, { "body": null, "index": 1, "isInternal": false, - "x": 280.63336316872426, - "y": 288.1897547670258 + "x": 280.63336, + "y": 288.18975 }, { "body": null, "index": 2, "isInternal": false, - "x": 280.63336316872426, - "y": 250.5957547670259 + "x": 280.63336, + "y": 250.59575 }, { "body": null, "index": 3, "isInternal": false, - "x": 318.2273631687243, - "y": 250.5957547670259 + "x": 318.22736, + "y": 250.59575 }, { - "angle": 4.370865055920414e-16, - "anglePrev": 3.5141746237941473e-16, - "angularSpeed": 8.566904321262666e-17, - "angularVelocity": 8.566904321262666e-17, - "area": 5460.808751999999, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5460.80875, "axes": { "#": 862 }, @@ -7684,13 +7684,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7712,7 +7712,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7736,16 +7736,16 @@ } ], { - "x": -0.4999981172696017, - "y": -0.8660264907766121 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.49999811726960225, - "y": -0.8660264907766121 + "x": 0.5, + "y": -0.86603 }, { "x": 1, - "y": 4.370865055920414e-16 + "y": 0 }, { "max": { @@ -7756,12 +7756,12 @@ } }, { - "x": 398.510305394171, - "y": 352.40382909824996 + "x": 398.51031, + "y": 352.40383 }, { - "x": 319.10230539417097, - "y": 257.8045583832145 + "x": 319.10231, + "y": 257.80456 }, { "category": 1, @@ -7778,16 +7778,16 @@ "y": 0 }, { - "x": 358.806305394171, - "y": 303.6505583832144 + "x": 358.80631, + "y": 303.65056 }, { - "x": 0.06216954385340654, - "y": 0.5122258584770738 + "x": 0.06217, + "y": 0.51223 }, { - "x": 358.806305394171, - "y": 300.74328766817877 + "x": 358.80631, + "y": 300.74329 }, { "endCol": 8, @@ -7811,7 +7811,7 @@ }, { "x": 0, - "y": 2.907270715035602 + "y": 2.90727 }, [ { @@ -7837,50 +7837,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 398.510305394171, - "y": 326.5735583832144 + "x": 398.51031, + "y": 326.57356 }, { "body": null, "index": 1, "isInternal": false, - "x": 358.806305394171, - "y": 349.49655838321434 + "x": 358.80631, + "y": 349.49656 }, { "body": null, "index": 2, "isInternal": false, - "x": 319.10230539417097, - "y": 326.5735583832144 + "x": 319.10231, + "y": 326.57356 }, { "body": null, "index": 3, "isInternal": false, - "x": 319.10230539417097, - "y": 280.7275583832144 + "x": 319.10231, + "y": 280.72756 }, { "body": null, "index": 4, "isInternal": false, - "x": 358.806305394171, - "y": 257.8045583832145 + "x": 358.80631, + "y": 257.80456 }, { "body": null, "index": 5, "isInternal": false, - "x": 398.510305394171, - "y": 280.7275583832144 + "x": 398.51031, + "y": 280.72756 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 887 }, @@ -7901,13 +7901,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -7929,7 +7929,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035714, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7966,12 +7966,12 @@ } }, { - "x": 417.80588786008235, - "y": 272.9855438616762 + "x": 417.80589, + "y": 272.98554 }, { - "x": 397.6353631687243, - "y": 250.59575476702602 + "x": 397.63536, + "y": 250.59575 }, { "category": 1, @@ -7988,16 +7988,16 @@ "y": 0 }, { - "x": 407.7206255144033, - "y": 261.7906493143512 + "x": 407.72063, + "y": 261.79065 }, { "x": 0, "y": 0 }, { - "x": 407.7206255144033, - "y": 258.88337859931545 + "x": 407.72063, + "y": 258.88338 }, { "endCol": 8, @@ -8021,7 +8021,7 @@ }, { "x": 0, - "y": 2.907270715035714 + "y": 2.90727 }, [ { @@ -8041,36 +8041,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.6353631687243, - "y": 250.59575476702602 + "x": 397.63536, + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 417.80588786008235, - "y": 250.59575476702602 + "x": 417.80589, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 417.80588786008235, - "y": 272.9855438616762 + "x": 417.80589, + "y": 272.98554 }, { "body": null, "index": 3, "isInternal": false, - "x": 397.6353631687243, - "y": 272.9855438616762 + "x": 397.63536, + "y": 272.98554 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 909 }, @@ -8091,13 +8091,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -8119,7 +8119,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8156,12 +8156,12 @@ } }, { - "x": 519.6390497256516, - "y": 280.26859427319874 + "x": 519.63905, + "y": 280.26859 }, { - "x": 417.80588786008235, - "y": 250.59575476702594 + "x": 417.80589, + "y": 250.59575 }, { "category": 1, @@ -8178,16 +8178,16 @@ "y": 0 }, { - "x": 468.722468792867, - "y": 265.43217452011237 + "x": 468.72247, + "y": 265.43217 }, { "x": 0, "y": 0 }, { - "x": 468.722468792867, - "y": 262.5249038050767 + "x": 468.72247, + "y": 262.5249 }, { "endCol": 10, @@ -8211,7 +8211,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -8231,36 +8231,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.80588786008235, - "y": 250.59575476702594 + "x": 417.80589, + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 519.6390497256516, - "y": 250.59575476702594 + "x": 519.63905, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 519.6390497256516, - "y": 280.26859427319874 + "x": 519.63905, + "y": 280.26859 }, { "body": null, "index": 3, "isInternal": false, - "x": 417.80588786008235, - "y": 280.26859427319874 + "x": 417.80589, + "y": 280.26859 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 931 }, @@ -8281,13 +8281,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8309,7 +8309,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8346,12 +8346,12 @@ } }, { - "x": 559.7105517832647, - "y": 271.97602740077076 + "x": 559.71055, + "y": 271.97603 }, { - "x": 519.6390497256516, - "y": 250.59575476702597 + "x": 519.63905, + "y": 250.59575 }, { "category": 1, @@ -8368,16 +8368,16 @@ "y": 0 }, { - "x": 539.6748007544581, - "y": 261.2858910838984 + "x": 539.6748, + "y": 261.28589 }, { "x": 0, "y": 0 }, { - "x": 539.6748007544581, - "y": 258.3786203688627 + "x": 539.6748, + "y": 258.37862 }, { "endCol": 11, @@ -8401,7 +8401,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8421,36 +8421,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 519.6390497256516, - "y": 250.59575476702597 + "x": 519.63905, + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 559.7105517832647, - "y": 250.59575476702597 + "x": 559.71055, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 559.7105517832647, - "y": 271.97602740077076 + "x": 559.71055, + "y": 271.97603 }, { "body": null, "index": 3, "isInternal": false, - "x": 519.6390497256516, - "y": 271.97602740077076 + "x": 519.63905, + "y": 271.97603 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 953 }, @@ -8471,13 +8471,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8499,7 +8499,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8526,16 +8526,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8550,12 +8550,12 @@ } }, { - "x": 629.9625517832646, - "y": 320.8477547670249 + "x": 629.96255, + "y": 320.84775 }, { - "x": 559.7105517832647, - "y": 250.59575476702506 + "x": 559.71055, + "y": 250.59575 }, { "category": 1, @@ -8572,16 +8572,16 @@ "y": 0 }, { - "x": 594.8365517832647, - "y": 285.72175476702495 + "x": 594.83655, + "y": 285.72175 }, { "x": 0, "y": 0 }, { - "x": 594.8365517832647, - "y": 282.8144840519894 + "x": 594.83655, + "y": 282.81448 }, { "endCol": 13, @@ -8605,7 +8605,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8637,64 +8637,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 629.9625517832646, - "y": 300.27175476702496 + "x": 629.96255, + "y": 300.27175 }, { "body": null, "index": 1, "isInternal": false, - "x": 609.3865517832646, - "y": 320.8477547670249 + "x": 609.38655, + "y": 320.84775 }, { "body": null, "index": 2, "isInternal": false, - "x": 580.2865517832647, - "y": 320.8477547670249 + "x": 580.28655, + "y": 320.84775 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.7105517832647, - "y": 300.27175476702496 + "x": 559.71055, + "y": 300.27175 }, { "body": null, "index": 4, "isInternal": false, - "x": 559.7105517832647, - "y": 271.171754767025 + "x": 559.71055, + "y": 271.17175 }, { "body": null, "index": 5, "isInternal": false, - "x": 580.2865517832647, - "y": 250.59575476702506 + "x": 580.28655, + "y": 250.59575 }, { "body": null, "index": 6, "isInternal": false, - "x": 609.3865517832646, - "y": 250.59575476702506 + "x": 609.38655, + "y": 250.59575 }, { "body": null, "index": 7, "isInternal": false, - "x": 629.9625517832646, - "y": 271.171754767025 + "x": 629.96255, + "y": 271.17175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 981 }, @@ -8715,13 +8715,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8743,7 +8743,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035714, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8780,12 +8780,12 @@ } }, { - "x": 719.4668384773661, - "y": 272.55160181778047 + "x": 719.46684, + "y": 272.5516 }, { - "x": 629.9625517832646, - "y": 250.59575476702602 + "x": 629.96255, + "y": 250.59575 }, { "category": 1, @@ -8802,16 +8802,16 @@ "y": 0 }, { - "x": 674.7146951303154, - "y": 261.5736782924033 + "x": 674.7147, + "y": 261.57368 }, { "x": 0, "y": 0 }, { - "x": 674.7146951303154, - "y": 258.6664075773676 + "x": 674.7147, + "y": 258.66641 }, { "endCol": 14, @@ -8835,7 +8835,7 @@ }, { "x": 0, - "y": 2.907270715035714 + "y": 2.90727 }, [ { @@ -8855,36 +8855,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 629.9625517832646, - "y": 250.59575476702602 + "x": 629.96255, + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 719.4668384773661, - "y": 250.59575476702602 + "x": 719.46684, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 719.4668384773661, - "y": 272.55160181778047 + "x": 719.46684, + "y": 272.5516 }, { "body": null, "index": 3, "isInternal": false, - "x": 629.9625517832646, - "y": 272.55160181778047 + "x": 629.96255, + "y": 272.5516 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1492.5256200000001, + "area": 1492.52562, "axes": { "#": 1003 }, @@ -8905,13 +8905,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1714.8324723309402, - "inverseInertia": 0.0005831473430408735, - "inverseMass": 0.6700052492231255, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "inverseMass": 0.67001, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.49252562, + "mass": 1.49253, "motion": 0, "parent": null, "position": { @@ -8933,7 +8933,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8957,12 +8957,12 @@ } ], { - "x": -0.5000025921589079, - "y": 0.8660239071956228 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000025921589079, - "y": -0.8660239071956228 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -8977,12 +8977,12 @@ } }, { - "x": 761.8368384773661, - "y": 309.3057547670249 + "x": 761.83684, + "y": 309.30575 }, { - "x": 710.9928384773661, - "y": 250.59575476702506 + "x": 710.99284, + "y": 250.59575 }, { "category": 1, @@ -8999,16 +8999,16 @@ "y": 0 }, { - "x": 744.8888384773661, - "y": 279.95075476702493 + "x": 744.88884, + "y": 279.95075 }, { "x": 0, "y": 0 }, { - "x": 744.8888384773661, - "y": 277.04348405198937 + "x": 744.88884, + "y": 277.04348 }, { "endCol": 15, @@ -9032,7 +9032,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9049,22 +9049,22 @@ "body": null, "index": 0, "isInternal": false, - "x": 761.8368384773661, - "y": 309.3057547670249 + "x": 761.83684, + "y": 309.30575 }, { "body": null, "index": 1, "isInternal": false, - "x": 710.9928384773661, - "y": 279.95075476702493 + "x": 710.99284, + "y": 279.95075 }, { "body": null, "index": 2, "isInternal": false, - "x": 761.8368384773661, - "y": 250.59575476702506 + "x": 761.83684, + "y": 250.59575 }, [], [], diff --git a/test/browser/refs/newtonsCradle/newtonsCradle-0.json b/test/browser/refs/newtonsCradle/newtonsCradle-0.json index cb2db661..9fbe228c 100644 --- a/test/browser/refs/newtonsCradle/newtonsCradle-0.json +++ b/test/browser/refs/newtonsCradle/newtonsCradle-0.json @@ -897,7 +897,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 93 }, @@ -920,12 +920,12 @@ "frictionStatic": 0.5, "id": 5, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -998,52 +998,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1193,41 +1193,41 @@ "index": 0, "isInternal": false, "x": 129.781, - "y": 203.61599999999999 + "y": 203.616 }, { "body": null, "index": 1, "isInternal": false, "x": 128.05, - "y": 210.63799999999998 + "y": 210.638 }, { "body": null, "index": 2, "isInternal": false, "x": 124.69, - "y": 217.04200000000003 + "y": 217.042 }, { "body": null, "index": 3, "isInternal": false, "x": 119.894, - "y": 222.45499999999998 + "y": 222.455 }, { "body": null, "index": 4, "isInternal": false, - "x": 113.94200000000001, - "y": 226.56400000000002 + "x": 113.942, + "y": 226.564 }, { "body": null, "index": 5, "isInternal": false, - "x": 107.17899999999997, + "x": 107.179, "y": 229.128 }, { @@ -1241,84 +1241,84 @@ "body": null, "index": 7, "isInternal": false, - "x": 92.82100000000003, + "x": 92.821, "y": 229.128 }, { "body": null, "index": 8, "isInternal": false, - "x": 86.05799999999999, - "y": 226.56400000000002 + "x": 86.058, + "y": 226.564 }, { "body": null, "index": 9, "isInternal": false, "x": 80.106, - "y": 222.45499999999998 + "y": 222.455 }, { "body": null, "index": 10, "isInternal": false, "x": 75.31, - "y": 217.04200000000003 + "y": 217.042 }, { "body": null, "index": 11, "isInternal": false, - "x": 71.94999999999999, - "y": 210.63799999999998 + "x": 71.95, + "y": 210.638 }, { "body": null, "index": 12, "isInternal": false, "x": 70.219, - "y": 203.61599999999999 + "y": 203.616 }, { "body": null, "index": 13, "isInternal": false, "x": 70.219, - "y": 196.38400000000001 + "y": 196.384 }, { "body": null, "index": 14, "isInternal": false, - "x": 71.94999999999999, - "y": 189.36200000000002 + "x": 71.95, + "y": 189.362 }, { "body": null, "index": 15, "isInternal": false, "x": 75.31, - "y": 182.95799999999997 + "y": 182.958 }, { "body": null, "index": 16, "isInternal": false, "x": 80.106, - "y": 177.54500000000002 + "y": 177.545 }, { "body": null, "index": 17, "isInternal": false, - "x": 86.05799999999999, - "y": 173.43599999999998 + "x": 86.058, + "y": 173.436 }, { "body": null, "index": 18, "isInternal": false, - "x": 92.82100000000003, + "x": 92.821, "y": 170.872 }, { @@ -1332,50 +1332,50 @@ "body": null, "index": 20, "isInternal": false, - "x": 107.17899999999997, + "x": 107.179, "y": 170.872 }, { "body": null, "index": 21, "isInternal": false, - "x": 113.94200000000001, - "y": 173.43599999999998 + "x": 113.942, + "y": 173.436 }, { "body": null, "index": 22, "isInternal": false, "x": 119.894, - "y": 177.54500000000002 + "y": 177.545 }, { "body": null, "index": 23, "isInternal": false, "x": 124.69, - "y": 182.95799999999997 + "y": 182.958 }, { "body": null, "index": 24, "isInternal": false, "x": 128.05, - "y": 189.36200000000002 + "y": 189.362 }, { "body": null, "index": 25, "isInternal": false, "x": 129.781, - "y": 196.38400000000001 + "y": 196.384 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 147 }, @@ -1398,12 +1398,12 @@ "frictionStatic": 0.5, "id": 7, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -1476,52 +1476,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -1685,7 +1685,7 @@ "index": 2, "isInternal": false, "x": 361.69, - "y": 317.04200000000003 + "y": 317.042 }, { "body": null, @@ -1741,7 +1741,7 @@ "index": 10, "isInternal": false, "x": 312.31, - "y": 317.04200000000003 + "y": 317.042 }, { "body": null, @@ -1776,7 +1776,7 @@ "index": 15, "isInternal": false, "x": 312.31, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -1832,7 +1832,7 @@ "index": 23, "isInternal": false, "x": 361.69, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -1853,7 +1853,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 201 }, @@ -1876,12 +1876,12 @@ "frictionStatic": 0.5, "id": 9, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -1954,52 +1954,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -2163,7 +2163,7 @@ "index": 2, "isInternal": false, "x": 418.69, - "y": 317.04200000000003 + "y": 317.042 }, { "body": null, @@ -2219,7 +2219,7 @@ "index": 10, "isInternal": false, "x": 369.31, - "y": 317.04200000000003 + "y": 317.042 }, { "body": null, @@ -2254,7 +2254,7 @@ "index": 15, "isInternal": false, "x": 369.31, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -2310,7 +2310,7 @@ "index": 23, "isInternal": false, "x": 418.69, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -2331,7 +2331,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 255 }, @@ -2354,12 +2354,12 @@ "frictionStatic": 0.5, "id": 11, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -2432,52 +2432,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -2641,7 +2641,7 @@ "index": 2, "isInternal": false, "x": 475.69, - "y": 317.04200000000003 + "y": 317.042 }, { "body": null, @@ -2697,7 +2697,7 @@ "index": 10, "isInternal": false, "x": 426.31, - "y": 317.04200000000003 + "y": 317.042 }, { "body": null, @@ -2732,7 +2732,7 @@ "index": 15, "isInternal": false, "x": 426.31, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -2788,7 +2788,7 @@ "index": 23, "isInternal": false, "x": 475.69, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -2809,7 +2809,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2799.984164, + "area": 2799.98416, "axes": { "#": 309 }, @@ -2832,12 +2832,12 @@ "frictionStatic": 0.5, "id": 13, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -2910,52 +2910,52 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -3119,7 +3119,7 @@ "index": 2, "isInternal": false, "x": 532.69, - "y": 317.04200000000003 + "y": 317.042 }, { "body": null, @@ -3175,7 +3175,7 @@ "index": 10, "isInternal": false, "x": 483.31, - "y": 317.04200000000003 + "y": 317.042 }, { "body": null, @@ -3210,7 +3210,7 @@ "index": 15, "isInternal": false, "x": 483.31, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -3266,7 +3266,7 @@ "index": 23, "isInternal": false, "x": 532.69, - "y": 282.95799999999997 + "y": 282.958 }, { "body": null, @@ -3504,7 +3504,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 387 }, @@ -3527,12 +3527,12 @@ "frictionStatic": 0.5, "id": 16, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3596,40 +3596,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -3644,11 +3644,11 @@ } }, { - "x": 159.75400000000002, + "x": 159.754, "y": 439.754 }, { - "x": 120.24599999999998, + "x": 120.246, "y": 400.246 }, { @@ -3760,7 +3760,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 159.75400000000002, + "x": 159.754, "y": 423.129 }, { @@ -3768,69 +3768,69 @@ "index": 1, "isInternal": false, "x": 157.82, - "y": 429.08000000000004 + "y": 429.08 }, { "body": null, "index": 2, "isInternal": false, "x": 154.142, - "y": 434.14200000000005 + "y": 434.142 }, { "body": null, "index": 3, "isInternal": false, - "x": 149.07999999999998, - "y": 437.82000000000005 + "x": 149.08, + "y": 437.82 }, { "body": null, "index": 4, "isInternal": false, - "x": 143.12900000000002, + "x": 143.129, "y": 439.754 }, { "body": null, "index": 5, "isInternal": false, - "x": 136.87099999999998, + "x": 136.871, "y": 439.754 }, { "body": null, "index": 6, "isInternal": false, - "x": 130.92000000000002, - "y": 437.82000000000005 + "x": 130.92, + "y": 437.82 }, { "body": null, "index": 7, "isInternal": false, "x": 125.858, - "y": 434.14200000000005 + "y": 434.142 }, { "body": null, "index": 8, "isInternal": false, "x": 122.18, - "y": 429.08000000000004 + "y": 429.08 }, { "body": null, "index": 9, "isInternal": false, - "x": 120.24599999999998, + "x": 120.246, "y": 423.129 }, { "body": null, "index": 10, "isInternal": false, - "x": 120.24599999999998, + "x": 120.246, "y": 416.871 }, { @@ -3851,28 +3851,28 @@ "body": null, "index": 13, "isInternal": false, - "x": 130.92000000000002, + "x": 130.92, "y": 402.18 }, { "body": null, "index": 14, "isInternal": false, - "x": 136.87099999999998, + "x": 136.871, "y": 400.246 }, { "body": null, "index": 15, "isInternal": false, - "x": 143.12900000000002, + "x": 143.129, "y": 400.246 }, { "body": null, "index": 16, "isInternal": false, - "x": 149.07999999999998, + "x": 149.08, "y": 402.18 }, { @@ -3893,7 +3893,7 @@ "body": null, "index": 19, "isInternal": false, - "x": 159.75400000000002, + "x": 159.754, "y": 416.871 }, { @@ -3901,7 +3901,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 432 }, @@ -3924,12 +3924,12 @@ "frictionStatic": 0.5, "id": 18, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3993,40 +3993,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4298,7 +4298,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 477 }, @@ -4321,12 +4321,12 @@ "frictionStatic": 0.5, "id": 20, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4390,40 +4390,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -4695,7 +4695,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 522 }, @@ -4718,12 +4718,12 @@ "frictionStatic": 0.5, "id": 22, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4787,40 +4787,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5092,7 +5092,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 567 }, @@ -5115,12 +5115,12 @@ "frictionStatic": 0.5, "id": 24, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5184,40 +5184,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5489,7 +5489,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 612 }, @@ -5512,12 +5512,12 @@ "frictionStatic": 0.5, "id": 26, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5581,40 +5581,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, @@ -5886,7 +5886,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1236.0755439999998, + "area": 1236.07554, "axes": { "#": 657 }, @@ -5909,12 +5909,12 @@ "frictionStatic": 0.5, "id": 28, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5978,40 +5978,40 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, diff --git a/test/browser/refs/newtonsCradle/newtonsCradle-10.json b/test/browser/refs/newtonsCradle/newtonsCradle-10.json index 5374b8fd..c432b4ec 100644 --- a/test/browser/refs/newtonsCradle/newtonsCradle-10.json +++ b/test/browser/refs/newtonsCradle/newtonsCradle-10.json @@ -933,11 +933,11 @@ } ], { - "angle": 2.9481262646091003e-21, - "anglePrev": 2.601438243756468e-21, - "angularSpeed": 3.466880208526321e-22, - "angularVelocity": 3.4668802085263226e-22, - "area": 2799.984164, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.98416, "axes": { "#": 97 }, @@ -960,12 +960,12 @@ "frictionStatic": 0.5, "id": 5, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -987,7 +987,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 2.640753288112704, + "speed": 2.64075, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1041,56 +1041,56 @@ } ], { - "x": -0.9709343487684781, - "y": -0.239345963787843 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763886, - "y": -0.4646062470531956 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216226, - "y": -0.6631614281668033 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986281, - "y": -0.8229430741069437 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212773, - "y": -0.93505600844255 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941159967, - "y": -0.9927037177016906 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941159967, - "y": -0.9927037177016906 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212773, - "y": -0.93505600844255 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986281, - "y": -0.8229430741069437 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216226, - "y": -0.6631614281668033 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763886, - "y": -0.4646062470531956 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684781, - "y": -0.239345963787843 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, - "y": 2.9481262646091003e-21 + "y": 0 }, { "max": { @@ -1101,12 +1101,12 @@ } }, { - "x": 143.1068743566276, - "y": 240.87360051262368 + "x": 143.10687, + "y": 240.8736 }, { - "x": 83.54487435662749, - "y": 180.87360051262368 + "x": 83.54487, + "y": 180.8736 }, { "category": 1, @@ -1123,16 +1123,16 @@ "y": 0 }, { - "x": 113.3258743566275, - "y": 210.87360051262368 + "x": 113.32587, + "y": 210.8736 }, { "x": 0, "y": 0 }, { - "x": 111.88884772451912, - "y": 208.6677416512677 + "x": 111.88885, + "y": 208.66774 }, { "endCol": 2, @@ -1155,8 +1155,8 @@ "yScale": 1 }, { - "x": 1.2846883932132727, - "y": 2.3071960603774357 + "x": 1.28469, + "y": 2.3072 }, [ { @@ -1242,190 +1242,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 143.1068743566276, - "y": 214.48960051262367 + "x": 143.10687, + "y": 214.4896 }, { "body": null, "index": 1, "isInternal": false, - "x": 141.3758743566276, - "y": 221.51160051262366 + "x": 141.37587, + "y": 221.5116 }, { "body": null, "index": 2, "isInternal": false, - "x": 138.0158743566276, - "y": 227.9156005126237 + "x": 138.01587, + "y": 227.9156 }, { "body": null, "index": 3, "isInternal": false, - "x": 133.21987435662757, - "y": 233.32860051262367 + "x": 133.21987, + "y": 233.3286 }, { "body": null, "index": 4, "isInternal": false, - "x": 127.2678743566275, - "y": 237.4376005126237 + "x": 127.26787, + "y": 237.4376 }, { "body": null, "index": 5, "isInternal": false, - "x": 120.50487435662747, - "y": 240.00160051262367 + "x": 120.50487, + "y": 240.0016 }, { "body": null, "index": 6, "isInternal": false, - "x": 113.3258743566275, - "y": 240.87360051262368 + "x": 113.32587, + "y": 240.8736 }, { "body": null, "index": 7, "isInternal": false, - "x": 106.14687435662752, - "y": 240.00160051262367 + "x": 106.14687, + "y": 240.0016 }, { "body": null, "index": 8, "isInternal": false, - "x": 99.38387435662749, - "y": 237.4376005126237 + "x": 99.38387, + "y": 237.4376 }, { "body": null, "index": 9, "isInternal": false, - "x": 93.43187435662749, - "y": 233.32860051262367 + "x": 93.43187, + "y": 233.3286 }, { "body": null, "index": 10, "isInternal": false, - "x": 88.6358743566275, - "y": 227.9156005126237 + "x": 88.63587, + "y": 227.9156 }, { "body": null, "index": 11, "isInternal": false, - "x": 85.27587435662748, - "y": 221.51160051262366 + "x": 85.27587, + "y": 221.5116 }, { "body": null, "index": 12, "isInternal": false, - "x": 83.54487435662749, - "y": 214.48960051262367 + "x": 83.54487, + "y": 214.4896 }, { "body": null, "index": 13, "isInternal": false, - "x": 83.54487435662749, - "y": 207.2576005126237 + "x": 83.54487, + "y": 207.2576 }, { "body": null, "index": 14, "isInternal": false, - "x": 85.27587435662748, - "y": 200.2356005126237 + "x": 85.27587, + "y": 200.2356 }, { "body": null, "index": 15, "isInternal": false, - "x": 88.6358743566275, - "y": 193.83160051262365 + "x": 88.63587, + "y": 193.8316 }, { "body": null, "index": 16, "isInternal": false, - "x": 93.43187435662749, - "y": 188.4186005126237 + "x": 93.43187, + "y": 188.4186 }, { "body": null, "index": 17, "isInternal": false, - "x": 99.38387435662749, - "y": 184.30960051262366 + "x": 99.38387, + "y": 184.3096 }, { "body": null, "index": 18, "isInternal": false, - "x": 106.14687435662752, - "y": 181.7456005126237 + "x": 106.14687, + "y": 181.7456 }, { "body": null, "index": 19, "isInternal": false, - "x": 113.3258743566275, - "y": 180.87360051262368 + "x": 113.32587, + "y": 180.8736 }, { "body": null, "index": 20, "isInternal": false, - "x": 120.50487435662747, - "y": 181.7456005126237 + "x": 120.50487, + "y": 181.7456 }, { "body": null, "index": 21, "isInternal": false, - "x": 127.2678743566275, - "y": 184.30960051262366 + "x": 127.26787, + "y": 184.3096 }, { "body": null, "index": 22, "isInternal": false, - "x": 133.21987435662757, - "y": 188.4186005126237 + "x": 133.21987, + "y": 188.4186 }, { "body": null, "index": 23, "isInternal": false, - "x": 138.0158743566276, - "y": 193.83160051262365 + "x": 138.01587, + "y": 193.8316 }, { "body": null, "index": 24, "isInternal": false, - "x": 141.3758743566276, - "y": 200.2356005126237 + "x": 141.37587, + "y": 200.2356 }, { "body": null, "index": 25, "isInternal": false, - "x": 143.1068743566276, - "y": 207.2576005126237 + "x": 143.10687, + "y": 207.2576 }, { - "angle": 4.012191199404054e-11, - "anglePrev": 3.5665704849666716e-11, - "angularSpeed": 4.456207144373826e-12, - "angularVelocity": 4.456207144373827e-12, - "area": 2799.984164, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.98416, "axes": { "#": 152 }, @@ -1448,12 +1448,12 @@ "frictionStatic": 0.5, "id": 7, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -1475,7 +1475,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.33530713090848, + "speed": 0.33531, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1529,56 +1529,56 @@ } ], { - "x": -0.9709343487588747, - "y": -0.23934596382679874 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827577477, - "y": -0.4646062470887242 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763991950152, - "y": -0.6631614281968333 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.56812383926561, - "y": -0.8229430741297379 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000155837611, - "y": -0.9350560084567732 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.1205791393717705, - "y": -0.9927037177065285 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913945142884, - "y": -0.9927037176968527 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156587935, - "y": -0.9350560084283268 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238393316461, - "y": -0.8229430740841495 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.74847639924823, - "y": -0.6631614281367734 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827950295, - "y": -0.46460624701766695 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487780814, - "y": -0.23934596374888728 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, - "y": 4.012191199404054e-11 + "y": 0 }, { "max": { @@ -1589,12 +1589,12 @@ } }, { - "x": 361.62203216186987, - "y": 330.0592419506993 + "x": 361.62203, + "y": 330.05924 }, { - "x": 302.0600321615793, - "y": 270.0592419506993 + "x": 302.06003, + "y": 270.05924 }, { "category": 1, @@ -1611,16 +1611,16 @@ "y": 0 }, { - "x": 331.8410321617246, - "y": 300.05924195069935 + "x": 331.84103, + "y": 300.05924 }, { "x": 0, "y": 0 }, { - "x": 331.76636140303356, - "y": 300.1074049814094 + "x": 331.76636, + "y": 300.1074 }, { "endCol": 7, @@ -1643,8 +1643,8 @@ "yScale": 1 }, { - "x": 0.07142913280523544, - "y": 0.07754374586477297 + "x": 0.07143, + "y": 0.07754 }, [ { @@ -1730,190 +1730,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 361.6220321615793, - "y": 303.6752419518942 + "x": 361.62203, + "y": 303.67524 }, { "body": null, "index": 1, "isInternal": false, - "x": 359.8910321612978, - "y": 310.69724195182465 + "x": 359.89103, + "y": 310.69724 }, { "body": null, "index": 2, "isInternal": false, - "x": 356.5310321610408, - "y": 317.10124195169 + "x": 356.53103, + "y": 317.10124 }, { "body": null, "index": 3, "isInternal": false, - "x": 351.73503216082366, - "y": 322.51424195149747 + "x": 351.73503, + "y": 322.51424 }, { "body": null, "index": 4, "isInternal": false, - "x": 345.78303216065876, - "y": 326.62324195125865 + "x": 345.78303, + "y": 326.62324 }, { "body": null, "index": 5, "isInternal": false, - "x": 339.0200321605559, - "y": 329.18724195098724 + "x": 339.02003, + "y": 329.18724 }, { "body": null, "index": 6, "isInternal": false, - "x": 331.8410321605209, - "y": 330.0592419506993 + "x": 331.84103, + "y": 330.05924 }, { "body": null, "index": 7, "isInternal": false, - "x": 324.66203216055595, - "y": 329.1872419504112 + "x": 324.66203, + "y": 329.18724 }, { "body": null, "index": 8, "isInternal": false, - "x": 317.89903216065875, - "y": 326.62324195013986 + "x": 317.89903, + "y": 326.62324 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.94703216082365, - "y": 322.51424194990096 + "x": 311.94703, + "y": 322.51424 }, { "body": null, "index": 10, "isInternal": false, - "x": 307.1510321610408, - "y": 317.10124194970865 + "x": 307.15103, + "y": 317.10124 }, { "body": null, "index": 11, "isInternal": false, - "x": 303.7910321612978, - "y": 310.69724194957377 + "x": 303.79103, + "y": 310.69724 }, { "body": null, "index": 12, "isInternal": false, - "x": 302.0600321615793, - "y": 303.67524194950437 + "x": 302.06003, + "y": 303.67524 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.06003216186986, - "y": 296.4432419495044 + "x": 302.06003, + "y": 296.44324 }, { "body": null, "index": 14, "isInternal": false, - "x": 303.79103216215134, - "y": 289.4212419495738 + "x": 303.79103, + "y": 289.42124 }, { "body": null, "index": 15, "isInternal": false, - "x": 307.15103216240834, - "y": 283.0172419497086 + "x": 307.15103, + "y": 283.01724 }, { "body": null, "index": 16, "isInternal": false, - "x": 311.9470321626255, - "y": 277.604241949901 + "x": 311.94703, + "y": 277.60424 }, { "body": null, "index": 17, "isInternal": false, - "x": 317.8990321627904, - "y": 273.4952419501398 + "x": 317.89903, + "y": 273.49524 }, { "body": null, "index": 18, "isInternal": false, - "x": 324.66203216289324, - "y": 270.9312419504112 + "x": 324.66203, + "y": 270.93124 }, { "body": null, "index": 19, "isInternal": false, - "x": 331.84103216292823, - "y": 270.0592419506993 + "x": 331.84103, + "y": 270.05924 }, { "body": null, "index": 20, "isInternal": false, - "x": 339.0200321628932, - "y": 270.93124195098727 + "x": 339.02003, + "y": 270.93124 }, { "body": null, "index": 21, "isInternal": false, - "x": 345.7830321627904, - "y": 273.4952419512586 + "x": 345.78303, + "y": 273.49524 }, { "body": null, "index": 22, "isInternal": false, - "x": 351.7350321626255, - "y": 277.6042419514975 + "x": 351.73503, + "y": 277.60424 }, { "body": null, "index": 23, "isInternal": false, - "x": 356.53103216240834, - "y": 283.0172419516899 + "x": 356.53103, + "y": 283.01724 }, { "body": null, "index": 24, "isInternal": false, - "x": 359.89103216215136, - "y": 289.4212419518247 + "x": 359.89103, + "y": 289.42124 }, { "body": null, "index": 25, "isInternal": false, - "x": 361.62203216186987, - "y": 296.4432419518942 + "x": 361.62203, + "y": 296.44324 }, { - "angle": 1.4119577442422716e-14, - "anglePrev": 1.255136299954647e-14, - "angularSpeed": 1.5682144428762465e-15, - "angularVelocity": 1.5682144428762463e-15, - "area": 2799.984164, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.98416, "axes": { "#": 207 }, @@ -1936,12 +1936,12 @@ "frictionStatic": 0.5, "id": 9, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -1963,7 +1963,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.32934464405517333, + "speed": 0.32934, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2017,56 +2017,56 @@ } ], { - "x": -0.9709343487684751, - "y": -0.23934596378785675 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763816, - "y": -0.4646062470532081 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216136, - "y": -0.6631614281668143 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986161, - "y": -0.8229430741069517 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212643, - "y": -0.935056008442555 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941158568, - "y": -0.9927037177016926 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941161366, - "y": -0.9927037177016886 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212903, - "y": -0.935056008442545 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986401, - "y": -0.8229430741069357 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216316, - "y": -0.6631614281667924 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763956, - "y": -0.4646062470531831 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684811, - "y": -0.23934596378782927 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, - "y": 1.4119577442422716e-14 + "y": 0 }, { "max": { @@ -2077,12 +2077,12 @@ } }, { - "x": 422.26650970869235, - "y": 330.12049850454804 + "x": 422.26651, + "y": 330.1205 }, { - "x": 362.70450970869234, - "y": 270.12049850454804 + "x": 362.70451, + "y": 270.1205 }, { "category": 1, @@ -2099,16 +2099,16 @@ "y": 0 }, { - "x": 392.48550970869246, - "y": 300.12049850454804 + "x": 392.48551, + "y": 300.1205 }, { "x": 0, "y": 0 }, { - "x": 392.46352136950867, - "y": 300.17038615210595 + "x": 392.46352, + "y": 300.17039 }, { "endCol": 8, @@ -2131,8 +2131,8 @@ "yScale": 1 }, { - "x": 0.021033077816696277, - "y": 0.07633790970515975 + "x": 0.02103, + "y": 0.07634 }, [ { @@ -2218,190 +2218,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 422.26650970869235, - "y": 303.73649850454854 + "x": 422.26651, + "y": 303.7365 }, { "body": null, "index": 1, "isInternal": false, - "x": 420.53550970869236, - "y": 310.75849850454847 + "x": 420.53551, + "y": 310.7585 }, { "body": null, "index": 2, "isInternal": false, - "x": 417.17550970869206, - "y": 317.1624985045486 + "x": 417.17551, + "y": 317.1625 }, { "body": null, "index": 3, "isInternal": false, - "x": 412.37950970869184, - "y": 322.5754985045485 + "x": 412.37951, + "y": 322.5755 }, { "body": null, "index": 4, "isInternal": false, - "x": 406.42750970869184, - "y": 326.684498504548 + "x": 406.42751, + "y": 326.6845 }, { "body": null, "index": 5, "isInternal": false, - "x": 399.6645097086918, - "y": 329.24849850454797 + "x": 399.66451, + "y": 329.2485 }, { "body": null, "index": 6, "isInternal": false, - "x": 392.48550970869184, - "y": 330.12049850454804 + "x": 392.48551, + "y": 330.1205 }, { "body": null, "index": 7, "isInternal": false, - "x": 385.30650970869186, - "y": 329.24849850454797 + "x": 385.30651, + "y": 329.2485 }, { "body": null, "index": 8, "isInternal": false, - "x": 378.54350970869183, - "y": 326.684498504548 + "x": 378.54351, + "y": 326.6845 }, { "body": null, "index": 9, "isInternal": false, - "x": 372.59150970869183, - "y": 322.57549850454745 + "x": 372.59151, + "y": 322.5755 }, { "body": null, "index": 10, "isInternal": false, - "x": 367.79550970869207, - "y": 317.16249850454756 + "x": 367.79551, + "y": 317.1625 }, { "body": null, "index": 11, "isInternal": false, - "x": 364.43550970869234, - "y": 310.75849850454745 + "x": 364.43551, + "y": 310.7585 }, { "body": null, "index": 12, "isInternal": false, - "x": 362.70450970869234, - "y": 303.7364985045475 + "x": 362.70451, + "y": 303.7365 }, { "body": null, "index": 13, "isInternal": false, - "x": 362.70450970869234, - "y": 296.50449850454754 + "x": 362.70451, + "y": 296.5045 }, { "body": null, "index": 14, "isInternal": false, - "x": 364.43550970869234, - "y": 289.4824985045475 + "x": 364.43551, + "y": 289.4825 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.79550970869263, - "y": 283.0784985045475 + "x": 367.79551, + "y": 283.0785 }, { "body": null, "index": 16, "isInternal": false, - "x": 372.59150970869285, - "y": 277.6654985045475 + "x": 372.59151, + "y": 277.6655 }, { "body": null, "index": 17, "isInternal": false, - "x": 378.54350970869285, - "y": 273.55649850454796 + "x": 378.54351, + "y": 273.5565 }, { "body": null, "index": 18, "isInternal": false, - "x": 385.3065097086929, - "y": 270.992498504548 + "x": 385.30651, + "y": 270.9925 }, { "body": null, "index": 19, "isInternal": false, - "x": 392.48550970869286, - "y": 270.12049850454804 + "x": 392.48551, + "y": 270.1205 }, { "body": null, "index": 20, "isInternal": false, - "x": 399.66450970869283, - "y": 270.992498504548 + "x": 399.66451, + "y": 270.9925 }, { "body": null, "index": 21, "isInternal": false, - "x": 406.42750970869287, - "y": 273.55649850454796 + "x": 406.42751, + "y": 273.5565 }, { "body": null, "index": 22, "isInternal": false, - "x": 412.37950970869286, - "y": 277.6654985045485 + "x": 412.37951, + "y": 277.6655 }, { "body": null, "index": 23, "isInternal": false, - "x": 417.17550970869263, - "y": 283.0784985045485 + "x": 417.17551, + "y": 283.0785 }, { "body": null, "index": 24, "isInternal": false, - "x": 420.53550970869236, - "y": 289.4824985045485 + "x": 420.53551, + "y": 289.4825 }, { "body": null, "index": 25, "isInternal": false, - "x": 422.26650970869235, - "y": 296.50449850454856 + "x": 422.26651, + "y": 296.5045 }, { - "angle": -1.965257761098282e-14, - "anglePrev": -1.7469831269272248e-14, - "angularSpeed": 2.182746343607949e-15, - "angularVelocity": -2.1827463414395206e-15, - "area": 2799.984164, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.98416, "axes": { "#": 262 }, @@ -2424,12 +2424,12 @@ "frictionStatic": 0.5, "id": 11, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -2451,7 +2451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.3293446437789189, + "speed": 0.32934, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2505,56 +2505,56 @@ } ], { - "x": -0.9709343487684831, - "y": -0.23934596378782402 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827763976, - "y": -0.4646062470531781 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.7484763992216356, - "y": -0.6631614281667884 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238392986441, - "y": -0.8229430741069327 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156212958, - "y": -0.935056008442543 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913941161916, - "y": -0.9927037177016886 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913941158019, - "y": -0.9927037177016926 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000156212588, - "y": -0.935056008442557 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392986121, - "y": -0.8229430741069547 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763992216096, - "y": -0.6631614281668183 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827763796, - "y": -0.4646062470532131 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487684731, - "y": -0.239345963787862 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, - "y": -1.9652577610982828e-14 + "y": 0 }, { "max": { @@ -2565,12 +2565,12 @@ } }, { - "x": 482.2954903304432, - "y": 330.12049850425166 + "x": 482.29549, + "y": 330.1205 }, { - "x": 422.7334903304432, - "y": 270.12049850425166 + "x": 422.73349, + "y": 270.1205 }, { "category": 1, @@ -2587,16 +2587,16 @@ "y": 0 }, { - "x": 452.51449033044315, - "y": 300.1204985042515 + "x": 452.51449, + "y": 300.1205 }, { "x": 0, "y": 0 }, { - "x": 452.53647866545225, - "y": 300.17038615183725 + "x": 452.53648, + "y": 300.17039 }, { "endCol": 10, @@ -2619,8 +2619,8 @@ "yScale": 1 }, { - "x": -0.021033073617275022, - "y": 0.07633790967668119 + "x": -0.02103, + "y": 0.07634 }, [ { @@ -2706,190 +2706,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 482.2954903304432, - "y": 303.73649850425113 + "x": 482.29549, + "y": 303.7365 }, { "body": null, "index": 1, "isInternal": false, - "x": 480.5644903304432, - "y": 310.75849850425107 + "x": 480.56449, + "y": 310.7585 }, { "body": null, "index": 2, "isInternal": false, - "x": 477.2044903304437, - "y": 317.1624985042512 + "x": 477.20449, + "y": 317.1625 }, { "body": null, "index": 3, "isInternal": false, - "x": 472.4084903304437, - "y": 322.5754985042511 + "x": 472.40849, + "y": 322.5755 }, { "body": null, "index": 4, "isInternal": false, - "x": 466.4564903304437, - "y": 326.6844985042511 + "x": 466.45649, + "y": 326.6845 }, { "body": null, "index": 5, "isInternal": false, - "x": 459.6934903304437, - "y": 329.2484985042516 + "x": 459.69349, + "y": 329.2485 }, { "body": null, "index": 6, "isInternal": false, - "x": 452.5144903304437, - "y": 330.12049850425166 + "x": 452.51449, + "y": 330.1205 }, { "body": null, "index": 7, "isInternal": false, - "x": 445.33549033044375, - "y": 329.2484985042516 + "x": 445.33549, + "y": 329.2485 }, { "body": null, "index": 8, "isInternal": false, - "x": 438.5724903304437, - "y": 326.68449850425213 + "x": 438.57249, + "y": 326.6845 }, { "body": null, "index": 9, "isInternal": false, - "x": 432.6204903304437, - "y": 322.5754985042521 + "x": 432.62049, + "y": 322.5755 }, { "body": null, "index": 10, "isInternal": false, - "x": 427.8244903304437, - "y": 317.1624985042522 + "x": 427.82449, + "y": 317.1625 }, { "body": null, "index": 11, "isInternal": false, - "x": 424.4644903304432, - "y": 310.7584985042521 + "x": 424.46449, + "y": 310.7585 }, { "body": null, "index": 12, "isInternal": false, - "x": 422.7334903304432, - "y": 303.73649850425215 + "x": 422.73349, + "y": 303.7365 }, { "body": null, "index": 13, "isInternal": false, - "x": 422.7334903304432, - "y": 296.5044985042522 + "x": 422.73349, + "y": 296.5045 }, { "body": null, "index": 14, "isInternal": false, - "x": 424.4644903304432, - "y": 289.48249850425213 + "x": 424.46449, + "y": 289.4825 }, { "body": null, "index": 15, "isInternal": false, - "x": 427.8244903304427, - "y": 283.07849850425214 + "x": 427.82449, + "y": 283.0785 }, { "body": null, "index": 16, "isInternal": false, - "x": 432.6204903304427, - "y": 277.6654985042521 + "x": 432.62049, + "y": 277.6655 }, { "body": null, "index": 17, "isInternal": false, - "x": 438.5724903304427, - "y": 273.5564985042521 + "x": 438.57249, + "y": 273.5565 }, { "body": null, "index": 18, "isInternal": false, - "x": 445.3354903304427, - "y": 270.9924985042516 + "x": 445.33549, + "y": 270.9925 }, { "body": null, "index": 19, "isInternal": false, - "x": 452.5144903304427, - "y": 270.12049850425166 + "x": 452.51449, + "y": 270.1205 }, { "body": null, "index": 20, "isInternal": false, - "x": 459.69349033044267, - "y": 270.9924985042516 + "x": 459.69349, + "y": 270.9925 }, { "body": null, "index": 21, "isInternal": false, - "x": 466.4564903304427, - "y": 273.55649850425107 + "x": 466.45649, + "y": 273.5565 }, { "body": null, "index": 22, "isInternal": false, - "x": 472.4084903304427, - "y": 277.6654985042511 + "x": 472.40849, + "y": 277.6655 }, { "body": null, "index": 23, "isInternal": false, - "x": 477.2044903304427, - "y": 283.0784985042511 + "x": 477.20449, + "y": 283.0785 }, { "body": null, "index": 24, "isInternal": false, - "x": 480.5644903304432, - "y": 289.4824985042511 + "x": 480.56449, + "y": 289.4825 }, { "body": null, "index": 25, "isInternal": false, - "x": 482.2954903304432, - "y": 296.50449850425116 + "x": 482.29549, + "y": 296.5045 }, { - "angle": -4.009808260244804e-11, - "anglePrev": -3.5644522109231926e-11, - "angularSpeed": 4.4535604932161134e-12, - "angularVelocity": -4.453560493216116e-12, - "area": 2799.984164, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2799.98416, "axes": { "#": 317 }, @@ -2912,12 +2912,12 @@ "frictionStatic": 0.5, "id": 13, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.35714487705224035, + "inverseInertia": 0.00001, + "inverseMass": 0.35714, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.799984164, + "mass": 2.79998, "motion": 0, "parent": null, "position": { @@ -2939,7 +2939,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.33530713183014377, + "speed": 0.33531, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2993,56 +2993,56 @@ } ], { - "x": -0.9709343487780754, - "y": -0.2393459637489104 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8855173827950183, - "y": -0.46460624701768805 + "x": -0.88552, + "y": -0.46461 }, { - "x": -0.748476399248214, - "y": -0.6631614281367914 + "x": -0.74848, + "y": -0.66316 }, { - "x": -0.5681238393316266, - "y": -0.822943074084163 + "x": -0.56812, + "y": -0.82294 }, { - "x": -0.3545000156587712, - "y": -0.9350560084283353 + "x": -0.3545, + "y": -0.93506 }, { - "x": -0.12057913945140518, - "y": -0.9927037176968557 + "x": -0.12058, + "y": -0.9927 }, { - "x": 0.12057913937179417, - "y": -0.9927037177065255 + "x": 0.12058, + "y": -0.9927 }, { - "x": 0.3545000155837834, - "y": -0.9350560084567647 + "x": 0.3545, + "y": -0.93506 }, { - "x": 0.5681238392656296, - "y": -0.8229430741297243 + "x": 0.56812, + "y": -0.82294 }, { - "x": 0.7484763991950312, - "y": -0.6631614281968153 + "x": 0.74848, + "y": -0.66316 }, { - "x": 0.8855173827577588, - "y": -0.46460624708870313 + "x": 0.88552, + "y": -0.46461 }, { - "x": 0.9709343487588807, - "y": -0.23934596382677562 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, - "y": -4.009808260244804e-11 + "y": 0 }, { "max": { @@ -3053,12 +3053,12 @@ } }, { - "x": 542.9399677992988, - "y": 330.0592419517095 + "x": 542.93997, + "y": 330.05924 }, { - "x": 483.37796779900884, - "y": 270.0592419517095 + "x": 483.37797, + "y": 270.05924 }, { "category": 1, @@ -3075,16 +3075,16 @@ "y": 0 }, { - "x": 513.1589677991535, - "y": 300.05924195170945 + "x": 513.15897, + "y": 300.05924 }, { "x": 0, "y": 0 }, { - "x": 513.2336385620184, - "y": 300.1074049823244 + "x": 513.23364, + "y": 300.1074 }, { "endCol": 11, @@ -3107,8 +3107,8 @@ "yScale": 1 }, { - "x": -0.07142913700363351, - "y": 0.07754374596180469 + "x": -0.07143, + "y": 0.07754 }, [ { @@ -3194,183 +3194,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 542.9399677992988, - "y": 303.67524195051533 + "x": 542.93997, + "y": 303.67524 }, { "body": null, "index": 1, "isInternal": false, - "x": 541.2089677995801, - "y": 310.69724195058467 + "x": 541.20897, + "y": 310.69724 }, { "body": null, "index": 2, "isInternal": false, - "x": 537.848967799837, - "y": 317.1012419507195 + "x": 537.84897, + "y": 317.10124 }, { "body": null, "index": 3, "isInternal": false, - "x": 533.0529678000539, - "y": 322.5142419509117 + "x": 533.05297, + "y": 322.51424 }, { "body": null, "index": 4, "isInternal": false, - "x": 527.1009678002187, - "y": 326.6232419511504 + "x": 527.10097, + "y": 326.62324 }, { "body": null, "index": 5, "isInternal": false, - "x": 520.3379678003215, - "y": 329.1872419514215 + "x": 520.33797, + "y": 329.18724 }, { "body": null, "index": 6, "isInternal": false, - "x": 513.1589678003564, - "y": 330.0592419517095 + "x": 513.15897, + "y": 330.05924 }, { "body": null, "index": 7, "isInternal": false, - "x": 505.97996780032173, - "y": 329.18724195199735 + "x": 505.97997, + "y": 329.18724 }, { "body": null, "index": 8, "isInternal": false, - "x": 499.21696780021887, - "y": 326.62324195226853 + "x": 499.21697, + "y": 326.62324 }, { "body": null, "index": 9, "isInternal": false, - "x": 493.26496780005414, - "y": 322.5142419525072 + "x": 493.26497, + "y": 322.51424 }, { "body": null, "index": 10, "isInternal": false, - "x": 488.4689677998371, - "y": 317.1012419526996 + "x": 488.46897, + "y": 317.10124 }, { "body": null, "index": 11, "isInternal": false, - "x": 485.10896779958034, - "y": 310.6972419528342 + "x": 485.10897, + "y": 310.69724 }, { "body": null, "index": 12, "isInternal": false, - "x": 483.37796779929863, - "y": 303.67524195290366 + "x": 483.37797, + "y": 303.67524 }, { "body": null, "index": 13, "isInternal": false, - "x": 483.37796779900884, - "y": 296.4432419529037 + "x": 483.37797, + "y": 296.44324 }, { "body": null, "index": 14, "isInternal": false, - "x": 485.1089677987271, - "y": 289.42124195283424 + "x": 485.10897, + "y": 289.42124 }, { "body": null, "index": 15, "isInternal": false, - "x": 488.4689677984704, - "y": 283.0172419526995 + "x": 488.46897, + "y": 283.01724 }, { "body": null, "index": 16, "isInternal": false, - "x": 493.26496779825334, - "y": 277.6042419525072 + "x": 493.26497, + "y": 277.60424 }, { "body": null, "index": 17, "isInternal": false, - "x": 499.2169677980886, - "y": 273.4952419522685 + "x": 499.21697, + "y": 273.49524 }, { "body": null, "index": 18, "isInternal": false, - "x": 505.9799677979858, - "y": 270.9312419519974 + "x": 505.97997, + "y": 270.93124 }, { "body": null, "index": 19, "isInternal": false, - "x": 513.1589677979506, - "y": 270.0592419517095 + "x": 513.15897, + "y": 270.05924 }, { "body": null, "index": 20, "isInternal": false, - "x": 520.3379677979855, - "y": 270.93124195142155 + "x": 520.33797, + "y": 270.93124 }, { "body": null, "index": 21, "isInternal": false, - "x": 527.1009677980884, - "y": 273.4952419511504 + "x": 527.10097, + "y": 273.49524 }, { "body": null, "index": 22, "isInternal": false, - "x": 533.0529677982531, - "y": 277.6042419509117 + "x": 533.05297, + "y": 277.60424 }, { "body": null, "index": 23, "isInternal": false, - "x": 537.8489677984701, - "y": 283.01724195071944 + "x": 537.84897, + "y": 283.01724 }, { "body": null, "index": 24, "isInternal": false, - "x": 541.2089677987268, - "y": 289.4212419505847 + "x": 541.20897, + "y": 289.42124 }, { "body": null, "index": 25, "isInternal": false, - "x": 542.9399677990082, - "y": 296.44324195051536 + "x": 542.93997, + "y": 296.44324 }, [], [ @@ -3391,7 +3391,7 @@ } ], { - "angleB": 2.9481262646091003e-21, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 6, @@ -3423,7 +3423,7 @@ "visible": true }, { - "angleB": 4.012191199404054e-11, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 8, @@ -3455,7 +3455,7 @@ "visible": true }, { - "angleB": 1.4119577442422716e-14, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 10, @@ -3487,7 +3487,7 @@ "visible": true }, { - "angleB": -1.965257761071177e-14, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 12, @@ -3519,7 +3519,7 @@ "visible": true }, { - "angleB": -4.009808260244804e-11, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 14, @@ -3590,11 +3590,11 @@ } ], { - "angle": -1.8210355516150483e-22, - "anglePrev": -1.4742348104190818e-22, - "angularSpeed": 1.733266588574624e-23, - "angularVelocity": -3.4680074119596646e-23, - "area": 1236.0755439999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.07554, "axes": { "#": 396 }, @@ -3617,12 +3617,12 @@ "frictionStatic": 0.5, "id": 16, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -3644,7 +3644,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 2.91237353525397, + "speed": 2.91237, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3689,44 +3689,44 @@ } ], { - "x": -0.9510375919276551, - "y": -0.3090752315221116 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623505375, - "y": -0.5878105367943046 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105367943046, - "y": -0.808998623505375 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752315221116, - "y": -0.9510375919276551 + "x": -0.30908, + "y": -0.95104 }, { - "x": -1.8210355516150483e-22, + "x": 0, "y": -1 }, { - "x": 0.3090752315221116, - "y": -0.9510375919276551 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105367943046, - "y": -0.808998623505375 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.808998623505375, - "y": -0.5878105367943046 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375919276551, - "y": -0.3090752315221116 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, - "y": -1.8210355516150483e-22 + "y": 0 }, { "max": { @@ -3737,12 +3737,12 @@ } }, { - "x": 170.97479412298355, - "y": 454.8696744059192 + "x": 170.97479, + "y": 454.86967 }, { - "x": 131.4667941229835, - "y": 415.3616744059192 + "x": 131.46679, + "y": 415.36167 }, { "category": 1, @@ -3759,16 +3759,16 @@ "y": 0 }, { - "x": 151.22079412298353, - "y": 435.11567440591926 + "x": 151.22079, + "y": 435.11567 }, { "x": 0, "y": 0 }, { - "x": 150.05027822318, - "y": 432.45651688702594 + "x": 150.05028, + "y": 432.45652 }, { "endCol": 3, @@ -3791,8 +3791,8 @@ "yScale": 1 }, { - "x": 1.0988882897014776, - "y": 2.689813120548706 + "x": 1.09889, + "y": 2.68981 }, [ { @@ -3860,148 +3860,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 170.97479412298355, - "y": 438.2446744059192 + "x": 170.97479, + "y": 438.24467 }, { "body": null, "index": 1, "isInternal": false, - "x": 169.04079412298353, - "y": 444.19567440591925 + "x": 169.04079, + "y": 444.19567 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.36279412298353, - "y": 449.25767440591926 + "x": 165.36279, + "y": 449.25767 }, { "body": null, "index": 3, "isInternal": false, - "x": 160.30079412298352, - "y": 452.93567440591926 + "x": 160.30079, + "y": 452.93567 }, { "body": null, "index": 4, "isInternal": false, - "x": 154.34979412298355, - "y": 454.8696744059192 + "x": 154.34979, + "y": 454.86967 }, { "body": null, "index": 5, "isInternal": false, - "x": 148.09179412298352, - "y": 454.8696744059192 + "x": 148.09179, + "y": 454.86967 }, { "body": null, "index": 6, "isInternal": false, - "x": 142.14079412298355, - "y": 452.93567440591926 + "x": 142.14079, + "y": 452.93567 }, { "body": null, "index": 7, "isInternal": false, - "x": 137.07879412298354, - "y": 449.25767440591926 + "x": 137.07879, + "y": 449.25767 }, { "body": null, "index": 8, "isInternal": false, - "x": 133.40079412298354, - "y": 444.19567440591925 + "x": 133.40079, + "y": 444.19567 }, { "body": null, "index": 9, "isInternal": false, - "x": 131.4667941229835, - "y": 438.2446744059192 + "x": 131.46679, + "y": 438.24467 }, { "body": null, "index": 10, "isInternal": false, - "x": 131.4667941229835, - "y": 431.9866744059192 + "x": 131.46679, + "y": 431.98667 }, { "body": null, "index": 11, "isInternal": false, - "x": 133.40079412298354, - "y": 426.0356744059192 + "x": 133.40079, + "y": 426.03567 }, { "body": null, "index": 12, "isInternal": false, - "x": 137.07879412298354, - "y": 420.9736744059192 + "x": 137.07879, + "y": 420.97367 }, { "body": null, "index": 13, "isInternal": false, - "x": 142.14079412298355, - "y": 417.2956744059192 + "x": 142.14079, + "y": 417.29567 }, { "body": null, "index": 14, "isInternal": false, - "x": 148.09179412298352, - "y": 415.3616744059192 + "x": 148.09179, + "y": 415.36167 }, { "body": null, "index": 15, "isInternal": false, - "x": 154.34979412298355, - "y": 415.3616744059192 + "x": 154.34979, + "y": 415.36167 }, { "body": null, "index": 16, "isInternal": false, - "x": 160.30079412298352, - "y": 417.2956744059192 + "x": 160.30079, + "y": 417.29567 }, { "body": null, "index": 17, "isInternal": false, - "x": 165.36279412298353, - "y": 420.9736744059192 + "x": 165.36279, + "y": 420.97367 }, { "body": null, "index": 18, "isInternal": false, - "x": 169.04079412298353, - "y": 426.0356744059192 + "x": 169.04079, + "y": 426.03567 }, { "body": null, "index": 19, "isInternal": false, - "x": 170.97479412298355, - "y": 431.9866744059192 + "x": 170.97479, + "y": 431.98667 }, { - "angle": 5.313625844843808e-7, - "anglePrev": 3.6239889378030043e-7, - "angularSpeed": 1.679110413917467e-7, - "angularVelocity": 1.6791104139174675e-7, - "area": 1236.0755439999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.07554, "axes": { "#": 442 }, @@ -4024,12 +4024,12 @@ "frictionStatic": 0.5, "id": 18, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4051,7 +4051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.2774340262886231, + "speed": 0.27743, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4096,44 +4096,44 @@ } ], { - "x": -0.9510374276965073, - "y": -0.3090757368678607 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.8089983111647348, - "y": -0.5878109666658211 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878101069226225, - "y": -0.8089989358457867 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090747261762752, - "y": -0.9510377561585346 + "x": -0.30907, + "y": -0.95104 }, { - "x": 5.313625844843559e-7, - "y": -0.9999999999998589 + "x": 0, + "y": -1 }, { - "x": 0.3090757368678607, - "y": -0.9510374276965073 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878109666658211, - "y": -0.8089983111647348 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089989358457867, - "y": -0.5878101069226225 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510377561585346, - "y": -0.3090747261762752 + "x": 0.95104, + "y": -0.30907 }, { - "x": 0.9999999999998589, - "y": 5.313625844843559e-7 + "x": 1, + "y": 0 }, { "max": { @@ -4144,12 +4144,12 @@ } }, { - "x": 333.9726651920808, - "y": 539.8879317708628 + "x": 333.97267, + "y": 539.88793 }, { - "x": 294.4622974492453, - "y": 500.2874837208271 + "x": 294.4623, + "y": 500.28748 }, { "category": 1, @@ -4166,16 +4166,16 @@ "y": 0 }, { - "x": 314.216299111876, - "y": 520.0414853834577 + "x": 314.2163, + "y": 520.04149 }, { "x": 0, "y": 0 }, { - "x": 314.21686875185753, - "y": 520.0415290792545 + "x": 314.21687, + "y": 520.04153 }, { "endCol": 6, @@ -4198,8 +4198,8 @@ "yScale": 1 }, { - "x": 0.004861627306809169, - "y": -0.000043692910708159616 + "x": 0.00486, + "y": -0.00004 }, [ { @@ -4267,148 +4267,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 333.9702974492398, - "y": 523.1704958799941 + "x": 333.9703, + "y": 523.1705 }, { "body": null, "index": 1, "isInternal": false, - "x": 332.03629428710127, - "y": 529.1214948523381 + "x": 332.03629, + "y": 529.12149 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.3582915973444, - "y": 534.1834928979857 + "x": 328.35829, + "y": 534.18349 }, { "body": null, "index": 3, "isInternal": false, - "x": 323.2962896429935, - "y": 537.8614902082277 + "x": 323.29629, + "y": 537.86149 }, { "body": null, "index": 4, "isInternal": false, - "x": 317.34528861533914, - "y": 539.7954870460886 + "x": 317.34529, + "y": 539.79549 }, { "body": null, "index": 5, "isInternal": false, - "x": 311.08728861533996, - "y": 539.7954837208217 + "x": 311.08729, + "y": 539.79548 }, { "body": null, "index": 6, "isInternal": false, - "x": 305.1362896429961, - "y": 537.8614805586832 + "x": 305.13629, + "y": 537.86148 }, { "body": null, "index": 7, "isInternal": false, - "x": 300.07429159734846, - "y": 534.1834778689262 + "x": 300.07429, + "y": 534.18348 }, { "body": null, "index": 8, "isInternal": false, - "x": 296.3962942871063, - "y": 529.1214759145756 + "x": 296.39629, + "y": 529.12148 }, { "body": null, "index": 9, "isInternal": false, - "x": 294.4622974492453, - "y": 523.170474886921 + "x": 294.4623, + "y": 523.17047 }, { "body": null, "index": 10, "isInternal": false, - "x": 294.46230077451236, - "y": 516.9124748869218 + "x": 294.4623, + "y": 516.91247 }, { "body": null, "index": 11, "isInternal": false, - "x": 296.3963039366509, - "y": 510.9614759145778 + "x": 296.3963, + "y": 510.96148 }, { "body": null, "index": 12, "isInternal": false, - "x": 300.07430662640775, - "y": 505.8994778689302 + "x": 300.07431, + "y": 505.89948 }, { "body": null, "index": 13, "isInternal": false, - "x": 305.1363085807587, - "y": 502.22148055868803 + "x": 305.13631, + "y": 502.22148 }, { "body": null, "index": 14, "isInternal": false, - "x": 311.087309608413, - "y": 500.2874837208271 + "x": 311.08731, + "y": 500.28748 }, { "body": null, "index": 15, "isInternal": false, - "x": 317.3453096084122, - "y": 500.2874870460941 + "x": 317.34531, + "y": 500.28749 }, { "body": null, "index": 16, "isInternal": false, - "x": 323.2963085807561, - "y": 502.22149020823264 + "x": 323.29631, + "y": 502.22149 }, { "body": null, "index": 17, "isInternal": false, - "x": 328.3583066264037, - "y": 505.89949289798943 + "x": 328.35831, + "y": 505.89949 }, { "body": null, "index": 18, "isInternal": false, - "x": 332.0363039366459, - "y": 510.9614948523404 + "x": 332.0363, + "y": 510.96149 }, { "body": null, "index": 19, "isInternal": false, - "x": 333.9703007745069, - "y": 516.9124958799948 + "x": 333.9703, + "y": 516.9125 }, { - "angle": -3.5873880815014555e-7, - "anglePrev": -2.360070092269171e-7, - "angularSpeed": 1.2668734089656822e-7, - "angularVelocity": -1.2444203660222337e-7, - "area": 1236.0755439999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.07554, "axes": { "#": 488 }, @@ -4431,12 +4431,12 @@ "frictionStatic": 0.5, "id": 20, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4458,7 +4458,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.2775324551060733, + "speed": 0.27753, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4503,44 +4503,44 @@ } ], { - "x": -0.9510377028048743, - "y": -0.3090748903479994 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8089988343757745, - "y": -0.587810246575065 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.587810827013469, - "y": -0.8089984126348718 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.30907557269618385, - "y": -0.9510374810503139 + "x": -0.30908, + "y": -0.95104 }, { - "x": -3.5873880815013787e-7, - "y": -0.9999999999999358 + "x": 0, + "y": -1 }, { - "x": 0.3090748903479994, - "y": -0.9510377028048743 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.587810246575065, - "y": -0.8089988343757745 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089984126348718, - "y": -0.587810827013469 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510374810503139, - "y": -0.30907557269618385 + "x": 0.95104, + "y": -0.30908 }, { - "x": 0.9999999999999358, - "y": -3.5873880815013787e-7 + "x": 1, + "y": 0 }, { "max": { @@ -4551,12 +4551,12 @@ } }, { - "x": 373.47106159327035, - "y": 539.920452046199 + "x": 373.47106, + "y": 539.92045 }, { - "x": 333.9596722467691, - "y": 500.3198937457017 + "x": 333.95967, + "y": 500.31989 }, { "category": 1, @@ -4573,16 +4573,16 @@ "y": 0 }, { - "x": 353.71367336926164, - "y": 520.0738948681944 + "x": 353.71367, + "y": 520.07389 }, { "x": 0, "y": 0 }, { - "x": 353.71717181557676, - "y": 520.0738268848745 + "x": 353.71717, + "y": 520.07383 }, { "endCol": 7, @@ -4605,8 +4605,8 @@ "yScale": 1 }, { - "x": 0.004860976034251507, - "y": 0.00006798332356083847 + "x": 0.00486, + "y": 0.00007 }, [ { @@ -4674,148 +4674,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 373.46767449175417, - "y": 523.2028877816679 + "x": 373.46767, + "y": 523.20289 }, { "body": null, "index": 1, "isInternal": false, - "x": 371.53367662660884, - "y": 529.1538884754683 + "x": 371.53368, + "y": 529.15389 }, { "body": null, "index": 2, "isInternal": false, - "x": 367.8556784425449, - "y": 534.2158897949092 + "x": 367.85568, + "y": 534.21589 }, { "body": null, "index": 3, "isInternal": false, - "x": 362.79367976198665, - "y": 537.893891610845 + "x": 362.79368, + "y": 537.89389 }, { "body": null, "index": 4, "isInternal": false, - "x": 356.84268045578784, - "y": 539.8278937456995 + "x": 356.84268, + "y": 539.82789 }, { "body": null, "index": 5, "isInternal": false, - "x": 350.58468045578815, - "y": 539.8278959906869 + "x": 350.58468, + "y": 539.8279 }, { "body": null, "index": 6, "isInternal": false, - "x": 344.6336797619879, - "y": 537.8938981255417 + "x": 344.63368, + "y": 537.8939 }, { "body": null, "index": 7, "isInternal": false, - "x": 339.5716784425468, - "y": 534.2158999414778 + "x": 339.57168, + "y": 534.2159 }, { "body": null, "index": 8, "isInternal": false, - "x": 335.89367662661124, - "y": 529.1539012609194 + "x": 335.89368, + "y": 529.1539 }, { "body": null, "index": 9, "isInternal": false, - "x": 333.95967449175663, - "y": 523.2029019547207 + "x": 333.95967, + "y": 523.2029 }, { "body": null, "index": 10, "isInternal": false, - "x": 333.9596722467691, - "y": 516.944901954721 + "x": 333.95967, + "y": 516.9449 }, { "body": null, "index": 11, "isInternal": false, - "x": 335.89367011191445, - "y": 510.99390126092044 + "x": 335.89367, + "y": 510.9939 }, { "body": null, "index": 12, "isInternal": false, - "x": 339.5716682959784, - "y": 505.93189994147934 + "x": 339.57167, + "y": 505.9319 }, { "body": null, "index": 13, "isInternal": false, - "x": 344.63366697653663, - "y": 502.2538981255438 + "x": 344.63367, + "y": 502.2539 }, { "body": null, "index": 14, "isInternal": false, - "x": 350.58466628273544, - "y": 500.3198959906892 + "x": 350.58467, + "y": 500.3199 }, { "body": null, "index": 15, "isInternal": false, - "x": 356.84266628273514, - "y": 500.3198937457017 + "x": 356.84267, + "y": 500.31989 }, { "body": null, "index": 16, "isInternal": false, - "x": 362.7936669765354, - "y": 502.253891610847 + "x": 362.79367, + "y": 502.25389 }, { "body": null, "index": 17, "isInternal": false, - "x": 367.8556682959765, - "y": 505.93188979491094 + "x": 367.85567, + "y": 505.93189 }, { "body": null, "index": 18, "isInternal": false, - "x": 371.53367011191204, - "y": 510.9938884754692 + "x": 371.53367, + "y": 510.99389 }, { "body": null, "index": 19, "isInternal": false, - "x": 373.46767224676665, - "y": 516.9448877816682 + "x": 373.46767, + "y": 516.94489 }, { - "angle": 4.299114391772231e-10, - "anglePrev": 2.0009799022396918e-10, - "angularSpeed": 2.120552085077259e-10, - "angularVelocity": 2.2233342025813136e-10, - "area": 1236.0755439999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.07554, "axes": { "#": 534 }, @@ -4838,12 +4838,12 @@ "frictionStatic": 0.5, "id": 22, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -4865,7 +4865,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.27759315763008724, + "speed": 0.27759, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4910,44 +4910,44 @@ } ], { - "x": -0.9510375917947803, - "y": -0.30907523193097347 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.8089986232526685, - "y": -0.5878105371421022 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.587810536446507, - "y": -0.8089986237580815 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752311132497, - "y": -0.95103759206053 + "x": -0.30908, + "y": -0.95104 }, { - "x": 4.299114391772231e-10, + "x": 0, "y": -1 }, { - "x": 0.30907523193097347, - "y": -0.9510375917947803 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105371421022, - "y": -0.8089986232526685 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089986237580815, - "y": -0.587810536446507 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.95103759206053, - "y": -0.3090752311132497 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, - "y": 4.299114391772231e-10 + "y": 0 }, { "max": { @@ -4958,12 +4958,12 @@ } }, { - "x": 412.96388930350986, - "y": 539.9368049147841 + "x": 412.96389, + "y": 539.9368 }, { - "x": 373.4547949770601, - "y": 500.33630211304956 + "x": 373.45479, + "y": 500.3363 }, { "category": 1, @@ -4980,16 +4980,16 @@ "y": 0 }, { - "x": 393.20988930216464, - "y": 520.0903021143945 + "x": 393.20989, + "y": 520.0903 }, { "x": 0, "y": 0 }, { - "x": 393.20697110214246, - "y": 520.0903403660731 + "x": 393.20697, + "y": 520.09034 }, { "endCol": 8, @@ -5012,8 +5012,8 @@ "yScale": 1 }, { - "x": 0.004859966396793425, - "y": -0.00003825167766535742 + "x": 0.00486, + "y": -0.00004 }, [ { @@ -5081,148 +5081,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 412.96388930081946, - "y": 523.2193021228871 + "x": 412.96389, + "y": 523.2193 }, { "body": null, "index": 1, "isInternal": false, - "x": 411.0298892982611, - "y": 529.1703021220559 + "x": 411.02989, + "y": 529.1703 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.3518892960848, - "y": 534.2323021204744 + "x": 407.35189, + "y": 534.2323 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.2898892945036, - "y": 537.9103021182985 + "x": 402.28989, + "y": 537.9103 }, { "body": null, "index": 4, "isInternal": false, - "x": 396.3388892936722, - "y": 539.8443021157399 + "x": 396.33889, + "y": 539.8443 }, { "body": null, "index": 5, "isInternal": false, - "x": 390.08088929367216, - "y": 539.8443021130496 + "x": 390.08089, + "y": 539.8443 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.12988929450364, - "y": 537.910302110491 + "x": 384.12989, + "y": 537.9103 }, { "body": null, "index": 7, "isInternal": false, - "x": 379.0678892960848, - "y": 534.2323021083151 + "x": 379.06789, + "y": 534.2323 }, { "body": null, "index": 8, "isInternal": false, - "x": 375.3898892982611, - "y": 529.1703021067336 + "x": 375.38989, + "y": 529.1703 }, { "body": null, "index": 9, "isInternal": false, - "x": 373.4558893008194, - "y": 523.2193021059023 + "x": 373.45589, + "y": 523.2193 }, { "body": null, "index": 10, "isInternal": false, - "x": 373.4558893035098, - "y": 516.9613021059023 + "x": 373.45589, + "y": 516.9613 }, { "body": null, "index": 11, "isInternal": false, - "x": 375.3898893060682, - "y": 511.0103021067338 + "x": 375.38989, + "y": 511.0103 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.0678893082445, - "y": 505.9483021083149 + "x": 379.06789, + "y": 505.9483 }, { "body": null, "index": 13, "isInternal": false, - "x": 384.12988930982567, - "y": 502.27030211049123 + "x": 384.12989, + "y": 502.2703 }, { "body": null, "index": 14, "isInternal": false, - "x": 390.0808893106571, - "y": 500.33630211304956 + "x": 390.08089, + "y": 500.3363 }, { "body": null, "index": 15, "isInternal": false, - "x": 396.3388893106571, - "y": 500.33630211573995 + "x": 396.33889, + "y": 500.3363 }, { "body": null, "index": 16, "isInternal": false, - "x": 402.28988930982564, - "y": 502.27030211829833 + "x": 402.28989, + "y": 502.2703 }, { "body": null, "index": 17, "isInternal": false, - "x": 407.3518893082445, - "y": 505.94830212047464 + "x": 407.35189, + "y": 505.9483 }, { "body": null, "index": 18, "isInternal": false, - "x": 411.0298893060682, - "y": 511.0103021220558 + "x": 411.02989, + "y": 511.0103 }, { "body": null, "index": 19, "isInternal": false, - "x": 412.96388930350986, - "y": 516.9613021228871 + "x": 412.96389, + "y": 516.9613 }, { - "angle": -7.797744072331507e-8, - "anglePrev": -5.637745267043902e-8, - "angularSpeed": 1.7751342347461413e-8, - "angularVelocity": -1.9673598121008648e-8, - "area": 1236.0755439999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.07554, "axes": { "#": 580 }, @@ -5245,12 +5245,12 @@ "frictionStatic": 0.5, "id": 24, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5272,7 +5272,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.2775664485831968, + "speed": 0.27757, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5317,44 +5317,44 @@ } ], { - "x": -0.951037616028548, - "y": -0.3090751573626331 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.8089986693413338, - "y": -0.5878104737106605 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105998779448, - "y": -0.8089985776694111 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.309075305681588, - "y": -0.9510375678267567 + "x": -0.30908, + "y": -0.95104 }, { - "x": -7.797744072331498e-8, - "y": -0.999999999999997 + "x": 0, + "y": -1 }, { - "x": 0.3090751573626331, - "y": -0.951037616028548 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878104737106605, - "y": -0.8089986693413338 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089985776694111, - "y": -0.5878105998779448 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375678267567, - "y": -0.309075305681588 + "x": 0.95104, + "y": -0.30908 }, { - "x": 0.999999999999997, - "y": -7.797744072331498e-8 + "x": 1, + "y": 0 }, { "max": { @@ -5365,12 +5365,12 @@ } }, { - "x": 452.4643581844648, - "y": 539.9371994856117 + "x": 452.46436, + "y": 539.9372 }, { - "x": 412.95132737801805, - "y": 500.33671234896536 + "x": 412.95133, + "y": 500.33671 }, { "category": 1, @@ -5387,16 +5387,16 @@ "y": 0 }, { - "x": 432.70532762200935, - "y": 520.0907125929565 + "x": 432.70533, + "y": 520.09071 }, { "x": 0, "y": 0 }, { - "x": 432.7105384921203, - "y": 520.0907337669354 + "x": 432.71054, + "y": 520.09073 }, { "endCol": 9, @@ -5419,8 +5419,8 @@ "yScale": 1 }, { - "x": 0.004859731402291345, - "y": -0.000021174764242459787 + "x": 0.00486, + "y": -0.00002 }, [ { @@ -5488,148 +5488,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 452.4593278660009, - "y": 523.2197110525902 + "x": 452.45933, + "y": 523.21971 }, { "body": null, "index": 1, "isInternal": false, - "x": 450.5253283300446, - "y": 529.1707112033984 + "x": 450.52533, + "y": 529.17071 }, { "body": null, "index": 2, "isInternal": false, - "x": 446.8473287247665, - "y": 534.2327114901994 + "x": 446.84733, + "y": 534.23271 }, { "body": null, "index": 3, "isInternal": false, - "x": 441.7853290115673, - "y": 537.9107118849214 + "x": 441.78533, + "y": 537.91071 }, { "body": null, "index": 4, "isInternal": false, - "x": 435.83432916237587, - "y": 539.8447123489651 + "x": 435.83433, + "y": 539.84471 }, { "body": null, "index": 5, "isInternal": false, - "x": 429.5763291623758, - "y": 539.8447128369479 + "x": 429.57633, + "y": 539.84471 }, { "body": null, "index": 6, "isInternal": false, - "x": 423.62532901156743, - "y": 537.9107133009916 + "x": 423.62533, + "y": 537.91071 }, { "body": null, "index": 7, "isInternal": false, - "x": 418.56332872476656, - "y": 534.2327136957136 + "x": 418.56333, + "y": 534.23271 }, { "body": null, "index": 8, "isInternal": false, - "x": 414.8853283300447, - "y": 529.1707139825146 + "x": 414.88533, + "y": 529.17071 }, { "body": null, "index": 9, "isInternal": false, - "x": 412.95132786600095, - "y": 523.2197141333228 + "x": 412.95133, + "y": 523.21971 }, { "body": null, "index": 10, "isInternal": false, - "x": 412.95132737801805, - "y": 516.9617141333227 + "x": 412.95133, + "y": 516.96171 }, { "body": null, "index": 11, "isInternal": false, - "x": 414.8853269139743, - "y": 511.01071398251474 + "x": 414.88533, + "y": 511.01071 }, { "body": null, "index": 12, "isInternal": false, - "x": 418.5633265192524, - "y": 505.9487136957139 + "x": 418.56333, + "y": 505.94871 }, { "body": null, "index": 13, "isInternal": false, - "x": 423.62532623245164, - "y": 502.270713300992 + "x": 423.62533, + "y": 502.27071 }, { "body": null, "index": 14, "isInternal": false, - "x": 429.57632608164306, - "y": 500.33671283694827 + "x": 429.57633, + "y": 500.33671 }, { "body": null, "index": 15, "isInternal": false, - "x": 435.8343260816431, - "y": 500.33671234896536 + "x": 435.83433, + "y": 500.33671 }, { "body": null, "index": 16, "isInternal": false, - "x": 441.7853262324515, - "y": 502.27071188492164 + "x": 441.78533, + "y": 502.27071 }, { "body": null, "index": 17, "isInternal": false, - "x": 446.84732651925236, - "y": 505.94871149019974 + "x": 446.84733, + "y": 505.94871 }, { "body": null, "index": 18, "isInternal": false, - "x": 450.52532691397425, - "y": 511.01071120339896 + "x": 450.52533, + "y": 511.01071 }, { "body": null, "index": 19, "isInternal": false, - "x": 452.459327378018, - "y": 516.9617110525902 + "x": 452.45933, + "y": 516.96171 }, { - "angle": -9.771501363490808e-8, - "anglePrev": -7.066885695709218e-8, - "angularSpeed": 2.1023812652081323e-8, - "angularVelocity": -2.706211340932799e-8, - "area": 1236.0755439999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.07554, "axes": { "#": 626 }, @@ -5652,12 +5652,12 @@ "frictionStatic": 0.5, "id": 26, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -5679,7 +5679,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.27754762454512477, + "speed": 0.27755, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5724,44 +5724,44 @@ } ], { - "x": -0.9510376221289412, - "y": -0.3090751385914588 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.8089986809432856, - "y": -0.5878104577429899 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878106158456133, - "y": -0.8089985660674566 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.30907532445276137, - "y": -0.95103756172636 + "x": -0.30908, + "y": -0.95104 }, { - "x": -9.771501363490792e-8, - "y": -0.9999999999999951 + "x": 0, + "y": -1 }, { - "x": 0.3090751385914588, - "y": -0.9510376221289412 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878104577429899, - "y": -0.8089986809432856 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089985660674566, - "y": -0.5878106158456133 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.95103756172636, - "y": -0.30907532445276137 + "x": 0.95104, + "y": -0.30908 }, { - "x": 0.9999999999999951, - "y": -9.771501363490792e-8 + "x": 1, + "y": 0 }, { "max": { @@ -5772,12 +5772,12 @@ } }, { - "x": 491.95689351204817, - "y": 539.921715928438 + "x": 491.95689, + "y": 539.92172 }, { - "x": 452.4468899109371, - "y": 500.32123881583976 + "x": 452.44689, + "y": 500.32124 }, { "category": 1, @@ -5794,16 +5794,16 @@ "y": 0 }, { - "x": 472.2008902166873, - "y": 520.0752391215899 + "x": 472.20089, + "y": 520.07524 }, { - "x": 0.00016327268808249732, - "y": 8.200242218916135e-11 + "x": 0.00016, + "y": 0 }, { - "x": 472.19599875700953, - "y": 520.0752764660385 + "x": 472.196, + "y": 520.07528 }, { "endCol": 10, @@ -5826,8 +5826,8 @@ "yScale": 1 }, { - "x": 0.004858512328212328, - "y": -0.00003734444544534199 + "x": 0.00486, + "y": -0.00004 }, [ { @@ -5895,148 +5895,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 491.9548905224375, - "y": 523.2042371913276 + "x": 491.95489, + "y": 523.20424 }, { "body": null, "index": 1, "isInternal": false, - "x": 490.02089110393956, - "y": 529.1552373803084 + "x": 490.02089, + "y": 529.15524 }, { "body": null, "index": 2, "isInternal": false, - "x": 486.3428915985729, - "y": 534.2172377397043 + "x": 486.34289, + "y": 534.21724 }, { "body": null, "index": 3, "isInternal": false, - "x": 481.2808919579687, - "y": 537.8952382343376 + "x": 481.28089, + "y": 537.89524 }, { "body": null, "index": 4, "isInternal": false, - "x": 475.32989214694976, - "y": 539.8292388158395 + "x": 475.32989, + "y": 539.82924 }, { "body": null, "index": 5, "isInternal": false, - "x": 469.0718921469497, - "y": 539.8292394273401 + "x": 469.07189, + "y": 539.82924 }, { "body": null, "index": 6, "isInternal": false, - "x": 463.12089195796887, - "y": 537.8952400088423 + "x": 463.12089, + "y": 537.89524 }, { "body": null, "index": 7, "isInternal": false, - "x": 458.058891598573, - "y": 534.2172405034756 + "x": 458.05889, + "y": 534.21724 }, { "body": null, "index": 8, "isInternal": false, - "x": 454.3808911039398, - "y": 529.1552408628714 + "x": 454.38089, + "y": 529.15524 }, { "body": null, "index": 9, "isInternal": false, - "x": 452.4468905224376, - "y": 523.2042410518524 + "x": 452.44689, + "y": 523.20424 }, { "body": null, "index": 10, "isInternal": false, - "x": 452.4468899109371, - "y": 516.9462410518524 + "x": 452.44689, + "y": 516.94624 }, { "body": null, "index": 11, "isInternal": false, - "x": 454.38088932943504, - "y": 510.9952408628715 + "x": 454.38089, + "y": 510.99524 }, { "body": null, "index": 12, "isInternal": false, - "x": 458.0588888348017, - "y": 505.93324050347564 + "x": 458.05889, + "y": 505.93324 }, { "body": null, "index": 13, "isInternal": false, - "x": 463.1208884754059, - "y": 502.25524000884246 + "x": 463.12089, + "y": 502.25524 }, { "body": null, "index": 14, "isInternal": false, - "x": 469.07188828642484, - "y": 500.3212394273403 + "x": 469.07189, + "y": 500.32124 }, { "body": null, "index": 15, "isInternal": false, - "x": 475.3298882864249, - "y": 500.32123881583976 + "x": 475.32989, + "y": 500.32124 }, { "body": null, "index": 16, "isInternal": false, - "x": 481.28088847540573, - "y": 502.2552382343377 + "x": 481.28089, + "y": 502.25524 }, { "body": null, "index": 17, "isInternal": false, - "x": 486.3428888348016, - "y": 505.93323773970434 + "x": 486.34289, + "y": 505.93324 }, { "body": null, "index": 18, "isInternal": false, - "x": 490.0208893294348, - "y": 510.99523738030854 + "x": 490.02089, + "y": 510.99524 }, { "body": null, "index": 19, "isInternal": false, - "x": 491.95488991093697, - "y": 516.9462371913277 + "x": 491.95489, + "y": 516.94624 }, { - "angle": -1.9625890901402047e-10, - "anglePrev": -6.654221778115441e-11, - "angularSpeed": 8.381740671358782e-11, - "angularVelocity": -1.264580598701456e-10, - "area": 1236.0755439999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1236.07554, "axes": { "#": 672 }, @@ -6059,12 +6059,12 @@ "frictionStatic": 0.5, "id": 28, "inertia": 99999, - "inverseInertia": 0.00001000010000100001, - "inverseMass": 0.8090120420665812, + "inverseInertia": 0.00001, + "inverseMass": 0.80901, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.2360755439999997, + "mass": 1.23608, "motion": 0, "parent": null, "position": { @@ -6086,7 +6086,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.01, - "speed": 0.2776446879742179, + "speed": 0.27764, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6131,44 +6131,44 @@ } ], { - "x": -0.9510375919883136, - "y": -0.30907523133546194 + "x": -0.95104, + "y": -0.30908 }, { - "x": -0.808998623620738, - "y": -0.5878105366355314 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878105369530778, - "y": -0.8089986233900119 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090752317087612, - "y": -0.9510375918669967 + "x": -0.30908, + "y": -0.95104 }, { - "x": -1.9625890901402047e-10, + "x": 0, "y": -1 }, { - "x": 0.30907523133546194, - "y": -0.9510375919883136 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.5878105366355314, - "y": -0.808998623620738 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089986233900119, - "y": -0.5878105369530778 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.9510375918669967, - "y": -0.3090752317087612 + "x": 0.95104, + "y": -0.30908 }, { "x": 1, - "y": -1.9625890901402047e-10 + "y": 0 }, { "max": { @@ -6179,12 +6179,12 @@ } }, { - "x": 531.4518583050228, - "y": 539.8906372411843 + "x": 531.45186, + "y": 539.89064 }, { - "x": 491.93538593941605, - "y": 500.2900557786794 + "x": 491.93539, + "y": 500.29006 }, { "category": 1, @@ -6201,16 +6201,16 @@ "y": 0 }, { - "x": 511.69785830440867, - "y": 520.0440557792939 + "x": 511.69786, + "y": 520.04406 }, { "x": 0, "y": 0 }, { - "x": 511.692999788927, - "y": 520.0439942482453 + "x": 511.693, + "y": 520.04399 }, { "endCol": 11, @@ -6233,8 +6233,8 @@ "yScale": 1 }, { - "x": 0.004891462831210447, - "y": 0.00006153104538952903 + "x": 0.00489, + "y": 0.00006 }, [ { @@ -6302,141 +6302,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 531.4518583050228, - "y": 523.173055775417 + "x": 531.45186, + "y": 523.17306 }, { "body": null, "index": 1, "isInternal": false, - "x": 529.5178583061905, - "y": 529.1240557757964 + "x": 529.51786, + "y": 529.12406 }, { "body": null, "index": 2, "isInternal": false, - "x": 525.839858307184, - "y": 534.1860557765185 + "x": 525.83986, + "y": 534.18606 }, { "body": null, "index": 3, "isInternal": false, - "x": 520.7778583079062, - "y": 537.864055777512 + "x": 520.77786, + "y": 537.86406 }, { "body": null, "index": 4, "isInternal": false, - "x": 514.8268583082855, - "y": 539.7980557786797 + "x": 514.82686, + "y": 539.79806 }, { "body": null, "index": 5, "isInternal": false, - "x": 508.5688583082855, - "y": 539.7980557799079 + "x": 508.56886, + "y": 539.79806 }, { "body": null, "index": 6, "isInternal": false, - "x": 502.61785830790603, - "y": 537.8640557810756 + "x": 502.61786, + "y": 537.86406 }, { "body": null, "index": 7, "isInternal": false, - "x": 497.5558583071841, - "y": 534.1860557820692 + "x": 497.55586, + "y": 534.18606 }, { "body": null, "index": 8, "isInternal": false, - "x": 493.8778583061907, - "y": 529.1240557827913 + "x": 493.87786, + "y": 529.12406 }, { "body": null, "index": 9, "isInternal": false, - "x": 491.94385830502273, - "y": 523.1730557831706 + "x": 491.94386, + "y": 523.17306 }, { "body": null, "index": 10, "isInternal": false, - "x": 491.94385830379446, - "y": 516.9150557831706 + "x": 491.94386, + "y": 516.91506 }, { "body": null, "index": 11, "isInternal": false, - "x": 493.8778583026265, - "y": 510.96405578279087 + "x": 493.87786, + "y": 510.96406 }, { "body": null, "index": 12, "isInternal": false, - "x": 497.5558583016331, - "y": 505.902055782069 + "x": 497.55586, + "y": 505.90206 }, { "body": null, "index": 13, "isInternal": false, - "x": 502.6178583009112, - "y": 502.22405578107555 + "x": 502.61786, + "y": 502.22406 }, { "body": null, "index": 14, "isInternal": false, - "x": 508.5688583005317, - "y": 500.29005577990756 + "x": 508.56886, + "y": 500.29006 }, { "body": null, "index": 15, "isInternal": false, - "x": 514.8268583005319, - "y": 500.2900557786794 + "x": 514.82686, + "y": 500.29006 }, { "body": null, "index": 16, "isInternal": false, - "x": 520.7778583009112, - "y": 502.22405577751135 + "x": 520.77786, + "y": 502.22406 }, { "body": null, "index": 17, "isInternal": false, - "x": 525.8398583016334, - "y": 505.9020557765179 + "x": 525.83986, + "y": 505.90206 }, { "body": null, "index": 18, "isInternal": false, - "x": 529.5178583026269, - "y": 510.96405577579606 + "x": 529.51786, + "y": 510.96406 }, { "body": null, "index": 19, "isInternal": false, - "x": 531.4518583037946, - "y": 516.9150557754169 + "x": 531.45186, + "y": 516.91506 }, [], [ @@ -6463,7 +6463,7 @@ } ], { - "angleB": -1.8210355516150483e-22, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 17, @@ -6495,7 +6495,7 @@ "visible": true }, { - "angleB": 5.313625844843808e-7, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 19, @@ -6527,7 +6527,7 @@ "visible": true }, { - "angleB": -3.5873880815014555e-7, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 21, @@ -6559,7 +6559,7 @@ "visible": true }, { - "angleB": 4.2991143917722316e-10, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 23, @@ -6591,7 +6591,7 @@ "visible": true }, { - "angleB": -7.797744072331507e-8, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 25, @@ -6623,7 +6623,7 @@ "visible": true }, { - "angleB": -9.771501363490808e-8, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 27, @@ -6655,7 +6655,7 @@ "visible": true }, { - "angleB": -1.96258909014021e-10, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 29, diff --git a/test/browser/refs/pyramid/pyramid-0.json b/test/browser/refs/pyramid/pyramid-0.json index 0ac5ab57..4f0976d9 100644 --- a/test/browser/refs/pyramid/pyramid-0.json +++ b/test/browser/refs/pyramid/pyramid-0.json @@ -1072,8 +1072,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1252,8 +1252,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1432,8 +1432,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1612,8 +1612,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1792,8 +1792,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1972,8 +1972,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2152,8 +2152,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2332,8 +2332,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2512,8 +2512,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2692,8 +2692,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2872,8 +2872,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3052,8 +3052,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3232,8 +3232,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3412,8 +3412,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3592,8 +3592,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3772,8 +3772,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3952,8 +3952,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4132,8 +4132,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4312,8 +4312,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4492,8 +4492,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4672,8 +4672,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4852,8 +4852,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5032,8 +5032,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5212,8 +5212,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5392,8 +5392,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5572,8 +5572,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5752,8 +5752,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5932,8 +5932,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6112,8 +6112,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6292,8 +6292,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6472,8 +6472,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6652,8 +6652,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6832,8 +6832,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7012,8 +7012,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7192,8 +7192,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7372,8 +7372,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7552,8 +7552,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7732,8 +7732,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7912,8 +7912,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8092,8 +8092,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8272,8 +8272,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8452,8 +8452,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8632,8 +8632,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8812,8 +8812,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8992,8 +8992,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9172,8 +9172,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9352,8 +9352,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9532,8 +9532,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9712,8 +9712,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9892,8 +9892,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10072,8 +10072,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10252,8 +10252,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10432,8 +10432,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10612,8 +10612,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10792,8 +10792,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10972,8 +10972,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11152,8 +11152,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11332,8 +11332,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11512,8 +11512,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11692,8 +11692,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11872,8 +11872,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -12052,8 +12052,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -12232,8 +12232,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -12412,8 +12412,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, diff --git a/test/browser/refs/pyramid/pyramid-10.json b/test/browser/refs/pyramid/pyramid-10.json index ae701b83..2c15c947 100644 --- a/test/browser/refs/pyramid/pyramid-10.json +++ b/test/browser/refs/pyramid/pyramid-10.json @@ -1112,8 +1112,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1140,7 +1140,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1178,11 +1178,11 @@ }, { "x": 420, - "y": 314.3251697787212 + "y": 314.32517 }, { "x": 380, - "y": 271.41789906368564 + "y": 271.4179 }, { "category": 1, @@ -1200,7 +1200,7 @@ }, { "x": 400, - "y": 291.41789906368564 + "y": 291.4179 }, { "x": 0, @@ -1208,7 +1208,7 @@ }, { "x": 400, - "y": 289.92292678371024 + "y": 289.92293 }, { "endCol": 8, @@ -1232,7 +1232,7 @@ }, { "x": 0, - "y": 1.6013642529318304 + "y": 1.60136 }, [ { @@ -1253,28 +1253,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 271.41789906368564 + "y": 271.4179 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 271.41789906368564 + "y": 271.4179 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 311.41789906368564 + "y": 311.4179 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 311.41789906368564 + "y": 311.4179 }, { "angle": 0, @@ -1302,8 +1302,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1330,7 +1330,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5983938345141253, + "speed": 1.59839, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1368,11 +1368,11 @@ }, { "x": 380, - "y": 351.0805735008698 + "y": 351.08057 }, { "x": 340, - "y": 309.48217966635565 + "y": 309.48218 }, { "category": 1, @@ -1390,7 +1390,7 @@ }, { "x": 360, - "y": 329.48217966635565 + "y": 329.48218 }, { "x": 0, @@ -1398,7 +1398,7 @@ }, { "x": 360, - "y": 328.7696883254849 + "y": 328.76969 }, { "endCol": 7, @@ -1422,7 +1422,7 @@ }, { "x": 0, - "y": 0.7137259595064052 + "y": 0.71373 }, [ { @@ -1443,28 +1443,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 309.48217966635565 + "y": 309.48218 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 309.48217966635565 + "y": 309.48218 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 349.48217966635565 + "y": 349.48218 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 349.48217966635565 + "y": 349.48218 }, { "angle": 0, @@ -1492,8 +1492,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1520,7 +1520,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5983938345141253, + "speed": 1.59839, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1558,11 +1558,11 @@ }, { "x": 420, - "y": 352.5613781137567 + "y": 352.56138 }, { "x": 380, - "y": 310.96298427924256 + "y": 310.96298 }, { "category": 1, @@ -1580,15 +1580,15 @@ }, { "x": 400, - "y": 330.96298427924256 + "y": 330.96298 }, { "x": 0, - "y": 0.4769796879316552 + "y": 0.47698 }, { "x": 400, - "y": 329.5478059789844 + "y": 329.54781 }, { "endCol": 8, @@ -1612,7 +1612,7 @@ }, { "x": 0, - "y": 1.308786327301732 + "y": 1.30879 }, [ { @@ -1633,28 +1633,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 310.96298427924256 + "y": 310.96298 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 310.96298427924256 + "y": 310.96298 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 350.96298427924256 + "y": 350.96298 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 350.96298427924256 + "y": 350.96298 }, { "angle": 0, @@ -1682,8 +1682,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1710,7 +1710,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5983938345141253, + "speed": 1.59839, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1748,11 +1748,11 @@ }, { "x": 460, - "y": 351.0805735008698 + "y": 351.08057 }, { "x": 420, - "y": 309.48217966635565 + "y": 309.48218 }, { "category": 1, @@ -1770,7 +1770,7 @@ }, { "x": 440, - "y": 329.48217966635565 + "y": 329.48218 }, { "x": 0, @@ -1778,7 +1778,7 @@ }, { "x": 440, - "y": 328.7696883254849 + "y": 328.76969 }, { "endCol": 9, @@ -1802,7 +1802,7 @@ }, { "x": 0, - "y": 0.7137259595064052 + "y": 0.71373 }, [ { @@ -1823,28 +1823,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 309.48217966635565 + "y": 309.48218 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 309.48217966635565 + "y": 309.48218 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 349.48217966635565 + "y": 349.48218 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 349.48217966635565 + "y": 349.48218 }, { "angle": 0, @@ -1872,8 +1872,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1900,7 +1900,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8429888317353045, + "speed": 0.84299, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1938,11 +1938,11 @@ }, { "x": 340, - "y": 387.8064238089688 + "y": 387.80642 }, { "x": 300, - "y": 346.96343497723353 + "y": 346.96343 }, { "category": 1, @@ -1960,7 +1960,7 @@ }, { "x": 320, - "y": 366.96343497723353 + "y": 366.96343 }, { "x": 0, @@ -1968,7 +1968,7 @@ }, { "x": 320, - "y": 366.8377847126105 + "y": 366.83778 }, { "endCol": 7, @@ -1992,7 +1992,7 @@ }, { "x": 0, - "y": 0.12074020386955908 + "y": 0.12074 }, [ { @@ -2013,28 +2013,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 346.96343497723353 + "y": 346.96343 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 346.96343497723353 + "y": 346.96343 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 386.96343497723353 + "y": 386.96343 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 386.96343497723353 + "y": 386.96343 }, { "angle": 0, @@ -2062,8 +2062,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2090,7 +2090,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5114696619738694, + "speed": 1.51147, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2128,11 +2128,11 @@ }, { "x": 380, - "y": 390.60095116849095 + "y": 390.60095 }, { "x": 340, - "y": 349.0894815065171 + "y": 349.08948 }, { "category": 1, @@ -2150,7 +2150,7 @@ }, { "x": 360, - "y": 369.0894815065171 + "y": 369.08948 }, { "x": 0, @@ -2158,7 +2158,7 @@ }, { "x": 360, - "y": 368.37791612962303 + "y": 368.37792 }, { "endCol": 7, @@ -2182,7 +2182,7 @@ }, { "x": 0, - "y": 0.710330758258408 + "y": 0.71033 }, [ { @@ -2203,28 +2203,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 349.0894815065171 + "y": 349.08948 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 349.0894815065171 + "y": 349.08948 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 389.0894815065171 + "y": 389.08948 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 389.0894815065171 + "y": 389.08948 }, { "angle": 0, @@ -2252,8 +2252,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2280,7 +2280,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5114696619738694, + "speed": 1.51147, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2318,11 +2318,11 @@ }, { "x": 420, - "y": 391.3596008887642 + "y": 391.3596 }, { "x": 380, - "y": 349.8481312267903 + "y": 349.84813 }, { "category": 1, @@ -2340,7 +2340,7 @@ }, { "x": 400, - "y": 369.8481312267903 + "y": 369.84813 }, { "x": 0, @@ -2348,7 +2348,7 @@ }, { "x": 400, - "y": 368.6679251809782 + "y": 368.66793 }, { "endCol": 8, @@ -2372,7 +2372,7 @@ }, { "x": 0, - "y": 1.0087656704926644 + "y": 1.00877 }, [ { @@ -2393,28 +2393,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 349.8481312267903 + "y": 349.84813 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 349.8481312267903 + "y": 349.84813 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 389.8481312267903 + "y": 389.84813 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 389.8481312267903 + "y": 389.84813 }, { "angle": 0, @@ -2442,8 +2442,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2470,7 +2470,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.5114696619738694, + "speed": 1.51147, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2508,11 +2508,11 @@ }, { "x": 460, - "y": 390.60095116849095 + "y": 390.60095 }, { "x": 420, - "y": 349.0894815065171 + "y": 349.08948 }, { "category": 1, @@ -2530,7 +2530,7 @@ }, { "x": 440, - "y": 369.0894815065171 + "y": 369.08948 }, { "x": 0, @@ -2538,7 +2538,7 @@ }, { "x": 440, - "y": 368.37791612962303 + "y": 368.37792 }, { "endCol": 9, @@ -2562,7 +2562,7 @@ }, { "x": 0, - "y": 0.710330758258408 + "y": 0.71033 }, [ { @@ -2583,28 +2583,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 349.0894815065171 + "y": 349.08948 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 349.0894815065171 + "y": 349.08948 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 389.0894815065171 + "y": 389.08948 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 389.0894815065171 + "y": 389.08948 }, { "angle": 0, @@ -2632,8 +2632,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2660,7 +2660,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8429888317353045, + "speed": 0.84299, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2698,11 +2698,11 @@ }, { "x": 500, - "y": 387.8064238089688 + "y": 387.80642 }, { "x": 460, - "y": 346.96343497723353 + "y": 346.96343 }, { "category": 1, @@ -2720,7 +2720,7 @@ }, { "x": 480, - "y": 366.96343497723353 + "y": 366.96343 }, { "x": 0, @@ -2728,7 +2728,7 @@ }, { "x": 480, - "y": 366.8377847126105 + "y": 366.83778 }, { "endCol": 10, @@ -2752,7 +2752,7 @@ }, { "x": 0, - "y": 0.12074020386955908 + "y": 0.12074 }, [ { @@ -2773,28 +2773,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 346.96343497723353 + "y": 346.96343 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 346.96343497723353 + "y": 346.96343 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 386.96343497723353 + "y": 386.96343 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 386.96343497723353 + "y": 386.96343 }, { "angle": 0, @@ -2822,8 +2822,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2850,7 +2850,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2226378688017378, + "speed": 0.22264, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2888,11 +2888,11 @@ }, { "x": 300, - "y": 424.3841440239626 + "y": 424.38414 }, { "x": 260, - "y": 384.1615061551609 + "y": 384.16151 }, { "category": 1, @@ -2910,7 +2910,7 @@ }, { "x": 280, - "y": 404.1615061551609 + "y": 404.16151 }, { "x": 0, @@ -2918,7 +2918,7 @@ }, { "x": 280, - "y": 404.52215148450597 + "y": 404.52215 }, { "endCol": 6, @@ -2942,7 +2942,7 @@ }, { "x": 0, - "y": -0.3822496262951063 + "y": -0.38225 }, [ { @@ -2963,28 +2963,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 384.1615061551609 + "y": 384.16151 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 384.1615061551609 + "y": 384.16151 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 424.1615061551609 + "y": 424.16151 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 424.1615061551609 + "y": 424.16151 }, { "angle": 0, @@ -3012,8 +3012,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3040,7 +3040,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8247838911685217, + "speed": 0.82478, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3078,11 +3078,11 @@ }, { "x": 340, - "y": 427.45974776739143 + "y": 427.45975 }, { "x": 300, - "y": 386.6349638762229 + "y": 386.63496 }, { "category": 1, @@ -3100,7 +3100,7 @@ }, { "x": 320, - "y": 406.6349638762229 + "y": 406.63496 }, { "x": 0, @@ -3108,7 +3108,7 @@ }, { "x": 320, - "y": 406.5056310660348 + "y": 406.50563 }, { "endCol": 7, @@ -3132,7 +3132,7 @@ }, { "x": 0, - "y": 0.13424287094153442 + "y": 0.13424 }, [ { @@ -3153,28 +3153,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 386.6349638762229 + "y": 386.63496 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 386.6349638762229 + "y": 386.63496 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 426.6349638762229 + "y": 426.63496 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 426.6349638762229 + "y": 426.63496 }, { "angle": 0, @@ -3202,8 +3202,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3230,7 +3230,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2539549868343245, + "speed": 1.25395, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3268,11 +3268,11 @@ }, { "x": 380, - "y": 429.334062433083 + "y": 429.33406 }, { "x": 340, - "y": 388.08010744624863 + "y": 388.08011 }, { "category": 1, @@ -3290,7 +3290,7 @@ }, { "x": 360, - "y": 408.08010744624863 + "y": 408.08011 }, { "x": 0, @@ -3298,7 +3298,7 @@ }, { "x": 360, - "y": 407.38432852675044 + "y": 407.38433 }, { "endCol": 7, @@ -3322,7 +3322,7 @@ }, { "x": 0, - "y": 0.6763764678177608 + "y": 0.67638 }, [ { @@ -3343,28 +3343,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 388.08010744624863 + "y": 388.08011 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 388.08010744624863 + "y": 388.08011 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 428.08010744624863 + "y": 428.08011 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 428.08010744624863 + "y": 428.08011 }, { "angle": 0, @@ -3392,8 +3392,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3420,7 +3420,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2539549868343245, + "speed": 1.25395, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3458,11 +3458,11 @@ }, { "x": 420, - "y": 429.61492877065837 + "y": 429.61493 }, { "x": 380, - "y": 388.360973783824 + "y": 388.36097 }, { "category": 1, @@ -3480,7 +3480,7 @@ }, { "x": 400, - "y": 408.360973783824 + "y": 408.36097 }, { "x": 0, @@ -3488,7 +3488,7 @@ }, { "x": 400, - "y": 407.4644735268239 + "y": 407.46447 }, { "endCol": 8, @@ -3512,7 +3512,7 @@ }, { "x": 0, - "y": 0.7468130390100782 + "y": 0.74681 }, [ { @@ -3533,28 +3533,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 388.360973783824 + "y": 388.36097 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 388.360973783824 + "y": 388.36097 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 428.360973783824 + "y": 428.36097 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 428.360973783824 + "y": 428.36097 }, { "angle": 0, @@ -3582,8 +3582,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3610,7 +3610,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2539549868343245, + "speed": 1.25395, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3648,11 +3648,11 @@ }, { "x": 460, - "y": 429.334062433083 + "y": 429.33406 }, { "x": 420, - "y": 388.08010744624863 + "y": 388.08011 }, { "category": 1, @@ -3670,7 +3670,7 @@ }, { "x": 440, - "y": 408.08010744624863 + "y": 408.08011 }, { "x": 0, @@ -3678,7 +3678,7 @@ }, { "x": 440, - "y": 407.38432852675044 + "y": 407.38433 }, { "endCol": 9, @@ -3702,7 +3702,7 @@ }, { "x": 0, - "y": 0.6763764678177608 + "y": 0.67638 }, [ { @@ -3723,28 +3723,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 388.08010744624863 + "y": 388.08011 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 388.08010744624863 + "y": 388.08011 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 428.08010744624863 + "y": 428.08011 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 428.08010744624863 + "y": 428.08011 }, { "angle": 0, @@ -3772,8 +3772,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3800,7 +3800,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8247838911685217, + "speed": 0.82478, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3838,11 +3838,11 @@ }, { "x": 500, - "y": 427.45974776739143 + "y": 427.45975 }, { "x": 460, - "y": 386.6349638762229 + "y": 386.63496 }, { "category": 1, @@ -3860,7 +3860,7 @@ }, { "x": 480, - "y": 406.6349638762229 + "y": 406.63496 }, { "x": 0, @@ -3868,7 +3868,7 @@ }, { "x": 480, - "y": 406.5056310660348 + "y": 406.50563 }, { "endCol": 10, @@ -3892,7 +3892,7 @@ }, { "x": 0, - "y": 0.13424287094153442 + "y": 0.13424 }, [ { @@ -3913,28 +3913,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 386.6349638762229 + "y": 386.63496 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 386.6349638762229 + "y": 386.63496 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 426.6349638762229 + "y": 426.63496 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 426.6349638762229 + "y": 426.63496 }, { "angle": 0, @@ -3962,8 +3962,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3990,7 +3990,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2226378688017378, + "speed": 0.22264, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4028,11 +4028,11 @@ }, { "x": 540, - "y": 424.3841440239626 + "y": 424.38414 }, { "x": 500, - "y": 384.1615061551609 + "y": 384.16151 }, { "category": 1, @@ -4050,7 +4050,7 @@ }, { "x": 520, - "y": 404.1615061551609 + "y": 404.16151 }, { "x": 0, @@ -4058,7 +4058,7 @@ }, { "x": 520, - "y": 404.52215148450597 + "y": 404.52215 }, { "endCol": 11, @@ -4082,7 +4082,7 @@ }, { "x": 0, - "y": -0.3822496262951063 + "y": -0.38225 }, [ { @@ -4103,28 +4103,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 384.1615061551609 + "y": 384.16151 }, { "body": null, "index": 1, "isInternal": false, "x": 540, - "y": 384.1615061551609 + "y": 384.16151 }, { "body": null, "index": 2, "isInternal": false, "x": 540, - "y": 424.1615061551609 + "y": 424.16151 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 424.1615061551609 + "y": 424.16151 }, { "angle": 0, @@ -4152,8 +4152,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4180,7 +4180,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.08388238887564953, + "speed": 0.08388, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4218,11 +4218,11 @@ }, { "x": 260, - "y": 461.5209581893605 + "y": 461.52096 }, { "x": 220, - "y": 421.4370758004849 + "y": 421.43708 }, { "category": 1, @@ -4240,15 +4240,15 @@ }, { "x": 240, - "y": 441.5209581893605 + "y": 441.52096 }, { "x": 0, - "y": -0.35032436907423475 + "y": -0.35032 }, { "x": 240, - "y": 441.9137065171233 + "y": 441.91371 }, { "endCol": 5, @@ -4272,7 +4272,7 @@ }, { "x": 0, - "y": -0.428879925662045 + "y": -0.42888 }, [ { @@ -4293,28 +4293,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 421.5209581893605 + "y": 421.52096 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 421.5209581893605 + "y": 421.52096 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 461.5209581893605 + "y": 461.52096 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 461.5209581893605 + "y": 461.52096 }, { "angle": 0, @@ -4342,8 +4342,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4370,7 +4370,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.23372232762193632, + "speed": 0.23372, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4408,11 +4408,11 @@ }, { "x": 300, - "y": 464.11156202375247 + "y": 464.11156 }, { "x": 260, - "y": 423.87783969613054 + "y": 423.87784 }, { "category": 1, @@ -4430,7 +4430,7 @@ }, { "x": 280, - "y": 443.87783969613054 + "y": 443.87784 }, { "x": 0, @@ -4438,7 +4438,7 @@ }, { "x": 280, - "y": 444.2222818027631 + "y": 444.22228 }, { "endCol": 6, @@ -4462,7 +4462,7 @@ }, { "x": 0, - "y": -0.3228378096825395 + "y": -0.32284 }, [ { @@ -4483,28 +4483,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 423.87783969613054 + "y": 423.87784 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 423.87783969613054 + "y": 423.87784 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 463.87783969613054 + "y": 463.87784 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 463.87783969613054 + "y": 463.87784 }, { "angle": 0, @@ -4532,8 +4532,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4560,7 +4560,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7672315102664511, + "speed": 0.76723, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4598,11 +4598,11 @@ }, { "x": 340, - "y": 466.54250252492375 + "y": 466.5425 }, { "x": 300, - "y": 425.7752710146573 + "y": 425.77527 }, { "category": 1, @@ -4620,7 +4620,7 @@ }, { "x": 320, - "y": 445.7752710146573 + "y": 445.77527 }, { "x": 0, @@ -4628,7 +4628,7 @@ }, { "x": 320, - "y": 445.63628123083913 + "y": 445.63628 }, { "endCol": 7, @@ -4652,7 +4652,7 @@ }, { "x": 0, - "y": 0.14531900098677397 + "y": 0.14532 }, [ { @@ -4673,28 +4673,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 425.7752710146573 + "y": 425.77527 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 425.7752710146573 + "y": 425.77527 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 465.7752710146573 + "y": 465.77527 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 465.7752710146573 + "y": 465.77527 }, { "angle": 0, @@ -4722,8 +4722,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4750,7 +4750,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9441641028535135, + "speed": 0.94416, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4788,11 +4788,11 @@ }, { "x": 380, - "y": 467.5609169143824 + "y": 467.56092 }, { "x": 340, - "y": 426.6167528115289 + "y": 426.61675 }, { "category": 1, @@ -4810,7 +4810,7 @@ }, { "x": 360, - "y": 446.6167528115289 + "y": 446.61675 }, { "x": 0, @@ -4818,7 +4818,7 @@ }, { "x": 360, - "y": 445.99269779593175 + "y": 445.9927 }, { "endCol": 7, @@ -4842,7 +4842,7 @@ }, { "x": 0, - "y": 0.5542930793029655 + "y": 0.55429 }, [ { @@ -4863,28 +4863,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 426.6167528115289 + "y": 426.61675 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 426.6167528115289 + "y": 426.61675 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 466.6167528115289 + "y": 466.61675 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 466.6167528115289 + "y": 466.61675 }, { "angle": 0, @@ -4912,8 +4912,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4940,7 +4940,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9441641028535135, + "speed": 0.94416, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4978,11 +4978,11 @@ }, { "x": 420, - "y": 467.6307559604422 + "y": 467.63076 }, { "x": 380, - "y": 426.68659185758867 + "y": 426.68659 }, { "category": 1, @@ -5000,7 +5000,7 @@ }, { "x": 400, - "y": 446.68659185758867 + "y": 446.68659 }, { "x": 0, @@ -5008,7 +5008,7 @@ }, { "x": 400, - "y": 446.02228737273873 + "y": 446.02229 }, { "endCol": 8, @@ -5032,7 +5032,7 @@ }, { "x": 0, - "y": 0.5542930793029655 + "y": 0.55429 }, [ { @@ -5053,28 +5053,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 426.68659185758867 + "y": 426.68659 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 426.68659185758867 + "y": 426.68659 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 466.68659185758867 + "y": 466.68659 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 466.68659185758867 + "y": 466.68659 }, { "angle": 0, @@ -5102,8 +5102,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5130,7 +5130,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9441641028535135, + "speed": 0.94416, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5168,11 +5168,11 @@ }, { "x": 460, - "y": 467.5609169143824 + "y": 467.56092 }, { "x": 420, - "y": 426.6167528115289 + "y": 426.61675 }, { "category": 1, @@ -5190,7 +5190,7 @@ }, { "x": 440, - "y": 446.6167528115289 + "y": 446.61675 }, { "x": 0, @@ -5198,7 +5198,7 @@ }, { "x": 440, - "y": 445.99269779593175 + "y": 445.9927 }, { "endCol": 9, @@ -5222,7 +5222,7 @@ }, { "x": 0, - "y": 0.5542930793029655 + "y": 0.55429 }, [ { @@ -5243,28 +5243,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 426.6167528115289 + "y": 426.61675 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 426.6167528115289 + "y": 426.61675 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 466.6167528115289 + "y": 466.61675 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 466.6167528115289 + "y": 466.61675 }, { "angle": 0, @@ -5292,8 +5292,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5320,7 +5320,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7672315102664511, + "speed": 0.76723, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5358,11 +5358,11 @@ }, { "x": 500, - "y": 466.54250252492375 + "y": 466.5425 }, { "x": 460, - "y": 425.7752710146573 + "y": 425.77527 }, { "category": 1, @@ -5380,7 +5380,7 @@ }, { "x": 480, - "y": 445.7752710146573 + "y": 445.77527 }, { "x": 0, @@ -5388,7 +5388,7 @@ }, { "x": 480, - "y": 445.63628123083913 + "y": 445.63628 }, { "endCol": 10, @@ -5412,7 +5412,7 @@ }, { "x": 0, - "y": 0.14531900098677397 + "y": 0.14532 }, [ { @@ -5433,28 +5433,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 425.7752710146573 + "y": 425.77527 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 425.7752710146573 + "y": 425.77527 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 465.7752710146573 + "y": 465.77527 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 465.7752710146573 + "y": 465.77527 }, { "angle": 0, @@ -5482,8 +5482,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5510,7 +5510,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.23372232762193632, + "speed": 0.23372, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5548,11 +5548,11 @@ }, { "x": 540, - "y": 464.11156202375247 + "y": 464.11156 }, { "x": 500, - "y": 423.87783969613054 + "y": 423.87784 }, { "category": 1, @@ -5570,7 +5570,7 @@ }, { "x": 520, - "y": 443.87783969613054 + "y": 443.87784 }, { "x": 0, @@ -5578,7 +5578,7 @@ }, { "x": 520, - "y": 444.2222818027631 + "y": 444.22228 }, { "endCol": 11, @@ -5602,7 +5602,7 @@ }, { "x": 0, - "y": -0.3228378096825395 + "y": -0.32284 }, [ { @@ -5623,28 +5623,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 423.87783969613054 + "y": 423.87784 }, { "body": null, "index": 1, "isInternal": false, "x": 540, - "y": 423.87783969613054 + "y": 423.87784 }, { "body": null, "index": 2, "isInternal": false, "x": 540, - "y": 463.87783969613054 + "y": 463.87784 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 463.87783969613054 + "y": 463.87784 }, { "angle": 0, @@ -5672,8 +5672,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5700,7 +5700,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.08388238887564953, + "speed": 0.08388, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5738,11 +5738,11 @@ }, { "x": 580, - "y": 461.5209581893605 + "y": 461.52096 }, { "x": 540, - "y": 421.4370758004849 + "y": 421.43708 }, { "category": 1, @@ -5760,15 +5760,15 @@ }, { "x": 560, - "y": 441.5209581893605 + "y": 441.52096 }, { "x": 0, - "y": -0.35032436907423475 + "y": -0.35032 }, { "x": 560, - "y": 441.9137065171233 + "y": 441.91371 }, { "endCol": 12, @@ -5792,7 +5792,7 @@ }, { "x": 0, - "y": -0.428879925662045 + "y": -0.42888 }, [ { @@ -5813,28 +5813,28 @@ "index": 0, "isInternal": false, "x": 540, - "y": 421.5209581893605 + "y": 421.52096 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 421.5209581893605 + "y": 421.52096 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 461.5209581893605 + "y": 461.52096 }, { "body": null, "index": 3, "isInternal": false, "x": 540, - "y": 461.5209581893605 + "y": 461.52096 }, { "angle": 0, @@ -5862,8 +5862,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5890,7 +5890,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.13229554043117972, + "speed": 0.1323, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5928,11 +5928,11 @@ }, { "x": 220, - "y": 500.37292420096736 + "y": 500.37292 }, { "x": 180, - "y": 460.2406286605362 + "y": 460.24063 }, { "category": 1, @@ -5950,7 +5950,7 @@ }, { "x": 200, - "y": 480.2406286605362 + "y": 480.24063 }, { "x": 0, @@ -5958,7 +5958,7 @@ }, { "x": 200, - "y": 480.25050128604704 + "y": 480.2505 }, { "endCol": 4, @@ -5982,7 +5982,7 @@ }, { "x": 0, - "y": -0.011544733951382113 + "y": -0.01154 }, [ { @@ -6003,28 +6003,28 @@ "index": 0, "isInternal": false, "x": 180, - "y": 460.2406286605362 + "y": 460.24063 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 460.2406286605362 + "y": 460.24063 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 500.2406286605362 + "y": 500.24063 }, { "body": null, "index": 3, "isInternal": false, "x": 180, - "y": 500.2406286605362 + "y": 500.24063 }, { "angle": 0, @@ -6052,8 +6052,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6080,7 +6080,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.05873834210963924, + "speed": 0.05874, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6118,11 +6118,11 @@ }, { "x": 260, - "y": 501.3208518365944 + "y": 501.32085 }, { "x": 220, - "y": 461.26211349448477 + "y": 461.26211 }, { "category": 1, @@ -6140,15 +6140,15 @@ }, { "x": 240, - "y": 481.3208518365944 + "y": 481.32085 }, { "x": 0, - "y": -0.3298644913987209 + "y": -0.32986 }, { "x": 240, - "y": 481.6865014659328 + "y": 481.6865 }, { "endCol": 5, @@ -6172,7 +6172,7 @@ }, { "x": 0, - "y": -0.32951803143913594 + "y": -0.32952 }, [ { @@ -6193,28 +6193,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 461.3208518365944 + "y": 461.32085 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 461.3208518365944 + "y": 461.32085 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 501.3208518365944 + "y": 501.32085 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 501.3208518365944 + "y": 501.32085 }, { "angle": 0, @@ -6242,8 +6242,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6270,7 +6270,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2658657757703129, + "speed": 0.26587, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6308,11 +6308,11 @@ }, { "x": 300, - "y": 503.4050742767637 + "y": 503.40507 }, { "x": 260, - "y": 463.1392085009934 + "y": 463.13921 }, { "category": 1, @@ -6330,7 +6330,7 @@ }, { "x": 280, - "y": 483.1392085009934 + "y": 483.13921 }, { "x": 0, @@ -6338,7 +6338,7 @@ }, { "x": 280, - "y": 483.43057615557257 + "y": 483.43058 }, { "endCol": 6, @@ -6362,7 +6362,7 @@ }, { "x": 0, - "y": -0.2494074477748427 + "y": -0.24941 }, [ { @@ -6383,28 +6383,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 463.1392085009934 + "y": 463.13921 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 463.1392085009934 + "y": 463.13921 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 503.1392085009934 + "y": 503.13921 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 503.1392085009934 + "y": 503.13921 }, { "angle": 0, @@ -6432,8 +6432,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6460,7 +6460,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6792312254502987, + "speed": 0.67923, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6498,11 +6498,11 @@ }, { "x": 340, - "y": 505.1297373970159 + "y": 505.12974 }, { "x": 300, - "y": 464.4505061715656 + "y": 464.45051 }, { "category": 1, @@ -6520,7 +6520,7 @@ }, { "x": 320, - "y": 484.4505061715656 + "y": 484.45051 }, { "x": 0, @@ -6528,7 +6528,7 @@ }, { "x": 320, - "y": 484.3070378437815 + "y": 484.30704 }, { "endCol": 7, @@ -6552,7 +6552,7 @@ }, { "x": 0, - "y": 0.14100076351394364 + "y": 0.141 }, [ { @@ -6573,28 +6573,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 464.4505061715656 + "y": 464.45051 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 464.4505061715656 + "y": 464.45051 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 504.4505061715656 + "y": 504.45051 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 504.4505061715656 + "y": 504.45051 }, { "angle": 0, @@ -6622,8 +6622,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6650,7 +6650,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7135235874802892, + "speed": 0.71352, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6688,11 +6688,11 @@ }, { "x": 380, - "y": 505.5749226432018 + "y": 505.57492 }, { "x": 340, - "y": 464.8613990557215 + "y": 464.8614 }, { "category": 1, @@ -6710,7 +6710,7 @@ }, { "x": 360, - "y": 484.8613990557215 + "y": 484.8614 }, { "x": 0, @@ -6718,7 +6718,7 @@ }, { "x": 360, - "y": 484.39004863408303 + "y": 484.39005 }, { "endCol": 7, @@ -6742,7 +6742,7 @@ }, { "x": 0, - "y": 0.3607602114193469 + "y": 0.36076 }, [ { @@ -6763,28 +6763,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 464.8613990557215 + "y": 464.8614 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 464.8613990557215 + "y": 464.8614 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 504.8613990557215 + "y": 504.8614 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 504.8613990557215 + "y": 504.8614 }, { "angle": 0, @@ -6812,8 +6812,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6840,7 +6840,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7135235874802892, + "speed": 0.71352, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6878,11 +6878,11 @@ }, { "x": 420, - "y": 505.58528913890103 + "y": 505.58529 }, { "x": 380, - "y": 464.87176555142076 + "y": 464.87177 }, { "category": 1, @@ -6900,7 +6900,7 @@ }, { "x": 400, - "y": 484.87176555142076 + "y": 484.87177 }, { "x": 0, @@ -6908,7 +6908,7 @@ }, { "x": 400, - "y": 484.4004151297823 + "y": 484.40042 }, { "endCol": 8, @@ -6932,7 +6932,7 @@ }, { "x": 0, - "y": 0.3607602114193469 + "y": 0.36076 }, [ { @@ -6953,28 +6953,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 464.87176555142076 + "y": 464.87177 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 464.87176555142076 + "y": 464.87177 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 504.87176555142076 + "y": 504.87177 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 504.87176555142076 + "y": 504.87177 }, { "angle": 0, @@ -7002,8 +7002,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7030,7 +7030,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7135235874802892, + "speed": 0.71352, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7068,11 +7068,11 @@ }, { "x": 460, - "y": 505.5749226432018 + "y": 505.57492 }, { "x": 420, - "y": 464.8613990557215 + "y": 464.8614 }, { "category": 1, @@ -7090,7 +7090,7 @@ }, { "x": 440, - "y": 484.8613990557215 + "y": 484.8614 }, { "x": 0, @@ -7098,7 +7098,7 @@ }, { "x": 440, - "y": 484.39004863408303 + "y": 484.39005 }, { "endCol": 9, @@ -7122,7 +7122,7 @@ }, { "x": 0, - "y": 0.3607602114193469 + "y": 0.36076 }, [ { @@ -7143,28 +7143,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 464.8613990557215 + "y": 464.8614 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 464.8613990557215 + "y": 464.8614 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 504.8613990557215 + "y": 504.8614 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 504.8613990557215 + "y": 504.8614 }, { "angle": 0, @@ -7192,8 +7192,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7220,7 +7220,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6792312254502987, + "speed": 0.67923, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7258,11 +7258,11 @@ }, { "x": 500, - "y": 505.1297373970159 + "y": 505.12974 }, { "x": 460, - "y": 464.4505061715656 + "y": 464.45051 }, { "category": 1, @@ -7280,7 +7280,7 @@ }, { "x": 480, - "y": 484.4505061715656 + "y": 484.45051 }, { "x": 0, @@ -7288,7 +7288,7 @@ }, { "x": 480, - "y": 484.3070378437815 + "y": 484.30704 }, { "endCol": 10, @@ -7312,7 +7312,7 @@ }, { "x": 0, - "y": 0.14100076351394364 + "y": 0.141 }, [ { @@ -7333,28 +7333,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 464.4505061715656 + "y": 464.45051 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 464.4505061715656 + "y": 464.45051 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 504.4505061715656 + "y": 504.45051 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 504.4505061715656 + "y": 504.45051 }, { "angle": 0, @@ -7382,8 +7382,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7410,7 +7410,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2658657757703129, + "speed": 0.26587, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7448,11 +7448,11 @@ }, { "x": 540, - "y": 503.4050742767637 + "y": 503.40507 }, { "x": 500, - "y": 463.1392085009934 + "y": 463.13921 }, { "category": 1, @@ -7470,7 +7470,7 @@ }, { "x": 520, - "y": 483.1392085009934 + "y": 483.13921 }, { "x": 0, @@ -7478,7 +7478,7 @@ }, { "x": 520, - "y": 483.43057615557257 + "y": 483.43058 }, { "endCol": 11, @@ -7502,7 +7502,7 @@ }, { "x": 0, - "y": -0.2494074477748427 + "y": -0.24941 }, [ { @@ -7523,28 +7523,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 463.1392085009934 + "y": 463.13921 }, { "body": null, "index": 1, "isInternal": false, "x": 540, - "y": 463.1392085009934 + "y": 463.13921 }, { "body": null, "index": 2, "isInternal": false, "x": 540, - "y": 503.1392085009934 + "y": 503.13921 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 503.1392085009934 + "y": 503.13921 }, { "angle": 0, @@ -7572,8 +7572,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7600,7 +7600,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.05873834210963924, + "speed": 0.05874, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7638,11 +7638,11 @@ }, { "x": 580, - "y": 501.3208518365944 + "y": 501.32085 }, { "x": 540, - "y": 461.26211349448477 + "y": 461.26211 }, { "category": 1, @@ -7660,15 +7660,15 @@ }, { "x": 560, - "y": 481.3208518365944 + "y": 481.32085 }, { "x": 0, - "y": -0.3298644913987209 + "y": -0.32986 }, { "x": 560, - "y": 481.6865014659328 + "y": 481.6865 }, { "endCol": 12, @@ -7692,7 +7692,7 @@ }, { "x": 0, - "y": -0.32951803143913594 + "y": -0.32952 }, [ { @@ -7713,28 +7713,28 @@ "index": 0, "isInternal": false, "x": 540, - "y": 461.3208518365944 + "y": 461.32085 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 461.3208518365944 + "y": 461.32085 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 501.3208518365944 + "y": 501.32085 }, { "body": null, "index": 3, "isInternal": false, "x": 540, - "y": 501.3208518365944 + "y": 501.32085 }, { "angle": 0, @@ -7762,8 +7762,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7790,7 +7790,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.13229554043117972, + "speed": 0.1323, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7828,11 +7828,11 @@ }, { "x": 620, - "y": 500.37292420096736 + "y": 500.37292 }, { "x": 580, - "y": 460.2406286605362 + "y": 460.24063 }, { "category": 1, @@ -7850,7 +7850,7 @@ }, { "x": 600, - "y": 480.2406286605362 + "y": 480.24063 }, { "x": 0, @@ -7858,7 +7858,7 @@ }, { "x": 600, - "y": 480.25050128604704 + "y": 480.2505 }, { "endCol": 12, @@ -7882,7 +7882,7 @@ }, { "x": 0, - "y": -0.011544733951382113 + "y": -0.01154 }, [ { @@ -7903,28 +7903,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 460.2406286605362 + "y": 460.24063 }, { "body": null, "index": 1, "isInternal": false, "x": 620, - "y": 460.2406286605362 + "y": 460.24063 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 500.2406286605362 + "y": 500.24063 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 500.2406286605362 + "y": 500.24063 }, { "angle": 0, @@ -7952,8 +7952,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7980,7 +7980,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2916986650262136, + "speed": 0.2917, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8018,11 +8018,11 @@ }, { "x": 180, - "y": 540.2475894189695 + "y": 540.24759 }, { "x": 140, - "y": 499.9558907539433 + "y": 499.95589 }, { "category": 1, @@ -8040,7 +8040,7 @@ }, { "x": 160, - "y": 519.9558907539433 + "y": 519.95589 }, { "x": 0, @@ -8048,7 +8048,7 @@ }, { "x": 160, - "y": 519.9522311731891 + "y": 519.95223 }, { "endCol": 3, @@ -8072,7 +8072,7 @@ }, { "x": 0, - "y": 0.005195978251322231 + "y": 0.0052 }, [ { @@ -8093,28 +8093,28 @@ "index": 0, "isInternal": false, "x": 140, - "y": 499.9558907539433 + "y": 499.95589 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 499.9558907539433 + "y": 499.95589 }, { "body": null, "index": 2, "isInternal": false, "x": 180, - "y": 539.9558907539433 + "y": 539.95589 }, { "body": null, "index": 3, "isInternal": false, "x": 140, - "y": 539.9558907539433 + "y": 539.95589 }, { "angle": 0, @@ -8142,8 +8142,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8170,7 +8170,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.1507735843643111, + "speed": 0.15077, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8208,11 +8208,11 @@ }, { "x": 220, - "y": 540.2769982699166 + "y": 540.277 }, { "x": 180, - "y": 500.1262246855524 + "y": 500.12622 }, { "category": 1, @@ -8230,7 +8230,7 @@ }, { "x": 200, - "y": 520.1262246855523 + "y": 520.12622 }, { "x": 0, @@ -8238,7 +8238,7 @@ }, { "x": 200, - "y": 520.1348432297328 + "y": 520.13484 }, { "endCol": 4, @@ -8262,7 +8262,7 @@ }, { "x": 0, - "y": -0.006946435740019297 + "y": -0.00695 }, [ { @@ -8283,28 +8283,28 @@ "index": 0, "isInternal": false, "x": 180, - "y": 500.1262246855524 + "y": 500.12622 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 500.1262246855524 + "y": 500.12622 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 540.1262246855523 + "y": 540.12622 }, { "body": null, "index": 3, "isInternal": false, "x": 180, - "y": 540.1262246855523 + "y": 540.12622 }, { "angle": 0, @@ -8332,8 +8332,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8360,7 +8360,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.02318941531173052, + "speed": 0.02319, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8398,11 +8398,11 @@ }, { "x": 260, - "y": 540.8650228768364 + "y": 540.86502 }, { "x": 220, - "y": 500.8418334615245 + "y": 500.84183 }, { "category": 1, @@ -8420,7 +8420,7 @@ }, { "x": 240, - "y": 520.8418334615246 + "y": 520.84183 }, { "x": 0, @@ -8428,7 +8428,7 @@ }, { "x": 240, - "y": 521.1190065667746 + "y": 521.11901 }, { "endCol": 5, @@ -8452,7 +8452,7 @@ }, { "x": 0, - "y": -0.20737987033123773 + "y": -0.20738 }, [ { @@ -8473,28 +8473,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 500.8418334615245 + "y": 500.84183 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 500.8418334615245 + "y": 500.84183 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 540.8418334615246 + "y": 540.84183 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 540.8418334615246 + "y": 540.84183 }, { "angle": 0, @@ -8522,8 +8522,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8550,7 +8550,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.29912010988201887, + "speed": 0.29912, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8588,11 +8588,11 @@ }, { "x": 300, - "y": 542.2926953620454 + "y": 542.2927 }, { "x": 260, - "y": 501.9935752521634 + "y": 501.99358 }, { "category": 1, @@ -8610,7 +8610,7 @@ }, { "x": 280, - "y": 521.9935752521634 + "y": 521.99358 }, { "x": 0, @@ -8618,7 +8618,7 @@ }, { "x": 280, - "y": 522.1992535392487 + "y": 522.19925 }, { "endCol": 6, @@ -8642,7 +8642,7 @@ }, { "x": 0, - "y": -0.14737273949924656 + "y": -0.14737 }, [ { @@ -8663,28 +8663,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 501.9935752521634 + "y": 501.99358 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 501.9935752521634 + "y": 501.99358 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 541.9935752521634 + "y": 541.99358 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 541.9935752521634 + "y": 541.99358 }, { "angle": 0, @@ -8712,8 +8712,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8740,7 +8740,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5639265283965865, + "speed": 0.56393, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8778,11 +8778,11 @@ }, { "x": 340, - "y": 543.3152645408715 + "y": 543.31526 }, { "x": 300, - "y": 502.7513380124749 + "y": 502.75134 }, { "category": 1, @@ -8800,7 +8800,7 @@ }, { "x": 320, - "y": 522.7513380124749 + "y": 522.75134 }, { "x": 0, @@ -8808,7 +8808,7 @@ }, { "x": 320, - "y": 522.6271127541844 + "y": 522.62711 }, { "endCol": 7, @@ -8832,7 +8832,7 @@ }, { "x": 0, - "y": 0.10185791799233357 + "y": 0.10186 }, [ { @@ -8853,28 +8853,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 502.7513380124749 + "y": 502.75134 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 502.7513380124749 + "y": 502.75134 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 542.7513380124749 + "y": 542.75134 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 542.7513380124749 + "y": 542.75134 }, { "angle": 0, @@ -8902,8 +8902,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8930,7 +8930,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5639265283965865, + "speed": 0.56393, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8968,11 +8968,11 @@ }, { "x": 380, - "y": 543.4783047263486 + "y": 543.4783 }, { "x": 340, - "y": 502.91437819795203 + "y": 502.91438 }, { "category": 1, @@ -8990,7 +8990,7 @@ }, { "x": 360, - "y": 522.914378197952 + "y": 522.91438 }, { "x": 0, @@ -8998,7 +8998,7 @@ }, { "x": 360, - "y": 522.6323210901903 + "y": 522.63232 }, { "endCol": 7, @@ -9022,7 +9022,7 @@ }, { "x": 0, - "y": 0.17711963621820814 + "y": 0.17712 }, [ { @@ -9043,28 +9043,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 502.91437819795203 + "y": 502.91438 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 502.91437819795203 + "y": 502.91438 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 542.914378197952 + "y": 542.91438 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 542.914378197952 + "y": 542.91438 }, { "angle": 0, @@ -9092,8 +9092,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9120,7 +9120,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5639265283965865, + "speed": 0.56393, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9158,11 +9158,11 @@ }, { "x": 420, - "y": 543.4789963670098 + "y": 543.479 }, { "x": 380, - "y": 502.91506983861325 + "y": 502.91507 }, { "category": 1, @@ -9180,7 +9180,7 @@ }, { "x": 400, - "y": 522.9150698386132 + "y": 522.91507 }, { "x": 0, @@ -9188,7 +9188,7 @@ }, { "x": 400, - "y": 522.6330127308515 + "y": 522.63301 }, { "endCol": 8, @@ -9212,7 +9212,7 @@ }, { "x": 0, - "y": 0.17711963621820814 + "y": 0.17712 }, [ { @@ -9233,28 +9233,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 502.91506983861325 + "y": 502.91507 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 502.91506983861325 + "y": 502.91507 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 542.9150698386132 + "y": 542.91507 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 542.9150698386132 + "y": 542.91507 }, { "angle": 0, @@ -9282,8 +9282,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9310,7 +9310,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5639265283965865, + "speed": 0.56393, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9348,11 +9348,11 @@ }, { "x": 460, - "y": 543.4783047263486 + "y": 543.4783 }, { "x": 420, - "y": 502.91437819795203 + "y": 502.91438 }, { "category": 1, @@ -9370,7 +9370,7 @@ }, { "x": 440, - "y": 522.914378197952 + "y": 522.91438 }, { "x": 0, @@ -9378,7 +9378,7 @@ }, { "x": 440, - "y": 522.6323210901903 + "y": 522.63232 }, { "endCol": 9, @@ -9402,7 +9402,7 @@ }, { "x": 0, - "y": 0.17711963621820814 + "y": 0.17712 }, [ { @@ -9423,28 +9423,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 502.91437819795203 + "y": 502.91438 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 502.91437819795203 + "y": 502.91438 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 542.914378197952 + "y": 542.91438 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 542.914378197952 + "y": 542.91438 }, { "angle": 0, @@ -9472,8 +9472,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9500,7 +9500,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.5639265283965865, + "speed": 0.56393, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9538,11 +9538,11 @@ }, { "x": 500, - "y": 543.3152645408715 + "y": 543.31526 }, { "x": 460, - "y": 502.7513380124749 + "y": 502.75134 }, { "category": 1, @@ -9560,7 +9560,7 @@ }, { "x": 480, - "y": 522.7513380124749 + "y": 522.75134 }, { "x": 0, @@ -9568,7 +9568,7 @@ }, { "x": 480, - "y": 522.6271127541844 + "y": 522.62711 }, { "endCol": 10, @@ -9592,7 +9592,7 @@ }, { "x": 0, - "y": 0.10185791799233357 + "y": 0.10186 }, [ { @@ -9613,28 +9613,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 502.7513380124749 + "y": 502.75134 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 502.7513380124749 + "y": 502.75134 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 542.7513380124749 + "y": 542.75134 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 542.7513380124749 + "y": 542.75134 }, { "angle": 0, @@ -9662,8 +9662,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9690,7 +9690,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.29912010988201887, + "speed": 0.29912, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9728,11 +9728,11 @@ }, { "x": 540, - "y": 542.2926953620454 + "y": 542.2927 }, { "x": 500, - "y": 501.9935752521634 + "y": 501.99358 }, { "category": 1, @@ -9750,7 +9750,7 @@ }, { "x": 520, - "y": 521.9935752521634 + "y": 521.99358 }, { "x": 0, @@ -9758,7 +9758,7 @@ }, { "x": 520, - "y": 522.1992535392487 + "y": 522.19925 }, { "endCol": 11, @@ -9782,7 +9782,7 @@ }, { "x": 0, - "y": -0.14737273949924656 + "y": -0.14737 }, [ { @@ -9803,28 +9803,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 501.9935752521634 + "y": 501.99358 }, { "body": null, "index": 1, "isInternal": false, "x": 540, - "y": 501.9935752521634 + "y": 501.99358 }, { "body": null, "index": 2, "isInternal": false, "x": 540, - "y": 541.9935752521634 + "y": 541.99358 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 541.9935752521634 + "y": 541.99358 }, { "angle": 0, @@ -9852,8 +9852,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9880,7 +9880,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.02318941531173052, + "speed": 0.02319, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9918,11 +9918,11 @@ }, { "x": 580, - "y": 540.8650228768364 + "y": 540.86502 }, { "x": 540, - "y": 500.8418334615245 + "y": 500.84183 }, { "category": 1, @@ -9940,7 +9940,7 @@ }, { "x": 560, - "y": 520.8418334615246 + "y": 520.84183 }, { "x": 0, @@ -9948,7 +9948,7 @@ }, { "x": 560, - "y": 521.1190065667746 + "y": 521.11901 }, { "endCol": 12, @@ -9972,7 +9972,7 @@ }, { "x": 0, - "y": -0.20737987033123773 + "y": -0.20738 }, [ { @@ -9993,28 +9993,28 @@ "index": 0, "isInternal": false, "x": 540, - "y": 500.8418334615245 + "y": 500.84183 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 500.8418334615245 + "y": 500.84183 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 540.8418334615246 + "y": 540.84183 }, { "body": null, "index": 3, "isInternal": false, "x": 540, - "y": 540.8418334615246 + "y": 540.84183 }, { "angle": 0, @@ -10042,8 +10042,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10070,7 +10070,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.1507735843643111, + "speed": 0.15077, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10108,11 +10108,11 @@ }, { "x": 620, - "y": 540.2769982699166 + "y": 540.277 }, { "x": 580, - "y": 500.1262246855524 + "y": 500.12622 }, { "category": 1, @@ -10130,7 +10130,7 @@ }, { "x": 600, - "y": 520.1262246855523 + "y": 520.12622 }, { "x": 0, @@ -10138,7 +10138,7 @@ }, { "x": 600, - "y": 520.1348432297328 + "y": 520.13484 }, { "endCol": 12, @@ -10162,7 +10162,7 @@ }, { "x": 0, - "y": -0.006946435740019297 + "y": -0.00695 }, [ { @@ -10183,28 +10183,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 500.1262246855524 + "y": 500.12622 }, { "body": null, "index": 1, "isInternal": false, "x": 620, - "y": 500.1262246855524 + "y": 500.12622 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 540.1262246855523 + "y": 540.12622 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 540.1262246855523 + "y": 540.12622 }, { "angle": 0, @@ -10232,8 +10232,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10260,7 +10260,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2916986650262136, + "speed": 0.2917, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10298,11 +10298,11 @@ }, { "x": 660, - "y": 540.2475894189695 + "y": 540.24759 }, { "x": 620, - "y": 499.9558907539433 + "y": 499.95589 }, { "category": 1, @@ -10320,7 +10320,7 @@ }, { "x": 640, - "y": 519.9558907539433 + "y": 519.95589 }, { "x": 0, @@ -10328,7 +10328,7 @@ }, { "x": 640, - "y": 519.9522311731891 + "y": 519.95223 }, { "endCol": 13, @@ -10352,7 +10352,7 @@ }, { "x": 0, - "y": 0.005195978251322231 + "y": 0.0052 }, [ { @@ -10373,28 +10373,28 @@ "index": 0, "isInternal": false, "x": 620, - "y": 499.9558907539433 + "y": 499.95589 }, { "body": null, "index": 1, "isInternal": false, "x": 660, - "y": 499.9558907539433 + "y": 499.95589 }, { "body": null, "index": 2, "isInternal": false, "x": 660, - "y": 539.9558907539433 + "y": 539.95589 }, { "body": null, "index": 3, "isInternal": false, "x": 620, - "y": 539.9558907539433 + "y": 539.95589 }, { "angle": 0, @@ -10422,8 +10422,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10450,7 +10450,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2777777726188249, + "speed": 0.27778, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10488,11 +10488,11 @@ }, { "x": 140, - "y": 580.0777780503969 + "y": 580.07778 }, { "x": 100, - "y": 539.800000277778 + "y": 539.8 }, { "category": 1, @@ -10510,7 +10510,7 @@ }, { "x": 120, - "y": 559.800000277778 + "y": 559.8 }, { "x": 0, @@ -10518,7 +10518,7 @@ }, { "x": 120, - "y": 559.8000002771738 + "y": 559.8 }, { "endCol": 2, @@ -10542,7 +10542,7 @@ }, { "x": 0, - "y": 2.215642780356575e-9 + "y": 0 }, [ { @@ -10563,28 +10563,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 539.800000277778 + "y": 539.8 }, { "body": null, "index": 1, "isInternal": false, "x": 140, - "y": 539.800000277778 + "y": 539.8 }, { "body": null, "index": 2, "isInternal": false, "x": 140, - "y": 579.800000277778 + "y": 579.8 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 579.800000277778 + "y": 579.8 }, { "angle": 0, @@ -10612,8 +10612,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10640,7 +10640,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.28731537269902746, + "speed": 0.28732, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10678,11 +10678,11 @@ }, { "x": 180, - "y": 580.1402608911369 + "y": 580.14026 }, { "x": 140, - "y": 539.8529455184379 + "y": 539.85295 }, { "category": 1, @@ -10700,7 +10700,7 @@ }, { "x": 160, - "y": 559.8529455184379 + "y": 559.85295 }, { "x": 0, @@ -10708,7 +10708,7 @@ }, { "x": 160, - "y": 559.8504382358065 + "y": 559.85044 }, { "endCol": 3, @@ -10732,7 +10732,7 @@ }, { "x": 0, - "y": 0.0009708851342793423 + "y": 0.00097 }, [ { @@ -10753,28 +10753,28 @@ "index": 0, "isInternal": false, "x": 140, - "y": 539.8529455184379 + "y": 539.85295 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 539.8529455184379 + "y": 539.85295 }, { "body": null, "index": 2, "isInternal": false, "x": 180, - "y": 579.8529455184379 + "y": 579.85295 }, { "body": null, "index": 3, "isInternal": false, "x": 140, - "y": 579.8529455184379 + "y": 579.85295 }, { "angle": 0, @@ -10802,8 +10802,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10830,7 +10830,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.21002129091608665, + "speed": 0.21002, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10868,11 +10868,11 @@ }, { "x": 220, - "y": 580.1159317715958 + "y": 580.11593 }, { "x": 180, - "y": 539.9059104806797 + "y": 539.90591 }, { "category": 1, @@ -10890,7 +10890,7 @@ }, { "x": 200, - "y": 559.9059104806797 + "y": 559.90591 }, { "x": 0, @@ -10898,7 +10898,7 @@ }, { "x": 200, - "y": 559.9105082299211 + "y": 559.91051 }, { "endCol": 4, @@ -10922,7 +10922,7 @@ }, { "x": 0, - "y": -0.0014661672432794148 + "y": -0.00147 }, [ { @@ -10943,28 +10943,28 @@ "index": 0, "isInternal": false, "x": 180, - "y": 539.9059104806797 + "y": 539.90591 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 539.9059104806797 + "y": 539.90591 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 579.9059104806797 + "y": 579.90591 }, { "body": null, "index": 3, "isInternal": false, "x": 180, - "y": 579.9059104806797 + "y": 579.90591 }, { "angle": 0, @@ -10992,8 +10992,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11020,7 +11020,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.15336324593410677, + "speed": 0.15336, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11058,11 +11058,11 @@ }, { "x": 260, - "y": 580.3098240789215 + "y": 580.30982 }, { "x": 220, - "y": 540.1564608329874 + "y": 540.15646 }, { "category": 1, @@ -11080,7 +11080,7 @@ }, { "x": 240, - "y": 560.1564608329874 + "y": 560.15646 }, { "x": 0, @@ -11088,7 +11088,7 @@ }, { "x": 240, - "y": 560.2923129240986 + "y": 560.29231 }, { "endCol": 5, @@ -11112,7 +11112,7 @@ }, { "x": 0, - "y": -0.04048171881777307 + "y": -0.04048 }, [ { @@ -11133,28 +11133,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 540.1564608329874 + "y": 540.15646 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 540.1564608329874 + "y": 540.15646 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 580.1564608329874 + "y": 580.15646 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 580.1564608329874 + "y": 580.15646 }, { "angle": 0, @@ -11182,8 +11182,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11210,7 +11210,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.3031722114315876, + "speed": 0.30317, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11248,11 +11248,11 @@ }, { "x": 300, - "y": 580.8546257286664 + "y": 580.85463 }, { "x": 260, - "y": 540.5514535172348 + "y": 540.55145 }, { "category": 1, @@ -11270,7 +11270,7 @@ }, { "x": 280, - "y": 560.5514535172348 + "y": 560.55145 }, { "x": 0, @@ -11278,7 +11278,7 @@ }, { "x": 280, - "y": 560.6473466737593 + "y": 560.64735 }, { "endCol": 6, @@ -11302,7 +11302,7 @@ }, { "x": 0, - "y": -0.02725371255803566 + "y": -0.02725 }, [ { @@ -11323,28 +11323,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 540.5514535172348 + "y": 540.55145 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 540.5514535172348 + "y": 540.55145 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 580.5514535172348 + "y": 580.55145 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 580.5514535172348 + "y": 580.55145 }, { "angle": 0, @@ -11372,8 +11372,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11400,7 +11400,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.41483976290000735, + "speed": 0.41484, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11438,11 +11438,11 @@ }, { "x": 340, - "y": 581.2126963970635 + "y": 581.2127 }, { "x": 300, - "y": 540.7978566341635 + "y": 540.79786 }, { "category": 1, @@ -11460,7 +11460,7 @@ }, { "x": 320, - "y": 560.7978566341635 + "y": 560.79786 }, { "x": 0, @@ -11468,7 +11468,7 @@ }, { "x": 320, - "y": 560.7301109392032 + "y": 560.73011 }, { "endCol": 7, @@ -11492,7 +11492,7 @@ }, { "x": 0, - "y": 0.022262730917759654 + "y": 0.02226 }, [ { @@ -11513,28 +11513,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 540.7978566341635 + "y": 540.79786 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 540.7978566341635 + "y": 540.79786 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 580.7978566341635 + "y": 580.79786 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 580.7978566341635 + "y": 580.79786 }, { "angle": 0, @@ -11562,8 +11562,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11590,7 +11590,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.41483976290000735, + "speed": 0.41484, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11628,11 +11628,11 @@ }, { "x": 380, - "y": 581.2528556530127 + "y": 581.25286 }, { "x": 340, - "y": 540.8380158901127 + "y": 540.83802 }, { "category": 1, @@ -11650,7 +11650,7 @@ }, { "x": 360, - "y": 560.8380158901127 + "y": 560.83802 }, { "x": 0, @@ -11658,7 +11658,7 @@ }, { "x": 360, - "y": 560.724216889097 + "y": 560.72422 }, { "endCol": 7, @@ -11682,7 +11682,7 @@ }, { "x": 0, - "y": 0.029371487412731767 + "y": 0.02937 }, [ { @@ -11703,28 +11703,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 540.8380158901127 + "y": 540.83802 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 540.8380158901127 + "y": 540.83802 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 580.8380158901127 + "y": 580.83802 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 580.8380158901127 + "y": 580.83802 }, { "angle": 0, @@ -11752,8 +11752,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11780,7 +11780,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.41483976290000735, + "speed": 0.41484, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11818,11 +11818,11 @@ }, { "x": 420, - "y": 581.2528556530127 + "y": 581.25286 }, { "x": 380, - "y": 540.8380158901127 + "y": 540.83802 }, { "category": 1, @@ -11840,7 +11840,7 @@ }, { "x": 400, - "y": 560.8380158901127 + "y": 560.83802 }, { "x": 0, @@ -11848,7 +11848,7 @@ }, { "x": 400, - "y": 560.724216889097 + "y": 560.72422 }, { "endCol": 8, @@ -11872,7 +11872,7 @@ }, { "x": 0, - "y": 0.029371487412731767 + "y": 0.02937 }, [ { @@ -11893,28 +11893,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 540.8380158901127 + "y": 540.83802 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 540.8380158901127 + "y": 540.83802 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 580.8380158901127 + "y": 580.83802 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 580.8380158901127 + "y": 580.83802 }, { "angle": 0, @@ -11942,8 +11942,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -11970,7 +11970,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.41483976290000735, + "speed": 0.41484, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12008,11 +12008,11 @@ }, { "x": 460, - "y": 581.2528556530127 + "y": 581.25286 }, { "x": 420, - "y": 540.8380158901127 + "y": 540.83802 }, { "category": 1, @@ -12030,7 +12030,7 @@ }, { "x": 440, - "y": 560.8380158901127 + "y": 560.83802 }, { "x": 0, @@ -12038,7 +12038,7 @@ }, { "x": 440, - "y": 560.724216889097 + "y": 560.72422 }, { "endCol": 9, @@ -12062,7 +12062,7 @@ }, { "x": 0, - "y": 0.029371487412731767 + "y": 0.02937 }, [ { @@ -12083,28 +12083,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 540.8380158901127 + "y": 540.83802 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 540.8380158901127 + "y": 540.83802 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 580.8380158901127 + "y": 580.83802 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 580.8380158901127 + "y": 580.83802 }, { "angle": 0, @@ -12132,8 +12132,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -12160,7 +12160,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.41483976290000735, + "speed": 0.41484, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12198,11 +12198,11 @@ }, { "x": 500, - "y": 581.2126963970635 + "y": 581.2127 }, { "x": 460, - "y": 540.7978566341635 + "y": 540.79786 }, { "category": 1, @@ -12220,7 +12220,7 @@ }, { "x": 480, - "y": 560.7978566341635 + "y": 560.79786 }, { "x": 0, @@ -12228,7 +12228,7 @@ }, { "x": 480, - "y": 560.7301109392032 + "y": 560.73011 }, { "endCol": 10, @@ -12252,7 +12252,7 @@ }, { "x": 0, - "y": 0.022262730917759654 + "y": 0.02226 }, [ { @@ -12273,28 +12273,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 540.7978566341635 + "y": 540.79786 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 540.7978566341635 + "y": 540.79786 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 580.7978566341635 + "y": 580.79786 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 580.7978566341635 + "y": 580.79786 }, { "angle": 0, @@ -12322,8 +12322,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -12350,7 +12350,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.3031722114315876, + "speed": 0.30317, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12388,11 +12388,11 @@ }, { "x": 540, - "y": 580.8546257286664 + "y": 580.85463 }, { "x": 500, - "y": 540.5514535172348 + "y": 540.55145 }, { "category": 1, @@ -12410,7 +12410,7 @@ }, { "x": 520, - "y": 560.5514535172348 + "y": 560.55145 }, { "x": 0, @@ -12418,7 +12418,7 @@ }, { "x": 520, - "y": 560.6473466737593 + "y": 560.64735 }, { "endCol": 11, @@ -12442,7 +12442,7 @@ }, { "x": 0, - "y": -0.02725371255803566 + "y": -0.02725 }, [ { @@ -12463,28 +12463,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 540.5514535172348 + "y": 540.55145 }, { "body": null, "index": 1, "isInternal": false, "x": 540, - "y": 540.5514535172348 + "y": 540.55145 }, { "body": null, "index": 2, "isInternal": false, "x": 540, - "y": 580.5514535172348 + "y": 580.55145 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 580.5514535172348 + "y": 580.55145 }, { "angle": 0, @@ -12512,8 +12512,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -12540,7 +12540,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.15336324593410677, + "speed": 0.15336, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12578,11 +12578,11 @@ }, { "x": 580, - "y": 580.3098240789215 + "y": 580.30982 }, { "x": 540, - "y": 540.1564608329874 + "y": 540.15646 }, { "category": 1, @@ -12600,7 +12600,7 @@ }, { "x": 560, - "y": 560.1564608329874 + "y": 560.15646 }, { "x": 0, @@ -12608,7 +12608,7 @@ }, { "x": 560, - "y": 560.2923129240986 + "y": 560.29231 }, { "endCol": 12, @@ -12632,7 +12632,7 @@ }, { "x": 0, - "y": -0.04048171881777307 + "y": -0.04048 }, [ { @@ -12653,28 +12653,28 @@ "index": 0, "isInternal": false, "x": 540, - "y": 540.1564608329874 + "y": 540.15646 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 540.1564608329874 + "y": 540.15646 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 580.1564608329874 + "y": 580.15646 }, { "body": null, "index": 3, "isInternal": false, "x": 540, - "y": 580.1564608329874 + "y": 580.15646 }, { "angle": 0, @@ -12702,8 +12702,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -12730,7 +12730,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.21002129091608665, + "speed": 0.21002, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12768,11 +12768,11 @@ }, { "x": 620, - "y": 580.1159317715958 + "y": 580.11593 }, { "x": 580, - "y": 539.9059104806797 + "y": 539.90591 }, { "category": 1, @@ -12790,7 +12790,7 @@ }, { "x": 600, - "y": 559.9059104806797 + "y": 559.90591 }, { "x": 0, @@ -12798,7 +12798,7 @@ }, { "x": 600, - "y": 559.9105082299211 + "y": 559.91051 }, { "endCol": 12, @@ -12822,7 +12822,7 @@ }, { "x": 0, - "y": -0.0014661672432794148 + "y": -0.00147 }, [ { @@ -12843,28 +12843,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 539.9059104806797 + "y": 539.90591 }, { "body": null, "index": 1, "isInternal": false, "x": 620, - "y": 539.9059104806797 + "y": 539.90591 }, { "body": null, "index": 2, "isInternal": false, "x": 620, - "y": 579.9059104806797 + "y": 579.90591 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 579.9059104806797 + "y": 579.90591 }, { "angle": 0, @@ -12892,8 +12892,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -12920,7 +12920,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.28731537269902746, + "speed": 0.28732, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12958,11 +12958,11 @@ }, { "x": 660, - "y": 580.1402608911369 + "y": 580.14026 }, { "x": 620, - "y": 539.8529455184379 + "y": 539.85295 }, { "category": 1, @@ -12980,7 +12980,7 @@ }, { "x": 640, - "y": 559.8529455184379 + "y": 559.85295 }, { "x": 0, @@ -12988,7 +12988,7 @@ }, { "x": 640, - "y": 559.8504382358065 + "y": 559.85044 }, { "endCol": 13, @@ -13012,7 +13012,7 @@ }, { "x": 0, - "y": 0.0009708851342793423 + "y": 0.00097 }, [ { @@ -13033,28 +13033,28 @@ "index": 0, "isInternal": false, "x": 620, - "y": 539.8529455184379 + "y": 539.85295 }, { "body": null, "index": 1, "isInternal": false, "x": 660, - "y": 539.8529455184379 + "y": 539.85295 }, { "body": null, "index": 2, "isInternal": false, "x": 660, - "y": 579.8529455184379 + "y": 579.85295 }, { "body": null, "index": 3, "isInternal": false, "x": 620, - "y": 579.8529455184379 + "y": 579.85295 }, { "angle": 0, @@ -13082,8 +13082,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -13110,7 +13110,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.2777777726188249, + "speed": 0.27778, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13148,11 +13148,11 @@ }, { "x": 700, - "y": 580.0777780503969 + "y": 580.07778 }, { "x": 660, - "y": 539.800000277778 + "y": 539.8 }, { "category": 1, @@ -13170,7 +13170,7 @@ }, { "x": 680, - "y": 559.800000277778 + "y": 559.8 }, { "x": 0, @@ -13178,7 +13178,7 @@ }, { "x": 680, - "y": 559.8000002771738 + "y": 559.8 }, { "endCol": 14, @@ -13202,7 +13202,7 @@ }, { "x": 0, - "y": 2.215642780356575e-9 + "y": 0 }, [ { @@ -13223,28 +13223,28 @@ "index": 0, "isInternal": false, "x": 660, - "y": 539.800000277778 + "y": 539.8 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 539.800000277778 + "y": 539.8 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 579.800000277778 + "y": 579.8 }, { "body": null, "index": 3, "isInternal": false, "x": 660, - "y": 579.800000277778 + "y": 579.8 }, [], [], diff --git a/test/browser/refs/raycasting/raycasting-0.json b/test/browser/refs/raycasting/raycasting-0.json index d706be90..771bd8c4 100644 --- a/test/browser/refs/raycasting/raycasting-0.json +++ b/test/browser/refs/raycasting/raycasting-0.json @@ -844,9 +844,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -899,24 +899,24 @@ } ], { - "x": 0.9603462267536241, - "y": 0.27881019486395536 + "x": 0.96035, + "y": 0.27881 }, { "x": 0, "y": 1 }, { - "x": -0.9603462267536241, - "y": 0.27881019486395536 + "x": -0.96035, + "y": 0.27881 }, { - "x": -0.6050832675335579, - "y": -0.7961621941231025 + "x": -0.60508, + "y": -0.79616 }, { - "x": 0.6050832675335579, - "y": -0.7961621941231025 + "x": 0.60508, + "y": -0.79616 }, { "max": { @@ -928,11 +928,11 @@ }, { "x": 250, - "y": 245.2517006802721 + "y": 245.2517 }, { "x": 150, - "y": 145.2517006802721 + "y": 145.2517 }, { "category": 1, @@ -999,35 +999,35 @@ "index": 0, "isInternal": false, "x": 250, - "y": 183.2517006802721 + "y": 183.2517 }, { "body": null, "index": 1, "isInternal": false, "x": 232, - "y": 245.2517006802721 + "y": 245.2517 }, { "body": null, "index": 2, "isInternal": false, "x": 168, - "y": 245.2517006802721 + "y": 245.2517 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 183.2517006802721 + "y": 183.2517 }, { "body": null, "index": 4, "isInternal": false, "x": 200, - "y": 145.2517006802721 + "y": 145.2517 }, { "max": { @@ -1253,7 +1253,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1534.906434764454, + "area": 1534.90643, "axes": { "#": 118 }, @@ -1274,13 +1274,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1336,12 +1336,12 @@ } }, { - "x": 56.40316358024691, - "y": 62.164094650205755 + "x": 56.40316, + "y": 62.16409 }, { - "x": 19.999999999999996, - "y": 19.999999999999993 + "x": 20, + "y": 20 }, { "category": 1, @@ -1358,16 +1358,16 @@ "y": 0 }, { - "x": 38.201581790123456, - "y": 41.08204732510288 + "x": 38.20158, + "y": 41.08205 }, { "x": 0, "y": 0 }, { - "x": 38.201581790123456, - "y": 41.08204732510288 + "x": 38.20158, + "y": 41.08205 }, { "fillStyle": "#C44D58", @@ -1404,36 +1404,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 19.999999999999996, - "y": 19.999999999999993 + "x": 20, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 56.40316358024691, - "y": 19.999999999999993 + "x": 56.40316, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.40316358024691, - "y": 62.164094650205755 + "x": 56.40316, + "y": 62.16409 }, { "body": null, "index": 3, "isInternal": false, - "x": 19.999999999999996, - "y": 62.164094650205755 + "x": 20, + "y": 62.16409 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.52878634164, + "area": 2220.52879, "axes": { "#": 139 }, @@ -1454,13 +1454,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1516,11 +1516,11 @@ } }, { - "x": 101.7190072016461, - "y": 69.0011574074074 + "x": 101.71901, + "y": 69.00116 }, { - "x": 56.40316358024691, + "x": 56.40316, "y": 20 }, { @@ -1538,16 +1538,16 @@ "y": 0 }, { - "x": 79.0610853909465, - "y": 44.5005787037037 + "x": 79.06109, + "y": 44.50058 }, { "x": 0, "y": 0 }, { - "x": 79.0610853909465, - "y": 44.5005787037037 + "x": 79.06109, + "y": 44.50058 }, { "fillStyle": "#C7F464", @@ -1584,36 +1584,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.40316358024691, + "x": 56.40316, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 101.7190072016461, - "y": 69.0011574074074 + "x": 101.71901, + "y": 69.00116 }, { "body": null, "index": 3, "isInternal": false, - "x": 56.40316358024691, - "y": 69.0011574074074 + "x": 56.40316, + "y": 69.00116 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1140.197701571206, + "area": 1140.1977, "axes": { "#": 160 }, @@ -1634,13 +1634,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1696,11 +1696,11 @@ } }, { - "x": 140.93981481481484, - "y": 49.07124485596708 + "x": 140.93981, + "y": 49.07124 }, { - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { @@ -1718,16 +1718,16 @@ "y": 0 }, { - "x": 121.32941100823047, - "y": 34.53562242798354 + "x": 121.32941, + "y": 34.53562 }, { "x": 0, "y": 0 }, { - "x": 121.32941100823047, - "y": 34.53562242798354 + "x": 121.32941, + "y": 34.53562 }, { "fillStyle": "#C7F464", @@ -1764,36 +1764,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 140.93981481481484, - "y": 49.07124485596708 + "x": 140.93981, + "y": 49.07124 }, { "body": null, "index": 3, "isInternal": false, - "x": 101.7190072016461, - "y": 49.07124485596708 + "x": 101.71901, + "y": 49.07124 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 752.4076041785743, + "area": 752.4076, "axes": { "#": 181 }, @@ -1814,13 +1814,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1876,11 +1876,11 @@ } }, { - "x": 165.81712962962968, - "y": 50.24472736625515 + "x": 165.81713, + "y": 50.24473 }, { - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { @@ -1898,16 +1898,16 @@ "y": 0 }, { - "x": 153.37847222222226, - "y": 35.122363683127574 + "x": 153.37847, + "y": 35.12236 }, { "x": 0, "y": 0 }, { - "x": 153.37847222222226, - "y": 35.122363683127574 + "x": 153.37847, + "y": 35.12236 }, { "fillStyle": "#C7F464", @@ -1944,36 +1944,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 165.81712962962968, + "x": 165.81713, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.81712962962968, - "y": 50.24472736625515 + "x": 165.81713, + "y": 50.24473 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.93981481481484, - "y": 50.24472736625515 + "x": 140.93981, + "y": 50.24473 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2027.2541820000001, + "area": 2027.25418, "axes": { "#": 202 }, @@ -1994,13 +1994,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -2043,12 +2043,12 @@ } ], { - "x": -0.500008582084709, - "y": -0.8660204488588239 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.500008582084709, - "y": -0.8660204488588239 + "x": 0.50001, + "y": -0.86602 }, { "x": 1, @@ -2063,12 +2063,12 @@ } }, { - "x": 214.19912962962968, + "x": 214.19913, "y": 75.868 }, { - "x": 165.81712962962968, - "y": 19.999999999999996 + "x": 165.81713, + "y": 20 }, { "category": 1, @@ -2085,7 +2085,7 @@ "y": 0 }, { - "x": 190.00812962962968, + "x": 190.00813, "y": 47.934 }, { @@ -2093,7 +2093,7 @@ "y": 0 }, { - "x": 190.00812962962968, + "x": 190.00813, "y": 47.934 }, { @@ -2137,42 +2137,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.19912962962968, - "y": 61.900999999999996 + "x": 214.19913, + "y": 61.901 }, { "body": null, "index": 1, "isInternal": false, - "x": 190.00812962962968, + "x": 190.00813, "y": 75.868 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.81712962962968, - "y": 61.900999999999996 + "x": 165.81713, + "y": 61.901 }, { "body": null, "index": 3, "isInternal": false, - "x": 165.81712962962968, + "x": 165.81713, "y": 33.967 }, { "body": null, "index": 4, "isInternal": false, - "x": 190.00812962962968, - "y": 19.999999999999996 + "x": 190.00813, + "y": 20 }, { "body": null, "index": 5, "isInternal": false, - "x": 214.19912962962968, + "x": 214.19913, "y": 33.967 }, { @@ -2201,13 +2201,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2256,20 +2256,20 @@ } ], { - "x": 0.30902000749156683, - "y": 0.95105553726894 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090188345853124, - "y": 0.5877827194518592 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090188345853124, - "y": -0.5877827194518592 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902000749156683, - "y": -0.95105553726894 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -2284,11 +2284,11 @@ } }, { - "x": 291.5277437444547, + "x": 291.52774, "y": 105.84 }, { - "x": 209.8897437444547, + "x": 209.88974, "y": 20 }, { @@ -2306,7 +2306,7 @@ "y": 0 }, { - "x": 255.0181296296297, + "x": 255.01813, "y": 62.92 }, { @@ -2314,7 +2314,7 @@ "y": 0 }, { - "x": 255.0181296296297, + "x": 255.01813, "y": 62.92 }, { @@ -2355,50 +2355,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 291.5277437444547, + "x": 291.52774, "y": 89.446 }, { "body": null, "index": 1, "isInternal": false, - "x": 241.0727437444547, + "x": 241.07274, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 209.8897437444547, + "x": 209.88974, "y": 62.92 }, { "body": null, "index": 3, "isInternal": false, - "x": 241.0727437444547, + "x": 241.07274, "y": 20 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.5277437444547, - "y": 36.394000000000005 + "x": 291.52774, + "y": 36.394 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3079.0178339999993, + "area": 3079.01783, "axes": { "#": 251 }, "bounds": { "#": 265 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 268 }, @@ -2413,13 +2413,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2492,52 +2492,52 @@ } ], { - "x": -0.9709437470087438, - "y": -0.23930783552700582 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.885418252251326, - "y": -0.46479513614086726 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.7485358222247293, - "y": -0.6630943544069339 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680780310049566, - "y": -0.8229746962632154 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545747323306568, - "y": -0.9350276783029703 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12051249760074473, - "y": -0.9927118101050428 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051249760074473, - "y": -0.9927118101050428 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545747323306568, - "y": -0.9350276783029703 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680780310049566, - "y": -0.8229746962632154 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485358222247293, - "y": -0.6630943544069339 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.885418252251326, - "y": -0.46479513614086726 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.9709437470087438, - "y": -0.23930783552700582 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -2552,12 +2552,12 @@ } }, { - "x": 353.98774374445475, + "x": 353.98774, "y": 82.918 }, { - "x": 291.5277437444547, - "y": 20.000000000000004 + "x": 291.52774, + "y": 20 }, { "category": 1, @@ -2574,7 +2574,7 @@ "y": 0 }, { - "x": 322.75774374445473, + "x": 322.75774, "y": 51.459 }, { @@ -2582,7 +2582,7 @@ "y": 0 }, { - "x": 322.75774374445473, + "x": 322.75774, "y": 51.459 }, { @@ -2686,182 +2686,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.98774374445475, - "y": 55.251000000000005 + "x": 353.98774, + "y": 55.251 }, { "body": null, "index": 1, "isInternal": false, - "x": 352.17274374445475, + "x": 352.17274, "y": 62.615 }, { "body": null, "index": 2, "isInternal": false, - "x": 348.6477437444547, + "x": 348.64774, "y": 69.33 }, { "body": null, "index": 3, "isInternal": false, - "x": 343.6187437444547, + "x": 343.61874, "y": 75.007 }, { "body": null, "index": 4, "isInternal": false, - "x": 337.37774374445473, + "x": 337.37774, "y": 79.315 }, { "body": null, "index": 5, "isInternal": false, - "x": 330.2867437444547, + "x": 330.28674, "y": 82.004 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.75774374445473, + "x": 322.75774, "y": 82.918 }, { "body": null, "index": 7, "isInternal": false, - "x": 315.22874374445473, + "x": 315.22874, "y": 82.004 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.1377437444547, + "x": 308.13774, "y": 79.315 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.89674374445474, + "x": 301.89674, "y": 75.007 }, { "body": null, "index": 10, "isInternal": false, - "x": 296.86774374445474, + "x": 296.86774, "y": 69.33 }, { "body": null, "index": 11, "isInternal": false, - "x": 293.3427437444547, + "x": 293.34274, "y": 62.615 }, { "body": null, "index": 12, "isInternal": false, - "x": 291.5277437444547, - "y": 55.251000000000005 + "x": 291.52774, + "y": 55.251 }, { "body": null, "index": 13, "isInternal": false, - "x": 291.5277437444547, + "x": 291.52774, "y": 47.667 }, { "body": null, "index": 14, "isInternal": false, - "x": 293.3427437444547, - "y": 40.303000000000004 + "x": 293.34274, + "y": 40.303 }, { "body": null, "index": 15, "isInternal": false, - "x": 296.86774374445474, - "y": 33.58800000000001 + "x": 296.86774, + "y": 33.588 }, { "body": null, "index": 16, "isInternal": false, - "x": 301.89674374445474, - "y": 27.911000000000005 + "x": 301.89674, + "y": 27.911 }, { "body": null, "index": 17, "isInternal": false, - "x": 308.1377437444547, + "x": 308.13774, "y": 23.603 }, { "body": null, "index": 18, "isInternal": false, - "x": 315.22874374445473, + "x": 315.22874, "y": 20.914 }, { "body": null, "index": 19, "isInternal": false, - "x": 322.75774374445473, - "y": 20.000000000000004 + "x": 322.75774, + "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 330.2867437444547, + "x": 330.28674, "y": 20.914 }, { "body": null, "index": 21, "isInternal": false, - "x": 337.37774374445473, + "x": 337.37774, "y": 23.603 }, { "body": null, "index": 22, "isInternal": false, - "x": 343.6187437444547, - "y": 27.911000000000005 + "x": 343.61874, + "y": 27.911 }, { "body": null, "index": 23, "isInternal": false, - "x": 348.6477437444547, - "y": 33.58800000000001 + "x": 348.64774, + "y": 33.588 }, { "body": null, "index": 24, "isInternal": false, - "x": 352.17274374445475, - "y": 40.303000000000004 + "x": 352.17274, + "y": 40.303 }, { "body": null, "index": 25, "isInternal": false, - "x": 353.98774374445475, + "x": 353.98774, "y": 47.667 }, { @@ -2869,7 +2869,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1329.4167625219097, + "area": 1329.41676, "axes": { "#": 305 }, @@ -2890,13 +2890,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2952,11 +2952,11 @@ } }, { - "x": 402.76539292140944, - "y": 47.25462962962963 + "x": 402.76539, + "y": 47.25463 }, { - "x": 353.98774374445475, + "x": 353.98774, "y": 20 }, { @@ -2974,16 +2974,16 @@ "y": 0 }, { - "x": 378.3765683329321, - "y": 33.62731481481482 + "x": 378.37657, + "y": 33.62731 }, { "x": 0, "y": 0 }, { - "x": 378.3765683329321, - "y": 33.62731481481482 + "x": 378.37657, + "y": 33.62731 }, { "fillStyle": "#4ECDC4", @@ -3020,36 +3020,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.98774374445475, + "x": 353.98774, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 402.76539292140944, + "x": 402.76539, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 402.76539292140944, - "y": 47.25462962962963 + "x": 402.76539, + "y": 47.25463 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.98774374445475, - "y": 47.25462962962963 + "x": 353.98774, + "y": 47.25463 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2858.632357296012, + "area": 2858.63236, "axes": { "#": 326 }, @@ -3070,13 +3070,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -3132,12 +3132,12 @@ } }, { - "x": 511.6199882574863, - "y": 46.261016803840874 + "x": 511.61999, + "y": 46.26102 }, { - "x": 402.76539292140944, - "y": 19.999999999999996 + "x": 402.76539, + "y": 20 }, { "category": 1, @@ -3154,16 +3154,16 @@ "y": 0 }, { - "x": 457.19269058944786, - "y": 33.13050840192044 + "x": 457.19269, + "y": 33.13051 }, { "x": 0, "y": 0 }, { - "x": 457.19269058944786, - "y": 33.13050840192044 + "x": 457.19269, + "y": 33.13051 }, { "fillStyle": "#C7F464", @@ -3200,36 +3200,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 402.76539292140944, - "y": 19.999999999999996 + "x": 402.76539, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.6199882574863, - "y": 19.999999999999996 + "x": 511.61999, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 511.6199882574863, - "y": 46.261016803840874 + "x": 511.61999, + "y": 46.26102 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.76539292140944, - "y": 46.261016803840874 + "x": 402.76539, + "y": 46.26102 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 926.8394636035856, + "area": 926.83946, "axes": { "#": 347 }, @@ -3250,13 +3250,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3312,11 +3312,11 @@ } }, { - "x": 550.3757752945232, - "y": 43.914866255144034 + "x": 550.37578, + "y": 43.91487 }, { - "x": 511.6199882574862, + "x": 511.61999, "y": 20 }, { @@ -3334,16 +3334,16 @@ "y": 0 }, { - "x": 530.9978817760048, - "y": 31.957433127572017 + "x": 530.99788, + "y": 31.95743 }, { "x": 0, "y": 0 }, { - "x": 530.9978817760048, - "y": 31.957433127572017 + "x": 530.99788, + "y": 31.95743 }, { "fillStyle": "#C44D58", @@ -3380,36 +3380,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 511.6199882574862, + "x": 511.61999, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 550.3757752945232, + "x": 550.37578, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.3757752945232, - "y": 43.914866255144034 + "x": 550.37578, + "y": 43.91487 }, { "body": null, "index": 3, "isInternal": false, - "x": 511.6199882574862, - "y": 43.914866255144034 + "x": 511.61999, + "y": 43.91487 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1290.4501361223834, + "area": 1290.45014, "axes": { "#": 368 }, @@ -3430,13 +3430,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3492,12 +3492,12 @@ } }, { - "x": 586.1460942245644, - "y": 56.076003086419746 + "x": 586.14609, + "y": 56.076 }, { - "x": 550.3757752945232, - "y": 19.999999999999996 + "x": 550.37578, + "y": 20 }, { "category": 1, @@ -3514,16 +3514,16 @@ "y": 0 }, { - "x": 568.2609347595438, - "y": 38.03800154320987 + "x": 568.26093, + "y": 38.038 }, { "x": 0, "y": 0 }, { - "x": 568.2609347595438, - "y": 38.03800154320987 + "x": 568.26093, + "y": 38.038 }, { "fillStyle": "#4ECDC4", @@ -3560,36 +3560,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 550.3757752945232, - "y": 19.999999999999996 + "x": 550.37578, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.1460942245644, - "y": 19.999999999999996 + "x": 586.14609, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.1460942245644, - "y": 56.076003086419746 + "x": 586.14609, + "y": 56.076 }, { "body": null, "index": 3, "isInternal": false, - "x": 550.3757752945232, - "y": 56.076003086419746 + "x": 550.37578, + "y": 56.076 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1148.2925932011974, + "area": 1148.29259, "axes": { "#": 389 }, @@ -3610,13 +3610,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3672,11 +3672,11 @@ } }, { - "x": 616.7010067760048, - "y": 57.58127572016461 + "x": 616.70101, + "y": 57.58128 }, { - "x": 586.1460942245644, + "x": 586.14609, "y": 20 }, { @@ -3694,16 +3694,16 @@ "y": 0 }, { - "x": 601.4235505002846, - "y": 38.790637860082306 + "x": 601.42355, + "y": 38.79064 }, { "x": 0, "y": 0 }, { - "x": 601.4235505002846, - "y": 38.790637860082306 + "x": 601.42355, + "y": 38.79064 }, { "fillStyle": "#C44D58", @@ -3740,36 +3740,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 586.1460942245644, + "x": 586.14609, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.7010067760048, + "x": 616.70101, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.7010067760048, - "y": 57.58127572016461 + "x": 616.70101, + "y": 57.58128 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.1460942245644, - "y": 57.58127572016461 + "x": 586.14609, + "y": 57.58128 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1926.7878890000002, + "area": 1926.78789, "axes": { "#": 410 }, @@ -3790,13 +3790,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3851,28 +3851,28 @@ } ], { - "x": 0.6234921001781484, - "y": 0.7818296496139309 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22251820971292155, - "y": 0.9749285339685962 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009815501548849, - "y": 0.43385740316433524 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009815501548849, - "y": -0.43385740316433524 + "x": -0.90098, + "y": -0.43386 }, { - "x": -0.22251820971292155, - "y": -0.9749285339685962 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234921001781484, - "y": -0.7818296496139309 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -3887,12 +3887,12 @@ } }, { - "x": 665.8303156438957, - "y": 71.74000000000001 + "x": 665.83032, + "y": 71.74 }, { - "x": 615.3873156438957, - "y": 20.000000000000004 + "x": 615.38732, + "y": 20 }, { "category": 1, @@ -3909,16 +3909,16 @@ "y": 0 }, { - "x": 641.9225067760048, - "y": 45.870000000000005 + "x": 641.92251, + "y": 45.87 }, { "x": 0, "y": 0 }, { - "x": 641.9225067760048, - "y": 45.870000000000005 + "x": 641.92251, + "y": 45.87 }, { "fillStyle": "#C7F464", @@ -3964,57 +3964,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 665.8303156438957, + "x": 665.83032, "y": 57.383 }, { "body": null, "index": 1, "isInternal": false, - "x": 647.8273156438956, - "y": 71.74000000000001 + "x": 647.82732, + "y": 71.74 }, { "body": null, "index": 2, "isInternal": false, - "x": 625.3773156438957, + "x": 625.37732, "y": 66.616 }, { "body": null, "index": 3, "isInternal": false, - "x": 615.3873156438957, - "y": 45.870000000000005 + "x": 615.38732, + "y": 45.87 }, { "body": null, "index": 4, "isInternal": false, - "x": 625.3773156438957, - "y": 25.124000000000006 + "x": 625.37732, + "y": 25.124 }, { "body": null, "index": 5, "isInternal": false, - "x": 647.8273156438956, - "y": 20.000000000000004 + "x": 647.82732, + "y": 20 }, { "body": null, "index": 6, "isInternal": false, - "x": 665.8303156438957, - "y": 34.357000000000006 + "x": 665.83032, + "y": 34.357 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1690.1965440000001, + "area": 1690.19654, "axes": { "#": 439 }, @@ -4035,13 +4035,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1904.509571566363, - "inverseInertia": 0.0005250695585517853, - "inverseMass": 0.5916471688158889, + "inertia": 1904.50957, + "inverseInertia": 0.00053, + "inverseMass": 0.59165, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.6901965440000002, + "mass": 1.6902, "motion": 0, "parent": null, "position": { @@ -4097,12 +4097,12 @@ } }, { - "x": 706.9423156438958, - "y": 61.111999999999995 + "x": 706.94232, + "y": 61.112 }, { - "x": 665.8303156438957, - "y": 19.999999999999996 + "x": 665.83032, + "y": 20 }, { "category": 1, @@ -4119,7 +4119,7 @@ "y": 0 }, { - "x": 686.3863156438957, + "x": 686.38632, "y": 40.556 }, { @@ -4127,7 +4127,7 @@ "y": 0 }, { - "x": 686.3863156438957, + "x": 686.38632, "y": 40.556 }, { @@ -4165,36 +4165,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 706.9423156438958, - "y": 61.111999999999995 + "x": 706.94232, + "y": 61.112 }, { "body": null, "index": 1, "isInternal": false, - "x": 665.8303156438957, - "y": 61.111999999999995 + "x": 665.83032, + "y": 61.112 }, { "body": null, "index": 2, "isInternal": false, - "x": 665.8303156438957, - "y": 19.999999999999996 + "x": 665.83032, + "y": 20 }, { "body": null, "index": 3, "isInternal": false, - "x": 706.9423156438958, - "y": 19.999999999999996 + "x": 706.94232, + "y": 20 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 460 }, @@ -4215,13 +4215,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4270,20 +4270,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4298,12 +4298,12 @@ } }, { - "x": 741.8472729237214, - "y": 58.74600000000001 + "x": 741.84727, + "y": 58.746 }, { - "x": 704.9972729237214, - "y": 20.000000000000004 + "x": 704.99727, + "y": 20 }, { "category": 1, @@ -4320,16 +4320,16 @@ "y": 0 }, { - "x": 725.3673156438958, - "y": 39.373000000000005 + "x": 725.36732, + "y": 39.373 }, { "x": 0, "y": 0 }, { - "x": 725.3673156438958, - "y": 39.373000000000005 + "x": 725.36732, + "y": 39.373 }, { "fillStyle": "#C44D58", @@ -4369,43 +4369,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 741.8472729237214, - "y": 51.346000000000004 + "x": 741.84727, + "y": 51.346 }, { "body": null, "index": 1, "isInternal": false, - "x": 719.0722729237215, - "y": 58.74600000000001 + "x": 719.07227, + "y": 58.746 }, { "body": null, "index": 2, "isInternal": false, - "x": 704.9972729237214, - "y": 39.373000000000005 + "x": 704.99727, + "y": 39.373 }, { "body": null, "index": 3, "isInternal": false, - "x": 719.0722729237215, - "y": 20.000000000000004 + "x": 719.07227, + "y": 20 }, { "body": null, "index": 4, "isInternal": false, - "x": 741.8472729237214, - "y": 27.400000000000006 + "x": 741.84727, + "y": 27.4 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1201.454244, + "area": 1201.45424, "axes": { "#": 485 }, @@ -4426,13 +4426,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4488,11 +4488,11 @@ } }, { - "x": 54.662000000000006, + "x": 54.662, "y": 140.502 }, { - "x": 20.000000000000004, + "x": 20, "y": 105.84 }, { @@ -4556,28 +4556,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 54.662000000000006, + "x": 54.662, "y": 140.502 }, { "body": null, "index": 1, "isInternal": false, - "x": 20.000000000000004, + "x": 20, "y": 140.502 }, { "body": null, "index": 2, "isInternal": false, - "x": 20.000000000000004, + "x": 20, "y": 105.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 54.662000000000006, + "x": 54.662, "y": 105.84 }, { @@ -4585,7 +4585,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1990.733346252218, + "area": 1990.73335, "axes": { "#": 506 }, @@ -4606,13 +4606,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4668,11 +4668,11 @@ } }, { - "x": 149.48573113854596, - "y": 126.8340414951989 + "x": 149.48573, + "y": 126.83404 }, { - "x": 54.662000000000006, + "x": 54.662, "y": 105.84 }, { @@ -4690,16 +4690,16 @@ "y": 0 }, { - "x": 102.07386556927298, - "y": 116.33702074759945 + "x": 102.07387, + "y": 116.33702 }, { "x": 0, "y": 0 }, { - "x": 102.07386556927298, - "y": 116.33702074759945 + "x": 102.07387, + "y": 116.33702 }, { "fillStyle": "#FF6B6B", @@ -4736,29 +4736,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 54.662000000000006, + "x": 54.662, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 149.48573113854596, + "x": 149.48573, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 149.48573113854596, - "y": 126.8340414951989 + "x": 149.48573, + "y": 126.83404 }, { "body": null, "index": 3, "isInternal": false, - "x": 54.662000000000006, - "y": 126.8340414951989 + "x": 54.662, + "y": 126.83404 }, { "angle": 0, @@ -4772,7 +4772,7 @@ "bounds": { "#": 541 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 544 }, @@ -4787,13 +4787,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4866,52 +4866,52 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -4926,11 +4926,11 @@ } }, { - "x": 245.79973113854598, - "y": 202.85999999999999 + "x": 245.79973, + "y": 202.86 }, { - "x": 149.485731138546, + "x": 149.48573, "y": 105.84 }, { @@ -4948,7 +4948,7 @@ "y": 0 }, { - "x": 197.64273113854597, + "x": 197.64273, "y": 154.35 }, { @@ -4956,7 +4956,7 @@ "y": 0 }, { - "x": 197.64273113854597, + "x": 197.64273, "y": 154.35 }, { @@ -5060,182 +5060,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.79973113854598, + "x": 245.79973, "y": 160.197 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.00073113854597, + "x": 243.00073, "y": 171.552 }, { "body": null, "index": 2, "isInternal": false, - "x": 237.56573113854597, - "y": 181.90699999999998 + "x": 237.56573, + "y": 181.907 }, { "body": null, "index": 3, "isInternal": false, - "x": 229.81073113854598, + "x": 229.81073, "y": 190.661 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.18673113854598, + "x": 220.18673, "y": 197.304 }, { "body": null, "index": 5, "isInternal": false, - "x": 209.25173113854598, + "x": 209.25173, "y": 201.451 }, { "body": null, "index": 6, "isInternal": false, - "x": 197.64273113854597, - "y": 202.85999999999999 + "x": 197.64273, + "y": 202.86 }, { "body": null, "index": 7, "isInternal": false, - "x": 186.03373113854596, + "x": 186.03373, "y": 201.451 }, { "body": null, "index": 8, "isInternal": false, - "x": 175.098731138546, + "x": 175.09873, "y": 197.304 }, { "body": null, "index": 9, "isInternal": false, - "x": 165.47473113854596, + "x": 165.47473, "y": 190.661 }, { "body": null, "index": 10, "isInternal": false, - "x": 157.71973113854597, - "y": 181.90699999999998 + "x": 157.71973, + "y": 181.907 }, { "body": null, "index": 11, "isInternal": false, - "x": 152.28473113854596, + "x": 152.28473, "y": 171.552 }, { "body": null, "index": 12, "isInternal": false, - "x": 149.485731138546, + "x": 149.48573, "y": 160.197 }, { "body": null, "index": 13, "isInternal": false, - "x": 149.485731138546, + "x": 149.48573, "y": 148.503 }, { "body": null, "index": 14, "isInternal": false, - "x": 152.28473113854596, + "x": 152.28473, "y": 137.148 }, { "body": null, "index": 15, "isInternal": false, - "x": 157.71973113854597, - "y": 126.79299999999999 + "x": 157.71973, + "y": 126.793 }, { "body": null, "index": 16, "isInternal": false, - "x": 165.47473113854596, - "y": 118.03899999999999 + "x": 165.47473, + "y": 118.039 }, { "body": null, "index": 17, "isInternal": false, - "x": 175.098731138546, - "y": 111.39599999999999 + "x": 175.09873, + "y": 111.396 }, { "body": null, "index": 18, "isInternal": false, - "x": 186.03373113854596, + "x": 186.03373, "y": 107.249 }, { "body": null, "index": 19, "isInternal": false, - "x": 197.64273113854597, + "x": 197.64273, "y": 105.84 }, { "body": null, "index": 20, "isInternal": false, - "x": 209.25173113854598, + "x": 209.25173, "y": 107.249 }, { "body": null, "index": 21, "isInternal": false, - "x": 220.18673113854598, - "y": 111.39599999999999 + "x": 220.18673, + "y": 111.396 }, { "body": null, "index": 22, "isInternal": false, - "x": 229.81073113854598, - "y": 118.03899999999999 + "x": 229.81073, + "y": 118.039 }, { "body": null, "index": 23, "isInternal": false, - "x": 237.56573113854597, - "y": 126.79299999999999 + "x": 237.56573, + "y": 126.793 }, { "body": null, "index": 24, "isInternal": false, - "x": 243.00073113854597, + "x": 243.00073, "y": 137.148 }, { "body": null, "index": 25, "isInternal": false, - "x": 245.79973113854598, + "x": 245.79973, "y": 148.503 }, { @@ -5243,7 +5243,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 581 }, @@ -5264,13 +5264,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5326,11 +5326,11 @@ } }, { - "x": 330.03241289437585, - "y": 129.99646433470508 + "x": 330.03241, + "y": 129.99646 }, { - "x": 245.79973113854598, + "x": 245.79973, "y": 105.84 }, { @@ -5348,16 +5348,16 @@ "y": 0 }, { - "x": 287.91607201646093, - "y": 117.91823216735254 + "x": 287.91607, + "y": 117.91823 }, { "x": 0, "y": 0 }, { - "x": 287.91607201646093, - "y": 117.91823216735254 + "x": 287.91607, + "y": 117.91823 }, { "fillStyle": "#556270", @@ -5394,36 +5394,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.79973113854598, + "x": 245.79973, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 330.03241289437585, + "x": 330.03241, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 330.03241289437585, - "y": 129.99646433470508 + "x": 330.03241, + "y": 129.99646 }, { "body": null, "index": 3, "isInternal": false, - "x": 245.79973113854598, - "y": 129.99646433470508 + "x": 245.79973, + "y": 129.99646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 602 }, @@ -5444,13 +5444,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5506,11 +5506,11 @@ } }, { - "x": 379.41898696845, - "y": 126.7050977366255 + "x": 379.41899, + "y": 126.7051 }, { - "x": 330.03241289437585, + "x": 330.03241, "y": 105.84 }, { @@ -5528,16 +5528,16 @@ "y": 0 }, { - "x": 354.7256999314129, - "y": 116.27254886831275 + "x": 354.7257, + "y": 116.27255 }, { "x": 0, "y": 0 }, { - "x": 354.7256999314129, - "y": 116.27254886831275 + "x": 354.7257, + "y": 116.27255 }, { "fillStyle": "#C7F464", @@ -5574,43 +5574,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 330.03241289437585, + "x": 330.03241, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 379.41898696845, + "x": 379.41899, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 379.41898696845, - "y": 126.7050977366255 + "x": 379.41899, + "y": 126.7051 }, { "body": null, "index": 3, "isInternal": false, - "x": 330.03241289437585, - "y": 126.7050977366255 + "x": 330.03241, + "y": 126.7051 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2157.165332, + "area": 2157.16533, "axes": { "#": 623 }, "bounds": { "#": 637 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 640 }, @@ -5625,13 +5625,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5704,52 +5704,52 @@ } ], { - "x": -0.9709433940705979, - "y": -0.2393092674984975 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854643472565572, - "y": -0.46470731620829797 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485032926619368, - "y": -0.6631310736756638 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680789542040116, - "y": -0.8229740590021511 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3546257389378823, - "y": -0.9350083343386629 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12050542549813427, - "y": -0.9927126686133876 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050542549813427, - "y": -0.9927126686133876 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546257389378823, - "y": -0.9350083343386629 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680789542040116, - "y": -0.8229740590021511 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485032926619368, - "y": -0.6631310736756638 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854643472565572, - "y": -0.46470731620829797 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709433940705979, - "y": -0.2393092674984975 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -5764,11 +5764,11 @@ } }, { - "x": 431.69898696844996, + "x": 431.69899, "y": 158.504 }, { - "x": 379.41898696845, + "x": 379.41899, "y": 105.84 }, { @@ -5786,7 +5786,7 @@ "y": 0 }, { - "x": 405.55898696845, + "x": 405.55899, "y": 132.172 }, { @@ -5794,7 +5794,7 @@ "y": 0 }, { - "x": 405.55898696845, + "x": 405.55899, "y": 132.172 }, { @@ -5898,182 +5898,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 431.69898696844996, + "x": 431.69899, "y": 135.346 }, { "body": null, "index": 1, "isInternal": false, - "x": 430.17998696844995, - "y": 141.50900000000001 + "x": 430.17999, + "y": 141.509 }, { "body": null, "index": 2, "isInternal": false, - "x": 427.22998696844996, + "x": 427.22999, "y": 147.13 }, { "body": null, "index": 3, "isInternal": false, - "x": 423.01998696845, + "x": 423.01999, "y": 151.882 }, { "body": null, "index": 4, "isInternal": false, - "x": 417.79598696845, + "x": 417.79599, "y": 155.488 }, { "body": null, "index": 5, "isInternal": false, - "x": 411.86098696845, + "x": 411.86099, "y": 157.739 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.55898696845, + "x": 405.55899, "y": 158.504 }, { "body": null, "index": 7, "isInternal": false, - "x": 399.25698696844995, + "x": 399.25699, "y": 157.739 }, { "body": null, "index": 8, "isInternal": false, - "x": 393.32198696844995, + "x": 393.32199, "y": 155.488 }, { "body": null, "index": 9, "isInternal": false, - "x": 388.09798696844996, + "x": 388.09799, "y": 151.882 }, { "body": null, "index": 10, "isInternal": false, - "x": 383.88798696845, + "x": 383.88799, "y": 147.13 }, { "body": null, "index": 11, "isInternal": false, - "x": 380.93798696845, - "y": 141.50900000000001 + "x": 380.93799, + "y": 141.509 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.41898696845, + "x": 379.41899, "y": 135.346 }, { "body": null, "index": 13, "isInternal": false, - "x": 379.41898696845, + "x": 379.41899, "y": 128.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.93798696845, + "x": 380.93799, "y": 122.835 }, { "body": null, "index": 15, "isInternal": false, - "x": 383.88798696845, + "x": 383.88799, "y": 117.214 }, { "body": null, "index": 16, "isInternal": false, - "x": 388.09798696844996, - "y": 112.46199999999999 + "x": 388.09799, + "y": 112.462 }, { "body": null, "index": 17, "isInternal": false, - "x": 393.32198696844995, + "x": 393.32199, "y": 108.856 }, { "body": null, "index": 18, "isInternal": false, - "x": 399.25698696844995, - "y": 106.60499999999999 + "x": 399.25699, + "y": 106.605 }, { "body": null, "index": 19, "isInternal": false, - "x": 405.55898696845, + "x": 405.55899, "y": 105.84 }, { "body": null, "index": 20, "isInternal": false, - "x": 411.86098696845, - "y": 106.60499999999999 + "x": 411.86099, + "y": 106.605 }, { "body": null, "index": 21, "isInternal": false, - "x": 417.79598696845, + "x": 417.79599, "y": 108.856 }, { "body": null, "index": 22, "isInternal": false, - "x": 423.01998696845, - "y": 112.46199999999999 + "x": 423.01999, + "y": 112.462 }, { "body": null, "index": 23, "isInternal": false, - "x": 427.22998696844996, + "x": 427.22999, "y": 117.214 }, { "body": null, "index": 24, "isInternal": false, - "x": 430.17998696844995, + "x": 430.17999, "y": 122.835 }, { "body": null, "index": 25, "isInternal": false, - "x": 431.69898696844996, + "x": 431.69899, "y": 128.998 }, { @@ -6081,7 +6081,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2399.6281959999997, + "area": 2399.6282, "axes": { "#": 677 }, @@ -6102,13 +6102,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6164,11 +6164,11 @@ } }, { - "x": 480.68498696844995, + "x": 480.68499, "y": 154.826 }, { - "x": 431.69898696844996, + "x": 431.69899, "y": 105.84 }, { @@ -6186,7 +6186,7 @@ "y": 0 }, { - "x": 456.19198696844995, + "x": 456.19199, "y": 130.333 }, { @@ -6194,7 +6194,7 @@ "y": 0 }, { - "x": 456.19198696844995, + "x": 456.19199, "y": 130.333 }, { @@ -6232,28 +6232,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 480.68498696844995, + "x": 480.68499, "y": 154.826 }, { "body": null, "index": 1, "isInternal": false, - "x": 431.69898696844996, + "x": 431.69899, "y": 154.826 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.69898696844996, + "x": 431.69899, "y": 105.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.68498696844995, + "x": 480.68499, "y": 105.84 }, { @@ -6261,7 +6261,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 698 }, @@ -6282,13 +6282,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6344,11 +6344,11 @@ } }, { - "x": 516.0979242112483, - "y": 147.90893004115227 + "x": 516.09792, + "y": 147.90893 }, { - "x": 480.68498696844995, + "x": 480.68499, "y": 105.84 }, { @@ -6366,16 +6366,16 @@ "y": 0 }, { - "x": 498.3914555898491, - "y": 126.87446502057614 + "x": 498.39146, + "y": 126.87447 }, { "x": 0, "y": 0 }, { - "x": 498.3914555898491, - "y": 126.87446502057614 + "x": 498.39146, + "y": 126.87447 }, { "fillStyle": "#4ECDC4", @@ -6412,36 +6412,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 480.68498696844995, + "x": 480.68499, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 516.0979242112483, + "x": 516.09792, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 516.0979242112483, - "y": 147.90893004115227 + "x": 516.09792, + "y": 147.90893 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.68498696844995, - "y": 147.90893004115227 + "x": 480.68499, + "y": 147.90893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 719 }, @@ -6462,13 +6462,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6524,11 +6524,11 @@ } }, { - "x": 557.8618131001372, - "y": 148.1101903292181 + "x": 557.86181, + "y": 148.11019 }, { - "x": 516.0979242112483, + "x": 516.09792, "y": 105.84 }, { @@ -6546,16 +6546,16 @@ "y": 0 }, { - "x": 536.9798686556927, - "y": 126.97509516460906 + "x": 536.97987, + "y": 126.9751 }, { "x": 0, "y": 0 }, { - "x": 536.9798686556927, - "y": 126.97509516460906 + "x": 536.97987, + "y": 126.9751 }, { "fillStyle": "#FF6B6B", @@ -6592,36 +6592,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 516.0979242112483, + "x": 516.09792, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 557.8618131001372, + "x": 557.86181, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 557.8618131001372, - "y": 148.1101903292181 + "x": 557.86181, + "y": 148.11019 }, { "body": null, "index": 3, "isInternal": false, - "x": 516.0979242112483, - "y": 148.1101903292181 + "x": 516.09792, + "y": 148.11019 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1919.5457599999997, + "area": 1919.54576, "axes": { "#": 740 }, @@ -6642,13 +6642,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6691,12 +6691,12 @@ } ], { - "x": -0.4999772266722585, - "y": -0.8660385515721092 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999772266722585, - "y": -0.8660385515721092 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -6711,12 +6711,12 @@ } }, { - "x": 604.9418131001371, - "y": 160.20200000000003 + "x": 604.94181, + "y": 160.202 }, { - "x": 557.8618131001372, - "y": 105.84000000000002 + "x": 557.86181, + "y": 105.84 }, { "category": 1, @@ -6733,16 +6733,16 @@ "y": 0 }, { - "x": 581.4018131001371, - "y": 133.02100000000002 + "x": 581.40181, + "y": 133.021 }, { "x": 0, "y": 0 }, { - "x": 581.4018131001371, - "y": 133.02100000000002 + "x": 581.40181, + "y": 133.021 }, { "fillStyle": "#FF6B6B", @@ -6785,50 +6785,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 604.9418131001371, - "y": 146.61200000000002 + "x": 604.94181, + "y": 146.612 }, { "body": null, "index": 1, "isInternal": false, - "x": 581.4018131001371, - "y": 160.20200000000003 + "x": 581.40181, + "y": 160.202 }, { "body": null, "index": 2, "isInternal": false, - "x": 557.8618131001372, - "y": 146.61200000000002 + "x": 557.86181, + "y": 146.612 }, { "body": null, "index": 3, "isInternal": false, - "x": 557.8618131001372, - "y": 119.43000000000002 + "x": 557.86181, + "y": 119.43 }, { "body": null, "index": 4, "isInternal": false, - "x": 581.4018131001371, - "y": 105.84000000000002 + "x": 581.40181, + "y": 105.84 }, { "body": null, "index": 5, "isInternal": false, - "x": 604.9418131001371, - "y": 119.43000000000002 + "x": 604.94181, + "y": 119.43 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6052.328004, + "area": 6052.328, "axes": { "#": 764 }, @@ -6849,13 +6849,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -6898,12 +6898,12 @@ } ], { - "x": -0.4999896834528559, - "y": -0.8660313599637792 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999896834528559, - "y": -0.8660313599637792 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -6918,12 +6918,12 @@ } }, { - "x": 688.539813100137, - "y": 202.37000000000003 + "x": 688.53981, + "y": 202.37 }, { - "x": 604.9418131001371, - "y": 105.84000000000002 + "x": 604.94181, + "y": 105.84 }, { "category": 1, @@ -6940,16 +6940,16 @@ "y": 0 }, { - "x": 646.7408131001371, - "y": 154.10500000000002 + "x": 646.74081, + "y": 154.105 }, { "x": 0, "y": 0 }, { - "x": 646.7408131001371, - "y": 154.10500000000002 + "x": 646.74081, + "y": 154.105 }, { "fillStyle": "#4ECDC4", @@ -6992,50 +6992,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 688.539813100137, - "y": 178.23800000000003 + "x": 688.53981, + "y": 178.238 }, { "body": null, "index": 1, "isInternal": false, - "x": 646.7408131001371, - "y": 202.37000000000003 + "x": 646.74081, + "y": 202.37 }, { "body": null, "index": 2, "isInternal": false, - "x": 604.9418131001371, - "y": 178.23800000000003 + "x": 604.94181, + "y": 178.238 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.9418131001371, - "y": 129.97200000000004 + "x": 604.94181, + "y": 129.972 }, { "body": null, "index": 4, "isInternal": false, - "x": 646.7408131001371, - "y": 105.84000000000002 + "x": 646.74081, + "y": 105.84 }, { "body": null, "index": 5, "isInternal": false, - "x": 688.539813100137, - "y": 129.97200000000004 + "x": 688.53981, + "y": 129.972 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 788 }, @@ -7056,13 +7056,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7118,12 +7118,12 @@ } }, { - "x": 733.6911762688612, - "y": 155.00846707818928 + "x": 733.69118, + "y": 155.00847 }, { - "x": 688.539813100137, - "y": 105.83999999999999 + "x": 688.53981, + "y": 105.84 }, { "category": 1, @@ -7140,16 +7140,16 @@ "y": 0 }, { - "x": 711.1154946844991, - "y": 130.42423353909464 + "x": 711.11549, + "y": 130.42423 }, { "x": 0, "y": 0 }, { - "x": 711.1154946844991, - "y": 130.42423353909464 + "x": 711.11549, + "y": 130.42423 }, { "fillStyle": "#C7F464", @@ -7186,36 +7186,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 688.539813100137, - "y": 105.83999999999999 + "x": 688.53981, + "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 733.6911762688612, - "y": 105.83999999999999 + "x": 733.69118, + "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 733.6911762688612, - "y": 155.00846707818928 + "x": 733.69118, + "y": 155.00847 }, { "body": null, "index": 3, "isInternal": false, - "x": 688.539813100137, - "y": 155.00846707818928 + "x": 688.53981, + "y": 155.00847 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2601.1074479999997, + "area": 2601.10745, "axes": { "#": 809 }, @@ -7236,13 +7236,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7285,12 +7285,12 @@ } ], { - "x": -0.4999869137730785, - "y": -0.8660329589892477 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999869137730785, - "y": -0.8660329589892477 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7305,11 +7305,11 @@ } }, { - "x": 788.4951762688613, - "y": 169.12199999999999 + "x": 788.49518, + "y": 169.122 }, { - "x": 733.6911762688612, + "x": 733.69118, "y": 105.84 }, { @@ -7327,7 +7327,7 @@ "y": 0 }, { - "x": 761.0931762688613, + "x": 761.09318, "y": 137.481 }, { @@ -7335,7 +7335,7 @@ "y": 0 }, { - "x": 761.0931762688613, + "x": 761.09318, "y": 137.481 }, { @@ -7379,42 +7379,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 788.4951762688613, + "x": 788.49518, "y": 153.302 }, { "body": null, "index": 1, "isInternal": false, - "x": 761.0931762688613, - "y": 169.12199999999999 + "x": 761.09318, + "y": 169.122 }, { "body": null, "index": 2, "isInternal": false, - "x": 733.6911762688612, + "x": 733.69118, "y": 153.302 }, { "body": null, "index": 3, "isInternal": false, - "x": 733.6911762688612, + "x": 733.69118, "y": 121.66 }, { "body": null, "index": 4, "isInternal": false, - "x": 761.0931762688613, + "x": 761.09318, "y": 105.84 }, { "body": null, "index": 5, "isInternal": false, - "x": 788.4951762688613, + "x": 788.49518, "y": 121.66 }, { @@ -7422,7 +7422,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1413.3088360000002, + "area": 1413.30884, "axes": { "#": 833 }, @@ -7443,13 +7443,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7505,11 +7505,11 @@ } }, { - "x": 826.0891762688614, + "x": 826.08918, "y": 143.434 }, { - "x": 788.4951762688613, + "x": 788.49518, "y": 105.84 }, { @@ -7527,7 +7527,7 @@ "y": 0 }, { - "x": 807.2921762688613, + "x": 807.29218, "y": 124.637 }, { @@ -7535,7 +7535,7 @@ "y": 0 }, { - "x": 807.2921762688613, + "x": 807.29218, "y": 124.637 }, { @@ -7573,28 +7573,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 826.0891762688614, + "x": 826.08918, "y": 143.434 }, { "body": null, "index": 1, "isInternal": false, - "x": 788.4951762688613, + "x": 788.49518, "y": 143.434 }, { "body": null, "index": 2, "isInternal": false, - "x": 788.4951762688613, + "x": 788.49518, "y": 105.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 826.0891762688614, + "x": 826.08918, "y": 105.84 }, { @@ -7602,7 +7602,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5460.808751999999, + "area": 5460.80875, "axes": { "#": 854 }, @@ -7623,13 +7623,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7672,12 +7672,12 @@ } ], { - "x": -0.49999811726960197, - "y": -0.8660264907766121 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.49999811726960197, - "y": -0.8660264907766121 + "x": 0.5, + "y": -0.86603 }, { "x": 1, @@ -7692,11 +7692,11 @@ } }, { - "x": 905.4971762688613, + "x": 905.49718, "y": 197.532 }, { - "x": 826.0891762688614, + "x": 826.08918, "y": 105.84 }, { @@ -7714,7 +7714,7 @@ "y": 0 }, { - "x": 865.7931762688613, + "x": 865.79318, "y": 151.686 }, { @@ -7722,7 +7722,7 @@ "y": 0 }, { - "x": 865.7931762688613, + "x": 865.79318, "y": 151.686 }, { @@ -7766,42 +7766,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 905.4971762688613, + "x": 905.49718, "y": 174.609 }, { "body": null, "index": 1, "isInternal": false, - "x": 865.7931762688613, + "x": 865.79318, "y": 197.532 }, { "body": null, "index": 2, "isInternal": false, - "x": 826.0891762688614, + "x": 826.08918, "y": 174.609 }, { "body": null, "index": 3, "isInternal": false, - "x": 826.0891762688614, + "x": 826.08918, "y": 128.763 }, { "body": null, "index": 4, "isInternal": false, - "x": 865.7931762688613, + "x": 865.79318, "y": 105.84 }, { "body": null, "index": 5, "isInternal": false, - "x": 905.4971762688613, + "x": 905.49718, "y": 128.763 }, { @@ -7809,7 +7809,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 878 }, @@ -7830,13 +7830,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -7892,12 +7892,12 @@ } }, { - "x": 40.170524691358025, - "y": 225.2497890946502 + "x": 40.17052, + "y": 225.24979 }, { "x": 20, - "y": 202.85999999999999 + "y": 202.86 }, { "category": 1, @@ -7914,16 +7914,16 @@ "y": 0 }, { - "x": 30.085262345679013, - "y": 214.0548945473251 + "x": 30.08526, + "y": 214.05489 }, { "x": 0, "y": 0 }, { - "x": 30.085262345679013, - "y": 214.0548945473251 + "x": 30.08526, + "y": 214.05489 }, { "fillStyle": "#556270", @@ -7961,35 +7961,35 @@ "index": 0, "isInternal": false, "x": 20, - "y": 202.85999999999999 + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 40.170524691358025, - "y": 202.85999999999999 + "x": 40.17052, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 40.170524691358025, - "y": 225.2497890946502 + "x": 40.17052, + "y": 225.24979 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 225.2497890946502 + "y": 225.24979 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 899 }, @@ -8010,13 +8010,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -8072,12 +8072,12 @@ } }, { - "x": 142.0036865569273, - "y": 232.53283950617285 + "x": 142.00369, + "y": 232.53284 }, { - "x": 40.170524691358025, - "y": 202.85999999999999 + "x": 40.17052, + "y": 202.86 }, { "category": 1, @@ -8094,16 +8094,16 @@ "y": 0 }, { - "x": 91.08710562414267, - "y": 217.69641975308642 + "x": 91.08711, + "y": 217.69642 }, { "x": 0, "y": 0 }, { - "x": 91.08710562414267, - "y": 217.69641975308642 + "x": 91.08711, + "y": 217.69642 }, { "fillStyle": "#C44D58", @@ -8140,36 +8140,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 40.170524691358025, - "y": 202.85999999999999 + "x": 40.17052, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 142.0036865569273, - "y": 202.85999999999999 + "x": 142.00369, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 142.0036865569273, - "y": 232.53283950617285 + "x": 142.00369, + "y": 232.53284 }, { "body": null, "index": 3, "isInternal": false, - "x": 40.170524691358025, - "y": 232.53283950617285 + "x": 40.17052, + "y": 232.53284 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 920 }, @@ -8190,13 +8190,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8252,12 +8252,12 @@ } }, { - "x": 182.07518861454045, - "y": 224.24027263374484 + "x": 182.07519, + "y": 224.24027 }, { - "x": 142.0036865569273, - "y": 202.85999999999999 + "x": 142.00369, + "y": 202.86 }, { "category": 1, @@ -8274,16 +8274,16 @@ "y": 0 }, { - "x": 162.03943758573388, - "y": 213.5501363168724 + "x": 162.03944, + "y": 213.55014 }, { "x": 0, "y": 0 }, { - "x": 162.03943758573388, - "y": 213.5501363168724 + "x": 162.03944, + "y": 213.55014 }, { "fillStyle": "#556270", @@ -8320,36 +8320,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 142.0036865569273, - "y": 202.85999999999999 + "x": 142.00369, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 182.07518861454045, - "y": 202.85999999999999 + "x": 182.07519, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 182.07518861454045, - "y": 224.24027263374484 + "x": 182.07519, + "y": 224.24027 }, { "body": null, "index": 3, "isInternal": false, - "x": 142.0036865569273, - "y": 224.24027263374484 + "x": 142.00369, + "y": 224.24027 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 941 }, @@ -8370,13 +8370,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8422,16 +8422,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8446,12 +8446,12 @@ } }, { - "x": 252.32718861454046, - "y": 273.11199999999997 + "x": 252.32719, + "y": 273.112 }, { - "x": 182.07518861454045, - "y": 202.85999999999999 + "x": 182.07519, + "y": 202.86 }, { "category": 1, @@ -8468,7 +8468,7 @@ "y": 0 }, { - "x": 217.20118861454046, + "x": 217.20119, "y": 237.986 }, { @@ -8476,7 +8476,7 @@ "y": 0 }, { - "x": 217.20118861454046, + "x": 217.20119, "y": 237.986 }, { @@ -8526,64 +8526,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.32718861454046, + "x": 252.32719, "y": 252.536 }, { "body": null, "index": 1, "isInternal": false, - "x": 231.75118861454047, - "y": 273.11199999999997 + "x": 231.75119, + "y": 273.112 }, { "body": null, "index": 2, "isInternal": false, - "x": 202.65118861454044, - "y": 273.11199999999997 + "x": 202.65119, + "y": 273.112 }, { "body": null, "index": 3, "isInternal": false, - "x": 182.07518861454045, + "x": 182.07519, "y": 252.536 }, { "body": null, "index": 4, "isInternal": false, - "x": 182.07518861454045, - "y": 223.43599999999998 + "x": 182.07519, + "y": 223.436 }, { "body": null, "index": 5, "isInternal": false, - "x": 202.65118861454044, - "y": 202.85999999999999 + "x": 202.65119, + "y": 202.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 231.75118861454047, - "y": 202.85999999999999 + "x": 231.75119, + "y": 202.86 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.32718861454046, - "y": 223.43599999999998 + "x": 252.32719, + "y": 223.436 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 968 }, @@ -8604,13 +8604,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8666,12 +8666,12 @@ } }, { - "x": 341.831475308642, - "y": 224.81584705075446 + "x": 341.83148, + "y": 224.81585 }, { - "x": 252.32718861454046, - "y": 202.85999999999999 + "x": 252.32719, + "y": 202.86 }, { "category": 1, @@ -8688,16 +8688,16 @@ "y": 0 }, { - "x": 297.0793319615912, - "y": 213.83792352537722 + "x": 297.07933, + "y": 213.83792 }, { "x": 0, "y": 0 }, { - "x": 297.0793319615912, - "y": 213.83792352537722 + "x": 297.07933, + "y": 213.83792 }, { "fillStyle": "#4ECDC4", @@ -8734,36 +8734,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.32718861454046, - "y": 202.85999999999999 + "x": 252.32719, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 341.831475308642, - "y": 202.85999999999999 + "x": 341.83148, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 341.831475308642, - "y": 224.81584705075446 + "x": 341.83148, + "y": 224.81585 }, { "body": null, "index": 3, "isInternal": false, - "x": 252.32718861454046, - "y": 224.81584705075446 + "x": 252.32719, + "y": 224.81585 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2297.860096, + "area": 2297.8601, "axes": { "#": 989 }, @@ -8784,13 +8784,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 3520.107347192753, - "inverseInertia": 0.00028408224561602904, - "inverseMass": 0.43518750412209606, + "inertia": 3520.10735, + "inverseInertia": 0.00028, + "inverseMass": 0.43519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.297860096, + "mass": 2.29786, "motion": 0, "parent": null, "position": { @@ -8846,12 +8846,12 @@ } }, { - "x": 389.767475308642, - "y": 250.79599999999996 + "x": 389.76748, + "y": 250.796 }, { - "x": 341.831475308642, - "y": 202.85999999999999 + "x": 341.83148, + "y": 202.86 }, { "category": 1, @@ -8868,16 +8868,16 @@ "y": 0 }, { - "x": 365.799475308642, - "y": 226.82799999999997 + "x": 365.79948, + "y": 226.828 }, { "x": 0, "y": 0 }, { - "x": 365.799475308642, - "y": 226.82799999999997 + "x": 365.79948, + "y": 226.828 }, { "fillStyle": "#4ECDC4", @@ -8914,36 +8914,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.767475308642, - "y": 250.79599999999996 + "x": 389.76748, + "y": 250.796 }, { "body": null, "index": 1, "isInternal": false, - "x": 341.831475308642, - "y": 250.79599999999996 + "x": 341.83148, + "y": 250.796 }, { "body": null, "index": 2, "isInternal": false, - "x": 341.831475308642, - "y": 202.85999999999999 + "x": 341.83148, + "y": 202.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.767475308642, - "y": 202.85999999999999 + "x": 389.76748, + "y": 202.86 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 942.0065703840771, + "area": 942.00657, "axes": { "#": 1010 }, @@ -8964,13 +8964,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -9026,12 +9026,12 @@ } }, { - "x": 410.8274032921811, - "y": 247.58980967078188 + "x": 410.8274, + "y": 247.58981 }, { - "x": 389.767475308642, - "y": 202.85999999999999 + "x": 389.76748, + "y": 202.86 }, { "category": 1, @@ -9048,16 +9048,16 @@ "y": 0 }, { - "x": 400.29743930041155, - "y": 225.22490483539093 + "x": 400.29744, + "y": 225.2249 }, { "x": 0, "y": 0 }, { - "x": 400.29743930041155, - "y": 225.22490483539093 + "x": 400.29744, + "y": 225.2249 }, { "fillStyle": "#4ECDC4", @@ -9094,36 +9094,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.767475308642, - "y": 202.85999999999999 + "x": 389.76748, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 410.8274032921811, - "y": 202.85999999999999 + "x": 410.8274, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 410.8274032921811, - "y": 247.58980967078188 + "x": 410.8274, + "y": 247.58981 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.767475308642, - "y": 247.58980967078188 + "x": 389.76748, + "y": 247.58981 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2898.415585731765, + "area": 2898.41559, "axes": { "#": 1031 }, @@ -9144,13 +9144,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -9206,12 +9206,12 @@ } }, { - "x": 523.0233909465021, - "y": 228.69350480109736 + "x": 523.02339, + "y": 228.6935 }, { - "x": 410.8274032921811, - "y": 202.85999999999999 + "x": 410.8274, + "y": 202.86 }, { "category": 1, @@ -9228,16 +9228,16 @@ "y": 0 }, { - "x": 466.9253971193416, - "y": 215.77675240054867 + "x": 466.9254, + "y": 215.77675 }, { "x": 0, "y": 0 }, { - "x": 466.9253971193416, - "y": 215.77675240054867 + "x": 466.9254, + "y": 215.77675 }, { "fillStyle": "#C44D58", @@ -9274,36 +9274,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 410.8274032921811, - "y": 202.85999999999999 + "x": 410.8274, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 523.0233909465021, - "y": 202.85999999999999 + "x": 523.02339, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 523.0233909465021, - "y": 228.69350480109736 + "x": 523.02339, + "y": 228.6935 }, { "body": null, "index": 3, "isInternal": false, - "x": 410.8274032921811, - "y": 228.69350480109736 + "x": 410.8274, + "y": 228.6935 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1297.1522559999999, + "area": 1297.15226, "axes": { "#": 1052 }, @@ -9324,13 +9324,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1121.7359834972597, - "inverseInertia": 0.0008914753691704523, - "inverseMass": 0.7709195241919234, + "inertia": 1121.73598, + "inverseInertia": 0.00089, + "inverseMass": 0.77092, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.297152256, + "mass": 1.29715, "motion": 0, "parent": null, "position": { @@ -9386,12 +9386,12 @@ } }, { - "x": 559.0393909465022, + "x": 559.03939, "y": 238.876 }, { - "x": 523.0233909465021, - "y": 202.85999999999999 + "x": 523.02339, + "y": 202.86 }, { "category": 1, @@ -9408,7 +9408,7 @@ "y": 0 }, { - "x": 541.0313909465021, + "x": 541.03139, "y": 220.868 }, { @@ -9416,7 +9416,7 @@ "y": 0 }, { - "x": 541.0313909465021, + "x": 541.03139, "y": 220.868 }, { @@ -9454,43 +9454,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 559.0393909465022, + "x": 559.03939, "y": 238.876 }, { "body": null, "index": 1, "isInternal": false, - "x": 523.0233909465021, + "x": 523.02339, "y": 238.876 }, { "body": null, "index": 2, "isInternal": false, - "x": 523.0233909465021, - "y": 202.85999999999999 + "x": 523.02339, + "y": 202.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.0393909465022, - "y": 202.85999999999999 + "x": 559.03939, + "y": 202.86 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6661.542482000001, + "area": 6661.54248, "axes": { "#": 1073 }, "bounds": { "#": 1087 }, - "circleRadius": 46.273148148148145, + "circleRadius": 46.27315, "collisionFilter": { "#": 1090 }, @@ -9505,13 +9505,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 28251.272419191544, - "inverseInertia": 0.00003539663577491412, - "inverseMass": 0.15011538284144801, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "inverseMass": 0.15012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.661542482000001, + "mass": 6.66154, "motion": 0, "parent": null, "position": { @@ -9584,52 +9584,52 @@ } ], { - "x": -0.9709335210486909, - "y": -0.23934932150309357 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854504735162902, - "y": -0.46473375060326466 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485309706272006, - "y": -0.6630998311053178 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680534091439667, - "y": -0.822991691549749 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35463801958119895, - "y": -0.9350036764994698 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12048128629971751, - "y": -0.992715598573713 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12048128629971751, - "y": -0.992715598573713 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.35463801958119895, - "y": -0.9350036764994698 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680534091439667, - "y": -0.822991691549749 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7485309706272006, - "y": -0.6630998311053178 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854504735162902, - "y": -0.46473375060326466 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709335210486909, - "y": -0.23934932150309357 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -9644,12 +9644,12 @@ } }, { - "x": 650.9113909465023, - "y": 295.40599999999995 + "x": 650.91139, + "y": 295.406 }, { - "x": 559.0393909465022, - "y": 202.85999999999999 + "x": 559.03939, + "y": 202.86 }, { "category": 1, @@ -9666,16 +9666,16 @@ "y": 0 }, { - "x": 604.9753909465022, - "y": 249.13299999999998 + "x": 604.97539, + "y": 249.133 }, { "x": 0, "y": 0 }, { - "x": 604.9753909465022, - "y": 249.13299999999998 + "x": 604.97539, + "y": 249.133 }, { "fillStyle": "#FF6B6B", @@ -9778,190 +9778,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 650.9113909465023, - "y": 254.71099999999998 + "x": 650.91139, + "y": 254.711 }, { "body": null, "index": 1, "isInternal": false, - "x": 648.2413909465022, + "x": 648.24139, "y": 265.542 }, { "body": null, "index": 2, "isInternal": false, - "x": 643.0573909465022, + "x": 643.05739, "y": 275.419 }, { "body": null, "index": 3, "isInternal": false, - "x": 635.6603909465022, + "x": 635.66039, "y": 283.769 }, { "body": null, "index": 4, "isInternal": false, - "x": 626.4793909465022, + "x": 626.47939, "y": 290.106 }, { "body": null, "index": 5, "isInternal": false, - "x": 616.0493909465022, + "x": 616.04939, "y": 294.062 }, { "body": null, "index": 6, "isInternal": false, - "x": 604.9753909465022, - "y": 295.40599999999995 + "x": 604.97539, + "y": 295.406 }, { "body": null, "index": 7, "isInternal": false, - "x": 593.9013909465023, + "x": 593.90139, "y": 294.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 583.4713909465022, + "x": 583.47139, "y": 290.106 }, { "body": null, "index": 9, "isInternal": false, - "x": 574.2903909465023, + "x": 574.29039, "y": 283.769 }, { "body": null, "index": 10, "isInternal": false, - "x": 566.8933909465022, + "x": 566.89339, "y": 275.419 }, { "body": null, "index": 11, "isInternal": false, - "x": 561.7093909465023, + "x": 561.70939, "y": 265.542 }, { "body": null, "index": 12, "isInternal": false, - "x": 559.0393909465022, - "y": 254.71099999999998 + "x": 559.03939, + "y": 254.711 }, { "body": null, "index": 13, "isInternal": false, - "x": 559.0393909465022, - "y": 243.55499999999998 + "x": 559.03939, + "y": 243.555 }, { "body": null, "index": 14, "isInternal": false, - "x": 561.7093909465023, + "x": 561.70939, "y": 232.724 }, { "body": null, "index": 15, "isInternal": false, - "x": 566.8933909465022, - "y": 222.84699999999998 + "x": 566.89339, + "y": 222.847 }, { "body": null, "index": 16, "isInternal": false, - "x": 574.2903909465023, - "y": 214.49699999999999 + "x": 574.29039, + "y": 214.497 }, { "body": null, "index": 17, "isInternal": false, - "x": 583.4713909465022, + "x": 583.47139, "y": 208.16 }, { "body": null, "index": 18, "isInternal": false, - "x": 593.9013909465023, - "y": 204.20399999999998 + "x": 593.90139, + "y": 204.204 }, { "body": null, "index": 19, "isInternal": false, - "x": 604.9753909465022, - "y": 202.85999999999999 + "x": 604.97539, + "y": 202.86 }, { "body": null, "index": 20, "isInternal": false, - "x": 616.0493909465022, - "y": 204.20399999999998 + "x": 616.04939, + "y": 204.204 }, { "body": null, "index": 21, "isInternal": false, - "x": 626.4793909465022, + "x": 626.47939, "y": 208.16 }, { "body": null, "index": 22, "isInternal": false, - "x": 635.6603909465022, - "y": 214.49699999999999 + "x": 635.66039, + "y": 214.497 }, { "body": null, "index": 23, "isInternal": false, - "x": 643.0573909465022, - "y": 222.84699999999998 + "x": 643.05739, + "y": 222.847 }, { "body": null, "index": 24, "isInternal": false, - "x": 648.2413909465022, + "x": 648.24139, "y": 232.724 }, { "body": null, "index": 25, "isInternal": false, - "x": 650.9113909465023, - "y": 243.55499999999998 + "x": 650.91139, + "y": 243.555 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1051.3111283901928, + "area": 1051.31113, "axes": { "#": 1127 }, @@ -9982,13 +9982,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -10044,12 +10044,12 @@ } }, { - "x": 680.4597448559673, - "y": 238.43934670781894 + "x": 680.45974, + "y": 238.43935 }, { - "x": 650.9113909465023, - "y": 202.85999999999999 + "x": 650.91139, + "y": 202.86 }, { "category": 1, @@ -10066,16 +10066,16 @@ "y": 0 }, { - "x": 665.6855679012348, - "y": 220.64967335390946 + "x": 665.68557, + "y": 220.64967 }, { "x": 0, "y": 0 }, { - "x": 665.6855679012348, - "y": 220.64967335390946 + "x": 665.68557, + "y": 220.64967 }, { "fillStyle": "#4ECDC4", @@ -10112,36 +10112,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 650.9113909465023, - "y": 202.85999999999999 + "x": 650.91139, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 680.4597448559673, - "y": 202.85999999999999 + "x": 680.45974, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 680.4597448559673, - "y": 238.43934670781894 + "x": 680.45974, + "y": 238.43935 }, { "body": null, "index": 3, "isInternal": false, - "x": 650.9113909465023, - "y": 238.43934670781894 + "x": 650.91139, + "y": 238.43935 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6245.524001, + "area": 6245.524, "axes": { "#": 1148 }, @@ -10162,13 +10162,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 24931.28629116745, - "inverseInertia": 0.00004011024494770155, - "inverseMass": 0.16011466769479796, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "inverseMass": 0.16011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.245524001, + "mass": 6.24552, "motion": 0, "parent": null, "position": { @@ -10223,28 +10223,28 @@ } ], { - "x": 0.6235088590146987, - "y": 0.7818162845133048 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22254054198130854, - "y": 0.9749234365706189 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009716362849914, - "y": 0.4338779904649981 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009716362849914, - "y": -0.4338779904649981 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22254054198130854, - "y": -0.9749234365706189 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.6235088590146987, - "y": -0.7818162845133048 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -10259,12 +10259,12 @@ } }, { - "x": 768.9112071911729, + "x": 768.91121, "y": 296.014 }, { - "x": 678.0942071911729, - "y": 202.85999999999999 + "x": 678.09421, + "y": 202.86 }, { "category": 1, @@ -10281,16 +10281,16 @@ "y": 0 }, { - "x": 725.8682448559673, - "y": 249.43699999999998 + "x": 725.86824, + "y": 249.437 }, { "x": 0, "y": 0 }, { - "x": 725.8682448559673, - "y": 249.43699999999998 + "x": 725.86824, + "y": 249.437 }, { "fillStyle": "#556270", @@ -10336,57 +10336,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 768.9112071911729, - "y": 270.16499999999996 + "x": 768.91121, + "y": 270.165 }, { "body": null, "index": 1, "isInternal": false, - "x": 736.4992071911729, + "x": 736.49921, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 696.0812071911729, + "x": 696.08121, "y": 286.788 }, { "body": null, "index": 3, "isInternal": false, - "x": 678.0942071911729, - "y": 249.43699999999998 + "x": 678.09421, + "y": 249.437 }, { "body": null, "index": 4, "isInternal": false, - "x": 696.0812071911729, - "y": 212.08599999999998 + "x": 696.08121, + "y": 212.086 }, { "body": null, "index": 5, "isInternal": false, - "x": 736.4992071911729, - "y": 202.85999999999999 + "x": 736.49921, + "y": 202.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 768.9112071911729, - "y": 228.70899999999997 + "x": 768.91121, + "y": 228.709 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1694.1455999999998, + "area": 1694.1456, "axes": { "#": 1177 }, @@ -10407,13 +10407,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1913.4195426662397, - "inverseInertia": 0.0005226245356554463, - "inverseMass": 0.590268038355145, + "inertia": 1913.41954, + "inverseInertia": 0.00052, + "inverseMass": 0.59027, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.6941456, + "mass": 1.69415, "motion": 0, "parent": null, "position": { @@ -10469,12 +10469,12 @@ } }, { - "x": 810.071207191173, + "x": 810.07121, "y": 244.02 }, { - "x": 768.9112071911729, - "y": 202.85999999999999 + "x": 768.91121, + "y": 202.86 }, { "category": 1, @@ -10491,7 +10491,7 @@ "y": 0 }, { - "x": 789.491207191173, + "x": 789.49121, "y": 223.44 }, { @@ -10499,7 +10499,7 @@ "y": 0 }, { - "x": 789.491207191173, + "x": 789.49121, "y": 223.44 }, { @@ -10537,36 +10537,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 810.071207191173, + "x": 810.07121, "y": 244.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 768.9112071911729, + "x": 768.91121, "y": 244.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 768.9112071911729, - "y": 202.85999999999999 + "x": 768.91121, + "y": 202.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 810.071207191173, - "y": 202.85999999999999 + "x": 810.07121, + "y": 202.86 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4695.386625, + "area": 4695.38663, "axes": { "#": 1198 }, @@ -10587,13 +10587,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -10648,28 +10648,28 @@ } ], { - "x": 0.6235000959518373, - "y": 0.7818232730918474 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.2225264190381346, - "y": 0.9749266602314579 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009718651359478, - "y": 0.43387751524301366 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009718651359478, - "y": -0.43387751524301366 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.2225264190381346, - "y": -0.9749266602314579 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235000959518373, - "y": -0.7818232730918474 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -10684,12 +10684,12 @@ } }, { - "x": 886.7640821588376, + "x": 886.76408, "y": 283.63 }, { - "x": 808.0200821588376, - "y": 202.85999999999999 + "x": 808.02008, + "y": 202.86 }, { "category": 1, @@ -10706,16 +10706,16 @@ "y": 0 }, { - "x": 849.4432071911731, - "y": 243.24499999999998 + "x": 849.44321, + "y": 243.245 }, { "x": 0, "y": 0 }, { - "x": 849.4432071911731, - "y": 243.24499999999998 + "x": 849.44321, + "y": 243.245 }, { "fillStyle": "#4ECDC4", @@ -10761,49 +10761,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 886.7640821588376, - "y": 261.21799999999996 + "x": 886.76408, + "y": 261.218 }, { "body": null, "index": 1, "isInternal": false, - "x": 858.6610821588375, + "x": 858.66108, "y": 283.63 }, { "body": null, "index": 2, "isInternal": false, - "x": 823.6160821588376, + "x": 823.61608, "y": 275.631 }, { "body": null, "index": 3, "isInternal": false, - "x": 808.0200821588376, - "y": 243.24499999999998 + "x": 808.02008, + "y": 243.245 }, { "body": null, "index": 4, "isInternal": false, - "x": 823.6160821588376, - "y": 210.85899999999998 + "x": 823.61608, + "y": 210.859 }, { "body": null, "index": 5, "isInternal": false, - "x": 858.6610821588375, - "y": 202.85999999999999 + "x": 858.66108, + "y": 202.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 886.7640821588376, + "x": 886.76408, "y": 225.272 }, { @@ -10811,7 +10811,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2533.681298803042, + "area": 2533.6813, "axes": { "#": 1227 }, @@ -10832,13 +10832,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 9087.287047208478, - "inverseInertia": 0.00011004384419739331, - "inverseMass": 0.3946826305551604, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "inverseMass": 0.39468, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.533681298803042, + "mass": 2.53368, "motion": 0, "parent": null, "position": { @@ -10894,12 +10894,12 @@ } }, { - "x": 987.3911397720063, - "y": 228.03892661179694 + "x": 987.39114, + "y": 228.03893 }, { - "x": 886.7640821588376, - "y": 202.85999999999999 + "x": 886.76408, + "y": 202.86 }, { "category": 1, @@ -10916,16 +10916,16 @@ "y": 0 }, { - "x": 937.077610965422, - "y": 215.44946330589846 + "x": 937.07761, + "y": 215.44946 }, { "x": 0, "y": 0 }, { - "x": 937.077610965422, - "y": 215.44946330589846 + "x": 937.07761, + "y": 215.44946 }, { "fillStyle": "#556270", @@ -10962,36 +10962,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 886.7640821588376, - "y": 202.85999999999999 + "x": 886.76408, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 987.3911397720063, - "y": 202.85999999999999 + "x": 987.39114, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 987.3911397720063, - "y": 228.03892661179694 + "x": 987.39114, + "y": 228.03893 }, { "body": null, "index": 3, "isInternal": false, - "x": 886.7640821588376, - "y": 228.03892661179694 + "x": 886.76408, + "y": 228.03893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2082.1047164947227, + "area": 2082.10472, "axes": { "#": 1248 }, @@ -11012,13 +11012,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2917.86500075833, - "inverseInertia": 0.0003427163353136995, - "inverseMass": 0.4802832403566742, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "inverseMass": 0.48028, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.082104716494723, + "mass": 2.0821, "motion": 0, "parent": null, "position": { @@ -11074,8 +11074,8 @@ } }, { - "x": 62.57741769547325, - "y": 344.91562037037033 + "x": 62.57742, + "y": 344.91562 }, { "x": 20, @@ -11096,16 +11096,16 @@ "y": 0 }, { - "x": 41.28870884773663, - "y": 320.4648101851852 + "x": 41.28871, + "y": 320.46481 }, { "x": 0, "y": 0 }, { - "x": 41.28870884773663, - "y": 320.4648101851852 + "x": 41.28871, + "y": 320.46481 }, { "fillStyle": "#FF6B6B", @@ -11149,29 +11149,29 @@ "body": null, "index": 1, "isInternal": false, - "x": 62.57741769547325, + "x": 62.57742, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 62.57741769547325, - "y": 344.91562037037033 + "x": 62.57742, + "y": 344.91562 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 344.91562037037033 + "y": 344.91562 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2570.1808866424026, + "area": 2570.18089, "axes": { "#": 1269 }, @@ -11192,13 +11192,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 7426.992944977438, - "inverseInertia": 0.00013464399487227974, - "inverseMass": 0.38907767355875333, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "inverseMass": 0.38908, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5701808866424027, + "mass": 2.57018, "motion": 0, "parent": null, "position": { @@ -11254,11 +11254,11 @@ } }, { - "x": 151.03540809327845, - "y": 325.0693840877915 + "x": 151.03541, + "y": 325.06938 }, { - "x": 62.577417695473244, + "x": 62.57742, "y": 296.014 }, { @@ -11276,16 +11276,16 @@ "y": 0 }, { - "x": 106.80641289437585, - "y": 310.54169204389575 + "x": 106.80641, + "y": 310.54169 }, { "x": 0, "y": 0 }, { - "x": 106.80641289437585, - "y": 310.54169204389575 + "x": 106.80641, + "y": 310.54169 }, { "fillStyle": "#FF6B6B", @@ -11322,36 +11322,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 62.577417695473244, + "x": 62.57742, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 151.03540809327845, + "x": 151.03541, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 151.03540809327845, - "y": 325.0693840877915 + "x": 151.03541, + "y": 325.06938 }, { "body": null, "index": 3, "isInternal": false, - "x": 62.577417695473244, - "y": 325.0693840877915 + "x": 62.57742, + "y": 325.06938 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2248.277056, + "area": 2248.27706, "axes": { "#": 1290 }, @@ -11372,13 +11372,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 3369.8331470240178, - "inverseInertia": 0.00029675059754312303, - "inverseMass": 0.44478503987366225, + "inertia": 3369.83315, + "inverseInertia": 0.0003, + "inverseMass": 0.44479, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.248277056, + "mass": 2.24828, "motion": 0, "parent": null, "position": { @@ -11434,11 +11434,11 @@ } }, { - "x": 198.45140809327845, - "y": 343.42999999999995 + "x": 198.45141, + "y": 343.43 }, { - "x": 151.03540809327845, + "x": 151.03541, "y": 296.014 }, { @@ -11456,7 +11456,7 @@ "y": 0 }, { - "x": 174.74340809327845, + "x": 174.74341, "y": 319.722 }, { @@ -11464,7 +11464,7 @@ "y": 0 }, { - "x": 174.74340809327845, + "x": 174.74341, "y": 319.722 }, { @@ -11502,28 +11502,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 198.45140809327845, - "y": 343.42999999999995 + "x": 198.45141, + "y": 343.43 }, { "body": null, "index": 1, "isInternal": false, - "x": 151.03540809327845, - "y": 343.42999999999995 + "x": 151.03541, + "y": 343.43 }, { "body": null, "index": 2, "isInternal": false, - "x": 151.03540809327845, + "x": 151.03541, "y": 296.014 }, { "body": null, "index": 3, "isInternal": false, - "x": 198.45140809327845, + "x": 198.45141, "y": 296.014 }, { @@ -11531,7 +11531,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4167.4330549999995, + "area": 4167.43305, "axes": { "#": 1311 }, @@ -11552,13 +11552,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 11100.542061550868, - "inverseInertia": 0.00009008569081177725, - "inverseMass": 0.23995586415004816, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "inverseMass": 0.23996, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.167433054999999, + "mass": 4.16743, "motion": 0, "parent": null, "position": { @@ -11613,28 +11613,28 @@ } ], { - "x": 0.6235095584460711, - "y": 0.7818157267069941 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22252973145772786, - "y": 0.974925904167774 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009725986708983, - "y": 0.43387599201178284 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009725986708983, - "y": -0.43387599201178284 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22252973145772786, - "y": -0.974925904167774 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235095584460711, - "y": -0.7818157267069941 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -11649,11 +11649,11 @@ } }, { - "x": 270.7041179511755, - "y": 372.10800000000006 + "x": 270.70412, + "y": 372.108 }, { - "x": 196.5191179511755, + "x": 196.51912, "y": 296.014 }, { @@ -11671,16 +11671,16 @@ "y": 0 }, { - "x": 235.54390809327845, - "y": 334.06100000000004 + "x": 235.54391, + "y": 334.061 }, { "x": 0, "y": 0 }, { - "x": 235.54390809327845, - "y": 334.06100000000004 + "x": 235.54391, + "y": 334.061 }, { "fillStyle": "#FF6B6B", @@ -11726,49 +11726,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 270.7041179511755, - "y": 350.99300000000005 + "x": 270.70412, + "y": 350.993 }, { "body": null, "index": 1, "isInternal": false, - "x": 244.2281179511755, - "y": 372.10800000000006 + "x": 244.22812, + "y": 372.108 }, { "body": null, "index": 2, "isInternal": false, - "x": 211.2121179511755, - "y": 364.57200000000006 + "x": 211.21212, + "y": 364.572 }, { "body": null, "index": 3, "isInternal": false, - "x": 196.5191179511755, - "y": 334.06100000000004 + "x": 196.51912, + "y": 334.061 }, { "body": null, "index": 4, "isInternal": false, - "x": 211.2121179511755, + "x": 211.21212, "y": 303.55 }, { "body": null, "index": 5, "isInternal": false, - "x": 244.2281179511755, + "x": 244.22812, "y": 296.014 }, { "body": null, "index": 6, "isInternal": false, - "x": 270.7041179511755, + "x": 270.70412, "y": 317.129 }, { @@ -11776,7 +11776,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1687.7661798887366, + "area": 1687.76618, "axes": { "#": 1340 }, @@ -11797,13 +11797,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1980.3012000583947, - "inverseInertia": 0.0005049736878261308, - "inverseMass": 0.5924991340127004, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "inverseMass": 0.5925, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6877661798887367, + "mass": 1.68777, "motion": 0, "parent": null, "position": { @@ -11859,11 +11859,11 @@ } }, { - "x": 306.2144060170191, - "y": 343.54293518518523 + "x": 306.21441, + "y": 343.54294 }, { - "x": 270.7041179511755, + "x": 270.70412, "y": 296.014 }, { @@ -11881,16 +11881,16 @@ "y": 0 }, { - "x": 288.4592619840973, - "y": 319.7784675925926 + "x": 288.45926, + "y": 319.77847 }, { "x": 0, "y": 0 }, { - "x": 288.4592619840973, - "y": 319.7784675925926 + "x": 288.45926, + "y": 319.77847 }, { "fillStyle": "#556270", @@ -11927,36 +11927,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 270.7041179511755, + "x": 270.70412, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.2144060170191, + "x": 306.21441, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 306.2144060170191, - "y": 343.54293518518523 + "x": 306.21441, + "y": 343.54294 }, { "body": null, "index": 3, "isInternal": false, - "x": 270.7041179511755, - "y": 343.54293518518523 + "x": 270.70412, + "y": 343.54294 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 888.874596, + "area": 888.8746, "axes": { "#": 1361 }, @@ -11977,13 +11977,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 526.7320316094421, - "inverseInertia": 0.0018984985533241191, - "inverseMass": 1.125018089728374, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "inverseMass": 1.12502, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.888874596, + "mass": 0.88887, "motion": 0, "parent": null, "position": { @@ -12039,11 +12039,11 @@ } }, { - "x": 336.02840601701905, + "x": 336.02841, "y": 325.828 }, { - "x": 306.2144060170191, + "x": 306.21441, "y": 296.014 }, { @@ -12061,7 +12061,7 @@ "y": 0 }, { - "x": 321.12140601701907, + "x": 321.12141, "y": 310.921 }, { @@ -12069,7 +12069,7 @@ "y": 0 }, { - "x": 321.12140601701907, + "x": 321.12141, "y": 310.921 }, { @@ -12107,28 +12107,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.02840601701905, + "x": 336.02841, "y": 325.828 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.2144060170191, + "x": 306.21441, "y": 325.828 }, { "body": null, "index": 2, "isInternal": false, - "x": 306.2144060170191, + "x": 306.21441, "y": 296.014 }, { "body": null, "index": 3, "isInternal": false, - "x": 336.02840601701905, + "x": 336.02841, "y": 296.014 }, { @@ -12136,7 +12136,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1624.121534624581, + "area": 1624.12153, "axes": { "#": 1382 }, @@ -12157,13 +12157,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1766.6812602831346, - "inverseInertia": 0.0005660330601116675, - "inverseMass": 0.6157174686013581, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "inverseMass": 0.61572, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.624121534624581, + "mass": 1.62412, "motion": 0, "parent": null, "position": { @@ -12219,11 +12219,11 @@ } }, { - "x": 378.3176292680479, - "y": 334.4190925925926 + "x": 378.31763, + "y": 334.41909 }, { - "x": 336.02840601701905, + "x": 336.02841, "y": 296.014 }, { @@ -12241,16 +12241,16 @@ "y": 0 }, { - "x": 357.17301764253347, - "y": 315.2165462962963 + "x": 357.17302, + "y": 315.21655 }, { "x": 0, "y": 0 }, { - "x": 357.17301764253347, - "y": 315.2165462962963 + "x": 357.17302, + "y": 315.21655 }, { "fillStyle": "#C7F464", @@ -12287,36 +12287,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.02840601701905, + "x": 336.02841, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 378.3176292680479, + "x": 378.31763, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 378.3176292680479, - "y": 334.4190925925926 + "x": 378.31763, + "y": 334.41909 }, { "body": null, "index": 3, "isInternal": false, - "x": 336.02840601701905, - "y": 334.4190925925926 + "x": 336.02841, + "y": 334.41909 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 925.4335858447538, + "area": 925.43359, "axes": { "#": 1403 }, @@ -12337,13 +12337,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 658.9066011822378, - "inverseInertia": 0.001517665778739746, - "inverseMass": 1.080574570985751, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "inverseMass": 1.08057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9254335858447538, + "mass": 0.92543, "motion": 0, "parent": null, "position": { @@ -12399,11 +12399,11 @@ } }, { - "x": 418.33126095529065, - "y": 319.14195781893005 + "x": 418.33126, + "y": 319.14196 }, { - "x": 378.3176292680479, + "x": 378.31763, "y": 296.014 }, { @@ -12421,16 +12421,16 @@ "y": 0 }, { - "x": 398.32444511166926, - "y": 307.57797890946506 + "x": 398.32445, + "y": 307.57798 }, { "x": 0, "y": 0 }, { - "x": 398.32444511166926, - "y": 307.57797890946506 + "x": 398.32445, + "y": 307.57798 }, { "fillStyle": "#C44D58", @@ -12467,36 +12467,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 378.3176292680479, + "x": 378.31763, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 418.33126095529065, + "x": 418.33126, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 418.33126095529065, - "y": 319.14195781893005 + "x": 418.33126, + "y": 319.14196 }, { "body": null, "index": 3, "isInternal": false, - "x": 378.3176292680479, - "y": 319.14195781893005 + "x": 378.31763, + "y": 319.14196 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5929.347511999999, + "area": 5929.34751, "axes": { "#": 1424 }, @@ -12518,13 +12518,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 22382.17146584697, - "inverseInertia": 0.00004467841744157413, - "inverseMass": 0.1686526212161066, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "inverseMass": 0.16865, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.929347512, + "mass": 5.92935, "motion": 0, "parent": null, "position": { @@ -12597,52 +12597,52 @@ } ], { - "x": -0.9709364586220396, - "y": -0.23933740476259086 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.885455576089853, - "y": -0.4647240286141727 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7484830648246673, - "y": -0.6631539049652597 + "x": -0.74848, + "y": -0.66315 }, { - "x": -0.5681125845628812, - "y": -0.8229508437697133 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.3546198602355774, - "y": -0.9350105639651882 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12047891877198527, - "y": -0.9927158859067047 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12047891877198527, - "y": -0.9927158859067047 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.3546198602355774, - "y": -0.9350105639651882 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.5681125845628812, - "y": -0.8229508437697133 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484830648246673, - "y": -0.6631539049652597 + "x": 0.74848, + "y": -0.66315 }, { - "x": 0.885455576089853, - "y": -0.4647240286141727 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709364586220396, - "y": -0.23933740476259086 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -12657,11 +12657,11 @@ } }, { - "x": 505.0072609552907, + "x": 505.00726, "y": 383.326 }, { - "x": 418.33126095529065, + "x": 418.33126, "y": 296.014 }, { @@ -12679,7 +12679,7 @@ "y": 0 }, { - "x": 461.66926095529067, + "x": 461.66926, "y": 339.67 }, { @@ -12687,7 +12687,7 @@ "y": 0 }, { - "x": 461.66926095529067, + "x": 461.66926, "y": 339.67 }, { @@ -12791,182 +12791,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.0072609552907, + "x": 505.00726, "y": 344.932 }, { "body": null, "index": 1, "isInternal": false, - "x": 502.4882609552907, + "x": 502.48826, "y": 355.151 }, { "body": null, "index": 2, "isInternal": false, - "x": 497.59726095529066, + "x": 497.59726, "y": 364.47 }, { "body": null, "index": 3, "isInternal": false, - "x": 490.6182609552907, - "y": 372.34700000000004 + "x": 490.61826, + "y": 372.347 }, { "body": null, "index": 4, "isInternal": false, - "x": 481.9572609552907, + "x": 481.95726, "y": 378.326 }, { "body": null, "index": 5, "isInternal": false, - "x": 472.11726095529065, + "x": 472.11726, "y": 382.058 }, { "body": null, "index": 6, "isInternal": false, - "x": 461.66926095529067, + "x": 461.66926, "y": 383.326 }, { "body": null, "index": 7, "isInternal": false, - "x": 451.2212609552907, + "x": 451.22126, "y": 382.058 }, { "body": null, "index": 8, "isInternal": false, - "x": 441.38126095529066, + "x": 441.38126, "y": 378.326 }, { "body": null, "index": 9, "isInternal": false, - "x": 432.72026095529066, - "y": 372.34700000000004 + "x": 432.72026, + "y": 372.347 }, { "body": null, "index": 10, "isInternal": false, - "x": 425.74126095529067, + "x": 425.74126, "y": 364.47 }, { "body": null, "index": 11, "isInternal": false, - "x": 420.85026095529065, + "x": 420.85026, "y": 355.151 }, { "body": null, "index": 12, "isInternal": false, - "x": 418.33126095529065, + "x": 418.33126, "y": 344.932 }, { "body": null, "index": 13, "isInternal": false, - "x": 418.33126095529065, + "x": 418.33126, "y": 334.408 }, { "body": null, "index": 14, "isInternal": false, - "x": 420.85026095529065, + "x": 420.85026, "y": 324.189 }, { "body": null, "index": 15, "isInternal": false, - "x": 425.74126095529067, + "x": 425.74126, "y": 314.87 }, { "body": null, "index": 16, "isInternal": false, - "x": 432.72026095529066, + "x": 432.72026, "y": 306.993 }, { "body": null, "index": 17, "isInternal": false, - "x": 441.38126095529066, + "x": 441.38126, "y": 301.014 }, { "body": null, "index": 18, "isInternal": false, - "x": 451.2212609552907, - "y": 297.28200000000004 + "x": 451.22126, + "y": 297.282 }, { "body": null, "index": 19, "isInternal": false, - "x": 461.66926095529067, + "x": 461.66926, "y": 296.014 }, { "body": null, "index": 20, "isInternal": false, - "x": 472.11726095529065, - "y": 297.28200000000004 + "x": 472.11726, + "y": 297.282 }, { "body": null, "index": 21, "isInternal": false, - "x": 481.9572609552907, + "x": 481.95726, "y": 301.014 }, { "body": null, "index": 22, "isInternal": false, - "x": 490.6182609552907, + "x": 490.61826, "y": 306.993 }, { "body": null, "index": 23, "isInternal": false, - "x": 497.59726095529066, + "x": 497.59726, "y": 314.87 }, { "body": null, "index": 24, "isInternal": false, - "x": 502.4882609552907, + "x": 502.48826, "y": 324.189 }, { "body": null, "index": 25, "isInternal": false, - "x": 505.0072609552907, + "x": 505.00726, "y": 334.408 }, { @@ -12974,7 +12974,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2550.166396822507, + "area": 2550.1664, "axes": { "#": 1478 }, @@ -12995,13 +12995,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 10939.165130883785, - "inverseInertia": 0.00009141465441240754, - "inverseMass": 0.392131274745834, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "inverseMass": 0.39213, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5501663968225072, + "mass": 2.55017, "motion": 0, "parent": null, "position": { @@ -13057,11 +13057,11 @@ } }, { - "x": 616.1010538222316, - "y": 318.9690754458162 + "x": 616.10105, + "y": 318.96908 }, { - "x": 505.00726095529063, + "x": 505.00726, "y": 296.014 }, { @@ -13079,16 +13079,16 @@ "y": 0 }, { - "x": 560.5541573887612, - "y": 307.4915377229081 + "x": 560.55416, + "y": 307.49154 }, { "x": 0, "y": 0 }, { - "x": 560.5541573887612, - "y": 307.4915377229081 + "x": 560.55416, + "y": 307.49154 }, { "fillStyle": "#FF6B6B", @@ -13125,43 +13125,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.00726095529063, + "x": 505.00726, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.1010538222316, + "x": 616.10105, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.1010538222316, - "y": 318.9690754458162 + "x": 616.10105, + "y": 318.96908 }, { "body": null, "index": 3, "isInternal": false, - "x": 505.00726095529063, - "y": 318.9690754458162 + "x": 505.00726, + "y": 318.96908 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5174.381305999998, + "area": 5174.38131, "axes": { "#": 1499 }, "bounds": { "#": 1513 }, - "circleRadius": 40.782407407407405, + "circleRadius": 40.78241, "collisionFilter": { "#": 1516 }, @@ -13176,13 +13176,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17045.3242729355, - "inverseInertia": 0.000058667115039154525, - "inverseMass": 0.1932598200369272, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "inverseMass": 0.19326, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.174381305999998, + "mass": 5.17438, "motion": 0, "parent": null, "position": { @@ -13255,52 +13255,52 @@ } ], { - "x": -0.9709389264723081, - "y": -0.23932739304309056 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854449940324717, - "y": -0.46474419043473386 + "x": -0.88544, + "y": -0.46474 }, { - "x": -0.748536249103088, - "y": -0.6630938725238529 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680775563568219, - "y": -0.8229750239002773 + "x": -0.56808, + "y": -0.82298 }, { - "x": -0.35456531449559353, - "y": -0.9350312496150279 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12052880622175748, - "y": -0.9927098301471373 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052880622175748, - "y": -0.9927098301471373 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35456531449559353, - "y": -0.9350312496150279 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680775563568219, - "y": -0.8229750239002773 + "x": 0.56808, + "y": -0.82298 }, { - "x": 0.748536249103088, - "y": -0.6630938725238529 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854449940324717, - "y": -0.46474419043473386 + "x": 0.88544, + "y": -0.46474 }, { - "x": 0.9709389264723081, - "y": -0.23932739304309056 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -13315,11 +13315,11 @@ } }, { - "x": 697.0710538222316, + "x": 697.07105, "y": 377.578 }, { - "x": 616.1010538222316, + "x": 616.10105, "y": 296.014 }, { @@ -13337,7 +13337,7 @@ "y": 0 }, { - "x": 656.5860538222316, + "x": 656.58605, "y": 336.796 }, { @@ -13345,7 +13345,7 @@ "y": 0 }, { - "x": 656.5860538222316, + "x": 656.58605, "y": 336.796 }, { @@ -13449,182 +13449,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 697.0710538222316, + "x": 697.07105, "y": 341.712 }, { "body": null, "index": 1, "isInternal": false, - "x": 694.7180538222316, + "x": 694.71805, "y": 351.258 }, { "body": null, "index": 2, "isInternal": false, - "x": 690.1490538222316, - "y": 359.96299999999997 + "x": 690.14905, + "y": 359.963 }, { "body": null, "index": 3, "isInternal": false, - "x": 683.6300538222316, + "x": 683.63005, "y": 367.322 }, { "body": null, "index": 4, "isInternal": false, - "x": 675.5390538222316, + "x": 675.53905, "y": 372.907 }, { "body": null, "index": 5, "isInternal": false, - "x": 666.3460538222316, + "x": 666.34605, "y": 376.393 }, { "body": null, "index": 6, "isInternal": false, - "x": 656.5860538222316, + "x": 656.58605, "y": 377.578 }, { "body": null, "index": 7, "isInternal": false, - "x": 646.8260538222316, + "x": 646.82605, "y": 376.393 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.6330538222317, + "x": 637.63305, "y": 372.907 }, { "body": null, "index": 9, "isInternal": false, - "x": 629.5420538222317, + "x": 629.54205, "y": 367.322 }, { "body": null, "index": 10, "isInternal": false, - "x": 623.0230538222316, - "y": 359.96299999999997 + "x": 623.02305, + "y": 359.963 }, { "body": null, "index": 11, "isInternal": false, - "x": 618.4540538222317, + "x": 618.45405, "y": 351.258 }, { "body": null, "index": 12, "isInternal": false, - "x": 616.1010538222316, + "x": 616.10105, "y": 341.712 }, { "body": null, "index": 13, "isInternal": false, - "x": 616.1010538222316, + "x": 616.10105, "y": 331.88 }, { "body": null, "index": 14, "isInternal": false, - "x": 618.4540538222317, + "x": 618.45405, "y": 322.334 }, { "body": null, "index": 15, "isInternal": false, - "x": 623.0230538222316, - "y": 313.62899999999996 + "x": 623.02305, + "y": 313.629 }, { "body": null, "index": 16, "isInternal": false, - "x": 629.5420538222317, + "x": 629.54205, "y": 306.27 }, { "body": null, "index": 17, "isInternal": false, - "x": 637.6330538222317, + "x": 637.63305, "y": 300.685 }, { "body": null, "index": 18, "isInternal": false, - "x": 646.8260538222316, + "x": 646.82605, "y": 297.199 }, { "body": null, "index": 19, "isInternal": false, - "x": 656.5860538222316, + "x": 656.58605, "y": 296.014 }, { "body": null, "index": 20, "isInternal": false, - "x": 666.3460538222316, + "x": 666.34605, "y": 297.199 }, { "body": null, "index": 21, "isInternal": false, - "x": 675.5390538222316, + "x": 675.53905, "y": 300.685 }, { "body": null, "index": 22, "isInternal": false, - "x": 683.6300538222316, + "x": 683.63005, "y": 306.27 }, { "body": null, "index": 23, "isInternal": false, - "x": 690.1490538222316, - "y": 313.62899999999996 + "x": 690.14905, + "y": 313.629 }, { "body": null, "index": 24, "isInternal": false, - "x": 694.7180538222316, + "x": 694.71805, "y": 322.334 }, { "body": null, "index": 25, "isInternal": false, - "x": 697.0710538222316, + "x": 697.07105, "y": 331.88 }, { @@ -13632,7 +13632,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1308.2034644955884, + "area": 1308.20346, "axes": { "#": 1553 }, @@ -13653,13 +13653,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1149.8579054087725, - "inverseInertia": 0.0008696726745940854, - "inverseMass": 0.7644070873834413, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "inverseMass": 0.76441, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3082034644955884, + "mass": 1.3082, "motion": 0, "parent": null, "position": { @@ -13715,11 +13715,11 @@ } }, { - "x": 735.5731114354004, - "y": 329.99149485596706 + "x": 735.57311, + "y": 329.99149 }, { - "x": 697.0710538222316, + "x": 697.07105, "y": 296.014 }, { @@ -13737,16 +13737,16 @@ "y": 0 }, { - "x": 716.322082628816, - "y": 313.00274742798354 + "x": 716.32208, + "y": 313.00275 }, { "x": 0, "y": 0 }, { - "x": 716.322082628816, - "y": 313.00274742798354 + "x": 716.32208, + "y": 313.00275 }, { "fillStyle": "#FF6B6B", @@ -13783,36 +13783,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 697.0710538222316, + "x": 697.07105, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 735.5731114354004, + "x": 735.57311, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 735.5731114354004, - "y": 329.99149485596706 + "x": 735.57311, + "y": 329.99149 }, { "body": null, "index": 3, "isInternal": false, - "x": 697.0710538222316, - "y": 329.99149485596706 + "x": 697.07105, + "y": 329.99149 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3803.7767479999993, + "area": 3803.77675, "axes": { "#": 1574 }, @@ -13833,13 +13833,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 9247.768748441516, - "inverseInertia": 0.00010813419184692798, - "inverseMass": 0.2628966067805618, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "inverseMass": 0.2629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.8037767479999993, + "mass": 3.80378, "motion": 0, "parent": null, "position": { @@ -13894,28 +13894,28 @@ } ], { - "x": 0.623488113338336, - "y": 0.7818328290151305 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22254280104331042, - "y": 0.9749229209039029 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009618424321717, - "y": 0.43389832735472317 + "x": -0.90096, + "y": 0.4339 }, { - "x": -0.9009618424321717, - "y": -0.43389832735472317 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.22254280104331042, - "y": -0.9749229209039029 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.623488113338336, - "y": -0.7818328290151305 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -13930,11 +13930,11 @@ } }, { - "x": 804.6017507639486, + "x": 804.60175, "y": 368.712 }, { - "x": 733.7267507639486, + "x": 733.72675, "y": 296.014 }, { @@ -13952,7 +13952,7 @@ "y": 0 }, { - "x": 771.0106114354004, + "x": 771.01061, "y": 332.363 }, { @@ -13960,7 +13960,7 @@ "y": 0 }, { - "x": 771.0106114354004, + "x": 771.01061, "y": 332.363 }, { @@ -14007,49 +14007,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 804.6017507639486, + "x": 804.60175, "y": 348.54 }, { "body": null, "index": 1, "isInternal": false, - "x": 779.3067507639487, + "x": 779.30675, "y": 368.712 }, { "body": null, "index": 2, "isInternal": false, - "x": 747.7647507639487, + "x": 747.76475, "y": 361.512 }, { "body": null, "index": 3, "isInternal": false, - "x": 733.7267507639486, + "x": 733.72675, "y": 332.363 }, { "body": null, "index": 4, "isInternal": false, - "x": 747.7647507639487, + "x": 747.76475, "y": 303.214 }, { "body": null, "index": 5, "isInternal": false, - "x": 779.3067507639487, + "x": 779.30675, "y": 296.014 }, { "body": null, "index": 6, "isInternal": false, - "x": 804.6017507639486, + "x": 804.60175, "y": 316.186 }, { @@ -14057,7 +14057,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1519.5385669833, + "area": 1519.53857, "axes": { "#": 1603 }, @@ -14078,13 +14078,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1623.6987742797708, - "inverseInertia": 0.0006158777821604092, - "inverseMass": 0.6580945174595165, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "inverseMass": 0.65809, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5195385669833, + "mass": 1.51954, "motion": 0, "parent": null, "position": { @@ -14140,11 +14140,11 @@ } }, { - "x": 837.6605213400803, - "y": 341.97876337448565 + "x": 837.66052, + "y": 341.97876 }, { - "x": 804.6017507639486, + "x": 804.60175, "y": 296.014 }, { @@ -14162,16 +14162,16 @@ "y": 0 }, { - "x": 821.1311360520144, - "y": 318.99638168724283 + "x": 821.13114, + "y": 318.99638 }, { "x": 0, "y": 0 }, { - "x": 821.1311360520144, - "y": 318.99638168724283 + "x": 821.13114, + "y": 318.99638 }, { "fillStyle": "#556270", @@ -14208,36 +14208,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 804.6017507639486, + "x": 804.60175, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 837.6605213400803, + "x": 837.66052, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 837.6605213400803, - "y": 341.97876337448565 + "x": 837.66052, + "y": 341.97876 }, { "body": null, "index": 3, "isInternal": false, - "x": 804.6017507639486, - "y": 341.97876337448565 + "x": 804.60175, + "y": 341.97876 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3306.4800040000005, + "area": 3306.48, "axes": { "#": 1624 }, @@ -14258,13 +14258,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 7288.540011234562, - "inverseInertia": 0.00013720168901571494, - "inverseMass": 0.302436427496992, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "inverseMass": 0.30244, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.3064800040000004, + "mass": 3.30648, "motion": 0, "parent": null, "position": { @@ -14320,11 +14320,11 @@ } }, { - "x": 895.1625213400803, - "y": 353.51599999999996 + "x": 895.16252, + "y": 353.516 }, { - "x": 837.6605213400803, + "x": 837.66052, "y": 296.014 }, { @@ -14342,7 +14342,7 @@ "y": 0 }, { - "x": 866.4115213400803, + "x": 866.41152, "y": 324.765 }, { @@ -14350,7 +14350,7 @@ "y": 0 }, { - "x": 866.4115213400803, + "x": 866.41152, "y": 324.765 }, { @@ -14388,28 +14388,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 895.1625213400803, - "y": 353.51599999999996 + "x": 895.16252, + "y": 353.516 }, { "body": null, "index": 1, "isInternal": false, - "x": 837.6605213400803, - "y": 353.51599999999996 + "x": 837.66052, + "y": 353.516 }, { "body": null, "index": 2, "isInternal": false, - "x": 837.6605213400803, + "x": 837.66052, "y": 296.014 }, { "body": null, "index": 3, "isInternal": false, - "x": 895.1625213400803, + "x": 895.16252, "y": 296.014 }, [], diff --git a/test/browser/refs/raycasting/raycasting-10.json b/test/browser/refs/raycasting/raycasting-10.json index eeb4ee31..8cd4c55e 100644 --- a/test/browser/refs/raycasting/raycasting-10.json +++ b/test/browser/refs/raycasting/raycasting-10.json @@ -859,10 +859,10 @@ "y": 605.25 }, { - "angle": 0.023339180146740465, - "anglePrev": 0.01932693965060767, - "angularSpeed": 0.004878912135023763, - "angularVelocity": 0.0039281985151748515, + "angle": 0.02334, + "anglePrev": 0.01933, + "angularSpeed": 0.00488, + "angularVelocity": 0.00393, "area": 3234, "axes": { "#": 91 @@ -884,9 +884,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 2375.827477589164, - "inverseInertia": 0.0004209059830450043, - "inverseMass": 0.30921459492888065, + "inertia": 2375.82748, + "inverseInertia": 0.00042, + "inverseMass": 0.30921, "isSleeping": false, "isStatic": false, "label": "Body", @@ -912,7 +912,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905271886072441, + "speed": 2.90527, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -942,24 +942,24 @@ } ], { - "x": 0.9535780693936071, - "y": 0.3011459207287416 + "x": 0.95358, + "y": 0.30115 }, { - "x": -0.023337061328467128, - "y": 0.999727653698022 + "x": -0.02334, + "y": 0.99973 }, { - "x": -0.9665912906266908, - "y": 0.256322603148119 + "x": -0.96659, + "y": 0.25632 }, { - "x": -0.5863383893915982, - "y": -0.810066227617018 + "x": -0.58634, + "y": -0.81007 }, { - "x": 0.6234985612949141, - "y": -0.7818244969704984 + "x": 0.6235, + "y": -0.78182 }, { "max": { @@ -970,12 +970,12 @@ } }, { - "x": 283.0944719948344, - "y": 276.65262709508045 + "x": 283.09447, + "y": 276.65263 }, { - "x": 183.1193286974157, - "y": 173.0278048498466 + "x": 183.11933, + "y": 173.0278 }, { "category": 1, @@ -992,16 +992,16 @@ "y": 0 }, { - "x": 232.7172332215614, - "y": 227.76119367271514 + "x": 232.71723, + "y": 227.76119 }, { - "x": -0.610628122991593, - "y": 1.025425843939388 + "x": -0.61063, + "y": 1.02543 }, { - "x": 232.73644740178446, - "y": 224.8413987159998 + "x": 232.73645, + "y": 224.8414 }, { "endCol": 5, @@ -1024,8 +1024,8 @@ "yScale": 1 }, { - "x": -0.02027085519497973, - "y": 2.916170890645475 + "x": -0.02027, + "y": 2.91617 }, [ { @@ -1048,36 +1048,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 283.0944719948344, - "y": 212.18430875679474 + "x": 283.09447, + "y": 212.18431 }, { "body": null, "index": 1, "isInternal": false, - "x": 263.6524764259051, - "y": 273.7473561821597 + "x": 263.65248, + "y": 273.74736 }, { "body": null, "index": 2, "isInternal": false, - "x": 199.66990658923174, - "y": 272.2537842571378 + "x": 199.66991, + "y": 272.25378 }, { "body": null, "index": 3, "isInternal": false, - "x": 183.12170662503235, - "y": 209.85060262394802 + "x": 183.12171, + "y": 209.8506 }, { "body": null, "index": 4, "isInternal": false, - "x": 233.99489764041516, - "y": 173.0278048498466 + "x": 233.9949, + "y": 173.0278 }, { "max": { @@ -1299,11 +1299,11 @@ } ], { - "angle": 0.07445967011819259, - "anglePrev": 0.058347711567882335, - "angularSpeed": 0.013964360576911297, - "angularVelocity": 0.01600098811285361, - "area": 1534.906434764454, + "angle": 0.07446, + "anglePrev": 0.05835, + "angularSpeed": 0.01396, + "angularVelocity": 0.016, + "area": 1534.90643, "axes": { "#": 123 }, @@ -1324,13 +1324,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1352,7 +1352,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2087669783591408, + "speed": 1.20877, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1373,12 +1373,12 @@ } ], { - "x": -0.07439088544462749, - "y": 0.9972291593022962 + "x": -0.07439, + "y": 0.99723 }, { - "x": -0.9972291593022962, - "y": -0.07439088544462749 + "x": -0.99723, + "y": -0.07439 }, { "max": { @@ -1389,12 +1389,12 @@ } }, { - "x": 59.87515505790247, - "y": 73.82257465594918 + "x": 59.87516, + "y": 73.82257 }, { - "x": 20.147845203887172, - "y": 27.893385607099926 + "x": 20.14785, + "y": 27.89339 }, { "category": 1, @@ -1411,16 +1411,16 @@ "y": 0 }, { - "x": 39.86730547792392, - "y": 50.27104972334358 + "x": 39.86731, + "y": 50.27105 }, { "x": 0, "y": 0 }, { - "x": 39.56140334476491, - "y": 49.32606648024493 + "x": 39.5614, + "y": 49.32607 }, { "endCol": 1, @@ -1443,8 +1443,8 @@ "yScale": 1 }, { - "x": 0.3113174228508271, - "y": 0.9340505811102986 + "x": 0.31132, + "y": 0.93405 }, [ { @@ -1464,36 +1464,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 23.284469538887052, - "y": 27.893385607099926 + "x": 23.28447, + "y": 27.89339 }, { "body": null, "index": 1, "isInternal": false, - "x": 59.58676575196065, - "y": 30.601449178820122 + "x": 59.58677, + "y": 30.60145 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.450141416960754, - "y": 72.64871383958726 + "x": 56.45014, + "y": 72.64871 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.147845203887172, - "y": 69.94065026786706 + "x": 20.14785, + "y": 69.94065 }, { - "angle": 0.06898784932673126, - "anglePrev": 0.05330008656898826, - "angularSpeed": 0.01353673657723852, - "angularVelocity": 0.015675700760014386, - "area": 2220.52878634164, + "angle": 0.06899, + "anglePrev": 0.0533, + "angularSpeed": 0.01354, + "angularVelocity": 0.01568, + "area": 2220.52879, "axes": { "#": 145 }, @@ -1514,13 +1514,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1542,7 +1542,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9959156495863588, + "speed": 1.99592, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1563,12 +1563,12 @@ } ], { - "x": -0.06893313976696294, - "y": 0.9976212819712039 + "x": -0.06893, + "y": 0.99762 }, { - "x": -0.9976212819712039, - "y": -0.06893313976696294 + "x": -0.99762, + "y": -0.06893 }, { "max": { @@ -1579,12 +1579,12 @@ } }, { - "x": 104.6869565506, - "y": 86.1996725438981 + "x": 104.68696, + "y": 86.19967 }, { - "x": 55.938511184147806, - "y": 32.202029606818364 + "x": 55.93851, + "y": 32.20203 }, { "category": 1, @@ -1601,16 +1601,16 @@ "y": 0 }, { - "x": 80.2314380038951, - "y": 58.206210033249484 + "x": 80.23144, + "y": 58.20621 }, { - "x": 0.05801419182161454, - "y": 0.006383165640993591 + "x": 0.05801, + "y": 0.00638 }, { - "x": 80.0633700876166, - "y": 56.34323841717704 + "x": 80.06337, + "y": 56.34324 }, { "endCol": 2, @@ -1633,8 +1633,8 @@ "yScale": 1 }, { - "x": 0.16787187771295464, - "y": 1.8624139983194965 + "x": 0.16787, + "y": 1.86241 }, [ { @@ -1654,36 +1654,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 59.31631481645557, - "y": 32.202029606818364 + "x": 59.31631, + "y": 32.20203 }, { "body": null, "index": 1, "isInternal": false, - "x": 104.52436482364239, - "y": 35.3257929888301 + "x": 104.52436, + "y": 35.32579 }, { "body": null, "index": 2, "isInternal": false, - "x": 101.14656119133464, - "y": 84.21039045968061 + "x": 101.14656, + "y": 84.21039 }, { "body": null, "index": 3, "isInternal": false, - "x": 55.938511184147806, - "y": 81.0866270776689 + "x": 55.93851, + "y": 81.08663 }, { - "angle": 0.04185054699428338, - "anglePrev": 0.033253364058514236, - "angularSpeed": 0.00902763701597345, - "angularVelocity": 0.008727273043112757, - "area": 1140.197701571206, + "angle": 0.04185, + "anglePrev": 0.03325, + "angularSpeed": 0.00903, + "angularVelocity": 0.00873, + "area": 1140.1977, "axes": { "#": 167 }, @@ -1704,13 +1704,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1732,7 +1732,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.5018674977003648, + "speed": 2.50187, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1753,12 +1753,12 @@ } ], { - "x": -0.04183833141313979, - "y": 0.9991243936690586 + "x": -0.04184, + "y": 0.99912 }, { - "x": -0.9991243936690586, - "y": -0.04183833141313979 + "x": -0.99912, + "y": -0.04184 }, { "max": { @@ -1769,12 +1769,12 @@ } }, { - "x": 143.8443143702336, - "y": 68.5576021586481 + "x": 143.84431, + "y": 68.5576 }, { - "x": 103.11385727664315, - "y": 35.39056577804156 + "x": 103.11386, + "y": 35.39057 }, { "category": 1, @@ -1791,16 +1791,16 @@ "y": 0 }, { - "x": 123.31523627794039, - "y": 50.73392729660836 + "x": 123.31524, + "y": 50.73393 }, { - "x": 0.052447100650278904, - "y": 0.02617153414764535 + "x": 0.05245, + "y": 0.02617 }, { - "x": 122.92238161526164, - "y": 48.33173004139495 + "x": 122.92238, + "y": 48.33173 }, { "endCol": 2, @@ -1823,8 +1823,8 @@ "yScale": 1 }, { - "x": 0.39218829039111824, - "y": 2.407765368357296 + "x": 0.39219, + "y": 2.40777 }, [ { @@ -1844,36 +1844,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 104.33014965351963, - "y": 35.39056577804156 + "x": 104.33015, + "y": 35.39057 }, { "body": null, "index": 1, "isInternal": false, - "x": 143.51661527923758, - "y": 37.03149892525231 + "x": 143.51662, + "y": 37.0315 }, { "body": null, "index": 2, "isInternal": false, - "x": 142.3003229023611, - "y": 66.07728881517517 + "x": 142.30032, + "y": 66.07729 }, { "body": null, "index": 3, "isInternal": false, - "x": 103.11385727664315, - "y": 64.43635566796442 + "x": 103.11386, + "y": 64.43636 }, { - "angle": 0.03280565133427562, - "anglePrev": 0.01940431883749797, - "angularSpeed": 0.011965226105519299, - "angularVelocity": 0.013625552631728634, - "area": 752.4076041785743, + "angle": 0.03281, + "anglePrev": 0.0194, + "angularSpeed": 0.01197, + "angularVelocity": 0.01363, + "area": 752.4076, "axes": { "#": 189 }, @@ -1894,13 +1894,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1922,7 +1922,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.818300919673157, + "speed": 2.8183, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1943,12 +1943,12 @@ } ], { - "x": -0.03279976735174861, - "y": 0.9994619428781024 + "x": -0.0328, + "y": 0.99946 }, { - "x": -0.9994619428781024, - "y": -0.03279976735174861 + "x": -0.99946, + "y": -0.0328 }, { "max": { @@ -1959,12 +1959,12 @@ } }, { - "x": 168.45232049592968, - "y": 70.78947755316544 + "x": 168.45232, + "y": 70.78948 }, { - "x": 142.32628117200844, - "y": 36.93972431142416 + "x": 142.32628, + "y": 36.93972 }, { "category": 1, @@ -1981,16 +1981,16 @@ "y": 0 }, { - "x": 155.25425588182608, - "y": 52.46193636820317 + "x": 155.25426, + "y": 52.46194 }, { "x": 0, "y": 0 }, { - "x": 154.95123611558697, - "y": 49.735048143530584 + "x": 154.95124, + "y": 49.73505 }, { "endCol": 3, @@ -2013,8 +2013,8 @@ "yScale": 1 }, { - "x": 0.3040295861113975, - "y": 2.7184503117999697 + "x": 0.30403, + "y": 2.71845 }, [ { @@ -2034,36 +2034,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 143.3183011932387, - "y": 36.93972431142416 + "x": 143.3183, + "y": 36.93972 }, { "body": null, "index": 1, "isInternal": false, - "x": 168.18223059164373, - "y": 37.75569444968629 + "x": 168.18223, + "y": 37.75569 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.19021057041346, - "y": 67.9841484249822 + "x": 167.19021, + "y": 67.98415 }, { "body": null, "index": 3, "isInternal": false, - "x": 142.32628117200844, - "y": 67.16817828672005 + "x": 142.32628, + "y": 67.16818 }, { - "angle": 0.014263491998978941, - "anglePrev": 0.010214849139354512, - "angularSpeed": 0.004596865390569766, - "angularVelocity": 0.00438512108424886, - "area": 2027.2541820000001, + "angle": 0.01426, + "anglePrev": 0.01021, + "angularSpeed": 0.0046, + "angularVelocity": 0.00439, + "area": 2027.25418, "axes": { "#": 211 }, @@ -2084,13 +2084,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -2112,7 +2112,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9118860967597024, + "speed": 2.91189, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2136,16 +2136,16 @@ } ], { - "x": -0.48760566337162187, - "y": -0.8730639822188984 + "x": -0.48761, + "y": -0.87306 }, { - "x": 0.5123097771744258, - "y": -0.8588007290469023 + "x": 0.51231, + "y": -0.8588 }, { - "x": 0.999898278122601, - "y": 0.0142630083593043 + "x": 0.9999, + "y": 0.01426 }, { "max": { @@ -2156,12 +2156,12 @@ } }, { - "x": 216.1827478094875, - "y": 94.59868401268875 + "x": 216.18275, + "y": 94.59868 }, { - "x": 167.18290889750304, - "y": 35.833135482272645 + "x": 167.18291, + "y": 35.83314 }, { "category": 1, @@ -2178,16 +2178,16 @@ "y": 0 }, { - "x": 191.57065958132125, - "y": 63.76429398334937 + "x": 191.57066, + "y": 63.76429 }, { "x": 0, "y": 0 }, { - "x": 191.28178909713134, - "y": 60.850998328406696 + "x": 191.28179, + "y": 60.851 }, { "endCol": 4, @@ -2210,8 +2210,8 @@ "yScale": 1 }, { - "x": 0.29463754603040115, - "y": 2.898495140313578 + "x": 0.29464, + "y": 2.8985 }, [ { @@ -2237,49 +2237,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.55998738963066, - "y": 78.07490966910768 + "x": 215.55999, + "y": 78.07491 }, { "body": null, "index": 1, "isInternal": false, - "x": 191.17223670581242, - "y": 91.69545248442608 + "x": 191.17224, + "y": 91.69545 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.18290889750304, - "y": 77.3848367986678 + "x": 167.18291, + "y": 77.38484 }, { "body": null, "index": 3, "isInternal": false, - "x": 167.58133177301184, - "y": 49.453678297591075 + "x": 167.58133, + "y": 49.45368 }, { "body": null, "index": 4, "isInternal": false, - "x": 191.96908245683008, - "y": 35.833135482272645 + "x": 191.96908, + "y": 35.83314 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.95841026513946, - "y": 50.143751168030924 + "x": 215.95841, + "y": 50.14375 }, { - "angle": -0.003945049221952362, - "anglePrev": -0.0026682771680283423, - "angularSpeed": 0.0008240257332086331, - "angularVelocity": -0.0012562861648907175, + "angle": -0.00395, + "anglePrev": -0.00267, + "angularSpeed": 0.00082, + "angularVelocity": -0.00126, "area": 4842.27229, "axes": { "#": 236 @@ -2301,13 +2301,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2329,7 +2329,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.995501922552666, + "speed": 2.9955, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2359,24 +2359,24 @@ } ], { - "x": 0.31276955396675266, - "y": 0.9498290404654083 + "x": 0.31277, + "y": 0.94983 }, { - "x": -0.8066937133009743, - "y": 0.5909697563502601 + "x": -0.80669, + "y": 0.59097 }, { - "x": -0.8113313647914389, - "y": -0.5845865346598919 + "x": -0.81133, + "y": -0.58459 }, { - "x": 0.3052656516165043, - "y": -0.9522672324212103 + "x": 0.30527, + "y": -0.95227 }, { - "x": 0.9999922183034106, - "y": -0.0039450389888883615 + "x": 0.99999, + "y": -0.00395 }, { "max": { @@ -2387,12 +2387,12 @@ } }, { - "x": 291.6583865175033, - "y": 131.59912282595795 + "x": 291.65839, + "y": 131.59912 }, { - "x": 209.75600014088567, - "y": 42.76858512186926 + "x": 209.756, + "y": 42.76859 }, { "category": 1, @@ -2409,16 +2409,16 @@ "y": 0 }, { - "x": 254.88403485065413, - "y": 85.63323604041955 + "x": 254.88403, + "y": 85.63324 }, { "x": 0, "y": 0 }, { - "x": 254.63828504847461, - "y": 82.68635115074385 + "x": 254.63829, + "y": 82.68635 }, { "endCol": 6, @@ -2441,8 +2441,8 @@ "yScale": 1 }, { - "x": 0.2437249149174079, - "y": 2.947237546968296 + "x": 0.24372, + "y": 2.94724 }, [ { @@ -2465,50 +2465,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 291.49801096295886, - "y": 112.01499777198356 + "x": 291.49801, + "y": 112.015 }, { "body": null, "index": 1, "isInternal": false, - "x": 241.10807855764395, - "y": 128.60791714103402 + "x": 241.10808, + "y": 128.60792 }, { "body": null, "index": 2, "isInternal": false, - "x": 209.75600014088567, - "y": 85.81126928224216 + "x": 209.756, + "y": 85.81127 }, { "body": null, "index": 3, "isInternal": false, - "x": 240.7694364108378, - "y": 42.76858512186926 + "x": 240.76944, + "y": 42.76859 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.28871875452035, - "y": 58.963410606551015 + "x": 291.28872, + "y": 58.96341 }, { - "angle": -0.0003528163697920424, - "anglePrev": -0.00022804792135504854, - "angularSpeed": 0.0001247684484369939, - "angularVelocity": -0.0001247684484369939, - "area": 3079.0178339999993, + "angle": -0.00035, + "anglePrev": -0.00023, + "angularSpeed": 0.00012, + "angularVelocity": -0.00012, + "area": 3079.01783, "axes": { "#": 262 }, "bounds": { "#": 276 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 279 }, @@ -2523,13 +2523,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2551,7 +2551,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9303315130230945, + "speed": 2.93033, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2605,56 +2605,56 @@ } ], { - "x": -0.971028118297543, - "y": -0.23896525579157432 + "x": -0.97103, + "y": -0.23897 }, { - "x": -0.8855821844723922, - "y": -0.46448271716513384 + "x": -0.88558, + "y": -0.46448 }, { - "x": -0.7487697261741857, - "y": -0.6628302174501661 + "x": -0.74877, + "y": -0.66283 }, { - "x": -0.5683683545866954, - "y": -0.8227742178170219 + "x": -0.56837, + "y": -0.82277 }, { - "x": -0.3549046033263034, - "y": -0.9349025203398476 + "x": -0.3549, + "y": -0.9349 }, { - "x": -0.12086273506990822, - "y": -0.9926692295379269 + "x": -0.12086, + "y": -0.99267 }, { - "x": 0.12016224513025908, - "y": -0.9927542670999986 + "x": 0.12016, + "y": -0.99275 }, { - "x": 0.35424481719776385, - "y": -0.9351527198744185 + "x": 0.35424, + "y": -0.93515 }, { - "x": 0.567787636709211, - "y": -0.823175072266021 + "x": 0.56779, + "y": -0.82318 }, { - "x": 0.7483018250979903, - "y": -0.6633584088221212 + "x": 0.7483, + "y": -0.66336 }, { - "x": 0.885254209813936, - "y": -0.4651074972591857 + "x": 0.88525, + "y": -0.46511 }, { - "x": 0.9708592548574596, - "y": -0.23965038547354403 + "x": 0.97086, + "y": -0.23965 }, { - "x": 0.9999999377603049, - "y": -0.0003528163624723146 + "x": 1, + "y": -0.00035 }, { "max": { @@ -2665,12 +2665,12 @@ } }, { - "x": 353.39690439896094, - "y": 106.7717258057096 + "x": 353.3969, + "y": 106.77173 }, { - "x": 290.82416814690777, - "y": 40.92546596848775 + "x": 290.82417, + "y": 40.92547 }, { "category": 1, @@ -2687,16 +2687,16 @@ "y": 0 }, { - "x": 322.0555040828086, - "y": 72.3844640104892 + "x": 322.0555, + "y": 72.38446 }, { - "x": -0.033094734660577094, - "y": 0.15033754430226576 + "x": -0.03309, + "y": 0.15034 }, { - "x": 321.94543970255717, - "y": 69.45620025727023 + "x": 321.94544, + "y": 69.4562 }, { "endCol": 7, @@ -2719,8 +2719,8 @@ "yScale": 1 }, { - "x": 0.11006438025144348, - "y": 2.928263753218976 + "x": 0.11006, + "y": 2.92826 }, [ { @@ -2806,190 +2806,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.2868400187095, - "y": 76.16544531947626 + "x": 353.28684, + "y": 76.16545 }, { "body": null, "index": 1, "isInternal": false, - "x": 351.4744382713677, - "y": 83.53008522284104 + "x": 351.47444, + "y": 83.53009 }, { "body": null, "index": 2, "isInternal": false, - "x": 347.9518076526367, - "y": 90.24632848257919 + "x": 347.95181, + "y": 90.24633 }, { "body": null, "index": 3, "isInternal": false, - "x": 342.9248109041298, - "y": 95.92510244273133 + "x": 342.92481, + "y": 95.9251 }, { "body": null, "index": 4, "isInternal": false, - "x": 336.68533122545733, - "y": 100.23530410152088 + "x": 336.68533, + "y": 100.2353 }, { "body": null, "index": 5, "isInternal": false, - "x": 329.59528038999764, - "y": 102.92680575498466 + "x": 329.59528, + "y": 102.92681 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.0666033327556, - "y": 103.84346205249062 + "x": 322.0666, + "y": 103.84346 }, { "body": null, "index": 7, "isInternal": false, - "x": 314.53728132720306, - "y": 102.93211846377075 + "x": 314.53728, + "y": 102.93212 }, { "body": null, "index": 8, "isInternal": false, - "x": 307.44533304534605, - "y": 100.24562045195957 + "x": 307.44533, + "y": 100.24562 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.2028135008944, - "y": 95.9398226470064 + "x": 301.20281, + "y": 95.93982 }, { "body": null, "index": 10, "isInternal": false, - "x": 296.1718108754081, - "y": 90.26459731382799 + "x": 296.17181, + "y": 90.2646 }, { "body": null, "index": 11, "isInternal": false, - "x": 292.64444193292894, - "y": 83.55084140944527 + "x": 292.64444, + "y": 83.55084 }, { "body": null, "index": 12, "isInternal": false, - "x": 290.82684390620085, - "y": 76.18748222947629 + "x": 290.82684, + "y": 76.18748 }, { "body": null, "index": 13, "isInternal": false, - "x": 290.82416814690777, - "y": 68.60348270150212 + "x": 290.82417, + "y": 68.60348 }, { "body": null, "index": 14, "isInternal": false, - "x": 292.63656989424953, - "y": 61.23884279813735 + "x": 292.63657, + "y": 61.23884 }, { "body": null, "index": 15, "isInternal": false, - "x": 296.15920051298053, - "y": 54.52259953839919 + "x": 296.1592, + "y": 54.5226 }, { "body": null, "index": 16, "isInternal": false, - "x": 301.18619726148745, - "y": 48.843825578247056 + "x": 301.1862, + "y": 48.84383 }, { "body": null, "index": 17, "isInternal": false, - "x": 307.4256769401599, - "y": 44.53362391945747 + "x": 307.42568, + "y": 44.53362 }, { "body": null, "index": 18, "isInternal": false, - "x": 314.5157277756196, - "y": 41.842122265993716 + "x": 314.51573, + "y": 41.84212 }, { "body": null, "index": 19, "isInternal": false, - "x": 322.04440483286163, - "y": 40.92546596848775 + "x": 322.0444, + "y": 40.92547 }, { "body": null, "index": 20, "isInternal": false, - "x": 329.5737268384142, - "y": 41.83680955720761 + "x": 329.57373, + "y": 41.83681 }, { "body": null, "index": 21, "isInternal": false, - "x": 336.6656751202712, - "y": 44.52330756901878 + "x": 336.66568, + "y": 44.52331 }, { "body": null, "index": 22, "isInternal": false, - "x": 342.9081946647228, - "y": 48.82910537397199 + "x": 342.90819, + "y": 48.82911 }, { "body": null, "index": 23, "isInternal": false, - "x": 347.93919729020917, - "y": 54.50433070715038 + "x": 347.9392, + "y": 54.50433 }, { "body": null, "index": 24, "isInternal": false, - "x": 351.4665662326883, - "y": 61.21808661153311 + "x": 351.46657, + "y": 61.21809 }, { "body": null, "index": 25, "isInternal": false, - "x": 353.2841642594164, - "y": 68.5814457915021 + "x": 353.28416, + "y": 68.58145 }, { - "angle": 0.002014009142289523, - "anglePrev": 0.0016318587895234023, - "angularSpeed": 0.0003802943192530492, - "angularVelocity": 0.000350153020848678, - "area": 1329.4167625219097, + "angle": 0.00201, + "anglePrev": 0.00163, + "angularSpeed": 0.00038, + "angularVelocity": 0.00035, + "area": 1329.41676, "axes": { "#": 317 }, @@ -3010,13 +3010,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -3038,7 +3038,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.891019398798657, + "speed": 2.89102, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3059,12 +3059,12 @@ } ], { - "x": -0.0020140077807414667, - "y": 0.9999979718842729 + "x": -0.00201, + "y": 1 }, { - "x": -0.9999979718842729, - "y": -0.0020140077807414667 + "x": -1, + "y": -0.00201 }, { "max": { @@ -3075,12 +3075,12 @@ } }, { - "x": 401.4978365164123, - "y": 67.10808984780826 + "x": 401.49784, + "y": 67.10809 }, { - "x": 352.66459960159926, - "y": 36.86425763943551 + "x": 352.6646, + "y": 36.86426 }, { "category": 1, @@ -3097,16 +3097,16 @@ "y": 0 }, { - "x": 377.081615873226, - "y": 50.54066409896317 + "x": 377.08162, + "y": 50.54066 }, { - "x": 0.0026686088037196913, - "y": 0.0000047603913042024375 + "x": 0.00267, + "y": 0 }, { - "x": 377.0824479848197, - "y": 47.64954637237944 + "x": 377.08245, + "y": 47.64955 }, { "endCol": 8, @@ -3129,8 +3129,8 @@ "yScale": 1 }, { - "x": -0.0013420808641626536, - "y": 2.8900207943853573 + "x": -0.00134, + "y": 2.89002 }, [ { @@ -3150,36 +3150,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 352.72028626617504, - "y": 36.86425763943551 + "x": 352.72029, + "y": 36.86426 }, { "body": null, "index": 1, "isInternal": false, - "x": 401.4978365164123, - "y": 36.96249620440417 + "x": 401.49784, + "y": 36.9625 }, { "body": null, "index": 2, "isInternal": false, - "x": 401.44294548027693, - "y": 64.21707055849082 + "x": 401.44295, + "y": 64.21707 }, { "body": null, "index": 3, "isInternal": false, - "x": 352.6653952300397, - "y": 64.11883199352215 + "x": 352.6654, + "y": 64.11883 }, { - "angle": 0.0002397042586295687, - "anglePrev": 0.00012683434866586022, - "angularSpeed": 0.00007627594922206422, - "angularVelocity": 0.00010697599906221697, - "area": 2858.632357296012, + "angle": 0.00024, + "anglePrev": 0.00013, + "angularSpeed": 0.00008, + "angularVelocity": 0.00011, + "area": 2858.63236, "axes": { "#": 339 }, @@ -3200,13 +3200,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -3228,7 +3228,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.904423596344377, + "speed": 2.90442, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3249,12 +3249,12 @@ } ], { - "x": -0.00023970425633407553, - "y": 0.9999999712709342 + "x": -0.00024, + "y": 1 }, { - "x": -0.9999999712709342, - "y": -0.00023970425633407553 + "x": -1, + "y": -0.00024 }, { "max": { @@ -3265,12 +3265,12 @@ } }, { - "x": 510.3041740576686, - "y": 66.89341329274617 + "x": 510.30417, + "y": 66.89341 }, { - "x": 401.4401160311097, - "y": 37.7018824681489 + "x": 401.44012, + "y": 37.70188 }, { "category": 1, @@ -3287,16 +3287,16 @@ "y": 0 }, { - "x": 455.8705595742545, - "y": 50.845436947753896 + "x": 455.87056, + "y": 50.84544 }, { - "x": 0.0025353259596692253, - "y": -0.0000015795019659883575 + "x": 0.00254, + "y": 0 }, { - "x": 455.86737232947934, - "y": 47.93829866820848 + "x": 455.86737, + "y": 47.9383 }, { "endCol": 10, @@ -3319,8 +3319,8 @@ "yScale": 1 }, { - "x": 0.0034244077299945275, - "y": 2.9076484116189363 + "x": 0.00342, + "y": 2.90765 }, [ { @@ -3340,36 +3340,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 401.44641090861325, - "y": 37.7018824681489 + "x": 401.44641, + "y": 37.70188 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.3010031173993, - "y": 37.72797537797247 + "x": 510.301, + "y": 37.72798 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.2947082398958, - "y": 63.988991427358876 + "x": 510.29471, + "y": 63.98899 }, { "body": null, "index": 3, "isInternal": false, - "x": 401.4401160311097, - "y": 63.96289851753531 + "x": 401.44012, + "y": 63.9629 }, { - "angle": 0.0013197634636950648, - "anglePrev": 0.0006989811101104764, - "angularSpeed": 0.0003819785234120505, - "angularVelocity": -0.0005144863693162366, - "area": 926.8394636035856, + "angle": 0.00132, + "anglePrev": 0.0007, + "angularSpeed": 0.00038, + "angularVelocity": -0.00051, + "area": 926.83946, "axes": { "#": 361 }, @@ -3390,13 +3390,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3418,7 +3418,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9159836565704227, + "speed": 2.91598, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3439,12 +3439,12 @@ } ], { - "x": -0.0013197630805731313, - "y": 0.9999991291123261 + "x": -0.00132, + "y": 1 }, { - "x": -0.9999991291123261, - "y": -0.0013197630805731313 + "x": -1, + "y": -0.00132 }, { "max": { @@ -3455,12 +3455,12 @@ } }, { - "x": 549.0456050999973, - "y": 64.64694069255583 + "x": 549.04561, + "y": 64.64694 }, { - "x": 510.24532538166636, - "y": 37.76499197131285 + "x": 510.24533, + "y": 37.76499 }, { "category": 1, @@ -3477,16 +3477,16 @@ "y": 0 }, { - "x": 529.6389830029966, - "y": 49.747988913748756 + "x": 529.63898, + "y": 49.74799 }, { "x": 0, "y": 0 }, { - "x": 529.6260164851954, - "y": 46.84055345303018 + "x": 529.62602, + "y": 46.84055 }, { "endCol": 11, @@ -3509,8 +3509,8 @@ "yScale": 1 }, { - "x": 0.012956809550018988, - "y": 2.94793641393742 + "x": 0.01296, + "y": 2.94794 }, [ { @@ -3530,36 +3530,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 510.2768873392268, - "y": 37.76499197131285 + "x": 510.27689, + "y": 37.76499 }, { "body": null, "index": 1, "isInternal": false, - "x": 549.0326406243266, - "y": 37.816140428202885 + "x": 549.03264, + "y": 37.81614 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.0010786667663, - "y": 61.73098585618466 + "x": 549.00108, + "y": 61.73099 }, { "body": null, "index": 3, "isInternal": false, - "x": 510.24532538166636, - "y": 61.67983739929464 + "x": 510.24533, + "y": 61.67984 }, { - "angle": -0.0006428344899314241, - "anglePrev": -0.00047952066097481594, - "angularSpeed": 0.00016331382895660814, - "angularVelocity": -0.00016331382895660814, - "area": 1290.4501361223834, + "angle": -0.00064, + "anglePrev": -0.00048, + "angularSpeed": 0.00016, + "angularVelocity": -0.00016, + "area": 1290.45014, "axes": { "#": 383 }, @@ -3580,13 +3580,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3608,7 +3608,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8792453183859594, + "speed": 2.87925, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3629,12 +3629,12 @@ } ], { - "x": 0.0006428344456576799, - "y": 0.9999997933819162 + "x": 0.00064, + "y": 1 }, { - "x": -0.9999997933819162, - "y": 0.0006428344456576799 + "x": -1, + "y": 0.00064 }, { "max": { @@ -3645,12 +3645,12 @@ } }, { - "x": 584.8744863650361, - "y": 76.5886212369089 + "x": 584.87449, + "y": 76.58862 }, { - "x": 549.0753194704051, - "y": 37.61039146488355 + "x": 549.07532, + "y": 37.61039 }, { "category": 1, @@ -3667,16 +3667,16 @@ "y": 0 }, { - "x": 566.9720706887512, - "y": 55.65988647768632 + "x": 566.97207, + "y": 55.65989 }, { - "x": 0.0037272632879857847, + "x": 0.00373, "y": 0 }, { - "x": 566.9664062308123, - "y": 52.78064673126649 + "x": 566.96641, + "y": 52.78065 }, { "endCol": 12, @@ -3699,8 +3699,8 @@ "yScale": 1 }, { - "x": 0.005664457938929672, - "y": 2.879239746419829 + "x": 0.00566, + "y": 2.87924 }, [ { @@ -3720,36 +3720,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 549.0753194704051, - "y": 37.63338585802394 + "x": 549.07532, + "y": 37.63339 }, { "body": null, "index": 1, "isInternal": false, - "x": 584.8456310096516, - "y": 37.61039146488355 + "x": 584.84563, + "y": 37.61039 }, { "body": null, "index": 2, "isInternal": false, - "x": 584.8688219070972, - "y": 73.68638709734869 + "x": 584.86882, + "y": 73.68639 }, { "body": null, "index": 3, "isInternal": false, - "x": 549.0985103678507, - "y": 73.70938149048908 + "x": 549.09851, + "y": 73.70938 }, { - "angle": -0.0019137993573372758, - "anglePrev": -0.0013956296441222996, - "angularSpeed": 0.000939523336371687, - "angularVelocity": -0.0005368046761495494, - "area": 1148.2925932011974, + "angle": -0.00191, + "anglePrev": -0.0014, + "angularSpeed": 0.00094, + "angularVelocity": -0.00054, + "area": 1148.29259, "axes": { "#": 405 }, @@ -3770,13 +3770,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3798,7 +3798,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.899966703635072, + "speed": 2.89997, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3819,12 +3819,12 @@ } ], { - "x": 0.0019137981890816435, - "y": 0.9999981686865689 + "x": 0.00191, + "y": 1 }, { - "x": -0.9999981686865689, - "y": 0.0019137981890816435 + "x": -1, + "y": 0.00191 }, { "max": { @@ -3835,12 +3835,12 @@ } }, { - "x": 615.5454431094741, - "y": 78.3159119685451 + "x": 615.54544, + "y": 78.31591 }, { - "x": 584.9180102696346, - "y": 37.776262505111596 + "x": 584.91801, + "y": 37.77626 }, { "category": 1, @@ -3857,16 +3857,16 @@ "y": 0 }, { - "x": 600.2320533228566, - "y": 56.59610392180066 + "x": 600.23205, + "y": 56.5961 }, { "x": 0, "y": 0 }, { - "x": 600.2326651983644, - "y": 53.6745096086202 + "x": 600.23267, + "y": 53.67451 }, { "endCol": 12, @@ -3889,8 +3889,8 @@ "yScale": 1 }, { - "x": -0.0006137060879609635, - "y": 2.9206377981506932 + "x": -0.00061, + "y": 2.92064 }, [ { @@ -3910,36 +3910,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 584.918663536239, - "y": 37.834738441420086 + "x": 584.91866, + "y": 37.83474 }, { "body": null, "index": 1, "isInternal": false, - "x": 615.4735201320574, - "y": 37.776262505111596 + "x": 615.47352, + "y": 37.77626 }, { "body": null, "index": 2, "isInternal": false, - "x": 615.5454431094741, - "y": 75.35746940218122 + "x": 615.54544, + "y": 75.35747 }, { "body": null, "index": 3, "isInternal": false, - "x": 584.9905865136558, - "y": 75.4159453384897 + "x": 584.99059, + "y": 75.41595 }, { - "angle": -0.00024045459191298946, - "anglePrev": -0.00014491586335403154, - "angularSpeed": 0.00037326069438534576, - "angularVelocity": -0.00010782137727696065, - "area": 1926.7878890000002, + "angle": -0.00024, + "anglePrev": -0.00014, + "angularSpeed": 0.00037, + "angularVelocity": -0.00011, + "area": 1926.78789, "axes": { "#": 427 }, @@ -3960,13 +3960,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3988,7 +3988,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.92459745768852, + "speed": 2.9246, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4024,32 +4024,32 @@ } ], { - "x": 0.6236800766810191, - "y": 0.7816797054747924 + "x": 0.62368, + "y": 0.78168 }, { - "x": -0.22228377723957624, - "y": 0.9749820113089811 + "x": -0.22228, + "y": 0.97498 }, { - "x": -0.9008772011044033, - "y": 0.4340740357707385 + "x": -0.90088, + "y": 0.43407 }, { - "x": -0.9010858471120454, - "y": -0.43364074547298653 + "x": -0.90109, + "y": -0.43364 }, { - "x": -0.22275262932061765, - "y": -0.9748750002593929 + "x": -0.22275, + "y": -0.97488 }, { - "x": 0.6233040876259557, - "y": -0.7819795485489217 + "x": 0.6233, + "y": -0.78198 }, { - "x": 0.9999999710907947, - "y": -0.00024045458959587242 + "x": 1, + "y": -0.00024 }, { "max": { @@ -4060,12 +4060,12 @@ } }, { - "x": 665.9304813681198, - "y": 92.41013524153173 + "x": 665.93048, + "y": 92.41014 }, { - "x": 615.4802457155978, - "y": 37.745542693716665 + "x": 615.48025, + "y": 37.74554 }, { "category": 1, @@ -4082,16 +4082,16 @@ "y": 0 }, { - "x": 642.0154360805955, - "y": 63.616961784228494 + "x": 642.01544, + "y": 63.61696 }, { - "x": 0.006512532585316241, - "y": 0.000025501997583152724 + "x": 0.00651, + "y": 0.00003 }, { - "x": 642.0109919910219, - "y": 60.70525702051552 + "x": 642.01099, + "y": 60.70526 }, { "endCol": 13, @@ -4114,8 +4114,8 @@ "yScale": 1 }, { - "x": 0.0044451805299559055, - "y": 2.9122748104369762 + "x": 0.00445, + "y": 2.91227 }, [ { @@ -4144,57 +4144,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 665.9260126110206, - "y": 75.12421270902735 + "x": 665.92601, + "y": 75.12421 }, { "body": null, "index": 1, "isInternal": false, - "x": 647.9264653380159, - "y": 89.48554119795438 + "x": 647.92647, + "y": 89.48554 }, { "body": null, "index": 2, "isInternal": false, - "x": 625.4752338977106, - "y": 84.36693955162157 + "x": 625.47523, + "y": 84.36694 }, { "body": null, "index": 3, "isInternal": false, - "x": 615.4802457155978, - "y": 63.62334229272202 + "x": 615.48025, + "y": 63.62334 }, { "body": null, "index": 4, "isInternal": false, - "x": 625.465256955879, - "y": 42.87494075112231 + "x": 625.46526, + "y": 42.87494 }, { "body": null, "index": 5, "isInternal": false, - "x": 647.9140242175501, - "y": 37.745542693716665 + "x": 647.91402, + "y": 37.74554 }, { "body": null, "index": 6, "isInternal": false, - "x": 665.9204759036407, - "y": 52.09821337469071 + "x": 665.92048, + "y": 52.09821 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1690.1965440000001, + "area": 1690.19654, "axes": { "#": 457 }, @@ -4215,13 +4215,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1904.509571566363, - "inverseInertia": 0.0005250695585517853, - "inverseMass": 0.5916471688158889, + "inertia": 1904.50957, + "inverseInertia": 0.00053, + "inverseMass": 0.59165, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.6901965440000002, + "mass": 1.6902, "motion": 0, "parent": null, "position": { @@ -4243,7 +4243,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4280,12 +4280,12 @@ } }, { - "x": 710.4548049732069, - "y": 81.75502548206143 + "x": 710.4548, + "y": 81.75503 }, { - "x": 669.3428049732069, - "y": 37.735754767025774 + "x": 669.3428, + "y": 37.73575 }, { "category": 1, @@ -4302,16 +4302,16 @@ "y": 0 }, { - "x": 689.8988049732069, - "y": 58.29175476702577 + "x": 689.8988, + "y": 58.29175 }, { - "x": 0.12553557275601596, + "x": 0.12554, "y": 0 }, { - "x": 689.8988049732069, - "y": 55.38448405199012 + "x": 689.8988, + "y": 55.38448 }, { "endCol": 14, @@ -4335,7 +4335,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -4355,36 +4355,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 710.4548049732069, - "y": 78.84775476702578 + "x": 710.4548, + "y": 78.84775 }, { "body": null, "index": 1, "isInternal": false, - "x": 669.3428049732069, - "y": 78.84775476702578 + "x": 669.3428, + "y": 78.84775 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.3428049732069, - "y": 37.735754767025774 + "x": 669.3428, + "y": 37.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 710.4548049732069, - "y": 37.735754767025774 + "x": 710.4548, + "y": 37.73575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 479 }, @@ -4405,13 +4405,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4433,7 +4433,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4463,20 +4463,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4491,12 +4491,12 @@ } }, { - "x": 749.6424419788154, - "y": 79.38902548206144 + "x": 749.64244, + "y": 79.38903 }, { - "x": 712.7924419788154, - "y": 37.73575476702578 + "x": 712.79244, + "y": 37.73575 }, { "category": 1, @@ -4513,16 +4513,16 @@ "y": 0 }, { - "x": 733.1624846989898, - "y": 57.10875476702578 + "x": 733.16248, + "y": 57.10875 }, { - "x": 0.14650463713809028, + "x": 0.1465, "y": 0 }, { - "x": 733.1624846989898, - "y": 54.20148405199013 + "x": 733.16248, + "y": 54.20148 }, { "endCol": 15, @@ -4546,7 +4546,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -4569,43 +4569,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 749.6424419788154, - "y": 69.08175476702579 + "x": 749.64244, + "y": 69.08175 }, { "body": null, "index": 1, "isInternal": false, - "x": 726.8674419788155, - "y": 76.48175476702579 + "x": 726.86744, + "y": 76.48175 }, { "body": null, "index": 2, "isInternal": false, - "x": 712.7924419788154, - "y": 57.10875476702578 + "x": 712.79244, + "y": 57.10875 }, { "body": null, "index": 3, "isInternal": false, - "x": 726.8674419788155, - "y": 37.73575476702578 + "x": 726.86744, + "y": 37.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 749.6424419788154, - "y": 45.13575476702578 + "x": 749.64244, + "y": 45.13575 }, { - "angle": 0.10704805812139541, - "anglePrev": 0.08410097949895996, - "angularSpeed": 0.019942005136677127, - "angularVelocity": 0.02310625514102102, - "area": 1201.454244, + "angle": 0.10705, + "anglePrev": 0.0841, + "angularSpeed": 0.01994, + "angularVelocity": 0.02311, + "area": 1201.45424, "axes": { "#": 505 }, @@ -4626,13 +4626,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4654,7 +4654,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7188528765666578, + "speed": 0.71885, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4675,12 +4675,12 @@ } ], { - "x": 0.1068437261658324, - "y": -0.994275826005541 + "x": 0.10684, + "y": -0.99428 }, { - "x": 0.994275826005541, - "y": 0.1068437261658324 + "x": 0.99428, + "y": 0.10684 }, { "max": { @@ -4691,12 +4691,12 @@ } }, { - "x": 57.882519774582875, - "y": 146.93787432532588 + "x": 57.88252, + "y": 146.93787 }, { - "x": 19.393281217998034, - "y": 108.12828332848268 + "x": 19.39328, + "y": 108.12828 }, { "category": 1, @@ -4713,16 +4713,16 @@ "y": 0 }, { - "x": 38.47678417668011, - "y": 127.21178628716477 + "x": 38.47678, + "y": 127.21179 }, { "x": 0, "y": 0 }, { - "x": 38.13147402332279, - "y": 126.76937473471457 + "x": 38.13147, + "y": 126.76937 }, { "endCol": 1, @@ -4745,8 +4745,8 @@ "yScale": 1 }, { - "x": 0.3557216607425602, - "y": 0.441976197965289 + "x": 0.35572, + "y": 0.44198 }, [ { @@ -4766,36 +4766,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 53.8568698990021, - "y": 146.29528924584687 + "x": 53.85687, + "y": 146.29529 }, { "body": null, "index": 1, "isInternal": false, - "x": 19.393281217998034, - "y": 142.59187200948682 + "x": 19.39328, + "y": 142.59187 }, { "body": null, "index": 2, "isInternal": false, - "x": 23.096698454358123, - "y": 108.12828332848268 + "x": 23.0967, + "y": 108.12828 }, { "body": null, "index": 3, "isInternal": false, - "x": 57.56028713536218, - "y": 111.83170056484279 + "x": 57.56029, + "y": 111.8317 }, { - "angle": 0.10515738955647991, - "anglePrev": 0.08400391611034211, - "angularSpeed": 0.019199422570264996, - "angularVelocity": 0.0211052011992085, - "area": 1990.733346252218, + "angle": 0.10516, + "anglePrev": 0.084, + "angularSpeed": 0.0192, + "angularVelocity": 0.02111, + "area": 1990.73335, "axes": { "#": 527 }, @@ -4816,13 +4816,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4844,7 +4844,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9560347715708564, + "speed": 1.95603, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4865,12 +4865,12 @@ } ], { - "x": -0.10496369027349588, - "y": 0.9944760548772252 + "x": -0.10496, + "y": 0.99448 }, { - "x": -0.9944760548772252, - "y": -0.10496369027349588 + "x": -0.99448, + "y": -0.10496 }, { "max": { @@ -4881,12 +4881,12 @@ } }, { - "x": 151.5286357406573, - "y": 136.4219992291863 + "x": 151.52864, + "y": 136.422 }, { - "x": 54.51448886018513, - "y": 103.70266420717273 + "x": 54.51449, + "y": 103.70266 }, { "category": 1, @@ -4903,16 +4903,16 @@ "y": 0 }, { - "x": 102.76625992043056, - "y": 119.11822436111161 + "x": 102.76626, + "y": 119.11822 }, { "x": 0, "y": 0 }, { - "x": 102.24664776099429, - "y": 117.28227136986969 + "x": 102.24665, + "y": 117.28227 }, { "endCol": 3, @@ -4935,8 +4935,8 @@ "yScale": 1 }, { - "x": 0.5307644447692894, - "y": 1.83545341120913 + "x": 0.53076, + "y": 1.83545 }, [ { @@ -4956,35 +4956,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.718100929276126, - "y": 103.70266420717273 + "x": 56.7181, + "y": 103.70266 }, { "body": null, "index": 1, "isInternal": false, - "x": 151.01803098067606, - "y": 113.65571295297633 + "x": 151.01803, + "y": 113.65571 }, { "body": null, "index": 2, "isInternal": false, - "x": 148.81441891158502, - "y": 134.53378451505054 + "x": 148.81442, + "y": 134.53378 }, { "body": null, "index": 3, "isInternal": false, - "x": 54.51448886018513, - "y": 124.5807357692469 + "x": 54.51449, + "y": 124.58074 }, { - "angle": 0.0071780137078470835, - "anglePrev": 0.005626174685839978, - "angularSpeed": 0.001407988828982598, - "angularVelocity": 0.0015536982787516295, + "angle": 0.00718, + "anglePrev": 0.00563, + "angularSpeed": 0.00141, + "angularVelocity": 0.00155, "area": 7321.24308, "axes": { "#": 549 @@ -4992,7 +4992,7 @@ "bounds": { "#": 563 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 566 }, @@ -5007,13 +5007,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -5035,7 +5035,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8626605626756256, + "speed": 2.86266, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5089,56 +5089,56 @@ } ], { - "x": -0.9691940213701834, - "y": -0.24629849561110215 + "x": -0.96919, + "y": -0.2463 }, { - "x": -0.8820875829864625, - "y": -0.47108544441650935 + "x": -0.88209, + "y": -0.47109 }, { - "x": -0.7437473153258325, - "y": -0.6684608671759453 + "x": -0.74375, + "y": -0.66846 }, { - "x": -0.5621446618087984, - "y": -0.8270389224213524 + "x": -0.56214, + "y": -0.82704 }, { - "x": -0.3478768681894593, - "y": -0.9375402309120888 + "x": -0.34788, + "y": -0.93754 }, { - "x": -0.11335838201743377, - "y": -0.9935541642137028 + "x": -0.11336, + "y": -0.99355 }, { - "x": 0.12760970177574218, - "y": -0.9918244622979946 + "x": 0.12761, + "y": -0.99182 }, { - "x": 0.3612999118168699, - "y": -0.932449662835009 + "x": 0.3613, + "y": -0.93245 }, { - "x": 0.5739593206744592, - "y": -0.8188838124000947 + "x": 0.57396, + "y": -0.81888 }, { - "x": 0.7532667880543396, - "y": -0.6577150948657772 + "x": 0.75327, + "y": -0.65772 }, { - "x": 0.8887593706531006, - "y": -0.4583740623947916 + "x": 0.88876, + "y": -0.45837 }, { - "x": 0.9726298963132817, - "y": -0.23235981751932652 + "x": 0.97263, + "y": -0.23236 }, { - "x": 0.9999742381702178, - "y": 0.007177952068152113 + "x": 0.99997, + "y": 0.00718 }, { "max": { @@ -5149,12 +5149,12 @@ } }, { - "x": 241.7203315313517, - "y": 199.72678677736639 + "x": 241.72033, + "y": 199.72679 }, { - "x": 145.03330408729613, - "y": 99.86151291810718 + "x": 145.0333, + "y": 99.86151 }, { "category": 1, @@ -5171,16 +5171,16 @@ "y": 0 }, { - "x": 193.23103296060185, - "y": 148.3702632117444 + "x": 193.23103, + "y": 148.37026 }, { - "x": -0.769256476772404, - "y": 0.2147790963441877 + "x": -0.76926, + "y": 0.21478 }, { - "x": 193.00620606564442, - "y": 145.48962386915522 + "x": 193.00621, + "y": 145.48962 }, { "endCol": 5, @@ -5203,8 +5203,8 @@ "yScale": 1 }, { - "x": 0.22481153198049242, - "y": 2.8797653511964825 + "x": 0.22481, + "y": 2.87977 }, [ { @@ -5290,190 +5290,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 241.34482286242255, - "y": 154.56278122007166 + "x": 241.34482, + "y": 154.56278 }, { "body": null, "index": 1, "isInternal": false, - "x": 238.46438932405022, - "y": 165.89739760665577 + "x": 238.46439, + "y": 165.8974 }, { "body": null, "index": 2, "isInternal": false, - "x": 232.95520164592938, - "y": 176.21311867341794 + "x": 232.9552, + "y": 176.21312 }, { "body": null, "index": 3, "isInternal": false, - "x": 225.13756563651472, - "y": 184.9112281360715 + "x": 225.13757, + "y": 184.91123 }, { "body": null, "index": 4, "isInternal": false, - "x": 215.46613043277577, - "y": 191.4849763895323 + "x": 215.46613, + "y": 191.48498 }, { "body": null, "index": 5, "isInternal": false, - "x": 204.5016451711579, - "y": 195.55337864935902 + "x": 204.50165, + "y": 195.55338 }, { "body": null, "index": 6, "isInternal": false, - "x": 192.8828305057758, - "y": 196.87901350538164 + "x": 192.88283, + "y": 196.87901 }, { "body": null, "index": 7, "isInternal": false, - "x": 181.28424330932177, - "y": 195.3867209582407 + "x": 181.28424, + "y": 195.38672 }, { "body": null, "index": 8, "isInternal": false, - "x": 170.379291982157, - "y": 191.16133688668353 + "x": 170.37929, + "y": 191.16134 }, { "body": null, "index": 9, "isInternal": false, - "x": 160.80322304959563, - "y": 184.44942741181484 + "x": 160.80322, + "y": 184.44943 }, { "body": null, "index": 10, "isInternal": false, - "x": 153.11125862499017, - "y": 175.63998791258422 + "x": 153.11126, + "y": 175.63999 }, { "body": null, "index": 11, "isInternal": false, - "x": 147.75072633420075, - "y": 165.2462425068412 + "x": 147.75073, + "y": 165.24624 }, { "body": null, "index": 12, "isInternal": false, - "x": 145.03330408729613, - "y": 153.87144394457965 + "x": 145.0333, + "y": 153.87144 }, { "body": null, "index": 13, "isInternal": false, - "x": 145.11724305878116, - "y": 142.17774520341715 + "x": 145.11724, + "y": 142.17775 }, { "body": null, "index": 14, "isInternal": false, - "x": 147.99767659715343, - "y": 130.8431288168331 + "x": 147.99768, + "y": 130.84313 }, { "body": null, "index": 15, "isInternal": false, - "x": 153.50686427527427, - "y": 120.52740775007089 + "x": 153.50686, + "y": 120.52741 }, { "body": null, "index": 16, "isInternal": false, - "x": 161.32450028468892, - "y": 111.82929828741734 + "x": 161.3245, + "y": 111.8293 }, { "body": null, "index": 17, "isInternal": false, - "x": 170.99593548842793, - "y": 105.2555500339565 + "x": 170.99594, + "y": 105.25555 }, { "body": null, "index": 18, "isInternal": false, - "x": 181.96042075004576, - "y": 101.18714777412984 + "x": 181.96042, + "y": 101.18715 }, { "body": null, "index": 19, "isInternal": false, - "x": 193.57923541542786, - "y": 99.86151291810718 + "x": 193.57924, + "y": 99.86151 }, { "body": null, "index": 20, "isInternal": false, - "x": 205.17782261188188, - "y": 101.35380546524816 + "x": 205.17782, + "y": 101.35381 }, { "body": null, "index": 21, "isInternal": false, - "x": 216.0827739390467, - "y": 105.57918953680533 + "x": 216.08277, + "y": 105.57919 }, { "body": null, "index": 22, "isInternal": false, - "x": 225.65884287160802, - "y": 112.29109901167398 + "x": 225.65884, + "y": 112.2911 }, { "body": null, "index": 23, "isInternal": false, - "x": 233.35080729621353, - "y": 121.1005385109046 + "x": 233.35081, + "y": 121.10054 }, { "body": null, "index": 24, "isInternal": false, - "x": 238.7113395870029, - "y": 131.49428391664762 + "x": 238.71134, + "y": 131.49428 }, { "body": null, "index": 25, "isInternal": false, - "x": 241.42876183390752, - "y": 142.86908247890915 + "x": 241.42876, + "y": 142.86908 }, { - "angle": -0.0013006844829861548, - "anglePrev": -0.0013050878892966365, - "angularSpeed": 0.0005633073955357284, - "angularVelocity": -0.00011807080712258194, - "area": 2034.763772651268, + "angle": -0.0013, + "anglePrev": -0.00131, + "angularSpeed": 0.00056, + "angularVelocity": -0.00012, + "area": 2034.76377, "axes": { "#": 604 }, @@ -5494,13 +5494,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5522,7 +5522,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.962259843787818, + "speed": 2.96226, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5543,12 +5543,12 @@ } ], { - "x": 0.0013006841162408265, - "y": 0.9999991541100572 + "x": 0.0013, + "y": 1 }, { - "x": -0.9999991541100572, - "y": 0.0013006841162408265 + "x": -1, + "y": 0.0013 }, { "max": { @@ -5559,12 +5559,12 @@ } }, { - "x": 325.0044976461376, - "y": 155.59280339586732 + "x": 325.0045, + "y": 155.5928 }, { - "x": 240.73083315110492, - "y": 128.36455520617 + "x": 240.73083, + "y": 128.36456 }, { "category": 1, @@ -5581,16 +5581,16 @@ "y": 0 }, { - "x": 282.86284836796307, - "y": 140.4975572122815 + "x": 282.86285, + "y": 140.49756 }, { - "x": 3.6909697845538783, - "y": 1.777890136996868 + "x": 3.69097, + "y": 1.77789 }, { - "x": 282.6260365425739, - "y": 137.54144899964842 + "x": 282.62604, + "y": 137.54145 }, { "endCol": 6, @@ -5613,8 +5613,8 @@ "yScale": 1 }, { - "x": 0.236867102611086, - "y": 2.95925290368848 + "x": 0.23687, + "y": 2.95925 }, [ { @@ -5634,36 +5634,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 240.73083315110492, - "y": 128.47411531739817 + "x": 240.73083, + "y": 128.47412 }, { "body": null, "index": 1, "isInternal": false, - "x": 324.96344365535646, - "y": 128.36455520617 + "x": 324.96344, + "y": 128.36456 }, { "body": null, "index": 2, "isInternal": false, - "x": 324.99486358482113, - "y": 152.52099910716484 + "x": 324.99486, + "y": 152.521 }, { "body": null, "index": 3, "isInternal": false, - "x": 240.7622530805696, - "y": 152.63055921839302 + "x": 240.76225, + "y": 152.63056 }, { - "angle": 0.00010535303592766992, - "anglePrev": 0.00011209467683956417, - "angularSpeed": 0.000006741640911894256, - "angularVelocity": -0.000006741640911894256, - "area": 1030.4556949326513, + "angle": 0.00011, + "anglePrev": 0.00011, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 1030.45569, "axes": { "#": 626 }, @@ -5684,13 +5684,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5712,7 +5712,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8796990416810497, + "speed": 2.8797, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5733,12 +5733,12 @@ } ], { - "x": -0.00010535303573277975, - "y": 0.9999999944503689 + "x": -0.00011, + "y": 1 }, { - "x": -0.9999999944503689, - "y": -0.00010535303573277975 + "x": -1, + "y": -0.00011 }, { "max": { @@ -5749,12 +5749,12 @@ } }, { - "x": 380.2248433029487, - "y": 130.5577505060009 + "x": 380.22484, + "y": 130.55775 }, { - "x": 330.83607130156446, - "y": 109.68744985966585 + "x": 330.83607, + "y": 109.68745 }, { "category": 1, @@ -5771,16 +5771,16 @@ "y": 0 }, { - "x": 355.5304573022566, - "y": 120.12260018283338 + "x": 355.53046, + "y": 120.1226 }, { "x": 0, "y": 0 }, { - "x": 355.4851221887682, - "y": 117.24325801870218 + "x": 355.48512, + "y": 117.24326 }, { "endCol": 7, @@ -5803,8 +5803,8 @@ "yScale": 1 }, { - "x": 0.04533511348841102, - "y": 2.8793421641312014 + "x": 0.04534, + "y": 2.87934 }, [ { @@ -5824,43 +5824,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 330.83826950295185, - "y": 109.68744985966585 + "x": 330.83827, + "y": 109.68745 }, { "body": null, "index": 1, "isInternal": false, - "x": 380.2248433029487, - "y": 109.692652885169 + "x": 380.22484, + "y": 109.69265 }, { "body": null, "index": 2, "isInternal": false, - "x": 380.22264510156134, - "y": 130.5577505060009 + "x": 380.22265, + "y": 130.55775 }, { "body": null, "index": 3, "isInternal": false, - "x": 330.83607130156446, - "y": 130.55254748049776 + "x": 330.83607, + "y": 130.55255 }, { - "angle": -0.00023787570373766324, - "anglePrev": 0.000030901141015768, - "angularSpeed": 0.00026877684475343124, - "angularVelocity": -0.00026877684475343124, - "area": 2157.165332, + "angle": -0.00024, + "anglePrev": 0.00003, + "angularSpeed": 0.00027, + "angularVelocity": -0.00027, + "area": 2157.16533, "axes": { "#": 648 }, "bounds": { "#": 662 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 665 }, @@ -5875,13 +5875,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5903,7 +5903,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9249457468256908, + "speed": 2.92495, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5957,56 +5957,56 @@ } ], { - "x": -0.9710002924601351, - "y": -0.23907829688688217 + "x": -0.971, + "y": -0.23908 }, { - "x": -0.8855748647834559, - "y": -0.46449667260784916 + "x": -0.88557, + "y": -0.4645 }, { - "x": -0.7486610142542968, - "y": -0.6629530041682649 + "x": -0.74866, + "y": -0.66295 }, { - "x": -0.5682747036632771, - "y": -0.8228389035384839 + "x": -0.56827, + "y": -0.82284 }, { - "x": -0.354848144668094, - "y": -0.9349239510385918 + "x": -0.35485, + "y": -0.93492 }, { - "x": -0.12074156431117224, - "y": -0.9926839752145145 + "x": -0.12074, + "y": -0.99268 }, { - "x": 0.12026927986631487, - "y": -0.9927413058397632 + "x": 0.12027, + "y": -0.99274 }, { - "x": 0.35440331314122636, - "y": -0.9350926647314276 + "x": 0.3544, + "y": -0.93509 }, { - "x": 0.5678831726000837, - "y": -0.8231091678979547 + "x": 0.56788, + "y": -0.82311 }, { - "x": 0.7483455287156301, - "y": -0.6633091056598903 + "x": 0.74835, + "y": -0.66331 }, { - "x": 0.885353779625791, - "y": -0.4649179335133529 + "x": 0.88535, + "y": -0.46492 }, { - "x": 0.9708864407403744, - "y": -0.2395402245688338 + "x": 0.97089, + "y": -0.23954 }, { - "x": 0.9999999717075749, - "y": -0.00023787570149430307 + "x": 1, + "y": -0.00024 }, { "max": { @@ -6017,12 +6017,12 @@ } }, { - "x": 364.5224454428324, - "y": 202.3785692771521 + "x": 364.52245, + "y": 202.37857 }, { - "x": 312.2188074667759, - "y": 146.78970873439243 + "x": 312.21881, + "y": 146.78971 }, { "category": 1, @@ -6039,16 +6039,16 @@ "y": 0 }, { - "x": 338.35956174468845, - "y": 173.12170798939633 + "x": 338.35956, + "y": 173.12171 }, { - "x": -3.7969206810292513, - "y": 5.782884893154236 + "x": -3.79692, + "y": 5.78288 }, { - "x": 338.33743232445704, - "y": 170.19684595664438 + "x": 338.33743, + "y": 170.19685 }, { "endCol": 7, @@ -6071,8 +6071,8 @@ "yScale": 1 }, { - "x": 0.022129420231426025, - "y": 2.9248620327519586 + "x": 0.02213, + "y": 2.92486 }, [ { @@ -6158,190 +6158,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.500316022601, - "y": 176.28948982875912 + "x": 364.50032, + "y": 176.28949 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.9827820935255, - "y": 182.45285098758347 + "x": 362.98278, + "y": 182.45285 }, { "body": null, "index": 2, "isInternal": false, - "x": 360.0341192763062, - "y": 188.07455256187114 + "x": 360.03412, + "y": 188.07455 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.8252497807509, - "y": 192.82755388412886 + "x": 355.82525, + "y": 192.82755 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.60210770833015, - "y": 196.43479644477097 + "x": 350.60211, + "y": 196.4348 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6676433344497, - "y": 198.6872081733731 + "x": 344.66764, + "y": 198.68721 }, { "body": null, "index": 6, "isInternal": false, - "x": 338.36582548766023, - "y": 199.45370724440016 + "x": 338.36583, + "y": 199.45371 }, { "body": null, "index": 7, "isInternal": false, - "x": 332.0636436910474, - "y": 198.6902063587147 + "x": 332.06364, + "y": 198.69021 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.12810840075883, - "y": 196.44061821468932 + "x": 326.12811, + "y": 196.44062 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.90325076877895, - "y": 192.83586097937643 + "x": 320.90325, + "y": 192.83586 }, { "body": null, "index": 10, "isInternal": false, - "x": 316.6921205025566, - "y": 188.08486257052533 + "x": 316.69212, + "y": 188.08486 }, { "body": null, "index": 11, "isInternal": false, - "x": 313.74078348670105, - "y": 182.46456446287647 + "x": 313.74078, + "y": 182.46456 }, { "body": null, "index": 12, "isInternal": false, - "x": 312.22031750172897, - "y": 176.30192597043325 + "x": 312.22032, + "y": 176.30193 }, { "body": null, "index": 13, "isInternal": false, - "x": 312.2188074667759, - "y": 169.95392615003354 + "x": 312.21881, + "y": 169.95393 }, { "body": null, "index": 14, "isInternal": false, - "x": 313.7363413958514, - "y": 163.79056499120918 + "x": 313.73634, + "y": 163.79056 }, { "body": null, "index": 15, "isInternal": false, - "x": 316.68500421307067, - "y": 158.16886341692148 + "x": 316.685, + "y": 158.16886 }, { "body": null, "index": 16, "isInternal": false, - "x": 320.893873708626, - "y": 153.4158620946638 + "x": 320.89387, + "y": 153.41586 }, { "body": null, "index": 17, "isInternal": false, - "x": 326.11701578104675, - "y": 149.80861953402166 + "x": 326.11702, + "y": 149.80862 }, { "body": null, "index": 18, "isInternal": false, - "x": 332.0514801549272, - "y": 147.55620780541952 + "x": 332.05148, + "y": 147.55621 }, { "body": null, "index": 19, "isInternal": false, - "x": 338.35329800171667, - "y": 146.78970873439243 + "x": 338.3533, + "y": 146.78971 }, { "body": null, "index": 20, "isInternal": false, - "x": 344.6554797983295, - "y": 147.55320962007792 + "x": 344.65548, + "y": 147.55321 }, { "body": null, "index": 21, "isInternal": false, - "x": 350.59101508861806, - "y": 149.8027977641033 + "x": 350.59102, + "y": 149.8028 }, { "body": null, "index": 22, "isInternal": false, - "x": 355.81587272059795, - "y": 153.4075549994162 + "x": 355.81587, + "y": 153.40755 }, { "body": null, "index": 23, "isInternal": false, - "x": 360.0270029868203, - "y": 158.1585534082673 + "x": 360.027, + "y": 158.15855 }, { "body": null, "index": 24, "isInternal": false, - "x": 362.97834000267585, - "y": 163.7788515159162 + "x": 362.97834, + "y": 163.77885 }, { "body": null, "index": 25, "isInternal": false, - "x": 364.4988059876479, - "y": 169.9414900083594 + "x": 364.49881, + "y": 169.94149 }, { - "angle": -0.0008495201470976394, - "anglePrev": -0.0005513761301964651, - "angularSpeed": 0.00029814401690117433, - "angularVelocity": -0.00029814401690117433, - "area": 2399.6281959999997, + "angle": -0.00085, + "anglePrev": -0.00055, + "angularSpeed": 0.0003, + "angularVelocity": -0.0003, + "area": 2399.6282, "axes": { "#": 703 }, @@ -6362,13 +6362,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6390,7 +6390,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.913939010411184, + "speed": 2.91394, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6411,12 +6411,12 @@ } ], { - "x": -0.0008495200449167256, - "y": -0.9999996391577818 + "x": -0.00085, + "y": -1 }, { - "x": 0.9999996391577818, - "y": -0.0008495200449167256 + "x": 1, + "y": -0.00085 }, { "max": { @@ -6427,12 +6427,12 @@ } }, { - "x": 438.87718938822377, - "y": 175.51944056110096 + "x": 438.87719, + "y": 175.51944 }, { - "x": 389.8397282053289, - "y": 123.57792133430448 + "x": 389.83973, + "y": 123.57792 }, { "category": 1, @@ -6449,16 +6449,16 @@ "y": 0 }, { - "x": 414.36339093187206, - "y": 148.09171979065616 + "x": 414.36339, + "y": 148.09172 }, { - "x": -2.159210721364285, - "y": 0.0006923272542776652 + "x": -2.15921, + "y": 0.00069 }, { - "x": 414.3732552020635, - "y": 145.17779747656306 + "x": 414.37326, + "y": 145.1778 }, { "endCol": 9, @@ -6481,8 +6481,8 @@ "yScale": 1 }, { - "x": -0.009864270191451965, - "y": 2.9139223140931025 + "x": -0.00986, + "y": 2.91392 }, [ { @@ -6502,36 +6502,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 438.87718938822377, - "y": 172.56390365808755 + "x": 438.87719, + "y": 172.5639 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.89120706444066, - "y": 172.60551824700786 + "x": 389.89121, + "y": 172.60552 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.84959247552035, - "y": 123.61953592322476 + "x": 389.84959, + "y": 123.61954 }, { "body": null, "index": 3, "isInternal": false, - "x": 438.83557479930346, - "y": 123.57792133430448 + "x": 438.83557, + "y": 123.57792 }, { - "angle": -0.0013661209211364965, - "anglePrev": -0.0011167764456289206, - "angularSpeed": 0.00024934447550757584, - "angularVelocity": -0.00024934447550757584, - "area": 1489.7843794189994, + "angle": -0.00137, + "anglePrev": -0.00112, + "angularSpeed": 0.00025, + "angularVelocity": -0.00025, + "area": 1489.78438, "axes": { "#": 725 }, @@ -6552,13 +6552,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6580,7 +6580,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.88605352875307, + "speed": 2.88605, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6601,12 +6601,12 @@ } ], { - "x": 0.0013661204962077266, - "y": 0.9999990668569595 + "x": 0.00137, + "y": 1 }, { - "x": -0.9999990668569595, - "y": 0.0013661204962077266 + "x": -1, + "y": 0.00137 }, { "max": { @@ -6617,12 +6617,12 @@ } }, { - "x": 479.37860978025986, - "y": 168.46972010825976 + "x": 479.37861, + "y": 168.46972 }, { - "x": 443.8940346876776, - "y": 123.46643238737802 + "x": 443.89403, + "y": 123.46643 }, { "category": 1, @@ -6639,16 +6639,16 @@ "y": 0 }, { - "x": 461.6434220677373, - "y": 144.52506694948866 + "x": 461.64342, + "y": 144.52507 }, { - "x": -1.4398076097813277, - "y": -0.00015487256791276994 + "x": -1.43981, + "y": -0.00015 }, { - "x": 461.65762173527435, - "y": 141.6390483528282 + "x": 461.65762, + "y": 141.63905 }, { "endCol": 10, @@ -6671,8 +6671,8 @@ "yScale": 1 }, { - "x": -0.014199667537094455, - "y": 2.886018596660438 + "x": -0.0142, + "y": 2.88602 }, [ { @@ -6692,36 +6692,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 443.9082343552147, - "y": 123.51481072677635 + "x": 443.90823, + "y": 123.51481 }, { "body": null, "index": 1, "isInternal": false, - "x": 479.32113855267704, - "y": 123.46643238737802 + "x": 479.32114, + "y": 123.46643 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.37860978025986, - "y": 165.535323172201 + "x": 479.37861, + "y": 165.53532 }, { "body": null, "index": 3, "isInternal": false, - "x": 443.9657055827975, - "y": 165.58370151159932 + "x": 443.96571, + "y": 165.5837 }, { - "angle": -0.0025950897565930947, - "anglePrev": -0.002086388563185361, - "angularSpeed": 0.0005087011934077335, - "angularVelocity": -0.0005087011934077335, - "area": 1765.3675322216507, + "angle": -0.0026, + "anglePrev": -0.00209, + "angularSpeed": 0.00051, + "angularVelocity": -0.00051, + "area": 1765.36753, "axes": { "#": 747 }, @@ -6742,13 +6742,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6770,7 +6770,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.899070271726653, + "speed": 2.89907, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6791,12 +6791,12 @@ } ], { - "x": 0.0025950868438260406, - "y": 0.9999966327564674 + "x": 0.0026, + "y": 1 }, { - "x": -0.9999966327564674, - "y": 0.0025950868438260406 + "x": -1, + "y": 0.0026 }, { "max": { @@ -6807,12 +6807,12 @@ } }, { - "x": 525.9769450177212, - "y": 168.72844079384265 + "x": 525.97695, + "y": 168.72844 }, { - "x": 484.0804029855508, - "y": 123.45103363270455 + "x": 484.0804, + "y": 123.45103 }, { "category": 1, @@ -6829,16 +6829,16 @@ "y": 0 }, { - "x": 505.0402234804643, - "y": 144.64024808960244 + "x": 505.04022, + "y": 144.64025 }, { - "x": -0.9596682566979133, - "y": -0.0002931151503039826 + "x": -0.95967, + "y": -0.00029 }, { - "x": 505.06332243812113, - "y": 141.74126984226004 + "x": 505.06332, + "y": 141.74127 }, { "endCol": 10, @@ -6861,8 +6861,8 @@ "yScale": 1 }, { - "x": -0.023098957656817447, - "y": 2.898978247342401 + "x": -0.0231, + "y": 2.89898 }, [ { @@ -6882,36 +6882,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 484.1035019432076, - "y": 123.55941455130713 + "x": 484.1035, + "y": 123.55941 }, { "body": null, "index": 1, "isInternal": false, - "x": 525.8672502029117, - "y": 123.45103363270455 + "x": 525.86725, + "y": 123.45103 }, { "body": null, "index": 2, "isInternal": false, - "x": 525.9769450177212, - "y": 165.7210816278977 + "x": 525.97695, + "y": 165.72108 }, { "body": null, "index": 3, "isInternal": false, - "x": 484.2131967580169, - "y": 165.82946254650025 + "x": 484.2132, + "y": 165.82946 }, { - "angle": -0.004080940539773731, - "anglePrev": -0.0034392690628233516, - "angularSpeed": 0.0006416714769503791, - "angularVelocity": -0.0006416714769503791, - "area": 1919.5457599999997, + "angle": -0.00408, + "anglePrev": -0.00344, + "angularSpeed": 0.00064, + "angularVelocity": -0.00064, + "area": 1919.54576, "axes": { "#": 769 }, @@ -6932,13 +6932,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6960,7 +6960,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8854768025288835, + "speed": 2.88548, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6984,16 +6984,16 @@ } ], { - "x": -0.5035073053729247, - "y": -0.8639909683764615 + "x": -0.50351, + "y": -0.86399 }, { - "x": 0.4964388213245725, - "y": -0.8680717117161857 + "x": 0.49644, + "y": -0.86807 }, { - "x": 0.999991672973712, - "y": -0.004080929212401057 + "x": 0.99999, + "y": -0.00408 }, { "max": { @@ -7004,12 +7004,12 @@ } }, { - "x": 577.4002015858842, - "y": 180.66275383682068 + "x": 577.4002, + "y": 180.66275 }, { - "x": 530.1723292617183, - "y": 123.415971275758 + "x": 530.17233, + "y": 123.41597 }, { "category": 1, @@ -7026,16 +7026,16 @@ "y": 0 }, { - "x": 553.8049336951572, - "y": 150.5967449388565 + "x": 553.80493, + "y": 150.59674 }, { - "x": -0.6411776574151048, + "x": -0.64118, "y": 0 }, { - "x": 553.8422702378689, - "y": 147.71150970399077 + "x": 553.84227, + "y": 147.71151 }, { "endCol": 12, @@ -7058,8 +7058,8 @@ "yScale": 1 }, { - "x": -0.03733654271178238, - "y": 2.885235234865719 + "x": -0.03734, + "y": 2.88524 }, [ { @@ -7085,50 +7085,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 577.4002015858842, - "y": 164.09156669258232 + "x": 577.4002, + "y": 164.09157 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.9158574320794, - "y": 177.77751860195497 + "x": 553.91586, + "y": 177.77752 }, { "body": null, "index": 2, "isInternal": false, - "x": 530.3205936222819, - "y": 164.28369683990215 + "x": 530.32059, + "y": 164.2837 }, { "body": null, "index": 3, "isInternal": false, - "x": 530.2096658044301, - "y": 137.10192318513066 + "x": 530.20967, + "y": 137.10192 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.6940099582349, - "y": 123.415971275758 + "x": 553.69401, + "y": 123.41597 }, { "body": null, "index": 5, "isInternal": false, - "x": 577.2892737680324, - "y": 136.90979303781083 + "x": 577.28927, + "y": 136.90979 }, { - "angle": 0.005008128159418267, - "anglePrev": 0.004048259329408996, - "angularSpeed": 0.0009598688300092714, - "angularVelocity": 0.0009598688300092714, - "area": 6052.328004, + "angle": 0.00501, + "anglePrev": 0.00405, + "angularSpeed": 0.00096, + "angularVelocity": 0.00096, + "area": 6052.328, "axes": { "#": 794 }, @@ -7149,13 +7149,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -7177,7 +7177,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7852865788064722, + "speed": 2.78529, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7201,16 +7201,16 @@ } ], { - "x": -0.4956462353480794, - "y": -0.8685245013154643 + "x": -0.49565, + "y": -0.86852 }, { - "x": 0.5043205911687654, - "y": -0.8635164974238692 + "x": 0.50432, + "y": -0.86352 }, { - "x": 0.9999874593523808, - "y": 0.005008107224343937 + "x": 0.99999, + "y": 0.00501 }, { "max": { @@ -7221,12 +7221,12 @@ } }, { - "x": 670.7501021070988, - "y": 210.9161252054058 + "x": 670.7501, + "y": 210.91613 }, { - "x": 586.9114291768682, - "y": 114.38733575412046 + "x": 586.91143, + "y": 114.38734 }, { "category": 1, @@ -7243,16 +7243,16 @@ "y": 0 }, { - "x": 628.8307656419835, - "y": 162.6517304797631 + "x": 628.83077, + "y": 162.65173 }, { "x": 0, "y": 0 }, { - "x": 628.9408926765071, - "y": 159.86862190079128 + "x": 628.94089, + "y": 159.86862 }, { "endCol": 13, @@ -7275,8 +7275,8 @@ "yScale": 1 }, { - "x": -0.11012703452369578, - "y": 2.7831085789718086 + "x": -0.11013, + "y": 2.78311 }, [ { @@ -7302,50 +7302,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 670.5083808038087, - "y": 186.99376171018446 + "x": 670.50838, + "y": 186.99376 }, { "body": null, "index": 1, "isInternal": false, - "x": 628.5890493468007, - "y": 210.9161252054058 + "x": 628.58905, + "y": 210.91613 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.9114291768682, - "y": 186.5750939624438 + "x": 586.91143, + "y": 186.57509 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.1531504801583, - "y": 138.3096992493418 + "x": 587.15315, + "y": 138.3097 }, { "body": null, "index": 4, "isInternal": false, - "x": 629.0724819371662, - "y": 114.38733575412046 + "x": 629.07248, + "y": 114.38734 }, { "body": null, "index": 5, "isInternal": false, - "x": 670.7501021070988, - "y": 138.72836699708245 + "x": 670.7501, + "y": 138.72837 }, { - "angle": -0.017660925529244538, - "anglePrev": -0.01558000692610701, - "angularSpeed": 0.0020809186031375284, - "angularVelocity": -0.0020809186031375284, - "area": 2220.023313496789, + "angle": -0.01766, + "anglePrev": -0.01558, + "angularSpeed": 0.00208, + "angularVelocity": -0.00208, + "area": 2220.02331, "axes": { "#": 819 }, @@ -7366,13 +7366,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7394,7 +7394,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8500143975633456, + "speed": 2.85001, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7415,12 +7415,12 @@ } ], { - "x": 0.01766000744538066, - "y": 0.999844049908299 + "x": 0.01766, + "y": 0.99984 }, { - "x": -0.999844049908299, - "y": 0.01766000744538066 + "x": -0.99984, + "y": 0.01766 }, { "max": { @@ -7431,12 +7431,12 @@ } }, { - "x": 719.3926414151871, - "y": 175.45461658352605 + "x": 719.39264, + "y": 175.45462 }, { - "x": 673.3532248487793, - "y": 122.64655533922108 + "x": 673.35322, + "y": 122.64656 }, { "category": 1, @@ -7453,16 +7453,16 @@ "y": 0 }, { - "x": 696.3863227630987, - "y": 147.6256416697052 + "x": 696.38632, + "y": 147.62564 }, { - "x": -0.12387817773643622, - "y": -0.0011028472199483706 + "x": -0.12388, + "y": -0.0011 }, { - "x": 696.4131020253301, - "y": 144.77575308636852 + "x": 696.4131, + "y": 144.77575 }, { "endCol": 14, @@ -7485,8 +7485,8 @@ "yScale": 1 }, { - "x": -0.026779262231355006, - "y": 2.8498885833366723 + "x": -0.02678, + "y": 2.84989 }, [ { @@ -7506,36 +7506,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 673.3800041110106, - "y": 123.44392874894983 + "x": 673.38, + "y": 123.44393 }, { "body": null, "index": 1, "isInternal": false, - "x": 718.5243259205082, - "y": 122.64655533922108 + "x": 718.52433, + "y": 122.64656 }, { "body": null, "index": 2, "isInternal": false, - "x": 719.3926414151871, - "y": 171.80735459046065 + "x": 719.39264, + "y": 171.80735 }, { "body": null, "index": 3, "isInternal": false, - "x": 674.2483196056895, - "y": 172.60472800018937 + "x": 674.24832, + "y": 172.60473 }, { - "angle": -0.034179723068709846, - "anglePrev": -0.030668757048791438, - "angularSpeed": 0.00351096601991841, - "angularVelocity": -0.00351096601991841, - "area": 2601.1074479999997, + "angle": -0.03418, + "anglePrev": -0.03067, + "angularSpeed": 0.00351, + "angularVelocity": -0.00351, + "area": 2601.10745, "axes": { "#": 841 }, @@ -7556,13 +7556,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7584,7 +7584,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.726177411206227, + "speed": 2.72618, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7608,16 +7608,16 @@ } ], { - "x": -0.5292898899918653, - "y": -0.8484410482481378 + "x": -0.52929, + "y": -0.84844 }, { - "x": 0.47009988297143224, - "y": -0.8826132222158498 + "x": 0.4701, + "y": -0.88261 }, { - "x": 0.9994159301305989, - "y": -0.03417306836076663 + "x": 0.99942, + "y": -0.03417 }, { "max": { @@ -7628,12 +7628,12 @@ } }, { - "x": 776.4061897177519, - "y": 184.97316085654597 + "x": 776.40619, + "y": 184.97316 }, { - "x": 720.5528948538026, - "y": 121.72812196602136 + "x": 720.55289, + "y": 121.72812 }, { "category": 1, @@ -7650,16 +7650,16 @@ "y": 0 }, { - "x": 748.4795422857773, - "y": 153.35064141128368 + "x": 748.47954, + "y": 153.35064 }, { "x": 0, "y": 0 }, { - "x": 748.4635428355894, - "y": 150.62451094944498 + "x": 748.46354, + "y": 150.62451 }, { "endCol": 16, @@ -7682,8 +7682,8 @@ "yScale": 1 }, { - "x": 0.015999450187907768, - "y": 2.7261304618386792 + "x": 0.016, + "y": 2.72613 }, [ { @@ -7709,50 +7709,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 776.4061897177519, - "y": 168.22599042265813 + "x": 776.40619, + "y": 168.22599 }, { "body": null, "index": 1, "isInternal": false, - "x": 749.5608123417803, - "y": 184.97316085654597 + "x": 749.56081, + "y": 184.97316 }, { "body": null, "index": 2, "isInternal": false, - "x": 721.634199082874, - "y": 170.09881126110156 + "x": 721.6342, + "y": 170.09881 }, { "body": null, "index": 3, "isInternal": false, - "x": 720.5528948538026, - "y": 138.47529239990916 + "x": 720.55289, + "y": 138.47529 }, { "body": null, "index": 4, "isInternal": false, - "x": 747.3982722297742, - "y": 121.72812196602136 + "x": 747.39827, + "y": 121.72812 }, { "body": null, "index": 5, "isInternal": false, - "x": 775.3248854886805, - "y": 136.60247156146576 + "x": 775.32489, + "y": 136.60247 }, { - "angle": 0.03133881447139186, - "anglePrev": 0.02825356554589312, - "angularSpeed": 0.003085248925498743, - "angularVelocity": 0.003085248925498743, - "area": 1413.3088360000002, + "angle": 0.03134, + "anglePrev": 0.02825, + "angularSpeed": 0.00309, + "angularVelocity": 0.00309, + "area": 1413.30884, "axes": { "#": 866 }, @@ -7773,13 +7773,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7801,7 +7801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6193177080654597, + "speed": 2.61932, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7822,12 +7822,12 @@ } ], { - "x": 0.031333684970459075, - "y": -0.9995089795425413 + "x": 0.03133, + "y": -0.99951 }, { - "x": 0.9995089795425413, - "y": 0.031333684970459075 + "x": 0.99951, + "y": 0.03133 }, { "max": { @@ -7838,12 +7838,12 @@ } }, { - "x": 889.3674148914052, - "y": 136.1800747303695 + "x": 889.36741, + "y": 136.18007 }, { - "x": 850.6139157617032, - "y": 97.42657560066777 + "x": 850.61392, + "y": 97.42658 }, { "category": 1, @@ -7860,16 +7860,16 @@ "y": 0 }, { - "x": 869.9906653265542, - "y": 116.80332516551864 + "x": 869.99067, + "y": 116.80333 }, { "x": 0, "y": 0 }, { - "x": 869.91527273965, - "y": 114.18509270570435 + "x": 869.91527, + "y": 114.18509 }, { "endCol": 18, @@ -7892,8 +7892,8 @@ "yScale": 1 }, { - "x": 0.07539258690411657, - "y": 2.618232459814292 + "x": 0.07539, + "y": 2.61823 }, [ { @@ -7913,36 +7913,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 888.1894563386256, - "y": 136.1800747303695 + "x": 888.18946, + "y": 136.18007 }, { "body": null, "index": 1, "isInternal": false, - "x": 850.6139157617032, - "y": 135.00211617759007 + "x": 850.61392, + "y": 135.00212 }, { "body": null, "index": 2, "isInternal": false, - "x": 851.7918743144828, - "y": 97.42657560066777 + "x": 851.79187, + "y": 97.42658 }, { "body": null, "index": 3, "isInternal": false, - "x": 889.3674148914052, - "y": 98.60453415344722 + "x": 889.36741, + "y": 98.60453 }, { - "angle": 0.011178114895911875, - "anglePrev": 0.010108145403217257, - "angularSpeed": 0.0010699694926946182, - "angularVelocity": 0.0010699694926946182, - "area": 5460.808751999999, + "angle": 0.01118, + "anglePrev": 0.01011, + "angularSpeed": 0.00107, + "angularVelocity": 0.00107, + "area": 5460.80875, "axes": { "#": 888 }, @@ -7963,13 +7963,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7991,7 +7991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7371306875102985, + "speed": 2.73713, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8015,16 +8015,16 @@ } ], { - "x": -0.4902865381289931, - "y": -0.8715613062369668 + "x": -0.49029, + "y": -0.87156 }, { - "x": 0.509647222169664, - "y": -0.8603834662141904 + "x": 0.50965, + "y": -0.86038 }, { - "x": 0.9999375255242078, - "y": 0.011177882112652845 + "x": 0.99994, + "y": 0.01118 }, { "max": { @@ -8035,12 +8035,12 @@ } }, { - "x": 926.1970364750063, - "y": 229.29263932229605 + "x": 926.19704, + "y": 229.29264 }, { - "x": 846.2815362648438, - "y": 137.60636773193033 + "x": 846.28154, + "y": 137.60637 }, { "category": 1, @@ -8057,16 +8057,16 @@ "y": 0 }, { - "x": 886.239286369925, - "y": 183.44950352711322 + "x": 886.23929, + "y": 183.4495 }, { "x": 0, "y": 0 }, { - "x": 886.1882546300752, - "y": 180.7128486051257 + "x": 886.18825, + "y": 180.71285 }, { "endCol": 19, @@ -8089,8 +8089,8 @@ "yScale": 1 }, { - "x": 0.05103173984978298, - "y": 2.736654921987517 + "x": 0.05103, + "y": 2.73665 }, [ { @@ -8116,50 +8116,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 925.6845752916697, - "y": 206.81487805610536 + "x": 925.68458, + "y": 206.81488 }, { "body": null, "index": 1, "isInternal": false, - "x": 885.7268251865884, - "y": 229.29263932229605 + "x": 885.72683, + "y": 229.29264 }, { "body": null, "index": 2, "isInternal": false, - "x": 846.2815362648438, - "y": 205.9272647933039 + "x": 846.28154, + "y": 205.92726 }, { "body": null, "index": 3, "isInternal": false, - "x": 846.7939974481803, - "y": 160.0841289981211 + "x": 846.794, + "y": 160.08413 }, { "body": null, "index": 4, "isInternal": false, - "x": 886.7517475532617, - "y": 137.60636773193033 + "x": 886.75175, + "y": 137.60637 }, { "body": null, "index": 5, "isInternal": false, - "x": 926.1970364750063, - "y": 160.97174226092255 + "x": 926.19704, + "y": 160.97174 }, { - "angle": 0.13538435885699066, - "anglePrev": 0.11973645409326267, - "angularSpeed": 0.015647904763727998, - "angularVelocity": 0.015647904763727998, - "area": 451.6137937679406, + "angle": 0.13538, + "anglePrev": 0.11974, + "angularSpeed": 0.01565, + "angularVelocity": 0.01565, + "area": 451.61379, "axes": { "#": 913 }, @@ -8180,13 +8180,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -8208,7 +8208,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.1403110405369112, + "speed": 2.14031, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8229,12 +8229,12 @@ } ], { - "x": -0.1349711627593934, - "y": 0.9908495270339372 + "x": -0.13497, + "y": 0.99085 }, { - "x": -0.9908495270339372, - "y": -0.1349711627593934 + "x": -0.99085, + "y": -0.13497 }, { "max": { @@ -8245,12 +8245,12 @@ } }, { - "x": 43.98142624130361, - "y": 239.87937396873528 + "x": 43.98143, + "y": 239.87937 }, { - "x": 20.8428342127796, - "y": 212.8357038388511 + "x": 20.84283, + "y": 212.8357 }, { "category": 1, @@ -8267,16 +8267,16 @@ "y": 0 }, { - "x": 32.34679957203009, - "y": 225.28937939179283 + "x": 32.3468, + "y": 225.28938 }, { - "x": 0.04884952581415927, - "y": -0.0008858393927444206 + "x": 0.04885, + "y": -0.00089 }, { - "x": 32.216138262007085, - "y": 223.15306036779214 + "x": 32.21614, + "y": 223.15306 }, { "endCol": 0, @@ -8299,8 +8299,8 @@ "yScale": 1 }, { - "x": 0.13066131002300913, - "y": 2.1363190240006915 + "x": 0.13066, + "y": 2.13632 }, [ { @@ -8320,36 +8320,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 23.864810080822124, - "y": 212.8357038388511 + "x": 23.86481, + "y": 212.8357 }, { "body": null, "index": 1, "isInternal": false, - "x": 43.8507649312806, - "y": 215.5581430099108 + "x": 43.85076, + "y": 215.55814 }, { "body": null, "index": 2, "isInternal": false, - "x": 40.82878906323807, - "y": 237.74305494473458 + "x": 40.82879, + "y": 237.74305 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.8428342127796, - "y": 235.02061577367488 + "x": 20.84283, + "y": 235.02062 }, { - "angle": 0.027878914121004517, - "anglePrev": 0.024125571991269974, - "angularSpeed": 0.0037533421297345423, - "angularVelocity": 0.0037533421297345423, - "area": 3021.679068443158, + "angle": 0.02788, + "anglePrev": 0.02413, + "angularSpeed": 0.00375, + "angularVelocity": 0.00375, + "area": 3021.67907, "axes": { "#": 935 }, @@ -8370,13 +8370,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -8398,7 +8398,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.701339199492796, + "speed": 2.70134, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8419,12 +8419,12 @@ } ], { - "x": -0.02787530285537599, - "y": 0.999611408243584 + "x": -0.02788, + "y": 0.99961 }, { - "x": -0.999611408243584, - "y": -0.02787530285537599 + "x": -0.99961, + "y": -0.02788 }, { "max": { @@ -8435,12 +8435,12 @@ } }, { - "x": 146.46146827798194, - "y": 252.9288518764543 + "x": 146.46147, + "y": 252.92885 }, { - "x": 43.6709649982984, - "y": 217.73291379987148 + "x": 43.67096, + "y": 217.73291 }, { "category": 1, @@ -8457,16 +8457,16 @@ "y": 0 }, { - "x": 94.98132986137443, - "y": 233.98288335640876 + "x": 94.98133, + "y": 233.98288 }, { - "x": 0.09215764938899375, - "y": 0.0033140585017071887 + "x": 0.09216, + "y": 0.00331 }, { - "x": 94.81155630784296, - "y": 231.2868843929005 + "x": 94.81156, + "y": 231.28688 }, { "endCol": 3, @@ -8489,8 +8489,8 @@ "yScale": 1 }, { - "x": 0.16977355353147672, - "y": 2.6959989635082713 + "x": 0.16977, + "y": 2.696 }, [ { @@ -8510,36 +8510,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 44.49810438611192, - "y": 217.73291379987148 + "x": 44.4981, + "y": 217.73291 }, { "body": null, "index": 1, "isInternal": false, - "x": 146.29169472445045, - "y": 220.57154402759474 + "x": 146.29169, + "y": 220.57154 }, { "body": null, "index": 2, "isInternal": false, - "x": 145.46455533663698, - "y": 250.23285291294604 + "x": 145.46456, + "y": 250.23285 }, { "body": null, "index": 3, "isInternal": false, - "x": 43.6709649982984, - "y": 247.3942226852228 + "x": 43.67096, + "y": 247.39422 }, { - "angle": 0.017727766920215052, - "anglePrev": 0.014517700617327451, - "angularSpeed": 0.0032100663028876023, - "angularVelocity": 0.0032100663028876023, - "area": 856.7396388354374, + "angle": 0.01773, + "anglePrev": 0.01452, + "angularSpeed": 0.00321, + "angularVelocity": 0.00321, + "area": 856.73964, "axes": { "#": 957 }, @@ -8560,13 +8560,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8588,7 +8588,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.893484089885084, + "speed": 2.89348, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8609,12 +8609,12 @@ } ], { - "x": -0.01772683837292992, - "y": 0.9998428672552999 + "x": -0.01773, + "y": 0.99984 }, { - "x": -0.9998428672552999, - "y": -0.01772683837292992 + "x": -0.99984, + "y": -0.01773 }, { "max": { @@ -8625,12 +8625,12 @@ } }, { - "x": 186.89110565650194, - "y": 248.46504540488775 + "x": 186.89111, + "y": 248.46505 }, { - "x": 146.25709347457726, - "y": 223.4905390543007 + "x": 146.25709, + "y": 223.49054 }, { "category": 1, @@ -8647,16 +8647,16 @@ "y": 0 }, { - "x": 166.47919854950638, - "y": 234.53416612088034 + "x": 166.4792, + "y": 234.53417 }, { - "x": 0.14113446479345376, - "y": 0.06398403425276543 + "x": 0.14113, + "y": 0.06398 }, { - "x": 166.28939651743994, - "y": 231.64691390345257 + "x": 166.2894, + "y": 231.64691 }, { "endCol": 3, @@ -8679,8 +8679,8 @@ "yScale": 1 }, { - "x": 0.18980203206644178, - "y": 2.887252217427768 + "x": 0.1898, + "y": 2.88725 }, [ { @@ -8700,36 +8700,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 146.63609811192487, - "y": 223.4905390543007 + "x": 146.6361, + "y": 223.49054 }, { "body": null, "index": 1, "isInternal": false, - "x": 186.7013036244355, - "y": 224.20088009463652 + "x": 186.7013, + "y": 224.20088 }, { "body": null, "index": 2, "isInternal": false, - "x": 186.3222989870879, - "y": 245.57779318745997 + "x": 186.3223, + "y": 245.57779 }, { "body": null, "index": 3, "isInternal": false, - "x": 146.25709347457726, - "y": 244.8674521471242 + "x": 146.25709, + "y": 244.86745 }, { - "angle": -0.005266226534492321, - "anglePrev": -0.004557535379146022, - "angularSpeed": 0.000708691155346299, - "angularVelocity": -0.000708691155346299, - "area": 4088.5999519999996, + "angle": -0.00527, + "anglePrev": -0.00456, + "angularSpeed": 0.00071, + "angularVelocity": -0.00071, + "area": 4088.59995, "axes": { "#": 979 }, @@ -8750,13 +8750,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8778,7 +8778,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072570781511606, + "speed": 2.90726, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8805,20 +8805,20 @@ } ], { - "x": -0.7108207433446401, - "y": -0.7033732087810656 + "x": -0.71082, + "y": -0.70337 }, { - "x": -0.005266202193024769, - "y": -0.9999861334610907 + "x": -0.00527, + "y": -0.99999 }, { - "x": 0.7033732087810656, - "y": -0.7108207433446401 + "x": 0.70337, + "y": -0.71082 }, { - "x": 0.9999861334610907, - "y": -0.005266202193024769 + "x": 0.99999, + "y": -0.00527 }, { "max": { @@ -8829,12 +8829,12 @@ } }, { - "x": 264.3498124883806, - "y": 348.93455728976517 + "x": 264.34981, + "y": 348.93456 }, { - "x": 193.90921928855053, - "y": 275.6232547702018 + "x": 193.90922, + "y": 275.62325 }, { "category": 1, @@ -8851,16 +8851,16 @@ "y": 0 }, { - "x": 229.11135545441337, - "y": 310.8253909360646 + "x": 229.11136, + "y": 310.82539 }, { - "x": 0.6476357532824053, - "y": 0.682933178214567 + "x": 0.64764, + "y": 0.68293 }, { - "x": 229.07503458630893, - "y": 307.9183607482268 + "x": 229.07503, + "y": 307.91836 }, { "endCol": 5, @@ -8883,8 +8883,8 @@ "yScale": 1 }, { - "x": 0.03632086810444406, - "y": 2.9070301878377807 + "x": 0.03632, + "y": 2.90703 }, [ { @@ -8916,64 +8916,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 264.3134916202762, - "y": 325.19020855969126 + "x": 264.31349, + "y": 325.19021 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.84613431450447, - "y": 345.8742806181103 + "x": 243.84613, + "y": 345.87428 }, { "body": null, "index": 2, "isInternal": false, - "x": 214.7465378307867, - "y": 346.0275271019274 + "x": 214.74654, + "y": 346.02753 }, { "body": null, "index": 3, "isInternal": false, - "x": 194.06246577236755, - "y": 325.56016979615555 + "x": 194.06247, + "y": 325.56017 }, { "body": null, "index": 4, "isInternal": false, - "x": 193.90921928855053, - "y": 296.460573312438 + "x": 193.90922, + "y": 296.46057 }, { "body": null, "index": 5, "isInternal": false, - "x": 214.37657659432227, - "y": 275.7765012540189 + "x": 214.37658, + "y": 275.7765 }, { "body": null, "index": 6, "isInternal": false, - "x": 243.47617307804003, - "y": 275.6232547702018 + "x": 243.47617, + "y": 275.62325 }, { "body": null, "index": 7, "isInternal": false, - "x": 264.1602451364591, - "y": 296.0906120759737 + "x": 264.16025, + "y": 296.09061 }, { - "angle": -0.002797751919037557, - "anglePrev": -0.0024966286598168213, - "angularSpeed": 0.00041974123157568485, - "angularVelocity": -0.0002864750306091281, - "area": 1965.14242904257, + "angle": -0.0028, + "anglePrev": -0.0025, + "angularSpeed": 0.00042, + "angularVelocity": -0.00029, + "area": 1965.14243, "axes": { "#": 1007 }, @@ -8994,13 +8994,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -9022,7 +9022,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9808498463116475, + "speed": 2.98085, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9043,12 +9043,12 @@ } ], { - "x": 0.0027977482691777227, - "y": 0.9999960862946526 + "x": 0.0028, + "y": 1 }, { - "x": -0.9999960862946526, - "y": 0.0027977482691777227 + "x": -1, + "y": 0.0028 }, { "max": { @@ -9059,12 +9059,12 @@ } }, { - "x": 346.0161787349028, - "y": 253.92192376200677 + "x": 346.01618, + "y": 253.92192 }, { - "x": 256.4506939010848, - "y": 228.7349023329504 + "x": 256.45069, + "y": 228.7349 }, { "category": 1, @@ -9081,16 +9081,16 @@ "y": 0 }, { - "x": 301.2333755679751, - "y": 239.83798812556086 + "x": 301.23338, + "y": 239.83799 }, { - "x": -0.34060644558458747, - "y": 1.2030685450704066 + "x": -0.34061, + "y": 1.20307 }, { - "x": 301.23603168901917, - "y": 236.8553248022503 + "x": 301.23603, + "y": 236.85532 }, { "endCol": 7, @@ -9113,8 +9113,8 @@ "yScale": 1 }, { - "x": -0.009766503844730323, - "y": 2.9825771068383915 + "x": -0.00977, + "y": 2.98258 }, [ { @@ -9134,36 +9134,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 256.4506939010848, - "y": 228.98531279613283 + "x": 256.45069, + "y": 228.98531 }, { "body": null, "index": 1, "isInternal": false, - "x": 345.95463030178087, - "y": 228.7349023329504 + "x": 345.95463, + "y": 228.7349 }, { "body": null, "index": 2, "isInternal": false, - "x": 346.0160572348654, - "y": 250.69066345498888 + "x": 346.01606, + "y": 250.69066 }, { "body": null, "index": 3, "isInternal": false, - "x": 256.5121208341693, - "y": 250.9410739181713 + "x": 256.51212, + "y": 250.94107 }, { - "angle": -0.0022164782419674604, - "anglePrev": -0.0012538829898641345, - "angularSpeed": 0.000917478893619339, - "angularVelocity": -0.000998312043686869, - "area": 2297.860096, + "angle": -0.00222, + "anglePrev": -0.00125, + "angularSpeed": 0.00092, + "angularVelocity": -0.001, + "area": 2297.8601, "axes": { "#": 1029 }, @@ -9184,13 +9184,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 3520.107347192753, - "inverseInertia": 0.00028408224561602904, - "inverseMass": 0.43518750412209606, + "inertia": 3520.10735, + "inverseInertia": 0.00028, + "inverseMass": 0.43519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.297860096, + "mass": 2.29786, "motion": 0, "parent": null, "position": { @@ -9212,7 +9212,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9403774959475335, + "speed": 2.94038, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9233,12 +9233,12 @@ } ], { - "x": -0.0022164764271244627, - "y": -0.999997543613107 + "x": -0.00222, + "y": -1 }, { - "x": 0.999997543613107, - "y": -0.0022164764271244627 + "x": 1, + "y": -0.00222 }, { "max": { @@ -9249,12 +9249,12 @@ } }, { - "x": 393.3091250378776, - "y": 271.63382925072074 + "x": 393.30913, + "y": 271.63383 }, { - "x": 345.2578525029049, - "y": 220.65133469969905 + "x": 345.25785, + "y": 220.65133 }, { "category": 1, @@ -9271,16 +9271,16 @@ "y": 0 }, { - "x": 369.2789181352291, - "y": 244.6724003320233 + "x": 369.27892, + "y": 244.6724 }, { - "x": 0.012877675525544908, - "y": 0.0022427709255079774 + "x": 0.01288, + "y": 0.00224 }, { - "x": 369.2698296578669, - "y": 241.72602871057725 + "x": 369.26983, + "y": 241.72603 }, { "endCol": 8, @@ -9303,8 +9303,8 @@ "yScale": 1 }, { - "x": 0.002916888468575962, - "y": 2.9466318193522625 + "x": 0.00292, + "y": 2.94663 }, [ { @@ -9324,36 +9324,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 393.29998376755333, - "y": 268.587216950337 + "x": 393.29998, + "y": 268.58722 }, { "body": null, "index": 1, "isInternal": false, - "x": 345.3641015169154, - "y": 268.6934659643475 + "x": 345.3641, + "y": 268.69347 }, { "body": null, "index": 2, "isInternal": false, - "x": 345.2578525029049, - "y": 220.7575837137097 + "x": 345.25785, + "y": 220.75758 }, { "body": null, "index": 3, "isInternal": false, - "x": 393.1937347535428, - "y": 220.65133469969905 + "x": 393.19373, + "y": 220.65133 }, { - "angle": -0.002530854313370245, - "anglePrev": -0.0018951863589065127, - "angularSpeed": 0.0005607146738714485, - "angularVelocity": -0.0006117827706225252, - "area": 942.0065703840771, + "angle": -0.00253, + "anglePrev": -0.0019, + "angularSpeed": 0.00056, + "angularVelocity": -0.00061, + "area": 942.00657, "axes": { "#": 1051 }, @@ -9374,13 +9374,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -9402,7 +9402,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.912078478202996, + "speed": 2.91208, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9423,12 +9423,12 @@ } ], { - "x": 0.0025308516115898332, - "y": 0.9999967973899316 + "x": 0.00253, + "y": 1 }, { - "x": -0.9999967973899316, - "y": 0.0025308516115898332 + "x": -1, + "y": 0.00253 }, { "max": { @@ -9439,12 +9439,12 @@ } }, { - "x": 413.734412051393, - "y": 268.2727478641744 + "x": 413.73441, + "y": 268.27275 }, { - "x": 392.54157657998223, - "y": 220.57777052722406 + "x": 392.54158, + "y": 220.57777 }, { "category": 1, @@ -9461,16 +9461,16 @@ "y": 0 }, { - "x": 403.1281091038288, - "y": 242.96925351288417 + "x": 403.12811, + "y": 242.96925 }, { - "x": 0.299095663307059, - "y": -0.0007569691657772724 + "x": 0.2991, + "y": -0.00076 }, { - "x": 403.1026675535322, - "y": 240.0523544648693 + "x": 403.10267, + "y": 240.05235 }, { "endCol": 8, @@ -9493,8 +9493,8 @@ "yScale": 1 }, { - "x": 0.018766202239305585, - "y": 2.9171074060839146 + "x": 0.01877, + "y": 2.91711 }, [ { @@ -9514,36 +9514,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 392.54157657998223, - "y": 220.6310700799012 + "x": 392.54158, + "y": 220.63107 }, { "body": null, "index": 1, "isInternal": false, - "x": 413.6014371167839, - "y": 220.57777052722406 + "x": 413.60144, + "y": 220.57777 }, { "body": null, "index": 2, "isInternal": false, - "x": 413.7146416276754, - "y": 265.3074369458672 + "x": 413.71464, + "y": 265.30744 }, { "body": null, "index": 3, "isInternal": false, - "x": 392.6547810908737, - "y": 265.36073649854427 + "x": 392.65478, + "y": 265.36074 }, { - "angle": -0.00099097424547415, - "anglePrev": -0.0006990703030502522, - "angularSpeed": 0.00024985324868731024, - "angularVelocity": -0.00029701474737232783, - "area": 2898.415585731765, + "angle": -0.00099, + "anglePrev": -0.0007, + "angularSpeed": 0.00025, + "angularVelocity": -0.0003, + "area": 2898.41559, "axes": { "#": 1073 }, @@ -9564,13 +9564,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -9592,7 +9592,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.891483792354983, + "speed": 2.89148, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9613,12 +9613,12 @@ } ], { - "x": 0.0009909740832797591, - "y": 0.9999995089850627 + "x": 0.00099, + "y": 1 }, { - "x": -0.9999995089850627, - "y": 0.0009909740832797591 + "x": -1, + "y": 0.00099 }, { "max": { @@ -9629,12 +9629,12 @@ } }, { - "x": 525.4415017477487, - "y": 249.27389045277542 + "x": 525.4415, + "y": 249.27389 }, { - "x": 413.2037366073625, - "y": 220.43777679067168 + "x": 413.20374, + "y": 220.43778 }, { "category": 1, @@ -9651,16 +9651,16 @@ "y": 0 }, { - "x": 469.31450305643915, - "y": 233.41011450690874 + "x": 469.3145, + "y": 233.41011 }, { - "x": 0.5483805448941832, - "y": -0.0015162850998601185 + "x": 0.54838, + "y": -0.00152 }, { - "x": 469.2821980696548, - "y": 230.51637228440876 + "x": 469.2822, + "y": 230.51637 }, { "endCol": 10, @@ -9683,8 +9683,8 @@ "yScale": 1 }, { - "x": 0.034474524431288955, - "y": 2.893674504581611 + "x": 0.03447, + "y": 2.89367 }, [ { @@ -9704,36 +9704,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.2037366073625, - "y": 220.54896010668514 + "x": 413.20374, + "y": 220.54896 }, { "body": null, "index": 1, "isInternal": false, - "x": 525.3996691717775, - "y": 220.43777679067168 + "x": 525.39967, + "y": 220.43778 }, { "body": null, "index": 2, "isInternal": false, - "x": 525.4252695055159, - "y": 246.27126890713234 + "x": 525.42527, + "y": 246.27127 }, { "body": null, "index": 3, "isInternal": false, - "x": 413.2293369411006, - "y": 246.3824522231458 + "x": 413.22934, + "y": 246.38245 }, { - "angle": 0.004779269083705684, - "anglePrev": 0.00442271431990129, - "angularSpeed": 0.0004924293685744214, - "angularVelocity": 0.00031094136004266703, - "area": 1297.1522559999999, + "angle": 0.00478, + "anglePrev": 0.00442, + "angularSpeed": 0.00049, + "angularVelocity": 0.00031, + "area": 1297.15226, "axes": { "#": 1095 }, @@ -9754,13 +9754,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1121.7359834972597, - "inverseInertia": 0.0008914753691704523, - "inverseMass": 0.7709195241919234, + "inertia": 1121.73598, + "inverseInertia": 0.00089, + "inverseMass": 0.77092, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.297152256, + "mass": 1.29715, "motion": 0, "parent": null, "position": { @@ -9782,7 +9782,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8855618792967968, + "speed": 2.88556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9803,12 +9803,12 @@ } ], { - "x": 0.004779250889516653, - "y": -0.9999885793152513 + "x": 0.00478, + "y": -0.99999 }, { - "x": 0.9999885793152513, - "y": 0.004779250889516653 + "x": 0.99999, + "y": 0.00478 }, { "max": { @@ -9819,12 +9819,12 @@ } }, { - "x": 561.4464811993962, - "y": 255.58653552195383 + "x": 561.44648, + "y": 255.58654 }, { - "x": 525.2241935176104, - "y": 216.51346255165456 + "x": 525.22419, + "y": 216.51346 }, { "category": 1, @@ -9841,16 +9841,16 @@ "y": 0 }, { - "x": 543.318052603938, - "y": 234.607321637982 + "x": 543.31805, + "y": 234.60732 }, { - "x": 0.6474059547439625, - "y": 0.002792643012246443 + "x": 0.64741, + "y": 0.00279 }, { - "x": 543.2687267262419, - "y": 231.72500761825285 + "x": 543.26873, + "y": 231.72501 }, { "endCol": 11, @@ -9873,8 +9873,8 @@ "yScale": 1 }, { - "x": 0.05350234092395567, - "y": 2.881798255671555 + "x": 0.0535, + "y": 2.8818 }, [ { @@ -9894,43 +9894,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 561.2397821902285, - "y": 252.70118072430947 + "x": 561.23978, + "y": 252.70118 }, { "body": null, "index": 1, "isInternal": false, - "x": 525.2241935176104, - "y": 252.52905122427268 + "x": 525.22419, + "y": 252.52905 }, { "body": null, "index": 2, "isInternal": false, - "x": 525.3963230176474, - "y": 216.51346255165456 + "x": 525.39632, + "y": 216.51346 }, { "body": null, "index": 3, "isInternal": false, - "x": 561.4119116902656, - "y": 216.68559205169134 + "x": 561.41191, + "y": 216.68559 }, { - "angle": -0.0026210659356287434, - "anglePrev": -0.002394154179762311, - "angularSpeed": 0.00023091826499286474, - "angularVelocity": -0.00022771388573928361, - "area": 6661.542482000001, + "angle": -0.00262, + "anglePrev": -0.00239, + "angularSpeed": 0.00023, + "angularVelocity": -0.00023, + "area": 6661.54248, "axes": { "#": 1117 }, "bounds": { "#": 1131 }, - "circleRadius": 46.273148148148145, + "circleRadius": 46.27315, "collisionFilter": { "#": 1134 }, @@ -9945,13 +9945,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 28251.272419191544, - "inverseInertia": 0.00003539663577491412, - "inverseMass": 0.15011538284144801, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "inverseMass": 0.15012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.661542482000001, + "mass": 6.66154, "motion": 0, "parent": null, "position": { @@ -9973,7 +9973,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9078546719171032, + "speed": 2.90785, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10027,56 +10027,56 @@ } ], { - "x": -0.9715575355354349, - "y": -0.2368036214763449 + "x": -0.97156, + "y": -0.2368 }, { - "x": -0.8866655284096947, - "y": -0.4624113328303675 + "x": -0.88667, + "y": -0.46241 }, { - "x": -0.7502664258189825, - "y": -0.6611356065806843 + "x": -0.75027, + "y": -0.66114 }, { - "x": -0.5702085709035531, - "y": -0.8214999608448732 + "x": -0.57021, + "y": -0.8215 }, { - "x": -0.3570875048827764, - "y": -0.9340709362016318 + "x": -0.35709, + "y": -0.93407 }, { - "x": -0.12308284250747743, - "y": -0.9923963995703929 + "x": -0.12308, + "y": -0.9924 }, { - "x": 0.11787890238760435, - "y": -0.9930279776380389 + "x": 0.11788, + "y": -0.99303 }, { - "x": 0.3521860979225601, - "y": -0.9359299933382204 + "x": 0.35219, + "y": -0.93593 }, { - "x": 0.5658943448672834, - "y": -0.8244777683159372 + "x": 0.56589, + "y": -0.82448 }, { - "x": 0.7467903730405958, - "y": -0.6650595001455795 + "x": 0.74679, + "y": -0.66506 }, { - "x": 0.884229335593446, - "y": -0.4670529756633323 + "x": 0.88423, + "y": -0.46705 }, { - "x": 0.9703028362654489, - "y": -0.24189337720414286 + "x": 0.9703, + "y": -0.24189 }, { - "x": 0.9999965650086471, - "y": -0.0026210629345151154 + "x": 1, + "y": -0.00262 }, { "max": { @@ -10087,12 +10087,12 @@ } }, { - "x": 633.8026303677968, - "y": 340.70293602887574 + "x": 633.80263, + "y": 340.70294 }, { - "x": 541.8751969409882, - "y": 245.24952008153215 + "x": 541.8752, + "y": 245.24952 }, { "category": 1, @@ -10109,16 +10109,16 @@ "y": 0 }, { - "x": 587.852167868511, - "y": 291.52236113417723 + "x": 587.85217, + "y": 291.52236 }, { - "x": -0.28336375143879117, - "y": 0.984885002415048 + "x": -0.28336, + "y": 0.98489 }, { - "x": 587.8790434963497, - "y": 288.6146269757047 + "x": 587.87904, + "y": 288.61463 }, { "endCol": 13, @@ -10141,8 +10141,8 @@ "yScale": 1 }, { - "x": -0.026802112027212388, - "y": 2.907734095123317 + "x": -0.0268, + "y": 2.90773 }, [ { @@ -10228,190 +10228,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 633.8026303677968, - "y": 296.9799408268356 + "x": 633.80263, + "y": 296.97994 }, { "body": null, "index": 1, "isInternal": false, - "x": 631.1610282718675, - "y": 307.8179018604793 + "x": 631.16103, + "y": 307.8179 }, { "body": null, "index": 2, "isInternal": false, - "x": 626.002934317467, - "y": 317.7084555233222 + "x": 626.00293, + "y": 317.70846 }, { "body": null, "index": 3, "isInternal": false, - "x": 618.627845601601, - "y": 326.07781484367104 + "x": 618.62785, + "y": 326.07781 }, { "body": null, "index": 4, "isInternal": false, - "x": 609.4634868140731, - "y": 332.43885705493267 + "x": 609.46349, + "y": 332.43886 }, { "body": null, "index": 5, "isInternal": false, - "x": 599.0438915660015, - "y": 336.4221811525139 + "x": 599.04389, + "y": 336.42218 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.9734523136797, - "y": 337.79520218682234 + "x": 587.97345, + "y": 337.7952 }, { "body": null, "index": 7, "isInternal": false, - "x": 576.8959676441899, - "y": 336.48023245438765 + "x": 576.89597, + "y": 336.48023 }, { "body": null, "index": 8, "isInternal": false, - "x": 566.4556345461807, - "y": 332.5515837296204 + "x": 566.45563, + "y": 332.55158 }, { "body": null, "index": 9, "isInternal": false, - "x": 557.2580564070205, - "y": 326.2386694759623 + "x": 557.25806, + "y": 326.23867 }, { "body": null, "index": 10, "isInternal": false, - "x": 549.8391959401483, - "y": 317.90808616066676 + "x": 549.8392, + "y": 317.90809 }, { "body": null, "index": 11, "isInternal": false, - "x": 544.6293255085391, - "y": 308.0447076783288 + "x": 544.62933, + "y": 308.04471 }, { "body": null, "index": 12, "isInternal": false, - "x": 541.9309459473224, - "y": 297.2207431207553 + "x": 541.93095, + "y": 297.22074 }, { "body": null, "index": 13, "isInternal": false, - "x": 541.901705369225, - "y": 286.06478144151885 + "x": 541.90171, + "y": 286.06478 }, { "body": null, "index": 14, "isInternal": false, - "x": 544.5433074651544, - "y": 275.22682040787515 + "x": 544.54331, + "y": 275.22682 }, { "body": null, "index": 15, "isInternal": false, - "x": 549.7014014195549, - "y": 265.33626674503216 + "x": 549.7014, + "y": 265.33627 }, { "body": null, "index": 16, "isInternal": false, - "x": 557.0764901354208, - "y": 256.9669074246833 + "x": 557.07649, + "y": 256.96691 }, { "body": null, "index": 17, "isInternal": false, - "x": 566.2408489229488, - "y": 250.60586521342174 + "x": 566.24085, + "y": 250.60587 }, { "body": null, "index": 18, "isInternal": false, - "x": 576.6604441710203, - "y": 246.62254111584053 + "x": 576.66044, + "y": 246.62254 }, { "body": null, "index": 19, "isInternal": false, - "x": 587.7308834233422, - "y": 245.24952008153215 + "x": 587.73088, + "y": 245.24952 }, { "body": null, "index": 20, "isInternal": false, - "x": 598.808368092832, - "y": 246.56448981396693 + "x": 598.80837, + "y": 246.56449 }, { "body": null, "index": 21, "isInternal": false, - "x": 609.2487011908412, - "y": 250.49313853873417 + "x": 609.2487, + "y": 250.49314 }, { "body": null, "index": 22, "isInternal": false, - "x": 618.4462793300014, - "y": 256.80605279239217 + "x": 618.44628, + "y": 256.80605 }, { "body": null, "index": 23, "isInternal": false, - "x": 625.8651397968736, - "y": 265.13663610768776 + "x": 625.86514, + "y": 265.13664 }, { "body": null, "index": 24, "isInternal": false, - "x": 631.0750102284828, - "y": 275.00001459002567 + "x": 631.07501, + "y": 275.00001 }, { "body": null, "index": 25, "isInternal": false, - "x": 633.7733897896995, - "y": 285.8239791475992 + "x": 633.77339, + "y": 285.82398 }, { - "angle": 0.021202818635086624, - "anglePrev": 0.017120435187225766, - "angularSpeed": 0.004082383447860858, - "angularVelocity": 0.004082383447860858, - "area": 1051.3111283901928, + "angle": 0.0212, + "anglePrev": 0.01712, + "angularSpeed": 0.00408, + "angularVelocity": 0.00408, + "area": 1051.31113, "axes": { "#": 1172 }, @@ -10432,13 +10432,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -10460,7 +10460,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.892136320843546, + "speed": 2.89214, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10481,12 +10481,12 @@ } ], { - "x": -0.021201230015974765, - "y": 0.9997752286618276 + "x": -0.0212, + "y": 0.99978 }, { - "x": -0.9997752286618276, - "y": -0.021201230015974765 + "x": -0.99978, + "y": -0.0212 }, { "max": { @@ -10497,12 +10497,12 @@ } }, { - "x": 653.6047669689929, - "y": 251.7019629950224 + "x": 653.60477, + "y": 251.70196 }, { - "x": 623.0146856148411, - "y": 212.627002230666 + "x": 623.01469, + "y": 212.627 }, { "category": 1, @@ -10519,16 +10519,16 @@ "y": 0 }, { - "x": 638.4567478690996, - "y": 230.72590769980408 + "x": 638.45675, + "y": 230.72591 }, { - "x": -0.49568434966651065, - "y": 0.1106299566858554 + "x": -0.49568, + "y": 0.11063 }, { - "x": 638.7507910234647, - "y": 227.84875787372386 + "x": 638.75079, + "y": 227.84876 }, { "endCol": 13, @@ -10551,8 +10551,8 @@ "yScale": 1 }, { - "x": -0.29404315436514367, - "y": 2.87714982608022 + "x": -0.29404, + "y": 2.87715 }, [ { @@ -10572,36 +10572,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 624.0630546825768, - "y": 212.627002230666 + "x": 624.06305, + "y": 212.627 }, { "body": null, "index": 1, "isInternal": false, - "x": 653.6047669689929, - "y": 213.25346367849403 + "x": 653.60477, + "y": 213.25346 }, { "body": null, "index": 2, "isInternal": false, - "x": 652.8504410556224, - "y": 248.82481316894217 + "x": 652.85044, + "y": 248.82481 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.3087287692063, - "y": 248.19835172111414 + "x": 623.30873, + "y": 248.19835 }, { - "angle": -0.029737821030243354, - "anglePrev": -0.024962294968339908, - "angularSpeed": 0.0047755260619034455, - "angularVelocity": -0.0047755260619034455, - "area": 6245.524001, + "angle": -0.02974, + "anglePrev": -0.02496, + "angularSpeed": 0.00478, + "angularVelocity": -0.00478, + "area": 6245.524, "axes": { "#": 1194 }, @@ -10622,13 +10622,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 24931.28629116745, - "inverseInertia": 0.00004011024494770155, - "inverseMass": 0.16011466769479796, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "inverseMass": 0.16011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.245524001, + "mass": 6.24552, "motion": 0, "parent": null, "position": { @@ -10650,7 +10650,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7275651638900396, + "speed": 2.72757, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10686,32 +10686,32 @@ } ], { - "x": 0.6464792692038969, - "y": 0.7629315529518987 + "x": 0.64648, + "y": 0.76293 }, { - "x": -0.19345432297572965, - "y": 0.9811092828640458 + "x": -0.19345, + "y": 0.98111 }, { - "x": -0.8876725995098825, - "y": 0.4604751416519334 + "x": -0.88767, + "y": 0.46048 }, { - "x": -0.9134739683211672, - "y": -0.4068971727593834 + "x": -0.91347, + "y": -0.4069 }, { - "x": -0.2514299744319495, - "y": -0.9678754919705064 + "x": -0.25143, + "y": -0.96788 }, { - "x": 0.599987096881956, - "y": -0.8000096771759467 + "x": 0.59999, + "y": -0.80001 }, { - "x": 0.999557863584797, - "y": -0.029733438176516865 + "x": 0.99956, + "y": -0.02973 }, { "max": { @@ -10722,12 +10722,12 @@ } }, { - "x": 733.7750552724428, - "y": 323.2194460012919 + "x": 733.77506, + "y": 323.21945 }, { - "x": 642.1936958401824, - "y": 227.38556806801134 + "x": 642.1937, + "y": 227.38557 }, { "category": 1, @@ -10744,16 +10744,16 @@ "y": 0 }, { - "x": 690.134809091781, - "y": 274.25806974155114 + "x": 690.13481, + "y": 274.25807 }, { - "x": -0.6077757682805036, - "y": 0.7694614092313545 + "x": -0.60778, + "y": 0.76946 }, { - "x": 690.323007320338, - "y": 271.53700503264866 + "x": 690.32301, + "y": 271.53701 }, { "endCol": 15, @@ -10776,8 +10776,8 @@ "yScale": 1 }, { - "x": -0.18819822855699045, - "y": 2.7210647089024746 + "x": -0.1882, + "y": 2.72106 }, [ { @@ -10806,57 +10806,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 733.7750552724428, - "y": 293.6970898784088 + "x": 733.77506, + "y": 293.69709 }, { "body": null, "index": 1, "isInternal": false, - "x": 702.1459654413571, - "y": 320.4983812923894 + "x": 702.14597, + "y": 320.49838 }, { "body": null, "index": 2, "isInternal": false, - "x": 661.4715150103704, - "y": 312.4782265471746 + "x": 661.47152, + "y": 312.47823 }, { "body": null, "index": 3, "isInternal": false, - "x": 642.3818940687394, - "y": 275.6785561368999 + "x": 642.38189, + "y": 275.67856 }, { "body": null, "index": 4, "isInternal": false, - "x": 659.2503677117081, - "y": 237.80925502166312 + "x": 659.25037, + "y": 237.80926 }, { "body": null, "index": 5, "isInternal": false, - "x": 699.376176741462, - "y": 227.38556806801134 + "x": 699.37618, + "y": 227.38557 }, { "body": null, "index": 6, "isInternal": false, - "x": 732.5424258593971, - "y": 252.25941908563752 + "x": 732.54243, + "y": 252.25942 }, { - "angle": -0.17264182097219136, - "anglePrev": -0.1449910286118084, - "angularSpeed": 0.02765079236038295, - "angularVelocity": -0.02765079236038295, - "area": 1694.1455999999998, + "angle": -0.17264, + "anglePrev": -0.14499, + "angularSpeed": 0.02765, + "angularVelocity": -0.02765, + "area": 1694.1456, "axes": { "#": 1224 }, @@ -10877,13 +10877,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1913.4195426662397, - "inverseInertia": 0.0005226245356554463, - "inverseMass": 0.590268038355145, + "inertia": 1913.41954, + "inverseInertia": 0.00052, + "inverseMass": 0.59027, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.6941456, + "mass": 1.69415, "motion": 0, "parent": null, "position": { @@ -10905,7 +10905,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9403723744940646, + "speed": 1.94037, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10926,12 +10926,12 @@ } ], { - "x": -0.17178549416550587, - "y": -0.9851343786480671 + "x": -0.17179, + "y": -0.98513 }, { - "x": 0.9851343786480671, - "y": -0.17178549416550587 + "x": 0.98513, + "y": -0.17179 }, { "max": { @@ -10942,12 +10942,12 @@ } }, { - "x": 777.9517542011863, - "y": 259.47852642189383 + "x": 777.95175, + "y": 259.47853 }, { - "x": 729.806989329101, - "y": 209.99197080076962 + "x": 729.80699, + "y": 209.99197 }, { "category": 1, @@ -10964,16 +10964,16 @@ "y": 0 }, { - "x": 754.142343218683, - "y": 233.80138178327303 + "x": 754.14234, + "y": 233.80138 }, { - "x": -0.23971779890706052, - "y": -0.04200588940050792 + "x": -0.23972, + "y": -0.04201 }, { - "x": 754.6682861257616, - "y": 231.9336481271557 + "x": 754.66829, + "y": 231.93365 }, { "endCol": 16, @@ -10996,8 +10996,8 @@ "yScale": 1 }, { - "x": -0.5259429070785814, - "y": 1.867733656117345 + "x": -0.52594, + "y": 1.86773 }, [ { @@ -11017,36 +11017,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 777.9517542011863, - "y": 250.54010182592415 + "x": 777.95175, + "y": 250.5401 }, { "body": null, "index": 1, "isInternal": false, - "x": 737.4036231760318, - "y": 257.61079276577647 + "x": 737.40362, + "y": 257.61079 }, { "body": null, "index": 2, "isInternal": false, - "x": 730.3329322361797, - "y": 217.0626617406219 + "x": 730.33293, + "y": 217.06266 }, { "body": null, "index": 3, "isInternal": false, - "x": 770.8810632613341, - "y": 209.99197080076962 + "x": 770.88106, + "y": 209.99197 }, { - "angle": 0.011439896323971126, - "anglePrev": 0.010535225931758464, - "angularSpeed": 0.000904670392212662, - "angularVelocity": 0.000904670392212662, - "area": 4695.386625, + "angle": 0.01144, + "anglePrev": 0.01054, + "angularSpeed": 0.0009, + "angularVelocity": 0.0009, + "area": 4695.38663, "axes": { "#": 1246 }, @@ -11067,13 +11067,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -11095,7 +11095,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.78587341892262, + "speed": 2.78587, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11131,32 +11131,32 @@ } ], { - "x": 0.6145155151809749, - "y": 0.7889047354413973 + "x": 0.61452, + "y": 0.7889 }, { - "x": -0.23366467469309415, - "y": 0.9723172423651504 + "x": -0.23366, + "y": 0.97232 }, { - "x": -0.90587631566063, - "y": 0.42354232459710933 + "x": -0.90588, + "y": 0.42354 }, { - "x": -0.8959495046028965, - "y": -0.4441559244249977 + "x": -0.89595, + "y": -0.44416 }, { - "x": -0.21135904139507922, - "y": -0.9774084896401062 + "x": -0.21136, + "y": -0.97741 }, { - "x": 0.632403079389446, - "y": -0.7746394936864154 + "x": 0.6324, + "y": -0.77464 }, { - "x": 0.999934565099682, - "y": 0.011439646800057407 + "x": 0.99993, + "y": 0.01144 }, { "max": { @@ -11167,12 +11167,12 @@ } }, { - "x": 951.6812026411636, - "y": 338.9742749825948 + "x": 951.6812, + "y": 338.97427 }, { - "x": 872.716236477969, - "y": 255.42376226980636 + "x": 872.71624, + "y": 255.42376 }, { "category": 1, @@ -11189,16 +11189,16 @@ "y": 0 }, { - "x": 914.1366509922472, - "y": 295.70067044748 + "x": 914.13665, + "y": 295.70067 }, { - "x": 0.9616453007243483, - "y": 0.647346642240987 + "x": 0.96165, + "y": 0.64735 }, { - "x": 914.1161369951993, - "y": 292.91487255779293 + "x": 914.11614, + "y": 292.91487 }, { "endCol": 19, @@ -11221,8 +11221,8 @@ "yScale": 1 }, { - "x": 0.02051399704780465, - "y": 2.785797889687034 + "x": 0.02051, + "y": 2.7858 }, [ { @@ -11251,57 +11251,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 951.2494791002409, - "y": 314.0994320139157 + "x": 951.24948, + "y": 314.09943 }, { "body": null, "index": 1, "isInternal": false, - "x": 922.8919326531617, - "y": 336.18847709290776 + "x": 922.89193, + "y": 336.18848 }, { "body": null, "index": 2, "isInternal": false, - "x": 887.9407315539969, - "y": 327.78909808456746 + "x": 887.94073, + "y": 327.7891 }, { "body": null, "index": 3, "isInternal": false, - "x": 872.716236477969, - "y": 295.2268045277554 + "x": 872.71624, + "y": 295.2268 }, { "body": null, "index": 4, "isInternal": false, - "x": 888.6817003565302, - "y": 263.0213364339306 + "x": 888.6817, + "y": 263.02134 }, { "body": null, "index": 5, "isInternal": false, - "x": 923.8159129252022, - "y": 255.42376226980636 + "x": 923.81591, + "y": 255.42376 }, { "body": null, "index": 6, "isInternal": false, - "x": 951.6606886441158, - "y": 278.15578413684256 + "x": 951.66069, + "y": 278.15578 }, { - "angle": 0.004633469188033407, - "anglePrev": 0.0041472198984108645, - "angularSpeed": 0.00048624928962254265, - "angularVelocity": 0.00048624928962254265, - "area": 2533.681298803042, + "angle": 0.00463, + "anglePrev": 0.00415, + "angularSpeed": 0.00049, + "angularVelocity": 0.00049, + "area": 2533.6813, "axes": { "#": 1276 }, @@ -11322,13 +11322,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 9087.287047208478, - "inverseInertia": 0.00011004384419739331, - "inverseMass": 0.3946826305551604, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "inverseMass": 0.39468, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.533681298803042, + "mass": 2.53368, "motion": 0, "parent": null, "position": { @@ -11350,7 +11350,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8271124807312877, + "speed": 2.82711, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11371,12 +11371,12 @@ } ], { - "x": -0.0046334526086978505, - "y": 0.9999892655008468 + "x": -0.00463, + "y": 0.99999 }, { - "x": -0.9999892655008468, - "y": -0.0046334526086978505 + "x": -0.99999, + "y": -0.00463 }, { "max": { @@ -11387,12 +11387,12 @@ } }, { - "x": 1042.6516480672617, - "y": 272.22779913640716 + "x": 1042.65165, + "y": 272.2278 }, { - "x": 941.8564573268185, - "y": 243.75626802472547 + "x": 941.85646, + "y": 243.75627 }, { "category": 1, @@ -11409,16 +11409,16 @@ "y": 0 }, { - "x": 992.2277787244673, - "y": 256.5787215403424 + "x": 992.22778, + "y": 256.57872 }, { - "x": 1.4926784031575835, - "y": 1.002040984954575 + "x": 1.49268, + "y": 1.00204 }, { - "x": 992.1752307793219, - "y": 253.7520974598946 + "x": 992.17523, + "y": 253.7521 }, { "endCol": 21, @@ -11441,8 +11441,8 @@ "yScale": 1 }, { - "x": 0.052547945145411175, - "y": 2.8266240804478424 + "x": 0.05255, + "y": 2.82662 }, [ { @@ -11462,36 +11462,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 941.973122690012, - "y": 243.75626802472547 + "x": 941.97312, + "y": 243.75627 }, { "body": null, "index": 1, "isInternal": false, - "x": 1042.5991001221164, - "y": 244.2225187273288 + "x": 1042.5991, + "y": 244.22252 }, { "body": null, "index": 2, "isInternal": false, - "x": 1042.4824347589226, - "y": 269.4011750559593 + "x": 1042.48243, + "y": 269.40118 }, { "body": null, "index": 3, "isInternal": false, - "x": 941.8564573268185, - "y": 268.934924353356 + "x": 941.85646, + "y": 268.93492 }, { - "angle": 0.06572273477088807, - "anglePrev": 0.056583539642241595, - "angularSpeed": 0.00913919512864647, - "angularVelocity": 0.00913919512864647, - "area": 2082.1047164947227, + "angle": 0.06572, + "anglePrev": 0.05658, + "angularSpeed": 0.00914, + "angularVelocity": 0.00914, + "area": 2082.10472, "axes": { "#": 1298 }, @@ -11512,13 +11512,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2917.86500075833, - "inverseInertia": 0.0003427163353136995, - "inverseMass": 0.4802832403566742, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "inverseMass": 0.48028, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.082104716494723, + "mass": 2.0821, "motion": 0, "parent": null, "position": { @@ -11540,7 +11540,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.7720263273942263, + "speed": 1.77203, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11561,12 +11561,12 @@ } ], { - "x": -0.06567543033887956, - "y": 0.9978410383672358 + "x": -0.06568, + "y": 0.99784 }, { - "x": -0.9978410383672358, - "y": -0.06567543033887956 + "x": -0.99784, + "y": -0.06568 }, { "max": { @@ -11577,12 +11577,12 @@ } }, { - "x": 67.5323729386238, - "y": 357.7286132369045 + "x": 67.53237, + "y": 357.72861 }, { - "x": 21.598917075571958, - "y": 304.38008255200896 + "x": 21.59892, + "y": 304.38008 }, { "category": 1, @@ -11599,16 +11599,16 @@ "y": 0 }, { - "x": 44.44748189874154, - "y": 330.17624949104845 + "x": 44.44748, + "y": 330.17625 }, { - "x": 0.13545523216251307, - "y": -0.007330885528246666 + "x": 0.13546, + "y": -0.00733 }, { - "x": 44.211155682028874, - "y": 328.4200526842319 + "x": 44.21116, + "y": 328.42005 }, { "endCol": 1, @@ -11631,8 +11631,8 @@ "yScale": 1 }, { - "x": 0.23632621671266782, - "y": 1.7561968068165217 + "x": 0.23633, + "y": 1.7562 }, [ { @@ -11652,36 +11652,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 24.810552037664557, - "y": 304.38008255200896 + "x": 24.81055, + "y": 304.38008 }, { "body": null, "index": 1, "isInternal": false, - "x": 67.29604672191113, - "y": 307.17637278187726 + "x": 67.29605, + "y": 307.17637 }, { "body": null, "index": 2, "isInternal": false, - "x": 64.08441175981851, - "y": 355.97241643008795 + "x": 64.08441, + "y": 355.97242 }, { "body": null, "index": 3, "isInternal": false, - "x": 21.598917075571958, - "y": 353.17612620021964 + "x": 21.59892, + "y": 353.17613 }, { - "angle": 0.06252258222003251, - "anglePrev": 0.05369864884071713, - "angularSpeed": 0.00882393337931539, - "angularVelocity": 0.00882393337931539, - "area": 2570.1808866424026, + "angle": 0.06252, + "anglePrev": 0.0537, + "angularSpeed": 0.00882, + "angularVelocity": 0.00882, + "area": 2570.18089, "axes": { "#": 1320 }, @@ -11702,13 +11702,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 7426.992944977438, - "inverseInertia": 0.00013464399487227974, - "inverseMass": 0.38907767355875333, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "inverseMass": 0.38908, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5701808866424027, + "mass": 2.57018, "motion": 0, "parent": null, "position": { @@ -11730,7 +11730,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.507225899085116, + "speed": 2.50723, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11751,12 +11751,12 @@ } ], { - "x": -0.06248185595494206, - "y": 0.9980460999755603 + "x": -0.06248, + "y": 0.99805 }, { - "x": -0.9980460999755603, - "y": -0.06248185595494206 + "x": -0.99805, + "y": -0.06248 }, { "max": { @@ -11767,12 +11767,12 @@ } }, { - "x": 157.91585529836496, - "y": 345.07715706036817 + "x": 157.91586, + "y": 345.07716 }, { - "x": 67.50265707561093, - "y": 308.0638641829536 + "x": 67.50266, + "y": 308.06386 }, { "category": 1, @@ -11789,16 +11789,16 @@ "y": 0 }, { - "x": 112.5529504013579, - "y": 325.3266802760593 + "x": 112.55295, + "y": 325.32668 }, { - "x": 0.34767831527277704, - "y": 0.005532067978716123 + "x": 0.34768, + "y": 0.00553 }, { - "x": 112.24033883009774, - "y": 322.8390195848561 + "x": 112.24034, + "y": 322.83902 }, { "endCol": 3, @@ -11821,8 +11821,8 @@ "yScale": 1 }, { - "x": 0.3126115712601647, - "y": 2.487660691203167 + "x": 0.31261, + "y": 2.48766 }, [ { @@ -11842,36 +11842,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 69.31809139889982, - "y": 308.0638641829536 + "x": 69.31809, + "y": 308.06386 }, { "body": null, "index": 1, "isInternal": false, - "x": 157.6032437271048, - "y": 313.5908835970528 + "x": 157.60324, + "y": 313.59088 }, { "body": null, "index": 2, "isInternal": false, - "x": 155.78780940381597, - "y": 342.589496369165 + "x": 155.78781, + "y": 342.5895 }, { "body": null, "index": 3, "isInternal": false, - "x": 67.50265707561093, - "y": 337.06247695506573 + "x": 67.50266, + "y": 337.06248 }, { - "angle": 0.020446487602864025, - "anglePrev": 0.017284857939625947, - "angularSpeed": 0.003161629663238077, - "angularVelocity": 0.003161629663238077, - "area": 2248.277056, + "angle": 0.02045, + "anglePrev": 0.01728, + "angularSpeed": 0.00316, + "angularVelocity": 0.00316, + "area": 2248.27706, "axes": { "#": 1342 }, @@ -11892,13 +11892,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 3369.8331470240178, - "inverseInertia": 0.00029675059754312303, - "inverseMass": 0.44478503987366225, + "inertia": 3369.83315, + "inverseInertia": 0.0003, + "inverseMass": 0.44479, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.248277056, + "mass": 2.24828, "motion": 0, "parent": null, "position": { @@ -11920,7 +11920,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.89146369956366, + "speed": 2.89146, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11941,12 +11941,12 @@ } ], { - "x": 0.020445062993442537, - "y": -0.9997909778544682 + "x": 0.02045, + "y": -0.99979 }, { - "x": 0.9997909778544682, - "y": 0.020445062993442537 + "x": 0.99979, + "y": 0.02045 }, { "max": { @@ -11957,12 +11957,12 @@ } }, { - "x": 202.3388249438265, - "y": 400.7341519903609 + "x": 202.33882, + "y": 400.73415 }, { - "x": 153.87362490830455, - "y": 349.4685674904611 + "x": 153.87362, + "y": 349.46857 }, { "category": 1, @@ -11979,16 +11979,16 @@ "y": 0 }, { - "x": 178.06138096472682, - "y": 373.6563235468833 + "x": 178.06138, + "y": 373.65632 }, { - "x": 0.060267898085508656, - "y": 1.1207367753891644 + "x": 0.06027, + "y": 1.12074 }, { - "x": 177.97169304204942, - "y": 370.7662511598279 + "x": 177.97169, + "y": 370.76625 }, { "endCol": 4, @@ -12011,8 +12011,8 @@ "yScale": 1 }, { - "x": 0.08968792267739843, - "y": 2.8900723870554144 + "x": 0.08969, + "y": 2.89007 }, [ { @@ -12032,36 +12032,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 201.27971391425206, - "y": 397.8440796033055 + "x": 201.27971, + "y": 397.84408 }, { "body": null, "index": 1, "isInternal": false, - "x": 153.87362490830455, - "y": 396.8746564964084 + "x": 153.87362, + "y": 396.87466 }, { "body": null, "index": 2, "isInternal": false, - "x": 154.8430480152016, - "y": 349.4685674904611 + "x": 154.84305, + "y": 349.46857 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.2491370211491, - "y": 350.4379905973582 + "x": 202.24914, + "y": 350.43799 }, { - "angle": 0.0021466213355913082, - "anglePrev": 0.0019383179344725757, - "angularSpeed": 0.0002083034011187326, - "angularVelocity": 0.0002083034011187326, - "area": 4167.4330549999995, + "angle": 0.00215, + "anglePrev": 0.00194, + "angularSpeed": 0.00021, + "angularVelocity": 0.00021, + "area": 4167.43305, "axes": { "#": 1364 }, @@ -12082,13 +12082,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 11100.542061550868, - "inverseInertia": 0.00009008569081177725, - "inverseMass": 0.23995586415004816, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "inverseMass": 0.23996, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.167433054999999, + "mass": 4.16743, "motion": 0, "parent": null, "position": { @@ -12110,7 +12110,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9177753563813362, + "speed": 2.91778, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12146,32 +12146,32 @@ } ], { - "x": 0.621829860855301, - "y": 0.7831523633040233 + "x": 0.62183, + "y": 0.78315 }, { - "x": -0.2246220138905429, - "y": 0.9744459712450748 + "x": -0.22462, + "y": 0.97445 }, { - "x": -0.901901889584581, - "y": 0.4319409468477869 + "x": -0.9019, + "y": 0.43194 }, { - "x": -0.9000391560922489, - "y": -0.4358090378832825 + "x": -0.90004, + "y": -0.43581 }, { - "x": -0.22043642361205187, - "y": -0.9754013446500515 + "x": -0.22044, + "y": -0.9754 }, { - "x": 0.6251863829164003, - "y": -0.7804754875176468 + "x": 0.62519, + "y": -0.78048 }, { - "x": 0.9999976960093057, - "y": 0.002146619686992528 + "x": 1, + "y": 0.00215 }, { "max": { @@ -12182,12 +12182,12 @@ } }, { - "x": 277.2253055557645, - "y": 433.30636872541737 + "x": 277.22531, + "y": 433.30637 }, { - "x": 202.96744332481234, - "y": 354.29499933704693 + "x": 202.96744, + "y": 354.295 }, { "category": 1, @@ -12204,16 +12204,16 @@ "y": 0 }, { - "x": 241.9921435541619, - "y": 392.323269981266 + "x": 241.99214, + "y": 392.32327 }, { - "x": 0.4178077996704079, - "y": 1.2597679032544515 + "x": 0.41781, + "y": 1.25977 }, { - "x": 241.9554569662002, - "y": 389.40572527302754 + "x": 241.95546, + "y": 389.40573 }, { "endCol": 5, @@ -12236,8 +12236,8 @@ "yScale": 1 }, { - "x": 0.03668658796171968, - "y": 2.9175447082384123 + "x": 0.03669, + "y": 2.91754 }, [ { @@ -12266,57 +12266,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 277.1159258387226, - "y": 409.33070656877527 + "x": 277.11593, + "y": 409.33071 }, { "body": null, "index": 1, "isInternal": false, - "x": 250.59466096448932, - "y": 430.38882401717893 + "x": 250.59466, + "y": 430.38882 }, { "body": null, "index": 2, "isInternal": false, - "x": 217.5949139590072, - "y": 422.78196858446705 + "x": 217.59491, + "y": 422.78197 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.96744332481234, - "y": 392.2394985984663 + "x": 202.96744, + "y": 392.2395 }, { "body": null, "index": 4, "isInternal": false, - "x": 217.72590498554683, - "y": 361.7601091785872 + "x": 217.7259, + "y": 361.76011 }, { "body": null, "index": 5, "isInternal": false, - "x": 250.75800584295126, - "y": 354.29499933704693 + "x": 250.75801, + "y": 354.295 }, { "body": null, "index": 6, "isInternal": false, - "x": 277.1886189678028, - "y": 375.46678459111615 + "x": 277.18862, + "y": 375.46678 }, { - "angle": -0.0011135312929367656, - "anglePrev": -0.001101624394452462, - "angularSpeed": 0.000011906898484303596, - "angularVelocity": -0.000011906898484303596, - "area": 1687.7661798887366, + "angle": -0.00111, + "anglePrev": -0.0011, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 1687.76618, "axes": { "#": 1394 }, @@ -12337,13 +12337,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1980.3012000583947, - "inverseInertia": 0.0005049736878261308, - "inverseMass": 0.5924991340127004, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "inverseMass": 0.5925, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6877661798887367, + "mass": 1.68777, "motion": 0, "parent": null, "position": { @@ -12365,7 +12365,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.916518760557076, + "speed": 2.91652, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12386,12 +12386,12 @@ } ], { - "x": 0.0011135310628158986, - "y": 0.9999993800240936 + "x": 0.00111, + "y": 1 }, { - "x": -0.9999993800240936, - "y": 0.0011135310628158986 + "x": -1, + "y": 0.00111 }, { "max": { @@ -12402,12 +12402,12 @@ } }, { - "x": 311.29962183689594, - "y": 364.255787707329 + "x": 311.29962, + "y": 364.25579 }, { - "x": 275.7287643818249, - "y": 313.77083149574344 + "x": 275.72876, + "y": 313.77083 }, { "category": 1, @@ -12424,16 +12424,16 @@ "y": 0 }, { - "x": 293.51035987984073, - "y": 337.5550552593442 + "x": 293.51036, + "y": 337.55506 }, { - "x": 0.09976782458861279, - "y": 0.000009331658578481657 + "x": 0.09977, + "y": 0.00001 }, { - "x": 293.5026934208014, - "y": 334.63854657496023 + "x": 293.50269, + "y": 334.63855 }, { "endCol": 6, @@ -12456,8 +12456,8 @@ "yScale": 1 }, { - "x": 0.007666459039359665, - "y": 2.9165086843839814 + "x": 0.00767, + "y": 2.91651 }, [ { @@ -12477,36 +12477,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 275.7287643818249, - "y": 313.8103733045544 + "x": 275.72876, + "y": 313.81037 }, { "body": null, "index": 1, "isInternal": false, - "x": 311.23903043214534, - "y": 313.77083149574344 + "x": 311.23903, + "y": 313.77083 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.2919553778566, - "y": 361.29973721413404 + "x": 311.29196, + "y": 361.29974 }, { "body": null, "index": 3, "isInternal": false, - "x": 275.7816893275361, - "y": 361.339279022945 + "x": 275.78169, + "y": 361.33928 }, { - "angle": 0.004127758098984464, - "anglePrev": 0.0030009694655297537, - "angularSpeed": 0.0011267886334547104, - "angularVelocity": 0.0011267886334547104, - "area": 888.874596, + "angle": 0.00413, + "anglePrev": 0.003, + "angularSpeed": 0.00113, + "angularVelocity": 0.00113, + "area": 888.8746, "axes": { "#": 1416 }, @@ -12527,13 +12527,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 526.7320316094421, - "inverseInertia": 0.0018984985533241191, - "inverseMass": 1.125018089728374, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "inverseMass": 1.12502, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.888874596, + "mass": 0.88887, "motion": 0, "parent": null, "position": { @@ -12555,7 +12555,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9043861856932027, + "speed": 2.90439, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12576,12 +12576,12 @@ } ], { - "x": 0.004127746377271179, - "y": -0.999991480818634 + "x": 0.00413, + "y": -0.99999 }, { - "x": 0.999991480818634, - "y": 0.004127746377271179 + "x": 0.99999, + "y": 0.00413 }, { "max": { @@ -12592,12 +12592,12 @@ } }, { - "x": 341.32342423338173, - "y": 346.51426546766976 + "x": 341.32342, + "y": 346.51427 }, { - "x": 311.3734218848053, - "y": 313.67309860085356 + "x": 311.37342, + "y": 313.6731 }, { "category": 1, @@ -12614,16 +12614,16 @@ "y": 0 }, { - "x": 326.3418272046147, - "y": 328.64150392066296 + "x": 326.34183, + "y": 328.6415 }, { - "x": 0.11868060354094008, - "y": -0.000022560829529150934 + "x": 0.11868, + "y": -0.00002 }, { - "x": 326.328635495657, - "y": 325.73714769346554 + "x": 326.32864, + "y": 325.73715 }, { "endCol": 7, @@ -12646,8 +12646,8 @@ "yScale": 1 }, { - "x": 0.013191708957649553, - "y": 2.904356227197395 + "x": 0.01319, + "y": 2.90436 }, [ { @@ -12667,36 +12667,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 341.1871678939321, - "y": 343.60990924047235 + "x": 341.18717, + "y": 343.60991 }, { "body": null, "index": 1, "isInternal": false, - "x": 311.3734218848053, - "y": 343.4868446099804 + "x": 311.37342, + "y": 343.48684 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.49648651529725, - "y": 313.67309860085356 + "x": 311.49649, + "y": 313.6731 }, { "body": null, "index": 3, "isInternal": false, - "x": 341.31023252442407, - "y": 313.79616323134553 + "x": 341.31023, + "y": 313.79616 }, { - "angle": 0.0017656783289908768, - "anglePrev": 0.001377317962994496, - "angularSpeed": 0.0003883603659963808, - "angularVelocity": 0.0003883603659963808, - "area": 1624.121534624581, + "angle": 0.00177, + "anglePrev": 0.00138, + "angularSpeed": 0.00039, + "angularVelocity": 0.00039, + "area": 1624.12153, "axes": { "#": 1438 }, @@ -12717,13 +12717,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1766.6812602831346, - "inverseInertia": 0.0005660330601116675, - "inverseMass": 0.6157174686013581, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "inverseMass": 0.61572, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.624121534624581, + "mass": 1.62412, "motion": 0, "parent": null, "position": { @@ -12745,7 +12745,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8965823549127467, + "speed": 2.89658, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12766,12 +12766,12 @@ } ], { - "x": -0.0017656774115386857, - "y": 0.9999984411904242 + "x": -0.00177, + "y": 1 }, { - "x": -0.9999984411904242, - "y": -0.0017656774115386857 + "x": -1, + "y": -0.00177 }, { "max": { @@ -12782,12 +12782,12 @@ } }, { - "x": 383.8063694683603, - "y": 355.044410356839 + "x": 383.80637, + "y": 355.04441 }, { - "x": 341.432524321004, - "y": 313.6681753157434 + "x": 341.43252, + "y": 313.66818 }, { "category": 1, @@ -12804,16 +12804,16 @@ "y": 0 }, { - "x": 362.6110084883346, - "y": 332.9080262420496 + "x": 362.61101, + "y": 332.90803 }, { - "x": 0.14292056151688598, - "y": -0.000008594918407100191 + "x": 0.14292, + "y": -0.00001 }, { - "x": 362.5941316756397, - "y": 330.0114930535663 + "x": 362.59413, + "y": 330.01149 }, { "endCol": 7, @@ -12836,8 +12836,8 @@ "yScale": 1 }, { - "x": 0.016876812694956698, - "y": 2.8965331884832826 + "x": 0.01688, + "y": 2.89653 }, [ { @@ -12857,36 +12857,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 341.50033532548275, - "y": 313.6681753157434 + "x": 341.50034, + "y": 313.66818 }, { "body": null, "index": 1, "isInternal": false, - "x": 383.78949265566536, - "y": 313.7428444419892 + "x": 383.78949, + "y": 313.74284 }, { "body": null, "index": 2, "isInternal": false, - "x": 383.7216816511866, - "y": 352.14787716835576 + "x": 383.72168, + "y": 352.14788 }, { "body": null, "index": 3, "isInternal": false, - "x": 341.432524321004, - "y": 352.07320804210997 + "x": 341.43252, + "y": 352.07321 }, { - "angle": 0.003395914324394931, - "anglePrev": 0.0026672333595342355, - "angularSpeed": 0.00007789336399907765, - "angularVelocity": 0.0007284987175958193, - "area": 925.4335858447538, + "angle": 0.0034, + "anglePrev": 0.00267, + "angularSpeed": 0.00008, + "angularVelocity": 0.00073, + "area": 925.43359, "axes": { "#": 1460 }, @@ -12907,13 +12907,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 658.9066011822378, - "inverseInertia": 0.001517665778739746, - "inverseMass": 1.080574570985751, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "inverseMass": 1.08057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9254335858447538, + "mass": 0.92543, "motion": 0, "parent": null, "position": { @@ -12935,7 +12935,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8723783218763717, + "speed": 2.87238, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12956,12 +12956,12 @@ } ], { - "x": -0.0033959077973188664, - "y": 0.9999942338884918 + "x": -0.0034, + "y": 0.99999 }, { - "x": -0.9999942338884918, - "y": -0.0033959077973188664 + "x": -0.99999, + "y": -0.0034 }, { "max": { @@ -12972,12 +12972,12 @@ } }, { - "x": 424.0717470989504, - "y": 338.59776416768744 + "x": 424.07175, + "y": 338.59776 }, { - "x": 383.97574364885384, - "y": 312.46168165368175 + "x": 383.97574, + "y": 312.46168 }, { "category": 1, @@ -12994,16 +12994,16 @@ "y": 0 }, { - "x": 404.0217143370908, - "y": 324.0935351858778 + "x": 404.02171, + "y": 324.09354 }, { "x": 0, "y": 0 }, { - "x": 404.0292158034326, - "y": 321.1991351856734 + "x": 404.02922, + "y": 321.19914 }, { "endCol": 8, @@ -13026,8 +13026,8 @@ "yScale": 1 }, { - "x": -0.007498853534173122, - "y": 2.894395023708171 + "x": -0.0075, + "y": 2.8944 }, [ { @@ -13047,36 +13047,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 384.0542840611472, - "y": 312.46168165368175 + "x": 384.05428, + "y": 312.46168 }, { "body": null, "index": 1, "isInternal": false, - "x": 424.0676850253278, - "y": 312.59756425752744 + "x": 424.06769, + "y": 312.59756 }, { "body": null, "index": 2, "isInternal": false, - "x": 423.98914461303445, - "y": 335.7253887180738 + "x": 423.98914, + "y": 335.72539 }, { "body": null, "index": 3, "isInternal": false, - "x": 383.97574364885384, - "y": 335.589506114228 + "x": 383.97574, + "y": 335.58951 }, { - "angle": 0.0001472551202538149, - "anglePrev": 0.00011101663345643539, - "angularSpeed": 0.000008282217022694616, - "angularVelocity": 0.000036228427245257354, - "area": 5929.347511999999, + "angle": 0.00015, + "anglePrev": 0.00011, + "angularSpeed": 0.00001, + "angularVelocity": 0.00004, + "area": 5929.34751, "axes": { "#": 1482 }, @@ -13098,13 +13098,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 22382.17146584697, - "inverseInertia": 0.00004467841744157413, - "inverseMass": 0.1686526212161066, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "inverseMass": 0.16865, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.929347512, + "mass": 5.92935, "motion": 0, "parent": null, "position": { @@ -13126,7 +13126,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9141732677084313, + "speed": 2.91417, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13180,56 +13180,56 @@ } ], { - "x": -0.9709012044369201, - "y": -0.2394803775321427 + "x": -0.9709, + "y": -0.23948 }, { - "x": -0.8853871334972413, - "y": -0.4648544114424838 + "x": -0.88539, + "y": -0.46485 }, { - "x": -0.7483854039019182, - "y": -0.6632641157386422 + "x": -0.74839, + "y": -0.66326 }, { - "x": -0.5679913946783601, - "y": -0.8230344923339065 + "x": -0.56799, + "y": -0.82303 }, { - "x": -0.3544821712982387, - "y": -0.9350627734177456 + "x": -0.35448, + "y": -0.93506 }, { - "x": -0.12033273496911982, - "y": -0.9927336162812518 + "x": -0.12033, + "y": -0.99273 }, { - "x": 0.12062509996237736, - "y": -0.9926981340060363 + "x": 0.12063, + "y": -0.9927 }, { - "x": 0.3547575414833142, - "y": -0.9349583342377962 + "x": 0.35476, + "y": -0.93496 }, { - "x": 0.5682337621284088, - "y": -0.8228671773605961 + "x": 0.56823, + "y": -0.82287 }, { - "x": 0.7485807095172572, - "y": -0.6630436798120014 + "x": 0.74858, + "y": -0.66304 }, { - "x": 0.8855239994821836, - "y": -0.4645936357087532 + "x": 0.88552, + "y": -0.46459 }, { - "x": 0.9709716917533044, - "y": -0.23919442680322983 + "x": 0.97097, + "y": -0.23919 }, { - "x": 0.9999999891579648, - "y": 0.00014725511972163319 + "x": 1, + "y": 0.00015 }, { "max": { @@ -13240,12 +13240,12 @@ } }, { - "x": 503.0816783866637, - "y": 407.31377022122126 + "x": 503.08168, + "y": 407.31377 }, { - "x": 416.3862689867581, - "y": 317.0876526335118 + "x": 416.38627, + "y": 317.08765 }, { "category": 1, @@ -13262,16 +13262,16 @@ "y": 0 }, { - "x": 459.74290400009585, - "y": 360.7436521601919 + "x": 459.7429, + "y": 360.74365 }, { - "x": -0.17263679928372613, - "y": 0.32863344981911213 + "x": -0.17264, + "y": 0.32863 }, { - "x": 459.7589598265512, - "y": 357.83297114722063 + "x": 459.75896, + "y": 357.83297 }, { "endCol": 10, @@ -13294,8 +13294,8 @@ "yScale": 1 }, { - "x": -0.016056234253994717, - "y": 2.910681789686862 + "x": -0.01606, + "y": 2.91068 }, [ { @@ -13381,190 +13381,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 503.08012867378375, - "y": 366.01203384551957 + "x": 503.08013, + "y": 366.01203 }, { "body": null, "index": 1, "isInternal": false, - "x": 500.55962390102644, - "y": 376.23066279907823 + "x": 500.55962, + "y": 376.23066 }, { "body": null, "index": 2, "isInternal": false, - "x": 495.6672516835941, - "y": 385.5489424732508 + "x": 495.66725, + "y": 385.54894 }, { "body": null, "index": 3, "isInternal": false, - "x": 488.6870918306826, - "y": 393.4249146943676 + "x": 488.68709, + "y": 393.42491 }, { "body": null, "index": 4, "isInternal": false, - "x": 480.02521148622463, - "y": 399.4026392529511 + "x": 480.02521, + "y": 399.40264 }, { "body": null, "index": 5, "isInternal": false, - "x": 470.18466203680345, - "y": 403.13319022211056 + "x": 470.18466, + "y": 403.13319 }, { "body": null, "index": 6, "isInternal": false, - "x": 459.73647543058934, - "y": 404.399651686872 + "x": 459.73648, + "y": 404.39965 }, { "body": null, "index": 7, "isInternal": false, - "x": 449.28866226335873, - "y": 403.13011317912884 + "x": 449.28866, + "y": 403.13011 }, { "body": null, "index": 8, "isInternal": false, - "x": 439.44921192615107, - "y": 399.39666422921334 + "x": 439.44921, + "y": 399.39666 }, { "body": null, "index": 9, "isInternal": false, - "x": 430.7890924584148, - "y": 393.41638891744594 + "x": 430.78909, + "y": 393.41639 }, { "body": null, "index": 10, "isInternal": false, - "x": 423.8112524626594, - "y": 385.5383613093681 + "x": 423.81125, + "y": 385.53836 }, { "body": null, "index": 11, "isInternal": false, - "x": 418.9216247861484, - "y": 376.2186411856145 + "x": 418.92162, + "y": 376.21864 }, { "body": null, "index": 12, "isInternal": false, - "x": 416.40412961352797, - "y": 365.9992703607626 + "x": 416.40413, + "y": 365.99927 }, { "body": null, "index": 13, "isInternal": false, - "x": 416.40567932640795, - "y": 355.47527047486426 + "x": 416.40568, + "y": 355.47527 }, { "body": null, "index": 14, "isInternal": false, - "x": 418.92618409916525, - "y": 345.2566415213056 + "x": 418.92618, + "y": 345.25664 }, { "body": null, "index": 15, "isInternal": false, - "x": 423.8185563165976, - "y": 335.938361847133 + "x": 423.81856, + "y": 335.93836 }, { "body": null, "index": 16, "isInternal": false, - "x": 430.7987161695091, - "y": 328.0623896260162 + "x": 430.79872, + "y": 328.06239 }, { "body": null, "index": 17, "isInternal": false, - "x": 439.46059651396706, - "y": 322.08466506743275 + "x": 439.4606, + "y": 322.08467 }, { "body": null, "index": 18, "isInternal": false, - "x": 449.30114596338825, - "y": 318.35411409827327 + "x": 449.30115, + "y": 318.35411 }, { "body": null, "index": 19, "isInternal": false, - "x": 459.74933256960236, - "y": 317.0876526335118 + "x": 459.74933, + "y": 317.08765 }, { "body": null, "index": 20, "isInternal": false, - "x": 470.19714573683297, - "y": 318.357191141255 + "x": 470.19715, + "y": 318.35719 }, { "body": null, "index": 21, "isInternal": false, - "x": 480.03659607404063, - "y": 322.0906400911705 + "x": 480.0366, + "y": 322.09064 }, { "body": null, "index": 22, "isInternal": false, - "x": 488.6967155417769, - "y": 328.0709154029379 + "x": 488.69672, + "y": 328.07092 }, { "body": null, "index": 23, "isInternal": false, - "x": 495.6745555375323, - "y": 335.94894301101573 + "x": 495.67456, + "y": 335.94894 }, { "body": null, "index": 24, "isInternal": false, - "x": 500.5641832140433, - "y": 345.2686631347693 + "x": 500.56418, + "y": 345.26866 }, { "body": null, "index": 25, "isInternal": false, - "x": 503.0816783866637, - "y": 355.48803395962125 + "x": 503.08168, + "y": 355.48803 }, { - "angle": -0.0008617086602994603, - "anglePrev": -0.0007777486545448636, - "angularSpeed": 0.00008651552035154268, - "angularVelocity": -0.0000844716368364265, - "area": 2550.166396822507, + "angle": -0.00086, + "anglePrev": -0.00078, + "angularSpeed": 0.00009, + "angularVelocity": -0.00008, + "area": 2550.1664, "axes": { "#": 1537 }, @@ -13585,13 +13585,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 10939.165130883785, - "inverseInertia": 0.00009141465441240754, - "inverseMass": 0.392131274745834, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "inverseMass": 0.39213, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5501663968225072, + "mass": 2.55017, "motion": 0, "parent": null, "position": { @@ -13613,7 +13613,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9104187403242046, + "speed": 2.91042, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13634,12 +13634,12 @@ } ], { - "x": 0.000861708553657012, - "y": 0.9999996287291153 + "x": 0.00086, + "y": 1 }, { - "x": -0.9999996287291153, - "y": 0.000861708553657012 + "x": -1, + "y": 0.00086 }, { "max": { @@ -13650,12 +13650,12 @@ } }, { - "x": 618.4228748901428, - "y": 363.68100892942795 + "x": 618.42287, + "y": 363.68101 }, { - "x": 507.29249452423596, - "y": 337.7198415609393 + "x": 507.29249, + "y": 337.71984 }, { "category": 1, @@ -13672,16 +13672,16 @@ "y": 0 }, { - "x": 562.8661087871869, - "y": 349.2452402583576 + "x": 562.86611, + "y": 349.24524 }, { - "x": 0.4016175714701228, - "y": 0.985533926348082 + "x": 0.40162, + "y": 0.98553 }, { - "x": 562.8819977486963, - "y": 346.3348711112555 + "x": 562.882, + "y": 346.33487 }, { "endCol": 12, @@ -13704,8 +13704,8 @@ "yScale": 1 }, { - "x": -0.01608099944951391, - "y": 2.9103693125829295 + "x": -0.01608, + "y": 2.91037 }, [ { @@ -13725,43 +13725,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 507.3093426842312, - "y": 337.81557203251094 + "x": 507.30934, + "y": 337.81557 }, { "body": null, "index": 1, "isInternal": false, - "x": 618.4030943052813, - "y": 337.7198415609393 + "x": 618.40309, + "y": 337.71984 }, { "body": null, "index": 2, "isInternal": false, - "x": 618.4228748901428, - "y": 360.6749084842043 + "x": 618.42287, + "y": 360.67491 }, { "body": null, "index": 3, "isInternal": false, - "x": 507.3291232690927, - "y": 360.77063895577595 + "x": 507.32912, + "y": 360.77064 }, { - "angle": -0.004729738261435024, - "anglePrev": -0.004206631518666418, - "angularSpeed": 0.0005231067427686056, - "angularVelocity": -0.0005231067427686056, - "area": 5174.381305999998, + "angle": -0.00473, + "anglePrev": -0.00421, + "angularSpeed": 0.00052, + "angularVelocity": -0.00052, + "area": 5174.38131, "axes": { "#": 1559 }, "bounds": { "#": 1573 }, - "circleRadius": 40.782407407407405, + "circleRadius": 40.78241, "collisionFilter": { "#": 1576 }, @@ -13776,13 +13776,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17045.3242729355, - "inverseInertia": 0.000058667115039154525, - "inverseMass": 0.1932598200369272, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "inverseMass": 0.19326, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.174381305999998, + "mass": 5.17438, "motion": 0, "parent": null, "position": { @@ -13804,7 +13804,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8870283504437544, + "speed": 2.88703, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13858,56 +13858,56 @@ } ], { - "x": -0.9720600180423126, - "y": -0.234732446252279 + "x": -0.97206, + "y": -0.23473 }, { - "x": -0.8876332003447669, - "y": -0.4605510847297038 + "x": -0.88763, + "y": -0.46055 }, { - "x": -0.7516641253486183, - "y": -0.6595460883546321 + "x": -0.75166, + "y": -0.65955 }, { - "x": -0.5719636442468733, - "y": -0.8202789706312335 + "x": -0.57196, + "y": -0.82028 }, { - "x": -0.35898378520304075, - "y": -0.9333437962301442 + "x": -0.35898, + "y": -0.93334 }, { - "x": -0.12522269824437132, - "y": -0.9921286589169768 + "x": -0.12522, + "y": -0.99213 }, { - "x": 0.115832217923668, - "y": -0.9932687940788656 + "x": 0.11583, + "y": -0.99327 }, { - "x": 0.3501389120265041, - "y": -0.9366977859933776 + "x": 0.35014, + "y": -0.9367 }, { - "x": 0.5641787603546481, - "y": -0.8256526669033973 + "x": 0.56418, + "y": -0.82565 }, { - "x": 0.7453916278154858, - "y": -0.666626823029632 + "x": 0.74539, + "y": -0.66663 }, { - "x": 0.8832369799771378, - "y": -0.4689268996345435 + "x": 0.88324, + "y": -0.46893 }, { - "x": 0.9697961146273102, - "y": -0.24391698598862036 + "x": 0.9698, + "y": -0.24392 }, { - "x": 0.9999888148088406, - "y": -0.004729720627079677 + "x": 0.99999, + "y": -0.00473 }, { "max": { @@ -13918,12 +13918,12 @@ } }, { - "x": 654.6666797081068, - "y": 453.3228755775938 + "x": 654.66668, + "y": 453.32288 }, { - "x": 573.6323608862882, - "y": 368.87282024075637 + "x": 573.63236, + "y": 368.87282 }, { "category": 1, @@ -13940,16 +13940,16 @@ "y": 0 }, { - "x": 614.1588812339684, - "y": 409.6543640862906 + "x": 614.15888, + "y": 409.65436 }, { - "x": -0.8130450456858971, - "y": 1.8377065330412674 + "x": -0.81305, + "y": 1.83771 }, { - "x": 614.1776031075101, - "y": 406.7673964405216 + "x": 614.1776, + "y": 406.7674 }, { "endCol": 13, @@ -13972,8 +13972,8 @@ "yScale": 1 }, { - "x": -0.018721873541708192, - "y": 2.8869676457690123 + "x": -0.01872, + "y": 2.88697 }, [ { @@ -14059,190 +14059,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 654.6666797081068, - "y": 414.37882636030355 + "x": 654.66668, + "y": 414.37883 }, { "body": null, "index": 1, "isInternal": false, - "x": 652.3588559399677, - "y": 423.93584861910426 + "x": 652.35886, + "y": 423.93585 }, { "body": null, "index": 2, "isInternal": false, - "x": 647.831079263165, - "y": 432.66236134556027 + "x": 647.83108, + "y": 432.66236 }, { "body": null, "index": 3, "isInternal": false, - "x": 641.346958193521, - "y": 440.05211208250654 + "x": 641.34696, + "y": 440.05211 }, { "body": null, "index": 4, "isInternal": false, - "x": 633.2824641826047, - "y": 445.67531778280755 + "x": 633.28246, + "y": 445.67532 }, { "body": null, "index": 5, "isInternal": false, - "x": 624.1060548141731, - "y": 449.2047591129559 + "x": 624.10605, + "y": 449.20476 }, { "body": null, "index": 6, "isInternal": false, - "x": 614.3517687005818, - "y": 450.4359079318248 + "x": 614.35177, + "y": 450.43591 }, { "body": null, "index": 7, "isInternal": false, - "x": 604.5862731491045, - "y": 449.2970832595966 + "x": 604.58627, + "y": 449.29708 }, { "body": null, "index": 8, "isInternal": false, - "x": 595.3768881684609, - "y": 445.85460257289765 + "x": 595.37689, + "y": 445.8546 }, { "body": null, "index": 9, "isInternal": false, - "x": 587.2595631781403, - "y": 440.30793321178396 + "x": 587.25956, + "y": 440.30793 }, { "body": null, "index": 10, "isInternal": false, - "x": 580.7058300803068, - "y": 432.97984857237356 + "x": 580.70583, + "y": 432.97985 }, { "body": null, "index": 11, "isInternal": false, - "x": 576.0957089673865, - "y": 424.2965560330079 + "x": 576.09571, + "y": 424.29656 }, { "body": null, "index": 12, "isInternal": false, - "x": 573.6975853730353, - "y": 414.7617918394782 + "x": 573.69759, + "y": 414.76179 }, { "body": null, "index": 13, "isInternal": false, - "x": 573.6510827598299, - "y": 404.9299018122777 + "x": 573.65108, + "y": 404.9299 }, { "body": null, "index": 14, "isInternal": false, - "x": 575.958906527969, - "y": 395.372879553477 + "x": 575.95891, + "y": 395.37288 }, { "body": null, "index": 15, "isInternal": false, - "x": 580.4866832047718, - "y": 386.64636682702087 + "x": 580.48668, + "y": 386.64637 }, { "body": null, "index": 16, "isInternal": false, - "x": 586.9708042744157, - "y": 379.2566160900746 + "x": 586.9708, + "y": 379.25662 }, { "body": null, "index": 17, "isInternal": false, - "x": 595.035298285332, - "y": 373.6334103897736 + "x": 595.0353, + "y": 373.63341 }, { "body": null, "index": 18, "isInternal": false, - "x": 604.2117076537636, - "y": 370.10396905962534 + "x": 604.21171, + "y": 370.10397 }, { "body": null, "index": 19, "isInternal": false, - "x": 613.9659937673549, - "y": 368.87282024075637 + "x": 613.96599, + "y": 368.87282 }, { "body": null, "index": 20, "isInternal": false, - "x": 623.7314893188322, - "y": 370.01164491298465 + "x": 623.73149, + "y": 370.01164 }, { "body": null, "index": 21, "isInternal": false, - "x": 632.9408742994758, - "y": 373.4541255996836 + "x": 632.94087, + "y": 373.45413 }, { "body": null, "index": 22, "isInternal": false, - "x": 641.0581992897964, - "y": 379.0007949607972 + "x": 641.0582, + "y": 379.00079 }, { "body": null, "index": 23, "isInternal": false, - "x": 647.61193238763, - "y": 386.3288796002076 + "x": 647.61193, + "y": 386.32888 }, { "body": null, "index": 24, "isInternal": false, - "x": 652.2220535005503, - "y": 395.01217213957335 + "x": 652.22205, + "y": 395.01217 }, { "body": null, "index": 25, "isInternal": false, - "x": 654.6201770949015, - "y": 404.54693633310296 + "x": 654.62018, + "y": 404.54694 }, { - "angle": 0.013694963789867126, - "anglePrev": 0.01149399947001169, - "angularSpeed": 0.0022009643198554352, - "angularVelocity": 0.0022009643198554352, - "area": 1308.2034644955884, + "angle": 0.01369, + "anglePrev": 0.01149, + "angularSpeed": 0.0022, + "angularVelocity": 0.0022, + "area": 1308.20346, "axes": { "#": 1614 }, @@ -14263,13 +14263,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1149.8579054087725, - "inverseInertia": 0.0008696726745940854, - "inverseMass": 0.7644070873834413, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "inverseMass": 0.76441, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3082034644955884, + "mass": 1.3082, "motion": 0, "parent": null, "position": { @@ -14291,7 +14291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.766887659352146, + "speed": 2.76689, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14312,12 +14312,12 @@ } ], { - "x": -0.013694535707497619, - "y": 0.9999062254490447 + "x": -0.01369, + "y": 0.99991 }, { - "x": -0.9999062254490447, - "y": -0.013694535707497619 + "x": -0.99991, + "y": -0.01369 }, { "max": { @@ -14328,12 +14328,12 @@ } }, { - "x": 705.6711980256081, - "y": 358.55088888021436 + "x": 705.6712, + "y": 358.55089 }, { - "x": 666.7001308253062, - "y": 321.28243445358623 + "x": 666.70013, + "y": 321.28243 }, { "category": 1, @@ -14350,16 +14350,16 @@ "y": 0 }, { - "x": 686.182007383587, - "y": 338.5332226708063 + "x": 686.18201, + "y": 338.53322 }, { - "x": -0.2850622436133901, - "y": 0.842928081476599 + "x": -0.28506, + "y": 0.84293 }, { - "x": 686.1746932998467, - "y": 335.76634467861834 + "x": 686.17469, + "y": 335.76634 }, { "endCol": 14, @@ -14382,8 +14382,8 @@ "yScale": 1 }, { - "x": 0.007314083740330943, - "y": 2.7668779921879887 + "x": 0.00731, + "y": 2.76688 }, [ { @@ -14403,36 +14403,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 667.1654368418626, - "y": 321.28243445358623 + "x": 667.16544, + "y": 321.28243 }, { "body": null, "index": 1, "isInternal": false, - "x": 705.6638839418678, - "y": 321.8097022563819 + "x": 705.66388, + "y": 321.8097 }, { "body": null, "index": 2, "isInternal": false, - "x": 705.1985779253114, - "y": 355.7840108880264 + "x": 705.19858, + "y": 355.78401 }, { "body": null, "index": 3, "isInternal": false, - "x": 666.7001308253062, - "y": 355.2567430852307 + "x": 666.70013, + "y": 355.25674 }, { - "angle": -0.02536740234968998, - "anglePrev": -0.022903849378023824, - "angularSpeed": 0.0024635529716661533, - "angularVelocity": -0.0024635529716661533, - "area": 3803.7767479999993, + "angle": -0.02537, + "anglePrev": -0.0229, + "angularSpeed": 0.00246, + "angularVelocity": -0.00246, + "area": 3803.77675, "axes": { "#": 1636 }, @@ -14453,13 +14453,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 9247.768748441516, - "inverseInertia": 0.00010813419184692798, - "inverseMass": 0.2628966067805618, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "inverseMass": 0.2629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.8037767479999993, + "mass": 3.80378, "motion": 0, "parent": null, "position": { @@ -14481,7 +14481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7806870432933857, + "speed": 2.78069, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14517,32 +14517,32 @@ } ], { - "x": 0.6431184561037276, - "y": 0.7657667082204332 + "x": 0.64312, + "y": 0.76577 }, { - "x": -0.1977425915381009, - "y": 0.9802539811149946 + "x": -0.19774, + "y": 0.98025 }, { - "x": -0.8896662782156863, - "y": 0.4566113373601765 + "x": -0.88967, + "y": 0.45661 }, { - "x": -0.9116776641963065, - "y": -0.4109061165346246 + "x": -0.91168, + "y": -0.41091 }, { - "x": -0.24719981080003606, - "y": -0.9689645264613286 + "x": -0.2472, + "y": -0.96896 }, { - "x": 0.6034565743060056, - "y": -0.7973958633745604 + "x": 0.60346, + "y": -0.7974 }, { - "x": 0.9996782647027619, - "y": -0.025364681761754437 + "x": 0.99968, + "y": -0.02536 }, { "max": { @@ -14553,12 +14553,12 @@ } }, { - "x": 759.5907382982798, - "y": 431.6659065200382 + "x": 759.59074, + "y": 431.66591 }, { - "x": 688.2945687216442, - "y": 356.2108125787605 + "x": 688.29457, + "y": 356.21081 }, { "category": 1, @@ -14575,16 +14575,16 @@ "y": 0 }, { - "x": 725.5664338591007, - "y": 392.758546756361 + "x": 725.56643, + "y": 392.75855 }, { - "x": -0.40232965013989697, - "y": 1.0453732706684444 + "x": -0.40233, + "y": 1.04537 }, { - "x": 725.5327857501335, - "y": 389.97806330244464 + "x": 725.53279, + "y": 389.97806 }, { "endCol": 15, @@ -14607,8 +14607,8 @@ "yScale": 1 }, { - "x": 0.033648108967198595, - "y": 2.7804834539163585 + "x": 0.03365, + "y": 2.78048 }, [ { @@ -14637,57 +14637,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 759.5570901893126, - "y": 408.07831348537417 + "x": 759.55709, + "y": 408.07831 }, { "body": null, "index": 1, "isInternal": false, - "x": 734.7818848441542, - "y": 428.88542306612186 + "x": 734.78188, + "y": 428.88542 }, { "body": null, "index": 2, "isInternal": false, - "x": 703.067407310215, - "y": 422.4877923523912 + "x": 703.06741, + "y": 422.48779 }, { "body": null, "index": 3, "isInternal": false, - "x": 688.2945687216442, - "y": 393.70424001714196 + "x": 688.29457, + "y": 393.70424 }, { "body": null, "index": 4, "isInternal": false, - "x": 701.5886970928682, - "y": 364.2085488767497 + "x": 701.5887, + "y": 364.20855 }, { "body": null, "index": 5, "isInternal": false, - "x": 732.937923209438, - "y": 356.2108125787605 + "x": 732.93792, + "y": 356.21081 }, { "body": null, "index": 6, "isInternal": false, - "x": 758.7364412755926, - "y": 375.734722909181 + "x": 758.73644, + "y": 375.73472 }, { - "angle": 0.016883102366961524, - "anglePrev": 0.015469018388628191, - "angularSpeed": 0.0014140839783333336, - "angularVelocity": 0.0014140839783333336, - "area": 1519.5385669833, + "angle": 0.01688, + "anglePrev": 0.01547, + "angularSpeed": 0.00141, + "angularVelocity": 0.00141, + "area": 1519.53857, "axes": { "#": 1666 }, @@ -14708,13 +14708,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1623.6987742797708, - "inverseInertia": 0.0006158777821604092, - "inverseMass": 0.6580945174595165, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "inverseMass": 0.65809, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5195385669833, + "mass": 1.51954, "motion": 0, "parent": null, "position": { @@ -14736,7 +14736,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7299753672403977, + "speed": 2.72998, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14757,12 +14757,12 @@ } ], { - "x": -0.016882300320880235, - "y": 0.9998574838125062 + "x": -0.01688, + "y": 0.99986 }, { - "x": -0.9998574838125062, - "y": -0.016882300320880235 + "x": -0.99986, + "y": -0.01688 }, { "max": { @@ -14773,12 +14773,12 @@ } }, { - "x": 865.5032220133618, - "y": 391.26371704251216 + "x": 865.50322, + "y": 391.26372 }, { - "x": 831.6404369900313, - "y": 342.01761719846934 + "x": 831.64044, + "y": 342.01762 }, { "category": 1, @@ -14795,16 +14795,16 @@ "y": 0 }, { - "x": 848.5881969605357, - "y": 365.27577757084725 + "x": 848.5882, + "y": 365.27578 }, { - "x": -0.06700131070715622, - "y": 1.2270321192086358 + "x": -0.067, + "y": 1.22703 }, { - "x": 848.6209318782143, - "y": 362.54599847156027 + "x": 848.62093, + "y": 362.546 }, { "endCol": 18, @@ -14827,8 +14827,8 @@ "yScale": 1 }, { - "x": -0.032734917678600366, - "y": 2.729779099286959 + "x": -0.03273, + "y": 2.72978 }, [ { @@ -14848,36 +14848,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 832.449162847176, - "y": 342.01761719846934 + "x": 832.44916, + "y": 342.01762 }, { "body": null, "index": 1, "isInternal": false, - "x": 865.5032220133618, - "y": 342.57572529157454 + "x": 865.50322, + "y": 342.57573 }, { "body": null, "index": 2, "isInternal": false, - "x": 864.7272310738955, - "y": 388.53393794322517 + "x": 864.72723, + "y": 388.53394 }, { "body": null, "index": 3, "isInternal": false, - "x": 831.6731719077098, - "y": 387.97582985011996 + "x": 831.67317, + "y": 387.97583 }, { - "angle": 0.005622695580706375, - "anglePrev": 0.0051665836263583035, - "angularSpeed": 0.00045611195434807153, - "angularVelocity": 0.00045611195434807153, - "area": 3306.4800040000005, + "angle": 0.00562, + "anglePrev": 0.00517, + "angularSpeed": 0.00046, + "angularVelocity": 0.00046, + "area": 3306.48, "axes": { "#": 1688 }, @@ -14898,13 +14898,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 7288.540011234562, - "inverseInertia": 0.00013720168901571494, - "inverseMass": 0.302436427496992, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "inverseMass": 0.30244, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.3064800040000004, + "mass": 3.30648, "motion": 0, "parent": null, "position": { @@ -14926,7 +14926,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.860446570010434, + "speed": 2.86045, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14947,12 +14947,12 @@ } ], { - "x": 0.005622665954108971, - "y": -0.9999841926888491 + "x": 0.00562, + "y": -0.99998 }, { - "x": 0.9999841926888491, - "y": 0.005622665954108971 + "x": 0.99998, + "y": 0.00562 }, { "max": { @@ -14963,12 +14963,12 @@ } }, { - "x": 1018.5806250877922, - "y": 419.5421746393976 + "x": 1018.58063, + "y": 419.54217 }, { - "x": 960.7443365847234, - "y": 358.8573471659183 + "x": 960.74434, + "y": 358.85735 }, { "category": 1, @@ -14985,16 +14985,16 @@ "y": 0 }, { - "x": 989.6684222949483, - "y": 387.769549958762 + "x": 989.66842, + "y": 387.76955 }, { - "x": 2.963781537834867, - "y": 1.839518120240474 + "x": 2.96378, + "y": 1.83952 }, { - "x": 989.6803052123292, - "y": 384.9091280709701 + "x": 989.68031, + "y": 384.90913 }, { "endCol": 21, @@ -15017,8 +15017,8 @@ "yScale": 1 }, { - "x": -0.011882917380912659, - "y": 2.8604218877918997 + "x": -0.01188, + "y": 2.86042 }, [ { @@ -15038,29 +15038,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 1018.2573105500987, - "y": 416.6817527516057 + "x": 1018.25731, + "y": 416.68175 }, { "body": null, "index": 1, "isInternal": false, - "x": 960.7562195021044, - "y": 416.3584382139125 + "x": 960.75622, + "y": 416.35844 }, { "body": null, "index": 2, "isInternal": false, - "x": 961.0795340397979, - "y": 358.8573471659183 + "x": 961.07953, + "y": 358.85735 }, { "body": null, "index": 3, "isInternal": false, - "x": 1018.5806250877922, - "y": 359.1806617036115 + "x": 1018.58063, + "y": 359.18066 }, [], [], diff --git a/test/browser/refs/restitution/restitution-0.json b/test/browser/refs/restitution/restitution-0.json index 780a9adc..a804920f 100644 --- a/test/browser/refs/restitution/restitution-0.json +++ b/test/browser/refs/restitution/restitution-0.json @@ -859,8 +859,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 4, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1014,8 +1014,8 @@ "y": 175 }, { - "angle": -0.47123889803846897, - "anglePrev": -0.47123889803846897, + "angle": -0.47124, + "anglePrev": -0.47124, "angularSpeed": 0, "angularVelocity": 0, "area": 2500, @@ -1039,8 +1039,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1085,12 +1085,12 @@ } ], { - "x": 0.45399049973954675, - "y": 0.8910065241883679 + "x": 0.45399, + "y": 0.89101 }, { - "x": -0.8910065241883679, - "y": 0.45399049973954675 + "x": -0.89101, + "y": 0.45399 }, { "max": { @@ -1101,12 +1101,12 @@ } }, { - "x": 253.62492559819788, - "y": 183.62492559819788 + "x": 253.62493, + "y": 183.62493 }, { - "x": 186.37507440180212, - "y": 116.37507440180214 + "x": 186.37507, + "y": 116.37507 }, { "category": 1, @@ -1169,33 +1169,33 @@ "body": null, "index": 0, "isInternal": false, - "x": 186.37507440180212, - "y": 139.07459938877946 + "x": 186.37507, + "y": 139.0746 }, { "body": null, "index": 1, "isInternal": false, - "x": 230.92540061122054, - "y": 116.37507440180214 + "x": 230.9254, + "y": 116.37507 }, { "body": null, "index": 2, "isInternal": false, - "x": 253.62492559819788, - "y": 160.92540061122054 + "x": 253.62493, + "y": 160.9254 }, { "body": null, "index": 3, "isInternal": false, - "x": 209.07459938877946, - "y": 183.62492559819788 + "x": 209.0746, + "y": 183.62493 }, { - "angle": -0.7853981633974483, - "anglePrev": -0.7853981633974483, + "angle": -0.7854, + "anglePrev": -0.7854, "angularSpeed": 0, "angularVelocity": 0, "area": 2500, @@ -1219,8 +1219,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1265,12 +1265,12 @@ } ], { - "x": 0.7071067811865475, - "y": 0.7071067811865476 + "x": 0.70711, + "y": 0.70711 }, { - "x": -0.7071067811865476, - "y": 0.7071067811865475 + "x": -0.70711, + "y": 0.70711 }, { "max": { @@ -1281,12 +1281,12 @@ } }, { - "x": 375.3553390593274, - "y": 185.35533905932738 + "x": 375.35534, + "y": 185.35534 }, { - "x": 304.6446609406726, - "y": 114.64466094067262 + "x": 304.64466, + "y": 114.64466 }, { "category": 1, @@ -1349,7 +1349,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 304.6446609406726, + "x": 304.64466, "y": 150 }, { @@ -1357,13 +1357,13 @@ "index": 1, "isInternal": false, "x": 340, - "y": 114.64466094067262 + "y": 114.64466 }, { "body": null, "index": 2, "isInternal": false, - "x": 375.3553390593274, + "x": 375.35534, "y": 150 }, { @@ -1371,14 +1371,14 @@ "index": 3, "isInternal": false, "x": 340, - "y": 185.35533905932738 + "y": 185.35534 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1944.4530819999998, + "area": 1944.45308, "axes": { "#": 150 }, @@ -1400,13 +1400,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 2407.040215928269, - "inverseInertia": 0.0004154479818752644, - "inverseMass": 0.5142834297505565, + "inertia": 2407.04022, + "inverseInertia": 0.00042, + "inverseMass": 0.51428, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9444530819999999, + "mass": 1.94445, "motion": 0, "parent": null, "position": { @@ -1479,52 +1479,52 @@ } ], { - "x": -0.9709182366411434, - "y": -0.23941131501592125 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8855293211163864, - "y": -0.4645834924350539 + "x": -0.88553, + "y": -0.46458 }, { - "x": -0.748461108518164, - "y": -0.6631786856012194 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5679927261836174, - "y": -0.8230335734358 + "x": -0.56799, + "y": -0.82303 }, { - "x": -0.35473926289412316, - "y": -0.9349652696016757 + "x": -0.35474, + "y": -0.93497 }, { - "x": -0.1204602009454297, - "y": -0.9927181573781084 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.1204602009454297, - "y": -0.9927181573781084 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35473926289412316, - "y": -0.9349652696016757 + "x": 0.35474, + "y": -0.93497 }, { - "x": 0.5679927261836174, - "y": -0.8230335734358 + "x": 0.56799, + "y": -0.82303 }, { - "x": 0.748461108518164, - "y": -0.6631786856012194 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8855293211163864, - "y": -0.4645834924350539 + "x": 0.88553, + "y": -0.46458 }, { - "x": 0.9709182366411434, - "y": -0.23941131501592125 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -1852,8 +1852,8 @@ "y": 146.987 }, { - "angle": -1.5707963267948966, - "anglePrev": -1.5707963267948966, + "angle": -1.5708, + "anglePrev": -1.5708, "angularSpeed": 0, "angularVelocity": 0, "area": 3600, @@ -1878,8 +1878,8 @@ "frictionStatic": 0.5, "id": 8, "inertia": 39360, - "inverseInertia": 0.00002540650406504065, - "inverseMass": 0.2777777777777778, + "inverseInertia": 0.00003, + "inverseMass": 0.27778, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1924,10 +1924,10 @@ ], { "x": 1, - "y": 6.123233995736766e-17 + "y": 0 }, { - "x": -6.123233995736766e-17, + "x": 0, "y": 1 }, { diff --git a/test/browser/refs/restitution/restitution-10.json b/test/browser/refs/restitution/restitution-10.json index a7d3ec00..eb8d1a97 100644 --- a/test/browser/refs/restitution/restitution-10.json +++ b/test/browser/refs/restitution/restitution-10.json @@ -899,8 +899,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 4, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -927,7 +927,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -965,11 +965,11 @@ }, { "x": 125, - "y": 192.73575476702598 + "y": 192.73575 }, { "x": 75, - "y": 142.73575476702595 + "y": 142.73575 }, { "category": 1, @@ -987,7 +987,7 @@ }, { "x": 100, - "y": 167.73575476702598 + "y": 167.73575 }, { "x": 0, @@ -995,7 +995,7 @@ }, { "x": 100, - "y": 164.8284840519903 + "y": 164.82848 }, { "endCol": 2, @@ -1019,7 +1019,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -1040,32 +1040,32 @@ "index": 0, "isInternal": false, "x": 75, - "y": 142.73575476702595 + "y": 142.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 142.73575476702595 + "y": 142.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 192.73575476702598 + "y": 192.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 75, - "y": 192.73575476702598 + "y": 192.73575 }, { - "angle": -0.47123889803846897, - "anglePrev": -0.47123889803846897, + "angle": -0.47124, + "anglePrev": -0.47124, "angularSpeed": 0, "angularVelocity": 0, "area": 2500, @@ -1089,8 +1089,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1117,7 +1117,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1138,12 +1138,12 @@ } ], { - "x": 0.45399049973954675, - "y": 0.8910065241883679 + "x": 0.45399, + "y": 0.89101 }, { - "x": -0.8910065241883679, - "y": 0.45399049973954675 + "x": -0.89101, + "y": 0.45399 }, { "max": { @@ -1154,12 +1154,12 @@ } }, { - "x": 253.62492559819788, - "y": 201.36068036522386 + "x": 253.62493, + "y": 201.36068 }, { - "x": 186.37507440180212, - "y": 134.1108291688281 + "x": 186.37507, + "y": 134.11083 }, { "category": 1, @@ -1177,7 +1177,7 @@ }, { "x": 220, - "y": 167.73575476702598 + "y": 167.73575 }, { "x": 0, @@ -1185,7 +1185,7 @@ }, { "x": 220, - "y": 164.8284840519903 + "y": 164.82848 }, { "endCol": 5, @@ -1209,7 +1209,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -1229,33 +1229,33 @@ "body": null, "index": 0, "isInternal": false, - "x": 186.37507440180212, - "y": 156.81035415580544 + "x": 186.37507, + "y": 156.81035 }, { "body": null, "index": 1, "isInternal": false, - "x": 230.92540061122054, - "y": 134.1108291688281 + "x": 230.9254, + "y": 134.11083 }, { "body": null, "index": 2, "isInternal": false, - "x": 253.62492559819788, - "y": 178.66115537824652 + "x": 253.62493, + "y": 178.66116 }, { "body": null, "index": 3, "isInternal": false, - "x": 209.07459938877946, - "y": 201.36068036522386 + "x": 209.0746, + "y": 201.36068 }, { - "angle": -0.7853981633974483, - "anglePrev": -0.7853981633974483, + "angle": -0.7854, + "anglePrev": -0.7854, "angularSpeed": 0, "angularVelocity": 0, "area": 2500, @@ -1279,8 +1279,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 4166.666666666667, - "inverseInertia": 0.00023999999999999998, + "inertia": 4166.66667, + "inverseInertia": 0.00024, "inverseMass": 0.4, "isSleeping": false, "isStatic": false, @@ -1307,7 +1307,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1328,12 +1328,12 @@ } ], { - "x": 0.7071067811865475, - "y": 0.7071067811865476 + "x": 0.70711, + "y": 0.70711 }, { - "x": -0.7071067811865476, - "y": 0.7071067811865475 + "x": -0.70711, + "y": 0.70711 }, { "max": { @@ -1344,12 +1344,12 @@ } }, { - "x": 375.3553390593274, - "y": 203.09109382635336 + "x": 375.35534, + "y": 203.09109 }, { - "x": 304.6446609406726, - "y": 132.38041570769857 + "x": 304.64466, + "y": 132.38042 }, { "category": 1, @@ -1367,7 +1367,7 @@ }, { "x": 340, - "y": 167.73575476702598 + "y": 167.73575 }, { "x": 0, @@ -1375,7 +1375,7 @@ }, { "x": 340, - "y": 164.8284840519903 + "y": 164.82848 }, { "endCol": 7, @@ -1399,7 +1399,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -1419,36 +1419,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 304.6446609406726, - "y": 167.73575476702598 + "x": 304.64466, + "y": 167.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 132.38041570769857 + "y": 132.38042 }, { "body": null, "index": 2, "isInternal": false, - "x": 375.3553390593274, - "y": 167.73575476702598 + "x": 375.35534, + "y": 167.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 203.09109382635336 + "y": 203.09109 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1944.4530819999998, + "area": 1944.45308, "axes": { "#": 157 }, @@ -1470,13 +1470,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 2407.040215928269, - "inverseInertia": 0.0004154479818752644, - "inverseMass": 0.5142834297505565, + "inertia": 2407.04022, + "inverseInertia": 0.00042, + "inverseMass": 0.51428, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.9444530819999999, + "mass": 1.94445, "motion": 0, "parent": null, "position": { @@ -1498,7 +1498,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1552,52 +1552,52 @@ } ], { - "x": -0.9709182366411434, - "y": -0.23941131501592125 + "x": -0.97092, + "y": -0.23941 }, { - "x": -0.8855293211163864, - "y": -0.4645834924350539 + "x": -0.88553, + "y": -0.46458 }, { - "x": -0.748461108518164, - "y": -0.6631786856012194 + "x": -0.74846, + "y": -0.66318 }, { - "x": -0.5679927261836174, - "y": -0.8230335734358 + "x": -0.56799, + "y": -0.82303 }, { - "x": -0.35473926289412316, - "y": -0.9349652696016757 + "x": -0.35474, + "y": -0.93497 }, { - "x": -0.1204602009454297, - "y": -0.9927181573781084 + "x": -0.12046, + "y": -0.99272 }, { - "x": 0.1204602009454297, - "y": -0.9927181573781084 + "x": 0.12046, + "y": -0.99272 }, { - "x": 0.35473926289412316, - "y": -0.9349652696016757 + "x": 0.35474, + "y": -0.93497 }, { - "x": 0.5679927261836174, - "y": -0.8230335734358 + "x": 0.56799, + "y": -0.82303 }, { - "x": 0.748461108518164, - "y": -0.6631786856012194 + "x": 0.74846, + "y": -0.66318 }, { - "x": 0.8855293211163864, - "y": -0.4645834924350539 + "x": 0.88553, + "y": -0.46458 }, { - "x": 0.9709182366411434, - "y": -0.23941131501592125 + "x": 0.97092, + "y": -0.23941 }, { "x": 1, @@ -1613,11 +1613,11 @@ }, { "x": 484.818, - "y": 192.73575476702598 + "y": 192.73575 }, { "x": 435.182, - "y": 142.73575476702595 + "y": 142.73575 }, { "category": 1, @@ -1635,7 +1635,7 @@ }, { "x": 460, - "y": 167.73575476702598 + "y": 167.73575 }, { "x": 0, @@ -1643,7 +1643,7 @@ }, { "x": 460, - "y": 164.8284840519903 + "y": 164.82848 }, { "endCol": 10, @@ -1667,7 +1667,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -1754,186 +1754,186 @@ "index": 0, "isInternal": false, "x": 484.818, - "y": 170.74875476702599 + "y": 170.74875 }, { "body": null, "index": 1, "isInternal": false, "x": 483.375, - "y": 176.600754767026 + "y": 176.60075 }, { "body": null, "index": 2, "isInternal": false, "x": 480.575, - "y": 181.93775476702598 + "y": 181.93775 }, { "body": null, "index": 3, "isInternal": false, "x": 476.578, - "y": 186.44875476702597 + "y": 186.44875 }, { "body": null, "index": 4, "isInternal": false, "x": 471.618, - "y": 189.87175476702598 + "y": 189.87175 }, { "body": null, "index": 5, "isInternal": false, "x": 465.983, - "y": 192.00975476702598 + "y": 192.00975 }, { "body": null, "index": 6, "isInternal": false, "x": 460, - "y": 192.73575476702598 + "y": 192.73575 }, { "body": null, "index": 7, "isInternal": false, "x": 454.017, - "y": 192.00975476702598 + "y": 192.00975 }, { "body": null, "index": 8, "isInternal": false, "x": 448.382, - "y": 189.87175476702598 + "y": 189.87175 }, { "body": null, "index": 9, "isInternal": false, "x": 443.422, - "y": 186.44875476702597 + "y": 186.44875 }, { "body": null, "index": 10, "isInternal": false, "x": 439.425, - "y": 181.93775476702598 + "y": 181.93775 }, { "body": null, "index": 11, "isInternal": false, "x": 436.625, - "y": 176.600754767026 + "y": 176.60075 }, { "body": null, "index": 12, "isInternal": false, "x": 435.182, - "y": 170.74875476702599 + "y": 170.74875 }, { "body": null, "index": 13, "isInternal": false, "x": 435.182, - "y": 164.72275476702598 + "y": 164.72275 }, { "body": null, "index": 14, "isInternal": false, "x": 436.625, - "y": 158.87075476702597 + "y": 158.87075 }, { "body": null, "index": 15, "isInternal": false, "x": 439.425, - "y": 153.53375476702598 + "y": 153.53375 }, { "body": null, "index": 16, "isInternal": false, "x": 443.422, - "y": 149.022754767026 + "y": 149.02275 }, { "body": null, "index": 17, "isInternal": false, "x": 448.382, - "y": 145.59975476702598 + "y": 145.59975 }, { "body": null, "index": 18, "isInternal": false, "x": 454.017, - "y": 143.46175476702595 + "y": 143.46175 }, { "body": null, "index": 19, "isInternal": false, "x": 460, - "y": 142.73575476702595 + "y": 142.73575 }, { "body": null, "index": 20, "isInternal": false, "x": 465.983, - "y": 143.46175476702595 + "y": 143.46175 }, { "body": null, "index": 21, "isInternal": false, "x": 471.618, - "y": 145.59975476702598 + "y": 145.59975 }, { "body": null, "index": 22, "isInternal": false, "x": 476.578, - "y": 149.022754767026 + "y": 149.02275 }, { "body": null, "index": 23, "isInternal": false, "x": 480.575, - "y": 153.53375476702598 + "y": 153.53375 }, { "body": null, "index": 24, "isInternal": false, "x": 483.375, - "y": 158.87075476702597 + "y": 158.87075 }, { "body": null, "index": 25, "isInternal": false, "x": 484.818, - "y": 164.72275476702598 + "y": 164.72275 }, { - "angle": -1.5707963267948966, - "anglePrev": -1.5707963267948966, + "angle": -1.5708, + "anglePrev": -1.5708, "angularSpeed": 0, "angularVelocity": 0, "area": 3600, @@ -1958,8 +1958,8 @@ "frictionStatic": 0.5, "id": 8, "inertia": 39360, - "inverseInertia": 0.00002540650406504065, - "inverseMass": 0.2777777777777778, + "inverseInertia": 0.00003, + "inverseMass": 0.27778, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1985,7 +1985,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2007,10 +2007,10 @@ ], { "x": 1, - "y": 6.123233995736766e-17 + "y": 0 }, { - "x": -6.123233995736766e-17, + "x": 0, "y": 1 }, { @@ -2023,11 +2023,11 @@ }, { "x": 710, - "y": 257.735754767026 + "y": 257.73575 }, { "x": 690, - "y": 77.73575476702595 + "y": 77.73575 }, { "category": 1, @@ -2045,7 +2045,7 @@ }, { "x": 700, - "y": 167.73575476702598 + "y": 167.73575 }, { "x": 0, @@ -2053,7 +2053,7 @@ }, { "x": 700, - "y": 164.8284840519903 + "y": 164.82848 }, { "endCol": 14, @@ -2077,7 +2077,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2098,28 +2098,28 @@ "index": 0, "isInternal": false, "x": 690, - "y": 257.735754767026 + "y": 257.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 690, - "y": 77.73575476702595 + "y": 77.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 710, - "y": 77.73575476702595 + "y": 77.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 710, - "y": 257.735754767026 + "y": 257.73575 }, { "max": { diff --git a/test/browser/refs/rounded/rounded-0.json b/test/browser/refs/rounded/rounded-0.json index 9e64337e..c9c76149 100644 --- a/test/browser/refs/rounded/rounded-0.json +++ b/test/browser/refs/rounded/rounded-0.json @@ -844,7 +844,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 9588.945153381854, + "area": 9588.94515, "axes": { "#": 87 }, @@ -865,13 +865,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 4, - "inertia": 60085.09562738313, - "inverseInertia": 0.000016643062469293315, - "inverseMass": 0.10428675771988512, + "inertia": 60085.09563, + "inverseInertia": 0.00002, + "inverseMass": 0.10429, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 9.588945153381854, + "mass": 9.58895, "motion": 0, "parent": null, "position": { @@ -935,44 +935,44 @@ } ], { - "x": 0.985231289707376, - "y": 0.17122881118999972 + "x": 0.98523, + "y": 0.17123 }, { - "x": 0.8696860999134852, - "y": 0.4936051940744458 + "x": 0.86969, + "y": 0.49361 }, { - "x": 0.6521465393303176, - "y": 0.758092930477188 + "x": 0.65215, + "y": 0.75809 }, { - "x": 0.3581250435431537, - "y": 0.9336736331219889 + "x": 0.35813, + "y": 0.93367 }, { - "x": 0.00588602634665757, - "y": 0.9999826771968834 + "x": 0.00589, + "y": 0.99998 }, { - "x": -0.17122881118999983, - "y": 0.9852312897073758 + "x": -0.17123, + "y": 0.98523 }, { - "x": -0.4936051940744458, - "y": 0.8696860999134852 + "x": -0.49361, + "y": 0.86969 }, { - "x": -0.758092930477188, - "y": 0.6521465393303176 + "x": -0.75809, + "y": 0.65215 }, { - "x": -0.933673633121989, - "y": 0.3581250435431532 + "x": -0.93367, + "y": 0.35813 }, { - "x": -0.9999826771968834, - "y": 0.005886026346657681 + "x": -0.99998, + "y": 0.00589 }, { "max": { @@ -1106,29 +1106,29 @@ "body": null, "index": 1, "isInternal": false, - "x": 151.17277223126166, - "y": 163.25200070064858 + "x": 151.17277, + "y": 163.252 }, { "body": null, "index": 2, "isInternal": false, - "x": 154.55354945440473, - "y": 157.2953880207824 + "x": 154.55355, + "y": 157.29539 }, { "body": null, "index": 3, "isInternal": false, - "x": 159.74584350469084, - "y": 152.82873695473427 + "x": 159.74584, + "y": 152.82874 }, { "body": null, "index": 4, "isInternal": false, - "x": 166.14071655424794, - "y": 150.3758839362038 + "x": 166.14072, + "y": 150.37588 }, { "body": null, @@ -1141,29 +1141,29 @@ "body": null, "index": 6, "isInternal": false, - "x": 236.74799929935142, - "y": 151.17277223126163 + "x": 236.748, + "y": 151.17277 }, { "body": null, "index": 7, "isInternal": false, - "x": 242.70461197921762, - "y": 154.55354945440473 + "x": 242.70461, + "y": 154.55355 }, { "body": null, "index": 8, "isInternal": false, - "x": 247.17126304526576, - "y": 159.74584350469084 + "x": 247.17126, + "y": 159.74584 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.6241160637962, - "y": 166.14071655424794 + "x": 249.62412, + "y": 166.14072 }, { "body": null, @@ -1176,29 +1176,29 @@ "body": null, "index": 11, "isInternal": false, - "x": 248.82722776873837, - "y": 236.74799929935142 + "x": 248.82723, + "y": 236.748 }, { "body": null, "index": 12, "isInternal": false, - "x": 245.4464505455953, - "y": 242.7046119792176 + "x": 245.44645, + "y": 242.70461 }, { "body": null, "index": 13, "isInternal": false, - "x": 240.25415649530916, - "y": 247.17126304526573 + "x": 240.25416, + "y": 247.17126 }, { "body": null, "index": 14, "isInternal": false, - "x": 233.85928344575208, - "y": 249.6241160637962 + "x": 233.85928, + "y": 249.62412 }, { "body": null, @@ -1211,36 +1211,36 @@ "body": null, "index": 16, "isInternal": false, - "x": 163.25200070064858, - "y": 248.82722776873837 + "x": 163.252, + "y": 248.82723 }, { "body": null, "index": 17, "isInternal": false, - "x": 157.2953880207824, - "y": 245.44645054559527 + "x": 157.29539, + "y": 245.44645 }, { "body": null, "index": 18, "isInternal": false, - "x": 152.82873695473427, - "y": 240.25415649530916 + "x": 152.82874, + "y": 240.25416 }, { "body": null, "index": 19, "isInternal": false, - "x": 150.37588393620382, - "y": 233.85928344575206 + "x": 150.37588, + "y": 233.85928 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 8214.487209017081, + "area": 8214.48721, "axes": { "#": 132 }, @@ -1261,13 +1261,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 47166.24850616326, - "inverseInertia": 0.00002120160139234582, - "inverseMass": 0.12173614427231627, + "inertia": 47166.24851, + "inverseInertia": 0.00002, + "inverseMass": 0.12174, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 8.214487209017081, + "mass": 8.21449, "motion": 0, "parent": null, "position": { @@ -1331,36 +1331,36 @@ } ], { - "x": -0.9943512913863447, - "y": -0.10613910362495375 + "x": -0.99435, + "y": -0.10614 }, { - "x": -0.9495437964312047, - "y": -0.3136344666311641 + "x": -0.94954, + "y": -0.31363 }, { - "x": -0.861947923528713, - "y": -0.5069968216118718 + "x": -0.86195, + "y": -0.507 }, { - "x": -0.7355109211685835, - "y": -0.6775128669196929 + "x": -0.73551, + "y": -0.67751 }, { - "x": -0.5759302982638841, - "y": -0.8174988021652836 + "x": -0.57593, + "y": -0.8175 }, { - "x": -0.39039708279203406, - "y": -0.9206465759168768 + "x": -0.3904, + "y": -0.92065 }, { - "x": -0.18727177942404558, - "y": -0.9823081393490292 + "x": -0.18727, + "y": -0.98231 }, { - "x": -0.017420484163766337, - "y": -0.9998482518519998 + "x": -0.01742, + "y": -0.99985 }, { "x": -1, @@ -1379,12 +1379,12 @@ } }, { - "x": 343.5713760285394, - "y": 243.57692903410342 + "x": 343.57138, + "y": 243.57693 }, { - "x": 243.57137602853942, - "y": 143.57692903410342 + "x": 243.57138, + "y": 143.57693 }, { "category": 1, @@ -1468,85 +1468,85 @@ "body": null, "index": 0, "isInternal": false, - "x": 243.57137602853942, - "y": 233.57692903410342 + "x": 243.57138, + "y": 233.57693 }, { "body": null, "index": 1, "isInternal": false, - "x": 245.59916770583496, - "y": 214.57980917801237 + "x": 245.59917, + "y": 214.57981 }, { "body": null, "index": 2, "isInternal": false, - "x": 251.59116631357693, - "y": 196.43873824496058 + "x": 251.59117, + "y": 196.43874 }, { "body": null, "index": 3, "isInternal": false, - "x": 261.2773601871621, - "y": 179.97118984950964 + "x": 261.27736, + "y": 179.97119 }, { "body": null, "index": 4, "isInternal": false, - "x": 274.2212696972233, - "y": 165.91922527125413 + "x": 274.22127, + "y": 165.91923 }, { "body": null, "index": 5, "isInternal": false, - "x": 289.8396159109566, - "y": 154.91605466178163 + "x": 289.83962, + "y": 154.91605 }, { "body": null, "index": 6, "isInternal": false, - "x": 307.42860432913255, - "y": 147.45750330521986 + "x": 307.4286, + "y": 147.4575 }, { "body": null, "index": 7, "isInternal": false, - "x": 326.1956393000529, - "y": 143.87966872080258 + "x": 326.19564, + "y": 143.87967 }, { "body": null, "index": 8, "isInternal": false, - "x": 343.5713760285394, - "y": 143.57692903410342 + "x": 343.57138, + "y": 143.57693 }, { "body": null, "index": 9, "isInternal": false, - "x": 343.5713760285394, - "y": 243.57692903410342 + "x": 343.57138, + "y": 243.57693 }, { "body": null, "index": 10, "isInternal": false, - "x": 243.57137602853942, - "y": 243.57692903410342 + "x": 243.57138, + "y": 243.57693 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 34436.8864958818, + "area": 34436.8865, "axes": { "#": 168 }, @@ -1567,13 +1567,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 800773.108342094, - "inverseInertia": 0.0000012487931844644255, - "inverseMass": 0.0290386298459237, + "inertia": 800773.10834, + "inverseInertia": 0, + "inverseMass": 0.02904, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 34.4368864958818, + "mass": 34.43689, "motion": 0, "parent": null, "position": { @@ -1670,88 +1670,88 @@ } ], { - "x": -0.9959254456304784, - "y": -0.09018041220649242 + "x": -0.99593, + "y": -0.09018 }, { - "x": -0.9635279640111304, - "y": -0.2676076653770701 + "x": -0.96353, + "y": -0.26761 }, { - "x": -0.8997868917236918, - "y": -0.4363296339720893 + "x": -0.89979, + "y": -0.43633 }, { - "x": -0.8067757275695917, - "y": -0.5908577878005467 + "x": -0.80678, + "y": -0.59086 }, { - "x": -0.6875201272284797, - "y": -0.7261653218487751 + "x": -0.68752, + "y": -0.72617 }, { - "x": -0.5458994785973154, - "y": -0.8378506783831945 + "x": -0.5459, + "y": -0.83785 }, { - "x": -0.38652070519741333, - "y": -0.92228072974214 + "x": -0.38652, + "y": -0.92228 }, { - "x": -0.21456840282797746, - "y": -0.976708964076736 + "x": -0.21457, + "y": -0.97671 }, { - "x": -0.024318602313089417, - "y": -0.9997042590594168 + "x": -0.02432, + "y": -0.9997 }, { - "x": -0.17122881118999983, - "y": 0.9852312897073758 + "x": -0.17123, + "y": 0.98523 }, { - "x": -0.49360519407444736, - "y": 0.8696860999134843 + "x": -0.49361, + "y": 0.86969 }, { - "x": -0.7580929304771871, - "y": 0.6521465393303186 + "x": -0.75809, + "y": 0.65215 }, { - "x": -0.9336736331219894, - "y": 0.35812504354315255 + "x": -0.93367, + "y": 0.35813 }, { - "x": 0.9999965865029864, - "y": -0.0026128494743047972 + "x": 1, + "y": -0.00261 }, { - "x": 0.9905143415437621, - "y": 0.13740938540044337 + "x": 0.99051, + "y": 0.13741 }, { - "x": 0.9157053924984958, - "y": 0.40185026334341956 + "x": 0.91571, + "y": 0.40185 }, { - "x": 0.7717374669752792, - "y": 0.6359412567734382 + "x": 0.77174, + "y": 0.63594 }, { - "x": 0.5694837939147834, - "y": 0.8220025598916494 + "x": 0.56948, + "y": 0.822 }, { - "x": 0.3242196541358753, - "y": 0.9459818263962652 + "x": 0.32422, + "y": 0.94598 }, { - "x": 0.004995826079271555, - "y": 0.9999875207830274 + "x": 0.005, + "y": 0.99999 }, { - "x": -0.9999383856500578, - "y": 0.011100671311063171 + "x": -0.99994, + "y": 0.0111 }, { "max": { @@ -1762,12 +1762,12 @@ } }, { - "x": 491.60246120324047, - "y": 291.5891376305898 + "x": 491.60246, + "y": 291.58914 }, { - "x": 291.60246120324047, - "y": 91.58913763058976 + "x": 291.60246, + "y": 91.58914 }, { "category": 1, @@ -1893,183 +1893,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 291.60246120324047, - "y": 241.58913763058976 + "x": 291.60246, + "y": 241.58914 }, { "body": null, "index": 1, "isInternal": false, - "x": 294.0422132269603, - "y": 214.6452474664223 + "x": 294.04221, + "y": 214.64525 }, { "body": null, "index": 2, "isInternal": false, - "x": 301.2821040989567, - "y": 188.57784277632035 + "x": 301.2821, + "y": 188.57784 }, { "body": null, "index": 3, "isInternal": false, - "x": 313.08661997381006, - "y": 164.23489693822793 + "x": 313.08662, + "y": 164.2349 }, { "body": null, "index": 4, "isInternal": false, - "x": 329.071759631591, - "y": 142.40828663710226 + "x": 329.07176, + "y": 142.40829 }, { "body": null, "index": 5, "isInternal": false, - "x": 348.7175260479059, - "y": 123.80803209498488 + "x": 348.71753, + "y": 123.80803 }, { "body": null, "index": 6, "isInternal": false, - "x": 371.38484191113173, - "y": 109.03920009402026 + "x": 371.38484, + "y": 109.0392 }, { "body": null, "index": 7, "isInternal": false, - "x": 396.336338824607, - "y": 98.58222113770617 + "x": 396.33634, + "y": 98.58222 }, { "body": null, "index": 8, "isInternal": false, - "x": 422.76034392047205, - "y": 92.77726103365143 + "x": 422.76034, + "y": 92.77726 }, { "body": null, "index": 9, "isInternal": false, - "x": 471.60246120324047, - "y": 91.58913763058976 + "x": 471.60246, + "y": 91.58914 }, { "body": null, "index": 10, "isInternal": false, - "x": 478.3504605025919, - "y": 92.7619098618514 + "x": 478.35046, + "y": 92.76191 }, { "body": null, "index": 11, "isInternal": false, - "x": 484.30707318245805, - "y": 96.14268708499448 + "x": 484.30707, + "y": 96.14269 }, { "body": null, "index": 12, "isInternal": false, - "x": 488.7737242485062, - "y": 101.3349811352806 + "x": 488.77372, + "y": 101.33498 }, { "body": null, "index": 13, "isInternal": false, - "x": 491.22657726703665, - "y": 107.72985418483769 + "x": 491.22658, + "y": 107.72985 }, { "body": null, "index": 14, "isInternal": false, - "x": 491.60246120324047, - "y": 251.58913763058976 + "x": 491.60246, + "y": 251.58914 }, { "body": null, "index": 15, "isInternal": false, - "x": 490.09195406755026, - "y": 262.47761498273803 + "x": 490.09195, + "y": 262.47761 }, { "body": null, "index": 16, "isInternal": false, - "x": 485.6745142508282, - "y": 272.54373619802516 + "x": 485.67451, + "y": 272.54374 }, { "body": null, "index": 17, "isInternal": false, - "x": 478.68377047130633, - "y": 281.02725388023066 + "x": 478.68377, + "y": 281.02725 }, { "body": null, "index": 18, "isInternal": false, - "x": 469.6477011471221, - "y": 287.2874473296181 + "x": 469.6477, + "y": 287.28745 }, { "body": null, "index": 19, "isInternal": false, - "x": 459.2487586379142, - "y": 290.8515132023824 + "x": 459.24876, + "y": 290.85151 }, { "body": null, "index": 20, "isInternal": false, - "x": 311.60246120324047, - "y": 291.5891376305898 + "x": 311.60246, + "y": 291.58914 }, { "body": null, "index": 21, "isInternal": false, - "x": 304.85446190388905, - "y": 290.41636539932813 + "x": 304.85446, + "y": 290.41637 }, { "body": null, "index": 22, "isInternal": false, - "x": 298.8978492240228, - "y": 287.035588176185 + "x": 298.89785, + "y": 287.03559 }, { "body": null, "index": 23, "isInternal": false, - "x": 294.4311981579747, - "y": 281.8432941258989 + "x": 294.4312, + "y": 281.84329 }, { "body": null, "index": 24, "isInternal": false, - "x": 291.9783451394443, - "y": 275.4484210763418 + "x": 291.97835, + "y": 275.44842 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 29929.09118210141, + "area": 29929.09118, "axes": { "#": 229 }, @@ -2090,13 +2090,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 642055.6835937061, - "inverseInertia": 0.0000015574973098950116, - "inverseMass": 0.033412307574445604, + "inertia": 642055.68359, + "inverseInertia": 0, + "inverseMass": 0.03341, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 29.92909118210141, + "mass": 29.92909, "motion": 0, "parent": null, "position": { @@ -2172,60 +2172,60 @@ } ], { - "x": 0.9959254456304784, - "y": 0.09018041220649242 + "x": 0.99593, + "y": 0.09018 }, { - "x": 0.9635279640111304, - "y": 0.2676076653770701 + "x": 0.96353, + "y": 0.26761 }, { - "x": 0.8997868917236918, - "y": 0.4363296339720893 + "x": 0.89979, + "y": 0.43633 }, { - "x": 0.8067757275695916, - "y": 0.590857787800547 + "x": 0.80678, + "y": 0.59086 }, { - "x": 0.6875201272284799, - "y": 0.7261653218487749 + "x": 0.68752, + "y": 0.72617 }, { - "x": 0.5458994785973155, - "y": 0.8378506783831944 + "x": 0.5459, + "y": 0.83785 }, { - "x": 0.38652070519741333, - "y": 0.92228072974214 + "x": 0.38652, + "y": 0.92228 }, { - "x": 0.21456840282797746, - "y": 0.976708964076736 + "x": 0.21457, + "y": 0.97671 }, { - "x": 0.024318602313089417, - "y": 0.9997042590594168 + "x": 0.02432, + "y": 0.9997 }, { - "x": -0.17122881118999983, - "y": 0.9852312897073758 + "x": -0.17123, + "y": 0.98523 }, { - "x": -0.49360519407444736, - "y": 0.8696860999134843 + "x": -0.49361, + "y": 0.86969 }, { - "x": -0.7580929304771871, - "y": 0.6521465393303186 + "x": -0.75809, + "y": 0.65215 }, { - "x": -0.9336736331219894, - "y": 0.35812504354315255 + "x": -0.93367, + "y": 0.35813 }, { - "x": -0.9999383856500578, - "y": 0.011100671311063171 + "x": -0.99994, + "y": 0.0111 }, { "max": { @@ -2240,7 +2240,7 @@ "y": 300 }, { - "x": 99.99999999999997, + "x": 100, "y": 100 }, { @@ -2376,64 +2376,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 99.99999999999997, + "x": 100, "y": 250 }, { "body": null, "index": 1, "isInternal": false, - "x": 102.43975202371985, - "y": 223.05610983583253 + "x": 102.43975, + "y": 223.05611 }, { "body": null, "index": 2, "isInternal": false, - "x": 109.67964289571626, - "y": 196.9887051457306 + "x": 109.67964, + "y": 196.98871 }, { "body": null, "index": 3, "isInternal": false, - "x": 121.48415877056959, - "y": 172.64575930763817 + "x": 121.48416, + "y": 172.64576 }, { "body": null, "index": 4, "isInternal": false, - "x": 137.4692984283505, - "y": 150.8191490065125 + "x": 137.4693, + "y": 150.81915 }, { "body": null, "index": 5, "isInternal": false, - "x": 157.11506484466543, - "y": 132.21889446439513 + "x": 157.11506, + "y": 132.21889 }, { "body": null, "index": 6, "isInternal": false, - "x": 179.78238070789126, - "y": 117.4500624634305 + "x": 179.78238, + "y": 117.45006 }, { "body": null, "index": 7, "isInternal": false, - "x": 204.73387762136656, - "y": 106.99308350711641 + "x": 204.73388, + "y": 106.99308 }, { "body": null, "index": 8, "isInternal": false, - "x": 231.15788271723156, - "y": 101.18812340306167 + "x": 231.15788, + "y": 101.18812 }, { "body": null, @@ -2446,29 +2446,29 @@ "body": null, "index": 10, "isInternal": false, - "x": 286.74799929935136, - "y": 101.17277223126163 + "x": 286.748, + "y": 101.17277 }, { "body": null, "index": 11, "isInternal": false, - "x": 292.7046119792176, - "y": 104.55354945440472 + "x": 292.70461, + "y": 104.55355 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.17126304526573, - "y": 109.74584350469084 + "x": 297.17126, + "y": 109.74584 }, { "body": null, "index": 13, "isInternal": false, - "x": 299.6241160637962, - "y": 116.14071655424793 + "x": 299.62412, + "y": 116.14072 }, { "body": null, @@ -2481,99 +2481,99 @@ "body": null, "index": 15, "isInternal": false, - "x": 297.5602479762801, - "y": 176.94389016416747 + "x": 297.56025, + "y": 176.94389 }, { "body": null, "index": 16, "isInternal": false, - "x": 290.3203571042837, - "y": 203.0112948542694 + "x": 290.32036, + "y": 203.01129 }, { "body": null, "index": 17, "isInternal": false, - "x": 278.51584122943035, - "y": 227.35424069236183 + "x": 278.51584, + "y": 227.35424 }, { "body": null, "index": 18, "isInternal": false, - "x": 262.5307015716494, - "y": 249.1808509934875 + "x": 262.5307, + "y": 249.18085 }, { "body": null, "index": 19, "isInternal": false, - "x": 242.88493515533455, - "y": 267.78110553560487 + "x": 242.88494, + "y": 267.78111 }, { "body": null, "index": 20, "isInternal": false, - "x": 220.21761929210868, - "y": 282.5499375365695 + "x": 220.21762, + "y": 282.54994 }, { "body": null, "index": 21, "isInternal": false, - "x": 195.26612237863338, - "y": 293.0069164928836 + "x": 195.26612, + "y": 293.00692 }, { "body": null, "index": 22, "isInternal": false, - "x": 168.84211728276838, - "y": 298.8118765969383 + "x": 168.84212, + "y": 298.81188 }, { "body": null, "index": 23, "isInternal": false, - "x": 119.99999999999997, + "x": 120, "y": 300 }, { "body": null, "index": 24, "isInternal": false, - "x": 113.25200070064855, - "y": 298.82722776873834 + "x": 113.252, + "y": 298.82723 }, { "body": null, "index": 25, "isInternal": false, - "x": 107.29538802078237, - "y": 295.44645054559527 + "x": 107.29539, + "y": 295.44645 }, { "body": null, "index": 26, "isInternal": false, - "x": 102.82873695473423, - "y": 290.2541564953092 + "x": 102.82874, + "y": 290.25416 }, { "body": null, "index": 27, "isInternal": false, - "x": 100.37588393620376, - "y": 283.85928344575206 + "x": 100.37588, + "y": 283.85928 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 9624.853311907824, + "area": 9624.85331, "axes": { "#": 286 }, @@ -2594,13 +2594,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 129719.99535833277, - "inverseInertia": 0.000007708911777537797, - "inverseMass": 0.1038976873302375, + "inertia": 129719.99536, + "inverseInertia": 0.00001, + "inverseMass": 0.1039, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 9.624853311907824, + "mass": 9.62485, "motion": 0, "parent": null, "position": { @@ -2670,44 +2670,44 @@ } ], { - "x": -0.9871925448059895, - "y": -0.15953331777241575 + "x": -0.98719, + "y": -0.15953 }, { - "x": -0.8866928708824171, - "y": -0.4623589003429014 + "x": -0.88669, + "y": -0.46236 }, { - "x": -0.6959247433902944, - "y": -0.7181147203178283 + "x": -0.69592, + "y": -0.71811 }, { - "x": -0.4343090288149286, - "y": -0.9007639354957732 + "x": -0.43431, + "y": -0.90076 }, { - "x": -0.006600572580279341, - "y": -0.9999782159835345 + "x": -0.0066, + "y": -0.99998 }, { - "x": 0.1595333177724156, - "y": -0.9871925448059895 + "x": 0.15953, + "y": -0.98719 }, { - "x": 0.4623589003429023, - "y": -0.8866928708824167 + "x": 0.46236, + "y": -0.88669 }, { - "x": 0.7181147203178281, - "y": -0.6959247433902946 + "x": 0.71811, + "y": -0.69592 }, { - "x": 0.9007639354957722, - "y": -0.4343090288149308 + "x": 0.90076, + "y": -0.43431 }, { - "x": 0.9994792934199674, - "y": -0.032266732476692324 + "x": 0.99948, + "y": -0.03227 }, { "x": 0, @@ -2726,12 +2726,12 @@ } }, { - "x": 399.91236850730274, - "y": 224.24092826775853 + "x": 399.91237, + "y": 224.24093 }, { - "x": 199.91236850730274, - "y": 174.24092826775853 + "x": 199.91237, + "y": 174.24093 }, { "category": 1, @@ -2818,92 +2818,92 @@ "body": null, "index": 0, "isInternal": false, - "x": 199.91236850730274, - "y": 199.24092826775853 + "x": 199.91237, + "y": 199.24093 }, { "body": null, "index": 1, "isInternal": false, - "x": 201.18491248127646, - "y": 191.36642317010384 + "x": 201.18491, + "y": 191.36642 }, { "body": null, "index": 2, "isInternal": false, - "x": 204.87299494994193, - "y": 184.29357039325282 + "x": 204.87299, + "y": 184.29357 }, { "body": null, "index": 3, "isInternal": false, - "x": 210.60115614361757, - "y": 178.74241123160428 + "x": 210.60116, + "y": 178.74241 }, { "body": null, "index": 4, "isInternal": false, - "x": 217.78624910158652, - "y": 175.27807321633622 + "x": 217.78625, + "y": 175.27807 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.91236850730274, - "y": 174.24092826775853 + "x": 374.91237, + "y": 174.24093 }, { "body": null, "index": 6, "isInternal": false, - "x": 382.78687360495746, - "y": 175.51347224173225 + "x": 382.78687, + "y": 175.51347 }, { "body": null, "index": 7, "isInternal": false, - "x": 389.8597263818084, - "y": 179.2015547103977 + "x": 389.85973, + "y": 179.20155 }, { "body": null, "index": 8, "isInternal": false, - "x": 395.41088554345697, - "y": 184.92971590407336 + "x": 395.41089, + "y": 184.92972 }, { "body": null, "index": 9, "isInternal": false, - "x": 398.87522355872505, - "y": 192.1148088620423 + "x": 398.87522, + "y": 192.11481 }, { "body": null, "index": 10, "isInternal": false, - "x": 399.91236850730274, - "y": 224.24092826775853 + "x": 399.91237, + "y": 224.24093 }, { "body": null, "index": 11, "isInternal": false, - "x": 199.91236850730274, - "y": 224.24092826775853 + "x": 199.91237, + "y": 224.24093 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 13710.388476459668, + "area": 13710.38848, "axes": { "#": 325 }, @@ -2924,13 +2924,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 119782.82093625488, - "inverseInertia": 0.000008348442557820311, - "inverseMass": 0.0729373935477445, + "inertia": 119782.82094, + "inverseInertia": 0.00001, + "inverseMass": 0.07294, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 13.710388476459668, + "mass": 13.71039, "motion": 0, "parent": null, "position": { @@ -3036,100 +3036,100 @@ } ], { - "x": -0.9971460300900056, - "y": -0.07549698454734163 + "x": -0.99715, + "y": -0.0755 }, { - "x": -0.9744119195570308, - "y": -0.22476968439979306 + "x": -0.97441, + "y": -0.22477 }, { - "x": -0.9294620175397742, - "y": -0.36891782005060775 + "x": -0.92946, + "y": -0.36892 }, { - "x": -0.8633211448870096, - "y": -0.5046549323953774 + "x": -0.86332, + "y": -0.50465 }, { - "x": -0.7774972591739159, - "y": -0.628886326753133 + "x": -0.7775, + "y": -0.62889 }, { - "x": -0.7074224557631555, - "y": -0.7067909656199818 + "x": -0.70742, + "y": -0.70679 }, { - "x": -0.6517042899773278, - "y": -0.7584731494424489 + "x": -0.6517, + "y": -0.75847 }, { - "x": -0.5300771079435221, - "y": -0.8479494440320317 + "x": -0.53008, + "y": -0.84795 }, { - "x": -0.39636460319936184, - "y": -0.9180931877160469 + "x": -0.39636, + "y": -0.91809 }, { - "x": -0.2536153110353265, - "y": -0.9673051607473491 + "x": -0.25362, + "y": -0.96731 }, { - "x": -0.10508379807319355, - "y": -0.9944633705584698 + "x": -0.10508, + "y": -0.99446 }, { - "x": -0.00044650650719272813, - "y": -0.9999999003159645 + "x": -0.00045, + "y": -1 }, { - "x": 0.07549698454734163, - "y": -0.9971460300900056 + "x": 0.0755, + "y": -0.99715 }, { - "x": 0.22476968439979306, - "y": -0.9744119195570308 + "x": 0.22477, + "y": -0.97441 }, { - "x": 0.36891782005060775, - "y": -0.9294620175397742 + "x": 0.36892, + "y": -0.92946 }, { - "x": 0.5046549323953774, - "y": -0.8633211448870096 + "x": 0.50465, + "y": -0.86332 }, { - "x": 0.628886326753133, - "y": -0.7774972591739159 + "x": 0.62889, + "y": -0.7775 }, { - "x": 0.7067909656199818, - "y": -0.7074224557631555 + "x": 0.70679, + "y": -0.70742 }, { - "x": 0.7584731494424489, - "y": -0.6517042899773278 + "x": 0.75847, + "y": -0.6517 }, { - "x": 0.8479494440320317, - "y": -0.5300771079435221 + "x": 0.84795, + "y": -0.53008 }, { - "x": 0.9180931877160469, - "y": -0.39636460319936184 + "x": 0.91809, + "y": -0.39636 }, { - "x": 0.9673051607473491, - "y": -0.2536153110353265 + "x": 0.96731, + "y": -0.25362 }, { - "x": 0.9944633705584698, - "y": -0.10508379807319355 + "x": 0.99446, + "y": -0.10508 }, { - "x": 0.9999999003159645, - "y": -0.00044650650719272813 + "x": 1, + "y": -0.00045 }, { "max": { @@ -3140,12 +3140,12 @@ } }, { - "x": 264.7131110537087, - "y": 164.7131110537087 + "x": 264.71311, + "y": 164.71311 }, { - "x": 135.2868889462913, - "y": 35.2868889462913 + "x": 135.28689, + "y": 35.28689 }, { "category": 1, @@ -3340,344 +3340,344 @@ "body": null, "index": 0, "isInternal": false, - "x": 264.7131110537087, - "y": 114.37911699561408 + "x": 264.71311, + "y": 114.37912 }, { "body": null, "index": 1, "isInternal": false, - "x": 264.3711233731642, - "y": 118.89600810112297 + "x": 264.37112, + "y": 118.89601 }, { "body": null, "index": 2, "isInternal": false, - "x": 263.35295736977366, - "y": 123.30991779913552 + "x": 263.35296, + "y": 123.30992 }, { "body": null, "index": 3, "isInternal": false, - "x": 261.6818263921977, - "y": 127.52021257366798 + "x": 261.68183, + "y": 127.52021 }, { "body": null, "index": 4, "isInternal": false, - "x": 259.3958308542301, - "y": 131.43090116176364 + "x": 259.39583, + "y": 131.4309 }, { "body": null, "index": 5, "isInternal": false, - "x": 256.54708957665514, - "y": 134.95282307545085 + "x": 256.54709, + "y": 134.95282 }, { "body": null, "index": 6, "isInternal": false, - "x": 235.5923204312105, - "y": 155.92631448930513 + "x": 235.59232, + "y": 155.92631 }, { "body": null, "index": 7, "isInternal": false, - "x": 232.1565742926287, - "y": 158.87841701189637 + "x": 232.15657, + "y": 158.87842 }, { "body": null, "index": 8, "isInternal": false, - "x": 228.31551672824793, - "y": 161.27957040553508 + "x": 228.31552, + "y": 161.27957 }, { "body": null, "index": 9, "isInternal": false, - "x": 224.15672069588686, - "y": 163.0750303449064 + "x": 224.15672, + "y": 163.07503 }, { "body": null, "index": 10, "isInternal": false, - "x": 219.77500332947648, - "y": 164.2238618179986 + "x": 219.775, + "y": 164.22386 }, { "body": null, "index": 11, "isInternal": false, - "x": 215.2702641862795, - "y": 164.69987241075705 + "x": 215.27026, + "y": 164.69987 }, { "body": null, "index": 12, "isInternal": false, - "x": 185.62088300438592, - "y": 164.7131110537087 + "x": 185.62088, + "y": 164.71311 }, { "body": null, "index": 13, "isInternal": false, - "x": 181.10399189887704, - "y": 164.3711233731642 + "x": 181.10399, + "y": 164.37112 }, { "body": null, "index": 14, "isInternal": false, - "x": 176.69008220086448, - "y": 163.3529573697737 + "x": 176.69008, + "y": 163.35296 }, { "body": null, "index": 15, "isInternal": false, - "x": 172.47978742633202, - "y": 161.6818263921977 + "x": 172.47979, + "y": 161.68183 }, { "body": null, "index": 16, "isInternal": false, - "x": 168.56909883823636, - "y": 159.3958308542301 + "x": 168.5691, + "y": 159.39583 }, { "body": null, "index": 17, "isInternal": false, - "x": 165.04717692454915, - "y": 156.54708957665517 + "x": 165.04718, + "y": 156.54709 }, { "body": null, "index": 18, "isInternal": false, - "x": 144.07368551069487, - "y": 135.5923204312105 + "x": 144.07369, + "y": 135.59232 }, { "body": null, "index": 19, "isInternal": false, - "x": 141.12158298810363, - "y": 132.1565742926287 + "x": 141.12158, + "y": 132.15657 }, { "body": null, "index": 20, "isInternal": false, - "x": 138.72042959446492, - "y": 128.31551672824793 + "x": 138.72043, + "y": 128.31552 }, { "body": null, "index": 21, "isInternal": false, - "x": 136.9249696550936, - "y": 124.15672069588686 + "x": 136.92497, + "y": 124.15672 }, { "body": null, "index": 22, "isInternal": false, - "x": 135.7761381820014, - "y": 119.77500332947649 + "x": 135.77614, + "y": 119.775 }, { "body": null, "index": 23, "isInternal": false, - "x": 135.30012758924295, - "y": 115.2702641862795 + "x": 135.30013, + "y": 115.27026 }, { "body": null, "index": 24, "isInternal": false, - "x": 135.2868889462913, - "y": 85.62088300438592 + "x": 135.28689, + "y": 85.62088 }, { "body": null, "index": 25, "isInternal": false, - "x": 135.6288766268358, - "y": 81.10399189887704 + "x": 135.62888, + "y": 81.10399 }, { "body": null, "index": 26, "isInternal": false, - "x": 136.6470426302263, - "y": 76.6900822008645 + "x": 136.64704, + "y": 76.69008 }, { "body": null, "index": 27, "isInternal": false, - "x": 138.3181736078023, - "y": 72.47978742633202 + "x": 138.31817, + "y": 72.47979 }, { "body": null, "index": 28, "isInternal": false, - "x": 140.6041691457699, - "y": 68.56909883823636 + "x": 140.60417, + "y": 68.5691 }, { "body": null, "index": 29, "isInternal": false, - "x": 143.45291042334483, - "y": 65.04717692454915 + "x": 143.45291, + "y": 65.04718 }, { "body": null, "index": 30, "isInternal": false, - "x": 164.4076795687895, - "y": 44.07368551069487 + "x": 164.40768, + "y": 44.07369 }, { "body": null, "index": 31, "isInternal": false, - "x": 167.8434257073713, - "y": 41.12158298810361 + "x": 167.84343, + "y": 41.12158 }, { "body": null, "index": 32, "isInternal": false, - "x": 171.68448327175207, - "y": 38.72042959446492 + "x": 171.68448, + "y": 38.72043 }, { "body": null, "index": 33, "isInternal": false, - "x": 175.84327930411314, - "y": 36.9249696550936 + "x": 175.84328, + "y": 36.92497 }, { "body": null, "index": 34, "isInternal": false, - "x": 180.2249966705235, - "y": 35.776138182001404 + "x": 180.225, + "y": 35.77614 }, { "body": null, "index": 35, "isInternal": false, - "x": 184.7297358137205, - "y": 35.30012758924293 + "x": 184.72974, + "y": 35.30013 }, { "body": null, "index": 36, "isInternal": false, - "x": 214.37911699561408, - "y": 35.2868889462913 + "x": 214.37912, + "y": 35.28689 }, { "body": null, "index": 37, "isInternal": false, - "x": 218.89600810112296, - "y": 35.62887662683579 + "x": 218.89601, + "y": 35.62888 }, { "body": null, "index": 38, "isInternal": false, - "x": 223.30991779913552, - "y": 36.64704263022631 + "x": 223.30992, + "y": 36.64704 }, { "body": null, "index": 39, "isInternal": false, - "x": 227.52021257366798, - "y": 38.31817360780229 + "x": 227.52021, + "y": 38.31817 }, { "body": null, "index": 40, "isInternal": false, - "x": 231.43090116176364, - "y": 40.604169145769895 + "x": 231.4309, + "y": 40.60417 }, { "body": null, "index": 41, "isInternal": false, - "x": 234.95282307545085, - "y": 43.45291042334483 + "x": 234.95282, + "y": 43.45291 }, { "body": null, "index": 42, "isInternal": false, - "x": 255.92631448930513, - "y": 64.40767956878949 + "x": 255.92631, + "y": 64.40768 }, { "body": null, "index": 43, "isInternal": false, - "x": 258.8784170118964, - "y": 67.84342570737128 + "x": 258.87842, + "y": 67.84343 }, { "body": null, "index": 44, "isInternal": false, - "x": 261.2795704055351, - "y": 71.68448327175207 + "x": 261.27957, + "y": 71.68448 }, { "body": null, "index": 45, "isInternal": false, - "x": 263.0750303449064, - "y": 75.84327930411314 + "x": 263.07503, + "y": 75.84328 }, { "body": null, "index": 46, "isInternal": false, - "x": 264.22386181799857, - "y": 80.22499667052351 + "x": 264.22386, + "y": 80.225 }, { "body": null, "index": 47, "isInternal": false, - "x": 264.69987241075705, - "y": 84.72973581372051 + "x": 264.69987, + "y": 84.72974 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 13066.632527319482, + "area": 13066.63253, "axes": { "#": 412 }, @@ -3698,13 +3698,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 110539.49232807996, - "inverseInertia": 0.000009046540552511418, - "inverseMass": 0.07653081219734448, + "inertia": 110539.49233, + "inverseInertia": 0.00001, + "inverseMass": 0.07653, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 13.066632527319483, + "mass": 13.06663, "motion": 0, "parent": null, "position": { @@ -3813,104 +3813,104 @@ } ], { - "x": 0.9852707412573999, - "y": 0.17100165619693286 + "x": 0.98527, + "y": 0.171 }, { - "x": 0.8700273019605039, - "y": 0.4930035434389151 + "x": 0.87003, + "y": 0.493 }, { - "x": 0.6530200181063557, - "y": 0.7573406472337101 + "x": 0.65302, + "y": 0.75734 }, { - "x": 0.23762099552753094, - "y": 0.9713579476611622 + "x": 0.23762, + "y": 0.97136 }, { - "x": 0.20247809930910418, - "y": 0.9792867911394355 + "x": 0.20248, + "y": 0.97929 }, { - "x": -0.016665201265837752, - "y": 0.9998611258903753 + "x": -0.01667, + "y": 0.99986 }, { - "x": -0.23500112134456125, - "y": 0.971995099250402 + "x": -0.235, + "y": 0.972 }, { - "x": -0.4419519210796343, - "y": 0.8970387391044049 + "x": -0.44195, + "y": 0.89704 }, { - "x": -0.6274914365671667, - "y": 0.7786234629362728 + "x": -0.62749, + "y": 0.77862 }, { - "x": -0.7681066721093087, - "y": 0.6403219036243901 + "x": -0.76811, + "y": 0.64032 }, { - "x": -0.882023374024845, - "y": 0.4712056532702346 + "x": -0.88202, + "y": 0.47121 }, { - "x": -0.9769050115454153, - "y": 0.2136740471312598 + "x": -0.97691, + "y": 0.21367 }, { - "x": -0.9982012270031646, - "y": -0.05995256799651139 + "x": -0.9982, + "y": -0.05995 }, { - "x": -0.9443078818336689, - "y": -0.32906325274452863 + "x": -0.94431, + "y": -0.32906 }, { - "x": -0.7749578855137619, - "y": -0.6320128761979771 + "x": -0.77496, + "y": -0.63201 }, { - "x": -0.7394148631596882, - "y": -0.6732500725128365 + "x": -0.73941, + "y": -0.67325 }, { - "x": -0.5742167013034446, - "y": -0.8187033528355618 + "x": -0.57422, + "y": -0.8187 }, { - "x": -0.38119941156274884, - "y": -0.9244928386008268 + "x": -0.3812, + "y": -0.92449 }, { - "x": -0.16971411983661813, - "y": -0.9854933371302323 + "x": -0.16971, + "y": -0.98549 }, { - "x": 0.049993327032013764, - "y": -0.9987495518158044 + "x": 0.04999, + "y": -0.99875 }, { - "x": 0.2304290041212861, - "y": -0.9730891398323549 + "x": 0.23043, + "y": -0.97309 }, { - "x": 0.46710240428462, - "y": -0.8842032254586767 + "x": 0.4671, + "y": -0.8842 }, { - "x": 0.7377310900533464, - "y": -0.6750946887427728 + "x": 0.73773, + "y": -0.67509 }, { - "x": 0.9220701251363203, - "y": -0.3870228472985681 + "x": 0.92207, + "y": -0.38702 }, { - "x": 0.9999949443705629, - "y": -0.003179816553623718 + "x": 0.99999, + "y": -0.00318 }, { "max": { @@ -3921,12 +3921,12 @@ } }, { - "x": 360.9615162474207, - "y": 162.13746754057453 + "x": 360.96152, + "y": 162.13747 }, { - "x": 226.02633839265098, - "y": 37.81506731361663 + "x": 226.02634, + "y": 37.81507 }, { "category": 1, @@ -4052,183 +4052,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 360.9615162474207, - "y": 138.73802057532725 + "x": 360.96152, + "y": 138.73802 }, { "body": null, "index": 1, "isInternal": false, - "x": 360.3766849189788, - "y": 142.10767914647516 + "x": 360.37668, + "y": 142.10768 }, { "body": null, "index": 2, "isInternal": false, - "x": 358.6905964701986, - "y": 145.08320133791105 + "x": 358.6906, + "y": 145.0832 }, { "body": null, "index": 3, "isInternal": false, - "x": 356.10046637055416, - "y": 147.3165514304298 + "x": 356.10047, + "y": 147.31655 }, { "body": null, "index": 4, "isInternal": false, - "x": 302.8021447241981, - "y": 160.3547936974005 + "x": 302.80214, + "y": 160.35479 }, { "body": null, "index": 5, "isInternal": false, - "x": 294.18022979370966, - "y": 162.13746754057453 + "x": 294.18023, + "y": 162.13747 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.377172663021, - "y": 161.99074244541998 + "x": 285.37717, + "y": 161.99074 }, { "body": null, "index": 7, "isInternal": false, - "x": 276.8194558282645, - "y": 159.92172681574453 + "x": 276.81946, + "y": 159.92173 }, { "body": null, "index": 8, "isInternal": false, - "x": 268.9216757623128, - "y": 156.0306584368063 + "x": 268.92168, + "y": 156.03066 }, { "body": null, "index": 9, "isInternal": false, - "x": 262.0664569223775, - "y": 150.50604824636642 + "x": 262.06646, + "y": 150.50605 }, { "body": null, "index": 10, "isInternal": false, - "x": 229.78569923558422, - "y": 111.78323520557676 + "x": 229.7857, + "y": 111.78324 }, { "body": null, "index": 11, "isInternal": false, - "x": 227.19921276090196, - "y": 106.94173657024413 + "x": 227.19921, + "y": 106.94174 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.02633839265098, - "y": 101.57942484525631 + "x": 226.02634, + "y": 101.57942 }, { "body": null, "index": 13, "isInternal": false, - "x": 226.3554229551329, - "y": 96.10021644710444 + "x": 226.35542, + "y": 96.10022 }, { "body": null, "index": 14, "isInternal": false, - "x": 228.16167813613887, - "y": 90.91683304041621 + "x": 228.16168, + "y": 90.91683 }, { "body": null, "index": 15, "isInternal": false, - "x": 258.08058268124955, - "y": 54.231044069395146 + "x": 258.08058, + "y": 54.23104 }, { "body": null, "index": 16, "isInternal": false, - "x": 264.00806470660893, - "y": 47.72102871313383 + "x": 264.00806, + "y": 47.72103 }, { "body": null, "index": 17, "isInternal": false, - "x": 271.21615811226053, - "y": 42.6654641991435 + "x": 271.21616, + "y": 42.66546 }, { "body": null, "index": 18, "isInternal": false, - "x": 279.3556517523082, - "y": 39.30927791358958 + "x": 279.35565, + "y": 39.30928 }, { "body": null, "index": 19, "isInternal": false, - "x": 288.032210850398, - "y": 37.81506731361663 + "x": 288.03221, + "y": 37.81507 }, { "body": null, "index": 20, "isInternal": false, - "x": 296.82548137189656, - "y": 38.255222553799726 + "x": 296.82548, + "y": 38.25522 }, { "body": null, "index": 21, "isInternal": false, - "x": 354.05173740886585, - "y": 51.806487950164524 + "x": 354.05174, + "y": 51.80649 }, { "body": null, "index": 22, "isInternal": false, - "x": 357.0757417282279, - "y": 53.40399364508931 + "x": 357.07574, + "y": 53.40399 }, { "body": null, "index": 23, "isInternal": false, - "x": 359.38458792552325, - "y": 55.92705840963112 + "x": 359.38459, + "y": 55.92706 }, { "body": null, "index": 24, "isInternal": false, - "x": 360.70821888300543, - "y": 59.08056878019159 + "x": 360.70822, + "y": 59.08057 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3901.768915155755, + "area": 3901.76892, "axes": { "#": 477 }, @@ -4249,13 +4249,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 10483.195717051358, - "inverseInertia": 0.00009539075936295437, - "inverseMass": 0.2562940096517943, + "inertia": 10483.19572, + "inverseInertia": 0.0001, + "inverseMass": 0.25629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.9017689151557553, + "mass": 3.90177, "motion": 0, "parent": null, "position": { @@ -4322,48 +4322,48 @@ } ], { - "x": 0.9737949578896212, - "y": 0.22742774674333552 + "x": 0.97379, + "y": 0.22743 }, { - "x": 0.7723230913374028, - "y": 0.635229913170844 + "x": 0.77232, + "y": 0.63523 }, { - "x": 0.41106258187586037, - "y": 0.9116071268817239 + "x": 0.41106, + "y": 0.91161 }, { - "x": -0.0352441120717713, - "y": 0.9993787332959775 + "x": -0.03524, + "y": 0.99938 }, { - "x": -0.5651881595455647, - "y": 0.8249620259802855 + "x": -0.56519, + "y": 0.82496 }, { - "x": -0.5791090852858076, - "y": -0.8152500642989458 + "x": -0.57911, + "y": -0.81525 }, { - "x": -0.28993668690197577, - "y": -0.9570458283636714 + "x": -0.28994, + "y": -0.95705 }, { - "x": 0.1639663617104109, - "y": -0.9864659305964147 + "x": 0.16397, + "y": -0.98647 }, { - "x": 0.5839458325943148, - "y": -0.8117926241323781 + "x": 0.58395, + "y": -0.81179 }, { - "x": 0.8831106947097263, - "y": -0.469164684188084 + "x": 0.88311, + "y": -0.46916 }, { - "x": 0.9998783521980776, - "y": -0.01559746151324524 + "x": 0.99988, + "y": -0.0156 }, { "max": { @@ -4374,12 +4374,12 @@ } }, { - "x": 430.247000636594, - "y": 238.62609373415896 + "x": 430.247, + "y": 238.62609 }, { - "x": 349.3891693516501, - "y": 161.4316201785845 + "x": 349.38917, + "y": 161.43162 }, { "category": 1, @@ -4463,78 +4463,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 430.247000636594, - "y": 219.00198452415512 + "x": 430.247, + "y": 219.00198 }, { "body": null, "index": 1, "isInternal": false, - "x": 428.178065437044, - "y": 227.86070424666946 + "x": 428.17807, + "y": 227.8607 }, { "body": null, "index": 2, "isInternal": false, - "x": 422.39930912438757, - "y": 234.88661226349797 + "x": 422.39931, + "y": 234.88661 }, { "body": null, "index": 3, "isInternal": false, - "x": 414.1063189331125, - "y": 238.62609373415896 + "x": 414.10632, + "y": 238.62609 }, { "body": null, "index": 4, "isInternal": false, - "x": 405.01486079484397, - "y": 238.30547417438086 + "x": 405.01486, + "y": 238.30547 }, { "body": null, "index": 5, "isInternal": false, - "x": 349.3891693516501, - "y": 200.19586284667164 + "x": 349.38917, + "y": 200.19586 }, { "body": null, "index": 6, "isInternal": false, - "x": 400.2470474348495, - "y": 164.06920607459827 + "x": 400.24705, + "y": 164.06921 }, { "body": null, "index": 7, "isInternal": false, - "x": 408.9533984858439, - "y": 161.4316201785845 + "x": 408.9534, + "y": 161.43162 }, { "body": null, "index": 8, "isInternal": false, - "x": 417.9273874392283, - "y": 162.92324018600456 + "x": 417.92739, + "y": 162.92324 }, { "body": null, "index": 9, "isInternal": false, - "x": 425.3123541323998, - "y": 168.23545958308802 + "x": 425.31235, + "y": 168.23546 }, { "body": null, "index": 10, "isInternal": false, - "x": 429.58039681145755, - "y": 176.269214599999 + "x": 429.5804, + "y": 176.26921 }, { "max": { diff --git a/test/browser/refs/rounded/rounded-10.json b/test/browser/refs/rounded/rounded-10.json index baf06173..fd1da803 100644 --- a/test/browser/refs/rounded/rounded-10.json +++ b/test/browser/refs/rounded/rounded-10.json @@ -880,11 +880,11 @@ "y": 605.25 }, { - "angle": 0.00009492497495414449, - "anglePrev": 0.00008021639895148107, - "angularSpeed": 0.000014708576002663418, - "angularVelocity": 0.000014708576002663418, - "area": 9588.945153381854, + "angle": 0.00009, + "anglePrev": 0.00008, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 9588.94515, "axes": { "#": 91 }, @@ -905,13 +905,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 4, - "inertia": 60085.09562738313, - "inverseInertia": 0.000016643062469293315, - "inverseMass": 0.10428675771988512, + "inertia": 60085.09563, + "inverseInertia": 0.00002, + "inverseMass": 0.10429, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 9.588945153381854, + "mass": 9.58895, "motion": 0, "parent": null, "position": { @@ -933,7 +933,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9064524803558163, + "speed": 2.90645, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -978,44 +978,44 @@ } ], { - "x": 0.9852150313779499, - "y": 0.1713223334739087 + "x": 0.98522, + "y": 0.17132 }, { - "x": 0.8696392405346086, - "y": 0.4936877467816973 + "x": 0.86964, + "y": 0.49369 }, { - "x": 0.6520745744398222, - "y": 0.758154832055514 + "x": 0.65207, + "y": 0.75815 }, { - "x": 0.3580364129835595, - "y": 0.9337076239261763 + "x": 0.35804, + "y": 0.93371 }, { - "x": 0.005791102989693872, - "y": 0.9999832314224888 + "x": 0.00579, + "y": 0.99998 }, { - "x": -0.17132233347390882, - "y": 0.9852150313779497 + "x": -0.17132, + "y": 0.98522 }, { - "x": -0.4936877467816973, - "y": 0.8696392405346086 + "x": -0.49369, + "y": 0.86964 }, { - "x": -0.758154832055514, - "y": 0.6520745744398222 + "x": -0.75815, + "y": 0.65207 }, { - "x": -0.9337076239261765, - "y": 0.358036412983559 + "x": -0.93371, + "y": 0.35804 }, { - "x": -0.9999832314224888, - "y": 0.005791102989693983 + "x": -0.99998, + "y": 0.00579 }, { "max": { @@ -1026,12 +1026,12 @@ } }, { - "x": 230.73976382243328, - "y": 565.8489368155767 + "x": 230.73976, + "y": 565.84894 }, { - "x": 130.74420341487766, - "y": 462.9481805557866 + "x": 130.7442, + "y": 462.94818 }, { "category": 1, @@ -1048,16 +1048,16 @@ "y": 0 }, { - "x": 180.74135544036452, - "y": 512.9453325812735 + "x": 180.74136, + "y": 512.94533 }, { - "x": -0.42276433366893107, - "y": 6.082134342957824 + "x": -0.42276, + "y": 6.08213 }, { - "x": 180.7400990837826, - "y": 510.0388803724569 + "x": 180.7401, + "y": 510.03888 }, { "endCol": 4, @@ -1080,8 +1080,8 @@ "yScale": 1 }, { - "x": 0.001256356581907596, - "y": 2.9064522088165523 + "x": 0.00126, + "y": 2.90645 }, [ { @@ -1149,148 +1149,148 @@ "body": null, "index": 0, "isInternal": false, - "x": 130.74420341487766, - "y": 482.9405864676941 + "x": 130.7442, + "y": 482.94059 }, { "body": null, "index": 1, "isInternal": false, - "x": 131.917616194519, - "y": 476.1926985241194 + "x": 131.91762, + "y": 476.1927 }, { "body": null, "index": 2, "isInternal": false, - "x": 135.29895883373902, - "y": 470.2364067912829 + "x": 135.29896, + "y": 470.23641 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.49167685737183, - "y": 465.77024862374054 + "x": 140.49168, + "y": 465.77025 }, { "body": null, "index": 4, "isInternal": false, - "x": 146.88678271512862, - "y": 463.31800264942433 + "x": 146.88678, + "y": 463.318 }, { "body": null, "index": 5, "isInternal": false, - "x": 210.74610155394384, - "y": 462.9481805557866 + "x": 210.7461, + "y": 462.94818 }, { "body": null, "index": 6, "isInternal": false, - "x": 217.49398949751844, - "y": 464.12159333542803 + "x": 217.49399, + "y": 464.12159 }, { "body": null, "index": 7, "isInternal": false, - "x": 223.45028123035513, - "y": 467.50293597464804 + "x": 223.45028, + "y": 467.50294 }, { "body": null, "index": 8, "isInternal": false, - "x": 227.9164393978974, - "y": 472.6956539982807 + "x": 227.91644, + "y": 472.69565 }, { "body": null, "index": 9, "isInternal": false, - "x": 230.36868537221366, - "y": 479.09075985603755 + "x": 230.36869, + "y": 479.09076 }, { "body": null, "index": 10, "isInternal": false, - "x": 230.73850746585137, - "y": 542.9500786948528 + "x": 230.73851, + "y": 542.95008 }, { "body": null, "index": 11, "isInternal": false, - "x": 229.56509468621002, - "y": 549.6979666384274 + "x": 229.56509, + "y": 549.69797 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.18375204699, - "y": 555.6542583712638 + "x": 226.18375, + "y": 555.65426 }, { "body": null, "index": 13, "isInternal": false, - "x": 220.9910340233572, - "y": 560.1204165388062 + "x": 220.99103, + "y": 560.12042 }, { "body": null, "index": 14, "isInternal": false, - "x": 214.5959281656004, - "y": 562.5726625131225 + "x": 214.59593, + "y": 562.57266 }, { "body": null, "index": 15, "isInternal": false, - "x": 150.73660932678519, - "y": 562.9424846067602 + "x": 150.73661, + "y": 562.94248 }, { "body": null, "index": 16, "isInternal": false, - "x": 143.9887213832106, - "y": 561.7690718271189 + "x": 143.98872, + "y": 561.76907 }, { "body": null, "index": 17, "isInternal": false, - "x": 138.0324296503739, - "y": 558.3877291878989 + "x": 138.03243, + "y": 558.38773 }, { "body": null, "index": 18, "isInternal": false, - "x": 133.56627148283164, - "y": 553.195011164266 + "x": 133.56627, + "y": 553.19501 }, { "body": null, "index": 19, "isInternal": false, - "x": 131.1140255085154, - "y": 546.7999053065091 + "x": 131.11403, + "y": 546.79991 }, { - "angle": 0.000003360612129448975, - "anglePrev": 0.000002877703133342372, - "angularSpeed": 4.829089961066029e-7, - "angularVelocity": 4.829089961066029e-7, - "area": 8214.487209017081, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 8214.48721, "axes": { "#": 137 }, @@ -1311,13 +1311,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 47166.24850616326, - "inverseInertia": 0.00002120160139234582, - "inverseMass": 0.12173614427231627, + "inertia": 47166.24851, + "inverseInertia": 0.00002, + "inverseMass": 0.12174, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 8.214487209017081, + "mass": 8.21449, "motion": 0, "parent": null, "position": { @@ -1339,7 +1339,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072573374631054, + "speed": 2.90726, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1384,44 +1384,44 @@ } ], { - "x": -0.9943509346883708, - "y": -0.10614244525336518 + "x": -0.99435, + "y": -0.10614 }, { - "x": -0.9495427424220498, - "y": -0.31363765767779284 + "x": -0.94954, + "y": -0.31364 }, { - "x": -0.8619462197041774, - "y": -0.5069997182816555 + "x": -0.86195, + "y": -0.507 }, { - "x": -0.7355086443064719, - "y": -0.6775153386827901 + "x": -0.73551, + "y": -0.67752 }, { - "x": -0.5759275509642418, - "y": -0.8175007376390134 + "x": -0.57593, + "y": -0.8175 }, { - "x": -0.3903939888537795, - "y": -0.9206478878848499 + "x": -0.39039, + "y": -0.92065 }, { - "x": -0.18726847826634013, - "y": -0.9823087686912958 + "x": -0.18727, + "y": -0.98231 }, { - "x": -0.017417124061505192, - "y": -0.9998483103898441 + "x": -0.01742, + "y": -0.99985 }, { - "x": -0.9999999999943532, - "y": -0.000003360612129442649 + "x": -1, + "y": 0 }, { - "x": -0.000003360612129442649, - "y": 0.9999999999943532 + "x": 0, + "y": 1 }, { "max": { @@ -1432,12 +1432,12 @@ } }, { - "x": 360.61507342884715, - "y": 278.5548812681399 + "x": 360.61507, + "y": 278.55488 }, { - "x": 260.6146826804985, - "y": 175.64762393175585 + "x": 260.61468, + "y": 175.64762 }, { "category": 1, @@ -1454,16 +1454,16 @@ "y": 0 }, { - "x": 317.04345309679684, - "y": 232.07054847083904 + "x": 317.04345, + "y": 232.07055 }, { - "x": 0.3861770025456471, - "y": 1.0667644409923294 + "x": 0.38618, + "y": 1.06676 }, { - "x": 317.04339840909654, - "y": 229.16329113389028 + "x": 317.0434, + "y": 229.16329 }, { "endCol": 7, @@ -1486,8 +1486,8 @@ "yScale": 1 }, { - "x": 0.000054687700276758734, - "y": 2.907257336948747 + "x": 0.00005, + "y": 2.90726 }, [ { @@ -1528,85 +1528,85 @@ "body": null, "index": 0, "isInternal": false, - "x": 260.61471628661985, - "y": 265.6472878700348 + "x": 260.61472, + "y": 265.64729 }, { "body": null, "index": 1, "isInternal": false, - "x": 262.6425718058554, - "y": 246.65017482867228 + "x": 262.64257, + "y": 246.65017 }, { "body": null, "index": 2, "isInternal": false, - "x": 268.63463137866654, - "y": 228.50912403250607 + "x": 268.63463, + "y": 228.50912 }, { "body": null, "index": 3, "isInternal": false, - "x": 278.32088059323985, - "y": 212.04160818868877 + "x": 278.32088, + "y": 212.04161 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.26483732643055, - "y": 197.98968710997192 + "x": 291.26484, + "y": 197.98969 }, { "body": null, "index": 5, "isInternal": false, - "x": 306.88322051746434, - "y": 186.98656898776528 + "x": 306.88322, + "y": 186.98657 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.47223400083914, - "y": 179.52807674101345 + "x": 324.47223, + "y": 179.52808 }, { "body": null, "index": 7, "isInternal": false, - "x": 343.2392809953678, - "y": 175.95030522534176 + "x": 343.23928, + "y": 175.95031 }, { "body": null, "index": 8, "isInternal": false, - "x": 360.61501874114686, - "y": 175.64762393175585 + "x": 360.61502, + "y": 175.64762 }, { "body": null, "index": 9, "isInternal": false, - "x": 360.61468267993394, - "y": 275.64762393119116 + "x": 360.61468, + "y": 275.64762 }, { "body": null, "index": 10, "isInternal": false, - "x": 260.6146826804985, - "y": 275.6472878699783 + "x": 260.61468, + "y": 275.64729 }, { - "angle": -1.4346892403423108e-16, - "anglePrev": 0.00004167177201283631, - "angularSpeed": 1.6354825238030628e-17, - "angularVelocity": -0.00003164283753669189, - "area": 34436.8864958818, + "angle": 0, + "anglePrev": 0.00004, + "angularSpeed": 0, + "angularVelocity": -0.00003, + "area": 34436.8865, "axes": { "#": 174 }, @@ -1627,13 +1627,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 800773.108342094, - "inverseInertia": 0.0000012487931844644255, - "inverseMass": 0.0290386298459237, + "inertia": 800773.10834, + "inverseInertia": 0, + "inverseMass": 0.02904, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 34.4368864958818, + "mass": 34.43689, "motion": 0, "parent": null, "position": { @@ -1655,7 +1655,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1733,88 +1733,88 @@ } ], { - "x": -0.9959254456304784, - "y": -0.0901804122064923 + "x": -0.99593, + "y": -0.09018 }, { - "x": -0.9635279640111304, - "y": -0.2676076653770701 + "x": -0.96353, + "y": -0.26761 }, { - "x": -0.8997868917236918, - "y": -0.4363296339720893 + "x": -0.89979, + "y": -0.43633 }, { - "x": -0.8067757275695917, - "y": -0.5908577878005467 + "x": -0.80678, + "y": -0.59086 }, { - "x": -0.6875201272284797, - "y": -0.7261653218487751 + "x": -0.68752, + "y": -0.72617 }, { - "x": -0.5458994785973154, - "y": -0.8378506783831945 + "x": -0.5459, + "y": -0.83785 }, { - "x": -0.38652070519741333, - "y": -0.92228072974214 + "x": -0.38652, + "y": -0.92228 }, { - "x": -0.21456840282797768, - "y": -0.976708964076736 + "x": -0.21457, + "y": -0.97671 }, { - "x": -0.024318602313089563, - "y": -0.9997042590594168 + "x": -0.02432, + "y": -0.9997 }, { - "x": -0.1712288111899996, - "y": 0.9852312897073758 + "x": -0.17123, + "y": 0.98523 }, { - "x": -0.49360519407444736, - "y": 0.8696860999134843 + "x": -0.49361, + "y": 0.86969 }, { - "x": -0.7580929304771871, - "y": 0.6521465393303186 + "x": -0.75809, + "y": 0.65215 }, { - "x": -0.9336736331219894, - "y": 0.35812504354315255 + "x": -0.93367, + "y": 0.35813 }, { - "x": 0.9999965865029864, - "y": -0.0026128494743049404 + "x": 1, + "y": -0.00261 }, { - "x": 0.9905143415437621, - "y": 0.13740938540044315 + "x": 0.99051, + "y": 0.13741 }, { - "x": 0.9157053924984958, - "y": 0.40185026334341956 + "x": 0.91571, + "y": 0.40185 }, { - "x": 0.7717374669752792, - "y": 0.6359412567734382 + "x": 0.77174, + "y": 0.63594 }, { - "x": 0.5694837939147834, - "y": 0.8220025598916494 + "x": 0.56948, + "y": 0.822 }, { - "x": 0.3242196541358753, - "y": 0.9459818263962652 + "x": 0.32422, + "y": 0.94598 }, { - "x": 0.004995826079271698, - "y": 0.9999875207830274 + "x": 0.005, + "y": 0.99999 }, { - "x": -0.9999383856500578, - "y": 0.011100671311063317 + "x": -0.99994, + "y": 0.0111 }, { "max": { @@ -1825,12 +1825,12 @@ } }, { - "x": 779.8000159637123, - "y": 589.140480707931 + "x": 779.80002, + "y": 589.14048 }, { - "x": 579.8000159637123, - "y": 386.2332099928954 + "x": 579.80002, + "y": 386.23321 }, { "category": 1, @@ -1847,16 +1847,16 @@ "y": 0 }, { - "x": 688.1975547604719, - "y": 494.6440723623055 + "x": 688.19755, + "y": 494.64407 }, { - "x": -6.837658731425854, - "y": 5.309428294389491 + "x": -6.83766, + "y": 5.30943 }, { - "x": 688.1986386940783, - "y": 491.7480134354833 + "x": 688.19864, + "y": 491.74801 }, { "endCol": 16, @@ -1879,8 +1879,8 @@ "yScale": 1 }, { - "x": -0.0006376080037853171, - "y": 2.8988618738755463 + "x": -0.00064, + "y": 2.89886 }, [ { @@ -1963,183 +1963,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 579.8000159637123, - "y": 536.2332099928954 + "x": 579.80002, + "y": 536.23321 }, { "body": null, "index": 1, "isInternal": false, - "x": 582.2397679874322, - "y": 509.28931982872786 + "x": 582.23977, + "y": 509.28932 }, { "body": null, "index": 2, "isInternal": false, - "x": 589.4796588594286, - "y": 483.2219151386259 + "x": 589.47966, + "y": 483.22192 }, { "body": null, "index": 3, "isInternal": false, - "x": 601.2841747342819, - "y": 458.87896930053347 + "x": 601.28417, + "y": 458.87897 }, { "body": null, "index": 4, "isInternal": false, - "x": 617.2693143920629, - "y": 437.0523589994079 + "x": 617.26931, + "y": 437.05236 }, { "body": null, "index": 5, "isInternal": false, - "x": 636.9150808083778, - "y": 418.45210445729043 + "x": 636.91508, + "y": 418.4521 }, { "body": null, "index": 6, "isInternal": false, - "x": 659.5823966716035, - "y": 403.6832724563258 + "x": 659.5824, + "y": 403.68327 }, { "body": null, "index": 7, "isInternal": false, - "x": 684.5338935850789, - "y": 393.22629350001176 + "x": 684.53389, + "y": 393.22629 }, { "body": null, "index": 8, "isInternal": false, - "x": 710.9578986809439, - "y": 387.4213333959571 + "x": 710.9579, + "y": 387.42133 }, { "body": null, "index": 9, "isInternal": false, - "x": 759.8000159637123, - "y": 386.2332099928954 + "x": 759.80002, + "y": 386.23321 }, { "body": null, "index": 10, "isInternal": false, - "x": 766.5480152630638, - "y": 387.40598222415707 + "x": 766.54802, + "y": 387.40598 }, { "body": null, "index": 11, "isInternal": false, - "x": 772.5046279429299, - "y": 390.7867594473001 + "x": 772.50463, + "y": 390.78676 }, { "body": null, "index": 12, "isInternal": false, - "x": 776.9712790089781, - "y": 395.9790534975862 + "x": 776.97128, + "y": 395.97905 }, { "body": null, "index": 13, "isInternal": false, - "x": 779.4241320275086, - "y": 402.3739265471433 + "x": 779.42413, + "y": 402.37393 }, { "body": null, "index": 14, "isInternal": false, - "x": 779.8000159637123, - "y": 546.2332099928954 + "x": 779.80002, + "y": 546.23321 }, { "body": null, "index": 15, "isInternal": false, - "x": 778.2895088280221, - "y": 557.1216873450436 + "x": 778.28951, + "y": 557.12169 }, { "body": null, "index": 16, "isInternal": false, - "x": 773.8720690113001, - "y": 567.1878085603308 + "x": 773.87207, + "y": 567.18781 }, { "body": null, "index": 17, "isInternal": false, - "x": 766.8813252317783, - "y": 575.6713262425363 + "x": 766.88133, + "y": 575.67133 }, { "body": null, "index": 18, "isInternal": false, - "x": 757.8452559075942, - "y": 581.9315196919237 + "x": 757.84526, + "y": 581.93152 }, { "body": null, "index": 19, "isInternal": false, - "x": 747.4463133983862, - "y": 585.495585564688 + "x": 747.44631, + "y": 585.49559 }, { "body": null, "index": 20, "isInternal": false, - "x": 599.8000159637123, - "y": 586.2332099928955 + "x": 599.80002, + "y": 586.23321 }, { "body": null, "index": 21, "isInternal": false, - "x": 593.0520166643608, - "y": 585.0604377616338 + "x": 593.05202, + "y": 585.06044 }, { "body": null, "index": 22, "isInternal": false, - "x": 587.0954039844946, - "y": 581.6796605384906 + "x": 587.0954, + "y": 581.67966 }, { "body": null, "index": 23, "isInternal": false, - "x": 582.6287529184465, - "y": 576.4873664882045 + "x": 582.62875, + "y": 576.48737 }, { "body": null, "index": 24, "isInternal": false, - "x": 580.1758998999161, - "y": 570.0924934386475 + "x": 580.1759, + "y": 570.09249 }, { - "angle": 0.0009116014092614793, - "anglePrev": 0.0007722880821902269, - "angularSpeed": 0.00013931332707125226, - "angularVelocity": 0.00013931332707125226, - "area": 29929.09118210141, + "angle": 0.00091, + "anglePrev": 0.00077, + "angularSpeed": 0.00014, + "angularVelocity": 0.00014, + "area": 29929.09118, "axes": { "#": 236 }, @@ -2160,13 +2160,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 642055.6835937061, - "inverseInertia": 0.0000015574973098950116, - "inverseMass": 0.033412307574445604, + "inertia": 642055.68359, + "inverseInertia": 0, + "inverseMass": 0.03341, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 29.92909118210141, + "mass": 29.92909, "motion": 0, "parent": null, "position": { @@ -2188,7 +2188,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8732381700203216, + "speed": 2.87324, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2245,60 +2245,60 @@ } ], { - "x": 0.9958428232354856, - "y": 0.09108826164977256 + "x": 0.99584, + "y": 0.09109 }, { - "x": 0.9632836121659379, - "y": 0.26848590751200174 + "x": 0.96328, + "y": 0.26849 }, { - "x": 0.8993887592004168, - "y": 0.43714969955832567 + "x": 0.89939, + "y": 0.43715 }, { - "x": 0.8062367656299596, - "y": 0.59159300008244 + "x": 0.80624, + "y": 0.59159 }, { - "x": 0.6868578683189296, - "y": 0.7267917643509564 + "x": 0.68686, + "y": 0.72679 }, { - "x": 0.5451354660180441, - "y": 0.8383479729141651 + "x": 0.54514, + "y": 0.83835 }, { - "x": 0.38567979229824, - "y": 0.9226326992973893 + "x": 0.38568, + "y": 0.92263 }, { - "x": 0.21367794452820255, - "y": 0.9769041590771341 + "x": 0.21368, + "y": 0.9769 }, { - "x": 0.02340726052332136, - "y": 0.9997260125428332 + "x": 0.02341, + "y": 0.99973 }, { - "x": -0.17212687815071823, - "y": 0.9850747879313976 + "x": -0.17213, + "y": 0.98507 }, { - "x": -0.4943977959417661, - "y": 0.8692357674232717 + "x": -0.4944, + "y": 0.86924 }, { - "x": -0.7586871131050624, - "y": 0.6514551898698072 + "x": -0.75869, + "y": 0.65146 }, { - "x": -0.9339997124217942, - "y": 0.3572737566572808 + "x": -0.934, + "y": 0.35727 }, { - "x": -0.9999480895533325, - "y": 0.01018912158335786 + "x": -0.99995, + "y": 0.01019 }, { "max": { @@ -2309,12 +2309,12 @@ } }, { - "x": 233.1056970173479, - "y": 461.3027263252698 + "x": 233.1057, + "y": 461.30273 }, { - "x": 33.00588672482467, - "y": 258.5754407347376 + "x": 33.00589, + "y": 258.57544 }, { "category": 1, @@ -2331,16 +2331,16 @@ "y": 0 }, { - "x": 133.0514252381212, - "y": 358.5024710812438 + "x": 133.05143, + "y": 358.50247 }, { - "x": 0.7872534498523062, - "y": 4.4193191292214244 + "x": 0.78725, + "y": 4.41932 }, { - "x": 133.04269197219097, - "y": 355.629246183724 + "x": 133.04269, + "y": 355.62925 }, { "endCol": 4, @@ -2363,8 +2363,8 @@ "yScale": 1 }, { - "x": 0.008733265930218862, - "y": 2.873224897519844 + "x": 0.00873, + "y": 2.87322 }, [ { @@ -2456,204 +2456,204 @@ "body": null, "index": 0, "isInternal": false, - "x": 33.00588672482467, - "y": 408.41129017751683 + "x": 33.00589, + "y": 408.41129 }, { "body": null, "index": 1, "isInternal": false, - "x": 35.470199819649444, - "y": 381.46963528984077 + "x": 35.4702, + "y": 381.46964 }, { "body": null, "index": 2, "isInternal": false, - "x": 42.73385076296946, - "y": 355.4088413247757 + "x": 42.73385, + "y": 355.40884 }, { "body": null, "index": 3, "isInternal": false, - "x": 54.56055279360377, - "y": 331.0766666132017 + "x": 54.56055, + "y": 331.07667 }, { "body": null, "index": 4, "isInternal": false, - "x": 70.56558297537677, - "y": 309.26463745504003 + "x": 70.56558, + "y": 309.26464 }, { "body": null, "index": 5, "isInternal": false, - "x": 90.22829724461278, - "y": 290.6822997473577 + "x": 90.2283, + "y": 290.6823 }, { "body": null, "index": 6, "isInternal": false, - "x": 112.90906697557593, - "y": 275.9341374371921 + "x": 112.90907, + "y": 275.93414 }, { "body": null, "index": 7, "isInternal": false, - "x": 137.8700861169242, - "y": 265.49990864244114 + "x": 137.87009, + "y": 265.49991 }, { "body": null, "index": 8, "isInternal": false, - "x": 164.29937204246815, - "y": 259.7190391073443 + "x": 164.29937, + "y": 259.71904 }, { "body": null, "index": 9, "isInternal": false, - "x": 213.14255212573858, - "y": 258.5754407347376 + "x": 213.14255, + "y": 258.57544 }, { "body": null, "index": 10, "isInternal": false, - "x": 219.88947952056785, - "y": 259.7543639635213 + "x": 219.88948, + "y": 259.75436 }, { "body": null, "index": 11, "isInternal": false, - "x": 225.84300780455655, - "y": 263.1405698376839 + "x": 225.84301, + "y": 263.14057 }, { "body": null, "index": 12, "isInternal": false, - "x": 230.3049237127551, - "y": 268.3369335353701 + "x": 230.30492, + "y": 268.33693 }, { "body": null, "index": 13, "isInternal": false, - "x": 232.75194613762758, - "y": 274.7340399517616 + "x": 232.75195, + "y": 274.73404 }, { "body": null, "index": 14, "isInternal": false, - "x": 233.09696375141766, - "y": 308.5936519849708 + "x": 233.09696, + "y": 308.59365 }, { "body": null, "index": 15, "isInternal": false, - "x": 230.63265065659297, - "y": 335.5353068726469 + "x": 230.63265, + "y": 335.53531 }, { "body": null, "index": 16, "isInternal": false, - "x": 223.3689997132729, - "y": 361.5961008377119 + "x": 223.369, + "y": 361.5961 }, { "body": null, "index": 17, "isInternal": false, - "x": 211.54229768263863, - "y": 385.9282755492859 + "x": 211.5423, + "y": 385.92828 }, { "body": null, "index": 18, "isInternal": false, - "x": 195.5372675008655, - "y": 407.74030470744765 + "x": 195.53727, + "y": 407.7403 }, { "body": null, "index": 19, "isInternal": false, - "x": 175.87455323162962, - "y": 426.3226424151298 + "x": 175.87455, + "y": 426.32264 }, { "body": null, "index": 20, "isInternal": false, - "x": 153.1937835006664, - "y": 441.07080472529555 + "x": 153.19378, + "y": 441.0708 }, { "body": null, "index": 21, "isInternal": false, - "x": 128.23276435931817, - "y": 451.5050335200464 + "x": 128.23276, + "y": 451.50503 }, { "body": null, "index": 22, "isInternal": false, - "x": 101.8034784337742, - "y": 457.28590305514314 + "x": 101.80348, + "y": 457.2859 }, { "body": null, "index": 23, "isInternal": false, - "x": 52.960298350503855, - "y": 458.42950142775 + "x": 52.9603, + "y": 458.4295 }, { "body": null, "index": 24, "isInternal": false, - "x": 46.21337095567443, - "y": 457.2505781989662 + "x": 46.21337, + "y": 457.25058 }, { "body": null, "index": 25, "isInternal": false, - "x": 40.259842671685824, - "y": 453.8643723248037 + "x": 40.25984, + "y": 453.86437 }, { "body": null, "index": 26, "isInternal": false, - "x": 35.797926763487276, - "y": 448.6680086271175 + "x": 35.79793, + "y": 448.66801 }, { "body": null, "index": 27, "isInternal": false, - "x": 33.35090433861479, - "y": 442.270902210726 + "x": 33.3509, + "y": 442.2709 }, { - "angle": -1.614271289616012e-15, - "anglePrev": -1.4266846428224409e-15, - "angularSpeed": 1.8758664679357106e-16, - "angularVelocity": -1.8758664679357106e-16, - "area": 9624.853311907824, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 9624.85331, "axes": { "#": 294 }, @@ -2674,13 +2674,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 129719.99535833277, - "inverseInertia": 0.000007708911777537797, - "inverseMass": 0.1038976873302375, + "inertia": 129719.99536, + "inverseInertia": 0.00001, + "inverseMass": 0.1039, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 9.624853311907824, + "mass": 9.62485, "motion": 0, "parent": null, "position": { @@ -2702,7 +2702,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2753,52 +2753,52 @@ } ], { - "x": -0.9871925448059895, - "y": -0.15953331777241414 + "x": -0.98719, + "y": -0.15953 }, { - "x": -0.886692870882418, - "y": -0.4623589003429 + "x": -0.88669, + "y": -0.46236 }, { - "x": -0.6959247433902953, - "y": -0.7181147203178274 + "x": -0.69592, + "y": -0.71811 }, { - "x": -0.43430902881493, - "y": -0.9007639354957723 + "x": -0.43431, + "y": -0.90076 }, { - "x": -0.006600572580280955, - "y": -0.9999782159835345 + "x": -0.0066, + "y": -0.99998 }, { - "x": 0.159533317772414, - "y": -0.9871925448059895 + "x": 0.15953, + "y": -0.98719 }, { - "x": 0.4623589003429009, - "y": -0.8866928708824175 + "x": 0.46236, + "y": -0.88669 }, { - "x": 0.7181147203178272, - "y": -0.6959247433902955 + "x": 0.71811, + "y": -0.69592 }, { - "x": 0.9007639354957713, - "y": -0.43430902881493216 + "x": 0.90076, + "y": -0.43431 }, { - "x": 0.9994792934199674, - "y": -0.03226673247669394 + "x": 0.99948, + "y": -0.03227 }, { - "x": 1.614271289616012e-15, + "x": 0, "y": 1 }, { "x": -1, - "y": 1.614271289616012e-15 + "y": 0 }, { "max": { @@ -2809,12 +2809,12 @@ } }, { - "x": 500.5928191816928, - "y": 372.0827206436574 + "x": 500.59282, + "y": 372.08272 }, { - "x": 300.5928191816928, - "y": 319.17544992862184 + "x": 300.59282, + "y": 319.17545 }, { "category": 1, @@ -2831,16 +2831,16 @@ "y": 0 }, { - "x": 400.68045067439004, - "y": 344.9345216608633 + "x": 400.68045, + "y": 344.93452 }, { - "x": 2.2242387175552873, - "y": 2.450294782906849 + "x": 2.22424, + "y": 2.45029 }, { - "x": 400.68045067439004, - "y": 342.0272509458277 + "x": 400.68045, + "y": 342.02725 }, { "endCol": 10, @@ -2864,7 +2864,7 @@ }, { "x": 0, - "y": 2.907270715035602 + "y": 2.90727 }, [ { @@ -2908,92 +2908,92 @@ "body": null, "index": 0, "isInternal": false, - "x": 300.5928191816928, - "y": 344.17544992862184 + "x": 300.59282, + "y": 344.17545 }, { "body": null, "index": 1, "isInternal": false, - "x": 301.8653631556665, - "y": 336.3009448309671 + "x": 301.86536, + "y": 336.30094 }, { "body": null, "index": 2, "isInternal": false, - "x": 305.55344562433197, - "y": 329.2280920541162 + "x": 305.55345, + "y": 329.22809 }, { "body": null, "index": 3, "isInternal": false, - "x": 311.2816068180076, - "y": 323.6769328924677 + "x": 311.28161, + "y": 323.67693 }, { "body": null, "index": 4, "isInternal": false, - "x": 318.4666997759765, - "y": 320.2125948771996 + "x": 318.4667, + "y": 320.21259 }, { "body": null, "index": 5, "isInternal": false, - "x": 475.5928191816928, - "y": 319.17544992862184 + "x": 475.59282, + "y": 319.17545 }, { "body": null, "index": 6, "isInternal": false, - "x": 483.4673242793475, - "y": 320.44799390259556 + "x": 483.46732, + "y": 320.44799 }, { "body": null, "index": 7, "isInternal": false, - "x": 490.54017705619844, - "y": 324.136076371261 + "x": 490.54018, + "y": 324.13608 }, { "body": null, "index": 8, "isInternal": false, - "x": 496.091336217847, - "y": 329.8642375649367 + "x": 496.09134, + "y": 329.86424 }, { "body": null, "index": 9, "isInternal": false, - "x": 499.55567423311504, - "y": 337.0493305229056 + "x": 499.55567, + "y": 337.04933 }, { "body": null, "index": 10, "isInternal": false, - "x": 500.5928191816928, - "y": 369.1754499286218 + "x": 500.59282, + "y": 369.17545 }, { "body": null, "index": 11, "isInternal": false, - "x": 300.5928191816928, - "y": 369.1754499286218 + "x": 300.59282, + "y": 369.17545 }, { - "angle": -0.0000742614331990991, - "anglePrev": -0.0000639698275061411, - "angularSpeed": 0.000010291605692958008, - "angularVelocity": -0.000010291605692958008, - "area": 13710.388476459668, + "angle": -0.00007, + "anglePrev": -0.00006, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 13710.38848, "axes": { "#": 334 }, @@ -3014,13 +3014,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 119782.82093625488, - "inverseInertia": 0.000008348442557820311, - "inverseMass": 0.0729373935477445, + "inertia": 119782.82094, + "inverseInertia": 0.00001, + "inverseMass": 0.07294, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 13.710388476459668, + "mass": 13.71039, "motion": 0, "parent": null, "position": { @@ -3042,7 +3042,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.903563565443142, + "speed": 2.90356, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3129,100 +3129,100 @@ } ], { - "x": -0.9971516338547646, - "y": -0.07542293484593252 + "x": -0.99715, + "y": -0.07542 }, { - "x": -0.9744286085890947, - "y": -0.22469732255441152 + "x": -0.97443, + "y": -0.2247 }, { - "x": -0.9294894113429186, - "y": -0.3688487958518979 + "x": -0.92949, + "y": -0.36885 }, { - "x": -0.8633586189050214, - "y": -0.5045908195383807 + "x": -0.86336, + "y": -0.50459 }, { - "x": -0.7775439590299612, - "y": -0.6288285869583329 + "x": -0.77754, + "y": -0.62883 }, { - "x": -0.7074749411225538, - "y": -0.7067384294656968 + "x": -0.70747, + "y": -0.70674 }, { - "x": -0.6517606134834002, - "y": -0.7584247508564989 + "x": -0.65176, + "y": -0.75842 }, { - "x": -0.5301400764228343, - "y": -0.8479100774082071 + "x": -0.53014, + "y": -0.84791 }, { - "x": -0.39643278102230145, - "y": -0.9180637505810391 + "x": -0.39643, + "y": -0.91806 }, { - "x": -0.25368714380352464, - "y": -0.9672863242436595 + "x": -0.25369, + "y": -0.96729 }, { - "x": -0.1051576480585314, - "y": -0.9944555641429125 + "x": -0.10516, + "y": -0.99446 }, { - "x": -0.000520767931689704, - "y": -0.9999998644003714 + "x": -0.00052, + "y": -1 }, { - "x": 0.07542293484593252, - "y": -0.9971516338547646 + "x": 0.07542, + "y": -0.99715 }, { - "x": 0.22469732255441152, - "y": -0.9744286085890947 + "x": 0.2247, + "y": -0.97443 }, { - "x": 0.3688487958518979, - "y": -0.9294894113429186 + "x": 0.36885, + "y": -0.92949 }, { - "x": 0.5045908195383807, - "y": -0.8633586189050214 + "x": 0.50459, + "y": -0.86336 }, { - "x": 0.6288285869583329, - "y": -0.7775439590299612 + "x": 0.62883, + "y": -0.77754 }, { - "x": 0.7067384294656968, - "y": -0.7074749411225538 + "x": 0.70674, + "y": -0.70747 }, { - "x": 0.7584247508564989, - "y": -0.6517606134834002 + "x": 0.75842, + "y": -0.65176 }, { - "x": 0.8479100774082071, - "y": -0.5301400764228343 + "x": 0.84791, + "y": -0.53014 }, { - "x": 0.9180637505810391, - "y": -0.39643278102230145 + "x": 0.91806, + "y": -0.39643 }, { - "x": 0.9672863242436595, - "y": -0.25368714380352464 + "x": 0.96729, + "y": -0.25369 }, { - "x": 0.9944555641429125, - "y": -0.1051576480585314 + "x": 0.99446, + "y": -0.10516 }, { - "x": 0.9999998644003714, - "y": -0.000520767931689704 + "x": 1, + "y": -0.00052 }, { "max": { @@ -3233,12 +3233,12 @@ } }, { - "x": 233.2847885253335, - "y": 196.06971990805894 + "x": 233.28479, + "y": 196.06972 }, { - "x": 103.85608223764963, - "y": 63.737798985368755 + "x": 103.85608, + "y": 63.7378 }, { "category": 1, @@ -3255,16 +3255,16 @@ "y": 0 }, { - "x": 168.57026092675494, - "y": 128.45197767447405 + "x": 168.57026, + "y": 128.45198 }, { - "x": -0.2242222182463488, - "y": 1.3816267088675531 + "x": -0.22422, + "y": 1.38163 }, { - "x": 168.56991201728167, - "y": 125.54841412999443 + "x": 168.56991, + "y": 125.54841 }, { "endCol": 4, @@ -3287,8 +3287,8 @@ "yScale": 1 }, { - "x": 0.0003489094732864828, - "y": 2.9035635444796233 + "x": 0.00035, + "y": 2.90356 }, [ { @@ -3440,344 +3440,344 @@ "body": null, "index": 0, "isInternal": false, - "x": 233.28443961586024, - "y": 142.82628894207022 + "x": 233.28444, + "y": 142.82629 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.94278736706553, - "y": 147.34320543161962 + "x": 232.94279, + "y": 147.34321 }, { "body": null, "index": 2, "isInternal": false, - "x": 231.92494914974233, - "y": 151.75719072792788 + "x": 231.92495, + "y": 151.75719 }, { "body": null, "index": 3, "isInternal": false, - "x": 230.2541308392982, - "y": 155.96760959143228 + "x": 230.25413, + "y": 155.96761 }, { "body": null, "index": 4, "isInternal": false, - "x": 227.96842572097302, - "y": 159.87846793004945 + "x": 227.96843, + "y": 159.87847 }, { "body": null, "index": 5, "isInternal": false, - "x": 225.11994599422184, - "y": 163.4006013856353 + "x": 225.11995, + "y": 163.4006 }, { "body": null, "index": 6, "isInternal": false, - "x": 204.16673442808758, - "y": 184.37564887284535 + "x": 204.16673, + "y": 184.37565 }, { "body": null, "index": 7, "isInternal": false, - "x": 200.73120752634347, - "y": 187.32800653072866 + "x": 200.73121, + "y": 187.32801 }, { "body": null, "index": 8, "isInternal": false, - "x": 196.89032828564618, - "y": 189.729445160186 + "x": 196.89033, + "y": 189.72945 }, { "body": null, "index": 9, "isInternal": false, - "x": 192.73166559818074, - "y": 191.52521393275998 + "x": 192.73167, + "y": 191.52521 }, { "body": null, "index": 10, "isInternal": false, - "x": 188.350033557724, - "y": 192.6743707952956 + "x": 188.35003, + "y": 192.67437 }, { "body": null, "index": 11, "isInternal": false, - "x": 183.84532977617715, - "y": 193.15071591512614 + "x": 183.84533, + "y": 193.15072 }, { "body": null, "index": 12, "isInternal": false, - "x": 154.19594965915877, - "y": 193.16615636357932 + "x": 154.19595, + "y": 193.16616 }, { "body": null, "index": 13, "isInternal": false, - "x": 149.67903316960937, - "y": 192.82450411478456 + "x": 149.67903, + "y": 192.8245 }, { "body": null, "index": 14, "isInternal": false, - "x": 145.26504787330109, - "y": 191.80666589746147 + "x": 145.26505, + "y": 191.80667 }, { "body": null, "index": 15, "isInternal": false, - "x": 141.0546290097967, - "y": 190.13584758701728 + "x": 141.05463, + "y": 190.13585 }, { "body": null, "index": 16, "isInternal": false, - "x": 137.14377067117948, - "y": 187.85014246869204 + "x": 137.14377, + "y": 187.85014 }, { "body": null, "index": 17, "isInternal": false, - "x": 133.6216372155937, - "y": 185.0016627419409 + "x": 133.62164, + "y": 185.00166 }, { "body": null, "index": 18, "isInternal": false, - "x": 112.64658972838359, - "y": 164.04845117580666 + "x": 112.64659, + "y": 164.04845 }, { "body": null, "index": 19, "isInternal": false, - "x": 109.69423207050032, - "y": 160.61292427406255 + "x": 109.69423, + "y": 160.61292 }, { "body": null, "index": 20, "isInternal": false, - "x": 107.292793441043, - "y": 156.7720450333652 + "x": 107.29279, + "y": 156.77205 }, { "body": null, "index": 21, "isInternal": false, - "x": 105.497024668469, - "y": 152.61338234589982 + "x": 105.49702, + "y": 152.61338 }, { "body": null, "index": 22, "isInternal": false, - "x": 104.34786780593335, - "y": 148.23175030544311 + "x": 104.34787, + "y": 148.23175 }, { "body": null, "index": 23, "isInternal": false, - "x": 103.8715226861028, - "y": 143.7270465238962 + "x": 103.87152, + "y": 143.72705 }, { "body": null, "index": 24, "isInternal": false, - "x": 103.85608223764963, - "y": 114.0776664068779 + "x": 103.85608, + "y": 114.07767 }, { "body": null, "index": 25, "isInternal": false, - "x": 104.19773448644435, - "y": 109.56074991732852 + "x": 104.19773, + "y": 109.56075 }, { "body": null, "index": 26, "isInternal": false, - "x": 105.2155727037675, - "y": 105.14676462102021 + "x": 105.21557, + "y": 105.14676 }, { "body": null, "index": 27, "isInternal": false, - "x": 106.88639101421167, - "y": 100.9363457575158 + "x": 106.88639, + "y": 100.93635 }, { "body": null, "index": 28, "isInternal": false, - "x": 109.17209613253685, - "y": 97.02548741889859 + "x": 109.1721, + "y": 97.02549 }, { "body": null, "index": 29, "isInternal": false, - "x": 112.02057585928806, - "y": 93.50335396331278 + "x": 112.02058, + "y": 93.50335 }, { "body": null, "index": 30, "isInternal": false, - "x": 132.9737874254223, - "y": 72.5283064761027 + "x": 132.97379, + "y": 72.52831 }, { "body": null, "index": 31, "isInternal": false, - "x": 136.4093143271664, - "y": 69.5759488182194 + "x": 136.40931, + "y": 69.57595 }, { "body": null, "index": 32, "isInternal": false, - "x": 140.2501935678637, - "y": 67.17451018876211 + "x": 140.25019, + "y": 67.17451 }, { "body": null, "index": 33, "isInternal": false, - "x": 144.40885625532914, - "y": 65.3787414161881 + "x": 144.40886, + "y": 65.37874 }, { "body": null, "index": 34, "isInternal": false, - "x": 148.79048829578588, - "y": 64.22958455365247 + "x": 148.79049, + "y": 64.22958 }, { "body": null, "index": 35, "isInternal": false, - "x": 153.29519207733279, - "y": 63.7532394338219 + "x": 153.29519, + "y": 63.75324 }, { "body": null, "index": 36, "isInternal": false, - "x": 182.9445721943511, - "y": 63.737798985368755 + "x": 182.94457, + "y": 63.7378 }, { "body": null, "index": 37, "isInternal": false, - "x": 187.4614886839005, - "y": 64.07945123416349 + "x": 187.46149, + "y": 64.07945 }, { "body": null, "index": 38, "isInternal": false, - "x": 191.8754739802088, - "y": 65.09728945148663 + "x": 191.87547, + "y": 65.09729 }, { "body": null, "index": 39, "isInternal": false, - "x": 196.08589284371322, - "y": 66.76810776193078 + "x": 196.08589, + "y": 66.76811 }, { "body": null, "index": 40, "isInternal": false, - "x": 199.9967511823304, - "y": 69.05381288025598 + "x": 199.99675, + "y": 69.05381 }, { "body": null, "index": 41, "isInternal": false, - "x": 203.5188846379162, - "y": 71.90229260700717 + "x": 203.51888, + "y": 71.90229 }, { "body": null, "index": 42, "isInternal": false, - "x": 224.49393212512626, - "y": 92.8555041731414 + "x": 224.49393, + "y": 92.8555 }, { "body": null, "index": 43, "isInternal": false, - "x": 227.4462897830096, - "y": 96.29103107488551 + "x": 227.44629, + "y": 96.29103 }, { "body": null, "index": 44, "isInternal": false, - "x": 229.84772841246686, - "y": 100.1319103155828 + "x": 229.84773, + "y": 100.13191 }, { "body": null, "index": 45, "isInternal": false, - "x": 231.6434971850409, - "y": 104.29057300304827 + "x": 231.6435, + "y": 104.29057 }, { "body": null, "index": 46, "isInternal": false, - "x": 232.7926540475765, - "y": 108.67220504350496 + "x": 232.79265, + "y": 108.67221 }, { "body": null, "index": 47, "isInternal": false, - "x": 233.26899916740706, - "y": 113.1769088250519 + "x": 233.269, + "y": 113.17691 }, { - "angle": 0.000017755561033535207, - "anglePrev": 0.000015285713315400413, - "angularSpeed": 0.000002469847718134793, - "angularVelocity": 0.000002469847718134793, - "area": 13066.632527319482, + "angle": 0.00002, + "anglePrev": 0.00002, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 13066.63253, "axes": { "#": 422 }, @@ -3798,13 +3798,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 110539.49232807996, - "inverseInertia": 0.000009046540552511418, - "inverseMass": 0.07653081219734448, + "inertia": 110539.49233, + "inverseInertia": 0.00001, + "inverseMass": 0.07653, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 13.066632527319483, + "mass": 13.06663, "motion": 0, "parent": null, "position": { @@ -3826,7 +3826,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9069569422297974, + "speed": 2.90696, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3916,104 +3916,104 @@ } ], { - "x": 0.9852677048717484, - "y": 0.1710191502047579 + "x": 0.98527, + "y": 0.17102 }, { - "x": 0.8700185482688567, - "y": 0.493018991184063 + "x": 0.87002, + "y": 0.49302 }, { - "x": 0.6530065709953358, - "y": 0.7573522418511175 + "x": 0.65301, + "y": 0.75735 }, { - "x": 0.2376037484847505, - "y": 0.9713621666021359 + "x": 0.2376, + "y": 0.97136 }, { - "x": 0.20246071149079908, - "y": 0.9792903860973207 + "x": 0.20246, + "y": 0.97929 }, { - "x": -0.016682954358455692, - "y": 0.9998608298327689 + "x": -0.01668, + "y": 0.99986 }, { - "x": -0.23501837962582614, - "y": 0.9719909265204336 + "x": -0.23502, + "y": 0.97199 }, { - "x": -0.44196784843605036, - "y": 0.8970308918586966 + "x": -0.44197, + "y": 0.89703 }, { - "x": -0.627505261364673, - "y": 0.7786123213510391 + "x": -0.62751, + "y": 0.77861 }, { - "x": -0.7681180412628724, - "y": 0.6403082653585602 + "x": -0.76812, + "y": 0.64031 }, { - "x": -0.8820317404065471, - "y": 0.47118999237610887 + "x": -0.88203, + "y": 0.47119 }, { - "x": -0.9769088052940107, - "y": 0.2136567016010228 + "x": -0.97691, + "y": 0.21366 }, { - "x": -0.9982001623543381, - "y": -0.05997029160986995 + "x": -0.9982, + "y": -0.05997 }, { - "x": -0.9443020389821498, - "y": -0.32908001940888787 + "x": -0.9443, + "y": -0.32908 }, { - "x": -0.7749466636484085, - "y": -0.6320266359103865 + "x": -0.77495, + "y": -0.63203 }, { - "x": -0.7394029091103814, - "y": -0.6732632011324435 + "x": -0.7394, + "y": -0.67326 }, { - "x": -0.574202164675582, - "y": -0.8187135482461956 + "x": -0.5742, + "y": -0.81871 }, { - "x": -0.38118299661364036, - "y": -0.9244996068645166 + "x": -0.38118, + "y": -0.9245 }, { - "x": -0.16969662182277145, - "y": -0.9854963503443018 + "x": -0.1697, + "y": -0.9855 }, { - "x": 0.05001106038275687, - "y": -0.998748663998802 + "x": 0.05001, + "y": -0.99875 }, { - "x": 0.230446281828576, - "y": -0.9730850482827204 + "x": 0.23045, + "y": -0.97309 }, { - "x": 0.46711810373532564, - "y": -0.8841949316540519 + "x": 0.46712, + "y": -0.88419 }, { - "x": 0.7377430766220066, - "y": -0.6750815898069624 + "x": 0.73774, + "y": -0.67508 }, { - "x": 0.9220769967987604, - "y": -0.3870064753651784 + "x": 0.92208, + "y": -0.38701 }, { - "x": 0.9999950006723606, - "y": -0.003162061081855418 + "x": 1, + "y": -0.00316 }, { "max": { @@ -4024,12 +4024,12 @@ } }, { - "x": 371.42257078353265, - "y": 177.08425007896267 + "x": 371.42257, + "y": 177.08425 }, { - "x": 236.48777579157422, - "y": 49.854783781037135 + "x": 236.48778, + "y": 49.85478 }, { "category": 1, @@ -4046,16 +4046,16 @@ "y": 0 }, { - "x": 310.461465430837, - "y": 112.03992895242892 + "x": 310.46147, + "y": 112.03993 }, { - "x": -0.08202457871443923, - "y": 0.6540520328413114 + "x": -0.08202, + "y": 0.65405 }, { - "x": 310.4611885006641, - "y": 109.13297202338995 + "x": 310.46119, + "y": 109.13297 }, { "endCol": 7, @@ -4078,8 +4078,8 @@ "yScale": 1 }, { - "x": 0.00027693017290403077, - "y": 2.9069569290389725 + "x": 0.00028, + "y": 2.90696 }, [ { @@ -4162,183 +4162,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 371.42229385335975, - "y": 150.77903192757236 + "x": 371.42229, + "y": 150.77903 }, { "body": null, "index": 1, "isInternal": false, - "x": 370.8374026948316, - "y": 154.1486801141807 + "x": 370.8374, + "y": 154.14868 }, { "body": null, "index": 2, "isInternal": false, - "x": 369.15126141425134, - "y": 157.12417236770128 + "x": 369.15126, + "y": 157.12417 }, { "body": null, "index": 3, "isInternal": false, - "x": 366.5610916606313, - "y": 159.3574764706549 + "x": 366.56109, + "y": 159.35748 }, { "body": null, "index": 4, "isInternal": false, - "x": 313.2625385213704, - "y": 172.3947723939675 + "x": 313.26254, + "y": 172.39477 }, { "body": null, "index": 5, "isInternal": false, - "x": 304.64059193986674, - "y": 174.17729314992368 + "x": 304.64059, + "y": 174.17729 }, { "body": null, "index": 6, "isInternal": false, - "x": 295.83753741575197, - "y": 174.03041175157418 + "x": 295.83754, + "y": 174.03041 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.27985731887776, - "y": 171.96124417516128 + "x": 287.27986, + "y": 171.96124 }, { "body": null, "index": 8, "isInternal": false, - "x": 279.38214634227313, - "y": 168.0700355673204 + "x": 279.38215, + "y": 168.07004 }, { "body": null, "index": 9, "isInternal": false, - "x": 272.52702559597185, - "y": 162.5453036594949 + "x": 272.52703, + "y": 162.5453 }, { "body": null, "index": 10, "isInternal": false, - "x": 240.24695545953725, - "y": 123.8219174618457 + "x": 240.24696, + "y": 123.82192 }, { "body": null, "index": 11, "isInternal": false, - "x": 237.66055494878714, - "y": 118.9803729027578 + "x": 237.66055, + "y": 118.98037 }, { "body": null, "index": 12, "isInternal": false, - "x": 236.48777579157422, - "y": 113.61804035357281 + "x": 236.48778, + "y": 113.61804 }, { "body": null, "index": 13, "isInternal": false, - "x": 236.8169576404234, - "y": 108.13883779936565 + "x": 236.81696, + "y": 108.13884 }, { "body": null, "index": 14, "isInternal": false, - "x": 238.62330485502503, - "y": 102.9554864645686 + "x": 238.6233, + "y": 102.95549 }, { "body": null, "index": 15, "isInternal": false, - "x": 268.5428607721847, - "y": 66.27022872626603 + "x": 268.54286, + "y": 66.27023 }, { "body": null, "index": 16, "isInternal": false, - "x": 274.4704583855847, - "y": 59.76031861679973 + "x": 274.47046, + "y": 59.76032 }, { "body": null, "index": 17, "isInternal": false, - "x": 281.6786415544844, - "y": 54.7048820873487 + "x": 281.67864, + "y": 54.70488 }, { "body": null, "index": 18, "isInternal": false, - "x": 289.8181947842195, - "y": 51.34884032359992 + "x": 289.81819, + "y": 51.34884 }, { "body": null, "index": 19, "isInternal": false, - "x": 298.49478041148905, - "y": 49.854783781037135 + "x": 298.49478, + "y": 49.85478 }, { "body": null, "index": 20, "isInternal": false, - "x": 307.2880431163984, - "y": 50.29509515060226 + "x": 307.28804, + "y": 50.2951 }, { "body": null, "index": 21, "isInternal": false, - "x": 364.51405853402724, - "y": 63.8473766291127 + "x": 364.51406, + "y": 63.84738 }, { "body": null, "index": 22, "isInternal": false, - "x": 367.5380344883027, - "y": 65.44493601667892 + "x": 367.53803, + "y": 65.44494 }, { "body": null, "index": 23, "isInternal": false, - "x": 369.84683588680366, - "y": 67.96804177568261 + "x": 369.84684, + "y": 67.96804 }, { "body": null, "index": 24, "isInternal": false, - "x": 371.17041085173145, - "y": 71.12157564755623 + "x": 371.17041, + "y": 71.12158 }, { - "angle": 8.018227243082391e-18, - "anglePrev": 7.162706756974813e-18, - "angularSpeed": 8.555204861075778e-19, - "angularVelocity": 8.555204861075778e-19, - "area": 3901.768915155755, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3901.76892, "axes": { "#": 488 }, @@ -4359,13 +4359,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 10483.195717051358, - "inverseInertia": 0.00009539075936295437, - "inverseMass": 0.2562940096517943, + "inertia": 10483.19572, + "inverseInertia": 0.0001, + "inverseMass": 0.25629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.9017689151557553, + "mass": 3.90177, "motion": 0, "parent": null, "position": { @@ -4387,7 +4387,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4435,48 +4435,48 @@ } ], { - "x": 0.9737949578896212, - "y": 0.22742774674333552 + "x": 0.97379, + "y": 0.22743 }, { - "x": 0.7723230913374028, - "y": 0.635229913170844 + "x": 0.77232, + "y": 0.63523 }, { - "x": 0.41106258187586037, - "y": 0.9116071268817239 + "x": 0.41106, + "y": 0.91161 }, { - "x": -0.0352441120717713, - "y": 0.9993787332959775 + "x": -0.03524, + "y": 0.99938 }, { - "x": -0.5651881595455647, - "y": 0.8249620259802855 + "x": -0.56519, + "y": 0.82496 }, { - "x": -0.5791090852858076, - "y": -0.8152500642989458 + "x": -0.57911, + "y": -0.81525 }, { - "x": -0.28993668690197577, - "y": -0.9570458283636714 + "x": -0.28994, + "y": -0.95705 }, { - "x": 0.1639663617104109, - "y": -0.9864659305964147 + "x": 0.16397, + "y": -0.98647 }, { - "x": 0.5839458325943148, - "y": -0.8117926241323781 + "x": 0.58395, + "y": -0.81179 }, { - "x": 0.8831106947097263, - "y": -0.469164684188084 + "x": 0.88311, + "y": -0.46916 }, { - "x": 0.9998783521980776, - "y": -0.015597461513245228 + "x": 0.99988, + "y": -0.0156 }, { "max": { @@ -4487,12 +4487,12 @@ } }, { - "x": 448.7077849138314, - "y": 206.676052317658 + "x": 448.70778, + "y": 206.67605 }, { - "x": 367.8499536288875, - "y": 126.57430804704784 + "x": 367.84995, + "y": 126.57431 }, { "category": 1, @@ -4509,16 +4509,16 @@ "y": 0 }, { - "x": 418.4607842772374, - "y": 165.14268786846338 + "x": 418.46078, + "y": 165.14269 }, { - "x": 0.32905702519118046, - "y": 0.4632352828875642 + "x": 0.32906, + "y": 0.46324 }, { - "x": 418.4607842772374, - "y": 162.2354171534277 + "x": 418.46078, + "y": 162.23542 }, { "endCol": 9, @@ -4542,7 +4542,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4583,78 +4583,78 @@ "body": null, "index": 0, "isInternal": false, - "x": 448.7077849138314, - "y": 184.14467239261847 + "x": 448.70778, + "y": 184.14467 }, { "body": null, "index": 1, "isInternal": false, - "x": 446.6388497142814, - "y": 193.00339211513284 + "x": 446.63885, + "y": 193.00339 }, { "body": null, "index": 2, "isInternal": false, - "x": 440.86009340162497, - "y": 200.02930013196135 + "x": 440.86009, + "y": 200.0293 }, { "body": null, "index": 3, "isInternal": false, - "x": 432.5671032103499, - "y": 203.7687816026223 + "x": 432.5671, + "y": 203.76878 }, { "body": null, "index": 4, "isInternal": false, - "x": 423.47564507208136, - "y": 203.44816204284422 + "x": 423.47565, + "y": 203.44816 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.8499536288875, - "y": 165.338550715135 + "x": 367.84995, + "y": 165.33855 }, { "body": null, "index": 6, "isInternal": false, - "x": 418.7078317120869, - "y": 129.2118939430616 + "x": 418.70783, + "y": 129.21189 }, { "body": null, "index": 7, "isInternal": false, - "x": 427.41418276308127, - "y": 126.57430804704784 + "x": 427.41418, + "y": 126.57431 }, { "body": null, "index": 8, "isInternal": false, - "x": 436.3881717164657, - "y": 128.0659280544679 + "x": 436.38817, + "y": 128.06593 }, { "body": null, "index": 9, "isInternal": false, - "x": 443.77313840963717, - "y": 133.37814745155134 + "x": 443.77314, + "y": 133.37815 }, { "body": null, "index": 10, "isInternal": false, - "x": 448.04118108869494, - "y": 141.4119024684623 + "x": 448.04118, + "y": 141.4119 }, { "max": { diff --git a/test/browser/refs/sleeping/sleeping-0.json b/test/browser/refs/sleeping/sleeping-0.json index 88da7b4c..921a6fe9 100644 --- a/test/browser/refs/sleeping/sleeping-0.json +++ b/test/browser/refs/sleeping/sleeping-0.json @@ -970,7 +970,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1534.906434764454, + "area": 1534.90643, "axes": { "#": 93 }, @@ -994,13 +994,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1056,12 +1056,12 @@ } }, { - "x": 86.40316358024691, - "y": 92.16409465020575 + "x": 86.40316, + "y": 92.16409 }, { "x": 50, - "y": 49.99999999999999 + "y": 50 }, { "category": 1, @@ -1089,16 +1089,16 @@ "y": 0 }, { - "x": 68.20158179012346, - "y": 71.08204732510288 + "x": 68.20158, + "y": 71.08205 }, { "x": 0, "y": 0 }, { - "x": 68.20158179012346, - "y": 71.08204732510288 + "x": 68.20158, + "y": 71.08205 }, { "fillStyle": "#C44D58", @@ -1136,35 +1136,35 @@ "index": 0, "isInternal": false, "x": 50, - "y": 49.99999999999999 + "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 86.40316358024691, - "y": 49.99999999999999 + "x": 86.40316, + "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 86.40316358024691, - "y": 92.16409465020575 + "x": 86.40316, + "y": 92.16409 }, { "body": null, "index": 3, "isInternal": false, "x": 50, - "y": 92.16409465020575 + "y": 92.16409 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.52878634164, + "area": 2220.52879, "axes": { "#": 117 }, @@ -1188,13 +1188,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1250,12 +1250,12 @@ } }, { - "x": 131.7190072016461, - "y": 99.00115740740739 + "x": 131.71901, + "y": 99.00116 }, { - "x": 86.40316358024691, - "y": 49.99999999999999 + "x": 86.40316, + "y": 50 }, { "category": 1, @@ -1283,16 +1283,16 @@ "y": 0 }, { - "x": 109.0610853909465, - "y": 74.5005787037037 + "x": 109.06109, + "y": 74.50058 }, { "x": 0, "y": 0 }, { - "x": 109.0610853909465, - "y": 74.5005787037037 + "x": 109.06109, + "y": 74.50058 }, { "fillStyle": "#C7F464", @@ -1329,36 +1329,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 86.40316358024691, - "y": 49.99999999999999 + "x": 86.40316, + "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 131.7190072016461, - "y": 49.99999999999999 + "x": 131.71901, + "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 131.7190072016461, - "y": 99.00115740740739 + "x": 131.71901, + "y": 99.00116 }, { "body": null, "index": 3, "isInternal": false, - "x": 86.40316358024691, - "y": 99.00115740740739 + "x": 86.40316, + "y": 99.00116 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1140.197701571206, + "area": 1140.1977, "axes": { "#": 141 }, @@ -1382,13 +1382,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1444,11 +1444,11 @@ } }, { - "x": 170.93981481481484, - "y": 79.07124485596708 + "x": 170.93981, + "y": 79.07124 }, { - "x": 131.7190072016461, + "x": 131.71901, "y": 50 }, { @@ -1477,16 +1477,16 @@ "y": 0 }, { - "x": 151.32941100823047, - "y": 64.53562242798354 + "x": 151.32941, + "y": 64.53562 }, { "x": 0, "y": 0 }, { - "x": 151.32941100823047, - "y": 64.53562242798354 + "x": 151.32941, + "y": 64.53562 }, { "fillStyle": "#C7F464", @@ -1523,36 +1523,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 131.7190072016461, + "x": 131.71901, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 170.93981481481484, + "x": 170.93981, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 170.93981481481484, - "y": 79.07124485596708 + "x": 170.93981, + "y": 79.07124 }, { "body": null, "index": 3, "isInternal": false, - "x": 131.7190072016461, - "y": 79.07124485596708 + "x": 131.71901, + "y": 79.07124 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 752.4076041785743, + "area": 752.4076, "axes": { "#": 165 }, @@ -1576,13 +1576,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1638,11 +1638,11 @@ } }, { - "x": 195.81712962962968, - "y": 80.24472736625515 + "x": 195.81713, + "y": 80.24473 }, { - "x": 170.93981481481484, + "x": 170.93981, "y": 50 }, { @@ -1671,16 +1671,16 @@ "y": 0 }, { - "x": 183.37847222222226, - "y": 65.12236368312757 + "x": 183.37847, + "y": 65.12236 }, { "x": 0, "y": 0 }, { - "x": 183.37847222222226, - "y": 65.12236368312757 + "x": 183.37847, + "y": 65.12236 }, { "fillStyle": "#C7F464", @@ -1717,36 +1717,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 170.93981481481484, + "x": 170.93981, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 195.81712962962968, + "x": 195.81713, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.81712962962968, - "y": 80.24472736625515 + "x": 195.81713, + "y": 80.24473 }, { "body": null, "index": 3, "isInternal": false, - "x": 170.93981481481484, - "y": 80.24472736625515 + "x": 170.93981, + "y": 80.24473 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2027.2541820000001, + "area": 2027.25418, "axes": { "#": 189 }, @@ -1770,13 +1770,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -1819,12 +1819,12 @@ } ], { - "x": -0.500008582084709, - "y": -0.8660204488588239 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.500008582084709, - "y": -0.8660204488588239 + "x": 0.50001, + "y": -0.86602 }, { "x": 1, @@ -1839,11 +1839,11 @@ } }, { - "x": 244.19912962962968, + "x": 244.19913, "y": 105.868 }, { - "x": 195.81712962962968, + "x": 195.81713, "y": 50 }, { @@ -1872,7 +1872,7 @@ "y": 0 }, { - "x": 220.00812962962968, + "x": 220.00813, "y": 77.934 }, { @@ -1880,7 +1880,7 @@ "y": 0 }, { - "x": 220.00812962962968, + "x": 220.00813, "y": 77.934 }, { @@ -1924,42 +1924,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 244.19912962962968, + "x": 244.19913, "y": 91.901 }, { "body": null, "index": 1, "isInternal": false, - "x": 220.00812962962968, + "x": 220.00813, "y": 105.868 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.81712962962968, + "x": 195.81713, "y": 91.901 }, { "body": null, "index": 3, "isInternal": false, - "x": 195.81712962962968, + "x": 195.81713, "y": 63.967 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.00812962962968, + "x": 220.00813, "y": 50 }, { "body": null, "index": 5, "isInternal": false, - "x": 244.19912962962968, + "x": 244.19913, "y": 63.967 }, { @@ -1991,13 +1991,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2046,20 +2046,20 @@ } ], { - "x": 0.30902000749156683, - "y": 0.95105553726894 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090188345853124, - "y": 0.5877827194518592 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090188345853124, - "y": -0.5877827194518592 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902000749156683, - "y": -0.95105553726894 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -2074,11 +2074,11 @@ } }, { - "x": 321.5277437444547, + "x": 321.52774, "y": 135.84 }, { - "x": 239.8897437444547, + "x": 239.88974, "y": 50 }, { @@ -2107,7 +2107,7 @@ "y": 0 }, { - "x": 285.0181296296297, + "x": 285.01813, "y": 92.92 }, { @@ -2115,7 +2115,7 @@ "y": 0 }, { - "x": 285.0181296296297, + "x": 285.01813, "y": 92.92 }, { @@ -2156,35 +2156,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 321.5277437444547, + "x": 321.52774, "y": 119.446 }, { "body": null, "index": 1, "isInternal": false, - "x": 271.07274374445467, + "x": 271.07274, "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.8897437444547, + "x": 239.88974, "y": 92.92 }, { "body": null, "index": 3, "isInternal": false, - "x": 271.07274374445467, + "x": 271.07274, "y": 50 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.5277437444547, + "x": 321.52774, "y": 66.394 }, { @@ -2192,14 +2192,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3079.0178339999993, + "area": 3079.01783, "axes": { "#": 244 }, "bounds": { "#": 258 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 261 }, @@ -2217,13 +2217,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2296,52 +2296,52 @@ } ], { - "x": -0.9709437470087438, - "y": -0.23930783552700582 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.885418252251326, - "y": -0.46479513614086726 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.7485358222247293, - "y": -0.6630943544069339 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680780310049566, - "y": -0.8229746962632154 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545747323306568, - "y": -0.9350276783029703 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12051249760074473, - "y": -0.9927118101050428 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051249760074473, - "y": -0.9927118101050428 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545747323306568, - "y": -0.9350276783029703 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680780310049566, - "y": -0.8229746962632154 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485358222247293, - "y": -0.6630943544069339 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.885418252251326, - "y": -0.46479513614086726 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.9709437470087438, - "y": -0.23930783552700582 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -2356,11 +2356,11 @@ } }, { - "x": 383.98774374445475, + "x": 383.98774, "y": 112.918 }, { - "x": 321.5277437444547, + "x": 321.52774, "y": 50 }, { @@ -2389,7 +2389,7 @@ "y": 0 }, { - "x": 352.75774374445473, + "x": 352.75774, "y": 81.459 }, { @@ -2397,7 +2397,7 @@ "y": 0 }, { - "x": 352.75774374445473, + "x": 352.75774, "y": 81.459 }, { @@ -2501,182 +2501,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 383.98774374445475, + "x": 383.98774, "y": 85.251 }, { "body": null, "index": 1, "isInternal": false, - "x": 382.17274374445475, - "y": 92.61500000000001 + "x": 382.17274, + "y": 92.615 }, { "body": null, "index": 2, "isInternal": false, - "x": 378.6477437444547, + "x": 378.64774, "y": 99.33 }, { "body": null, "index": 3, "isInternal": false, - "x": 373.6187437444547, + "x": 373.61874, "y": 105.007 }, { "body": null, "index": 4, "isInternal": false, - "x": 367.37774374445473, + "x": 367.37774, "y": 109.315 }, { "body": null, "index": 5, "isInternal": false, - "x": 360.2867437444547, + "x": 360.28674, "y": 112.004 }, { "body": null, "index": 6, "isInternal": false, - "x": 352.75774374445473, + "x": 352.75774, "y": 112.918 }, { "body": null, "index": 7, "isInternal": false, - "x": 345.22874374445473, + "x": 345.22874, "y": 112.004 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.1377437444547, + "x": 338.13774, "y": 109.315 }, { "body": null, "index": 9, "isInternal": false, - "x": 331.89674374445474, + "x": 331.89674, "y": 105.007 }, { "body": null, "index": 10, "isInternal": false, - "x": 326.86774374445474, + "x": 326.86774, "y": 99.33 }, { "body": null, "index": 11, "isInternal": false, - "x": 323.3427437444547, - "y": 92.61500000000001 + "x": 323.34274, + "y": 92.615 }, { "body": null, "index": 12, "isInternal": false, - "x": 321.5277437444547, + "x": 321.52774, "y": 85.251 }, { "body": null, "index": 13, "isInternal": false, - "x": 321.5277437444547, + "x": 321.52774, "y": 77.667 }, { "body": null, "index": 14, "isInternal": false, - "x": 323.3427437444547, + "x": 323.34274, "y": 70.303 }, { "body": null, "index": 15, "isInternal": false, - "x": 326.86774374445474, - "y": 63.58800000000001 + "x": 326.86774, + "y": 63.588 }, { "body": null, "index": 16, "isInternal": false, - "x": 331.89674374445474, + "x": 331.89674, "y": 57.911 }, { "body": null, "index": 17, "isInternal": false, - "x": 338.1377437444547, + "x": 338.13774, "y": 53.603 }, { "body": null, "index": 18, "isInternal": false, - "x": 345.22874374445473, + "x": 345.22874, "y": 50.914 }, { "body": null, "index": 19, "isInternal": false, - "x": 352.75774374445473, + "x": 352.75774, "y": 50 }, { "body": null, "index": 20, "isInternal": false, - "x": 360.2867437444547, + "x": 360.28674, "y": 50.914 }, { "body": null, "index": 21, "isInternal": false, - "x": 367.37774374445473, + "x": 367.37774, "y": 53.603 }, { "body": null, "index": 22, "isInternal": false, - "x": 373.6187437444547, + "x": 373.61874, "y": 57.911 }, { "body": null, "index": 23, "isInternal": false, - "x": 378.6477437444547, - "y": 63.58800000000001 + "x": 378.64774, + "y": 63.588 }, { "body": null, "index": 24, "isInternal": false, - "x": 382.17274374445475, + "x": 382.17274, "y": 70.303 }, { "body": null, "index": 25, "isInternal": false, - "x": 383.98774374445475, + "x": 383.98774, "y": 77.667 }, { @@ -2684,7 +2684,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1329.4167625219097, + "area": 1329.41676, "axes": { "#": 301 }, @@ -2708,13 +2708,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2770,11 +2770,11 @@ } }, { - "x": 432.76539292140944, - "y": 77.25462962962963 + "x": 432.76539, + "y": 77.25463 }, { - "x": 383.98774374445475, + "x": 383.98774, "y": 50 }, { @@ -2803,16 +2803,16 @@ "y": 0 }, { - "x": 408.3765683329321, - "y": 63.62731481481482 + "x": 408.37657, + "y": 63.62731 }, { "x": 0, "y": 0 }, { - "x": 408.3765683329321, - "y": 63.62731481481482 + "x": 408.37657, + "y": 63.62731 }, { "fillStyle": "#4ECDC4", @@ -2849,36 +2849,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 383.98774374445475, + "x": 383.98774, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 432.76539292140944, + "x": 432.76539, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 432.76539292140944, - "y": 77.25462962962963 + "x": 432.76539, + "y": 77.25463 }, { "body": null, "index": 3, "isInternal": false, - "x": 383.98774374445475, - "y": 77.25462962962963 + "x": 383.98774, + "y": 77.25463 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2858.632357296012, + "area": 2858.63236, "axes": { "#": 325 }, @@ -2902,13 +2902,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -2964,11 +2964,11 @@ } }, { - "x": 541.6199882574863, - "y": 76.26101680384087 + "x": 541.61999, + "y": 76.26102 }, { - "x": 432.76539292140944, + "x": 432.76539, "y": 50 }, { @@ -2997,16 +2997,16 @@ "y": 0 }, { - "x": 487.19269058944786, - "y": 63.13050840192044 + "x": 487.19269, + "y": 63.13051 }, { "x": 0, "y": 0 }, { - "x": 487.19269058944786, - "y": 63.13050840192044 + "x": 487.19269, + "y": 63.13051 }, { "fillStyle": "#C7F464", @@ -3043,36 +3043,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 432.76539292140944, + "x": 432.76539, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 541.6199882574863, + "x": 541.61999, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 541.6199882574863, - "y": 76.26101680384087 + "x": 541.61999, + "y": 76.26102 }, { "body": null, "index": 3, "isInternal": false, - "x": 432.76539292140944, - "y": 76.26101680384087 + "x": 432.76539, + "y": 76.26102 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 926.8394636035856, + "area": 926.83946, "axes": { "#": 349 }, @@ -3096,13 +3096,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3158,11 +3158,11 @@ } }, { - "x": 580.3757752945232, - "y": 73.91486625514403 + "x": 580.37578, + "y": 73.91487 }, { - "x": 541.6199882574863, + "x": 541.61999, "y": 50 }, { @@ -3191,16 +3191,16 @@ "y": 0 }, { - "x": 560.9978817760048, - "y": 61.95743312757202 + "x": 560.99788, + "y": 61.95743 }, { "x": 0, "y": 0 }, { - "x": 560.9978817760048, - "y": 61.95743312757202 + "x": 560.99788, + "y": 61.95743 }, { "fillStyle": "#C44D58", @@ -3237,36 +3237,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 541.6199882574863, + "x": 541.61999, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.3757752945232, + "x": 580.37578, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 580.3757752945232, - "y": 73.91486625514403 + "x": 580.37578, + "y": 73.91487 }, { "body": null, "index": 3, "isInternal": false, - "x": 541.6199882574863, - "y": 73.91486625514403 + "x": 541.61999, + "y": 73.91487 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1290.4501361223834, + "area": 1290.45014, "axes": { "#": 373 }, @@ -3290,13 +3290,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3352,11 +3352,11 @@ } }, { - "x": 616.1460942245644, - "y": 86.07600308641975 + "x": 616.14609, + "y": 86.076 }, { - "x": 580.3757752945232, + "x": 580.37578, "y": 50 }, { @@ -3385,16 +3385,16 @@ "y": 0 }, { - "x": 598.2609347595438, - "y": 68.03800154320987 + "x": 598.26093, + "y": 68.038 }, { "x": 0, "y": 0 }, { - "x": 598.2609347595438, - "y": 68.03800154320987 + "x": 598.26093, + "y": 68.038 }, { "fillStyle": "#4ECDC4", @@ -3431,36 +3431,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 580.3757752945232, + "x": 580.37578, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.1460942245644, + "x": 616.14609, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.1460942245644, - "y": 86.07600308641975 + "x": 616.14609, + "y": 86.076 }, { "body": null, "index": 3, "isInternal": false, - "x": 580.3757752945232, - "y": 86.07600308641975 + "x": 580.37578, + "y": 86.076 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1148.2925932011974, + "area": 1148.29259, "axes": { "#": 397 }, @@ -3484,13 +3484,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3546,12 +3546,12 @@ } }, { - "x": 646.7010067760048, - "y": 87.58127572016463 + "x": 646.70101, + "y": 87.58128 }, { - "x": 616.1460942245644, - "y": 50.00000000000001 + "x": 616.14609, + "y": 50 }, { "category": 1, @@ -3579,16 +3579,16 @@ "y": 0 }, { - "x": 631.4235505002846, - "y": 68.79063786008231 + "x": 631.42355, + "y": 68.79064 }, { "x": 0, "y": 0 }, { - "x": 631.4235505002846, - "y": 68.79063786008231 + "x": 631.42355, + "y": 68.79064 }, { "fillStyle": "#C44D58", @@ -3625,36 +3625,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 616.1460942245644, - "y": 50.00000000000001 + "x": 616.14609, + "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 646.7010067760048, - "y": 50.00000000000001 + "x": 646.70101, + "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 646.7010067760048, - "y": 87.58127572016463 + "x": 646.70101, + "y": 87.58128 }, { "body": null, "index": 3, "isInternal": false, - "x": 616.1460942245644, - "y": 87.58127572016463 + "x": 616.14609, + "y": 87.58128 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1926.7878890000002, + "area": 1926.78789, "axes": { "#": 421 }, @@ -3678,13 +3678,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3739,28 +3739,28 @@ } ], { - "x": 0.6234921001781484, - "y": 0.7818296496139309 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22251820971292155, - "y": 0.9749285339685962 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009815501548849, - "y": 0.43385740316433524 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009815501548849, - "y": -0.43385740316433524 + "x": -0.90098, + "y": -0.43386 }, { - "x": -0.22251820971292155, - "y": -0.9749285339685962 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234921001781484, - "y": -0.7818296496139309 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -3775,11 +3775,11 @@ } }, { - "x": 99.1293088678909, + "x": 99.12931, "y": 187.58 }, { - "x": 48.6863088678909, + "x": 48.68631, "y": 135.84 }, { @@ -3808,7 +3808,7 @@ "y": 0 }, { - "x": 75.22149999999999, + "x": 75.2215, "y": 161.71 }, { @@ -3816,7 +3816,7 @@ "y": 0 }, { - "x": 75.22149999999999, + "x": 75.2215, "y": 161.71 }, { @@ -3863,49 +3863,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 99.1293088678909, + "x": 99.12931, "y": 173.223 }, { "body": null, "index": 1, "isInternal": false, - "x": 81.1263088678909, + "x": 81.12631, "y": 187.58 }, { "body": null, "index": 2, "isInternal": false, - "x": 58.676308867890896, - "y": 182.45600000000002 + "x": 58.67631, + "y": 182.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 48.6863088678909, + "x": 48.68631, "y": 161.71 }, { "body": null, "index": 4, "isInternal": false, - "x": 58.676308867890896, + "x": 58.67631, "y": 140.964 }, { "body": null, "index": 5, "isInternal": false, - "x": 81.1263088678909, + "x": 81.12631, "y": 135.84 }, { "body": null, "index": 6, "isInternal": false, - "x": 99.1293088678909, + "x": 99.12931, "y": 150.197 }, { @@ -3913,7 +3913,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1097.755875, + "area": 1097.75588, "axes": { "#": 453 }, @@ -3937,13 +3937,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 927.6617490689248, - "inverseInertia": 0.0010779791243992539, - "inverseMass": 0.9109493492804126, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "inverseMass": 0.91095, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.097755875, + "mass": 1.09776, "motion": 0, "parent": null, "position": { @@ -3986,12 +3986,12 @@ } ], { - "x": -0.49999466010690446, - "y": 0.8660284867512045 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999466010690446, - "y": -0.8660284867512045 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -4006,12 +4006,12 @@ } }, { - "x": 135.4668088678909, - "y": 186.19000000000003 + "x": 135.46681, + "y": 186.19 }, { - "x": 91.8618088678909, - "y": 135.84000000000003 + "x": 91.86181, + "y": 135.84 }, { "category": 1, @@ -4039,16 +4039,16 @@ "y": 0 }, { - "x": 120.9318088678909, - "y": 161.01500000000001 + "x": 120.93181, + "y": 161.015 }, { "x": 0, "y": 0 }, { - "x": 120.9318088678909, - "y": 161.01500000000001 + "x": 120.93181, + "y": 161.015 }, { "fillStyle": "#4ECDC4", @@ -4082,29 +4082,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 135.4668088678909, - "y": 186.19000000000003 + "x": 135.46681, + "y": 186.19 }, { "body": null, "index": 1, "isInternal": false, - "x": 91.8618088678909, - "y": 161.01500000000001 + "x": 91.86181, + "y": 161.015 }, { "body": null, "index": 2, "isInternal": false, - "x": 135.4668088678909, - "y": 135.84000000000003 + "x": 135.46681, + "y": 135.84 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 477 }, @@ -4128,13 +4128,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4183,20 +4183,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4211,12 +4211,12 @@ } }, { - "x": 170.37176614771653, - "y": 174.58599999999998 + "x": 170.37177, + "y": 174.586 }, { - "x": 133.5217661477165, - "y": 135.83999999999997 + "x": 133.52177, + "y": 135.84 }, { "category": 1, @@ -4244,7 +4244,7 @@ "y": 0 }, { - "x": 153.89180886789092, + "x": 153.89181, "y": 155.213 }, { @@ -4252,7 +4252,7 @@ "y": 0 }, { - "x": 153.89180886789092, + "x": 153.89181, "y": 155.213 }, { @@ -4293,35 +4293,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 170.37176614771653, + "x": 170.37177, "y": 167.186 }, { "body": null, "index": 1, "isInternal": false, - "x": 147.59676614771652, - "y": 174.58599999999998 + "x": 147.59677, + "y": 174.586 }, { "body": null, "index": 2, "isInternal": false, - "x": 133.5217661477165, + "x": 133.52177, "y": 155.213 }, { "body": null, "index": 3, "isInternal": false, - "x": 147.59676614771652, - "y": 135.83999999999997 + "x": 147.59677, + "y": 135.84 }, { "body": null, "index": 4, "isInternal": false, - "x": 170.37176614771653, + "x": 170.37177, "y": 143.24 }, { @@ -4329,7 +4329,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1201.454244, + "area": 1201.45424, "axes": { "#": 505 }, @@ -4353,13 +4353,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4415,12 +4415,12 @@ } }, { - "x": 205.0337661477165, - "y": 170.50199999999998 + "x": 205.03377, + "y": 170.502 }, { - "x": 170.37176614771653, - "y": 135.83999999999997 + "x": 170.37177, + "y": 135.84 }, { "category": 1, @@ -4448,7 +4448,7 @@ "y": 0 }, { - "x": 187.70276614771652, + "x": 187.70277, "y": 153.171 }, { @@ -4456,7 +4456,7 @@ "y": 0 }, { - "x": 187.70276614771652, + "x": 187.70277, "y": 153.171 }, { @@ -4494,36 +4494,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 205.0337661477165, - "y": 170.50199999999998 + "x": 205.03377, + "y": 170.502 }, { "body": null, "index": 1, "isInternal": false, - "x": 170.37176614771653, - "y": 170.50199999999998 + "x": 170.37177, + "y": 170.502 }, { "body": null, "index": 2, "isInternal": false, - "x": 170.37176614771653, - "y": 135.83999999999997 + "x": 170.37177, + "y": 135.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 205.0337661477165, - "y": 135.83999999999997 + "x": 205.03377, + "y": 135.84 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1990.733346252218, + "area": 1990.73335, "axes": { "#": 529 }, @@ -4547,13 +4547,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4609,12 +4609,12 @@ } }, { - "x": 299.85749728626246, - "y": 156.83404149519893 + "x": 299.8575, + "y": 156.83404 }, { - "x": 205.0337661477165, - "y": 135.84000000000003 + "x": 205.03377, + "y": 135.84 }, { "category": 1, @@ -4642,16 +4642,16 @@ "y": 0 }, { - "x": 252.44563171698948, - "y": 146.33702074759947 + "x": 252.44563, + "y": 146.33702 }, { "x": 0, "y": 0 }, { - "x": 252.44563171698948, - "y": 146.33702074759947 + "x": 252.44563, + "y": 146.33702 }, { "fillStyle": "#FF6B6B", @@ -4688,29 +4688,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 205.0337661477165, - "y": 135.84000000000003 + "x": 205.03377, + "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 299.85749728626246, - "y": 135.84000000000003 + "x": 299.8575, + "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 299.85749728626246, - "y": 156.83404149519893 + "x": 299.8575, + "y": 156.83404 }, { "body": null, "index": 3, "isInternal": false, - "x": 205.0337661477165, - "y": 156.83404149519893 + "x": 205.03377, + "y": 156.83404 }, { "angle": 0, @@ -4724,7 +4724,7 @@ "bounds": { "#": 567 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 570 }, @@ -4742,13 +4742,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4821,52 +4821,52 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -4881,11 +4881,11 @@ } }, { - "x": 396.1714972862624, - "y": 232.85999999999999 + "x": 396.1715, + "y": 232.86 }, { - "x": 299.85749728626246, + "x": 299.8575, "y": 135.84 }, { @@ -4914,7 +4914,7 @@ "y": 0 }, { - "x": 348.01449728626244, + "x": 348.0145, "y": 184.35 }, { @@ -4922,7 +4922,7 @@ "y": 0 }, { - "x": 348.01449728626244, + "x": 348.0145, "y": 184.35 }, { @@ -5026,182 +5026,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.1714972862624, + "x": 396.1715, "y": 190.197 }, { "body": null, "index": 1, "isInternal": false, - "x": 393.37249728626244, + "x": 393.3725, "y": 201.552 }, { "body": null, "index": 2, "isInternal": false, - "x": 387.93749728626244, - "y": 211.90699999999998 + "x": 387.9375, + "y": 211.907 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.18249728626245, + "x": 380.1825, "y": 220.661 }, { "body": null, "index": 4, "isInternal": false, - "x": 370.5584972862624, + "x": 370.5585, "y": 227.304 }, { "body": null, "index": 5, "isInternal": false, - "x": 359.6234972862624, + "x": 359.6235, "y": 231.451 }, { "body": null, "index": 6, "isInternal": false, - "x": 348.01449728626244, - "y": 232.85999999999999 + "x": 348.0145, + "y": 232.86 }, { "body": null, "index": 7, "isInternal": false, - "x": 336.40549728626246, + "x": 336.4055, "y": 231.451 }, { "body": null, "index": 8, "isInternal": false, - "x": 325.47049728626246, + "x": 325.4705, "y": 227.304 }, { "body": null, "index": 9, "isInternal": false, - "x": 315.84649728626243, + "x": 315.8465, "y": 220.661 }, { "body": null, "index": 10, "isInternal": false, - "x": 308.09149728626244, - "y": 211.90699999999998 + "x": 308.0915, + "y": 211.907 }, { "body": null, "index": 11, "isInternal": false, - "x": 302.65649728626244, + "x": 302.6565, "y": 201.552 }, { "body": null, "index": 12, "isInternal": false, - "x": 299.85749728626246, + "x": 299.8575, "y": 190.197 }, { "body": null, "index": 13, "isInternal": false, - "x": 299.85749728626246, + "x": 299.8575, "y": 178.503 }, { "body": null, "index": 14, "isInternal": false, - "x": 302.65649728626244, + "x": 302.6565, "y": 167.148 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.09149728626244, + "x": 308.0915, "y": 156.793 }, { "body": null, "index": 16, "isInternal": false, - "x": 315.84649728626243, + "x": 315.8465, "y": 148.039 }, { "body": null, "index": 17, "isInternal": false, - "x": 325.47049728626246, + "x": 325.4705, "y": 141.396 }, { "body": null, "index": 18, "isInternal": false, - "x": 336.40549728626246, + "x": 336.4055, "y": 137.249 }, { "body": null, "index": 19, "isInternal": false, - "x": 348.01449728626244, + "x": 348.0145, "y": 135.84 }, { "body": null, "index": 20, "isInternal": false, - "x": 359.6234972862624, + "x": 359.6235, "y": 137.249 }, { "body": null, "index": 21, "isInternal": false, - "x": 370.5584972862624, + "x": 370.5585, "y": 141.396 }, { "body": null, "index": 22, "isInternal": false, - "x": 380.18249728626245, + "x": 380.1825, "y": 148.039 }, { "body": null, "index": 23, "isInternal": false, - "x": 387.93749728626244, + "x": 387.9375, "y": 156.793 }, { "body": null, "index": 24, "isInternal": false, - "x": 393.37249728626244, + "x": 393.3725, "y": 167.148 }, { "body": null, "index": 25, "isInternal": false, - "x": 396.1714972862624, + "x": 396.1715, "y": 178.503 }, { @@ -5209,7 +5209,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 610 }, @@ -5233,13 +5233,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5295,12 +5295,12 @@ } }, { - "x": 480.4041790420924, - "y": 159.99646433470505 + "x": 480.40418, + "y": 159.99646 }, { - "x": 396.1714972862624, - "y": 135.83999999999997 + "x": 396.1715, + "y": 135.84 }, { "category": 1, @@ -5328,16 +5328,16 @@ "y": 0 }, { - "x": 438.2878381641774, - "y": 147.91823216735253 + "x": 438.28784, + "y": 147.91823 }, { "x": 0, "y": 0 }, { - "x": 438.2878381641774, - "y": 147.91823216735253 + "x": 438.28784, + "y": 147.91823 }, { "fillStyle": "#556270", @@ -5374,36 +5374,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.1714972862624, - "y": 135.83999999999997 + "x": 396.1715, + "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 480.4041790420924, - "y": 135.83999999999997 + "x": 480.40418, + "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 480.4041790420924, - "y": 159.99646433470505 + "x": 480.40418, + "y": 159.99646 }, { "body": null, "index": 3, "isInternal": false, - "x": 396.1714972862624, - "y": 159.99646433470505 + "x": 396.1715, + "y": 159.99646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 634 }, @@ -5427,13 +5427,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5489,11 +5489,11 @@ } }, { - "x": 529.7907531161663, - "y": 156.7050977366255 + "x": 529.79075, + "y": 156.7051 }, { - "x": 480.4041790420924, + "x": 480.40418, "y": 135.84 }, { @@ -5522,16 +5522,16 @@ "y": 0 }, { - "x": 505.0974660791294, - "y": 146.27254886831275 + "x": 505.09747, + "y": 146.27255 }, { "x": 0, "y": 0 }, { - "x": 505.0974660791294, - "y": 146.27254886831275 + "x": 505.09747, + "y": 146.27255 }, { "fillStyle": "#C7F464", @@ -5568,43 +5568,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 480.4041790420924, + "x": 480.40418, "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 529.7907531161663, + "x": 529.79075, "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 529.7907531161663, - "y": 156.7050977366255 + "x": 529.79075, + "y": 156.7051 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.4041790420924, - "y": 156.7050977366255 + "x": 480.40418, + "y": 156.7051 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2157.165332, + "area": 2157.16533, "axes": { "#": 658 }, "bounds": { "#": 672 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 675 }, @@ -5622,13 +5622,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5701,52 +5701,52 @@ } ], { - "x": -0.9709433940705979, - "y": -0.2393092674984975 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854643472565572, - "y": -0.46470731620829797 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485032926619368, - "y": -0.6631310736756638 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680789542040116, - "y": -0.8229740590021511 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3546257389378823, - "y": -0.9350083343386629 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12050542549813427, - "y": -0.9927126686133876 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050542549813427, - "y": -0.9927126686133876 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546257389378823, - "y": -0.9350083343386629 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680789542040116, - "y": -0.8229740590021511 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485032926619368, - "y": -0.6631310736756638 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854643472565572, - "y": -0.46470731620829797 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709433940705979, - "y": -0.2393092674984975 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -5761,11 +5761,11 @@ } }, { - "x": 582.0707531161663, + "x": 582.07075, "y": 188.504 }, { - "x": 529.7907531161663, + "x": 529.79075, "y": 135.84 }, { @@ -5794,7 +5794,7 @@ "y": 0 }, { - "x": 555.9307531161663, + "x": 555.93075, "y": 162.172 }, { @@ -5802,7 +5802,7 @@ "y": 0 }, { - "x": 555.9307531161663, + "x": 555.93075, "y": 162.172 }, { @@ -5906,182 +5906,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 582.0707531161663, + "x": 582.07075, "y": 165.346 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.5517531161663, + "x": 580.55175, "y": 171.509 }, { "body": null, "index": 2, "isInternal": false, - "x": 577.6017531161664, + "x": 577.60175, "y": 177.13 }, { "body": null, "index": 3, "isInternal": false, - "x": 573.3917531161663, + "x": 573.39175, "y": 181.882 }, { "body": null, "index": 4, "isInternal": false, - "x": 568.1677531161663, + "x": 568.16775, "y": 185.488 }, { "body": null, "index": 5, "isInternal": false, - "x": 562.2327531161664, + "x": 562.23275, "y": 187.739 }, { "body": null, "index": 6, "isInternal": false, - "x": 555.9307531161663, + "x": 555.93075, "y": 188.504 }, { "body": null, "index": 7, "isInternal": false, - "x": 549.6287531161663, + "x": 549.62875, "y": 187.739 }, { "body": null, "index": 8, "isInternal": false, - "x": 543.6937531161664, + "x": 543.69375, "y": 185.488 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.4697531161663, + "x": 538.46975, "y": 181.882 }, { "body": null, "index": 10, "isInternal": false, - "x": 534.2597531161664, + "x": 534.25975, "y": 177.13 }, { "body": null, "index": 11, "isInternal": false, - "x": 531.3097531161663, + "x": 531.30975, "y": 171.509 }, { "body": null, "index": 12, "isInternal": false, - "x": 529.7907531161663, + "x": 529.79075, "y": 165.346 }, { "body": null, "index": 13, "isInternal": false, - "x": 529.7907531161663, + "x": 529.79075, "y": 158.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 531.3097531161663, - "y": 152.83499999999998 + "x": 531.30975, + "y": 152.835 }, { "body": null, "index": 15, "isInternal": false, - "x": 534.2597531161664, + "x": 534.25975, "y": 147.214 }, { "body": null, "index": 16, "isInternal": false, - "x": 538.4697531161663, + "x": 538.46975, "y": 142.462 }, { "body": null, "index": 17, "isInternal": false, - "x": 543.6937531161664, + "x": 543.69375, "y": 138.856 }, { "body": null, "index": 18, "isInternal": false, - "x": 549.6287531161663, + "x": 549.62875, "y": 136.605 }, { "body": null, "index": 19, "isInternal": false, - "x": 555.9307531161663, + "x": 555.93075, "y": 135.84 }, { "body": null, "index": 20, "isInternal": false, - "x": 562.2327531161664, + "x": 562.23275, "y": 136.605 }, { "body": null, "index": 21, "isInternal": false, - "x": 568.1677531161663, + "x": 568.16775, "y": 138.856 }, { "body": null, "index": 22, "isInternal": false, - "x": 573.3917531161663, + "x": 573.39175, "y": 142.462 }, { "body": null, "index": 23, "isInternal": false, - "x": 577.6017531161664, + "x": 577.60175, "y": 147.214 }, { "body": null, "index": 24, "isInternal": false, - "x": 580.5517531161663, - "y": 152.83499999999998 + "x": 580.55175, + "y": 152.835 }, { "body": null, "index": 25, "isInternal": false, - "x": 582.0707531161663, + "x": 582.07075, "y": 158.998 }, { @@ -6089,7 +6089,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2399.6281959999997, + "area": 2399.6282, "axes": { "#": 715 }, @@ -6113,13 +6113,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6175,11 +6175,11 @@ } }, { - "x": 631.0567531161664, + "x": 631.05675, "y": 184.826 }, { - "x": 582.0707531161663, + "x": 582.07075, "y": 135.84 }, { @@ -6208,7 +6208,7 @@ "y": 0 }, { - "x": 606.5637531161664, + "x": 606.56375, "y": 160.333 }, { @@ -6216,7 +6216,7 @@ "y": 0 }, { - "x": 606.5637531161664, + "x": 606.56375, "y": 160.333 }, { @@ -6254,28 +6254,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.0567531161664, + "x": 631.05675, "y": 184.826 }, { "body": null, "index": 1, "isInternal": false, - "x": 582.0707531161663, + "x": 582.07075, "y": 184.826 }, { "body": null, "index": 2, "isInternal": false, - "x": 582.0707531161663, + "x": 582.07075, "y": 135.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 631.0567531161664, + "x": 631.05675, "y": 135.84 }, { @@ -6283,7 +6283,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 739 }, @@ -6307,13 +6307,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6369,11 +6369,11 @@ } }, { - "x": 666.4696903589647, - "y": 177.90893004115227 + "x": 666.46969, + "y": 177.90893 }, { - "x": 631.0567531161664, + "x": 631.05675, "y": 135.84 }, { @@ -6402,16 +6402,16 @@ "y": 0 }, { - "x": 648.7632217375656, - "y": 156.87446502057614 + "x": 648.76322, + "y": 156.87447 }, { "x": 0, "y": 0 }, { - "x": 648.7632217375656, - "y": 156.87446502057614 + "x": 648.76322, + "y": 156.87447 }, { "fillStyle": "#4ECDC4", @@ -6448,36 +6448,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.0567531161664, + "x": 631.05675, "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 666.4696903589647, + "x": 666.46969, "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 666.4696903589647, - "y": 177.90893004115227 + "x": 666.46969, + "y": 177.90893 }, { "body": null, "index": 3, "isInternal": false, - "x": 631.0567531161664, - "y": 177.90893004115227 + "x": 631.05675, + "y": 177.90893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 763 }, @@ -6501,13 +6501,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6563,11 +6563,11 @@ } }, { - "x": 708.2335792478536, - "y": 178.1101903292181 + "x": 708.23358, + "y": 178.11019 }, { - "x": 666.4696903589647, + "x": 666.46969, "y": 135.84 }, { @@ -6596,16 +6596,16 @@ "y": 0 }, { - "x": 687.3516348034092, - "y": 156.97509516460906 + "x": 687.35163, + "y": 156.9751 }, { "x": 0, "y": 0 }, { - "x": 687.3516348034092, - "y": 156.97509516460906 + "x": 687.35163, + "y": 156.9751 }, { "fillStyle": "#FF6B6B", @@ -6642,36 +6642,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 666.4696903589647, + "x": 666.46969, "y": 135.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 708.2335792478536, + "x": 708.23358, "y": 135.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 708.2335792478536, - "y": 178.1101903292181 + "x": 708.23358, + "y": 178.11019 }, { "body": null, "index": 3, "isInternal": false, - "x": 666.4696903589647, - "y": 178.1101903292181 + "x": 666.46969, + "y": 178.11019 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1919.5457599999997, + "area": 1919.54576, "axes": { "#": 787 }, @@ -6695,13 +6695,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6744,12 +6744,12 @@ } ], { - "x": -0.4999772266722585, - "y": -0.8660385515721092 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999772266722585, - "y": -0.8660385515721092 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -6764,12 +6764,12 @@ } }, { - "x": 97.07999999999998, + "x": 97.08, "y": 287.222 }, { - "x": 49.99999999999999, - "y": 232.85999999999999 + "x": 50, + "y": 232.86 }, { "category": 1, @@ -6797,7 +6797,7 @@ "y": 0 }, { - "x": 73.53999999999999, + "x": 73.54, "y": 260.041 }, { @@ -6805,7 +6805,7 @@ "y": 0 }, { - "x": 73.53999999999999, + "x": 73.54, "y": 260.041 }, { @@ -6849,42 +6849,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 97.07999999999998, + "x": 97.08, "y": 273.632 }, { "body": null, "index": 1, "isInternal": false, - "x": 73.53999999999999, + "x": 73.54, "y": 287.222 }, { "body": null, "index": 2, "isInternal": false, - "x": 49.99999999999999, + "x": 50, "y": 273.632 }, { "body": null, "index": 3, "isInternal": false, - "x": 49.99999999999999, + "x": 50, "y": 246.45 }, { "body": null, "index": 4, "isInternal": false, - "x": 73.53999999999999, - "y": 232.85999999999999 + "x": 73.54, + "y": 232.86 }, { "body": null, "index": 5, "isInternal": false, - "x": 97.07999999999998, + "x": 97.08, "y": 246.45 }, { @@ -6892,7 +6892,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6052.328004, + "area": 6052.328, "axes": { "#": 814 }, @@ -6916,13 +6916,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -6965,12 +6965,12 @@ } ], { - "x": -0.4999896834528559, - "y": -0.8660313599637792 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999896834528559, - "y": -0.8660313599637792 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -6989,8 +6989,8 @@ "y": 329.39 }, { - "x": 97.07999999999998, - "y": 232.85999999999999 + "x": 97.08, + "y": 232.86 }, { "category": 1, @@ -7071,7 +7071,7 @@ "index": 0, "isInternal": false, "x": 180.678, - "y": 305.25800000000004 + "y": 305.258 }, { "body": null, @@ -7084,36 +7084,36 @@ "body": null, "index": 2, "isInternal": false, - "x": 97.07999999999998, - "y": 305.25800000000004 + "x": 97.08, + "y": 305.258 }, { "body": null, "index": 3, "isInternal": false, - "x": 97.07999999999998, - "y": 256.99199999999996 + "x": 97.08, + "y": 256.992 }, { "body": null, "index": 4, "isInternal": false, "x": 138.879, - "y": 232.85999999999999 + "y": 232.86 }, { "body": null, "index": 5, "isInternal": false, "x": 180.678, - "y": 256.99199999999996 + "y": 256.992 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 841 }, @@ -7137,13 +7137,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7199,12 +7199,12 @@ } }, { - "x": 225.82936316872429, - "y": 282.02846707818924 + "x": 225.82936, + "y": 282.02847 }, { "x": 180.678, - "y": 232.85999999999999 + "y": 232.86 }, { "category": 1, @@ -7232,16 +7232,16 @@ "y": 0 }, { - "x": 203.25368158436214, - "y": 257.4442335390946 + "x": 203.25368, + "y": 257.44423 }, { "x": 0, "y": 0 }, { - "x": 203.25368158436214, - "y": 257.4442335390946 + "x": 203.25368, + "y": 257.44423 }, { "fillStyle": "#C7F464", @@ -7279,35 +7279,35 @@ "index": 0, "isInternal": false, "x": 180.678, - "y": 232.85999999999999 + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 225.82936316872429, - "y": 232.85999999999999 + "x": 225.82936, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.82936316872429, - "y": 282.02846707818924 + "x": 225.82936, + "y": 282.02847 }, { "body": null, "index": 3, "isInternal": false, "x": 180.678, - "y": 282.02846707818924 + "y": 282.02847 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2601.1074479999997, + "area": 2601.10745, "axes": { "#": 865 }, @@ -7331,13 +7331,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7380,12 +7380,12 @@ } ], { - "x": -0.4999869137730785, - "y": -0.8660329589892477 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999869137730785, - "y": -0.8660329589892477 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7400,12 +7400,12 @@ } }, { - "x": 280.63336316872426, - "y": 296.14199999999994 + "x": 280.63336, + "y": 296.142 }, { - "x": 225.82936316872429, - "y": 232.85999999999999 + "x": 225.82936, + "y": 232.86 }, { "category": 1, @@ -7433,7 +7433,7 @@ "y": 0 }, { - "x": 253.23136316872427, + "x": 253.23136, "y": 264.501 }, { @@ -7441,7 +7441,7 @@ "y": 0 }, { - "x": 253.23136316872427, + "x": 253.23136, "y": 264.501 }, { @@ -7485,50 +7485,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 280.63336316872426, + "x": 280.63336, "y": 280.322 }, { "body": null, "index": 1, "isInternal": false, - "x": 253.23136316872427, - "y": 296.14199999999994 + "x": 253.23136, + "y": 296.142 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.82936316872429, + "x": 225.82936, "y": 280.322 }, { "body": null, "index": 3, "isInternal": false, - "x": 225.82936316872429, - "y": 248.67999999999998 + "x": 225.82936, + "y": 248.68 }, { "body": null, "index": 4, "isInternal": false, - "x": 253.23136316872427, - "y": 232.85999999999999 + "x": 253.23136, + "y": 232.86 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.63336316872426, - "y": 248.67999999999998 + "x": 280.63336, + "y": 248.68 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1413.3088360000002, + "area": 1413.30884, "axes": { "#": 892 }, @@ -7552,13 +7552,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7614,12 +7614,12 @@ } }, { - "x": 318.2273631687243, - "y": 270.45399999999995 + "x": 318.22736, + "y": 270.454 }, { - "x": 280.63336316872426, - "y": 232.85999999999999 + "x": 280.63336, + "y": 232.86 }, { "category": 1, @@ -7647,16 +7647,16 @@ "y": 0 }, { - "x": 299.4303631687243, - "y": 251.65699999999998 + "x": 299.43036, + "y": 251.657 }, { "x": 0, "y": 0 }, { - "x": 299.4303631687243, - "y": 251.65699999999998 + "x": 299.43036, + "y": 251.657 }, { "fillStyle": "#556270", @@ -7693,36 +7693,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.2273631687243, - "y": 270.45399999999995 + "x": 318.22736, + "y": 270.454 }, { "body": null, "index": 1, "isInternal": false, - "x": 280.63336316872426, - "y": 270.45399999999995 + "x": 280.63336, + "y": 270.454 }, { "body": null, "index": 2, "isInternal": false, - "x": 280.63336316872426, - "y": 232.85999999999999 + "x": 280.63336, + "y": 232.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 318.2273631687243, - "y": 232.85999999999999 + "x": 318.22736, + "y": 232.86 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5460.808751999999, + "area": 5460.80875, "axes": { "#": 916 }, @@ -7746,13 +7746,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7795,12 +7795,12 @@ } ], { - "x": -0.49999811726960197, - "y": -0.8660264907766121 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.49999811726960197, - "y": -0.8660264907766121 + "x": 0.5, + "y": -0.86603 }, { "x": 1, @@ -7815,12 +7815,12 @@ } }, { - "x": 397.6353631687243, - "y": 324.5519999999999 + "x": 397.63536, + "y": 324.552 }, { - "x": 318.2273631687243, - "y": 232.85999999999996 + "x": 318.22736, + "y": 232.86 }, { "category": 1, @@ -7848,16 +7848,16 @@ "y": 0 }, { - "x": 357.9313631687243, - "y": 278.70599999999996 + "x": 357.93136, + "y": 278.706 }, { "x": 0, "y": 0 }, { - "x": 357.9313631687243, - "y": 278.70599999999996 + "x": 357.93136, + "y": 278.706 }, { "fillStyle": "#4ECDC4", @@ -7900,50 +7900,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.6353631687243, - "y": 301.62899999999996 + "x": 397.63536, + "y": 301.629 }, { "body": null, "index": 1, "isInternal": false, - "x": 357.9313631687243, - "y": 324.5519999999999 + "x": 357.93136, + "y": 324.552 }, { "body": null, "index": 2, "isInternal": false, - "x": 318.2273631687243, - "y": 301.62899999999996 + "x": 318.22736, + "y": 301.629 }, { "body": null, "index": 3, "isInternal": false, - "x": 318.2273631687243, - "y": 255.78299999999996 + "x": 318.22736, + "y": 255.783 }, { "body": null, "index": 4, "isInternal": false, - "x": 357.9313631687243, - "y": 232.85999999999996 + "x": 357.93136, + "y": 232.86 }, { "body": null, "index": 5, "isInternal": false, - "x": 397.6353631687243, - "y": 255.78299999999996 + "x": 397.63536, + "y": 255.783 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 943 }, @@ -7967,13 +7967,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -8029,12 +8029,12 @@ } }, { - "x": 417.80588786008235, - "y": 255.2497890946502 + "x": 417.80589, + "y": 255.24979 }, { - "x": 397.6353631687243, - "y": 232.85999999999999 + "x": 397.63536, + "y": 232.86 }, { "category": 1, @@ -8062,16 +8062,16 @@ "y": 0 }, { - "x": 407.7206255144033, - "y": 244.0548945473251 + "x": 407.72063, + "y": 244.05489 }, { "x": 0, "y": 0 }, { - "x": 407.7206255144033, - "y": 244.0548945473251 + "x": 407.72063, + "y": 244.05489 }, { "fillStyle": "#556270", @@ -8108,36 +8108,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.6353631687243, - "y": 232.85999999999999 + "x": 397.63536, + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 417.80588786008235, - "y": 232.85999999999999 + "x": 417.80589, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 417.80588786008235, - "y": 255.2497890946502 + "x": 417.80589, + "y": 255.24979 }, { "body": null, "index": 3, "isInternal": false, - "x": 397.6353631687243, - "y": 255.2497890946502 + "x": 397.63536, + "y": 255.24979 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 967 }, @@ -8161,13 +8161,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -8223,12 +8223,12 @@ } }, { - "x": 519.6390497256516, - "y": 262.5328395061729 + "x": 519.63905, + "y": 262.53284 }, { - "x": 417.80588786008235, - "y": 232.85999999999999 + "x": 417.80589, + "y": 232.86 }, { "category": 1, @@ -8256,16 +8256,16 @@ "y": 0 }, { - "x": 468.722468792867, - "y": 247.69641975308642 + "x": 468.72247, + "y": 247.69642 }, { "x": 0, "y": 0 }, { - "x": 468.722468792867, - "y": 247.69641975308642 + "x": 468.72247, + "y": 247.69642 }, { "fillStyle": "#C44D58", @@ -8302,36 +8302,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.80588786008235, - "y": 232.85999999999999 + "x": 417.80589, + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 519.6390497256516, - "y": 232.85999999999999 + "x": 519.63905, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 519.6390497256516, - "y": 262.5328395061729 + "x": 519.63905, + "y": 262.53284 }, { "body": null, "index": 3, "isInternal": false, - "x": 417.80588786008235, - "y": 262.5328395061729 + "x": 417.80589, + "y": 262.53284 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 991 }, @@ -8355,13 +8355,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8417,12 +8417,12 @@ } }, { - "x": 559.7105517832647, - "y": 254.24027263374484 + "x": 559.71055, + "y": 254.24027 }, { - "x": 519.6390497256516, - "y": 232.85999999999999 + "x": 519.63905, + "y": 232.86 }, { "category": 1, @@ -8450,16 +8450,16 @@ "y": 0 }, { - "x": 539.6748007544581, - "y": 243.5501363168724 + "x": 539.6748, + "y": 243.55014 }, { "x": 0, "y": 0 }, { - "x": 539.6748007544581, - "y": 243.5501363168724 + "x": 539.6748, + "y": 243.55014 }, { "fillStyle": "#556270", @@ -8496,36 +8496,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 519.6390497256516, - "y": 232.85999999999999 + "x": 519.63905, + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 559.7105517832647, - "y": 232.85999999999999 + "x": 559.71055, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 559.7105517832647, - "y": 254.24027263374484 + "x": 559.71055, + "y": 254.24027 }, { "body": null, "index": 3, "isInternal": false, - "x": 519.6390497256516, - "y": 254.24027263374484 + "x": 519.63905, + "y": 254.24027 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 1015 }, @@ -8549,13 +8549,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8601,16 +8601,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8625,12 +8625,12 @@ } }, { - "x": 629.9625517832646, - "y": 303.11199999999997 + "x": 629.96255, + "y": 303.112 }, { - "x": 559.7105517832647, - "y": 232.85999999999999 + "x": 559.71055, + "y": 232.86 }, { "category": 1, @@ -8658,7 +8658,7 @@ "y": 0 }, { - "x": 594.8365517832647, + "x": 594.83655, "y": 267.986 }, { @@ -8666,7 +8666,7 @@ "y": 0 }, { - "x": 594.8365517832647, + "x": 594.83655, "y": 267.986 }, { @@ -8716,64 +8716,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 629.9625517832646, + "x": 629.96255, "y": 282.536 }, { "body": null, "index": 1, "isInternal": false, - "x": 609.3865517832646, - "y": 303.11199999999997 + "x": 609.38655, + "y": 303.112 }, { "body": null, "index": 2, "isInternal": false, - "x": 580.2865517832647, - "y": 303.11199999999997 + "x": 580.28655, + "y": 303.112 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.7105517832647, + "x": 559.71055, "y": 282.536 }, { "body": null, "index": 4, "isInternal": false, - "x": 559.7105517832647, - "y": 253.43599999999998 + "x": 559.71055, + "y": 253.436 }, { "body": null, "index": 5, "isInternal": false, - "x": 580.2865517832647, - "y": 232.85999999999999 + "x": 580.28655, + "y": 232.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 609.3865517832646, - "y": 232.85999999999999 + "x": 609.38655, + "y": 232.86 }, { "body": null, "index": 7, "isInternal": false, - "x": 629.9625517832646, - "y": 253.43599999999998 + "x": 629.96255, + "y": 253.436 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 1045 }, @@ -8797,13 +8797,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8859,12 +8859,12 @@ } }, { - "x": 719.4668384773661, - "y": 254.81584705075446 + "x": 719.46684, + "y": 254.81585 }, { - "x": 629.9625517832646, - "y": 232.85999999999999 + "x": 629.96255, + "y": 232.86 }, { "category": 1, @@ -8892,16 +8892,16 @@ "y": 0 }, { - "x": 674.7146951303154, - "y": 243.83792352537722 + "x": 674.7147, + "y": 243.83792 }, { "x": 0, "y": 0 }, { - "x": 674.7146951303154, - "y": 243.83792352537722 + "x": 674.7147, + "y": 243.83792 }, { "fillStyle": "#4ECDC4", @@ -8938,36 +8938,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 629.9625517832646, - "y": 232.85999999999999 + "x": 629.96255, + "y": 232.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 719.4668384773661, - "y": 232.85999999999999 + "x": 719.46684, + "y": 232.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 719.4668384773661, - "y": 254.81584705075446 + "x": 719.46684, + "y": 254.81585 }, { "body": null, "index": 3, "isInternal": false, - "x": 629.9625517832646, - "y": 254.81584705075446 + "x": 629.96255, + "y": 254.81585 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1492.5256200000001, + "area": 1492.52562, "axes": { "#": 1069 }, @@ -8991,13 +8991,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1714.8324723309402, - "inverseInertia": 0.0005831473430408735, - "inverseMass": 0.6700052492231255, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "inverseMass": 0.67001, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.49252562, + "mass": 1.49253, "motion": 0, "parent": null, "position": { @@ -9040,12 +9040,12 @@ } ], { - "x": -0.5000025921589079, - "y": 0.8660239071956228 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000025921589079, - "y": -0.8660239071956228 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -9060,12 +9060,12 @@ } }, { - "x": 761.8368384773661, - "y": 291.56999999999994 + "x": 761.83684, + "y": 291.57 }, { - "x": 710.9928384773661, - "y": 232.85999999999999 + "x": 710.99284, + "y": 232.86 }, { "category": 1, @@ -9093,7 +9093,7 @@ "y": 0 }, { - "x": 744.8888384773661, + "x": 744.88884, "y": 262.215 }, { @@ -9101,7 +9101,7 @@ "y": 0 }, { - "x": 744.8888384773661, + "x": 744.88884, "y": 262.215 }, { @@ -9136,22 +9136,22 @@ "body": null, "index": 0, "isInternal": false, - "x": 761.8368384773661, - "y": 291.56999999999994 + "x": 761.83684, + "y": 291.57 }, { "body": null, "index": 1, "isInternal": false, - "x": 710.9928384773661, + "x": 710.99284, "y": 262.215 }, { "body": null, "index": 2, "isInternal": false, - "x": 761.8368384773661, - "y": 232.85999999999999 + "x": 761.83684, + "y": 232.86 }, [], [], diff --git a/test/browser/refs/sleeping/sleeping-10.json b/test/browser/refs/sleeping/sleeping-10.json index 41cbcbe1..0cdae956 100644 --- a/test/browser/refs/sleeping/sleeping-10.json +++ b/test/browser/refs/sleeping/sleeping-10.json @@ -1010,7 +1010,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1534.906434764454, + "area": 1534.90643, "axes": { "#": 97 }, @@ -1034,14 +1034,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, - "motion": 2.2526572115109698, + "mass": 1.53491, + "motion": 2.25266, "parent": null, "position": { "#": 109 @@ -1062,7 +1062,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1099,12 +1099,12 @@ } }, { - "x": 82.40102309415396, - "y": 112.80712013226713 + "x": 82.40102, + "y": 112.80712 }, { - "x": 45.99785951390703, - "y": 67.73575476702572 + "x": 45.99786, + "y": 67.73575 }, { "category": 1, @@ -1132,16 +1132,16 @@ "y": 0 }, { - "x": 64.1994413040305, - "y": 88.8178020921286 + "x": 64.19944, + "y": 88.8178 }, { - "x": -0.21240689241880487, + "x": -0.21241, "y": 0 }, { - "x": 64.1994413040305, - "y": 85.91053137709295 + "x": 64.19944, + "y": 85.91053 }, { "endCol": 1, @@ -1165,7 +1165,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1185,36 +1185,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 45.99785951390703, - "y": 67.73575476702572 + "x": 45.99786, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 82.40102309415396, - "y": 67.73575476702572 + "x": 82.40102, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 82.40102309415396, - "y": 109.89984941723148 + "x": 82.40102, + "y": 109.89985 }, { "body": null, "index": 3, "isInternal": false, - "x": 45.99785951390703, - "y": 109.89984941723148 + "x": 45.99786, + "y": 109.89985 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.52878634164, + "area": 2220.52879, "axes": { "#": 122 }, @@ -1238,14 +1238,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, - "motion": 2.2526572115109698, + "mass": 2.22053, + "motion": 2.25266, "parent": null, "position": { "#": 134 @@ -1266,7 +1266,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1303,12 +1303,12 @@ } }, { - "x": 130.08822378996675, - "y": 119.64418288946877 + "x": 130.08822, + "y": 119.64418 }, { - "x": 84.7723801685676, - "y": 67.73575476702572 + "x": 84.77238, + "y": 67.73575 }, { "category": 1, @@ -1336,16 +1336,16 @@ "y": 0 }, { - "x": 107.43030197926718, - "y": 92.23633347072942 + "x": 107.4303, + "y": 92.23633 }, { - "x": -0.0402285530991624, + "x": -0.04023, "y": 0 }, { - "x": 107.43030197926718, - "y": 89.32906275569377 + "x": 107.4303, + "y": 89.32906 }, { "endCol": 2, @@ -1369,7 +1369,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1389,36 +1389,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 84.7723801685676, - "y": 67.73575476702572 + "x": 84.77238, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 130.08822378996675, - "y": 67.73575476702572 + "x": 130.08822, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 130.08822378996675, - "y": 116.73691217443312 + "x": 130.08822, + "y": 116.73691 }, { "body": null, "index": 3, "isInternal": false, - "x": 84.7723801685676, - "y": 116.73691217443312 + "x": 84.77238, + "y": 116.73691 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1140.197701571206, + "area": 1140.1977, "axes": { "#": 147 }, @@ -1442,14 +1442,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, - "motion": 2.2526572115109698, + "mass": 1.1402, + "motion": 2.25266, "parent": null, "position": { "#": 159 @@ -1470,7 +1470,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1507,12 +1507,12 @@ } }, { - "x": 169.54388458953156, - "y": 99.71427033802846 + "x": 169.54388, + "y": 99.71427 }, { - "x": 130.3230769763628, - "y": 67.73575476702574 + "x": 130.32308, + "y": 67.73575 }, { "category": 1, @@ -1540,16 +1540,16 @@ "y": 0 }, { - "x": 149.93348078294719, - "y": 82.27137719500926 + "x": 149.93348, + "y": 82.27138 }, { - "x": -0.026009009225921916, + "x": -0.02601, "y": 0 }, { - "x": 149.93348078294719, - "y": 79.36410647997361 + "x": 149.93348, + "y": 79.36411 }, { "endCol": 3, @@ -1573,7 +1573,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -1593,36 +1593,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 130.3230769763628, - "y": 67.73575476702574 + "x": 130.32308, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 169.54388458953156, - "y": 67.73575476702574 + "x": 169.54388, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 169.54388458953156, - "y": 96.8069996229928 + "x": 169.54388, + "y": 96.807 }, { "body": null, "index": 3, "isInternal": false, - "x": 130.3230769763628, - "y": 96.8069996229928 + "x": 130.32308, + "y": 96.807 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 752.4076041785743, + "area": 752.4076, "axes": { "#": 172 }, @@ -1646,14 +1646,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, - "motion": 2.2526572115109698, + "mass": 0.75241, + "motion": 2.25266, "parent": null, "position": { "#": 184 @@ -1674,7 +1674,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1711,12 +1711,12 @@ } }, { - "x": 194.37119940434638, - "y": 100.88775284831652 + "x": 194.3712, + "y": 100.88775 }, { - "x": 169.49388458953155, - "y": 67.73575476702574 + "x": 169.49388, + "y": 67.73575 }, { "category": 1, @@ -1744,16 +1744,16 @@ "y": 0 }, { - "x": 181.93254199693897, - "y": 82.8581184501533 + "x": 181.93254, + "y": 82.85812 }, { - "x": -0.026009009225915793, + "x": -0.02601, "y": 0 }, { - "x": 181.93254199693897, - "y": 79.95084773511765 + "x": 181.93254, + "y": 79.95085 }, { "endCol": 4, @@ -1777,7 +1777,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -1797,36 +1797,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 169.49388458953155, - "y": 67.73575476702574 + "x": 169.49388, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 194.37119940434638, - "y": 67.73575476702574 + "x": 194.3712, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 194.37119940434638, - "y": 97.98048213328087 + "x": 194.3712, + "y": 97.98048 }, { "body": null, "index": 3, "isInternal": false, - "x": 169.49388458953155, - "y": 97.98048213328087 + "x": 169.49388, + "y": 97.98048 }, { - "angle": 3.8762187644967887e-16, - "anglePrev": 2.649710854317212e-16, - "angularSpeed": 1.3074381196637362e-16, - "angularVelocity": 1.2762254350449912e-16, - "area": 2027.2541820000001, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2027.25418, "axes": { "#": 197 }, @@ -1850,14 +1850,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, - "motion": 2.2526572115109698, + "mass": 2.02725, + "motion": 2.25266, "parent": null, "position": { "#": 210 @@ -1878,7 +1878,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1902,16 +1902,16 @@ } ], { - "x": -0.5000085820847088, - "y": -0.8660204488588241 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.5000085820847092, - "y": -0.8660204488588237 + "x": 0.50001, + "y": -0.86602 }, { "x": 1, - "y": 3.8762187644967887e-16 + "y": 0 }, { "max": { @@ -1922,12 +1922,12 @@ } }, { - "x": 243.74874325981477, - "y": 125.11162465181849 + "x": 243.74874, + "y": 125.11162 }, { - "x": 195.36674325981477, - "y": 66.33635393678286 + "x": 195.36674, + "y": 66.33635 }, { "category": 1, @@ -1955,16 +1955,16 @@ "y": 0 }, { - "x": 219.55774325981477, - "y": 94.27035393678284 + "x": 219.55774, + "y": 94.27035 }, { "x": 0, "y": 0 }, { - "x": 219.55774325981477, - "y": 91.36308322174719 + "x": 219.55774, + "y": 91.36308 }, { "endCol": 5, @@ -1988,7 +1988,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -2014,49 +2014,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 243.74874325981477, - "y": 108.23735393678284 + "x": 243.74874, + "y": 108.23735 }, { "body": null, "index": 1, "isInternal": false, - "x": 219.55774325981477, - "y": 122.20435393678284 + "x": 219.55774, + "y": 122.20435 }, { "body": null, "index": 2, "isInternal": false, - "x": 195.36674325981477, - "y": 108.23735393678284 + "x": 195.36674, + "y": 108.23735 }, { "body": null, "index": 3, "isInternal": false, - "x": 195.36674325981477, - "y": 80.30335393678284 + "x": 195.36674, + "y": 80.30335 }, { "body": null, "index": 4, "isInternal": false, - "x": 219.55774325981477, - "y": 66.33635393678286 + "x": 219.55774, + "y": 66.33635 }, { "body": null, "index": 5, "isInternal": false, - "x": 243.74874325981477, - "y": 80.30335393678284 + "x": 243.74874, + "y": 80.30335 }, { - "angle": -5.246583236285029e-16, - "anglePrev": -4.472887203722439e-16, - "angularSpeed": 7.552552256704208e-17, - "angularVelocity": -7.623673670241777e-17, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 4842.27229, "axes": { "#": 225 @@ -2081,14 +2081,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, - "motion": 2.2526572115109698, + "mass": 4.84227, + "motion": 2.25266, "parent": null, "position": { "#": 240 @@ -2109,7 +2109,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2139,24 +2139,24 @@ } ], { - "x": 0.30902000749156733, - "y": 0.95105553726894 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090188345853122, - "y": 0.5877827194518598 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090188345853127, - "y": -0.5877827194518587 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902000749156633, - "y": -0.95105553726894 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, - "y": -5.246583236285029e-16 + "y": 0 }, { "max": { @@ -2167,12 +2167,12 @@ } }, { - "x": 321.55578938876494, - "y": 159.2340691690158 + "x": 321.55579, + "y": 159.23407 }, { - "x": 239.91778938876496, - "y": 70.48679845398011 + "x": 239.91779, + "y": 70.4868 }, { "category": 1, @@ -2200,16 +2200,16 @@ "y": 0 }, { - "x": 285.0461752739399, - "y": 113.4067984539801 + "x": 285.04618, + "y": 113.4068 }, { - "x": -0.07479604864768871, - "y": 0.06773793189966067 + "x": -0.0748, + "y": 0.06774 }, { - "x": 285.0461752739399, - "y": 110.49952773894445 + "x": 285.04618, + "y": 110.49953 }, { "endCol": 6, @@ -2233,7 +2233,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -2256,50 +2256,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 321.55578938876494, - "y": 139.93279845398013 + "x": 321.55579, + "y": 139.9328 }, { "body": null, "index": 1, "isInternal": false, - "x": 271.1007893887649, - "y": 156.32679845398016 + "x": 271.10079, + "y": 156.3268 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.91778938876496, - "y": 113.4067984539801 + "x": 239.91779, + "y": 113.4068 }, { "body": null, "index": 3, "isInternal": false, - "x": 271.1007893887649, - "y": 70.48679845398011 + "x": 271.10079, + "y": 70.4868 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.55578938876494, - "y": 86.8807984539801 + "x": 321.55579, + "y": 86.8808 }, { - "angle": -3.7063810097861765e-14, - "anglePrev": -3.826149409715343e-14, - "angularSpeed": 1.2129725087057634e-15, - "angularVelocity": 1.3311857637445273e-15, - "area": 3079.0178339999993, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3079.01783, "axes": { "#": 254 }, "bounds": { "#": 268 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 271 }, @@ -2317,14 +2317,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, - "motion": 2.252657211509966, + "mass": 3.07902, + "motion": 2.25266, "parent": null, "position": { "#": 277 @@ -2345,7 +2345,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035813, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2399,56 +2399,56 @@ } ], { - "x": -0.9709437470087525, - "y": -0.23930783552696983 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854182522513432, - "y": -0.46479513614083445 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.748535822224754, - "y": -0.6630943544069062 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.568078031004987, - "y": -0.8229746962631944 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545747323306915, - "y": -0.9350276783029573 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12051249760078153, - "y": -0.9927118101050384 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051249760070792, - "y": -0.9927118101050473 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545747323306221, - "y": -0.9350276783029833 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680780310049262, - "y": -0.8229746962632364 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485358222247045, - "y": -0.6630943544069615 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854182522513088, - "y": -0.46479513614090007 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.970943747008735, - "y": -0.23930783552704182 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, - "y": -3.7063810097861765e-14 + "y": 0 }, { "max": { @@ -2459,12 +2459,12 @@ } }, { - "x": 385.6670196756233, - "y": 135.78713498479874 + "x": 385.66702, + "y": 135.78713 }, { - "x": 323.2070196756228, - "y": 69.9618642697629 + "x": 323.20702, + "y": 69.96186 }, { "category": 1, @@ -2492,16 +2492,16 @@ "y": 0 }, { - "x": 354.43701967562316, - "y": 101.42086426976292 + "x": 354.43702, + "y": 101.42086 }, { - "x": 0.03923072902534478, - "y": 0.1085176250201706 + "x": 0.03923, + "y": 0.10852 }, { - "x": 354.4370196756234, - "y": 98.51359355472711 + "x": 354.43702, + "y": 98.51359 }, { "endCol": 8, @@ -2524,8 +2524,8 @@ "yScale": 1 }, { - "x": -2.2737367544323206e-13, - "y": 2.9072707150358212 + "x": 0, + "y": 2.90727 }, [ { @@ -2611,190 +2611,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 385.6670196756233, - "y": 105.21286426976177 + "x": 385.66702, + "y": 105.21286 }, { "body": null, "index": 1, "isInternal": false, - "x": 383.85201967562364, - "y": 112.57686426976183 + "x": 383.85202, + "y": 112.57686 }, { "body": null, "index": 2, "isInternal": false, - "x": 380.32701967562383, - "y": 119.29186426976196 + "x": 380.32702, + "y": 119.29186 }, { "body": null, "index": 3, "isInternal": false, - "x": 375.2980196756239, - "y": 124.96886426976214 + "x": 375.29802, + "y": 124.96886 }, { "body": null, "index": 4, "isInternal": false, - "x": 369.0570196756242, - "y": 129.2768642697624 + "x": 369.05702, + "y": 129.27686 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.9660196756243, - "y": 131.96586426976262 + "x": 361.96602, + "y": 131.96586 }, { "body": null, "index": 6, "isInternal": false, - "x": 354.43701967562436, - "y": 132.87986426976292 + "x": 354.43702, + "y": 132.87986 }, { "body": null, "index": 7, "isInternal": false, - "x": 346.9080196756243, - "y": 131.96586426976322 + "x": 346.90802, + "y": 131.96586 }, { "body": null, "index": 8, "isInternal": false, - "x": 339.8170196756242, - "y": 129.27686426976345 + "x": 339.81702, + "y": 129.27686 }, { "body": null, "index": 9, "isInternal": false, - "x": 333.5760196756239, - "y": 124.9688642697637 + "x": 333.57602, + "y": 124.96886 }, { "body": null, "index": 10, "isInternal": false, - "x": 328.54701967562386, - "y": 119.29186426976386 + "x": 328.54702, + "y": 119.29186 }, { "body": null, "index": 11, "isInternal": false, - "x": 325.0220196756236, - "y": 112.57686426976402 + "x": 325.02202, + "y": 112.57686 }, { "body": null, "index": 12, "isInternal": false, - "x": 323.20701967562326, - "y": 105.21286426976407 + "x": 323.20702, + "y": 105.21286 }, { "body": null, "index": 13, "isInternal": false, - "x": 323.20701967562303, - "y": 97.62886426976407 + "x": 323.20702, + "y": 97.62886 }, { "body": null, "index": 14, "isInternal": false, - "x": 325.0220196756227, - "y": 90.264864269764 + "x": 325.02202, + "y": 90.26486 }, { "body": null, "index": 15, "isInternal": false, - "x": 328.5470196756225, - "y": 83.54986426976387 + "x": 328.54702, + "y": 83.54986 }, { "body": null, "index": 16, "isInternal": false, - "x": 333.57601967562243, - "y": 77.8728642697637 + "x": 333.57602, + "y": 77.87286 }, { "body": null, "index": 17, "isInternal": false, - "x": 339.81701967562213, - "y": 73.56486426976343 + "x": 339.81702, + "y": 73.56486 }, { "body": null, "index": 18, "isInternal": false, - "x": 346.90801967562203, - "y": 70.87586426976318 + "x": 346.90802, + "y": 70.87586 }, { "body": null, "index": 19, "isInternal": false, - "x": 354.43701967562197, - "y": 69.9618642697629 + "x": 354.43702, + "y": 69.96186 }, { "body": null, "index": 20, "isInternal": false, - "x": 361.966019675622, - "y": 70.87586426976264 + "x": 361.96602, + "y": 70.87586 }, { "body": null, "index": 21, "isInternal": false, - "x": 369.05701967562214, - "y": 73.56486426976237 + "x": 369.05702, + "y": 73.56486 }, { "body": null, "index": 22, "isInternal": false, - "x": 375.2980196756224, - "y": 77.87286426976213 + "x": 375.29802, + "y": 77.87286 }, { "body": null, "index": 23, "isInternal": false, - "x": 380.32701967562247, - "y": 83.54986426976197 + "x": 380.32702, + "y": 83.54986 }, { "body": null, "index": 24, "isInternal": false, - "x": 383.8520196756227, - "y": 90.26486426976182 + "x": 383.85202, + "y": 90.26486 }, { "body": null, "index": 25, "isInternal": false, - "x": 385.66701967562307, - "y": 97.62886426976176 + "x": 385.66702, + "y": 97.62886 }, { - "angle": 3.1270943006816335e-14, - "anglePrev": 1.139144336234155e-15, - "angularSpeed": 3.0189439393504445e-14, - "angularVelocity": 3.063512688957546e-14, - "area": 1329.4167625219097, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1329.41676, "axes": { "#": 312 }, @@ -2818,14 +2818,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, - "motion": 2.252657211515526, + "mass": 1.32942, + "motion": 2.25266, "parent": null, "position": { "#": 324 @@ -2846,7 +2846,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150365305, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2867,12 +2867,12 @@ } ], { - "x": -3.1270943006816335e-14, + "x": 0, "y": 1 }, { "x": -1, - "y": -3.1270943006816335e-14 + "y": 0 }, { "max": { @@ -2883,12 +2883,12 @@ } }, { - "x": 433.5840495877597, - "y": 97.28102533816305 + "x": 433.58405, + "y": 97.28103 }, { - "x": 384.80640041080363, - "y": 67.11912499349533 + "x": 384.8064, + "y": 67.11912 }, { "category": 1, @@ -2916,16 +2916,16 @@ "y": 0 }, { - "x": 409.19522499928144, - "y": 80.74643980831094 + "x": 409.19522, + "y": 80.74644 }, { "x": 0, "y": 0 }, { - "x": 409.19522499928104, - "y": 77.83916909327442 + "x": 409.19522, + "y": 77.83917 }, { "endCol": 9, @@ -2948,8 +2948,8 @@ "yScale": 1 }, { - "x": 3.979039320256561e-13, - "y": 2.9072707150365034 + "x": 0, + "y": 2.90727 }, [ { @@ -2969,36 +2969,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 384.80640041080454, - "y": 67.11912499349533 + "x": 384.8064, + "y": 67.11912 }, { "body": null, "index": 1, "isInternal": false, - "x": 433.58404958775924, - "y": 67.11912499349688 + "x": 433.58405, + "y": 67.11912 }, { "body": null, "index": 2, "isInternal": false, - "x": 433.58404958775833, - "y": 94.37375462312652 + "x": 433.58405, + "y": 94.37375 }, { "body": null, "index": 3, "isInternal": false, - "x": 384.80640041080363, - "y": 94.37375462312498 + "x": 384.8064, + "y": 94.37375 }, { - "angle": 2.724524244792797e-13, - "anglePrev": 2.2058148727003345e-13, - "angularSpeed": 5.187093720924626e-14, - "angularVelocity": 5.187093720924626e-14, - "area": 2858.632357296012, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2858.63236, "axes": { "#": 337 }, @@ -3022,14 +3022,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, - "motion": 2.252657211515655, + "mass": 2.85863, + "motion": 2.25266, "parent": null, "position": { "#": 349 @@ -3050,7 +3050,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150385986, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3071,12 +3071,12 @@ } ], { - "x": -2.724524244792797e-13, + "x": 0, "y": 1 }, { "x": -1, - "y": -2.724524244792797e-13 + "y": 0 }, { "max": { @@ -3087,12 +3087,12 @@ } }, { - "x": 542.7594267767965, - "y": 93.99677157089602 + "x": 542.75943, + "y": 93.99677 }, { - "x": 433.90483144071266, - "y": 67.73575476702547 + "x": 433.90483, + "y": 67.73575 }, { "category": 1, @@ -3120,16 +3120,16 @@ "y": 0 }, { - "x": 488.33212910875466, - "y": 80.86626316896076 + "x": 488.33213, + "y": 80.86626 }, { "x": 0, "y": 0 }, { - "x": 488.33212910875477, - "y": 77.95899245392216 + "x": 488.33213, + "y": 77.95899 }, { "endCol": 11, @@ -3152,8 +3152,8 @@ "yScale": 1 }, { - "x": -1.1254996934439987e-13, - "y": 2.9072707150385986 + "x": 0, + "y": 2.90727 }, [ { @@ -3173,36 +3173,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 433.9048314407198, - "y": 67.73575476702547 + "x": 433.90483, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 542.7594267767965, - "y": 67.73575476705516 + "x": 542.75943, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 542.7594267767895, - "y": 93.99677157089602 + "x": 542.75943, + "y": 93.99677 }, { "body": null, "index": 3, "isInternal": false, - "x": 433.90483144071266, - "y": 93.99677157086631 + "x": 433.90483, + "y": 93.99677 }, { - "angle": 4.6274066257391704e-11, - "anglePrev": 3.4965524074084626e-11, - "angularSpeed": 1.1308542183307076e-11, - "angularVelocity": 1.1308542183307076e-11, - "area": 926.8394636035856, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 926.83946, "axes": { "#": 362 }, @@ -3226,14 +3226,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, - "motion": 2.2526572120142787, + "mass": 0.92684, + "motion": 2.25266, "parent": null, "position": { "#": 374 @@ -3254,7 +3254,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707154143185, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3275,12 +3275,12 @@ } ], { - "x": -4.6274066257391704e-11, + "x": 0, "y": 1 }, { "x": -1, - "y": -4.6274066257391704e-11 + "y": 0 }, { "max": { @@ -3291,12 +3291,12 @@ } }, { - "x": 581.6982079649686, - "y": 91.65062102459468 + "x": 581.69821, + "y": 91.65062 }, { - "x": 542.942420926825, - "y": 67.7357547676573 + "x": 542.94242, + "y": 67.73575 }, { "category": 1, @@ -3324,16 +3324,16 @@ "y": 0 }, { - "x": 562.3203144458968, - "y": 79.693187896126 + "x": 562.32031, + "y": 79.69319 }, { "x": 0, "y": 0 }, { - "x": 562.3203144459022, - "y": 76.78591718071169 + "x": 562.32031, + "y": 76.78592 }, { "endCol": 12, @@ -3356,8 +3356,8 @@ "yScale": 1 }, { - "x": -5.402398528531193e-12, - "y": 2.9072707154143185 + "x": 0, + "y": 2.90727 }, [ { @@ -3377,36 +3377,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 542.9424209279316, - "y": 67.7357547676573 + "x": 542.94242, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 581.6982079649686, - "y": 67.7357547694507 + "x": 581.69821, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 581.6982079638619, - "y": 91.65062102459468 + "x": 581.69821, + "y": 91.65062 }, { "body": null, "index": 3, "isInternal": false, - "x": 542.942420926825, - "y": 91.65062102280133 + "x": 542.94242, + "y": 91.65062 }, { - "angle": 5.778969774103411e-10, - "anglePrev": 3.8934966410839723e-10, - "angularSpeed": 1.8854731330194388e-10, - "angularVelocity": 1.8854731330194388e-10, - "area": 1290.4501361223834, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1290.45014, "axes": { "#": 387 }, @@ -3430,14 +3430,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, - "motion": 2.2526572195742696, + "mass": 1.29045, + "motion": 2.25266, "parent": null, "position": { "#": 399 @@ -3458,7 +3458,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707233708694, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3479,12 +3479,12 @@ } ], { - "x": -5.778969774103411e-10, + "x": 0, "y": 1 }, { "x": -1, - "y": -5.778969774103411e-10 + "y": 0 }, { "max": { @@ -3495,12 +3495,12 @@ } }, { - "x": 617.905126771844, - "y": 103.81175788879091 + "x": 617.90513, + "y": 103.81176 }, { - "x": 582.1348078209545, - "y": 67.7357547816996 + "x": 582.13481, + "y": 67.73575 }, { "category": 1, @@ -3528,16 +3528,16 @@ "y": 0 }, { - "x": 600.0199672963993, - "y": 85.77375633524524 + "x": 600.01997, + "y": 85.77376 }, { "x": 0, "y": 0 }, { - "x": 600.0199672964426, - "y": 82.86648561187437 + "x": 600.01997, + "y": 82.86649 }, { "endCol": 12, @@ -3560,8 +3560,8 @@ "yScale": 1 }, { - "x": -4.333173819759395e-11, - "y": 2.9072707233708694 + "x": 0, + "y": 2.90727 }, [ { @@ -3581,36 +3581,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 582.1348078418029, - "y": 67.7357547816996 + "x": 582.13481, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 617.905126771844, - "y": 67.73575480237113 + "x": 617.90513, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 617.9051267509957, - "y": 103.81175788879091 + "x": 617.90513, + "y": 103.81176 }, { "body": null, "index": 3, "isInternal": false, - "x": 582.1348078209545, - "y": 103.81175786811932 + "x": 582.13481, + "y": 103.81176 }, { - "angle": 5.956212439516393e-10, - "anglePrev": 3.995224559150968e-10, - "angularSpeed": 1.9609878803654246e-10, - "angularVelocity": 1.9609878803654246e-10, - "area": 1148.2925932011974, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1148.29259, "axes": { "#": 412 }, @@ -3634,14 +3634,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, - "motion": 2.2526572020293294, + "mass": 1.14829, + "motion": 2.25266, "parent": null, "position": { "#": 424 @@ -3662,7 +3662,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270705354363, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3683,12 +3683,12 @@ } ], { - "x": -5.956212439516393e-10, + "x": 0, "y": 1 }, { "x": -1, - "y": -5.956212439516393e-10 + "y": 0 }, { "max": { @@ -3699,12 +3699,12 @@ } }, { - "x": 651.7068713667743, - "y": 108.22430117226149 + "x": 651.70687, + "y": 108.2243 }, { - "x": 621.151958792897, - "y": 67.73575472854337 + "x": 621.15196, + "y": 67.73575 }, { "category": 1, @@ -3732,16 +3732,16 @@ "y": 0 }, { - "x": 636.4294150798091, - "y": 86.52639259772523 + "x": 636.42942, + "y": 86.52639 }, { - "x": 0.4879586224890938, - "y": 1.7661525060908387e-14 + "x": 0.48796, + "y": 0 }, { - "x": 636.4294150797562, - "y": 83.61912189237087 + "x": 636.42942, + "y": 83.61912 }, { "endCol": 13, @@ -3764,8 +3764,8 @@ "yScale": 1 }, { - "x": 5.301103556121234e-11, - "y": 2.907270705354363 + "x": 0, + "y": 2.90727 }, [ { @@ -3785,36 +3785,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 621.151958815281, - "y": 67.73575472854337 + "x": 621.15196, + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 651.7068713667213, - "y": 67.7357547467425 + "x": 651.70687, + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 651.7068713443373, - "y": 105.31703046690713 + "x": 651.70687, + "y": 105.31703 }, { "body": null, "index": 3, "isInternal": false, - "x": 621.151958792897, - "y": 105.31703044870797 + "x": 621.15196, + "y": 105.31703 }, { "angle": 0, - "anglePrev": -0.002944761536477951, + "anglePrev": -0.00294, "angularSpeed": 0, - "angularVelocity": 0.0022085711523584634, - "area": 1926.7878890000002, + "angularVelocity": 0.00221, + "area": 1926.78789, "axes": { "#": 437 }, @@ -3838,14 +3838,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, - "motion": 2.2526572115110266, + "mass": 1.92679, + "motion": 2.25266, "parent": null, "position": { "#": 454 @@ -3866,7 +3866,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3902,28 +3902,28 @@ } ], { - "x": 0.6234921001781484, - "y": 0.7818296496139309 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22251820971292155, - "y": 0.9749285339685962 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009815501548849, - "y": 0.43385740316433524 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009815501548849, - "y": -0.43385740316433524 + "x": -0.90098, + "y": -0.43386 }, { - "x": -0.22251820971292155, - "y": -0.9749285339685962 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234921001781484, - "y": -0.7818296496139309 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -3938,12 +3938,12 @@ } }, { - "x": 71.60503020064793, - "y": 208.22302548206167 + "x": 71.60503, + "y": 208.22303 }, { - "x": 21.162030200647923, - "y": 153.57575476702598 + "x": 21.16203, + "y": 153.57575 }, { "category": 1, @@ -3971,16 +3971,16 @@ "y": 0 }, { - "x": 47.69722133275702, - "y": 179.445754767026 + "x": 47.69722, + "y": 179.44575 }, { - "x": 1.1736736849064155, + "x": 1.17367, "y": 0 }, { - "x": 47.69722133275702, - "y": 176.67515265086743 + "x": 47.69722, + "y": 176.67515 }, { "endCol": 1, @@ -4004,7 +4004,7 @@ }, { "x": 0, - "y": 2.8047692658778374 + "y": 2.80477 }, [ { @@ -4033,57 +4033,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 71.60503020064793, - "y": 190.958754767026 + "x": 71.60503, + "y": 190.95875 }, { "body": null, "index": 1, "isInternal": false, - "x": 53.60203020064791, - "y": 205.315754767026 + "x": 53.60203, + "y": 205.31575 }, { "body": null, "index": 2, "isInternal": false, - "x": 31.15203020064792, - "y": 200.191754767026 + "x": 31.15203, + "y": 200.19175 }, { "body": null, "index": 3, "isInternal": false, - "x": 21.162030200647923, - "y": 179.445754767026 + "x": 21.16203, + "y": 179.44575 }, { "body": null, "index": 4, "isInternal": false, - "x": 31.15203020064792, - "y": 158.69975476702598 + "x": 31.15203, + "y": 158.69975 }, { "body": null, "index": 5, "isInternal": false, - "x": 53.60203020064791, - "y": 153.57575476702598 + "x": 53.60203, + "y": 153.57575 }, { "body": null, "index": 6, "isInternal": false, - "x": 71.60503020064793, - "y": 167.93275476702598 + "x": 71.60503, + "y": 167.93275 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1097.755875, + "area": 1097.75588, "axes": { "#": 470 }, @@ -4107,14 +4107,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 927.6617490689248, - "inverseInertia": 0.0010779791243992539, - "inverseMass": 0.9109493492804126, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "inverseMass": 0.91095, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.097755875, - "motion": 2.2526572115110266, + "mass": 1.09776, + "motion": 2.25266, "parent": null, "position": { "#": 483 @@ -4135,7 +4135,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4159,12 +4159,12 @@ } ], { - "x": -0.49999466010690446, - "y": 0.8660284867512045 + "x": -0.49999, + "y": 0.86603 }, { - "x": -0.49999466010690446, - "y": -0.8660284867512045 + "x": -0.49999, + "y": -0.86603 }, { "x": 1, @@ -4179,12 +4179,12 @@ } }, { - "x": 135.0581670975326, - "y": 206.8330254820617 + "x": 135.05817, + "y": 206.83303 }, { - "x": 91.45316709753263, - "y": 153.575754767026 + "x": 91.45317, + "y": 153.57575 }, { "category": 1, @@ -4212,16 +4212,16 @@ "y": 0 }, { - "x": 120.52316709753262, - "y": 178.750754767026 + "x": 120.52317, + "y": 178.75075 }, { - "x": -0.08142826800548551, + "x": -0.08143, "y": 0 }, { - "x": 120.52316709753262, - "y": 175.84348405199032 + "x": 120.52317, + "y": 175.84348 }, { "endCol": 2, @@ -4245,7 +4245,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4262,29 +4262,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 135.0581670975326, - "y": 203.925754767026 + "x": 135.05817, + "y": 203.92575 }, { "body": null, "index": 1, "isInternal": false, - "x": 91.45316709753263, - "y": 178.750754767026 + "x": 91.45317, + "y": 178.75075 }, { "body": null, "index": 2, "isInternal": false, - "x": 135.0581670975326, - "y": 153.575754767026 + "x": 135.05817, + "y": 153.57575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 495 }, @@ -4308,14 +4308,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, - "motion": 2.2526572115110266, + "mass": 0.98658, + "motion": 2.25266, "parent": null, "position": { "#": 510 @@ -4336,7 +4336,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4366,20 +4366,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4394,12 +4394,12 @@ } }, { - "x": 174.72886866010404, - "y": 195.22902548206164 + "x": 174.72887, + "y": 195.22903 }, { - "x": 137.87886866010402, - "y": 153.57575476702596 + "x": 137.87887, + "y": 153.57575 }, { "category": 1, @@ -4427,16 +4427,16 @@ "y": 0 }, { - "x": 158.24891138027843, - "y": 172.94875476702597 + "x": 158.24891, + "y": 172.94875 }, { - "x": 0.021814475646813734, + "x": 0.02181, "y": 0 }, { - "x": 158.24891138027843, - "y": 170.0414840519903 + "x": 158.24891, + "y": 170.04148 }, { "endCol": 3, @@ -4460,7 +4460,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4483,43 +4483,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 174.72886866010404, - "y": 184.921754767026 + "x": 174.72887, + "y": 184.92175 }, { "body": null, "index": 1, "isInternal": false, - "x": 151.95386866010404, - "y": 192.32175476702596 + "x": 151.95387, + "y": 192.32175 }, { "body": null, "index": 2, "isInternal": false, - "x": 137.87886866010402, - "y": 172.94875476702597 + "x": 137.87887, + "y": 172.94875 }, { "body": null, "index": 3, "isInternal": false, - "x": 151.95386866010404, - "y": 153.57575476702596 + "x": 151.95387, + "y": 153.57575 }, { "body": null, "index": 4, "isInternal": false, - "x": 174.72886866010404, - "y": 160.975754767026 + "x": 174.72887, + "y": 160.97575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1201.454244, + "area": 1201.45424, "axes": { "#": 524 }, @@ -4543,14 +4543,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, - "motion": 2.2526572115110266, + "mass": 1.20145, + "motion": 2.25266, "parent": null, "position": { "#": 536 @@ -4571,7 +4571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4608,12 +4608,12 @@ } }, { - "x": 211.840233827826, - "y": 191.14502548206164 + "x": 211.84023, + "y": 191.14503 }, { - "x": 177.17823382782603, - "y": 153.57575476702596 + "x": 177.17823, + "y": 153.57575 }, { "category": 1, @@ -4641,16 +4641,16 @@ "y": 0 }, { - "x": 194.50923382782602, - "y": 170.90675476702597 + "x": 194.50923, + "y": 170.90675 }, { - "x": 0.09930741871464581, + "x": 0.09931, "y": 0 }, { - "x": 194.50923382782602, - "y": 167.9994840519903 + "x": 194.50923, + "y": 167.99948 }, { "endCol": 4, @@ -4674,7 +4674,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4694,36 +4694,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 211.840233827826, - "y": 188.23775476702596 + "x": 211.84023, + "y": 188.23775 }, { "body": null, "index": 1, "isInternal": false, - "x": 177.17823382782603, - "y": 188.23775476702596 + "x": 177.17823, + "y": 188.23775 }, { "body": null, "index": 2, "isInternal": false, - "x": 177.17823382782603, - "y": 153.57575476702596 + "x": 177.17823, + "y": 153.57575 }, { "body": null, "index": 3, "isInternal": false, - "x": 211.840233827826, - "y": 153.57575476702596 + "x": 211.84023, + "y": 153.57575 }, { - "angle": 3.9974424435108666e-17, - "anglePrev": 1.7538705035440855e-17, - "angularSpeed": 2.2435719399667814e-17, - "angularVelocity": 2.2435719399667814e-17, - "area": 1990.733346252218, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1990.73335, "axes": { "#": 549 }, @@ -4747,14 +4747,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, - "motion": 2.2526572115110266, + "mass": 1.99073, + "motion": 2.25266, "parent": null, "position": { "#": 561 @@ -4775,7 +4775,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4796,12 +4796,12 @@ } ], { - "x": -3.9974424435108666e-17, + "x": 0, "y": 1 }, { "x": -1, - "y": -3.9974424435108666e-17 + "y": 0 }, { "max": { @@ -4812,12 +4812,12 @@ } }, { - "x": 307.34296051071, - "y": 180.32189202809863 + "x": 307.34296, + "y": 180.32189 }, { - "x": 212.51922937216403, - "y": 156.42057981786405 + "x": 212.51923, + "y": 156.42058 }, { "category": 1, @@ -4845,16 +4845,16 @@ "y": 0 }, { - "x": 259.93109494143704, - "y": 166.9176005654635 + "x": 259.93109, + "y": 166.9176 }, { "x": 0, - "y": 0.11534049587384015 + "y": 0.11534 }, { - "x": 259.93109494143704, - "y": 164.0103298504278 + "x": 259.93109, + "y": 164.01033 }, { "endCol": 6, @@ -4878,7 +4878,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4898,35 +4898,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 212.51922937216403, - "y": 156.42057981786405 + "x": 212.51923, + "y": 156.42058 }, { "body": null, "index": 1, "isInternal": false, - "x": 307.34296051071, - "y": 156.42057981786405 + "x": 307.34296, + "y": 156.42058 }, { "body": null, "index": 2, "isInternal": false, - "x": 307.34296051071, - "y": 177.41462131306295 + "x": 307.34296, + "y": 177.41462 }, { "body": null, "index": 3, "isInternal": false, - "x": 212.51922937216403, - "y": 177.41462131306295 + "x": 212.51923, + "y": 177.41462 }, { - "angle": 1.793205365100331e-17, - "anglePrev": 1.441736752030682e-17, - "angularSpeed": 3.514686130696492e-18, - "angularVelocity": 3.514686130696492e-18, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 7321.24308, "axes": { "#": 574 @@ -4934,7 +4934,7 @@ "bounds": { "#": 588 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 591 }, @@ -4952,14 +4952,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, - "motion": 2.2526572115109373, + "mass": 7.32124, + "motion": 2.25266, "parent": null, "position": { "#": 597 @@ -4980,7 +4980,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5034,56 +5034,56 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, - "y": 1.793205365100331e-17 + "y": 0 }, { "max": { @@ -5094,12 +5094,12 @@ } }, { - "x": 401.2838636848368, - "y": 251.4495581463108 + "x": 401.28386, + "y": 251.44956 }, { - "x": 304.9698636848368, - "y": 154.42955814631082 + "x": 304.96986, + "y": 154.42956 }, { "category": 1, @@ -5127,16 +5127,16 @@ "y": 0 }, { - "x": 353.1268636848368, - "y": 202.93955814631082 + "x": 353.12686, + "y": 202.93956 }, { "x": 0, "y": 0 }, { - "x": 353.1268636848368, - "y": 200.0322874312752 + "x": 353.12686, + "y": 200.03229 }, { "endCol": 8, @@ -5160,7 +5160,7 @@ }, { "x": 0, - "y": 2.90727071503563 + "y": 2.90727 }, [ { @@ -5246,190 +5246,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 401.2838636848368, - "y": 208.78655814631082 + "x": 401.28386, + "y": 208.78656 }, { "body": null, "index": 1, "isInternal": false, - "x": 398.4848636848368, - "y": 220.1415581463108 + "x": 398.48486, + "y": 220.14156 }, { "body": null, "index": 2, "isInternal": false, - "x": 393.0498636848368, - "y": 230.4965581463108 + "x": 393.04986, + "y": 230.49656 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.2948636848368, - "y": 239.25055814631082 + "x": 385.29486, + "y": 239.25056 }, { "body": null, "index": 4, "isInternal": false, - "x": 375.6708636848368, - "y": 245.89355814631082 + "x": 375.67086, + "y": 245.89356 }, { "body": null, "index": 5, "isInternal": false, - "x": 364.7358636848368, - "y": 250.04055814631081 + "x": 364.73586, + "y": 250.04056 }, { "body": null, "index": 6, "isInternal": false, - "x": 353.1268636848368, - "y": 251.4495581463108 + "x": 353.12686, + "y": 251.44956 }, { "body": null, "index": 7, "isInternal": false, - "x": 341.5178636848368, - "y": 250.04055814631081 + "x": 341.51786, + "y": 250.04056 }, { "body": null, "index": 8, "isInternal": false, - "x": 330.5828636848368, - "y": 245.89355814631082 + "x": 330.58286, + "y": 245.89356 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.9588636848368, - "y": 239.25055814631082 + "x": 320.95886, + "y": 239.25056 }, { "body": null, "index": 10, "isInternal": false, - "x": 313.2038636848368, - "y": 230.4965581463108 + "x": 313.20386, + "y": 230.49656 }, { "body": null, "index": 11, "isInternal": false, - "x": 307.7688636848368, - "y": 220.1415581463108 + "x": 307.76886, + "y": 220.14156 }, { "body": null, "index": 12, "isInternal": false, - "x": 304.9698636848368, - "y": 208.78655814631082 + "x": 304.96986, + "y": 208.78656 }, { "body": null, "index": 13, "isInternal": false, - "x": 304.9698636848368, - "y": 197.0925581463108 + "x": 304.96986, + "y": 197.09256 }, { "body": null, "index": 14, "isInternal": false, - "x": 307.7688636848368, - "y": 185.73755814631082 + "x": 307.76886, + "y": 185.73756 }, { "body": null, "index": 15, "isInternal": false, - "x": 313.2038636848368, - "y": 175.38255814631083 + "x": 313.20386, + "y": 175.38256 }, { "body": null, "index": 16, "isInternal": false, - "x": 320.9588636848368, - "y": 166.6285581463108 + "x": 320.95886, + "y": 166.62856 }, { "body": null, "index": 17, "isInternal": false, - "x": 330.5828636848368, - "y": 159.9855581463108 + "x": 330.58286, + "y": 159.98556 }, { "body": null, "index": 18, "isInternal": false, - "x": 341.5178636848368, - "y": 155.83855814631082 + "x": 341.51786, + "y": 155.83856 }, { "body": null, "index": 19, "isInternal": false, - "x": 353.1268636848368, - "y": 154.42955814631082 + "x": 353.12686, + "y": 154.42956 }, { "body": null, "index": 20, "isInternal": false, - "x": 364.7358636848368, - "y": 155.83855814631082 + "x": 364.73586, + "y": 155.83856 }, { "body": null, "index": 21, "isInternal": false, - "x": 375.6708636848368, - "y": 159.9855581463108 + "x": 375.67086, + "y": 159.98556 }, { "body": null, "index": 22, "isInternal": false, - "x": 385.2948636848368, - "y": 166.6285581463108 + "x": 385.29486, + "y": 166.62856 }, { "body": null, "index": 23, "isInternal": false, - "x": 393.0498636848368, - "y": 175.38255814631083 + "x": 393.04986, + "y": 175.38256 }, { "body": null, "index": 24, "isInternal": false, - "x": 398.4848636848368, - "y": 185.73755814631082 + "x": 398.48486, + "y": 185.73756 }, { "body": null, "index": 25, "isInternal": false, - "x": 401.2838636848368, - "y": 197.0925581463108 + "x": 401.28386, + "y": 197.09256 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 632 }, @@ -5453,14 +5453,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, - "motion": 2.2526572115110266, + "mass": 2.03476, + "motion": 2.25266, "parent": null, "position": { "#": 644 @@ -5481,7 +5481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5518,12 +5518,12 @@ } }, { - "x": 480.4041790420924, - "y": 177.73221910173103 + "x": 480.40418, + "y": 177.73222 }, { - "x": 396.1714972862624, - "y": 153.57575476702596 + "x": 396.1715, + "y": 153.57575 }, { "category": 1, @@ -5551,16 +5551,16 @@ "y": 0 }, { - "x": 438.2878381641774, - "y": 165.6539869343785 + "x": 438.28784, + "y": 165.65399 }, { "x": 0, "y": 0 }, { - "x": 438.2878381641774, - "y": 162.74671621934283 + "x": 438.28784, + "y": 162.74672 }, { "endCol": 10, @@ -5584,7 +5584,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5604,36 +5604,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 396.1714972862624, - "y": 153.57575476702596 + "x": 396.1715, + "y": 153.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 480.4041790420924, - "y": 153.57575476702596 + "x": 480.40418, + "y": 153.57575 }, { "body": null, "index": 2, "isInternal": false, - "x": 480.4041790420924, - "y": 177.73221910173103 + "x": 480.40418, + "y": 177.73222 }, { "body": null, "index": 3, "isInternal": false, - "x": 396.1714972862624, - "y": 177.73221910173103 + "x": 396.1715, + "y": 177.73222 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 657 }, @@ -5657,14 +5657,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, - "motion": 2.2526572115110266, + "mass": 1.03046, + "motion": 2.25266, "parent": null, "position": { "#": 669 @@ -5685,7 +5685,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5722,12 +5722,12 @@ } }, { - "x": 529.7907531161663, - "y": 174.44085250365148 + "x": 529.79075, + "y": 174.44085 }, { - "x": 480.4041790420924, - "y": 153.57575476702598 + "x": 480.40418, + "y": 153.57575 }, { "category": 1, @@ -5755,16 +5755,16 @@ "y": 0 }, { - "x": 505.0974660791294, - "y": 164.00830363533873 + "x": 505.09747, + "y": 164.0083 }, { "x": 0, "y": 0 }, { - "x": 505.0974660791294, - "y": 161.10103292030306 + "x": 505.09747, + "y": 161.10103 }, { "endCol": 11, @@ -5788,7 +5788,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5808,43 +5808,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 480.4041790420924, - "y": 153.57575476702598 + "x": 480.40418, + "y": 153.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 529.7907531161663, - "y": 153.57575476702598 + "x": 529.79075, + "y": 153.57575 }, { "body": null, "index": 2, "isInternal": false, - "x": 529.7907531161663, - "y": 174.44085250365148 + "x": 529.79075, + "y": 174.44085 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.4041790420924, - "y": 174.44085250365148 + "x": 480.40418, + "y": 174.44085 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2157.165332, + "area": 2157.16533, "axes": { "#": 682 }, "bounds": { "#": 696 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 699 }, @@ -5862,14 +5862,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, - "motion": 2.2526572115110266, + "mass": 2.15717, + "motion": 2.25266, "parent": null, "position": { "#": 705 @@ -5890,7 +5890,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5944,52 +5944,52 @@ } ], { - "x": -0.9709433940705979, - "y": -0.2393092674984975 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854643472565572, - "y": -0.46470731620829797 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485032926619368, - "y": -0.6631310736756638 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680789542040116, - "y": -0.8229740590021511 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3546257389378823, - "y": -0.9350083343386629 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12050542549813427, - "y": -0.9927126686133876 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050542549813427, - "y": -0.9927126686133876 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546257389378823, - "y": -0.9350083343386629 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680789542040116, - "y": -0.8229740590021511 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485032926619368, - "y": -0.6631310736756638 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854643472565572, - "y": -0.46470731620829797 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709433940705979, - "y": -0.2393092674984975 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -6004,12 +6004,12 @@ } }, { - "x": 582.0707531161663, - "y": 206.23975476702597 + "x": 582.07075, + "y": 206.23975 }, { - "x": 529.7907531161663, - "y": 153.57575476702598 + "x": 529.79075, + "y": 153.57575 }, { "category": 1, @@ -6037,16 +6037,16 @@ "y": 0 }, { - "x": 555.9307531161663, - "y": 179.90775476702598 + "x": 555.93075, + "y": 179.90775 }, { "x": 0, "y": 0 }, { - "x": 555.9307531161663, - "y": 177.0004840519903 + "x": 555.93075, + "y": 177.00048 }, { "endCol": 12, @@ -6070,7 +6070,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6156,190 +6156,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 582.0707531161663, - "y": 183.08175476702598 + "x": 582.07075, + "y": 183.08175 }, { "body": null, "index": 1, "isInternal": false, - "x": 580.5517531161663, - "y": 189.24475476702597 + "x": 580.55175, + "y": 189.24475 }, { "body": null, "index": 2, "isInternal": false, - "x": 577.6017531161664, - "y": 194.86575476702598 + "x": 577.60175, + "y": 194.86575 }, { "body": null, "index": 3, "isInternal": false, - "x": 573.3917531161663, - "y": 199.61775476702599 + "x": 573.39175, + "y": 199.61775 }, { "body": null, "index": 4, "isInternal": false, - "x": 568.1677531161663, - "y": 203.22375476702598 + "x": 568.16775, + "y": 203.22375 }, { "body": null, "index": 5, "isInternal": false, - "x": 562.2327531161664, - "y": 205.47475476702598 + "x": 562.23275, + "y": 205.47475 }, { "body": null, "index": 6, "isInternal": false, - "x": 555.9307531161663, - "y": 206.23975476702597 + "x": 555.93075, + "y": 206.23975 }, { "body": null, "index": 7, "isInternal": false, - "x": 549.6287531161663, - "y": 205.47475476702598 + "x": 549.62875, + "y": 205.47475 }, { "body": null, "index": 8, "isInternal": false, - "x": 543.6937531161664, - "y": 203.22375476702598 + "x": 543.69375, + "y": 203.22375 }, { "body": null, "index": 9, "isInternal": false, - "x": 538.4697531161663, - "y": 199.61775476702599 + "x": 538.46975, + "y": 199.61775 }, { "body": null, "index": 10, "isInternal": false, - "x": 534.2597531161664, - "y": 194.86575476702598 + "x": 534.25975, + "y": 194.86575 }, { "body": null, "index": 11, "isInternal": false, - "x": 531.3097531161663, - "y": 189.24475476702597 + "x": 531.30975, + "y": 189.24475 }, { "body": null, "index": 12, "isInternal": false, - "x": 529.7907531161663, - "y": 183.08175476702598 + "x": 529.79075, + "y": 183.08175 }, { "body": null, "index": 13, "isInternal": false, - "x": 529.7907531161663, - "y": 176.73375476702597 + "x": 529.79075, + "y": 176.73375 }, { "body": null, "index": 14, "isInternal": false, - "x": 531.3097531161663, - "y": 170.57075476702596 + "x": 531.30975, + "y": 170.57075 }, { "body": null, "index": 15, "isInternal": false, - "x": 534.2597531161664, - "y": 164.94975476702598 + "x": 534.25975, + "y": 164.94975 }, { "body": null, "index": 16, "isInternal": false, - "x": 538.4697531161663, - "y": 160.19775476702597 + "x": 538.46975, + "y": 160.19775 }, { "body": null, "index": 17, "isInternal": false, - "x": 543.6937531161664, - "y": 156.59175476702598 + "x": 543.69375, + "y": 156.59175 }, { "body": null, "index": 18, "isInternal": false, - "x": 549.6287531161663, - "y": 154.34075476702597 + "x": 549.62875, + "y": 154.34075 }, { "body": null, "index": 19, "isInternal": false, - "x": 555.9307531161663, - "y": 153.57575476702598 + "x": 555.93075, + "y": 153.57575 }, { "body": null, "index": 20, "isInternal": false, - "x": 562.2327531161664, - "y": 154.34075476702597 + "x": 562.23275, + "y": 154.34075 }, { "body": null, "index": 21, "isInternal": false, - "x": 568.1677531161663, - "y": 156.59175476702598 + "x": 568.16775, + "y": 156.59175 }, { "body": null, "index": 22, "isInternal": false, - "x": 573.3917531161663, - "y": 160.19775476702597 + "x": 573.39175, + "y": 160.19775 }, { "body": null, "index": 23, "isInternal": false, - "x": 577.6017531161664, - "y": 164.94975476702598 + "x": 577.60175, + "y": 164.94975 }, { "body": null, "index": 24, "isInternal": false, - "x": 580.5517531161663, - "y": 170.57075476702596 + "x": 580.55175, + "y": 170.57075 }, { "body": null, "index": 25, "isInternal": false, - "x": 582.0707531161663, - "y": 176.73375476702597 + "x": 582.07075, + "y": 176.73375 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2399.6281959999997, + "area": 2399.6282, "axes": { "#": 740 }, @@ -6363,14 +6363,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, - "motion": 2.2526572115110266, + "mass": 2.39963, + "motion": 2.25266, "parent": null, "position": { "#": 752 @@ -6391,7 +6391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6428,12 +6428,12 @@ } }, { - "x": 631.0567531161664, - "y": 202.56175476702597 + "x": 631.05675, + "y": 202.56175 }, { - "x": 582.0707531161663, - "y": 153.57575476702598 + "x": 582.07075, + "y": 153.57575 }, { "category": 1, @@ -6461,16 +6461,16 @@ "y": 0 }, { - "x": 606.5637531161664, - "y": 178.06875476702598 + "x": 606.56375, + "y": 178.06875 }, { "x": 0, "y": 0 }, { - "x": 606.5637531161664, - "y": 175.1614840519903 + "x": 606.56375, + "y": 175.16148 }, { "endCol": 13, @@ -6494,7 +6494,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6514,36 +6514,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.0567531161664, - "y": 202.56175476702597 + "x": 631.05675, + "y": 202.56175 }, { "body": null, "index": 1, "isInternal": false, - "x": 582.0707531161663, - "y": 202.56175476702597 + "x": 582.07075, + "y": 202.56175 }, { "body": null, "index": 2, "isInternal": false, - "x": 582.0707531161663, - "y": 153.57575476702598 + "x": 582.07075, + "y": 153.57575 }, { "body": null, "index": 3, "isInternal": false, - "x": 631.0567531161664, - "y": 153.57575476702598 + "x": 631.05675, + "y": 153.57575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 765 }, @@ -6567,14 +6567,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, - "motion": 2.2526572115110266, + "mass": 1.48978, + "motion": 2.25266, "parent": null, "position": { "#": 777 @@ -6595,7 +6595,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6632,12 +6632,12 @@ } }, { - "x": 666.4696903589647, - "y": 195.64468480817825 + "x": 666.46969, + "y": 195.64468 }, { - "x": 631.0567531161664, - "y": 153.57575476702598 + "x": 631.05675, + "y": 153.57575 }, { "category": 1, @@ -6665,16 +6665,16 @@ "y": 0 }, { - "x": 648.7632217375656, - "y": 174.61021978760212 + "x": 648.76322, + "y": 174.61022 }, { "x": 0, "y": 0 }, { - "x": 648.7632217375656, - "y": 171.70294907256644 + "x": 648.76322, + "y": 171.70295 }, { "endCol": 13, @@ -6698,7 +6698,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6718,36 +6718,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 631.0567531161664, - "y": 153.57575476702598 + "x": 631.05675, + "y": 153.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 666.4696903589647, - "y": 153.57575476702598 + "x": 666.46969, + "y": 153.57575 }, { "body": null, "index": 2, "isInternal": false, - "x": 666.4696903589647, - "y": 195.64468480817825 + "x": 666.46969, + "y": 195.64468 }, { "body": null, "index": 3, "isInternal": false, - "x": 631.0567531161664, - "y": 195.64468480817825 + "x": 631.05675, + "y": 195.64468 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 790 }, @@ -6771,14 +6771,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, - "motion": 2.2526572115110266, + "mass": 1.76537, + "motion": 2.25266, "parent": null, "position": { "#": 802 @@ -6799,7 +6799,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6836,12 +6836,12 @@ } }, { - "x": 708.2335792478536, - "y": 195.8459450962441 + "x": 708.23358, + "y": 195.84595 }, { - "x": 666.4696903589647, - "y": 153.57575476702598 + "x": 666.46969, + "y": 153.57575 }, { "category": 1, @@ -6869,16 +6869,16 @@ "y": 0 }, { - "x": 687.3516348034092, - "y": 174.71084993163504 + "x": 687.35163, + "y": 174.71085 }, { "x": 0, "y": 0 }, { - "x": 687.3516348034092, - "y": 171.80357921659936 + "x": 687.35163, + "y": 171.80358 }, { "endCol": 14, @@ -6902,7 +6902,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6922,36 +6922,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 666.4696903589647, - "y": 153.57575476702598 + "x": 666.46969, + "y": 153.57575 }, { "body": null, "index": 1, "isInternal": false, - "x": 708.2335792478536, - "y": 153.57575476702598 + "x": 708.23358, + "y": 153.57575 }, { "body": null, "index": 2, "isInternal": false, - "x": 708.2335792478536, - "y": 195.8459450962441 + "x": 708.23358, + "y": 195.84595 }, { "body": null, "index": 3, "isInternal": false, - "x": 666.4696903589647, - "y": 195.8459450962441 + "x": 666.46969, + "y": 195.84595 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1919.5457599999997, + "area": 1919.54576, "axes": { "#": 815 }, @@ -6975,14 +6975,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, - "motion": 2.2526572115107895, + "mass": 1.91955, + "motion": 2.25266, "parent": null, "position": { "#": 828 @@ -7003,7 +7003,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7027,12 +7027,12 @@ } ], { - "x": -0.4999772266722585, - "y": -0.8660385515721092 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999772266722585, - "y": -0.8660385515721092 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -7047,12 +7047,12 @@ } }, { - "x": 97.07999999999998, - "y": 304.95775476702494 + "x": 97.08, + "y": 304.95775 }, { - "x": 49.99999999999999, - "y": 250.59575476702506 + "x": 50, + "y": 250.59575 }, { "category": 1, @@ -7080,16 +7080,16 @@ "y": 0 }, { - "x": 73.53999999999999, - "y": 277.77675476702495 + "x": 73.54, + "y": 277.77675 }, { "x": 0, "y": 0 }, { - "x": 73.53999999999999, - "y": 274.8694840519894 + "x": 73.54, + "y": 274.86948 }, { "endCol": 2, @@ -7113,7 +7113,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7139,50 +7139,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 97.07999999999998, - "y": 291.36775476702496 + "x": 97.08, + "y": 291.36775 }, { "body": null, "index": 1, "isInternal": false, - "x": 73.53999999999999, - "y": 304.95775476702494 + "x": 73.54, + "y": 304.95775 }, { "body": null, "index": 2, "isInternal": false, - "x": 49.99999999999999, - "y": 291.36775476702496 + "x": 50, + "y": 291.36775 }, { "body": null, "index": 3, "isInternal": false, - "x": 49.99999999999999, - "y": 264.18575476702506 + "x": 50, + "y": 264.18575 }, { "body": null, "index": 4, "isInternal": false, - "x": 73.53999999999999, - "y": 250.59575476702506 + "x": 73.54, + "y": 250.59575 }, { "body": null, "index": 5, "isInternal": false, - "x": 97.07999999999998, - "y": 264.18575476702506 + "x": 97.08, + "y": 264.18575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6052.328004, + "area": 6052.328, "axes": { "#": 843 }, @@ -7206,14 +7206,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, - "motion": 2.2526572115107895, + "mass": 6.05233, + "motion": 2.25266, "parent": null, "position": { "#": 856 @@ -7234,7 +7234,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7258,12 +7258,12 @@ } ], { - "x": -0.4999896834528559, - "y": -0.8660313599637792 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999896834528559, - "y": -0.8660313599637792 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7279,11 +7279,11 @@ }, { "x": 180.678, - "y": 347.12575476702494 + "y": 347.12575 }, { - "x": 97.07999999999998, - "y": 250.59575476702506 + "x": 97.08, + "y": 250.59575 }, { "category": 1, @@ -7312,7 +7312,7 @@ }, { "x": 138.879, - "y": 298.86075476702496 + "y": 298.86075 }, { "x": 0, @@ -7320,7 +7320,7 @@ }, { "x": 138.879, - "y": 295.9534840519894 + "y": 295.95348 }, { "endCol": 3, @@ -7344,7 +7344,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7371,49 +7371,49 @@ "index": 0, "isInternal": false, "x": 180.678, - "y": 322.993754767025 + "y": 322.99375 }, { "body": null, "index": 1, "isInternal": false, "x": 138.879, - "y": 347.12575476702494 + "y": 347.12575 }, { "body": null, "index": 2, "isInternal": false, - "x": 97.07999999999998, - "y": 322.993754767025 + "x": 97.08, + "y": 322.99375 }, { "body": null, "index": 3, "isInternal": false, - "x": 97.07999999999998, - "y": 274.7277547670249 + "x": 97.08, + "y": 274.72775 }, { "body": null, "index": 4, "isInternal": false, "x": 138.879, - "y": 250.59575476702506 + "y": 250.59575 }, { "body": null, "index": 5, "isInternal": false, "x": 180.678, - "y": 274.7277547670249 + "y": 274.72775 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 871 }, @@ -7437,14 +7437,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, - "motion": 2.2526572115107895, + "mass": 2.22002, + "motion": 2.25266, "parent": null, "position": { "#": 883 @@ -7465,7 +7465,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7502,12 +7502,12 @@ } }, { - "x": 225.82936316872429, - "y": 299.7642218452142 + "x": 225.82936, + "y": 299.76422 }, { "x": 180.678, - "y": 250.59575476702506 + "y": 250.59575 }, { "category": 1, @@ -7535,16 +7535,16 @@ "y": 0 }, { - "x": 203.25368158436214, - "y": 275.1799883061196 + "x": 203.25368, + "y": 275.17999 }, { "x": 0, "y": 0 }, { - "x": 203.25368158436214, - "y": 272.272717591084 + "x": 203.25368, + "y": 272.27272 }, { "endCol": 4, @@ -7568,7 +7568,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7589,35 +7589,35 @@ "index": 0, "isInternal": false, "x": 180.678, - "y": 250.59575476702506 + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 225.82936316872429, - "y": 250.59575476702506 + "x": 225.82936, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.82936316872429, - "y": 299.7642218452142 + "x": 225.82936, + "y": 299.76422 }, { "body": null, "index": 3, "isInternal": false, "x": 180.678, - "y": 299.7642218452142 + "y": 299.76422 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2601.1074479999997, + "area": 2601.10745, "axes": { "#": 896 }, @@ -7641,14 +7641,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, - "motion": 2.2526572115107895, + "mass": 2.60111, + "motion": 2.25266, "parent": null, "position": { "#": 909 @@ -7669,7 +7669,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7693,12 +7693,12 @@ } ], { - "x": -0.4999869137730785, - "y": -0.8660329589892477 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999869137730785, - "y": -0.8660329589892477 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7713,12 +7713,12 @@ } }, { - "x": 280.63336316872426, - "y": 313.8777547670249 + "x": 280.63336, + "y": 313.87775 }, { - "x": 225.82936316872429, - "y": 250.59575476702506 + "x": 225.82936, + "y": 250.59575 }, { "category": 1, @@ -7746,16 +7746,16 @@ "y": 0 }, { - "x": 253.23136316872427, - "y": 282.23675476702493 + "x": 253.23136, + "y": 282.23675 }, { "x": 0, "y": 0 }, { - "x": 253.23136316872427, - "y": 279.32948405198937 + "x": 253.23136, + "y": 279.32948 }, { "endCol": 5, @@ -7779,7 +7779,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7805,50 +7805,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 280.63336316872426, - "y": 298.05775476702496 + "x": 280.63336, + "y": 298.05775 }, { "body": null, "index": 1, "isInternal": false, - "x": 253.23136316872427, - "y": 313.8777547670249 + "x": 253.23136, + "y": 313.87775 }, { "body": null, "index": 2, "isInternal": false, - "x": 225.82936316872429, - "y": 298.05775476702496 + "x": 225.82936, + "y": 298.05775 }, { "body": null, "index": 3, "isInternal": false, - "x": 225.82936316872429, - "y": 266.4157547670251 + "x": 225.82936, + "y": 266.41575 }, { "body": null, "index": 4, "isInternal": false, - "x": 253.23136316872427, - "y": 250.59575476702506 + "x": 253.23136, + "y": 250.59575 }, { "body": null, "index": 5, "isInternal": false, - "x": 280.63336316872426, - "y": 266.4157547670251 + "x": 280.63336, + "y": 266.41575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1413.3088360000002, + "area": 1413.30884, "axes": { "#": 924 }, @@ -7872,14 +7872,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, - "motion": 2.2526572115110146, + "mass": 1.41331, + "motion": 2.25266, "parent": null, "position": { "#": 936 @@ -7900,7 +7900,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7937,12 +7937,12 @@ } }, { - "x": 318.2273631687243, - "y": 288.1897547670258 + "x": 318.22736, + "y": 288.18975 }, { - "x": 280.63336316872426, - "y": 250.5957547670259 + "x": 280.63336, + "y": 250.59575 }, { "category": 1, @@ -7970,16 +7970,16 @@ "y": 0 }, { - "x": 299.4303631687243, - "y": 269.3927547670259 + "x": 299.43036, + "y": 269.39275 }, { "x": 0, "y": 0 }, { - "x": 299.4303631687243, - "y": 266.4854840519902 + "x": 299.43036, + "y": 266.48548 }, { "endCol": 6, @@ -8003,7 +8003,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -8023,36 +8023,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 318.2273631687243, - "y": 288.1897547670258 + "x": 318.22736, + "y": 288.18975 }, { "body": null, "index": 1, "isInternal": false, - "x": 280.63336316872426, - "y": 288.1897547670258 + "x": 280.63336, + "y": 288.18975 }, { "body": null, "index": 2, "isInternal": false, - "x": 280.63336316872426, - "y": 250.5957547670259 + "x": 280.63336, + "y": 250.59575 }, { "body": null, "index": 3, "isInternal": false, - "x": 318.2273631687243, - "y": 250.5957547670259 + "x": 318.22736, + "y": 250.59575 }, { - "angle": 4.370865055920414e-16, - "anglePrev": 3.5141746237941473e-16, - "angularSpeed": 8.566904321262666e-17, - "angularVelocity": 8.566904321262666e-17, - "area": 5460.808751999999, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 5460.80875, "axes": { "#": 949 }, @@ -8076,14 +8076,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, - "motion": 2.2526572115108787, + "mass": 5.46081, + "motion": 2.25266, "parent": null, "position": { "#": 962 @@ -8104,7 +8104,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035602, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8128,16 +8128,16 @@ } ], { - "x": -0.4999981172696017, - "y": -0.8660264907766121 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.49999811726960225, - "y": -0.8660264907766121 + "x": 0.5, + "y": -0.86603 }, { "x": 1, - "y": 4.370865055920414e-16 + "y": 0 }, { "max": { @@ -8148,12 +8148,12 @@ } }, { - "x": 398.510305394171, - "y": 352.40382909824996 + "x": 398.51031, + "y": 352.40383 }, { - "x": 319.10230539417097, - "y": 257.8045583832145 + "x": 319.10231, + "y": 257.80456 }, { "category": 1, @@ -8181,16 +8181,16 @@ "y": 0 }, { - "x": 358.806305394171, - "y": 303.6505583832144 + "x": 358.80631, + "y": 303.65056 }, { - "x": 0.06216954385340654, - "y": 0.5122258584770738 + "x": 0.06217, + "y": 0.51223 }, { - "x": 358.806305394171, - "y": 300.74328766817877 + "x": 358.80631, + "y": 300.74329 }, { "endCol": 8, @@ -8214,7 +8214,7 @@ }, { "x": 0, - "y": 2.907270715035602 + "y": 2.90727 }, [ { @@ -8240,50 +8240,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 398.510305394171, - "y": 326.5735583832144 + "x": 398.51031, + "y": 326.57356 }, { "body": null, "index": 1, "isInternal": false, - "x": 358.806305394171, - "y": 349.49655838321434 + "x": 358.80631, + "y": 349.49656 }, { "body": null, "index": 2, "isInternal": false, - "x": 319.10230539417097, - "y": 326.5735583832144 + "x": 319.10231, + "y": 326.57356 }, { "body": null, "index": 3, "isInternal": false, - "x": 319.10230539417097, - "y": 280.7275583832144 + "x": 319.10231, + "y": 280.72756 }, { "body": null, "index": 4, "isInternal": false, - "x": 358.806305394171, - "y": 257.8045583832145 + "x": 358.80631, + "y": 257.80456 }, { "body": null, "index": 5, "isInternal": false, - "x": 398.510305394171, - "y": 280.7275583832144 + "x": 398.51031, + "y": 280.72756 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 977 }, @@ -8307,14 +8307,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, - "motion": 2.2526572115110417, + "mass": 0.45161, + "motion": 2.25266, "parent": null, "position": { "#": 989 @@ -8335,7 +8335,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035714, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8372,12 +8372,12 @@ } }, { - "x": 417.80588786008235, - "y": 272.9855438616762 + "x": 417.80589, + "y": 272.98554 }, { - "x": 397.6353631687243, - "y": 250.59575476702602 + "x": 397.63536, + "y": 250.59575 }, { "category": 1, @@ -8405,16 +8405,16 @@ "y": 0 }, { - "x": 407.7206255144033, - "y": 261.7906493143512 + "x": 407.72063, + "y": 261.79065 }, { "x": 0, "y": 0 }, { - "x": 407.7206255144033, - "y": 258.88337859931545 + "x": 407.72063, + "y": 258.88338 }, { "endCol": 8, @@ -8438,7 +8438,7 @@ }, { "x": 0, - "y": 2.907270715035714 + "y": 2.90727 }, [ { @@ -8458,36 +8458,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.6353631687243, - "y": 250.59575476702602 + "x": 397.63536, + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 417.80588786008235, - "y": 250.59575476702602 + "x": 417.80589, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 417.80588786008235, - "y": 272.9855438616762 + "x": 417.80589, + "y": 272.98554 }, { "body": null, "index": 3, "isInternal": false, - "x": 397.6353631687243, - "y": 272.9855438616762 + "x": 397.63536, + "y": 272.98554 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 1002 }, @@ -8511,14 +8511,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, - "motion": 2.2526572115110266, + "mass": 3.02168, + "motion": 2.25266, "parent": null, "position": { "#": 1014 @@ -8539,7 +8539,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8576,12 +8576,12 @@ } }, { - "x": 519.6390497256516, - "y": 280.26859427319874 + "x": 519.63905, + "y": 280.26859 }, { - "x": 417.80588786008235, - "y": 250.59575476702594 + "x": 417.80589, + "y": 250.59575 }, { "category": 1, @@ -8609,16 +8609,16 @@ "y": 0 }, { - "x": 468.722468792867, - "y": 265.43217452011237 + "x": 468.72247, + "y": 265.43217 }, { "x": 0, "y": 0 }, { - "x": 468.722468792867, - "y": 262.5249038050767 + "x": 468.72247, + "y": 262.5249 }, { "endCol": 10, @@ -8642,7 +8642,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -8662,36 +8662,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.80588786008235, - "y": 250.59575476702594 + "x": 417.80589, + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 519.6390497256516, - "y": 250.59575476702594 + "x": 519.63905, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 519.6390497256516, - "y": 280.26859427319874 + "x": 519.63905, + "y": 280.26859 }, { "body": null, "index": 3, "isInternal": false, - "x": 417.80588786008235, - "y": 280.26859427319874 + "x": 417.80589, + "y": 280.26859 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 1027 }, @@ -8715,14 +8715,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, - "motion": 2.2526572115110266, + "mass": 0.85674, + "motion": 2.25266, "parent": null, "position": { "#": 1039 @@ -8743,7 +8743,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8780,12 +8780,12 @@ } }, { - "x": 559.7105517832647, - "y": 271.97602740077076 + "x": 559.71055, + "y": 271.97603 }, { - "x": 519.6390497256516, - "y": 250.59575476702597 + "x": 519.63905, + "y": 250.59575 }, { "category": 1, @@ -8813,16 +8813,16 @@ "y": 0 }, { - "x": 539.6748007544581, - "y": 261.2858910838984 + "x": 539.6748, + "y": 261.28589 }, { "x": 0, "y": 0 }, { - "x": 539.6748007544581, - "y": 258.3786203688627 + "x": 539.6748, + "y": 258.37862 }, { "endCol": 11, @@ -8846,7 +8846,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8866,36 +8866,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 519.6390497256516, - "y": 250.59575476702597 + "x": 519.63905, + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 559.7105517832647, - "y": 250.59575476702597 + "x": 559.71055, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 559.7105517832647, - "y": 271.97602740077076 + "x": 559.71055, + "y": 271.97603 }, { "body": null, "index": 3, "isInternal": false, - "x": 519.6390497256516, - "y": 271.97602740077076 + "x": 519.63905, + "y": 271.97603 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 1052 }, @@ -8919,14 +8919,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, - "motion": 2.2526572115107895, + "mass": 4.0886, + "motion": 2.25266, "parent": null, "position": { "#": 1066 @@ -8947,7 +8947,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8974,16 +8974,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8998,12 +8998,12 @@ } }, { - "x": 629.9625517832646, - "y": 320.8477547670249 + "x": 629.96255, + "y": 320.84775 }, { - "x": 559.7105517832647, - "y": 250.59575476702506 + "x": 559.71055, + "y": 250.59575 }, { "category": 1, @@ -9031,16 +9031,16 @@ "y": 0 }, { - "x": 594.8365517832647, - "y": 285.72175476702495 + "x": 594.83655, + "y": 285.72175 }, { "x": 0, "y": 0 }, { - "x": 594.8365517832647, - "y": 282.8144840519894 + "x": 594.83655, + "y": 282.81448 }, { "endCol": 13, @@ -9064,7 +9064,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9096,64 +9096,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 629.9625517832646, - "y": 300.27175476702496 + "x": 629.96255, + "y": 300.27175 }, { "body": null, "index": 1, "isInternal": false, - "x": 609.3865517832646, - "y": 320.8477547670249 + "x": 609.38655, + "y": 320.84775 }, { "body": null, "index": 2, "isInternal": false, - "x": 580.2865517832647, - "y": 320.8477547670249 + "x": 580.28655, + "y": 320.84775 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.7105517832647, - "y": 300.27175476702496 + "x": 559.71055, + "y": 300.27175 }, { "body": null, "index": 4, "isInternal": false, - "x": 559.7105517832647, - "y": 271.171754767025 + "x": 559.71055, + "y": 271.17175 }, { "body": null, "index": 5, "isInternal": false, - "x": 580.2865517832647, - "y": 250.59575476702506 + "x": 580.28655, + "y": 250.59575 }, { "body": null, "index": 6, "isInternal": false, - "x": 609.3865517832646, - "y": 250.59575476702506 + "x": 609.38655, + "y": 250.59575 }, { "body": null, "index": 7, "isInternal": false, - "x": 629.9625517832646, - "y": 271.171754767025 + "x": 629.96255, + "y": 271.17175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 1083 }, @@ -9177,14 +9177,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, - "motion": 2.2526572115110417, + "mass": 1.96514, + "motion": 2.25266, "parent": null, "position": { "#": 1095 @@ -9205,7 +9205,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035714, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9242,12 +9242,12 @@ } }, { - "x": 719.4668384773661, - "y": 272.55160181778047 + "x": 719.46684, + "y": 272.5516 }, { - "x": 629.9625517832646, - "y": 250.59575476702602 + "x": 629.96255, + "y": 250.59575 }, { "category": 1, @@ -9275,16 +9275,16 @@ "y": 0 }, { - "x": 674.7146951303154, - "y": 261.5736782924033 + "x": 674.7147, + "y": 261.57368 }, { "x": 0, "y": 0 }, { - "x": 674.7146951303154, - "y": 258.6664075773676 + "x": 674.7147, + "y": 258.66641 }, { "endCol": 14, @@ -9308,7 +9308,7 @@ }, { "x": 0, - "y": 2.907270715035714 + "y": 2.90727 }, [ { @@ -9328,36 +9328,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 629.9625517832646, - "y": 250.59575476702602 + "x": 629.96255, + "y": 250.59575 }, { "body": null, "index": 1, "isInternal": false, - "x": 719.4668384773661, - "y": 250.59575476702602 + "x": 719.46684, + "y": 250.59575 }, { "body": null, "index": 2, "isInternal": false, - "x": 719.4668384773661, - "y": 272.55160181778047 + "x": 719.46684, + "y": 272.5516 }, { "body": null, "index": 3, "isInternal": false, - "x": 629.9625517832646, - "y": 272.55160181778047 + "x": 629.96255, + "y": 272.5516 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1492.5256200000001, + "area": 1492.52562, "axes": { "#": 1108 }, @@ -9381,14 +9381,14 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1714.8324723309402, - "inverseInertia": 0.0005831473430408735, - "inverseMass": 0.6700052492231255, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "inverseMass": 0.67001, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.49252562, - "motion": 2.2526572115107895, + "mass": 1.49253, + "motion": 2.25266, "parent": null, "position": { "#": 1121 @@ -9409,7 +9409,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9433,12 +9433,12 @@ } ], { - "x": -0.5000025921589079, - "y": 0.8660239071956228 + "x": -0.5, + "y": 0.86602 }, { - "x": -0.5000025921589079, - "y": -0.8660239071956228 + "x": -0.5, + "y": -0.86602 }, { "x": 1, @@ -9453,12 +9453,12 @@ } }, { - "x": 761.8368384773661, - "y": 309.3057547670249 + "x": 761.83684, + "y": 309.30575 }, { - "x": 710.9928384773661, - "y": 250.59575476702506 + "x": 710.99284, + "y": 250.59575 }, { "category": 1, @@ -9486,16 +9486,16 @@ "y": 0 }, { - "x": 744.8888384773661, - "y": 279.95075476702493 + "x": 744.88884, + "y": 279.95075 }, { "x": 0, "y": 0 }, { - "x": 744.8888384773661, - "y": 277.04348405198937 + "x": 744.88884, + "y": 277.04348 }, { "endCol": 15, @@ -9519,7 +9519,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9536,22 +9536,22 @@ "body": null, "index": 0, "isInternal": false, - "x": 761.8368384773661, - "y": 309.3057547670249 + "x": 761.83684, + "y": 309.30575 }, { "body": null, "index": 1, "isInternal": false, - "x": 710.9928384773661, - "y": 279.95075476702493 + "x": 710.99284, + "y": 279.95075 }, { "body": null, "index": 2, "isInternal": false, - "x": 761.8368384773661, - "y": 250.59575476702506 + "x": 761.83684, + "y": 250.59575 }, [], [], diff --git a/test/browser/refs/slingshot/slingshot-0.json b/test/browser/refs/slingshot/slingshot-0.json index 8e507da7..f4dd66cc 100644 --- a/test/browser/refs/slingshot/slingshot-0.json +++ b/test/browser/refs/slingshot/slingshot-0.json @@ -427,7 +427,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1131.4279840000002, + "area": 1131.42798, "axes": { "#": 45 }, @@ -448,13 +448,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 3267.2544468363367, - "inverseInertia": 0.00030606737744845496, - "inverseMass": 0.22095971068009218, + "inertia": 3267.25445, + "inverseInertia": 0.00031, + "inverseMass": 0.22096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.525711936, + "mass": 4.52571, "motion": 0, "parent": null, "position": { @@ -500,16 +500,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -820,8 +820,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1001,8 +1001,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1182,8 +1182,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1363,8 +1363,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1544,8 +1544,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1725,8 +1725,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1906,8 +1906,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2087,8 +2087,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2268,8 +2268,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2449,8 +2449,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2630,8 +2630,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2811,8 +2811,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2992,8 +2992,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3173,8 +3173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3354,8 +3354,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3535,8 +3535,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3716,8 +3716,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3897,8 +3897,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4078,8 +4078,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4259,8 +4259,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4440,8 +4440,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4621,8 +4621,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4802,8 +4802,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4983,8 +4983,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5164,8 +5164,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5392,8 +5392,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5573,8 +5573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5754,8 +5754,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5935,8 +5935,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6116,8 +6116,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6297,8 +6297,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6478,8 +6478,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6659,8 +6659,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6840,8 +6840,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7036,7 +7036,7 @@ "bodyB": null, "id": 6, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 802 }, diff --git a/test/browser/refs/slingshot/slingshot-10.json b/test/browser/refs/slingshot/slingshot-10.json index 279748dc..461aef10 100644 --- a/test/browser/refs/slingshot/slingshot-10.json +++ b/test/browser/refs/slingshot/slingshot-10.json @@ -447,7 +447,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1131.4279840000002, + "area": 1131.42798, "axes": { "#": 47 }, @@ -468,13 +468,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 3267.2544468363367, - "inverseInertia": 0.00030606737744845496, - "inverseMass": 0.22095971068009218, + "inertia": 3267.25445, + "inverseInertia": 0.00031, + "inverseMass": 0.22096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.525711936, + "mass": 4.52571, "motion": 0, "parent": null, "position": { @@ -496,7 +496,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.9800681428440472, + "speed": 0.98007, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -523,16 +523,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -548,11 +548,11 @@ }, { "x": 188.478, - "y": 476.7578830850918 + "y": 476.75788 }, { "x": 151.522, - "y": 439.8018830850918 + "y": 439.80188 }, { "category": 1, @@ -570,7 +570,7 @@ }, { "x": 170, - "y": 458.2798830850918 + "y": 458.27988 }, { "x": 0, @@ -578,7 +578,7 @@ }, { "x": 170, - "y": 457.7298679894024 + "y": 457.72987 }, { "endCol": 3, @@ -603,7 +603,7 @@ }, { "x": 0, - "y": 0.7623197645378923 + "y": 0.76232 }, [ { @@ -636,56 +636,56 @@ "index": 0, "isInternal": false, "x": 188.478, - "y": 465.9338830850918 + "y": 465.93388 }, { "body": null, "index": 1, "isInternal": false, "x": 177.654, - "y": 476.7578830850918 + "y": 476.75788 }, { "body": null, "index": 2, "isInternal": false, "x": 162.346, - "y": 476.7578830850918 + "y": 476.75788 }, { "body": null, "index": 3, "isInternal": false, "x": 151.522, - "y": 465.9338830850918 + "y": 465.93388 }, { "body": null, "index": 4, "isInternal": false, "x": 151.522, - "y": 450.6258830850918 + "y": 450.62588 }, { "body": null, "index": 5, "isInternal": false, "x": 162.346, - "y": 439.8018830850918 + "y": 439.80188 }, { "body": null, "index": 6, "isInternal": false, "x": 177.654, - "y": 439.8018830850918 + "y": 439.80188 }, { "body": null, "index": 7, "isInternal": false, "x": 188.478, - "y": 450.6258830850918 + "y": 450.62588 }, { "max": { @@ -850,8 +850,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -878,7 +878,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -916,11 +916,11 @@ }, { "x": 625, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 600, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -938,7 +938,7 @@ }, { "x": 612.5, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -946,7 +946,7 @@ }, { "x": 612.5, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 13, @@ -971,7 +971,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -992,28 +992,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -1041,8 +1041,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1069,7 +1069,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1107,11 +1107,11 @@ }, { "x": 600, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 575, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -1129,7 +1129,7 @@ }, { "x": 587.5, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -1137,7 +1137,7 @@ }, { "x": 587.5, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 12, @@ -1162,7 +1162,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1183,28 +1183,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -1232,8 +1232,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1260,7 +1260,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1298,11 +1298,11 @@ }, { "x": 625, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 600, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -1320,7 +1320,7 @@ }, { "x": 612.5, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -1328,7 +1328,7 @@ }, { "x": 612.5, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 13, @@ -1353,7 +1353,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1374,28 +1374,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -1423,8 +1423,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1451,7 +1451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1489,11 +1489,11 @@ }, { "x": 650, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 625, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -1511,7 +1511,7 @@ }, { "x": 637.5, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -1519,7 +1519,7 @@ }, { "x": 637.5, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 13, @@ -1544,7 +1544,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1565,28 +1565,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -1614,8 +1614,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1642,7 +1642,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1680,11 +1680,11 @@ }, { "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 550, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -1702,7 +1702,7 @@ }, { "x": 562.5, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -1710,7 +1710,7 @@ }, { "x": 562.5, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 11, @@ -1735,7 +1735,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1756,28 +1756,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -1805,8 +1805,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -1833,7 +1833,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1871,11 +1871,11 @@ }, { "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 575, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -1893,7 +1893,7 @@ }, { "x": 587.5, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -1901,7 +1901,7 @@ }, { "x": 587.5, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 12, @@ -1926,7 +1926,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1947,28 +1947,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -1996,8 +1996,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2024,7 +2024,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2062,11 +2062,11 @@ }, { "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 600, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -2084,7 +2084,7 @@ }, { "x": 612.5, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -2092,7 +2092,7 @@ }, { "x": 612.5, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 13, @@ -2117,7 +2117,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2138,28 +2138,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -2187,8 +2187,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2215,7 +2215,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2253,11 +2253,11 @@ }, { "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 625, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -2275,7 +2275,7 @@ }, { "x": 637.5, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -2283,7 +2283,7 @@ }, { "x": 637.5, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 13, @@ -2308,7 +2308,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2329,28 +2329,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -2378,8 +2378,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2406,7 +2406,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2444,11 +2444,11 @@ }, { "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 650, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -2466,7 +2466,7 @@ }, { "x": 662.5, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -2474,7 +2474,7 @@ }, { "x": 662.5, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 14, @@ -2499,7 +2499,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2520,28 +2520,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -2569,8 +2569,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2597,7 +2597,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2635,11 +2635,11 @@ }, { "x": 550, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 525, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -2657,7 +2657,7 @@ }, { "x": 537.5, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -2665,7 +2665,7 @@ }, { "x": 537.5, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 11, @@ -2690,7 +2690,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2711,28 +2711,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -2760,8 +2760,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2788,7 +2788,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2826,11 +2826,11 @@ }, { "x": 575, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -2848,7 +2848,7 @@ }, { "x": 562.5, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -2856,7 +2856,7 @@ }, { "x": 562.5, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 11, @@ -2881,7 +2881,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2902,28 +2902,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -2951,8 +2951,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -2979,7 +2979,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3017,11 +3017,11 @@ }, { "x": 600, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -3039,7 +3039,7 @@ }, { "x": 587.5, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -3047,7 +3047,7 @@ }, { "x": 587.5, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 12, @@ -3072,7 +3072,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3093,28 +3093,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -3142,8 +3142,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3170,7 +3170,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3208,11 +3208,11 @@ }, { "x": 625, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -3230,7 +3230,7 @@ }, { "x": 612.5, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -3238,7 +3238,7 @@ }, { "x": 612.5, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 13, @@ -3263,7 +3263,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3284,28 +3284,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -3333,8 +3333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3361,7 +3361,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3399,11 +3399,11 @@ }, { "x": 650, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -3421,7 +3421,7 @@ }, { "x": 637.5, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -3429,7 +3429,7 @@ }, { "x": 637.5, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 13, @@ -3454,7 +3454,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3475,28 +3475,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -3524,8 +3524,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3552,7 +3552,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3590,11 +3590,11 @@ }, { "x": 675, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -3612,7 +3612,7 @@ }, { "x": 662.5, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -3620,7 +3620,7 @@ }, { "x": 662.5, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 14, @@ -3645,7 +3645,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3666,28 +3666,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -3715,8 +3715,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3743,7 +3743,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3781,11 +3781,11 @@ }, { "x": 700, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -3803,7 +3803,7 @@ }, { "x": 687.5, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -3811,7 +3811,7 @@ }, { "x": 687.5, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 14, @@ -3836,7 +3836,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3857,28 +3857,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -3906,8 +3906,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -3934,7 +3934,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3972,11 +3972,11 @@ }, { "x": 525, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 500, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -3994,7 +3994,7 @@ }, { "x": 512.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -4002,7 +4002,7 @@ }, { "x": 512.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 10, @@ -4027,7 +4027,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4048,28 +4048,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -4097,8 +4097,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4125,7 +4125,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4163,11 +4163,11 @@ }, { "x": 550, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 525, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -4185,7 +4185,7 @@ }, { "x": 537.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -4193,7 +4193,7 @@ }, { "x": 537.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 11, @@ -4218,7 +4218,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4239,28 +4239,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -4288,8 +4288,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4316,7 +4316,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4354,11 +4354,11 @@ }, { "x": 575, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 550, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -4376,7 +4376,7 @@ }, { "x": 562.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -4384,7 +4384,7 @@ }, { "x": 562.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 11, @@ -4409,7 +4409,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4430,28 +4430,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -4479,8 +4479,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4507,7 +4507,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4545,11 +4545,11 @@ }, { "x": 600, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 575, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -4567,7 +4567,7 @@ }, { "x": 587.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -4575,7 +4575,7 @@ }, { "x": 587.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 12, @@ -4600,7 +4600,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4621,28 +4621,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -4670,8 +4670,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4698,7 +4698,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4736,11 +4736,11 @@ }, { "x": 625, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 600, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -4758,7 +4758,7 @@ }, { "x": 612.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -4766,7 +4766,7 @@ }, { "x": 612.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 13, @@ -4791,7 +4791,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4812,28 +4812,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -4861,8 +4861,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -4889,7 +4889,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4927,11 +4927,11 @@ }, { "x": 650, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 625, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -4949,7 +4949,7 @@ }, { "x": 637.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -4957,7 +4957,7 @@ }, { "x": 637.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 13, @@ -4982,7 +4982,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5003,28 +5003,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -5052,8 +5052,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5080,7 +5080,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5118,11 +5118,11 @@ }, { "x": 675, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 650, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -5140,7 +5140,7 @@ }, { "x": 662.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -5148,7 +5148,7 @@ }, { "x": 662.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 14, @@ -5173,7 +5173,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5194,28 +5194,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -5243,8 +5243,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5271,7 +5271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5309,11 +5309,11 @@ }, { "x": 700, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 675, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -5331,7 +5331,7 @@ }, { "x": 687.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -5339,7 +5339,7 @@ }, { "x": 687.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 14, @@ -5364,7 +5364,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5385,28 +5385,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -5434,8 +5434,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5462,7 +5462,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5500,11 +5500,11 @@ }, { "x": 725, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 700, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -5522,7 +5522,7 @@ }, { "x": 712.5, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -5530,7 +5530,7 @@ }, { "x": 712.5, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 15, @@ -5555,7 +5555,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5576,28 +5576,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 517.7357547670249 + "y": 517.73575 }, [], [], @@ -5672,8 +5672,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5700,7 +5700,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5738,11 +5738,11 @@ }, { "x": 625, - "y": 60.69754545254138 + "y": 60.69755 }, { "x": 600, - "y": 17.790274737505737 + "y": 17.79027 }, { "category": 1, @@ -5760,15 +5760,15 @@ }, { "x": 612.5, - "y": 37.79027473750573 + "y": 37.79027 }, { "x": 0, - "y": 0.004095995904000823 + "y": 0.0041 }, { "x": 612.5, - "y": 34.88300402247009 + "y": 34.883 }, { "endCol": 13, @@ -5793,7 +5793,7 @@ }, { "x": 0, - "y": 2.9072707150356436 + "y": 2.90727 }, [ { @@ -5814,28 +5814,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 17.790274737505737 + "y": 17.79027 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 17.790274737505737 + "y": 17.79027 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 57.79027473750573 + "y": 57.79027 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 57.79027473750573 + "y": 57.79027 }, { "angle": 0, @@ -5863,8 +5863,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -5891,7 +5891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5929,11 +5929,11 @@ }, { "x": 600, - "y": 97.73575476702572 + "y": 97.73575 }, { "x": 575, - "y": 57.73575476702574 + "y": 57.73575 }, { "category": 1, @@ -5951,7 +5951,7 @@ }, { "x": 587.5, - "y": 77.73575476702574 + "y": 77.73575 }, { "x": 0, @@ -5959,7 +5959,7 @@ }, { "x": 587.5, - "y": 74.82848405199009 + "y": 74.82848 }, { "endCol": 12, @@ -5984,7 +5984,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6005,28 +6005,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 57.73575476702574 + "y": 57.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 57.73575476702574 + "y": 57.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 97.73575476702572 + "y": 97.73575 }, { "angle": 0, @@ -6054,8 +6054,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6082,7 +6082,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6120,11 +6120,11 @@ }, { "x": 625, - "y": 100.64754545254137 + "y": 100.64755 }, { "x": 600, - "y": 57.740274737505736 + "y": 57.74027 }, { "category": 1, @@ -6142,15 +6142,15 @@ }, { "x": 612.5, - "y": 77.74027473750573 + "y": 77.74027 }, { "x": 0, - "y": 0.004095995903997061 + "y": 0.0041 }, { "x": 612.5, - "y": 74.83300402247008 + "y": 74.833 }, { "endCol": 13, @@ -6175,7 +6175,7 @@ }, { "x": 0, - "y": 2.9072707150356507 + "y": 2.90727 }, [ { @@ -6196,28 +6196,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 57.740274737505736 + "y": 57.74027 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 57.740274737505736 + "y": 57.74027 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 97.74027473750571 + "y": 97.74027 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 97.74027473750571 + "y": 97.74027 }, { "angle": 0, @@ -6245,8 +6245,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6273,7 +6273,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6311,11 +6311,11 @@ }, { "x": 650, - "y": 97.73575476702572 + "y": 97.73575 }, { "x": 625, - "y": 57.73575476702574 + "y": 57.73575 }, { "category": 1, @@ -6333,7 +6333,7 @@ }, { "x": 637.5, - "y": 77.73575476702574 + "y": 77.73575 }, { "x": 0, @@ -6341,7 +6341,7 @@ }, { "x": 637.5, - "y": 74.82848405199009 + "y": 74.82848 }, { "endCol": 13, @@ -6366,7 +6366,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6387,28 +6387,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 57.73575476702574 + "y": 57.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 57.73575476702574 + "y": 57.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 97.73575476702572 + "y": 97.73575 }, { "angle": 0, @@ -6436,8 +6436,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6464,7 +6464,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6502,11 +6502,11 @@ }, { "x": 575, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 550, - "y": 97.73575476702572 + "y": 97.73575 }, { "category": 1, @@ -6524,7 +6524,7 @@ }, { "x": 562.5, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -6532,7 +6532,7 @@ }, { "x": 562.5, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 11, @@ -6557,7 +6557,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6578,28 +6578,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -6627,8 +6627,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6655,7 +6655,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6693,11 +6693,11 @@ }, { "x": 600, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 575, - "y": 97.73575476702572 + "y": 97.73575 }, { "category": 1, @@ -6715,7 +6715,7 @@ }, { "x": 587.5, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -6723,7 +6723,7 @@ }, { "x": 587.5, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 12, @@ -6748,7 +6748,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6769,28 +6769,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -6818,8 +6818,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -6846,7 +6846,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6884,11 +6884,11 @@ }, { "x": 625, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 600, - "y": 97.73575476702572 + "y": 97.73575 }, { "category": 1, @@ -6906,7 +6906,7 @@ }, { "x": 612.5, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -6914,7 +6914,7 @@ }, { "x": 612.5, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 13, @@ -6939,7 +6939,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6960,28 +6960,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -7009,8 +7009,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7037,7 +7037,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7075,11 +7075,11 @@ }, { "x": 650, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 625, - "y": 97.73575476702572 + "y": 97.73575 }, { "category": 1, @@ -7097,7 +7097,7 @@ }, { "x": 637.5, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -7105,7 +7105,7 @@ }, { "x": 637.5, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 13, @@ -7130,7 +7130,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7151,28 +7151,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -7200,8 +7200,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 741.6666666666666, - "inverseInertia": 0.0013483146067415732, + "inertia": 741.66667, + "inverseInertia": 0.00135, "inverseMass": 1, "isSleeping": false, "isStatic": false, @@ -7228,7 +7228,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7266,11 +7266,11 @@ }, { "x": 675, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 650, - "y": 97.73575476702572 + "y": 97.73575 }, { "category": 1, @@ -7288,7 +7288,7 @@ }, { "x": 662.5, - "y": 117.73575476702572 + "y": 117.73575 }, { "x": 0, @@ -7296,7 +7296,7 @@ }, { "x": 662.5, - "y": 114.82848405199007 + "y": 114.82848 }, { "endCol": 14, @@ -7321,7 +7321,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7342,28 +7342,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 97.73575476702572 + "y": 97.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 137.73575476702572 + "y": 137.73575 }, [], [], @@ -7406,7 +7406,7 @@ "bodyB": null, "id": 6, "label": "Constraint", - "length": 0.000001, + "length": 0, "pointA": { "#": 839 }, diff --git a/test/browser/refs/softBody/softBody-0.json b/test/browser/refs/softBody/softBody-0.json index edb4b090..1ca86cdf 100644 --- a/test/browser/refs/softBody/softBody-0.json +++ b/test/browser/refs/softBody/softBody-0.json @@ -940,7 +940,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 93 }, @@ -969,11 +969,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -1034,36 +1034,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -1078,11 +1078,11 @@ } }, { - "x": 285.45399999999995, + "x": 285.454, "y": 136 }, { - "x": 249.99999999999997, + "x": 250, "y": 100 }, { @@ -1188,7 +1188,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 121.126 }, { @@ -1202,7 +1202,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 131.789 }, { @@ -1223,7 +1223,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 134.914 }, { @@ -1237,28 +1237,28 @@ "body": null, "index": 7, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 127 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 121.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 114.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 109 }, { @@ -1272,7 +1272,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 101.086 }, { @@ -1293,7 +1293,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 104.211 }, { @@ -1307,7 +1307,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 114.874 }, { @@ -1315,7 +1315,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 135 }, @@ -1344,11 +1344,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -1409,36 +1409,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -1453,11 +1453,11 @@ } }, { - "x": 320.9079999999999, + "x": 320.908, "y": 136 }, { - "x": 285.45399999999995, + "x": 285.454, "y": 100 }, { @@ -1475,7 +1475,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 118 }, { @@ -1483,7 +1483,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 118 }, { @@ -1563,126 +1563,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 121.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 127 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 131.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 134.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 136 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 134.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 131.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 127 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 121.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 114.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 109 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 104.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 101.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 100 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 101.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 104.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 109 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 114.874 }, { @@ -1690,7 +1690,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 177 }, @@ -1719,11 +1719,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -1784,36 +1784,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -1828,11 +1828,11 @@ } }, { - "x": 356.36199999999985, + "x": 356.362, "y": 136 }, { - "x": 320.9079999999999, + "x": 320.908, "y": 100 }, { @@ -1850,7 +1850,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 118 }, { @@ -1858,7 +1858,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 118 }, { @@ -1938,126 +1938,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 121.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 127 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 131.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 134.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 136 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 134.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 131.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 127 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 121.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 114.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 109 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 104.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 101.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 100 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 101.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 104.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 109 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 114.874 }, { @@ -2065,7 +2065,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 219 }, @@ -2094,11 +2094,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -2159,36 +2159,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -2203,11 +2203,11 @@ } }, { - "x": 391.8159999999998, + "x": 391.816, "y": 136 }, { - "x": 356.36199999999985, + "x": 356.362, "y": 100 }, { @@ -2225,7 +2225,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 118 }, { @@ -2233,7 +2233,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 118 }, { @@ -2313,126 +2313,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 121.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 127 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 131.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 134.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 136 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 134.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 131.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 127 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 121.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 114.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 109 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 104.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 101.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 100 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 101.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 104.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 109 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 114.874 }, { @@ -2440,7 +2440,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 261 }, @@ -2469,11 +2469,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -2534,36 +2534,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -2578,11 +2578,11 @@ } }, { - "x": 427.26999999999975, + "x": 427.27, "y": 136 }, { - "x": 391.8159999999998, + "x": 391.816, "y": 100 }, { @@ -2600,7 +2600,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 118 }, { @@ -2608,7 +2608,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 118 }, { @@ -2688,126 +2688,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 121.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 127 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 131.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 134.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 136 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 134.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 131.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 127 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 121.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 114.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 109 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 104.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 101.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 100 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 101.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 104.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 109 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 114.874 }, { @@ -2815,7 +2815,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 303 }, @@ -2844,11 +2844,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -2909,36 +2909,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -2953,11 +2953,11 @@ } }, { - "x": 285.45399999999995, + "x": 285.454, "y": 172 }, { - "x": 249.99999999999997, + "x": 250, "y": 136 }, { @@ -3063,7 +3063,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 157.126 }, { @@ -3077,7 +3077,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 167.789 }, { @@ -3098,7 +3098,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 170.914 }, { @@ -3112,28 +3112,28 @@ "body": null, "index": 7, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 163 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 157.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 150.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 145 }, { @@ -3147,7 +3147,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 137.086 }, { @@ -3168,7 +3168,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 140.211 }, { @@ -3182,7 +3182,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 150.874 }, { @@ -3190,7 +3190,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 345 }, @@ -3219,11 +3219,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -3284,36 +3284,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -3328,11 +3328,11 @@ } }, { - "x": 320.9079999999999, + "x": 320.908, "y": 172 }, { - "x": 285.45399999999995, + "x": 285.454, "y": 136 }, { @@ -3350,7 +3350,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 154 }, { @@ -3358,7 +3358,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 154 }, { @@ -3438,126 +3438,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 157.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 163 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 167.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 170.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 172 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 170.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 167.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 163 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 157.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 150.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 145 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 140.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 137.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 136 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 137.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 140.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 145 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 150.874 }, { @@ -3565,7 +3565,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 387 }, @@ -3594,11 +3594,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -3659,36 +3659,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -3703,11 +3703,11 @@ } }, { - "x": 356.36199999999985, + "x": 356.362, "y": 172 }, { - "x": 320.9079999999999, + "x": 320.908, "y": 136 }, { @@ -3725,7 +3725,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 154 }, { @@ -3733,7 +3733,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 154 }, { @@ -3813,126 +3813,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 157.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 163 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 167.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 170.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 172 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 170.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 167.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 163 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 157.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 150.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 145 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 140.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 137.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 136 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 137.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 140.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 145 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 150.874 }, { @@ -3940,7 +3940,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 429 }, @@ -3969,11 +3969,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -4034,36 +4034,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -4078,11 +4078,11 @@ } }, { - "x": 391.8159999999998, + "x": 391.816, "y": 172 }, { - "x": 356.36199999999985, + "x": 356.362, "y": 136 }, { @@ -4100,7 +4100,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 154 }, { @@ -4108,7 +4108,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 154 }, { @@ -4188,126 +4188,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 157.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 163 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 167.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 170.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 172 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 170.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 167.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 163 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 157.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 150.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 145 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 140.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 137.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 136 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 137.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 140.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 145 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 150.874 }, { @@ -4315,7 +4315,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 471 }, @@ -4344,11 +4344,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -4409,36 +4409,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -4453,11 +4453,11 @@ } }, { - "x": 427.26999999999975, + "x": 427.27, "y": 172 }, { - "x": 391.8159999999998, + "x": 391.816, "y": 136 }, { @@ -4475,7 +4475,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 154 }, { @@ -4483,7 +4483,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 154 }, { @@ -4563,126 +4563,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 157.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 163 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 167.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 170.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 172 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 170.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 167.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 163 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 157.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 150.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 145 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 140.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 137.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 136 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 137.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 140.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 145 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 150.874 }, { @@ -4690,7 +4690,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 513 }, @@ -4719,11 +4719,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -4784,36 +4784,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -4828,11 +4828,11 @@ } }, { - "x": 285.45399999999995, + "x": 285.454, "y": 208 }, { - "x": 249.99999999999997, + "x": 250, "y": 172 }, { @@ -4938,7 +4938,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 193.126 }, { @@ -4952,7 +4952,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 203.789 }, { @@ -4973,7 +4973,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 206.914 }, { @@ -4987,28 +4987,28 @@ "body": null, "index": 7, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 199 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 193.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 186.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 181 }, { @@ -5022,7 +5022,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 173.086 }, { @@ -5043,7 +5043,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 176.211 }, { @@ -5057,7 +5057,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 186.874 }, { @@ -5065,7 +5065,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 555 }, @@ -5094,11 +5094,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -5159,36 +5159,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -5203,11 +5203,11 @@ } }, { - "x": 320.9079999999999, + "x": 320.908, "y": 208 }, { - "x": 285.45399999999995, + "x": 285.454, "y": 172 }, { @@ -5225,7 +5225,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 190 }, { @@ -5233,7 +5233,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 190 }, { @@ -5313,126 +5313,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 193.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 199 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 203.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 206.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 208 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 206.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 203.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 199 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 193.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 186.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 181 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 176.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 173.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 172 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 173.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 176.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 181 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 186.874 }, { @@ -5440,7 +5440,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 597 }, @@ -5469,11 +5469,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -5534,36 +5534,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -5578,11 +5578,11 @@ } }, { - "x": 356.36199999999985, + "x": 356.362, "y": 208 }, { - "x": 320.9079999999999, + "x": 320.908, "y": 172 }, { @@ -5600,7 +5600,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 190 }, { @@ -5608,7 +5608,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 190 }, { @@ -5688,126 +5688,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 193.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 199 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 203.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 206.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 208 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 206.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 203.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 199 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 193.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 186.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 181 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 176.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 173.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 172 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 173.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 176.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 181 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 186.874 }, { @@ -5815,7 +5815,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 639 }, @@ -5844,11 +5844,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -5909,36 +5909,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -5953,11 +5953,11 @@ } }, { - "x": 391.8159999999998, + "x": 391.816, "y": 208 }, { - "x": 356.36199999999985, + "x": 356.362, "y": 172 }, { @@ -5975,7 +5975,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 190 }, { @@ -5983,7 +5983,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 190 }, { @@ -6063,126 +6063,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 193.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 199 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 203.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 206.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 208 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 206.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 203.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 199 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 193.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 186.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 181 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 176.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 173.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 172 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 173.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 176.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 181 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 186.874 }, { @@ -6190,7 +6190,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 681 }, @@ -6219,11 +6219,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -6284,36 +6284,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -6328,11 +6328,11 @@ } }, { - "x": 427.26999999999975, + "x": 427.27, "y": 208 }, { - "x": 391.8159999999998, + "x": 391.816, "y": 172 }, { @@ -6350,7 +6350,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 190 }, { @@ -6358,7 +6358,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 190 }, { @@ -6438,126 +6438,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 193.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 199 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 203.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 206.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 208 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 206.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 203.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 199 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 193.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 186.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 181 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 176.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 173.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 172 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 173.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 176.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 181 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 186.874 }, { @@ -6565,7 +6565,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 723 }, @@ -6594,11 +6594,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -6659,36 +6659,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -6703,11 +6703,11 @@ } }, { - "x": 285.45399999999995, + "x": 285.454, "y": 244 }, { - "x": 249.99999999999997, + "x": 250, "y": 208 }, { @@ -6813,7 +6813,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 229.126 }, { @@ -6827,7 +6827,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 239.789 }, { @@ -6848,7 +6848,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 242.914 }, { @@ -6862,28 +6862,28 @@ "body": null, "index": 7, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 235 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 229.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 222.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 217 }, { @@ -6897,7 +6897,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 209.086 }, { @@ -6918,7 +6918,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 212.211 }, { @@ -6932,7 +6932,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 222.874 }, { @@ -6940,7 +6940,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 765 }, @@ -6969,11 +6969,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -7034,36 +7034,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -7078,11 +7078,11 @@ } }, { - "x": 320.9079999999999, + "x": 320.908, "y": 244 }, { - "x": 285.45399999999995, + "x": 285.454, "y": 208 }, { @@ -7100,7 +7100,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 226 }, { @@ -7108,7 +7108,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 226 }, { @@ -7188,126 +7188,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 229.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 235 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 239.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 242.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 244 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 242.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 239.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 235 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 229.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 222.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 217 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 212.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 209.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 208 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 209.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 212.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 217 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 222.874 }, { @@ -7315,7 +7315,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 807 }, @@ -7344,11 +7344,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -7409,36 +7409,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -7453,11 +7453,11 @@ } }, { - "x": 356.36199999999985, + "x": 356.362, "y": 244 }, { - "x": 320.9079999999999, + "x": 320.908, "y": 208 }, { @@ -7475,7 +7475,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 226 }, { @@ -7483,7 +7483,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 226 }, { @@ -7563,126 +7563,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 229.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 235 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 239.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 242.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 244 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 242.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 239.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 235 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 229.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 222.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 217 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 212.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 209.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 208 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 209.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 212.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 217 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 222.874 }, { @@ -7690,7 +7690,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 849 }, @@ -7719,11 +7719,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -7784,36 +7784,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -7828,11 +7828,11 @@ } }, { - "x": 391.8159999999998, + "x": 391.816, "y": 244 }, { - "x": 356.36199999999985, + "x": 356.362, "y": 208 }, { @@ -7850,7 +7850,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 226 }, { @@ -7858,7 +7858,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 226 }, { @@ -7938,126 +7938,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 229.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 235 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 239.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 242.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 244 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 242.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 239.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 235 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 229.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 222.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 217 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 212.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 209.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 208 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 209.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 212.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 217 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 222.874 }, { @@ -8065,7 +8065,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 891 }, @@ -8094,11 +8094,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -8159,36 +8159,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -8203,11 +8203,11 @@ } }, { - "x": 427.26999999999975, + "x": 427.27, "y": 244 }, { - "x": 391.8159999999998, + "x": 391.816, "y": 208 }, { @@ -8225,7 +8225,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 226 }, { @@ -8233,7 +8233,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 226 }, { @@ -8313,126 +8313,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 229.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 235 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 239.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 242.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 244 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 242.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 239.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 235 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 229.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 222.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 217 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 212.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 209.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 208 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 209.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 212.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 217 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 222.874 }, { @@ -8440,7 +8440,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 933 }, @@ -8469,11 +8469,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -8534,36 +8534,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -8578,11 +8578,11 @@ } }, { - "x": 285.45399999999995, + "x": 285.454, "y": 280 }, { - "x": 249.99999999999997, + "x": 250, "y": 244 }, { @@ -8688,7 +8688,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 265.126 }, { @@ -8702,7 +8702,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 275.789 }, { @@ -8723,7 +8723,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 278.914 }, { @@ -8737,28 +8737,28 @@ "body": null, "index": 7, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 271 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 265.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.99999999999997, + "x": 250, "y": 258.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.13899999999998, + "x": 252.139, "y": 253 }, { @@ -8772,7 +8772,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 261.57099999999997, + "x": 261.571, "y": 245.086 }, { @@ -8793,7 +8793,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 279.29699999999997, + "x": 279.297, "y": 248.211 }, { @@ -8807,7 +8807,7 @@ "body": null, "index": 17, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 258.874 }, { @@ -8815,7 +8815,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 975 }, @@ -8844,11 +8844,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -8909,36 +8909,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -8953,11 +8953,11 @@ } }, { - "x": 320.9079999999999, + "x": 320.908, "y": 280 }, { - "x": 285.45399999999995, + "x": 285.454, "y": 244 }, { @@ -8975,7 +8975,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 262 }, { @@ -8983,7 +8983,7 @@ "y": 0 }, { - "x": 303.1809999999999, + "x": 303.181, "y": 262 }, { @@ -9063,126 +9063,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 265.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 271 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 275.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 278.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 280 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 278.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 275.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 271 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 265.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.45399999999995, + "x": 285.454, "y": 258.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5929999999999, + "x": 287.593, "y": 253 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.61099999999993, + "x": 291.611, "y": 248.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.0249999999999, + "x": 297.025, "y": 245.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.1809999999999, + "x": 303.181, "y": 244 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.33699999999993, + "x": 309.337, "y": 245.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.7509999999999, + "x": 314.751, "y": 248.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.76899999999995, + "x": 318.769, "y": 253 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 258.874 }, { @@ -9190,7 +9190,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 1017 }, @@ -9219,11 +9219,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -9284,36 +9284,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -9328,11 +9328,11 @@ } }, { - "x": 356.36199999999985, + "x": 356.362, "y": 280 }, { - "x": 320.9079999999999, + "x": 320.908, "y": 244 }, { @@ -9350,7 +9350,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 262 }, { @@ -9358,7 +9358,7 @@ "y": 0 }, { - "x": 338.6349999999999, + "x": 338.635, "y": 262 }, { @@ -9438,126 +9438,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 265.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 271 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 275.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 278.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 280 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 278.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 275.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 271 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 265.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.9079999999999, + "x": 320.908, "y": 258.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.04699999999985, + "x": 323.047, "y": 253 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.0649999999999, + "x": 327.065, "y": 248.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.47899999999987, + "x": 332.479, "y": 245.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.6349999999999, + "x": 338.635, "y": 244 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.7909999999999, + "x": 344.791, "y": 245.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.20499999999987, + "x": 350.205, "y": 248.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.2229999999999, + "x": 354.223, "y": 253 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 258.874 }, { @@ -9565,7 +9565,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 1059 }, @@ -9594,11 +9594,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -9659,36 +9659,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -9703,11 +9703,11 @@ } }, { - "x": 391.8159999999998, + "x": 391.816, "y": 280 }, { - "x": 356.36199999999985, + "x": 356.362, "y": 244 }, { @@ -9725,7 +9725,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 262 }, { @@ -9733,7 +9733,7 @@ "y": 0 }, { - "x": 374.0889999999998, + "x": 374.089, "y": 262 }, { @@ -9813,126 +9813,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 265.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 271 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 275.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 278.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 280 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 278.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 275.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 271 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 265.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.36199999999985, + "x": 356.362, "y": 258.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5009999999998, + "x": 358.501, "y": 253 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.51899999999983, + "x": 362.519, "y": 248.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9329999999998, + "x": 367.933, "y": 245.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.0889999999998, + "x": 374.089, "y": 244 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.24499999999983, + "x": 380.245, "y": 245.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6589999999998, + "x": 385.659, "y": 248.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.67699999999985, + "x": 389.677, "y": 253 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 258.874 }, { @@ -9940,7 +9940,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 1101 }, @@ -9969,11 +9969,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -10034,36 +10034,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -10078,11 +10078,11 @@ } }, { - "x": 427.26999999999975, + "x": 427.27, "y": 280 }, { - "x": 391.8159999999998, + "x": 391.816, "y": 244 }, { @@ -10100,7 +10100,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 262 }, { @@ -10108,7 +10108,7 @@ "y": 0 }, { - "x": 409.5429999999998, + "x": 409.543, "y": 262 }, { @@ -10188,126 +10188,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 265.126 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 271 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 275.789 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 278.914 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 280 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 278.914 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 275.789 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 271 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 265.126 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.8159999999998, + "x": 391.816, "y": 258.874 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.95499999999976, + "x": 393.955, "y": 253 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.9729999999998, + "x": 397.973, "y": 248.211 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.3869999999998, + "x": 403.387, "y": 245.086 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.5429999999998, + "x": 409.543, "y": 244 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.6989999999998, + "x": 415.699, "y": 245.086 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.1129999999998, + "x": 421.113, "y": 248.211 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.1309999999998, + "x": 425.131, "y": 253 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.26999999999975, + "x": 427.27, "y": 258.874 }, [], @@ -10537,7 +10537,7 @@ "bodyB": null, "id": 30, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1145 }, @@ -10571,7 +10571,7 @@ "bodyB": null, "id": 31, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1149 }, @@ -10605,7 +10605,7 @@ "bodyB": null, "id": 32, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1153 }, @@ -10639,7 +10639,7 @@ "bodyB": null, "id": 33, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1157 }, @@ -10673,7 +10673,7 @@ "bodyB": null, "id": 34, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1161 }, @@ -10707,7 +10707,7 @@ "bodyB": null, "id": 35, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1165 }, @@ -10741,7 +10741,7 @@ "bodyB": null, "id": 36, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1169 }, @@ -10775,7 +10775,7 @@ "bodyB": null, "id": 37, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1173 }, @@ -10843,7 +10843,7 @@ "bodyB": null, "id": 39, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1181 }, @@ -10911,7 +10911,7 @@ "bodyB": null, "id": 41, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1189 }, @@ -10945,7 +10945,7 @@ "bodyB": null, "id": 42, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1193 }, @@ -11013,7 +11013,7 @@ "bodyB": null, "id": 44, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1201 }, @@ -11047,7 +11047,7 @@ "bodyB": null, "id": 45, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1205 }, @@ -11115,7 +11115,7 @@ "bodyB": null, "id": 47, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1213 }, @@ -11149,7 +11149,7 @@ "bodyB": null, "id": 48, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1217 }, @@ -11217,7 +11217,7 @@ "bodyB": null, "id": 50, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1225 }, @@ -11251,7 +11251,7 @@ "bodyB": null, "id": 51, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1229 }, @@ -11285,7 +11285,7 @@ "bodyB": null, "id": 52, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1233 }, @@ -11319,7 +11319,7 @@ "bodyB": null, "id": 53, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1237 }, @@ -11353,7 +11353,7 @@ "bodyB": null, "id": 54, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1241 }, @@ -11421,7 +11421,7 @@ "bodyB": null, "id": 56, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1249 }, @@ -11489,7 +11489,7 @@ "bodyB": null, "id": 58, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1257 }, @@ -11523,7 +11523,7 @@ "bodyB": null, "id": 59, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1261 }, @@ -11591,7 +11591,7 @@ "bodyB": null, "id": 61, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1269 }, @@ -11625,7 +11625,7 @@ "bodyB": null, "id": 62, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1273 }, @@ -11693,7 +11693,7 @@ "bodyB": null, "id": 64, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1281 }, @@ -11727,7 +11727,7 @@ "bodyB": null, "id": 65, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1285 }, @@ -11795,7 +11795,7 @@ "bodyB": null, "id": 67, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1293 }, @@ -11829,7 +11829,7 @@ "bodyB": null, "id": 68, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1297 }, @@ -11863,7 +11863,7 @@ "bodyB": null, "id": 69, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1301 }, @@ -11897,7 +11897,7 @@ "bodyB": null, "id": 70, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1305 }, @@ -11931,7 +11931,7 @@ "bodyB": null, "id": 71, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1309 }, @@ -11999,7 +11999,7 @@ "bodyB": null, "id": 73, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1317 }, @@ -12067,7 +12067,7 @@ "bodyB": null, "id": 75, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1325 }, @@ -12101,7 +12101,7 @@ "bodyB": null, "id": 76, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1329 }, @@ -12169,7 +12169,7 @@ "bodyB": null, "id": 78, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1337 }, @@ -12203,7 +12203,7 @@ "bodyB": null, "id": 79, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1341 }, @@ -12271,7 +12271,7 @@ "bodyB": null, "id": 81, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1349 }, @@ -12305,7 +12305,7 @@ "bodyB": null, "id": 82, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1353 }, @@ -12373,7 +12373,7 @@ "bodyB": null, "id": 84, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1361 }, @@ -12407,7 +12407,7 @@ "bodyB": null, "id": 85, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1365 }, @@ -12441,7 +12441,7 @@ "bodyB": null, "id": 86, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1369 }, @@ -12475,7 +12475,7 @@ "bodyB": null, "id": 87, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1373 }, @@ -12509,7 +12509,7 @@ "bodyB": null, "id": 88, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1377 }, @@ -12577,7 +12577,7 @@ "bodyB": null, "id": 90, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1385 }, @@ -12645,7 +12645,7 @@ "bodyB": null, "id": 92, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1393 }, @@ -12679,7 +12679,7 @@ "bodyB": null, "id": 93, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1397 }, @@ -12747,7 +12747,7 @@ "bodyB": null, "id": 95, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1405 }, @@ -12781,7 +12781,7 @@ "bodyB": null, "id": 96, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1409 }, @@ -12849,7 +12849,7 @@ "bodyB": null, "id": 98, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1417 }, @@ -12883,7 +12883,7 @@ "bodyB": null, "id": 99, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1421 }, @@ -12951,7 +12951,7 @@ "bodyB": null, "id": 101, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1429 }, @@ -13072,7 +13072,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1435 }, @@ -13101,11 +13101,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -13163,32 +13163,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -13314,7 +13314,7 @@ "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, + "x": 277.184, "y": 323.046 }, { @@ -13322,7 +13322,7 @@ "index": 2, "isInternal": false, "x": 273.046, - "y": 327.18399999999997 + "y": 327.184 }, { "body": null, @@ -13343,13 +13343,13 @@ "index": 5, "isInternal": false, "x": 256.378, - "y": 327.18399999999997 + "y": 327.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, + "x": 252.24, "y": 323.046 }, { @@ -13370,7 +13370,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, + "x": 252.24, "y": 306.378 }, { @@ -13405,7 +13405,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, + "x": 277.184, "y": 306.378 }, { @@ -13420,7 +13420,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1474 }, @@ -13449,11 +13449,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -13511,32 +13511,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -13551,7 +13551,7 @@ } }, { - "x": 308.84799999999996, + "x": 308.848, "y": 329.424 }, { @@ -13573,7 +13573,7 @@ "y": 0 }, { - "x": 294.13599999999997, + "x": 294.136, "y": 314.712 }, { @@ -13581,7 +13581,7 @@ "y": 0 }, { - "x": 294.13599999999997, + "x": 294.136, "y": 314.712 }, { @@ -13655,28 +13655,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 317.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, + "x": 306.608, "y": 323.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 327.18399999999997 + "x": 302.47, + "y": 327.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, + "x": 297.062, "y": 329.424 }, { @@ -13690,8 +13690,8 @@ "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 327.18399999999997 + "x": 285.802, + "y": 327.184 }, { "body": null, @@ -13725,7 +13725,7 @@ "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, + "x": 285.802, "y": 302.24 }, { @@ -13739,28 +13739,28 @@ "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, + "x": 297.062, "y": 300 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, + "x": 302.47, "y": 302.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, + "x": 306.608, "y": 306.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 311.786 }, { @@ -13768,7 +13768,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1513 }, @@ -13797,11 +13797,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -13859,32 +13859,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -13899,11 +13899,11 @@ } }, { - "x": 338.27199999999993, + "x": 338.272, "y": 329.424 }, { - "x": 308.84799999999996, + "x": 308.848, "y": 300 }, { @@ -13921,7 +13921,7 @@ "y": 0 }, { - "x": 323.55999999999995, + "x": 323.56, "y": 314.712 }, { @@ -13929,7 +13929,7 @@ "y": 0 }, { - "x": 323.55999999999995, + "x": 323.56, "y": 314.712 }, { @@ -14003,112 +14003,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 317.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, + "x": 336.032, "y": 323.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 327.18399999999997 + "x": 331.894, + "y": 327.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, + "x": 326.486, "y": 329.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, + "x": 320.634, "y": 329.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 327.18399999999997 + "x": 315.226, + "y": 327.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, + "x": 311.088, "y": 323.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 317.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 311.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, + "x": 311.088, "y": 306.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, + "x": 315.226, "y": 302.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, + "x": 320.634, "y": 300 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, + "x": 326.486, "y": 300 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, + "x": 331.894, "y": 302.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, + "x": 336.032, "y": 306.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 311.786 }, { @@ -14116,7 +14116,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1552 }, @@ -14145,11 +14145,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -14207,32 +14207,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -14247,11 +14247,11 @@ } }, { - "x": 367.6959999999999, + "x": 367.696, "y": 329.424 }, { - "x": 338.27199999999993, + "x": 338.272, "y": 300 }, { @@ -14269,7 +14269,7 @@ "y": 0 }, { - "x": 352.9839999999999, + "x": 352.984, "y": 314.712 }, { @@ -14277,7 +14277,7 @@ "y": 0 }, { - "x": 352.9839999999999, + "x": 352.984, "y": 314.712 }, { @@ -14351,112 +14351,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 317.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, + "x": 365.456, "y": 323.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 327.18399999999997 + "x": 361.318, + "y": 327.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, + "x": 355.91, "y": 329.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, + "x": 350.058, "y": 329.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 327.18399999999997 + "x": 344.65, + "y": 327.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, + "x": 340.512, "y": 323.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 317.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 311.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, + "x": 340.512, "y": 306.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, + "x": 344.65, "y": 302.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, + "x": 350.058, "y": 300 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, + "x": 355.91, "y": 300 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, + "x": 361.318, "y": 302.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, + "x": 365.456, "y": 306.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 311.786 }, { @@ -14464,7 +14464,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1591 }, @@ -14493,11 +14493,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -14555,32 +14555,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -14595,11 +14595,11 @@ } }, { - "x": 397.1199999999999, + "x": 397.12, "y": 329.424 }, { - "x": 367.6959999999999, + "x": 367.696, "y": 300 }, { @@ -14617,7 +14617,7 @@ "y": 0 }, { - "x": 382.4079999999999, + "x": 382.408, "y": 314.712 }, { @@ -14625,7 +14625,7 @@ "y": 0 }, { - "x": 382.4079999999999, + "x": 382.408, "y": 314.712 }, { @@ -14699,112 +14699,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 317.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, + "x": 394.88, "y": 323.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 327.18399999999997 + "x": 390.742, + "y": 327.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, + "x": 385.334, "y": 329.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, + "x": 379.482, "y": 329.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 327.18399999999997 + "x": 374.074, + "y": 327.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, + "x": 369.936, "y": 323.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 317.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 311.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, + "x": 369.936, "y": 306.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, + "x": 374.074, "y": 302.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, + "x": 379.482, "y": 300 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, + "x": 385.334, "y": 300 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, + "x": 390.742, "y": 302.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, + "x": 394.88, "y": 306.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 311.786 }, { @@ -14812,7 +14812,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1630 }, @@ -14841,11 +14841,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -14903,32 +14903,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -14943,11 +14943,11 @@ } }, { - "x": 426.54399999999987, + "x": 426.544, "y": 329.424 }, { - "x": 397.1199999999999, + "x": 397.12, "y": 300 }, { @@ -14965,7 +14965,7 @@ "y": 0 }, { - "x": 411.8319999999999, + "x": 411.832, "y": 314.712 }, { @@ -14973,7 +14973,7 @@ "y": 0 }, { - "x": 411.8319999999999, + "x": 411.832, "y": 314.712 }, { @@ -15047,112 +15047,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 426.54399999999987, + "x": 426.544, "y": 317.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 424.30399999999986, + "x": 424.304, "y": 323.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 420.1659999999999, - "y": 327.18399999999997 + "x": 420.166, + "y": 327.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 414.75799999999987, + "x": 414.758, "y": 329.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 408.9059999999999, + "x": 408.906, "y": 329.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.4979999999999, - "y": 327.18399999999997 + "x": 403.498, + "y": 327.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 399.3599999999999, + "x": 399.36, "y": 323.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 317.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 311.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 399.3599999999999, + "x": 399.36, "y": 306.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 403.4979999999999, + "x": 403.498, "y": 302.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 408.9059999999999, + "x": 408.906, "y": 300 }, { "body": null, "index": 12, "isInternal": false, - "x": 414.75799999999987, + "x": 414.758, "y": 300 }, { "body": null, "index": 13, "isInternal": false, - "x": 420.1659999999999, + "x": 420.166, "y": 302.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 424.30399999999986, + "x": 424.304, "y": 306.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 426.54399999999987, + "x": 426.544, "y": 311.786 }, { @@ -15160,7 +15160,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1669 }, @@ -15189,11 +15189,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -15251,32 +15251,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -15291,11 +15291,11 @@ } }, { - "x": 455.96799999999985, + "x": 455.968, "y": 329.424 }, { - "x": 426.54399999999987, + "x": 426.544, "y": 300 }, { @@ -15313,7 +15313,7 @@ "y": 0 }, { - "x": 441.25599999999986, + "x": 441.256, "y": 314.712 }, { @@ -15321,7 +15321,7 @@ "y": 0 }, { - "x": 441.25599999999986, + "x": 441.256, "y": 314.712 }, { @@ -15395,112 +15395,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 455.96799999999985, + "x": 455.968, "y": 317.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.72799999999984, + "x": 453.728, "y": 323.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.58999999999986, - "y": 327.18399999999997 + "x": 449.59, + "y": 327.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 444.18199999999985, + "x": 444.182, "y": 329.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 438.32999999999987, + "x": 438.33, "y": 329.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 432.92199999999985, - "y": 327.18399999999997 + "x": 432.922, + "y": 327.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 428.7839999999999, + "x": 428.784, "y": 323.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 426.54399999999987, + "x": 426.544, "y": 317.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 426.54399999999987, + "x": 426.544, "y": 311.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 428.7839999999999, + "x": 428.784, "y": 306.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 432.92199999999985, + "x": 432.922, "y": 302.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 438.32999999999987, + "x": 438.33, "y": 300 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.18199999999985, + "x": 444.182, "y": 300 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.58999999999986, + "x": 449.59, "y": 302.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 453.72799999999984, + "x": 453.728, "y": 306.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 455.96799999999985, + "x": 455.968, "y": 311.786 }, { @@ -15508,7 +15508,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1708 }, @@ -15537,11 +15537,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -15599,32 +15599,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -15639,11 +15639,11 @@ } }, { - "x": 485.3919999999998, + "x": 485.392, "y": 329.424 }, { - "x": 455.96799999999985, + "x": 455.968, "y": 300 }, { @@ -15661,7 +15661,7 @@ "y": 0 }, { - "x": 470.67999999999984, + "x": 470.68, "y": 314.712 }, { @@ -15669,7 +15669,7 @@ "y": 0 }, { - "x": 470.67999999999984, + "x": 470.68, "y": 314.712 }, { @@ -15743,112 +15743,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 485.3919999999998, + "x": 485.392, "y": 317.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 483.1519999999998, + "x": 483.152, "y": 323.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.01399999999984, - "y": 327.18399999999997 + "x": 479.014, + "y": 327.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 473.6059999999998, + "x": 473.606, "y": 329.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 467.75399999999985, + "x": 467.754, "y": 329.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.34599999999983, - "y": 327.18399999999997 + "x": 462.346, + "y": 327.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 458.20799999999986, + "x": 458.208, "y": 323.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 455.96799999999985, + "x": 455.968, "y": 317.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.96799999999985, + "x": 455.968, "y": 311.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.20799999999986, + "x": 458.208, "y": 306.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 462.34599999999983, + "x": 462.346, "y": 302.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 467.75399999999985, + "x": 467.754, "y": 300 }, { "body": null, "index": 12, "isInternal": false, - "x": 473.6059999999998, + "x": 473.606, "y": 300 }, { "body": null, "index": 13, "isInternal": false, - "x": 479.01399999999984, + "x": 479.014, "y": 302.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 483.1519999999998, + "x": 483.152, "y": 306.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 485.3919999999998, + "x": 485.392, "y": 311.786 }, { @@ -15856,7 +15856,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1747 }, @@ -15885,11 +15885,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -15947,32 +15947,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -15988,7 +15988,7 @@ }, { "x": 279.424, - "y": 358.84799999999996 + "y": 358.848 }, { "x": 250, @@ -16010,7 +16010,7 @@ }, { "x": 264.712, - "y": 344.13599999999997 + "y": 344.136 }, { "x": 0, @@ -16018,7 +16018,7 @@ }, { "x": 264.712, - "y": 344.13599999999997 + "y": 344.136 }, { "fillStyle": "#FF6B6B", @@ -16092,56 +16092,56 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 347.06199999999995 + "y": 347.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 352.46999999999997 + "x": 277.184, + "y": 352.47 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 356.60799999999995 + "y": 356.608 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 358.84799999999996 + "y": 358.848 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 358.84799999999996 + "y": 358.848 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 356.60799999999995 + "y": 356.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 352.46999999999997 + "x": 252.24, + "y": 352.47 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 347.06199999999995 + "y": 347.062 }, { "body": null, @@ -16154,8 +16154,8 @@ "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 335.80199999999996 + "x": 252.24, + "y": 335.802 }, { "body": null, @@ -16189,8 +16189,8 @@ "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 335.80199999999996 + "x": 277.184, + "y": 335.802 }, { "body": null, @@ -16204,7 +16204,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1786 }, @@ -16233,11 +16233,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -16295,32 +16295,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -16335,8 +16335,8 @@ } }, { - "x": 308.84799999999996, - "y": 358.84799999999996 + "x": 308.848, + "y": 358.848 }, { "x": 279.424, @@ -16357,16 +16357,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 344.13599999999997 + "x": 294.136, + "y": 344.136 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 344.13599999999997 + "x": 294.136, + "y": 344.136 }, { "fillStyle": "#C44D58", @@ -16439,57 +16439,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 347.06199999999995 + "x": 308.848, + "y": 347.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 352.46999999999997 + "x": 306.608, + "y": 352.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 356.60799999999995 + "x": 302.47, + "y": 356.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 358.84799999999996 + "x": 297.062, + "y": 358.848 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 358.84799999999996 + "y": 358.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 356.60799999999995 + "x": 285.802, + "y": 356.608 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 352.46999999999997 + "y": 352.47 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 347.06199999999995 + "y": 347.062 }, { "body": null, @@ -16503,13 +16503,13 @@ "index": 9, "isInternal": false, "x": 281.664, - "y": 335.80199999999996 + "y": 335.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, + "x": 285.802, "y": 331.664 }, { @@ -16523,28 +16523,28 @@ "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, + "x": 297.062, "y": 329.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, + "x": 302.47, "y": 331.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 335.80199999999996 + "x": 306.608, + "y": 335.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 341.21 }, { @@ -16552,7 +16552,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1825 }, @@ -16581,11 +16581,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -16643,32 +16643,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -16683,11 +16683,11 @@ } }, { - "x": 338.27199999999993, - "y": 358.84799999999996 + "x": 338.272, + "y": 358.848 }, { - "x": 308.84799999999996, + "x": 308.848, "y": 329.424 }, { @@ -16705,16 +16705,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 344.13599999999997 + "x": 323.56, + "y": 344.136 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 344.13599999999997 + "x": 323.56, + "y": 344.136 }, { "fillStyle": "#4ECDC4", @@ -16787,112 +16787,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 347.06199999999995 + "x": 338.272, + "y": 347.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 352.46999999999997 + "x": 336.032, + "y": 352.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 356.60799999999995 + "x": 331.894, + "y": 356.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 358.84799999999996 + "x": 326.486, + "y": 358.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 358.84799999999996 + "x": 320.634, + "y": 358.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 356.60799999999995 + "x": 315.226, + "y": 356.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 352.46999999999997 + "x": 311.088, + "y": 352.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 347.06199999999995 + "x": 308.848, + "y": 347.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 341.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 335.80199999999996 + "x": 311.088, + "y": 335.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, + "x": 315.226, "y": 331.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, + "x": 320.634, "y": 329.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, + "x": 326.486, "y": 329.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, + "x": 331.894, "y": 331.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 335.80199999999996 + "x": 336.032, + "y": 335.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 341.21 }, { @@ -16900,7 +16900,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1864 }, @@ -16929,11 +16929,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -16991,32 +16991,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -17031,11 +17031,11 @@ } }, { - "x": 367.6959999999999, - "y": 358.84799999999996 + "x": 367.696, + "y": 358.848 }, { - "x": 338.27199999999993, + "x": 338.272, "y": 329.424 }, { @@ -17053,16 +17053,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 344.13599999999997 + "x": 352.984, + "y": 344.136 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 344.13599999999997 + "x": 352.984, + "y": 344.136 }, { "fillStyle": "#4ECDC4", @@ -17135,112 +17135,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 347.06199999999995 + "x": 367.696, + "y": 347.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 352.46999999999997 + "x": 365.456, + "y": 352.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 356.60799999999995 + "x": 361.318, + "y": 356.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 358.84799999999996 + "x": 355.91, + "y": 358.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 358.84799999999996 + "x": 350.058, + "y": 358.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 356.60799999999995 + "x": 344.65, + "y": 356.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 352.46999999999997 + "x": 340.512, + "y": 352.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 347.06199999999995 + "x": 338.272, + "y": 347.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 341.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 335.80199999999996 + "x": 340.512, + "y": 335.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, + "x": 344.65, "y": 331.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, + "x": 350.058, "y": 329.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, + "x": 355.91, "y": 329.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, + "x": 361.318, "y": 331.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 335.80199999999996 + "x": 365.456, + "y": 335.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 341.21 }, { @@ -17248,7 +17248,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1903 }, @@ -17277,11 +17277,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -17339,32 +17339,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -17379,11 +17379,11 @@ } }, { - "x": 397.1199999999999, - "y": 358.84799999999996 + "x": 397.12, + "y": 358.848 }, { - "x": 367.6959999999999, + "x": 367.696, "y": 329.424 }, { @@ -17401,16 +17401,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 344.13599999999997 + "x": 382.408, + "y": 344.136 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 344.13599999999997 + "x": 382.408, + "y": 344.136 }, { "fillStyle": "#556270", @@ -17483,112 +17483,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 347.06199999999995 + "x": 397.12, + "y": 347.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 352.46999999999997 + "x": 394.88, + "y": 352.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 356.60799999999995 + "x": 390.742, + "y": 356.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 358.84799999999996 + "x": 385.334, + "y": 358.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 358.84799999999996 + "x": 379.482, + "y": 358.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 356.60799999999995 + "x": 374.074, + "y": 356.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 352.46999999999997 + "x": 369.936, + "y": 352.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 347.06199999999995 + "x": 367.696, + "y": 347.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 341.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 335.80199999999996 + "x": 369.936, + "y": 335.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, + "x": 374.074, "y": 331.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, + "x": 379.482, "y": 329.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, + "x": 385.334, "y": 329.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, + "x": 390.742, "y": 331.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 335.80199999999996 + "x": 394.88, + "y": 335.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 341.21 }, { @@ -17596,7 +17596,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1942 }, @@ -17625,11 +17625,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -17687,32 +17687,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -17727,11 +17727,11 @@ } }, { - "x": 426.54399999999987, - "y": 358.84799999999996 + "x": 426.544, + "y": 358.848 }, { - "x": 397.1199999999999, + "x": 397.12, "y": 329.424 }, { @@ -17749,16 +17749,16 @@ "y": 0 }, { - "x": 411.8319999999999, - "y": 344.13599999999997 + "x": 411.832, + "y": 344.136 }, { "x": 0, "y": 0 }, { - "x": 411.8319999999999, - "y": 344.13599999999997 + "x": 411.832, + "y": 344.136 }, { "fillStyle": "#C44D58", @@ -17831,112 +17831,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 426.54399999999987, - "y": 347.06199999999995 + "x": 426.544, + "y": 347.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 424.30399999999986, - "y": 352.46999999999997 + "x": 424.304, + "y": 352.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 420.1659999999999, - "y": 356.60799999999995 + "x": 420.166, + "y": 356.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 414.75799999999987, - "y": 358.84799999999996 + "x": 414.758, + "y": 358.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 408.9059999999999, - "y": 358.84799999999996 + "x": 408.906, + "y": 358.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.4979999999999, - "y": 356.60799999999995 + "x": 403.498, + "y": 356.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 399.3599999999999, - "y": 352.46999999999997 + "x": 399.36, + "y": 352.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 397.1199999999999, - "y": 347.06199999999995 + "x": 397.12, + "y": 347.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 397.1199999999999, + "x": 397.12, "y": 341.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 399.3599999999999, - "y": 335.80199999999996 + "x": 399.36, + "y": 335.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 403.4979999999999, + "x": 403.498, "y": 331.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 408.9059999999999, + "x": 408.906, "y": 329.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 414.75799999999987, + "x": 414.758, "y": 329.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 420.1659999999999, + "x": 420.166, "y": 331.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 424.30399999999986, - "y": 335.80199999999996 + "x": 424.304, + "y": 335.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 426.54399999999987, + "x": 426.544, "y": 341.21 }, { @@ -17944,7 +17944,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1981 }, @@ -17973,11 +17973,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -18035,32 +18035,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -18075,11 +18075,11 @@ } }, { - "x": 455.96799999999985, - "y": 358.84799999999996 + "x": 455.968, + "y": 358.848 }, { - "x": 426.54399999999987, + "x": 426.544, "y": 329.424 }, { @@ -18097,16 +18097,16 @@ "y": 0 }, { - "x": 441.25599999999986, - "y": 344.13599999999997 + "x": 441.256, + "y": 344.136 }, { "x": 0, "y": 0 }, { - "x": 441.25599999999986, - "y": 344.13599999999997 + "x": 441.256, + "y": 344.136 }, { "fillStyle": "#FF6B6B", @@ -18179,112 +18179,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 455.96799999999985, - "y": 347.06199999999995 + "x": 455.968, + "y": 347.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.72799999999984, - "y": 352.46999999999997 + "x": 453.728, + "y": 352.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.58999999999986, - "y": 356.60799999999995 + "x": 449.59, + "y": 356.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 444.18199999999985, - "y": 358.84799999999996 + "x": 444.182, + "y": 358.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 438.32999999999987, - "y": 358.84799999999996 + "x": 438.33, + "y": 358.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 432.92199999999985, - "y": 356.60799999999995 + "x": 432.922, + "y": 356.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 428.7839999999999, - "y": 352.46999999999997 + "x": 428.784, + "y": 352.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 426.54399999999987, - "y": 347.06199999999995 + "x": 426.544, + "y": 347.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 426.54399999999987, + "x": 426.544, "y": 341.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 428.7839999999999, - "y": 335.80199999999996 + "x": 428.784, + "y": 335.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 432.92199999999985, + "x": 432.922, "y": 331.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 438.32999999999987, + "x": 438.33, "y": 329.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.18199999999985, + "x": 444.182, "y": 329.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.58999999999986, + "x": 449.59, "y": 331.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 453.72799999999984, - "y": 335.80199999999996 + "x": 453.728, + "y": 335.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 455.96799999999985, + "x": 455.968, "y": 341.21 }, { @@ -18292,7 +18292,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2020 }, @@ -18321,11 +18321,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -18383,32 +18383,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -18423,11 +18423,11 @@ } }, { - "x": 485.3919999999998, - "y": 358.84799999999996 + "x": 485.392, + "y": 358.848 }, { - "x": 455.96799999999985, + "x": 455.968, "y": 329.424 }, { @@ -18445,16 +18445,16 @@ "y": 0 }, { - "x": 470.67999999999984, - "y": 344.13599999999997 + "x": 470.68, + "y": 344.136 }, { "x": 0, "y": 0 }, { - "x": 470.67999999999984, - "y": 344.13599999999997 + "x": 470.68, + "y": 344.136 }, { "fillStyle": "#FF6B6B", @@ -18527,112 +18527,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 485.3919999999998, - "y": 347.06199999999995 + "x": 485.392, + "y": 347.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 483.1519999999998, - "y": 352.46999999999997 + "x": 483.152, + "y": 352.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.01399999999984, - "y": 356.60799999999995 + "x": 479.014, + "y": 356.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 473.6059999999998, - "y": 358.84799999999996 + "x": 473.606, + "y": 358.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 467.75399999999985, - "y": 358.84799999999996 + "x": 467.754, + "y": 358.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.34599999999983, - "y": 356.60799999999995 + "x": 462.346, + "y": 356.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 458.20799999999986, - "y": 352.46999999999997 + "x": 458.208, + "y": 352.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 455.96799999999985, - "y": 347.06199999999995 + "x": 455.968, + "y": 347.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.96799999999985, + "x": 455.968, "y": 341.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.20799999999986, - "y": 335.80199999999996 + "x": 458.208, + "y": 335.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 462.34599999999983, + "x": 462.346, "y": 331.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 467.75399999999985, + "x": 467.754, "y": 329.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 473.6059999999998, + "x": 473.606, "y": 329.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 479.01399999999984, + "x": 479.014, "y": 331.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 483.1519999999998, - "y": 335.80199999999996 + "x": 483.152, + "y": 335.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 485.3919999999998, + "x": 485.392, "y": 341.21 }, { @@ -18640,7 +18640,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2059 }, @@ -18669,11 +18669,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -18731,32 +18731,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -18772,11 +18772,11 @@ }, { "x": 279.424, - "y": 388.27199999999993 + "y": 388.272 }, { "x": 250, - "y": 358.84799999999996 + "y": 358.848 }, { "category": 1, @@ -18794,7 +18794,7 @@ }, { "x": 264.712, - "y": 373.55999999999995 + "y": 373.56 }, { "x": 0, @@ -18802,7 +18802,7 @@ }, { "x": 264.712, - "y": 373.55999999999995 + "y": 373.56 }, { "fillStyle": "#C7F464", @@ -18876,119 +18876,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 376.48599999999993 + "y": 376.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 381.89399999999995 + "x": 277.184, + "y": 381.894 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 386.0319999999999 + "y": 386.032 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 388.27199999999993 + "y": 388.272 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 388.27199999999993 + "y": 388.272 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 386.0319999999999 + "y": 386.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 381.89399999999995 + "x": 252.24, + "y": 381.894 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 376.48599999999993 + "y": 376.486 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 370.63399999999996 + "y": 370.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 365.22599999999994 + "x": 252.24, + "y": 365.226 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 361.08799999999997 + "y": 361.088 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 358.84799999999996 + "y": 358.848 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 358.84799999999996 + "y": 358.848 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 361.08799999999997 + "y": 361.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 365.22599999999994 + "x": 277.184, + "y": 365.226 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 370.63399999999996 + "y": 370.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2098 }, @@ -19017,11 +19017,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -19079,32 +19079,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -19119,12 +19119,12 @@ } }, { - "x": 308.84799999999996, - "y": 388.27199999999993 + "x": 308.848, + "y": 388.272 }, { "x": 279.424, - "y": 358.84799999999996 + "y": 358.848 }, { "category": 1, @@ -19141,16 +19141,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 373.55999999999995 + "x": 294.136, + "y": 373.56 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 373.55999999999995 + "x": 294.136, + "y": 373.56 }, { "fillStyle": "#556270", @@ -19223,120 +19223,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 376.48599999999993 + "x": 308.848, + "y": 376.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 381.89399999999995 + "x": 306.608, + "y": 381.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 386.0319999999999 + "x": 302.47, + "y": 386.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 388.27199999999993 + "x": 297.062, + "y": 388.272 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 388.27199999999993 + "y": 388.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 386.0319999999999 + "x": 285.802, + "y": 386.032 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 381.89399999999995 + "y": 381.894 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 376.48599999999993 + "y": 376.486 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 370.63399999999996 + "y": 370.634 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 365.22599999999994 + "y": 365.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 361.08799999999997 + "x": 285.802, + "y": 361.088 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 358.84799999999996 + "y": 358.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 358.84799999999996 + "x": 297.062, + "y": 358.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 361.08799999999997 + "x": 302.47, + "y": 361.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 365.22599999999994 + "x": 306.608, + "y": 365.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 370.63399999999996 + "x": 308.848, + "y": 370.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2137 }, @@ -19365,11 +19365,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -19427,32 +19427,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -19467,12 +19467,12 @@ } }, { - "x": 338.27199999999993, - "y": 388.27199999999993 + "x": 338.272, + "y": 388.272 }, { - "x": 308.84799999999996, - "y": 358.84799999999996 + "x": 308.848, + "y": 358.848 }, { "category": 1, @@ -19489,16 +19489,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 373.55999999999995 + "x": 323.56, + "y": 373.56 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 373.55999999999995 + "x": 323.56, + "y": 373.56 }, { "fillStyle": "#556270", @@ -19571,120 +19571,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 376.48599999999993 + "x": 338.272, + "y": 376.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 381.89399999999995 + "x": 336.032, + "y": 381.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 386.0319999999999 + "x": 331.894, + "y": 386.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 388.27199999999993 + "x": 326.486, + "y": 388.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 388.27199999999993 + "x": 320.634, + "y": 388.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 386.0319999999999 + "x": 315.226, + "y": 386.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 381.89399999999995 + "x": 311.088, + "y": 381.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 376.48599999999993 + "x": 308.848, + "y": 376.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 370.63399999999996 + "x": 308.848, + "y": 370.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 365.22599999999994 + "x": 311.088, + "y": 365.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 361.08799999999997 + "x": 315.226, + "y": 361.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 358.84799999999996 + "x": 320.634, + "y": 358.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 358.84799999999996 + "x": 326.486, + "y": 358.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 361.08799999999997 + "x": 331.894, + "y": 361.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 365.22599999999994 + "x": 336.032, + "y": 365.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 370.63399999999996 + "x": 338.272, + "y": 370.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2176 }, @@ -19713,11 +19713,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -19775,32 +19775,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -19815,12 +19815,12 @@ } }, { - "x": 367.6959999999999, - "y": 388.27199999999993 + "x": 367.696, + "y": 388.272 }, { - "x": 338.27199999999993, - "y": 358.84799999999996 + "x": 338.272, + "y": 358.848 }, { "category": 1, @@ -19837,16 +19837,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 373.55999999999995 + "x": 352.984, + "y": 373.56 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 373.55999999999995 + "x": 352.984, + "y": 373.56 }, { "fillStyle": "#FF6B6B", @@ -19919,120 +19919,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 376.48599999999993 + "x": 367.696, + "y": 376.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 381.89399999999995 + "x": 365.456, + "y": 381.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 386.0319999999999 + "x": 361.318, + "y": 386.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 388.27199999999993 + "x": 355.91, + "y": 388.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 388.27199999999993 + "x": 350.058, + "y": 388.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 386.0319999999999 + "x": 344.65, + "y": 386.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 381.89399999999995 + "x": 340.512, + "y": 381.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 376.48599999999993 + "x": 338.272, + "y": 376.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 370.63399999999996 + "x": 338.272, + "y": 370.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 365.22599999999994 + "x": 340.512, + "y": 365.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 361.08799999999997 + "x": 344.65, + "y": 361.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 358.84799999999996 + "x": 350.058, + "y": 358.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 358.84799999999996 + "x": 355.91, + "y": 358.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 361.08799999999997 + "x": 361.318, + "y": 361.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 365.22599999999994 + "x": 365.456, + "y": 365.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 370.63399999999996 + "x": 367.696, + "y": 370.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2215 }, @@ -20061,11 +20061,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -20123,32 +20123,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -20163,12 +20163,12 @@ } }, { - "x": 397.1199999999999, - "y": 388.27199999999993 + "x": 397.12, + "y": 388.272 }, { - "x": 367.6959999999999, - "y": 358.84799999999996 + "x": 367.696, + "y": 358.848 }, { "category": 1, @@ -20185,16 +20185,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 373.55999999999995 + "x": 382.408, + "y": 373.56 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 373.55999999999995 + "x": 382.408, + "y": 373.56 }, { "fillStyle": "#556270", @@ -20267,120 +20267,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 376.48599999999993 + "x": 397.12, + "y": 376.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 381.89399999999995 + "x": 394.88, + "y": 381.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 386.0319999999999 + "x": 390.742, + "y": 386.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 388.27199999999993 + "x": 385.334, + "y": 388.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 388.27199999999993 + "x": 379.482, + "y": 388.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 386.0319999999999 + "x": 374.074, + "y": 386.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 381.89399999999995 + "x": 369.936, + "y": 381.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 376.48599999999993 + "x": 367.696, + "y": 376.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 370.63399999999996 + "x": 367.696, + "y": 370.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 365.22599999999994 + "x": 369.936, + "y": 365.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 361.08799999999997 + "x": 374.074, + "y": 361.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 358.84799999999996 + "x": 379.482, + "y": 358.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 358.84799999999996 + "x": 385.334, + "y": 358.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 361.08799999999997 + "x": 390.742, + "y": 361.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 365.22599999999994 + "x": 394.88, + "y": 365.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 370.63399999999996 + "x": 397.12, + "y": 370.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2254 }, @@ -20409,11 +20409,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -20471,32 +20471,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -20511,12 +20511,12 @@ } }, { - "x": 426.54399999999987, - "y": 388.27199999999993 + "x": 426.544, + "y": 388.272 }, { - "x": 397.1199999999999, - "y": 358.84799999999996 + "x": 397.12, + "y": 358.848 }, { "category": 1, @@ -20533,16 +20533,16 @@ "y": 0 }, { - "x": 411.8319999999999, - "y": 373.55999999999995 + "x": 411.832, + "y": 373.56 }, { "x": 0, "y": 0 }, { - "x": 411.8319999999999, - "y": 373.55999999999995 + "x": 411.832, + "y": 373.56 }, { "fillStyle": "#C44D58", @@ -20615,120 +20615,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 426.54399999999987, - "y": 376.48599999999993 + "x": 426.544, + "y": 376.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 424.30399999999986, - "y": 381.89399999999995 + "x": 424.304, + "y": 381.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 420.1659999999999, - "y": 386.0319999999999 + "x": 420.166, + "y": 386.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 414.75799999999987, - "y": 388.27199999999993 + "x": 414.758, + "y": 388.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 408.9059999999999, - "y": 388.27199999999993 + "x": 408.906, + "y": 388.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.4979999999999, - "y": 386.0319999999999 + "x": 403.498, + "y": 386.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 399.3599999999999, - "y": 381.89399999999995 + "x": 399.36, + "y": 381.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 397.1199999999999, - "y": 376.48599999999993 + "x": 397.12, + "y": 376.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 397.1199999999999, - "y": 370.63399999999996 + "x": 397.12, + "y": 370.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 399.3599999999999, - "y": 365.22599999999994 + "x": 399.36, + "y": 365.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 403.4979999999999, - "y": 361.08799999999997 + "x": 403.498, + "y": 361.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 408.9059999999999, - "y": 358.84799999999996 + "x": 408.906, + "y": 358.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 414.75799999999987, - "y": 358.84799999999996 + "x": 414.758, + "y": 358.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 420.1659999999999, - "y": 361.08799999999997 + "x": 420.166, + "y": 361.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 424.30399999999986, - "y": 365.22599999999994 + "x": 424.304, + "y": 365.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 426.54399999999987, - "y": 370.63399999999996 + "x": 426.544, + "y": 370.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2293 }, @@ -20757,11 +20757,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -20819,32 +20819,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -20859,12 +20859,12 @@ } }, { - "x": 455.96799999999985, - "y": 388.27199999999993 + "x": 455.968, + "y": 388.272 }, { - "x": 426.54399999999987, - "y": 358.84799999999996 + "x": 426.544, + "y": 358.848 }, { "category": 1, @@ -20881,16 +20881,16 @@ "y": 0 }, { - "x": 441.25599999999986, - "y": 373.55999999999995 + "x": 441.256, + "y": 373.56 }, { "x": 0, "y": 0 }, { - "x": 441.25599999999986, - "y": 373.55999999999995 + "x": 441.256, + "y": 373.56 }, { "fillStyle": "#C7F464", @@ -20963,120 +20963,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 455.96799999999985, - "y": 376.48599999999993 + "x": 455.968, + "y": 376.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.72799999999984, - "y": 381.89399999999995 + "x": 453.728, + "y": 381.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.58999999999986, - "y": 386.0319999999999 + "x": 449.59, + "y": 386.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 444.18199999999985, - "y": 388.27199999999993 + "x": 444.182, + "y": 388.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 438.32999999999987, - "y": 388.27199999999993 + "x": 438.33, + "y": 388.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 432.92199999999985, - "y": 386.0319999999999 + "x": 432.922, + "y": 386.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 428.7839999999999, - "y": 381.89399999999995 + "x": 428.784, + "y": 381.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 426.54399999999987, - "y": 376.48599999999993 + "x": 426.544, + "y": 376.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 426.54399999999987, - "y": 370.63399999999996 + "x": 426.544, + "y": 370.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 428.7839999999999, - "y": 365.22599999999994 + "x": 428.784, + "y": 365.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 432.92199999999985, - "y": 361.08799999999997 + "x": 432.922, + "y": 361.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 438.32999999999987, - "y": 358.84799999999996 + "x": 438.33, + "y": 358.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.18199999999985, - "y": 358.84799999999996 + "x": 444.182, + "y": 358.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.58999999999986, - "y": 361.08799999999997 + "x": 449.59, + "y": 361.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 453.72799999999984, - "y": 365.22599999999994 + "x": 453.728, + "y": 365.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 455.96799999999985, - "y": 370.63399999999996 + "x": 455.968, + "y": 370.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2332 }, @@ -21105,11 +21105,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -21167,32 +21167,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -21207,12 +21207,12 @@ } }, { - "x": 485.3919999999998, - "y": 388.27199999999993 + "x": 485.392, + "y": 388.272 }, { - "x": 455.96799999999985, - "y": 358.84799999999996 + "x": 455.968, + "y": 358.848 }, { "category": 1, @@ -21229,16 +21229,16 @@ "y": 0 }, { - "x": 470.67999999999984, - "y": 373.55999999999995 + "x": 470.68, + "y": 373.56 }, { "x": 0, "y": 0 }, { - "x": 470.67999999999984, - "y": 373.55999999999995 + "x": 470.68, + "y": 373.56 }, { "fillStyle": "#556270", @@ -21311,113 +21311,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 485.3919999999998, - "y": 376.48599999999993 + "x": 485.392, + "y": 376.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 483.1519999999998, - "y": 381.89399999999995 + "x": 483.152, + "y": 381.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.01399999999984, - "y": 386.0319999999999 + "x": 479.014, + "y": 386.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 473.6059999999998, - "y": 388.27199999999993 + "x": 473.606, + "y": 388.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 467.75399999999985, - "y": 388.27199999999993 + "x": 467.754, + "y": 388.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.34599999999983, - "y": 386.0319999999999 + "x": 462.346, + "y": 386.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 458.20799999999986, - "y": 381.89399999999995 + "x": 458.208, + "y": 381.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 455.96799999999985, - "y": 376.48599999999993 + "x": 455.968, + "y": 376.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.96799999999985, - "y": 370.63399999999996 + "x": 455.968, + "y": 370.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.20799999999986, - "y": 365.22599999999994 + "x": 458.208, + "y": 365.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 462.34599999999983, - "y": 361.08799999999997 + "x": 462.346, + "y": 361.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 467.75399999999985, - "y": 358.84799999999996 + "x": 467.754, + "y": 358.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 473.6059999999998, - "y": 358.84799999999996 + "x": 473.606, + "y": 358.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 479.01399999999984, - "y": 361.08799999999997 + "x": 479.014, + "y": 361.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 483.1519999999998, - "y": 365.22599999999994 + "x": 483.152, + "y": 365.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 485.3919999999998, - "y": 370.63399999999996 + "x": 485.392, + "y": 370.634 }, [], [ @@ -21625,7 +21625,7 @@ "bodyB": null, "id": 127, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2373 }, @@ -21659,7 +21659,7 @@ "bodyB": null, "id": 128, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2377 }, @@ -21693,7 +21693,7 @@ "bodyB": null, "id": 129, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2381 }, @@ -21727,7 +21727,7 @@ "bodyB": null, "id": 130, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2385 }, @@ -21761,7 +21761,7 @@ "bodyB": null, "id": 131, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2389 }, @@ -21795,7 +21795,7 @@ "bodyB": null, "id": 132, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2393 }, @@ -21829,7 +21829,7 @@ "bodyB": null, "id": 133, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2397 }, @@ -21863,7 +21863,7 @@ "bodyB": null, "id": 134, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2401 }, @@ -21897,7 +21897,7 @@ "bodyB": null, "id": 135, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2405 }, @@ -21931,7 +21931,7 @@ "bodyB": null, "id": 136, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2409 }, @@ -21965,7 +21965,7 @@ "bodyB": null, "id": 137, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2413 }, @@ -21999,7 +21999,7 @@ "bodyB": null, "id": 138, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2417 }, @@ -22033,7 +22033,7 @@ "bodyB": null, "id": 139, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2421 }, @@ -22067,7 +22067,7 @@ "bodyB": null, "id": 140, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2425 }, @@ -22101,7 +22101,7 @@ "bodyB": null, "id": 141, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2429 }, @@ -22135,7 +22135,7 @@ "bodyB": null, "id": 142, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2433 }, @@ -22169,7 +22169,7 @@ "bodyB": null, "id": 143, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2437 }, @@ -22203,7 +22203,7 @@ "bodyB": null, "id": 144, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2441 }, @@ -22237,7 +22237,7 @@ "bodyB": null, "id": 145, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2445 }, @@ -22271,7 +22271,7 @@ "bodyB": null, "id": 146, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2449 }, @@ -22305,7 +22305,7 @@ "bodyB": null, "id": 147, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2453 }, @@ -22339,7 +22339,7 @@ "bodyB": null, "id": 148, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2457 }, @@ -22373,7 +22373,7 @@ "bodyB": null, "id": 149, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2461 }, @@ -22407,7 +22407,7 @@ "bodyB": null, "id": 150, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2465 }, @@ -22441,7 +22441,7 @@ "bodyB": null, "id": 151, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2469 }, @@ -22475,7 +22475,7 @@ "bodyB": null, "id": 152, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2473 }, @@ -22509,7 +22509,7 @@ "bodyB": null, "id": 153, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2477 }, @@ -22543,7 +22543,7 @@ "bodyB": null, "id": 154, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2481 }, @@ -22577,7 +22577,7 @@ "bodyB": null, "id": 155, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2485 }, @@ -22611,7 +22611,7 @@ "bodyB": null, "id": 156, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2489 }, @@ -22645,7 +22645,7 @@ "bodyB": null, "id": 157, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2493 }, @@ -22679,7 +22679,7 @@ "bodyB": null, "id": 158, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2497 }, @@ -22713,7 +22713,7 @@ "bodyB": null, "id": 159, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2501 }, @@ -22747,7 +22747,7 @@ "bodyB": null, "id": 160, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2505 }, @@ -22781,7 +22781,7 @@ "bodyB": null, "id": 161, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2509 }, @@ -22815,7 +22815,7 @@ "bodyB": null, "id": 162, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2513 }, @@ -22849,7 +22849,7 @@ "bodyB": null, "id": 163, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2517 }, @@ -22883,7 +22883,7 @@ "bodyB": null, "id": 164, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2521 }, @@ -22917,7 +22917,7 @@ "bodyB": null, "id": 165, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2525 }, @@ -22951,7 +22951,7 @@ "bodyB": null, "id": 166, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2529 }, @@ -22985,7 +22985,7 @@ "bodyB": null, "id": 167, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2533 }, @@ -23019,7 +23019,7 @@ "bodyB": null, "id": 168, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2537 }, @@ -23053,7 +23053,7 @@ "bodyB": null, "id": 169, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2541 }, @@ -23087,7 +23087,7 @@ "bodyB": null, "id": 170, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2545 }, @@ -23121,7 +23121,7 @@ "bodyB": null, "id": 171, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2549 }, @@ -23155,7 +23155,7 @@ "bodyB": null, "id": 172, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2553 }, @@ -23189,7 +23189,7 @@ "bodyB": null, "id": 173, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2557 }, @@ -23223,7 +23223,7 @@ "bodyB": null, "id": 174, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2561 }, @@ -23257,7 +23257,7 @@ "bodyB": null, "id": 175, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2565 }, @@ -23291,7 +23291,7 @@ "bodyB": null, "id": 176, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2569 }, @@ -23325,7 +23325,7 @@ "bodyB": null, "id": 177, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2573 }, @@ -23359,7 +23359,7 @@ "bodyB": null, "id": 178, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2577 }, @@ -23393,7 +23393,7 @@ "bodyB": null, "id": 179, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2581 }, @@ -23427,7 +23427,7 @@ "bodyB": null, "id": 180, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2585 }, @@ -23461,7 +23461,7 @@ "bodyB": null, "id": 181, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2589 }, @@ -23495,7 +23495,7 @@ "bodyB": null, "id": 182, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2593 }, @@ -23529,7 +23529,7 @@ "bodyB": null, "id": 183, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2597 }, @@ -23563,7 +23563,7 @@ "bodyB": null, "id": 184, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2601 }, @@ -23597,7 +23597,7 @@ "bodyB": null, "id": 185, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2605 }, @@ -23631,7 +23631,7 @@ "bodyB": null, "id": 186, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2609 }, @@ -23665,7 +23665,7 @@ "bodyB": null, "id": 187, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2613 }, @@ -23699,7 +23699,7 @@ "bodyB": null, "id": 188, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2617 }, @@ -23733,7 +23733,7 @@ "bodyB": null, "id": 189, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2621 }, @@ -23767,7 +23767,7 @@ "bodyB": null, "id": 190, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2625 }, @@ -23801,7 +23801,7 @@ "bodyB": null, "id": 191, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2629 }, @@ -23898,7 +23898,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2635 }, @@ -23927,11 +23927,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -23989,32 +23989,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -24140,7 +24140,7 @@ "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, + "x": 277.184, "y": 423.046 }, { @@ -24148,7 +24148,7 @@ "index": 2, "isInternal": false, "x": 273.046, - "y": 427.18399999999997 + "y": 427.184 }, { "body": null, @@ -24169,13 +24169,13 @@ "index": 5, "isInternal": false, "x": 256.378, - "y": 427.18399999999997 + "y": 427.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, + "x": 252.24, "y": 423.046 }, { @@ -24196,7 +24196,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, + "x": 252.24, "y": 406.378 }, { @@ -24231,7 +24231,7 @@ "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, + "x": 277.184, "y": 406.378 }, { @@ -24246,7 +24246,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2674 }, @@ -24275,11 +24275,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -24337,32 +24337,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -24377,7 +24377,7 @@ } }, { - "x": 308.84799999999996, + "x": 308.848, "y": 429.424 }, { @@ -24399,7 +24399,7 @@ "y": 0 }, { - "x": 294.13599999999997, + "x": 294.136, "y": 414.712 }, { @@ -24407,7 +24407,7 @@ "y": 0 }, { - "x": 294.13599999999997, + "x": 294.136, "y": 414.712 }, { @@ -24481,28 +24481,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 417.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, + "x": 306.608, "y": 423.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 427.18399999999997 + "x": 302.47, + "y": 427.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, + "x": 297.062, "y": 429.424 }, { @@ -24516,8 +24516,8 @@ "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 427.18399999999997 + "x": 285.802, + "y": 427.184 }, { "body": null, @@ -24551,7 +24551,7 @@ "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, + "x": 285.802, "y": 402.24 }, { @@ -24565,28 +24565,28 @@ "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, + "x": 297.062, "y": 400 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, + "x": 302.47, "y": 402.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, + "x": 306.608, "y": 406.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 411.786 }, { @@ -24594,7 +24594,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2713 }, @@ -24623,11 +24623,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -24685,32 +24685,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -24725,11 +24725,11 @@ } }, { - "x": 338.27199999999993, + "x": 338.272, "y": 429.424 }, { - "x": 308.84799999999996, + "x": 308.848, "y": 400 }, { @@ -24747,7 +24747,7 @@ "y": 0 }, { - "x": 323.55999999999995, + "x": 323.56, "y": 414.712 }, { @@ -24755,7 +24755,7 @@ "y": 0 }, { - "x": 323.55999999999995, + "x": 323.56, "y": 414.712 }, { @@ -24829,112 +24829,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 417.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, + "x": 336.032, "y": 423.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 427.18399999999997 + "x": 331.894, + "y": 427.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, + "x": 326.486, "y": 429.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, + "x": 320.634, "y": 429.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 427.18399999999997 + "x": 315.226, + "y": 427.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, + "x": 311.088, "y": 423.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 417.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 411.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, + "x": 311.088, "y": 406.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, + "x": 315.226, "y": 402.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, + "x": 320.634, "y": 400 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, + "x": 326.486, "y": 400 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, + "x": 331.894, "y": 402.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, + "x": 336.032, "y": 406.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 411.786 }, { @@ -24942,7 +24942,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2752 }, @@ -24971,11 +24971,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -25033,32 +25033,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -25073,11 +25073,11 @@ } }, { - "x": 367.6959999999999, + "x": 367.696, "y": 429.424 }, { - "x": 338.27199999999993, + "x": 338.272, "y": 400 }, { @@ -25095,7 +25095,7 @@ "y": 0 }, { - "x": 352.9839999999999, + "x": 352.984, "y": 414.712 }, { @@ -25103,7 +25103,7 @@ "y": 0 }, { - "x": 352.9839999999999, + "x": 352.984, "y": 414.712 }, { @@ -25177,112 +25177,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 417.638 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, + "x": 365.456, "y": 423.046 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 427.18399999999997 + "x": 361.318, + "y": 427.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, + "x": 355.91, "y": 429.424 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, + "x": 350.058, "y": 429.424 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 427.18399999999997 + "x": 344.65, + "y": 427.184 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, + "x": 340.512, "y": 423.046 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 417.638 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 411.786 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, + "x": 340.512, "y": 406.378 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, + "x": 344.65, "y": 402.24 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, + "x": 350.058, "y": 400 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, + "x": 355.91, "y": 400 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, + "x": 361.318, "y": 402.24 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, + "x": 365.456, "y": 406.378 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 411.786 }, { @@ -25290,7 +25290,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2791 }, @@ -25319,11 +25319,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -25381,32 +25381,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -25422,7 +25422,7 @@ }, { "x": 279.424, - "y": 458.84799999999996 + "y": 458.848 }, { "x": 250, @@ -25444,7 +25444,7 @@ }, { "x": 264.712, - "y": 444.13599999999997 + "y": 444.136 }, { "x": 0, @@ -25452,7 +25452,7 @@ }, { "x": 264.712, - "y": 444.13599999999997 + "y": 444.136 }, { "fillStyle": "#4ECDC4", @@ -25526,56 +25526,56 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 447.06199999999995 + "y": 447.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 452.46999999999997 + "x": 277.184, + "y": 452.47 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 456.60799999999995 + "y": 456.608 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 458.84799999999996 + "y": 458.848 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 458.84799999999996 + "y": 458.848 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 456.60799999999995 + "y": 456.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 452.46999999999997 + "x": 252.24, + "y": 452.47 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 447.06199999999995 + "y": 447.062 }, { "body": null, @@ -25588,8 +25588,8 @@ "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 435.80199999999996 + "x": 252.24, + "y": 435.802 }, { "body": null, @@ -25623,8 +25623,8 @@ "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 435.80199999999996 + "x": 277.184, + "y": 435.802 }, { "body": null, @@ -25638,7 +25638,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2830 }, @@ -25667,11 +25667,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -25729,32 +25729,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -25769,8 +25769,8 @@ } }, { - "x": 308.84799999999996, - "y": 458.84799999999996 + "x": 308.848, + "y": 458.848 }, { "x": 279.424, @@ -25791,16 +25791,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 444.13599999999997 + "x": 294.136, + "y": 444.136 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 444.13599999999997 + "x": 294.136, + "y": 444.136 }, { "fillStyle": "#4ECDC4", @@ -25873,57 +25873,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 447.06199999999995 + "x": 308.848, + "y": 447.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 452.46999999999997 + "x": 306.608, + "y": 452.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 456.60799999999995 + "x": 302.47, + "y": 456.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 458.84799999999996 + "x": 297.062, + "y": 458.848 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 458.84799999999996 + "y": 458.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 456.60799999999995 + "x": 285.802, + "y": 456.608 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 452.46999999999997 + "y": 452.47 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 447.06199999999995 + "y": 447.062 }, { "body": null, @@ -25937,13 +25937,13 @@ "index": 9, "isInternal": false, "x": 281.664, - "y": 435.80199999999996 + "y": 435.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, + "x": 285.802, "y": 431.664 }, { @@ -25957,28 +25957,28 @@ "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, + "x": 297.062, "y": 429.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, + "x": 302.47, "y": 431.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 435.80199999999996 + "x": 306.608, + "y": 435.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 441.21 }, { @@ -25986,7 +25986,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2869 }, @@ -26015,11 +26015,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -26077,32 +26077,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -26117,11 +26117,11 @@ } }, { - "x": 338.27199999999993, - "y": 458.84799999999996 + "x": 338.272, + "y": 458.848 }, { - "x": 308.84799999999996, + "x": 308.848, "y": 429.424 }, { @@ -26139,16 +26139,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 444.13599999999997 + "x": 323.56, + "y": 444.136 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 444.13599999999997 + "x": 323.56, + "y": 444.136 }, { "fillStyle": "#C7F464", @@ -26221,112 +26221,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 447.06199999999995 + "x": 338.272, + "y": 447.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 452.46999999999997 + "x": 336.032, + "y": 452.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 456.60799999999995 + "x": 331.894, + "y": 456.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 458.84799999999996 + "x": 326.486, + "y": 458.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 458.84799999999996 + "x": 320.634, + "y": 458.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 456.60799999999995 + "x": 315.226, + "y": 456.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 452.46999999999997 + "x": 311.088, + "y": 452.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 447.06199999999995 + "x": 308.848, + "y": 447.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, + "x": 308.848, "y": 441.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 435.80199999999996 + "x": 311.088, + "y": 435.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, + "x": 315.226, "y": 431.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, + "x": 320.634, "y": 429.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, + "x": 326.486, "y": 429.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, + "x": 331.894, "y": 431.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 435.80199999999996 + "x": 336.032, + "y": 435.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 441.21 }, { @@ -26334,7 +26334,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2908 }, @@ -26363,11 +26363,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -26425,32 +26425,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -26465,11 +26465,11 @@ } }, { - "x": 367.6959999999999, - "y": 458.84799999999996 + "x": 367.696, + "y": 458.848 }, { - "x": 338.27199999999993, + "x": 338.272, "y": 429.424 }, { @@ -26487,16 +26487,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 444.13599999999997 + "x": 352.984, + "y": 444.136 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 444.13599999999997 + "x": 352.984, + "y": 444.136 }, { "fillStyle": "#C44D58", @@ -26569,112 +26569,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 447.06199999999995 + "x": 367.696, + "y": 447.062 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 452.46999999999997 + "x": 365.456, + "y": 452.47 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 456.60799999999995 + "x": 361.318, + "y": 456.608 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 458.84799999999996 + "x": 355.91, + "y": 458.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 458.84799999999996 + "x": 350.058, + "y": 458.848 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 456.60799999999995 + "x": 344.65, + "y": 456.608 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 452.46999999999997 + "x": 340.512, + "y": 452.47 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 447.06199999999995 + "x": 338.272, + "y": 447.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, + "x": 338.272, "y": 441.21 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 435.80199999999996 + "x": 340.512, + "y": 435.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, + "x": 344.65, "y": 431.664 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, + "x": 350.058, "y": 429.424 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, + "x": 355.91, "y": 429.424 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, + "x": 361.318, "y": 431.664 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 435.80199999999996 + "x": 365.456, + "y": 435.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, + "x": 367.696, "y": 441.21 }, { @@ -26682,7 +26682,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2947 }, @@ -26711,11 +26711,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -26773,32 +26773,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -26814,11 +26814,11 @@ }, { "x": 279.424, - "y": 488.27199999999993 + "y": 488.272 }, { "x": 250, - "y": 458.84799999999996 + "y": 458.848 }, { "category": 1, @@ -26836,7 +26836,7 @@ }, { "x": 264.712, - "y": 473.55999999999995 + "y": 473.56 }, { "x": 0, @@ -26844,7 +26844,7 @@ }, { "x": 264.712, - "y": 473.55999999999995 + "y": 473.56 }, { "fillStyle": "#C7F464", @@ -26918,119 +26918,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 476.48599999999993 + "y": 476.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 481.89399999999995 + "x": 277.184, + "y": 481.894 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 486.0319999999999 + "y": 486.032 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 488.27199999999993 + "y": 488.272 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 488.27199999999993 + "y": 488.272 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 486.0319999999999 + "y": 486.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 481.89399999999995 + "x": 252.24, + "y": 481.894 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 476.48599999999993 + "y": 476.486 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 470.63399999999996 + "y": 470.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 465.22599999999994 + "x": 252.24, + "y": 465.226 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 461.08799999999997 + "y": 461.088 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 458.84799999999996 + "y": 458.848 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 458.84799999999996 + "y": 458.848 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 461.08799999999997 + "y": 461.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 465.22599999999994 + "x": 277.184, + "y": 465.226 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 470.63399999999996 + "y": 470.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2986 }, @@ -27059,11 +27059,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -27121,32 +27121,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -27161,12 +27161,12 @@ } }, { - "x": 308.84799999999996, - "y": 488.27199999999993 + "x": 308.848, + "y": 488.272 }, { "x": 279.424, - "y": 458.84799999999996 + "y": 458.848 }, { "category": 1, @@ -27183,16 +27183,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 473.55999999999995 + "x": 294.136, + "y": 473.56 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 473.55999999999995 + "x": 294.136, + "y": 473.56 }, { "fillStyle": "#C44D58", @@ -27265,120 +27265,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 476.48599999999993 + "x": 308.848, + "y": 476.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 481.89399999999995 + "x": 306.608, + "y": 481.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 486.0319999999999 + "x": 302.47, + "y": 486.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 488.27199999999993 + "x": 297.062, + "y": 488.272 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 488.27199999999993 + "y": 488.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 486.0319999999999 + "x": 285.802, + "y": 486.032 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 481.89399999999995 + "y": 481.894 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 476.48599999999993 + "y": 476.486 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 470.63399999999996 + "y": 470.634 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 465.22599999999994 + "y": 465.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 461.08799999999997 + "x": 285.802, + "y": 461.088 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 458.84799999999996 + "y": 458.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 458.84799999999996 + "x": 297.062, + "y": 458.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 461.08799999999997 + "x": 302.47, + "y": 461.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 465.22599999999994 + "x": 306.608, + "y": 465.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 470.63399999999996 + "x": 308.848, + "y": 470.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3025 }, @@ -27407,11 +27407,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -27469,32 +27469,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -27509,12 +27509,12 @@ } }, { - "x": 338.27199999999993, - "y": 488.27199999999993 + "x": 338.272, + "y": 488.272 }, { - "x": 308.84799999999996, - "y": 458.84799999999996 + "x": 308.848, + "y": 458.848 }, { "category": 1, @@ -27531,16 +27531,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 473.55999999999995 + "x": 323.56, + "y": 473.56 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 473.55999999999995 + "x": 323.56, + "y": 473.56 }, { "fillStyle": "#4ECDC4", @@ -27613,120 +27613,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 476.48599999999993 + "x": 338.272, + "y": 476.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 481.89399999999995 + "x": 336.032, + "y": 481.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 486.0319999999999 + "x": 331.894, + "y": 486.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 488.27199999999993 + "x": 326.486, + "y": 488.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 488.27199999999993 + "x": 320.634, + "y": 488.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 486.0319999999999 + "x": 315.226, + "y": 486.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 481.89399999999995 + "x": 311.088, + "y": 481.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 476.48599999999993 + "x": 308.848, + "y": 476.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 470.63399999999996 + "x": 308.848, + "y": 470.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 465.22599999999994 + "x": 311.088, + "y": 465.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 461.08799999999997 + "x": 315.226, + "y": 461.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 458.84799999999996 + "x": 320.634, + "y": 458.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 458.84799999999996 + "x": 326.486, + "y": 458.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 461.08799999999997 + "x": 331.894, + "y": 461.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 465.22599999999994 + "x": 336.032, + "y": 465.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 470.63399999999996 + "x": 338.272, + "y": 470.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3064 }, @@ -27755,11 +27755,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -27817,32 +27817,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -27857,12 +27857,12 @@ } }, { - "x": 367.6959999999999, - "y": 488.27199999999993 + "x": 367.696, + "y": 488.272 }, { - "x": 338.27199999999993, - "y": 458.84799999999996 + "x": 338.272, + "y": 458.848 }, { "category": 1, @@ -27879,16 +27879,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 473.55999999999995 + "x": 352.984, + "y": 473.56 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 473.55999999999995 + "x": 352.984, + "y": 473.56 }, { "fillStyle": "#C7F464", @@ -27961,120 +27961,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 476.48599999999993 + "x": 367.696, + "y": 476.486 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 481.89399999999995 + "x": 365.456, + "y": 481.894 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 486.0319999999999 + "x": 361.318, + "y": 486.032 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 488.27199999999993 + "x": 355.91, + "y": 488.272 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 488.27199999999993 + "x": 350.058, + "y": 488.272 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 486.0319999999999 + "x": 344.65, + "y": 486.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 481.89399999999995 + "x": 340.512, + "y": 481.894 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 476.48599999999993 + "x": 338.272, + "y": 476.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 470.63399999999996 + "x": 338.272, + "y": 470.634 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 465.22599999999994 + "x": 340.512, + "y": 465.226 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 461.08799999999997 + "x": 344.65, + "y": 461.088 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 458.84799999999996 + "x": 350.058, + "y": 458.848 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 458.84799999999996 + "x": 355.91, + "y": 458.848 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 461.08799999999997 + "x": 361.318, + "y": 461.088 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 465.22599999999994 + "x": 365.456, + "y": 465.226 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 470.63399999999996 + "x": 367.696, + "y": 470.634 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3103 }, @@ -28103,11 +28103,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -28165,32 +28165,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -28206,11 +28206,11 @@ }, { "x": 279.424, - "y": 517.6959999999999 + "y": 517.696 }, { "x": 250, - "y": 488.27199999999993 + "y": 488.272 }, { "category": 1, @@ -28228,7 +28228,7 @@ }, { "x": 264.712, - "y": 502.9839999999999 + "y": 502.984 }, { "x": 0, @@ -28236,7 +28236,7 @@ }, { "x": 264.712, - "y": 502.9839999999999 + "y": 502.984 }, { "fillStyle": "#FF6B6B", @@ -28310,119 +28310,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 505.9099999999999 + "y": 505.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 511.3179999999999 + "x": 277.184, + "y": 511.318 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 515.4559999999999 + "y": 515.456 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 517.6959999999999 + "y": 517.696 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 517.6959999999999 + "y": 517.696 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 515.4559999999999 + "y": 515.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 511.3179999999999 + "x": 252.24, + "y": 511.318 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 505.9099999999999 + "y": 505.91 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 500.05799999999994 + "y": 500.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 494.6499999999999 + "x": 252.24, + "y": 494.65 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 490.51199999999994 + "y": 490.512 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 488.27199999999993 + "y": 488.272 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 488.27199999999993 + "y": 488.272 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 490.51199999999994 + "y": 490.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 494.6499999999999 + "x": 277.184, + "y": 494.65 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 500.05799999999994 + "y": 500.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3142 }, @@ -28451,11 +28451,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -28513,32 +28513,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -28553,12 +28553,12 @@ } }, { - "x": 308.84799999999996, - "y": 517.6959999999999 + "x": 308.848, + "y": 517.696 }, { "x": 279.424, - "y": 488.27199999999993 + "y": 488.272 }, { "category": 1, @@ -28575,16 +28575,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 502.9839999999999 + "x": 294.136, + "y": 502.984 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 502.9839999999999 + "x": 294.136, + "y": 502.984 }, { "fillStyle": "#4ECDC4", @@ -28657,120 +28657,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 505.9099999999999 + "x": 308.848, + "y": 505.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 511.3179999999999 + "x": 306.608, + "y": 511.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 515.4559999999999 + "x": 302.47, + "y": 515.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 517.6959999999999 + "x": 297.062, + "y": 517.696 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 517.6959999999999 + "y": 517.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 515.4559999999999 + "x": 285.802, + "y": 515.456 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 511.3179999999999 + "y": 511.318 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 505.9099999999999 + "y": 505.91 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 500.05799999999994 + "y": 500.058 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 494.6499999999999 + "y": 494.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 490.51199999999994 + "x": 285.802, + "y": 490.512 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 488.27199999999993 + "y": 488.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 488.27199999999993 + "x": 297.062, + "y": 488.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 490.51199999999994 + "x": 302.47, + "y": 490.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 494.6499999999999 + "x": 306.608, + "y": 494.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 500.05799999999994 + "x": 308.848, + "y": 500.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3181 }, @@ -28799,11 +28799,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -28861,32 +28861,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -28901,12 +28901,12 @@ } }, { - "x": 338.27199999999993, - "y": 517.6959999999999 + "x": 338.272, + "y": 517.696 }, { - "x": 308.84799999999996, - "y": 488.27199999999993 + "x": 308.848, + "y": 488.272 }, { "category": 1, @@ -28923,16 +28923,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 502.9839999999999 + "x": 323.56, + "y": 502.984 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 502.9839999999999 + "x": 323.56, + "y": 502.984 }, { "fillStyle": "#4ECDC4", @@ -29005,120 +29005,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 505.9099999999999 + "x": 338.272, + "y": 505.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 511.3179999999999 + "x": 336.032, + "y": 511.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 515.4559999999999 + "x": 331.894, + "y": 515.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 517.6959999999999 + "x": 326.486, + "y": 517.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 517.6959999999999 + "x": 320.634, + "y": 517.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 515.4559999999999 + "x": 315.226, + "y": 515.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 511.3179999999999 + "x": 311.088, + "y": 511.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 505.9099999999999 + "x": 308.848, + "y": 505.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 500.05799999999994 + "x": 308.848, + "y": 500.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 494.6499999999999 + "x": 311.088, + "y": 494.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 490.51199999999994 + "x": 315.226, + "y": 490.512 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 488.27199999999993 + "x": 320.634, + "y": 488.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 488.27199999999993 + "x": 326.486, + "y": 488.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 490.51199999999994 + "x": 331.894, + "y": 490.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 494.6499999999999 + "x": 336.032, + "y": 494.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 500.05799999999994 + "x": 338.272, + "y": 500.058 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3220 }, @@ -29147,11 +29147,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -29209,32 +29209,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -29249,12 +29249,12 @@ } }, { - "x": 367.6959999999999, - "y": 517.6959999999999 + "x": 367.696, + "y": 517.696 }, { - "x": 338.27199999999993, - "y": 488.27199999999993 + "x": 338.272, + "y": 488.272 }, { "category": 1, @@ -29271,16 +29271,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 502.9839999999999 + "x": 352.984, + "y": 502.984 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 502.9839999999999 + "x": 352.984, + "y": 502.984 }, { "fillStyle": "#4ECDC4", @@ -29353,113 +29353,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 505.9099999999999 + "x": 367.696, + "y": 505.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 511.3179999999999 + "x": 365.456, + "y": 511.318 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 515.4559999999999 + "x": 361.318, + "y": 515.456 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 517.6959999999999 + "x": 355.91, + "y": 517.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 517.6959999999999 + "x": 350.058, + "y": 517.696 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 515.4559999999999 + "x": 344.65, + "y": 515.456 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 511.3179999999999 + "x": 340.512, + "y": 511.318 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 505.9099999999999 + "x": 338.272, + "y": 505.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 500.05799999999994 + "x": 338.272, + "y": 500.058 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 494.6499999999999 + "x": 340.512, + "y": 494.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 490.51199999999994 + "x": 344.65, + "y": 490.512 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 488.27199999999993 + "x": 350.058, + "y": 488.272 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 488.27199999999993 + "x": 355.91, + "y": 488.272 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 490.51199999999994 + "x": 361.318, + "y": 490.512 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 494.6499999999999 + "x": 365.456, + "y": 494.65 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 500.05799999999994 + "x": 367.696, + "y": 500.058 }, [], [ @@ -29598,7 +29598,7 @@ "bodyB": null, "id": 209, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3261 }, @@ -29632,7 +29632,7 @@ "bodyB": null, "id": 210, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3265 }, @@ -29666,7 +29666,7 @@ "bodyB": null, "id": 211, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3269 }, @@ -29700,7 +29700,7 @@ "bodyB": null, "id": 212, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3273 }, @@ -29734,7 +29734,7 @@ "bodyB": null, "id": 213, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3277 }, @@ -29768,7 +29768,7 @@ "bodyB": null, "id": 214, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3281 }, @@ -29802,7 +29802,7 @@ "bodyB": null, "id": 215, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3285 }, @@ -29836,7 +29836,7 @@ "bodyB": null, "id": 216, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3289 }, @@ -29870,7 +29870,7 @@ "bodyB": null, "id": 217, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3293 }, @@ -29904,7 +29904,7 @@ "bodyB": null, "id": 218, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3297 }, @@ -29938,7 +29938,7 @@ "bodyB": null, "id": 219, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3301 }, @@ -29972,7 +29972,7 @@ "bodyB": null, "id": 220, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3305 }, @@ -30006,7 +30006,7 @@ "bodyB": null, "id": 221, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3309 }, @@ -30040,7 +30040,7 @@ "bodyB": null, "id": 222, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3313 }, @@ -30074,7 +30074,7 @@ "bodyB": null, "id": 223, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3317 }, @@ -30108,7 +30108,7 @@ "bodyB": null, "id": 224, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3321 }, @@ -30142,7 +30142,7 @@ "bodyB": null, "id": 225, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3325 }, @@ -30176,7 +30176,7 @@ "bodyB": null, "id": 226, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3329 }, @@ -30210,7 +30210,7 @@ "bodyB": null, "id": 227, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3333 }, @@ -30244,7 +30244,7 @@ "bodyB": null, "id": 228, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3337 }, @@ -30278,7 +30278,7 @@ "bodyB": null, "id": 229, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3341 }, @@ -30312,7 +30312,7 @@ "bodyB": null, "id": 230, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3345 }, @@ -30346,7 +30346,7 @@ "bodyB": null, "id": 231, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3349 }, @@ -30380,7 +30380,7 @@ "bodyB": null, "id": 232, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3353 }, @@ -30414,7 +30414,7 @@ "bodyB": null, "id": 233, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3357 }, @@ -30448,7 +30448,7 @@ "bodyB": null, "id": 234, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3361 }, @@ -30482,7 +30482,7 @@ "bodyB": null, "id": 235, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3365 }, @@ -30516,7 +30516,7 @@ "bodyB": null, "id": 236, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3369 }, @@ -30550,7 +30550,7 @@ "bodyB": null, "id": 237, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3373 }, @@ -30584,7 +30584,7 @@ "bodyB": null, "id": 238, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3377 }, @@ -30618,7 +30618,7 @@ "bodyB": null, "id": 239, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3381 }, @@ -30652,7 +30652,7 @@ "bodyB": null, "id": 240, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3385 }, @@ -30686,7 +30686,7 @@ "bodyB": null, "id": 241, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3389 }, @@ -30720,7 +30720,7 @@ "bodyB": null, "id": 242, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3393 }, @@ -30754,7 +30754,7 @@ "bodyB": null, "id": 243, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3397 }, @@ -30788,7 +30788,7 @@ "bodyB": null, "id": 244, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3401 }, @@ -30822,7 +30822,7 @@ "bodyB": null, "id": 245, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3405 }, @@ -30856,7 +30856,7 @@ "bodyB": null, "id": 246, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3409 }, @@ -30890,7 +30890,7 @@ "bodyB": null, "id": 247, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3413 }, @@ -30924,7 +30924,7 @@ "bodyB": null, "id": 248, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3417 }, @@ -30958,7 +30958,7 @@ "bodyB": null, "id": 249, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3421 }, @@ -30992,7 +30992,7 @@ "bodyB": null, "id": 250, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3425 }, diff --git a/test/browser/refs/softBody/softBody-10.json b/test/browser/refs/softBody/softBody-10.json index 85c44c9e..d567a521 100644 --- a/test/browser/refs/softBody/softBody-10.json +++ b/test/browser/refs/softBody/softBody-10.json @@ -980,7 +980,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 97 }, @@ -1009,11 +1009,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -1035,7 +1035,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1077,36 +1077,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -1121,12 +1121,12 @@ } }, { - "x": 285.45399999999995, - "y": 153.73575476702575 + "x": 285.454, + "y": 153.73575 }, { - "x": 249.99999999999997, - "y": 117.73575476702575 + "x": 250, + "y": 117.73575 }, { "category": 1, @@ -1144,7 +1144,7 @@ }, { "x": 267.727, - "y": 135.73575476702575 + "y": 135.73575 }, { "x": 0, @@ -1152,7 +1152,7 @@ }, { "x": 267.727, - "y": 132.8284840519901 + "y": 132.82848 }, { "endCol": 5, @@ -1176,7 +1176,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -1238,134 +1238,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.45399999999995, - "y": 138.86175476702576 + "x": 285.454, + "y": 138.86175 }, { "body": null, "index": 1, "isInternal": false, "x": 283.315, - "y": 144.73575476702575 + "y": 144.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 279.29699999999997, - "y": 149.52475476702574 + "x": 279.297, + "y": 149.52475 }, { "body": null, "index": 3, "isInternal": false, "x": 273.883, - "y": 152.64975476702574 + "y": 152.64975 }, { "body": null, "index": 4, "isInternal": false, "x": 267.727, - "y": 153.73575476702575 + "y": 153.73575 }, { "body": null, "index": 5, "isInternal": false, - "x": 261.57099999999997, - "y": 152.64975476702574 + "x": 261.571, + "y": 152.64975 }, { "body": null, "index": 6, "isInternal": false, "x": 256.157, - "y": 149.52475476702574 + "y": 149.52475 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.13899999999998, - "y": 144.73575476702575 + "x": 252.139, + "y": 144.73575 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.99999999999997, - "y": 138.86175476702576 + "x": 250, + "y": 138.86175 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.99999999999997, - "y": 132.60975476702575 + "x": 250, + "y": 132.60975 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.13899999999998, - "y": 126.73575476702575 + "x": 252.139, + "y": 126.73575 }, { "body": null, "index": 11, "isInternal": false, "x": 256.157, - "y": 121.94675476702575 + "y": 121.94675 }, { "body": null, "index": 12, "isInternal": false, - "x": 261.57099999999997, - "y": 118.82175476702575 + "x": 261.571, + "y": 118.82175 }, { "body": null, "index": 13, "isInternal": false, "x": 267.727, - "y": 117.73575476702575 + "y": 117.73575 }, { "body": null, "index": 14, "isInternal": false, "x": 273.883, - "y": 118.82175476702575 + "y": 118.82175 }, { "body": null, "index": 15, "isInternal": false, - "x": 279.29699999999997, - "y": 121.94675476702575 + "x": 279.297, + "y": 121.94675 }, { "body": null, "index": 16, "isInternal": false, "x": 283.315, - "y": 126.73575476702575 + "y": 126.73575 }, { "body": null, "index": 17, "isInternal": false, - "x": 285.45399999999995, - "y": 132.60975476702575 + "x": 285.454, + "y": 132.60975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 140 }, @@ -1394,11 +1394,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -1420,7 +1420,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1462,36 +1462,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -1506,12 +1506,12 @@ } }, { - "x": 320.9079999999999, - "y": 153.73575476702575 + "x": 320.908, + "y": 153.73575 }, { - "x": 285.45399999999995, - "y": 117.73575476702575 + "x": 285.454, + "y": 117.73575 }, { "category": 1, @@ -1528,16 +1528,16 @@ "y": 0 }, { - "x": 303.1809999999999, - "y": 135.73575476702575 + "x": 303.181, + "y": 135.73575 }, { "x": 0, "y": 0 }, { - "x": 303.1809999999999, - "y": 132.8284840519901 + "x": 303.181, + "y": 132.82848 }, { "endCol": 6, @@ -1561,7 +1561,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -1623,134 +1623,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9079999999999, - "y": 138.86175476702576 + "x": 320.908, + "y": 138.86175 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.76899999999995, - "y": 144.73575476702575 + "x": 318.769, + "y": 144.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.7509999999999, - "y": 149.52475476702574 + "x": 314.751, + "y": 149.52475 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.33699999999993, - "y": 152.64975476702574 + "x": 309.337, + "y": 152.64975 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.1809999999999, - "y": 153.73575476702575 + "x": 303.181, + "y": 153.73575 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.0249999999999, - "y": 152.64975476702574 + "x": 297.025, + "y": 152.64975 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.61099999999993, - "y": 149.52475476702574 + "x": 291.611, + "y": 149.52475 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.5929999999999, - "y": 144.73575476702575 + "x": 287.593, + "y": 144.73575 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.45399999999995, - "y": 138.86175476702576 + "x": 285.454, + "y": 138.86175 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.45399999999995, - "y": 132.60975476702575 + "x": 285.454, + "y": 132.60975 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5929999999999, - "y": 126.73575476702575 + "x": 287.593, + "y": 126.73575 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.61099999999993, - "y": 121.94675476702575 + "x": 291.611, + "y": 121.94675 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.0249999999999, - "y": 118.82175476702575 + "x": 297.025, + "y": 118.82175 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.1809999999999, - "y": 117.73575476702575 + "x": 303.181, + "y": 117.73575 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.33699999999993, - "y": 118.82175476702575 + "x": 309.337, + "y": 118.82175 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.7509999999999, - "y": 121.94675476702575 + "x": 314.751, + "y": 121.94675 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.76899999999995, - "y": 126.73575476702575 + "x": 318.769, + "y": 126.73575 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9079999999999, - "y": 132.60975476702575 + "x": 320.908, + "y": 132.60975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 183 }, @@ -1779,11 +1779,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -1805,7 +1805,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1847,36 +1847,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -1891,12 +1891,12 @@ } }, { - "x": 356.36199999999985, - "y": 153.73575476702575 + "x": 356.362, + "y": 153.73575 }, { - "x": 320.9079999999999, - "y": 117.73575476702575 + "x": 320.908, + "y": 117.73575 }, { "category": 1, @@ -1913,16 +1913,16 @@ "y": 0 }, { - "x": 338.6349999999999, - "y": 135.73575476702575 + "x": 338.635, + "y": 135.73575 }, { "x": 0, "y": 0 }, { - "x": 338.6349999999999, - "y": 132.8284840519901 + "x": 338.635, + "y": 132.82848 }, { "endCol": 7, @@ -1946,7 +1946,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -2008,134 +2008,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.36199999999985, - "y": 138.86175476702576 + "x": 356.362, + "y": 138.86175 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.2229999999999, - "y": 144.73575476702575 + "x": 354.223, + "y": 144.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.20499999999987, - "y": 149.52475476702574 + "x": 350.205, + "y": 149.52475 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.7909999999999, - "y": 152.64975476702574 + "x": 344.791, + "y": 152.64975 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.6349999999999, - "y": 153.73575476702575 + "x": 338.635, + "y": 153.73575 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.47899999999987, - "y": 152.64975476702574 + "x": 332.479, + "y": 152.64975 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.0649999999999, - "y": 149.52475476702574 + "x": 327.065, + "y": 149.52475 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.04699999999985, - "y": 144.73575476702575 + "x": 323.047, + "y": 144.73575 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.9079999999999, - "y": 138.86175476702576 + "x": 320.908, + "y": 138.86175 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.9079999999999, - "y": 132.60975476702575 + "x": 320.908, + "y": 132.60975 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.04699999999985, - "y": 126.73575476702575 + "x": 323.047, + "y": 126.73575 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.0649999999999, - "y": 121.94675476702575 + "x": 327.065, + "y": 121.94675 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.47899999999987, - "y": 118.82175476702575 + "x": 332.479, + "y": 118.82175 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.6349999999999, - "y": 117.73575476702575 + "x": 338.635, + "y": 117.73575 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.7909999999999, - "y": 118.82175476702575 + "x": 344.791, + "y": 118.82175 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.20499999999987, - "y": 121.94675476702575 + "x": 350.205, + "y": 121.94675 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.2229999999999, - "y": 126.73575476702575 + "x": 354.223, + "y": 126.73575 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.36199999999985, - "y": 132.60975476702575 + "x": 356.362, + "y": 132.60975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 226 }, @@ -2164,11 +2164,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -2190,7 +2190,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2232,36 +2232,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -2276,12 +2276,12 @@ } }, { - "x": 391.8409979826192, - "y": 156.6430254820614 + "x": 391.841, + "y": 156.64303 }, { - "x": 356.3869979826192, - "y": 117.73575476702575 + "x": 356.387, + "y": 117.73575 }, { "category": 1, @@ -2298,16 +2298,16 @@ "y": 0 }, { - "x": 374.1139979826192, - "y": 135.73575476702575 + "x": 374.114, + "y": 135.73575 }, { - "x": 0.019998386095497162, + "x": 0.02, "y": 0 }, { - "x": 374.11399997500183, - "y": 132.8284840519901 + "x": 374.114, + "y": 132.82848 }, { "endCol": 8, @@ -2330,8 +2330,8 @@ "yScale": 1 }, { - "x": -0.000001992382635762624, - "y": 2.9239522800970406 + "x": 0, + "y": 2.92395 }, [ { @@ -2393,134 +2393,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.8409979826192, - "y": 138.86175476702576 + "x": 391.841, + "y": 138.86175 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.7019979826192, - "y": 144.73575476702575 + "x": 389.702, + "y": 144.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6839979826192, - "y": 149.52475476702574 + "x": 385.684, + "y": 149.52475 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.2699979826192, - "y": 152.64975476702574 + "x": 380.27, + "y": 152.64975 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.1139979826192, - "y": 153.73575476702575 + "x": 374.114, + "y": 153.73575 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9579979826192, - "y": 152.64975476702574 + "x": 367.958, + "y": 152.64975 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.5439979826192, - "y": 149.52475476702574 + "x": 362.544, + "y": 149.52475 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5259979826192, - "y": 144.73575476702575 + "x": 358.526, + "y": 144.73575 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.3869979826192, - "y": 138.86175476702576 + "x": 356.387, + "y": 138.86175 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.3869979826192, - "y": 132.60975476702575 + "x": 356.387, + "y": 132.60975 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5259979826192, - "y": 126.73575476702575 + "x": 358.526, + "y": 126.73575 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.5439979826192, - "y": 121.94675476702575 + "x": 362.544, + "y": 121.94675 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9579979826192, - "y": 118.82175476702575 + "x": 367.958, + "y": 118.82175 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.1139979826192, - "y": 117.73575476702575 + "x": 374.114, + "y": 117.73575 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.2699979826192, - "y": 118.82175476702575 + "x": 380.27, + "y": 118.82175 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6839979826192, - "y": 121.94675476702575 + "x": 385.684, + "y": 121.94675 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.7019979826192, - "y": 126.73575476702575 + "x": 389.702, + "y": 126.73575 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.8409979826192, - "y": 132.60975476702575 + "x": 391.841, + "y": 132.60975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 269 }, @@ -2549,11 +2549,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -2575,7 +2575,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2617,36 +2617,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -2661,12 +2661,12 @@ } }, { - "x": 427.2449980326151, - "y": 156.6517534956213 + "x": 427.245, + "y": 156.65175 }, { - "x": 391.79099803261516, - "y": 117.74448278058567 + "x": 391.791, + "y": 117.74448 }, { "category": 1, @@ -2683,16 +2683,16 @@ "y": 0 }, { - "x": 409.51799803261514, - "y": 135.74448278058566 + "x": 409.518, + "y": 135.74448 }, { - "x": -0.019998386095497162, + "x": -0.02, "y": 0 }, { - "x": 409.5180000249978, - "y": 132.8284840519901 + "x": 409.518, + "y": 132.82848 }, { "endCol": 8, @@ -2715,8 +2715,8 @@ "yScale": 1 }, { - "x": -0.000001992382635762624, - "y": 2.899317163534164 + "x": 0, + "y": 2.89932 }, [ { @@ -2778,134 +2778,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.2449980326151, - "y": 138.87048278058566 + "x": 427.245, + "y": 138.87048 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.10599803261516, - "y": 144.74448278058566 + "x": 425.106, + "y": 144.74448 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.08799803261513, - "y": 149.53348278058564 + "x": 421.088, + "y": 149.53348 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.67399803261515, - "y": 152.65848278058564 + "x": 415.674, + "y": 152.65848 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.51799803261514, - "y": 153.74448278058566 + "x": 409.518, + "y": 153.74448 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.36199803261513, - "y": 152.65848278058564 + "x": 403.362, + "y": 152.65848 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.94799803261515, - "y": 149.53348278058564 + "x": 397.948, + "y": 149.53348 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.9299980326151, - "y": 144.74448278058566 + "x": 393.93, + "y": 144.74448 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.79099803261516, - "y": 138.87048278058566 + "x": 391.791, + "y": 138.87048 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.79099803261516, - "y": 132.61848278058565 + "x": 391.791, + "y": 132.61848 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.9299980326151, - "y": 126.74448278058567 + "x": 393.93, + "y": 126.74448 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.94799803261515, - "y": 121.95548278058567 + "x": 397.948, + "y": 121.95548 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.36199803261513, - "y": 118.83048278058567 + "x": 403.362, + "y": 118.83048 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.51799803261514, - "y": 117.74448278058567 + "x": 409.518, + "y": 117.74448 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.67399803261515, - "y": 118.83048278058567 + "x": 415.674, + "y": 118.83048 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.08799803261513, - "y": 121.95548278058567 + "x": 421.088, + "y": 121.95548 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.10599803261516, - "y": 126.74448278058567 + "x": 425.106, + "y": 126.74448 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.2449980326151, - "y": 132.61848278058565 + "x": 427.245, + "y": 132.61848 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 312 }, @@ -2934,11 +2934,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -2960,7 +2960,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.915171814505275, + "speed": 2.91517, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3002,36 +3002,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -3046,12 +3046,12 @@ } }, { - "x": 285.4539999898469, - "y": 189.759218910325 + "x": 285.454, + "y": 189.75922 }, { - "x": 249.99999998984694, - "y": 153.759218910325 + "x": 250, + "y": 153.75922 }, { "category": 1, @@ -3068,16 +3068,16 @@ "y": 0 }, { - "x": 267.72699998984695, - "y": 171.759218910325 + "x": 267.727, + "y": 171.75922 }, { "x": 0, "y": 0 }, { - "x": 267.72699999782884, - "y": 168.83646496054544 + "x": 267.727, + "y": 168.83646 }, { "endCol": 5, @@ -3100,8 +3100,8 @@ "yScale": 1 }, { - "x": -2.1494201973837335e-9, - "y": 2.915171814505271 + "x": 0, + "y": 2.91517 }, [ { @@ -3163,134 +3163,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.4539999898469, - "y": 174.885218910325 + "x": 285.454, + "y": 174.88522 }, { "body": null, "index": 1, "isInternal": false, - "x": 283.31499998984697, - "y": 180.759218910325 + "x": 283.315, + "y": 180.75922 }, { "body": null, "index": 2, "isInternal": false, - "x": 279.29699998984694, - "y": 185.54821891032498 + "x": 279.297, + "y": 185.54822 }, { "body": null, "index": 3, "isInternal": false, - "x": 273.88299998984695, - "y": 188.67321891032498 + "x": 273.883, + "y": 188.67322 }, { "body": null, "index": 4, "isInternal": false, - "x": 267.72699998984695, - "y": 189.759218910325 + "x": 267.727, + "y": 189.75922 }, { "body": null, "index": 5, "isInternal": false, - "x": 261.57099998984694, - "y": 188.67321891032498 + "x": 261.571, + "y": 188.67322 }, { "body": null, "index": 6, "isInternal": false, - "x": 256.15699998984695, - "y": 185.54821891032498 + "x": 256.157, + "y": 185.54822 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.13899998984695, - "y": 180.759218910325 + "x": 252.139, + "y": 180.75922 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.99999998984694, - "y": 174.885218910325 + "x": 250, + "y": 174.88522 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.99999998984694, - "y": 168.63321891032498 + "x": 250, + "y": 168.63322 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.13899998984695, - "y": 162.759218910325 + "x": 252.139, + "y": 162.75922 }, { "body": null, "index": 11, "isInternal": false, - "x": 256.15699998984695, - "y": 157.970218910325 + "x": 256.157, + "y": 157.97022 }, { "body": null, "index": 12, "isInternal": false, - "x": 261.57099998984694, - "y": 154.845218910325 + "x": 261.571, + "y": 154.84522 }, { "body": null, "index": 13, "isInternal": false, - "x": 267.72699998984695, - "y": 153.759218910325 + "x": 267.727, + "y": 153.75922 }, { "body": null, "index": 14, "isInternal": false, - "x": 273.88299998984695, - "y": 154.845218910325 + "x": 273.883, + "y": 154.84522 }, { "body": null, "index": 15, "isInternal": false, - "x": 279.29699998984694, - "y": 157.970218910325 + "x": 279.297, + "y": 157.97022 }, { "body": null, "index": 16, "isInternal": false, - "x": 283.31499998984697, - "y": 162.759218910325 + "x": 283.315, + "y": 162.75922 }, { "body": null, "index": 17, "isInternal": false, - "x": 285.4539999898469, - "y": 168.63321891032498 + "x": 285.454, + "y": 168.63322 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 355 }, @@ -3319,11 +3319,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -3345,7 +3345,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.917245722859686, + "speed": 2.91725, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3387,36 +3387,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -3431,12 +3431,12 @@ } }, { - "x": 320.947014116306, - "y": 192.6831553653448 + "x": 320.94701, + "y": 192.68316 }, { - "x": 285.4831163446724, - "y": 153.7659264333513 + "x": 285.48312, + "y": 153.76593 }, { "category": 1, @@ -3453,16 +3453,16 @@ "y": 0 }, { - "x": 303.220014116306, - "y": 171.7659264333513 + "x": 303.22001, + "y": 171.76593 }, { "x": 0, "y": 0 }, { - "x": 303.22991188793964, - "y": 168.8486975013578 + "x": 303.22991, + "y": 168.8487 }, { "endCol": 6, @@ -3485,8 +3485,8 @@ "yScale": 1 }, { - "x": -0.009897771633632146, - "y": 2.900547366932102 + "x": -0.0099, + "y": 2.90055 }, [ { @@ -3548,134 +3548,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.947014116306, - "y": 174.8919264333513 + "x": 320.94701, + "y": 174.89193 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.808014116306, - "y": 180.7659264333513 + "x": 318.80801, + "y": 180.76593 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.790014116306, - "y": 185.55492643335128 + "x": 314.79001, + "y": 185.55493 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.376014116306, - "y": 188.67992643335128 + "x": 309.37601, + "y": 188.67993 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.220014116306, - "y": 189.7659264333513 + "x": 303.22001, + "y": 189.76593 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.064014116306, - "y": 188.67992643335128 + "x": 297.06401, + "y": 188.67993 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.650014116306, - "y": 185.55492643335128 + "x": 291.65001, + "y": 185.55493 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.632014116306, - "y": 180.7659264333513 + "x": 287.63201, + "y": 180.76593 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.49301411630603, - "y": 174.8919264333513 + "x": 285.49301, + "y": 174.89193 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.49301411630603, - "y": 168.6399264333513 + "x": 285.49301, + "y": 168.63993 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.632014116306, - "y": 162.7659264333513 + "x": 287.63201, + "y": 162.76593 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.650014116306, - "y": 157.9769264333513 + "x": 291.65001, + "y": 157.97693 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.064014116306, - "y": 154.8519264333513 + "x": 297.06401, + "y": 154.85193 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.220014116306, - "y": 153.7659264333513 + "x": 303.22001, + "y": 153.76593 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.376014116306, - "y": 154.8519264333513 + "x": 309.37601, + "y": 154.85193 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.790014116306, - "y": 157.9769264333513 + "x": 314.79001, + "y": 157.97693 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.808014116306, - "y": 162.7659264333513 + "x": 318.80801, + "y": 162.76593 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.947014116306, - "y": 168.6399264333513 + "x": 320.94701, + "y": 168.63993 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 398 }, @@ -3704,11 +3704,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -3730,7 +3730,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9073219947338096, + "speed": 2.90732, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3772,36 +3772,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -3816,12 +3816,12 @@ } }, { - "x": 356.36920795216, - "y": 192.64300847894202 + "x": 356.36921, + "y": 192.64301 }, { - "x": 320.8970141330474, - "y": 153.73574341259373 + "x": 320.89701, + "y": 153.73574 }, { "category": 1, @@ -3838,16 +3838,16 @@ "y": 0 }, { - "x": 338.62401413304735, - "y": 171.73574341259373 + "x": 338.62401, + "y": 171.73574 }, { "x": 0, "y": 0 }, { - "x": 338.60582031393466, - "y": 168.82847834624545 + "x": 338.60582, + "y": 168.82848 }, { "endCol": 7, @@ -3870,8 +3870,8 @@ "yScale": 1 }, { - "x": 0.01819381911269602, - "y": 2.9239466314096774 + "x": 0.01819, + "y": 2.92395 }, [ { @@ -3933,134 +3933,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.35101413304733, - "y": 174.86174341259374 + "x": 356.35101, + "y": 174.86174 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.2120141330474, - "y": 180.73574341259373 + "x": 354.21201, + "y": 180.73574 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.19401413304735, - "y": 185.52474341259372 + "x": 350.19401, + "y": 185.52474 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.78001413304736, - "y": 188.64974341259372 + "x": 344.78001, + "y": 188.64974 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.62401413304735, - "y": 189.73574341259373 + "x": 338.62401, + "y": 189.73574 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.46801413304735, - "y": 188.64974341259372 + "x": 332.46801, + "y": 188.64974 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.05401413304736, - "y": 185.52474341259372 + "x": 327.05401, + "y": 185.52474 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.03601413304733, - "y": 180.73574341259373 + "x": 323.03601, + "y": 180.73574 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.8970141330474, - "y": 174.86174341259374 + "x": 320.89701, + "y": 174.86174 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.8970141330474, - "y": 168.60974341259373 + "x": 320.89701, + "y": 168.60974 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.03601413304733, - "y": 162.73574341259373 + "x": 323.03601, + "y": 162.73574 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.05401413304736, - "y": 157.94674341259375 + "x": 327.05401, + "y": 157.94674 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.46801413304735, - "y": 154.82174341259375 + "x": 332.46801, + "y": 154.82174 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.62401413304735, - "y": 153.73574341259373 + "x": 338.62401, + "y": 153.73574 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.78001413304736, - "y": 154.82174341259375 + "x": 344.78001, + "y": 154.82174 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.19401413304735, - "y": 157.94674341259375 + "x": 350.19401, + "y": 157.94674 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.2120141330474, - "y": 162.73574341259373 + "x": 354.21201, + "y": 162.73574 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.35101413304733, - "y": 168.60974341259373 + "x": 356.35101, + "y": 168.60974 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 441 }, @@ -4089,11 +4089,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -4115,7 +4115,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9073098565744635, + "speed": 2.90731, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4157,36 +4157,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -4201,12 +4201,12 @@ } }, { - "x": 391.8370062675113, - "y": 192.65082310405614 + "x": 391.83701, + "y": 192.65082 }, { - "x": 356.36655785577426, - "y": 153.74355977716496 + "x": 356.36656, + "y": 153.74356 }, { "category": 1, @@ -4223,16 +4223,16 @@ "y": 0 }, { - "x": 374.1100062675114, - "y": 171.74355977716496 + "x": 374.11001, + "y": 171.74356 }, { "x": 0, "y": 0 }, { - "x": 374.1264543595064, - "y": 168.82847658921807 + "x": 374.12645, + "y": 168.82848 }, { "endCol": 8, @@ -4255,8 +4255,8 @@ "yScale": 1 }, { - "x": -0.01644809199501651, - "y": 2.898401622885501 + "x": -0.01645, + "y": 2.8984 }, [ { @@ -4318,134 +4318,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.8370062675113, - "y": 174.86955977716497 + "x": 391.83701, + "y": 174.86956 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.69800626751135, - "y": 180.74355977716496 + "x": 389.69801, + "y": 180.74356 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6800062675113, - "y": 185.53255977716495 + "x": 385.68001, + "y": 185.53256 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.26600626751133, - "y": 188.65755977716495 + "x": 380.26601, + "y": 188.65756 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.1100062675113, - "y": 189.74355977716496 + "x": 374.11001, + "y": 189.74356 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9540062675113, - "y": 188.65755977716495 + "x": 367.95401, + "y": 188.65756 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.54000626751133, - "y": 185.53255977716495 + "x": 362.54001, + "y": 185.53256 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5220062675113, - "y": 180.74355977716496 + "x": 358.52201, + "y": 180.74356 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.38300626751135, - "y": 174.86955977716497 + "x": 356.38301, + "y": 174.86956 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.38300626751135, - "y": 168.61755977716496 + "x": 356.38301, + "y": 168.61756 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5220062675113, - "y": 162.74355977716496 + "x": 358.52201, + "y": 162.74356 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.54000626751133, - "y": 157.95455977716497 + "x": 362.54001, + "y": 157.95456 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9540062675113, - "y": 154.82955977716497 + "x": 367.95401, + "y": 154.82956 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.1100062675113, - "y": 153.74355977716496 + "x": 374.11001, + "y": 153.74356 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.26600626751133, - "y": 154.82955977716497 + "x": 380.26601, + "y": 154.82956 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6800062675113, - "y": 157.95455977716497 + "x": 385.68001, + "y": 157.95456 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.69800626751135, - "y": 162.74355977716496 + "x": 389.69801, + "y": 162.74356 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.8370062675113, - "y": 168.61755977716496 + "x": 391.83701, + "y": 168.61756 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 484 }, @@ -4474,11 +4474,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -4500,7 +4500,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.895491174244636, + "speed": 2.89549, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4542,36 +4542,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -4586,12 +4586,12 @@ } }, { - "x": 427.24909641493645, - "y": 192.69341463173373 + "x": 427.2491, + "y": 192.69341 }, { - "x": 391.7871073107053, - "y": 153.797934479092 + "x": 391.78711, + "y": 153.79793 }, { "category": 1, @@ -4608,16 +4608,16 @@ "y": 0 }, { - "x": 409.5141073107053, - "y": 171.797934479092 + "x": 409.51411, + "y": 171.79793 }, { - "x": -0.009952792306826292, - "y": 0.02181712775255825 + "x": -0.00995, + "y": 0.02182 }, { - "x": 409.5070784028134, - "y": 168.91101224568268 + "x": 409.50708, + "y": 168.91101 }, { "endCol": 8, @@ -4640,8 +4640,8 @@ "yScale": 1 }, { - "x": 0.007028907891879044, - "y": 2.903603798470698 + "x": 0.00703, + "y": 2.9036 }, [ { @@ -4703,134 +4703,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.2411073107053, - "y": 174.923934479092 + "x": 427.24111, + "y": 174.92393 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.1021073107053, - "y": 180.797934479092 + "x": 425.10211, + "y": 180.79793 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.0841073107053, - "y": 185.58693447909198 + "x": 421.08411, + "y": 185.58693 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.6701073107053, - "y": 188.71193447909198 + "x": 415.67011, + "y": 188.71193 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.5141073107053, - "y": 189.797934479092 + "x": 409.51411, + "y": 189.79793 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.3581073107053, - "y": 188.71193447909198 + "x": 403.35811, + "y": 188.71193 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.9441073107053, - "y": 185.58693447909198 + "x": 397.94411, + "y": 185.58693 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.9261073107053, - "y": 180.797934479092 + "x": 393.92611, + "y": 180.79793 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.7871073107053, - "y": 174.923934479092 + "x": 391.78711, + "y": 174.92393 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.7871073107053, - "y": 168.671934479092 + "x": 391.78711, + "y": 168.67193 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.9261073107053, - "y": 162.797934479092 + "x": 393.92611, + "y": 162.79793 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.9441073107053, - "y": 158.008934479092 + "x": 397.94411, + "y": 158.00893 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.3581073107053, - "y": 154.883934479092 + "x": 403.35811, + "y": 154.88393 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.5141073107053, - "y": 153.797934479092 + "x": 409.51411, + "y": 153.79793 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.6701073107053, - "y": 154.883934479092 + "x": 415.67011, + "y": 154.88393 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.0841073107053, - "y": 158.008934479092 + "x": 421.08411, + "y": 158.00893 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.1021073107053, - "y": 162.797934479092 + "x": 425.10211, + "y": 162.79793 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.2411073107053, - "y": 168.671934479092 + "x": 427.24111, + "y": 168.67193 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 527 }, @@ -4859,11 +4859,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -4885,7 +4885,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.918070888740444, + "speed": 2.91807, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4927,36 +4927,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -4971,12 +4971,12 @@ } }, { - "x": 285.4539668429389, - "y": 225.79008530569993 + "x": 285.45397, + "y": 225.79009 }, { - "x": 249.9999668429389, - "y": 189.79008530569993 + "x": 249.99997, + "y": 189.79009 }, { "category": 1, @@ -4993,16 +4993,16 @@ "y": 0 }, { - "x": 267.72696684293885, - "y": 207.79008530569996 + "x": 267.72697, + "y": 207.79009 }, { "x": 0, "y": 0 }, { - "x": 267.7269821457263, - "y": 204.87147656268772 + "x": 267.72698, + "y": 204.87148 }, { "endCol": 5, @@ -5025,8 +5025,8 @@ "yScale": 1 }, { - "x": -0.000009865998833902268, - "y": 2.9104887534494708 + "x": -0.00001, + "y": 2.91049 }, [ { @@ -5088,134 +5088,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.4539668429389, - "y": 210.91608530569994 + "x": 285.45397, + "y": 210.91609 }, { "body": null, "index": 1, "isInternal": false, - "x": 283.31496684293893, - "y": 216.79008530569993 + "x": 283.31497, + "y": 216.79009 }, { "body": null, "index": 2, "isInternal": false, - "x": 279.2969668429389, - "y": 221.57908530569992 + "x": 279.29697, + "y": 221.57909 }, { "body": null, "index": 3, "isInternal": false, - "x": 273.8829668429389, - "y": 224.70408530569992 + "x": 273.88297, + "y": 224.70409 }, { "body": null, "index": 4, "isInternal": false, - "x": 267.7269668429389, - "y": 225.79008530569993 + "x": 267.72697, + "y": 225.79009 }, { "body": null, "index": 5, "isInternal": false, - "x": 261.5709668429389, - "y": 224.70408530569992 + "x": 261.57097, + "y": 224.70409 }, { "body": null, "index": 6, "isInternal": false, - "x": 256.1569668429389, - "y": 221.57908530569992 + "x": 256.15697, + "y": 221.57909 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.1389668429389, - "y": 216.79008530569993 + "x": 252.13897, + "y": 216.79009 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.9999668429389, - "y": 210.91608530569994 + "x": 249.99997, + "y": 210.91609 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.9999668429389, - "y": 204.66408530569993 + "x": 249.99997, + "y": 204.66409 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.1389668429389, - "y": 198.79008530569993 + "x": 252.13897, + "y": 198.79009 }, { "body": null, "index": 11, "isInternal": false, - "x": 256.1569668429389, - "y": 194.00108530569995 + "x": 256.15697, + "y": 194.00109 }, { "body": null, "index": 12, "isInternal": false, - "x": 261.5709668429389, - "y": 190.87608530569995 + "x": 261.57097, + "y": 190.87609 }, { "body": null, "index": 13, "isInternal": false, - "x": 267.7269668429389, - "y": 189.79008530569993 + "x": 267.72697, + "y": 189.79009 }, { "body": null, "index": 14, "isInternal": false, - "x": 273.8829668429389, - "y": 190.87608530569995 + "x": 273.88297, + "y": 190.87609 }, { "body": null, "index": 15, "isInternal": false, - "x": 279.2969668429389, - "y": 194.00108530569995 + "x": 279.29697, + "y": 194.00109 }, { "body": null, "index": 16, "isInternal": false, - "x": 283.31496684293893, - "y": 198.79008530569993 + "x": 283.31497, + "y": 198.79009 }, { "body": null, "index": 17, "isInternal": false, - "x": 285.4539668429389, - "y": 204.66408530569993 + "x": 285.45397, + "y": 204.66409 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 570 }, @@ -5244,11 +5244,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -5270,7 +5270,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8955760672783066, + "speed": 2.89558, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5312,36 +5312,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -5356,12 +5356,12 @@ } }, { - "x": 320.9302721317029, - "y": 228.67043986864962 + "x": 320.93027, + "y": 228.67044 }, { - "x": 285.4559559394942, - "y": 189.77493507436435 + "x": 285.45596, + "y": 189.77494 }, { "category": 1, @@ -5378,16 +5378,16 @@ "y": 0 }, { - "x": 303.20327213170293, - "y": 207.77493507436435 + "x": 303.20327, + "y": 207.77494 }, { "x": 0, "y": 0 }, { - "x": 303.2235883239117, - "y": 204.88547671593494 + "x": 303.22359, + "y": 204.88548 }, { "endCol": 6, @@ -5410,8 +5410,8 @@ "yScale": 1 }, { - "x": -0.02031619220878156, - "y": 2.906139923490798 + "x": -0.02032, + "y": 2.90614 }, [ { @@ -5473,134 +5473,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9302721317029, - "y": 210.90093507436436 + "x": 320.93027, + "y": 210.90094 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.791272131703, - "y": 216.77493507436435 + "x": 318.79127, + "y": 216.77494 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.773272131703, - "y": 221.56393507436434 + "x": 314.77327, + "y": 221.56394 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.359272131703, - "y": 224.68893507436434 + "x": 309.35927, + "y": 224.68894 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.20327213170293, - "y": 225.77493507436435 + "x": 303.20327, + "y": 225.77494 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.047272131703, - "y": 224.68893507436434 + "x": 297.04727, + "y": 224.68894 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.633272131703, - "y": 221.56393507436434 + "x": 291.63327, + "y": 221.56394 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.61527213170297, - "y": 216.77493507436435 + "x": 287.61527, + "y": 216.77494 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.47627213170296, - "y": 210.90093507436436 + "x": 285.47627, + "y": 210.90094 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.47627213170296, - "y": 204.64893507436435 + "x": 285.47627, + "y": 204.64894 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.61527213170297, - "y": 198.77493507436435 + "x": 287.61527, + "y": 198.77494 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.633272131703, - "y": 193.98593507436436 + "x": 291.63327, + "y": 193.98594 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.047272131703, - "y": 190.86093507436436 + "x": 297.04727, + "y": 190.86094 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.20327213170293, - "y": 189.77493507436435 + "x": 303.20327, + "y": 189.77494 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.359272131703, - "y": 190.86093507436436 + "x": 309.35927, + "y": 190.86094 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.773272131703, - "y": 193.98593507436436 + "x": 314.77327, + "y": 193.98594 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.791272131703, - "y": 198.77493507436435 + "x": 318.79127, + "y": 198.77494 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9302721317029, - "y": 204.64893507436435 + "x": 320.93027, + "y": 204.64894 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 613 }, @@ -5629,11 +5629,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -5655,7 +5655,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9083955414223093, + "speed": 2.9084, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5697,36 +5697,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -5741,12 +5741,12 @@ } }, { - "x": 356.34869030643796, - "y": 228.67477872230032 + "x": 356.34869, + "y": 228.67478 }, { - "x": 320.88027216738897, - "y": 189.76641891948506 + "x": 320.88027, + "y": 189.76642 }, { "category": 1, @@ -5763,16 +5763,16 @@ "y": 0 }, { - "x": 338.60727216738894, - "y": 207.76641891948506 + "x": 338.60727, + "y": 207.76642 }, { "x": 0, "y": 0 }, { - "x": 338.5928540283399, - "y": 204.85201268081394 + "x": 338.59285, + "y": 204.85201 }, { "endCol": 7, @@ -5795,8 +5795,8 @@ "yScale": 1 }, { - "x": 0.014418139049041656, - "y": 2.89772467360973 + "x": 0.01442, + "y": 2.89772 }, [ { @@ -5858,134 +5858,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.3342721673889, - "y": 210.89241891948507 + "x": 356.33427, + "y": 210.89242 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.19527216738896, - "y": 216.76641891948506 + "x": 354.19527, + "y": 216.76642 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.17727216738894, - "y": 221.55541891948505 + "x": 350.17727, + "y": 221.55542 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.76327216738895, - "y": 224.68041891948505 + "x": 344.76327, + "y": 224.68042 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.60727216738894, - "y": 225.76641891948506 + "x": 338.60727, + "y": 225.76642 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.45127216738894, - "y": 224.68041891948505 + "x": 332.45127, + "y": 224.68042 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.03727216738895, - "y": 221.55541891948505 + "x": 327.03727, + "y": 221.55542 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.0192721673889, - "y": 216.76641891948506 + "x": 323.01927, + "y": 216.76642 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.88027216738897, - "y": 210.89241891948507 + "x": 320.88027, + "y": 210.89242 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.88027216738897, - "y": 204.64041891948506 + "x": 320.88027, + "y": 204.64042 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.0192721673889, - "y": 198.76641891948506 + "x": 323.01927, + "y": 198.76642 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.03727216738895, - "y": 193.97741891948507 + "x": 327.03727, + "y": 193.97742 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.45127216738894, - "y": 190.85241891948507 + "x": 332.45127, + "y": 190.85242 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.60727216738894, - "y": 189.76641891948506 + "x": 338.60727, + "y": 189.76642 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.76327216738895, - "y": 190.85241891948507 + "x": 344.76327, + "y": 190.85242 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.17727216738894, - "y": 193.97741891948507 + "x": 350.17727, + "y": 193.97742 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.19527216738896, - "y": 198.76641891948506 + "x": 354.19527, + "y": 198.76642 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.3342721673889, - "y": 204.64041891948506 + "x": 356.33427, + "y": 204.64042 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 656 }, @@ -6014,11 +6014,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -6040,7 +6040,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9116576057903716, + "speed": 2.91166, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6082,36 +6082,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -6126,12 +6126,12 @@ } }, { - "x": 391.84356298319193, - "y": 228.67862599878265 + "x": 391.84356, + "y": 228.67863 }, { - "x": 356.3723402933344, - "y": 189.76701933023847 + "x": 356.37234, + "y": 189.76702 }, { "category": 1, @@ -6148,16 +6148,16 @@ "y": 0 }, { - "x": 374.11656298319195, - "y": 207.76701933023847 + "x": 374.11656, + "y": 207.76702 }, { "x": 0, "y": 0 }, { - "x": 374.1337859927916, - "y": 204.8659147082914 + "x": 374.13379, + "y": 204.86591 }, { "endCol": 8, @@ -6180,8 +6180,8 @@ "yScale": 1 }, { - "x": -0.017223009599661054, - "y": 2.91778618700846 + "x": -0.01722, + "y": 2.91779 }, [ { @@ -6243,134 +6243,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.84356298319193, - "y": 210.89301933023847 + "x": 391.84356, + "y": 210.89302 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.7045629831919, - "y": 216.76701933023847 + "x": 389.70456, + "y": 216.76702 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6865629831919, - "y": 221.55601933023846 + "x": 385.68656, + "y": 221.55602 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.2725629831919, - "y": 224.68101933023846 + "x": 380.27256, + "y": 224.68102 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.11656298319195, - "y": 225.76701933023847 + "x": 374.11656, + "y": 225.76702 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9605629831919, - "y": 224.68101933023846 + "x": 367.96056, + "y": 224.68102 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.5465629831919, - "y": 221.55601933023846 + "x": 362.54656, + "y": 221.55602 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5285629831919, - "y": 216.76701933023847 + "x": 358.52856, + "y": 216.76702 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.389562983192, - "y": 210.89301933023847 + "x": 356.38956, + "y": 210.89302 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.389562983192, - "y": 204.64101933023846 + "x": 356.38956, + "y": 204.64102 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5285629831919, - "y": 198.76701933023847 + "x": 358.52856, + "y": 198.76702 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.5465629831919, - "y": 193.97801933023848 + "x": 362.54656, + "y": 193.97802 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9605629831919, - "y": 190.85301933023848 + "x": 367.96056, + "y": 190.85302 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.11656298319195, - "y": 189.76701933023847 + "x": 374.11656, + "y": 189.76702 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.2725629831919, - "y": 190.85301933023848 + "x": 380.27256, + "y": 190.85302 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6865629831919, - "y": 193.97801933023848 + "x": 385.68656, + "y": 193.97802 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.7045629831919, - "y": 198.76701933023847 + "x": 389.70456, + "y": 198.76702 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.84356298319193, - "y": 204.64101933023846 + "x": 391.84356, + "y": 204.64102 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 699 }, @@ -6399,11 +6399,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -6425,7 +6425,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9221903754645773, + "speed": 2.92219, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6467,36 +6467,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -6511,12 +6511,12 @@ } }, { - "x": 427.257285254239, - "y": 228.66871981812696 + "x": 427.25729, + "y": 228.66872 }, { - "x": 391.7935131438747, - "y": 189.7465457821878 + "x": 391.79351, + "y": 189.74655 }, { "category": 1, @@ -6533,16 +6533,16 @@ "y": 0 }, { - "x": 409.52051314387467, - "y": 207.7465457821878 + "x": 409.52051, + "y": 207.74655 }, { "x": 0, "y": 0 }, { - "x": 409.50977685240576, - "y": 204.82185965503473 + "x": 409.50978, + "y": 204.82186 }, { "endCol": 8, @@ -6565,8 +6565,8 @@ "yScale": 1 }, { - "x": 0.010724798734372598, - "y": 2.9246881546237944 + "x": 0.01072, + "y": 2.92469 }, [ { @@ -6628,134 +6628,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.24751314387464, - "y": 210.8725457821878 + "x": 427.24751, + "y": 210.87255 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.1085131438747, - "y": 216.7465457821878 + "x": 425.10851, + "y": 216.74655 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.09051314387466, - "y": 221.5355457821878 + "x": 421.09051, + "y": 221.53555 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.6765131438747, - "y": 224.6605457821878 + "x": 415.67651, + "y": 224.66055 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.52051314387467, - "y": 225.7465457821878 + "x": 409.52051, + "y": 225.74655 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.36451314387466, - "y": 224.6605457821878 + "x": 403.36451, + "y": 224.66055 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.9505131438747, - "y": 221.5355457821878 + "x": 397.95051, + "y": 221.53555 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.93251314387464, - "y": 216.7465457821878 + "x": 393.93251, + "y": 216.74655 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.7935131438747, - "y": 210.8725457821878 + "x": 391.79351, + "y": 210.87255 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.7935131438747, - "y": 204.6205457821878 + "x": 391.79351, + "y": 204.62055 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.93251314387464, - "y": 198.7465457821878 + "x": 393.93251, + "y": 198.74655 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.9505131438747, - "y": 193.95754578218782 + "x": 397.95051, + "y": 193.95755 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.36451314387466, - "y": 190.83254578218782 + "x": 403.36451, + "y": 190.83255 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.52051314387467, - "y": 189.7465457821878 + "x": 409.52051, + "y": 189.74655 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.6765131438747, - "y": 190.83254578218782 + "x": 415.67651, + "y": 190.83255 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.09051314387466, - "y": 193.95754578218782 + "x": 421.09051, + "y": 193.95755 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.1085131438747, - "y": 198.7465457821878 + "x": 425.10851, + "y": 198.74655 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.24751314387464, - "y": 204.6205457821878 + "x": 427.24751, + "y": 204.62055 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 742 }, @@ -6784,11 +6784,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -6810,7 +6810,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8843924444727915, + "speed": 2.88439, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6852,36 +6852,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -6896,12 +6896,12 @@ } }, { - "x": 285.4343204640976, - "y": 264.7161432932005 + "x": 285.43432, + "y": 264.71614 }, { - "x": 249.97095672502363, - "y": 225.83992341341528 + "x": 249.97096, + "y": 225.83992 }, { "category": 1, @@ -6918,16 +6918,16 @@ "y": 0 }, { - "x": 267.7073204640977, - "y": 243.83992341341525 + "x": 267.70732, + "y": 243.83992 }, { - "x": 0.003589048497185945, - "y": 0.02695337996846093 + "x": 0.00359, + "y": 0.02695 }, { - "x": 267.736278436332, - "y": 240.96845454889925 + "x": 267.73628, + "y": 240.96845 }, { "endCol": 5, @@ -6950,8 +6950,8 @@ "yScale": 1 }, { - "x": -0.012530080061367244, - "y": 2.8685707665790403 + "x": -0.01253, + "y": 2.86857 }, [ { @@ -7013,134 +7013,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.4343204640976, - "y": 246.96592341341528 + "x": 285.43432, + "y": 246.96592 }, { "body": null, "index": 1, "isInternal": false, - "x": 283.29532046409764, - "y": 252.83992341341528 + "x": 283.29532, + "y": 252.83992 }, { "body": null, "index": 2, "isInternal": false, - "x": 279.2773204640976, - "y": 257.62892341341524 + "x": 279.27732, + "y": 257.62892 }, { "body": null, "index": 3, "isInternal": false, - "x": 273.8633204640976, - "y": 260.7539234134153 + "x": 273.86332, + "y": 260.75392 }, { "body": null, "index": 4, "isInternal": false, - "x": 267.7073204640976, - "y": 261.8399234134153 + "x": 267.70732, + "y": 261.83992 }, { "body": null, "index": 5, "isInternal": false, - "x": 261.5513204640976, - "y": 260.7539234134153 + "x": 261.55132, + "y": 260.75392 }, { "body": null, "index": 6, "isInternal": false, - "x": 256.1373204640976, - "y": 257.62892341341524 + "x": 256.13732, + "y": 257.62892 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.11932046409757, - "y": 252.83992341341528 + "x": 252.11932, + "y": 252.83992 }, { "body": null, "index": 8, "isInternal": false, - "x": 249.98032046409756, - "y": 246.96592341341528 + "x": 249.98032, + "y": 246.96592 }, { "body": null, "index": 9, "isInternal": false, - "x": 249.98032046409756, - "y": 240.71392341341527 + "x": 249.98032, + "y": 240.71392 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.11932046409757, - "y": 234.83992341341528 + "x": 252.11932, + "y": 234.83992 }, { "body": null, "index": 11, "isInternal": false, - "x": 256.1373204640976, - "y": 230.0509234134153 + "x": 256.13732, + "y": 230.05092 }, { "body": null, "index": 12, "isInternal": false, - "x": 261.5513204640976, - "y": 226.9259234134153 + "x": 261.55132, + "y": 226.92592 }, { "body": null, "index": 13, "isInternal": false, - "x": 267.7073204640976, - "y": 225.83992341341528 + "x": 267.70732, + "y": 225.83992 }, { "body": null, "index": 14, "isInternal": false, - "x": 273.8633204640976, - "y": 226.9259234134153 + "x": 273.86332, + "y": 226.92592 }, { "body": null, "index": 15, "isInternal": false, - "x": 279.2773204640976, - "y": 230.0509234134153 + "x": 279.27732, + "y": 230.05092 }, { "body": null, "index": 16, "isInternal": false, - "x": 283.29532046409764, - "y": 234.83992341341528 + "x": 283.29532, + "y": 234.83992 }, { "body": null, "index": 17, "isInternal": false, - "x": 285.4343204640976, - "y": 240.71392341341527 + "x": 285.43432, + "y": 240.71392 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 785 }, @@ -7169,11 +7169,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -7195,7 +7195,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8976465415521, + "speed": 2.89765, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7237,36 +7237,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -7281,12 +7281,12 @@ } }, { - "x": 320.9105144709116, - "y": 264.7263417477857 + "x": 320.91051, + "y": 264.72634 }, { - "x": 285.4482723442234, - "y": 225.82870692829653 + "x": 285.44827, + "y": 225.82871 }, { "category": 1, @@ -7303,16 +7303,16 @@ "y": 0 }, { - "x": 303.18351447091175, - "y": 243.82870692829653 + "x": 303.18351, + "y": 243.82871 }, { - "x": 0.004295898915409222, - "y": 0.02701009377549096 + "x": 0.0043, + "y": 0.02701 }, { - "x": 303.205994587333, - "y": 240.93232497637797 + "x": 303.20599, + "y": 240.93232 }, { "endCol": 6, @@ -7335,8 +7335,8 @@ "yScale": 1 }, { - "x": -0.006052224248321636, - "y": 2.89928004985552 + "x": -0.00605, + "y": 2.89928 }, [ { @@ -7398,134 +7398,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9105144709116, - "y": 246.95470692829656 + "x": 320.91051, + "y": 246.95471 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.77151447091165, - "y": 252.82870692829653 + "x": 318.77151, + "y": 252.82871 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.7535144709116, - "y": 257.61770692829646 + "x": 314.75351, + "y": 257.61771 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.33951447091164, - "y": 260.74270692829646 + "x": 309.33951, + "y": 260.74271 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.18351447091163, - "y": 261.82870692829647 + "x": 303.18351, + "y": 261.82871 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.0275144709116, - "y": 260.74270692829646 + "x": 297.02751, + "y": 260.74271 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.61351447091164, - "y": 257.61770692829646 + "x": 291.61351, + "y": 257.61771 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.5955144709116, - "y": 252.82870692829653 + "x": 287.59551, + "y": 252.82871 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.45651447091166, - "y": 246.95470692829656 + "x": 285.45651, + "y": 246.95471 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.45651447091166, - "y": 240.70270692829655 + "x": 285.45651, + "y": 240.70271 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5955144709116, - "y": 234.82870692829653 + "x": 287.59551, + "y": 234.82871 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.61351447091164, - "y": 230.03970692829654 + "x": 291.61351, + "y": 230.03971 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.0275144709116, - "y": 226.91470692829654 + "x": 297.02751, + "y": 226.91471 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.18351447091163, - "y": 225.82870692829653 + "x": 303.18351, + "y": 225.82871 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.33951447091164, - "y": 226.91470692829654 + "x": 309.33951, + "y": 226.91471 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.7535144709116, - "y": 230.03970692829654 + "x": 314.75351, + "y": 230.03971 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.77151447091165, - "y": 234.82870692829653 + "x": 318.77151, + "y": 234.82871 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9105144709116, - "y": 240.70270692829655 + "x": 320.91051, + "y": 240.70271 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 828 }, @@ -7554,11 +7554,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -7580,7 +7580,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.905453418988824, + "speed": 2.90545, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7622,36 +7622,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -7666,12 +7666,12 @@ } }, { - "x": 356.3927784733354, - "y": 264.6872794137878 + "x": 356.39278, + "y": 264.68728 }, { - "x": 320.90689371917375, - "y": 225.7820009534046 + "x": 320.90689, + "y": 225.782 }, { "category": 1, @@ -7688,16 +7688,16 @@ "y": 0 }, { - "x": 338.6338937191737, - "y": 243.7820009534046 + "x": 338.63389, + "y": 243.782 }, { - "x": -0.009939918379887433, - "y": 0.011294834035636542 + "x": -0.00994, + "y": 0.01129 }, { - "x": 338.61162240238724, - "y": 240.8864999812846 + "x": 338.61162, + "y": 240.8865 }, { "endCol": 7, @@ -7720,8 +7720,8 @@ "yScale": 1 }, { - "x": 0.03188475416169467, - "y": 2.905278460383073 + "x": 0.03188, + "y": 2.90528 }, [ { @@ -7783,134 +7783,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.3608937191737, - "y": 246.9080009534046 + "x": 356.36089, + "y": 246.908 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.22189371917375, - "y": 252.7820009534046 + "x": 354.22189, + "y": 252.782 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.2038937191737, - "y": 257.5710009534046 + "x": 350.20389, + "y": 257.571 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.78989371917373, - "y": 260.69600095340473 + "x": 344.78989, + "y": 260.696 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.6338937191737, - "y": 261.7820009534047 + "x": 338.63389, + "y": 261.782 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.4778937191737, - "y": 260.69600095340473 + "x": 332.47789, + "y": 260.696 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.06389371917373, - "y": 257.5710009534046 + "x": 327.06389, + "y": 257.571 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.0458937191737, - "y": 252.7820009534046 + "x": 323.04589, + "y": 252.782 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.90689371917375, - "y": 246.9080009534046 + "x": 320.90689, + "y": 246.908 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.90689371917375, - "y": 240.6560009534046 + "x": 320.90689, + "y": 240.656 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.0458937191737, - "y": 234.7820009534046 + "x": 323.04589, + "y": 234.782 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.06389371917373, - "y": 229.99300095340462 + "x": 327.06389, + "y": 229.993 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.4778937191737, - "y": 226.86800095340462 + "x": 332.47789, + "y": 226.868 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.6338937191737, - "y": 225.7820009534046 + "x": 338.63389, + "y": 225.782 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.78989371917373, - "y": 226.86800095340462 + "x": 344.78989, + "y": 226.868 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.2038937191737, - "y": 229.99300095340462 + "x": 350.20389, + "y": 229.993 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.22189371917375, - "y": 234.7820009534046 + "x": 354.22189, + "y": 234.782 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.3608937191737, - "y": 240.6560009534046 + "x": 356.36089, + "y": 240.656 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 871 }, @@ -7939,11 +7939,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -7965,7 +7965,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8822617158390025, + "speed": 2.88226, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8007,36 +8007,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -8051,12 +8051,12 @@ } }, { - "x": 391.85195312387805, - "y": 264.71653460242806 + "x": 391.85195, + "y": 264.71653 }, { - "x": 356.39773947503977, - "y": 225.82607133870943 + "x": 356.39774, + "y": 225.82607 }, { "category": 1, @@ -8073,16 +8073,16 @@ "y": 0 }, { - "x": 374.1249531238781, - "y": 243.82607133870943 + "x": 374.12495, + "y": 243.82607 }, { - "x": 0.005502879858165539, - "y": 0.03053121436742719 + "x": 0.0055, + "y": 0.03053 }, { - "x": 374.105993783359, - "y": 240.93896761534768 + "x": 374.10599, + "y": 240.93897 }, { "endCol": 8, @@ -8105,8 +8105,8 @@ "yScale": 1 }, { - "x": 0.0025314483461329473, - "y": 2.8842056254247836 + "x": 0.00253, + "y": 2.88421 }, [ { @@ -8168,134 +8168,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.85195312387805, - "y": 246.95207133870943 + "x": 391.85195, + "y": 246.95207 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.71295312387815, - "y": 252.82607133870943 + "x": 389.71295, + "y": 252.82607 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.6949531238781, - "y": 257.6150713387094 + "x": 385.69495, + "y": 257.61507 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.28095312387813, - "y": 260.7400713387094 + "x": 380.28095, + "y": 260.74007 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.1249531238781, - "y": 261.8260713387094 + "x": 374.12495, + "y": 261.82607 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.9689531238781, - "y": 260.7400713387094 + "x": 367.96895, + "y": 260.74007 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.55495312387814, - "y": 257.6150713387094 + "x": 362.55495, + "y": 257.61507 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.5369531238781, - "y": 252.82607133870943 + "x": 358.53695, + "y": 252.82607 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.3979531238781, - "y": 246.95207133870943 + "x": 356.39795, + "y": 246.95207 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.3979531238781, - "y": 240.70007133870942 + "x": 356.39795, + "y": 240.70007 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.5369531238781, - "y": 234.82607133870943 + "x": 358.53695, + "y": 234.82607 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.55495312387814, - "y": 230.03707133870944 + "x": 362.55495, + "y": 230.03707 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.9689531238781, - "y": 226.91207133870944 + "x": 367.96895, + "y": 226.91207 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.1249531238781, - "y": 225.82607133870943 + "x": 374.12495, + "y": 225.82607 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.28095312387813, - "y": 226.91207133870944 + "x": 380.28095, + "y": 226.91207 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.6949531238781, - "y": 230.03707133870944 + "x": 385.69495, + "y": 230.03707 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.71295312387815, - "y": 234.82607133870943 + "x": 389.71295, + "y": 234.82607 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.85195312387805, - "y": 240.70007133870942 + "x": 391.85195, + "y": 240.70007 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 914 }, @@ -8324,11 +8324,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -8350,7 +8350,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.894988772061477, + "speed": 2.89499, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8392,36 +8392,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -8436,12 +8436,12 @@ } }, { - "x": 427.2830388366613, - "y": 264.6687283749501 + "x": 427.28304, + "y": 264.66873 }, { - "x": 391.802136071166, - "y": 225.7737975560118 + "x": 391.80214, + "y": 225.7738 }, { "category": 1, @@ -8458,16 +8458,16 @@ "y": 0 }, { - "x": 409.5291360711659, - "y": 243.7737975560118 + "x": 409.52914, + "y": 243.7738 }, { - "x": -0.016115170681860212, - "y": 0.008330682844314664 + "x": -0.01612, + "y": 0.00833 }, { - "x": 409.5022431205944, - "y": 240.8729395409204 + "x": 409.50224, + "y": 240.87294 }, { "endCol": 8, @@ -8490,8 +8490,8 @@ "yScale": 1 }, { - "x": 0.026892950571493657, - "y": 2.8841764500299973 + "x": 0.02689, + "y": 2.88418 }, [ { @@ -8553,134 +8553,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.25613607116594, - "y": 246.8997975560118 + "x": 427.25614, + "y": 246.8998 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.117136071166, - "y": 252.7737975560118 + "x": 425.11714, + "y": 252.7738 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.09913607116596, - "y": 257.5627975560118 + "x": 421.09914, + "y": 257.5628 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.68513607116597, - "y": 260.68779755601173 + "x": 415.68514, + "y": 260.6878 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.52913607116596, - "y": 261.77379755601174 + "x": 409.52914, + "y": 261.7738 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.37313607116596, - "y": 260.68779755601173 + "x": 403.37314, + "y": 260.6878 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.959136071166, - "y": 257.5627975560118 + "x": 397.95914, + "y": 257.5628 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.94113607116594, - "y": 252.7737975560118 + "x": 393.94114, + "y": 252.7738 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.802136071166, - "y": 246.8997975560118 + "x": 391.80214, + "y": 246.8998 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.802136071166, - "y": 240.6477975560118 + "x": 391.80214, + "y": 240.6478 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.94113607116594, - "y": 234.7737975560118 + "x": 393.94114, + "y": 234.7738 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.959136071166, - "y": 229.9847975560118 + "x": 397.95914, + "y": 229.9848 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.37313607116596, - "y": 226.8597975560118 + "x": 403.37314, + "y": 226.8598 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.52913607116596, - "y": 225.7737975560118 + "x": 409.52914, + "y": 225.7738 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.68513607116597, - "y": 226.8597975560118 + "x": 415.68514, + "y": 226.8598 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.09913607116596, - "y": 229.9847975560118 + "x": 421.09914, + "y": 229.9848 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.117136071166, - "y": 234.7737975560118 + "x": 425.11714, + "y": 234.7738 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.25613607116594, - "y": 240.6477975560118 + "x": 427.25614, + "y": 240.6478 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 957 }, @@ -8709,11 +8709,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -8735,7 +8735,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8974280733100395, + "speed": 2.89743, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8777,36 +8777,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -8821,12 +8821,12 @@ } }, { - "x": 285.49990724917916, - "y": 300.6755420666769 + "x": 285.49991, + "y": 300.67554 }, { - "x": 250.02336175382905, - "y": 261.77814872711883 + "x": 250.02336, + "y": 261.77815 }, { "category": 1, @@ -8843,16 +8843,16 @@ "y": 0 }, { - "x": 267.77290724917924, - "y": 279.7781487271188 + "x": 267.77291, + "y": 279.77815 }, { "x": 0, "y": 0 }, { - "x": 267.7768904263261, - "y": 276.84716837534165 + "x": 267.77689, + "y": 276.84717 }, { "endCol": 5, @@ -8875,8 +8875,8 @@ "yScale": 1 }, { - "x": -0.003983177146835715, - "y": 2.914298786715733 + "x": -0.00398, + "y": 2.9143 }, [ { @@ -8938,134 +8938,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 285.49990724917916, - "y": 282.90414872711875 + "x": 285.49991, + "y": 282.90415 }, { "body": null, "index": 1, "isInternal": false, - "x": 283.3609072491792, - "y": 288.7781487271188 + "x": 283.36091, + "y": 288.77815 }, { "body": null, "index": 2, "isInternal": false, - "x": 279.3429072491792, - "y": 293.56714872711876 + "x": 279.34291, + "y": 293.56715 }, { "body": null, "index": 3, "isInternal": false, - "x": 273.9289072491792, - "y": 296.69214872711876 + "x": 273.92891, + "y": 296.69215 }, { "body": null, "index": 4, "isInternal": false, - "x": 267.7729072491792, - "y": 297.7781487271188 + "x": 267.77291, + "y": 297.77815 }, { "body": null, "index": 5, "isInternal": false, - "x": 261.6169072491792, - "y": 296.69214872711876 + "x": 261.61691, + "y": 296.69215 }, { "body": null, "index": 6, "isInternal": false, - "x": 256.2029072491792, - "y": 293.56714872711876 + "x": 256.20291, + "y": 293.56715 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.18490724917925, - "y": 288.7781487271188 + "x": 252.18491, + "y": 288.77815 }, { "body": null, "index": 8, "isInternal": false, - "x": 250.04590724917924, - "y": 282.90414872711875 + "x": 250.04591, + "y": 282.90415 }, { "body": null, "index": 9, "isInternal": false, - "x": 250.04590724917924, - "y": 276.6521487271188 + "x": 250.04591, + "y": 276.65215 }, { "body": null, "index": 10, "isInternal": false, - "x": 252.18490724917925, - "y": 270.7781487271189 + "x": 252.18491, + "y": 270.77815 }, { "body": null, "index": 11, "isInternal": false, - "x": 256.2029072491792, - "y": 265.98914872711885 + "x": 256.20291, + "y": 265.98915 }, { "body": null, "index": 12, "isInternal": false, - "x": 261.6169072491792, - "y": 262.86414872711885 + "x": 261.61691, + "y": 262.86415 }, { "body": null, "index": 13, "isInternal": false, - "x": 267.7729072491792, - "y": 261.77814872711883 + "x": 267.77291, + "y": 261.77815 }, { "body": null, "index": 14, "isInternal": false, - "x": 273.9289072491792, - "y": 262.86414872711885 + "x": 273.92891, + "y": 262.86415 }, { "body": null, "index": 15, "isInternal": false, - "x": 279.3429072491792, - "y": 265.98914872711885 + "x": 279.34291, + "y": 265.98915 }, { "body": null, "index": 16, "isInternal": false, - "x": 283.3609072491792, - "y": 270.7781487271189 + "x": 283.36091, + "y": 270.77815 }, { "body": null, "index": 17, "isInternal": false, - "x": 285.49990724917916, - "y": 276.6521487271188 + "x": 285.49991, + "y": 276.65215 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 1000 }, @@ -9094,11 +9094,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -9120,7 +9120,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.935881707643459, + "speed": 2.93588, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9162,36 +9162,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -9206,12 +9206,12 @@ } }, { - "x": 320.9118577764157, - "y": 300.71378165090084 + "x": 320.91186, + "y": 300.71378 }, { - "x": 285.452912673946, - "y": 261.77792999005345 + "x": 285.45291, + "y": 261.77793 }, { "category": 1, @@ -9228,16 +9228,16 @@ "y": 0 }, { - "x": 303.1848577764157, - "y": 279.7779299900532 + "x": 303.18486, + "y": 279.77793 }, { "x": 0, "y": 0 }, { - "x": 303.1888409535626, - "y": 276.8751732970569 + "x": 303.18884, + "y": 276.87517 }, { "endCol": 6, @@ -9260,8 +9260,8 @@ "yScale": 1 }, { - "x": -0.003983177146892558, - "y": 2.912640326574717 + "x": -0.00398, + "y": 2.91264 }, [ { @@ -9323,134 +9323,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 320.9118577764157, - "y": 282.90392999005337 + "x": 320.91186, + "y": 282.90393 }, { "body": null, "index": 1, "isInternal": false, - "x": 318.7728577764157, - "y": 288.7779299900534 + "x": 318.77286, + "y": 288.77793 }, { "body": null, "index": 2, "isInternal": false, - "x": 314.7548577764157, - "y": 293.5669299900534 + "x": 314.75486, + "y": 293.56693 }, { "body": null, "index": 3, "isInternal": false, - "x": 309.3408577764157, - "y": 296.6919299900534 + "x": 309.34086, + "y": 296.69193 }, { "body": null, "index": 4, "isInternal": false, - "x": 303.1848577764157, - "y": 297.7779299900534 + "x": 303.18486, + "y": 297.77793 }, { "body": null, "index": 5, "isInternal": false, - "x": 297.0288577764157, - "y": 296.6919299900534 + "x": 297.02886, + "y": 296.69193 }, { "body": null, "index": 6, "isInternal": false, - "x": 291.6148577764157, - "y": 293.5669299900534 + "x": 291.61486, + "y": 293.56693 }, { "body": null, "index": 7, "isInternal": false, - "x": 287.5968577764157, - "y": 288.7779299900534 + "x": 287.59686, + "y": 288.77793 }, { "body": null, "index": 8, "isInternal": false, - "x": 285.4578577764157, - "y": 282.90392999005337 + "x": 285.45786, + "y": 282.90393 }, { "body": null, "index": 9, "isInternal": false, - "x": 285.4578577764157, - "y": 276.6519299900534 + "x": 285.45786, + "y": 276.65193 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.5968577764157, - "y": 270.7779299900535 + "x": 287.59686, + "y": 270.77793 }, { "body": null, "index": 11, "isInternal": false, - "x": 291.6148577764157, - "y": 265.98892999005346 + "x": 291.61486, + "y": 265.98893 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.0288577764157, - "y": 262.86392999005346 + "x": 297.02886, + "y": 262.86393 }, { "body": null, "index": 13, "isInternal": false, - "x": 303.1848577764157, - "y": 261.77792999005345 + "x": 303.18486, + "y": 261.77793 }, { "body": null, "index": 14, "isInternal": false, - "x": 309.3408577764157, - "y": 262.86392999005346 + "x": 309.34086, + "y": 262.86393 }, { "body": null, "index": 15, "isInternal": false, - "x": 314.7548577764157, - "y": 265.98892999005346 + "x": 314.75486, + "y": 265.98893 }, { "body": null, "index": 16, "isInternal": false, - "x": 318.7728577764157, - "y": 270.7779299900535 + "x": 318.77286, + "y": 270.77793 }, { "body": null, "index": 17, "isInternal": false, - "x": 320.9118577764157, - "y": 276.6519299900534 + "x": 320.91186, + "y": 276.65193 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 1043 }, @@ -9479,11 +9479,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -9505,7 +9505,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.918538243526236, + "speed": 2.91854, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9547,36 +9547,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -9591,12 +9591,12 @@ } }, { - "x": 356.3294888274248, - "y": 300.71009811744983 + "x": 356.32949, + "y": 300.7101 }, { - "x": 320.8713086261014, - "y": 261.7915421245639 + "x": 320.87131, + "y": 261.79154 }, { "category": 1, @@ -9613,16 +9613,16 @@ "y": 0 }, { - "x": 338.60248882742485, - "y": 279.79154212456393 + "x": 338.60249, + "y": 279.79154 }, { - "x": -0.004464363325457572, + "x": -0.00446, "y": 0 }, { - "x": 338.5985310526924, - "y": 276.8717676491334 + "x": 338.59853, + "y": 276.87177 }, { "endCol": 7, @@ -9645,8 +9645,8 @@ "yScale": 1 }, { - "x": 0.003957774732441521, - "y": 2.909890841852132 + "x": 0.00396, + "y": 2.90989 }, [ { @@ -9708,134 +9708,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 356.3294888274248, - "y": 282.9175421245638 + "x": 356.32949, + "y": 282.91754 }, { "body": null, "index": 1, "isInternal": false, - "x": 354.1904888274249, - "y": 288.7915421245638 + "x": 354.19049, + "y": 288.79154 }, { "body": null, "index": 2, "isInternal": false, - "x": 350.17248882742484, - "y": 293.5805421245638 + "x": 350.17249, + "y": 293.58054 }, { "body": null, "index": 3, "isInternal": false, - "x": 344.75848882742486, - "y": 296.7055421245638 + "x": 344.75849, + "y": 296.70554 }, { "body": null, "index": 4, "isInternal": false, - "x": 338.60248882742485, - "y": 297.7915421245638 + "x": 338.60249, + "y": 297.79154 }, { "body": null, "index": 5, "isInternal": false, - "x": 332.44648882742484, - "y": 296.7055421245638 + "x": 332.44649, + "y": 296.70554 }, { "body": null, "index": 6, "isInternal": false, - "x": 327.03248882742486, - "y": 293.5805421245638 + "x": 327.03249, + "y": 293.58054 }, { "body": null, "index": 7, "isInternal": false, - "x": 323.0144888274248, - "y": 288.7915421245638 + "x": 323.01449, + "y": 288.79154 }, { "body": null, "index": 8, "isInternal": false, - "x": 320.8754888274249, - "y": 282.9175421245638 + "x": 320.87549, + "y": 282.91754 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.8754888274249, - "y": 276.66554212456384 + "x": 320.87549, + "y": 276.66554 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.0144888274248, - "y": 270.7915421245639 + "x": 323.01449, + "y": 270.79154 }, { "body": null, "index": 11, "isInternal": false, - "x": 327.03248882742486, - "y": 266.0025421245639 + "x": 327.03249, + "y": 266.00254 }, { "body": null, "index": 12, "isInternal": false, - "x": 332.44648882742484, - "y": 262.8775421245639 + "x": 332.44649, + "y": 262.87754 }, { "body": null, "index": 13, "isInternal": false, - "x": 338.60248882742485, - "y": 261.7915421245639 + "x": 338.60249, + "y": 261.79154 }, { "body": null, "index": 14, "isInternal": false, - "x": 344.75848882742486, - "y": 262.8775421245639 + "x": 344.75849, + "y": 262.87754 }, { "body": null, "index": 15, "isInternal": false, - "x": 350.17248882742484, - "y": 266.0025421245639 + "x": 350.17249, + "y": 266.00254 }, { "body": null, "index": 16, "isInternal": false, - "x": 354.1904888274249, - "y": 270.7915421245639 + "x": 354.19049, + "y": 270.79154 }, { "body": null, "index": 17, "isInternal": false, - "x": 356.3294888274248, - "y": 276.66554212456384 + "x": 356.32949, + "y": 276.66554 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 1086 }, @@ -9864,11 +9864,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -9890,7 +9890,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907811588951301, + "speed": 2.90781, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9932,36 +9932,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -9976,12 +9976,12 @@ } }, { - "x": 391.7598744878906, - "y": 300.67571808561246 + "x": 391.75987, + "y": 300.67572 }, { - "x": 356.28936869103677, - "y": 261.75790502003576 + "x": 356.28937, + "y": 261.75791 }, { "category": 1, @@ -9998,16 +9998,16 @@ "y": 0 }, { - "x": 374.01636869103686, - "y": 279.7579050200358 + "x": 374.01637, + "y": 279.75791 }, { "x": 0, "y": 0 }, { - "x": 374.009398610222, - "y": 276.8376461867289 + "x": 374.0094, + "y": 276.83765 }, { "endCol": 8, @@ -10030,8 +10030,8 @@ "yScale": 1 }, { - "x": 0.00697008081488093, - "y": 2.903577268245556 + "x": 0.00697, + "y": 2.90358 }, [ { @@ -10093,134 +10093,134 @@ "body": null, "index": 0, "isInternal": false, - "x": 391.7433686910367, - "y": 282.8839050200357 + "x": 391.74337, + "y": 282.88391 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.60436869103677, - "y": 288.7579050200357 + "x": 389.60437, + "y": 288.75791 }, { "body": null, "index": 2, "isInternal": false, - "x": 385.58636869103674, - "y": 293.5469050200357 + "x": 385.58637, + "y": 293.54691 }, { "body": null, "index": 3, "isInternal": false, - "x": 380.17236869103675, - "y": 296.6719050200357 + "x": 380.17237, + "y": 296.67191 }, { "body": null, "index": 4, "isInternal": false, - "x": 374.01636869103675, - "y": 297.7579050200357 + "x": 374.01637, + "y": 297.75791 }, { "body": null, "index": 5, "isInternal": false, - "x": 367.86036869103674, - "y": 296.6719050200357 + "x": 367.86037, + "y": 296.67191 }, { "body": null, "index": 6, "isInternal": false, - "x": 362.44636869103675, - "y": 293.5469050200357 + "x": 362.44637, + "y": 293.54691 }, { "body": null, "index": 7, "isInternal": false, - "x": 358.4283686910367, - "y": 288.7579050200357 + "x": 358.42837, + "y": 288.75791 }, { "body": null, "index": 8, "isInternal": false, - "x": 356.28936869103677, - "y": 282.8839050200357 + "x": 356.28937, + "y": 282.88391 }, { "body": null, "index": 9, "isInternal": false, - "x": 356.28936869103677, - "y": 276.63190502003573 + "x": 356.28937, + "y": 276.63191 }, { "body": null, "index": 10, "isInternal": false, - "x": 358.4283686910367, - "y": 270.75790502003576 + "x": 358.42837, + "y": 270.75791 }, { "body": null, "index": 11, "isInternal": false, - "x": 362.44636869103675, - "y": 265.9689050200358 + "x": 362.44637, + "y": 265.96891 }, { "body": null, "index": 12, "isInternal": false, - "x": 367.86036869103674, - "y": 262.8439050200358 + "x": 367.86037, + "y": 262.84391 }, { "body": null, "index": 13, "isInternal": false, - "x": 374.01636869103675, - "y": 261.75790502003576 + "x": 374.01637, + "y": 261.75791 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.17236869103675, - "y": 262.8439050200358 + "x": 380.17237, + "y": 262.84391 }, { "body": null, "index": 15, "isInternal": false, - "x": 385.58636869103674, - "y": 265.9689050200358 + "x": 385.58637, + "y": 265.96891 }, { "body": null, "index": 16, "isInternal": false, - "x": 389.60436869103677, - "y": 270.75790502003576 + "x": 389.60437, + "y": 270.75791 }, { "body": null, "index": 17, "isInternal": false, - "x": 391.7433686910367, - "y": 276.63190502003573 + "x": 391.74337, + "y": 276.63191 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 997.3206839999999, + "area": 997.32068, "axes": { "#": 1129 }, @@ -10249,11 +10249,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.002686514019998, + "inverseMass": 1.00269, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.997320684, + "mass": 0.99732, "motion": 0, "parent": null, "position": { @@ -10275,7 +10275,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.923291511392375, + "speed": 2.92329, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10317,36 +10317,36 @@ } ], { - "x": -0.9396392002620254, - "y": -0.34216687935997164 + "x": -0.93964, + "y": -0.34217 }, { - "x": -0.7660797406236453, - "y": -0.6427455414127805 + "x": -0.76608, + "y": -0.64275 }, { - "x": -0.4999070915023843, - "y": -0.8660790378860505 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.1737305778129289, - "y": -0.9847932200887585 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737305778129289, - "y": -0.9847932200887585 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.4999070915023843, - "y": -0.8660790378860505 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660797406236453, - "y": -0.6427455414127805 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9396392002620254, - "y": -0.34216687935997164 + "x": 0.93964, + "y": -0.34217 }, { "x": 1, @@ -10361,12 +10361,12 @@ } }, { - "x": 427.2378186538534, - "y": 297.7909452074889 + "x": 427.23782, + "y": 297.79095 }, { - "x": 391.7838186538535, - "y": 261.790945207489 + "x": 391.78382, + "y": 261.79095 }, { "category": 1, @@ -10383,16 +10383,16 @@ "y": 0 }, { - "x": 409.51081865385345, - "y": 279.7909452074888 + "x": 409.51082, + "y": 279.79095 }, { "x": 0, "y": 0 }, { - "x": 409.51693847087955, - "y": 276.87686025954423 + "x": 409.51694, + "y": 276.87686 }, { "endCol": 8, @@ -10415,8 +10415,8 @@ "yScale": 1 }, { - "x": -0.006129631949988834, - "y": 2.9232787876503608 + "x": -0.00613, + "y": 2.92328 }, [ { @@ -10478,127 +10478,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 427.2378186538534, - "y": 282.9169452074889 + "x": 427.23782, + "y": 282.91695 }, { "body": null, "index": 1, "isInternal": false, - "x": 425.09881865385347, - "y": 288.7909452074889 + "x": 425.09882, + "y": 288.79095 }, { "body": null, "index": 2, "isInternal": false, - "x": 421.08081865385344, - "y": 293.5799452074889 + "x": 421.08082, + "y": 293.57995 }, { "body": null, "index": 3, "isInternal": false, - "x": 415.66681865385345, - "y": 296.7049452074889 + "x": 415.66682, + "y": 296.70495 }, { "body": null, "index": 4, "isInternal": false, - "x": 409.51081865385345, - "y": 297.7909452074889 + "x": 409.51082, + "y": 297.79095 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.35481865385344, - "y": 296.7049452074889 + "x": 403.35482, + "y": 296.70495 }, { "body": null, "index": 6, "isInternal": false, - "x": 397.94081865385346, - "y": 293.5799452074889 + "x": 397.94082, + "y": 293.57995 }, { "body": null, "index": 7, "isInternal": false, - "x": 393.9228186538534, - "y": 288.7909452074889 + "x": 393.92282, + "y": 288.79095 }, { "body": null, "index": 8, "isInternal": false, - "x": 391.7838186538535, - "y": 282.9169452074889 + "x": 391.78382, + "y": 282.91695 }, { "body": null, "index": 9, "isInternal": false, - "x": 391.7838186538535, - "y": 276.6649452074889 + "x": 391.78382, + "y": 276.66495 }, { "body": null, "index": 10, "isInternal": false, - "x": 393.9228186538534, - "y": 270.79094520748896 + "x": 393.92282, + "y": 270.79095 }, { "body": null, "index": 11, "isInternal": false, - "x": 397.94081865385346, - "y": 266.00194520748903 + "x": 397.94082, + "y": 266.00195 }, { "body": null, "index": 12, "isInternal": false, - "x": 403.35481865385344, - "y": 262.87694520748903 + "x": 403.35482, + "y": 262.87695 }, { "body": null, "index": 13, "isInternal": false, - "x": 409.51081865385345, - "y": 261.790945207489 + "x": 409.51082, + "y": 261.79095 }, { "body": null, "index": 14, "isInternal": false, - "x": 415.66681865385345, - "y": 262.87694520748903 + "x": 415.66682, + "y": 262.87695 }, { "body": null, "index": 15, "isInternal": false, - "x": 421.08081865385344, - "y": 266.00194520748903 + "x": 421.08082, + "y": 266.00195 }, { "body": null, "index": 16, "isInternal": false, - "x": 425.09881865385347, - "y": 270.79094520748896 + "x": 425.09882, + "y": 270.79095 }, { "body": null, "index": 17, "isInternal": false, - "x": 427.2378186538534, - "y": 276.6649452074889 + "x": 427.23782, + "y": 276.66495 }, [], [ @@ -10827,7 +10827,7 @@ "bodyB": null, "id": 30, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1174 }, @@ -10861,7 +10861,7 @@ "bodyB": null, "id": 31, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1178 }, @@ -10895,7 +10895,7 @@ "bodyB": null, "id": 32, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1182 }, @@ -10929,7 +10929,7 @@ "bodyB": null, "id": 33, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1186 }, @@ -10963,7 +10963,7 @@ "bodyB": null, "id": 34, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1190 }, @@ -10997,7 +10997,7 @@ "bodyB": null, "id": 35, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1194 }, @@ -11031,7 +11031,7 @@ "bodyB": null, "id": 36, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1198 }, @@ -11065,7 +11065,7 @@ "bodyB": null, "id": 37, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1202 }, @@ -11133,7 +11133,7 @@ "bodyB": null, "id": 39, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1210 }, @@ -11201,7 +11201,7 @@ "bodyB": null, "id": 41, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1218 }, @@ -11235,7 +11235,7 @@ "bodyB": null, "id": 42, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1222 }, @@ -11303,7 +11303,7 @@ "bodyB": null, "id": 44, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1230 }, @@ -11337,7 +11337,7 @@ "bodyB": null, "id": 45, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1234 }, @@ -11405,7 +11405,7 @@ "bodyB": null, "id": 47, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1242 }, @@ -11439,7 +11439,7 @@ "bodyB": null, "id": 48, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1246 }, @@ -11507,7 +11507,7 @@ "bodyB": null, "id": 50, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1254 }, @@ -11541,7 +11541,7 @@ "bodyB": null, "id": 51, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1258 }, @@ -11575,7 +11575,7 @@ "bodyB": null, "id": 52, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1262 }, @@ -11609,7 +11609,7 @@ "bodyB": null, "id": 53, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1266 }, @@ -11643,7 +11643,7 @@ "bodyB": null, "id": 54, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1270 }, @@ -11711,7 +11711,7 @@ "bodyB": null, "id": 56, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1278 }, @@ -11779,7 +11779,7 @@ "bodyB": null, "id": 58, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1286 }, @@ -11813,7 +11813,7 @@ "bodyB": null, "id": 59, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1290 }, @@ -11881,7 +11881,7 @@ "bodyB": null, "id": 61, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1298 }, @@ -11915,7 +11915,7 @@ "bodyB": null, "id": 62, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1302 }, @@ -11983,7 +11983,7 @@ "bodyB": null, "id": 64, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1310 }, @@ -12017,7 +12017,7 @@ "bodyB": null, "id": 65, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1314 }, @@ -12085,7 +12085,7 @@ "bodyB": null, "id": 67, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1322 }, @@ -12119,7 +12119,7 @@ "bodyB": null, "id": 68, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1326 }, @@ -12153,7 +12153,7 @@ "bodyB": null, "id": 69, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1330 }, @@ -12187,7 +12187,7 @@ "bodyB": null, "id": 70, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1334 }, @@ -12221,7 +12221,7 @@ "bodyB": null, "id": 71, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1338 }, @@ -12289,7 +12289,7 @@ "bodyB": null, "id": 73, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1346 }, @@ -12357,7 +12357,7 @@ "bodyB": null, "id": 75, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1354 }, @@ -12391,7 +12391,7 @@ "bodyB": null, "id": 76, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1358 }, @@ -12459,7 +12459,7 @@ "bodyB": null, "id": 78, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1366 }, @@ -12493,7 +12493,7 @@ "bodyB": null, "id": 79, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1370 }, @@ -12561,7 +12561,7 @@ "bodyB": null, "id": 81, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1378 }, @@ -12595,7 +12595,7 @@ "bodyB": null, "id": 82, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1382 }, @@ -12663,7 +12663,7 @@ "bodyB": null, "id": 84, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1390 }, @@ -12697,7 +12697,7 @@ "bodyB": null, "id": 85, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1394 }, @@ -12731,7 +12731,7 @@ "bodyB": null, "id": 86, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1398 }, @@ -12765,7 +12765,7 @@ "bodyB": null, "id": 87, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1402 }, @@ -12799,7 +12799,7 @@ "bodyB": null, "id": 88, "label": "Constraint", - "length": 35.45399999999995, + "length": 35.454, "pointA": { "#": 1406 }, @@ -12867,7 +12867,7 @@ "bodyB": null, "id": 90, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1414 }, @@ -12935,7 +12935,7 @@ "bodyB": null, "id": 92, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1422 }, @@ -12969,7 +12969,7 @@ "bodyB": null, "id": 93, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1426 }, @@ -13037,7 +13037,7 @@ "bodyB": null, "id": 95, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1434 }, @@ -13071,7 +13071,7 @@ "bodyB": null, "id": 96, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1438 }, @@ -13139,7 +13139,7 @@ "bodyB": null, "id": 98, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1446 }, @@ -13173,7 +13173,7 @@ "bodyB": null, "id": 99, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1450 }, @@ -13241,7 +13241,7 @@ "bodyB": null, "id": 101, "label": "Constraint", - "length": 50.527082995162075, + "length": 50.52708, "pointA": { "#": 1458 }, @@ -13362,7 +13362,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1464 }, @@ -13391,11 +13391,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -13417,7 +13417,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13456,32 +13456,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -13497,11 +13497,11 @@ }, { "x": 279.424, - "y": 347.15975476702494 + "y": 347.15975 }, { "x": 250, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -13519,7 +13519,7 @@ }, { "x": 264.712, - "y": 332.44775476702495 + "y": 332.44775 }, { "x": 0, @@ -13527,7 +13527,7 @@ }, { "x": 264.712, - "y": 329.5404840519894 + "y": 329.54048 }, { "endCol": 5, @@ -13551,7 +13551,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13608,119 +13608,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 335.37375476702493 + "y": 335.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 340.78175476702495 + "x": 277.184, + "y": 340.78175 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 344.9197547670249 + "y": 344.91975 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 347.15975476702494 + "y": 347.15975 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 347.15975476702494 + "y": 347.15975 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 344.9197547670249 + "y": 344.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 340.78175476702495 + "x": 252.24, + "y": 340.78175 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 335.37375476702493 + "y": 335.37375 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 329.52175476702496 + "y": 329.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 324.11375476702494 + "x": 252.24, + "y": 324.11375 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 319.97575476702497 + "y": 319.97575 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 319.97575476702497 + "y": 319.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 324.11375476702494 + "x": 277.184, + "y": 324.11375 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 329.52175476702496 + "y": 329.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1504 }, @@ -13749,11 +13749,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -13775,7 +13775,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13814,32 +13814,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -13854,12 +13854,12 @@ } }, { - "x": 308.84799999999996, - "y": 347.15975476702494 + "x": 308.848, + "y": 347.15975 }, { "x": 279.424, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -13876,16 +13876,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 332.44775476702495 + "x": 294.136, + "y": 332.44775 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 329.5404840519894 + "x": 294.136, + "y": 329.54048 }, { "endCol": 6, @@ -13909,7 +13909,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -13965,120 +13965,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 335.37375476702493 + "x": 308.848, + "y": 335.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 340.78175476702495 + "x": 306.608, + "y": 340.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 344.9197547670249 + "x": 302.47, + "y": 344.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 347.15975476702494 + "x": 297.062, + "y": 347.15975 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 347.15975476702494 + "y": 347.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 344.9197547670249 + "x": 285.802, + "y": 344.91975 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 340.78175476702495 + "y": 340.78175 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 335.37375476702493 + "y": 335.37375 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 329.52175476702496 + "y": 329.52175 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 324.11375476702494 + "y": 324.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 319.97575476702497 + "x": 285.802, + "y": 319.97575 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 317.73575476702496 + "x": 297.062, + "y": 317.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 319.97575476702497 + "x": 302.47, + "y": 319.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 324.11375476702494 + "x": 306.608, + "y": 324.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 329.52175476702496 + "x": 308.848, + "y": 329.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1544 }, @@ -14107,11 +14107,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -14133,7 +14133,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14172,32 +14172,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -14212,12 +14212,12 @@ } }, { - "x": 338.27199999999993, - "y": 347.15975476702494 + "x": 338.272, + "y": 347.15975 }, { - "x": 308.84799999999996, - "y": 317.73575476702496 + "x": 308.848, + "y": 317.73575 }, { "category": 1, @@ -14234,16 +14234,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 332.44775476702495 + "x": 323.56, + "y": 332.44775 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 329.5404840519894 + "x": 323.56, + "y": 329.54048 }, { "endCol": 7, @@ -14267,7 +14267,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -14323,120 +14323,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 335.37375476702493 + "x": 338.272, + "y": 335.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 340.78175476702495 + "x": 336.032, + "y": 340.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 344.9197547670249 + "x": 331.894, + "y": 344.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 347.15975476702494 + "x": 326.486, + "y": 347.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 347.15975476702494 + "x": 320.634, + "y": 347.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 344.9197547670249 + "x": 315.226, + "y": 344.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 340.78175476702495 + "x": 311.088, + "y": 340.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 335.37375476702493 + "x": 308.848, + "y": 335.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 329.52175476702496 + "x": 308.848, + "y": 329.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 324.11375476702494 + "x": 311.088, + "y": 324.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 319.97575476702497 + "x": 315.226, + "y": 319.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 317.73575476702496 + "x": 320.634, + "y": 317.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 317.73575476702496 + "x": 326.486, + "y": 317.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 319.97575476702497 + "x": 331.894, + "y": 319.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 324.11375476702494 + "x": 336.032, + "y": 324.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 329.52175476702496 + "x": 338.272, + "y": 329.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1584 }, @@ -14465,11 +14465,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -14491,7 +14491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14530,32 +14530,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -14570,12 +14570,12 @@ } }, { - "x": 367.6959999999999, - "y": 347.15975476702494 + "x": 367.696, + "y": 347.15975 }, { - "x": 338.27199999999993, - "y": 317.73575476702496 + "x": 338.272, + "y": 317.73575 }, { "category": 1, @@ -14592,16 +14592,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 332.44775476702495 + "x": 352.984, + "y": 332.44775 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 329.5404840519894 + "x": 352.984, + "y": 329.54048 }, { "endCol": 7, @@ -14625,7 +14625,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -14681,120 +14681,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 335.37375476702493 + "x": 367.696, + "y": 335.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 340.78175476702495 + "x": 365.456, + "y": 340.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 344.9197547670249 + "x": 361.318, + "y": 344.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 347.15975476702494 + "x": 355.91, + "y": 347.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 347.15975476702494 + "x": 350.058, + "y": 347.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 344.9197547670249 + "x": 344.65, + "y": 344.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 340.78175476702495 + "x": 340.512, + "y": 340.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 335.37375476702493 + "x": 338.272, + "y": 335.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 329.52175476702496 + "x": 338.272, + "y": 329.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 324.11375476702494 + "x": 340.512, + "y": 324.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 319.97575476702497 + "x": 344.65, + "y": 319.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 317.73575476702496 + "x": 350.058, + "y": 317.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 317.73575476702496 + "x": 355.91, + "y": 317.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 319.97575476702497 + "x": 361.318, + "y": 319.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 324.11375476702494 + "x": 365.456, + "y": 324.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 329.52175476702496 + "x": 367.696, + "y": 329.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1624 }, @@ -14823,11 +14823,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -14849,7 +14849,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14888,32 +14888,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -14928,12 +14928,12 @@ } }, { - "x": 397.1199999999999, - "y": 347.15975476702494 + "x": 397.12, + "y": 347.15975 }, { - "x": 367.6959999999999, - "y": 317.73575476702496 + "x": 367.696, + "y": 317.73575 }, { "category": 1, @@ -14950,16 +14950,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 332.44775476702495 + "x": 382.408, + "y": 332.44775 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 329.5404840519894 + "x": 382.408, + "y": 329.54048 }, { "endCol": 8, @@ -14983,7 +14983,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -15039,120 +15039,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 335.37375476702493 + "x": 397.12, + "y": 335.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 340.78175476702495 + "x": 394.88, + "y": 340.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 344.9197547670249 + "x": 390.742, + "y": 344.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 347.15975476702494 + "x": 385.334, + "y": 347.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 347.15975476702494 + "x": 379.482, + "y": 347.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 344.9197547670249 + "x": 374.074, + "y": 344.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 340.78175476702495 + "x": 369.936, + "y": 340.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 335.37375476702493 + "x": 367.696, + "y": 335.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 329.52175476702496 + "x": 367.696, + "y": 329.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 324.11375476702494 + "x": 369.936, + "y": 324.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 319.97575476702497 + "x": 374.074, + "y": 319.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 317.73575476702496 + "x": 379.482, + "y": 317.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 317.73575476702496 + "x": 385.334, + "y": 317.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 319.97575476702497 + "x": 390.742, + "y": 319.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 324.11375476702494 + "x": 394.88, + "y": 324.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 329.52175476702496 + "x": 397.12, + "y": 329.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1664 }, @@ -15181,11 +15181,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -15207,7 +15207,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15246,32 +15246,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -15286,12 +15286,12 @@ } }, { - "x": 426.54399999999987, - "y": 347.15975476702494 + "x": 426.544, + "y": 347.15975 }, { - "x": 397.1199999999999, - "y": 317.73575476702496 + "x": 397.12, + "y": 317.73575 }, { "category": 1, @@ -15308,16 +15308,16 @@ "y": 0 }, { - "x": 411.8319999999999, - "y": 332.44775476702495 + "x": 411.832, + "y": 332.44775 }, { "x": 0, "y": 0 }, { - "x": 411.8319999999999, - "y": 329.5404840519894 + "x": 411.832, + "y": 329.54048 }, { "endCol": 8, @@ -15341,7 +15341,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -15397,120 +15397,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 426.54399999999987, - "y": 335.37375476702493 + "x": 426.544, + "y": 335.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 424.30399999999986, - "y": 340.78175476702495 + "x": 424.304, + "y": 340.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 420.1659999999999, - "y": 344.9197547670249 + "x": 420.166, + "y": 344.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 414.75799999999987, - "y": 347.15975476702494 + "x": 414.758, + "y": 347.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 408.9059999999999, - "y": 347.15975476702494 + "x": 408.906, + "y": 347.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.4979999999999, - "y": 344.9197547670249 + "x": 403.498, + "y": 344.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 399.3599999999999, - "y": 340.78175476702495 + "x": 399.36, + "y": 340.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 397.1199999999999, - "y": 335.37375476702493 + "x": 397.12, + "y": 335.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 397.1199999999999, - "y": 329.52175476702496 + "x": 397.12, + "y": 329.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 399.3599999999999, - "y": 324.11375476702494 + "x": 399.36, + "y": 324.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 403.4979999999999, - "y": 319.97575476702497 + "x": 403.498, + "y": 319.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 408.9059999999999, - "y": 317.73575476702496 + "x": 408.906, + "y": 317.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 414.75799999999987, - "y": 317.73575476702496 + "x": 414.758, + "y": 317.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 420.1659999999999, - "y": 319.97575476702497 + "x": 420.166, + "y": 319.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 424.30399999999986, - "y": 324.11375476702494 + "x": 424.304, + "y": 324.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 426.54399999999987, - "y": 329.52175476702496 + "x": 426.544, + "y": 329.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1704 }, @@ -15539,11 +15539,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -15565,7 +15565,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15604,32 +15604,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -15644,12 +15644,12 @@ } }, { - "x": 455.96799999999985, - "y": 347.15975476702494 + "x": 455.968, + "y": 347.15975 }, { - "x": 426.54399999999987, - "y": 317.73575476702496 + "x": 426.544, + "y": 317.73575 }, { "category": 1, @@ -15666,16 +15666,16 @@ "y": 0 }, { - "x": 441.25599999999986, - "y": 332.44775476702495 + "x": 441.256, + "y": 332.44775 }, { "x": 0, "y": 0 }, { - "x": 441.25599999999986, - "y": 329.5404840519894 + "x": 441.256, + "y": 329.54048 }, { "endCol": 9, @@ -15699,7 +15699,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -15755,120 +15755,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 455.96799999999985, - "y": 335.37375476702493 + "x": 455.968, + "y": 335.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.72799999999984, - "y": 340.78175476702495 + "x": 453.728, + "y": 340.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.58999999999986, - "y": 344.9197547670249 + "x": 449.59, + "y": 344.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 444.18199999999985, - "y": 347.15975476702494 + "x": 444.182, + "y": 347.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 438.32999999999987, - "y": 347.15975476702494 + "x": 438.33, + "y": 347.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 432.92199999999985, - "y": 344.9197547670249 + "x": 432.922, + "y": 344.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 428.7839999999999, - "y": 340.78175476702495 + "x": 428.784, + "y": 340.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 426.54399999999987, - "y": 335.37375476702493 + "x": 426.544, + "y": 335.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 426.54399999999987, - "y": 329.52175476702496 + "x": 426.544, + "y": 329.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 428.7839999999999, - "y": 324.11375476702494 + "x": 428.784, + "y": 324.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 432.92199999999985, - "y": 319.97575476702497 + "x": 432.922, + "y": 319.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 438.32999999999987, - "y": 317.73575476702496 + "x": 438.33, + "y": 317.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.18199999999985, - "y": 317.73575476702496 + "x": 444.182, + "y": 317.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.58999999999986, - "y": 319.97575476702497 + "x": 449.59, + "y": 319.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 453.72799999999984, - "y": 324.11375476702494 + "x": 453.728, + "y": 324.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 455.96799999999985, - "y": 329.52175476702496 + "x": 455.968, + "y": 329.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1744 }, @@ -15897,11 +15897,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -15923,7 +15923,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15962,32 +15962,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -16002,12 +16002,12 @@ } }, { - "x": 485.3919999999998, - "y": 347.15975476702494 + "x": 485.392, + "y": 347.15975 }, { - "x": 455.96799999999985, - "y": 317.73575476702496 + "x": 455.968, + "y": 317.73575 }, { "category": 1, @@ -16024,16 +16024,16 @@ "y": 0 }, { - "x": 470.67999999999984, - "y": 332.44775476702495 + "x": 470.68, + "y": 332.44775 }, { "x": 0, "y": 0 }, { - "x": 470.67999999999984, - "y": 329.5404840519894 + "x": 470.68, + "y": 329.54048 }, { "endCol": 10, @@ -16057,7 +16057,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16113,120 +16113,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 485.3919999999998, - "y": 335.37375476702493 + "x": 485.392, + "y": 335.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 483.1519999999998, - "y": 340.78175476702495 + "x": 483.152, + "y": 340.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.01399999999984, - "y": 344.9197547670249 + "x": 479.014, + "y": 344.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 473.6059999999998, - "y": 347.15975476702494 + "x": 473.606, + "y": 347.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 467.75399999999985, - "y": 347.15975476702494 + "x": 467.754, + "y": 347.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.34599999999983, - "y": 344.9197547670249 + "x": 462.346, + "y": 344.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 458.20799999999986, - "y": 340.78175476702495 + "x": 458.208, + "y": 340.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 455.96799999999985, - "y": 335.37375476702493 + "x": 455.968, + "y": 335.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.96799999999985, - "y": 329.52175476702496 + "x": 455.968, + "y": 329.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.20799999999986, - "y": 324.11375476702494 + "x": 458.208, + "y": 324.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 462.34599999999983, - "y": 319.97575476702497 + "x": 462.346, + "y": 319.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 467.75399999999985, - "y": 317.73575476702496 + "x": 467.754, + "y": 317.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 473.6059999999998, - "y": 317.73575476702496 + "x": 473.606, + "y": 317.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 479.01399999999984, - "y": 319.97575476702497 + "x": 479.014, + "y": 319.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 483.1519999999998, - "y": 324.11375476702494 + "x": 483.152, + "y": 324.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 485.3919999999998, - "y": 329.52175476702496 + "x": 485.392, + "y": 329.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1784 }, @@ -16255,11 +16255,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -16281,7 +16281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16320,32 +16320,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -16361,11 +16361,11 @@ }, { "x": 279.424, - "y": 376.5837547670249 + "y": 376.58375 }, { "x": 250, - "y": 347.15975476702494 + "y": 347.15975 }, { "category": 1, @@ -16383,7 +16383,7 @@ }, { "x": 264.712, - "y": 361.8717547670249 + "y": 361.87175 }, { "x": 0, @@ -16391,7 +16391,7 @@ }, { "x": 264.712, - "y": 358.96448405198936 + "y": 358.96448 }, { "endCol": 5, @@ -16415,7 +16415,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16472,119 +16472,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 364.7977547670249 + "y": 364.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 370.2057547670249 + "x": 277.184, + "y": 370.20575 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 374.3437547670249 + "y": 374.34375 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 376.5837547670249 + "y": 376.58375 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 376.5837547670249 + "y": 376.58375 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 374.3437547670249 + "y": 374.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 370.2057547670249 + "x": 252.24, + "y": 370.20575 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 364.7977547670249 + "y": 364.79775 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 358.94575476702494 + "y": 358.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 353.5377547670249 + "x": 252.24, + "y": 353.53775 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 349.39975476702494 + "y": 349.39975 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 347.15975476702494 + "y": 347.15975 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 347.15975476702494 + "y": 347.15975 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 349.39975476702494 + "y": 349.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 353.5377547670249 + "x": 277.184, + "y": 353.53775 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 358.94575476702494 + "y": 358.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1824 }, @@ -16613,11 +16613,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -16639,7 +16639,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16678,32 +16678,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -16718,12 +16718,12 @@ } }, { - "x": 308.84799999999996, - "y": 376.5837547670249 + "x": 308.848, + "y": 376.58375 }, { "x": 279.424, - "y": 347.15975476702494 + "y": 347.15975 }, { "category": 1, @@ -16740,16 +16740,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 361.8717547670249 + "x": 294.136, + "y": 361.87175 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 358.96448405198936 + "x": 294.136, + "y": 358.96448 }, { "endCol": 6, @@ -16773,7 +16773,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -16829,120 +16829,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 364.7977547670249 + "x": 308.848, + "y": 364.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 370.2057547670249 + "x": 306.608, + "y": 370.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 374.3437547670249 + "x": 302.47, + "y": 374.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 376.5837547670249 + "x": 297.062, + "y": 376.58375 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 376.5837547670249 + "y": 376.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 374.3437547670249 + "x": 285.802, + "y": 374.34375 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 370.2057547670249 + "y": 370.20575 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 364.7977547670249 + "y": 364.79775 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 358.94575476702494 + "y": 358.94575 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 353.5377547670249 + "y": 353.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 349.39975476702494 + "x": 285.802, + "y": 349.39975 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 347.15975476702494 + "y": 347.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 347.15975476702494 + "x": 297.062, + "y": 347.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 349.39975476702494 + "x": 302.47, + "y": 349.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 353.5377547670249 + "x": 306.608, + "y": 353.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 358.94575476702494 + "x": 308.848, + "y": 358.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1864 }, @@ -16971,11 +16971,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -16997,7 +16997,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17036,32 +17036,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -17076,12 +17076,12 @@ } }, { - "x": 338.27199999999993, - "y": 376.5837547670249 + "x": 338.272, + "y": 376.58375 }, { - "x": 308.84799999999996, - "y": 347.15975476702494 + "x": 308.848, + "y": 347.15975 }, { "category": 1, @@ -17098,16 +17098,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 361.8717547670249 + "x": 323.56, + "y": 361.87175 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 358.96448405198936 + "x": 323.56, + "y": 358.96448 }, { "endCol": 7, @@ -17131,7 +17131,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17187,120 +17187,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 364.7977547670249 + "x": 338.272, + "y": 364.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 370.2057547670249 + "x": 336.032, + "y": 370.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 374.3437547670249 + "x": 331.894, + "y": 374.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 376.5837547670249 + "x": 326.486, + "y": 376.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 376.5837547670249 + "x": 320.634, + "y": 376.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 374.3437547670249 + "x": 315.226, + "y": 374.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 370.2057547670249 + "x": 311.088, + "y": 370.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 364.7977547670249 + "x": 308.848, + "y": 364.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 358.94575476702494 + "x": 308.848, + "y": 358.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 353.5377547670249 + "x": 311.088, + "y": 353.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 349.39975476702494 + "x": 315.226, + "y": 349.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 347.15975476702494 + "x": 320.634, + "y": 347.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 347.15975476702494 + "x": 326.486, + "y": 347.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 349.39975476702494 + "x": 331.894, + "y": 349.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 353.5377547670249 + "x": 336.032, + "y": 353.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 358.94575476702494 + "x": 338.272, + "y": 358.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1904 }, @@ -17329,11 +17329,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -17355,7 +17355,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17394,32 +17394,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -17434,12 +17434,12 @@ } }, { - "x": 367.6959999999999, - "y": 376.5837547670249 + "x": 367.696, + "y": 376.58375 }, { - "x": 338.27199999999993, - "y": 347.15975476702494 + "x": 338.272, + "y": 347.15975 }, { "category": 1, @@ -17456,16 +17456,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 361.8717547670249 + "x": 352.984, + "y": 361.87175 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 358.96448405198936 + "x": 352.984, + "y": 358.96448 }, { "endCol": 7, @@ -17489,7 +17489,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17545,120 +17545,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 364.7977547670249 + "x": 367.696, + "y": 364.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 370.2057547670249 + "x": 365.456, + "y": 370.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 374.3437547670249 + "x": 361.318, + "y": 374.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 376.5837547670249 + "x": 355.91, + "y": 376.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 376.5837547670249 + "x": 350.058, + "y": 376.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 374.3437547670249 + "x": 344.65, + "y": 374.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 370.2057547670249 + "x": 340.512, + "y": 370.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 364.7977547670249 + "x": 338.272, + "y": 364.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 358.94575476702494 + "x": 338.272, + "y": 358.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 353.5377547670249 + "x": 340.512, + "y": 353.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 349.39975476702494 + "x": 344.65, + "y": 349.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 347.15975476702494 + "x": 350.058, + "y": 347.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 347.15975476702494 + "x": 355.91, + "y": 347.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 349.39975476702494 + "x": 361.318, + "y": 349.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 353.5377547670249 + "x": 365.456, + "y": 353.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 358.94575476702494 + "x": 367.696, + "y": 358.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1944 }, @@ -17687,11 +17687,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -17713,7 +17713,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17752,32 +17752,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -17792,12 +17792,12 @@ } }, { - "x": 397.1199999999999, - "y": 376.5837547670249 + "x": 397.12, + "y": 376.58375 }, { - "x": 367.6959999999999, - "y": 347.15975476702494 + "x": 367.696, + "y": 347.15975 }, { "category": 1, @@ -17814,16 +17814,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 361.8717547670249 + "x": 382.408, + "y": 361.87175 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 358.96448405198936 + "x": 382.408, + "y": 358.96448 }, { "endCol": 8, @@ -17847,7 +17847,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -17903,120 +17903,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 364.7977547670249 + "x": 397.12, + "y": 364.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 370.2057547670249 + "x": 394.88, + "y": 370.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 374.3437547670249 + "x": 390.742, + "y": 374.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 376.5837547670249 + "x": 385.334, + "y": 376.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 376.5837547670249 + "x": 379.482, + "y": 376.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 374.3437547670249 + "x": 374.074, + "y": 374.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 370.2057547670249 + "x": 369.936, + "y": 370.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 364.7977547670249 + "x": 367.696, + "y": 364.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 358.94575476702494 + "x": 367.696, + "y": 358.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 353.5377547670249 + "x": 369.936, + "y": 353.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 349.39975476702494 + "x": 374.074, + "y": 349.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 347.15975476702494 + "x": 379.482, + "y": 347.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 347.15975476702494 + "x": 385.334, + "y": 347.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 349.39975476702494 + "x": 390.742, + "y": 349.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 353.5377547670249 + "x": 394.88, + "y": 353.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 358.94575476702494 + "x": 397.12, + "y": 358.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 1984 }, @@ -18045,11 +18045,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -18071,7 +18071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18110,32 +18110,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -18150,12 +18150,12 @@ } }, { - "x": 426.54399999999987, - "y": 376.5837547670249 + "x": 426.544, + "y": 376.58375 }, { - "x": 397.1199999999999, - "y": 347.15975476702494 + "x": 397.12, + "y": 347.15975 }, { "category": 1, @@ -18172,16 +18172,16 @@ "y": 0 }, { - "x": 411.8319999999999, - "y": 361.8717547670249 + "x": 411.832, + "y": 361.87175 }, { "x": 0, "y": 0 }, { - "x": 411.8319999999999, - "y": 358.96448405198936 + "x": 411.832, + "y": 358.96448 }, { "endCol": 8, @@ -18205,7 +18205,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18261,120 +18261,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 426.54399999999987, - "y": 364.7977547670249 + "x": 426.544, + "y": 364.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 424.30399999999986, - "y": 370.2057547670249 + "x": 424.304, + "y": 370.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 420.1659999999999, - "y": 374.3437547670249 + "x": 420.166, + "y": 374.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 414.75799999999987, - "y": 376.5837547670249 + "x": 414.758, + "y": 376.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 408.9059999999999, - "y": 376.5837547670249 + "x": 408.906, + "y": 376.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.4979999999999, - "y": 374.3437547670249 + "x": 403.498, + "y": 374.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 399.3599999999999, - "y": 370.2057547670249 + "x": 399.36, + "y": 370.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 397.1199999999999, - "y": 364.7977547670249 + "x": 397.12, + "y": 364.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 397.1199999999999, - "y": 358.94575476702494 + "x": 397.12, + "y": 358.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 399.3599999999999, - "y": 353.5377547670249 + "x": 399.36, + "y": 353.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 403.4979999999999, - "y": 349.39975476702494 + "x": 403.498, + "y": 349.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 408.9059999999999, - "y": 347.15975476702494 + "x": 408.906, + "y": 347.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 414.75799999999987, - "y": 347.15975476702494 + "x": 414.758, + "y": 347.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 420.1659999999999, - "y": 349.39975476702494 + "x": 420.166, + "y": 349.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 424.30399999999986, - "y": 353.5377547670249 + "x": 424.304, + "y": 353.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 426.54399999999987, - "y": 358.94575476702494 + "x": 426.544, + "y": 358.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2024 }, @@ -18403,11 +18403,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -18429,7 +18429,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18468,32 +18468,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -18508,12 +18508,12 @@ } }, { - "x": 455.96799999999985, - "y": 376.5837547670249 + "x": 455.968, + "y": 376.58375 }, { - "x": 426.54399999999987, - "y": 347.15975476702494 + "x": 426.544, + "y": 347.15975 }, { "category": 1, @@ -18530,16 +18530,16 @@ "y": 0 }, { - "x": 441.25599999999986, - "y": 361.8717547670249 + "x": 441.256, + "y": 361.87175 }, { "x": 0, "y": 0 }, { - "x": 441.25599999999986, - "y": 358.96448405198936 + "x": 441.256, + "y": 358.96448 }, { "endCol": 9, @@ -18563,7 +18563,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18619,120 +18619,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 455.96799999999985, - "y": 364.7977547670249 + "x": 455.968, + "y": 364.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.72799999999984, - "y": 370.2057547670249 + "x": 453.728, + "y": 370.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.58999999999986, - "y": 374.3437547670249 + "x": 449.59, + "y": 374.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 444.18199999999985, - "y": 376.5837547670249 + "x": 444.182, + "y": 376.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 438.32999999999987, - "y": 376.5837547670249 + "x": 438.33, + "y": 376.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 432.92199999999985, - "y": 374.3437547670249 + "x": 432.922, + "y": 374.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 428.7839999999999, - "y": 370.2057547670249 + "x": 428.784, + "y": 370.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 426.54399999999987, - "y": 364.7977547670249 + "x": 426.544, + "y": 364.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 426.54399999999987, - "y": 358.94575476702494 + "x": 426.544, + "y": 358.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 428.7839999999999, - "y": 353.5377547670249 + "x": 428.784, + "y": 353.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 432.92199999999985, - "y": 349.39975476702494 + "x": 432.922, + "y": 349.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 438.32999999999987, - "y": 347.15975476702494 + "x": 438.33, + "y": 347.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.18199999999985, - "y": 347.15975476702494 + "x": 444.182, + "y": 347.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.58999999999986, - "y": 349.39975476702494 + "x": 449.59, + "y": 349.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 453.72799999999984, - "y": 353.5377547670249 + "x": 453.728, + "y": 353.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 455.96799999999985, - "y": 358.94575476702494 + "x": 455.968, + "y": 358.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2064 }, @@ -18761,11 +18761,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -18787,7 +18787,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18826,32 +18826,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -18866,12 +18866,12 @@ } }, { - "x": 485.3919999999998, - "y": 376.5837547670249 + "x": 485.392, + "y": 376.58375 }, { - "x": 455.96799999999985, - "y": 347.15975476702494 + "x": 455.968, + "y": 347.15975 }, { "category": 1, @@ -18888,16 +18888,16 @@ "y": 0 }, { - "x": 470.67999999999984, - "y": 361.8717547670249 + "x": 470.68, + "y": 361.87175 }, { "x": 0, "y": 0 }, { - "x": 470.67999999999984, - "y": 358.96448405198936 + "x": 470.68, + "y": 358.96448 }, { "endCol": 10, @@ -18921,7 +18921,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -18977,120 +18977,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 485.3919999999998, - "y": 364.7977547670249 + "x": 485.392, + "y": 364.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 483.1519999999998, - "y": 370.2057547670249 + "x": 483.152, + "y": 370.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.01399999999984, - "y": 374.3437547670249 + "x": 479.014, + "y": 374.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 473.6059999999998, - "y": 376.5837547670249 + "x": 473.606, + "y": 376.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 467.75399999999985, - "y": 376.5837547670249 + "x": 467.754, + "y": 376.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.34599999999983, - "y": 374.3437547670249 + "x": 462.346, + "y": 374.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 458.20799999999986, - "y": 370.2057547670249 + "x": 458.208, + "y": 370.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 455.96799999999985, - "y": 364.7977547670249 + "x": 455.968, + "y": 364.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.96799999999985, - "y": 358.94575476702494 + "x": 455.968, + "y": 358.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.20799999999986, - "y": 353.5377547670249 + "x": 458.208, + "y": 353.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 462.34599999999983, - "y": 349.39975476702494 + "x": 462.346, + "y": 349.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 467.75399999999985, - "y": 347.15975476702494 + "x": 467.754, + "y": 347.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 473.6059999999998, - "y": 347.15975476702494 + "x": 473.606, + "y": 347.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 479.01399999999984, - "y": 349.39975476702494 + "x": 479.014, + "y": 349.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 483.1519999999998, - "y": 353.5377547670249 + "x": 483.152, + "y": 353.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 485.3919999999998, - "y": 358.94575476702494 + "x": 485.392, + "y": 358.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2104 }, @@ -19119,11 +19119,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -19145,7 +19145,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19184,32 +19184,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -19225,11 +19225,11 @@ }, { "x": 279.424, - "y": 406.0077547670249 + "y": 406.00775 }, { "x": 250, - "y": 376.5837547670249 + "y": 376.58375 }, { "category": 1, @@ -19247,7 +19247,7 @@ }, { "x": 264.712, - "y": 391.2957547670249 + "y": 391.29575 }, { "x": 0, @@ -19255,7 +19255,7 @@ }, { "x": 264.712, - "y": 388.38848405198934 + "y": 388.38848 }, { "endCol": 5, @@ -19279,7 +19279,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -19336,119 +19336,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 394.2217547670249 + "y": 394.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 399.6297547670249 + "x": 277.184, + "y": 399.62975 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 403.7677547670249 + "y": 403.76775 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 406.0077547670249 + "y": 406.00775 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 406.0077547670249 + "y": 406.00775 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 403.7677547670249 + "y": 403.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 399.6297547670249 + "x": 252.24, + "y": 399.62975 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 394.2217547670249 + "y": 394.22175 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 388.3697547670249 + "y": 388.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 382.9617547670249 + "x": 252.24, + "y": 382.96175 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 378.8237547670249 + "y": 378.82375 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 376.5837547670249 + "y": 376.58375 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 376.5837547670249 + "y": 376.58375 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 378.8237547670249 + "y": 378.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 382.9617547670249 + "x": 277.184, + "y": 382.96175 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 388.3697547670249 + "y": 388.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2144 }, @@ -19477,11 +19477,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -19503,7 +19503,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19542,32 +19542,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -19582,12 +19582,12 @@ } }, { - "x": 308.84799999999996, - "y": 406.0077547670249 + "x": 308.848, + "y": 406.00775 }, { "x": 279.424, - "y": 376.5837547670249 + "y": 376.58375 }, { "category": 1, @@ -19604,16 +19604,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 391.2957547670249 + "x": 294.136, + "y": 391.29575 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 388.38848405198934 + "x": 294.136, + "y": 388.38848 }, { "endCol": 6, @@ -19637,7 +19637,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -19693,120 +19693,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 394.2217547670249 + "x": 308.848, + "y": 394.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 399.6297547670249 + "x": 306.608, + "y": 399.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 403.7677547670249 + "x": 302.47, + "y": 403.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 406.0077547670249 + "x": 297.062, + "y": 406.00775 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 406.0077547670249 + "y": 406.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 403.7677547670249 + "x": 285.802, + "y": 403.76775 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 399.6297547670249 + "y": 399.62975 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 394.2217547670249 + "y": 394.22175 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 388.3697547670249 + "y": 388.36975 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 382.9617547670249 + "y": 382.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 378.8237547670249 + "x": 285.802, + "y": 378.82375 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 376.5837547670249 + "y": 376.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 376.5837547670249 + "x": 297.062, + "y": 376.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 378.8237547670249 + "x": 302.47, + "y": 378.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 382.9617547670249 + "x": 306.608, + "y": 382.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 388.3697547670249 + "x": 308.848, + "y": 388.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2184 }, @@ -19835,11 +19835,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -19861,7 +19861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19900,32 +19900,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -19940,12 +19940,12 @@ } }, { - "x": 338.27199999999993, - "y": 406.0077547670249 + "x": 338.272, + "y": 406.00775 }, { - "x": 308.84799999999996, - "y": 376.5837547670249 + "x": 308.848, + "y": 376.58375 }, { "category": 1, @@ -19962,16 +19962,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 391.2957547670249 + "x": 323.56, + "y": 391.29575 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 388.38848405198934 + "x": 323.56, + "y": 388.38848 }, { "endCol": 7, @@ -19995,7 +19995,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -20051,120 +20051,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 394.2217547670249 + "x": 338.272, + "y": 394.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 399.6297547670249 + "x": 336.032, + "y": 399.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 403.7677547670249 + "x": 331.894, + "y": 403.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 406.0077547670249 + "x": 326.486, + "y": 406.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 406.0077547670249 + "x": 320.634, + "y": 406.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 403.7677547670249 + "x": 315.226, + "y": 403.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 399.6297547670249 + "x": 311.088, + "y": 399.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 394.2217547670249 + "x": 308.848, + "y": 394.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 388.3697547670249 + "x": 308.848, + "y": 388.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 382.9617547670249 + "x": 311.088, + "y": 382.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 378.8237547670249 + "x": 315.226, + "y": 378.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 376.5837547670249 + "x": 320.634, + "y": 376.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 376.5837547670249 + "x": 326.486, + "y": 376.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 378.8237547670249 + "x": 331.894, + "y": 378.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 382.9617547670249 + "x": 336.032, + "y": 382.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 388.3697547670249 + "x": 338.272, + "y": 388.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2224 }, @@ -20193,11 +20193,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -20219,7 +20219,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20258,32 +20258,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -20298,12 +20298,12 @@ } }, { - "x": 367.6959999999999, - "y": 406.0077547670249 + "x": 367.696, + "y": 406.00775 }, { - "x": 338.27199999999993, - "y": 376.5837547670249 + "x": 338.272, + "y": 376.58375 }, { "category": 1, @@ -20320,16 +20320,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 391.2957547670249 + "x": 352.984, + "y": 391.29575 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 388.38848405198934 + "x": 352.984, + "y": 388.38848 }, { "endCol": 7, @@ -20353,7 +20353,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -20409,120 +20409,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 394.2217547670249 + "x": 367.696, + "y": 394.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 399.6297547670249 + "x": 365.456, + "y": 399.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 403.7677547670249 + "x": 361.318, + "y": 403.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 406.0077547670249 + "x": 355.91, + "y": 406.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 406.0077547670249 + "x": 350.058, + "y": 406.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 403.7677547670249 + "x": 344.65, + "y": 403.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 399.6297547670249 + "x": 340.512, + "y": 399.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 394.2217547670249 + "x": 338.272, + "y": 394.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 388.3697547670249 + "x": 338.272, + "y": 388.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 382.9617547670249 + "x": 340.512, + "y": 382.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 378.8237547670249 + "x": 344.65, + "y": 378.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 376.5837547670249 + "x": 350.058, + "y": 376.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 376.5837547670249 + "x": 355.91, + "y": 376.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 378.8237547670249 + "x": 361.318, + "y": 378.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 382.9617547670249 + "x": 365.456, + "y": 382.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 388.3697547670249 + "x": 367.696, + "y": 388.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2264 }, @@ -20551,11 +20551,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -20577,7 +20577,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20616,32 +20616,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -20656,12 +20656,12 @@ } }, { - "x": 397.1199999999999, - "y": 406.0077547670249 + "x": 397.12, + "y": 406.00775 }, { - "x": 367.6959999999999, - "y": 376.5837547670249 + "x": 367.696, + "y": 376.58375 }, { "category": 1, @@ -20678,16 +20678,16 @@ "y": 0 }, { - "x": 382.4079999999999, - "y": 391.2957547670249 + "x": 382.408, + "y": 391.29575 }, { "x": 0, "y": 0 }, { - "x": 382.4079999999999, - "y": 388.38848405198934 + "x": 382.408, + "y": 388.38848 }, { "endCol": 8, @@ -20711,7 +20711,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -20767,120 +20767,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 397.1199999999999, - "y": 394.2217547670249 + "x": 397.12, + "y": 394.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.8799999999999, - "y": 399.6297547670249 + "x": 394.88, + "y": 399.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.7419999999999, - "y": 403.7677547670249 + "x": 390.742, + "y": 403.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 385.3339999999999, - "y": 406.0077547670249 + "x": 385.334, + "y": 406.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 379.4819999999999, - "y": 406.0077547670249 + "x": 379.482, + "y": 406.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.0739999999999, - "y": 403.7677547670249 + "x": 374.074, + "y": 403.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 369.9359999999999, - "y": 399.6297547670249 + "x": 369.936, + "y": 399.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 367.6959999999999, - "y": 394.2217547670249 + "x": 367.696, + "y": 394.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 367.6959999999999, - "y": 388.3697547670249 + "x": 367.696, + "y": 388.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 369.9359999999999, - "y": 382.9617547670249 + "x": 369.936, + "y": 382.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 374.0739999999999, - "y": 378.8237547670249 + "x": 374.074, + "y": 378.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 379.4819999999999, - "y": 376.5837547670249 + "x": 379.482, + "y": 376.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 385.3339999999999, - "y": 376.5837547670249 + "x": 385.334, + "y": 376.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 390.7419999999999, - "y": 378.8237547670249 + "x": 390.742, + "y": 378.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 394.8799999999999, - "y": 382.9617547670249 + "x": 394.88, + "y": 382.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 397.1199999999999, - "y": 388.3697547670249 + "x": 397.12, + "y": 388.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2304 }, @@ -20909,11 +20909,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -20935,7 +20935,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20974,32 +20974,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -21014,12 +21014,12 @@ } }, { - "x": 426.54399999999987, - "y": 406.0077547670249 + "x": 426.544, + "y": 406.00775 }, { - "x": 397.1199999999999, - "y": 376.5837547670249 + "x": 397.12, + "y": 376.58375 }, { "category": 1, @@ -21036,16 +21036,16 @@ "y": 0 }, { - "x": 411.8319999999999, - "y": 391.2957547670249 + "x": 411.832, + "y": 391.29575 }, { "x": 0, "y": 0 }, { - "x": 411.8319999999999, - "y": 388.38848405198934 + "x": 411.832, + "y": 388.38848 }, { "endCol": 8, @@ -21069,7 +21069,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -21125,120 +21125,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 426.54399999999987, - "y": 394.2217547670249 + "x": 426.544, + "y": 394.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 424.30399999999986, - "y": 399.6297547670249 + "x": 424.304, + "y": 399.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 420.1659999999999, - "y": 403.7677547670249 + "x": 420.166, + "y": 403.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 414.75799999999987, - "y": 406.0077547670249 + "x": 414.758, + "y": 406.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 408.9059999999999, - "y": 406.0077547670249 + "x": 408.906, + "y": 406.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 403.4979999999999, - "y": 403.7677547670249 + "x": 403.498, + "y": 403.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 399.3599999999999, - "y": 399.6297547670249 + "x": 399.36, + "y": 399.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 397.1199999999999, - "y": 394.2217547670249 + "x": 397.12, + "y": 394.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 397.1199999999999, - "y": 388.3697547670249 + "x": 397.12, + "y": 388.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 399.3599999999999, - "y": 382.9617547670249 + "x": 399.36, + "y": 382.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 403.4979999999999, - "y": 378.8237547670249 + "x": 403.498, + "y": 378.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 408.9059999999999, - "y": 376.5837547670249 + "x": 408.906, + "y": 376.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 414.75799999999987, - "y": 376.5837547670249 + "x": 414.758, + "y": 376.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 420.1659999999999, - "y": 378.8237547670249 + "x": 420.166, + "y": 378.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 424.30399999999986, - "y": 382.9617547670249 + "x": 424.304, + "y": 382.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 426.54399999999987, - "y": 388.3697547670249 + "x": 426.544, + "y": 388.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2344 }, @@ -21267,11 +21267,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -21293,7 +21293,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21332,32 +21332,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -21372,12 +21372,12 @@ } }, { - "x": 455.96799999999985, - "y": 406.0077547670249 + "x": 455.968, + "y": 406.00775 }, { - "x": 426.54399999999987, - "y": 376.5837547670249 + "x": 426.544, + "y": 376.58375 }, { "category": 1, @@ -21394,16 +21394,16 @@ "y": 0 }, { - "x": 441.25599999999986, - "y": 391.2957547670249 + "x": 441.256, + "y": 391.29575 }, { "x": 0, "y": 0 }, { - "x": 441.25599999999986, - "y": 388.38848405198934 + "x": 441.256, + "y": 388.38848 }, { "endCol": 9, @@ -21427,7 +21427,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -21483,120 +21483,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 455.96799999999985, - "y": 394.2217547670249 + "x": 455.968, + "y": 394.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 453.72799999999984, - "y": 399.6297547670249 + "x": 453.728, + "y": 399.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.58999999999986, - "y": 403.7677547670249 + "x": 449.59, + "y": 403.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 444.18199999999985, - "y": 406.0077547670249 + "x": 444.182, + "y": 406.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 438.32999999999987, - "y": 406.0077547670249 + "x": 438.33, + "y": 406.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 432.92199999999985, - "y": 403.7677547670249 + "x": 432.922, + "y": 403.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 428.7839999999999, - "y": 399.6297547670249 + "x": 428.784, + "y": 399.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 426.54399999999987, - "y": 394.2217547670249 + "x": 426.544, + "y": 394.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 426.54399999999987, - "y": 388.3697547670249 + "x": 426.544, + "y": 388.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 428.7839999999999, - "y": 382.9617547670249 + "x": 428.784, + "y": 382.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 432.92199999999985, - "y": 378.8237547670249 + "x": 432.922, + "y": 378.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 438.32999999999987, - "y": 376.5837547670249 + "x": 438.33, + "y": 376.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.18199999999985, - "y": 376.5837547670249 + "x": 444.182, + "y": 376.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.58999999999986, - "y": 378.8237547670249 + "x": 449.59, + "y": 378.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 453.72799999999984, - "y": 382.9617547670249 + "x": 453.728, + "y": 382.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 455.96799999999985, - "y": 388.3697547670249 + "x": 455.968, + "y": 388.36975 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2384 }, @@ -21625,11 +21625,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -21651,7 +21651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21690,32 +21690,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -21730,12 +21730,12 @@ } }, { - "x": 485.3919999999998, - "y": 406.0077547670249 + "x": 485.392, + "y": 406.00775 }, { - "x": 455.96799999999985, - "y": 376.5837547670249 + "x": 455.968, + "y": 376.58375 }, { "category": 1, @@ -21752,16 +21752,16 @@ "y": 0 }, { - "x": 470.67999999999984, - "y": 391.2957547670249 + "x": 470.68, + "y": 391.29575 }, { "x": 0, "y": 0 }, { - "x": 470.67999999999984, - "y": 388.38848405198934 + "x": 470.68, + "y": 388.38848 }, { "endCol": 10, @@ -21785,7 +21785,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -21841,113 +21841,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 485.3919999999998, - "y": 394.2217547670249 + "x": 485.392, + "y": 394.22175 }, { "body": null, "index": 1, "isInternal": false, - "x": 483.1519999999998, - "y": 399.6297547670249 + "x": 483.152, + "y": 399.62975 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.01399999999984, - "y": 403.7677547670249 + "x": 479.014, + "y": 403.76775 }, { "body": null, "index": 3, "isInternal": false, - "x": 473.6059999999998, - "y": 406.0077547670249 + "x": 473.606, + "y": 406.00775 }, { "body": null, "index": 4, "isInternal": false, - "x": 467.75399999999985, - "y": 406.0077547670249 + "x": 467.754, + "y": 406.00775 }, { "body": null, "index": 5, "isInternal": false, - "x": 462.34599999999983, - "y": 403.7677547670249 + "x": 462.346, + "y": 403.76775 }, { "body": null, "index": 6, "isInternal": false, - "x": 458.20799999999986, - "y": 399.6297547670249 + "x": 458.208, + "y": 399.62975 }, { "body": null, "index": 7, "isInternal": false, - "x": 455.96799999999985, - "y": 394.2217547670249 + "x": 455.968, + "y": 394.22175 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.96799999999985, - "y": 388.3697547670249 + "x": 455.968, + "y": 388.36975 }, { "body": null, "index": 9, "isInternal": false, - "x": 458.20799999999986, - "y": 382.9617547670249 + "x": 458.208, + "y": 382.96175 }, { "body": null, "index": 10, "isInternal": false, - "x": 462.34599999999983, - "y": 378.8237547670249 + "x": 462.346, + "y": 378.82375 }, { "body": null, "index": 11, "isInternal": false, - "x": 467.75399999999985, - "y": 376.5837547670249 + "x": 467.754, + "y": 376.58375 }, { "body": null, "index": 12, "isInternal": false, - "x": 473.6059999999998, - "y": 376.5837547670249 + "x": 473.606, + "y": 376.58375 }, { "body": null, "index": 13, "isInternal": false, - "x": 479.01399999999984, - "y": 378.8237547670249 + "x": 479.014, + "y": 378.82375 }, { "body": null, "index": 14, "isInternal": false, - "x": 483.1519999999998, - "y": 382.9617547670249 + "x": 483.152, + "y": 382.96175 }, { "body": null, "index": 15, "isInternal": false, - "x": 485.3919999999998, - "y": 388.3697547670249 + "x": 485.392, + "y": 388.36975 }, [], [ @@ -22155,7 +22155,7 @@ "bodyB": null, "id": 127, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2426 }, @@ -22189,7 +22189,7 @@ "bodyB": null, "id": 128, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2430 }, @@ -22223,7 +22223,7 @@ "bodyB": null, "id": 129, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2434 }, @@ -22257,7 +22257,7 @@ "bodyB": null, "id": 130, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2438 }, @@ -22291,7 +22291,7 @@ "bodyB": null, "id": 131, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2442 }, @@ -22325,7 +22325,7 @@ "bodyB": null, "id": 132, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2446 }, @@ -22359,7 +22359,7 @@ "bodyB": null, "id": 133, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2450 }, @@ -22393,7 +22393,7 @@ "bodyB": null, "id": 134, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2454 }, @@ -22427,7 +22427,7 @@ "bodyB": null, "id": 135, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2458 }, @@ -22461,7 +22461,7 @@ "bodyB": null, "id": 136, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2462 }, @@ -22495,7 +22495,7 @@ "bodyB": null, "id": 137, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2466 }, @@ -22529,7 +22529,7 @@ "bodyB": null, "id": 138, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2470 }, @@ -22563,7 +22563,7 @@ "bodyB": null, "id": 139, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2474 }, @@ -22597,7 +22597,7 @@ "bodyB": null, "id": 140, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2478 }, @@ -22631,7 +22631,7 @@ "bodyB": null, "id": 141, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2482 }, @@ -22665,7 +22665,7 @@ "bodyB": null, "id": 142, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2486 }, @@ -22699,7 +22699,7 @@ "bodyB": null, "id": 143, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2490 }, @@ -22733,7 +22733,7 @@ "bodyB": null, "id": 144, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2494 }, @@ -22767,7 +22767,7 @@ "bodyB": null, "id": 145, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2498 }, @@ -22801,7 +22801,7 @@ "bodyB": null, "id": 146, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2502 }, @@ -22835,7 +22835,7 @@ "bodyB": null, "id": 147, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2506 }, @@ -22869,7 +22869,7 @@ "bodyB": null, "id": 148, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2510 }, @@ -22903,7 +22903,7 @@ "bodyB": null, "id": 149, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2514 }, @@ -22937,7 +22937,7 @@ "bodyB": null, "id": 150, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2518 }, @@ -22971,7 +22971,7 @@ "bodyB": null, "id": 151, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2522 }, @@ -23005,7 +23005,7 @@ "bodyB": null, "id": 152, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2526 }, @@ -23039,7 +23039,7 @@ "bodyB": null, "id": 153, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2530 }, @@ -23073,7 +23073,7 @@ "bodyB": null, "id": 154, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2534 }, @@ -23107,7 +23107,7 @@ "bodyB": null, "id": 155, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2538 }, @@ -23141,7 +23141,7 @@ "bodyB": null, "id": 156, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2542 }, @@ -23175,7 +23175,7 @@ "bodyB": null, "id": 157, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2546 }, @@ -23209,7 +23209,7 @@ "bodyB": null, "id": 158, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2550 }, @@ -23243,7 +23243,7 @@ "bodyB": null, "id": 159, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2554 }, @@ -23277,7 +23277,7 @@ "bodyB": null, "id": 160, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2558 }, @@ -23311,7 +23311,7 @@ "bodyB": null, "id": 161, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2562 }, @@ -23345,7 +23345,7 @@ "bodyB": null, "id": 162, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2566 }, @@ -23379,7 +23379,7 @@ "bodyB": null, "id": 163, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2570 }, @@ -23413,7 +23413,7 @@ "bodyB": null, "id": 164, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2574 }, @@ -23447,7 +23447,7 @@ "bodyB": null, "id": 165, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2578 }, @@ -23481,7 +23481,7 @@ "bodyB": null, "id": 166, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2582 }, @@ -23515,7 +23515,7 @@ "bodyB": null, "id": 167, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2586 }, @@ -23549,7 +23549,7 @@ "bodyB": null, "id": 168, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2590 }, @@ -23583,7 +23583,7 @@ "bodyB": null, "id": 169, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2594 }, @@ -23617,7 +23617,7 @@ "bodyB": null, "id": 170, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2598 }, @@ -23651,7 +23651,7 @@ "bodyB": null, "id": 171, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2602 }, @@ -23685,7 +23685,7 @@ "bodyB": null, "id": 172, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2606 }, @@ -23719,7 +23719,7 @@ "bodyB": null, "id": 173, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2610 }, @@ -23753,7 +23753,7 @@ "bodyB": null, "id": 174, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2614 }, @@ -23787,7 +23787,7 @@ "bodyB": null, "id": 175, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2618 }, @@ -23821,7 +23821,7 @@ "bodyB": null, "id": 176, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2622 }, @@ -23855,7 +23855,7 @@ "bodyB": null, "id": 177, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2626 }, @@ -23889,7 +23889,7 @@ "bodyB": null, "id": 178, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2630 }, @@ -23923,7 +23923,7 @@ "bodyB": null, "id": 179, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2634 }, @@ -23957,7 +23957,7 @@ "bodyB": null, "id": 180, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2638 }, @@ -23991,7 +23991,7 @@ "bodyB": null, "id": 181, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2642 }, @@ -24025,7 +24025,7 @@ "bodyB": null, "id": 182, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2646 }, @@ -24059,7 +24059,7 @@ "bodyB": null, "id": 183, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2650 }, @@ -24093,7 +24093,7 @@ "bodyB": null, "id": 184, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2654 }, @@ -24127,7 +24127,7 @@ "bodyB": null, "id": 185, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2658 }, @@ -24161,7 +24161,7 @@ "bodyB": null, "id": 186, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2662 }, @@ -24195,7 +24195,7 @@ "bodyB": null, "id": 187, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2666 }, @@ -24229,7 +24229,7 @@ "bodyB": null, "id": 188, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2670 }, @@ -24263,7 +24263,7 @@ "bodyB": null, "id": 189, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2674 }, @@ -24297,7 +24297,7 @@ "bodyB": null, "id": 190, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 2678 }, @@ -24331,7 +24331,7 @@ "bodyB": null, "id": 191, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 2682 }, @@ -24428,7 +24428,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2688 }, @@ -24457,11 +24457,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -24483,7 +24483,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24522,32 +24522,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -24563,11 +24563,11 @@ }, { "x": 279.424, - "y": 447.15975476702494 + "y": 447.15975 }, { "x": 250, - "y": 417.73575476702496 + "y": 417.73575 }, { "category": 1, @@ -24585,7 +24585,7 @@ }, { "x": 264.712, - "y": 432.44775476702495 + "y": 432.44775 }, { "x": 0, @@ -24593,7 +24593,7 @@ }, { "x": 264.712, - "y": 429.5404840519894 + "y": 429.54048 }, { "endCol": 5, @@ -24617,7 +24617,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -24674,119 +24674,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 435.37375476702493 + "y": 435.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 440.78175476702495 + "x": 277.184, + "y": 440.78175 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 444.9197547670249 + "y": 444.91975 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 447.15975476702494 + "y": 447.15975 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 447.15975476702494 + "y": 447.15975 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 444.9197547670249 + "y": 444.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 440.78175476702495 + "x": 252.24, + "y": 440.78175 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 435.37375476702493 + "y": 435.37375 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 429.52175476702496 + "y": 429.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 424.11375476702494 + "x": 252.24, + "y": 424.11375 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 419.97575476702497 + "y": 419.97575 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 419.97575476702497 + "y": 419.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 424.11375476702494 + "x": 277.184, + "y": 424.11375 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 429.52175476702496 + "y": 429.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2728 }, @@ -24815,11 +24815,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -24841,7 +24841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24880,32 +24880,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -24920,12 +24920,12 @@ } }, { - "x": 308.84799999999996, - "y": 447.15975476702494 + "x": 308.848, + "y": 447.15975 }, { "x": 279.424, - "y": 417.73575476702496 + "y": 417.73575 }, { "category": 1, @@ -24942,16 +24942,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 432.44775476702495 + "x": 294.136, + "y": 432.44775 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 429.5404840519894 + "x": 294.136, + "y": 429.54048 }, { "endCol": 6, @@ -24975,7 +24975,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -25031,120 +25031,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 435.37375476702493 + "x": 308.848, + "y": 435.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 440.78175476702495 + "x": 306.608, + "y": 440.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 444.9197547670249 + "x": 302.47, + "y": 444.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 447.15975476702494 + "x": 297.062, + "y": 447.15975 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 447.15975476702494 + "y": 447.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 444.9197547670249 + "x": 285.802, + "y": 444.91975 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 440.78175476702495 + "y": 440.78175 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 435.37375476702493 + "y": 435.37375 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 429.52175476702496 + "y": 429.52175 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 424.11375476702494 + "y": 424.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 419.97575476702497 + "x": 285.802, + "y": 419.97575 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 417.73575476702496 + "y": 417.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 417.73575476702496 + "x": 297.062, + "y": 417.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 419.97575476702497 + "x": 302.47, + "y": 419.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 424.11375476702494 + "x": 306.608, + "y": 424.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 429.52175476702496 + "x": 308.848, + "y": 429.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2768 }, @@ -25173,11 +25173,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -25199,7 +25199,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25238,32 +25238,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -25278,12 +25278,12 @@ } }, { - "x": 338.27199999999993, - "y": 447.15975476702494 + "x": 338.272, + "y": 447.15975 }, { - "x": 308.84799999999996, - "y": 417.73575476702496 + "x": 308.848, + "y": 417.73575 }, { "category": 1, @@ -25300,16 +25300,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 432.44775476702495 + "x": 323.56, + "y": 432.44775 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 429.5404840519894 + "x": 323.56, + "y": 429.54048 }, { "endCol": 7, @@ -25333,7 +25333,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -25389,120 +25389,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 435.37375476702493 + "x": 338.272, + "y": 435.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 440.78175476702495 + "x": 336.032, + "y": 440.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 444.9197547670249 + "x": 331.894, + "y": 444.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 447.15975476702494 + "x": 326.486, + "y": 447.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 447.15975476702494 + "x": 320.634, + "y": 447.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 444.9197547670249 + "x": 315.226, + "y": 444.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 440.78175476702495 + "x": 311.088, + "y": 440.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 435.37375476702493 + "x": 308.848, + "y": 435.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 429.52175476702496 + "x": 308.848, + "y": 429.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 424.11375476702494 + "x": 311.088, + "y": 424.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 419.97575476702497 + "x": 315.226, + "y": 419.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 417.73575476702496 + "x": 320.634, + "y": 417.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 417.73575476702496 + "x": 326.486, + "y": 417.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 419.97575476702497 + "x": 331.894, + "y": 419.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 424.11375476702494 + "x": 336.032, + "y": 424.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 429.52175476702496 + "x": 338.272, + "y": 429.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2808 }, @@ -25531,11 +25531,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -25557,7 +25557,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25596,32 +25596,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -25636,12 +25636,12 @@ } }, { - "x": 367.6959999999999, - "y": 447.15975476702494 + "x": 367.696, + "y": 447.15975 }, { - "x": 338.27199999999993, - "y": 417.73575476702496 + "x": 338.272, + "y": 417.73575 }, { "category": 1, @@ -25658,16 +25658,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 432.44775476702495 + "x": 352.984, + "y": 432.44775 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 429.5404840519894 + "x": 352.984, + "y": 429.54048 }, { "endCol": 7, @@ -25691,7 +25691,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -25747,120 +25747,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 435.37375476702493 + "x": 367.696, + "y": 435.37375 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 440.78175476702495 + "x": 365.456, + "y": 440.78175 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 444.9197547670249 + "x": 361.318, + "y": 444.91975 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 447.15975476702494 + "x": 355.91, + "y": 447.15975 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 447.15975476702494 + "x": 350.058, + "y": 447.15975 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 444.9197547670249 + "x": 344.65, + "y": 444.91975 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 440.78175476702495 + "x": 340.512, + "y": 440.78175 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 435.37375476702493 + "x": 338.272, + "y": 435.37375 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 429.52175476702496 + "x": 338.272, + "y": 429.52175 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 424.11375476702494 + "x": 340.512, + "y": 424.11375 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 419.97575476702497 + "x": 344.65, + "y": 419.97575 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 417.73575476702496 + "x": 350.058, + "y": 417.73575 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 417.73575476702496 + "x": 355.91, + "y": 417.73575 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 419.97575476702497 + "x": 361.318, + "y": 419.97575 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 424.11375476702494 + "x": 365.456, + "y": 424.11375 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 429.52175476702496 + "x": 367.696, + "y": 429.52175 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2848 }, @@ -25889,11 +25889,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -25915,7 +25915,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25954,32 +25954,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -25995,11 +25995,11 @@ }, { "x": 279.424, - "y": 476.5837547670249 + "y": 476.58375 }, { "x": 250, - "y": 447.15975476702494 + "y": 447.15975 }, { "category": 1, @@ -26017,7 +26017,7 @@ }, { "x": 264.712, - "y": 461.8717547670249 + "y": 461.87175 }, { "x": 0, @@ -26025,7 +26025,7 @@ }, { "x": 264.712, - "y": 458.96448405198936 + "y": 458.96448 }, { "endCol": 5, @@ -26049,7 +26049,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -26106,119 +26106,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 464.7977547670249 + "y": 464.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 470.2057547670249 + "x": 277.184, + "y": 470.20575 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 474.3437547670249 + "y": 474.34375 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 476.5837547670249 + "y": 476.58375 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 476.5837547670249 + "y": 476.58375 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 474.3437547670249 + "y": 474.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 470.2057547670249 + "x": 252.24, + "y": 470.20575 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 464.7977547670249 + "y": 464.79775 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 458.94575476702494 + "y": 458.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 453.5377547670249 + "x": 252.24, + "y": 453.53775 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 449.39975476702494 + "y": 449.39975 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 447.15975476702494 + "y": 447.15975 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 447.15975476702494 + "y": 447.15975 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 449.39975476702494 + "y": 449.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 453.5377547670249 + "x": 277.184, + "y": 453.53775 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 458.94575476702494 + "y": 458.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2888 }, @@ -26247,11 +26247,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -26273,7 +26273,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26312,32 +26312,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -26352,12 +26352,12 @@ } }, { - "x": 308.84799999999996, - "y": 476.5837547670249 + "x": 308.848, + "y": 476.58375 }, { "x": 279.424, - "y": 447.15975476702494 + "y": 447.15975 }, { "category": 1, @@ -26374,16 +26374,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 461.8717547670249 + "x": 294.136, + "y": 461.87175 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 458.96448405198936 + "x": 294.136, + "y": 458.96448 }, { "endCol": 6, @@ -26407,7 +26407,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -26463,120 +26463,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 464.7977547670249 + "x": 308.848, + "y": 464.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 470.2057547670249 + "x": 306.608, + "y": 470.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 474.3437547670249 + "x": 302.47, + "y": 474.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 476.5837547670249 + "x": 297.062, + "y": 476.58375 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 476.5837547670249 + "y": 476.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 474.3437547670249 + "x": 285.802, + "y": 474.34375 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 470.2057547670249 + "y": 470.20575 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 464.7977547670249 + "y": 464.79775 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 458.94575476702494 + "y": 458.94575 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 453.5377547670249 + "y": 453.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 449.39975476702494 + "x": 285.802, + "y": 449.39975 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 447.15975476702494 + "y": 447.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 447.15975476702494 + "x": 297.062, + "y": 447.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 449.39975476702494 + "x": 302.47, + "y": 449.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 453.5377547670249 + "x": 306.608, + "y": 453.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 458.94575476702494 + "x": 308.848, + "y": 458.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2928 }, @@ -26605,11 +26605,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -26631,7 +26631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26670,32 +26670,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -26710,12 +26710,12 @@ } }, { - "x": 338.27199999999993, - "y": 476.5837547670249 + "x": 338.272, + "y": 476.58375 }, { - "x": 308.84799999999996, - "y": 447.15975476702494 + "x": 308.848, + "y": 447.15975 }, { "category": 1, @@ -26732,16 +26732,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 461.8717547670249 + "x": 323.56, + "y": 461.87175 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 458.96448405198936 + "x": 323.56, + "y": 458.96448 }, { "endCol": 7, @@ -26765,7 +26765,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -26821,120 +26821,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 464.7977547670249 + "x": 338.272, + "y": 464.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 470.2057547670249 + "x": 336.032, + "y": 470.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 474.3437547670249 + "x": 331.894, + "y": 474.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 476.5837547670249 + "x": 326.486, + "y": 476.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 476.5837547670249 + "x": 320.634, + "y": 476.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 474.3437547670249 + "x": 315.226, + "y": 474.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 470.2057547670249 + "x": 311.088, + "y": 470.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 464.7977547670249 + "x": 308.848, + "y": 464.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 458.94575476702494 + "x": 308.848, + "y": 458.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 453.5377547670249 + "x": 311.088, + "y": 453.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 449.39975476702494 + "x": 315.226, + "y": 449.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 447.15975476702494 + "x": 320.634, + "y": 447.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 447.15975476702494 + "x": 326.486, + "y": 447.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 449.39975476702494 + "x": 331.894, + "y": 449.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 453.5377547670249 + "x": 336.032, + "y": 453.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 458.94575476702494 + "x": 338.272, + "y": 458.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 2968 }, @@ -26963,11 +26963,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -26989,7 +26989,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27028,32 +27028,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -27068,12 +27068,12 @@ } }, { - "x": 367.6959999999999, - "y": 476.5837547670249 + "x": 367.696, + "y": 476.58375 }, { - "x": 338.27199999999993, - "y": 447.15975476702494 + "x": 338.272, + "y": 447.15975 }, { "category": 1, @@ -27090,16 +27090,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 461.8717547670249 + "x": 352.984, + "y": 461.87175 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 458.96448405198936 + "x": 352.984, + "y": 458.96448 }, { "endCol": 7, @@ -27123,7 +27123,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -27179,120 +27179,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 464.7977547670249 + "x": 367.696, + "y": 464.79775 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 470.2057547670249 + "x": 365.456, + "y": 470.20575 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 474.3437547670249 + "x": 361.318, + "y": 474.34375 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 476.5837547670249 + "x": 355.91, + "y": 476.58375 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 476.5837547670249 + "x": 350.058, + "y": 476.58375 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 474.3437547670249 + "x": 344.65, + "y": 474.34375 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 470.2057547670249 + "x": 340.512, + "y": 470.20575 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 464.7977547670249 + "x": 338.272, + "y": 464.79775 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 458.94575476702494 + "x": 338.272, + "y": 458.94575 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 453.5377547670249 + "x": 340.512, + "y": 453.53775 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 449.39975476702494 + "x": 344.65, + "y": 449.39975 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 447.15975476702494 + "x": 350.058, + "y": 447.15975 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 447.15975476702494 + "x": 355.91, + "y": 447.15975 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 449.39975476702494 + "x": 361.318, + "y": 449.39975 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 453.5377547670249 + "x": 365.456, + "y": 453.53775 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 458.94575476702494 + "x": 367.696, + "y": 458.94575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3008 }, @@ -27321,11 +27321,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -27347,7 +27347,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27386,32 +27386,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -27427,11 +27427,11 @@ }, { "x": 279.424, - "y": 508.94002547606044 + "y": 508.94003 }, { "x": 250, - "y": 476.6187547510249 + "y": 476.61875 }, { "category": 1, @@ -27449,15 +27449,15 @@ }, { "x": 264.712, - "y": 491.33075475102487 + "y": 491.33075 }, { "x": 0, - "y": 0.020799994399968838 + "y": 0.0208 }, { "x": 264.712, - "y": 488.43948401998927 + "y": 488.43948 }, { "endCol": 5, @@ -27481,7 +27481,7 @@ }, { "x": 0, - "y": 2.891270731035604 + "y": 2.89127 }, [ { @@ -27538,119 +27538,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 494.25675475102486 + "y": 494.25675 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 499.6647547510249 + "x": 277.184, + "y": 499.66475 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 503.80275475102485 + "y": 503.80275 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 506.04275475102486 + "y": 506.04275 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 506.04275475102486 + "y": 506.04275 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 503.80275475102485 + "y": 503.80275 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 499.6647547510249 + "x": 252.24, + "y": 499.66475 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 494.25675475102486 + "y": 494.25675 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 488.4047547510249 + "y": 488.40475 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 482.99675475102487 + "x": 252.24, + "y": 482.99675 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 478.8587547510249 + "y": 478.85875 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 476.6187547510249 + "y": 476.61875 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 476.6187547510249 + "y": 476.61875 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 478.8587547510249 + "y": 478.85875 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 482.99675475102487 + "x": 277.184, + "y": 482.99675 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 488.4047547510249 + "y": 488.40475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3048 }, @@ -27679,11 +27679,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -27705,7 +27705,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27744,32 +27744,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -27784,12 +27784,12 @@ } }, { - "x": 308.84799999999996, - "y": 508.94002547606044 + "x": 308.848, + "y": 508.94003 }, { "x": 279.424, - "y": 476.6187547510249 + "y": 476.61875 }, { "category": 1, @@ -27806,16 +27806,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 491.33075475102487 + "x": 294.136, + "y": 491.33075 }, { "x": 0, - "y": 0.020799994399968838 + "y": 0.0208 }, { - "x": 294.13599999999997, - "y": 488.43948401998927 + "x": 294.136, + "y": 488.43948 }, { "endCol": 6, @@ -27839,7 +27839,7 @@ }, { "x": 0, - "y": 2.891270731035604 + "y": 2.89127 }, [ { @@ -27895,120 +27895,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 494.25675475102486 + "x": 308.848, + "y": 494.25675 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 499.6647547510249 + "x": 306.608, + "y": 499.66475 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 503.80275475102485 + "x": 302.47, + "y": 503.80275 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 506.04275475102486 + "x": 297.062, + "y": 506.04275 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 506.04275475102486 + "y": 506.04275 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 503.80275475102485 + "x": 285.802, + "y": 503.80275 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 499.6647547510249 + "y": 499.66475 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 494.25675475102486 + "y": 494.25675 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 488.4047547510249 + "y": 488.40475 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 482.99675475102487 + "y": 482.99675 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 478.8587547510249 + "x": 285.802, + "y": 478.85875 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 476.6187547510249 + "y": 476.61875 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 476.6187547510249 + "x": 297.062, + "y": 476.61875 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 478.8587547510249 + "x": 302.47, + "y": 478.85875 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 482.99675475102487 + "x": 306.608, + "y": 482.99675 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 488.4047547510249 + "x": 308.848, + "y": 488.40475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3088 }, @@ -28037,11 +28037,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -28063,7 +28063,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28102,32 +28102,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -28142,12 +28142,12 @@ } }, { - "x": 338.27199999999993, - "y": 508.94002547606044 + "x": 338.272, + "y": 508.94003 }, { - "x": 308.84799999999996, - "y": 476.6187547510249 + "x": 308.848, + "y": 476.61875 }, { "category": 1, @@ -28164,16 +28164,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 491.33075475102487 + "x": 323.56, + "y": 491.33075 }, { "x": 0, - "y": 0.020799994399968838 + "y": 0.0208 }, { - "x": 323.55999999999995, - "y": 488.43948401998927 + "x": 323.56, + "y": 488.43948 }, { "endCol": 7, @@ -28197,7 +28197,7 @@ }, { "x": 0, - "y": 2.891270731035604 + "y": 2.89127 }, [ { @@ -28253,120 +28253,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 494.25675475102486 + "x": 338.272, + "y": 494.25675 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 499.6647547510249 + "x": 336.032, + "y": 499.66475 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 503.80275475102485 + "x": 331.894, + "y": 503.80275 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 506.04275475102486 + "x": 326.486, + "y": 506.04275 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 506.04275475102486 + "x": 320.634, + "y": 506.04275 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 503.80275475102485 + "x": 315.226, + "y": 503.80275 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 499.6647547510249 + "x": 311.088, + "y": 499.66475 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 494.25675475102486 + "x": 308.848, + "y": 494.25675 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 488.4047547510249 + "x": 308.848, + "y": 488.40475 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 482.99675475102487 + "x": 311.088, + "y": 482.99675 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 478.8587547510249 + "x": 315.226, + "y": 478.85875 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 476.6187547510249 + "x": 320.634, + "y": 476.61875 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 476.6187547510249 + "x": 326.486, + "y": 476.61875 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 478.8587547510249 + "x": 331.894, + "y": 478.85875 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 482.99675475102487 + "x": 336.032, + "y": 482.99675 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 488.4047547510249 + "x": 338.272, + "y": 488.40475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3128 }, @@ -28395,11 +28395,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -28421,7 +28421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28460,32 +28460,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -28500,12 +28500,12 @@ } }, { - "x": 367.6959999999999, - "y": 508.94002547606044 + "x": 367.696, + "y": 508.94003 }, { - "x": 338.27199999999993, - "y": 476.6187547510249 + "x": 338.272, + "y": 476.61875 }, { "category": 1, @@ -28522,16 +28522,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 491.33075475102487 + "x": 352.984, + "y": 491.33075 }, { "x": 0, - "y": 0.020799994399968838 + "y": 0.0208 }, { - "x": 352.9839999999999, - "y": 488.43948401998927 + "x": 352.984, + "y": 488.43948 }, { "endCol": 7, @@ -28555,7 +28555,7 @@ }, { "x": 0, - "y": 2.891270731035604 + "y": 2.89127 }, [ { @@ -28611,120 +28611,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 494.25675475102486 + "x": 367.696, + "y": 494.25675 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 499.6647547510249 + "x": 365.456, + "y": 499.66475 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 503.80275475102485 + "x": 361.318, + "y": 503.80275 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 506.04275475102486 + "x": 355.91, + "y": 506.04275 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 506.04275475102486 + "x": 350.058, + "y": 506.04275 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 503.80275475102485 + "x": 344.65, + "y": 503.80275 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 499.6647547510249 + "x": 340.512, + "y": 499.66475 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 494.25675475102486 + "x": 338.272, + "y": 494.25675 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 488.4047547510249 + "x": 338.272, + "y": 488.40475 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 482.99675475102487 + "x": 340.512, + "y": 482.99675 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 478.8587547510249 + "x": 344.65, + "y": 478.85875 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 476.6187547510249 + "x": 350.058, + "y": 476.61875 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 476.6187547510249 + "x": 355.91, + "y": 476.61875 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 478.8587547510249 + "x": 361.318, + "y": 478.85875 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 482.99675475102487 + "x": 365.456, + "y": 482.99675 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 488.4047547510249 + "x": 367.696, + "y": 488.40475 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3168 }, @@ -28753,11 +28753,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -28779,7 +28779,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28818,32 +28818,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -28859,11 +28859,11 @@ }, { "x": 279.424, - "y": 538.3340254680609 + "y": 538.33403 }, { "x": 250, - "y": 505.99275476302483 + "y": 505.99275 }, { "category": 1, @@ -28881,7 +28881,7 @@ }, { "x": 264.712, - "y": 520.704754763025 + "y": 520.70475 }, { "x": 0, @@ -28889,7 +28889,7 @@ }, { "x": 264.712, - "y": 517.7814840639894 + "y": 517.78148 }, { "endCol": 5, @@ -28913,7 +28913,7 @@ }, { "x": 0, - "y": 2.9232706990355837 + "y": 2.92327 }, [ { @@ -28970,119 +28970,119 @@ "index": 0, "isInternal": false, "x": 279.424, - "y": 523.630754763025 + "y": 523.63075 }, { "body": null, "index": 1, "isInternal": false, - "x": 277.18399999999997, - "y": 529.0387547630253 + "x": 277.184, + "y": 529.03875 }, { "body": null, "index": 2, "isInternal": false, "x": 273.046, - "y": 533.1767547630253 + "y": 533.17675 }, { "body": null, "index": 3, "isInternal": false, "x": 267.638, - "y": 535.4167547630253 + "y": 535.41675 }, { "body": null, "index": 4, "isInternal": false, "x": 261.786, - "y": 535.4167547630253 + "y": 535.41675 }, { "body": null, "index": 5, "isInternal": false, "x": 256.378, - "y": 533.1767547630253 + "y": 533.17675 }, { "body": null, "index": 6, "isInternal": false, - "x": 252.23999999999998, - "y": 529.0387547630253 + "x": 252.24, + "y": 529.03875 }, { "body": null, "index": 7, "isInternal": false, "x": 250, - "y": 523.630754763025 + "y": 523.63075 }, { "body": null, "index": 8, "isInternal": false, "x": 250, - "y": 517.7787547630251 + "y": 517.77875 }, { "body": null, "index": 9, "isInternal": false, - "x": 252.23999999999998, - "y": 512.3707547630249 + "x": 252.24, + "y": 512.37075 }, { "body": null, "index": 10, "isInternal": false, "x": 256.378, - "y": 508.23275476302484 + "y": 508.23275 }, { "body": null, "index": 11, "isInternal": false, "x": 261.786, - "y": 505.99275476302483 + "y": 505.99275 }, { "body": null, "index": 12, "isInternal": false, "x": 267.638, - "y": 505.99275476302483 + "y": 505.99275 }, { "body": null, "index": 13, "isInternal": false, "x": 273.046, - "y": 508.23275476302484 + "y": 508.23275 }, { "body": null, "index": 14, "isInternal": false, - "x": 277.18399999999997, - "y": 512.3707547630249 + "x": 277.184, + "y": 512.37075 }, { "body": null, "index": 15, "isInternal": false, "x": 279.424, - "y": 517.7787547630251 + "y": 517.77875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3208 }, @@ -29111,11 +29111,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -29137,7 +29137,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29176,32 +29176,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -29216,12 +29216,12 @@ } }, { - "x": 308.84799999999996, - "y": 538.3340254680609 + "x": 308.848, + "y": 538.33403 }, { "x": 279.424, - "y": 505.99275476302483 + "y": 505.99275 }, { "category": 1, @@ -29238,16 +29238,16 @@ "y": 0 }, { - "x": 294.13599999999997, - "y": 520.704754763025 + "x": 294.136, + "y": 520.70475 }, { "x": 0, "y": 0 }, { - "x": 294.13599999999997, - "y": 517.7814840639894 + "x": 294.136, + "y": 517.78148 }, { "endCol": 6, @@ -29271,7 +29271,7 @@ }, { "x": 0, - "y": 2.9232706990355837 + "y": 2.92327 }, [ { @@ -29327,120 +29327,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 308.84799999999996, - "y": 523.630754763025 + "x": 308.848, + "y": 523.63075 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.60799999999995, - "y": 529.0387547630253 + "x": 306.608, + "y": 529.03875 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.46999999999997, - "y": 533.1767547630253 + "x": 302.47, + "y": 533.17675 }, { "body": null, "index": 3, "isInternal": false, - "x": 297.06199999999995, - "y": 535.4167547630253 + "x": 297.062, + "y": 535.41675 }, { "body": null, "index": 4, "isInternal": false, "x": 291.21, - "y": 535.4167547630253 + "y": 535.41675 }, { "body": null, "index": 5, "isInternal": false, - "x": 285.80199999999996, - "y": 533.1767547630253 + "x": 285.802, + "y": 533.17675 }, { "body": null, "index": 6, "isInternal": false, "x": 281.664, - "y": 529.0387547630253 + "y": 529.03875 }, { "body": null, "index": 7, "isInternal": false, "x": 279.424, - "y": 523.630754763025 + "y": 523.63075 }, { "body": null, "index": 8, "isInternal": false, "x": 279.424, - "y": 517.7787547630251 + "y": 517.77875 }, { "body": null, "index": 9, "isInternal": false, "x": 281.664, - "y": 512.3707547630249 + "y": 512.37075 }, { "body": null, "index": 10, "isInternal": false, - "x": 285.80199999999996, - "y": 508.23275476302484 + "x": 285.802, + "y": 508.23275 }, { "body": null, "index": 11, "isInternal": false, "x": 291.21, - "y": 505.99275476302483 + "y": 505.99275 }, { "body": null, "index": 12, "isInternal": false, - "x": 297.06199999999995, - "y": 505.99275476302483 + "x": 297.062, + "y": 505.99275 }, { "body": null, "index": 13, "isInternal": false, - "x": 302.46999999999997, - "y": 508.23275476302484 + "x": 302.47, + "y": 508.23275 }, { "body": null, "index": 14, "isInternal": false, - "x": 306.60799999999995, - "y": 512.3707547630249 + "x": 306.608, + "y": 512.37075 }, { "body": null, "index": 15, "isInternal": false, - "x": 308.84799999999996, - "y": 517.7787547630251 + "x": 308.848, + "y": 517.77875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3248 }, @@ -29469,11 +29469,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -29495,7 +29495,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29534,32 +29534,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -29574,12 +29574,12 @@ } }, { - "x": 338.27199999999993, - "y": 538.3340254680609 + "x": 338.272, + "y": 538.33403 }, { - "x": 308.84799999999996, - "y": 505.99275476302483 + "x": 308.848, + "y": 505.99275 }, { "category": 1, @@ -29596,16 +29596,16 @@ "y": 0 }, { - "x": 323.55999999999995, - "y": 520.704754763025 + "x": 323.56, + "y": 520.70475 }, { "x": 0, "y": 0 }, { - "x": 323.55999999999995, - "y": 517.7814840639894 + "x": 323.56, + "y": 517.78148 }, { "endCol": 7, @@ -29629,7 +29629,7 @@ }, { "x": 0, - "y": 2.9232706990355837 + "y": 2.92327 }, [ { @@ -29685,120 +29685,120 @@ "body": null, "index": 0, "isInternal": false, - "x": 338.27199999999993, - "y": 523.630754763025 + "x": 338.272, + "y": 523.63075 }, { "body": null, "index": 1, "isInternal": false, - "x": 336.0319999999999, - "y": 529.0387547630253 + "x": 336.032, + "y": 529.03875 }, { "body": null, "index": 2, "isInternal": false, - "x": 331.89399999999995, - "y": 533.1767547630253 + "x": 331.894, + "y": 533.17675 }, { "body": null, "index": 3, "isInternal": false, - "x": 326.48599999999993, - "y": 535.4167547630253 + "x": 326.486, + "y": 535.41675 }, { "body": null, "index": 4, "isInternal": false, - "x": 320.63399999999996, - "y": 535.4167547630253 + "x": 320.634, + "y": 535.41675 }, { "body": null, "index": 5, "isInternal": false, - "x": 315.22599999999994, - "y": 533.1767547630253 + "x": 315.226, + "y": 533.17675 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.08799999999997, - "y": 529.0387547630253 + "x": 311.088, + "y": 529.03875 }, { "body": null, "index": 7, "isInternal": false, - "x": 308.84799999999996, - "y": 523.630754763025 + "x": 308.848, + "y": 523.63075 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.84799999999996, - "y": 517.7787547630251 + "x": 308.848, + "y": 517.77875 }, { "body": null, "index": 9, "isInternal": false, - "x": 311.08799999999997, - "y": 512.3707547630249 + "x": 311.088, + "y": 512.37075 }, { "body": null, "index": 10, "isInternal": false, - "x": 315.22599999999994, - "y": 508.23275476302484 + "x": 315.226, + "y": 508.23275 }, { "body": null, "index": 11, "isInternal": false, - "x": 320.63399999999996, - "y": 505.99275476302483 + "x": 320.634, + "y": 505.99275 }, { "body": null, "index": 12, "isInternal": false, - "x": 326.48599999999993, - "y": 505.99275476302483 + "x": 326.486, + "y": 505.99275 }, { "body": null, "index": 13, "isInternal": false, - "x": 331.89399999999995, - "y": 508.23275476302484 + "x": 331.894, + "y": 508.23275 }, { "body": null, "index": 14, "isInternal": false, - "x": 336.0319999999999, - "y": 512.3707547630249 + "x": 336.032, + "y": 512.37075 }, { "body": null, "index": 15, "isInternal": false, - "x": 338.27199999999993, - "y": 517.7787547630251 + "x": 338.272, + "y": 517.77875 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 688.846648, + "area": 688.84665, "axes": { "#": 3288 }, @@ -29827,11 +29827,11 @@ ] }, "inverseInertia": 0, - "inverseMass": 1.451701917841081, + "inverseMass": 1.4517, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.688846648, + "mass": 0.68885, "motion": 0, "parent": null, "position": { @@ -29853,7 +29853,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29892,32 +29892,32 @@ } ], { - "x": -0.923883575943921, - "y": -0.3826736705093165 + "x": -0.92388, + "y": -0.38267 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826736705093165, - "y": -0.923883575943921 + "x": -0.38267, + "y": -0.92388 }, { "x": 0, "y": -1 }, { - "x": 0.3826736705093165, - "y": -0.923883575943921 + "x": 0.38267, + "y": -0.92388 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923883575943921, - "y": -0.3826736705093165 + "x": 0.92388, + "y": -0.38267 }, { "x": 1, @@ -29932,12 +29932,12 @@ } }, { - "x": 367.6959999999999, - "y": 538.3340254680609 + "x": 367.696, + "y": 538.33403 }, { - "x": 338.27199999999993, - "y": 505.99275476302483 + "x": 338.272, + "y": 505.99275 }, { "category": 1, @@ -29954,16 +29954,16 @@ "y": 0 }, { - "x": 352.9839999999999, - "y": 520.704754763025 + "x": 352.984, + "y": 520.70475 }, { "x": 0, "y": 0 }, { - "x": 352.9839999999999, - "y": 517.7814840639894 + "x": 352.984, + "y": 517.78148 }, { "endCol": 7, @@ -29987,7 +29987,7 @@ }, { "x": 0, - "y": 2.9232706990355837 + "y": 2.92327 }, [ { @@ -30043,113 +30043,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.6959999999999, - "y": 523.630754763025 + "x": 367.696, + "y": 523.63075 }, { "body": null, "index": 1, "isInternal": false, - "x": 365.4559999999999, - "y": 529.0387547630253 + "x": 365.456, + "y": 529.03875 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.3179999999999, - "y": 533.1767547630253 + "x": 361.318, + "y": 533.17675 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.9099999999999, - "y": 535.4167547630253 + "x": 355.91, + "y": 535.41675 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.05799999999994, - "y": 535.4167547630253 + "x": 350.058, + "y": 535.41675 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6499999999999, - "y": 533.1767547630253 + "x": 344.65, + "y": 533.17675 }, { "body": null, "index": 6, "isInternal": false, - "x": 340.51199999999994, - "y": 529.0387547630253 + "x": 340.512, + "y": 529.03875 }, { "body": null, "index": 7, "isInternal": false, - "x": 338.27199999999993, - "y": 523.630754763025 + "x": 338.272, + "y": 523.63075 }, { "body": null, "index": 8, "isInternal": false, - "x": 338.27199999999993, - "y": 517.7787547630251 + "x": 338.272, + "y": 517.77875 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.51199999999994, - "y": 512.3707547630249 + "x": 340.512, + "y": 512.37075 }, { "body": null, "index": 10, "isInternal": false, - "x": 344.6499999999999, - "y": 508.23275476302484 + "x": 344.65, + "y": 508.23275 }, { "body": null, "index": 11, "isInternal": false, - "x": 350.05799999999994, - "y": 505.99275476302483 + "x": 350.058, + "y": 505.99275 }, { "body": null, "index": 12, "isInternal": false, - "x": 355.9099999999999, - "y": 505.99275476302483 + "x": 355.91, + "y": 505.99275 }, { "body": null, "index": 13, "isInternal": false, - "x": 361.3179999999999, - "y": 508.23275476302484 + "x": 361.318, + "y": 508.23275 }, { "body": null, "index": 14, "isInternal": false, - "x": 365.4559999999999, - "y": 512.3707547630249 + "x": 365.456, + "y": 512.37075 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.6959999999999, - "y": 517.7787547630251 + "x": 367.696, + "y": 517.77875 }, [], [ @@ -30288,7 +30288,7 @@ "bodyB": null, "id": 209, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3330 }, @@ -30322,7 +30322,7 @@ "bodyB": null, "id": 210, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3334 }, @@ -30356,7 +30356,7 @@ "bodyB": null, "id": 211, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3338 }, @@ -30390,7 +30390,7 @@ "bodyB": null, "id": 212, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3342 }, @@ -30424,7 +30424,7 @@ "bodyB": null, "id": 213, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3346 }, @@ -30458,7 +30458,7 @@ "bodyB": null, "id": 214, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3350 }, @@ -30492,7 +30492,7 @@ "bodyB": null, "id": 215, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3354 }, @@ -30526,7 +30526,7 @@ "bodyB": null, "id": 216, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3358 }, @@ -30560,7 +30560,7 @@ "bodyB": null, "id": 217, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3362 }, @@ -30594,7 +30594,7 @@ "bodyB": null, "id": 218, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3366 }, @@ -30628,7 +30628,7 @@ "bodyB": null, "id": 219, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3370 }, @@ -30662,7 +30662,7 @@ "bodyB": null, "id": 220, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3374 }, @@ -30696,7 +30696,7 @@ "bodyB": null, "id": 221, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3378 }, @@ -30730,7 +30730,7 @@ "bodyB": null, "id": 222, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3382 }, @@ -30764,7 +30764,7 @@ "bodyB": null, "id": 223, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3386 }, @@ -30798,7 +30798,7 @@ "bodyB": null, "id": 224, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3390 }, @@ -30832,7 +30832,7 @@ "bodyB": null, "id": 225, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3394 }, @@ -30866,7 +30866,7 @@ "bodyB": null, "id": 226, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3398 }, @@ -30900,7 +30900,7 @@ "bodyB": null, "id": 227, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3402 }, @@ -30934,7 +30934,7 @@ "bodyB": null, "id": 228, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3406 }, @@ -30968,7 +30968,7 @@ "bodyB": null, "id": 229, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3410 }, @@ -31002,7 +31002,7 @@ "bodyB": null, "id": 230, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3414 }, @@ -31036,7 +31036,7 @@ "bodyB": null, "id": 231, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3418 }, @@ -31070,7 +31070,7 @@ "bodyB": null, "id": 232, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3422 }, @@ -31104,7 +31104,7 @@ "bodyB": null, "id": 233, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3426 }, @@ -31138,7 +31138,7 @@ "bodyB": null, "id": 234, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3430 }, @@ -31172,7 +31172,7 @@ "bodyB": null, "id": 235, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3434 }, @@ -31206,7 +31206,7 @@ "bodyB": null, "id": 236, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3438 }, @@ -31240,7 +31240,7 @@ "bodyB": null, "id": 237, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3442 }, @@ -31274,7 +31274,7 @@ "bodyB": null, "id": 238, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3446 }, @@ -31308,7 +31308,7 @@ "bodyB": null, "id": 239, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3450 }, @@ -31342,7 +31342,7 @@ "bodyB": null, "id": 240, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3454 }, @@ -31376,7 +31376,7 @@ "bodyB": null, "id": 241, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3458 }, @@ -31410,7 +31410,7 @@ "bodyB": null, "id": 242, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3462 }, @@ -31444,7 +31444,7 @@ "bodyB": null, "id": 243, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3466 }, @@ -31478,7 +31478,7 @@ "bodyB": null, "id": 244, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3470 }, @@ -31512,7 +31512,7 @@ "bodyB": null, "id": 245, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3474 }, @@ -31546,7 +31546,7 @@ "bodyB": null, "id": 246, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3478 }, @@ -31580,7 +31580,7 @@ "bodyB": null, "id": 247, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3482 }, @@ -31614,7 +31614,7 @@ "bodyB": null, "id": 248, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3486 }, @@ -31648,7 +31648,7 @@ "bodyB": null, "id": 249, "label": "Constraint", - "length": 29.423999999999978, + "length": 29.424, "pointA": { "#": 3490 }, @@ -31682,7 +31682,7 @@ "bodyB": null, "id": 250, "label": "Constraint", - "length": 41.611819859265914, + "length": 41.61182, "pointA": { "#": 3494 }, diff --git a/test/browser/refs/sprites/sprites-0.json b/test/browser/refs/sprites/sprites-0.json index 859cd2a5..79292f00 100644 --- a/test/browser/refs/sprites/sprites-0.json +++ b/test/browser/refs/sprites/sprites-0.json @@ -979,7 +979,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 93 }, @@ -1001,13 +1001,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 9, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -1080,52 +1080,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -1140,11 +1140,11 @@ } }, { - "x": 111.32999999999998, + "x": 111.33, "y": 112 }, { - "x": 19.999999999999993, + "x": 20, "y": 20 }, { @@ -1162,7 +1162,7 @@ "y": 0 }, { - "x": 65.66499999999999, + "x": 65.665, "y": 66 }, { @@ -1170,7 +1170,7 @@ "y": 0 }, { - "x": 65.66499999999999, + "x": 65.665, "y": 66 }, { @@ -1275,21 +1275,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 111.32999999999998, + "x": 111.33, "y": 71.545 }, { "body": null, "index": 1, "isInternal": false, - "x": 108.67599999999999, + "x": 108.676, "y": 82.312 }, { "body": null, "index": 2, "isInternal": false, - "x": 103.52199999999999, + "x": 103.522, "y": 92.131 }, { @@ -1303,28 +1303,28 @@ "body": null, "index": 4, "isInternal": false, - "x": 87.04199999999999, + "x": 87.042, "y": 106.731 }, { "body": null, "index": 5, "isInternal": false, - "x": 76.67399999999999, + "x": 76.674, "y": 110.663 }, { "body": null, "index": 6, "isInternal": false, - "x": 65.66499999999999, + "x": 65.665, "y": 112 }, { "body": null, "index": 7, "isInternal": false, - "x": 54.65599999999999, + "x": 54.656, "y": 110.663 }, { @@ -1338,57 +1338,57 @@ "body": null, "index": 9, "isInternal": false, - "x": 35.16099999999999, + "x": 35.161, "y": 100.431 }, { "body": null, "index": 10, "isInternal": false, - "x": 27.807999999999993, + "x": 27.808, "y": 92.131 }, { "body": null, "index": 11, "isInternal": false, - "x": 22.65399999999999, + "x": 22.654, "y": 82.312 }, { "body": null, "index": 12, "isInternal": false, - "x": 19.999999999999993, + "x": 20, "y": 71.545 }, { "body": null, "index": 13, "isInternal": false, - "x": 19.999999999999993, + "x": 20, "y": 60.455 }, { "body": null, "index": 14, "isInternal": false, - "x": 22.65399999999999, + "x": 22.654, "y": 49.688 }, { "body": null, "index": 15, "isInternal": false, - "x": 27.807999999999993, + "x": 27.808, "y": 39.869 }, { "body": null, "index": 16, "isInternal": false, - "x": 35.16099999999999, - "y": 31.569000000000003 + "x": 35.161, + "y": 31.569 }, { "body": null, @@ -1401,28 +1401,28 @@ "body": null, "index": 18, "isInternal": false, - "x": 54.65599999999999, - "y": 21.337000000000003 + "x": 54.656, + "y": 21.337 }, { "body": null, "index": 19, "isInternal": false, - "x": 65.66499999999999, + "x": 65.665, "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 76.67399999999999, - "y": 21.337000000000003 + "x": 76.674, + "y": 21.337 }, { "body": null, "index": 21, "isInternal": false, - "x": 87.04199999999999, + "x": 87.042, "y": 25.269 }, { @@ -1430,27 +1430,27 @@ "index": 22, "isInternal": false, "x": 96.169, - "y": 31.569000000000003 + "y": 31.569 }, { "body": null, "index": 23, "isInternal": false, - "x": 103.52199999999999, + "x": 103.522, "y": 39.869 }, { "body": null, "index": 24, "isInternal": false, - "x": 108.67599999999999, + "x": 108.676, "y": 49.688 }, { "body": null, "index": 25, "isInternal": false, - "x": 111.32999999999998, + "x": 111.33, "y": 60.455 }, { @@ -1479,9 +1479,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1541,11 +1541,11 @@ } }, { - "x": 175.32999999999998, + "x": 175.33, "y": 84 }, { - "x": 111.32999999999998, + "x": 111.33, "y": 20 }, { @@ -1563,7 +1563,7 @@ "y": 0 }, { - "x": 143.32999999999998, + "x": 143.33, "y": 52 }, { @@ -1571,7 +1571,7 @@ "y": 0 }, { - "x": 143.32999999999998, + "x": 143.33, "y": 52 }, { @@ -1610,28 +1610,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 111.32999999999998, + "x": 111.33, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 84 }, { "body": null, "index": 3, "isInternal": false, - "x": 111.32999999999998, + "x": 111.33, "y": 84 }, { @@ -1660,9 +1660,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1722,11 +1722,11 @@ } }, { - "x": 239.32999999999998, + "x": 239.33, "y": 84 }, { - "x": 175.32999999999998, + "x": 175.33, "y": 20 }, { @@ -1744,7 +1744,7 @@ "y": 0 }, { - "x": 207.32999999999998, + "x": 207.33, "y": 52 }, { @@ -1752,7 +1752,7 @@ "y": 0 }, { - "x": 207.32999999999998, + "x": 207.33, "y": 52 }, { @@ -1791,28 +1791,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 84 }, { "body": null, "index": 3, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 84 }, { @@ -1841,9 +1841,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1907,7 +1907,7 @@ "y": 84 }, { - "x": 239.32999999999998, + "x": 239.33, "y": 20 }, { @@ -1972,7 +1972,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 20 }, { @@ -1993,7 +1993,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 84 }, { @@ -2022,9 +2022,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2182,7 +2182,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 231 }, @@ -2204,13 +2204,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 14, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -2283,52 +2283,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -2485,14 +2485,14 @@ "body": null, "index": 1, "isInternal": false, - "x": 456.00600000000003, + "x": 456.006, "y": 82.312 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.85200000000003, + "x": 450.852, "y": 92.131 }, { @@ -2591,7 +2591,7 @@ "index": 16, "isInternal": false, "x": 382.491, - "y": 31.569000000000003 + "y": 31.569 }, { "body": null, @@ -2605,7 +2605,7 @@ "index": 18, "isInternal": false, "x": 401.986, - "y": 21.337000000000003 + "y": 21.337 }, { "body": null, @@ -2619,7 +2619,7 @@ "index": 20, "isInternal": false, "x": 424.004, - "y": 21.337000000000003 + "y": 21.337 }, { "body": null, @@ -2633,20 +2633,20 @@ "index": 22, "isInternal": false, "x": 443.499, - "y": 31.569000000000003 + "y": 31.569 }, { "body": null, "index": 23, "isInternal": false, - "x": 450.85200000000003, + "x": 450.852, "y": 39.869 }, { "body": null, "index": 24, "isInternal": false, - "x": 456.00600000000003, + "x": 456.006, "y": 49.688 }, { @@ -2682,9 +2682,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2744,7 +2744,7 @@ } }, { - "x": 522.6600000000001, + "x": 522.66, "y": 84 }, { @@ -2820,14 +2820,14 @@ "body": null, "index": 1, "isInternal": false, - "x": 522.6600000000001, + "x": 522.66, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 522.6600000000001, + "x": 522.66, "y": 84 }, { @@ -2863,9 +2863,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2925,11 +2925,11 @@ } }, { - "x": 586.6600000000001, + "x": 586.66, "y": 84 }, { - "x": 522.6600000000001, + "x": 522.66, "y": 20 }, { @@ -2947,7 +2947,7 @@ "y": 0 }, { - "x": 554.6600000000001, + "x": 554.66, "y": 52 }, { @@ -2955,7 +2955,7 @@ "y": 0 }, { - "x": 554.6600000000001, + "x": 554.66, "y": 52 }, { @@ -2994,28 +2994,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.6600000000001, + "x": 522.66, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.6600000000001, + "x": 586.66, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.6600000000001, + "x": 586.66, "y": 84 }, { "body": null, "index": 3, "isInternal": false, - "x": 522.6600000000001, + "x": 522.66, "y": 84 }, { @@ -3044,9 +3044,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3106,11 +3106,11 @@ } }, { - "x": 650.6600000000001, + "x": 650.66, "y": 84 }, { - "x": 586.6600000000001, + "x": 586.66, "y": 20 }, { @@ -3128,7 +3128,7 @@ "y": 0 }, { - "x": 618.6600000000001, + "x": 618.66, "y": 52 }, { @@ -3136,7 +3136,7 @@ "y": 0 }, { - "x": 618.6600000000001, + "x": 618.66, "y": 52 }, { @@ -3175,28 +3175,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 586.6600000000001, + "x": 586.66, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 650.6600000000001, + "x": 650.66, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 650.6600000000001, + "x": 650.66, "y": 84 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.6600000000001, + "x": 586.66, "y": 84 }, { @@ -3204,7 +3204,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 348 }, @@ -3226,13 +3226,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 18, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -3305,52 +3305,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -3369,7 +3369,7 @@ "y": 112 }, { - "x": 650.6600000000001, + "x": 650.66, "y": 20 }, { @@ -3521,7 +3521,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 726.8290000000001, + "x": 726.829, "y": 100.431 }, { @@ -3535,7 +3535,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 707.3340000000001, + "x": 707.334, "y": 110.663 }, { @@ -3556,7 +3556,7 @@ "body": null, "index": 8, "isInternal": false, - "x": 674.9480000000001, + "x": 674.948, "y": 106.731 }, { @@ -3570,42 +3570,42 @@ "body": null, "index": 10, "isInternal": false, - "x": 658.4680000000001, + "x": 658.468, "y": 92.131 }, { "body": null, "index": 11, "isInternal": false, - "x": 653.3140000000001, + "x": 653.314, "y": 82.312 }, { "body": null, "index": 12, "isInternal": false, - "x": 650.6600000000001, + "x": 650.66, "y": 71.545 }, { "body": null, "index": 13, "isInternal": false, - "x": 650.6600000000001, + "x": 650.66, "y": 60.455 }, { "body": null, "index": 14, "isInternal": false, - "x": 653.3140000000001, + "x": 653.314, "y": 49.688 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4680000000001, + "x": 658.468, "y": 39.869 }, { @@ -3613,13 +3613,13 @@ "index": 16, "isInternal": false, "x": 665.821, - "y": 31.569000000000003 + "y": 31.569 }, { "body": null, "index": 17, "isInternal": false, - "x": 674.9480000000001, + "x": 674.948, "y": 25.269 }, { @@ -3627,7 +3627,7 @@ "index": 18, "isInternal": false, "x": 685.316, - "y": 21.337000000000003 + "y": 21.337 }, { "body": null, @@ -3640,8 +3640,8 @@ "body": null, "index": 20, "isInternal": false, - "x": 707.3340000000001, - "y": 21.337000000000003 + "x": 707.334, + "y": 21.337 }, { "body": null, @@ -3654,8 +3654,8 @@ "body": null, "index": 22, "isInternal": false, - "x": 726.8290000000001, - "y": 31.569000000000003 + "x": 726.829, + "y": 31.569 }, { "body": null, @@ -3704,9 +3704,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3864,7 +3864,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 423 }, @@ -3886,13 +3886,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 20, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -3965,52 +3965,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -4025,7 +4025,7 @@ } }, { - "x": 175.32999999999998, + "x": 175.33, "y": 204 }, { @@ -4160,8 +4160,8 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.32999999999998, - "y": 163.54500000000002 + "x": 175.33, + "y": 163.545 }, { "body": null, @@ -4181,21 +4181,21 @@ "body": null, "index": 3, "isInternal": false, - "x": 160.16899999999998, - "y": 192.43099999999998 + "x": 160.169, + "y": 192.431 }, { "body": null, "index": 4, "isInternal": false, - "x": 151.04199999999997, + "x": 151.042, "y": 198.731 }, { "body": null, "index": 5, "isInternal": false, - "x": 140.67399999999998, + "x": 140.674, "y": 202.663 }, { @@ -4209,7 +4209,7 @@ "body": null, "index": 7, "isInternal": false, - "x": 118.65599999999999, + "x": 118.656, "y": 202.663 }, { @@ -4223,14 +4223,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 99.16099999999999, - "y": 192.43099999999998 + "x": 99.161, + "y": 192.431 }, { "body": null, "index": 10, "isInternal": false, - "x": 91.80799999999999, + "x": 91.808, "y": 184.131 }, { @@ -4245,14 +4245,14 @@ "index": 12, "isInternal": false, "x": 84, - "y": 163.54500000000002 + "y": 163.545 }, { "body": null, "index": 13, "isInternal": false, "x": 84, - "y": 152.45499999999998 + "y": 152.455 }, { "body": null, @@ -4265,14 +4265,14 @@ "body": null, "index": 15, "isInternal": false, - "x": 91.80799999999999, + "x": 91.808, "y": 131.869 }, { "body": null, "index": 16, "isInternal": false, - "x": 99.16099999999999, + "x": 99.161, "y": 123.569 }, { @@ -4286,7 +4286,7 @@ "body": null, "index": 18, "isInternal": false, - "x": 118.65599999999999, + "x": 118.656, "y": 113.337 }, { @@ -4300,21 +4300,21 @@ "body": null, "index": 20, "isInternal": false, - "x": 140.67399999999998, + "x": 140.674, "y": 113.337 }, { "body": null, "index": 21, "isInternal": false, - "x": 151.04199999999997, + "x": 151.042, "y": 117.269 }, { "body": null, "index": 22, "isInternal": false, - "x": 160.16899999999998, + "x": 160.169, "y": 123.569 }, { @@ -4335,8 +4335,8 @@ "body": null, "index": 25, "isInternal": false, - "x": 175.32999999999998, - "y": 152.45499999999998 + "x": 175.33, + "y": 152.455 }, { "angle": 0, @@ -4364,9 +4364,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4426,11 +4426,11 @@ } }, { - "x": 239.32999999999998, + "x": 239.33, "y": 176 }, { - "x": 175.32999999999998, + "x": 175.33, "y": 112 }, { @@ -4448,7 +4448,7 @@ "y": 0 }, { - "x": 207.32999999999998, + "x": 207.33, "y": 144 }, { @@ -4456,7 +4456,7 @@ "y": 0 }, { - "x": 207.32999999999998, + "x": 207.33, "y": 144 }, { @@ -4495,28 +4495,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 112 }, { "body": null, "index": 1, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 112 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 176 }, { "body": null, "index": 3, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 176 }, { @@ -4545,9 +4545,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4611,7 +4611,7 @@ "y": 176 }, { - "x": 239.32999999999998, + "x": 239.33, "y": 112 }, { @@ -4676,7 +4676,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 112 }, { @@ -4697,7 +4697,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 176 }, { @@ -4726,9 +4726,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4907,9 +4907,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5067,7 +5067,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 561 }, @@ -5089,13 +5089,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 25, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -5168,52 +5168,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -5228,7 +5228,7 @@ } }, { - "x": 522.6600000000001, + "x": 522.66, "y": 204 }, { @@ -5363,21 +5363,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.6600000000001, - "y": 163.54500000000002 + "x": 522.66, + "y": 163.545 }, { "body": null, "index": 1, "isInternal": false, - "x": 520.0060000000001, + "x": 520.006, "y": 174.312 }, { "body": null, "index": 2, "isInternal": false, - "x": 514.8520000000001, + "x": 514.852, "y": 184.131 }, { @@ -5385,7 +5385,7 @@ "index": 3, "isInternal": false, "x": 507.499, - "y": 192.43099999999998 + "y": 192.431 }, { "body": null, @@ -5427,7 +5427,7 @@ "index": 9, "isInternal": false, "x": 446.491, - "y": 192.43099999999998 + "y": 192.431 }, { "body": null, @@ -5448,14 +5448,14 @@ "index": 12, "isInternal": false, "x": 431.33, - "y": 163.54500000000002 + "y": 163.545 }, { "body": null, "index": 13, "isInternal": false, "x": 431.33, - "y": 152.45499999999998 + "y": 152.455 }, { "body": null, @@ -5524,22 +5524,22 @@ "body": null, "index": 23, "isInternal": false, - "x": 514.8520000000001, + "x": 514.852, "y": 131.869 }, { "body": null, "index": 24, "isInternal": false, - "x": 520.0060000000001, + "x": 520.006, "y": 141.688 }, { "body": null, "index": 25, "isInternal": false, - "x": 522.6600000000001, - "y": 152.45499999999998 + "x": 522.66, + "y": 152.455 }, { "angle": 0, @@ -5567,9 +5567,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5629,11 +5629,11 @@ } }, { - "x": 586.6600000000001, + "x": 586.66, "y": 176 }, { - "x": 522.6600000000001, + "x": 522.66, "y": 112 }, { @@ -5651,7 +5651,7 @@ "y": 0 }, { - "x": 554.6600000000001, + "x": 554.66, "y": 144 }, { @@ -5659,7 +5659,7 @@ "y": 0 }, { - "x": 554.6600000000001, + "x": 554.66, "y": 144 }, { @@ -5698,28 +5698,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.6600000000001, + "x": 522.66, "y": 112 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.6600000000001, + "x": 586.66, "y": 112 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.6600000000001, + "x": 586.66, "y": 176 }, { "body": null, "index": 3, "isInternal": false, - "x": 522.6600000000001, + "x": 522.66, "y": 176 }, { @@ -5748,9 +5748,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5810,11 +5810,11 @@ } }, { - "x": 650.6600000000001, + "x": 650.66, "y": 176 }, { - "x": 586.6600000000001, + "x": 586.66, "y": 112 }, { @@ -5832,7 +5832,7 @@ "y": 0 }, { - "x": 618.6600000000001, + "x": 618.66, "y": 144 }, { @@ -5840,7 +5840,7 @@ "y": 0 }, { - "x": 618.6600000000001, + "x": 618.66, "y": 144 }, { @@ -5879,28 +5879,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 586.6600000000001, + "x": 586.66, "y": 112 }, { "body": null, "index": 1, "isInternal": false, - "x": 650.6600000000001, + "x": 650.66, "y": 112 }, { "body": null, "index": 2, "isInternal": false, - "x": 650.6600000000001, + "x": 650.66, "y": 176 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.6600000000001, + "x": 586.66, "y": 176 }, { @@ -5929,9 +5929,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5991,11 +5991,11 @@ } }, { - "x": 714.6600000000001, + "x": 714.66, "y": 176 }, { - "x": 650.6600000000001, + "x": 650.66, "y": 112 }, { @@ -6013,7 +6013,7 @@ "y": 0 }, { - "x": 682.6600000000001, + "x": 682.66, "y": 144 }, { @@ -6021,7 +6021,7 @@ "y": 0 }, { - "x": 682.6600000000001, + "x": 682.66, "y": 144 }, { @@ -6060,28 +6060,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 650.6600000000001, + "x": 650.66, "y": 112 }, { "body": null, "index": 1, "isInternal": false, - "x": 714.6600000000001, + "x": 714.66, "y": 112 }, { "body": null, "index": 2, "isInternal": false, - "x": 714.6600000000001, + "x": 714.66, "y": 176 }, { "body": null, "index": 3, "isInternal": false, - "x": 650.6600000000001, + "x": 650.66, "y": 176 }, { @@ -6110,9 +6110,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6270,7 +6270,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 699 }, @@ -6292,13 +6292,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 30, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -6371,52 +6371,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -6431,7 +6431,7 @@ } }, { - "x": 175.32999999999998, + "x": 175.33, "y": 296 }, { @@ -6566,7 +6566,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 255.545 }, { @@ -6587,21 +6587,21 @@ "body": null, "index": 3, "isInternal": false, - "x": 160.16899999999998, + "x": 160.169, "y": 284.431 }, { "body": null, "index": 4, "isInternal": false, - "x": 151.04199999999997, + "x": 151.042, "y": 290.731 }, { "body": null, "index": 5, "isInternal": false, - "x": 140.67399999999998, + "x": 140.674, "y": 294.663 }, { @@ -6615,7 +6615,7 @@ "body": null, "index": 7, "isInternal": false, - "x": 118.65599999999999, + "x": 118.656, "y": 294.663 }, { @@ -6629,14 +6629,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 99.16099999999999, + "x": 99.161, "y": 284.431 }, { "body": null, "index": 10, "isInternal": false, - "x": 91.80799999999999, + "x": 91.808, "y": 276.131 }, { @@ -6671,15 +6671,15 @@ "body": null, "index": 15, "isInternal": false, - "x": 91.80799999999999, + "x": 91.808, "y": 223.869 }, { "body": null, "index": 16, "isInternal": false, - "x": 99.16099999999999, - "y": 215.56900000000002 + "x": 99.161, + "y": 215.569 }, { "body": null, @@ -6692,7 +6692,7 @@ "body": null, "index": 18, "isInternal": false, - "x": 118.65599999999999, + "x": 118.656, "y": 205.337 }, { @@ -6706,22 +6706,22 @@ "body": null, "index": 20, "isInternal": false, - "x": 140.67399999999998, + "x": 140.674, "y": 205.337 }, { "body": null, "index": 21, "isInternal": false, - "x": 151.04199999999997, + "x": 151.042, "y": 209.269 }, { "body": null, "index": 22, "isInternal": false, - "x": 160.16899999999998, - "y": 215.56900000000002 + "x": 160.169, + "y": 215.569 }, { "body": null, @@ -6741,7 +6741,7 @@ "body": null, "index": 25, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 244.455 }, { @@ -6770,9 +6770,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6832,11 +6832,11 @@ } }, { - "x": 239.32999999999998, + "x": 239.33, "y": 268 }, { - "x": 175.32999999999998, + "x": 175.33, "y": 204 }, { @@ -6854,7 +6854,7 @@ "y": 0 }, { - "x": 207.32999999999998, + "x": 207.33, "y": 236 }, { @@ -6862,7 +6862,7 @@ "y": 0 }, { - "x": 207.32999999999998, + "x": 207.33, "y": 236 }, { @@ -6901,28 +6901,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 204 }, { "body": null, "index": 1, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 204 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 268 }, { "body": null, "index": 3, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 268 }, { @@ -6951,9 +6951,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7017,7 +7017,7 @@ "y": 268 }, { - "x": 239.32999999999998, + "x": 239.33, "y": 204 }, { @@ -7082,7 +7082,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 204 }, { @@ -7103,7 +7103,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 239.32999999999998, + "x": 239.33, "y": 268 }, { @@ -7111,7 +7111,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 795 }, @@ -7133,13 +7133,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 33, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -7212,52 +7212,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -7414,14 +7414,14 @@ "body": null, "index": 1, "isInternal": false, - "x": 392.00600000000003, + "x": 392.006, "y": 266.312 }, { "body": null, "index": 2, "isInternal": false, - "x": 386.85200000000003, + "x": 386.852, "y": 276.131 }, { @@ -7520,7 +7520,7 @@ "index": 16, "isInternal": false, "x": 318.491, - "y": 215.56900000000002 + "y": 215.569 }, { "body": null, @@ -7562,20 +7562,20 @@ "index": 22, "isInternal": false, "x": 379.499, - "y": 215.56900000000002 + "y": 215.569 }, { "body": null, "index": 23, "isInternal": false, - "x": 386.85200000000003, + "x": 386.852, "y": 223.869 }, { "body": null, "index": 24, "isInternal": false, - "x": 392.00600000000003, + "x": 392.006, "y": 233.688 }, { @@ -7611,9 +7611,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7771,7 +7771,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 870 }, @@ -7793,13 +7793,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 35, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -7872,52 +7872,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -7954,7 +7954,7 @@ "y": 0 }, { - "x": 504.32500000000005, + "x": 504.325, "y": 250 }, { @@ -7962,7 +7962,7 @@ "y": 0 }, { - "x": 504.32500000000005, + "x": 504.325, "y": 250 }, { @@ -8088,7 +8088,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 534.8290000000001, + "x": 534.829, "y": 284.431 }, { @@ -8102,28 +8102,28 @@ "body": null, "index": 5, "isInternal": false, - "x": 515.3340000000001, + "x": 515.334, "y": 294.663 }, { "body": null, "index": 6, "isInternal": false, - "x": 504.32500000000005, + "x": 504.325, "y": 296 }, { "body": null, "index": 7, "isInternal": false, - "x": 493.31600000000003, + "x": 493.316, "y": 294.663 }, { "body": null, "index": 8, "isInternal": false, - "x": 482.94800000000004, + "x": 482.948, "y": 290.731 }, { @@ -8180,34 +8180,34 @@ "index": 16, "isInternal": false, "x": 473.821, - "y": 215.56900000000002 + "y": 215.569 }, { "body": null, "index": 17, "isInternal": false, - "x": 482.94800000000004, + "x": 482.948, "y": 209.269 }, { "body": null, "index": 18, "isInternal": false, - "x": 493.31600000000003, + "x": 493.316, "y": 205.337 }, { "body": null, "index": 19, "isInternal": false, - "x": 504.32500000000005, + "x": 504.325, "y": 204 }, { "body": null, "index": 20, "isInternal": false, - "x": 515.3340000000001, + "x": 515.334, "y": 205.337 }, { @@ -8221,8 +8221,8 @@ "body": null, "index": 22, "isInternal": false, - "x": 534.8290000000001, - "y": 215.56900000000002 + "x": 534.829, + "y": 215.569 }, { "body": null, @@ -8271,9 +8271,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8452,9 +8452,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8633,9 +8633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8814,9 +8814,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8974,7 +8974,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 1008 }, @@ -8996,13 +8996,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 40, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -9075,52 +9075,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -9135,7 +9135,7 @@ } }, { - "x": 175.32999999999998, + "x": 175.33, "y": 388 }, { @@ -9270,7 +9270,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 347.545 }, { @@ -9291,21 +9291,21 @@ "body": null, "index": 3, "isInternal": false, - "x": 160.16899999999998, + "x": 160.169, "y": 376.431 }, { "body": null, "index": 4, "isInternal": false, - "x": 151.04199999999997, + "x": 151.042, "y": 382.731 }, { "body": null, "index": 5, "isInternal": false, - "x": 140.67399999999998, + "x": 140.674, "y": 386.663 }, { @@ -9319,7 +9319,7 @@ "body": null, "index": 7, "isInternal": false, - "x": 118.65599999999999, + "x": 118.656, "y": 386.663 }, { @@ -9333,14 +9333,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 99.16099999999999, + "x": 99.161, "y": 376.431 }, { "body": null, "index": 10, "isInternal": false, - "x": 91.80799999999999, + "x": 91.808, "y": 368.131 }, { @@ -9375,14 +9375,14 @@ "body": null, "index": 15, "isInternal": false, - "x": 91.80799999999999, + "x": 91.808, "y": 315.869 }, { "body": null, "index": 16, "isInternal": false, - "x": 99.16099999999999, + "x": 99.161, "y": 307.569 }, { @@ -9396,7 +9396,7 @@ "body": null, "index": 18, "isInternal": false, - "x": 118.65599999999999, + "x": 118.656, "y": 297.337 }, { @@ -9410,21 +9410,21 @@ "body": null, "index": 20, "isInternal": false, - "x": 140.67399999999998, + "x": 140.674, "y": 297.337 }, { "body": null, "index": 21, "isInternal": false, - "x": 151.04199999999997, + "x": 151.042, "y": 301.269 }, { "body": null, "index": 22, "isInternal": false, - "x": 160.16899999999998, + "x": 160.169, "y": 307.569 }, { @@ -9445,7 +9445,7 @@ "body": null, "index": 25, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 336.455 }, { @@ -9453,7 +9453,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 1062 }, @@ -9475,13 +9475,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 41, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -9554,52 +9554,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -9614,11 +9614,11 @@ } }, { - "x": 266.65999999999997, + "x": 266.66, "y": 388 }, { - "x": 175.32999999999998, + "x": 175.33, "y": 296 }, { @@ -9636,7 +9636,7 @@ "y": 0 }, { - "x": 220.99499999999998, + "x": 220.995, "y": 342 }, { @@ -9644,7 +9644,7 @@ "y": 0 }, { - "x": 220.99499999999998, + "x": 220.995, "y": 342 }, { @@ -9749,7 +9749,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 266.65999999999997, + "x": 266.66, "y": 347.545 }, { @@ -9770,14 +9770,14 @@ "body": null, "index": 3, "isInternal": false, - "x": 251.49899999999997, + "x": 251.499, "y": 376.431 }, { "body": null, "index": 4, "isInternal": false, - "x": 242.37199999999999, + "x": 242.372, "y": 382.731 }, { @@ -9791,98 +9791,98 @@ "body": null, "index": 6, "isInternal": false, - "x": 220.99499999999998, + "x": 220.995, "y": 388 }, { "body": null, "index": 7, "isInternal": false, - "x": 209.98599999999996, + "x": 209.986, "y": 386.663 }, { "body": null, "index": 8, "isInternal": false, - "x": 199.61799999999997, + "x": 199.618, "y": 382.731 }, { "body": null, "index": 9, "isInternal": false, - "x": 190.49099999999999, + "x": 190.491, "y": 376.431 }, { "body": null, "index": 10, "isInternal": false, - "x": 183.13799999999998, + "x": 183.138, "y": 368.131 }, { "body": null, "index": 11, "isInternal": false, - "x": 177.98399999999998, + "x": 177.984, "y": 358.312 }, { "body": null, "index": 12, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 347.545 }, { "body": null, "index": 13, "isInternal": false, - "x": 175.32999999999998, + "x": 175.33, "y": 336.455 }, { "body": null, "index": 14, "isInternal": false, - "x": 177.98399999999998, + "x": 177.984, "y": 325.688 }, { "body": null, "index": 15, "isInternal": false, - "x": 183.13799999999998, + "x": 183.138, "y": 315.869 }, { "body": null, "index": 16, "isInternal": false, - "x": 190.49099999999999, + "x": 190.491, "y": 307.569 }, { "body": null, "index": 17, "isInternal": false, - "x": 199.61799999999997, + "x": 199.618, "y": 301.269 }, { "body": null, "index": 18, "isInternal": false, - "x": 209.98599999999996, + "x": 209.986, "y": 297.337 }, { "body": null, "index": 19, "isInternal": false, - "x": 220.99499999999998, + "x": 220.995, "y": 296 }, { @@ -9896,14 +9896,14 @@ "body": null, "index": 21, "isInternal": false, - "x": 242.37199999999999, + "x": 242.372, "y": 301.269 }, { "body": null, "index": 22, "isInternal": false, - "x": 251.49899999999997, + "x": 251.499, "y": 307.569 }, { @@ -9924,7 +9924,7 @@ "body": null, "index": 25, "isInternal": false, - "x": 266.65999999999997, + "x": 266.66, "y": 336.455 }, { @@ -9953,9 +9953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10015,11 +10015,11 @@ } }, { - "x": 330.65999999999997, + "x": 330.66, "y": 360 }, { - "x": 266.65999999999997, + "x": 266.66, "y": 296 }, { @@ -10037,7 +10037,7 @@ "y": 0 }, { - "x": 298.65999999999997, + "x": 298.66, "y": 328 }, { @@ -10045,7 +10045,7 @@ "y": 0 }, { - "x": 298.65999999999997, + "x": 298.66, "y": 328 }, { @@ -10084,28 +10084,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 266.65999999999997, + "x": 266.66, "y": 296 }, { "body": null, "index": 1, "isInternal": false, - "x": 330.65999999999997, + "x": 330.66, "y": 296 }, { "body": null, "index": 2, "isInternal": false, - "x": 330.65999999999997, + "x": 330.66, "y": 360 }, { "body": null, "index": 3, "isInternal": false, - "x": 266.65999999999997, + "x": 266.66, "y": 360 }, { @@ -10134,9 +10134,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10196,11 +10196,11 @@ } }, { - "x": 394.65999999999997, + "x": 394.66, "y": 360 }, { - "x": 330.65999999999997, + "x": 330.66, "y": 296 }, { @@ -10218,7 +10218,7 @@ "y": 0 }, { - "x": 362.65999999999997, + "x": 362.66, "y": 328 }, { @@ -10226,7 +10226,7 @@ "y": 0 }, { - "x": 362.65999999999997, + "x": 362.66, "y": 328 }, { @@ -10265,28 +10265,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 330.65999999999997, + "x": 330.66, "y": 296 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.65999999999997, + "x": 394.66, "y": 296 }, { "body": null, "index": 2, "isInternal": false, - "x": 394.65999999999997, + "x": 394.66, "y": 360 }, { "body": null, "index": 3, "isInternal": false, - "x": 330.65999999999997, + "x": 330.66, "y": 360 }, { @@ -10315,9 +10315,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10377,11 +10377,11 @@ } }, { - "x": 458.65999999999997, + "x": 458.66, "y": 360 }, { - "x": 394.65999999999997, + "x": 394.66, "y": 296 }, { @@ -10399,7 +10399,7 @@ "y": 0 }, { - "x": 426.65999999999997, + "x": 426.66, "y": 328 }, { @@ -10407,7 +10407,7 @@ "y": 0 }, { - "x": 426.65999999999997, + "x": 426.66, "y": 328 }, { @@ -10446,28 +10446,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 394.65999999999997, + "x": 394.66, "y": 296 }, { "body": null, "index": 1, "isInternal": false, - "x": 458.65999999999997, + "x": 458.66, "y": 296 }, { "body": null, "index": 2, "isInternal": false, - "x": 458.65999999999997, + "x": 458.66, "y": 360 }, { "body": null, "index": 3, "isInternal": false, - "x": 394.65999999999997, + "x": 394.66, "y": 360 }, { @@ -10475,7 +10475,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 1179 }, @@ -10497,13 +10497,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 45, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -10576,52 +10576,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -10640,7 +10640,7 @@ "y": 388 }, { - "x": 458.65999999999997, + "x": 458.66, "y": 296 }, { @@ -10806,7 +10806,7 @@ "body": null, "index": 5, "isInternal": false, - "x": 515.3340000000001, + "x": 515.334, "y": 386.663 }, { @@ -10834,7 +10834,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 473.82099999999997, + "x": 473.821, "y": 376.431 }, { @@ -10848,28 +10848,28 @@ "body": null, "index": 11, "isInternal": false, - "x": 461.31399999999996, + "x": 461.314, "y": 358.312 }, { "body": null, "index": 12, "isInternal": false, - "x": 458.65999999999997, + "x": 458.66, "y": 347.545 }, { "body": null, "index": 13, "isInternal": false, - "x": 458.65999999999997, + "x": 458.66, "y": 336.455 }, { "body": null, "index": 14, "isInternal": false, - "x": 461.31399999999996, + "x": 461.314, "y": 325.688 }, { @@ -10883,7 +10883,7 @@ "body": null, "index": 16, "isInternal": false, - "x": 473.82099999999997, + "x": 473.821, "y": 307.569 }, { @@ -10911,7 +10911,7 @@ "body": null, "index": 20, "isInternal": false, - "x": 515.3340000000001, + "x": 515.334, "y": 297.337 }, { @@ -10975,9 +10975,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11135,7 +11135,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 1254 }, @@ -11157,13 +11157,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 47, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -11236,52 +11236,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -11296,7 +11296,7 @@ } }, { - "x": 705.3199999999999, + "x": 705.32, "y": 388 }, { @@ -11431,14 +11431,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 705.3199999999999, + "x": 705.32, "y": 347.545 }, { "body": null, "index": 1, "isInternal": false, - "x": 702.6659999999999, + "x": 702.666, "y": 358.312 }, { @@ -11459,7 +11459,7 @@ "body": null, "index": 4, "isInternal": false, - "x": 681.0319999999999, + "x": 681.032, "y": 382.731 }, { @@ -11578,7 +11578,7 @@ "body": null, "index": 21, "isInternal": false, - "x": 681.0319999999999, + "x": 681.032, "y": 301.269 }, { @@ -11599,14 +11599,14 @@ "body": null, "index": 24, "isInternal": false, - "x": 702.6659999999999, + "x": 702.666, "y": 325.688 }, { "body": null, "index": 25, "isInternal": false, - "x": 705.3199999999999, + "x": 705.32, "y": 336.455 }, { @@ -11635,9 +11635,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11697,11 +11697,11 @@ } }, { - "x": 769.3199999999999, + "x": 769.32, "y": 360 }, { - "x": 705.3199999999999, + "x": 705.32, "y": 296 }, { @@ -11719,7 +11719,7 @@ "y": 0 }, { - "x": 737.3199999999999, + "x": 737.32, "y": 328 }, { @@ -11727,7 +11727,7 @@ "y": 0 }, { - "x": 737.3199999999999, + "x": 737.32, "y": 328 }, { @@ -11766,28 +11766,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 705.3199999999999, + "x": 705.32, "y": 296 }, { "body": null, "index": 1, "isInternal": false, - "x": 769.3199999999999, + "x": 769.32, "y": 296 }, { "body": null, "index": 2, "isInternal": false, - "x": 769.3199999999999, + "x": 769.32, "y": 360 }, { "body": null, "index": 3, "isInternal": false, - "x": 705.3199999999999, + "x": 705.32, "y": 360 }, [], diff --git a/test/browser/refs/sprites/sprites-10.json b/test/browser/refs/sprites/sprites-10.json index 304d2562..ab1ae3a8 100644 --- a/test/browser/refs/sprites/sprites-10.json +++ b/test/browser/refs/sprites/sprites-10.json @@ -1019,7 +1019,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 97 }, @@ -1041,13 +1041,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 9, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -1069,7 +1069,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.2856564479203474, + "speed": 2.28566, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1123,52 +1123,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -1183,12 +1183,12 @@ } }, { - "x": 111.32999999999998, - "y": 127.11730824184053 + "x": 111.33, + "y": 127.11731 }, { - "x": 19.999999999999993, - "y": 35.117308241840526 + "x": 20, + "y": 35.11731 }, { "category": 1, @@ -1205,16 +1205,16 @@ "y": 0 }, { - "x": 65.66499999999999, - "y": 81.11730824184053 + "x": 65.665, + "y": 81.11731 }, { "x": 0, "y": 0 }, { - "x": 65.66499999999999, - "y": 78.83165179392019 + "x": 65.665, + "y": 78.83165 }, { "endCol": 2, @@ -1239,7 +1239,7 @@ }, { "x": 0, - "y": 2.2856564479203474 + "y": 2.28566 }, [ { @@ -1325,183 +1325,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 111.32999999999998, - "y": 86.66230824184053 + "x": 111.33, + "y": 86.66231 }, { "body": null, "index": 1, "isInternal": false, - "x": 108.67599999999999, - "y": 97.42930824184053 + "x": 108.676, + "y": 97.42931 }, { "body": null, "index": 2, "isInternal": false, - "x": 103.52199999999999, - "y": 107.24830824184053 + "x": 103.522, + "y": 107.24831 }, { "body": null, "index": 3, "isInternal": false, "x": 96.169, - "y": 115.54830824184053 + "y": 115.54831 }, { "body": null, "index": 4, "isInternal": false, - "x": 87.04199999999999, - "y": 121.84830824184053 + "x": 87.042, + "y": 121.84831 }, { "body": null, "index": 5, "isInternal": false, - "x": 76.67399999999999, - "y": 125.78030824184053 + "x": 76.674, + "y": 125.78031 }, { "body": null, "index": 6, "isInternal": false, - "x": 65.66499999999999, - "y": 127.11730824184053 + "x": 65.665, + "y": 127.11731 }, { "body": null, "index": 7, "isInternal": false, - "x": 54.65599999999999, - "y": 125.78030824184053 + "x": 54.656, + "y": 125.78031 }, { "body": null, "index": 8, "isInternal": false, "x": 44.288, - "y": 121.84830824184053 + "y": 121.84831 }, { "body": null, "index": 9, "isInternal": false, - "x": 35.16099999999999, - "y": 115.54830824184053 + "x": 35.161, + "y": 115.54831 }, { "body": null, "index": 10, "isInternal": false, - "x": 27.807999999999993, - "y": 107.24830824184053 + "x": 27.808, + "y": 107.24831 }, { "body": null, "index": 11, "isInternal": false, - "x": 22.65399999999999, - "y": 97.42930824184053 + "x": 22.654, + "y": 97.42931 }, { "body": null, "index": 12, "isInternal": false, - "x": 19.999999999999993, - "y": 86.66230824184053 + "x": 20, + "y": 86.66231 }, { "body": null, "index": 13, "isInternal": false, - "x": 19.999999999999993, - "y": 75.57230824184053 + "x": 20, + "y": 75.57231 }, { "body": null, "index": 14, "isInternal": false, - "x": 22.65399999999999, - "y": 64.80530824184054 + "x": 22.654, + "y": 64.80531 }, { "body": null, "index": 15, "isInternal": false, - "x": 27.807999999999993, - "y": 54.98630824184053 + "x": 27.808, + "y": 54.98631 }, { "body": null, "index": 16, "isInternal": false, - "x": 35.16099999999999, - "y": 46.686308241840536 + "x": 35.161, + "y": 46.68631 }, { "body": null, "index": 17, "isInternal": false, "x": 44.288, - "y": 40.38630824184053 + "y": 40.38631 }, { "body": null, "index": 18, "isInternal": false, - "x": 54.65599999999999, - "y": 36.45430824184053 + "x": 54.656, + "y": 36.45431 }, { "body": null, "index": 19, "isInternal": false, - "x": 65.66499999999999, - "y": 35.117308241840526 + "x": 65.665, + "y": 35.11731 }, { "body": null, "index": 20, "isInternal": false, - "x": 76.67399999999999, - "y": 36.45430824184053 + "x": 76.674, + "y": 36.45431 }, { "body": null, "index": 21, "isInternal": false, - "x": 87.04199999999999, - "y": 40.38630824184053 + "x": 87.042, + "y": 40.38631 }, { "body": null, "index": 22, "isInternal": false, "x": 96.169, - "y": 46.686308241840536 + "y": 46.68631 }, { "body": null, "index": 23, "isInternal": false, - "x": 103.52199999999999, - "y": 54.98630824184053 + "x": 103.522, + "y": 54.98631 }, { "body": null, "index": 24, "isInternal": false, - "x": 108.67599999999999, - "y": 64.80530824184054 + "x": 108.676, + "y": 64.80531 }, { "body": null, "index": 25, "isInternal": false, - "x": 111.32999999999998, - "y": 75.57230824184053 + "x": 111.33, + "y": 75.57231 }, { "angle": 0, @@ -1529,9 +1529,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1557,7 +1557,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1594,12 +1594,12 @@ } }, { - "x": 175.32999999999998, - "y": 101.73575476702578 + "x": 175.33, + "y": 101.73575 }, { - "x": 111.32999999999998, - "y": 37.73575476702578 + "x": 111.33, + "y": 37.73575 }, { "category": 1, @@ -1616,16 +1616,16 @@ "y": 0 }, { - "x": 143.32999999999998, - "y": 69.7357547670258 + "x": 143.33, + "y": 69.73575 }, { "x": 0, "y": 0 }, { - "x": 143.32999999999998, - "y": 66.82848405199013 + "x": 143.33, + "y": 66.82848 }, { "endCol": 3, @@ -1650,7 +1650,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -1670,29 +1670,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 111.32999999999998, - "y": 37.73575476702578 + "x": 111.33, + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 175.32999999999998, - "y": 37.73575476702578 + "x": 175.33, + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 175.32999999999998, - "y": 101.73575476702578 + "x": 175.33, + "y": 101.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 111.32999999999998, - "y": 101.73575476702578 + "x": 111.33, + "y": 101.73575 }, { "angle": 0, @@ -1720,9 +1720,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1748,7 +1748,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1785,12 +1785,12 @@ } }, { - "x": 239.32999999999998, - "y": 101.73575476702578 + "x": 239.33, + "y": 101.73575 }, { - "x": 175.32999999999998, - "y": 37.73575476702578 + "x": 175.33, + "y": 37.73575 }, { "category": 1, @@ -1807,16 +1807,16 @@ "y": 0 }, { - "x": 207.32999999999998, - "y": 69.7357547670258 + "x": 207.33, + "y": 69.73575 }, { "x": 0, "y": 0 }, { - "x": 207.32999999999998, - "y": 66.82848405199013 + "x": 207.33, + "y": 66.82848 }, { "endCol": 4, @@ -1841,7 +1841,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -1861,29 +1861,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.32999999999998, - "y": 37.73575476702578 + "x": 175.33, + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 239.32999999999998, - "y": 37.73575476702578 + "x": 239.33, + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.32999999999998, - "y": 101.73575476702578 + "x": 239.33, + "y": 101.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 175.32999999999998, - "y": 101.73575476702578 + "x": 175.33, + "y": 101.73575 }, { "angle": 0, @@ -1911,9 +1911,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1939,7 +1939,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1977,11 +1977,11 @@ }, { "x": 303.33, - "y": 101.73575476702578 + "y": 101.73575 }, { - "x": 239.32999999999998, - "y": 37.73575476702578 + "x": 239.33, + "y": 37.73575 }, { "category": 1, @@ -1999,7 +1999,7 @@ }, { "x": 271.33, - "y": 69.7357547670258 + "y": 69.73575 }, { "x": 0, @@ -2007,7 +2007,7 @@ }, { "x": 271.33, - "y": 66.82848405199013 + "y": 66.82848 }, { "endCol": 6, @@ -2032,7 +2032,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -2052,29 +2052,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 239.32999999999998, - "y": 37.73575476702578 + "x": 239.33, + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 303.33, - "y": 37.73575476702578 + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 303.33, - "y": 101.73575476702578 + "y": 101.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 239.32999999999998, - "y": 101.73575476702578 + "x": 239.33, + "y": 101.73575 }, { "angle": 0, @@ -2102,9 +2102,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2130,7 +2130,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2168,11 +2168,11 @@ }, { "x": 367.33, - "y": 101.73575476702578 + "y": 101.73575 }, { "x": 303.33, - "y": 37.73575476702578 + "y": 37.73575 }, { "category": 1, @@ -2190,7 +2190,7 @@ }, { "x": 335.33, - "y": 69.7357547670258 + "y": 69.73575 }, { "x": 0, @@ -2198,7 +2198,7 @@ }, { "x": 335.33, - "y": 66.82848405199013 + "y": 66.82848 }, { "endCol": 7, @@ -2223,7 +2223,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -2244,35 +2244,35 @@ "index": 0, "isInternal": false, "x": 303.33, - "y": 37.73575476702578 + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 367.33, - "y": 37.73575476702578 + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 367.33, - "y": 101.73575476702578 + "y": 101.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 303.33, - "y": 101.73575476702578 + "y": 101.73575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 240 }, @@ -2294,13 +2294,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 14, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -2322,7 +2322,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.2856564479203474, + "speed": 2.28566, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2376,52 +2376,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -2437,11 +2437,11 @@ }, { "x": 458.66, - "y": 127.11730824184053 + "y": 127.11731 }, { "x": 367.33, - "y": 35.117308241840526 + "y": 35.11731 }, { "category": 1, @@ -2459,7 +2459,7 @@ }, { "x": 412.995, - "y": 81.11730824184053 + "y": 81.11731 }, { "x": 0, @@ -2467,7 +2467,7 @@ }, { "x": 412.995, - "y": 78.83165179392019 + "y": 78.83165 }, { "endCol": 9, @@ -2492,7 +2492,7 @@ }, { "x": 0, - "y": 2.2856564479203474 + "y": 2.28566 }, [ { @@ -2579,182 +2579,182 @@ "index": 0, "isInternal": false, "x": 458.66, - "y": 86.66230824184053 + "y": 86.66231 }, { "body": null, "index": 1, "isInternal": false, - "x": 456.00600000000003, - "y": 97.42930824184053 + "x": 456.006, + "y": 97.42931 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.85200000000003, - "y": 107.24830824184053 + "x": 450.852, + "y": 107.24831 }, { "body": null, "index": 3, "isInternal": false, "x": 443.499, - "y": 115.54830824184053 + "y": 115.54831 }, { "body": null, "index": 4, "isInternal": false, "x": 434.372, - "y": 121.84830824184053 + "y": 121.84831 }, { "body": null, "index": 5, "isInternal": false, "x": 424.004, - "y": 125.78030824184053 + "y": 125.78031 }, { "body": null, "index": 6, "isInternal": false, "x": 412.995, - "y": 127.11730824184053 + "y": 127.11731 }, { "body": null, "index": 7, "isInternal": false, "x": 401.986, - "y": 125.78030824184053 + "y": 125.78031 }, { "body": null, "index": 8, "isInternal": false, "x": 391.618, - "y": 121.84830824184053 + "y": 121.84831 }, { "body": null, "index": 9, "isInternal": false, "x": 382.491, - "y": 115.54830824184053 + "y": 115.54831 }, { "body": null, "index": 10, "isInternal": false, "x": 375.138, - "y": 107.24830824184053 + "y": 107.24831 }, { "body": null, "index": 11, "isInternal": false, "x": 369.984, - "y": 97.42930824184053 + "y": 97.42931 }, { "body": null, "index": 12, "isInternal": false, "x": 367.33, - "y": 86.66230824184053 + "y": 86.66231 }, { "body": null, "index": 13, "isInternal": false, "x": 367.33, - "y": 75.57230824184053 + "y": 75.57231 }, { "body": null, "index": 14, "isInternal": false, "x": 369.984, - "y": 64.80530824184054 + "y": 64.80531 }, { "body": null, "index": 15, "isInternal": false, "x": 375.138, - "y": 54.98630824184053 + "y": 54.98631 }, { "body": null, "index": 16, "isInternal": false, "x": 382.491, - "y": 46.686308241840536 + "y": 46.68631 }, { "body": null, "index": 17, "isInternal": false, "x": 391.618, - "y": 40.38630824184053 + "y": 40.38631 }, { "body": null, "index": 18, "isInternal": false, "x": 401.986, - "y": 36.45430824184053 + "y": 36.45431 }, { "body": null, "index": 19, "isInternal": false, "x": 412.995, - "y": 35.117308241840526 + "y": 35.11731 }, { "body": null, "index": 20, "isInternal": false, "x": 424.004, - "y": 36.45430824184053 + "y": 36.45431 }, { "body": null, "index": 21, "isInternal": false, "x": 434.372, - "y": 40.38630824184053 + "y": 40.38631 }, { "body": null, "index": 22, "isInternal": false, "x": 443.499, - "y": 46.686308241840536 + "y": 46.68631 }, { "body": null, "index": 23, "isInternal": false, - "x": 450.85200000000003, - "y": 54.98630824184053 + "x": 450.852, + "y": 54.98631 }, { "body": null, "index": 24, "isInternal": false, - "x": 456.00600000000003, - "y": 64.80530824184054 + "x": 456.006, + "y": 64.80531 }, { "body": null, "index": 25, "isInternal": false, "x": 458.66, - "y": 75.57230824184053 + "y": 75.57231 }, { "angle": 0, @@ -2782,9 +2782,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2810,7 +2810,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2847,12 +2847,12 @@ } }, { - "x": 522.6600000000001, - "y": 101.73575476702578 + "x": 522.66, + "y": 101.73575 }, { "x": 458.66, - "y": 37.73575476702578 + "y": 37.73575 }, { "category": 1, @@ -2870,7 +2870,7 @@ }, { "x": 490.66, - "y": 69.7357547670258 + "y": 69.73575 }, { "x": 0, @@ -2878,7 +2878,7 @@ }, { "x": 490.66, - "y": 66.82848405199013 + "y": 66.82848 }, { "endCol": 10, @@ -2903,7 +2903,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -2924,28 +2924,28 @@ "index": 0, "isInternal": false, "x": 458.66, - "y": 37.73575476702578 + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 522.6600000000001, - "y": 37.73575476702578 + "x": 522.66, + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 522.6600000000001, - "y": 101.73575476702578 + "x": 522.66, + "y": 101.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 458.66, - "y": 101.73575476702578 + "y": 101.73575 }, { "angle": 0, @@ -2973,9 +2973,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3001,7 +3001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3038,12 +3038,12 @@ } }, { - "x": 586.6600000000001, - "y": 101.73575476702578 + "x": 586.66, + "y": 101.73575 }, { - "x": 522.6600000000001, - "y": 37.73575476702578 + "x": 522.66, + "y": 37.73575 }, { "category": 1, @@ -3060,16 +3060,16 @@ "y": 0 }, { - "x": 554.6600000000001, - "y": 69.7357547670258 + "x": 554.66, + "y": 69.73575 }, { "x": 0, "y": 0 }, { - "x": 554.6600000000001, - "y": 66.82848405199013 + "x": 554.66, + "y": 66.82848 }, { "endCol": 12, @@ -3094,7 +3094,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -3114,29 +3114,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.6600000000001, - "y": 37.73575476702578 + "x": 522.66, + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.6600000000001, - "y": 37.73575476702578 + "x": 586.66, + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.6600000000001, - "y": 101.73575476702578 + "x": 586.66, + "y": 101.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 522.6600000000001, - "y": 101.73575476702578 + "x": 522.66, + "y": 101.73575 }, { "angle": 0, @@ -3164,9 +3164,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3192,7 +3192,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3229,12 +3229,12 @@ } }, { - "x": 650.6600000000001, - "y": 101.73575476702578 + "x": 650.66, + "y": 101.73575 }, { - "x": 586.6600000000001, - "y": 37.73575476702578 + "x": 586.66, + "y": 37.73575 }, { "category": 1, @@ -3251,16 +3251,16 @@ "y": 0 }, { - "x": 618.6600000000001, - "y": 69.7357547670258 + "x": 618.66, + "y": 69.73575 }, { "x": 0, "y": 0 }, { - "x": 618.6600000000001, - "y": 66.82848405199013 + "x": 618.66, + "y": 66.82848 }, { "endCol": 13, @@ -3285,7 +3285,7 @@ }, { "x": 0, - "y": 2.9072707150356583 + "y": 2.90727 }, [ { @@ -3305,36 +3305,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 586.6600000000001, - "y": 37.73575476702578 + "x": 586.66, + "y": 37.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 650.6600000000001, - "y": 37.73575476702578 + "x": 650.66, + "y": 37.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 650.6600000000001, - "y": 101.73575476702578 + "x": 650.66, + "y": 101.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.6600000000001, - "y": 101.73575476702578 + "x": 586.66, + "y": 101.73575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 361 }, @@ -3356,13 +3356,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 18, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -3384,7 +3384,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.2856564479203474, + "speed": 2.28566, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3438,52 +3438,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -3499,11 +3499,11 @@ }, { "x": 741.99, - "y": 127.11730824184053 + "y": 127.11731 }, { - "x": 650.6600000000001, - "y": 35.117308241840526 + "x": 650.66, + "y": 35.11731 }, { "category": 1, @@ -3521,7 +3521,7 @@ }, { "x": 696.325, - "y": 81.11730824184053 + "y": 81.11731 }, { "x": 0, @@ -3529,7 +3529,7 @@ }, { "x": 696.325, - "y": 78.83165179392019 + "y": 78.83165 }, { "endCol": 15, @@ -3554,7 +3554,7 @@ }, { "x": 0, - "y": 2.2856564479203474 + "y": 2.28566 }, [ { @@ -3641,188 +3641,188 @@ "index": 0, "isInternal": false, "x": 741.99, - "y": 86.66230824184053 + "y": 86.66231 }, { "body": null, "index": 1, "isInternal": false, "x": 739.336, - "y": 97.42930824184053 + "y": 97.42931 }, { "body": null, "index": 2, "isInternal": false, "x": 734.182, - "y": 107.24830824184053 + "y": 107.24831 }, { "body": null, "index": 3, "isInternal": false, - "x": 726.8290000000001, - "y": 115.54830824184053 + "x": 726.829, + "y": 115.54831 }, { "body": null, "index": 4, "isInternal": false, "x": 717.702, - "y": 121.84830824184053 + "y": 121.84831 }, { "body": null, "index": 5, "isInternal": false, - "x": 707.3340000000001, - "y": 125.78030824184053 + "x": 707.334, + "y": 125.78031 }, { "body": null, "index": 6, "isInternal": false, "x": 696.325, - "y": 127.11730824184053 + "y": 127.11731 }, { "body": null, "index": 7, "isInternal": false, "x": 685.316, - "y": 125.78030824184053 + "y": 125.78031 }, { "body": null, "index": 8, "isInternal": false, - "x": 674.9480000000001, - "y": 121.84830824184053 + "x": 674.948, + "y": 121.84831 }, { "body": null, "index": 9, "isInternal": false, "x": 665.821, - "y": 115.54830824184053 + "y": 115.54831 }, { "body": null, "index": 10, "isInternal": false, - "x": 658.4680000000001, - "y": 107.24830824184053 + "x": 658.468, + "y": 107.24831 }, { "body": null, "index": 11, "isInternal": false, - "x": 653.3140000000001, - "y": 97.42930824184053 + "x": 653.314, + "y": 97.42931 }, { "body": null, "index": 12, "isInternal": false, - "x": 650.6600000000001, - "y": 86.66230824184053 + "x": 650.66, + "y": 86.66231 }, { "body": null, "index": 13, "isInternal": false, - "x": 650.6600000000001, - "y": 75.57230824184053 + "x": 650.66, + "y": 75.57231 }, { "body": null, "index": 14, "isInternal": false, - "x": 653.3140000000001, - "y": 64.80530824184054 + "x": 653.314, + "y": 64.80531 }, { "body": null, "index": 15, "isInternal": false, - "x": 658.4680000000001, - "y": 54.98630824184053 + "x": 658.468, + "y": 54.98631 }, { "body": null, "index": 16, "isInternal": false, "x": 665.821, - "y": 46.686308241840536 + "y": 46.68631 }, { "body": null, "index": 17, "isInternal": false, - "x": 674.9480000000001, - "y": 40.38630824184053 + "x": 674.948, + "y": 40.38631 }, { "body": null, "index": 18, "isInternal": false, "x": 685.316, - "y": 36.45430824184053 + "y": 36.45431 }, { "body": null, "index": 19, "isInternal": false, "x": 696.325, - "y": 35.117308241840526 + "y": 35.11731 }, { "body": null, "index": 20, "isInternal": false, - "x": 707.3340000000001, - "y": 36.45430824184053 + "x": 707.334, + "y": 36.45431 }, { "body": null, "index": 21, "isInternal": false, "x": 717.702, - "y": 40.38630824184053 + "y": 40.38631 }, { "body": null, "index": 22, "isInternal": false, - "x": 726.8290000000001, - "y": 46.686308241840536 + "x": 726.829, + "y": 46.68631 }, { "body": null, "index": 23, "isInternal": false, "x": 734.182, - "y": 54.98630824184053 + "y": 54.98631 }, { "body": null, "index": 24, "isInternal": false, "x": 739.336, - "y": 64.80530824184054 + "y": 64.80531 }, { "body": null, "index": 25, "isInternal": false, "x": 741.99, - "y": 75.57230824184053 + "y": 75.57231 }, { - "angle": 0.00013133202755472056, - "anglePrev": 0.00009725051946377886, - "angularSpeed": 0.00006533603380862983, - "angularVelocity": 0.000050349987380676815, + "angle": 0.00013, + "anglePrev": 0.0001, + "angularSpeed": 0.00007, + "angularVelocity": 0.00005, "area": 4096, "axes": { "#": 416 @@ -3844,9 +3844,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3872,7 +3872,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9012845034050705, + "speed": 2.90128, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3893,12 +3893,12 @@ } ], { - "x": -0.00013133202717718255, - "y": 0.9999999913759493 + "x": -0.00013, + "y": 1 }, { - "x": -0.9999999913759493, - "y": -0.00013133202717718255 + "x": -1, + "y": -0.00013 }, { "max": { @@ -3909,12 +3909,12 @@ } }, { - "x": 84.00176889157186, - "y": 196.6290002592981 + "x": 84.00177, + "y": 196.629 }, { - "x": 19.973076997203936, - "y": 129.71938198794746 + "x": 19.97308, + "y": 129.71938 }, { "category": 1, @@ -3931,16 +3931,16 @@ "y": 0 }, { - "x": 51.997566542671805, - "y": 161.72358433684752 + "x": 51.99757, + "y": 161.72358 }, { "x": 0, "y": 0 }, { - "x": 52.03567707873121, - "y": 158.83474576079908 + "x": 52.03568, + "y": 158.83475 }, { "endCol": 1, @@ -3964,8 +3964,8 @@ "yScale": 1 }, { - "x": -0.03782095449034273, - "y": 2.890386746750039 + "x": -0.03782, + "y": 2.89039 }, [ { @@ -3985,36 +3985,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 20.001769443511094, - "y": 129.71938198794746 + "x": 20.00177, + "y": 129.71938 }, { "body": null, "index": 1, "isInternal": false, - "x": 84.00176889157186, - "y": 129.72778723768678 + "x": 84.00177, + "y": 129.72779 }, { "body": null, "index": 2, "isInternal": false, - "x": 83.99336364183252, - "y": 193.72778668574756 + "x": 83.99336, + "y": 193.72779 }, { "body": null, "index": 3, "isInternal": false, - "x": 19.993364193771754, - "y": 193.71938143600823 + "x": 19.99336, + "y": 193.71938 }, { - "angle": 0.006055222422243786, - "anglePrev": 0.0040878134596670805, - "angularSpeed": 0.0016292736823353355, - "angularVelocity": 0.0019888684818443877, - "area": 6583.099238, + "angle": 0.00606, + "anglePrev": 0.00409, + "angularSpeed": 0.00163, + "angularVelocity": 0.00199, + "area": 6583.09924, "axes": { "#": 438 }, @@ -4036,13 +4036,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 20, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -4064,7 +4064,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.453126168764678, + "speed": 2.45313, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4118,56 +4118,56 @@ } ], { - "x": -0.9694712057737355, - "y": -0.24520518178786424 + "x": -0.96947, + "y": -0.24521 }, { - "x": -0.8826036146830966, - "y": -0.4701179206840897 + "x": -0.8826, + "y": -0.47012 }, { - "x": -0.744488831988794, - "y": -0.6676349144884207 + "x": -0.74449, + "y": -0.66763 }, { - "x": -0.5630763339913782, - "y": -0.8264048899291616 + "x": -0.56308, + "y": -0.8264 }, { - "x": -0.3489316521168905, - "y": -0.9371481751307938 + "x": -0.34893, + "y": -0.93715 }, { - "x": -0.11454703387526786, - "y": -0.9934178260079584 + "x": -0.11455, + "y": -0.99342 }, { - "x": 0.1265690717939189, - "y": -0.9919577965141589 + "x": 0.12657, + "y": -0.99196 }, { - "x": 0.3602550686384621, - "y": -0.9328538393126203 + "x": 0.36026, + "y": -0.93285 }, { - "x": 0.5730429295028509, - "y": -0.8195253510092233 + "x": 0.57304, + "y": -0.81953 }, { - "x": 0.7525193963927301, - "y": -0.6585700859078861 + "x": 0.75252, + "y": -0.65857 }, { - "x": 0.8882320908656192, - "y": -0.4593949855587136 + "x": 0.88823, + "y": -0.45939 }, { - "x": 0.9723695851689941, - "y": -0.23344676017944296 + "x": 0.97237, + "y": -0.23345 }, { - "x": 0.9999816671967241, - "y": 0.006055185419131408 + "x": 0.99998, + "y": 0.00606 }, { "max": { @@ -4178,12 +4178,12 @@ } }, { - "x": 175.34080759527893, - "y": 222.30074218534472 + "x": 175.34081, + "y": 222.30074 }, { - "x": 83.92329445161282, - "y": 127.84940160448957 + "x": 83.92329, + "y": 127.8494 }, { "category": 1, @@ -4200,16 +4200,16 @@ "y": 0 }, { - "x": 129.64306875959144, - "y": 173.8485582955389 + "x": 129.64307, + "y": 173.84856 }, { "x": 0, "y": 0 }, { - "x": 129.67139125134963, - "y": 171.34009733109153 + "x": 129.67139, + "y": 171.3401 }, { "endCol": 3, @@ -4233,8 +4233,8 @@ "yScale": 1 }, { - "x": -0.02868284668039678, - "y": 2.5065344228703736 + "x": -0.02868, + "y": 2.50653 }, [ { @@ -4320,189 +4320,189 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.27365558898074, - "y": 179.66996668230942 + "x": 175.27366, + "y": 179.66997 }, { "body": null, "index": 1, "isInternal": false, - "x": 172.55450806283292, - "y": 190.42069883091415 + "x": 172.55451, + "y": 190.4207 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.34114668447052, - "y": 200.20831039546852 + "x": 167.34115, + "y": 200.20831 }, { "body": null, "index": 3, "isInternal": false, - "x": 159.93802344659423, - "y": 208.4636344548145 + "x": 159.93802, + "y": 208.46363 }, { "body": null, "index": 4, "isInternal": false, - "x": 150.77304310194916, - "y": 214.70825328083345 + "x": 150.77304, + "y": 214.70825 }, { "body": null, "index": 5, "isInternal": false, - "x": 140.3814241873855, - "y": 218.57740103382542 + "x": 140.38142, + "y": 218.5774 }, { "body": null, "index": 6, "isInternal": false, - "x": 129.3645302303114, - "y": 219.84771498658824 + "x": 129.36453, + "y": 219.84771 }, { "body": null, "index": 7, "isInternal": false, - "x": 118.36382783904806, - "y": 218.44407796126694 + "x": 118.36383, + "y": 218.44408 }, { "body": null, "index": 8, "isInternal": false, - "x": 108.01982690262045, - "y": 214.4493698834239 + "x": 108.01983, + "y": 214.44937 }, { "body": null, "index": 9, "isInternal": false, - "x": 98.93114189425646, - "y": 208.09421970276418 + "x": 98.93114, + "y": 208.09422 }, { "body": null, "index": 10, "isInternal": false, - "x": 91.62853473433775, - "y": 199.74984808664448 + "x": 91.62853, + "y": 199.74985 }, { "body": null, "index": 11, "isInternal": false, - "x": 86.53408508723629, - "y": 189.8998196707896 + "x": 86.53409, + "y": 189.89982 }, { "body": null, "index": 12, "isInternal": false, - "x": 83.94532992390396, - "y": 179.11694659798013 + "x": 83.94533, + "y": 179.11695 }, { "body": null, "index": 13, "isInternal": false, - "x": 84.01248193020214, - "y": 168.0271499087684 + "x": 84.01248, + "y": 168.02715 }, { "body": null, "index": 14, "isInternal": false, - "x": 86.73162945635002, - "y": 157.27641776016367 + "x": 86.73163, + "y": 157.27642 }, { "body": null, "index": 15, "isInternal": false, - "x": 91.94499083471237, - "y": 147.4888061956093 + "x": 91.94499, + "y": 147.48881 }, { "body": null, "index": 16, "isInternal": false, - "x": 99.34811407258866, - "y": 139.23348213626326 + "x": 99.34811, + "y": 139.23348 }, { "body": null, "index": 17, "isInternal": false, - "x": 108.51309441723372, - "y": 132.98886331024434 + "x": 108.51309, + "y": 132.98886 }, { "body": null, "index": 18, "isInternal": false, - "x": 118.90471333179737, - "y": 129.1197155572524 + "x": 118.90471, + "y": 129.11972 }, { "body": null, "index": 19, "isInternal": false, - "x": 129.92160728887148, - "y": 127.84940160448957 + "x": 129.92161, + "y": 127.8494 }, { "body": null, "index": 20, "isInternal": false, - "x": 140.9223096801348, - "y": 129.25303862981082 + "x": 140.92231, + "y": 129.25304 }, { "body": null, "index": 21, "isInternal": false, - "x": 151.26631061656246, - "y": 133.24774670765387 + "x": 151.26631, + "y": 133.24775 }, { "body": null, "index": 22, "isInternal": false, - "x": 160.35499562492643, - "y": 139.60289688831364 + "x": 160.355, + "y": 139.6029 }, { "body": null, "index": 23, "isInternal": false, - "x": 167.65760278484515, - "y": 147.94726850443334 + "x": 167.6576, + "y": 147.94727 }, { "body": null, "index": 24, "isInternal": false, - "x": 172.7520524319466, - "y": 157.7972969202882 + "x": 172.75205, + "y": 157.7973 }, { "body": null, "index": 25, "isInternal": false, - "x": 175.34080759527893, - "y": 168.58016999309768 + "x": 175.34081, + "y": 168.58017 }, { - "angle": 0.005422175440418826, - "anglePrev": 0.003771887191707081, - "angularSpeed": 0.0014283119309548978, - "angularVelocity": 0.0016698755686283453, + "angle": 0.00542, + "anglePrev": 0.00377, + "angularSpeed": 0.00143, + "angularVelocity": 0.00167, "area": 4096, "axes": { "#": 493 @@ -4524,9 +4524,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4552,7 +4552,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7695987446115153, + "speed": 2.7696, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4573,12 +4573,12 @@ } ], { - "x": -0.005422148871810417, - "y": 0.9999853000427618 + "x": -0.00542, + "y": 0.99999 }, { - "x": -0.9999853000427618, - "y": -0.005422148871810417 + "x": -0.99999, + "y": -0.00542 }, { "max": { @@ -4589,12 +4589,12 @@ } }, { - "x": 239.5043947689989, - "y": 196.16430117159177 + "x": 239.50439, + "y": 196.1643 }, { - "x": 175.15211181021516, - "y": 129.04863265003928 + "x": 175.15211, + "y": 129.04863 }, { "category": 1, @@ -4611,16 +4611,16 @@ "y": 0 }, { - "x": 207.33135640373257, - "y": 161.22167101530562 + "x": 207.33136, + "y": 161.22167 }, { "x": 0, "y": 0 }, { - "x": 207.3407161124738, - "y": 158.48431471752318 + "x": 207.34072, + "y": 158.48431 }, { "endCol": 4, @@ -4644,8 +4644,8 @@ "yScale": 1 }, { - "x": -0.0077235945285281105, - "y": 2.737410128506127 + "x": -0.00772, + "y": 2.73741 }, [ { @@ -4665,35 +4665,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.5053355662621, - "y": 129.04863265003928 + "x": 175.50534, + "y": 129.04863 }, { "body": null, "index": 1, "isInternal": false, - "x": 239.5043947689989, - "y": 129.39565017783517 + "x": 239.50439, + "y": 129.39565 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.15737724120305, - "y": 193.39470938057192 + "x": 239.15738, + "y": 193.39471 }, { "body": null, "index": 3, "isInternal": false, - "x": 175.15831803846623, - "y": 193.04769185277607 + "x": 175.15832, + "y": 193.04769 }, { - "angle": 0.0018683392725996402, - "anglePrev": 0.0011455948319789096, - "angularSpeed": 0.0005756784578758842, - "angularVelocity": 0.0007380667170469974, + "angle": 0.00187, + "anglePrev": 0.00115, + "angularSpeed": 0.00058, + "angularVelocity": 0.00074, "area": 4096, "axes": { "#": 515 @@ -4715,9 +4715,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4743,7 +4743,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.873267897179416, + "speed": 2.87327, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4764,12 +4764,12 @@ } ], { - "x": -0.0018683381856337842, - "y": 0.999998254654689 + "x": -0.00187, + "y": 1 }, { - "x": -0.999998254654689, - "y": -0.0018683381856337842 + "x": -1, + "y": -0.00187 }, { "max": { @@ -4780,12 +4780,12 @@ } }, { - "x": 303.4703197824493, - "y": 196.58007605751519 + "x": 303.47032, + "y": 196.58008 }, { - "x": 239.33387217610212, - "y": 129.5873964253809 + "x": 239.33387, + "y": 129.5874 }, { "category": 1, @@ -4802,16 +4802,16 @@ "y": 0 }, { - "x": 271.3936031469924, - "y": 161.64712739627123 + "x": 271.3936, + "y": 161.64713 }, { - "x": 0.0002163946032205593, - "y": 0.000010902418154559488 + "x": 0.00022, + "y": 0.00001 }, { - "x": 271.3760201431898, - "y": 158.7851251899351 + "x": 271.37602, + "y": 158.78513 }, { "endCol": 6, @@ -4835,8 +4835,8 @@ "yScale": 1 }, { - "x": 0.018923179880630414, - "y": 2.8619720936291912 + "x": 0.01892, + "y": 2.86197 }, [ { @@ -4856,35 +4856,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 239.4534458199827, - "y": 129.5873964253809 + "x": 239.45345, + "y": 129.5874 }, { "body": null, "index": 1, "isInternal": false, - "x": 303.4533341178828, - "y": 129.70697006926144 + "x": 303.45333, + "y": 129.70697 }, { "body": null, "index": 2, "isInternal": false, - "x": 303.33376047400213, - "y": 193.70685836716154 + "x": 303.33376, + "y": 193.70686 }, { "body": null, "index": 3, "isInternal": false, - "x": 239.33387217610212, - "y": 193.58728472328096 + "x": 239.33387, + "y": 193.58728 }, { - "angle": 0.0007907688350522303, - "anglePrev": 0.00045682143132043336, - "angularSpeed": 0.0002792405923834241, - "angularVelocity": 0.00034916733021557694, + "angle": 0.00079, + "anglePrev": 0.00046, + "angularSpeed": 0.00028, + "angularVelocity": 0.00035, "area": 4096, "axes": { "#": 537 @@ -4906,9 +4906,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4934,7 +4934,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9020634180639777, + "speed": 2.90206, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4955,12 +4955,12 @@ } ], { - "x": -0.0007907687526389178, - "y": 0.9999996873423411 + "x": -0.00079, + "y": 1 }, { - "x": -0.9999996873423411, - "y": -0.0007907687526389178 + "x": -1, + "y": -0.00079 }, { "max": { @@ -4971,12 +4971,12 @@ } }, { - "x": 367.4269905719527, - "y": 196.65873536229378 + "x": 367.42699, + "y": 196.65874 }, { - "x": 303.3528100802921, - "y": 129.70617864432043 + "x": 303.35281, + "y": 129.70618 }, { "category": 1, @@ -4993,16 +4993,16 @@ "y": 0 }, { - "x": 335.3781046753315, - "y": 161.7314732393598 + "x": 335.3781, + "y": 161.73147 }, { - "x": 0.00212898934654444, - "y": 0.0000010704140344809576 + "x": 0.00213, + "y": 0 }, { - "x": 335.3499503659077, - "y": 158.83530386093534 + "x": 335.34995, + "y": 158.8353 }, { "endCol": 7, @@ -5026,8 +5026,8 @@ "yScale": 1 }, { - "x": 0.02948554460442665, - "y": 2.896448747982106 + "x": 0.02949, + "y": 2.89645 }, [ { @@ -5047,35 +5047,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 303.40341928046104, - "y": 129.70617864432043 + "x": 303.40342, + "y": 129.70618 }, { "body": null, "index": 1, "isInternal": false, - "x": 367.40339927037087, - "y": 129.7567878444893 + "x": 367.4034, + "y": 129.75679 }, { "body": null, "index": 2, "isInternal": false, - "x": 367.35279007020193, - "y": 193.75676783439914 + "x": 367.35279, + "y": 193.75677 }, { "body": null, "index": 3, "isInternal": false, - "x": 303.3528100802921, - "y": 193.70615863423026 + "x": 303.35281, + "y": 193.70616 }, { - "angle": 0.00009970926011133051, - "anglePrev": -0.00015171595419195255, - "angularSpeed": 0.00009970926011133051, - "angularVelocity": 0.00027016835485625294, + "angle": 0.0001, + "anglePrev": -0.00015, + "angularSpeed": 0.0001, + "angularVelocity": 0.00027, "area": 4096, "axes": { "#": 559 @@ -5097,9 +5097,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5125,7 +5125,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9136459895634603, + "speed": 2.91365, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5146,12 +5146,12 @@ } ], { - "x": -0.00009970925994611332, - "y": 0.9999999950290317 + "x": -0.0001, + "y": 1 }, { - "x": -0.9999999950290317, - "y": -0.00009970925994611332 + "x": -1, + "y": -0.0001 }, { "max": { @@ -5162,12 +5162,12 @@ } }, { - "x": 431.37587702040247, - "y": 196.65879781435922 + "x": 431.37588, + "y": 196.6588 }, { - "x": 367.347199833095, - "y": 129.73885605989707 + "x": 367.3472, + "y": 129.73886 }, { "category": 1, @@ -5184,16 +5184,16 @@ "y": 0 }, { - "x": 399.35039037034227, - "y": 161.74204659714442 + "x": 399.35039, + "y": 161.74205 }, { - "x": 0.0076362927832679854, - "y": 0.000001492149300980684 + "x": 0.00764, + "y": 0 }, { - "x": 399.32362468689496, - "y": 158.8292575325116 + "x": 399.32362, + "y": 158.82926 }, { "endCol": 8, @@ -5217,8 +5217,8 @@ "yScale": 1 }, { - "x": 0.027152886871306237, - "y": 2.9143496976624874 + "x": 0.02715, + "y": 2.91435 }, [ { @@ -5238,36 +5238,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 367.35358122573155, - "y": 129.73885605989707 + "x": 367.35358, + "y": 129.73886 }, { "body": null, "index": 1, "isInternal": false, - "x": 431.35358090758956, - "y": 129.74523745253362 + "x": 431.35358, + "y": 129.74524 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.347199514953, - "y": 193.74523713439172 + "x": 431.3472, + "y": 193.74524 }, { "body": null, "index": 3, "isInternal": false, - "x": 367.347199833095, - "y": 193.73885574175517 + "x": 367.3472, + "y": 193.73886 }, { "angle": 0, - "anglePrev": 0.00007793222963729549, + "anglePrev": 0.00008, "angularSpeed": 0, - "angularVelocity": -0.0000584714260717275, - "area": 6583.099238, + "angularVelocity": -0.00006, + "area": 6583.09924, "axes": { "#": 581 }, @@ -5289,13 +5289,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 25, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -5317,7 +5317,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.285656447920374, + "speed": 2.28566, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5371,52 +5371,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -5431,12 +5431,12 @@ } }, { - "x": 522.6299599702508, - "y": 221.40296169449186 + "x": 522.62996, + "y": 221.40296 }, { - "x": 431.29995997025065, - "y": 127.11730524657148 + "x": 431.29996, + "y": 127.11731 }, { "category": 1, @@ -5453,16 +5453,16 @@ "y": 0 }, { - "x": 476.9649599702507, - "y": 173.1173052465715 + "x": 476.96496, + "y": 173.11731 }, { "x": 0, "y": 0 }, { - "x": 476.94098804275643, - "y": 170.82387840187545 + "x": 476.94099, + "y": 170.82388 }, { "endCol": 10, @@ -5486,8 +5486,8 @@ "yScale": 1 }, { - "x": 0.02349009206466235, - "y": 2.291484795014469 + "x": 0.02349, + "y": 2.29148 }, [ { @@ -5573,183 +5573,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.6299599702508, - "y": 178.66230524657152 + "x": 522.62996, + "y": 178.66231 }, { "body": null, "index": 1, "isInternal": false, - "x": 519.9759599702508, - "y": 189.42930524657152 + "x": 519.97596, + "y": 189.42931 }, { "body": null, "index": 2, "isInternal": false, - "x": 514.8219599702508, - "y": 199.24830524657148 + "x": 514.82196, + "y": 199.24831 }, { "body": null, "index": 3, "isInternal": false, - "x": 507.4689599702507, - "y": 207.5483052465715 + "x": 507.46896, + "y": 207.54831 }, { "body": null, "index": 4, "isInternal": false, - "x": 498.3419599702507, - "y": 213.8483052465715 + "x": 498.34196, + "y": 213.84831 }, { "body": null, "index": 5, "isInternal": false, - "x": 487.9739599702507, - "y": 217.78030524657152 + "x": 487.97396, + "y": 217.78031 }, { "body": null, "index": 6, "isInternal": false, - "x": 476.9649599702507, - "y": 219.1173052465715 + "x": 476.96496, + "y": 219.11731 }, { "body": null, "index": 7, "isInternal": false, - "x": 465.95595997025066, - "y": 217.78030524657152 + "x": 465.95596, + "y": 217.78031 }, { "body": null, "index": 8, "isInternal": false, - "x": 455.58795997025067, - "y": 213.8483052465715 + "x": 455.58796, + "y": 213.84831 }, { "body": null, "index": 9, "isInternal": false, - "x": 446.46095997025066, - "y": 207.5483052465715 + "x": 446.46096, + "y": 207.54831 }, { "body": null, "index": 10, "isInternal": false, - "x": 439.10795997025065, - "y": 199.24830524657148 + "x": 439.10796, + "y": 199.24831 }, { "body": null, "index": 11, "isInternal": false, - "x": 433.95395997025065, - "y": 189.42930524657152 + "x": 433.95396, + "y": 189.42931 }, { "body": null, "index": 12, "isInternal": false, - "x": 431.29995997025065, - "y": 178.66230524657152 + "x": 431.29996, + "y": 178.66231 }, { "body": null, "index": 13, "isInternal": false, - "x": 431.29995997025065, - "y": 167.5723052465715 + "x": 431.29996, + "y": 167.57231 }, { "body": null, "index": 14, "isInternal": false, - "x": 433.95395997025065, - "y": 156.8053052465715 + "x": 433.95396, + "y": 156.80531 }, { "body": null, "index": 15, "isInternal": false, - "x": 439.10795997025065, - "y": 146.98630524657148 + "x": 439.10796, + "y": 146.98631 }, { "body": null, "index": 16, "isInternal": false, - "x": 446.46095997025066, - "y": 138.68630524657146 + "x": 446.46096, + "y": 138.68631 }, { "body": null, "index": 17, "isInternal": false, - "x": 455.58795997025067, - "y": 132.3863052465715 + "x": 455.58796, + "y": 132.38631 }, { "body": null, "index": 18, "isInternal": false, - "x": 465.95595997025066, - "y": 128.4543052465715 + "x": 465.95596, + "y": 128.45431 }, { "body": null, "index": 19, "isInternal": false, - "x": 476.9649599702507, - "y": 127.11730524657148 + "x": 476.96496, + "y": 127.11731 }, { "body": null, "index": 20, "isInternal": false, - "x": 487.9739599702507, - "y": 128.4543052465715 + "x": 487.97396, + "y": 128.45431 }, { "body": null, "index": 21, "isInternal": false, - "x": 498.3419599702507, - "y": 132.3863052465715 + "x": 498.34196, + "y": 132.38631 }, { "body": null, "index": 22, "isInternal": false, - "x": 507.4689599702507, - "y": 138.68630524657146 + "x": 507.46896, + "y": 138.68631 }, { "body": null, "index": 23, "isInternal": false, - "x": 514.8219599702508, - "y": 146.98630524657148 + "x": 514.82196, + "y": 146.98631 }, { "body": null, "index": 24, "isInternal": false, - "x": 519.9759599702508, - "y": 156.8053052465715 + "x": 519.97596, + "y": 156.80531 }, { "body": null, "index": 25, "isInternal": false, - "x": 522.6299599702508, - "y": 167.5723052465715 + "x": 522.62996, + "y": 167.57231 }, { "angle": 0, @@ -5777,9 +5777,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5805,7 +5805,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5842,12 +5842,12 @@ } }, { - "x": 586.6600000000001, - "y": 193.73575476702598 + "x": 586.66, + "y": 193.73575 }, { - "x": 522.6600000000001, - "y": 129.73575476702595 + "x": 522.66, + "y": 129.73575 }, { "category": 1, @@ -5864,16 +5864,16 @@ "y": 0 }, { - "x": 554.6600000000001, - "y": 161.73575476702598 + "x": 554.66, + "y": 161.73575 }, { "x": 0, "y": 0 }, { - "x": 554.6600000000001, - "y": 158.8284840519903 + "x": 554.66, + "y": 158.82848 }, { "endCol": 12, @@ -5898,7 +5898,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5918,29 +5918,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 522.6600000000001, - "y": 129.73575476702595 + "x": 522.66, + "y": 129.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.6600000000001, - "y": 129.73575476702595 + "x": 586.66, + "y": 129.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.6600000000001, - "y": 193.73575476702598 + "x": 586.66, + "y": 193.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 522.6600000000001, - "y": 193.73575476702598 + "x": 522.66, + "y": 193.73575 }, { "angle": 0, @@ -5968,9 +5968,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5996,7 +5996,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6033,12 +6033,12 @@ } }, { - "x": 650.6600000000001, - "y": 193.73575476702598 + "x": 650.66, + "y": 193.73575 }, { - "x": 586.6600000000001, - "y": 129.73575476702595 + "x": 586.66, + "y": 129.73575 }, { "category": 1, @@ -6055,16 +6055,16 @@ "y": 0 }, { - "x": 618.6600000000001, - "y": 161.73575476702598 + "x": 618.66, + "y": 161.73575 }, { "x": 0, "y": 0 }, { - "x": 618.6600000000001, - "y": 158.8284840519903 + "x": 618.66, + "y": 158.82848 }, { "endCol": 13, @@ -6089,7 +6089,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6109,29 +6109,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 586.6600000000001, - "y": 129.73575476702595 + "x": 586.66, + "y": 129.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 650.6600000000001, - "y": 129.73575476702595 + "x": 650.66, + "y": 129.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 650.6600000000001, - "y": 193.73575476702598 + "x": 650.66, + "y": 193.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.6600000000001, - "y": 193.73575476702598 + "x": 586.66, + "y": 193.73575 }, { "angle": 0, @@ -6159,9 +6159,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6187,7 +6187,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6224,12 +6224,12 @@ } }, { - "x": 714.6600000000001, - "y": 193.73575476702598 + "x": 714.66, + "y": 193.73575 }, { - "x": 650.6600000000001, - "y": 129.73575476702595 + "x": 650.66, + "y": 129.73575 }, { "category": 1, @@ -6246,16 +6246,16 @@ "y": 0 }, { - "x": 682.6600000000001, - "y": 161.73575476702598 + "x": 682.66, + "y": 161.73575 }, { "x": 0, "y": 0 }, { - "x": 682.6600000000001, - "y": 158.8284840519903 + "x": 682.66, + "y": 158.82848 }, { "endCol": 14, @@ -6280,7 +6280,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6300,35 +6300,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 650.6600000000001, - "y": 129.73575476702595 + "x": 650.66, + "y": 129.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 714.6600000000001, - "y": 129.73575476702595 + "x": 714.66, + "y": 129.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 714.6600000000001, - "y": 193.73575476702598 + "x": 714.66, + "y": 193.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 650.6600000000001, - "y": 193.73575476702598 + "x": 650.66, + "y": 193.73575 }, { - "angle": -0.005636347412004273, - "anglePrev": -0.0037195856261464538, - "angularSpeed": 0.001570356217264041, - "angularVelocity": -0.001908455551642357, + "angle": -0.00564, + "anglePrev": -0.00372, + "angularSpeed": 0.00157, + "angularVelocity": -0.00191, "area": 4096, "axes": { "#": 702 @@ -6350,9 +6350,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6378,7 +6378,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.745569115187418, + "speed": 2.74557, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6399,12 +6399,12 @@ } ], { - "x": 0.005636317569083742, - "y": 0.9999841158359767 + "x": 0.00564, + "y": 0.99998 }, { - "x": -0.9999841158359767, - "y": 0.005636317569083742 + "x": -0.99998, + "y": 0.00564 }, { "max": { @@ -6415,12 +6415,12 @@ } }, { - "x": 84.0157185860518, - "y": 288.0884875103445 + "x": 84.01572, + "y": 288.08849 }, { - "x": 19.597048568665187, - "y": 220.9838438504233 + "x": 19.59705, + "y": 220.98384 }, { "category": 1, @@ -6437,16 +6437,16 @@ "y": 0 }, { - "x": 51.83586471708985, - "y": 253.16369771938525 + "x": 51.83586, + "y": 253.1637 }, { - "x": -0.0001756756772250951, - "y": 9.901796341802102e-7 + "x": -0.00018, + "y": 0 }, { - "x": 51.912978587792416, - "y": 250.4584456778597 + "x": 51.91298, + "y": 250.45845 }, { "endCol": 1, @@ -6470,8 +6470,8 @@ "yScale": 1 }, { - "x": -0.0761425326149876, - "y": 2.706643719571076 + "x": -0.07614, + "y": 2.70664 }, [ { @@ -6491,36 +6491,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 19.656010848127906, - "y": 221.34456817484468 + "x": 19.65601, + "y": 221.34457 }, { "body": null, "index": 1, "isInternal": false, - "x": 83.65499426163046, - "y": 220.9838438504233 + "x": 83.65499, + "y": 220.98384 }, { "body": null, "index": 2, "isInternal": false, - "x": 84.0157185860518, - "y": 284.9828272639258 + "x": 84.01572, + "y": 284.98283 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.016735172549275, - "y": 285.34355158834717 + "x": 20.01674, + "y": 285.34355 }, { - "angle": -0.00454183178626185, - "anglePrev": -0.0031673382270429617, - "angularSpeed": 0.0011497675267672408, - "angularVelocity": -0.00135276589258308, - "area": 6583.099238, + "angle": -0.00454, + "anglePrev": -0.00317, + "angularSpeed": 0.00115, + "angularVelocity": -0.00135, + "area": 6583.09924, "axes": { "#": 724 }, @@ -6542,13 +6542,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 30, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -6570,7 +6570,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.4526692815753974, + "speed": 2.45267, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6624,56 +6624,56 @@ } ], { - "x": -0.9720151756292814, - "y": -0.23491806730512965 + "x": -0.97202, + "y": -0.23492 }, { - "x": -0.8875358298801186, - "y": -0.4607387010866456 + "x": -0.88754, + "y": -0.46074 }, { - "x": -0.7515218612053417, - "y": -0.6597081871027969 + "x": -0.75152, + "y": -0.65971 }, { - "x": -0.5718020117494628, - "y": -0.8203916499814387 + "x": -0.5718, + "y": -0.82039 }, { - "x": -0.358842884356977, - "y": -0.9333979774706846 + "x": -0.35884, + "y": -0.9334 }, { - "x": -0.12506770778265228, - "y": -0.9921482089234418 + "x": -0.12507, + "y": -0.99215 }, { - "x": 0.11605033136042492, - "y": -0.9932433340280395 + "x": 0.11605, + "y": -0.99324 }, { - "x": 0.3503495232603305, - "y": -0.936619032238433 + "x": 0.35035, + "y": -0.93662 }, { - "x": 0.5643263621147528, - "y": -0.8255517894247029 + "x": 0.56433, + "y": -0.82555 }, { - "x": 0.7454983714606547, - "y": -0.666507447932513 + "x": 0.7455, + "y": -0.66651 }, { - "x": 0.8833140757345419, - "y": -0.4687816587807508 + "x": 0.88331, + "y": -0.46878 }, { - "x": 0.9698411866435266, - "y": -0.24373771290031526 + "x": 0.96984, + "y": -0.24374 }, { - "x": 0.9999896858997427, - "y": -0.004541816171281648 + "x": 0.99999, + "y": -0.00454 }, { "max": { @@ -6684,12 +6684,12 @@ } }, { - "x": 175.2190239034741, - "y": 314.24363789330704 + "x": 175.21902, + "y": 314.24364 }, { - "x": 83.80242243359132, - "y": 219.79219925073923 + "x": 83.80242, + "y": 219.7922 }, { "category": 1, @@ -6706,16 +6706,16 @@ "y": 0 }, { - "x": 129.5293105261926, - "y": 265.7917248021274 + "x": 129.52931, + "y": 265.79172 }, { - "x": -0.0003745649980599636, - "y": 0.0018250950797043264 + "x": -0.00037, + "y": 0.00183 }, { - "x": 129.58228166853536, - "y": 263.2877178825601 + "x": 129.58228, + "y": 263.28772 }, { "endCol": 3, @@ -6739,8 +6739,8 @@ "yScale": 1 }, { - "x": -0.05417987417646941, - "y": 2.502275117244892 + "x": -0.05418, + "y": 2.50228 }, [ { @@ -6826,183 +6826,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.2190239034741, - "y": 271.12926557497997 + "x": 175.21902, + "y": 271.12927 }, { "body": null, "index": 1, "isInternal": false, - "x": 172.61395301181236, - "y": 281.908208503181 + "x": 172.61395, + "y": 281.90821 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.5046022636709, - "y": 291.75051574957735 + "x": 167.5046, + "y": 291.75052 }, { "body": null, "index": 3, "isInternal": false, - "x": 160.18937517747176, - "y": 300.0838261168527 + "x": 160.18938, + "y": 300.08383 }, { "body": null, "index": 4, "isInternal": false, - "x": 151.0910827561438, - "y": 306.4252142942164 + "x": 151.09108, + "y": 306.42521 }, { "body": null, "index": 5, "isInternal": false, - "x": 140.74104811392084, - "y": 310.40426328923803 + "x": 140.74105, + "y": 310.40426 }, { "body": null, "index": 6, "isInternal": false, - "x": 129.7382340700716, - "y": 311.7912503535156 + "x": 129.73823, + "y": 311.79125 }, { "body": null, "index": 7, "isInternal": false, - "x": 118.72327520978027, - "y": 310.50426499769725 + "x": 118.72328, + "y": 310.50426 }, { "body": null, "index": 8, "isInternal": false, - "x": 108.33752372518629, - "y": 306.61939510280325 + "x": 108.33752, + "y": 306.6194 }, { "body": null, "index": 9, "isInternal": false, - "x": 99.18200442010026, - "y": 300.36091323783023 + "x": 99.182, + "y": 300.36091 }, { "body": null, "index": 10, "isInternal": false, - "x": 91.79138318545785, - "y": 292.0943948191699 + "x": 91.79138, + "y": 292.09439 }, { "body": null, "index": 11, "isInternal": false, - "x": 86.59284025134471, - "y": 282.298904613867 + "x": 86.59284, + "y": 282.2989 }, { "body": null, "index": 12, "isInternal": false, - "x": 83.88996589025061, - "y": 271.54406964590305 + "x": 83.88997, + "y": 271.54407 }, { "body": null, "index": 13, "isInternal": false, - "x": 83.83959714891108, - "y": 260.454184029275 + "x": 83.8396, + "y": 260.45418 }, { "body": null, "index": 14, "isInternal": false, - "x": 86.4446680405728, - "y": 249.67524110107385 + "x": 86.44467, + "y": 249.67524 }, { "body": null, "index": 15, "isInternal": false, - "x": 91.5540187887143, - "y": 239.83293385467744 + "x": 91.55402, + "y": 239.83293 }, { "body": null, "index": 16, "isInternal": false, - "x": 98.86924587491345, - "y": 231.49962348740215 + "x": 98.86925, + "y": 231.49962 }, { "body": null, "index": 17, "isInternal": false, - "x": 107.96753829624133, - "y": 225.1582353100385 + "x": 107.96754, + "y": 225.15824 }, { "body": null, "index": 18, "isInternal": false, - "x": 118.31757293846438, - "y": 221.17918631501686 + "x": 118.31757, + "y": 221.17919 }, { "body": null, "index": 19, "isInternal": false, - "x": 129.32038698231366, - "y": 219.79219925073923 + "x": 129.32039, + "y": 219.7922 }, { "body": null, "index": 20, "isInternal": false, - "x": 140.33534584260497, - "y": 221.07918460655753 + "x": 140.33535, + "y": 221.07918 }, { "body": null, "index": 21, "isInternal": false, - "x": 150.72109732719898, - "y": 224.9640545014515 + "x": 150.7211, + "y": 224.96405 }, { "body": null, "index": 22, "isInternal": false, - "x": 159.87661663228496, - "y": 231.22253636642466 + "x": 159.87662, + "y": 231.22254 }, { "body": null, "index": 23, "isInternal": false, - "x": 167.2672378669274, - "y": 239.48905478508505 + "x": 167.26724, + "y": 239.48905 }, { "body": null, "index": 24, "isInternal": false, - "x": 172.46578080104055, - "y": 249.28454499038781 + "x": 172.46578, + "y": 249.28454 }, { "body": null, "index": 25, "isInternal": false, - "x": 175.16865516213457, - "y": 260.03937995835184 + "x": 175.16866, + "y": 260.03938 }, { "angle": 0, @@ -7030,9 +7030,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7058,7 +7058,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7095,12 +7095,12 @@ } }, { - "x": 239.32999999999998, - "y": 285.73575476702587 + "x": 239.33, + "y": 285.73575 }, { - "x": 175.32999999999998, - "y": 221.73575476702598 + "x": 175.33, + "y": 221.73575 }, { "category": 1, @@ -7117,16 +7117,16 @@ "y": 0 }, { - "x": 207.32999999999998, - "y": 253.73575476702598 + "x": 207.33, + "y": 253.73575 }, { "x": 0, "y": 0 }, { - "x": 207.32999999999998, - "y": 250.8284840519903 + "x": 207.33, + "y": 250.82848 }, { "endCol": 4, @@ -7151,7 +7151,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7171,29 +7171,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.32999999999998, - "y": 221.73575476702598 + "x": 175.33, + "y": 221.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 239.32999999999998, - "y": 221.73575476702598 + "x": 239.33, + "y": 221.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 239.32999999999998, - "y": 285.73575476702587 + "x": 239.33, + "y": 285.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 175.32999999999998, - "y": 285.73575476702587 + "x": 175.33, + "y": 285.73575 }, { "angle": 0, @@ -7221,9 +7221,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7249,7 +7249,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7287,11 +7287,11 @@ }, { "x": 303.33, - "y": 285.73575476702587 + "y": 285.73575 }, { - "x": 239.32999999999998, - "y": 221.73575476702598 + "x": 239.33, + "y": 221.73575 }, { "category": 1, @@ -7309,7 +7309,7 @@ }, { "x": 271.33, - "y": 253.73575476702598 + "y": 253.73575 }, { "x": 0, @@ -7317,7 +7317,7 @@ }, { "x": 271.33, - "y": 250.8284840519903 + "y": 250.82848 }, { "endCol": 6, @@ -7342,7 +7342,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7362,36 +7362,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 239.32999999999998, - "y": 221.73575476702598 + "x": 239.33, + "y": 221.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 303.33, - "y": 221.73575476702598 + "y": 221.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 303.33, - "y": 285.73575476702587 + "y": 285.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 239.32999999999998, - "y": 285.73575476702587 + "x": 239.33, + "y": 285.73575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6583.099238, + "area": 6583.09924, "axes": { "#": 823 }, @@ -7413,13 +7413,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 33, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -7441,7 +7441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.285656447920374, + "speed": 2.28566, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7495,52 +7495,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -7556,11 +7556,11 @@ }, { "x": 394.66, - "y": 311.11730824184065 + "y": 311.11731 }, { "x": 303.33, - "y": 219.11730824184065 + "y": 219.11731 }, { "category": 1, @@ -7578,7 +7578,7 @@ }, { "x": 348.995, - "y": 265.11730824184065 + "y": 265.11731 }, { "x": 0, @@ -7586,7 +7586,7 @@ }, { "x": 348.995, - "y": 262.8316517939203 + "y": 262.83165 }, { "endCol": 8, @@ -7611,7 +7611,7 @@ }, { "x": 0, - "y": 2.285656447920374 + "y": 2.28566 }, [ { @@ -7698,188 +7698,188 @@ "index": 0, "isInternal": false, "x": 394.66, - "y": 270.6623082418406 + "y": 270.66231 }, { "body": null, "index": 1, "isInternal": false, - "x": 392.00600000000003, - "y": 281.42930824184066 + "x": 392.006, + "y": 281.42931 }, { "body": null, "index": 2, "isInternal": false, - "x": 386.85200000000003, - "y": 291.2483082418406 + "x": 386.852, + "y": 291.24831 }, { "body": null, "index": 3, "isInternal": false, "x": 379.499, - "y": 299.54830824184063 + "y": 299.54831 }, { "body": null, "index": 4, "isInternal": false, "x": 370.372, - "y": 305.84830824184064 + "y": 305.84831 }, { "body": null, "index": 5, "isInternal": false, "x": 360.004, - "y": 309.78030824184066 + "y": 309.78031 }, { "body": null, "index": 6, "isInternal": false, "x": 348.995, - "y": 311.11730824184065 + "y": 311.11731 }, { "body": null, "index": 7, "isInternal": false, "x": 337.986, - "y": 309.78030824184066 + "y": 309.78031 }, { "body": null, "index": 8, "isInternal": false, "x": 327.618, - "y": 305.84830824184064 + "y": 305.84831 }, { "body": null, "index": 9, "isInternal": false, "x": 318.491, - "y": 299.54830824184063 + "y": 299.54831 }, { "body": null, "index": 10, "isInternal": false, "x": 311.138, - "y": 291.2483082418406 + "y": 291.24831 }, { "body": null, "index": 11, "isInternal": false, "x": 305.984, - "y": 281.42930824184066 + "y": 281.42931 }, { "body": null, "index": 12, "isInternal": false, "x": 303.33, - "y": 270.6623082418406 + "y": 270.66231 }, { "body": null, "index": 13, "isInternal": false, "x": 303.33, - "y": 259.57230824184063 + "y": 259.57231 }, { "body": null, "index": 14, "isInternal": false, "x": 305.984, - "y": 248.80530824184063 + "y": 248.80531 }, { "body": null, "index": 15, "isInternal": false, "x": 311.138, - "y": 238.98630824184062 + "y": 238.98631 }, { "body": null, "index": 16, "isInternal": false, "x": 318.491, - "y": 230.68630824184066 + "y": 230.68631 }, { "body": null, "index": 17, "isInternal": false, "x": 327.618, - "y": 224.38630824184065 + "y": 224.38631 }, { "body": null, "index": 18, "isInternal": false, "x": 337.986, - "y": 220.45430824184064 + "y": 220.45431 }, { "body": null, "index": 19, "isInternal": false, "x": 348.995, - "y": 219.11730824184065 + "y": 219.11731 }, { "body": null, "index": 20, "isInternal": false, "x": 360.004, - "y": 220.45430824184064 + "y": 220.45431 }, { "body": null, "index": 21, "isInternal": false, "x": 370.372, - "y": 224.38630824184065 + "y": 224.38631 }, { "body": null, "index": 22, "isInternal": false, "x": 379.499, - "y": 230.68630824184066 + "y": 230.68631 }, { "body": null, "index": 23, "isInternal": false, - "x": 386.85200000000003, - "y": 238.98630824184062 + "x": 386.852, + "y": 238.98631 }, { "body": null, "index": 24, "isInternal": false, - "x": 392.00600000000003, - "y": 248.80530824184063 + "x": 392.006, + "y": 248.80531 }, { "body": null, "index": 25, "isInternal": false, "x": 394.66, - "y": 259.57230824184063 + "y": 259.57231 }, { - "angle": -0.00004189231000865161, - "anglePrev": 0.0001787752336391239, - "angularSpeed": 0.0000786470783063505, - "angularVelocity": -0.00020345755595254305, + "angle": -0.00004, + "anglePrev": 0.00018, + "angularSpeed": 0.00008, + "angularVelocity": -0.0002, "area": 4096, "axes": { "#": 878 @@ -7901,9 +7901,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7929,7 +7929,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8889952233145886, + "speed": 2.889, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7950,12 +7950,12 @@ } ], { - "x": 0.00004189230999639835, - "y": 0.9999999991225172 + "x": 0.00004, + "y": 1 }, { - "x": -0.9999999991225172, - "y": 0.00004189230999639835 + "x": -1, + "y": 0.00004 }, { "max": { @@ -7966,12 +7966,12 @@ } }, { - "x": 458.67874908282283, - "y": 288.60155201330423 + "x": 458.67875, + "y": 288.60155 }, { - "x": 394.6557140426182, - "y": 221.7099474397065 + "x": 394.65571, + "y": 221.70995 }, { "category": 1, @@ -7988,16 +7988,16 @@ "y": 0 }, { - "x": 426.6774085569824, - "y": 253.71128796554692 + "x": 426.67741, + "y": 253.71129 }, { "x": 0, "y": 0 }, { - "x": 426.70383007091993, - "y": 250.8378280018082 + "x": 426.70383, + "y": 250.83783 }, { "endCol": 9, @@ -8021,8 +8021,8 @@ "yScale": 1 }, { - "x": -0.026281275285668926, - "y": 2.8750076847791775 + "x": -0.02628, + "y": 2.87501 }, [ { @@ -8042,36 +8042,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 394.676068031142, - "y": 221.71262854754625 + "x": 394.67607, + "y": 221.71263 }, { "body": null, "index": 1, "isInternal": false, - "x": 458.6760679749831, - "y": 221.7099474397065 + "x": 458.67607, + "y": 221.70995 }, { "body": null, "index": 2, "isInternal": false, - "x": 458.67874908282283, - "y": 285.70994738354744 + "x": 458.67875, + "y": 285.70995 }, { "body": null, "index": 3, "isInternal": false, - "x": 394.67874913898174, - "y": 285.7126284913872 + "x": 394.67875, + "y": 285.71263 }, { - "angle": 0.005232610475330177, - "anglePrev": 0.0038173409901055854, - "angularSpeed": 0.0011571446319844868, - "angularVelocity": 0.0014364888534202898, - "area": 6583.099238, + "angle": 0.00523, + "anglePrev": 0.00382, + "angularSpeed": 0.00116, + "angularVelocity": 0.00144, + "area": 6583.09924, "axes": { "#": 900 }, @@ -8093,13 +8093,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 35, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -8121,7 +8121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.484230817441101, + "speed": 2.48423, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8175,56 +8175,56 @@ } ], { - "x": -0.9696725864470525, - "y": -0.24440760031775582 + "x": -0.96967, + "y": -0.24441 }, { - "x": -0.8829900406328076, - "y": -0.46939172142600993 + "x": -0.88299, + "y": -0.46939 }, { - "x": -0.7450377844894746, - "y": -0.6670222632588928 + "x": -0.74504, + "y": -0.66702 }, { - "x": -0.5637559539359833, - "y": -0.8259414170519173 + "x": -0.56376, + "y": -0.82594 }, { - "x": -0.3497024432554914, - "y": -0.9368608227379025 + "x": -0.3497, + "y": -0.93686 }, { - "x": -0.11536419239861628, - "y": -0.9933232621418946 + "x": -0.11536, + "y": -0.99332 }, { - "x": 0.12575303272766528, - "y": -0.9920615781088364 + "x": 0.12575, + "y": -0.99206 }, { - "x": 0.3594875701214964, - "y": -0.9331498737759876 + "x": 0.35949, + "y": -0.93315 }, { - "x": 0.572368584348026, - "y": -0.8199964656335031 + "x": 0.57237, + "y": -0.82 }, { - "x": 0.7519773942219649, - "y": -0.6591888944598077 + "x": 0.75198, + "y": -0.65919 }, { - "x": 0.8878538865757126, - "y": -0.4601255003718026 + "x": 0.88785, + "y": -0.46013 }, { - "x": 0.9721772201001901, - "y": -0.23424656394121823 + "x": 0.97218, + "y": -0.23425 }, { - "x": 0.9999863099250431, - "y": 0.00523258659703184 + "x": 0.99999, + "y": 0.00523 }, { "max": { @@ -8235,12 +8235,12 @@ } }, { - "x": 550.0148687206017, - "y": 314.4019043729341 + "x": 550.01487, + "y": 314.4019 }, { - "x": 458.61765475349875, - "y": 219.91895495813458 + "x": 458.61765, + "y": 219.91895 }, { "category": 1, @@ -8257,16 +8257,16 @@ "y": 0 }, { - "x": 504.3214791851942, - "y": 265.91832521468655 + "x": 504.32148, + "y": 265.91833 }, { - "x": 0.002178510024896612, - "y": 0.015726039853105635 + "x": 0.00218, + "y": 0.01573 }, { - "x": 504.336672103862, - "y": 263.37067205637993 + "x": 504.33667, + "y": 263.37067 }, { "endCol": 11, @@ -8290,8 +8290,8 @@ "yScale": 1 }, { - "x": -0.01536743146095887, - "y": 2.5457271762873575 + "x": -0.01537, + "y": 2.54573 }, [ { @@ -8377,189 +8377,189 @@ "body": null, "index": 0, "isInternal": false, - "x": 549.9568393352405, - "y": 271.7021953701743 + "x": 549.95684, + "y": 271.7022 }, { "body": null, "index": 1, "isInternal": false, - "x": 547.2465364088092, - "y": 282.45516068430874 + "x": 547.24654, + "y": 282.45516 }, { "body": null, "index": 2, "isInternal": false, - "x": 542.0412281996593, - "y": 292.2470575101416 + "x": 542.04123, + "y": 292.24706 }, { "body": null, "index": 3, "isInternal": false, - "x": 534.6448983940252, - "y": 300.5084686732716 + "x": 534.6449, + "y": 300.50847 }, { "body": null, "index": 4, "isInternal": false, - "x": 525.485058047778, - "y": 306.76062460792826 + "x": 525.48506, + "y": 306.76062 }, { "body": null, "index": 5, "isInternal": false, - "x": 515.0966254559755, - "y": 310.6383193207155 + "x": 515.09663, + "y": 310.63832 }, { "body": null, "index": 6, "isInternal": false, - "x": 504.0807802017307, - "y": 311.9176954712385 + "x": 504.08078, + "y": 311.9177 }, { "body": null, "index": 7, "isInternal": false, - "x": 493.07892688404615, - "y": 310.523108229022 + "x": 493.07893, + "y": 310.52311 }, { "body": null, "index": 8, "isInternal": false, - "x": 482.7316433532429, - "y": 306.53691060055866 + "x": 482.73164, + "y": 306.53691 }, { "body": null, "index": 9, "isInternal": false, - "x": 473.6377335981183, - "y": 300.18923903015985 + "x": 473.63773, + "y": 300.18924 }, { "body": null, "index": 10, "isInternal": false, - "x": 466.32826472999466, - "y": 291.85087744853405 + "x": 466.32826, + "y": 291.85088 }, { "body": null, "index": 11, "isInternal": false, - "x": 461.2257140564373, - "y": 282.005043120059 + "x": 461.22571, + "y": 282.00504 }, { "body": null, "index": 12, "isInternal": false, - "x": 458.6280896497866, - "y": 271.2243032362675 + "x": 458.62809, + "y": 271.2243 }, { "body": null, "index": 13, "isInternal": false, - "x": 458.6861190351476, - "y": 260.13445505919873 + "x": 458.68612, + "y": 260.13446 }, { "body": null, "index": 14, "isInternal": false, - "x": 461.39642196157894, - "y": 249.38148974506427 + "x": 461.39642, + "y": 249.38149 }, { "body": null, "index": 15, "isInternal": false, - "x": 466.6017301707289, - "y": 239.58959291923136 + "x": 466.60173, + "y": 239.58959 }, { "body": null, "index": 16, "isInternal": false, - "x": 473.99805997636315, - "y": 231.32818175610151 + "x": 473.99806, + "y": 231.32818 }, { "body": null, "index": 17, "isInternal": false, - "x": 483.1579003226102, - "y": 225.0760258214449 + "x": 483.1579, + "y": 225.07603 }, { "body": null, "index": 18, "isInternal": false, - "x": 493.54633291441263, - "y": 221.19833110865758 + "x": 493.54633, + "y": 221.19833 }, { "body": null, "index": 19, "isInternal": false, - "x": 504.56217816865774, - "y": 219.91895495813458 + "x": 504.56218, + "y": 219.91895 }, { "body": null, "index": 20, "isInternal": false, - "x": 515.5640314863421, - "y": 221.31354220035104 + "x": 515.56403, + "y": 221.31354 }, { "body": null, "index": 21, "isInternal": false, - "x": 525.9113150171454, - "y": 225.29973982881432 + "x": 525.91132, + "y": 225.29974 }, { "body": null, "index": 22, "isInternal": false, - "x": 535.0052247722699, - "y": 231.64741139921324 + "x": 535.00522, + "y": 231.64741 }, { "body": null, "index": 23, "isInternal": false, - "x": 542.3146936403932, - "y": 239.9857729808391 + "x": 542.31469, + "y": 239.98577 }, { "body": null, "index": 24, "isInternal": false, - "x": 547.4172443139508, - "y": 249.8316073093142 + "x": 547.41724, + "y": 249.83161 }, { "body": null, "index": 25, "isInternal": false, - "x": 550.0148687206017, - "y": 260.6123471931057 + "x": 550.01487, + "y": 260.61235 }, { - "angle": 0.005139277041202194, - "anglePrev": 0.003476767827750515, - "angularSpeed": 0.0013118235550222583, - "angularVelocity": 0.0016696510947004626, + "angle": 0.00514, + "anglePrev": 0.00348, + "angularSpeed": 0.00131, + "angularVelocity": 0.00167, "area": 4096, "axes": { "#": 955 @@ -8581,9 +8581,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8609,7 +8609,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.771696882574364, + "speed": 2.7717, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8630,12 +8630,12 @@ } ], { - "x": -0.005139254417990201, - "y": 0.9999867939448135 + "x": -0.00514, + "y": 0.99999 }, { - "x": -0.9999867939448135, - "y": -0.005139254417990201 + "x": -0.99999, + "y": -0.00514 }, { "max": { @@ -8646,12 +8646,12 @@ } }, { - "x": 614.1744920961839, - "y": 288.16564006417707 + "x": 614.17449, + "y": 288.16564 }, { - "x": 549.8389549161384, - "y": 221.0658861528284 + "x": 549.83895, + "y": 221.06589 }, { "category": 1, @@ -8668,16 +8668,16 @@ "y": 0 }, { - "x": 582.002988463748, - "y": 253.22991970043807 + "x": 582.00299, + "y": 253.22992 }, { - "x": 0.0014748591541326028, - "y": 0.000004527936134154268 + "x": 0.00147, + "y": 0 }, { - "x": 581.9968288640936, - "y": 250.48483231426098 + "x": 581.99683, + "y": 250.48483 }, { "endCol": 12, @@ -8701,8 +8701,8 @@ "yScale": 1 }, { - "x": 0.005920124980093533, - "y": 2.745930702526664 + "x": 0.00592, + "y": 2.74593 }, [ { @@ -8722,35 +8722,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 550.1678671988898, - "y": 221.0658861528284 + "x": 550.16787, + "y": 221.06589 }, { "body": null, "index": 1, "isInternal": false, - "x": 614.1670220113576, - "y": 221.39479843557973 + "x": 614.16702, + "y": 221.3948 }, { "body": null, "index": 2, "isInternal": false, - "x": 613.8381097286062, - "y": 285.39395324804775 + "x": 613.83811, + "y": 285.39395 }, { "body": null, "index": 3, "isInternal": false, - "x": 549.8389549161384, - "y": 285.0650409652963 + "x": 549.83895, + "y": 285.06504 }, { - "angle": 0.002026703637033185, - "anglePrev": 0.0011739813430732624, - "angularSpeed": 0.0006899929076850847, - "angularVelocity": 0.0008497163478935238, + "angle": 0.00203, + "anglePrev": 0.00117, + "angularSpeed": 0.00069, + "angularVelocity": 0.00085, "area": 4096, "axes": { "#": 977 @@ -8772,9 +8772,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8800,7 +8800,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8732307312786243, + "speed": 2.87323, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8821,12 +8821,12 @@ } ], { - "x": -0.002026702249576604, - "y": 0.9999979462368869 + "x": -0.00203, + "y": 1 }, { - "x": -0.9999979462368869, - "y": -0.002026702249576604 + "x": -1, + "y": -0.00203 }, { "max": { @@ -8837,12 +8837,12 @@ } }, { - "x": 678.1429379136172, - "y": 288.5831241481147 + "x": 678.14294, + "y": 288.58312 }, { - "x": 613.9861928723948, - "y": 221.58044435650646 + "x": 613.98619, + "y": 221.58044 }, { "category": 1, @@ -8859,16 +8859,16 @@ "y": 0 }, { - "x": 646.0509816239617, - "y": 253.64523310807328 + "x": 646.05098, + "y": 253.64523 }, { - "x": 0.0021742237911813035, - "y": 0.000014566852469970318 + "x": 0.00217, + "y": 0.00001 }, { - "x": 646.0194195865608, - "y": 250.78050034252647 + "x": 646.01942, + "y": 250.7805 }, { "endCol": 14, @@ -8892,8 +8892,8 @@ "yScale": 1 }, { - "x": 0.03132790006304731, - "y": 2.86470996663914 + "x": 0.03133, + "y": 2.86471 }, [ { @@ -8913,35 +8913,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 614.1159018163678, - "y": 221.58044435650646 + "x": 614.1159, + "y": 221.58044 }, { "body": null, "index": 1, "isInternal": false, - "x": 678.1157703755285, - "y": 221.7101533004794 + "x": 678.11577, + "y": 221.71015 }, { "body": null, "index": 2, "isInternal": false, - "x": 677.9860614315555, - "y": 285.71002185964005 + "x": 677.98606, + "y": 285.71002 }, { "body": null, "index": 3, "isInternal": false, - "x": 613.9861928723948, - "y": 285.5803129156672 + "x": 613.98619, + "y": 285.58031 }, { - "angle": 0.0009467858903132768, - "anglePrev": 0.00045169367470704433, - "angularSpeed": 0.0004088063153362643, - "angularVelocity": 0.0004975719406745232, + "angle": 0.00095, + "anglePrev": 0.00045, + "angularSpeed": 0.00041, + "angularVelocity": 0.0005, "area": 4096, "axes": { "#": 999 @@ -8963,9 +8963,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8991,7 +8991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90874631328163, + "speed": 2.90875, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9012,12 +9012,12 @@ } ], { - "x": -0.0009467857488629154, - "y": 0.9999995517982725 + "x": -0.00095, + "y": 1 }, { - "x": -0.9999995517982725, - "y": -0.0009467857488629154 + "x": -1, + "y": -0.00095 }, { "max": { @@ -9028,12 +9028,12 @@ } }, { - "x": 742.1017246183952, - "y": 288.6773108883942 + "x": 742.10172, + "y": 288.67731 }, { - "x": 678.0050293755307, - "y": 221.70822336451224 + "x": 678.00503, + "y": 221.70822 }, { "category": 1, @@ -9050,16 +9050,16 @@ "y": 0 }, { - "x": 710.035312177039, - "y": 253.73850616602058 + "x": 710.03531, + "y": 253.73851 }, { - "x": 0.0023843239121446383, - "y": 0.000002257444912482327 + "x": 0.00238, + "y": 0 }, { - "x": 709.9923754744648, - "y": 250.83053560096118 + "x": 709.99238, + "y": 250.83054 }, { "endCol": 15, @@ -9083,8 +9083,8 @@ "yScale": 1 }, { - "x": 0.04317083991202253, - "y": 2.90799336396708 + "x": 0.04317, + "y": 2.90799 }, [ { @@ -9104,35 +9104,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 678.0656236634579, - "y": 221.70822336451224 + "x": 678.06562, + "y": 221.70822 }, { "body": null, "index": 1, "isInternal": false, - "x": 742.0655949785473, - "y": 221.76881765243948 + "x": 742.06559, + "y": 221.76882 }, { "body": null, "index": 2, "isInternal": false, - "x": 742.0050006906201, - "y": 285.7687889675289 + "x": 742.005, + "y": 285.76879 }, { "body": null, "index": 3, "isInternal": false, - "x": 678.0050293755307, - "y": 285.70819467960166 + "x": 678.00503, + "y": 285.70819 }, { - "angle": -0.00665759411687598, - "anglePrev": -0.004489650141668285, - "angularSpeed": 0.0017936881717797435, - "angularVelocity": -0.002150949445027776, + "angle": -0.00666, + "anglePrev": -0.00449, + "angularSpeed": 0.00179, + "angularVelocity": -0.00215, "area": 4096, "axes": { "#": 1021 @@ -9154,9 +9154,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9182,7 +9182,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7446845265150857, + "speed": 2.74468, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9203,12 +9203,12 @@ } ], { - "x": 0.006657544935606897, - "y": 0.9999778383021448 + "x": 0.00666, + "y": 0.99998 }, { - "x": -0.9999778383021448, - "y": 0.006657544935606897 + "x": -0.99998, + "y": 0.00666 }, { "max": { @@ -9219,12 +9219,12 @@ } }, { - "x": 84.23720341637227, - "y": 380.1113404424413 + "x": 84.2372, + "y": 380.11134 }, { - "x": 19.794074876315797, - "y": 312.9420534948691 + "x": 19.79407, + "y": 312.94205 }, { "category": 1, @@ -9241,16 +9241,16 @@ "y": 0 }, { - "x": 52.024871152764234, - "y": 345.1543857584772 + "x": 52.02487, + "y": 345.15439 }, { - "x": -0.0032431679170073302, - "y": 0.000019055783262819082 + "x": -0.00324, + "y": 0.00002 }, { - "x": 52.05543329680019, - "y": 342.4485204295562 + "x": 52.05543, + "y": 342.44852 }, { "endCol": 1, @@ -9274,8 +9274,8 @@ "yScale": 1 }, { - "x": -0.03037026374094154, - "y": 2.7074212198690475 + "x": -0.03037, + "y": 2.70742 }, [ { @@ -9295,36 +9295,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 19.812538889156162, - "y": 313.36813637074795 + "x": 19.81254, + "y": 313.36814 }, { "body": null, "index": 1, "isInternal": false, - "x": 83.81112054049343, - "y": 312.9420534948691 + "x": 83.81112, + "y": 312.94205 }, { "body": null, "index": 2, "isInternal": false, - "x": 84.23720341637227, - "y": 376.94063514620643 + "x": 84.2372, + "y": 376.94064 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.23862176503502, - "y": 377.36671802208525 + "x": 20.23862, + "y": 377.36672 }, { - "angle": -0.0044716307698911125, - "anglePrev": -0.00306052616559873, - "angularSpeed": 0.0011960774990391221, - "angularVelocity": -0.001395013604137507, - "area": 6583.099238, + "angle": -0.00447, + "anglePrev": -0.00306, + "angularSpeed": 0.0012, + "angularVelocity": -0.0014, + "area": 6583.09924, "axes": { "#": 1043 }, @@ -9346,13 +9346,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 40, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -9374,7 +9374,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.445276962209818, + "speed": 2.44528, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9428,56 +9428,56 @@ } ], { - "x": -0.9719986817470724, - "y": -0.23498630317947097 + "x": -0.972, + "y": -0.23499 }, { - "x": -0.8875034833680785, - "y": -0.4608010058686153 + "x": -0.8875, + "y": -0.4608 }, { - "x": -0.7514755471683188, - "y": -0.6597609430756539 + "x": -0.75148, + "y": -0.65976 }, { - "x": -0.5717444180128867, - "y": -0.8204317890422738 + "x": -0.57174, + "y": -0.82043 }, { - "x": -0.3587773579861124, - "y": -0.9334231663058856 + "x": -0.35878, + "y": -0.93342 }, { - "x": -0.1249980576618744, - "y": -0.9921569863588924 + "x": -0.125, + "y": -0.99216 }, { - "x": 0.11612005776596127, - "y": -0.9932351847293925 + "x": 0.11612, + "y": -0.99324 }, { - "x": 0.35041527400499856, - "y": -0.9365944350379207 + "x": 0.35042, + "y": -0.93659 }, { - "x": 0.564384315298838, - "y": -0.8255121711063153 + "x": 0.56438, + "y": -0.82551 }, { - "x": 0.745545159123904, - "y": -0.6664551115468416 + "x": 0.74555, + "y": -0.66646 }, { - "x": 0.8833469825068507, - "y": -0.4687196480797897 + "x": 0.88335, + "y": -0.46872 }, { - "x": 0.9698582948889087, - "y": -0.24366962846275866 + "x": 0.96986, + "y": -0.24367 }, { - "x": 0.999990002275788, - "y": -0.0044716158678374425 + "x": 0.99999, + "y": -0.00447 }, { "max": { @@ -9488,12 +9488,12 @@ } }, { - "x": 175.4270735508661, - "y": 406.16111436484965 + "x": 175.42707, + "y": 406.16111 }, { - "x": 84.04751524229685, - "y": 311.71675735203854 + "x": 84.04752, + "y": 311.71676 }, { "category": 1, @@ -9510,16 +9510,16 @@ "y": 0 }, { - "x": 129.73685380620788, - "y": 357.7162974567248 + "x": 129.73685, + "y": 357.7163 }, { - "x": 0.0010448954903117759, - "y": 0.0020726942838886382 + "x": 0.00104, + "y": 0.00207 }, { - "x": 129.73823382702886, - "y": 355.2211291047974 + "x": 129.73823, + "y": 355.22113 }, { "endCol": 3, @@ -9543,8 +9543,8 @@ "yScale": 1 }, { - "x": 0.00015493189354742753, - "y": 2.4968213985152943 + "x": 0.00015, + "y": 2.49682 }, [ { @@ -9630,190 +9630,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 175.42619237011886, - "y": 363.0570456807393 + "x": 175.42619, + "y": 363.05705 }, { "body": null, "index": 1, "isInternal": false, - "x": 172.82036479212798, - "y": 373.83580570375585 + "x": 172.82036, + "y": 373.83581 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.71032311660488, - "y": 383.6777542442847 + "x": 167.71032, + "y": 383.67775 }, { "body": null, "index": 3, "isInternal": false, - "x": 160.39451104157402, - "y": 392.01055105464985 + "x": 160.39451, + "y": 392.01055 }, { "body": null, "index": 4, "isInternal": false, - "x": 151.29577347077029, - "y": 398.35130050701315 + "x": 151.29577, + "y": 398.3513 }, { "body": null, "index": 5, "isInternal": false, - "x": 140.94545952076723, - "y": 402.3296229092794 + "x": 140.94546, + "y": 402.32962 }, { "body": null, "index": 6, "isInternal": false, - "x": 129.9425481361284, - "y": 403.7158375614111 + "x": 129.94255, + "y": 403.71584 }, { "body": null, "index": 7, "isInternal": false, - "x": 118.92767965065893, - "y": 402.4280789474573 + "x": 118.92768, + "y": 402.42808 }, { "body": null, "index": 8, "isInternal": false, - "x": 108.54220091347122, - "y": 398.5424799718267 + "x": 108.5422, + "y": 398.54248 }, { "body": null, "index": 9, "isInternal": false, - "x": 99.38712098273274, - "y": 392.28335539551495 + "x": 99.38712, + "y": 392.28336 }, { "body": null, "index": 10, "isInternal": false, - "x": 91.99708008429583, - "y": 384.01631816810226 + "x": 91.99708, + "y": 384.01632 }, { "body": null, "index": 11, "isInternal": false, - "x": 86.79922481636011, - "y": 374.22046304393905 + "x": 86.79922, + "y": 374.22046 }, { "body": null, "index": 12, "isInternal": false, - "x": 84.09710546227116, - "y": 363.46543835794887 + "x": 84.09711, + "y": 363.46544 }, { "body": null, "index": 13, "isInternal": false, - "x": 84.04751524229685, - "y": 352.37554923271034 + "x": 84.04752, + "y": 352.37555 }, { "body": null, "index": 14, "isInternal": false, - "x": 86.65334282028776, - "y": 341.5967892096938 + "x": 86.65334, + "y": 341.59679 }, { "body": null, "index": 15, "isInternal": false, - "x": 91.76338449581088, - "y": 331.75484066916493 + "x": 91.76338, + "y": 331.75484 }, { "body": null, "index": 16, "isInternal": false, - "x": 99.07919657084172, - "y": 323.4220438587998 + "x": 99.0792, + "y": 323.42204 }, { "body": null, "index": 17, "isInternal": false, - "x": 108.17793414164545, - "y": 317.0812944064365 + "x": 108.17793, + "y": 317.08129 }, { "body": null, "index": 18, "isInternal": false, - "x": 118.52824809164848, - "y": 313.1029720041702 + "x": 118.52825, + "y": 313.10297 }, { "body": null, "index": 19, "isInternal": false, - "x": 129.53115947628734, - "y": 311.71675735203854 + "x": 129.53116, + "y": 311.71676 }, { "body": null, "index": 20, "isInternal": false, - "x": 140.54602796175678, - "y": 313.0045159659923 + "x": 140.54603, + "y": 313.00452 }, { "body": null, "index": 21, "isInternal": false, - "x": 150.93150669894447, - "y": 316.8901149416229 + "x": 150.93151, + "y": 316.89011 }, { "body": null, "index": 22, "isInternal": false, - "x": 160.08658662968304, - "y": 323.1492395179347 + "x": 160.08659, + "y": 323.14924 }, { "body": null, "index": 23, "isInternal": false, - "x": 167.47662752811996, - "y": 331.4162767453474 + "x": 167.47663, + "y": 331.41628 }, { "body": null, "index": 24, "isInternal": false, - "x": 172.67448279605568, - "y": 341.2121318695106 + "x": 172.67448, + "y": 341.21213 }, { "body": null, "index": 25, "isInternal": false, - "x": 175.37660215014455, - "y": 351.96715655550076 + "x": 175.3766, + "y": 351.96716 }, { - "angle": 0.0005016103255016597, - "anglePrev": 0.00003796613248433025, - "angularSpeed": 0.0002684005190026615, - "angularVelocity": 0.00044670840528383945, - "area": 6583.099238, + "angle": 0.0005, + "anglePrev": 0.00004, + "angularSpeed": 0.00027, + "angularVelocity": 0.00045, + "area": 6583.09924, "axes": { "#": 1098 }, @@ -9835,13 +9835,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 41, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -9863,7 +9863,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.3856742067366663, + "speed": 2.38567, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9917,56 +9917,56 @@ } ], { - "x": -0.9708180227659665, - "y": -0.23981736107458895 + "x": -0.97082, + "y": -0.23982 }, { - "x": -0.885200842970036, - "y": -0.46520905795689094 + "x": -0.8852, + "y": -0.46521 }, { - "x": -0.7481851173076646, - "y": -0.6634900377845293 + "x": -0.74819, + "y": -0.66349 }, { - "x": -0.5676571592439301, - "y": -0.8232650542559861 + "x": -0.56766, + "y": -0.82327 }, { - "x": -0.35413080183795725, - "y": -0.9351959020385007 + "x": -0.35413, + "y": -0.9352 }, { - "x": -0.12006229631082435, - "y": -0.9927663597264829 + "x": -0.12006, + "y": -0.99277 }, { - "x": 0.12105819943901393, - "y": -0.9926454111859805 + "x": 0.12106, + "y": -0.99265 }, { - "x": 0.3550688313144849, - "y": -0.9348401601498332 + "x": 0.35507, + "y": -0.93484 }, { - "x": 0.5684827899493426, - "y": -0.8226951546784577 + "x": 0.56848, + "y": -0.8227 }, { - "x": 0.7488503675976009, - "y": -0.6627391092646775 + "x": 0.74885, + "y": -0.66274 }, { - "x": 0.8856671047698279, - "y": -0.46432077223470336 + "x": 0.88567, + "y": -0.46432 }, { - "x": 0.9710581239140372, - "y": -0.2388432958668731 + "x": 0.97106, + "y": -0.23884 }, { - "x": 0.9999998741935434, - "y": 0.0005016103044663871 + "x": 1, + "y": 0.0005 }, { "max": { @@ -9977,12 +9977,12 @@ } }, { - "x": 266.7151508899098, - "y": 405.71360582348825 + "x": 266.71515, + "y": 405.71361 }, { - "x": 175.37416173921412, - "y": 311.32794938825333 + "x": 175.37416, + "y": 311.32795 }, { "category": 1, @@ -9999,16 +9999,16 @@ "y": 0 }, { - "x": 221.04193742340053, - "y": 357.3279436011564 + "x": 221.04194, + "y": 357.32794 }, { - "x": 0.001722026139674119, - "y": 0.000013671091232242267 + "x": 0.00172, + "y": 0.00001 }, { - "x": 221.03592057462927, - "y": 354.8929240558792 + "x": 221.03592, + "y": 354.89292 }, { "endCol": 5, @@ -10032,8 +10032,8 @@ "yScale": 1 }, { - "x": 0.009152239355785241, - "y": 2.4330764173581088 + "x": 0.00915, + "y": 2.43308 }, [ { @@ -10119,189 +10119,189 @@ "body": null, "index": 0, "isInternal": false, - "x": 266.7041502493103, - "y": 362.8958489381131 + "x": 266.70415, + "y": 362.89585 }, { "body": null, "index": 1, "isInternal": false, - "x": 264.04474974505246, - "y": 373.66151630980687 + "x": 264.04475, + "y": 373.66152 }, { "body": null, "index": 2, "isInternal": false, - "x": 258.88582508187943, - "y": 383.4779297750041 + "x": 258.88583, + "y": 383.47793 }, { "body": null, "index": 3, "isInternal": false, - "x": 251.5286626414073, - "y": 391.7742403902417 + "x": 251.52866, + "y": 391.77424 }, { "body": null, "index": 4, "isInternal": false, - "x": 242.39850364472468, - "y": 398.06966140041226 + "x": 242.3985, + "y": 398.06966 }, { "body": null, "index": 5, "isInternal": false, - "x": 232.02853261736885, - "y": 401.9964602101045 + "x": 232.02853, + "y": 401.99646 }, { "body": null, "index": 6, "isInternal": false, - "x": 221.01886334939505, - "y": 403.32793781405945 + "x": 221.01886, + "y": 403.32794 }, { "body": null, "index": 7, "isInternal": false, - "x": 210.0105353873754, - "y": 401.9854157544208 + "x": 210.01054, + "y": 401.98542 }, { "body": null, "index": 8, "isInternal": false, - "x": 199.6445090234539, - "y": 398.04821555345507 + "x": 199.64451, + "y": 398.04822 }, { "body": null, "index": 9, "isInternal": false, - "x": 190.52067031660758, - "y": 391.74363814878683 + "x": 190.52067, + "y": 391.74364 }, { "body": null, "index": 10, "isInternal": false, - "x": 183.17183460718957, - "y": 383.4399508524117 + "x": 183.17183, + "y": 383.43995 }, { "body": null, "index": 11, "isInternal": false, - "x": 178.02276056717557, - "y": 373.61836678819606 + "x": 178.02276, + "y": 373.61837 }, { "body": null, "index": 12, "isInternal": false, - "x": 175.37416173921412, - "y": 362.85003686900615 + "x": 175.37416, + "y": 362.85004 }, { "body": null, "index": 13, "isInternal": false, - "x": 175.37972459749062, - "y": 351.7600382641997 + "x": 175.37972, + "y": 351.76004 }, { "body": null, "index": 14, "isInternal": false, - "x": 178.03912510174845, - "y": 340.9943708925059 + "x": 178.03913, + "y": 340.99437 }, { "body": null, "index": 15, "isInternal": false, - "x": 183.19804976492156, - "y": 331.1779574273087 + "x": 183.19805, + "y": 331.17796 }, { "body": null, "index": 16, "isInternal": false, - "x": 190.55521220539376, - "y": 322.8816468120711 + "x": 190.55521, + "y": 322.88165 }, { "body": null, "index": 17, "isInternal": false, - "x": 199.68537120207637, - "y": 316.5862258019005 + "x": 199.68537, + "y": 316.58623 }, { "body": null, "index": 18, "isInternal": false, - "x": 210.0553422294322, - "y": 312.6594269922083 + "x": 210.05534, + "y": 312.65943 }, { "body": null, "index": 19, "isInternal": false, - "x": 221.065011497406, - "y": 311.32794938825333 + "x": 221.06501, + "y": 311.32795 }, { "body": null, "index": 20, "isInternal": false, - "x": 232.07333945942565, - "y": 312.670471447892 + "x": 232.07334, + "y": 312.67047 }, { "body": null, "index": 21, "isInternal": false, - "x": 242.43936582334715, - "y": 316.6076716488577 + "x": 242.43937, + "y": 316.60767 }, { "body": null, "index": 22, "isInternal": false, - "x": 251.56320453019347, - "y": 322.91224905352595 + "x": 251.5632, + "y": 322.91225 }, { "body": null, "index": 23, "isInternal": false, - "x": 258.9120402396115, - "y": 331.2159363499011 + "x": 258.91204, + "y": 331.21594 }, { "body": null, "index": 24, "isInternal": false, - "x": 264.06111427962543, - "y": 341.0375204141167 + "x": 264.06111, + "y": 341.03752 }, { "body": null, "index": 25, "isInternal": false, - "x": 266.70971310758694, - "y": 351.80585033330664 + "x": 266.70971, + "y": 351.80585 }, { - "angle": -0.0006244566170450663, - "anglePrev": -0.0001367849531698157, - "angularSpeed": 0.0005012495208579874, - "angularVelocity": -0.0003535799991630816, + "angle": -0.00062, + "anglePrev": -0.00014, + "angularSpeed": 0.0005, + "angularVelocity": -0.00035, "area": 4096, "axes": { "#": 1153 @@ -10323,9 +10323,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10351,7 +10351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.858853252729632, + "speed": 2.85885, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10372,12 +10372,12 @@ } ], { - "x": 0.0006244565764610001, - "y": 0.999999805026973 + "x": 0.00062, + "y": 1 }, { - "x": -0.999999805026973, - "y": 0.0006244565764610001 + "x": -1, + "y": 0.00062 }, { "max": { @@ -10388,12 +10388,12 @@ } }, { - "x": 330.67551164333514, - "y": 380.51012858076274 + "x": 330.67551, + "y": 380.51013 }, { - "x": 266.6353051728831, - "y": 313.6113225966727 + "x": 266.63531, + "y": 313.61132 }, { "category": 1, @@ -10410,16 +10410,16 @@ "y": 0 }, { - "x": 298.65528154419303, - "y": 345.6312989679826 + "x": 298.65528, + "y": 345.6313 }, { "x": 0, "y": 0 }, { - "x": 298.654369119938, - "y": 342.79781021875317 + "x": 298.65437, + "y": 342.79781 }, { "endCol": 6, @@ -10443,8 +10443,8 @@ "yScale": 1 }, { - "x": 0.0032286046316016836, - "y": 2.845831983492076 + "x": 0.00323, + "y": 2.84583 }, [ { @@ -10464,35 +10464,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 266.6353051728831, - "y": 313.65128781756624 + "x": 266.63531, + "y": 313.65129 }, { "body": null, "index": 1, "isInternal": false, - "x": 330.6352926946094, - "y": 313.6113225966727 + "x": 330.63529, + "y": 313.61132 }, { "body": null, "index": 2, "isInternal": false, - "x": 330.675257915503, - "y": 377.611310118399 + "x": 330.67526, + "y": 377.61131 }, { "body": null, "index": 3, "isInternal": false, - "x": 266.67527039377666, - "y": 377.6512753392925 + "x": 266.67527, + "y": 377.65128 }, { - "angle": -0.0011985995859206385, - "anglePrev": -0.0007666178525238818, - "angularSpeed": 0.0002862463975041197, - "angularVelocity": -0.0002769317692148766, + "angle": -0.0012, + "anglePrev": -0.00077, + "angularSpeed": 0.00029, + "angularVelocity": -0.00028, "area": 4096, "axes": { "#": 1175 @@ -10514,9 +10514,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10542,7 +10542,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8643005282175165, + "speed": 2.8643, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10563,12 +10563,12 @@ } ], { - "x": 0.0011985992989277808, - "y": 0.9999992816796022 + "x": 0.0012, + "y": 1 }, { - "x": -0.9999992816796022, - "y": 0.0011985992989277808 + "x": -1, + "y": 0.0012 }, { "max": { @@ -10579,12 +10579,12 @@ } }, { - "x": 394.66300276880486, - "y": 380.55108442790936 + "x": 394.663, + "y": 380.55108 }, { - "x": 330.5797278018543, - "y": 313.6101271454351 + "x": 330.57973, + "y": 313.61013 }, { "category": 1, @@ -10601,16 +10601,16 @@ "y": 0 }, { - "x": 362.62467057749194, - "y": 345.64845933674803 + "x": 362.62467, + "y": 345.64846 }, { "x": 0, "y": 0 }, { - "x": 362.6254568637828, - "y": 342.7985729310754 + "x": 362.62546, + "y": 342.79857 }, { "endCol": 8, @@ -10634,8 +10634,8 @@ "yScale": 1 }, { - "x": -0.0031024666674284163, - "y": 2.8375431714100046 + "x": -0.0031, + "y": 2.83754 }, [ { @@ -10655,35 +10655,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 330.586338386179, - "y": 313.6868375005664 + "x": 330.58634, + "y": 313.68684 }, { "body": null, "index": 1, "isInternal": false, - "x": 394.58629241367356, - "y": 313.6101271454351 + "x": 394.58629, + "y": 313.61013 }, { "body": null, "index": 2, "isInternal": false, - "x": 394.66300276880486, - "y": 377.61008117292965 + "x": 394.663, + "y": 377.61008 }, { "body": null, "index": 3, "isInternal": false, - "x": 330.6630487413103, - "y": 377.68679152806095 + "x": 330.66305, + "y": 377.68679 }, { - "angle": -0.004016028592609099, - "anglePrev": -0.003324177353037764, - "angularSpeed": 0.0006620689414419222, - "angularVelocity": -0.0007677640106906903, + "angle": -0.00402, + "anglePrev": -0.00332, + "angularSpeed": 0.00066, + "angularVelocity": -0.00077, "area": 4096, "axes": { "#": 1197 @@ -10705,9 +10705,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10733,7 +10733,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7889209129718995, + "speed": 2.78892, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10754,12 +10754,12 @@ } ], { - "x": 0.004016017797207881, - "y": 0.9999919357680106 + "x": 0.00402, + "y": 0.99999 }, { - "x": -0.9999919357680106, - "y": 0.004016017797207881 + "x": -0.99999, + "y": 0.00402 }, { "max": { @@ -10770,12 +10770,12 @@ } }, { - "x": 458.79955454545154, - "y": 380.18638724030905 + "x": 458.79955, + "y": 380.18639 }, { - "x": 394.53764798515044, - "y": 313.140962522219 + "x": 394.53765, + "y": 313.14096 }, { "category": 1, @@ -10792,16 +10792,16 @@ "y": 0 }, { - "x": 426.66590249923746, - "y": 345.2692170363061 + "x": 426.6659, + "y": 345.26922 }, { "x": 0, "y": 0 }, { - "x": 426.6561732259077, - "y": 342.50932872912625 + "x": 426.65617, + "y": 342.50933 }, { "endCol": 9, @@ -10825,8 +10825,8 @@ "yScale": 1 }, { - "x": 0.007201150849368787, - "y": 2.763855138960821 + "x": 0.0072, + "y": 2.76386 }, [ { @@ -10846,36 +10846,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 394.53764798515044, - "y": 313.39798766124034 + "x": 394.53765, + "y": 313.39799 }, { "body": null, "index": 1, "isInternal": false, - "x": 458.5371318743032, - "y": 313.140962522219 + "x": 458.53713, + "y": 313.14096 }, { "body": null, "index": 2, "isInternal": false, - "x": 458.7941570133245, - "y": 377.14044641137184 + "x": 458.79416, + "y": 377.14045 }, { "body": null, "index": 3, "isInternal": false, - "x": 394.7946731241717, - "y": 377.39747155039316 + "x": 394.79467, + "y": 377.39747 }, { - "angle": -0.004862962890422727, - "anglePrev": -0.0037065764631674892, - "angularSpeed": 0.001098116059973211, - "angularVelocity": -0.0011784640754437083, - "area": 6583.099238, + "angle": -0.00486, + "anglePrev": -0.00371, + "angularSpeed": 0.0011, + "angularVelocity": -0.00118, + "area": 6583.09924, "axes": { "#": 1219 }, @@ -10897,13 +10897,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 45, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -10925,7 +10925,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.5292952944878024, + "speed": 2.5293, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10979,56 +10979,56 @@ } ], { - "x": -0.9720905650067035, - "y": -0.23460591089089905 + "x": -0.97209, + "y": -0.23461 }, { - "x": -0.8876837416417368, - "y": -0.46045366197363075 + "x": -0.88768, + "y": -0.46045 }, { - "x": -0.7517336752698336, - "y": -0.6594668160455905 + "x": -0.75173, + "y": -0.65947 }, { - "x": -0.5720654355377434, - "y": -0.8202079842716801 + "x": -0.57207, + "y": -0.82021 }, { - "x": -0.35914260897208244, - "y": -0.9332826937325718 + "x": -0.35914, + "y": -0.93328 }, { - "x": -0.1253863109781837, - "y": -0.9921079946353031 + "x": -0.12539, + "y": -0.99211 }, { - "x": 0.11573136405349425, - "y": -0.9932805501842457 + "x": 0.11573, + "y": -0.99328 }, { - "x": 0.3500487276965696, - "y": -0.9367314920712405 + "x": 0.35005, + "y": -0.93673 }, { - "x": 0.5640612226634992, - "y": -0.8257329696017703 + "x": 0.56406, + "y": -0.82573 }, { - "x": 0.7452842967518186, - "y": -0.6667468162767238 + "x": 0.74528, + "y": -0.66675 }, { - "x": 0.8831634898194708, - "y": -0.46906529422873944 + "x": 0.88316, + "y": -0.46907 }, { - "x": 0.9697628648764764, - "y": -0.2440491464983414 + "x": 0.96976, + "y": -0.24405 }, { - "x": 0.9999881758192654, - "y": -0.00486294372355691 + "x": 0.99999, + "y": -0.00486 }, { "max": { @@ -11039,12 +11039,12 @@ } }, { - "x": 550.0464192383965, - "y": 406.4228349710003 + "x": 550.04642, + "y": 406.42283 }, { - "x": 458.648705062599, - "y": 311.89467117760694 + "x": 458.64871, + "y": 311.89467 }, { "category": 1, @@ -11061,16 +11061,16 @@ "y": 0 }, { - "x": 504.3401301343329, - "y": 357.8941272652932 + "x": 504.34013, + "y": 357.89413 }, { - "x": 0.001079867332656405, - "y": 0.0000432310380461015 + "x": 0.00108, + "y": 0.00004 }, { - "x": 504.32416320931367, - "y": 355.28353905065376 + "x": 504.32416, + "y": 355.28354 }, { "endCol": 11, @@ -11094,8 +11094,8 @@ "yScale": 1 }, { - "x": 0.016838142949211488, - "y": 2.608664652605796 + "x": 0.01684, + "y": 2.60866 }, [ { @@ -11181,189 +11181,189 @@ "body": null, "index": 0, "isInternal": false, - "x": 550.0315552060669, - "y": 363.2169953750748 + "x": 550.03156, + "y": 363.217 }, { "body": null, "index": 1, "isInternal": false, - "x": 547.4299459025143, - "y": 373.9967743167632 + "x": 547.42995, + "y": 373.99677 }, { "body": null, "index": 2, "isInternal": false, - "x": 542.3237560887634, - "y": 383.84072182708366 + "x": 542.32376, + "y": 383.84072 }, { "body": null, "index": 3, "isInternal": false, - "x": 535.0112054648698, - "y": 392.1763809115829 + "x": 535.01121, + "y": 392.17638 }, { "body": null, "index": 4, "isInternal": false, - "x": 525.9149499296259, - "y": 398.5206905066092 + "x": 525.91495, + "y": 398.52069 }, { "body": null, "index": 5, "isInternal": false, - "x": 515.5661936174527, - "y": 402.50306301445653 + "x": 515.56619, + "y": 402.50306 }, { "body": null, "index": 6, "isInternal": false, - "x": 504.56382554561645, - "y": 403.8935833529795 + "x": 504.56383, + "y": 403.89358 }, { "body": null, "index": 7, "isInternal": false, - "x": 493.54845396226386, - "y": 402.6101353093617 + "x": 493.54845, + "y": 402.61014 }, { "body": null, "index": 8, "isInternal": false, - "x": 483.16145546064865, - "y": 398.7286008025662 + "x": 483.16146, + "y": 398.7286 }, { "body": null, "index": 9, "isInternal": false, - "x": 474.0039268344878, - "y": 392.47305938226964 + "x": 474.00393, + "y": 392.47306 }, { "body": null, "index": 10, "isInternal": false, - "x": 466.61065134478326, - "y": 384.2089147481691 + "x": 466.61065, + "y": 384.20891 }, { "body": null, "index": 11, "isInternal": false, - "x": 461.40896304218916, - "y": 374.4150944617509 + "x": 461.40896, + "y": 374.41509 }, { "body": null, "index": 12, "isInternal": false, - "x": 458.70263510849327, - "y": 363.6611280253473 + "x": 458.70264, + "y": 363.66113 }, { "body": null, "index": 13, "isInternal": false, - "x": 458.648705062599, - "y": 352.5712591555116 + "x": 458.64871, + "y": 352.57126 }, { "body": null, "index": 14, "isInternal": false, - "x": 461.2503143661517, - "y": 341.7914802138232 + "x": 461.25031, + "y": 341.79148 }, { "body": null, "index": 15, "isInternal": false, - "x": 466.35650417990274, - "y": 331.94753270350276 + "x": 466.3565, + "y": 331.94753 }, { "body": null, "index": 16, "isInternal": false, - "x": 473.66905480379626, - "y": 323.6118736190035 + "x": 473.66905, + "y": 323.61187 }, { "body": null, "index": 17, "isInternal": false, - "x": 482.76531033904024, - "y": 317.26756402397723 + "x": 482.76531, + "y": 317.26756 }, { "body": null, "index": 18, "isInternal": false, - "x": 493.1140666512133, - "y": 313.2851915161299 + "x": 493.11407, + "y": 313.28519 }, { "body": null, "index": 19, "isInternal": false, - "x": 504.1164347230494, - "y": 311.89467117760694 + "x": 504.11643, + "y": 311.89467 }, { "body": null, "index": 20, "isInternal": false, - "x": 515.1318063064023, - "y": 313.17811922122473 + "x": 515.13181, + "y": 313.17812 }, { "body": null, "index": 21, "isInternal": false, - "x": 525.5188048080173, - "y": 317.05965372802024 + "x": 525.5188, + "y": 317.05965 }, { "body": null, "index": 22, "isInternal": false, - "x": 534.6763334341781, - "y": 323.3151951483168 + "x": 534.67633, + "y": 323.3152 }, { "body": null, "index": 23, "isInternal": false, - "x": 542.0696089238828, - "y": 331.5793397824173 + "x": 542.06961, + "y": 331.57934 }, { "body": null, "index": 24, "isInternal": false, - "x": 547.2712972264769, - "y": 341.3731600688355 + "x": 547.2713, + "y": 341.37316 }, { "body": null, "index": 25, "isInternal": false, - "x": 549.9776251601728, - "y": 352.1271265052391 + "x": 549.97763, + "y": 352.12713 }, { - "angle": 0.0018474275374003358, - "anglePrev": 0.0010045903048834486, - "angularSpeed": 0.0007257000159706488, - "angularVelocity": 0.0008613315815437078, + "angle": 0.00185, + "anglePrev": 0.001, + "angularSpeed": 0.00073, + "angularVelocity": 0.00086, "area": 4096, "axes": { "#": 1274 @@ -11385,9 +11385,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11413,7 +11413,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8258952802358572, + "speed": 2.8259, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11434,12 +11434,12 @@ } ], { - "x": -0.00184742648652569, - "y": 0.9999982935062324 + "x": -0.00185, + "y": 1 }, { - "x": -0.9999982935062324, - "y": -0.00184742648652569 + "x": -1, + "y": -0.00185 }, { "max": { @@ -11450,12 +11450,12 @@ } }, { - "x": 614.1086779240422, - "y": 380.41713007759085 + "x": 614.10868, + "y": 380.41713 }, { - "x": 549.9565334264229, - "y": 313.4733134838454 + "x": 549.95653, + "y": 313.47331 }, { "category": 1, @@ -11472,16 +11472,16 @@ "y": 0 }, { - "x": 582.015596466191, - "y": 345.53237652361366 + "x": 582.0156, + "y": 345.53238 }, { - "x": 0.0011113348936818588, - "y": 0.00000205311302161266 + "x": 0.00111, + "y": 0 }, { - "x": 581.9784063038952, - "y": 342.74077330683264 + "x": 581.97841, + "y": 342.74077 }, { "endCol": 12, @@ -11505,8 +11505,8 @@ "yScale": 1 }, { - "x": 0.03714027567843914, - "y": 2.793174873101009 + "x": 0.03714, + "y": 2.79317 }, [ { @@ -11526,36 +11526,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 550.0747687215604, - "y": 313.4733134838454 + "x": 550.07477, + "y": 313.47331 }, { "body": null, "index": 1, "isInternal": false, - "x": 614.0746595059592, - "y": 313.591548778983 + "x": 614.07466, + "y": 313.59155 }, { "body": null, "index": 2, "isInternal": false, - "x": 613.9564242108216, - "y": 377.5914395633819 + "x": 613.95642, + "y": 377.59144 }, { "body": null, "index": 3, "isInternal": false, - "x": 549.9565334264229, - "y": 377.47320426824433 + "x": 549.95653, + "y": 377.4732 }, { "angle": 0, - "anglePrev": 0.00004218407164223762, + "anglePrev": 0.00004, "angularSpeed": 0, - "angularVelocity": -0.00002079201915170567, - "area": 6583.099238, + "angularVelocity": -0.00002, + "area": 6583.09924, "axes": { "#": 1296 }, @@ -11577,13 +11577,13 @@ "frictionAir": 0.06, "frictionStatic": 0.5, "id": 47, - "inertia": 13794.920996704102, - "inverseInertia": 0.00007249044776979304, - "inverseMass": 0.3038082714073769, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "inverseMass": 0.30381, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.291549619, + "mass": 3.29155, "motion": 0, "parent": null, "position": { @@ -11605,7 +11605,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.285656447920374, + "speed": 2.28566, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11659,52 +11659,52 @@ } ], { - "x": -0.9709381954902958, - "y": -0.2393303585800354 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854340852632567, - "y": -0.46476497356623164 + "x": -0.88543, + "y": -0.46476 }, { - "x": -0.7485178366210095, - "y": -0.6631146569487087 + "x": -0.74852, + "y": -0.66311 }, { - "x": -0.568070046063516, - "y": -0.8229802080034457 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.3545998611871732, - "y": -0.9350181487254872 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12056026304217864, - "y": -0.9927060103450572 + "x": -0.12056, + "y": -0.99271 }, { - "x": 0.12056026304217864, - "y": -0.9927060103450572 + "x": 0.12056, + "y": -0.99271 }, { - "x": 0.3545998611871732, - "y": -0.9350181487254872 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.568070046063516, - "y": -0.8229802080034457 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485178366210095, - "y": -0.6631146569487087 + "x": 0.74852, + "y": -0.66311 }, { - "x": 0.8854340852632567, - "y": -0.46476497356623164 + "x": 0.88543, + "y": -0.46476 }, { - "x": 0.9709381954902958, - "y": -0.2393303585800354 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -11719,12 +11719,12 @@ } }, { - "x": 705.2867995579211, - "y": 405.40290335428034 + "x": 705.2868, + "y": 405.4029 }, { - "x": 613.9567995579212, - "y": 311.11724690636 + "x": 613.9568, + "y": 311.11725 }, { "category": 1, @@ -11741,16 +11741,16 @@ "y": 0 }, { - "x": 659.6217995579211, - "y": 357.11724690636 + "x": 659.6218, + "y": 357.11725 }, { "x": 0, "y": 0 }, { - "x": 659.5887507687196, - "y": 354.82370587618385 + "x": 659.58875, + "y": 354.82371 }, { "endCol": 14, @@ -11774,8 +11774,8 @@ "yScale": 1 }, { - "x": 0.0331108680422858, - "y": 2.291585263126649 + "x": 0.03311, + "y": 2.29159 }, [ { @@ -11861,183 +11861,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 705.2867995579211, - "y": 362.66224690636 + "x": 705.2868, + "y": 362.66225 }, { "body": null, "index": 1, "isInternal": false, - "x": 702.6327995579211, - "y": 373.42924690636 + "x": 702.6328, + "y": 373.42925 }, { "body": null, "index": 2, "isInternal": false, - "x": 697.4787995579211, - "y": 383.24824690635995 + "x": 697.4788, + "y": 383.24825 }, { "body": null, "index": 3, "isInternal": false, - "x": 690.1257995579211, - "y": 391.54824690635996 + "x": 690.1258, + "y": 391.54825 }, { "body": null, "index": 4, "isInternal": false, - "x": 680.9987995579211, - "y": 397.84824690636 + "x": 680.9988, + "y": 397.84825 }, { "body": null, "index": 5, "isInternal": false, - "x": 670.6307995579211, - "y": 401.78024690636 + "x": 670.6308, + "y": 401.78025 }, { "body": null, "index": 6, "isInternal": false, - "x": 659.6217995579211, - "y": 403.11724690636 + "x": 659.6218, + "y": 403.11725 }, { "body": null, "index": 7, "isInternal": false, - "x": 648.6127995579211, - "y": 401.78024690636 + "x": 648.6128, + "y": 401.78025 }, { "body": null, "index": 8, "isInternal": false, - "x": 638.2447995579212, - "y": 397.84824690636 + "x": 638.2448, + "y": 397.84825 }, { "body": null, "index": 9, "isInternal": false, - "x": 629.1177995579211, - "y": 391.54824690635996 + "x": 629.1178, + "y": 391.54825 }, { "body": null, "index": 10, "isInternal": false, - "x": 621.7647995579212, - "y": 383.24824690635995 + "x": 621.7648, + "y": 383.24825 }, { "body": null, "index": 11, "isInternal": false, - "x": 616.6107995579212, - "y": 373.42924690636 + "x": 616.6108, + "y": 373.42925 }, { "body": null, "index": 12, "isInternal": false, - "x": 613.9567995579212, - "y": 362.66224690636 + "x": 613.9568, + "y": 362.66225 }, { "body": null, "index": 13, "isInternal": false, - "x": 613.9567995579212, - "y": 351.57224690635996 + "x": 613.9568, + "y": 351.57225 }, { "body": null, "index": 14, "isInternal": false, - "x": 616.6107995579212, - "y": 340.80524690635997 + "x": 616.6108, + "y": 340.80525 }, { "body": null, "index": 15, "isInternal": false, - "x": 621.7647995579212, - "y": 330.98624690636 + "x": 621.7648, + "y": 330.98625 }, { "body": null, "index": 16, "isInternal": false, - "x": 629.1177995579211, - "y": 322.68624690636 + "x": 629.1178, + "y": 322.68625 }, { "body": null, "index": 17, "isInternal": false, - "x": 638.2447995579212, - "y": 316.38624690636 + "x": 638.2448, + "y": 316.38625 }, { "body": null, "index": 18, "isInternal": false, - "x": 648.6127995579211, - "y": 312.45424690635997 + "x": 648.6128, + "y": 312.45425 }, { "body": null, "index": 19, "isInternal": false, - "x": 659.6217995579211, - "y": 311.11724690636 + "x": 659.6218, + "y": 311.11725 }, { "body": null, "index": 20, "isInternal": false, - "x": 670.6307995579211, - "y": 312.45424690635997 + "x": 670.6308, + "y": 312.45425 }, { "body": null, "index": 21, "isInternal": false, - "x": 680.9987995579211, - "y": 316.38624690636 + "x": 680.9988, + "y": 316.38625 }, { "body": null, "index": 22, "isInternal": false, - "x": 690.1257995579211, - "y": 322.68624690636 + "x": 690.1258, + "y": 322.68625 }, { "body": null, "index": 23, "isInternal": false, - "x": 697.4787995579211, - "y": 330.98624690636 + "x": 697.4788, + "y": 330.98625 }, { "body": null, "index": 24, "isInternal": false, - "x": 702.6327995579211, - "y": 340.80524690635997 + "x": 702.6328, + "y": 340.80525 }, { "body": null, "index": 25, "isInternal": false, - "x": 705.2867995579211, - "y": 351.57224690635996 + "x": 705.2868, + "y": 351.57225 }, { "angle": 0, @@ -12065,9 +12065,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 11184.810666666666, - "inverseInertia": 0.00008940696716308594, - "inverseMass": 0.244140625, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "inverseMass": 0.24414, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12093,7 +12093,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12130,12 +12130,12 @@ } }, { - "x": 769.3199999999999, - "y": 377.73575476702496 + "x": 769.32, + "y": 377.73575 }, { - "x": 705.3199999999999, - "y": 313.73575476702496 + "x": 705.32, + "y": 313.73575 }, { "category": 1, @@ -12152,16 +12152,16 @@ "y": 0 }, { - "x": 737.3199999999999, - "y": 345.73575476702496 + "x": 737.32, + "y": 345.73575 }, { "x": 0, "y": 0 }, { - "x": 737.3199999999999, - "y": 342.8284840519894 + "x": 737.32, + "y": 342.82848 }, { "endCol": 16, @@ -12186,7 +12186,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -12206,29 +12206,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 705.3199999999999, - "y": 313.73575476702496 + "x": 705.32, + "y": 313.73575 }, { "body": null, "index": 1, "isInternal": false, - "x": 769.3199999999999, - "y": 313.73575476702496 + "x": 769.32, + "y": 313.73575 }, { "body": null, "index": 2, "isInternal": false, - "x": 769.3199999999999, - "y": 377.73575476702496 + "x": 769.32, + "y": 377.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 705.3199999999999, - "y": 377.73575476702496 + "x": 705.32, + "y": 377.73575 }, [], [], diff --git a/test/browser/refs/stack/stack-0.json b/test/browser/refs/stack/stack-0.json index 5ede5594..7c465c18 100644 --- a/test/browser/refs/stack/stack-0.json +++ b/test/browser/refs/stack/stack-0.json @@ -1033,8 +1033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1213,8 +1213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1393,8 +1393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1573,8 +1573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1753,8 +1753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1933,8 +1933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2113,8 +2113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2293,8 +2293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2473,8 +2473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2653,8 +2653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2833,8 +2833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3013,8 +3013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3193,8 +3193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3373,8 +3373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3553,8 +3553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3733,8 +3733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3913,8 +3913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4093,8 +4093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4273,8 +4273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4453,8 +4453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4633,8 +4633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4813,8 +4813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4993,8 +4993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5173,8 +5173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5353,8 +5353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5533,8 +5533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5713,8 +5713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5893,8 +5893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6073,8 +6073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6253,8 +6253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6433,8 +6433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6613,8 +6613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6793,8 +6793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6973,8 +6973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7153,8 +7153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7333,8 +7333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7513,8 +7513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7693,8 +7693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7873,8 +7873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8053,8 +8053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8233,8 +8233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8413,8 +8413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8593,8 +8593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8773,8 +8773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8953,8 +8953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9133,8 +9133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9313,8 +9313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9493,8 +9493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9673,8 +9673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9853,8 +9853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, diff --git a/test/browser/refs/stack/stack-10.json b/test/browser/refs/stack/stack-10.json index 36dd7407..63e8edc3 100644 --- a/test/browser/refs/stack/stack-10.json +++ b/test/browser/refs/stack/stack-10.json @@ -1073,8 +1073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1101,7 +1101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1139,11 +1139,11 @@ }, { "x": 140, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 100, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -1161,7 +1161,7 @@ }, { "x": 120, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -1169,7 +1169,7 @@ }, { "x": 120, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 2, @@ -1193,7 +1193,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1214,28 +1214,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 140, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 140, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -1263,8 +1263,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1291,7 +1291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1329,11 +1329,11 @@ }, { "x": 180, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 140, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -1351,7 +1351,7 @@ }, { "x": 160, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -1359,7 +1359,7 @@ }, { "x": 160, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 3, @@ -1383,7 +1383,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1404,28 +1404,28 @@ "index": 0, "isInternal": false, "x": 140, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 180, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 140, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -1453,8 +1453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1481,7 +1481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1519,11 +1519,11 @@ }, { "x": 220, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 180, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -1541,7 +1541,7 @@ }, { "x": 200, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -1549,7 +1549,7 @@ }, { "x": 200, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 4, @@ -1573,7 +1573,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1594,28 +1594,28 @@ "index": 0, "isInternal": false, "x": 180, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 180, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -1643,8 +1643,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1671,7 +1671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1709,11 +1709,11 @@ }, { "x": 260, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 220, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -1731,7 +1731,7 @@ }, { "x": 240, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -1739,7 +1739,7 @@ }, { "x": 240, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 5, @@ -1763,7 +1763,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1784,28 +1784,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -1833,8 +1833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1861,7 +1861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1899,11 +1899,11 @@ }, { "x": 300, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 260, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -1921,7 +1921,7 @@ }, { "x": 280, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -1929,7 +1929,7 @@ }, { "x": 280, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 6, @@ -1953,7 +1953,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -1974,28 +1974,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -2023,8 +2023,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2051,7 +2051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2089,11 +2089,11 @@ }, { "x": 340, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 300, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -2111,7 +2111,7 @@ }, { "x": 320, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -2119,7 +2119,7 @@ }, { "x": 320, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 7, @@ -2143,7 +2143,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2164,28 +2164,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -2213,8 +2213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2241,7 +2241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2279,11 +2279,11 @@ }, { "x": 380, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 340, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -2301,7 +2301,7 @@ }, { "x": 360, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -2309,7 +2309,7 @@ }, { "x": 360, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 7, @@ -2333,7 +2333,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2354,28 +2354,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -2403,8 +2403,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2431,7 +2431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2469,11 +2469,11 @@ }, { "x": 420, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 380, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -2491,7 +2491,7 @@ }, { "x": 400, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -2499,7 +2499,7 @@ }, { "x": 400, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 8, @@ -2523,7 +2523,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2544,28 +2544,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -2593,8 +2593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2621,7 +2621,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2659,11 +2659,11 @@ }, { "x": 460, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 420, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -2681,7 +2681,7 @@ }, { "x": 440, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -2689,7 +2689,7 @@ }, { "x": 440, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 9, @@ -2713,7 +2713,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2734,28 +2734,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -2783,8 +2783,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2811,7 +2811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2849,11 +2849,11 @@ }, { "x": 500, - "y": 357.73575476702496 + "y": 357.73575 }, { "x": 460, - "y": 317.73575476702496 + "y": 317.73575 }, { "category": 1, @@ -2871,7 +2871,7 @@ }, { "x": 480, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 0, @@ -2879,7 +2879,7 @@ }, { "x": 480, - "y": 334.8284840519894 + "y": 334.82848 }, { "endCol": 10, @@ -2903,7 +2903,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -2924,28 +2924,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 317.73575476702496 + "y": 317.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 357.73575476702496 + "y": 357.73575 }, { "angle": 0, @@ -2973,8 +2973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3001,7 +3001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3039,11 +3039,11 @@ }, { "x": 140, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 100, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -3061,7 +3061,7 @@ }, { "x": 120, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -3069,7 +3069,7 @@ }, { "x": 120, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 2, @@ -3093,7 +3093,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3114,28 +3114,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 140, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 140, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -3163,8 +3163,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3191,7 +3191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3229,11 +3229,11 @@ }, { "x": 180, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 140, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -3251,7 +3251,7 @@ }, { "x": 160, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -3259,7 +3259,7 @@ }, { "x": 160, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 3, @@ -3283,7 +3283,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3304,28 +3304,28 @@ "index": 0, "isInternal": false, "x": 140, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 180, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 140, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -3353,8 +3353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3381,7 +3381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3419,11 +3419,11 @@ }, { "x": 220, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 180, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -3441,7 +3441,7 @@ }, { "x": 200, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -3449,7 +3449,7 @@ }, { "x": 200, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 4, @@ -3473,7 +3473,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3494,28 +3494,28 @@ "index": 0, "isInternal": false, "x": 180, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 180, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -3543,8 +3543,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3571,7 +3571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3609,11 +3609,11 @@ }, { "x": 260, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 220, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -3631,7 +3631,7 @@ }, { "x": 240, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -3639,7 +3639,7 @@ }, { "x": 240, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 5, @@ -3663,7 +3663,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3684,28 +3684,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -3733,8 +3733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3761,7 +3761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3799,11 +3799,11 @@ }, { "x": 300, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 260, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -3821,7 +3821,7 @@ }, { "x": 280, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -3829,7 +3829,7 @@ }, { "x": 280, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 6, @@ -3853,7 +3853,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -3874,28 +3874,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -3923,8 +3923,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3951,7 +3951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3989,11 +3989,11 @@ }, { "x": 340, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 300, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -4011,7 +4011,7 @@ }, { "x": 320, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -4019,7 +4019,7 @@ }, { "x": 320, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 7, @@ -4043,7 +4043,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4064,28 +4064,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -4113,8 +4113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4141,7 +4141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4179,11 +4179,11 @@ }, { "x": 380, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 340, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -4201,7 +4201,7 @@ }, { "x": 360, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -4209,7 +4209,7 @@ }, { "x": 360, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 7, @@ -4233,7 +4233,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4254,28 +4254,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -4303,8 +4303,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4331,7 +4331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4369,11 +4369,11 @@ }, { "x": 420, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 380, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -4391,7 +4391,7 @@ }, { "x": 400, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -4399,7 +4399,7 @@ }, { "x": 400, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 8, @@ -4423,7 +4423,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4444,28 +4444,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -4493,8 +4493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4521,7 +4521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4559,11 +4559,11 @@ }, { "x": 460, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 420, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -4581,7 +4581,7 @@ }, { "x": 440, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -4589,7 +4589,7 @@ }, { "x": 440, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 9, @@ -4613,7 +4613,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4634,28 +4634,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -4683,8 +4683,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4711,7 +4711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4749,11 +4749,11 @@ }, { "x": 500, - "y": 397.73575476702496 + "y": 397.73575 }, { "x": 460, - "y": 357.73575476702496 + "y": 357.73575 }, { "category": 1, @@ -4771,7 +4771,7 @@ }, { "x": 480, - "y": 377.73575476702496 + "y": 377.73575 }, { "x": 0, @@ -4779,7 +4779,7 @@ }, { "x": 480, - "y": 374.8284840519894 + "y": 374.82848 }, { "endCol": 10, @@ -4803,7 +4803,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -4824,28 +4824,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 357.73575476702496 + "y": 357.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 397.73575476702496 + "y": 397.73575 }, { "angle": 0, @@ -4873,8 +4873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4901,7 +4901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4939,11 +4939,11 @@ }, { "x": 140, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 100, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -4961,7 +4961,7 @@ }, { "x": 120, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -4969,7 +4969,7 @@ }, { "x": 120, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 2, @@ -4993,7 +4993,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5014,28 +5014,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 140, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 140, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -5063,8 +5063,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5091,7 +5091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5129,11 +5129,11 @@ }, { "x": 180, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 140, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -5151,7 +5151,7 @@ }, { "x": 160, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -5159,7 +5159,7 @@ }, { "x": 160, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 3, @@ -5183,7 +5183,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5204,28 +5204,28 @@ "index": 0, "isInternal": false, "x": 140, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 180, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 140, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -5253,8 +5253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5281,7 +5281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5319,11 +5319,11 @@ }, { "x": 220, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 180, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -5341,7 +5341,7 @@ }, { "x": 200, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -5349,7 +5349,7 @@ }, { "x": 200, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 4, @@ -5373,7 +5373,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5394,28 +5394,28 @@ "index": 0, "isInternal": false, "x": 180, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 180, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -5443,8 +5443,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5471,7 +5471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5509,11 +5509,11 @@ }, { "x": 260, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 220, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -5531,7 +5531,7 @@ }, { "x": 240, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -5539,7 +5539,7 @@ }, { "x": 240, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 5, @@ -5563,7 +5563,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5584,28 +5584,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -5633,8 +5633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5661,7 +5661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5699,11 +5699,11 @@ }, { "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 260, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -5721,7 +5721,7 @@ }, { "x": 280, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -5729,7 +5729,7 @@ }, { "x": 280, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 6, @@ -5753,7 +5753,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5774,28 +5774,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -5823,8 +5823,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5851,7 +5851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5889,11 +5889,11 @@ }, { "x": 340, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 300, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -5911,7 +5911,7 @@ }, { "x": 320, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -5919,7 +5919,7 @@ }, { "x": 320, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 7, @@ -5943,7 +5943,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -5964,28 +5964,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -6013,8 +6013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6041,7 +6041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6079,11 +6079,11 @@ }, { "x": 380, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 340, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -6101,7 +6101,7 @@ }, { "x": 360, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -6109,7 +6109,7 @@ }, { "x": 360, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 7, @@ -6133,7 +6133,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6154,28 +6154,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -6203,8 +6203,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6231,7 +6231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6269,11 +6269,11 @@ }, { "x": 420, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 380, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -6291,7 +6291,7 @@ }, { "x": 400, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -6299,7 +6299,7 @@ }, { "x": 400, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 8, @@ -6323,7 +6323,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6344,28 +6344,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -6393,8 +6393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6421,7 +6421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6459,11 +6459,11 @@ }, { "x": 460, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 420, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -6481,7 +6481,7 @@ }, { "x": 440, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -6489,7 +6489,7 @@ }, { "x": 440, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 9, @@ -6513,7 +6513,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6534,28 +6534,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -6583,8 +6583,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6611,7 +6611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6649,11 +6649,11 @@ }, { "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 460, - "y": 397.73575476702496 + "y": 397.73575 }, { "category": 1, @@ -6671,7 +6671,7 @@ }, { "x": 480, - "y": 417.73575476702496 + "y": 417.73575 }, { "x": 0, @@ -6679,7 +6679,7 @@ }, { "x": 480, - "y": 414.8284840519894 + "y": 414.82848 }, { "endCol": 10, @@ -6703,7 +6703,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6724,28 +6724,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 397.73575476702496 + "y": 397.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -6773,8 +6773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6801,7 +6801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6839,11 +6839,11 @@ }, { "x": 140, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 100, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -6861,7 +6861,7 @@ }, { "x": 120, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -6869,7 +6869,7 @@ }, { "x": 120, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 2, @@ -6893,7 +6893,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -6914,28 +6914,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 140, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 140, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -6963,8 +6963,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6991,7 +6991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7029,11 +7029,11 @@ }, { "x": 180, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 140, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -7051,7 +7051,7 @@ }, { "x": 160, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -7059,7 +7059,7 @@ }, { "x": 160, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 3, @@ -7083,7 +7083,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7104,28 +7104,28 @@ "index": 0, "isInternal": false, "x": 140, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 180, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 140, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -7153,8 +7153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7181,7 +7181,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7219,11 +7219,11 @@ }, { "x": 220, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 180, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -7241,7 +7241,7 @@ }, { "x": 200, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -7249,7 +7249,7 @@ }, { "x": 200, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 4, @@ -7273,7 +7273,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7294,28 +7294,28 @@ "index": 0, "isInternal": false, "x": 180, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 180, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -7343,8 +7343,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7371,7 +7371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7409,11 +7409,11 @@ }, { "x": 260, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 220, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -7431,7 +7431,7 @@ }, { "x": 240, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -7439,7 +7439,7 @@ }, { "x": 240, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 5, @@ -7463,7 +7463,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7484,28 +7484,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -7533,8 +7533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7561,7 +7561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7599,11 +7599,11 @@ }, { "x": 300, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 260, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -7621,7 +7621,7 @@ }, { "x": 280, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -7629,7 +7629,7 @@ }, { "x": 280, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 6, @@ -7653,7 +7653,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7674,28 +7674,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -7723,8 +7723,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7751,7 +7751,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7789,11 +7789,11 @@ }, { "x": 340, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -7811,7 +7811,7 @@ }, { "x": 320, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -7819,7 +7819,7 @@ }, { "x": 320, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 7, @@ -7843,7 +7843,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -7864,28 +7864,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -7913,8 +7913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7941,7 +7941,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7979,11 +7979,11 @@ }, { "x": 380, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 340, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -8001,7 +8001,7 @@ }, { "x": 360, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -8009,7 +8009,7 @@ }, { "x": 360, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 7, @@ -8033,7 +8033,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8054,28 +8054,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -8103,8 +8103,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8131,7 +8131,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8169,11 +8169,11 @@ }, { "x": 420, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 380, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -8191,7 +8191,7 @@ }, { "x": 400, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -8199,7 +8199,7 @@ }, { "x": 400, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 8, @@ -8223,7 +8223,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8244,28 +8244,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -8293,8 +8293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8321,7 +8321,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8359,11 +8359,11 @@ }, { "x": 460, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 420, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -8381,7 +8381,7 @@ }, { "x": 440, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -8389,7 +8389,7 @@ }, { "x": 440, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 9, @@ -8413,7 +8413,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8434,28 +8434,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -8483,8 +8483,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8511,7 +8511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8549,11 +8549,11 @@ }, { "x": 500, - "y": 477.73575476702496 + "y": 477.73575 }, { "x": 460, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -8571,7 +8571,7 @@ }, { "x": 480, - "y": 457.73575476702496 + "y": 457.73575 }, { "x": 0, @@ -8579,7 +8579,7 @@ }, { "x": 480, - "y": 454.8284840519894 + "y": 454.82848 }, { "endCol": 10, @@ -8603,7 +8603,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8624,28 +8624,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 477.73575476702496 + "y": 477.73575 }, { "angle": 0, @@ -8673,8 +8673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8701,7 +8701,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8739,11 +8739,11 @@ }, { "x": 140, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 100, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -8761,7 +8761,7 @@ }, { "x": 120, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -8769,7 +8769,7 @@ }, { "x": 120, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 2, @@ -8793,7 +8793,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -8814,28 +8814,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 140, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 140, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -8863,8 +8863,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8891,7 +8891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8929,11 +8929,11 @@ }, { "x": 180, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 140, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -8951,7 +8951,7 @@ }, { "x": 160, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -8959,7 +8959,7 @@ }, { "x": 160, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 3, @@ -8983,7 +8983,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9004,28 +9004,28 @@ "index": 0, "isInternal": false, "x": 140, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 180, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 180, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 140, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -9053,8 +9053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9081,7 +9081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9119,11 +9119,11 @@ }, { "x": 220, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 180, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -9141,7 +9141,7 @@ }, { "x": 200, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -9149,7 +9149,7 @@ }, { "x": 200, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 4, @@ -9173,7 +9173,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9194,28 +9194,28 @@ "index": 0, "isInternal": false, "x": 180, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 220, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 220, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 180, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -9243,8 +9243,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9271,7 +9271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9309,11 +9309,11 @@ }, { "x": 260, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 220, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -9331,7 +9331,7 @@ }, { "x": 240, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -9339,7 +9339,7 @@ }, { "x": 240, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 5, @@ -9363,7 +9363,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9384,28 +9384,28 @@ "index": 0, "isInternal": false, "x": 220, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 260, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 260, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 220, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -9433,8 +9433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9461,7 +9461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9499,11 +9499,11 @@ }, { "x": 300, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 260, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -9521,7 +9521,7 @@ }, { "x": 280, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -9529,7 +9529,7 @@ }, { "x": 280, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 6, @@ -9553,7 +9553,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9574,28 +9574,28 @@ "index": 0, "isInternal": false, "x": 260, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 260, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -9623,8 +9623,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9651,7 +9651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9689,11 +9689,11 @@ }, { "x": 340, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 300, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -9711,7 +9711,7 @@ }, { "x": 320, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -9719,7 +9719,7 @@ }, { "x": 320, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 7, @@ -9743,7 +9743,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9764,28 +9764,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 340, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 340, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -9813,8 +9813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9841,7 +9841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9879,11 +9879,11 @@ }, { "x": 380, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 340, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -9901,7 +9901,7 @@ }, { "x": 360, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -9909,7 +9909,7 @@ }, { "x": 360, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 7, @@ -9933,7 +9933,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -9954,28 +9954,28 @@ "index": 0, "isInternal": false, "x": 340, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 380, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 380, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 340, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -10003,8 +10003,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10031,7 +10031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10069,11 +10069,11 @@ }, { "x": 420, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 380, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -10091,7 +10091,7 @@ }, { "x": 400, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -10099,7 +10099,7 @@ }, { "x": 400, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 8, @@ -10123,7 +10123,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10144,28 +10144,28 @@ "index": 0, "isInternal": false, "x": 380, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 420, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 420, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 380, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -10193,8 +10193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10221,7 +10221,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10259,11 +10259,11 @@ }, { "x": 460, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 420, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -10281,7 +10281,7 @@ }, { "x": 440, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -10289,7 +10289,7 @@ }, { "x": 440, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 9, @@ -10313,7 +10313,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10334,28 +10334,28 @@ "index": 0, "isInternal": false, "x": 420, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 460, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 460, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 420, - "y": 517.7357547670249 + "y": 517.73575 }, { "angle": 0, @@ -10383,8 +10383,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10411,7 +10411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10449,11 +10449,11 @@ }, { "x": 500, - "y": 517.7357547670249 + "y": 517.73575 }, { "x": 460, - "y": 477.73575476702496 + "y": 477.73575 }, { "category": 1, @@ -10471,7 +10471,7 @@ }, { "x": 480, - "y": 497.73575476702496 + "y": 497.73575 }, { "x": 0, @@ -10479,7 +10479,7 @@ }, { "x": 480, - "y": 494.8284840519894 + "y": 494.82848 }, { "endCol": 10, @@ -10503,7 +10503,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -10524,28 +10524,28 @@ "index": 0, "isInternal": false, "x": 460, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 477.73575476702496 + "y": 477.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 517.7357547670249 + "y": 517.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 460, - "y": 517.7357547670249 + "y": 517.73575 }, [], [], diff --git a/test/browser/refs/staticFriction/staticFriction-0.json b/test/browser/refs/staticFriction/staticFriction-0.json index 6db98016..2c219172 100644 --- a/test/browser/refs/staticFriction/staticFriction-0.json +++ b/test/browser/refs/staticFriction/staticFriction-0.json @@ -826,7 +826,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 11907.05753611121, + "area": 11907.05754, "axes": { "#": 87 }, @@ -926,36 +926,36 @@ } ], { - "x": 0.9735046964338784, - "y": 0.22866701996829908 + "x": 0.9735, + "y": 0.22867 }, { - "x": 0.7698918823074706, - "y": 0.638174341036256 + "x": 0.76989, + "y": 0.63817 }, { - "x": 0.40525277492953526, - "y": 0.9142046753391232 + "x": 0.40525, + "y": 0.9142 }, { - "x": 0.0007482922731533067, - "y": 0.9999997200292978 + "x": 0.00075, + "y": 1 }, { - "x": -0.22866701996829908, - "y": 0.9735046964338784 + "x": -0.22867, + "y": 0.9735 }, { - "x": -0.6381743410362559, - "y": 0.7698918823074709 + "x": -0.63817, + "y": 0.76989 }, { - "x": -0.9142046753391231, - "y": 0.40525277492953543 + "x": -0.9142, + "y": 0.40525 }, { - "x": -0.9999953440410466, - "y": 0.0030515399766088704 + "x": -1, + "y": 0.00305 }, { "max": { @@ -966,11 +966,11 @@ } }, { - "x": 499.99999999999994, + "x": 500, "y": 530 }, { - "x": 299.99999999999994, + "x": 300, "y": 470 }, { @@ -1070,113 +1070,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 299.99999999999994, + "x": 300, "y": 478 }, { "body": null, "index": 1, "isInternal": false, - "x": 300.83661769633886, - "y": 474.4382653142611 + "x": 300.83662, + "y": 474.43827 }, { "body": null, "index": 2, "isInternal": false, - "x": 303.1714884928988, - "y": 471.6214831954606 + "x": 303.17149, + "y": 471.62148 }, { "body": null, "index": 3, "isInternal": false, - "x": 306.5162638329129, - "y": 470.1387960854283 + "x": 306.51626, + "y": 470.1388 }, { "body": null, "index": 4, "isInternal": false, - "x": 491.99999999999994, + "x": 492, "y": 470 }, { "body": null, "index": 5, "isInternal": false, - "x": 495.5617346857388, - "y": 470.8366176963389 + "x": 495.56173, + "y": 470.83662 }, { "body": null, "index": 6, "isInternal": false, - "x": 498.37851680453934, - "y": 473.1714884928988 + "x": 498.37852, + "y": 473.17149 }, { "body": null, "index": 7, "isInternal": false, - "x": 499.86120391457166, - "y": 476.51626383291295 + "x": 499.8612, + "y": 476.51626 }, { "body": null, "index": 8, "isInternal": false, - "x": 499.99999999999994, + "x": 500, "y": 522 }, { "body": null, "index": 9, "isInternal": false, - "x": 499.163382303661, - "y": 525.5617346857389 + "x": 499.16338, + "y": 525.56173 }, { "body": null, "index": 10, "isInternal": false, - "x": 496.82851150710115, - "y": 528.3785168045393 + "x": 496.82851, + "y": 528.37852 }, { "body": null, "index": 11, "isInternal": false, - "x": 493.483736167087, - "y": 529.8612039145718 + "x": 493.48374, + "y": 529.8612 }, { "body": null, "index": 12, "isInternal": false, - "x": 307.99999999999994, + "x": 308, "y": 530 }, { "body": null, "index": 13, "isInternal": false, - "x": 304.4382653142611, - "y": 529.1633823036611 + "x": 304.43827, + "y": 529.16338 }, { "body": null, "index": 14, "isInternal": false, - "x": 301.62148319546054, - "y": 526.8285115071012 + "x": 301.62148, + "y": 526.82851 }, { "body": null, "index": 15, "isInternal": false, - "x": 300.1387960854282, - "y": 523.483736167087 + "x": 300.1388, + "y": 523.48374 }, { "max": { @@ -1266,8 +1266,8 @@ ] }, "id": 6, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -1451,8 +1451,8 @@ ] }, "id": 7, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -1636,8 +1636,8 @@ ] }, "id": 8, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -1821,8 +1821,8 @@ ] }, "id": 9, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -2006,8 +2006,8 @@ ] }, "id": 10, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -2191,8 +2191,8 @@ ] }, "id": 11, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, diff --git a/test/browser/refs/staticFriction/staticFriction-10.json b/test/browser/refs/staticFriction/staticFriction-10.json index 370116d2..8ed487ed 100644 --- a/test/browser/refs/staticFriction/staticFriction-10.json +++ b/test/browser/refs/staticFriction/staticFriction-10.json @@ -866,7 +866,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 11907.05753611121, + "area": 11907.05754, "axes": { "#": 91 }, @@ -969,36 +969,36 @@ } ], { - "x": 0.9735046964338784, - "y": 0.22866701996829908 + "x": 0.9735, + "y": 0.22867 }, { - "x": 0.7698918823074706, - "y": 0.638174341036256 + "x": 0.76989, + "y": 0.63817 }, { - "x": 0.40525277492953526, - "y": 0.9142046753391232 + "x": 0.40525, + "y": 0.9142 }, { - "x": 0.0007482922731533067, - "y": 0.9999997200292978 + "x": 0.00075, + "y": 1 }, { - "x": -0.22866701996829908, - "y": 0.9735046964338784 + "x": -0.22867, + "y": 0.9735 }, { - "x": -0.6381743410362559, - "y": 0.7698918823074709 + "x": -0.63817, + "y": 0.76989 }, { - "x": -0.9142046753391231, - "y": 0.40525277492953543 + "x": -0.9142, + "y": 0.40525 }, { - "x": -0.9999953440410466, - "y": 0.0030515399766088704 + "x": -1, + "y": 0.00305 }, { "max": { @@ -1009,11 +1009,11 @@ } }, { - "x": 499.99999999999994, + "x": 500, "y": 530 }, { - "x": 299.99999999999994, + "x": 300, "y": 470 }, { @@ -1120,113 +1120,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 299.99999999999994, + "x": 300, "y": 478 }, { "body": null, "index": 1, "isInternal": false, - "x": 300.83661769633886, - "y": 474.4382653142611 + "x": 300.83662, + "y": 474.43827 }, { "body": null, "index": 2, "isInternal": false, - "x": 303.1714884928988, - "y": 471.6214831954606 + "x": 303.17149, + "y": 471.62148 }, { "body": null, "index": 3, "isInternal": false, - "x": 306.5162638329129, - "y": 470.1387960854283 + "x": 306.51626, + "y": 470.1388 }, { "body": null, "index": 4, "isInternal": false, - "x": 491.99999999999994, + "x": 492, "y": 470 }, { "body": null, "index": 5, "isInternal": false, - "x": 495.5617346857388, - "y": 470.8366176963389 + "x": 495.56173, + "y": 470.83662 }, { "body": null, "index": 6, "isInternal": false, - "x": 498.37851680453934, - "y": 473.1714884928988 + "x": 498.37852, + "y": 473.17149 }, { "body": null, "index": 7, "isInternal": false, - "x": 499.86120391457166, - "y": 476.51626383291295 + "x": 499.8612, + "y": 476.51626 }, { "body": null, "index": 8, "isInternal": false, - "x": 499.99999999999994, + "x": 500, "y": 522 }, { "body": null, "index": 9, "isInternal": false, - "x": 499.163382303661, - "y": 525.5617346857389 + "x": 499.16338, + "y": 525.56173 }, { "body": null, "index": 10, "isInternal": false, - "x": 496.82851150710115, - "y": 528.3785168045393 + "x": 496.82851, + "y": 528.37852 }, { "body": null, "index": 11, "isInternal": false, - "x": 493.483736167087, - "y": 529.8612039145718 + "x": 493.48374, + "y": 529.8612 }, { "body": null, "index": 12, "isInternal": false, - "x": 307.99999999999994, + "x": 308, "y": 530 }, { "body": null, "index": 13, "isInternal": false, - "x": 304.4382653142611, - "y": 529.1633823036611 + "x": 304.43827, + "y": 529.16338 }, { "body": null, "index": 14, "isInternal": false, - "x": 301.62148319546054, - "y": 526.8285115071012 + "x": 301.62148, + "y": 526.82851 }, { "body": null, "index": 15, "isInternal": false, - "x": 300.1387960854282, - "y": 523.483736167087 + "x": 300.1388, + "y": 523.48374 }, { "max": { @@ -1286,10 +1286,10 @@ } ], { - "angle": -0.0012310041134439187, - "anglePrev": -0.0011078552713938746, - "angularSpeed": 0.00017389392595529676, - "angularVelocity": -0.000122985028238402, + "angle": -0.00123, + "anglePrev": -0.00111, + "angularSpeed": 0.00017, + "angularVelocity": -0.00012, "area": 5000, "axes": { "#": 137 @@ -1316,8 +1316,8 @@ ] }, "id": 6, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -1344,7 +1344,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 0.8129385467291288, + "speed": 0.81294, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1365,12 +1365,12 @@ } ], { - "x": 0.0012310038025392601, - "y": 0.999999242314532 + "x": 0.00123, + "y": 1 }, { - "x": -0.999999242314532, - "y": 0.0012310038025392601 + "x": -1, + "y": 0.00123 }, { "max": { @@ -1381,12 +1381,12 @@ } }, { - "x": 449.99156788988245, - "y": 229.79901368676073 + "x": 449.99157, + "y": 229.79901 }, { - "x": 349.9224952653303, - "y": 178.86304815346904 + "x": 349.9225, + "y": 178.86305 }, { "category": 1, @@ -1403,16 +1403,16 @@ "y": 0 }, { - "x": 399.96083067909234, - "y": 203.9245794014593 + "x": 399.96083, + "y": 203.92458 }, { "x": 0, "y": 0 }, { - "x": 399.9680789903058, - "y": 203.61982311816936 + "x": 399.96808, + "y": 203.61982 }, { "endCol": 9, @@ -1435,8 +1435,8 @@ "yScale": 1 }, { - "x": -0.007267163289156997, - "y": 0.3068033213344279 + "x": -0.00727, + "y": 0.3068 }, [ { @@ -1456,35 +1456,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 349.93009346830223, - "y": 178.98614853372294 + "x": 349.93009, + "y": 178.98615 }, { "body": null, "index": 1, "isInternal": false, - "x": 449.93001769975547, - "y": 178.86304815346904 + "x": 449.93002, + "y": 178.86305 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.99156788988245, - "y": 228.86301026919568 + "x": 449.99157, + "y": 228.86301 }, { "body": null, "index": 3, "isInternal": false, - "x": 349.9916436584292, - "y": 228.98611064944959 + "x": 349.99164, + "y": 228.98611 }, { - "angle": -0.0009076932567600348, - "anglePrev": -0.0007844259108426244, - "angularSpeed": 0.00015843560543930737, - "angularVelocity": -0.00012317607551075706, + "angle": -0.00091, + "anglePrev": -0.00078, + "angularSpeed": 0.00016, + "angularVelocity": -0.00012, "area": 5000, "axes": { "#": 159 @@ -1511,8 +1511,8 @@ ] }, "id": 7, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -1539,7 +1539,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 0.8017726072628292, + "speed": 0.80177, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1560,12 +1560,12 @@ } ], { - "x": 0.0009076931321175614, - "y": 0.999999588046504 + "x": 0.00091, + "y": 1 }, { - "x": -0.999999588046504, - "y": 0.0009076931321175614 + "x": -1, + "y": 0.00091 }, { "max": { @@ -1576,12 +1576,12 @@ } }, { - "x": 450.05003080047663, - "y": 279.0699422677252 + "x": 450.05003, + "y": 279.06994 }, { - "x": 350.0033639859199, - "y": 228.17742203704628 + "x": 350.00336, + "y": 228.17742 }, { "category": 1, @@ -1598,16 +1598,16 @@ "y": 0 }, { - "x": 400.02603571654805, - "y": 253.22279639481476 + "x": 400.02604, + "y": 253.2228 }, { "x": 0, "y": 0 }, { - "x": 400.02708689788903, - "y": 252.9205040948151 + "x": 400.02709, + "y": 252.9205 }, { "endCol": 9, @@ -1630,8 +1630,8 @@ "yScale": 1 }, { - "x": -0.0010323292652856253, - "y": 0.3002452619551832 + "x": -0.00103, + "y": 0.30025 }, [ { @@ -1651,35 +1651,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 350.0033639859199, - "y": 228.268191350258 + "x": 350.00336, + "y": 228.26819 }, { "body": null, "index": 1, "isInternal": false, - "x": 450.00332279057034, - "y": 228.17742203704628 + "x": 450.00332, + "y": 228.17742 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.0487074471762, - "y": 278.17740143937147 + "x": 450.04871, + "y": 278.1774 }, { "body": null, "index": 3, "isInternal": false, - "x": 350.04874864252577, - "y": 278.2681707525832 + "x": 350.04875, + "y": 278.26817 }, { - "angle": 0.00009803038051582402, - "anglePrev": 0.0001970770303569345, - "angularSpeed": 0.00009920840883729951, - "angularVelocity": -0.0001101984184967639, + "angle": 0.0001, + "anglePrev": 0.0002, + "angularSpeed": 0.0001, + "angularVelocity": -0.00011, "area": 5000, "axes": { "#": 181 @@ -1706,8 +1706,8 @@ ] }, "id": 8, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -1734,7 +1734,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 0.7239171334899934, + "speed": 0.72392, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1755,12 +1755,12 @@ } ], { - "x": -0.00009803038035881275, - "y": 0.9999999951950224 + "x": -0.0001, + "y": 1 }, { - "x": -0.9999999951950224, - "y": -0.00009803038035881275 + "x": -1, + "y": -0.0001 }, { "max": { @@ -1771,12 +1771,12 @@ } }, { - "x": 450.0498065018296, - "y": 327.8530607266009 + "x": 450.04981, + "y": 327.85306 }, { - "x": 350.0374488591381, - "y": 277.1193791991814 + "x": 350.03745, + "y": 277.11938 }, { "category": 1, @@ -1793,16 +1793,16 @@ "y": 0 }, { - "x": 400.0398993783982, - "y": 302.12428059807485 + "x": 400.0399, + "y": 302.12428 }, { "x": 0, "y": 0 }, { - "x": 400.034608536642, - "y": 301.8403536295276 + "x": 400.03461, + "y": 301.84035 }, { "endCol": 9, @@ -1825,8 +1825,8 @@ "yScale": 1 }, { - "x": 0.0053461558342746685, - "y": 0.2962249265988248 + "x": 0.00535, + "y": 0.29622 }, [ { @@ -1846,35 +1846,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 350.042350378156, - "y": 277.1193791991814 + "x": 350.04235, + "y": 277.11938 }, { "body": null, "index": 1, "isInternal": false, - "x": 450.0423498976583, - "y": 277.1291822372172 + "x": 450.04235, + "y": 277.12918 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.0374483786404, - "y": 327.12918199696827 + "x": 450.03745, + "y": 327.12918 }, { "body": null, "index": 3, "isInternal": false, - "x": 350.0374488591381, - "y": 327.1193789589325 + "x": 350.03745, + "y": 327.11938 }, { - "angle": 0.00032776365208912766, - "anglePrev": 0.00039081978076447866, - "angularSpeed": 0.000054191075343454996, - "angularVelocity": -0.00005262356130167242, + "angle": 0.00033, + "anglePrev": 0.00039, + "angularSpeed": 0.00005, + "angularVelocity": -0.00005, "area": 5000, "axes": { "#": 203 @@ -1901,8 +1901,8 @@ ] }, "id": 9, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -1929,7 +1929,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 0.6719183198521658, + "speed": 0.67192, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1950,12 +1950,12 @@ } ], { - "x": -0.0003277636462205735, - "y": 0.9999999462854946 + "x": -0.00033, + "y": 1 }, { - "x": -0.9999999462854946, - "y": -0.0003277636462205735 + "x": -1, + "y": -0.00033 }, { "max": { @@ -1966,12 +1966,12 @@ } }, { - "x": 450.0310324642433, - "y": 376.26060451322536 + "x": 450.03103, + "y": 376.2606 }, { - "x": 350.0059466718636, - "y": 325.5559688792622 + "x": 350.00595, + "y": 325.55597 }, { "category": 1, @@ -1988,16 +1988,16 @@ "y": 0 }, { - "x": 400.0141380772938, - "y": 350.5723557187106 + "x": 400.01414, + "y": 350.57236 }, { "x": 0, "y": 0 }, { - "x": 400.00526577898916, - "y": 350.3031797294095 + "x": 400.00527, + "y": 350.30318 }, { "endCol": 9, @@ -2020,8 +2020,8 @@ "yScale": 1 }, { - "x": 0.008816984226598379, - "y": 0.25687803124947095 + "x": 0.00882, + "y": 0.25688 }, [ { @@ -2041,35 +2041,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 350.0223348541745, - "y": 325.5559688792622 + "x": 350.02233, + "y": 325.55597 }, { "body": null, "index": 1, "isInternal": false, - "x": 450.0223294827241, - "y": 325.5887452438842 + "x": 450.02233, + "y": 325.58875 }, { "body": null, "index": 2, "isInternal": false, - "x": 450.0059413004132, - "y": 375.58874255815897 + "x": 450.00594, + "y": 375.58874 }, { "body": null, "index": 3, "isInternal": false, - "x": 350.0059466718636, - "y": 375.55596619353696 + "x": 350.00595, + "y": 375.55597 }, { - "angle": 0.00025583510257530393, - "anglePrev": 0.0002688370939082472, - "angularSpeed": 0.000015849130596733338, - "angularVelocity": -0.000004089183982093159, + "angle": 0.00026, + "anglePrev": 0.00027, + "angularSpeed": 0.00002, + "angularVelocity": 0, "area": 5000, "axes": { "#": 225 @@ -2096,8 +2096,8 @@ ] }, "id": 10, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -2124,7 +2124,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 0.5481861489097851, + "speed": 0.54819, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2145,12 +2145,12 @@ } ], { - "x": -0.0002558350997845012, - "y": 0.9999999672742003 + "x": -0.00026, + "y": 1 }, { - "x": -0.9999999672742003, - "y": -0.0002558350997845012 + "x": -1, + "y": -0.00026 }, { "max": { @@ -2161,12 +2161,12 @@ } }, { - "x": 450.00278082938786, - "y": 424.2001716942015 + "x": 450.00278, + "y": 424.20017 }, { - "x": 349.98595247977073, - "y": 373.62641855774046 + "x": 349.98595, + "y": 373.62642 }, { "category": 1, @@ -2183,16 +2183,16 @@ "y": 0 }, { - "x": 399.9923467209754, - "y": 398.6392094945848 + "x": 399.99235, + "y": 398.63921 }, { "x": 0, "y": 0 }, { - "x": 399.98497459879434, - "y": 398.4177329167247 + "x": 399.98497, + "y": 398.41773 }, { "endCol": 9, @@ -2215,8 +2215,8 @@ "yScale": 1 }, { - "x": 0.006869415868322903, - "y": 0.19197078132697243 + "x": 0.00687, + "y": 0.19197 }, [ { @@ -2236,35 +2236,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 349.99874423476, - "y": 373.62641855774046 + "x": 349.99874, + "y": 373.62642 }, { "body": null, "index": 1, "isInternal": false, - "x": 449.99874096218, - "y": 373.65200206771897 + "x": 449.99874, + "y": 373.652 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.98594920719074, - "y": 423.65200043142914 + "x": 449.98595, + "y": 423.652 }, { "body": null, "index": 3, "isInternal": false, - "x": 349.98595247977073, - "y": 423.62641692145064 + "x": 349.98595, + "y": 423.62642 }, { - "angle": 0.00006934305471347785, - "anglePrev": 0.00006538751847046922, - "angularSpeed": 0.000003399500478712464, - "angularVelocity": 0.0000032941920733172927, + "angle": 0.00007, + "anglePrev": 0.00007, + "angularSpeed": 0, + "angularVelocity": 0, "area": 5000, "axes": { "#": 247 @@ -2291,8 +2291,8 @@ ] }, "id": 11, - "inertia": 20833.333333333336, - "inverseInertia": 0.000047999999999999994, + "inertia": 20833.33333, + "inverseInertia": 0.00005, "inverseMass": 0.2, "isSleeping": false, "isStatic": false, @@ -2319,7 +2319,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.5, - "speed": 0.3914779024538964, + "speed": 0.39148, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2340,12 +2340,12 @@ } ], { - "x": -0.00006934305465790566, - "y": 0.9999999975957706 + "x": -0.00007, + "y": 1 }, { - "x": -0.9999999975957706, - "y": -0.00006934305465790566 + "x": -1, + "y": -0.00007 }, { "max": { @@ -2356,12 +2356,12 @@ } }, { - "x": 449.9799867802248, - "y": 471.8310906564733 + "x": 449.97999, + "y": 471.83109 }, { - "x": 349.9760382076151, - "y": 421.43267886507397 + "x": 349.97604, + "y": 421.43268 }, { "category": 1, @@ -2378,16 +2378,16 @@ "y": 0 }, { - "x": 399.97777166377006, - "y": 446.4361459577011 + "x": 399.97777, + "y": 446.43615 }, { "x": 0, "y": 0 }, { - "x": 399.97405105983216, - "y": 446.3203141937874 + "x": 399.97405, + "y": 446.32031 }, { "endCol": 9, @@ -2410,8 +2410,8 @@ "yScale": 1 }, { - "x": 0.0032014948901633034, - "y": 0.05237421223455385 + "x": 0.0032, + "y": 0.05237 }, [ { @@ -2431,29 +2431,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 349.97950536034796, - "y": 421.43267886507397 + "x": 349.97951, + "y": 421.43268 }, { "body": null, "index": 1, "isInternal": false, - "x": 449.979505119925, - "y": 421.43961317053976 + "x": 449.97951, + "y": 421.43961 }, { "body": null, "index": 2, "isInternal": false, - "x": 449.97603796719216, - "y": 471.43961305032826 + "x": 449.97604, + "y": 471.43961 }, { "body": null, "index": 3, "isInternal": false, - "x": 349.9760382076151, - "y": 471.43267874486247 + "x": 349.97604, + "y": 471.43268 }, [], [], diff --git a/test/browser/refs/stress/stress-0.json b/test/browser/refs/stress/stress-0.json index 3cefd416..1565ee42 100644 --- a/test/browser/refs/stress/stress-0.json +++ b/test/browser/refs/stress/stress-0.json @@ -1693,9 +1693,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1873,9 +1873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2053,9 +2053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2233,9 +2233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2413,9 +2413,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2593,9 +2593,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2773,9 +2773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2953,9 +2953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3133,9 +3133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3313,9 +3313,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3493,9 +3493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3673,9 +3673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3853,9 +3853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4033,9 +4033,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4213,9 +4213,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4393,9 +4393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4573,9 +4573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4753,9 +4753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4933,9 +4933,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5113,9 +5113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5293,9 +5293,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5473,9 +5473,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5653,9 +5653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5833,9 +5833,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6013,9 +6013,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6193,9 +6193,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6373,9 +6373,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6553,9 +6553,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6733,9 +6733,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6913,9 +6913,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7093,9 +7093,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7273,9 +7273,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7453,9 +7453,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7633,9 +7633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7813,9 +7813,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7993,9 +7993,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8173,9 +8173,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8353,9 +8353,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8533,9 +8533,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8713,9 +8713,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8893,9 +8893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9073,9 +9073,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9253,9 +9253,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9433,9 +9433,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9613,9 +9613,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9793,9 +9793,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9973,9 +9973,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10153,9 +10153,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10333,9 +10333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10513,9 +10513,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10693,9 +10693,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10873,9 +10873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11053,9 +11053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11233,9 +11233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11413,9 +11413,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11593,9 +11593,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11773,9 +11773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11953,9 +11953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12133,9 +12133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12313,9 +12313,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12493,9 +12493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12673,9 +12673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12853,9 +12853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13033,9 +13033,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13213,9 +13213,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13393,9 +13393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13573,9 +13573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13753,9 +13753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13933,9 +13933,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14113,9 +14113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14293,9 +14293,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14473,9 +14473,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14653,9 +14653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14833,9 +14833,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15013,9 +15013,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15193,9 +15193,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15373,9 +15373,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15553,9 +15553,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15733,9 +15733,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15913,9 +15913,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16093,9 +16093,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16273,9 +16273,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16453,9 +16453,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16633,9 +16633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16813,9 +16813,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16993,9 +16993,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17173,9 +17173,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17353,9 +17353,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17533,9 +17533,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17713,9 +17713,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17893,9 +17893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18073,9 +18073,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18253,9 +18253,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18433,9 +18433,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18613,9 +18613,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18793,9 +18793,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18973,9 +18973,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19153,9 +19153,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19333,9 +19333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19513,9 +19513,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19693,9 +19693,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 105, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19873,9 +19873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 106, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20053,9 +20053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 107, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20233,9 +20233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 108, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20413,9 +20413,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20593,9 +20593,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 110, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20773,9 +20773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 111, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20953,9 +20953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 112, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21133,9 +21133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 113, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21313,9 +21313,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 114, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21493,9 +21493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21673,9 +21673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 116, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21853,9 +21853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 117, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22033,9 +22033,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22213,9 +22213,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 119, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22393,9 +22393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 120, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22573,9 +22573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 121, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22753,9 +22753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 122, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22933,9 +22933,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 123, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23113,9 +23113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 124, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23293,9 +23293,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 125, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23473,9 +23473,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 126, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23653,9 +23653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 127, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23833,9 +23833,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 128, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24013,9 +24013,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 129, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24193,9 +24193,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 130, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24373,9 +24373,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 131, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24553,9 +24553,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 132, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24733,9 +24733,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 133, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24913,9 +24913,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 134, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25093,9 +25093,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 135, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25273,9 +25273,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 136, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25453,9 +25453,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 137, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25633,9 +25633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 138, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25813,9 +25813,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 139, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25993,9 +25993,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 140, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26173,9 +26173,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 141, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26353,9 +26353,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 142, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26533,9 +26533,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 143, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26713,9 +26713,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 144, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26893,9 +26893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 145, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27073,9 +27073,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 146, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27253,9 +27253,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 147, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27433,9 +27433,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 148, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27613,9 +27613,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 149, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27793,9 +27793,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 150, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27973,9 +27973,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 151, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28153,9 +28153,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 152, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28333,9 +28333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 153, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28513,9 +28513,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 154, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28693,9 +28693,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 155, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28873,9 +28873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 156, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29053,9 +29053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 157, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29233,9 +29233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 158, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29413,9 +29413,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 159, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29593,9 +29593,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 160, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29773,9 +29773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 161, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29953,9 +29953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 162, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30133,9 +30133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 163, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30313,9 +30313,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 164, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30493,9 +30493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 165, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30673,9 +30673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 166, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30853,9 +30853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 167, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31033,9 +31033,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 168, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31213,9 +31213,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 169, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31393,9 +31393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 170, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31573,9 +31573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 171, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31753,9 +31753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 172, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31933,9 +31933,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 173, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32113,9 +32113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 174, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32293,9 +32293,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 175, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32473,9 +32473,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 176, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32653,9 +32653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 177, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32833,9 +32833,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 178, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33013,9 +33013,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 179, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33193,9 +33193,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 180, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33373,9 +33373,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 181, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33553,9 +33553,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 182, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33733,9 +33733,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 183, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33913,9 +33913,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 184, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34093,9 +34093,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 185, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34273,9 +34273,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 186, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34453,9 +34453,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 187, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34633,9 +34633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 188, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34813,9 +34813,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 189, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34993,9 +34993,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 190, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35173,9 +35173,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 191, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35353,9 +35353,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 192, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35533,9 +35533,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 193, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35713,9 +35713,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 194, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35893,9 +35893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 195, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36073,9 +36073,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 196, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36253,9 +36253,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 197, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36433,9 +36433,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 198, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36613,9 +36613,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 199, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36793,9 +36793,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 200, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36973,9 +36973,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 201, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37153,9 +37153,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 202, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37333,9 +37333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 203, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37513,9 +37513,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 204, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37693,9 +37693,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 205, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37873,9 +37873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 206, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38053,9 +38053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 207, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38233,9 +38233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 208, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38413,9 +38413,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 209, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38593,9 +38593,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 210, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38773,9 +38773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 211, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38953,9 +38953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 212, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39133,9 +39133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 213, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39313,9 +39313,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 214, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39493,9 +39493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 215, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39673,9 +39673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 216, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39853,9 +39853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 217, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40033,9 +40033,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 218, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40213,9 +40213,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 219, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40393,9 +40393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 220, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40573,9 +40573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 221, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40753,9 +40753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 222, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40933,9 +40933,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 223, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41113,9 +41113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 224, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41293,9 +41293,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 225, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41473,9 +41473,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 226, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41653,9 +41653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 227, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41833,9 +41833,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 228, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42013,9 +42013,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 229, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42193,9 +42193,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 230, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42373,9 +42373,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 231, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42553,9 +42553,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 232, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42733,9 +42733,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 233, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42913,9 +42913,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 234, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43093,9 +43093,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 235, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43273,9 +43273,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 236, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43453,9 +43453,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 237, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43633,9 +43633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 238, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43813,9 +43813,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 239, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43993,9 +43993,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 240, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44173,9 +44173,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 241, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44353,9 +44353,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 242, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44533,9 +44533,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 243, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44713,9 +44713,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 244, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44893,9 +44893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 245, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45073,9 +45073,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 246, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45253,9 +45253,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 247, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45433,9 +45433,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 248, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45613,9 +45613,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 249, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45793,9 +45793,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 250, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45973,9 +45973,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 251, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46153,9 +46153,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 252, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46333,9 +46333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 253, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46513,9 +46513,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 254, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46693,9 +46693,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 255, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46873,9 +46873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 256, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47053,9 +47053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 257, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47233,9 +47233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 258, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47413,9 +47413,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 259, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47593,9 +47593,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 260, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47773,9 +47773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 261, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47953,9 +47953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 262, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48133,9 +48133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 263, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48313,9 +48313,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 264, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48493,9 +48493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 265, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48673,9 +48673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 266, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48853,9 +48853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 267, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49033,9 +49033,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 268, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49213,9 +49213,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 269, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49393,9 +49393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 270, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49573,9 +49573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 271, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49753,9 +49753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 272, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49933,9 +49933,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 273, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -50113,9 +50113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 274, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", diff --git a/test/browser/refs/stress/stress-10.json b/test/browser/refs/stress/stress-10.json index c317dd0a..67391651 100644 --- a/test/browser/refs/stress/stress-10.json +++ b/test/browser/refs/stress/stress-10.json @@ -1733,9 +1733,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1761,7 +1761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1799,11 +1799,11 @@ }, { "x": 125, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 90, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -1821,7 +1821,7 @@ }, { "x": 107.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -1829,7 +1829,7 @@ }, { "x": 107.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 2, @@ -1853,7 +1853,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -1874,28 +1874,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -1923,9 +1923,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -1951,7 +1951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1989,11 +1989,11 @@ }, { "x": 160, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 125, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -2011,7 +2011,7 @@ }, { "x": 142.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -2019,7 +2019,7 @@ }, { "x": 142.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 3, @@ -2043,7 +2043,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2064,28 +2064,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -2113,9 +2113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2141,7 +2141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2179,11 +2179,11 @@ }, { "x": 195, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 160, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -2201,7 +2201,7 @@ }, { "x": 177.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -2209,7 +2209,7 @@ }, { "x": 177.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 4, @@ -2233,7 +2233,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2254,28 +2254,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -2303,9 +2303,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2331,7 +2331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2369,11 +2369,11 @@ }, { "x": 230, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 195, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -2391,7 +2391,7 @@ }, { "x": 212.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -2399,7 +2399,7 @@ }, { "x": 212.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 4, @@ -2423,7 +2423,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2444,28 +2444,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -2493,9 +2493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2521,7 +2521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2559,11 +2559,11 @@ }, { "x": 265, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 230, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -2581,7 +2581,7 @@ }, { "x": 247.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -2589,7 +2589,7 @@ }, { "x": 247.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 5, @@ -2613,7 +2613,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2634,28 +2634,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -2683,9 +2683,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2711,7 +2711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2749,11 +2749,11 @@ }, { "x": 300, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 265, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -2771,7 +2771,7 @@ }, { "x": 282.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -2779,7 +2779,7 @@ }, { "x": 282.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 6, @@ -2803,7 +2803,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -2824,28 +2824,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -2873,9 +2873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -2901,7 +2901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2939,11 +2939,11 @@ }, { "x": 335, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 300, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -2961,7 +2961,7 @@ }, { "x": 317.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -2969,7 +2969,7 @@ }, { "x": 317.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 6, @@ -2993,7 +2993,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -3014,28 +3014,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -3063,9 +3063,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3091,7 +3091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3129,11 +3129,11 @@ }, { "x": 370, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 335, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -3151,7 +3151,7 @@ }, { "x": 352.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -3159,7 +3159,7 @@ }, { "x": 352.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 7, @@ -3183,7 +3183,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -3204,28 +3204,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -3253,9 +3253,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3281,7 +3281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3319,11 +3319,11 @@ }, { "x": 405, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 370, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -3341,7 +3341,7 @@ }, { "x": 387.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -3349,7 +3349,7 @@ }, { "x": 387.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 8, @@ -3373,7 +3373,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -3394,28 +3394,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -3443,9 +3443,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3471,7 +3471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3509,11 +3509,11 @@ }, { "x": 440, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 405, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -3531,7 +3531,7 @@ }, { "x": 422.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -3539,7 +3539,7 @@ }, { "x": 422.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 9, @@ -3563,7 +3563,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -3584,28 +3584,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -3633,9 +3633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3661,7 +3661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3699,11 +3699,11 @@ }, { "x": 475, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 440, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -3721,7 +3721,7 @@ }, { "x": 457.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -3729,7 +3729,7 @@ }, { "x": 457.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 9, @@ -3753,7 +3753,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -3774,28 +3774,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -3823,9 +3823,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -3851,7 +3851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3889,11 +3889,11 @@ }, { "x": 510, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 475, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -3911,7 +3911,7 @@ }, { "x": 492.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -3919,7 +3919,7 @@ }, { "x": 492.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 10, @@ -3943,7 +3943,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -3964,28 +3964,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -4013,9 +4013,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4041,7 +4041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4079,11 +4079,11 @@ }, { "x": 545, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 510, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -4101,7 +4101,7 @@ }, { "x": 527.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -4109,7 +4109,7 @@ }, { "x": 527.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 11, @@ -4133,7 +4133,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -4154,28 +4154,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -4203,9 +4203,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4231,7 +4231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4269,11 +4269,11 @@ }, { "x": 580, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 545, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -4291,7 +4291,7 @@ }, { "x": 562.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -4299,7 +4299,7 @@ }, { "x": 562.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 12, @@ -4323,7 +4323,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -4344,28 +4344,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -4393,9 +4393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4421,7 +4421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4459,11 +4459,11 @@ }, { "x": 615, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 580, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -4481,7 +4481,7 @@ }, { "x": 597.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -4489,7 +4489,7 @@ }, { "x": 597.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 12, @@ -4513,7 +4513,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -4534,28 +4534,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -4583,9 +4583,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4611,7 +4611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4649,11 +4649,11 @@ }, { "x": 650, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 615, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -4671,7 +4671,7 @@ }, { "x": 632.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -4679,7 +4679,7 @@ }, { "x": 632.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 13, @@ -4703,7 +4703,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -4724,28 +4724,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -4773,9 +4773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4801,7 +4801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4839,11 +4839,11 @@ }, { "x": 685, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 650, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -4861,7 +4861,7 @@ }, { "x": 667.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -4869,7 +4869,7 @@ }, { "x": 667.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 14, @@ -4893,7 +4893,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -4914,28 +4914,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -4963,9 +4963,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -4991,7 +4991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5029,11 +5029,11 @@ }, { "x": 720, - "y": 102.73575476702572 + "y": 102.73575 }, { "x": 685, - "y": 67.73575476702574 + "y": 67.73575 }, { "category": 1, @@ -5051,7 +5051,7 @@ }, { "x": 702.5, - "y": 85.23575476702572 + "y": 85.23575 }, { "x": 0, @@ -5059,7 +5059,7 @@ }, { "x": 702.5, - "y": 82.32848405199007 + "y": 82.32848 }, { "endCol": 15, @@ -5083,7 +5083,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -5104,28 +5104,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 67.73575476702574 + "y": 67.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 102.73575476702572 + "y": 102.73575 }, { "angle": 0, @@ -5153,9 +5153,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5181,7 +5181,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5219,11 +5219,11 @@ }, { "x": 125, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 90, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -5241,7 +5241,7 @@ }, { "x": 107.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -5249,7 +5249,7 @@ }, { "x": 107.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 2, @@ -5273,7 +5273,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -5294,28 +5294,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -5343,9 +5343,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5371,7 +5371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5409,11 +5409,11 @@ }, { "x": 160, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 125, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -5431,7 +5431,7 @@ }, { "x": 142.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -5439,7 +5439,7 @@ }, { "x": 142.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 3, @@ -5463,7 +5463,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -5484,28 +5484,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -5533,9 +5533,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5561,7 +5561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5599,11 +5599,11 @@ }, { "x": 195, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 160, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -5621,7 +5621,7 @@ }, { "x": 177.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -5629,7 +5629,7 @@ }, { "x": 177.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 4, @@ -5653,7 +5653,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -5674,28 +5674,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -5723,9 +5723,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5751,7 +5751,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5789,11 +5789,11 @@ }, { "x": 230, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 195, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -5811,7 +5811,7 @@ }, { "x": 212.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -5819,7 +5819,7 @@ }, { "x": 212.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 4, @@ -5843,7 +5843,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -5864,28 +5864,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -5913,9 +5913,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -5941,7 +5941,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5979,11 +5979,11 @@ }, { "x": 265, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 230, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -6001,7 +6001,7 @@ }, { "x": 247.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -6009,7 +6009,7 @@ }, { "x": 247.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 5, @@ -6033,7 +6033,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6054,28 +6054,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -6103,9 +6103,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6131,7 +6131,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6169,11 +6169,11 @@ }, { "x": 300, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 265, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -6191,7 +6191,7 @@ }, { "x": 282.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -6199,7 +6199,7 @@ }, { "x": 282.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 6, @@ -6223,7 +6223,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6244,28 +6244,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -6293,9 +6293,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6321,7 +6321,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6359,11 +6359,11 @@ }, { "x": 335, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 300, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -6381,7 +6381,7 @@ }, { "x": 317.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -6389,7 +6389,7 @@ }, { "x": 317.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 6, @@ -6413,7 +6413,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6434,28 +6434,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -6483,9 +6483,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6511,7 +6511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6549,11 +6549,11 @@ }, { "x": 370, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 335, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -6571,7 +6571,7 @@ }, { "x": 352.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -6579,7 +6579,7 @@ }, { "x": 352.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 7, @@ -6603,7 +6603,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6624,28 +6624,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -6673,9 +6673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6701,7 +6701,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6739,11 +6739,11 @@ }, { "x": 405, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 370, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -6761,7 +6761,7 @@ }, { "x": 387.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -6769,7 +6769,7 @@ }, { "x": 387.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 8, @@ -6793,7 +6793,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -6814,28 +6814,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -6863,9 +6863,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -6891,7 +6891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6929,11 +6929,11 @@ }, { "x": 440, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 405, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -6951,7 +6951,7 @@ }, { "x": 422.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -6959,7 +6959,7 @@ }, { "x": 422.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 9, @@ -6983,7 +6983,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7004,28 +7004,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -7053,9 +7053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7081,7 +7081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7119,11 +7119,11 @@ }, { "x": 475, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 440, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -7141,7 +7141,7 @@ }, { "x": 457.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -7149,7 +7149,7 @@ }, { "x": 457.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 9, @@ -7173,7 +7173,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7194,28 +7194,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -7243,9 +7243,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7271,7 +7271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7309,11 +7309,11 @@ }, { "x": 510, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 475, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -7331,7 +7331,7 @@ }, { "x": 492.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -7339,7 +7339,7 @@ }, { "x": 492.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 10, @@ -7363,7 +7363,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7384,28 +7384,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -7433,9 +7433,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7461,7 +7461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7499,11 +7499,11 @@ }, { "x": 545, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 510, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -7521,7 +7521,7 @@ }, { "x": 527.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -7529,7 +7529,7 @@ }, { "x": 527.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 11, @@ -7553,7 +7553,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7574,28 +7574,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -7623,9 +7623,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7651,7 +7651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7689,11 +7689,11 @@ }, { "x": 580, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 545, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -7711,7 +7711,7 @@ }, { "x": 562.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -7719,7 +7719,7 @@ }, { "x": 562.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 12, @@ -7743,7 +7743,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7764,28 +7764,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -7813,9 +7813,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -7841,7 +7841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7879,11 +7879,11 @@ }, { "x": 615, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 580, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -7901,7 +7901,7 @@ }, { "x": 597.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -7909,7 +7909,7 @@ }, { "x": 597.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 12, @@ -7933,7 +7933,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -7954,28 +7954,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -8003,9 +8003,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8031,7 +8031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8069,11 +8069,11 @@ }, { "x": 650, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 615, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -8091,7 +8091,7 @@ }, { "x": 632.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -8099,7 +8099,7 @@ }, { "x": 632.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 13, @@ -8123,7 +8123,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -8144,28 +8144,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -8193,9 +8193,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8221,7 +8221,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8259,11 +8259,11 @@ }, { "x": 685, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 650, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -8281,7 +8281,7 @@ }, { "x": 667.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -8289,7 +8289,7 @@ }, { "x": 667.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 14, @@ -8313,7 +8313,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -8334,28 +8334,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -8383,9 +8383,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8411,7 +8411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035644, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8449,11 +8449,11 @@ }, { "x": 720, - "y": 137.73575476702572 + "y": 137.73575 }, { "x": 685, - "y": 102.73575476702572 + "y": 102.73575 }, { "category": 1, @@ -8471,7 +8471,7 @@ }, { "x": 702.5, - "y": 120.23575476702572 + "y": 120.23575 }, { "x": 0, @@ -8479,7 +8479,7 @@ }, { "x": 702.5, - "y": 117.32848405199007 + "y": 117.32848 }, { "endCol": 15, @@ -8503,7 +8503,7 @@ }, { "x": 0, - "y": 2.907270715035644 + "y": 2.90727 }, [ { @@ -8524,28 +8524,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 102.73575476702572 + "y": 102.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 137.73575476702572 + "y": 137.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 137.73575476702572 + "y": 137.73575 }, { "angle": 0, @@ -8573,9 +8573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8601,7 +8601,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8639,11 +8639,11 @@ }, { "x": 125, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 90, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -8661,7 +8661,7 @@ }, { "x": 107.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -8669,7 +8669,7 @@ }, { "x": 107.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 2, @@ -8693,7 +8693,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8714,28 +8714,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -8763,9 +8763,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8791,7 +8791,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8829,11 +8829,11 @@ }, { "x": 160, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 125, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -8851,7 +8851,7 @@ }, { "x": 142.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -8859,7 +8859,7 @@ }, { "x": 142.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 3, @@ -8883,7 +8883,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8904,28 +8904,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -8953,9 +8953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -8981,7 +8981,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9019,11 +9019,11 @@ }, { "x": 195, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 160, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -9041,7 +9041,7 @@ }, { "x": 177.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -9049,7 +9049,7 @@ }, { "x": 177.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 4, @@ -9073,7 +9073,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9094,28 +9094,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -9143,9 +9143,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9171,7 +9171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9209,11 +9209,11 @@ }, { "x": 230, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 195, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -9231,7 +9231,7 @@ }, { "x": 212.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -9239,7 +9239,7 @@ }, { "x": 212.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 4, @@ -9263,7 +9263,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9284,28 +9284,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -9333,9 +9333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9361,7 +9361,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9399,11 +9399,11 @@ }, { "x": 265, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 230, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -9421,7 +9421,7 @@ }, { "x": 247.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -9429,7 +9429,7 @@ }, { "x": 247.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 5, @@ -9453,7 +9453,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9474,28 +9474,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -9523,9 +9523,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9551,7 +9551,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9589,11 +9589,11 @@ }, { "x": 300, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 265, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -9611,7 +9611,7 @@ }, { "x": 282.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -9619,7 +9619,7 @@ }, { "x": 282.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 6, @@ -9643,7 +9643,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9664,28 +9664,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -9713,9 +9713,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9741,7 +9741,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9779,11 +9779,11 @@ }, { "x": 335, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 300, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -9801,7 +9801,7 @@ }, { "x": 317.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -9809,7 +9809,7 @@ }, { "x": 317.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 6, @@ -9833,7 +9833,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9854,28 +9854,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -9903,9 +9903,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -9931,7 +9931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9969,11 +9969,11 @@ }, { "x": 370, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 335, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -9991,7 +9991,7 @@ }, { "x": 352.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -9999,7 +9999,7 @@ }, { "x": 352.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 7, @@ -10023,7 +10023,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10044,28 +10044,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -10093,9 +10093,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10121,7 +10121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10159,11 +10159,11 @@ }, { "x": 405, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 370, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -10181,7 +10181,7 @@ }, { "x": 387.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -10189,7 +10189,7 @@ }, { "x": 387.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 8, @@ -10213,7 +10213,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10234,28 +10234,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -10283,9 +10283,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10311,7 +10311,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10349,11 +10349,11 @@ }, { "x": 440, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 405, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -10371,7 +10371,7 @@ }, { "x": 422.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -10379,7 +10379,7 @@ }, { "x": 422.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 9, @@ -10403,7 +10403,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10424,28 +10424,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -10473,9 +10473,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10501,7 +10501,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10539,11 +10539,11 @@ }, { "x": 475, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 440, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -10561,7 +10561,7 @@ }, { "x": 457.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -10569,7 +10569,7 @@ }, { "x": 457.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 9, @@ -10593,7 +10593,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10614,28 +10614,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -10663,9 +10663,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10691,7 +10691,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10729,11 +10729,11 @@ }, { "x": 510, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 475, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -10751,7 +10751,7 @@ }, { "x": 492.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -10759,7 +10759,7 @@ }, { "x": 492.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 10, @@ -10783,7 +10783,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10804,28 +10804,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -10853,9 +10853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -10881,7 +10881,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10919,11 +10919,11 @@ }, { "x": 545, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 510, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -10941,7 +10941,7 @@ }, { "x": 527.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -10949,7 +10949,7 @@ }, { "x": 527.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 11, @@ -10973,7 +10973,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10994,28 +10994,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -11043,9 +11043,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11071,7 +11071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11109,11 +11109,11 @@ }, { "x": 580, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 545, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -11131,7 +11131,7 @@ }, { "x": 562.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -11139,7 +11139,7 @@ }, { "x": 562.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 12, @@ -11163,7 +11163,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11184,28 +11184,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -11233,9 +11233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11261,7 +11261,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11299,11 +11299,11 @@ }, { "x": 615, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 580, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -11321,7 +11321,7 @@ }, { "x": 597.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -11329,7 +11329,7 @@ }, { "x": 597.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 12, @@ -11353,7 +11353,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11374,28 +11374,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -11423,9 +11423,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11451,7 +11451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11489,11 +11489,11 @@ }, { "x": 650, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 615, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -11511,7 +11511,7 @@ }, { "x": 632.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -11519,7 +11519,7 @@ }, { "x": 632.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 13, @@ -11543,7 +11543,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11564,28 +11564,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -11613,9 +11613,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11641,7 +11641,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11679,11 +11679,11 @@ }, { "x": 685, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 650, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -11701,7 +11701,7 @@ }, { "x": 667.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -11709,7 +11709,7 @@ }, { "x": 667.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 14, @@ -11733,7 +11733,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11754,28 +11754,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -11803,9 +11803,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -11831,7 +11831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11869,11 +11869,11 @@ }, { "x": 720, - "y": 172.73575476702598 + "y": 172.73575 }, { "x": 685, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -11891,7 +11891,7 @@ }, { "x": 702.5, - "y": 155.23575476702598 + "y": 155.23575 }, { "x": 0, @@ -11899,7 +11899,7 @@ }, { "x": 702.5, - "y": 152.3284840519903 + "y": 152.32848 }, { "endCol": 15, @@ -11923,7 +11923,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11944,28 +11944,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 172.73575476702598 + "y": 172.73575 }, { "angle": 0, @@ -11993,9 +11993,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12021,7 +12021,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12059,11 +12059,11 @@ }, { "x": 125, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 90, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -12081,7 +12081,7 @@ }, { "x": 107.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -12089,7 +12089,7 @@ }, { "x": 107.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 2, @@ -12113,7 +12113,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12134,28 +12134,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -12183,9 +12183,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12211,7 +12211,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12249,11 +12249,11 @@ }, { "x": 160, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 125, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -12271,7 +12271,7 @@ }, { "x": 142.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -12279,7 +12279,7 @@ }, { "x": 142.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 3, @@ -12303,7 +12303,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12324,28 +12324,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -12373,9 +12373,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12401,7 +12401,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12439,11 +12439,11 @@ }, { "x": 195, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 160, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -12461,7 +12461,7 @@ }, { "x": 177.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -12469,7 +12469,7 @@ }, { "x": 177.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 4, @@ -12493,7 +12493,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12514,28 +12514,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -12563,9 +12563,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12591,7 +12591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12629,11 +12629,11 @@ }, { "x": 230, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 195, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -12651,7 +12651,7 @@ }, { "x": 212.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -12659,7 +12659,7 @@ }, { "x": 212.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 4, @@ -12683,7 +12683,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12704,28 +12704,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -12753,9 +12753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12781,7 +12781,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12819,11 +12819,11 @@ }, { "x": 265, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 230, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -12841,7 +12841,7 @@ }, { "x": 247.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -12849,7 +12849,7 @@ }, { "x": 247.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 5, @@ -12873,7 +12873,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12894,28 +12894,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -12943,9 +12943,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -12971,7 +12971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13009,11 +13009,11 @@ }, { "x": 300, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 265, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -13031,7 +13031,7 @@ }, { "x": 282.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -13039,7 +13039,7 @@ }, { "x": 282.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 6, @@ -13063,7 +13063,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13084,28 +13084,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -13133,9 +13133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13161,7 +13161,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13199,11 +13199,11 @@ }, { "x": 335, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 300, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -13221,7 +13221,7 @@ }, { "x": 317.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -13229,7 +13229,7 @@ }, { "x": 317.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 6, @@ -13253,7 +13253,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13274,28 +13274,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -13323,9 +13323,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13351,7 +13351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13389,11 +13389,11 @@ }, { "x": 370, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 335, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -13411,7 +13411,7 @@ }, { "x": 352.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -13419,7 +13419,7 @@ }, { "x": 352.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 7, @@ -13443,7 +13443,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13464,28 +13464,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -13513,9 +13513,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13541,7 +13541,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13579,11 +13579,11 @@ }, { "x": 405, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 370, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -13601,7 +13601,7 @@ }, { "x": 387.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -13609,7 +13609,7 @@ }, { "x": 387.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 8, @@ -13633,7 +13633,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13654,28 +13654,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -13703,9 +13703,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13731,7 +13731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13769,11 +13769,11 @@ }, { "x": 440, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 405, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -13791,7 +13791,7 @@ }, { "x": 422.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -13799,7 +13799,7 @@ }, { "x": 422.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 9, @@ -13823,7 +13823,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13844,28 +13844,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -13893,9 +13893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -13921,7 +13921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13959,11 +13959,11 @@ }, { "x": 475, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 440, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -13981,7 +13981,7 @@ }, { "x": 457.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -13989,7 +13989,7 @@ }, { "x": 457.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 9, @@ -14013,7 +14013,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14034,28 +14034,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -14083,9 +14083,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14111,7 +14111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14149,11 +14149,11 @@ }, { "x": 510, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 475, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -14171,7 +14171,7 @@ }, { "x": 492.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -14179,7 +14179,7 @@ }, { "x": 492.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 10, @@ -14203,7 +14203,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14224,28 +14224,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -14273,9 +14273,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14301,7 +14301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14339,11 +14339,11 @@ }, { "x": 545, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 510, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -14361,7 +14361,7 @@ }, { "x": 527.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -14369,7 +14369,7 @@ }, { "x": 527.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 11, @@ -14393,7 +14393,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14414,28 +14414,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -14463,9 +14463,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14491,7 +14491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14529,11 +14529,11 @@ }, { "x": 580, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 545, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -14551,7 +14551,7 @@ }, { "x": 562.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -14559,7 +14559,7 @@ }, { "x": 562.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 12, @@ -14583,7 +14583,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14604,28 +14604,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -14653,9 +14653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14681,7 +14681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14719,11 +14719,11 @@ }, { "x": 615, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 580, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -14741,7 +14741,7 @@ }, { "x": 597.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -14749,7 +14749,7 @@ }, { "x": 597.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 12, @@ -14773,7 +14773,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14794,28 +14794,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -14843,9 +14843,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -14871,7 +14871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14909,11 +14909,11 @@ }, { "x": 650, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 615, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -14931,7 +14931,7 @@ }, { "x": 632.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -14939,7 +14939,7 @@ }, { "x": 632.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 13, @@ -14963,7 +14963,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14984,28 +14984,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -15033,9 +15033,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15061,7 +15061,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15099,11 +15099,11 @@ }, { "x": 685, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 650, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -15121,7 +15121,7 @@ }, { "x": 667.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -15129,7 +15129,7 @@ }, { "x": 667.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 14, @@ -15153,7 +15153,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15174,28 +15174,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -15223,9 +15223,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15251,7 +15251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15289,11 +15289,11 @@ }, { "x": 720, - "y": 207.73575476702598 + "y": 207.73575 }, { "x": 685, - "y": 172.73575476702598 + "y": 172.73575 }, { "category": 1, @@ -15311,7 +15311,7 @@ }, { "x": 702.5, - "y": 190.23575476702598 + "y": 190.23575 }, { "x": 0, @@ -15319,7 +15319,7 @@ }, { "x": 702.5, - "y": 187.3284840519903 + "y": 187.32848 }, { "endCol": 15, @@ -15343,7 +15343,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15364,28 +15364,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 172.73575476702598 + "y": 172.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 207.73575476702598 + "y": 207.73575 }, { "angle": 0, @@ -15413,9 +15413,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15441,7 +15441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15479,11 +15479,11 @@ }, { "x": 125, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 90, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -15501,7 +15501,7 @@ }, { "x": 107.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -15509,7 +15509,7 @@ }, { "x": 107.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 2, @@ -15533,7 +15533,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15554,28 +15554,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -15603,9 +15603,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15631,7 +15631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15669,11 +15669,11 @@ }, { "x": 160, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 125, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -15691,7 +15691,7 @@ }, { "x": 142.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -15699,7 +15699,7 @@ }, { "x": 142.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 3, @@ -15723,7 +15723,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15744,28 +15744,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -15793,9 +15793,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -15821,7 +15821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15859,11 +15859,11 @@ }, { "x": 195, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 160, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -15881,7 +15881,7 @@ }, { "x": 177.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -15889,7 +15889,7 @@ }, { "x": 177.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 4, @@ -15913,7 +15913,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15934,28 +15934,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -15983,9 +15983,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16011,7 +16011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16049,11 +16049,11 @@ }, { "x": 230, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 195, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -16071,7 +16071,7 @@ }, { "x": 212.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -16079,7 +16079,7 @@ }, { "x": 212.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 4, @@ -16103,7 +16103,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16124,28 +16124,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -16173,9 +16173,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16201,7 +16201,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16239,11 +16239,11 @@ }, { "x": 265, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 230, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -16261,7 +16261,7 @@ }, { "x": 247.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -16269,7 +16269,7 @@ }, { "x": 247.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 5, @@ -16293,7 +16293,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16314,28 +16314,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -16363,9 +16363,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16391,7 +16391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16429,11 +16429,11 @@ }, { "x": 300, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 265, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -16451,7 +16451,7 @@ }, { "x": 282.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -16459,7 +16459,7 @@ }, { "x": 282.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 6, @@ -16483,7 +16483,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16504,28 +16504,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -16553,9 +16553,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16581,7 +16581,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16619,11 +16619,11 @@ }, { "x": 335, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 300, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -16641,7 +16641,7 @@ }, { "x": 317.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -16649,7 +16649,7 @@ }, { "x": 317.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 6, @@ -16673,7 +16673,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16694,28 +16694,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -16743,9 +16743,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16771,7 +16771,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16809,11 +16809,11 @@ }, { "x": 370, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 335, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -16831,7 +16831,7 @@ }, { "x": 352.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -16839,7 +16839,7 @@ }, { "x": 352.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 7, @@ -16863,7 +16863,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16884,28 +16884,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -16933,9 +16933,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -16961,7 +16961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16999,11 +16999,11 @@ }, { "x": 405, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 370, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -17021,7 +17021,7 @@ }, { "x": 387.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17029,7 +17029,7 @@ }, { "x": 387.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 8, @@ -17053,7 +17053,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17074,28 +17074,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -17123,9 +17123,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17151,7 +17151,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17189,11 +17189,11 @@ }, { "x": 440, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 405, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -17211,7 +17211,7 @@ }, { "x": 422.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17219,7 +17219,7 @@ }, { "x": 422.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 9, @@ -17243,7 +17243,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17264,28 +17264,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -17313,9 +17313,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17341,7 +17341,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17379,11 +17379,11 @@ }, { "x": 475, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 440, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -17401,7 +17401,7 @@ }, { "x": 457.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17409,7 +17409,7 @@ }, { "x": 457.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 9, @@ -17433,7 +17433,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17454,28 +17454,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -17503,9 +17503,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17531,7 +17531,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17569,11 +17569,11 @@ }, { "x": 510, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 475, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -17591,7 +17591,7 @@ }, { "x": 492.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17599,7 +17599,7 @@ }, { "x": 492.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 10, @@ -17623,7 +17623,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17644,28 +17644,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -17693,9 +17693,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17721,7 +17721,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17759,11 +17759,11 @@ }, { "x": 545, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 510, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -17781,7 +17781,7 @@ }, { "x": 527.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17789,7 +17789,7 @@ }, { "x": 527.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 11, @@ -17813,7 +17813,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17834,28 +17834,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -17883,9 +17883,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -17911,7 +17911,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17949,11 +17949,11 @@ }, { "x": 580, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 545, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -17971,7 +17971,7 @@ }, { "x": 562.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17979,7 +17979,7 @@ }, { "x": 562.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 12, @@ -18003,7 +18003,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18024,28 +18024,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -18073,9 +18073,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18101,7 +18101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18139,11 +18139,11 @@ }, { "x": 615, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 580, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -18161,7 +18161,7 @@ }, { "x": 597.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18169,7 +18169,7 @@ }, { "x": 597.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 12, @@ -18193,7 +18193,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18214,28 +18214,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -18263,9 +18263,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18291,7 +18291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18329,11 +18329,11 @@ }, { "x": 650, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 615, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -18351,7 +18351,7 @@ }, { "x": 632.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18359,7 +18359,7 @@ }, { "x": 632.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 13, @@ -18383,7 +18383,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18404,28 +18404,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -18453,9 +18453,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18481,7 +18481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18519,11 +18519,11 @@ }, { "x": 685, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 650, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -18541,7 +18541,7 @@ }, { "x": 667.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18549,7 +18549,7 @@ }, { "x": 667.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 14, @@ -18573,7 +18573,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18594,28 +18594,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -18643,9 +18643,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18671,7 +18671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18709,11 +18709,11 @@ }, { "x": 720, - "y": 242.73575476702598 + "y": 242.73575 }, { "x": 685, - "y": 207.73575476702598 + "y": 207.73575 }, { "category": 1, @@ -18731,7 +18731,7 @@ }, { "x": 702.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18739,7 +18739,7 @@ }, { "x": 702.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 15, @@ -18763,7 +18763,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18784,28 +18784,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 207.73575476702598 + "y": 207.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 242.73575476702598 + "y": 242.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 242.73575476702598 + "y": 242.73575 }, { "angle": 0, @@ -18833,9 +18833,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -18861,7 +18861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18899,11 +18899,11 @@ }, { "x": 125, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 90, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -18921,15 +18921,15 @@ }, { "x": 107.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 107.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 2, @@ -18953,7 +18953,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -18974,28 +18974,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -19023,9 +19023,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19051,7 +19051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19089,11 +19089,11 @@ }, { "x": 160, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 125, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -19111,15 +19111,15 @@ }, { "x": 142.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 142.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 3, @@ -19143,7 +19143,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -19164,28 +19164,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -19213,9 +19213,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19241,7 +19241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19279,11 +19279,11 @@ }, { "x": 195, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 160, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -19301,15 +19301,15 @@ }, { "x": 177.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 177.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 4, @@ -19333,7 +19333,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -19354,28 +19354,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -19403,9 +19403,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19431,7 +19431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19469,11 +19469,11 @@ }, { "x": 230, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 195, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -19491,15 +19491,15 @@ }, { "x": 212.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 212.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 4, @@ -19523,7 +19523,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -19544,28 +19544,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -19593,9 +19593,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19621,7 +19621,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19659,11 +19659,11 @@ }, { "x": 265, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 230, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -19681,15 +19681,15 @@ }, { "x": 247.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 247.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 5, @@ -19713,7 +19713,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -19734,28 +19734,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -19783,9 +19783,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -19811,7 +19811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19849,11 +19849,11 @@ }, { "x": 300, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 265, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -19871,15 +19871,15 @@ }, { "x": 282.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 282.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 6, @@ -19903,7 +19903,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -19924,28 +19924,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -19973,9 +19973,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20001,7 +20001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20039,11 +20039,11 @@ }, { "x": 335, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 300, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -20061,15 +20061,15 @@ }, { "x": 317.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 317.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 6, @@ -20093,7 +20093,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -20114,28 +20114,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -20163,9 +20163,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20191,7 +20191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20229,11 +20229,11 @@ }, { "x": 370, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 335, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -20251,15 +20251,15 @@ }, { "x": 352.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 352.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 7, @@ -20283,7 +20283,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -20304,28 +20304,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -20353,9 +20353,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20381,7 +20381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20419,11 +20419,11 @@ }, { "x": 405, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 370, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -20441,15 +20441,15 @@ }, { "x": 387.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 387.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 8, @@ -20473,7 +20473,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -20494,28 +20494,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -20543,9 +20543,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20571,7 +20571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20609,11 +20609,11 @@ }, { "x": 440, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 405, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -20631,15 +20631,15 @@ }, { "x": 422.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 422.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 9, @@ -20663,7 +20663,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -20684,28 +20684,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -20733,9 +20733,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 105, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20761,7 +20761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20799,11 +20799,11 @@ }, { "x": 475, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 440, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -20821,15 +20821,15 @@ }, { "x": 457.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 457.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 9, @@ -20853,7 +20853,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -20874,28 +20874,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -20923,9 +20923,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 106, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -20951,7 +20951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20989,11 +20989,11 @@ }, { "x": 510, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 475, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -21011,15 +21011,15 @@ }, { "x": 492.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 492.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 10, @@ -21043,7 +21043,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21064,28 +21064,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -21113,9 +21113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 107, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21141,7 +21141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21179,11 +21179,11 @@ }, { "x": 545, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 510, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -21201,15 +21201,15 @@ }, { "x": 527.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 527.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 11, @@ -21233,7 +21233,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21254,28 +21254,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -21303,9 +21303,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 108, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21331,7 +21331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21369,11 +21369,11 @@ }, { "x": 580, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 545, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -21391,15 +21391,15 @@ }, { "x": 562.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 562.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 12, @@ -21423,7 +21423,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21444,28 +21444,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -21493,9 +21493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21521,7 +21521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21559,11 +21559,11 @@ }, { "x": 615, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 580, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -21581,15 +21581,15 @@ }, { "x": 597.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 597.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 12, @@ -21613,7 +21613,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21634,28 +21634,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -21683,9 +21683,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 110, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21711,7 +21711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21749,11 +21749,11 @@ }, { "x": 650, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 615, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -21771,15 +21771,15 @@ }, { "x": 632.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 632.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 13, @@ -21803,7 +21803,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21824,28 +21824,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -21873,9 +21873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 111, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -21901,7 +21901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21939,11 +21939,11 @@ }, { "x": 685, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 650, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -21961,15 +21961,15 @@ }, { "x": 667.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 667.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 14, @@ -21993,7 +21993,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -22014,28 +22014,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -22063,9 +22063,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 112, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22091,7 +22091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22129,11 +22129,11 @@ }, { "x": 720, - "y": 280.7328489595171 + "y": 280.73285 }, { "x": 685, - "y": 242.8255782444816 + "y": 242.82558 }, { "category": 1, @@ -22151,15 +22151,15 @@ }, { "x": 702.5, - "y": 260.3255782444816 + "y": 260.32558 }, { "x": 0, - "y": 0.004360634609635663 + "y": 0.00436 }, { "x": 702.5, - "y": 257.418307529446 + "y": 257.41831 }, { "endCol": 15, @@ -22183,7 +22183,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -22204,28 +22204,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 242.8255782444816 + "y": 242.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 277.8255782444815 + "y": 277.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 277.8255782444815 + "y": 277.82558 }, { "angle": 0, @@ -22253,9 +22253,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 113, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22281,7 +22281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22319,11 +22319,11 @@ }, { "x": 125, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 90, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -22341,15 +22341,15 @@ }, { "x": 107.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 107.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 2, @@ -22373,7 +22373,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -22394,28 +22394,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -22443,9 +22443,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 114, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22471,7 +22471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22509,11 +22509,11 @@ }, { "x": 160, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 125, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -22531,15 +22531,15 @@ }, { "x": 142.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 142.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 3, @@ -22563,7 +22563,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -22584,28 +22584,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -22633,9 +22633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22661,7 +22661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22699,11 +22699,11 @@ }, { "x": 195, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 160, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -22721,15 +22721,15 @@ }, { "x": 177.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 177.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 4, @@ -22753,7 +22753,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -22774,28 +22774,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -22823,9 +22823,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 116, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -22851,7 +22851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22889,11 +22889,11 @@ }, { "x": 230, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 195, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -22911,15 +22911,15 @@ }, { "x": 212.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 212.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 4, @@ -22943,7 +22943,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -22964,28 +22964,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -23013,9 +23013,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 117, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23041,7 +23041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23079,11 +23079,11 @@ }, { "x": 265, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 230, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -23101,15 +23101,15 @@ }, { "x": 247.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 247.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 5, @@ -23133,7 +23133,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -23154,28 +23154,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -23203,9 +23203,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23231,7 +23231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23269,11 +23269,11 @@ }, { "x": 300, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 265, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -23291,15 +23291,15 @@ }, { "x": 282.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 282.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 6, @@ -23323,7 +23323,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -23344,28 +23344,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -23393,9 +23393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 119, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23421,7 +23421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23459,11 +23459,11 @@ }, { "x": 335, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 300, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -23481,15 +23481,15 @@ }, { "x": 317.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 317.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 6, @@ -23513,7 +23513,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -23534,28 +23534,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -23583,9 +23583,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 120, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23611,7 +23611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23649,11 +23649,11 @@ }, { "x": 370, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 335, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -23671,15 +23671,15 @@ }, { "x": 352.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 352.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 7, @@ -23703,7 +23703,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -23724,28 +23724,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -23773,9 +23773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 121, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23801,7 +23801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23839,11 +23839,11 @@ }, { "x": 405, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 370, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -23861,15 +23861,15 @@ }, { "x": 387.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 387.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 8, @@ -23893,7 +23893,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -23914,28 +23914,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -23963,9 +23963,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 122, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -23991,7 +23991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24029,11 +24029,11 @@ }, { "x": 440, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 405, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -24051,15 +24051,15 @@ }, { "x": 422.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 422.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 9, @@ -24083,7 +24083,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -24104,28 +24104,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -24153,9 +24153,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 123, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24181,7 +24181,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24219,11 +24219,11 @@ }, { "x": 475, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 440, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -24241,15 +24241,15 @@ }, { "x": 457.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 457.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 9, @@ -24273,7 +24273,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -24294,28 +24294,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -24343,9 +24343,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 124, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24371,7 +24371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24409,11 +24409,11 @@ }, { "x": 510, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 475, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -24431,15 +24431,15 @@ }, { "x": 492.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 492.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 10, @@ -24463,7 +24463,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -24484,28 +24484,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -24533,9 +24533,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 125, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24561,7 +24561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24599,11 +24599,11 @@ }, { "x": 545, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 510, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -24621,15 +24621,15 @@ }, { "x": 527.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 527.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 11, @@ -24653,7 +24653,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -24674,28 +24674,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -24723,9 +24723,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 126, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24751,7 +24751,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24789,11 +24789,11 @@ }, { "x": 580, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 545, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -24811,15 +24811,15 @@ }, { "x": 562.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 562.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 12, @@ -24843,7 +24843,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -24864,28 +24864,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -24913,9 +24913,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 127, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -24941,7 +24941,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24979,11 +24979,11 @@ }, { "x": 615, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 580, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -25001,15 +25001,15 @@ }, { "x": 597.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 597.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 12, @@ -25033,7 +25033,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -25054,28 +25054,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -25103,9 +25103,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 128, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25131,7 +25131,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25169,11 +25169,11 @@ }, { "x": 650, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 615, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -25191,15 +25191,15 @@ }, { "x": 632.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 632.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 13, @@ -25223,7 +25223,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -25244,28 +25244,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -25293,9 +25293,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 129, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25321,7 +25321,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25359,11 +25359,11 @@ }, { "x": 685, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 650, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -25381,15 +25381,15 @@ }, { "x": 667.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 667.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 14, @@ -25413,7 +25413,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -25434,28 +25434,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -25483,9 +25483,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 130, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25511,7 +25511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25549,11 +25549,11 @@ }, { "x": 720, - "y": 315.682851035186 + "y": 315.68285 }, { "x": 685, - "y": 277.7755803201503 + "y": 277.77558 }, { "category": 1, @@ -25571,15 +25571,15 @@ }, { "x": 702.5, - "y": 295.2755803201503 + "y": 295.27558 }, { "x": 0, - "y": 0.004377931191933044 + "y": 0.00438 }, { "x": 702.5, - "y": 292.36830960511463 + "y": 292.36831 }, { "endCol": 15, @@ -25603,7 +25603,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -25624,28 +25624,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 277.7755803201503 + "y": 277.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 312.7755803201503 + "y": 312.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 312.7755803201503 + "y": 312.77558 }, { "angle": 0, @@ -25673,9 +25673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 131, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25701,7 +25701,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25739,11 +25739,11 @@ }, { "x": 125, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 90, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -25761,15 +25761,15 @@ }, { "x": 107.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 107.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 2, @@ -25793,7 +25793,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -25814,28 +25814,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -25863,9 +25863,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 132, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -25891,7 +25891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25929,11 +25929,11 @@ }, { "x": 160, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 125, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -25951,15 +25951,15 @@ }, { "x": 142.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 142.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 3, @@ -25983,7 +25983,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26004,28 +26004,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -26053,9 +26053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 133, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26081,7 +26081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26119,11 +26119,11 @@ }, { "x": 195, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 160, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -26141,15 +26141,15 @@ }, { "x": 177.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 177.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 4, @@ -26173,7 +26173,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26194,28 +26194,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -26243,9 +26243,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 134, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26271,7 +26271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26309,11 +26309,11 @@ }, { "x": 230, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 195, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -26331,15 +26331,15 @@ }, { "x": 212.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 212.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 4, @@ -26363,7 +26363,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26384,28 +26384,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -26433,9 +26433,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 135, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26461,7 +26461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26499,11 +26499,11 @@ }, { "x": 265, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 230, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -26521,15 +26521,15 @@ }, { "x": 247.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 247.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 5, @@ -26553,7 +26553,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26574,28 +26574,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -26623,9 +26623,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 136, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26651,7 +26651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26689,11 +26689,11 @@ }, { "x": 300, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 265, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -26711,15 +26711,15 @@ }, { "x": 282.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 282.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 6, @@ -26743,7 +26743,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26764,28 +26764,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -26813,9 +26813,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 137, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -26841,7 +26841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26879,11 +26879,11 @@ }, { "x": 335, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 300, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -26901,15 +26901,15 @@ }, { "x": 317.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 317.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 6, @@ -26933,7 +26933,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26954,28 +26954,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -27003,9 +27003,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 138, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27031,7 +27031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27069,11 +27069,11 @@ }, { "x": 370, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 335, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -27091,15 +27091,15 @@ }, { "x": 352.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 352.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 7, @@ -27123,7 +27123,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27144,28 +27144,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -27193,9 +27193,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 139, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27221,7 +27221,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27259,11 +27259,11 @@ }, { "x": 405, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 370, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -27281,15 +27281,15 @@ }, { "x": 387.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 387.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 8, @@ -27313,7 +27313,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27334,28 +27334,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -27383,9 +27383,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 140, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27411,7 +27411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27449,11 +27449,11 @@ }, { "x": 440, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 405, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -27471,15 +27471,15 @@ }, { "x": 422.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 422.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 9, @@ -27503,7 +27503,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27524,28 +27524,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -27573,9 +27573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 141, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27601,7 +27601,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27639,11 +27639,11 @@ }, { "x": 475, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 440, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -27661,15 +27661,15 @@ }, { "x": 457.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 457.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 9, @@ -27693,7 +27693,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27714,28 +27714,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -27763,9 +27763,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 142, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27791,7 +27791,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27829,11 +27829,11 @@ }, { "x": 510, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 475, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -27851,15 +27851,15 @@ }, { "x": 492.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 492.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 10, @@ -27883,7 +27883,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27904,28 +27904,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -27953,9 +27953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 143, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -27981,7 +27981,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28019,11 +28019,11 @@ }, { "x": 545, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 510, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -28041,15 +28041,15 @@ }, { "x": 527.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 527.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 11, @@ -28073,7 +28073,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28094,28 +28094,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -28143,9 +28143,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 144, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28171,7 +28171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28209,11 +28209,11 @@ }, { "x": 580, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 545, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -28231,15 +28231,15 @@ }, { "x": 562.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 562.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 12, @@ -28263,7 +28263,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28284,28 +28284,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -28333,9 +28333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 145, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28361,7 +28361,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28399,11 +28399,11 @@ }, { "x": 615, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 580, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -28421,15 +28421,15 @@ }, { "x": 597.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 597.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 12, @@ -28453,7 +28453,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28474,28 +28474,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -28523,9 +28523,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 146, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28551,7 +28551,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28589,11 +28589,11 @@ }, { "x": 650, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 615, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -28611,15 +28611,15 @@ }, { "x": 632.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 632.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 13, @@ -28643,7 +28643,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28664,28 +28664,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -28713,9 +28713,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 147, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28741,7 +28741,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28779,11 +28779,11 @@ }, { "x": 685, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 650, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -28801,15 +28801,15 @@ }, { "x": 667.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 667.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 14, @@ -28833,7 +28833,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28854,28 +28854,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -28903,9 +28903,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 148, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -28931,7 +28931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28969,11 +28969,11 @@ }, { "x": 720, - "y": 350.6328531108548 + "y": 350.63285 }, { "x": 685, - "y": 312.7255823958191 + "y": 312.72558 }, { "category": 1, @@ -28991,15 +28991,15 @@ }, { "x": 702.5, - "y": 330.2255823958191 + "y": 330.22558 }, { "x": 0, - "y": 0.004395227774355194 + "y": 0.0044 }, { "x": 702.5, - "y": 327.31831168078344 + "y": 327.31831 }, { "endCol": 15, @@ -29023,7 +29023,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -29044,28 +29044,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 347.7255823958191 + "y": 347.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 347.7255823958191 + "y": 347.72558 }, { "angle": 0, @@ -29093,9 +29093,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 149, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29121,7 +29121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29159,11 +29159,11 @@ }, { "x": 125, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 90, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -29181,7 +29181,7 @@ }, { "x": 107.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -29189,7 +29189,7 @@ }, { "x": 107.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 2, @@ -29213,7 +29213,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -29234,28 +29234,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -29283,9 +29283,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 150, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29311,7 +29311,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29349,11 +29349,11 @@ }, { "x": 160, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 125, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -29371,7 +29371,7 @@ }, { "x": 142.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -29379,7 +29379,7 @@ }, { "x": 142.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 3, @@ -29403,7 +29403,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -29424,28 +29424,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -29473,9 +29473,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 151, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29501,7 +29501,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29539,11 +29539,11 @@ }, { "x": 195, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 160, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -29561,7 +29561,7 @@ }, { "x": 177.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -29569,7 +29569,7 @@ }, { "x": 177.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 4, @@ -29593,7 +29593,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -29614,28 +29614,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -29663,9 +29663,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 152, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29691,7 +29691,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29729,11 +29729,11 @@ }, { "x": 230, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 195, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -29751,7 +29751,7 @@ }, { "x": 212.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -29759,7 +29759,7 @@ }, { "x": 212.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 4, @@ -29783,7 +29783,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -29804,28 +29804,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -29853,9 +29853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 153, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -29881,7 +29881,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29919,11 +29919,11 @@ }, { "x": 265, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 230, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -29941,7 +29941,7 @@ }, { "x": 247.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -29949,7 +29949,7 @@ }, { "x": 247.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 5, @@ -29973,7 +29973,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -29994,28 +29994,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -30043,9 +30043,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 154, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30071,7 +30071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30109,11 +30109,11 @@ }, { "x": 300, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 265, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -30131,7 +30131,7 @@ }, { "x": 282.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -30139,7 +30139,7 @@ }, { "x": 282.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 6, @@ -30163,7 +30163,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -30184,28 +30184,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -30233,9 +30233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 155, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30261,7 +30261,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30299,11 +30299,11 @@ }, { "x": 335, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 300, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -30321,7 +30321,7 @@ }, { "x": 317.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -30329,7 +30329,7 @@ }, { "x": 317.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 6, @@ -30353,7 +30353,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -30374,28 +30374,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -30423,9 +30423,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 156, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30451,7 +30451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30489,11 +30489,11 @@ }, { "x": 370, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 335, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -30511,7 +30511,7 @@ }, { "x": 352.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -30519,7 +30519,7 @@ }, { "x": 352.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 7, @@ -30543,7 +30543,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -30564,28 +30564,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -30613,9 +30613,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 157, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30641,7 +30641,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30679,11 +30679,11 @@ }, { "x": 405, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 370, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -30701,7 +30701,7 @@ }, { "x": 387.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -30709,7 +30709,7 @@ }, { "x": 387.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 8, @@ -30733,7 +30733,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -30754,28 +30754,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -30803,9 +30803,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 158, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -30831,7 +30831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30869,11 +30869,11 @@ }, { "x": 440, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 405, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -30891,7 +30891,7 @@ }, { "x": 422.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -30899,7 +30899,7 @@ }, { "x": 422.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 9, @@ -30923,7 +30923,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -30944,28 +30944,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -30993,9 +30993,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 159, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31021,7 +31021,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31059,11 +31059,11 @@ }, { "x": 475, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 440, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -31081,7 +31081,7 @@ }, { "x": 457.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -31089,7 +31089,7 @@ }, { "x": 457.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 9, @@ -31113,7 +31113,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -31134,28 +31134,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -31183,9 +31183,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 160, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31211,7 +31211,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31249,11 +31249,11 @@ }, { "x": 510, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 475, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -31271,7 +31271,7 @@ }, { "x": 492.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -31279,7 +31279,7 @@ }, { "x": 492.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 10, @@ -31303,7 +31303,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -31324,28 +31324,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -31373,9 +31373,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 161, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31401,7 +31401,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31439,11 +31439,11 @@ }, { "x": 545, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 510, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -31461,7 +31461,7 @@ }, { "x": 527.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -31469,7 +31469,7 @@ }, { "x": 527.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 11, @@ -31493,7 +31493,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -31514,28 +31514,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -31563,9 +31563,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 162, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31591,7 +31591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31629,11 +31629,11 @@ }, { "x": 580, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 545, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -31651,7 +31651,7 @@ }, { "x": 562.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -31659,7 +31659,7 @@ }, { "x": 562.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 12, @@ -31683,7 +31683,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -31704,28 +31704,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -31753,9 +31753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 163, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31781,7 +31781,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31819,11 +31819,11 @@ }, { "x": 615, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 580, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -31841,7 +31841,7 @@ }, { "x": 597.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -31849,7 +31849,7 @@ }, { "x": 597.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 12, @@ -31873,7 +31873,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -31894,28 +31894,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -31943,9 +31943,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 164, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -31971,7 +31971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32009,11 +32009,11 @@ }, { "x": 650, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 615, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -32031,7 +32031,7 @@ }, { "x": 632.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -32039,7 +32039,7 @@ }, { "x": 632.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 13, @@ -32063,7 +32063,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -32084,28 +32084,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -32133,9 +32133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 165, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32161,7 +32161,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32199,11 +32199,11 @@ }, { "x": 685, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 650, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -32221,7 +32221,7 @@ }, { "x": 667.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -32229,7 +32229,7 @@ }, { "x": 667.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 14, @@ -32253,7 +32253,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -32274,28 +32274,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -32323,9 +32323,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 166, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32351,7 +32351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32389,11 +32389,11 @@ }, { "x": 720, - "y": 382.73575476702496 + "y": 382.73575 }, { "x": 685, - "y": 347.73575476702496 + "y": 347.73575 }, { "category": 1, @@ -32411,7 +32411,7 @@ }, { "x": 702.5, - "y": 365.23575476702496 + "y": 365.23575 }, { "x": 0, @@ -32419,7 +32419,7 @@ }, { "x": 702.5, - "y": 362.3284840519894 + "y": 362.32848 }, { "endCol": 15, @@ -32443,7 +32443,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -32464,28 +32464,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 347.73575476702496 + "y": 347.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 382.73575476702496 + "y": 382.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 382.73575476702496 + "y": 382.73575 }, { "angle": 0, @@ -32513,9 +32513,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 167, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32541,7 +32541,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32579,11 +32579,11 @@ }, { "x": 125, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 90, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -32601,7 +32601,7 @@ }, { "x": 107.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -32609,7 +32609,7 @@ }, { "x": 107.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 2, @@ -32633,7 +32633,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -32654,28 +32654,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -32703,9 +32703,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 168, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32731,7 +32731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32769,11 +32769,11 @@ }, { "x": 160, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 125, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -32791,7 +32791,7 @@ }, { "x": 142.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -32799,7 +32799,7 @@ }, { "x": 142.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 3, @@ -32823,7 +32823,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -32844,28 +32844,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -32893,9 +32893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 169, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -32921,7 +32921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32959,11 +32959,11 @@ }, { "x": 195, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 160, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -32981,7 +32981,7 @@ }, { "x": 177.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -32989,7 +32989,7 @@ }, { "x": 177.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 4, @@ -33013,7 +33013,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -33034,28 +33034,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -33083,9 +33083,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 170, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33111,7 +33111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33149,11 +33149,11 @@ }, { "x": 230, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 195, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -33171,7 +33171,7 @@ }, { "x": 212.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -33179,7 +33179,7 @@ }, { "x": 212.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 4, @@ -33203,7 +33203,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -33224,28 +33224,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -33273,9 +33273,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 171, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33301,7 +33301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33339,11 +33339,11 @@ }, { "x": 265, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 230, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -33361,7 +33361,7 @@ }, { "x": 247.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -33369,7 +33369,7 @@ }, { "x": 247.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 5, @@ -33393,7 +33393,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -33414,28 +33414,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -33463,9 +33463,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 172, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33491,7 +33491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33529,11 +33529,11 @@ }, { "x": 300, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 265, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -33551,7 +33551,7 @@ }, { "x": 282.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -33559,7 +33559,7 @@ }, { "x": 282.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 6, @@ -33583,7 +33583,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -33604,28 +33604,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -33653,9 +33653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 173, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33681,7 +33681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33719,11 +33719,11 @@ }, { "x": 335, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 300, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -33741,7 +33741,7 @@ }, { "x": 317.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -33749,7 +33749,7 @@ }, { "x": 317.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 6, @@ -33773,7 +33773,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -33794,28 +33794,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -33843,9 +33843,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 174, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -33871,7 +33871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33909,11 +33909,11 @@ }, { "x": 370, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 335, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -33931,7 +33931,7 @@ }, { "x": 352.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -33939,7 +33939,7 @@ }, { "x": 352.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 7, @@ -33963,7 +33963,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -33984,28 +33984,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -34033,9 +34033,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 175, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34061,7 +34061,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34099,11 +34099,11 @@ }, { "x": 405, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 370, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -34121,7 +34121,7 @@ }, { "x": 387.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -34129,7 +34129,7 @@ }, { "x": 387.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 8, @@ -34153,7 +34153,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -34174,28 +34174,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -34223,9 +34223,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 176, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34251,7 +34251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34289,11 +34289,11 @@ }, { "x": 440, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 405, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -34311,7 +34311,7 @@ }, { "x": 422.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -34319,7 +34319,7 @@ }, { "x": 422.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 9, @@ -34343,7 +34343,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -34364,28 +34364,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -34413,9 +34413,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 177, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34441,7 +34441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34479,11 +34479,11 @@ }, { "x": 475, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 440, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -34501,7 +34501,7 @@ }, { "x": 457.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -34509,7 +34509,7 @@ }, { "x": 457.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 9, @@ -34533,7 +34533,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -34554,28 +34554,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -34603,9 +34603,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 178, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34631,7 +34631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34669,11 +34669,11 @@ }, { "x": 510, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 475, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -34691,7 +34691,7 @@ }, { "x": 492.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -34699,7 +34699,7 @@ }, { "x": 492.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 10, @@ -34723,7 +34723,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -34744,28 +34744,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -34793,9 +34793,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 179, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -34821,7 +34821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34859,11 +34859,11 @@ }, { "x": 545, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 510, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -34881,7 +34881,7 @@ }, { "x": 527.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -34889,7 +34889,7 @@ }, { "x": 527.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 11, @@ -34913,7 +34913,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -34934,28 +34934,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -34983,9 +34983,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 180, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35011,7 +35011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35049,11 +35049,11 @@ }, { "x": 580, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 545, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -35071,7 +35071,7 @@ }, { "x": 562.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -35079,7 +35079,7 @@ }, { "x": 562.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 12, @@ -35103,7 +35103,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -35124,28 +35124,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -35173,9 +35173,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 181, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35201,7 +35201,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35239,11 +35239,11 @@ }, { "x": 615, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 580, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -35261,7 +35261,7 @@ }, { "x": 597.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -35269,7 +35269,7 @@ }, { "x": 597.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 12, @@ -35293,7 +35293,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -35314,28 +35314,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -35363,9 +35363,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 182, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35391,7 +35391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35429,11 +35429,11 @@ }, { "x": 650, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 615, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -35451,7 +35451,7 @@ }, { "x": 632.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -35459,7 +35459,7 @@ }, { "x": 632.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 13, @@ -35483,7 +35483,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -35504,28 +35504,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -35553,9 +35553,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 183, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35581,7 +35581,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35619,11 +35619,11 @@ }, { "x": 685, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 650, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -35641,7 +35641,7 @@ }, { "x": 667.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -35649,7 +35649,7 @@ }, { "x": 667.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 14, @@ -35673,7 +35673,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -35694,28 +35694,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -35743,9 +35743,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 184, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35771,7 +35771,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35809,11 +35809,11 @@ }, { "x": 720, - "y": 416.0291113384372 + "y": 416.02911 }, { "x": 685, - "y": 378.1218406234016 + "y": 378.12184 }, { "category": 1, @@ -35831,7 +35831,7 @@ }, { "x": 702.5, - "y": 395.6218406234016 + "y": 395.62184 }, { "x": 0, @@ -35839,7 +35839,7 @@ }, { "x": 702.5, - "y": 394.20488174721464 + "y": 394.20488 }, { "endCol": 15, @@ -35863,7 +35863,7 @@ }, { "x": 0, - "y": 1.5519112366897616 + "y": 1.55191 }, [ { @@ -35884,28 +35884,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 378.1218406234016 + "y": 378.12184 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 413.1218406234016 + "y": 413.12184 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 413.1218406234016 + "y": 413.12184 }, { "angle": 0, @@ -35933,9 +35933,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 185, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -35961,7 +35961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35999,11 +35999,11 @@ }, { "x": 125, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 90, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -36021,15 +36021,15 @@ }, { "x": 107.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 107.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 2, @@ -36053,7 +36053,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -36074,28 +36074,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -36123,9 +36123,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 186, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36151,7 +36151,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36189,11 +36189,11 @@ }, { "x": 160, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 125, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -36211,15 +36211,15 @@ }, { "x": 142.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 142.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 3, @@ -36243,7 +36243,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -36264,28 +36264,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -36313,9 +36313,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 187, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36341,7 +36341,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36379,11 +36379,11 @@ }, { "x": 195, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 160, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -36401,15 +36401,15 @@ }, { "x": 177.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 177.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 4, @@ -36433,7 +36433,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -36454,28 +36454,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -36503,9 +36503,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 188, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36531,7 +36531,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36569,11 +36569,11 @@ }, { "x": 230, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 195, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -36591,15 +36591,15 @@ }, { "x": 212.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 212.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 4, @@ -36623,7 +36623,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -36644,28 +36644,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -36693,9 +36693,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 189, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36721,7 +36721,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36759,11 +36759,11 @@ }, { "x": 265, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 230, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -36781,15 +36781,15 @@ }, { "x": 247.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 247.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 5, @@ -36813,7 +36813,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -36834,28 +36834,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -36883,9 +36883,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 190, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -36911,7 +36911,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36949,11 +36949,11 @@ }, { "x": 300, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 265, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -36971,15 +36971,15 @@ }, { "x": 282.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 282.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 6, @@ -37003,7 +37003,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -37024,28 +37024,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -37073,9 +37073,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 191, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37101,7 +37101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37139,11 +37139,11 @@ }, { "x": 335, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 300, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -37161,15 +37161,15 @@ }, { "x": 317.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 317.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 6, @@ -37193,7 +37193,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -37214,28 +37214,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -37263,9 +37263,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 192, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37291,7 +37291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37329,11 +37329,11 @@ }, { "x": 370, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 335, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -37351,15 +37351,15 @@ }, { "x": 352.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 352.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 7, @@ -37383,7 +37383,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -37404,28 +37404,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -37453,9 +37453,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 193, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37481,7 +37481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37519,11 +37519,11 @@ }, { "x": 405, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 370, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -37541,15 +37541,15 @@ }, { "x": 387.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 387.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 8, @@ -37573,7 +37573,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -37594,28 +37594,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -37643,9 +37643,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 194, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37671,7 +37671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37709,11 +37709,11 @@ }, { "x": 440, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 405, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -37731,15 +37731,15 @@ }, { "x": 422.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 422.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 9, @@ -37763,7 +37763,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -37784,28 +37784,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -37833,9 +37833,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 195, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -37861,7 +37861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37899,11 +37899,11 @@ }, { "x": 475, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 440, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -37921,15 +37921,15 @@ }, { "x": 457.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 457.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 9, @@ -37953,7 +37953,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -37974,28 +37974,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -38023,9 +38023,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 196, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38051,7 +38051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38089,11 +38089,11 @@ }, { "x": 510, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 475, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -38111,15 +38111,15 @@ }, { "x": 492.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 492.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 10, @@ -38143,7 +38143,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -38164,28 +38164,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -38213,9 +38213,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 197, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38241,7 +38241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38279,11 +38279,11 @@ }, { "x": 545, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 510, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -38301,15 +38301,15 @@ }, { "x": 527.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 527.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 11, @@ -38333,7 +38333,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -38354,28 +38354,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -38403,9 +38403,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 198, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38431,7 +38431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38469,11 +38469,11 @@ }, { "x": 580, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 545, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -38491,15 +38491,15 @@ }, { "x": 562.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 562.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 12, @@ -38523,7 +38523,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -38544,28 +38544,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -38593,9 +38593,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 199, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38621,7 +38621,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38659,11 +38659,11 @@ }, { "x": 615, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 580, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -38681,15 +38681,15 @@ }, { "x": 597.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 597.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 12, @@ -38713,7 +38713,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -38734,28 +38734,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -38783,9 +38783,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 200, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -38811,7 +38811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38849,11 +38849,11 @@ }, { "x": 650, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 615, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -38871,15 +38871,15 @@ }, { "x": 632.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 632.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 13, @@ -38903,7 +38903,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -38924,28 +38924,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -38973,9 +38973,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 201, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39001,7 +39001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39039,11 +39039,11 @@ }, { "x": 685, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 650, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -39061,15 +39061,15 @@ }, { "x": 667.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 667.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 14, @@ -39093,7 +39093,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -39114,28 +39114,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -39163,9 +39163,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 202, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39191,7 +39191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.463858045913225, + "speed": 1.46386, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39229,11 +39229,11 @@ }, { "x": 720, - "y": 449.09389892965584 + "y": 449.0939 }, { "x": 685, - "y": 412.6300408837426 + "y": 412.63004 }, { "category": 1, @@ -39251,15 +39251,15 @@ }, { "x": 702.5, - "y": 430.1300408837426 + "y": 430.13004 }, { "x": 0, - "y": 0.4703692436827212 + "y": 0.47037 }, { "x": 702.5, - "y": 428.8142962779328 + "y": 428.8143 }, { "endCol": 15, @@ -39283,7 +39283,7 @@ }, { "x": 0, - "y": 1.1807922453070319 + "y": 1.18079 }, [ { @@ -39304,28 +39304,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 412.6300408837426 + "y": 412.63004 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 447.6300408837426 + "y": 447.63004 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 447.6300408837426 + "y": 447.63004 }, { "angle": 0, @@ -39353,9 +39353,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 203, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39381,7 +39381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39419,11 +39419,11 @@ }, { "x": 125, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 90, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -39441,7 +39441,7 @@ }, { "x": 107.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -39449,7 +39449,7 @@ }, { "x": 107.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 2, @@ -39473,7 +39473,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -39494,28 +39494,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -39543,9 +39543,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 204, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39571,7 +39571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39609,11 +39609,11 @@ }, { "x": 160, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 125, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -39631,7 +39631,7 @@ }, { "x": 142.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -39639,7 +39639,7 @@ }, { "x": 142.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 3, @@ -39663,7 +39663,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -39684,28 +39684,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -39733,9 +39733,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 205, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39761,7 +39761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39799,11 +39799,11 @@ }, { "x": 195, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 160, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -39821,7 +39821,7 @@ }, { "x": 177.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -39829,7 +39829,7 @@ }, { "x": 177.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 4, @@ -39853,7 +39853,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -39874,28 +39874,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -39923,9 +39923,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 206, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -39951,7 +39951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39989,11 +39989,11 @@ }, { "x": 230, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 195, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -40011,7 +40011,7 @@ }, { "x": 212.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -40019,7 +40019,7 @@ }, { "x": 212.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 4, @@ -40043,7 +40043,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -40064,28 +40064,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -40113,9 +40113,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 207, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40141,7 +40141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40179,11 +40179,11 @@ }, { "x": 265, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 230, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -40201,7 +40201,7 @@ }, { "x": 247.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -40209,7 +40209,7 @@ }, { "x": 247.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 5, @@ -40233,7 +40233,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -40254,28 +40254,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -40303,9 +40303,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 208, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40331,7 +40331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40369,11 +40369,11 @@ }, { "x": 300, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 265, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -40391,7 +40391,7 @@ }, { "x": 282.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -40399,7 +40399,7 @@ }, { "x": 282.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 6, @@ -40423,7 +40423,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -40444,28 +40444,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -40493,9 +40493,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 209, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40521,7 +40521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40559,11 +40559,11 @@ }, { "x": 335, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 300, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -40581,7 +40581,7 @@ }, { "x": 317.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -40589,7 +40589,7 @@ }, { "x": 317.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 6, @@ -40613,7 +40613,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -40634,28 +40634,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -40683,9 +40683,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 210, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40711,7 +40711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40749,11 +40749,11 @@ }, { "x": 370, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 335, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -40771,7 +40771,7 @@ }, { "x": 352.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -40779,7 +40779,7 @@ }, { "x": 352.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 7, @@ -40803,7 +40803,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -40824,28 +40824,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -40873,9 +40873,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 211, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -40901,7 +40901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40939,11 +40939,11 @@ }, { "x": 405, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 370, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -40961,7 +40961,7 @@ }, { "x": 387.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -40969,7 +40969,7 @@ }, { "x": 387.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 8, @@ -40993,7 +40993,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -41014,28 +41014,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -41063,9 +41063,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 212, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41091,7 +41091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41129,11 +41129,11 @@ }, { "x": 440, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 405, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -41151,7 +41151,7 @@ }, { "x": 422.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -41159,7 +41159,7 @@ }, { "x": 422.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 9, @@ -41183,7 +41183,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -41204,28 +41204,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -41253,9 +41253,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 213, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41281,7 +41281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41319,11 +41319,11 @@ }, { "x": 475, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 440, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -41341,7 +41341,7 @@ }, { "x": 457.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -41349,7 +41349,7 @@ }, { "x": 457.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 9, @@ -41373,7 +41373,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -41394,28 +41394,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -41443,9 +41443,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 214, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41471,7 +41471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41509,11 +41509,11 @@ }, { "x": 510, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 475, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -41531,7 +41531,7 @@ }, { "x": 492.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -41539,7 +41539,7 @@ }, { "x": 492.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 10, @@ -41563,7 +41563,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -41584,28 +41584,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -41633,9 +41633,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 215, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41661,7 +41661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41699,11 +41699,11 @@ }, { "x": 545, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 510, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -41721,7 +41721,7 @@ }, { "x": 527.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -41729,7 +41729,7 @@ }, { "x": 527.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 11, @@ -41753,7 +41753,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -41774,28 +41774,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -41823,9 +41823,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 216, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -41851,7 +41851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41889,11 +41889,11 @@ }, { "x": 580, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 545, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -41911,7 +41911,7 @@ }, { "x": 562.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -41919,7 +41919,7 @@ }, { "x": 562.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 12, @@ -41943,7 +41943,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -41964,28 +41964,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -42013,9 +42013,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 217, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42041,7 +42041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42079,11 +42079,11 @@ }, { "x": 615, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 580, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -42101,7 +42101,7 @@ }, { "x": 597.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -42109,7 +42109,7 @@ }, { "x": 597.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 12, @@ -42133,7 +42133,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -42154,28 +42154,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -42203,9 +42203,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 218, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42231,7 +42231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42269,11 +42269,11 @@ }, { "x": 650, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 615, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -42291,7 +42291,7 @@ }, { "x": 632.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -42299,7 +42299,7 @@ }, { "x": 632.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 13, @@ -42323,7 +42323,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -42344,28 +42344,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -42393,9 +42393,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 219, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42421,7 +42421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42459,11 +42459,11 @@ }, { "x": 685, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 650, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -42481,7 +42481,7 @@ }, { "x": 667.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -42489,7 +42489,7 @@ }, { "x": 667.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 14, @@ -42513,7 +42513,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -42534,28 +42534,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -42583,9 +42583,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 220, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42611,7 +42611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.3660979772754054, + "speed": 1.3661, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42649,11 +42649,11 @@ }, { "x": 720, - "y": 482.7769050672776 + "y": 482.77691 }, { "x": 685, - "y": 446.4108070900022 + "y": 446.41081 }, { "category": 1, @@ -42671,7 +42671,7 @@ }, { "x": 702.5, - "y": 463.9108070900022 + "y": 463.91081 }, { "x": 0, @@ -42679,7 +42679,7 @@ }, { "x": 702.5, - "y": 462.896587184877 + "y": 462.89659 }, { "endCol": 15, @@ -42703,7 +42703,7 @@ }, { "x": 0, - "y": 0.7921234515495712 + "y": 0.79212 }, [ { @@ -42724,28 +42724,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 446.4108070900022 + "y": 446.41081 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 481.4108070900022 + "y": 481.41081 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 481.4108070900022 + "y": 481.41081 }, { "angle": 0, @@ -42773,9 +42773,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 221, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42801,7 +42801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42839,11 +42839,11 @@ }, { "x": 125, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 90, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -42861,7 +42861,7 @@ }, { "x": 107.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -42869,7 +42869,7 @@ }, { "x": 107.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 2, @@ -42893,7 +42893,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -42914,28 +42914,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -42963,9 +42963,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 222, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -42991,7 +42991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43029,11 +43029,11 @@ }, { "x": 160, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 125, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -43051,7 +43051,7 @@ }, { "x": 142.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -43059,7 +43059,7 @@ }, { "x": 142.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 3, @@ -43083,7 +43083,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -43104,28 +43104,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -43153,9 +43153,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 223, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43181,7 +43181,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43219,11 +43219,11 @@ }, { "x": 195, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 160, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -43241,7 +43241,7 @@ }, { "x": 177.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -43249,7 +43249,7 @@ }, { "x": 177.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 4, @@ -43273,7 +43273,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -43294,28 +43294,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -43343,9 +43343,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 224, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43371,7 +43371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43409,11 +43409,11 @@ }, { "x": 230, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 195, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -43431,7 +43431,7 @@ }, { "x": 212.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -43439,7 +43439,7 @@ }, { "x": 212.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 4, @@ -43463,7 +43463,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -43484,28 +43484,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -43533,9 +43533,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 225, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43561,7 +43561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43599,11 +43599,11 @@ }, { "x": 265, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 230, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -43621,7 +43621,7 @@ }, { "x": 247.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -43629,7 +43629,7 @@ }, { "x": 247.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 5, @@ -43653,7 +43653,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -43674,28 +43674,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -43723,9 +43723,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 226, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43751,7 +43751,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43789,11 +43789,11 @@ }, { "x": 300, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 265, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -43811,7 +43811,7 @@ }, { "x": 282.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -43819,7 +43819,7 @@ }, { "x": 282.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 6, @@ -43843,7 +43843,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -43864,28 +43864,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -43913,9 +43913,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 227, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -43941,7 +43941,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43979,11 +43979,11 @@ }, { "x": 335, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 300, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -44001,7 +44001,7 @@ }, { "x": 317.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -44009,7 +44009,7 @@ }, { "x": 317.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 6, @@ -44033,7 +44033,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -44054,28 +44054,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -44103,9 +44103,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 228, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44131,7 +44131,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44169,11 +44169,11 @@ }, { "x": 370, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 335, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -44191,7 +44191,7 @@ }, { "x": 352.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -44199,7 +44199,7 @@ }, { "x": 352.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 7, @@ -44223,7 +44223,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -44244,28 +44244,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -44293,9 +44293,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 229, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44321,7 +44321,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44359,11 +44359,11 @@ }, { "x": 405, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 370, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -44381,7 +44381,7 @@ }, { "x": 387.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -44389,7 +44389,7 @@ }, { "x": 387.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 8, @@ -44413,7 +44413,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -44434,28 +44434,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -44483,9 +44483,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 230, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44511,7 +44511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44549,11 +44549,11 @@ }, { "x": 440, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 405, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -44571,7 +44571,7 @@ }, { "x": 422.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -44579,7 +44579,7 @@ }, { "x": 422.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 9, @@ -44603,7 +44603,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -44624,28 +44624,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -44673,9 +44673,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 231, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44701,7 +44701,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44739,11 +44739,11 @@ }, { "x": 475, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 440, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -44761,7 +44761,7 @@ }, { "x": 457.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -44769,7 +44769,7 @@ }, { "x": 457.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 9, @@ -44793,7 +44793,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -44814,28 +44814,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -44863,9 +44863,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 232, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -44891,7 +44891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44929,11 +44929,11 @@ }, { "x": 510, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 475, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -44951,7 +44951,7 @@ }, { "x": 492.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -44959,7 +44959,7 @@ }, { "x": 492.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 10, @@ -44983,7 +44983,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -45004,28 +45004,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -45053,9 +45053,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 233, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45081,7 +45081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45119,11 +45119,11 @@ }, { "x": 545, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 510, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -45141,7 +45141,7 @@ }, { "x": 527.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -45149,7 +45149,7 @@ }, { "x": 527.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 11, @@ -45173,7 +45173,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -45194,28 +45194,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -45243,9 +45243,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 234, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45271,7 +45271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45309,11 +45309,11 @@ }, { "x": 580, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 545, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -45331,7 +45331,7 @@ }, { "x": 562.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -45339,7 +45339,7 @@ }, { "x": 562.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 12, @@ -45363,7 +45363,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -45384,28 +45384,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -45433,9 +45433,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 235, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45461,7 +45461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45499,11 +45499,11 @@ }, { "x": 615, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 580, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -45521,7 +45521,7 @@ }, { "x": 597.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -45529,7 +45529,7 @@ }, { "x": 597.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 12, @@ -45553,7 +45553,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -45574,28 +45574,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -45623,9 +45623,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 236, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45651,7 +45651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45689,11 +45689,11 @@ }, { "x": 650, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 615, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -45711,7 +45711,7 @@ }, { "x": 632.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -45719,7 +45719,7 @@ }, { "x": 632.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 13, @@ -45743,7 +45743,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -45764,28 +45764,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -45813,9 +45813,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 237, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -45841,7 +45841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45879,11 +45879,11 @@ }, { "x": 685, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 650, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -45901,7 +45901,7 @@ }, { "x": 667.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -45909,7 +45909,7 @@ }, { "x": 667.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 14, @@ -45933,7 +45933,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -45954,28 +45954,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -46003,9 +46003,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 238, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46031,7 +46031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0748899418055369, + "speed": 1.07489, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46069,11 +46069,11 @@ }, { "x": 720, - "y": 515.8348440892721 + "y": 515.83484 }, { "x": 685, - "y": 479.7599541474664 + "y": 479.75995 }, { "category": 1, @@ -46091,7 +46091,7 @@ }, { "x": 702.5, - "y": 497.2599541474664 + "y": 497.25995 }, { "x": 0, @@ -46099,7 +46099,7 @@ }, { "x": 702.5, - "y": 496.61616829952084 + "y": 496.61617 }, { "endCol": 15, @@ -46123,7 +46123,7 @@ }, { "x": 0, - "y": 0.4460023764733023 + "y": 0.446 }, [ { @@ -46144,28 +46144,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 479.7599541474664 + "y": 479.75995 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 514.7599541474666 + "y": 514.75995 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 514.7599541474666 + "y": 514.75995 }, { "angle": 0, @@ -46193,9 +46193,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 239, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46221,7 +46221,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46259,11 +46259,11 @@ }, { "x": 125, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 90, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -46281,7 +46281,7 @@ }, { "x": 107.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -46289,7 +46289,7 @@ }, { "x": 107.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 2, @@ -46313,7 +46313,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -46334,28 +46334,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -46383,9 +46383,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 240, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46411,7 +46411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46449,11 +46449,11 @@ }, { "x": 160, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 125, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -46471,7 +46471,7 @@ }, { "x": 142.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -46479,7 +46479,7 @@ }, { "x": 142.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 3, @@ -46503,7 +46503,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -46524,28 +46524,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -46573,9 +46573,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 241, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46601,7 +46601,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46639,11 +46639,11 @@ }, { "x": 195, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 160, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -46661,7 +46661,7 @@ }, { "x": 177.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -46669,7 +46669,7 @@ }, { "x": 177.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 4, @@ -46693,7 +46693,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -46714,28 +46714,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -46763,9 +46763,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 242, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46791,7 +46791,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46829,11 +46829,11 @@ }, { "x": 230, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 195, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -46851,7 +46851,7 @@ }, { "x": 212.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -46859,7 +46859,7 @@ }, { "x": 212.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 4, @@ -46883,7 +46883,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -46904,28 +46904,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -46953,9 +46953,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 243, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -46981,7 +46981,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47019,11 +47019,11 @@ }, { "x": 265, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 230, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -47041,7 +47041,7 @@ }, { "x": 247.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -47049,7 +47049,7 @@ }, { "x": 247.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 5, @@ -47073,7 +47073,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -47094,28 +47094,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -47143,9 +47143,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 244, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47171,7 +47171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47209,11 +47209,11 @@ }, { "x": 300, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 265, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -47231,7 +47231,7 @@ }, { "x": 282.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -47239,7 +47239,7 @@ }, { "x": 282.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 6, @@ -47263,7 +47263,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -47284,28 +47284,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -47333,9 +47333,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 245, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47361,7 +47361,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47399,11 +47399,11 @@ }, { "x": 335, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 300, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -47421,7 +47421,7 @@ }, { "x": 317.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -47429,7 +47429,7 @@ }, { "x": 317.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 6, @@ -47453,7 +47453,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -47474,28 +47474,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -47523,9 +47523,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 246, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47551,7 +47551,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47589,11 +47589,11 @@ }, { "x": 370, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 335, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -47611,7 +47611,7 @@ }, { "x": 352.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -47619,7 +47619,7 @@ }, { "x": 352.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 7, @@ -47643,7 +47643,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -47664,28 +47664,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -47713,9 +47713,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 247, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47741,7 +47741,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47779,11 +47779,11 @@ }, { "x": 405, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 370, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -47801,7 +47801,7 @@ }, { "x": 387.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -47809,7 +47809,7 @@ }, { "x": 387.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 8, @@ -47833,7 +47833,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -47854,28 +47854,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -47903,9 +47903,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 248, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -47931,7 +47931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47969,11 +47969,11 @@ }, { "x": 440, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 405, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -47991,7 +47991,7 @@ }, { "x": 422.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -47999,7 +47999,7 @@ }, { "x": 422.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 9, @@ -48023,7 +48023,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -48044,28 +48044,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -48093,9 +48093,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 249, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48121,7 +48121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48159,11 +48159,11 @@ }, { "x": 475, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 440, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -48181,7 +48181,7 @@ }, { "x": 457.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -48189,7 +48189,7 @@ }, { "x": 457.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 9, @@ -48213,7 +48213,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -48234,28 +48234,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -48283,9 +48283,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 250, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48311,7 +48311,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48349,11 +48349,11 @@ }, { "x": 510, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 475, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -48371,7 +48371,7 @@ }, { "x": 492.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -48379,7 +48379,7 @@ }, { "x": 492.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 10, @@ -48403,7 +48403,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -48424,28 +48424,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -48473,9 +48473,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 251, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48501,7 +48501,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48539,11 +48539,11 @@ }, { "x": 545, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 510, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -48561,7 +48561,7 @@ }, { "x": 527.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -48569,7 +48569,7 @@ }, { "x": 527.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 11, @@ -48593,7 +48593,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -48614,28 +48614,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -48663,9 +48663,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 252, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48691,7 +48691,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48729,11 +48729,11 @@ }, { "x": 580, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 545, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -48751,7 +48751,7 @@ }, { "x": 562.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -48759,7 +48759,7 @@ }, { "x": 562.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 12, @@ -48783,7 +48783,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -48804,28 +48804,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -48853,9 +48853,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 253, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -48881,7 +48881,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48919,11 +48919,11 @@ }, { "x": 615, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 580, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -48941,7 +48941,7 @@ }, { "x": 597.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -48949,7 +48949,7 @@ }, { "x": 597.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 12, @@ -48973,7 +48973,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -48994,28 +48994,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -49043,9 +49043,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 254, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49071,7 +49071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49109,11 +49109,11 @@ }, { "x": 650, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 615, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -49131,7 +49131,7 @@ }, { "x": 632.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -49139,7 +49139,7 @@ }, { "x": 632.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 13, @@ -49163,7 +49163,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -49184,28 +49184,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -49233,9 +49233,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 255, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49261,7 +49261,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49299,11 +49299,11 @@ }, { "x": 685, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 650, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -49321,7 +49321,7 @@ }, { "x": 667.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -49329,7 +49329,7 @@ }, { "x": 667.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 14, @@ -49353,7 +49353,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -49374,28 +49374,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -49423,9 +49423,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 256, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49451,7 +49451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.7171607385380987, + "speed": 0.71716, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49489,11 +49489,11 @@ }, { "x": 720, - "y": 548.5869582674079 + "y": 548.58696 }, { "x": 685, - "y": 512.8697975288695 + "y": 512.8698 }, { "category": 1, @@ -49511,7 +49511,7 @@ }, { "x": 702.5, - "y": 530.3697975288698 + "y": 530.3698 }, { "x": 0, @@ -49519,7 +49519,7 @@ }, { "x": 702.5, - "y": 530.018285328639 + "y": 530.01829 }, { "endCol": 15, @@ -49543,7 +49543,7 @@ }, { "x": 0, - "y": 0.2255252985740981 + "y": 0.22553 }, [ { @@ -49564,28 +49564,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 512.8697975288695 + "y": 512.8698 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 547.8697975288698 + "y": 547.8698 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 547.8697975288698 + "y": 547.8698 }, { "angle": 0, @@ -49613,9 +49613,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 257, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49641,7 +49641,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49679,11 +49679,11 @@ }, { "x": 125, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 90, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -49701,7 +49701,7 @@ }, { "x": 107.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -49709,7 +49709,7 @@ }, { "x": 107.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 2, @@ -49733,7 +49733,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -49754,28 +49754,28 @@ "index": 0, "isInternal": false, "x": 90, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 90, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -49803,9 +49803,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 258, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -49831,7 +49831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49869,11 +49869,11 @@ }, { "x": 160, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 125, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -49891,7 +49891,7 @@ }, { "x": 142.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -49899,7 +49899,7 @@ }, { "x": 142.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 3, @@ -49923,7 +49923,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -49944,28 +49944,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 160, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 160, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -49993,9 +49993,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 259, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -50021,7 +50021,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50059,11 +50059,11 @@ }, { "x": 195, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 160, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -50081,7 +50081,7 @@ }, { "x": 177.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -50089,7 +50089,7 @@ }, { "x": 177.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 4, @@ -50113,7 +50113,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -50134,28 +50134,28 @@ "index": 0, "isInternal": false, "x": 160, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 195, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 195, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 160, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -50183,9 +50183,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 260, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -50211,7 +50211,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50249,11 +50249,11 @@ }, { "x": 230, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 195, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -50271,7 +50271,7 @@ }, { "x": 212.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -50279,7 +50279,7 @@ }, { "x": 212.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 4, @@ -50303,7 +50303,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -50324,28 +50324,28 @@ "index": 0, "isInternal": false, "x": 195, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 230, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 230, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 195, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -50373,9 +50373,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 261, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -50401,7 +50401,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50439,11 +50439,11 @@ }, { "x": 265, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 230, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -50461,7 +50461,7 @@ }, { "x": 247.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -50469,7 +50469,7 @@ }, { "x": 247.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 5, @@ -50493,7 +50493,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -50514,28 +50514,28 @@ "index": 0, "isInternal": false, "x": 230, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 265, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 265, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 230, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -50563,9 +50563,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 262, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -50591,7 +50591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50629,11 +50629,11 @@ }, { "x": 300, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 265, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -50651,7 +50651,7 @@ }, { "x": 282.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -50659,7 +50659,7 @@ }, { "x": 282.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 6, @@ -50683,7 +50683,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -50704,28 +50704,28 @@ "index": 0, "isInternal": false, "x": 265, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 265, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -50753,9 +50753,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 263, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -50781,7 +50781,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50819,11 +50819,11 @@ }, { "x": 335, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 300, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -50841,7 +50841,7 @@ }, { "x": 317.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -50849,7 +50849,7 @@ }, { "x": 317.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 6, @@ -50873,7 +50873,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -50894,28 +50894,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 335, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 335, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -50943,9 +50943,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 264, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -50971,7 +50971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51009,11 +51009,11 @@ }, { "x": 370, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 335, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -51031,7 +51031,7 @@ }, { "x": 352.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -51039,7 +51039,7 @@ }, { "x": 352.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 7, @@ -51063,7 +51063,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -51084,28 +51084,28 @@ "index": 0, "isInternal": false, "x": 335, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 370, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 370, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 335, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -51133,9 +51133,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 265, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -51161,7 +51161,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51199,11 +51199,11 @@ }, { "x": 405, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 370, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -51221,7 +51221,7 @@ }, { "x": 387.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -51229,7 +51229,7 @@ }, { "x": 387.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 8, @@ -51253,7 +51253,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -51274,28 +51274,28 @@ "index": 0, "isInternal": false, "x": 370, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 405, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 405, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 370, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -51323,9 +51323,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 266, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -51351,7 +51351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51389,11 +51389,11 @@ }, { "x": 440, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 405, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -51411,7 +51411,7 @@ }, { "x": 422.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -51419,7 +51419,7 @@ }, { "x": 422.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 9, @@ -51443,7 +51443,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -51464,28 +51464,28 @@ "index": 0, "isInternal": false, "x": 405, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 405, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -51513,9 +51513,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 267, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -51541,7 +51541,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51579,11 +51579,11 @@ }, { "x": 475, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 440, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -51601,7 +51601,7 @@ }, { "x": 457.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -51609,7 +51609,7 @@ }, { "x": 457.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 9, @@ -51633,7 +51633,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -51654,28 +51654,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -51703,9 +51703,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 268, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -51731,7 +51731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51769,11 +51769,11 @@ }, { "x": 510, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 475, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -51791,7 +51791,7 @@ }, { "x": 492.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -51799,7 +51799,7 @@ }, { "x": 492.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 10, @@ -51823,7 +51823,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -51844,28 +51844,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 510, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 510, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -51893,9 +51893,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 269, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -51921,7 +51921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51959,11 +51959,11 @@ }, { "x": 545, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 510, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -51981,7 +51981,7 @@ }, { "x": 527.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -51989,7 +51989,7 @@ }, { "x": 527.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 11, @@ -52013,7 +52013,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -52034,28 +52034,28 @@ "index": 0, "isInternal": false, "x": 510, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 545, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 545, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 510, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -52083,9 +52083,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 270, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -52111,7 +52111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52149,11 +52149,11 @@ }, { "x": 580, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 545, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -52171,7 +52171,7 @@ }, { "x": 562.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -52179,7 +52179,7 @@ }, { "x": 562.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 12, @@ -52203,7 +52203,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -52224,28 +52224,28 @@ "index": 0, "isInternal": false, "x": 545, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 580, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 580, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 545, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -52273,9 +52273,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 271, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -52301,7 +52301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52339,11 +52339,11 @@ }, { "x": 615, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 580, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -52361,7 +52361,7 @@ }, { "x": 597.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -52369,7 +52369,7 @@ }, { "x": 597.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 12, @@ -52393,7 +52393,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -52414,28 +52414,28 @@ "index": 0, "isInternal": false, "x": 580, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 615, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 615, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 580, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -52463,9 +52463,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 272, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -52491,7 +52491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52529,11 +52529,11 @@ }, { "x": 650, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 615, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -52551,7 +52551,7 @@ }, { "x": 632.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -52559,7 +52559,7 @@ }, { "x": 632.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 13, @@ -52583,7 +52583,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -52604,28 +52604,28 @@ "index": 0, "isInternal": false, "x": 615, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 615, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -52653,9 +52653,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 273, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -52681,7 +52681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52719,11 +52719,11 @@ }, { "x": 685, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 650, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -52741,7 +52741,7 @@ }, { "x": 667.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -52749,7 +52749,7 @@ }, { "x": 667.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 14, @@ -52773,7 +52773,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -52794,28 +52794,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 685, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 685, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 580.8265268231005 + "y": 580.82653 }, { "angle": 0, @@ -52843,9 +52843,9 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 274, - "inertia": 1000.4166666666667, - "inverseInertia": 0.0009995835068721366, - "inverseMass": 0.8163265306122448, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "inverseMass": 0.81633, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", @@ -52871,7 +52871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.4351509499278468, + "speed": 0.43515, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52909,11 +52909,11 @@ }, { "x": 720, - "y": 581.2616777730284 + "y": 581.26168 }, { "x": 685, - "y": 545.8265268231005 + "y": 545.82653 }, { "category": 1, @@ -52931,7 +52931,7 @@ }, { "x": 702.5, - "y": 563.3265268231005 + "y": 563.32653 }, { "x": 0, @@ -52939,7 +52939,7 @@ }, { "x": 702.5, - "y": 563.1792150231743 + "y": 563.17922 }, { "endCol": 15, @@ -52963,7 +52963,7 @@ }, { "x": 0, - "y": 0.04302713506240252 + "y": 0.04303 }, [ { @@ -52984,28 +52984,28 @@ "index": 0, "isInternal": false, "x": 685, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 1, "isInternal": false, "x": 720, - "y": 545.8265268231005 + "y": 545.82653 }, { "body": null, "index": 2, "isInternal": false, "x": 720, - "y": 580.8265268231005 + "y": 580.82653 }, { "body": null, "index": 3, "isInternal": false, "x": 685, - "y": 580.8265268231005 + "y": 580.82653 }, [], [], diff --git a/test/browser/refs/stress2/stress2-0.json b/test/browser/refs/stress2/stress2-0.json index ddd72afc..0848c9aa 100644 --- a/test/browser/refs/stress2/stress2-0.json +++ b/test/browser/refs/stress2/stress2-0.json @@ -2233,8 +2233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -2413,8 +2413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -2593,8 +2593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -2773,8 +2773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -2953,8 +2953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3133,8 +3133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3313,8 +3313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3493,8 +3493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3673,8 +3673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3853,8 +3853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4033,8 +4033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4213,8 +4213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4393,8 +4393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4573,8 +4573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4753,8 +4753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4933,8 +4933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5113,8 +5113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5293,8 +5293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5473,8 +5473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5653,8 +5653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5833,8 +5833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6013,8 +6013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6193,8 +6193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6373,8 +6373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6553,8 +6553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6733,8 +6733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6913,8 +6913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7093,8 +7093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7273,8 +7273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7453,8 +7453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7633,8 +7633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7813,8 +7813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7993,8 +7993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8173,8 +8173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8353,8 +8353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8533,8 +8533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8713,8 +8713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8893,8 +8893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9073,8 +9073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9253,8 +9253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9433,8 +9433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9613,8 +9613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9793,8 +9793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9973,8 +9973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10153,8 +10153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10333,8 +10333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10513,8 +10513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10693,8 +10693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10873,8 +10873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11053,8 +11053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11233,8 +11233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11413,8 +11413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11593,8 +11593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11773,8 +11773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11953,8 +11953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12133,8 +12133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12313,8 +12313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12493,8 +12493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12673,8 +12673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12853,8 +12853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13033,8 +13033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13213,8 +13213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13393,8 +13393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13573,8 +13573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13753,8 +13753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13933,8 +13933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14113,8 +14113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14293,8 +14293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14473,8 +14473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14653,8 +14653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14833,8 +14833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15013,8 +15013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15193,8 +15193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15373,8 +15373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15553,8 +15553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15733,8 +15733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15913,8 +15913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16093,8 +16093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16273,8 +16273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16453,8 +16453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16633,8 +16633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16813,8 +16813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16993,8 +16993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17173,8 +17173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17353,8 +17353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17533,8 +17533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17713,8 +17713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17893,8 +17893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18073,8 +18073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18253,8 +18253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18433,8 +18433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18613,8 +18613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18793,8 +18793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18973,8 +18973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19153,8 +19153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19333,8 +19333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19513,8 +19513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19693,8 +19693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19873,8 +19873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20053,8 +20053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20233,8 +20233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 105, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20413,8 +20413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 106, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20593,8 +20593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 107, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20773,8 +20773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 108, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20953,8 +20953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21133,8 +21133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 110, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21313,8 +21313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 111, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21493,8 +21493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 112, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21673,8 +21673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 113, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21853,8 +21853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 114, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22033,8 +22033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22213,8 +22213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 116, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22393,8 +22393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 117, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22573,8 +22573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22753,8 +22753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 119, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22933,8 +22933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 120, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23113,8 +23113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 121, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23293,8 +23293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 122, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23473,8 +23473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 123, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23653,8 +23653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 124, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23833,8 +23833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 125, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24013,8 +24013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 126, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24193,8 +24193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 127, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24373,8 +24373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 128, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24553,8 +24553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 129, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24733,8 +24733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 130, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24913,8 +24913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 131, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25093,8 +25093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 132, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25273,8 +25273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 133, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25453,8 +25453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 134, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25633,8 +25633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 135, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25813,8 +25813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 136, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25993,8 +25993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 137, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26173,8 +26173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 138, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26353,8 +26353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 139, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26533,8 +26533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 140, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26713,8 +26713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 141, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26893,8 +26893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 142, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27073,8 +27073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 143, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27253,8 +27253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 144, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27433,8 +27433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 145, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27613,8 +27613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 146, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27793,8 +27793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 147, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27973,8 +27973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 148, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28153,8 +28153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 149, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28333,8 +28333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 150, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28513,8 +28513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 151, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28693,8 +28693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 152, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28873,8 +28873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 153, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29053,8 +29053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 154, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29233,8 +29233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 155, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29413,8 +29413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 156, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29593,8 +29593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 157, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29773,8 +29773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 158, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29953,8 +29953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 159, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30133,8 +30133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 160, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30313,8 +30313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 161, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30493,8 +30493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 162, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30673,8 +30673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 163, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30853,8 +30853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 164, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31033,8 +31033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 165, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31213,8 +31213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 166, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31393,8 +31393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 167, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31573,8 +31573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 168, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31753,8 +31753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 169, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31933,8 +31933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 170, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32113,8 +32113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 171, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32293,8 +32293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 172, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32473,8 +32473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 173, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32653,8 +32653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 174, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32833,8 +32833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 175, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33013,8 +33013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 176, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33193,8 +33193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 177, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33373,8 +33373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 178, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33553,8 +33553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 179, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33733,8 +33733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 180, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33913,8 +33913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 181, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34093,8 +34093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 182, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34273,8 +34273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 183, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34453,8 +34453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 184, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34633,8 +34633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 185, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34813,8 +34813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 186, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34993,8 +34993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 187, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35173,8 +35173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 188, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35353,8 +35353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 189, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35533,8 +35533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 190, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35713,8 +35713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 191, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35893,8 +35893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 192, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36073,8 +36073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 193, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36253,8 +36253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 194, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36433,8 +36433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 195, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36613,8 +36613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 196, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36793,8 +36793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 197, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36973,8 +36973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 198, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37153,8 +37153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 199, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37333,8 +37333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 200, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37513,8 +37513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 201, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37693,8 +37693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 202, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37873,8 +37873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 203, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38053,8 +38053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 204, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38233,8 +38233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 205, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38413,8 +38413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 206, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38593,8 +38593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 207, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38773,8 +38773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 208, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38953,8 +38953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 209, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39133,8 +39133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 210, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39313,8 +39313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 211, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39493,8 +39493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 212, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39673,8 +39673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 213, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39853,8 +39853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 214, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40033,8 +40033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 215, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40213,8 +40213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 216, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40393,8 +40393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 217, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40573,8 +40573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 218, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40753,8 +40753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 219, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40933,8 +40933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 220, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41113,8 +41113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 221, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41293,8 +41293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 222, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41473,8 +41473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 223, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41653,8 +41653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 224, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41833,8 +41833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 225, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42013,8 +42013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 226, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42193,8 +42193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 227, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42373,8 +42373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 228, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42553,8 +42553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 229, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42733,8 +42733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 230, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42913,8 +42913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 231, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43093,8 +43093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 232, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43273,8 +43273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 233, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43453,8 +43453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 234, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43633,8 +43633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 235, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43813,8 +43813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 236, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43993,8 +43993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 237, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44173,8 +44173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 238, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44353,8 +44353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 239, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44533,8 +44533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 240, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44713,8 +44713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 241, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44893,8 +44893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 242, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45073,8 +45073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 243, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45253,8 +45253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 244, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45433,8 +45433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 245, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45613,8 +45613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 246, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45793,8 +45793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 247, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45973,8 +45973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 248, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46153,8 +46153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 249, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46333,8 +46333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 250, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46513,8 +46513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 251, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46693,8 +46693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 252, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46873,8 +46873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 253, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47053,8 +47053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 254, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47233,8 +47233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 255, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47413,8 +47413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 256, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47593,8 +47593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 257, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47773,8 +47773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 258, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47953,8 +47953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 259, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48133,8 +48133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 260, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48313,8 +48313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 261, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48493,8 +48493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 262, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48673,8 +48673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 263, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48853,8 +48853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 264, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49033,8 +49033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 265, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49213,8 +49213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 266, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49393,8 +49393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 267, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49573,8 +49573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 268, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49753,8 +49753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 269, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49933,8 +49933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 270, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50113,8 +50113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 271, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50293,8 +50293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 272, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50473,8 +50473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 273, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50653,8 +50653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 274, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50833,8 +50833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 275, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51013,8 +51013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 276, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51193,8 +51193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 277, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51373,8 +51373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 278, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51553,8 +51553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 279, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51733,8 +51733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 280, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51913,8 +51913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 281, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52093,8 +52093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 282, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52273,8 +52273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 283, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52453,8 +52453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 284, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52633,8 +52633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 285, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52813,8 +52813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 286, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52993,8 +52993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 287, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53173,8 +53173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 288, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53353,8 +53353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 289, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53533,8 +53533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 290, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53713,8 +53713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 291, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53893,8 +53893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 292, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54073,8 +54073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 293, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54253,8 +54253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 294, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54433,8 +54433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 295, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54613,8 +54613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 296, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54793,8 +54793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 297, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54973,8 +54973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 298, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55153,8 +55153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 299, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55333,8 +55333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 300, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55513,8 +55513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 301, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55693,8 +55693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 302, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55873,8 +55873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 303, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56053,8 +56053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 304, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56233,8 +56233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 305, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56413,8 +56413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 306, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56593,8 +56593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 307, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56773,8 +56773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 308, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56953,8 +56953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 309, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57133,8 +57133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 310, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57313,8 +57313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 311, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57493,8 +57493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 312, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57673,8 +57673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 313, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57853,8 +57853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 314, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58033,8 +58033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 315, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58213,8 +58213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 316, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58393,8 +58393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 317, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58573,8 +58573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 318, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58753,8 +58753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 319, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58933,8 +58933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 320, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59113,8 +59113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 321, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59293,8 +59293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 322, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59473,8 +59473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 323, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59653,8 +59653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 324, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59833,8 +59833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 325, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60013,8 +60013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 326, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60193,8 +60193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 327, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60373,8 +60373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 328, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60553,8 +60553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 329, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60733,8 +60733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 330, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60913,8 +60913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 331, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61093,8 +61093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 332, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61273,8 +61273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 333, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61453,8 +61453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 334, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61633,8 +61633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 335, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61813,8 +61813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 336, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61993,8 +61993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 337, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62173,8 +62173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 338, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62353,8 +62353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 339, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62533,8 +62533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 340, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62713,8 +62713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 341, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62893,8 +62893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 342, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63073,8 +63073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 343, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63253,8 +63253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 344, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63433,8 +63433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 345, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63613,8 +63613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 346, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63793,8 +63793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 347, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63973,8 +63973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 348, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64153,8 +64153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 349, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64333,8 +64333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 350, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64513,8 +64513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 351, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64693,8 +64693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 352, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64873,8 +64873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 353, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65053,8 +65053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 354, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65233,8 +65233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 355, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65413,8 +65413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 356, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65593,8 +65593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 357, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65773,8 +65773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 358, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65953,8 +65953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 359, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66133,8 +66133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 360, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66313,8 +66313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 361, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66493,8 +66493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 362, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66673,8 +66673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 363, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66853,8 +66853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 364, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67033,8 +67033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 365, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67213,8 +67213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 366, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67393,8 +67393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 367, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67573,8 +67573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 368, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67753,8 +67753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 369, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67933,8 +67933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 370, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68113,8 +68113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 371, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68293,8 +68293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 372, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68473,8 +68473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 373, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68653,8 +68653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 374, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68833,8 +68833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 375, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69013,8 +69013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 376, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69193,8 +69193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 377, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69373,8 +69373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 378, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69553,8 +69553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 379, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69733,8 +69733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 380, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69913,8 +69913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 381, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70093,8 +70093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 382, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70273,8 +70273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 383, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70453,8 +70453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 384, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70633,8 +70633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 385, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70813,8 +70813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 386, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70993,8 +70993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 387, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71173,8 +71173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 388, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71353,8 +71353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 389, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71533,8 +71533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 390, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71713,8 +71713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 391, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71893,8 +71893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 392, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72073,8 +72073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 393, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72253,8 +72253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 394, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72433,8 +72433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 395, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72613,8 +72613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 396, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72793,8 +72793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 397, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72973,8 +72973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 398, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73153,8 +73153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 399, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73333,8 +73333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 400, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73513,8 +73513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 401, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73693,8 +73693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 402, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73873,8 +73873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 403, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74053,8 +74053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 404, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74233,8 +74233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 405, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74413,8 +74413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 406, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74593,8 +74593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 407, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74773,8 +74773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 408, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74953,8 +74953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 409, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75133,8 +75133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 410, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75313,8 +75313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 411, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75493,8 +75493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 412, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75673,8 +75673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 413, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75853,8 +75853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 414, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76033,8 +76033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 415, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76213,8 +76213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 416, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76393,8 +76393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 417, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76573,8 +76573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 418, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76753,8 +76753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 419, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76933,8 +76933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 420, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77113,8 +77113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 421, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77293,8 +77293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 422, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77473,8 +77473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 423, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77653,8 +77653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 424, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77833,8 +77833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 425, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78013,8 +78013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 426, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78193,8 +78193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 427, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78373,8 +78373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 428, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78553,8 +78553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 429, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78733,8 +78733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 430, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78913,8 +78913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 431, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79093,8 +79093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 432, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79273,8 +79273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 433, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79453,8 +79453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 434, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79633,8 +79633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 435, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79813,8 +79813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 436, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79993,8 +79993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 437, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80173,8 +80173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 438, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80353,8 +80353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 439, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80533,8 +80533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 440, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80713,8 +80713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 441, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80893,8 +80893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 442, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81073,8 +81073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 443, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81253,8 +81253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 444, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81433,8 +81433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 445, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81613,8 +81613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 446, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81793,8 +81793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 447, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81973,8 +81973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 448, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82153,8 +82153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 449, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82333,8 +82333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 450, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82513,8 +82513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 451, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82693,8 +82693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 452, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82873,8 +82873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 453, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -83053,8 +83053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 454, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, diff --git a/test/browser/refs/stress2/stress2-10.json b/test/browser/refs/stress2/stress2-10.json index ee035c96..8eb66ee8 100644 --- a/test/browser/refs/stress2/stress2-10.json +++ b/test/browser/refs/stress2/stress2-10.json @@ -2273,8 +2273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -2301,7 +2301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2339,11 +2339,11 @@ }, { "x": 125, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 100, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -2361,7 +2361,7 @@ }, { "x": 112.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -2369,7 +2369,7 @@ }, { "x": 112.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 2, @@ -2393,7 +2393,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2414,28 +2414,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -2463,8 +2463,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -2491,7 +2491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2529,11 +2529,11 @@ }, { "x": 150, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 125, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -2551,7 +2551,7 @@ }, { "x": 137.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -2559,7 +2559,7 @@ }, { "x": 137.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 3, @@ -2583,7 +2583,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2604,28 +2604,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -2653,8 +2653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -2681,7 +2681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2719,11 +2719,11 @@ }, { "x": 175, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 150, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -2741,7 +2741,7 @@ }, { "x": 162.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -2749,7 +2749,7 @@ }, { "x": 162.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 3, @@ -2773,7 +2773,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2794,28 +2794,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -2843,8 +2843,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -2871,7 +2871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2909,11 +2909,11 @@ }, { "x": 200, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 175, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -2931,7 +2931,7 @@ }, { "x": 187.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -2939,7 +2939,7 @@ }, { "x": 187.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 4, @@ -2963,7 +2963,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -2984,28 +2984,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -3033,8 +3033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3061,7 +3061,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3099,11 +3099,11 @@ }, { "x": 225, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 200, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -3121,7 +3121,7 @@ }, { "x": 212.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -3129,7 +3129,7 @@ }, { "x": 212.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 4, @@ -3153,7 +3153,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3174,28 +3174,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -3223,8 +3223,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3251,7 +3251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3289,11 +3289,11 @@ }, { "x": 250, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 225, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -3311,7 +3311,7 @@ }, { "x": 237.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -3319,7 +3319,7 @@ }, { "x": 237.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 5, @@ -3343,7 +3343,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3364,28 +3364,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -3413,8 +3413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3441,7 +3441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3479,11 +3479,11 @@ }, { "x": 275, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 250, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -3501,7 +3501,7 @@ }, { "x": 262.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -3509,7 +3509,7 @@ }, { "x": 262.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 5, @@ -3533,7 +3533,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3554,28 +3554,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -3603,8 +3603,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3631,7 +3631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3669,11 +3669,11 @@ }, { "x": 300, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 275, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -3691,7 +3691,7 @@ }, { "x": 287.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -3699,7 +3699,7 @@ }, { "x": 287.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 6, @@ -3723,7 +3723,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3744,28 +3744,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -3793,8 +3793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -3821,7 +3821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3859,11 +3859,11 @@ }, { "x": 325, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 300, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -3881,7 +3881,7 @@ }, { "x": 312.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -3889,7 +3889,7 @@ }, { "x": 312.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 6, @@ -3913,7 +3913,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -3934,28 +3934,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -3983,8 +3983,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4011,7 +4011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4049,11 +4049,11 @@ }, { "x": 350, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 325, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -4071,7 +4071,7 @@ }, { "x": 337.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -4079,7 +4079,7 @@ }, { "x": 337.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 7, @@ -4103,7 +4103,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4124,28 +4124,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -4173,8 +4173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4201,7 +4201,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4239,11 +4239,11 @@ }, { "x": 375, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 350, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -4261,7 +4261,7 @@ }, { "x": 362.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -4269,7 +4269,7 @@ }, { "x": 362.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 7, @@ -4293,7 +4293,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4314,28 +4314,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -4363,8 +4363,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4391,7 +4391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4429,11 +4429,11 @@ }, { "x": 400, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 375, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -4451,7 +4451,7 @@ }, { "x": 387.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -4459,7 +4459,7 @@ }, { "x": 387.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 8, @@ -4483,7 +4483,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4504,28 +4504,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -4553,8 +4553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4581,7 +4581,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4619,11 +4619,11 @@ }, { "x": 425, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 400, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -4641,7 +4641,7 @@ }, { "x": 412.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -4649,7 +4649,7 @@ }, { "x": 412.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 8, @@ -4673,7 +4673,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4694,28 +4694,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -4743,8 +4743,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4771,7 +4771,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4809,11 +4809,11 @@ }, { "x": 450, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 425, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -4831,7 +4831,7 @@ }, { "x": 437.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -4839,7 +4839,7 @@ }, { "x": 437.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 9, @@ -4863,7 +4863,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -4884,28 +4884,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -4933,8 +4933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -4961,7 +4961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4999,11 +4999,11 @@ }, { "x": 475, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 450, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -5021,7 +5021,7 @@ }, { "x": 462.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -5029,7 +5029,7 @@ }, { "x": 462.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 9, @@ -5053,7 +5053,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5074,28 +5074,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -5123,8 +5123,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5151,7 +5151,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5189,11 +5189,11 @@ }, { "x": 500, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 475, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -5211,7 +5211,7 @@ }, { "x": 487.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -5219,7 +5219,7 @@ }, { "x": 487.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 10, @@ -5243,7 +5243,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5264,28 +5264,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -5313,8 +5313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5341,7 +5341,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5379,11 +5379,11 @@ }, { "x": 525, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 500, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -5401,7 +5401,7 @@ }, { "x": 512.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -5409,7 +5409,7 @@ }, { "x": 512.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 10, @@ -5433,7 +5433,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5454,28 +5454,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -5503,8 +5503,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5531,7 +5531,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5569,11 +5569,11 @@ }, { "x": 550, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 525, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -5591,7 +5591,7 @@ }, { "x": 537.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -5599,7 +5599,7 @@ }, { "x": 537.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 11, @@ -5623,7 +5623,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5644,28 +5644,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -5693,8 +5693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5721,7 +5721,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5759,11 +5759,11 @@ }, { "x": 575, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 550, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -5781,7 +5781,7 @@ }, { "x": 562.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -5789,7 +5789,7 @@ }, { "x": 562.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 11, @@ -5813,7 +5813,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -5834,28 +5834,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -5883,8 +5883,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -5911,7 +5911,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5949,11 +5949,11 @@ }, { "x": 600, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 575, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -5971,7 +5971,7 @@ }, { "x": 587.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -5979,7 +5979,7 @@ }, { "x": 587.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 12, @@ -6003,7 +6003,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6024,28 +6024,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -6073,8 +6073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6101,7 +6101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6139,11 +6139,11 @@ }, { "x": 625, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 600, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -6161,7 +6161,7 @@ }, { "x": 612.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -6169,7 +6169,7 @@ }, { "x": 612.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 13, @@ -6193,7 +6193,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6214,28 +6214,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -6263,8 +6263,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6291,7 +6291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6329,11 +6329,11 @@ }, { "x": 650, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 625, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -6351,7 +6351,7 @@ }, { "x": 637.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -6359,7 +6359,7 @@ }, { "x": 637.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 13, @@ -6383,7 +6383,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6404,28 +6404,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -6453,8 +6453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6481,7 +6481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6519,11 +6519,11 @@ }, { "x": 675, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 650, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -6541,7 +6541,7 @@ }, { "x": 662.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -6549,7 +6549,7 @@ }, { "x": 662.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 14, @@ -6573,7 +6573,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6594,28 +6594,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -6643,8 +6643,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6671,7 +6671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6709,11 +6709,11 @@ }, { "x": 700, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 675, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -6731,7 +6731,7 @@ }, { "x": 687.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -6739,7 +6739,7 @@ }, { "x": 687.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 14, @@ -6763,7 +6763,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6784,28 +6784,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -6833,8 +6833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -6861,7 +6861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6899,11 +6899,11 @@ }, { "x": 725, - "y": 162.73575476702598 + "y": 162.73575 }, { "x": 700, - "y": 137.73575476702595 + "y": 137.73575 }, { "category": 1, @@ -6921,7 +6921,7 @@ }, { "x": 712.5, - "y": 150.23575476702598 + "y": 150.23575 }, { "x": 0, @@ -6929,7 +6929,7 @@ }, { "x": 712.5, - "y": 147.3284840519903 + "y": 147.32848 }, { "endCol": 15, @@ -6953,7 +6953,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -6974,28 +6974,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 137.73575476702595 + "y": 137.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 162.73575476702598 + "y": 162.73575 }, { "angle": 0, @@ -7023,8 +7023,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7051,7 +7051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7089,11 +7089,11 @@ }, { "x": 125, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 100, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -7111,7 +7111,7 @@ }, { "x": 112.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -7119,7 +7119,7 @@ }, { "x": 112.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 2, @@ -7143,7 +7143,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7164,28 +7164,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -7213,8 +7213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7241,7 +7241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7279,11 +7279,11 @@ }, { "x": 150, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 125, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -7301,7 +7301,7 @@ }, { "x": 137.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -7309,7 +7309,7 @@ }, { "x": 137.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 3, @@ -7333,7 +7333,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7354,28 +7354,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -7403,8 +7403,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7431,7 +7431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7469,11 +7469,11 @@ }, { "x": 175, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 150, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -7491,7 +7491,7 @@ }, { "x": 162.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -7499,7 +7499,7 @@ }, { "x": 162.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 3, @@ -7523,7 +7523,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7544,28 +7544,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -7593,8 +7593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7621,7 +7621,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7659,11 +7659,11 @@ }, { "x": 200, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 175, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -7681,7 +7681,7 @@ }, { "x": 187.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -7689,7 +7689,7 @@ }, { "x": 187.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 4, @@ -7713,7 +7713,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7734,28 +7734,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -7783,8 +7783,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -7811,7 +7811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7849,11 +7849,11 @@ }, { "x": 225, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 200, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -7871,7 +7871,7 @@ }, { "x": 212.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -7879,7 +7879,7 @@ }, { "x": 212.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 4, @@ -7903,7 +7903,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -7924,28 +7924,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -7973,8 +7973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8001,7 +8001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8039,11 +8039,11 @@ }, { "x": 250, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 225, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -8061,7 +8061,7 @@ }, { "x": 237.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -8069,7 +8069,7 @@ }, { "x": 237.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 5, @@ -8093,7 +8093,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8114,28 +8114,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -8163,8 +8163,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8191,7 +8191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8229,11 +8229,11 @@ }, { "x": 275, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 250, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -8251,7 +8251,7 @@ }, { "x": 262.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -8259,7 +8259,7 @@ }, { "x": 262.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 5, @@ -8283,7 +8283,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8304,28 +8304,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -8353,8 +8353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8381,7 +8381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8419,11 +8419,11 @@ }, { "x": 300, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 275, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -8441,7 +8441,7 @@ }, { "x": 287.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -8449,7 +8449,7 @@ }, { "x": 287.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 6, @@ -8473,7 +8473,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8494,28 +8494,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -8543,8 +8543,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8571,7 +8571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8609,11 +8609,11 @@ }, { "x": 325, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 300, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -8631,7 +8631,7 @@ }, { "x": 312.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -8639,7 +8639,7 @@ }, { "x": 312.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 6, @@ -8663,7 +8663,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8684,28 +8684,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -8733,8 +8733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8761,7 +8761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8799,11 +8799,11 @@ }, { "x": 350, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 325, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -8821,7 +8821,7 @@ }, { "x": 337.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -8829,7 +8829,7 @@ }, { "x": 337.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 7, @@ -8853,7 +8853,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -8874,28 +8874,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -8923,8 +8923,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -8951,7 +8951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8989,11 +8989,11 @@ }, { "x": 375, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 350, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -9011,7 +9011,7 @@ }, { "x": 362.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -9019,7 +9019,7 @@ }, { "x": 362.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 7, @@ -9043,7 +9043,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9064,28 +9064,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -9113,8 +9113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9141,7 +9141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9179,11 +9179,11 @@ }, { "x": 400, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 375, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -9201,7 +9201,7 @@ }, { "x": 387.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -9209,7 +9209,7 @@ }, { "x": 387.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 8, @@ -9233,7 +9233,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9254,28 +9254,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -9303,8 +9303,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9331,7 +9331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9369,11 +9369,11 @@ }, { "x": 425, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 400, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -9391,7 +9391,7 @@ }, { "x": 412.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -9399,7 +9399,7 @@ }, { "x": 412.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 8, @@ -9423,7 +9423,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9444,28 +9444,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -9493,8 +9493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9521,7 +9521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9559,11 +9559,11 @@ }, { "x": 450, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 425, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -9581,7 +9581,7 @@ }, { "x": 437.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -9589,7 +9589,7 @@ }, { "x": 437.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 9, @@ -9613,7 +9613,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9634,28 +9634,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -9683,8 +9683,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9711,7 +9711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9749,11 +9749,11 @@ }, { "x": 475, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 450, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -9771,7 +9771,7 @@ }, { "x": 462.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -9779,7 +9779,7 @@ }, { "x": 462.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 9, @@ -9803,7 +9803,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -9824,28 +9824,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -9873,8 +9873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -9901,7 +9901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9939,11 +9939,11 @@ }, { "x": 500, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 475, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -9961,7 +9961,7 @@ }, { "x": 487.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -9969,7 +9969,7 @@ }, { "x": 487.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 10, @@ -9993,7 +9993,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10014,28 +10014,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -10063,8 +10063,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10091,7 +10091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10129,11 +10129,11 @@ }, { "x": 525, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 500, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -10151,7 +10151,7 @@ }, { "x": 512.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -10159,7 +10159,7 @@ }, { "x": 512.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 10, @@ -10183,7 +10183,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10204,28 +10204,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -10253,8 +10253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10281,7 +10281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10319,11 +10319,11 @@ }, { "x": 550, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 525, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -10341,7 +10341,7 @@ }, { "x": 537.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -10349,7 +10349,7 @@ }, { "x": 537.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 11, @@ -10373,7 +10373,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10394,28 +10394,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -10443,8 +10443,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10471,7 +10471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10509,11 +10509,11 @@ }, { "x": 575, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 550, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -10531,7 +10531,7 @@ }, { "x": 562.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -10539,7 +10539,7 @@ }, { "x": 562.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 11, @@ -10563,7 +10563,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10584,28 +10584,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -10633,8 +10633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10661,7 +10661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10699,11 +10699,11 @@ }, { "x": 600, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 575, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -10721,7 +10721,7 @@ }, { "x": 587.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -10729,7 +10729,7 @@ }, { "x": 587.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 12, @@ -10753,7 +10753,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10774,28 +10774,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -10823,8 +10823,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -10851,7 +10851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10889,11 +10889,11 @@ }, { "x": 625, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 600, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -10911,7 +10911,7 @@ }, { "x": 612.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -10919,7 +10919,7 @@ }, { "x": 612.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 13, @@ -10943,7 +10943,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -10964,28 +10964,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -11013,8 +11013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11041,7 +11041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11079,11 +11079,11 @@ }, { "x": 650, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 625, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -11101,7 +11101,7 @@ }, { "x": 637.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -11109,7 +11109,7 @@ }, { "x": 637.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 13, @@ -11133,7 +11133,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11154,28 +11154,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -11203,8 +11203,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11231,7 +11231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11269,11 +11269,11 @@ }, { "x": 675, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 650, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -11291,7 +11291,7 @@ }, { "x": 662.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -11299,7 +11299,7 @@ }, { "x": 662.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 14, @@ -11323,7 +11323,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11344,28 +11344,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -11393,8 +11393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11421,7 +11421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11459,11 +11459,11 @@ }, { "x": 700, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 675, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -11481,7 +11481,7 @@ }, { "x": 687.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -11489,7 +11489,7 @@ }, { "x": 687.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 14, @@ -11513,7 +11513,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11534,28 +11534,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -11583,8 +11583,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11611,7 +11611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11649,11 +11649,11 @@ }, { "x": 725, - "y": 187.73575476702598 + "y": 187.73575 }, { "x": 700, - "y": 162.73575476702598 + "y": 162.73575 }, { "category": 1, @@ -11671,7 +11671,7 @@ }, { "x": 712.5, - "y": 175.23575476702598 + "y": 175.23575 }, { "x": 0, @@ -11679,7 +11679,7 @@ }, { "x": 712.5, - "y": 172.3284840519903 + "y": 172.32848 }, { "endCol": 15, @@ -11703,7 +11703,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11724,28 +11724,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 162.73575476702598 + "y": 162.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 187.73575476702598 + "y": 187.73575 }, { "angle": 0, @@ -11773,8 +11773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11801,7 +11801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11839,11 +11839,11 @@ }, { "x": 125, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 100, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -11861,7 +11861,7 @@ }, { "x": 112.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -11869,7 +11869,7 @@ }, { "x": 112.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 2, @@ -11893,7 +11893,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -11914,28 +11914,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -11963,8 +11963,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -11991,7 +11991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12029,11 +12029,11 @@ }, { "x": 150, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 125, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -12051,7 +12051,7 @@ }, { "x": 137.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -12059,7 +12059,7 @@ }, { "x": 137.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 3, @@ -12083,7 +12083,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12104,28 +12104,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -12153,8 +12153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12181,7 +12181,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12219,11 +12219,11 @@ }, { "x": 175, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 150, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -12241,7 +12241,7 @@ }, { "x": 162.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -12249,7 +12249,7 @@ }, { "x": 162.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 3, @@ -12273,7 +12273,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12294,28 +12294,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -12343,8 +12343,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12371,7 +12371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12409,11 +12409,11 @@ }, { "x": 200, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 175, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -12431,7 +12431,7 @@ }, { "x": 187.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -12439,7 +12439,7 @@ }, { "x": 187.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 4, @@ -12463,7 +12463,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12484,28 +12484,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -12533,8 +12533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12561,7 +12561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12599,11 +12599,11 @@ }, { "x": 225, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 200, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -12621,7 +12621,7 @@ }, { "x": 212.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -12629,7 +12629,7 @@ }, { "x": 212.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 4, @@ -12653,7 +12653,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12674,28 +12674,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -12723,8 +12723,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12751,7 +12751,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12789,11 +12789,11 @@ }, { "x": 250, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 225, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -12811,7 +12811,7 @@ }, { "x": 237.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -12819,7 +12819,7 @@ }, { "x": 237.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 5, @@ -12843,7 +12843,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -12864,28 +12864,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -12913,8 +12913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -12941,7 +12941,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12979,11 +12979,11 @@ }, { "x": 275, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 250, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -13001,7 +13001,7 @@ }, { "x": 262.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -13009,7 +13009,7 @@ }, { "x": 262.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 5, @@ -13033,7 +13033,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13054,28 +13054,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -13103,8 +13103,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13131,7 +13131,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13169,11 +13169,11 @@ }, { "x": 300, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 275, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -13191,7 +13191,7 @@ }, { "x": 287.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -13199,7 +13199,7 @@ }, { "x": 287.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 6, @@ -13223,7 +13223,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13244,28 +13244,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -13293,8 +13293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13321,7 +13321,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13359,11 +13359,11 @@ }, { "x": 325, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 300, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -13381,7 +13381,7 @@ }, { "x": 312.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -13389,7 +13389,7 @@ }, { "x": 312.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 6, @@ -13413,7 +13413,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13434,28 +13434,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -13483,8 +13483,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13511,7 +13511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13549,11 +13549,11 @@ }, { "x": 350, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 325, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -13571,7 +13571,7 @@ }, { "x": 337.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -13579,7 +13579,7 @@ }, { "x": 337.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 7, @@ -13603,7 +13603,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13624,28 +13624,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -13673,8 +13673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 65, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13701,7 +13701,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13739,11 +13739,11 @@ }, { "x": 375, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 350, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -13761,7 +13761,7 @@ }, { "x": 362.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -13769,7 +13769,7 @@ }, { "x": 362.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 7, @@ -13793,7 +13793,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -13814,28 +13814,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -13863,8 +13863,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 66, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -13891,7 +13891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13929,11 +13929,11 @@ }, { "x": 400, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 375, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -13951,7 +13951,7 @@ }, { "x": 387.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -13959,7 +13959,7 @@ }, { "x": 387.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 8, @@ -13983,7 +13983,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14004,28 +14004,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -14053,8 +14053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 67, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14081,7 +14081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14119,11 +14119,11 @@ }, { "x": 425, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 400, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -14141,7 +14141,7 @@ }, { "x": 412.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -14149,7 +14149,7 @@ }, { "x": 412.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 8, @@ -14173,7 +14173,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14194,28 +14194,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -14243,8 +14243,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 68, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14271,7 +14271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14309,11 +14309,11 @@ }, { "x": 450, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 425, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -14331,7 +14331,7 @@ }, { "x": 437.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -14339,7 +14339,7 @@ }, { "x": 437.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 9, @@ -14363,7 +14363,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14384,28 +14384,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -14433,8 +14433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 69, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14461,7 +14461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14499,11 +14499,11 @@ }, { "x": 475, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 450, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -14521,7 +14521,7 @@ }, { "x": 462.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -14529,7 +14529,7 @@ }, { "x": 462.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 9, @@ -14553,7 +14553,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14574,28 +14574,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -14623,8 +14623,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 70, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14651,7 +14651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14689,11 +14689,11 @@ }, { "x": 500, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 475, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -14711,7 +14711,7 @@ }, { "x": 487.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -14719,7 +14719,7 @@ }, { "x": 487.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 10, @@ -14743,7 +14743,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14764,28 +14764,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -14813,8 +14813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 71, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -14841,7 +14841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14879,11 +14879,11 @@ }, { "x": 525, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 500, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -14901,7 +14901,7 @@ }, { "x": 512.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -14909,7 +14909,7 @@ }, { "x": 512.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 10, @@ -14933,7 +14933,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -14954,28 +14954,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -15003,8 +15003,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 72, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15031,7 +15031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15069,11 +15069,11 @@ }, { "x": 550, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 525, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -15091,7 +15091,7 @@ }, { "x": 537.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -15099,7 +15099,7 @@ }, { "x": 537.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 11, @@ -15123,7 +15123,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15144,28 +15144,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -15193,8 +15193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 73, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15221,7 +15221,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15259,11 +15259,11 @@ }, { "x": 575, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 550, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -15281,7 +15281,7 @@ }, { "x": 562.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -15289,7 +15289,7 @@ }, { "x": 562.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 11, @@ -15313,7 +15313,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15334,28 +15334,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -15383,8 +15383,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 74, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15411,7 +15411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15449,11 +15449,11 @@ }, { "x": 600, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 575, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -15471,7 +15471,7 @@ }, { "x": 587.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -15479,7 +15479,7 @@ }, { "x": 587.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 12, @@ -15503,7 +15503,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15524,28 +15524,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -15573,8 +15573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 75, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15601,7 +15601,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15639,11 +15639,11 @@ }, { "x": 625, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 600, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -15661,7 +15661,7 @@ }, { "x": 612.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -15669,7 +15669,7 @@ }, { "x": 612.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 13, @@ -15693,7 +15693,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15714,28 +15714,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -15763,8 +15763,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 76, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15791,7 +15791,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15829,11 +15829,11 @@ }, { "x": 650, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 625, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -15851,7 +15851,7 @@ }, { "x": 637.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -15859,7 +15859,7 @@ }, { "x": 637.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 13, @@ -15883,7 +15883,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -15904,28 +15904,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -15953,8 +15953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 77, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -15981,7 +15981,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16019,11 +16019,11 @@ }, { "x": 675, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 650, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -16041,7 +16041,7 @@ }, { "x": 662.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -16049,7 +16049,7 @@ }, { "x": 662.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 14, @@ -16073,7 +16073,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16094,28 +16094,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -16143,8 +16143,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 78, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16171,7 +16171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16209,11 +16209,11 @@ }, { "x": 700, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 675, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -16231,7 +16231,7 @@ }, { "x": 687.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -16239,7 +16239,7 @@ }, { "x": 687.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 14, @@ -16263,7 +16263,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16284,28 +16284,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -16333,8 +16333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 79, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16361,7 +16361,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16399,11 +16399,11 @@ }, { "x": 725, - "y": 212.73575476702598 + "y": 212.73575 }, { "x": 700, - "y": 187.73575476702598 + "y": 187.73575 }, { "category": 1, @@ -16421,7 +16421,7 @@ }, { "x": 712.5, - "y": 200.23575476702598 + "y": 200.23575 }, { "x": 0, @@ -16429,7 +16429,7 @@ }, { "x": 712.5, - "y": 197.3284840519903 + "y": 197.32848 }, { "endCol": 15, @@ -16453,7 +16453,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16474,28 +16474,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 187.73575476702598 + "y": 187.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 212.73575476702598 + "y": 212.73575 }, { "angle": 0, @@ -16523,8 +16523,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 80, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16551,7 +16551,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16589,11 +16589,11 @@ }, { "x": 125, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 100, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -16611,7 +16611,7 @@ }, { "x": 112.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -16619,7 +16619,7 @@ }, { "x": 112.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 2, @@ -16643,7 +16643,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16664,28 +16664,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -16713,8 +16713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 81, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16741,7 +16741,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16779,11 +16779,11 @@ }, { "x": 150, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 125, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -16801,7 +16801,7 @@ }, { "x": 137.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -16809,7 +16809,7 @@ }, { "x": 137.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 3, @@ -16833,7 +16833,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -16854,28 +16854,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -16903,8 +16903,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 82, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -16931,7 +16931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16969,11 +16969,11 @@ }, { "x": 175, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 150, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -16991,7 +16991,7 @@ }, { "x": 162.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -16999,7 +16999,7 @@ }, { "x": 162.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 3, @@ -17023,7 +17023,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17044,28 +17044,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -17093,8 +17093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 83, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17121,7 +17121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17159,11 +17159,11 @@ }, { "x": 200, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 175, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -17181,7 +17181,7 @@ }, { "x": 187.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17189,7 +17189,7 @@ }, { "x": 187.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 4, @@ -17213,7 +17213,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17234,28 +17234,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -17283,8 +17283,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 84, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17311,7 +17311,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17349,11 +17349,11 @@ }, { "x": 225, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 200, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -17371,7 +17371,7 @@ }, { "x": 212.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17379,7 +17379,7 @@ }, { "x": 212.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 4, @@ -17403,7 +17403,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17424,28 +17424,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -17473,8 +17473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 85, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17501,7 +17501,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17539,11 +17539,11 @@ }, { "x": 250, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 225, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -17561,7 +17561,7 @@ }, { "x": 237.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17569,7 +17569,7 @@ }, { "x": 237.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 5, @@ -17593,7 +17593,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17614,28 +17614,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -17663,8 +17663,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 86, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17691,7 +17691,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17729,11 +17729,11 @@ }, { "x": 275, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 250, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -17751,7 +17751,7 @@ }, { "x": 262.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17759,7 +17759,7 @@ }, { "x": 262.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 5, @@ -17783,7 +17783,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17804,28 +17804,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -17853,8 +17853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 87, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -17881,7 +17881,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17919,11 +17919,11 @@ }, { "x": 300, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 275, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -17941,7 +17941,7 @@ }, { "x": 287.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -17949,7 +17949,7 @@ }, { "x": 287.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 6, @@ -17973,7 +17973,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -17994,28 +17994,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -18043,8 +18043,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 88, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18071,7 +18071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18109,11 +18109,11 @@ }, { "x": 325, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 300, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -18131,7 +18131,7 @@ }, { "x": 312.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18139,7 +18139,7 @@ }, { "x": 312.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 6, @@ -18163,7 +18163,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18184,28 +18184,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -18233,8 +18233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 89, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18261,7 +18261,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18299,11 +18299,11 @@ }, { "x": 350, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 325, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -18321,7 +18321,7 @@ }, { "x": 337.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18329,7 +18329,7 @@ }, { "x": 337.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 7, @@ -18353,7 +18353,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18374,28 +18374,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -18423,8 +18423,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 90, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18451,7 +18451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18489,11 +18489,11 @@ }, { "x": 375, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 350, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -18511,7 +18511,7 @@ }, { "x": 362.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18519,7 +18519,7 @@ }, { "x": 362.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 7, @@ -18543,7 +18543,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18564,28 +18564,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -18613,8 +18613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 91, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18641,7 +18641,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18679,11 +18679,11 @@ }, { "x": 400, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 375, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -18701,7 +18701,7 @@ }, { "x": 387.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18709,7 +18709,7 @@ }, { "x": 387.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 8, @@ -18733,7 +18733,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18754,28 +18754,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -18803,8 +18803,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 92, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -18831,7 +18831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18869,11 +18869,11 @@ }, { "x": 425, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 400, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -18891,7 +18891,7 @@ }, { "x": 412.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -18899,7 +18899,7 @@ }, { "x": 412.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 8, @@ -18923,7 +18923,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -18944,28 +18944,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -18993,8 +18993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 93, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19021,7 +19021,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19059,11 +19059,11 @@ }, { "x": 450, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 425, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -19081,7 +19081,7 @@ }, { "x": 437.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -19089,7 +19089,7 @@ }, { "x": 437.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 9, @@ -19113,7 +19113,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -19134,28 +19134,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -19183,8 +19183,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 94, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19211,7 +19211,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19249,11 +19249,11 @@ }, { "x": 475, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 450, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -19271,7 +19271,7 @@ }, { "x": 462.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -19279,7 +19279,7 @@ }, { "x": 462.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 9, @@ -19303,7 +19303,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -19324,28 +19324,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -19373,8 +19373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 95, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19401,7 +19401,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19439,11 +19439,11 @@ }, { "x": 500, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 475, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -19461,7 +19461,7 @@ }, { "x": 487.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -19469,7 +19469,7 @@ }, { "x": 487.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 10, @@ -19493,7 +19493,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -19514,28 +19514,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -19563,8 +19563,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 96, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19591,7 +19591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19629,11 +19629,11 @@ }, { "x": 525, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 500, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -19651,7 +19651,7 @@ }, { "x": 512.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -19659,7 +19659,7 @@ }, { "x": 512.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 10, @@ -19683,7 +19683,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -19704,28 +19704,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -19753,8 +19753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 97, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19781,7 +19781,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19819,11 +19819,11 @@ }, { "x": 550, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 525, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -19841,7 +19841,7 @@ }, { "x": 537.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -19849,7 +19849,7 @@ }, { "x": 537.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 11, @@ -19873,7 +19873,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -19894,28 +19894,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -19943,8 +19943,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 98, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -19971,7 +19971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20009,11 +20009,11 @@ }, { "x": 575, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 550, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -20031,7 +20031,7 @@ }, { "x": 562.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -20039,7 +20039,7 @@ }, { "x": 562.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 11, @@ -20063,7 +20063,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -20084,28 +20084,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -20133,8 +20133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 99, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20161,7 +20161,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20199,11 +20199,11 @@ }, { "x": 600, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 575, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -20221,7 +20221,7 @@ }, { "x": 587.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -20229,7 +20229,7 @@ }, { "x": 587.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 12, @@ -20253,7 +20253,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -20274,28 +20274,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -20323,8 +20323,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 100, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20351,7 +20351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20389,11 +20389,11 @@ }, { "x": 625, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 600, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -20411,7 +20411,7 @@ }, { "x": 612.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -20419,7 +20419,7 @@ }, { "x": 612.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 13, @@ -20443,7 +20443,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -20464,28 +20464,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -20513,8 +20513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 101, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20541,7 +20541,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20579,11 +20579,11 @@ }, { "x": 650, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 625, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -20601,7 +20601,7 @@ }, { "x": 637.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -20609,7 +20609,7 @@ }, { "x": 637.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 13, @@ -20633,7 +20633,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -20654,28 +20654,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -20703,8 +20703,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 102, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20731,7 +20731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20769,11 +20769,11 @@ }, { "x": 675, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 650, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -20791,7 +20791,7 @@ }, { "x": 662.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -20799,7 +20799,7 @@ }, { "x": 662.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 14, @@ -20823,7 +20823,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -20844,28 +20844,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -20893,8 +20893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 103, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -20921,7 +20921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20959,11 +20959,11 @@ }, { "x": 700, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 675, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -20981,7 +20981,7 @@ }, { "x": 687.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -20989,7 +20989,7 @@ }, { "x": 687.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 14, @@ -21013,7 +21013,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -21034,28 +21034,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -21083,8 +21083,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 104, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21111,7 +21111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21149,11 +21149,11 @@ }, { "x": 725, - "y": 237.73575476702598 + "y": 237.73575 }, { "x": 700, - "y": 212.73575476702598 + "y": 212.73575 }, { "category": 1, @@ -21171,7 +21171,7 @@ }, { "x": 712.5, - "y": 225.23575476702598 + "y": 225.23575 }, { "x": 0, @@ -21179,7 +21179,7 @@ }, { "x": 712.5, - "y": 222.3284840519903 + "y": 222.32848 }, { "endCol": 15, @@ -21203,7 +21203,7 @@ }, { "x": 0, - "y": 2.9072707150356862 + "y": 2.90727 }, [ { @@ -21224,28 +21224,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 212.73575476702598 + "y": 212.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 237.73575476702598 + "y": 237.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 237.73575476702598 + "y": 237.73575 }, { "angle": 0, @@ -21273,8 +21273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 105, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21301,7 +21301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21339,11 +21339,11 @@ }, { "x": 125, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 100, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -21361,15 +21361,15 @@ }, { "x": 112.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 112.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 2, @@ -21393,7 +21393,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21414,28 +21414,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -21463,8 +21463,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 106, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21491,7 +21491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21529,11 +21529,11 @@ }, { "x": 150, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 125, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -21551,15 +21551,15 @@ }, { "x": 137.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 137.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 3, @@ -21583,7 +21583,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21604,28 +21604,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -21653,8 +21653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 107, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21681,7 +21681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21719,11 +21719,11 @@ }, { "x": 175, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 150, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -21741,15 +21741,15 @@ }, { "x": 162.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 162.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 3, @@ -21773,7 +21773,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21794,28 +21794,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -21843,8 +21843,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 108, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -21871,7 +21871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21909,11 +21909,11 @@ }, { "x": 200, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 175, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -21931,15 +21931,15 @@ }, { "x": 187.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 187.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 4, @@ -21963,7 +21963,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -21984,28 +21984,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -22033,8 +22033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 109, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22061,7 +22061,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22099,11 +22099,11 @@ }, { "x": 225, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 200, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -22121,15 +22121,15 @@ }, { "x": 212.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 212.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 4, @@ -22153,7 +22153,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -22174,28 +22174,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -22223,8 +22223,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 110, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22251,7 +22251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22289,11 +22289,11 @@ }, { "x": 250, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 225, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -22311,15 +22311,15 @@ }, { "x": 237.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 237.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 5, @@ -22343,7 +22343,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -22364,28 +22364,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -22413,8 +22413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 111, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22441,7 +22441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22479,11 +22479,11 @@ }, { "x": 275, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 250, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -22501,15 +22501,15 @@ }, { "x": 262.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 262.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 5, @@ -22533,7 +22533,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -22554,28 +22554,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -22603,8 +22603,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 112, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22631,7 +22631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22669,11 +22669,11 @@ }, { "x": 300, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 275, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -22691,15 +22691,15 @@ }, { "x": 287.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 287.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 6, @@ -22723,7 +22723,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -22744,28 +22744,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -22793,8 +22793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 113, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -22821,7 +22821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22859,11 +22859,11 @@ }, { "x": 325, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 300, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -22881,15 +22881,15 @@ }, { "x": 312.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 312.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 6, @@ -22913,7 +22913,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -22934,28 +22934,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -22983,8 +22983,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 114, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23011,7 +23011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23049,11 +23049,11 @@ }, { "x": 350, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 325, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -23071,15 +23071,15 @@ }, { "x": 337.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 337.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 7, @@ -23103,7 +23103,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -23124,28 +23124,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -23173,8 +23173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 115, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23201,7 +23201,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23239,11 +23239,11 @@ }, { "x": 375, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 350, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -23261,15 +23261,15 @@ }, { "x": 362.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 362.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 7, @@ -23293,7 +23293,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -23314,28 +23314,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -23363,8 +23363,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 116, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23391,7 +23391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23429,11 +23429,11 @@ }, { "x": 400, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 375, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -23451,15 +23451,15 @@ }, { "x": 387.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 387.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 8, @@ -23483,7 +23483,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -23504,28 +23504,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -23553,8 +23553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 117, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23581,7 +23581,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23619,11 +23619,11 @@ }, { "x": 425, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 400, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -23641,15 +23641,15 @@ }, { "x": 412.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 412.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 8, @@ -23673,7 +23673,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -23694,28 +23694,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -23743,8 +23743,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 118, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23771,7 +23771,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23809,11 +23809,11 @@ }, { "x": 450, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 425, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -23831,15 +23831,15 @@ }, { "x": 437.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 437.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 9, @@ -23863,7 +23863,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -23884,28 +23884,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -23933,8 +23933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 119, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -23961,7 +23961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -23999,11 +23999,11 @@ }, { "x": 475, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 450, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -24021,15 +24021,15 @@ }, { "x": 462.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 462.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 9, @@ -24053,7 +24053,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -24074,28 +24074,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -24123,8 +24123,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 120, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24151,7 +24151,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24189,11 +24189,11 @@ }, { "x": 500, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 475, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -24211,15 +24211,15 @@ }, { "x": 487.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 487.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 10, @@ -24243,7 +24243,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -24264,28 +24264,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -24313,8 +24313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 121, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24341,7 +24341,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24379,11 +24379,11 @@ }, { "x": 525, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 500, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -24401,15 +24401,15 @@ }, { "x": 512.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 512.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 10, @@ -24433,7 +24433,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -24454,28 +24454,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -24503,8 +24503,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 122, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24531,7 +24531,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24569,11 +24569,11 @@ }, { "x": 550, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 525, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -24591,15 +24591,15 @@ }, { "x": 537.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 537.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 11, @@ -24623,7 +24623,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -24644,28 +24644,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -24693,8 +24693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 123, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24721,7 +24721,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24759,11 +24759,11 @@ }, { "x": 575, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 550, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -24781,15 +24781,15 @@ }, { "x": 562.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 562.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 11, @@ -24813,7 +24813,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -24834,28 +24834,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -24883,8 +24883,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 124, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -24911,7 +24911,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -24949,11 +24949,11 @@ }, { "x": 600, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 575, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -24971,15 +24971,15 @@ }, { "x": 587.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 587.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 12, @@ -25003,7 +25003,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -25024,28 +25024,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -25073,8 +25073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 125, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25101,7 +25101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25139,11 +25139,11 @@ }, { "x": 625, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 600, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -25161,15 +25161,15 @@ }, { "x": 612.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 612.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 13, @@ -25193,7 +25193,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -25214,28 +25214,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -25263,8 +25263,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 126, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25291,7 +25291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25329,11 +25329,11 @@ }, { "x": 650, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 625, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -25351,15 +25351,15 @@ }, { "x": 637.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 637.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 13, @@ -25383,7 +25383,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -25404,28 +25404,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -25453,8 +25453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 127, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25481,7 +25481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25519,11 +25519,11 @@ }, { "x": 675, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 650, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -25541,15 +25541,15 @@ }, { "x": 662.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 662.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 14, @@ -25573,7 +25573,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -25594,28 +25594,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -25643,8 +25643,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 128, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25671,7 +25671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25709,11 +25709,11 @@ }, { "x": 700, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 675, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -25731,15 +25731,15 @@ }, { "x": 687.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 687.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 14, @@ -25763,7 +25763,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -25784,28 +25784,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -25833,8 +25833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 129, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -25861,7 +25861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.90727071503563, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -25899,11 +25899,11 @@ }, { "x": 725, - "y": 265.73284895951724 + "y": 265.73285 }, { "x": 700, - "y": 237.82557824448162 + "y": 237.82558 }, { "category": 1, @@ -25921,15 +25921,15 @@ }, { "x": 712.5, - "y": 250.32557824448162 + "y": 250.32558 }, { "x": 0, - "y": 0.0043606346096298765 + "y": 0.00436 }, { "x": 712.5, - "y": 247.418307529446 + "y": 247.41831 }, { "endCol": 15, @@ -25953,7 +25953,7 @@ }, { "x": 0, - "y": 2.9072707150356223 + "y": 2.90727 }, [ { @@ -25974,28 +25974,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 237.82557824448162 + "y": 237.82558 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 262.8255782444816 + "y": 262.82558 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 262.8255782444816 + "y": 262.82558 }, { "angle": 0, @@ -26023,8 +26023,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 130, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26051,7 +26051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26089,11 +26089,11 @@ }, { "x": 125, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 100, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -26111,15 +26111,15 @@ }, { "x": 112.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 112.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 2, @@ -26143,7 +26143,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26164,28 +26164,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -26213,8 +26213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 131, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26241,7 +26241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26279,11 +26279,11 @@ }, { "x": 150, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 125, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -26301,15 +26301,15 @@ }, { "x": 137.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 137.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 3, @@ -26333,7 +26333,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26354,28 +26354,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -26403,8 +26403,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 132, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26431,7 +26431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26469,11 +26469,11 @@ }, { "x": 175, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 150, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -26491,15 +26491,15 @@ }, { "x": 162.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 162.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 3, @@ -26523,7 +26523,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26544,28 +26544,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -26593,8 +26593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 133, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26621,7 +26621,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26659,11 +26659,11 @@ }, { "x": 200, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 175, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -26681,15 +26681,15 @@ }, { "x": 187.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 187.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 4, @@ -26713,7 +26713,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26734,28 +26734,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -26783,8 +26783,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 134, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -26811,7 +26811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -26849,11 +26849,11 @@ }, { "x": 225, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 200, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -26871,15 +26871,15 @@ }, { "x": 212.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 212.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 4, @@ -26903,7 +26903,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -26924,28 +26924,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -26973,8 +26973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 135, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27001,7 +27001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27039,11 +27039,11 @@ }, { "x": 250, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 225, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -27061,15 +27061,15 @@ }, { "x": 237.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 237.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 5, @@ -27093,7 +27093,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27114,28 +27114,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -27163,8 +27163,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 136, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27191,7 +27191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27229,11 +27229,11 @@ }, { "x": 275, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 250, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -27251,15 +27251,15 @@ }, { "x": 262.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 262.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 5, @@ -27283,7 +27283,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27304,28 +27304,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -27353,8 +27353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 137, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27381,7 +27381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27419,11 +27419,11 @@ }, { "x": 300, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 275, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -27441,15 +27441,15 @@ }, { "x": 287.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 287.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 6, @@ -27473,7 +27473,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27494,28 +27494,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -27543,8 +27543,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 138, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27571,7 +27571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27609,11 +27609,11 @@ }, { "x": 325, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 300, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -27631,15 +27631,15 @@ }, { "x": 312.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 312.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 6, @@ -27663,7 +27663,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27684,28 +27684,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -27733,8 +27733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 139, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27761,7 +27761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27799,11 +27799,11 @@ }, { "x": 350, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 325, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -27821,15 +27821,15 @@ }, { "x": 337.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 337.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 7, @@ -27853,7 +27853,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -27874,28 +27874,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -27923,8 +27923,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 140, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -27951,7 +27951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -27989,11 +27989,11 @@ }, { "x": 375, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 350, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -28011,15 +28011,15 @@ }, { "x": 362.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 362.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 7, @@ -28043,7 +28043,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28064,28 +28064,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -28113,8 +28113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 141, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28141,7 +28141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28179,11 +28179,11 @@ }, { "x": 400, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 375, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -28201,15 +28201,15 @@ }, { "x": 387.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 387.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 8, @@ -28233,7 +28233,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28254,28 +28254,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -28303,8 +28303,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 142, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28331,7 +28331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28369,11 +28369,11 @@ }, { "x": 425, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 400, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -28391,15 +28391,15 @@ }, { "x": 412.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 412.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 8, @@ -28423,7 +28423,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28444,28 +28444,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -28493,8 +28493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 143, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28521,7 +28521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28559,11 +28559,11 @@ }, { "x": 450, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 425, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -28581,15 +28581,15 @@ }, { "x": 437.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 437.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 9, @@ -28613,7 +28613,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28634,28 +28634,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -28683,8 +28683,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 144, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28711,7 +28711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28749,11 +28749,11 @@ }, { "x": 475, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 450, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -28771,15 +28771,15 @@ }, { "x": 462.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 462.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 9, @@ -28803,7 +28803,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -28824,28 +28824,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -28873,8 +28873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 145, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -28901,7 +28901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -28939,11 +28939,11 @@ }, { "x": 500, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 475, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -28961,15 +28961,15 @@ }, { "x": 487.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 487.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 10, @@ -28993,7 +28993,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -29014,28 +29014,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -29063,8 +29063,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 146, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29091,7 +29091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29129,11 +29129,11 @@ }, { "x": 525, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 500, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -29151,15 +29151,15 @@ }, { "x": 512.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 512.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 10, @@ -29183,7 +29183,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -29204,28 +29204,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -29253,8 +29253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 147, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29281,7 +29281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29319,11 +29319,11 @@ }, { "x": 550, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 525, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -29341,15 +29341,15 @@ }, { "x": 537.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 537.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 11, @@ -29373,7 +29373,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -29394,28 +29394,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -29443,8 +29443,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 148, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29471,7 +29471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29509,11 +29509,11 @@ }, { "x": 575, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 550, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -29531,15 +29531,15 @@ }, { "x": 562.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 562.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 11, @@ -29563,7 +29563,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -29584,28 +29584,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -29633,8 +29633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 149, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29661,7 +29661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29699,11 +29699,11 @@ }, { "x": 600, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 575, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -29721,15 +29721,15 @@ }, { "x": 587.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 587.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 12, @@ -29753,7 +29753,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -29774,28 +29774,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -29823,8 +29823,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 150, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -29851,7 +29851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -29889,11 +29889,11 @@ }, { "x": 625, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 600, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -29911,15 +29911,15 @@ }, { "x": 612.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 612.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 13, @@ -29943,7 +29943,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -29964,28 +29964,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -30013,8 +30013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 151, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30041,7 +30041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30079,11 +30079,11 @@ }, { "x": 650, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 625, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -30101,15 +30101,15 @@ }, { "x": 637.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 637.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 13, @@ -30133,7 +30133,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -30154,28 +30154,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -30203,8 +30203,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 152, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30231,7 +30231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30269,11 +30269,11 @@ }, { "x": 675, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 650, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -30291,15 +30291,15 @@ }, { "x": 662.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 662.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 14, @@ -30323,7 +30323,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -30344,28 +30344,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -30393,8 +30393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 153, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30421,7 +30421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30459,11 +30459,11 @@ }, { "x": 700, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 675, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -30481,15 +30481,15 @@ }, { "x": 687.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 687.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 14, @@ -30513,7 +30513,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -30534,28 +30534,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -30583,8 +30583,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 154, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30611,7 +30611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30649,11 +30649,11 @@ }, { "x": 725, - "y": 290.682851035186 + "y": 290.68285 }, { "x": 700, - "y": 262.7755803201504 + "y": 262.77558 }, { "category": 1, @@ -30671,15 +30671,15 @@ }, { "x": 712.5, - "y": 275.2755803201503 + "y": 275.27558 }, { "x": 0, - "y": 0.004377931191944888 + "y": 0.00438 }, { "x": 712.5, - "y": 272.36830960511463 + "y": 272.36831 }, { "endCol": 15, @@ -30703,7 +30703,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -30724,28 +30724,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 262.7755803201504 + "y": 262.77558 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 287.7755803201503 + "y": 287.77558 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 287.7755803201503 + "y": 287.77558 }, { "angle": 0, @@ -30773,8 +30773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 155, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30801,7 +30801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -30839,11 +30839,11 @@ }, { "x": 125, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 100, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -30861,15 +30861,15 @@ }, { "x": 112.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 112.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 2, @@ -30893,7 +30893,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -30914,28 +30914,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -30963,8 +30963,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 156, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -30991,7 +30991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31029,11 +31029,11 @@ }, { "x": 150, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 125, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -31051,15 +31051,15 @@ }, { "x": 137.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 137.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 3, @@ -31083,7 +31083,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -31104,28 +31104,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -31153,8 +31153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 157, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31181,7 +31181,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31219,11 +31219,11 @@ }, { "x": 175, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 150, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -31241,15 +31241,15 @@ }, { "x": 162.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 162.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 3, @@ -31273,7 +31273,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -31294,28 +31294,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -31343,8 +31343,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 158, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31371,7 +31371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31409,11 +31409,11 @@ }, { "x": 200, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 175, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -31431,15 +31431,15 @@ }, { "x": 187.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 187.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 4, @@ -31463,7 +31463,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -31484,28 +31484,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -31533,8 +31533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 159, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31561,7 +31561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31599,11 +31599,11 @@ }, { "x": 225, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 200, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -31621,15 +31621,15 @@ }, { "x": 212.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 212.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 4, @@ -31653,7 +31653,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -31674,28 +31674,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -31723,8 +31723,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 160, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31751,7 +31751,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31789,11 +31789,11 @@ }, { "x": 250, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 225, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -31811,15 +31811,15 @@ }, { "x": 237.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 237.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 5, @@ -31843,7 +31843,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -31864,28 +31864,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -31913,8 +31913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 161, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -31941,7 +31941,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -31979,11 +31979,11 @@ }, { "x": 275, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 250, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -32001,15 +32001,15 @@ }, { "x": 262.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 262.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 5, @@ -32033,7 +32033,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -32054,28 +32054,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -32103,8 +32103,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 162, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32131,7 +32131,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32169,11 +32169,11 @@ }, { "x": 300, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 275, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -32191,15 +32191,15 @@ }, { "x": 287.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 287.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 6, @@ -32223,7 +32223,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -32244,28 +32244,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -32293,8 +32293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 163, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32321,7 +32321,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32359,11 +32359,11 @@ }, { "x": 325, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 300, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -32381,15 +32381,15 @@ }, { "x": 312.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 312.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 6, @@ -32413,7 +32413,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -32434,28 +32434,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -32483,8 +32483,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 164, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32511,7 +32511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32549,11 +32549,11 @@ }, { "x": 350, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 325, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -32571,15 +32571,15 @@ }, { "x": 337.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 337.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 7, @@ -32603,7 +32603,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -32624,28 +32624,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -32673,8 +32673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 165, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32701,7 +32701,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32739,11 +32739,11 @@ }, { "x": 375, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 350, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -32761,15 +32761,15 @@ }, { "x": 362.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 362.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 7, @@ -32793,7 +32793,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -32814,28 +32814,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -32863,8 +32863,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 166, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -32891,7 +32891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -32929,11 +32929,11 @@ }, { "x": 400, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 375, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -32951,15 +32951,15 @@ }, { "x": 387.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 387.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 8, @@ -32983,7 +32983,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -33004,28 +33004,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -33053,8 +33053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 167, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33081,7 +33081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33119,11 +33119,11 @@ }, { "x": 425, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 400, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -33141,15 +33141,15 @@ }, { "x": 412.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 412.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 8, @@ -33173,7 +33173,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -33194,28 +33194,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -33243,8 +33243,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 168, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33271,7 +33271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33309,11 +33309,11 @@ }, { "x": 450, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 425, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -33331,15 +33331,15 @@ }, { "x": 437.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 437.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 9, @@ -33363,7 +33363,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -33384,28 +33384,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -33433,8 +33433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 169, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33461,7 +33461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33499,11 +33499,11 @@ }, { "x": 475, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 450, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -33521,15 +33521,15 @@ }, { "x": 462.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 462.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 9, @@ -33553,7 +33553,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -33574,28 +33574,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -33623,8 +33623,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 170, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33651,7 +33651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33689,11 +33689,11 @@ }, { "x": 500, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 475, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -33711,15 +33711,15 @@ }, { "x": 487.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 487.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 10, @@ -33743,7 +33743,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -33764,28 +33764,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -33813,8 +33813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 171, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -33841,7 +33841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -33879,11 +33879,11 @@ }, { "x": 525, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 500, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -33901,15 +33901,15 @@ }, { "x": 512.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 512.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 10, @@ -33933,7 +33933,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -33954,28 +33954,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -34003,8 +34003,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 172, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34031,7 +34031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34069,11 +34069,11 @@ }, { "x": 550, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 525, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -34091,15 +34091,15 @@ }, { "x": 537.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 537.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 11, @@ -34123,7 +34123,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -34144,28 +34144,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -34193,8 +34193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 173, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34221,7 +34221,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34259,11 +34259,11 @@ }, { "x": 575, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 550, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -34281,15 +34281,15 @@ }, { "x": 562.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 562.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 11, @@ -34313,7 +34313,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -34334,28 +34334,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -34383,8 +34383,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 174, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34411,7 +34411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34449,11 +34449,11 @@ }, { "x": 600, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 575, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -34471,15 +34471,15 @@ }, { "x": 587.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 587.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 12, @@ -34503,7 +34503,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -34524,28 +34524,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -34573,8 +34573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 175, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34601,7 +34601,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34639,11 +34639,11 @@ }, { "x": 625, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 600, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -34661,15 +34661,15 @@ }, { "x": 612.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 612.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 13, @@ -34693,7 +34693,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -34714,28 +34714,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -34763,8 +34763,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 176, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34791,7 +34791,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -34829,11 +34829,11 @@ }, { "x": 650, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 625, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -34851,15 +34851,15 @@ }, { "x": 637.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 637.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 13, @@ -34883,7 +34883,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -34904,28 +34904,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -34953,8 +34953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 177, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -34981,7 +34981,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35019,11 +35019,11 @@ }, { "x": 675, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 650, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -35041,15 +35041,15 @@ }, { "x": 662.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 662.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 14, @@ -35073,7 +35073,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -35094,28 +35094,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -35143,8 +35143,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 178, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35171,7 +35171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35209,11 +35209,11 @@ }, { "x": 700, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 675, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -35231,15 +35231,15 @@ }, { "x": 687.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 687.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 14, @@ -35263,7 +35263,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -35284,28 +35284,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -35333,8 +35333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 179, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35361,7 +35361,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356583, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35399,11 +35399,11 @@ }, { "x": 725, - "y": 315.6328531108548 + "y": 315.63285 }, { "x": 700, - "y": 287.7255823958191 + "y": 287.72558 }, { "category": 1, @@ -35421,15 +35421,15 @@ }, { "x": 712.5, - "y": 300.2255823958191 + "y": 300.22558 }, { "x": 0, - "y": 0.0043952277743691094 + "y": 0.0044 }, { "x": 712.5, - "y": 297.31831168078344 + "y": 297.31831 }, { "endCol": 15, @@ -35453,7 +35453,7 @@ }, { "x": 0, - "y": 2.907270715035679 + "y": 2.90727 }, [ { @@ -35474,28 +35474,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 287.7255823958191 + "y": 287.72558 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 312.7255823958191 + "y": 312.72558 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 312.7255823958191 + "y": 312.72558 }, { "angle": 0, @@ -35523,8 +35523,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 180, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35551,7 +35551,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35589,11 +35589,11 @@ }, { "x": 125, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 100, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -35611,7 +35611,7 @@ }, { "x": 112.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -35619,7 +35619,7 @@ }, { "x": 112.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 2, @@ -35643,7 +35643,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -35664,28 +35664,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -35713,8 +35713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 181, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35741,7 +35741,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35779,11 +35779,11 @@ }, { "x": 150, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 125, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -35801,7 +35801,7 @@ }, { "x": 137.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -35809,7 +35809,7 @@ }, { "x": 137.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 3, @@ -35833,7 +35833,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -35854,28 +35854,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -35903,8 +35903,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 182, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -35931,7 +35931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -35969,11 +35969,11 @@ }, { "x": 175, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 150, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -35991,7 +35991,7 @@ }, { "x": 162.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -35999,7 +35999,7 @@ }, { "x": 162.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 3, @@ -36023,7 +36023,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36044,28 +36044,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -36093,8 +36093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 183, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36121,7 +36121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36159,11 +36159,11 @@ }, { "x": 200, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 175, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -36181,7 +36181,7 @@ }, { "x": 187.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -36189,7 +36189,7 @@ }, { "x": 187.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 4, @@ -36213,7 +36213,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36234,28 +36234,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -36283,8 +36283,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 184, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36311,7 +36311,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36349,11 +36349,11 @@ }, { "x": 225, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 200, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -36371,7 +36371,7 @@ }, { "x": 212.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -36379,7 +36379,7 @@ }, { "x": 212.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 4, @@ -36403,7 +36403,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36424,28 +36424,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -36473,8 +36473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 185, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36501,7 +36501,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36539,11 +36539,11 @@ }, { "x": 250, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 225, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -36561,7 +36561,7 @@ }, { "x": 237.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -36569,7 +36569,7 @@ }, { "x": 237.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 5, @@ -36593,7 +36593,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36614,28 +36614,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -36663,8 +36663,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 186, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36691,7 +36691,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36729,11 +36729,11 @@ }, { "x": 275, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 250, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -36751,7 +36751,7 @@ }, { "x": 262.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -36759,7 +36759,7 @@ }, { "x": 262.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 5, @@ -36783,7 +36783,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36804,28 +36804,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -36853,8 +36853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 187, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -36881,7 +36881,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -36919,11 +36919,11 @@ }, { "x": 300, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 275, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -36941,7 +36941,7 @@ }, { "x": 287.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -36949,7 +36949,7 @@ }, { "x": 287.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 6, @@ -36973,7 +36973,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -36994,28 +36994,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -37043,8 +37043,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 188, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37071,7 +37071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37109,11 +37109,11 @@ }, { "x": 325, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 300, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -37131,7 +37131,7 @@ }, { "x": 312.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -37139,7 +37139,7 @@ }, { "x": 312.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 6, @@ -37163,7 +37163,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -37184,28 +37184,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -37233,8 +37233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 189, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37261,7 +37261,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37299,11 +37299,11 @@ }, { "x": 350, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 325, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -37321,7 +37321,7 @@ }, { "x": 337.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -37329,7 +37329,7 @@ }, { "x": 337.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 7, @@ -37353,7 +37353,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -37374,28 +37374,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -37423,8 +37423,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 190, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37451,7 +37451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37489,11 +37489,11 @@ }, { "x": 375, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 350, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -37511,7 +37511,7 @@ }, { "x": 362.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -37519,7 +37519,7 @@ }, { "x": 362.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 7, @@ -37543,7 +37543,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -37564,28 +37564,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -37613,8 +37613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 191, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37641,7 +37641,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37679,11 +37679,11 @@ }, { "x": 400, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 375, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -37701,7 +37701,7 @@ }, { "x": 387.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -37709,7 +37709,7 @@ }, { "x": 387.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 8, @@ -37733,7 +37733,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -37754,28 +37754,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -37803,8 +37803,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 192, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -37831,7 +37831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -37869,11 +37869,11 @@ }, { "x": 425, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 400, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -37891,7 +37891,7 @@ }, { "x": 412.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -37899,7 +37899,7 @@ }, { "x": 412.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 8, @@ -37923,7 +37923,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -37944,28 +37944,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -37993,8 +37993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 193, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38021,7 +38021,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38059,11 +38059,11 @@ }, { "x": 450, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 425, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -38081,7 +38081,7 @@ }, { "x": 437.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -38089,7 +38089,7 @@ }, { "x": 437.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 9, @@ -38113,7 +38113,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -38134,28 +38134,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -38183,8 +38183,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 194, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38211,7 +38211,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38249,11 +38249,11 @@ }, { "x": 475, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 450, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -38271,7 +38271,7 @@ }, { "x": 462.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -38279,7 +38279,7 @@ }, { "x": 462.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 9, @@ -38303,7 +38303,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -38324,28 +38324,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -38373,8 +38373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 195, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38401,7 +38401,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38439,11 +38439,11 @@ }, { "x": 500, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 475, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -38461,7 +38461,7 @@ }, { "x": 487.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -38469,7 +38469,7 @@ }, { "x": 487.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 10, @@ -38493,7 +38493,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -38514,28 +38514,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -38563,8 +38563,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 196, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38591,7 +38591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38629,11 +38629,11 @@ }, { "x": 525, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 500, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -38651,7 +38651,7 @@ }, { "x": 512.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -38659,7 +38659,7 @@ }, { "x": 512.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 10, @@ -38683,7 +38683,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -38704,28 +38704,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -38753,8 +38753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 197, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38781,7 +38781,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -38819,11 +38819,11 @@ }, { "x": 550, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 525, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -38841,7 +38841,7 @@ }, { "x": 537.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -38849,7 +38849,7 @@ }, { "x": 537.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 11, @@ -38873,7 +38873,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -38894,28 +38894,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -38943,8 +38943,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 198, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -38971,7 +38971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39009,11 +39009,11 @@ }, { "x": 575, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 550, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -39031,7 +39031,7 @@ }, { "x": 562.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -39039,7 +39039,7 @@ }, { "x": 562.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 11, @@ -39063,7 +39063,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -39084,28 +39084,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -39133,8 +39133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 199, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39161,7 +39161,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39199,11 +39199,11 @@ }, { "x": 600, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 575, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -39221,7 +39221,7 @@ }, { "x": 587.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -39229,7 +39229,7 @@ }, { "x": 587.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 12, @@ -39253,7 +39253,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -39274,28 +39274,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -39323,8 +39323,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 200, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39351,7 +39351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39389,11 +39389,11 @@ }, { "x": 625, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 600, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -39411,7 +39411,7 @@ }, { "x": 612.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -39419,7 +39419,7 @@ }, { "x": 612.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 13, @@ -39443,7 +39443,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -39464,28 +39464,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -39513,8 +39513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 201, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39541,7 +39541,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39579,11 +39579,11 @@ }, { "x": 650, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 625, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -39601,7 +39601,7 @@ }, { "x": 637.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -39609,7 +39609,7 @@ }, { "x": 637.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 13, @@ -39633,7 +39633,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -39654,28 +39654,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -39703,8 +39703,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 202, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39731,7 +39731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39769,11 +39769,11 @@ }, { "x": 675, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 650, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -39791,7 +39791,7 @@ }, { "x": 662.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -39799,7 +39799,7 @@ }, { "x": 662.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 14, @@ -39823,7 +39823,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -39844,28 +39844,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -39893,8 +39893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 203, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -39921,7 +39921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -39959,11 +39959,11 @@ }, { "x": 700, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 675, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -39981,7 +39981,7 @@ }, { "x": 687.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -39989,7 +39989,7 @@ }, { "x": 687.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 14, @@ -40013,7 +40013,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40034,28 +40034,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -40083,8 +40083,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 204, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40111,7 +40111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40149,11 +40149,11 @@ }, { "x": 725, - "y": 337.73575476702496 + "y": 337.73575 }, { "x": 700, - "y": 312.73575476702496 + "y": 312.73575 }, { "category": 1, @@ -40171,7 +40171,7 @@ }, { "x": 712.5, - "y": 325.23575476702496 + "y": 325.23575 }, { "x": 0, @@ -40179,7 +40179,7 @@ }, { "x": 712.5, - "y": 322.3284840519894 + "y": 322.32848 }, { "endCol": 15, @@ -40203,7 +40203,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40224,28 +40224,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 312.73575476702496 + "y": 312.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 337.73575476702496 + "y": 337.73575 }, { "angle": 0, @@ -40273,8 +40273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 205, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40301,7 +40301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40339,11 +40339,11 @@ }, { "x": 125, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 100, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -40361,7 +40361,7 @@ }, { "x": 112.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -40369,7 +40369,7 @@ }, { "x": 112.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 2, @@ -40393,7 +40393,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40414,28 +40414,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -40463,8 +40463,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 206, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40491,7 +40491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40529,11 +40529,11 @@ }, { "x": 150, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 125, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -40551,7 +40551,7 @@ }, { "x": 137.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -40559,7 +40559,7 @@ }, { "x": 137.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 3, @@ -40583,7 +40583,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40604,28 +40604,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -40653,8 +40653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 207, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40681,7 +40681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40719,11 +40719,11 @@ }, { "x": 175, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 150, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -40741,7 +40741,7 @@ }, { "x": 162.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -40749,7 +40749,7 @@ }, { "x": 162.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 3, @@ -40773,7 +40773,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40794,28 +40794,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -40843,8 +40843,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 208, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -40871,7 +40871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -40909,11 +40909,11 @@ }, { "x": 200, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 175, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -40931,7 +40931,7 @@ }, { "x": 187.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -40939,7 +40939,7 @@ }, { "x": 187.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 4, @@ -40963,7 +40963,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -40984,28 +40984,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -41033,8 +41033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 209, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41061,7 +41061,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41099,11 +41099,11 @@ }, { "x": 225, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 200, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -41121,7 +41121,7 @@ }, { "x": 212.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -41129,7 +41129,7 @@ }, { "x": 212.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 4, @@ -41153,7 +41153,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -41174,28 +41174,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -41223,8 +41223,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 210, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41251,7 +41251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41289,11 +41289,11 @@ }, { "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 225, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -41311,7 +41311,7 @@ }, { "x": 237.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -41319,7 +41319,7 @@ }, { "x": 237.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 5, @@ -41343,7 +41343,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -41364,28 +41364,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -41413,8 +41413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 211, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41441,7 +41441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41479,11 +41479,11 @@ }, { "x": 275, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 250, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -41501,7 +41501,7 @@ }, { "x": 262.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -41509,7 +41509,7 @@ }, { "x": 262.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 5, @@ -41533,7 +41533,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -41554,28 +41554,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -41603,8 +41603,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 212, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41631,7 +41631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41669,11 +41669,11 @@ }, { "x": 300, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 275, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -41691,7 +41691,7 @@ }, { "x": 287.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -41699,7 +41699,7 @@ }, { "x": 287.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 6, @@ -41723,7 +41723,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -41744,28 +41744,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -41793,8 +41793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 213, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -41821,7 +41821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -41859,11 +41859,11 @@ }, { "x": 325, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 300, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -41881,7 +41881,7 @@ }, { "x": 312.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -41889,7 +41889,7 @@ }, { "x": 312.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 6, @@ -41913,7 +41913,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -41934,28 +41934,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -41983,8 +41983,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 214, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42011,7 +42011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42049,11 +42049,11 @@ }, { "x": 350, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 325, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -42071,7 +42071,7 @@ }, { "x": 337.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -42079,7 +42079,7 @@ }, { "x": 337.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 7, @@ -42103,7 +42103,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -42124,28 +42124,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -42173,8 +42173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 215, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42201,7 +42201,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42239,11 +42239,11 @@ }, { "x": 375, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 350, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -42261,7 +42261,7 @@ }, { "x": 362.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -42269,7 +42269,7 @@ }, { "x": 362.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 7, @@ -42293,7 +42293,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -42314,28 +42314,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -42363,8 +42363,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 216, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42391,7 +42391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42429,11 +42429,11 @@ }, { "x": 400, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 375, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -42451,7 +42451,7 @@ }, { "x": 387.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -42459,7 +42459,7 @@ }, { "x": 387.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 8, @@ -42483,7 +42483,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -42504,28 +42504,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -42553,8 +42553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 217, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42581,7 +42581,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42619,11 +42619,11 @@ }, { "x": 425, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 400, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -42641,7 +42641,7 @@ }, { "x": 412.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -42649,7 +42649,7 @@ }, { "x": 412.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 8, @@ -42673,7 +42673,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -42694,28 +42694,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -42743,8 +42743,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 218, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42771,7 +42771,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42809,11 +42809,11 @@ }, { "x": 450, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 425, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -42831,7 +42831,7 @@ }, { "x": 437.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -42839,7 +42839,7 @@ }, { "x": 437.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 9, @@ -42863,7 +42863,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -42884,28 +42884,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -42933,8 +42933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 219, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -42961,7 +42961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -42999,11 +42999,11 @@ }, { "x": 475, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 450, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -43021,7 +43021,7 @@ }, { "x": 462.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -43029,7 +43029,7 @@ }, { "x": 462.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 9, @@ -43053,7 +43053,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -43074,28 +43074,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -43123,8 +43123,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 220, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43151,7 +43151,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43189,11 +43189,11 @@ }, { "x": 500, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 475, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -43211,7 +43211,7 @@ }, { "x": 487.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -43219,7 +43219,7 @@ }, { "x": 487.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 10, @@ -43243,7 +43243,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -43264,28 +43264,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -43313,8 +43313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 221, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43341,7 +43341,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43379,11 +43379,11 @@ }, { "x": 525, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 500, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -43401,7 +43401,7 @@ }, { "x": 512.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -43409,7 +43409,7 @@ }, { "x": 512.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 10, @@ -43433,7 +43433,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -43454,28 +43454,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -43503,8 +43503,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 222, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43531,7 +43531,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43569,11 +43569,11 @@ }, { "x": 550, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 525, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -43591,7 +43591,7 @@ }, { "x": 537.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -43599,7 +43599,7 @@ }, { "x": 537.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 11, @@ -43623,7 +43623,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -43644,28 +43644,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -43693,8 +43693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 223, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43721,7 +43721,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43759,11 +43759,11 @@ }, { "x": 575, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 550, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -43781,7 +43781,7 @@ }, { "x": 562.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -43789,7 +43789,7 @@ }, { "x": 562.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 11, @@ -43813,7 +43813,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -43834,28 +43834,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -43883,8 +43883,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 224, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -43911,7 +43911,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -43949,11 +43949,11 @@ }, { "x": 600, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 575, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -43971,7 +43971,7 @@ }, { "x": 587.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -43979,7 +43979,7 @@ }, { "x": 587.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 12, @@ -44003,7 +44003,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -44024,28 +44024,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -44073,8 +44073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 225, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44101,7 +44101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44139,11 +44139,11 @@ }, { "x": 625, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 600, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -44161,7 +44161,7 @@ }, { "x": 612.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -44169,7 +44169,7 @@ }, { "x": 612.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 13, @@ -44193,7 +44193,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -44214,28 +44214,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -44263,8 +44263,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 226, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44291,7 +44291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44329,11 +44329,11 @@ }, { "x": 650, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 625, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -44351,7 +44351,7 @@ }, { "x": 637.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -44359,7 +44359,7 @@ }, { "x": 637.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 13, @@ -44383,7 +44383,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -44404,28 +44404,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -44453,8 +44453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 227, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44481,7 +44481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44519,11 +44519,11 @@ }, { "x": 675, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 650, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -44541,7 +44541,7 @@ }, { "x": 662.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -44549,7 +44549,7 @@ }, { "x": 662.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 14, @@ -44573,7 +44573,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -44594,28 +44594,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -44643,8 +44643,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 228, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44671,7 +44671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44709,11 +44709,11 @@ }, { "x": 700, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 675, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -44731,7 +44731,7 @@ }, { "x": 687.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -44739,7 +44739,7 @@ }, { "x": 687.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 14, @@ -44763,7 +44763,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -44784,28 +44784,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -44833,8 +44833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 229, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -44861,7 +44861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -44899,11 +44899,11 @@ }, { "x": 725, - "y": 362.73575476702496 + "y": 362.73575 }, { "x": 700, - "y": 337.73575476702496 + "y": 337.73575 }, { "category": 1, @@ -44921,7 +44921,7 @@ }, { "x": 712.5, - "y": 350.23575476702496 + "y": 350.23575 }, { "x": 0, @@ -44929,7 +44929,7 @@ }, { "x": 712.5, - "y": 347.3284840519894 + "y": 347.32848 }, { "endCol": 15, @@ -44953,7 +44953,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -44974,28 +44974,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 337.73575476702496 + "y": 337.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 362.73575476702496 + "y": 362.73575 }, { "angle": 0, @@ -45023,8 +45023,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 230, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45051,7 +45051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45089,11 +45089,11 @@ }, { "x": 125, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 100, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -45111,7 +45111,7 @@ }, { "x": 112.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -45119,7 +45119,7 @@ }, { "x": 112.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 2, @@ -45143,7 +45143,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -45164,28 +45164,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -45213,8 +45213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 231, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45241,7 +45241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45279,11 +45279,11 @@ }, { "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 125, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -45301,7 +45301,7 @@ }, { "x": 137.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -45309,7 +45309,7 @@ }, { "x": 137.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 3, @@ -45333,7 +45333,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -45354,28 +45354,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -45403,8 +45403,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 232, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45431,7 +45431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45469,11 +45469,11 @@ }, { "x": 175, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 150, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -45491,7 +45491,7 @@ }, { "x": 162.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -45499,7 +45499,7 @@ }, { "x": 162.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 3, @@ -45523,7 +45523,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -45544,28 +45544,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -45593,8 +45593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 233, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45621,7 +45621,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45659,11 +45659,11 @@ }, { "x": 200, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 175, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -45681,7 +45681,7 @@ }, { "x": 187.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -45689,7 +45689,7 @@ }, { "x": 187.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 4, @@ -45713,7 +45713,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -45734,28 +45734,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -45783,8 +45783,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 234, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -45811,7 +45811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -45849,11 +45849,11 @@ }, { "x": 225, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 200, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -45871,7 +45871,7 @@ }, { "x": 212.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -45879,7 +45879,7 @@ }, { "x": 212.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 4, @@ -45903,7 +45903,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -45924,28 +45924,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -45973,8 +45973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 235, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46001,7 +46001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46039,11 +46039,11 @@ }, { "x": 250, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 225, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -46061,7 +46061,7 @@ }, { "x": 237.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -46069,7 +46069,7 @@ }, { "x": 237.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 5, @@ -46093,7 +46093,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -46114,28 +46114,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -46163,8 +46163,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 236, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46191,7 +46191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46229,11 +46229,11 @@ }, { "x": 275, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -46251,7 +46251,7 @@ }, { "x": 262.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -46259,7 +46259,7 @@ }, { "x": 262.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 5, @@ -46283,7 +46283,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -46304,28 +46304,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -46353,8 +46353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 237, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46381,7 +46381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46419,11 +46419,11 @@ }, { "x": 300, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 275, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -46441,7 +46441,7 @@ }, { "x": 287.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -46449,7 +46449,7 @@ }, { "x": 287.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 6, @@ -46473,7 +46473,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -46494,28 +46494,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -46543,8 +46543,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 238, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46571,7 +46571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46609,11 +46609,11 @@ }, { "x": 325, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 300, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -46631,7 +46631,7 @@ }, { "x": 312.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -46639,7 +46639,7 @@ }, { "x": 312.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 6, @@ -46663,7 +46663,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -46684,28 +46684,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -46733,8 +46733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 239, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46761,7 +46761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46799,11 +46799,11 @@ }, { "x": 350, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 325, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -46821,7 +46821,7 @@ }, { "x": 337.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -46829,7 +46829,7 @@ }, { "x": 337.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 7, @@ -46853,7 +46853,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -46874,28 +46874,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -46923,8 +46923,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 240, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -46951,7 +46951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -46989,11 +46989,11 @@ }, { "x": 375, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 350, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -47011,7 +47011,7 @@ }, { "x": 362.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -47019,7 +47019,7 @@ }, { "x": 362.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 7, @@ -47043,7 +47043,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -47064,28 +47064,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -47113,8 +47113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 241, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47141,7 +47141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47179,11 +47179,11 @@ }, { "x": 400, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 375, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -47201,7 +47201,7 @@ }, { "x": 387.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -47209,7 +47209,7 @@ }, { "x": 387.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 8, @@ -47233,7 +47233,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -47254,28 +47254,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -47303,8 +47303,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 242, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47331,7 +47331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47369,11 +47369,11 @@ }, { "x": 425, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 400, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -47391,7 +47391,7 @@ }, { "x": 412.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -47399,7 +47399,7 @@ }, { "x": 412.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 8, @@ -47423,7 +47423,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -47444,28 +47444,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -47493,8 +47493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 243, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47521,7 +47521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47559,11 +47559,11 @@ }, { "x": 450, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 425, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -47581,7 +47581,7 @@ }, { "x": 437.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -47589,7 +47589,7 @@ }, { "x": 437.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 9, @@ -47613,7 +47613,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -47634,28 +47634,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -47683,8 +47683,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 244, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47711,7 +47711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47749,11 +47749,11 @@ }, { "x": 475, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 450, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -47771,7 +47771,7 @@ }, { "x": 462.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -47779,7 +47779,7 @@ }, { "x": 462.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 9, @@ -47803,7 +47803,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -47824,28 +47824,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -47873,8 +47873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 245, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -47901,7 +47901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -47939,11 +47939,11 @@ }, { "x": 500, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 475, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -47961,7 +47961,7 @@ }, { "x": 487.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -47969,7 +47969,7 @@ }, { "x": 487.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 10, @@ -47993,7 +47993,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -48014,28 +48014,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -48063,8 +48063,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 246, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48091,7 +48091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48129,11 +48129,11 @@ }, { "x": 525, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 500, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -48151,7 +48151,7 @@ }, { "x": 512.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -48159,7 +48159,7 @@ }, { "x": 512.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 10, @@ -48183,7 +48183,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -48204,28 +48204,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -48253,8 +48253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 247, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48281,7 +48281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48319,11 +48319,11 @@ }, { "x": 550, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 525, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -48341,7 +48341,7 @@ }, { "x": 537.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -48349,7 +48349,7 @@ }, { "x": 537.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 11, @@ -48373,7 +48373,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -48394,28 +48394,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -48443,8 +48443,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 248, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48471,7 +48471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48509,11 +48509,11 @@ }, { "x": 575, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 550, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -48531,7 +48531,7 @@ }, { "x": 562.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -48539,7 +48539,7 @@ }, { "x": 562.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 11, @@ -48563,7 +48563,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -48584,28 +48584,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -48633,8 +48633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 249, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48661,7 +48661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48699,11 +48699,11 @@ }, { "x": 600, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 575, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -48721,7 +48721,7 @@ }, { "x": 587.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -48729,7 +48729,7 @@ }, { "x": 587.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 12, @@ -48753,7 +48753,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -48774,28 +48774,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -48823,8 +48823,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 250, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -48851,7 +48851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -48889,11 +48889,11 @@ }, { "x": 625, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 600, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -48911,7 +48911,7 @@ }, { "x": 612.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -48919,7 +48919,7 @@ }, { "x": 612.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 13, @@ -48943,7 +48943,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -48964,28 +48964,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -49013,8 +49013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 251, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49041,7 +49041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49079,11 +49079,11 @@ }, { "x": 650, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 625, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -49101,7 +49101,7 @@ }, { "x": 637.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -49109,7 +49109,7 @@ }, { "x": 637.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 13, @@ -49133,7 +49133,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -49154,28 +49154,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -49203,8 +49203,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 252, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49231,7 +49231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49269,11 +49269,11 @@ }, { "x": 675, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 650, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -49291,7 +49291,7 @@ }, { "x": 662.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -49299,7 +49299,7 @@ }, { "x": 662.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 14, @@ -49323,7 +49323,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -49344,28 +49344,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -49393,8 +49393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 253, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49421,7 +49421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49459,11 +49459,11 @@ }, { "x": 700, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 675, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -49481,7 +49481,7 @@ }, { "x": 687.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -49489,7 +49489,7 @@ }, { "x": 687.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 14, @@ -49513,7 +49513,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -49534,28 +49534,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -49583,8 +49583,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 254, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49611,7 +49611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49649,11 +49649,11 @@ }, { "x": 725, - "y": 387.73575476702496 + "y": 387.73575 }, { "x": 700, - "y": 362.73575476702496 + "y": 362.73575 }, { "category": 1, @@ -49671,7 +49671,7 @@ }, { "x": 712.5, - "y": 375.23575476702496 + "y": 375.23575 }, { "x": 0, @@ -49679,7 +49679,7 @@ }, { "x": 712.5, - "y": 372.3284840519894 + "y": 372.32848 }, { "endCol": 15, @@ -49703,7 +49703,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -49724,28 +49724,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 362.73575476702496 + "y": 362.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 387.73575476702496 + "y": 387.73575 }, { "angle": 0, @@ -49773,8 +49773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 255, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49801,7 +49801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -49839,11 +49839,11 @@ }, { "x": 125, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 100, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -49861,7 +49861,7 @@ }, { "x": 112.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -49869,7 +49869,7 @@ }, { "x": 112.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 2, @@ -49893,7 +49893,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -49914,28 +49914,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -49963,8 +49963,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 256, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -49991,7 +49991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50029,11 +50029,11 @@ }, { "x": 150, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 125, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -50051,7 +50051,7 @@ }, { "x": 137.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -50059,7 +50059,7 @@ }, { "x": 137.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 3, @@ -50083,7 +50083,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -50104,28 +50104,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -50153,8 +50153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 257, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50181,7 +50181,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50219,11 +50219,11 @@ }, { "x": 175, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -50241,7 +50241,7 @@ }, { "x": 162.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -50249,7 +50249,7 @@ }, { "x": 162.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 3, @@ -50273,7 +50273,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -50294,28 +50294,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -50343,8 +50343,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 258, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50371,7 +50371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50409,11 +50409,11 @@ }, { "x": 200, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 175, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -50431,7 +50431,7 @@ }, { "x": 187.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -50439,7 +50439,7 @@ }, { "x": 187.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 4, @@ -50463,7 +50463,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -50484,28 +50484,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -50533,8 +50533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 259, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50561,7 +50561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50599,11 +50599,11 @@ }, { "x": 225, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 200, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -50621,7 +50621,7 @@ }, { "x": 212.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -50629,7 +50629,7 @@ }, { "x": 212.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 4, @@ -50653,7 +50653,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -50674,28 +50674,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -50723,8 +50723,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 260, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50751,7 +50751,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50789,11 +50789,11 @@ }, { "x": 250, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 225, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -50811,7 +50811,7 @@ }, { "x": 237.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -50819,7 +50819,7 @@ }, { "x": 237.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 5, @@ -50843,7 +50843,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -50864,28 +50864,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -50913,8 +50913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 261, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -50941,7 +50941,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -50979,11 +50979,11 @@ }, { "x": 275, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 250, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -51001,7 +51001,7 @@ }, { "x": 262.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -51009,7 +51009,7 @@ }, { "x": 262.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 5, @@ -51033,7 +51033,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -51054,28 +51054,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -51103,8 +51103,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 262, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51131,7 +51131,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51169,11 +51169,11 @@ }, { "x": 300, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 275, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -51191,7 +51191,7 @@ }, { "x": 287.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -51199,7 +51199,7 @@ }, { "x": 287.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 6, @@ -51223,7 +51223,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -51244,28 +51244,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -51293,8 +51293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 263, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51321,7 +51321,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51359,11 +51359,11 @@ }, { "x": 325, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 300, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -51381,7 +51381,7 @@ }, { "x": 312.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -51389,7 +51389,7 @@ }, { "x": 312.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 6, @@ -51413,7 +51413,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -51434,28 +51434,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -51483,8 +51483,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 264, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51511,7 +51511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51549,11 +51549,11 @@ }, { "x": 350, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 325, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -51571,7 +51571,7 @@ }, { "x": 337.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -51579,7 +51579,7 @@ }, { "x": 337.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 7, @@ -51603,7 +51603,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -51624,28 +51624,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -51673,8 +51673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 265, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51701,7 +51701,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51739,11 +51739,11 @@ }, { "x": 375, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 350, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -51761,7 +51761,7 @@ }, { "x": 362.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -51769,7 +51769,7 @@ }, { "x": 362.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 7, @@ -51793,7 +51793,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -51814,28 +51814,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -51863,8 +51863,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 266, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -51891,7 +51891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -51929,11 +51929,11 @@ }, { "x": 400, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 375, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -51951,7 +51951,7 @@ }, { "x": 387.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -51959,7 +51959,7 @@ }, { "x": 387.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 8, @@ -51983,7 +51983,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -52004,28 +52004,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -52053,8 +52053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 267, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52081,7 +52081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52119,11 +52119,11 @@ }, { "x": 425, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 400, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -52141,7 +52141,7 @@ }, { "x": 412.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -52149,7 +52149,7 @@ }, { "x": 412.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 8, @@ -52173,7 +52173,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -52194,28 +52194,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -52243,8 +52243,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 268, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52271,7 +52271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52309,11 +52309,11 @@ }, { "x": 450, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 425, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -52331,7 +52331,7 @@ }, { "x": 437.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -52339,7 +52339,7 @@ }, { "x": 437.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 9, @@ -52363,7 +52363,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -52384,28 +52384,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -52433,8 +52433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 269, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52461,7 +52461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52499,11 +52499,11 @@ }, { "x": 475, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 450, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -52521,7 +52521,7 @@ }, { "x": 462.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -52529,7 +52529,7 @@ }, { "x": 462.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 9, @@ -52553,7 +52553,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -52574,28 +52574,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -52623,8 +52623,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 270, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52651,7 +52651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52689,11 +52689,11 @@ }, { "x": 500, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 475, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -52711,7 +52711,7 @@ }, { "x": 487.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -52719,7 +52719,7 @@ }, { "x": 487.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 10, @@ -52743,7 +52743,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -52764,28 +52764,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -52813,8 +52813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 271, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -52841,7 +52841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -52879,11 +52879,11 @@ }, { "x": 525, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 500, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -52901,7 +52901,7 @@ }, { "x": 512.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -52909,7 +52909,7 @@ }, { "x": 512.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 10, @@ -52933,7 +52933,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -52954,28 +52954,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -53003,8 +53003,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 272, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53031,7 +53031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53069,11 +53069,11 @@ }, { "x": 550, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 525, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -53091,7 +53091,7 @@ }, { "x": 537.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -53099,7 +53099,7 @@ }, { "x": 537.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 11, @@ -53123,7 +53123,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -53144,28 +53144,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -53193,8 +53193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 273, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53221,7 +53221,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53259,11 +53259,11 @@ }, { "x": 575, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 550, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -53281,7 +53281,7 @@ }, { "x": 562.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -53289,7 +53289,7 @@ }, { "x": 562.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 11, @@ -53313,7 +53313,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -53334,28 +53334,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -53383,8 +53383,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 274, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53411,7 +53411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53449,11 +53449,11 @@ }, { "x": 600, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 575, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -53471,7 +53471,7 @@ }, { "x": 587.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -53479,7 +53479,7 @@ }, { "x": 587.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 12, @@ -53503,7 +53503,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -53524,28 +53524,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -53573,8 +53573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 275, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53601,7 +53601,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53639,11 +53639,11 @@ }, { "x": 625, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 600, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -53661,7 +53661,7 @@ }, { "x": 612.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -53669,7 +53669,7 @@ }, { "x": 612.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 13, @@ -53693,7 +53693,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -53714,28 +53714,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -53763,8 +53763,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 276, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53791,7 +53791,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -53829,11 +53829,11 @@ }, { "x": 650, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 625, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -53851,7 +53851,7 @@ }, { "x": 637.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -53859,7 +53859,7 @@ }, { "x": 637.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 13, @@ -53883,7 +53883,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -53904,28 +53904,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -53953,8 +53953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 277, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -53981,7 +53981,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54019,11 +54019,11 @@ }, { "x": 675, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 650, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -54041,7 +54041,7 @@ }, { "x": 662.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -54049,7 +54049,7 @@ }, { "x": 662.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 14, @@ -54073,7 +54073,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -54094,28 +54094,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -54143,8 +54143,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 278, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54171,7 +54171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54209,11 +54209,11 @@ }, { "x": 700, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 675, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -54231,7 +54231,7 @@ }, { "x": 687.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -54239,7 +54239,7 @@ }, { "x": 687.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 14, @@ -54263,7 +54263,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -54284,28 +54284,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -54333,8 +54333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 279, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54361,7 +54361,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54399,11 +54399,11 @@ }, { "x": 725, - "y": 412.73575476702496 + "y": 412.73575 }, { "x": 700, - "y": 387.73575476702496 + "y": 387.73575 }, { "category": 1, @@ -54421,7 +54421,7 @@ }, { "x": 712.5, - "y": 400.23575476702496 + "y": 400.23575 }, { "x": 0, @@ -54429,7 +54429,7 @@ }, { "x": 712.5, - "y": 397.3284840519894 + "y": 397.32848 }, { "endCol": 15, @@ -54453,7 +54453,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -54474,28 +54474,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 387.73575476702496 + "y": 387.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 412.73575476702496 + "y": 412.73575 }, { "angle": 0, @@ -54523,8 +54523,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 280, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54551,7 +54551,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54589,11 +54589,11 @@ }, { "x": 125, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 100, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -54611,7 +54611,7 @@ }, { "x": 112.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -54619,7 +54619,7 @@ }, { "x": 112.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 2, @@ -54643,7 +54643,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -54664,28 +54664,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -54713,8 +54713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 281, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54741,7 +54741,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54779,11 +54779,11 @@ }, { "x": 150, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 125, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -54801,7 +54801,7 @@ }, { "x": 137.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -54809,7 +54809,7 @@ }, { "x": 137.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 3, @@ -54833,7 +54833,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -54854,28 +54854,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -54903,8 +54903,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 282, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -54931,7 +54931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -54969,11 +54969,11 @@ }, { "x": 175, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 150, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -54991,7 +54991,7 @@ }, { "x": 162.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -54999,7 +54999,7 @@ }, { "x": 162.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 3, @@ -55023,7 +55023,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -55044,28 +55044,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -55093,8 +55093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 283, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55121,7 +55121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55159,11 +55159,11 @@ }, { "x": 200, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 175, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -55181,7 +55181,7 @@ }, { "x": 187.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -55189,7 +55189,7 @@ }, { "x": 187.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 4, @@ -55213,7 +55213,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -55234,28 +55234,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -55283,8 +55283,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 284, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55311,7 +55311,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55349,11 +55349,11 @@ }, { "x": 225, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 200, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -55371,7 +55371,7 @@ }, { "x": 212.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -55379,7 +55379,7 @@ }, { "x": 212.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 4, @@ -55403,7 +55403,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -55424,28 +55424,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -55473,8 +55473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 285, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55501,7 +55501,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55539,11 +55539,11 @@ }, { "x": 250, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 225, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -55561,7 +55561,7 @@ }, { "x": 237.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -55569,7 +55569,7 @@ }, { "x": 237.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 5, @@ -55593,7 +55593,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -55614,28 +55614,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -55663,8 +55663,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 286, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55691,7 +55691,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55729,11 +55729,11 @@ }, { "x": 275, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 250, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -55751,7 +55751,7 @@ }, { "x": 262.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -55759,7 +55759,7 @@ }, { "x": 262.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 5, @@ -55783,7 +55783,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -55804,28 +55804,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -55853,8 +55853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 287, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -55881,7 +55881,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -55919,11 +55919,11 @@ }, { "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 275, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -55941,7 +55941,7 @@ }, { "x": 287.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -55949,7 +55949,7 @@ }, { "x": 287.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 6, @@ -55973,7 +55973,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -55994,28 +55994,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -56043,8 +56043,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 288, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56071,7 +56071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56109,11 +56109,11 @@ }, { "x": 325, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 300, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -56131,7 +56131,7 @@ }, { "x": 312.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -56139,7 +56139,7 @@ }, { "x": 312.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 6, @@ -56163,7 +56163,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -56184,28 +56184,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -56233,8 +56233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 289, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56261,7 +56261,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56299,11 +56299,11 @@ }, { "x": 350, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 325, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -56321,7 +56321,7 @@ }, { "x": 337.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -56329,7 +56329,7 @@ }, { "x": 337.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 7, @@ -56353,7 +56353,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -56374,28 +56374,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -56423,8 +56423,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 290, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56451,7 +56451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56489,11 +56489,11 @@ }, { "x": 375, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 350, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -56511,7 +56511,7 @@ }, { "x": 362.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -56519,7 +56519,7 @@ }, { "x": 362.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 7, @@ -56543,7 +56543,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -56564,28 +56564,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -56613,8 +56613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 291, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56641,7 +56641,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56679,11 +56679,11 @@ }, { "x": 400, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 375, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -56701,7 +56701,7 @@ }, { "x": 387.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -56709,7 +56709,7 @@ }, { "x": 387.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 8, @@ -56733,7 +56733,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -56754,28 +56754,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -56803,8 +56803,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 292, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -56831,7 +56831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -56869,11 +56869,11 @@ }, { "x": 425, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 400, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -56891,7 +56891,7 @@ }, { "x": 412.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -56899,7 +56899,7 @@ }, { "x": 412.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 8, @@ -56923,7 +56923,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -56944,28 +56944,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -56993,8 +56993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 293, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57021,7 +57021,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57059,11 +57059,11 @@ }, { "x": 450, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 425, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -57081,7 +57081,7 @@ }, { "x": 437.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -57089,7 +57089,7 @@ }, { "x": 437.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 9, @@ -57113,7 +57113,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -57134,28 +57134,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -57183,8 +57183,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 294, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57211,7 +57211,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57249,11 +57249,11 @@ }, { "x": 475, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 450, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -57271,7 +57271,7 @@ }, { "x": 462.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -57279,7 +57279,7 @@ }, { "x": 462.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 9, @@ -57303,7 +57303,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -57324,28 +57324,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -57373,8 +57373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 295, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57401,7 +57401,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57439,11 +57439,11 @@ }, { "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 475, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -57461,7 +57461,7 @@ }, { "x": 487.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -57469,7 +57469,7 @@ }, { "x": 487.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 10, @@ -57493,7 +57493,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -57514,28 +57514,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -57563,8 +57563,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 296, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57591,7 +57591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57629,11 +57629,11 @@ }, { "x": 525, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 500, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -57651,7 +57651,7 @@ }, { "x": 512.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -57659,7 +57659,7 @@ }, { "x": 512.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 10, @@ -57683,7 +57683,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -57704,28 +57704,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -57753,8 +57753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 297, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57781,7 +57781,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -57819,11 +57819,11 @@ }, { "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 525, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -57841,7 +57841,7 @@ }, { "x": 537.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -57849,7 +57849,7 @@ }, { "x": 537.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 11, @@ -57873,7 +57873,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -57894,28 +57894,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -57943,8 +57943,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 298, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -57971,7 +57971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58009,11 +58009,11 @@ }, { "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 550, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -58031,7 +58031,7 @@ }, { "x": 562.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -58039,7 +58039,7 @@ }, { "x": 562.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 11, @@ -58063,7 +58063,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -58084,28 +58084,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -58133,8 +58133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 299, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58161,7 +58161,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58199,11 +58199,11 @@ }, { "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 575, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -58221,7 +58221,7 @@ }, { "x": 587.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -58229,7 +58229,7 @@ }, { "x": 587.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 12, @@ -58253,7 +58253,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -58274,28 +58274,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -58323,8 +58323,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 300, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58351,7 +58351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58389,11 +58389,11 @@ }, { "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 600, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -58411,7 +58411,7 @@ }, { "x": 612.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -58419,7 +58419,7 @@ }, { "x": 612.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 13, @@ -58443,7 +58443,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -58464,28 +58464,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -58513,8 +58513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 301, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58541,7 +58541,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58579,11 +58579,11 @@ }, { "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 625, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -58601,7 +58601,7 @@ }, { "x": 637.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -58609,7 +58609,7 @@ }, { "x": 637.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 13, @@ -58633,7 +58633,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -58654,28 +58654,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -58703,8 +58703,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 302, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58731,7 +58731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58769,11 +58769,11 @@ }, { "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 650, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -58791,7 +58791,7 @@ }, { "x": 662.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -58799,7 +58799,7 @@ }, { "x": 662.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 14, @@ -58823,7 +58823,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -58844,28 +58844,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -58893,8 +58893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 303, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -58921,7 +58921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -58959,11 +58959,11 @@ }, { "x": 700, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 675, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -58981,7 +58981,7 @@ }, { "x": 687.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -58989,7 +58989,7 @@ }, { "x": 687.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 14, @@ -59013,7 +59013,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -59034,28 +59034,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -59083,8 +59083,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 304, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59111,7 +59111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59149,11 +59149,11 @@ }, { "x": 725, - "y": 437.73575476702496 + "y": 437.73575 }, { "x": 700, - "y": 412.73575476702496 + "y": 412.73575 }, { "category": 1, @@ -59171,7 +59171,7 @@ }, { "x": 712.5, - "y": 425.23575476702496 + "y": 425.23575 }, { "x": 0, @@ -59179,7 +59179,7 @@ }, { "x": 712.5, - "y": 422.3284840519894 + "y": 422.32848 }, { "endCol": 15, @@ -59203,7 +59203,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -59224,28 +59224,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 412.73575476702496 + "y": 412.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 437.73575476702496 + "y": 437.73575 }, { "angle": 0, @@ -59273,8 +59273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 305, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59301,7 +59301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59339,11 +59339,11 @@ }, { "x": 125, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 100, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -59361,7 +59361,7 @@ }, { "x": 112.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -59369,7 +59369,7 @@ }, { "x": 112.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 2, @@ -59393,7 +59393,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -59414,28 +59414,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -59463,8 +59463,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 306, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59491,7 +59491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59529,11 +59529,11 @@ }, { "x": 150, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 125, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -59551,7 +59551,7 @@ }, { "x": 137.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -59559,7 +59559,7 @@ }, { "x": 137.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 3, @@ -59583,7 +59583,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -59604,28 +59604,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -59653,8 +59653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 307, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59681,7 +59681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59719,11 +59719,11 @@ }, { "x": 175, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 150, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -59741,7 +59741,7 @@ }, { "x": 162.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -59749,7 +59749,7 @@ }, { "x": 162.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 3, @@ -59773,7 +59773,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -59794,28 +59794,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -59843,8 +59843,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 308, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -59871,7 +59871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -59909,11 +59909,11 @@ }, { "x": 200, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 175, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -59931,7 +59931,7 @@ }, { "x": 187.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -59939,7 +59939,7 @@ }, { "x": 187.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 4, @@ -59963,7 +59963,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -59984,28 +59984,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -60033,8 +60033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 309, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60061,7 +60061,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60099,11 +60099,11 @@ }, { "x": 225, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 200, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -60121,7 +60121,7 @@ }, { "x": 212.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -60129,7 +60129,7 @@ }, { "x": 212.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 4, @@ -60153,7 +60153,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -60174,28 +60174,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -60223,8 +60223,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 310, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60251,7 +60251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60289,11 +60289,11 @@ }, { "x": 250, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 225, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -60311,7 +60311,7 @@ }, { "x": 237.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -60319,7 +60319,7 @@ }, { "x": 237.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 5, @@ -60343,7 +60343,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -60364,28 +60364,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -60413,8 +60413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 311, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60441,7 +60441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60479,11 +60479,11 @@ }, { "x": 275, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 250, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -60501,7 +60501,7 @@ }, { "x": 262.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -60509,7 +60509,7 @@ }, { "x": 262.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 5, @@ -60533,7 +60533,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -60554,28 +60554,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -60603,8 +60603,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 312, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60631,7 +60631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60669,11 +60669,11 @@ }, { "x": 300, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 275, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -60691,7 +60691,7 @@ }, { "x": 287.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -60699,7 +60699,7 @@ }, { "x": 287.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 6, @@ -60723,7 +60723,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -60744,28 +60744,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -60793,8 +60793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 313, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -60821,7 +60821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -60859,11 +60859,11 @@ }, { "x": 325, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -60881,7 +60881,7 @@ }, { "x": 312.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -60889,7 +60889,7 @@ }, { "x": 312.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 6, @@ -60913,7 +60913,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -60934,28 +60934,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -60983,8 +60983,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 314, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61011,7 +61011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61049,11 +61049,11 @@ }, { "x": 350, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 325, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -61071,7 +61071,7 @@ }, { "x": 337.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -61079,7 +61079,7 @@ }, { "x": 337.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 7, @@ -61103,7 +61103,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -61124,28 +61124,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -61173,8 +61173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 315, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61201,7 +61201,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61239,11 +61239,11 @@ }, { "x": 375, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 350, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -61261,7 +61261,7 @@ }, { "x": 362.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -61269,7 +61269,7 @@ }, { "x": 362.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 7, @@ -61293,7 +61293,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -61314,28 +61314,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -61363,8 +61363,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 316, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61391,7 +61391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61429,11 +61429,11 @@ }, { "x": 400, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 375, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -61451,7 +61451,7 @@ }, { "x": 387.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -61459,7 +61459,7 @@ }, { "x": 387.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 8, @@ -61483,7 +61483,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -61504,28 +61504,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -61553,8 +61553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 317, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61581,7 +61581,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61619,11 +61619,11 @@ }, { "x": 425, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 400, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -61641,7 +61641,7 @@ }, { "x": 412.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -61649,7 +61649,7 @@ }, { "x": 412.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 8, @@ -61673,7 +61673,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -61694,28 +61694,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -61743,8 +61743,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 318, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61771,7 +61771,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61809,11 +61809,11 @@ }, { "x": 450, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 425, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -61831,7 +61831,7 @@ }, { "x": 437.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -61839,7 +61839,7 @@ }, { "x": 437.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 9, @@ -61863,7 +61863,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -61884,28 +61884,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -61933,8 +61933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 319, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -61961,7 +61961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -61999,11 +61999,11 @@ }, { "x": 475, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 450, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -62021,7 +62021,7 @@ }, { "x": 462.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -62029,7 +62029,7 @@ }, { "x": 462.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 9, @@ -62053,7 +62053,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -62074,28 +62074,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -62123,8 +62123,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 320, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62151,7 +62151,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62189,11 +62189,11 @@ }, { "x": 500, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 475, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -62211,7 +62211,7 @@ }, { "x": 487.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -62219,7 +62219,7 @@ }, { "x": 487.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 10, @@ -62243,7 +62243,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -62264,28 +62264,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -62313,8 +62313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 321, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62341,7 +62341,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62379,11 +62379,11 @@ }, { "x": 525, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -62401,7 +62401,7 @@ }, { "x": 512.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -62409,7 +62409,7 @@ }, { "x": 512.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 10, @@ -62433,7 +62433,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -62454,28 +62454,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -62503,8 +62503,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 322, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62531,7 +62531,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62569,11 +62569,11 @@ }, { "x": 550, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 525, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -62591,7 +62591,7 @@ }, { "x": 537.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -62599,7 +62599,7 @@ }, { "x": 537.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 11, @@ -62623,7 +62623,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -62644,28 +62644,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -62693,8 +62693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 323, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62721,7 +62721,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62759,11 +62759,11 @@ }, { "x": 575, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -62781,7 +62781,7 @@ }, { "x": 562.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -62789,7 +62789,7 @@ }, { "x": 562.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 11, @@ -62813,7 +62813,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -62834,28 +62834,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -62883,8 +62883,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 324, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -62911,7 +62911,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -62949,11 +62949,11 @@ }, { "x": 600, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -62971,7 +62971,7 @@ }, { "x": 587.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -62979,7 +62979,7 @@ }, { "x": 587.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 12, @@ -63003,7 +63003,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -63024,28 +63024,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -63073,8 +63073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 325, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63101,7 +63101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63139,11 +63139,11 @@ }, { "x": 625, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -63161,7 +63161,7 @@ }, { "x": 612.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -63169,7 +63169,7 @@ }, { "x": 612.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 13, @@ -63193,7 +63193,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -63214,28 +63214,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -63263,8 +63263,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 326, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63291,7 +63291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63329,11 +63329,11 @@ }, { "x": 650, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -63351,7 +63351,7 @@ }, { "x": 637.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -63359,7 +63359,7 @@ }, { "x": 637.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 13, @@ -63383,7 +63383,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -63404,28 +63404,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -63453,8 +63453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 327, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63481,7 +63481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63519,11 +63519,11 @@ }, { "x": 675, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -63541,7 +63541,7 @@ }, { "x": 662.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -63549,7 +63549,7 @@ }, { "x": 662.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 14, @@ -63573,7 +63573,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -63594,28 +63594,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -63643,8 +63643,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 328, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63671,7 +63671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63709,11 +63709,11 @@ }, { "x": 700, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -63731,7 +63731,7 @@ }, { "x": 687.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -63739,7 +63739,7 @@ }, { "x": 687.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 14, @@ -63763,7 +63763,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -63784,28 +63784,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -63833,8 +63833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 329, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -63861,7 +63861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -63899,11 +63899,11 @@ }, { "x": 725, - "y": 462.73575476702496 + "y": 462.73575 }, { "x": 700, - "y": 437.73575476702496 + "y": 437.73575 }, { "category": 1, @@ -63921,7 +63921,7 @@ }, { "x": 712.5, - "y": 450.23575476702496 + "y": 450.23575 }, { "x": 0, @@ -63929,7 +63929,7 @@ }, { "x": 712.5, - "y": 447.3284840519894 + "y": 447.32848 }, { "endCol": 15, @@ -63953,7 +63953,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -63974,28 +63974,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 437.73575476702496 + "y": 437.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 462.73575476702496 + "y": 462.73575 }, { "angle": 0, @@ -64023,8 +64023,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 330, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64051,7 +64051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64089,11 +64089,11 @@ }, { "x": 125, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 100, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -64111,7 +64111,7 @@ }, { "x": 112.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -64119,7 +64119,7 @@ }, { "x": 112.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 2, @@ -64143,7 +64143,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -64164,28 +64164,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -64213,8 +64213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 331, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64241,7 +64241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64279,11 +64279,11 @@ }, { "x": 150, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 125, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -64301,7 +64301,7 @@ }, { "x": 137.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -64309,7 +64309,7 @@ }, { "x": 137.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 3, @@ -64333,7 +64333,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -64354,28 +64354,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -64403,8 +64403,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 332, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64431,7 +64431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64469,11 +64469,11 @@ }, { "x": 175, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 150, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -64491,7 +64491,7 @@ }, { "x": 162.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -64499,7 +64499,7 @@ }, { "x": 162.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 3, @@ -64523,7 +64523,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -64544,28 +64544,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -64593,8 +64593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 333, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64621,7 +64621,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64659,11 +64659,11 @@ }, { "x": 200, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 175, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -64681,7 +64681,7 @@ }, { "x": 187.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -64689,7 +64689,7 @@ }, { "x": 187.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 4, @@ -64713,7 +64713,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -64734,28 +64734,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -64783,8 +64783,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 334, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -64811,7 +64811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -64849,11 +64849,11 @@ }, { "x": 225, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 200, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -64871,7 +64871,7 @@ }, { "x": 212.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -64879,7 +64879,7 @@ }, { "x": 212.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 4, @@ -64903,7 +64903,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -64924,28 +64924,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -64973,8 +64973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 335, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65001,7 +65001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65039,11 +65039,11 @@ }, { "x": 250, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 225, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -65061,7 +65061,7 @@ }, { "x": 237.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -65069,7 +65069,7 @@ }, { "x": 237.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 5, @@ -65093,7 +65093,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -65114,28 +65114,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -65163,8 +65163,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 336, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65191,7 +65191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65229,11 +65229,11 @@ }, { "x": 275, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 250, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -65251,7 +65251,7 @@ }, { "x": 262.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -65259,7 +65259,7 @@ }, { "x": 262.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 5, @@ -65283,7 +65283,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -65304,28 +65304,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -65353,8 +65353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 337, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65381,7 +65381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65419,11 +65419,11 @@ }, { "x": 300, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 275, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -65441,7 +65441,7 @@ }, { "x": 287.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -65449,7 +65449,7 @@ }, { "x": 287.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 6, @@ -65473,7 +65473,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -65494,28 +65494,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -65543,8 +65543,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 338, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65571,7 +65571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65609,11 +65609,11 @@ }, { "x": 325, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 300, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -65631,7 +65631,7 @@ }, { "x": 312.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -65639,7 +65639,7 @@ }, { "x": 312.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 6, @@ -65663,7 +65663,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -65684,28 +65684,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -65733,8 +65733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 339, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65761,7 +65761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65799,11 +65799,11 @@ }, { "x": 350, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 325, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -65821,7 +65821,7 @@ }, { "x": 337.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -65829,7 +65829,7 @@ }, { "x": 337.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 7, @@ -65853,7 +65853,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -65874,28 +65874,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -65923,8 +65923,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 340, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -65951,7 +65951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -65989,11 +65989,11 @@ }, { "x": 375, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 350, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -66011,7 +66011,7 @@ }, { "x": 362.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -66019,7 +66019,7 @@ }, { "x": 362.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 7, @@ -66043,7 +66043,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -66064,28 +66064,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -66113,8 +66113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 341, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66141,7 +66141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66179,11 +66179,11 @@ }, { "x": 400, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 375, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -66201,7 +66201,7 @@ }, { "x": 387.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -66209,7 +66209,7 @@ }, { "x": 387.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 8, @@ -66233,7 +66233,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -66254,28 +66254,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -66303,8 +66303,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 342, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66331,7 +66331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66369,11 +66369,11 @@ }, { "x": 425, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 400, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -66391,7 +66391,7 @@ }, { "x": 412.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -66399,7 +66399,7 @@ }, { "x": 412.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 8, @@ -66423,7 +66423,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -66444,28 +66444,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -66493,8 +66493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 343, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66521,7 +66521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66559,11 +66559,11 @@ }, { "x": 450, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 425, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -66581,7 +66581,7 @@ }, { "x": 437.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -66589,7 +66589,7 @@ }, { "x": 437.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 9, @@ -66613,7 +66613,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -66634,28 +66634,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -66683,8 +66683,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 344, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66711,7 +66711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66749,11 +66749,11 @@ }, { "x": 475, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 450, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -66771,7 +66771,7 @@ }, { "x": 462.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -66779,7 +66779,7 @@ }, { "x": 462.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 9, @@ -66803,7 +66803,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -66824,28 +66824,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -66873,8 +66873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 345, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -66901,7 +66901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -66939,11 +66939,11 @@ }, { "x": 500, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 475, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -66961,7 +66961,7 @@ }, { "x": 487.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -66969,7 +66969,7 @@ }, { "x": 487.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 10, @@ -66993,7 +66993,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -67014,28 +67014,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -67063,8 +67063,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 346, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67091,7 +67091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67129,11 +67129,11 @@ }, { "x": 525, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 500, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -67151,7 +67151,7 @@ }, { "x": 512.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -67159,7 +67159,7 @@ }, { "x": 512.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 10, @@ -67183,7 +67183,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -67204,28 +67204,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -67253,8 +67253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 347, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67281,7 +67281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67319,11 +67319,11 @@ }, { "x": 550, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 525, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -67341,7 +67341,7 @@ }, { "x": 537.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -67349,7 +67349,7 @@ }, { "x": 537.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 11, @@ -67373,7 +67373,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -67394,28 +67394,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -67443,8 +67443,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 348, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67471,7 +67471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67509,11 +67509,11 @@ }, { "x": 575, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 550, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -67531,7 +67531,7 @@ }, { "x": 562.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -67539,7 +67539,7 @@ }, { "x": 562.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 11, @@ -67563,7 +67563,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -67584,28 +67584,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -67633,8 +67633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 349, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67661,7 +67661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67699,11 +67699,11 @@ }, { "x": 600, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 575, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -67721,7 +67721,7 @@ }, { "x": 587.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -67729,7 +67729,7 @@ }, { "x": 587.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 12, @@ -67753,7 +67753,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -67774,28 +67774,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -67823,8 +67823,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 350, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -67851,7 +67851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -67889,11 +67889,11 @@ }, { "x": 625, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 600, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -67911,7 +67911,7 @@ }, { "x": 612.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -67919,7 +67919,7 @@ }, { "x": 612.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 13, @@ -67943,7 +67943,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -67964,28 +67964,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -68013,8 +68013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 351, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68041,7 +68041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -68079,11 +68079,11 @@ }, { "x": 650, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 625, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -68101,7 +68101,7 @@ }, { "x": 637.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -68109,7 +68109,7 @@ }, { "x": 637.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 13, @@ -68133,7 +68133,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -68154,28 +68154,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -68203,8 +68203,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 352, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68231,7 +68231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -68269,11 +68269,11 @@ }, { "x": 675, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 650, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -68291,7 +68291,7 @@ }, { "x": 662.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -68299,7 +68299,7 @@ }, { "x": 662.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 14, @@ -68323,7 +68323,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -68344,28 +68344,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -68393,8 +68393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 353, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68421,7 +68421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -68459,11 +68459,11 @@ }, { "x": 700, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 675, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -68481,7 +68481,7 @@ }, { "x": 687.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -68489,7 +68489,7 @@ }, { "x": 687.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 14, @@ -68513,7 +68513,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -68534,28 +68534,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -68583,8 +68583,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 354, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68611,7 +68611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -68649,11 +68649,11 @@ }, { "x": 725, - "y": 487.73575476702496 + "y": 487.73575 }, { "x": 700, - "y": 462.73575476702496 + "y": 462.73575 }, { "category": 1, @@ -68671,7 +68671,7 @@ }, { "x": 712.5, - "y": 475.23575476702496 + "y": 475.23575 }, { "x": 0, @@ -68679,7 +68679,7 @@ }, { "x": 712.5, - "y": 472.3284840519894 + "y": 472.32848 }, { "endCol": 15, @@ -68703,7 +68703,7 @@ }, { "x": 0, - "y": 2.9072707150355455 + "y": 2.90727 }, [ { @@ -68724,28 +68724,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 462.73575476702496 + "y": 462.73575 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 487.73575476702496 + "y": 487.73575 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 487.73575476702496 + "y": 487.73575 }, { "angle": 0, @@ -68773,8 +68773,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 355, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68801,7 +68801,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -68839,11 +68839,11 @@ }, { "x": 125, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 100, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -68861,7 +68861,7 @@ }, { "x": 112.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -68869,7 +68869,7 @@ }, { "x": 112.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 2, @@ -68893,7 +68893,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -68914,28 +68914,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -68963,8 +68963,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 356, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -68991,7 +68991,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -69029,11 +69029,11 @@ }, { "x": 150, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 125, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -69051,7 +69051,7 @@ }, { "x": 137.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -69059,7 +69059,7 @@ }, { "x": 137.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 3, @@ -69083,7 +69083,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -69104,28 +69104,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -69153,8 +69153,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 357, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69181,7 +69181,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -69219,11 +69219,11 @@ }, { "x": 175, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 150, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -69241,7 +69241,7 @@ }, { "x": 162.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -69249,7 +69249,7 @@ }, { "x": 162.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 3, @@ -69273,7 +69273,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -69294,28 +69294,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -69343,8 +69343,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 358, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69371,7 +69371,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -69409,11 +69409,11 @@ }, { "x": 200, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 175, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -69431,7 +69431,7 @@ }, { "x": 187.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -69439,7 +69439,7 @@ }, { "x": 187.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 4, @@ -69463,7 +69463,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -69484,28 +69484,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -69533,8 +69533,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 359, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69561,7 +69561,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -69599,11 +69599,11 @@ }, { "x": 225, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 200, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -69621,7 +69621,7 @@ }, { "x": 212.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -69629,7 +69629,7 @@ }, { "x": 212.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 4, @@ -69653,7 +69653,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -69674,28 +69674,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -69723,8 +69723,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 360, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69751,7 +69751,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -69789,11 +69789,11 @@ }, { "x": 250, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 225, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -69811,7 +69811,7 @@ }, { "x": 237.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -69819,7 +69819,7 @@ }, { "x": 237.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 5, @@ -69843,7 +69843,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -69864,28 +69864,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -69913,8 +69913,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 361, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -69941,7 +69941,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -69979,11 +69979,11 @@ }, { "x": 275, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 250, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -70001,7 +70001,7 @@ }, { "x": 262.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -70009,7 +70009,7 @@ }, { "x": 262.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 5, @@ -70033,7 +70033,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -70054,28 +70054,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -70103,8 +70103,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 362, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70131,7 +70131,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -70169,11 +70169,11 @@ }, { "x": 300, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 275, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -70191,7 +70191,7 @@ }, { "x": 287.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -70199,7 +70199,7 @@ }, { "x": 287.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 6, @@ -70223,7 +70223,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -70244,28 +70244,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -70293,8 +70293,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 363, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70321,7 +70321,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -70359,11 +70359,11 @@ }, { "x": 325, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 300, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -70381,7 +70381,7 @@ }, { "x": 312.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -70389,7 +70389,7 @@ }, { "x": 312.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 6, @@ -70413,7 +70413,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -70434,28 +70434,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -70483,8 +70483,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 364, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70511,7 +70511,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -70549,11 +70549,11 @@ }, { "x": 350, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 325, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -70571,7 +70571,7 @@ }, { "x": 337.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -70579,7 +70579,7 @@ }, { "x": 337.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 7, @@ -70603,7 +70603,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -70624,28 +70624,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -70673,8 +70673,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 365, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70701,7 +70701,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -70739,11 +70739,11 @@ }, { "x": 375, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 350, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -70761,7 +70761,7 @@ }, { "x": 362.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -70769,7 +70769,7 @@ }, { "x": 362.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 7, @@ -70793,7 +70793,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -70814,28 +70814,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -70863,8 +70863,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 366, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -70891,7 +70891,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -70929,11 +70929,11 @@ }, { "x": 400, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 375, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -70951,7 +70951,7 @@ }, { "x": 387.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -70959,7 +70959,7 @@ }, { "x": 387.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 8, @@ -70983,7 +70983,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -71004,28 +71004,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -71053,8 +71053,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 367, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71081,7 +71081,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -71119,11 +71119,11 @@ }, { "x": 425, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 400, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -71141,7 +71141,7 @@ }, { "x": 412.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -71149,7 +71149,7 @@ }, { "x": 412.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 8, @@ -71173,7 +71173,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -71194,28 +71194,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -71243,8 +71243,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 368, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71271,7 +71271,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -71309,11 +71309,11 @@ }, { "x": 450, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 425, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -71331,7 +71331,7 @@ }, { "x": 437.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -71339,7 +71339,7 @@ }, { "x": 437.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 9, @@ -71363,7 +71363,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -71384,28 +71384,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -71433,8 +71433,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 369, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71461,7 +71461,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -71499,11 +71499,11 @@ }, { "x": 475, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 450, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -71521,7 +71521,7 @@ }, { "x": 462.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -71529,7 +71529,7 @@ }, { "x": 462.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 9, @@ -71553,7 +71553,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -71574,28 +71574,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -71623,8 +71623,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 370, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71651,7 +71651,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -71689,11 +71689,11 @@ }, { "x": 500, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 475, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -71711,7 +71711,7 @@ }, { "x": 487.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -71719,7 +71719,7 @@ }, { "x": 487.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 10, @@ -71743,7 +71743,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -71764,28 +71764,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -71813,8 +71813,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 371, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -71841,7 +71841,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -71879,11 +71879,11 @@ }, { "x": 525, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 500, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -71901,7 +71901,7 @@ }, { "x": 512.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -71909,7 +71909,7 @@ }, { "x": 512.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 10, @@ -71933,7 +71933,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -71954,28 +71954,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -72003,8 +72003,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 372, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72031,7 +72031,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -72069,11 +72069,11 @@ }, { "x": 550, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 525, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -72091,7 +72091,7 @@ }, { "x": 537.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -72099,7 +72099,7 @@ }, { "x": 537.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 11, @@ -72123,7 +72123,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -72144,28 +72144,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -72193,8 +72193,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 373, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72221,7 +72221,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -72259,11 +72259,11 @@ }, { "x": 575, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 550, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -72281,7 +72281,7 @@ }, { "x": 562.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -72289,7 +72289,7 @@ }, { "x": 562.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 11, @@ -72313,7 +72313,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -72334,28 +72334,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -72383,8 +72383,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 374, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72411,7 +72411,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -72449,11 +72449,11 @@ }, { "x": 600, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 575, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -72471,7 +72471,7 @@ }, { "x": 587.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -72479,7 +72479,7 @@ }, { "x": 587.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 12, @@ -72503,7 +72503,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -72524,28 +72524,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -72573,8 +72573,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 375, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72601,7 +72601,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -72639,11 +72639,11 @@ }, { "x": 625, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 600, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -72661,7 +72661,7 @@ }, { "x": 612.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -72669,7 +72669,7 @@ }, { "x": 612.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 13, @@ -72693,7 +72693,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -72714,28 +72714,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -72763,8 +72763,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 376, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72791,7 +72791,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -72829,11 +72829,11 @@ }, { "x": 650, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 625, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -72851,7 +72851,7 @@ }, { "x": 637.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -72859,7 +72859,7 @@ }, { "x": 637.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 13, @@ -72883,7 +72883,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -72904,28 +72904,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -72953,8 +72953,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 377, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -72981,7 +72981,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -73019,11 +73019,11 @@ }, { "x": 675, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 650, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -73041,7 +73041,7 @@ }, { "x": 662.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -73049,7 +73049,7 @@ }, { "x": 662.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 14, @@ -73073,7 +73073,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -73094,28 +73094,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -73143,8 +73143,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 378, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73171,7 +73171,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -73209,11 +73209,11 @@ }, { "x": 700, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 675, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -73231,7 +73231,7 @@ }, { "x": 687.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -73239,7 +73239,7 @@ }, { "x": 687.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 14, @@ -73263,7 +73263,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -73284,28 +73284,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -73333,8 +73333,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 379, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73361,7 +73361,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150355455, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -73399,11 +73399,11 @@ }, { "x": 725, - "y": 511.5335212885556 + "y": 511.53352 }, { "x": 700, - "y": 483.6262505735201 + "y": 483.62625 }, { "category": 1, @@ -73421,7 +73421,7 @@ }, { "x": 712.5, - "y": 496.1262505735201 + "y": 496.12625 }, { "x": 0, @@ -73429,7 +73429,7 @@ }, { "x": 712.5, - "y": 494.9926067347262 + "y": 494.99261 }, { "endCol": 15, @@ -73453,7 +73453,7 @@ }, { "x": 0, - "y": 1.287410051313259 + "y": 1.28741 }, [ { @@ -73474,28 +73474,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 483.6262505735201 + "y": 483.62625 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 508.62625057352005 + "y": 508.62625 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 508.62625057352005 + "y": 508.62625 }, { "angle": 0, @@ -73523,8 +73523,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 380, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73551,7 +73551,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -73589,11 +73589,11 @@ }, { "x": 125, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 100, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -73611,15 +73611,15 @@ }, { "x": 112.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 112.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 2, @@ -73643,7 +73643,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -73664,28 +73664,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -73713,8 +73713,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 381, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73741,7 +73741,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -73779,11 +73779,11 @@ }, { "x": 150, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 125, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -73801,15 +73801,15 @@ }, { "x": 137.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 137.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 3, @@ -73833,7 +73833,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -73854,28 +73854,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -73903,8 +73903,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 382, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -73931,7 +73931,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -73969,11 +73969,11 @@ }, { "x": 175, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 150, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -73991,15 +73991,15 @@ }, { "x": 162.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 162.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 3, @@ -74023,7 +74023,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -74044,28 +74044,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -74093,8 +74093,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 383, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74121,7 +74121,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -74159,11 +74159,11 @@ }, { "x": 200, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 175, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -74181,15 +74181,15 @@ }, { "x": 187.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 187.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 4, @@ -74213,7 +74213,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -74234,28 +74234,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -74283,8 +74283,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 384, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74311,7 +74311,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -74349,11 +74349,11 @@ }, { "x": 225, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 200, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -74371,15 +74371,15 @@ }, { "x": 212.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 212.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 4, @@ -74403,7 +74403,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -74424,28 +74424,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -74473,8 +74473,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 385, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74501,7 +74501,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -74539,11 +74539,11 @@ }, { "x": 250, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 225, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -74561,15 +74561,15 @@ }, { "x": 237.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 237.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 5, @@ -74593,7 +74593,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -74614,28 +74614,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -74663,8 +74663,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 386, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74691,7 +74691,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -74729,11 +74729,11 @@ }, { "x": 275, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 250, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -74751,15 +74751,15 @@ }, { "x": 262.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 262.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 5, @@ -74783,7 +74783,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -74804,28 +74804,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -74853,8 +74853,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 387, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -74881,7 +74881,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -74919,11 +74919,11 @@ }, { "x": 300, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 275, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -74941,15 +74941,15 @@ }, { "x": 287.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 287.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 6, @@ -74973,7 +74973,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -74994,28 +74994,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -75043,8 +75043,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 388, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75071,7 +75071,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -75109,11 +75109,11 @@ }, { "x": 325, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 300, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -75131,15 +75131,15 @@ }, { "x": 312.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 312.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 6, @@ -75163,7 +75163,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -75184,28 +75184,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -75233,8 +75233,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 389, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75261,7 +75261,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -75299,11 +75299,11 @@ }, { "x": 350, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 325, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -75321,15 +75321,15 @@ }, { "x": 337.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 337.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 7, @@ -75353,7 +75353,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -75374,28 +75374,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -75423,8 +75423,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 390, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75451,7 +75451,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -75489,11 +75489,11 @@ }, { "x": 375, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 350, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -75511,15 +75511,15 @@ }, { "x": 362.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 362.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 7, @@ -75543,7 +75543,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -75564,28 +75564,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -75613,8 +75613,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 391, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75641,7 +75641,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -75679,11 +75679,11 @@ }, { "x": 400, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 375, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -75701,15 +75701,15 @@ }, { "x": 387.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 387.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 8, @@ -75733,7 +75733,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -75754,28 +75754,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -75803,8 +75803,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 392, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -75831,7 +75831,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -75869,11 +75869,11 @@ }, { "x": 425, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 400, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -75891,15 +75891,15 @@ }, { "x": 412.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 412.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 8, @@ -75923,7 +75923,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -75944,28 +75944,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -75993,8 +75993,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 393, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76021,7 +76021,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -76059,11 +76059,11 @@ }, { "x": 450, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 425, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -76081,15 +76081,15 @@ }, { "x": 437.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 437.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 9, @@ -76113,7 +76113,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -76134,28 +76134,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -76183,8 +76183,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 394, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76211,7 +76211,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -76249,11 +76249,11 @@ }, { "x": 475, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 450, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -76271,15 +76271,15 @@ }, { "x": 462.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 462.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 9, @@ -76303,7 +76303,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -76324,28 +76324,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -76373,8 +76373,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 395, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76401,7 +76401,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -76439,11 +76439,11 @@ }, { "x": 500, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 475, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -76461,15 +76461,15 @@ }, { "x": 487.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 487.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 10, @@ -76493,7 +76493,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -76514,28 +76514,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -76563,8 +76563,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 396, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76591,7 +76591,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -76629,11 +76629,11 @@ }, { "x": 525, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 500, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -76651,15 +76651,15 @@ }, { "x": 512.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 512.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 10, @@ -76683,7 +76683,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -76704,28 +76704,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -76753,8 +76753,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 397, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76781,7 +76781,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -76819,11 +76819,11 @@ }, { "x": 550, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 525, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -76841,15 +76841,15 @@ }, { "x": 537.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 537.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 11, @@ -76873,7 +76873,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -76894,28 +76894,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -76943,8 +76943,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 398, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -76971,7 +76971,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -77009,11 +77009,11 @@ }, { "x": 575, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 550, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -77031,15 +77031,15 @@ }, { "x": 562.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 562.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 11, @@ -77063,7 +77063,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -77084,28 +77084,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -77133,8 +77133,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 399, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77161,7 +77161,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -77199,11 +77199,11 @@ }, { "x": 600, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 575, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -77221,15 +77221,15 @@ }, { "x": 587.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 587.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 12, @@ -77253,7 +77253,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -77274,28 +77274,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -77323,8 +77323,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 400, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77351,7 +77351,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -77389,11 +77389,11 @@ }, { "x": 625, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 600, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -77411,15 +77411,15 @@ }, { "x": 612.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 612.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 13, @@ -77443,7 +77443,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -77464,28 +77464,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -77513,8 +77513,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 401, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77541,7 +77541,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -77579,11 +77579,11 @@ }, { "x": 650, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 625, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -77601,15 +77601,15 @@ }, { "x": 637.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 637.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 13, @@ -77633,7 +77633,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -77654,28 +77654,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -77703,8 +77703,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 402, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77731,7 +77731,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -77769,11 +77769,11 @@ }, { "x": 675, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 650, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -77791,15 +77791,15 @@ }, { "x": 662.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 662.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 14, @@ -77823,7 +77823,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -77844,28 +77844,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -77893,8 +77893,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 403, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -77921,7 +77921,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -77959,11 +77959,11 @@ }, { "x": 700, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 675, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -77981,15 +77981,15 @@ }, { "x": 687.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 687.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 14, @@ -78013,7 +78013,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -78034,28 +78034,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -78083,8 +78083,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 404, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78111,7 +78111,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.1266394175647276, + "speed": 1.12664, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -78149,11 +78149,11 @@ }, { "x": 725, - "y": 534.2944361454107 + "y": 534.29444 }, { "x": 700, - "y": 508.1677967278454 + "y": 508.1678 }, { "category": 1, @@ -78171,15 +78171,15 @@ }, { "x": 712.5, - "y": 520.6677967278457 + "y": 520.6678 }, { "x": 0, - "y": 0.3424959364801999 + "y": 0.3425 }, { "x": 712.5, - "y": 519.6494775484413 + "y": 519.64948 }, { "endCol": 15, @@ -78203,7 +78203,7 @@ }, { "x": 0, - "y": 0.8645529668849576 + "y": 0.86455 }, [ { @@ -78224,28 +78224,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 508.1677967278454 + "y": 508.1678 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 533.1677967278459 + "y": 533.1678 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 533.1677967278459 + "y": 533.1678 }, { "angle": 0, @@ -78273,8 +78273,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 405, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78301,7 +78301,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -78339,11 +78339,11 @@ }, { "x": 125, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 100, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -78361,7 +78361,7 @@ }, { "x": 112.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -78369,7 +78369,7 @@ }, { "x": 112.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 2, @@ -78393,7 +78393,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -78414,28 +78414,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -78463,8 +78463,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 406, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78491,7 +78491,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -78529,11 +78529,11 @@ }, { "x": 150, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 125, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -78551,7 +78551,7 @@ }, { "x": 137.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -78559,7 +78559,7 @@ }, { "x": 137.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 3, @@ -78583,7 +78583,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -78604,28 +78604,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -78653,8 +78653,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 407, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78681,7 +78681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -78719,11 +78719,11 @@ }, { "x": 175, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 150, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -78741,7 +78741,7 @@ }, { "x": 162.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -78749,7 +78749,7 @@ }, { "x": 162.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 3, @@ -78773,7 +78773,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -78794,28 +78794,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -78843,8 +78843,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 408, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -78871,7 +78871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -78909,11 +78909,11 @@ }, { "x": 200, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 175, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -78931,7 +78931,7 @@ }, { "x": 187.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -78939,7 +78939,7 @@ }, { "x": 187.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 4, @@ -78963,7 +78963,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -78984,28 +78984,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -79033,8 +79033,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 409, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79061,7 +79061,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -79099,11 +79099,11 @@ }, { "x": 225, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 200, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -79121,7 +79121,7 @@ }, { "x": 212.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -79129,7 +79129,7 @@ }, { "x": 212.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 4, @@ -79153,7 +79153,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -79174,28 +79174,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -79223,8 +79223,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 410, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79251,7 +79251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -79289,11 +79289,11 @@ }, { "x": 250, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 225, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -79311,7 +79311,7 @@ }, { "x": 237.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -79319,7 +79319,7 @@ }, { "x": 237.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 5, @@ -79343,7 +79343,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -79364,28 +79364,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -79413,8 +79413,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 411, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79441,7 +79441,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -79479,11 +79479,11 @@ }, { "x": 275, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 250, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -79501,7 +79501,7 @@ }, { "x": 262.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -79509,7 +79509,7 @@ }, { "x": 262.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 5, @@ -79533,7 +79533,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -79554,28 +79554,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -79603,8 +79603,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 412, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79631,7 +79631,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -79669,11 +79669,11 @@ }, { "x": 300, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 275, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -79691,7 +79691,7 @@ }, { "x": 287.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -79699,7 +79699,7 @@ }, { "x": 287.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 6, @@ -79723,7 +79723,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -79744,28 +79744,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -79793,8 +79793,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 413, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -79821,7 +79821,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -79859,11 +79859,11 @@ }, { "x": 325, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 300, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -79881,7 +79881,7 @@ }, { "x": 312.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -79889,7 +79889,7 @@ }, { "x": 312.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 6, @@ -79913,7 +79913,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -79934,28 +79934,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -79983,8 +79983,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 414, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80011,7 +80011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -80049,11 +80049,11 @@ }, { "x": 350, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 325, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -80071,7 +80071,7 @@ }, { "x": 337.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -80079,7 +80079,7 @@ }, { "x": 337.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 7, @@ -80103,7 +80103,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -80124,28 +80124,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -80173,8 +80173,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 415, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80201,7 +80201,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -80239,11 +80239,11 @@ }, { "x": 375, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 350, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -80261,7 +80261,7 @@ }, { "x": 362.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -80269,7 +80269,7 @@ }, { "x": 362.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 7, @@ -80293,7 +80293,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -80314,28 +80314,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -80363,8 +80363,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 416, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80391,7 +80391,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -80429,11 +80429,11 @@ }, { "x": 400, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 375, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -80451,7 +80451,7 @@ }, { "x": 387.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -80459,7 +80459,7 @@ }, { "x": 387.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 8, @@ -80483,7 +80483,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -80504,28 +80504,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -80553,8 +80553,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 417, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80581,7 +80581,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -80619,11 +80619,11 @@ }, { "x": 425, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 400, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -80641,7 +80641,7 @@ }, { "x": 412.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -80649,7 +80649,7 @@ }, { "x": 412.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 8, @@ -80673,7 +80673,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -80694,28 +80694,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -80743,8 +80743,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 418, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80771,7 +80771,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -80809,11 +80809,11 @@ }, { "x": 450, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 425, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -80831,7 +80831,7 @@ }, { "x": 437.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -80839,7 +80839,7 @@ }, { "x": 437.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 9, @@ -80863,7 +80863,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -80884,28 +80884,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -80933,8 +80933,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 419, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -80961,7 +80961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -80999,11 +80999,11 @@ }, { "x": 475, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 450, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -81021,7 +81021,7 @@ }, { "x": 462.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -81029,7 +81029,7 @@ }, { "x": 462.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 9, @@ -81053,7 +81053,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -81074,28 +81074,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -81123,8 +81123,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 420, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81151,7 +81151,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -81189,11 +81189,11 @@ }, { "x": 500, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 475, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -81211,7 +81211,7 @@ }, { "x": 487.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -81219,7 +81219,7 @@ }, { "x": 487.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 10, @@ -81243,7 +81243,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -81264,28 +81264,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -81313,8 +81313,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 421, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81341,7 +81341,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -81379,11 +81379,11 @@ }, { "x": 525, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 500, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -81401,7 +81401,7 @@ }, { "x": 512.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -81409,7 +81409,7 @@ }, { "x": 512.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 10, @@ -81433,7 +81433,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -81454,28 +81454,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -81503,8 +81503,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 422, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81531,7 +81531,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -81569,11 +81569,11 @@ }, { "x": 550, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 525, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -81591,7 +81591,7 @@ }, { "x": 537.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -81599,7 +81599,7 @@ }, { "x": 537.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 11, @@ -81623,7 +81623,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -81644,28 +81644,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -81693,8 +81693,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 423, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81721,7 +81721,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -81759,11 +81759,11 @@ }, { "x": 575, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 550, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -81781,7 +81781,7 @@ }, { "x": 562.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -81789,7 +81789,7 @@ }, { "x": 562.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 11, @@ -81813,7 +81813,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -81834,28 +81834,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -81883,8 +81883,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 424, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -81911,7 +81911,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -81949,11 +81949,11 @@ }, { "x": 600, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 575, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -81971,7 +81971,7 @@ }, { "x": 587.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -81979,7 +81979,7 @@ }, { "x": 587.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 12, @@ -82003,7 +82003,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -82024,28 +82024,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -82073,8 +82073,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 425, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82101,7 +82101,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -82139,11 +82139,11 @@ }, { "x": 625, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 600, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -82161,7 +82161,7 @@ }, { "x": 612.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -82169,7 +82169,7 @@ }, { "x": 612.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 13, @@ -82193,7 +82193,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -82214,28 +82214,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -82263,8 +82263,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 426, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82291,7 +82291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -82329,11 +82329,11 @@ }, { "x": 650, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 625, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -82351,7 +82351,7 @@ }, { "x": 637.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -82359,7 +82359,7 @@ }, { "x": 637.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 13, @@ -82383,7 +82383,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -82404,28 +82404,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -82453,8 +82453,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 427, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82481,7 +82481,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -82519,11 +82519,11 @@ }, { "x": 675, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 650, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -82541,7 +82541,7 @@ }, { "x": 662.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -82549,7 +82549,7 @@ }, { "x": 662.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 14, @@ -82573,7 +82573,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -82594,28 +82594,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -82643,8 +82643,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 428, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82671,7 +82671,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -82709,11 +82709,11 @@ }, { "x": 700, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 675, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -82731,7 +82731,7 @@ }, { "x": 687.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -82739,7 +82739,7 @@ }, { "x": 687.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 14, @@ -82763,7 +82763,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -82784,28 +82784,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -82833,8 +82833,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 429, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -82861,7 +82861,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0088033091126314, + "speed": 1.0088, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -82899,11 +82899,11 @@ }, { "x": 725, - "y": 558.052638680192 + "y": 558.05264 }, { "x": 700, - "y": 532.0438353710794 + "y": 532.04384 }, { "category": 1, @@ -82921,7 +82921,7 @@ }, { "x": 712.5, - "y": 544.5438353710794 + "y": 544.54384 }, { "x": 0, @@ -82929,7 +82929,7 @@ }, { "x": 712.5, - "y": 543.8668349069375 + "y": 543.86683 }, { "endCol": 15, @@ -82953,7 +82953,7 @@ }, { "x": 0, - "y": 0.42693046048430006 + "y": 0.42693 }, [ { @@ -82974,28 +82974,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 532.0438353710794 + "y": 532.04384 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 557.0438353710794 + "y": 557.04384 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 557.0438353710794 + "y": 557.04384 }, { "angle": 0, @@ -83023,8 +83023,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 430, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -83051,7 +83051,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -83089,11 +83089,11 @@ }, { "x": 125, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 100, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -83111,7 +83111,7 @@ }, { "x": 112.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -83119,7 +83119,7 @@ }, { "x": 112.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 2, @@ -83143,7 +83143,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -83164,28 +83164,28 @@ "index": 0, "isInternal": false, "x": 100, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 125, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 125, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 100, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -83213,8 +83213,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 431, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -83241,7 +83241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -83279,11 +83279,11 @@ }, { "x": 150, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 125, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -83301,7 +83301,7 @@ }, { "x": 137.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -83309,7 +83309,7 @@ }, { "x": 137.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 3, @@ -83333,7 +83333,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -83354,28 +83354,28 @@ "index": 0, "isInternal": false, "x": 125, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 150, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 150, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 125, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -83403,8 +83403,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 432, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -83431,7 +83431,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -83469,11 +83469,11 @@ }, { "x": 175, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 150, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -83491,7 +83491,7 @@ }, { "x": 162.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -83499,7 +83499,7 @@ }, { "x": 162.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 3, @@ -83523,7 +83523,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -83544,28 +83544,28 @@ "index": 0, "isInternal": false, "x": 150, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 175, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 175, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 150, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -83593,8 +83593,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 433, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -83621,7 +83621,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -83659,11 +83659,11 @@ }, { "x": 200, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 175, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -83681,7 +83681,7 @@ }, { "x": 187.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -83689,7 +83689,7 @@ }, { "x": 187.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 4, @@ -83713,7 +83713,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -83734,28 +83734,28 @@ "index": 0, "isInternal": false, "x": 175, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 200, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 200, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 175, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -83783,8 +83783,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 434, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -83811,7 +83811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -83849,11 +83849,11 @@ }, { "x": 225, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 200, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -83871,7 +83871,7 @@ }, { "x": 212.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -83879,7 +83879,7 @@ }, { "x": 212.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 4, @@ -83903,7 +83903,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -83924,28 +83924,28 @@ "index": 0, "isInternal": false, "x": 200, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 225, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 225, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 200, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -83973,8 +83973,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 435, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -84001,7 +84001,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -84039,11 +84039,11 @@ }, { "x": 250, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 225, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -84061,7 +84061,7 @@ }, { "x": 237.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -84069,7 +84069,7 @@ }, { "x": 237.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 5, @@ -84093,7 +84093,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -84114,28 +84114,28 @@ "index": 0, "isInternal": false, "x": 225, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 250, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 250, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 225, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -84163,8 +84163,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 436, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -84191,7 +84191,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -84229,11 +84229,11 @@ }, { "x": 275, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 250, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -84251,7 +84251,7 @@ }, { "x": 262.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -84259,7 +84259,7 @@ }, { "x": 262.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 5, @@ -84283,7 +84283,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -84304,28 +84304,28 @@ "index": 0, "isInternal": false, "x": 250, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 275, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 275, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 250, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -84353,8 +84353,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 437, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -84381,7 +84381,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -84419,11 +84419,11 @@ }, { "x": 300, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 275, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -84441,7 +84441,7 @@ }, { "x": 287.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -84449,7 +84449,7 @@ }, { "x": 287.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 6, @@ -84473,7 +84473,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -84494,28 +84494,28 @@ "index": 0, "isInternal": false, "x": 275, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 300, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 300, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 275, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -84543,8 +84543,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 438, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -84571,7 +84571,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -84609,11 +84609,11 @@ }, { "x": 325, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 300, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -84631,7 +84631,7 @@ }, { "x": 312.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -84639,7 +84639,7 @@ }, { "x": 312.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 6, @@ -84663,7 +84663,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -84684,28 +84684,28 @@ "index": 0, "isInternal": false, "x": 300, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 325, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 325, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 300, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -84733,8 +84733,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 439, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -84761,7 +84761,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -84799,11 +84799,11 @@ }, { "x": 350, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 325, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -84821,7 +84821,7 @@ }, { "x": 337.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -84829,7 +84829,7 @@ }, { "x": 337.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 7, @@ -84853,7 +84853,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -84874,28 +84874,28 @@ "index": 0, "isInternal": false, "x": 325, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 350, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 350, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 325, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -84923,8 +84923,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 440, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -84951,7 +84951,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -84989,11 +84989,11 @@ }, { "x": 375, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 350, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -85011,7 +85011,7 @@ }, { "x": 362.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -85019,7 +85019,7 @@ }, { "x": 362.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 7, @@ -85043,7 +85043,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -85064,28 +85064,28 @@ "index": 0, "isInternal": false, "x": 350, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 375, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 375, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 350, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -85113,8 +85113,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 441, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -85141,7 +85141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -85179,11 +85179,11 @@ }, { "x": 400, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 375, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -85201,7 +85201,7 @@ }, { "x": 387.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -85209,7 +85209,7 @@ }, { "x": 387.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 8, @@ -85233,7 +85233,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -85254,28 +85254,28 @@ "index": 0, "isInternal": false, "x": 375, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 400, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 400, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 375, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -85303,8 +85303,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 442, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -85331,7 +85331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -85369,11 +85369,11 @@ }, { "x": 425, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 400, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -85391,7 +85391,7 @@ }, { "x": 412.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -85399,7 +85399,7 @@ }, { "x": 412.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 8, @@ -85423,7 +85423,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -85444,28 +85444,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 425, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 425, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -85493,8 +85493,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 443, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -85521,7 +85521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -85559,11 +85559,11 @@ }, { "x": 450, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 425, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -85581,7 +85581,7 @@ }, { "x": 437.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -85589,7 +85589,7 @@ }, { "x": 437.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 9, @@ -85613,7 +85613,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -85634,28 +85634,28 @@ "index": 0, "isInternal": false, "x": 425, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 450, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 450, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 425, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -85683,8 +85683,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 444, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -85711,7 +85711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -85749,11 +85749,11 @@ }, { "x": 475, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 450, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -85771,7 +85771,7 @@ }, { "x": 462.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -85779,7 +85779,7 @@ }, { "x": 462.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 9, @@ -85803,7 +85803,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -85824,28 +85824,28 @@ "index": 0, "isInternal": false, "x": 450, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 475, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 475, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 450, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -85873,8 +85873,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 445, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -85901,7 +85901,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -85939,11 +85939,11 @@ }, { "x": 500, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 475, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -85961,7 +85961,7 @@ }, { "x": 487.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -85969,7 +85969,7 @@ }, { "x": 487.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 10, @@ -85993,7 +85993,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -86014,28 +86014,28 @@ "index": 0, "isInternal": false, "x": 475, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 500, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 500, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 475, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -86063,8 +86063,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 446, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -86091,7 +86091,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -86129,11 +86129,11 @@ }, { "x": 525, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 500, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -86151,7 +86151,7 @@ }, { "x": 512.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -86159,7 +86159,7 @@ }, { "x": 512.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 10, @@ -86183,7 +86183,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -86204,28 +86204,28 @@ "index": 0, "isInternal": false, "x": 500, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 525, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 525, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 500, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -86253,8 +86253,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 447, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -86281,7 +86281,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -86319,11 +86319,11 @@ }, { "x": 550, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 525, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -86341,7 +86341,7 @@ }, { "x": 537.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -86349,7 +86349,7 @@ }, { "x": 537.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 11, @@ -86373,7 +86373,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -86394,28 +86394,28 @@ "index": 0, "isInternal": false, "x": 525, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 550, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 550, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 525, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -86443,8 +86443,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 448, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -86471,7 +86471,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -86509,11 +86509,11 @@ }, { "x": 575, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 550, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -86531,7 +86531,7 @@ }, { "x": 562.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -86539,7 +86539,7 @@ }, { "x": 562.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 11, @@ -86563,7 +86563,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -86584,28 +86584,28 @@ "index": 0, "isInternal": false, "x": 550, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 575, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 575, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 550, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -86633,8 +86633,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 449, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -86661,7 +86661,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -86699,11 +86699,11 @@ }, { "x": 600, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 575, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -86721,7 +86721,7 @@ }, { "x": 587.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -86729,7 +86729,7 @@ }, { "x": 587.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 12, @@ -86753,7 +86753,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -86774,28 +86774,28 @@ "index": 0, "isInternal": false, "x": 575, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 575, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -86823,8 +86823,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 450, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -86851,7 +86851,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -86889,11 +86889,11 @@ }, { "x": 625, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 600, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -86911,7 +86911,7 @@ }, { "x": 612.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -86919,7 +86919,7 @@ }, { "x": 612.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 13, @@ -86943,7 +86943,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -86964,28 +86964,28 @@ "index": 0, "isInternal": false, "x": 600, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 625, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 625, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 600, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -87013,8 +87013,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 451, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -87041,7 +87041,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -87079,11 +87079,11 @@ }, { "x": 650, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 625, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -87101,7 +87101,7 @@ }, { "x": 637.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -87109,7 +87109,7 @@ }, { "x": 637.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 13, @@ -87133,7 +87133,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -87154,28 +87154,28 @@ "index": 0, "isInternal": false, "x": 625, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 650, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 650, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 625, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -87203,8 +87203,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 452, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -87231,7 +87231,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -87269,11 +87269,11 @@ }, { "x": 675, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 650, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -87291,7 +87291,7 @@ }, { "x": 662.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -87299,7 +87299,7 @@ }, { "x": 662.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 14, @@ -87323,7 +87323,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -87344,28 +87344,28 @@ "index": 0, "isInternal": false, "x": 650, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 675, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 675, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 650, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -87393,8 +87393,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 453, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -87421,7 +87421,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -87459,11 +87459,11 @@ }, { "x": 700, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 675, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -87481,7 +87481,7 @@ }, { "x": 687.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -87489,7 +87489,7 @@ }, { "x": 687.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 14, @@ -87513,7 +87513,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -87534,28 +87534,28 @@ "index": 0, "isInternal": false, "x": 675, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 700, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 700, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 675, - "y": 580.5641614917323 + "y": 580.56416 }, { "angle": 0, @@ -87583,8 +87583,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 454, - "inertia": 260.4166666666667, - "inverseInertia": 0.0038399999999999997, + "inertia": 260.41667, + "inverseInertia": 0.00384, "inverseMass": 1.6, "isSleeping": false, "isStatic": false, @@ -87611,7 +87611,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6512494457506961, + "speed": 0.65125, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -87649,11 +87649,11 @@ }, { "x": 725, - "y": 581.215410937483 + "y": 581.21541 }, { "x": 700, - "y": 555.5641614917323 + "y": 555.56416 }, { "category": 1, @@ -87671,7 +87671,7 @@ }, { "x": 712.5, - "y": 568.0641614917323 + "y": 568.06416 }, { "x": 0, @@ -87679,7 +87679,7 @@ }, { "x": 712.5, - "y": 567.7982078509692 + "y": 567.79821 }, { "endCol": 15, @@ -87703,7 +87703,7 @@ }, { "x": 0, - "y": 0.05131788113510538 + "y": 0.05132 }, [ { @@ -87724,28 +87724,28 @@ "index": 0, "isInternal": false, "x": 700, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 1, "isInternal": false, "x": 725, - "y": 555.5641614917323 + "y": 555.56416 }, { "body": null, "index": 2, "isInternal": false, "x": 725, - "y": 580.5641614917323 + "y": 580.56416 }, { "body": null, "index": 3, "isInternal": false, "x": 700, - "y": 580.5641614917323 + "y": 580.56416 }, [], [], diff --git a/test/browser/refs/timescale/timescale-0.json b/test/browser/refs/timescale/timescale-0.json index b1b4c2b6..959b2d5d 100644 --- a/test/browser/refs/timescale/timescale-0.json +++ b/test/browser/refs/timescale/timescale-0.json @@ -997,14 +997,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 445.64723200000003, + "area": 445.64723, "axes": { "#": 93 }, "bounds": { "#": 101 }, - "circleRadius": 12.11321159122085, + "circleRadius": 12.11321, "collisionFilter": { "#": 104 }, @@ -1019,13 +1019,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 5, - "inertia": 126.46280868085778, - "inverseInertia": 0.007907463154037685, - "inverseMass": 2.243927322317577, + "inertia": 126.46281, + "inverseInertia": 0.00791, + "inverseMass": 2.24393, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.44564723200000006, + "mass": 0.44565, "motion": 0, "parent": null, "position": { @@ -1080,28 +1080,28 @@ } ], { - "x": -0.900896921339718, - "y": -0.43403310601913536 + "x": -0.9009, + "y": -0.43403 }, { - "x": -0.6236538782909027, - "y": -0.7817006077090614 + "x": -0.62365, + "y": -0.7817 }, { - "x": -0.22240673703341207, - "y": -0.974953969847885 + "x": -0.22241, + "y": -0.97495 }, { - "x": 0.22240673703341207, - "y": -0.974953969847885 + "x": 0.22241, + "y": -0.97495 }, { - "x": 0.6236538782909027, - "y": -0.7817006077090614 + "x": 0.62365, + "y": -0.7817 }, { - "x": 0.900896921339718, - "y": -0.43403310601913536 + "x": 0.9009, + "y": -0.43403 }, { "x": 1, @@ -1116,7 +1116,7 @@ } }, { - "x": 43.620000000000005, + "x": 43.62, "y": 124.226 }, { @@ -1138,7 +1138,7 @@ "y": 0 }, { - "x": 31.810000000000002, + "x": 31.81, "y": 112.113 }, { @@ -1146,7 +1146,7 @@ "y": 0 }, { - "x": 31.810000000000002, + "x": 31.81, "y": 112.113 }, { @@ -1214,15 +1214,15 @@ "body": null, "index": 0, "isInternal": false, - "x": 43.620000000000005, - "y": 114.80799999999999 + "x": 43.62, + "y": 114.808 }, { "body": null, "index": 1, "isInternal": false, "x": 41.28, - "y": 119.66499999999999 + "y": 119.665 }, { "body": null, @@ -1235,29 +1235,29 @@ "body": null, "index": 3, "isInternal": false, - "x": 31.810000000000002, + "x": 31.81, "y": 124.226 }, { "body": null, "index": 4, "isInternal": false, - "x": 26.554000000000002, + "x": 26.554, "y": 123.027 }, { "body": null, "index": 5, "isInternal": false, - "x": 22.340000000000003, - "y": 119.66499999999999 + "x": 22.34, + "y": 119.665 }, { "body": null, "index": 6, "isInternal": false, "x": 20, - "y": 114.80799999999999 + "y": 114.808 }, { "body": null, @@ -1270,21 +1270,21 @@ "body": null, "index": 8, "isInternal": false, - "x": 22.340000000000003, + "x": 22.34, "y": 104.561 }, { "body": null, "index": 9, "isInternal": false, - "x": 26.554000000000002, + "x": 26.554, "y": 101.199 }, { "body": null, "index": 10, "isInternal": false, - "x": 31.810000000000002, + "x": 31.81, "y": 100 }, { @@ -1305,7 +1305,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 43.620000000000005, + "x": 43.62, "y": 109.418 }, { @@ -1313,14 +1313,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 732.475276, + "area": 732.47528, "axes": { "#": 129 }, "bounds": { "#": 138 }, - "circleRadius": 15.467721193415638, + "circleRadius": 15.46772, "collisionFilter": { "#": 141 }, @@ -1335,13 +1335,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 6, - "inertia": 341.60522862031934, - "inverseInertia": 0.002927355661500897, - "inverseMass": 1.3652337939117005, + "inertia": 341.60523, + "inverseInertia": 0.00293, + "inverseMass": 1.36523, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7324752760000001, + "mass": 0.73248, "motion": 0, "parent": null, "position": { @@ -1399,32 +1399,32 @@ } ], { - "x": -0.9238350355607171, - "y": -0.38279083984668255 + "x": -0.92384, + "y": -0.38279 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38279083984668255, - "y": -0.9238350355607171 + "x": -0.38279, + "y": -0.92384 }, { "x": 0, "y": -1 }, { - "x": 0.38279083984668255, - "y": -0.9238350355607171 + "x": 0.38279, + "y": -0.92384 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238350355607171, - "y": -0.38279083984668255 + "x": 0.92384, + "y": -0.38279 }, { "x": 1, @@ -1439,8 +1439,8 @@ } }, { - "x": 93.96199999999999, - "y": 130.34199999999998 + "x": 93.962, + "y": 130.342 }, { "x": 63.62, @@ -1462,7 +1462,7 @@ }, { "x": 78.791, - "y": 115.17099999999999 + "y": 115.171 }, { "x": 0, @@ -1470,7 +1470,7 @@ }, { "x": 78.791, - "y": 115.17099999999999 + "y": 115.171 }, { "fillStyle": "#FF6B6B", @@ -1543,7 +1543,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 93.96199999999999, + "x": 93.962, "y": 118.189 }, { @@ -1558,34 +1558,34 @@ "index": 2, "isInternal": false, "x": 87.384, - "y": 128.03199999999998 + "y": 128.032 }, { "body": null, "index": 3, "isInternal": false, "x": 81.809, - "y": 130.34199999999998 + "y": 130.342 }, { "body": null, "index": 4, "isInternal": false, "x": 75.773, - "y": 130.34199999999998 + "y": 130.342 }, { "body": null, "index": 5, "isInternal": false, "x": 70.198, - "y": 128.03199999999998 + "y": 128.032 }, { "body": null, "index": 6, "isInternal": false, - "x": 65.92999999999999, + "x": 65.93, "y": 123.764 }, { @@ -1600,21 +1600,21 @@ "index": 8, "isInternal": false, "x": 63.62, - "y": 112.15299999999999 + "y": 112.153 }, { "body": null, "index": 9, "isInternal": false, - "x": 65.92999999999999, - "y": 106.57799999999999 + "x": 65.93, + "y": 106.578 }, { "body": null, "index": 10, "isInternal": false, "x": 70.198, - "y": 102.30999999999999 + "y": 102.31 }, { "body": null, @@ -1635,35 +1635,35 @@ "index": 13, "isInternal": false, "x": 87.384, - "y": 102.30999999999999 + "y": 102.31 }, { "body": null, "index": 14, "isInternal": false, "x": 91.652, - "y": 106.57799999999999 + "y": 106.578 }, { "body": null, "index": 15, "isInternal": false, - "x": 93.96199999999999, - "y": 112.15299999999999 + "x": 93.962, + "y": 112.153 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1023.0280239999998, + "area": 1023.02802, "axes": { "#": 168 }, "bounds": { "#": 179 }, - "circleRadius": 18.19465877914952, + "circleRadius": 18.19466, "collisionFilter": { "#": 182 }, @@ -1678,13 +1678,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 7, - "inertia": 666.3140407130343, - "inverseInertia": 0.0015007938282823555, - "inverseMass": 0.9774903292385275, + "inertia": 666.31404, + "inverseInertia": 0.0015, + "inverseMass": 0.97749, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0230280239999998, + "mass": 1.02303, "motion": 0, "parent": null, "position": { @@ -1748,40 +1748,40 @@ } ], { - "x": -0.9510624654126439, - "y": -0.3089986842742595 + "x": -0.95106, + "y": -0.309 }, { - "x": -0.8090549880907667, - "y": -0.5877329548744475 + "x": -0.80905, + "y": -0.58773 }, { - "x": -0.5877329548744475, - "y": -0.8090549880907667 + "x": -0.58773, + "y": -0.80905 }, { - "x": -0.3089986842742595, - "y": -0.9510624654126439 + "x": -0.309, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.3089986842742595, - "y": -0.9510624654126439 + "x": 0.309, + "y": -0.95106 }, { - "x": 0.5877329548744475, - "y": -0.8090549880907667 + "x": 0.58773, + "y": -0.80905 }, { - "x": 0.8090549880907667, - "y": -0.5877329548744475 + "x": 0.80905, + "y": -0.58773 }, { - "x": 0.9510624654126439, - "y": -0.3089986842742595 + "x": 0.95106, + "y": -0.309 }, { "x": 1, @@ -1800,7 +1800,7 @@ "y": 135.942 }, { - "x": 113.96199999999999, + "x": 113.962, "y": 100 }, { @@ -1913,27 +1913,27 @@ "index": 0, "isInternal": false, "x": 149.904, - "y": 120.81700000000001 + "y": 120.817 }, { "body": null, "index": 1, "isInternal": false, - "x": 148.14499999999998, - "y": 126.23100000000001 + "x": 148.145, + "y": 126.231 }, { "body": null, "index": 2, "isInternal": false, - "x": 144.79899999999998, + "x": 144.799, "y": 130.837 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.19299999999998, + "x": 140.193, "y": 134.183 }, { @@ -1954,7 +1954,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 123.67299999999999, + "x": 123.673, "y": 134.183 }, { @@ -1968,28 +1968,28 @@ "body": null, "index": 8, "isInternal": false, - "x": 115.72099999999999, - "y": 126.23100000000001 + "x": 115.721, + "y": 126.231 }, { "body": null, "index": 9, "isInternal": false, - "x": 113.96199999999999, - "y": 120.81700000000001 + "x": 113.962, + "y": 120.817 }, { "body": null, "index": 10, "isInternal": false, - "x": 113.96199999999999, + "x": 113.962, "y": 115.125 }, { "body": null, "index": 11, "isInternal": false, - "x": 115.72099999999999, + "x": 115.721, "y": 109.711 }, { @@ -2003,7 +2003,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 123.67299999999999, + "x": 123.673, "y": 101.759 }, { @@ -2024,21 +2024,21 @@ "body": null, "index": 16, "isInternal": false, - "x": 140.19299999999998, + "x": 140.193, "y": 101.759 }, { "body": null, "index": 17, "isInternal": false, - "x": 144.79899999999998, + "x": 144.799, "y": 105.105 }, { "body": null, "index": 18, "isInternal": false, - "x": 148.14499999999998, + "x": 148.145, "y": 109.711 }, { @@ -2060,7 +2060,7 @@ "bounds": { "#": 221 }, - "circleRadius": 13.750814471879288, + "circleRadius": 13.75081, "collisionFilter": { "#": 224 }, @@ -2075,13 +2075,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 8, - "inertia": 210.00413885422935, - "inverseInertia": 0.004761810912184603, - "inverseMass": 1.7413107072063536, + "inertia": 210.00414, + "inverseInertia": 0.00476, + "inverseMass": 1.74131, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5742800499999999, + "mass": 0.57428, "motion": 0, "parent": null, "position": { @@ -2136,28 +2136,28 @@ } ], { - "x": -0.9009638128018401, - "y": -0.4338942359856497 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6234987739411211, - "y": -0.7818243273868618 + "x": -0.6235, + "y": -0.78182 }, { - "x": -0.22256744167907103, - "y": -0.9749172959304976 + "x": -0.22257, + "y": -0.97492 }, { - "x": 0.22256744167907103, - "y": -0.9749172959304976 + "x": 0.22257, + "y": -0.97492 }, { - "x": 0.6234987739411211, - "y": -0.7818243273868618 + "x": 0.6235, + "y": -0.78182 }, { - "x": 0.9009638128018401, - "y": -0.4338942359856497 + "x": 0.90096, + "y": -0.43389 }, { "x": 1, @@ -2173,7 +2173,7 @@ }, { "x": 196.716, - "y": 127.50200000000001 + "y": 127.502 }, { "x": 169.904, @@ -2278,7 +2278,7 @@ "index": 1, "isInternal": false, "x": 194.061, - "y": 122.32400000000001 + "y": 122.324 }, { "body": null, @@ -2292,7 +2292,7 @@ "index": 3, "isInternal": false, "x": 183.31, - "y": 127.50200000000001 + "y": 127.502 }, { "body": null, @@ -2306,7 +2306,7 @@ "index": 5, "isInternal": false, "x": 172.559, - "y": 122.32400000000001 + "y": 122.324 }, { "body": null, @@ -2334,7 +2334,7 @@ "index": 9, "isInternal": false, "x": 177.344, - "y": 101.36200000000001 + "y": 101.362 }, { "body": null, @@ -2348,7 +2348,7 @@ "index": 11, "isInternal": false, "x": 189.276, - "y": 101.36200000000001 + "y": 101.362 }, { "body": null, @@ -2369,14 +2369,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1195.2601479999998, + "area": 1195.26015, "axes": { "#": 249 }, "bounds": { "#": 260 }, - "circleRadius": 19.667052469135804, + "circleRadius": 19.66705, "collisionFilter": { "#": 263 }, @@ -2391,13 +2391,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 9, - "inertia": 909.5546177631703, - "inverseInertia": 0.0010994391985599042, - "inverseMass": 0.8366379500506865, + "inertia": 909.55462, + "inverseInertia": 0.0011, + "inverseMass": 0.83664, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1952601479999998, + "mass": 1.19526, "motion": 0, "parent": null, "position": { @@ -2461,40 +2461,40 @@ } ], { - "x": -0.9510292915090645, - "y": -0.3091007710953933 + "x": -0.95103, + "y": -0.3091 }, { - "x": -0.8090733104102286, - "y": -0.5877077321099611 + "x": -0.80907, + "y": -0.58771 }, { - "x": -0.5877077321099611, - "y": -0.8090733104102286 + "x": -0.58771, + "y": -0.80907 }, { - "x": -0.3091007710953933, - "y": -0.9510292915090645 + "x": -0.3091, + "y": -0.95103 }, { "x": 0, "y": -1 }, { - "x": 0.3091007710953933, - "y": -0.9510292915090645 + "x": 0.3091, + "y": -0.95103 }, { - "x": 0.5877077321099611, - "y": -0.8090733104102286 + "x": 0.58771, + "y": -0.80907 }, { - "x": 0.8090733104102286, - "y": -0.5877077321099611 + "x": 0.80907, + "y": -0.58771 }, { - "x": 0.9510292915090645, - "y": -0.3091007710953933 + "x": 0.95103, + "y": -0.3091 }, { "x": 1, @@ -2509,7 +2509,7 @@ } }, { - "x": 255.56600000000003, + "x": 255.566, "y": 138.85 }, { @@ -2531,7 +2531,7 @@ "y": 0 }, { - "x": 236.14100000000002, + "x": 236.141, "y": 119.425 }, { @@ -2539,7 +2539,7 @@ "y": 0 }, { - "x": 236.14100000000002, + "x": 236.141, "y": 119.425 }, { @@ -2625,50 +2625,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 255.56600000000003, + "x": 255.566, "y": 122.502 }, { "body": null, "index": 1, "isInternal": false, - "x": 253.66400000000002, - "y": 128.35399999999998 + "x": 253.664, + "y": 128.354 }, { "body": null, "index": 2, "isInternal": false, - "x": 250.04800000000003, + "x": 250.048, "y": 133.332 }, { "body": null, "index": 3, "isInternal": false, - "x": 245.07000000000002, - "y": 136.94799999999998 + "x": 245.07, + "y": 136.948 }, { "body": null, "index": 4, "isInternal": false, - "x": 239.21800000000002, + "x": 239.218, "y": 138.85 }, { "body": null, "index": 5, "isInternal": false, - "x": 233.06400000000002, + "x": 233.064, "y": 138.85 }, { "body": null, "index": 6, "isInternal": false, - "x": 227.21200000000002, - "y": 136.94799999999998 + "x": 227.212, + "y": 136.948 }, { "body": null, @@ -2681,8 +2681,8 @@ "body": null, "index": 8, "isInternal": false, - "x": 218.61800000000002, - "y": 128.35399999999998 + "x": 218.618, + "y": 128.354 }, { "body": null, @@ -2702,7 +2702,7 @@ "body": null, "index": 11, "isInternal": false, - "x": 218.61800000000002, + "x": 218.618, "y": 110.496 }, { @@ -2716,49 +2716,49 @@ "body": null, "index": 13, "isInternal": false, - "x": 227.21200000000002, + "x": 227.212, "y": 101.902 }, { "body": null, "index": 14, "isInternal": false, - "x": 233.06400000000002, + "x": 233.064, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 239.21800000000002, + "x": 239.218, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 245.07000000000002, + "x": 245.07, "y": 101.902 }, { "body": null, "index": 17, "isInternal": false, - "x": 250.04800000000003, + "x": 250.048, "y": 105.518 }, { "body": null, "index": 18, "isInternal": false, - "x": 253.66400000000002, + "x": 253.664, "y": 110.496 }, { "body": null, "index": 19, "isInternal": false, - "x": 255.56600000000003, + "x": 255.566, "y": 116.348 }, { @@ -2766,14 +2766,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 431.46854399999995, + "area": 431.46854, "axes": { "#": 294 }, "bounds": { "#": 301 }, - "circleRadius": 11.99275548696845, + "circleRadius": 11.99276, "collisionFilter": { "#": 304 }, @@ -2788,13 +2788,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 10, - "inertia": 118.56753749026406, - "inverseInertia": 0.008434011713215457, - "inverseMass": 2.3176660591044156, + "inertia": 118.56754, + "inverseInertia": 0.00843, + "inverseMass": 2.31767, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.43146854399999995, + "mass": 0.43147, "motion": 0, "parent": null, "position": { @@ -2846,24 +2846,24 @@ } ], { - "x": -0.8660138975112615, - "y": -0.5000199289201924 + "x": -0.86601, + "y": -0.50002 }, { - "x": -0.5000199289201924, - "y": -0.8660138975112615 + "x": -0.50002, + "y": -0.86601 }, { "x": 0, "y": -1 }, { - "x": 0.5000199289201924, - "y": -0.8660138975112615 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.8660138975112615, - "y": -0.5000199289201924 + "x": 0.86601, + "y": -0.50002 }, { "x": 1, @@ -2878,11 +2878,11 @@ } }, { - "x": 298.73400000000004, + "x": 298.734, "y": 123.168 }, { - "x": 275.56600000000003, + "x": 275.566, "y": 100 }, { @@ -2900,7 +2900,7 @@ "y": 0 }, { - "x": 287.15000000000003, + "x": 287.15, "y": 111.584 }, { @@ -2908,7 +2908,7 @@ "y": 0 }, { - "x": 287.15000000000003, + "x": 287.15, "y": 111.584 }, { @@ -2970,15 +2970,15 @@ "body": null, "index": 0, "isInternal": false, - "x": 298.73400000000004, + "x": 298.734, "y": 114.688 }, { "body": null, "index": 1, "isInternal": false, - "x": 295.63000000000005, - "y": 120.06400000000001 + "x": 295.63, + "y": 120.064 }, { "body": null, @@ -2991,7 +2991,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 284.04600000000005, + "x": 284.046, "y": 123.168 }, { @@ -2999,20 +2999,20 @@ "index": 4, "isInternal": false, "x": 278.67, - "y": 120.06400000000001 + "y": 120.064 }, { "body": null, "index": 5, "isInternal": false, - "x": 275.56600000000003, + "x": 275.566, "y": 114.688 }, { "body": null, "index": 6, "isInternal": false, - "x": 275.56600000000003, + "x": 275.566, "y": 108.48 }, { @@ -3026,7 +3026,7 @@ "body": null, "index": 8, "isInternal": false, - "x": 284.04600000000005, + "x": 284.046, "y": 100 }, { @@ -3040,14 +3040,14 @@ "body": null, "index": 10, "isInternal": false, - "x": 295.63000000000005, + "x": 295.63, "y": 103.104 }, { "body": null, "index": 11, "isInternal": false, - "x": 298.73400000000004, + "x": 298.734, "y": 108.48 }, { @@ -3055,14 +3055,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 828.5975979999998, + "area": 828.5976, "axes": { "#": 327 }, "bounds": { "#": 337 }, - "circleRadius": 16.40693587105624, + "circleRadius": 16.40694, "collisionFilter": { "#": 340 }, @@ -3077,13 +3077,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 11, - "inertia": 437.12315220007827, - "inverseInertia": 0.00228768482055209, - "inverseMass": 1.206858434557036, + "inertia": 437.12315, + "inverseInertia": 0.00229, + "inverseMass": 1.20686, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8285975979999999, + "mass": 0.8286, "motion": 0, "parent": null, "position": { @@ -3144,36 +3144,36 @@ } ], { - "x": -0.9396755074993973, - "y": -0.34206715803442794 + "x": -0.93968, + "y": -0.34207 }, { - "x": -0.7660159168444758, - "y": -0.6428216044447457 + "x": -0.76602, + "y": -0.64282 }, { - "x": -0.5000465688762351, - "y": -0.8659985155617211 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.1737252699374666, - "y": -0.9847941564535982 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737252699374666, - "y": -0.9847941564535982 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.5000465688762351, - "y": -0.8659985155617211 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7660159168444758, - "y": -0.6428216044447457 + "x": 0.76602, + "y": -0.64282 }, { - "x": 0.9396755074993973, - "y": -0.34206715803442794 + "x": 0.93968, + "y": -0.34207 }, { "x": 1, @@ -3188,11 +3188,11 @@ } }, { - "x": 351.05000000000007, + "x": 351.05, "y": 132.814 }, { - "x": 318.73400000000004, + "x": 318.734, "y": 100 }, { @@ -3210,7 +3210,7 @@ "y": 0 }, { - "x": 334.89200000000005, + "x": 334.892, "y": 116.407 }, { @@ -3218,7 +3218,7 @@ "y": 0 }, { - "x": 334.89200000000005, + "x": 334.892, "y": 116.407 }, { @@ -3298,141 +3298,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 351.05000000000007, + "x": 351.05, "y": 119.256 }, { "body": null, "index": 1, "isInternal": false, - "x": 349.10100000000006, + "x": 349.101, "y": 124.61 }, { "body": null, "index": 2, "isInternal": false, - "x": 345.43800000000005, + "x": 345.438, "y": 128.975 }, { "body": null, "index": 3, "isInternal": false, - "x": 340.5040000000001, + "x": 340.504, "y": 131.824 }, { "body": null, "index": 4, "isInternal": false, - "x": 334.89200000000005, + "x": 334.892, "y": 132.814 }, { "body": null, "index": 5, "isInternal": false, - "x": 329.28000000000003, + "x": 329.28, "y": 131.824 }, { "body": null, "index": 6, "isInternal": false, - "x": 324.34600000000006, + "x": 324.346, "y": 128.975 }, { "body": null, "index": 7, "isInternal": false, - "x": 320.68300000000005, + "x": 320.683, "y": 124.61 }, { "body": null, "index": 8, "isInternal": false, - "x": 318.73400000000004, + "x": 318.734, "y": 119.256 }, { "body": null, "index": 9, "isInternal": false, - "x": 318.73400000000004, - "y": 113.55799999999999 + "x": 318.734, + "y": 113.558 }, { "body": null, "index": 10, "isInternal": false, - "x": 320.68300000000005, + "x": 320.683, "y": 108.204 }, { "body": null, "index": 11, "isInternal": false, - "x": 324.34600000000006, + "x": 324.346, "y": 103.839 }, { "body": null, "index": 12, "isInternal": false, - "x": 329.28000000000003, + "x": 329.28, "y": 100.99 }, { "body": null, "index": 13, "isInternal": false, - "x": 334.89200000000005, + "x": 334.892, "y": 100 }, { "body": null, "index": 14, "isInternal": false, - "x": 340.5040000000001, + "x": 340.504, "y": 100.99 }, { "body": null, "index": 15, "isInternal": false, - "x": 345.43800000000005, + "x": 345.438, "y": 103.839 }, { "body": null, "index": 16, "isInternal": false, - "x": 349.10100000000006, + "x": 349.101, "y": 108.204 }, { "body": null, "index": 17, "isInternal": false, - "x": 351.05000000000007, - "y": 113.55799999999999 + "x": 351.05, + "y": 113.558 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 783.3593100000002, + "area": 783.35931, "axes": { "#": 369 }, "bounds": { "#": 378 }, - "circleRadius": 15.996013374485596, + "circleRadius": 15.99601, "collisionFilter": { "#": 381 }, @@ -3447,13 +3447,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 12, - "inertia": 390.7154522672976, - "inverseInertia": 0.0025594073492539436, - "inverseMass": 1.2765534119968522, + "inertia": 390.71545, + "inverseInertia": 0.00256, + "inverseMass": 1.27655, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7833593100000001, + "mass": 0.78336, "motion": 0, "parent": null, "position": { @@ -3511,32 +3511,32 @@ } ], { - "x": -0.9238430135485202, - "y": -0.3827715850446434 + "x": -0.92384, + "y": -0.38277 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3827715850446434, - "y": -0.9238430135485202 + "x": -0.38277, + "y": -0.92384 }, { "x": 0, "y": -1 }, { - "x": 0.3827715850446434, - "y": -0.9238430135485202 + "x": 0.38277, + "y": -0.92384 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238430135485202, - "y": -0.3827715850446434 + "x": 0.92384, + "y": -0.38277 }, { "x": 1, @@ -3551,11 +3551,11 @@ } }, { - "x": 402.4280000000001, + "x": 402.428, "y": 131.378 }, { - "x": 371.05000000000007, + "x": 371.05, "y": 100 }, { @@ -3573,7 +3573,7 @@ "y": 0 }, { - "x": 386.7390000000001, + "x": 386.739, "y": 115.689 }, { @@ -3581,7 +3581,7 @@ "y": 0 }, { - "x": 386.7390000000001, + "x": 386.739, "y": 115.689 }, { @@ -3655,112 +3655,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 402.4280000000001, - "y": 118.80999999999999 + "x": 402.428, + "y": 118.81 }, { "body": null, "index": 1, "isInternal": false, - "x": 400.0390000000001, + "x": 400.039, "y": 124.576 }, { "body": null, "index": 2, "isInternal": false, - "x": 395.6260000000001, - "y": 128.98899999999998 + "x": 395.626, + "y": 128.989 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.86000000000007, + "x": 389.86, "y": 131.378 }, { "body": null, "index": 4, "isInternal": false, - "x": 383.6180000000001, + "x": 383.618, "y": 131.378 }, { "body": null, "index": 5, "isInternal": false, - "x": 377.8520000000001, - "y": 128.98899999999998 + "x": 377.852, + "y": 128.989 }, { "body": null, "index": 6, "isInternal": false, - "x": 373.4390000000001, + "x": 373.439, "y": 124.576 }, { "body": null, "index": 7, "isInternal": false, - "x": 371.05000000000007, - "y": 118.80999999999999 + "x": 371.05, + "y": 118.81 }, { "body": null, "index": 8, "isInternal": false, - "x": 371.05000000000007, + "x": 371.05, "y": 112.568 }, { "body": null, "index": 9, "isInternal": false, - "x": 373.4390000000001, - "y": 106.80199999999999 + "x": 373.439, + "y": 106.802 }, { "body": null, "index": 10, "isInternal": false, - "x": 377.8520000000001, + "x": 377.852, "y": 102.389 }, { "body": null, "index": 11, "isInternal": false, - "x": 383.6180000000001, + "x": 383.618, "y": 100 }, { "body": null, "index": 12, "isInternal": false, - "x": 389.86000000000007, + "x": 389.86, "y": 100 }, { "body": null, "index": 13, "isInternal": false, - "x": 395.6260000000001, + "x": 395.626, "y": 102.389 }, { "body": null, "index": 14, "isInternal": false, - "x": 400.0390000000001, - "y": 106.80199999999999 + "x": 400.039, + "y": 106.802 }, { "body": null, "index": 15, "isInternal": false, - "x": 402.4280000000001, + "x": 402.428, "y": 112.568 }, { @@ -3768,14 +3768,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 754.4775720000002, + "area": 754.47757, "axes": { "#": 408 }, "bounds": { "#": 417 }, - "circleRadius": 15.698259602194788, + "circleRadius": 15.69826, "collisionFilter": { "#": 420 }, @@ -3790,13 +3790,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 13, - "inertia": 362.43592371593485, - "inverseInertia": 0.002759108395622964, - "inverseMass": 1.32542044603017, + "inertia": 362.43592, + "inverseInertia": 0.00276, + "inverseMass": 1.32542, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7544775720000002, + "mass": 0.75448, "motion": 0, "parent": null, "position": { @@ -3854,32 +3854,32 @@ } ], { - "x": -0.9238576132125803, - "y": -0.3827363459473821 + "x": -0.92386, + "y": -0.38274 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3827363459473821, - "y": -0.9238576132125803 + "x": -0.38274, + "y": -0.92386 }, { "x": 0, "y": -1 }, { - "x": 0.3827363459473821, - "y": -0.9238576132125803 + "x": 0.38274, + "y": -0.92386 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238576132125803, - "y": -0.3827363459473821 + "x": 0.92386, + "y": -0.38274 }, { "x": 1, @@ -3894,11 +3894,11 @@ } }, { - "x": 453.2220000000001, + "x": 453.222, "y": 130.794 }, { - "x": 422.4280000000001, + "x": 422.428, "y": 100 }, { @@ -3916,7 +3916,7 @@ "y": 0 }, { - "x": 437.8250000000001, + "x": 437.825, "y": 115.397 }, { @@ -3924,7 +3924,7 @@ "y": 0 }, { - "x": 437.8250000000001, + "x": 437.825, "y": 115.397 }, { @@ -3998,112 +3998,112 @@ "body": null, "index": 0, "isInternal": false, - "x": 453.2220000000001, - "y": 118.46000000000001 + "x": 453.222, + "y": 118.46 }, { "body": null, "index": 1, "isInternal": false, - "x": 450.8780000000001, - "y": 124.11800000000001 + "x": 450.878, + "y": 124.118 }, { "body": null, "index": 2, "isInternal": false, - "x": 446.5460000000001, + "x": 446.546, "y": 128.45 }, { "body": null, "index": 3, "isInternal": false, - "x": 440.8880000000001, + "x": 440.888, "y": 130.794 }, { "body": null, "index": 4, "isInternal": false, - "x": 434.7620000000001, + "x": 434.762, "y": 130.794 }, { "body": null, "index": 5, "isInternal": false, - "x": 429.1040000000001, + "x": 429.104, "y": 128.45 }, { "body": null, "index": 6, "isInternal": false, - "x": 424.7720000000001, - "y": 124.11800000000001 + "x": 424.772, + "y": 124.118 }, { "body": null, "index": 7, "isInternal": false, - "x": 422.4280000000001, - "y": 118.46000000000001 + "x": 422.428, + "y": 118.46 }, { "body": null, "index": 8, "isInternal": false, - "x": 422.4280000000001, + "x": 422.428, "y": 112.334 }, { "body": null, "index": 9, "isInternal": false, - "x": 424.7720000000001, + "x": 424.772, "y": 106.676 }, { "body": null, "index": 10, "isInternal": false, - "x": 429.1040000000001, - "y": 102.34400000000001 + "x": 429.104, + "y": 102.344 }, { "body": null, "index": 11, "isInternal": false, - "x": 434.7620000000001, + "x": 434.762, "y": 100 }, { "body": null, "index": 12, "isInternal": false, - "x": 440.8880000000001, + "x": 440.888, "y": 100 }, { "body": null, "index": 13, "isInternal": false, - "x": 446.5460000000001, - "y": 102.34400000000001 + "x": 446.546, + "y": 102.344 }, { "body": null, "index": 14, "isInternal": false, - "x": 450.8780000000001, + "x": 450.878, "y": 106.676 }, { "body": null, "index": 15, "isInternal": false, - "x": 453.2220000000001, + "x": 453.222, "y": 112.334 }, { @@ -4111,14 +4111,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 546.5734600000001, + "area": 546.57346, "axes": { "#": 447 }, "bounds": { "#": 455 }, - "circleRadius": 13.414909122085048, + "circleRadius": 13.41491, "collisionFilter": { "#": 458 }, @@ -4133,13 +4133,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 14, - "inertia": 190.22932853820927, - "inverseInertia": 0.0052568129619357876, - "inverseMass": 1.8295802361131839, + "inertia": 190.22933, + "inverseInertia": 0.00526, + "inverseMass": 1.82958, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5465734600000001, + "mass": 0.54657, "motion": 0, "parent": null, "position": { @@ -4194,28 +4194,28 @@ } ], { - "x": -0.9009289164305454, - "y": -0.4339666894351262 + "x": -0.90093, + "y": -0.43397 }, { - "x": -0.6235094308206882, - "y": -0.7818158284900999 + "x": -0.62351, + "y": -0.78182 }, { - "x": -0.22258377112347572, - "y": -0.9749135678779182 + "x": -0.22258, + "y": -0.97491 }, { - "x": 0.22258377112347572, - "y": -0.9749135678779182 + "x": 0.22258, + "y": -0.97491 }, { - "x": 0.6235094308206882, - "y": -0.7818158284900999 + "x": 0.62351, + "y": -0.78182 }, { - "x": 0.9009289164305454, - "y": -0.4339666894351262 + "x": 0.90093, + "y": -0.43397 }, { "x": 1, @@ -4230,11 +4230,11 @@ } }, { - "x": 499.3800000000001, - "y": 126.82999999999998 + "x": 499.38, + "y": 126.83 }, { - "x": 473.2220000000001, + "x": 473.222, "y": 100 }, { @@ -4252,16 +4252,16 @@ "y": 0 }, { - "x": 486.3010000000001, - "y": 113.41499999999999 + "x": 486.301, + "y": 113.415 }, { "x": 0, "y": 0 }, { - "x": 486.3010000000001, - "y": 113.41499999999999 + "x": 486.301, + "y": 113.415 }, { "fillStyle": "#C7F464", @@ -4328,113 +4328,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 499.3800000000001, - "y": 116.39999999999999 + "x": 499.38, + "y": 116.4 }, { "body": null, "index": 1, "isInternal": false, - "x": 496.7890000000001, + "x": 496.789, "y": 121.779 }, { "body": null, "index": 2, "isInternal": false, - "x": 492.1220000000001, - "y": 125.50099999999999 + "x": 492.122, + "y": 125.501 }, { "body": null, "index": 3, "isInternal": false, - "x": 486.3010000000001, - "y": 126.82999999999998 + "x": 486.301, + "y": 126.83 }, { "body": null, "index": 4, "isInternal": false, - "x": 480.4800000000001, - "y": 125.50099999999999 + "x": 480.48, + "y": 125.501 }, { "body": null, "index": 5, "isInternal": false, - "x": 475.8130000000001, + "x": 475.813, "y": 121.779 }, { "body": null, "index": 6, "isInternal": false, - "x": 473.2220000000001, - "y": 116.39999999999999 + "x": 473.222, + "y": 116.4 }, { "body": null, "index": 7, "isInternal": false, - "x": 473.2220000000001, - "y": 110.42999999999999 + "x": 473.222, + "y": 110.43 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.8130000000001, - "y": 105.05099999999999 + "x": 475.813, + "y": 105.051 }, { "body": null, "index": 9, "isInternal": false, - "x": 480.4800000000001, + "x": 480.48, "y": 101.329 }, { "body": null, "index": 10, "isInternal": false, - "x": 486.3010000000001, + "x": 486.301, "y": 100 }, { "body": null, "index": 11, "isInternal": false, - "x": 492.1220000000001, + "x": 492.122, "y": 101.329 }, { "body": null, "index": 12, "isInternal": false, - "x": 496.7890000000001, - "y": 105.05099999999999 + "x": 496.789, + "y": 105.051 }, { "body": null, "index": 13, "isInternal": false, - "x": 499.3800000000001, - "y": 110.42999999999999 + "x": 499.38, + "y": 110.43 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 973.9752019999999, + "area": 973.9752, "axes": { "#": 483 }, "bounds": { "#": 493 }, - "circleRadius": 17.787937242798353, + "circleRadius": 17.78794, "collisionFilter": { "#": 496 }, @@ -4449,13 +4449,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 15, - "inertia": 603.96569072653, - "inverseInertia": 0.0016557231898339578, - "inverseMass": 1.0267201854282941, + "inertia": 603.96569, + "inverseInertia": 0.00166, + "inverseMass": 1.02672, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9739752019999999, + "mass": 0.97398, "motion": 0, "parent": null, "position": { @@ -4516,36 +4516,36 @@ } ], { - "x": -0.9396846715303921, - "y": -0.3420419829360413 + "x": -0.93968, + "y": -0.34204 }, { - "x": -0.7660141089546303, - "y": -0.6428237588036427 + "x": -0.76601, + "y": -0.64282 }, { - "x": -0.5000213741632397, - "y": -0.8660130630538465 + "x": -0.50002, + "y": -0.86601 }, { - "x": -0.17368375845285658, - "y": -0.9848014784969049 + "x": -0.17368, + "y": -0.9848 }, { - "x": 0.17368375845285658, - "y": -0.9848014784969049 + "x": 0.17368, + "y": -0.9848 }, { - "x": 0.5000213741632397, - "y": -0.8660130630538465 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.7660141089546303, - "y": -0.6428237588036427 + "x": 0.76601, + "y": -0.64282 }, { - "x": 0.9396846715303921, - "y": -0.3420419829360413 + "x": 0.93968, + "y": -0.34204 }, { "x": 1, @@ -4560,11 +4560,11 @@ } }, { - "x": 554.4160000000002, + "x": 554.416, "y": 135.576 }, { - "x": 519.3800000000001, + "x": 519.38, "y": 100 }, { @@ -4582,7 +4582,7 @@ "y": 0 }, { - "x": 536.8980000000001, + "x": 536.898, "y": 117.788 }, { @@ -4590,7 +4590,7 @@ "y": 0 }, { - "x": 536.8980000000001, + "x": 536.898, "y": 117.788 }, { @@ -4670,126 +4670,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 554.4160000000002, + "x": 554.416, "y": 120.877 }, { "body": null, "index": 1, "isInternal": false, - "x": 552.3030000000001, + "x": 552.303, "y": 126.682 }, { "body": null, "index": 2, "isInternal": false, - "x": 548.3320000000001, + "x": 548.332, "y": 131.414 }, { "body": null, "index": 3, "isInternal": false, - "x": 542.9820000000001, + "x": 542.982, "y": 134.503 }, { "body": null, "index": 4, "isInternal": false, - "x": 536.8980000000001, + "x": 536.898, "y": 135.576 }, { "body": null, "index": 5, "isInternal": false, - "x": 530.8140000000002, + "x": 530.814, "y": 134.503 }, { "body": null, "index": 6, "isInternal": false, - "x": 525.4640000000002, + "x": 525.464, "y": 131.414 }, { "body": null, "index": 7, "isInternal": false, - "x": 521.4930000000002, + "x": 521.493, "y": 126.682 }, { "body": null, "index": 8, "isInternal": false, - "x": 519.3800000000001, + "x": 519.38, "y": 120.877 }, { "body": null, "index": 9, "isInternal": false, - "x": 519.3800000000001, + "x": 519.38, "y": 114.699 }, { "body": null, "index": 10, "isInternal": false, - "x": 521.4930000000002, - "y": 108.89399999999999 + "x": 521.493, + "y": 108.894 }, { "body": null, "index": 11, "isInternal": false, - "x": 525.4640000000002, - "y": 104.16199999999999 + "x": 525.464, + "y": 104.162 }, { "body": null, "index": 12, "isInternal": false, - "x": 530.8140000000002, + "x": 530.814, "y": 101.073 }, { "body": null, "index": 13, "isInternal": false, - "x": 536.8980000000001, + "x": 536.898, "y": 100 }, { "body": null, "index": 14, "isInternal": false, - "x": 542.9820000000001, + "x": 542.982, "y": 101.073 }, { "body": null, "index": 15, "isInternal": false, - "x": 548.3320000000001, - "y": 104.16199999999999 + "x": 548.332, + "y": 104.162 }, { "body": null, "index": 16, "isInternal": false, - "x": 552.3030000000001, - "y": 108.89399999999999 + "x": 552.303, + "y": 108.894 }, { "body": null, "index": 17, "isInternal": false, - "x": 554.4160000000002, + "x": 554.416, "y": 114.699 }, { @@ -4804,7 +4804,7 @@ "bounds": { "#": 533 }, - "circleRadius": 12.644504458161865, + "circleRadius": 12.6445, "collisionFilter": { "#": 536 }, @@ -4819,13 +4819,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 16, - "inertia": 150.14835557749134, - "inverseInertia": 0.006660079600298396, - "inverseMass": 2.0593487844899734, + "inertia": 150.14836, + "inverseInertia": 0.00666, + "inverseMass": 2.05935, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4855904, + "mass": 0.48559, "motion": 0, "parent": null, "position": { @@ -4880,28 +4880,28 @@ } ], { - "x": -0.9010093877027451, - "y": -0.43379958883282077 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6233938910669198, - "y": -0.7819079591489303 + "x": -0.62339, + "y": -0.78191 }, { - "x": -0.2226655662703444, - "y": -0.9748948895124575 + "x": -0.22267, + "y": -0.97489 }, { - "x": 0.2226655662703444, - "y": -0.9748948895124575 + "x": 0.22267, + "y": -0.97489 }, { - "x": 0.6233938910669198, - "y": -0.7819079591489303 + "x": 0.62339, + "y": -0.78191 }, { - "x": 0.9010093877027451, - "y": -0.43379958883282077 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -4916,11 +4916,11 @@ } }, { - "x": 599.0700000000002, - "y": 125.28999999999999 + "x": 599.07, + "y": 125.29 }, { - "x": 574.4160000000002, + "x": 574.416, "y": 100 }, { @@ -4938,7 +4938,7 @@ "y": 0 }, { - "x": 586.7430000000002, + "x": 586.743, "y": 112.645 }, { @@ -4946,7 +4946,7 @@ "y": 0 }, { - "x": 586.7430000000002, + "x": 586.743, "y": 112.645 }, { @@ -5014,98 +5014,98 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.0700000000002, - "y": 115.45899999999999 + "x": 599.07, + "y": 115.459 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.6290000000001, + "x": 596.629, "y": 120.529 }, { "body": null, "index": 2, "isInternal": false, - "x": 592.2290000000002, - "y": 124.03699999999999 + "x": 592.229, + "y": 124.037 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.7430000000002, - "y": 125.28999999999999 + "x": 586.743, + "y": 125.29 }, { "body": null, "index": 4, "isInternal": false, - "x": 581.2570000000002, - "y": 124.03699999999999 + "x": 581.257, + "y": 124.037 }, { "body": null, "index": 5, "isInternal": false, - "x": 576.8570000000002, + "x": 576.857, "y": 120.529 }, { "body": null, "index": 6, "isInternal": false, - "x": 574.4160000000002, - "y": 115.45899999999999 + "x": 574.416, + "y": 115.459 }, { "body": null, "index": 7, "isInternal": false, - "x": 574.4160000000002, + "x": 574.416, "y": 109.831 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.8570000000002, + "x": 576.857, "y": 104.761 }, { "body": null, "index": 9, "isInternal": false, - "x": 581.2570000000002, + "x": 581.257, "y": 101.253 }, { "body": null, "index": 10, "isInternal": false, - "x": 586.7430000000002, + "x": 586.743, "y": 100 }, { "body": null, "index": 11, "isInternal": false, - "x": 592.2290000000002, + "x": 592.229, "y": 101.253 }, { "body": null, "index": 12, "isInternal": false, - "x": 596.6290000000001, + "x": 596.629, "y": 104.761 }, { "body": null, "index": 13, "isInternal": false, - "x": 599.0700000000002, + "x": 599.07, "y": 109.831 }, { @@ -5113,14 +5113,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1013.2448800000001, + "area": 1013.24488, "axes": { "#": 561 }, "bounds": { "#": 572 }, - "circleRadius": 18.10806755829904, + "circleRadius": 18.10807, "collisionFilter": { "#": 575 }, @@ -5135,13 +5135,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 17, - "inertia": 653.6311476673523, - "inverseInertia": 0.0015299148511645328, - "inverseMass": 0.9869282537109884, + "inertia": 653.63115, + "inverseInertia": 0.00153, + "inverseMass": 0.98693, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.01324488, + "mass": 1.01324, "motion": 0, "parent": null, "position": { @@ -5205,40 +5205,40 @@ } ], { - "x": -0.95103925715127, - "y": -0.3090701075114839 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8089955390833857, - "y": -0.5878147818345351 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878147818345351, - "y": -0.8089955390833857 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090701075114839, - "y": -0.95103925715127 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090701075114839, - "y": -0.95103925715127 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5878147818345351, - "y": -0.8089955390833857 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089955390833857, - "y": -0.5878147818345351 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.95103925715127, - "y": -0.3090701075114839 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -5253,11 +5253,11 @@ } }, { - "x": 654.8400000000001, + "x": 654.84, "y": 135.77 }, { - "x": 619.0700000000002, + "x": 619.07, "y": 100 }, { @@ -5275,7 +5275,7 @@ "y": 0 }, { - "x": 636.9550000000002, + "x": 636.955, "y": 117.885 }, { @@ -5283,7 +5283,7 @@ "y": 0 }, { - "x": 636.9550000000002, + "x": 636.955, "y": 117.885 }, { @@ -5369,140 +5369,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 654.8400000000001, + "x": 654.84, "y": 120.718 }, { "body": null, "index": 1, "isInternal": false, - "x": 653.0890000000002, - "y": 126.10600000000001 + "x": 653.089, + "y": 126.106 }, { "body": null, "index": 2, "isInternal": false, - "x": 649.7590000000001, - "y": 130.68900000000002 + "x": 649.759, + "y": 130.689 }, { "body": null, "index": 3, "isInternal": false, - "x": 645.1760000000002, + "x": 645.176, "y": 134.019 }, { "body": null, "index": 4, "isInternal": false, - "x": 639.7880000000001, + "x": 639.788, "y": 135.77 }, { "body": null, "index": 5, "isInternal": false, - "x": 634.1220000000002, + "x": 634.122, "y": 135.77 }, { "body": null, "index": 6, "isInternal": false, - "x": 628.7340000000002, + "x": 628.734, "y": 134.019 }, { "body": null, "index": 7, "isInternal": false, - "x": 624.1510000000002, - "y": 130.68900000000002 + "x": 624.151, + "y": 130.689 }, { "body": null, "index": 8, "isInternal": false, - "x": 620.8210000000001, - "y": 126.10600000000001 + "x": 620.821, + "y": 126.106 }, { "body": null, "index": 9, "isInternal": false, - "x": 619.0700000000002, + "x": 619.07, "y": 120.718 }, { "body": null, "index": 10, "isInternal": false, - "x": 619.0700000000002, + "x": 619.07, "y": 115.052 }, { "body": null, "index": 11, "isInternal": false, - "x": 620.8210000000001, + "x": 620.821, "y": 109.664 }, { "body": null, "index": 12, "isInternal": false, - "x": 624.1510000000002, + "x": 624.151, "y": 105.081 }, { "body": null, "index": 13, "isInternal": false, - "x": 628.7340000000002, + "x": 628.734, "y": 101.751 }, { "body": null, "index": 14, "isInternal": false, - "x": 634.1220000000002, + "x": 634.122, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 639.7880000000001, + "x": 639.788, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 645.1760000000002, + "x": 645.176, "y": 101.751 }, { "body": null, "index": 17, "isInternal": false, - "x": 649.7590000000001, + "x": 649.759, "y": 105.081 }, { "body": null, "index": 18, "isInternal": false, - "x": 653.0890000000002, + "x": 653.089, "y": 109.664 }, { "body": null, "index": 19, "isInternal": false, - "x": 654.8400000000001, + "x": 654.84, "y": 115.052 }, { @@ -5510,14 +5510,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1043.5045799999998, + "area": 1043.50458, "axes": { "#": 606 }, "bounds": { "#": 617 }, - "circleRadius": 18.37615740740741, + "circleRadius": 18.37616, "collisionFilter": { "#": 620 }, @@ -5532,13 +5532,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 18, - "inertia": 693.2543810769114, - "inverseInertia": 0.0014424719515606747, - "inverseMass": 0.9583091623804854, + "inertia": 693.25438, + "inverseInertia": 0.00144, + "inverseMass": 0.95831, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0435045799999998, + "mass": 1.0435, "motion": 0, "parent": null, "position": { @@ -5602,40 +5602,40 @@ } ], { - "x": -0.9510391812432063, - "y": -0.30907034108799836 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8090293436440933, - "y": -0.5877682546061905 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877682546061905, - "y": -0.8090293436440933 + "x": -0.58777, + "y": -0.80903 }, { - "x": -0.30907034108799836, - "y": -0.9510391812432063 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30907034108799836, - "y": -0.9510391812432063 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5877682546061905, - "y": -0.8090293436440933 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090293436440933, - "y": -0.5877682546061905 + "x": 0.80903, + "y": -0.58777 }, { - "x": 0.9510391812432063, - "y": -0.30907034108799836 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -5650,11 +5650,11 @@ } }, { - "x": 711.1400000000001, + "x": 711.14, "y": 136.3 }, { - "x": 674.8400000000001, + "x": 674.84, "y": 100 }, { @@ -5672,7 +5672,7 @@ "y": 0 }, { - "x": 692.9900000000001, + "x": 692.99, "y": 118.15 }, { @@ -5680,7 +5680,7 @@ "y": 0 }, { - "x": 692.9900000000001, + "x": 692.99, "y": 118.15 }, { @@ -5766,140 +5766,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 711.1400000000001, + "x": 711.14, "y": 121.025 }, { "body": null, "index": 1, "isInternal": false, - "x": 709.3630000000002, - "y": 126.49300000000001 + "x": 709.363, + "y": 126.493 }, { "body": null, "index": 2, "isInternal": false, - "x": 705.9840000000002, + "x": 705.984, "y": 131.144 }, { "body": null, "index": 3, "isInternal": false, - "x": 701.3330000000001, - "y": 134.52300000000002 + "x": 701.333, + "y": 134.523 }, { "body": null, "index": 4, "isInternal": false, - "x": 695.8650000000001, + "x": 695.865, "y": 136.3 }, { "body": null, "index": 5, "isInternal": false, - "x": 690.1150000000001, + "x": 690.115, "y": 136.3 }, { "body": null, "index": 6, "isInternal": false, - "x": 684.6470000000002, - "y": 134.52300000000002 + "x": 684.647, + "y": 134.523 }, { "body": null, "index": 7, "isInternal": false, - "x": 679.9960000000001, + "x": 679.996, "y": 131.144 }, { "body": null, "index": 8, "isInternal": false, - "x": 676.6170000000001, - "y": 126.49300000000001 + "x": 676.617, + "y": 126.493 }, { "body": null, "index": 9, "isInternal": false, - "x": 674.8400000000001, + "x": 674.84, "y": 121.025 }, { "body": null, "index": 10, "isInternal": false, - "x": 674.8400000000001, + "x": 674.84, "y": 115.275 }, { "body": null, "index": 11, "isInternal": false, - "x": 676.6170000000001, + "x": 676.617, "y": 109.807 }, { "body": null, "index": 12, "isInternal": false, - "x": 679.9960000000001, + "x": 679.996, "y": 105.156 }, { "body": null, "index": 13, "isInternal": false, - "x": 684.6470000000002, + "x": 684.647, "y": 101.777 }, { "body": null, "index": 14, "isInternal": false, - "x": 690.1150000000001, + "x": 690.115, "y": 100 }, { "body": null, "index": 15, "isInternal": false, - "x": 695.8650000000001, + "x": 695.865, "y": 100 }, { "body": null, "index": 16, "isInternal": false, - "x": 701.3330000000001, + "x": 701.333, "y": 101.777 }, { "body": null, "index": 17, "isInternal": false, - "x": 705.9840000000002, + "x": 705.984, "y": 105.156 }, { "body": null, "index": 18, "isInternal": false, - "x": 709.3630000000002, + "x": 709.363, "y": 109.807 }, { "body": null, "index": 19, "isInternal": false, - "x": 711.1400000000001, + "x": 711.14, "y": 115.275 }, { @@ -5907,14 +5907,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 804.3326420000001, + "area": 804.33264, "axes": { "#": 651 }, "bounds": { "#": 661 }, - "circleRadius": 16.16482338820302, + "circleRadius": 16.16482, "collisionFilter": { "#": 664 }, @@ -5929,13 +5929,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 19, - "inertia": 411.89626816350983, - "inverseInertia": 0.0024277957274500763, - "inverseMass": 1.243266713027419, + "inertia": 411.89627, + "inverseInertia": 0.00243, + "inverseMass": 1.24327, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8043326420000001, + "mass": 0.80433, "motion": 0, "parent": null, "position": { @@ -5996,36 +5996,36 @@ } ], { - "x": -0.939689356498254, - "y": -0.3420291117491275 + "x": -0.93969, + "y": -0.34203 }, { - "x": -0.766129298042305, - "y": -0.6426864699689927 + "x": -0.76613, + "y": -0.64269 }, { - "x": -0.4999897122177319, - "y": -0.8660313433568266 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.17366340060749713, - "y": -0.9848050686757457 + "x": -0.17366, + "y": -0.98481 }, { - "x": 0.17366340060749713, - "y": -0.9848050686757457 + "x": 0.17366, + "y": -0.98481 }, { - "x": 0.4999897122177319, - "y": -0.8660313433568266 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.766129298042305, - "y": -0.6426864699689927 + "x": 0.76613, + "y": -0.64269 }, { - "x": 0.939689356498254, - "y": -0.3420291117491275 + "x": 0.93969, + "y": -0.34203 }, { "x": 1, @@ -6040,11 +6040,11 @@ } }, { - "x": 762.9780000000001, - "y": 132.32999999999998 + "x": 762.978, + "y": 132.33 }, { - "x": 731.1400000000001, + "x": 731.14, "y": 100 }, { @@ -6062,16 +6062,16 @@ "y": 0 }, { - "x": 747.0590000000001, - "y": 116.16499999999999 + "x": 747.059, + "y": 116.165 }, { "x": 0, "y": 0 }, { - "x": 747.0590000000001, - "y": 116.16499999999999 + "x": 747.059, + "y": 116.165 }, { "fillStyle": "#556270", @@ -6150,15 +6150,15 @@ "body": null, "index": 0, "isInternal": false, - "x": 762.9780000000001, + "x": 762.978, "y": 118.972 }, { "body": null, "index": 1, "isInternal": false, - "x": 761.0580000000001, - "y": 124.24699999999999 + "x": 761.058, + "y": 124.247 }, { "body": null, @@ -6171,84 +6171,84 @@ "body": null, "index": 3, "isInternal": false, - "x": 752.5880000000001, + "x": 752.588, "y": 131.355 }, { "body": null, "index": 4, "isInternal": false, - "x": 747.0590000000001, - "y": 132.32999999999998 + "x": 747.059, + "y": 132.33 }, { "body": null, "index": 5, "isInternal": false, - "x": 741.5300000000001, + "x": 741.53, "y": 131.355 }, { "body": null, "index": 6, "isInternal": false, - "x": 736.6680000000001, + "x": 736.668, "y": 128.548 }, { "body": null, "index": 7, "isInternal": false, - "x": 733.0600000000001, - "y": 124.24699999999999 + "x": 733.06, + "y": 124.247 }, { "body": null, "index": 8, "isInternal": false, - "x": 731.1400000000001, + "x": 731.14, "y": 118.972 }, { "body": null, "index": 9, "isInternal": false, - "x": 731.1400000000001, - "y": 113.35799999999999 + "x": 731.14, + "y": 113.358 }, { "body": null, "index": 10, "isInternal": false, - "x": 733.0600000000001, + "x": 733.06, "y": 108.083 }, { "body": null, "index": 11, "isInternal": false, - "x": 736.6680000000001, + "x": 736.668, "y": 103.782 }, { "body": null, "index": 12, "isInternal": false, - "x": 741.5300000000001, + "x": 741.53, "y": 100.975 }, { "body": null, "index": 13, "isInternal": false, - "x": 747.0590000000001, + "x": 747.059, "y": 100 }, { "body": null, "index": 14, "isInternal": false, - "x": 752.5880000000001, + "x": 752.588, "y": 100.975 }, { @@ -6262,29 +6262,29 @@ "body": null, "index": 16, "isInternal": false, - "x": 761.0580000000001, + "x": 761.058, "y": 108.083 }, { "body": null, "index": 17, "isInternal": false, - "x": 762.9780000000001, - "y": 113.35799999999999 + "x": 762.978, + "y": 113.358 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 580.047414, + "area": 580.04741, "axes": { "#": 693 }, "bounds": { "#": 701 }, - "circleRadius": 13.81974451303155, + "circleRadius": 13.81974, "collisionFilter": { "#": 704 }, @@ -6299,13 +6299,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 20, - "inertia": 214.24336698195748, - "inverseInertia": 0.004667589079125213, - "inverseMass": 1.7239969972523659, + "inertia": 214.24337, + "inverseInertia": 0.00467, + "inverseMass": 1.724, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.580047414, + "mass": 0.58005, "motion": 0, "parent": null, "position": { @@ -6360,28 +6360,28 @@ } ], { - "x": -0.9009946077275478, - "y": -0.4338302857637789 + "x": -0.90099, + "y": -0.43383 }, { - "x": -0.6234848799770796, - "y": -0.7818354075123272 + "x": -0.62348, + "y": -0.78184 }, { - "x": -0.22259080644452373, - "y": -0.9749119616080092 + "x": -0.22259, + "y": -0.97491 }, { - "x": 0.22259080644452373, - "y": -0.9749119616080092 + "x": 0.22259, + "y": -0.97491 }, { - "x": 0.6234848799770796, - "y": -0.7818354075123272 + "x": 0.62348, + "y": -0.78184 }, { - "x": 0.9009946077275478, - "y": -0.4338302857637789 + "x": 0.90099, + "y": -0.43383 }, { "x": 1, @@ -6397,7 +6397,7 @@ }, { "x": 46.946, - "y": 206.48999999999998 + "y": 206.49 }, { "x": 20, @@ -6495,7 +6495,7 @@ "index": 0, "isInternal": false, "x": 46.946, - "y": 195.74499999999998 + "y": 195.745 }, { "body": null, @@ -6509,21 +6509,21 @@ "index": 2, "isInternal": false, "x": 39.469, - "y": 205.12099999999998 + "y": 205.121 }, { "body": null, "index": 3, "isInternal": false, "x": 33.473, - "y": 206.48999999999998 + "y": 206.49 }, { "body": null, "index": 4, "isInternal": false, - "x": 27.476999999999997, - "y": 205.12099999999998 + "x": 27.477, + "y": 205.121 }, { "body": null, @@ -6537,7 +6537,7 @@ "index": 6, "isInternal": false, "x": 20, - "y": 195.74499999999998 + "y": 195.745 }, { "body": null, @@ -6551,13 +6551,13 @@ "index": 8, "isInternal": false, "x": 22.668, - "y": 184.05399999999997 + "y": 184.054 }, { "body": null, "index": 9, "isInternal": false, - "x": 27.476999999999997, + "x": 27.477, "y": 180.219 }, { @@ -6579,7 +6579,7 @@ "index": 12, "isInternal": false, "x": 44.278, - "y": 184.05399999999997 + "y": 184.054 }, { "body": null, @@ -6593,14 +6593,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 369.23864399999997, + "area": 369.23864, "axes": { "#": 729 }, "bounds": { "#": 736 }, - "circleRadius": 11.09400720164609, + "circleRadius": 11.09401, "collisionFilter": { "#": 739 }, @@ -6615,13 +6615,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 21, - "inertia": 86.83240242313165, - "inverseInertia": 0.011516438243030872, - "inverseMass": 2.7082755725860594, + "inertia": 86.8324, + "inverseInertia": 0.01152, + "inverseMass": 2.70828, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.36923864399999995, + "mass": 0.36924, "motion": 0, "parent": null, "position": { @@ -6673,24 +6673,24 @@ } ], { - "x": -0.866081210108875, - "y": -0.49990332815090055 + "x": -0.86608, + "y": -0.4999 }, { - "x": -0.49990332815090055, - "y": -0.866081210108875 + "x": -0.4999, + "y": -0.86608 }, { "x": 0, "y": -1 }, { - "x": 0.49990332815090055, - "y": -0.866081210108875 + "x": 0.4999, + "y": -0.86608 }, { - "x": 0.866081210108875, - "y": -0.49990332815090055 + "x": 0.86608, + "y": -0.4999 }, { "x": 1, @@ -6705,7 +6705,7 @@ } }, { - "x": 88.37799999999999, + "x": 88.378, "y": 200.282 }, { @@ -6727,7 +6727,7 @@ "y": 0 }, { - "x": 77.66199999999999, + "x": 77.662, "y": 189.566 }, { @@ -6735,7 +6735,7 @@ "y": 0 }, { - "x": 77.66199999999999, + "x": 77.662, "y": 189.566 }, { @@ -6797,21 +6797,21 @@ "body": null, "index": 0, "isInternal": false, - "x": 88.37799999999999, + "x": 88.378, "y": 192.437 }, { "body": null, "index": 1, "isInternal": false, - "x": 85.50699999999999, + "x": 85.507, "y": 197.411 }, { "body": null, "index": 2, "isInternal": false, - "x": 80.53299999999999, + "x": 80.533, "y": 200.282 }, { @@ -6860,21 +6860,21 @@ "body": null, "index": 9, "isInternal": false, - "x": 80.53299999999999, + "x": 80.533, "y": 178.85 }, { "body": null, "index": 10, "isInternal": false, - "x": 85.50699999999999, + "x": 85.507, "y": 181.721 }, { "body": null, "index": 11, "isInternal": false, - "x": 88.37799999999999, + "x": 88.378, "y": 186.695 }, { @@ -6882,14 +6882,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1186.2008119999998, + "area": 1186.20081, "axes": { "#": 762 }, "bounds": { "#": 773 }, - "circleRadius": 19.59254972565158, + "circleRadius": 19.59255, "collisionFilter": { "#": 776 }, @@ -6904,13 +6904,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 22, - "inertia": 895.8191409307356, - "inverseInertia": 0.0011162967549019135, - "inverseMass": 0.843027580055307, + "inertia": 895.81914, + "inverseInertia": 0.00112, + "inverseMass": 0.84303, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1862008119999998, + "mass": 1.1862, "motion": 0, "parent": null, "position": { @@ -6974,40 +6974,40 @@ } ], { - "x": -0.9510700273465118, - "y": -0.3089754085410449 + "x": -0.95107, + "y": -0.30898 }, { - "x": -0.8090111291820679, - "y": -0.5877933249532148 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877933249532148, - "y": -0.8090111291820679 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.3089754085410449, - "y": -0.9510700273465118 + "x": -0.30898, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089754085410449, - "y": -0.9510700273465118 + "x": 0.30898, + "y": -0.95107 }, { - "x": 0.5877933249532148, - "y": -0.8090111291820679 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090111291820679, - "y": -0.5877933249532148 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510700273465118, - "y": -0.3089754085410449 + "x": 0.95107, + "y": -0.30898 }, { "x": 1, @@ -7022,11 +7022,11 @@ } }, { - "x": 147.07999999999998, + "x": 147.08, "y": 217.552 }, { - "x": 108.37799999999999, + "x": 108.378, "y": 178.85 }, { @@ -7044,7 +7044,7 @@ "y": 0 }, { - "x": 127.72899999999998, + "x": 127.729, "y": 198.201 }, { @@ -7052,7 +7052,7 @@ "y": 0 }, { - "x": 127.72899999999998, + "x": 127.729, "y": 198.201 }, { @@ -7138,140 +7138,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 147.07999999999998, + "x": 147.08, "y": 201.266 }, { "body": null, "index": 1, "isInternal": false, - "x": 145.18599999999998, + "x": 145.186, "y": 207.096 }, { "body": null, "index": 2, "isInternal": false, - "x": 141.58299999999997, + "x": 141.583, "y": 212.055 }, { "body": null, "index": 3, "isInternal": false, - "x": 136.62399999999997, + "x": 136.624, "y": 215.658 }, { "body": null, "index": 4, "isInternal": false, - "x": 130.79399999999998, + "x": 130.794, "y": 217.552 }, { "body": null, "index": 5, "isInternal": false, - "x": 124.66399999999999, + "x": 124.664, "y": 217.552 }, { "body": null, "index": 6, "isInternal": false, - "x": 118.83399999999999, + "x": 118.834, "y": 215.658 }, { "body": null, "index": 7, "isInternal": false, - "x": 113.87499999999999, + "x": 113.875, "y": 212.055 }, { "body": null, "index": 8, "isInternal": false, - "x": 110.27199999999999, + "x": 110.272, "y": 207.096 }, { "body": null, "index": 9, "isInternal": false, - "x": 108.37799999999999, + "x": 108.378, "y": 201.266 }, { "body": null, "index": 10, "isInternal": false, - "x": 108.37799999999999, + "x": 108.378, "y": 195.136 }, { "body": null, "index": 11, "isInternal": false, - "x": 110.27199999999999, - "y": 189.30599999999998 + "x": 110.272, + "y": 189.306 }, { "body": null, "index": 12, "isInternal": false, - "x": 113.87499999999999, - "y": 184.34699999999998 + "x": 113.875, + "y": 184.347 }, { "body": null, "index": 13, "isInternal": false, - "x": 118.83399999999999, + "x": 118.834, "y": 180.744 }, { "body": null, "index": 14, "isInternal": false, - "x": 124.66399999999999, + "x": 124.664, "y": 178.85 }, { "body": null, "index": 15, "isInternal": false, - "x": 130.79399999999998, + "x": 130.794, "y": 178.85 }, { "body": null, "index": 16, "isInternal": false, - "x": 136.62399999999997, + "x": 136.624, "y": 180.744 }, { "body": null, "index": 17, "isInternal": false, - "x": 141.58299999999997, - "y": 184.34699999999998 + "x": 141.583, + "y": 184.347 }, { "body": null, "index": 18, "isInternal": false, - "x": 145.18599999999998, - "y": 189.30599999999998 + "x": 145.186, + "y": 189.306 }, { "body": null, "index": 19, "isInternal": false, - "x": 147.07999999999998, + "x": 147.08, "y": 195.136 }, { @@ -7279,14 +7279,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 585.3796979999998, + "area": 585.3797, "axes": { "#": 807 }, "bounds": { "#": 815 }, - "circleRadius": 13.883273319615911, + "circleRadius": 13.88327, "collisionFilter": { "#": 818 }, @@ -7301,13 +7301,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 23, - "inertia": 218.2004829364277, - "inverseInertia": 0.004582941277409308, - "inverseMass": 1.7082929309242976, + "inertia": 218.20048, + "inverseInertia": 0.00458, + "inverseMass": 1.70829, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5853796979999999, + "mass": 0.58538, "motion": 0, "parent": null, "position": { @@ -7362,28 +7362,28 @@ } ], { - "x": -0.9009641800326721, - "y": -0.4338934734448706 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6235099396116037, - "y": -0.7818154227217151 + "x": -0.62351, + "y": -0.78182 }, { - "x": -0.22253036510011648, - "y": -0.9749257595368013 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.22253036510011648, - "y": -0.9749257595368013 + "x": 0.22253, + "y": -0.97493 }, { - "x": 0.6235099396116037, - "y": -0.7818154227217151 + "x": 0.62351, + "y": -0.78182 }, { - "x": 0.9009641800326721, - "y": -0.4338934734448706 + "x": 0.90096, + "y": -0.43389 }, { "x": 1, @@ -7398,11 +7398,11 @@ } }, { - "x": 194.14999999999998, + "x": 194.15, "y": 206.616 }, { - "x": 167.07999999999998, + "x": 167.08, "y": 178.85 }, { @@ -7420,7 +7420,7 @@ "y": 0 }, { - "x": 180.61499999999998, + "x": 180.615, "y": 192.733 }, { @@ -7428,7 +7428,7 @@ "y": 0 }, { - "x": 180.61499999999998, + "x": 180.615, "y": 192.733 }, { @@ -7496,35 +7496,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 194.14999999999998, + "x": 194.15, "y": 195.822 }, { "body": null, "index": 1, "isInternal": false, - "x": 191.46899999999997, + "x": 191.469, "y": 201.389 }, { "body": null, "index": 2, "isInternal": false, - "x": 186.63899999999998, + "x": 186.639, "y": 205.241 }, { "body": null, "index": 3, "isInternal": false, - "x": 180.61499999999998, + "x": 180.615, "y": 206.616 }, { "body": null, "index": 4, "isInternal": false, - "x": 174.59099999999998, + "x": 174.591, "y": 205.241 }, { @@ -7538,14 +7538,14 @@ "body": null, "index": 6, "isInternal": false, - "x": 167.07999999999998, + "x": 167.08, "y": 195.822 }, { "body": null, "index": 7, "isInternal": false, - "x": 167.07999999999998, + "x": 167.08, "y": 189.644 }, { @@ -7559,35 +7559,35 @@ "body": null, "index": 9, "isInternal": false, - "x": 174.59099999999998, + "x": 174.591, "y": 180.225 }, { "body": null, "index": 10, "isInternal": false, - "x": 180.61499999999998, + "x": 180.615, "y": 178.85 }, { "body": null, "index": 11, "isInternal": false, - "x": 186.63899999999998, + "x": 186.639, "y": 180.225 }, { "body": null, "index": 12, "isInternal": false, - "x": 191.46899999999997, + "x": 191.469, "y": 184.077 }, { "body": null, "index": 13, "isInternal": false, - "x": 194.14999999999998, + "x": 194.15, "y": 189.644 }, { @@ -7602,7 +7602,7 @@ "bounds": { "#": 854 }, - "circleRadius": 19.274819958847736, + "circleRadius": 19.27482, "collisionFilter": { "#": 857 }, @@ -7617,13 +7617,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 24, - "inertia": 839.1582416552851, - "inverseInertia": 0.0011916703553163535, - "inverseMass": 0.8710237959694349, + "inertia": 839.15824, + "inverseInertia": 0.00119, + "inverseMass": 0.87102, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.14807426, + "mass": 1.14807, "motion": 0, "parent": null, "position": { @@ -7687,40 +7687,40 @@ } ], { - "x": -0.9510438158398417, - "y": -0.30905607962438386 + "x": -0.95104, + "y": -0.30906 }, { - "x": -0.8089440000270397, - "y": -0.5878857072767232 + "x": -0.80894, + "y": -0.58789 }, { - "x": -0.5878857072767232, - "y": -0.8089440000270397 + "x": -0.58789, + "y": -0.80894 }, { - "x": -0.30905607962438386, - "y": -0.9510438158398417 + "x": -0.30906, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30905607962438386, - "y": -0.9510438158398417 + "x": 0.30906, + "y": -0.95104 }, { - "x": 0.5878857072767232, - "y": -0.8089440000270397 + "x": 0.58789, + "y": -0.80894 }, { - "x": 0.8089440000270397, - "y": -0.5878857072767232 + "x": 0.80894, + "y": -0.58789 }, { - "x": 0.9510438158398417, - "y": -0.30905607962438386 + "x": 0.95104, + "y": -0.30906 }, { "x": 1, @@ -7736,10 +7736,10 @@ }, { "x": 252.226, - "y": 216.92600000000002 + "y": 216.926 }, { - "x": 214.14999999999998, + "x": 214.15, "y": 178.85 }, { @@ -7852,7 +7852,7 @@ "index": 0, "isInternal": false, "x": 252.226, - "y": 200.90300000000002 + "y": 200.903 }, { "body": null, @@ -7865,7 +7865,7 @@ "body": null, "index": 2, "isInternal": false, - "x": 246.81699999999998, + "x": 246.817, "y": 211.517 }, { @@ -7879,21 +7879,21 @@ "body": null, "index": 4, "isInternal": false, - "x": 236.20299999999997, - "y": 216.92600000000002 + "x": 236.203, + "y": 216.926 }, { "body": null, "index": 5, "isInternal": false, "x": 230.173, - "y": 216.92600000000002 + "y": 216.926 }, { "body": null, "index": 6, "isInternal": false, - "x": 224.43699999999998, + "x": 224.437, "y": 215.062 }, { @@ -7907,28 +7907,28 @@ "body": null, "index": 8, "isInternal": false, - "x": 216.01399999999998, + "x": 216.014, "y": 206.639 }, { "body": null, "index": 9, "isInternal": false, - "x": 214.14999999999998, - "y": 200.90300000000002 + "x": 214.15, + "y": 200.903 }, { "body": null, "index": 10, "isInternal": false, - "x": 214.14999999999998, - "y": 194.87300000000002 + "x": 214.15, + "y": 194.873 }, { "body": null, "index": 11, "isInternal": false, - "x": 216.01399999999998, + "x": 216.014, "y": 189.137 }, { @@ -7936,13 +7936,13 @@ "index": 12, "isInternal": false, "x": 219.559, - "y": 184.25900000000001 + "y": 184.259 }, { "body": null, "index": 13, "isInternal": false, - "x": 224.43699999999998, + "x": 224.437, "y": 180.714 }, { @@ -7956,7 +7956,7 @@ "body": null, "index": 15, "isInternal": false, - "x": 236.20299999999997, + "x": 236.203, "y": 178.85 }, { @@ -7970,8 +7970,8 @@ "body": null, "index": 17, "isInternal": false, - "x": 246.81699999999998, - "y": 184.25900000000001 + "x": 246.817, + "y": 184.259 }, { "body": null, @@ -7985,21 +7985,21 @@ "index": 19, "isInternal": false, "x": 252.226, - "y": 194.87300000000002 + "y": 194.873 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 813.928944, + "area": 813.92894, "axes": { "#": 888 }, "bounds": { "#": 898 }, - "circleRadius": 16.261016803840878, + "circleRadius": 16.26102, "collisionFilter": { "#": 901 }, @@ -8014,13 +8014,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 25, - "inertia": 421.78337188051313, - "inverseInertia": 0.002370885309066403, - "inverseMass": 1.2286084766632897, + "inertia": 421.78337, + "inverseInertia": 0.00237, + "inverseMass": 1.22861, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.813928944, + "mass": 0.81393, "motion": 0, "parent": null, "position": { @@ -8081,36 +8081,36 @@ } ], { - "x": -0.9396692887425622, - "y": -0.34208424078587313 + "x": -0.93967, + "y": -0.34208 }, { - "x": -0.7660396478221458, - "y": -0.6427933244554761 + "x": -0.76604, + "y": -0.64279 }, { - "x": -0.49996774664129423, - "y": -0.8660440244689798 + "x": -0.49997, + "y": -0.86604 }, { - "x": -0.17369442727416068, - "y": -0.9847995968388195 + "x": -0.17369, + "y": -0.9848 }, { - "x": 0.17369442727416068, - "y": -0.9847995968388195 + "x": 0.17369, + "y": -0.9848 }, { - "x": 0.49996774664129423, - "y": -0.8660440244689798 + "x": 0.49997, + "y": -0.86604 }, { - "x": 0.7660396478221458, - "y": -0.6427933244554761 + "x": 0.76604, + "y": -0.64279 }, { - "x": 0.9396692887425622, - "y": -0.34208424078587313 + "x": 0.93967, + "y": -0.34208 }, { "x": 1, @@ -8126,7 +8126,7 @@ }, { "x": 304.254, - "y": 211.37199999999999 + "y": 211.372 }, { "x": 272.226, @@ -8250,7 +8250,7 @@ "index": 2, "isInternal": false, "x": 298.692, - "y": 207.56799999999998 + "y": 207.568 }, { "body": null, @@ -8264,7 +8264,7 @@ "index": 4, "isInternal": false, "x": 288.24, - "y": 211.37199999999999 + "y": 211.372 }, { "body": null, @@ -8278,7 +8278,7 @@ "index": 6, "isInternal": false, "x": 277.788, - "y": 207.56799999999998 + "y": 207.568 }, { "body": null, @@ -8299,7 +8299,7 @@ "index": 9, "isInternal": false, "x": 272.226, - "y": 192.28699999999998 + "y": 192.287 }, { "body": null, @@ -8355,21 +8355,21 @@ "index": 17, "isInternal": false, "x": 304.254, - "y": 192.28699999999998 + "y": 192.287 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 405.9288839999999, + "area": 405.92888, "axes": { "#": 930 }, "bounds": { "#": 937 }, - "circleRadius": 11.63198731138546, + "circleRadius": 11.63199, "collisionFilter": { "#": 940 }, @@ -8384,13 +8384,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 26, - "inertia": 104.94637250178351, - "inverseInertia": 0.009528676181570788, - "inverseMass": 2.463485697657327, + "inertia": 104.94637, + "inverseInertia": 0.00953, + "inverseMass": 2.46349, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.40592888399999993, + "mass": 0.40593, "motion": 0, "parent": null, "position": { @@ -8442,24 +8442,24 @@ } ], { - "x": -0.8659753666343715, - "y": -0.5000866568730521 + "x": -0.86598, + "y": -0.50009 }, { - "x": -0.5000866568730521, - "y": -0.8659753666343715 + "x": -0.50009, + "y": -0.86598 }, { "x": 0, "y": -1 }, { - "x": 0.5000866568730521, - "y": -0.8659753666343715 + "x": 0.50009, + "y": -0.86598 }, { - "x": 0.8659753666343715, - "y": -0.5000866568730521 + "x": 0.86598, + "y": -0.50009 }, { "x": 1, @@ -8475,7 +8475,7 @@ }, { "x": 346.726, - "y": 201.32199999999997 + "y": 201.322 }, { "x": 324.254, @@ -8497,7 +8497,7 @@ }, { "x": 335.49, - "y": 190.08599999999998 + "y": 190.086 }, { "x": 0, @@ -8505,7 +8505,7 @@ }, { "x": 335.49, - "y": 190.08599999999998 + "y": 190.086 }, { "fillStyle": "#556270", @@ -8567,42 +8567,42 @@ "index": 0, "isInternal": false, "x": 346.726, - "y": 193.09699999999998 + "y": 193.097 }, { "body": null, "index": 1, "isInternal": false, - "x": 343.71500000000003, - "y": 198.31099999999998 + "x": 343.715, + "y": 198.311 }, { "body": null, "index": 2, "isInternal": false, - "x": 338.50100000000003, - "y": 201.32199999999997 + "x": 338.501, + "y": 201.322 }, { "body": null, "index": 3, "isInternal": false, "x": 332.479, - "y": 201.32199999999997 + "y": 201.322 }, { "body": null, "index": 4, "isInternal": false, "x": 327.265, - "y": 198.31099999999998 + "y": 198.311 }, { "body": null, "index": 5, "isInternal": false, "x": 324.254, - "y": 193.09699999999998 + "y": 193.097 }, { "body": null, @@ -8629,14 +8629,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 338.50100000000003, + "x": 338.501, "y": 178.85 }, { "body": null, "index": 10, "isInternal": false, - "x": 343.71500000000003, + "x": 343.715, "y": 181.861 }, { @@ -8651,14 +8651,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 813.045236, + "area": 813.04524, "axes": { "#": 963 }, "bounds": { "#": 973 }, - "circleRadius": 16.25192901234568, + "circleRadius": 16.25193, "collisionFilter": { "#": 976 }, @@ -8673,13 +8673,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 27, - "inertia": 420.8679825768214, - "inverseInertia": 0.0023760419927345484, - "inverseMass": 1.2299438650176162, + "inertia": 420.86798, + "inverseInertia": 0.00238, + "inverseMass": 1.22994, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8130452360000001, + "mass": 0.81305, "motion": 0, "parent": null, "position": { @@ -8740,36 +8740,36 @@ } ], { - "x": -0.939720981661198, - "y": -0.3419422124068839 + "x": -0.93972, + "y": -0.34194 }, { - "x": -0.7660677180217655, - "y": -0.6427598707176146 + "x": -0.76607, + "y": -0.64276 }, { - "x": -0.4999115829199475, - "y": -0.8660764453917866 + "x": -0.49991, + "y": -0.86608 }, { - "x": -0.173643819893381, - "y": -0.9848085213953193 + "x": -0.17364, + "y": -0.98481 }, { - "x": 0.173643819893381, - "y": -0.9848085213953193 + "x": 0.17364, + "y": -0.98481 }, { - "x": 0.4999115829199475, - "y": -0.8660764453917866 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.7660677180217655, - "y": -0.6427598707176146 + "x": 0.76607, + "y": -0.64276 }, { - "x": 0.939720981661198, - "y": -0.3419422124068839 + "x": 0.93972, + "y": -0.34194 }, { "x": 1, @@ -8972,7 +8972,7 @@ "index": 11, "isInternal": false, "x": 372.284, - "y": 182.65200000000002 + "y": 182.652 }, { "body": null, @@ -9000,7 +9000,7 @@ "index": 15, "isInternal": false, "x": 393.178, - "y": 182.65200000000002 + "y": 182.652 }, { "body": null, @@ -9021,14 +9021,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1175.440884, + "area": 1175.44088, "axes": { "#": 1005 }, "bounds": { "#": 1016 }, - "circleRadius": 19.503557956104252, + "circleRadius": 19.50356, "collisionFilter": { "#": 1019 }, @@ -9043,13 +9043,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 28, - "inertia": 879.6410498592595, - "inverseInertia": 0.00113682734583612, - "inverseMass": 0.8507446130315133, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "inverseMass": 0.85074, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1754408840000001, + "mass": 1.17544, "motion": 0, "parent": null, "position": { @@ -9113,40 +9113,40 @@ } ], { - "x": -0.9510810304000095, - "y": -0.3089415375330036 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8090123548449776, - "y": -0.5877916380046453 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877916380046453, - "y": -0.8090123548449776 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.3089415375330036, - "y": -0.9510810304000095 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.3089415375330036, - "y": -0.9510810304000095 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5877916380046453, - "y": -0.8090123548449776 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090123548449776, - "y": -0.5877916380046453 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510810304000095, - "y": -0.3089415375330036 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -9161,7 +9161,7 @@ } }, { - "x": 457.26199999999994, + "x": 457.262, "y": 217.376 }, { @@ -9183,7 +9183,7 @@ "y": 0 }, { - "x": 437.99899999999997, + "x": 437.999, "y": 198.113 }, { @@ -9191,7 +9191,7 @@ "y": 0 }, { - "x": 437.99899999999997, + "x": 437.999, "y": 198.113 }, { @@ -9277,35 +9277,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 457.26199999999994, + "x": 457.262, "y": 201.164 }, { "body": null, "index": 1, "isInternal": false, - "x": 455.37699999999995, + "x": 455.377, "y": 206.967 }, { "body": null, "index": 2, "isInternal": false, - "x": 451.78999999999996, + "x": 451.79, "y": 211.904 }, { "body": null, "index": 3, "isInternal": false, - "x": 446.85299999999995, + "x": 446.853, "y": 215.491 }, { "body": null, "index": 4, "isInternal": false, - "x": 441.04999999999995, + "x": 441.05, "y": 217.376 }, { @@ -9326,7 +9326,7 @@ "body": null, "index": 7, "isInternal": false, - "x": 424.20799999999997, + "x": 424.208, "y": 211.904 }, { @@ -9361,7 +9361,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 424.20799999999997, + "x": 424.208, "y": 184.322 }, { @@ -9369,7 +9369,7 @@ "index": 13, "isInternal": false, "x": 429.145, - "y": 180.73499999999999 + "y": 180.735 }, { "body": null, @@ -9382,35 +9382,35 @@ "body": null, "index": 15, "isInternal": false, - "x": 441.04999999999995, + "x": 441.05, "y": 178.85 }, { "body": null, "index": 16, "isInternal": false, - "x": 446.85299999999995, - "y": 180.73499999999999 + "x": 446.853, + "y": 180.735 }, { "body": null, "index": 17, "isInternal": false, - "x": 451.78999999999996, + "x": 451.79, "y": 184.322 }, { "body": null, "index": 18, "isInternal": false, - "x": 455.37699999999995, + "x": 455.377, "y": 189.259 }, { "body": null, "index": 19, "isInternal": false, - "x": 457.26199999999994, + "x": 457.262, "y": 195.062 }, { @@ -9418,14 +9418,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 324.43099600000005, + "area": 324.431, "axes": { "#": 1050 }, "bounds": { "#": 1057 }, - "circleRadius": 10.399219821673526, + "circleRadius": 10.39922, "collisionFilter": { "#": 1060 }, @@ -9440,13 +9440,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 29, - "inertia": 67.03663440105248, - "inverseInertia": 0.014917216667194436, - "inverseMass": 3.082319545078238, + "inertia": 67.03663, + "inverseInertia": 0.01492, + "inverseMass": 3.08232, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.3244309960000001, + "mass": 0.32443, "motion": 0, "parent": null, "position": { @@ -9498,24 +9498,24 @@ } ], { - "x": -0.8659473272702323, - "y": -0.5001352081123076 + "x": -0.86595, + "y": -0.50014 }, { - "x": -0.5001352081123076, - "y": -0.8659473272702323 + "x": -0.50014, + "y": -0.86595 }, { "x": 0, "y": -1 }, { - "x": 0.5001352081123076, - "y": -0.8659473272702323 + "x": 0.50014, + "y": -0.86595 }, { - "x": 0.8659473272702323, - "y": -0.5001352081123076 + "x": 0.86595, + "y": -0.50014 }, { "x": 1, @@ -9531,10 +9531,10 @@ }, { "x": 497.352, - "y": 198.93999999999997 + "y": 198.94 }, { - "x": 477.26199999999994, + "x": 477.262, "y": 178.85 }, { @@ -9552,16 +9552,16 @@ "y": 0 }, { - "x": 487.30699999999996, - "y": 188.89499999999998 + "x": 487.307, + "y": 188.895 }, { "x": 0, "y": 0 }, { - "x": 487.30699999999996, - "y": 188.89499999999998 + "x": 487.307, + "y": 188.895 }, { "fillStyle": "#C7F464", @@ -9629,92 +9629,92 @@ "body": null, "index": 1, "isInternal": false, - "x": 494.65999999999997, + "x": 494.66, "y": 196.248 }, { "body": null, "index": 2, "isInternal": false, - "x": 489.99899999999997, - "y": 198.93999999999997 + "x": 489.999, + "y": 198.94 }, { "body": null, "index": 3, "isInternal": false, - "x": 484.61499999999995, - "y": 198.93999999999997 + "x": 484.615, + "y": 198.94 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.95399999999995, + "x": 479.954, "y": 196.248 }, { "body": null, "index": 5, "isInternal": false, - "x": 477.26199999999994, + "x": 477.262, "y": 191.587 }, { "body": null, "index": 6, "isInternal": false, - "x": 477.26199999999994, - "y": 186.20299999999997 + "x": 477.262, + "y": 186.203 }, { "body": null, "index": 7, "isInternal": false, - "x": 479.95399999999995, - "y": 181.54199999999997 + "x": 479.954, + "y": 181.542 }, { "body": null, "index": 8, "isInternal": false, - "x": 484.61499999999995, + "x": 484.615, "y": 178.85 }, { "body": null, "index": 9, "isInternal": false, - "x": 489.99899999999997, + "x": 489.999, "y": 178.85 }, { "body": null, "index": 10, "isInternal": false, - "x": 494.65999999999997, - "y": 181.54199999999997 + "x": 494.66, + "y": 181.542 }, { "body": null, "index": 11, "isInternal": false, "x": 497.352, - "y": 186.20299999999997 + "y": 186.203 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 722.1773659999999, + "area": 722.17737, "axes": { "#": 1083 }, "bounds": { "#": 1092 }, - "circleRadius": 15.358667695473251, + "circleRadius": 15.35867, "collisionFilter": { "#": 1095 }, @@ -9729,13 +9729,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 30, - "inertia": 332.0674558099107, - "inverseInertia": 0.0030114363286851023, - "inverseMass": 1.3847013865012214, + "inertia": 332.06746, + "inverseInertia": 0.00301, + "inverseMass": 1.3847, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7221773659999999, + "mass": 0.72218, "motion": 0, "parent": null, "position": { @@ -9793,32 +9793,32 @@ } ], { - "x": -0.9238500637214436, - "y": -0.3827545685708854 + "x": -0.92385, + "y": -0.38275 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3827545685708854, - "y": -0.9238500637214436 + "x": -0.38275, + "y": -0.92385 }, { "x": 0, "y": -1 }, { - "x": 0.3827545685708854, - "y": -0.9238500637214436 + "x": 0.38275, + "y": -0.92385 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238500637214436, - "y": -0.3827545685708854 + "x": 0.92385, + "y": -0.38275 }, { "x": 1, @@ -9833,11 +9833,11 @@ } }, { - "x": 547.4799999999999, - "y": 208.97799999999998 + "x": 547.48, + "y": 208.978 }, { - "x": 517.3519999999999, + "x": 517.352, "y": 178.85 }, { @@ -9855,7 +9855,7 @@ "y": 0 }, { - "x": 532.4159999999999, + "x": 532.416, "y": 193.914 }, { @@ -9863,7 +9863,7 @@ "y": 0 }, { - "x": 532.4159999999999, + "x": 532.416, "y": 193.914 }, { @@ -9937,15 +9937,15 @@ "body": null, "index": 0, "isInternal": false, - "x": 547.4799999999999, + "x": 547.48, "y": 196.91 }, { "body": null, "index": 1, "isInternal": false, - "x": 545.1859999999999, - "y": 202.44699999999997 + "x": 545.186, + "y": 202.447 }, { "body": null, @@ -9958,21 +9958,21 @@ "body": null, "index": 3, "isInternal": false, - "x": 535.4119999999999, - "y": 208.97799999999998 + "x": 535.412, + "y": 208.978 }, { "body": null, "index": 4, "isInternal": false, "x": 529.42, - "y": 208.97799999999998 + "y": 208.978 }, { "body": null, "index": 5, "isInternal": false, - "x": 523.8829999999999, + "x": 523.883, "y": 206.684 }, { @@ -9980,21 +9980,21 @@ "index": 6, "isInternal": false, "x": 519.646, - "y": 202.44699999999997 + "y": 202.447 }, { "body": null, "index": 7, "isInternal": false, - "x": 517.3519999999999, + "x": 517.352, "y": 196.91 }, { "body": null, "index": 8, "isInternal": false, - "x": 517.3519999999999, - "y": 190.91799999999998 + "x": 517.352, + "y": 190.918 }, { "body": null, @@ -10007,8 +10007,8 @@ "body": null, "index": 10, "isInternal": false, - "x": 523.8829999999999, - "y": 181.14399999999998 + "x": 523.883, + "y": 181.144 }, { "body": null, @@ -10021,7 +10021,7 @@ "body": null, "index": 12, "isInternal": false, - "x": 535.4119999999999, + "x": 535.412, "y": 178.85 }, { @@ -10029,35 +10029,35 @@ "index": 13, "isInternal": false, "x": 540.949, - "y": 181.14399999999998 + "y": 181.144 }, { "body": null, "index": 14, "isInternal": false, - "x": 545.1859999999999, + "x": 545.186, "y": 185.381 }, { "body": null, "index": 15, "isInternal": false, - "x": 547.4799999999999, - "y": 190.91799999999998 + "x": 547.48, + "y": 190.918 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 486.2764840000001, + "area": 486.27648, "axes": { "#": 1122 }, "bounds": { "#": 1130 }, - "circleRadius": 12.653506515775035, + "circleRadius": 12.65351, "collisionFilter": { "#": 1133 }, @@ -10072,13 +10072,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 31, - "inertia": 150.57294030609683, - "inverseInertia": 0.006641299545370631, - "inverseMass": 2.0564432640752575, + "inertia": 150.57294, + "inverseInertia": 0.00664, + "inverseMass": 2.05644, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4862764840000001, + "mass": 0.48628, "motion": 0, "parent": null, "position": { @@ -10133,28 +10133,28 @@ } ], { - "x": -0.9009708147132571, - "y": -0.43387969649999736 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.6234599159723792, - "y": -0.7818553147326646 + "x": -0.62346, + "y": -0.78186 }, { - "x": -0.22268014841323974, - "y": -0.9748915588426528 + "x": -0.22268, + "y": -0.97489 }, { - "x": 0.22268014841323974, - "y": -0.9748915588426528 + "x": 0.22268, + "y": -0.97489 }, { - "x": 0.6234599159723792, - "y": -0.7818553147326646 + "x": 0.62346, + "y": -0.78186 }, { - "x": 0.9009708147132571, - "y": -0.43387969649999736 + "x": 0.90097, + "y": -0.43388 }, { "x": 1, @@ -10169,11 +10169,11 @@ } }, { - "x": 592.1519999999999, + "x": 592.152, "y": 204.158 }, { - "x": 567.4799999999999, + "x": 567.48, "y": 178.85 }, { @@ -10191,7 +10191,7 @@ "y": 0 }, { - "x": 579.8159999999999, + "x": 579.816, "y": 191.504 }, { @@ -10199,7 +10199,7 @@ "y": 0 }, { - "x": 579.8159999999999, + "x": 579.816, "y": 191.504 }, { @@ -10267,7 +10267,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 592.1519999999999, + "x": 592.152, "y": 194.32 }, { @@ -10281,84 +10281,84 @@ "body": null, "index": 2, "isInternal": false, - "x": 585.3059999999999, + "x": 585.306, "y": 202.904 }, { "body": null, "index": 3, "isInternal": false, - "x": 579.8159999999999, + "x": 579.816, "y": 204.158 }, { "body": null, "index": 4, "isInternal": false, - "x": 574.3259999999999, + "x": 574.326, "y": 202.904 }, { "body": null, "index": 5, "isInternal": false, - "x": 569.9229999999999, + "x": 569.923, "y": 199.393 }, { "body": null, "index": 6, "isInternal": false, - "x": 567.4799999999999, + "x": 567.48, "y": 194.32 }, { "body": null, "index": 7, "isInternal": false, - "x": 567.4799999999999, + "x": 567.48, "y": 188.688 }, { "body": null, "index": 8, "isInternal": false, - "x": 569.9229999999999, - "y": 183.61499999999998 + "x": 569.923, + "y": 183.615 }, { "body": null, "index": 9, "isInternal": false, - "x": 574.3259999999999, - "y": 180.10399999999998 + "x": 574.326, + "y": 180.104 }, { "body": null, "index": 10, "isInternal": false, - "x": 579.8159999999999, + "x": 579.816, "y": 178.85 }, { "body": null, "index": 11, "isInternal": false, - "x": 585.3059999999999, - "y": 180.10399999999998 + "x": 585.306, + "y": 180.104 }, { "body": null, "index": 12, "isInternal": false, "x": 589.709, - "y": 183.61499999999998 + "y": 183.615 }, { "body": null, "index": 13, "isInternal": false, - "x": 592.1519999999999, + "x": 592.152, "y": 188.688 }, { @@ -10366,14 +10366,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 555.028152, + "area": 555.02815, "axes": { "#": 1158 }, "bounds": { "#": 1166 }, - "circleRadius": 13.518304183813443, + "circleRadius": 13.5183, "collisionFilter": { "#": 1169 }, @@ -10388,13 +10388,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 32, - "inertia": 196.15998479488022, - "inverseInertia": 0.005097879677374955, - "inverseMass": 1.8017104112585627, + "inertia": 196.15998, + "inverseInertia": 0.0051, + "inverseMass": 1.80171, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.555028152, + "mass": 0.55503, "motion": 0, "parent": null, "position": { @@ -10449,28 +10449,28 @@ } ], { - "x": -0.901008887984407, - "y": -0.4338006267550824 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6234578160368234, - "y": -0.781856989239461 + "x": -0.62346, + "y": -0.78186 }, { - "x": -0.22241855165218072, - "y": -0.9749512746188632 + "x": -0.22242, + "y": -0.97495 }, { - "x": 0.22241855165218072, - "y": -0.9749512746188632 + "x": 0.22242, + "y": -0.97495 }, { - "x": 0.6234578160368234, - "y": -0.781856989239461 + "x": 0.62346, + "y": -0.78186 }, { - "x": 0.901008887984407, - "y": -0.4338006267550824 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -10485,11 +10485,11 @@ } }, { - "x": 638.5099999999999, + "x": 638.51, "y": 205.886 }, { - "x": 612.1519999999999, + "x": 612.152, "y": 178.85 }, { @@ -10507,7 +10507,7 @@ "y": 0 }, { - "x": 625.3309999999999, + "x": 625.331, "y": 192.368 }, { @@ -10515,7 +10515,7 @@ "y": 0 }, { - "x": 625.3309999999999, + "x": 625.331, "y": 192.368 }, { @@ -10583,35 +10583,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.5099999999999, + "x": 638.51, "y": 195.376 }, { "body": null, "index": 1, "isInternal": false, - "x": 635.8999999999999, + "x": 635.9, "y": 200.797 }, { "body": null, "index": 2, "isInternal": false, - "x": 631.1959999999999, + "x": 631.196, "y": 204.548 }, { "body": null, "index": 3, "isInternal": false, - "x": 625.3309999999999, + "x": 625.331, "y": 205.886 }, { "body": null, "index": 4, "isInternal": false, - "x": 619.4659999999999, + "x": 619.466, "y": 204.548 }, { @@ -10625,15 +10625,15 @@ "body": null, "index": 6, "isInternal": false, - "x": 612.1519999999999, + "x": 612.152, "y": 195.376 }, { "body": null, "index": 7, "isInternal": false, - "x": 612.1519999999999, - "y": 189.35999999999999 + "x": 612.152, + "y": 189.36 }, { "body": null, @@ -10646,50 +10646,50 @@ "body": null, "index": 9, "isInternal": false, - "x": 619.4659999999999, + "x": 619.466, "y": 180.188 }, { "body": null, "index": 10, "isInternal": false, - "x": 625.3309999999999, + "x": 625.331, "y": 178.85 }, { "body": null, "index": 11, "isInternal": false, - "x": 631.1959999999999, + "x": 631.196, "y": 180.188 }, { "body": null, "index": 12, "isInternal": false, - "x": 635.8999999999999, + "x": 635.9, "y": 183.939 }, { "body": null, "index": 13, "isInternal": false, - "x": 638.5099999999999, - "y": 189.35999999999999 + "x": 638.51, + "y": 189.36 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1227.1883159999998, + "area": 1227.18832, "axes": { "#": 1194 }, "bounds": { "#": 1205 }, - "circleRadius": 19.928369341563787, + "circleRadius": 19.92837, "collisionFilter": { "#": 1208 }, @@ -10704,13 +10704,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 33, - "inertia": 958.7962512746001, - "inverseInertia": 0.001042974457472716, - "inverseMass": 0.8148708612704882, + "inertia": 958.79625, + "inverseInertia": 0.00104, + "inverseMass": 0.81487, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.227188316, + "mass": 1.22719, "motion": 0, "parent": null, "position": { @@ -10774,40 +10774,40 @@ } ], { - "x": -0.9510458539268092, - "y": -0.30904980784434416 + "x": -0.95105, + "y": -0.30905 }, { - "x": -0.80899262671849, - "y": -0.5878187900323687 + "x": -0.80899, + "y": -0.58782 }, { - "x": -0.5878187900323687, - "y": -0.80899262671849 + "x": -0.58782, + "y": -0.80899 }, { - "x": -0.30904980784434416, - "y": -0.9510458539268092 + "x": -0.30905, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.30904980784434416, - "y": -0.9510458539268092 + "x": 0.30905, + "y": -0.95105 }, { - "x": 0.5878187900323687, - "y": -0.80899262671849 + "x": 0.58782, + "y": -0.80899 }, { - "x": 0.80899262671849, - "y": -0.5878187900323687 + "x": 0.80899, + "y": -0.58782 }, { - "x": 0.9510458539268092, - "y": -0.30904980784434416 + "x": 0.95105, + "y": -0.30905 }, { "x": 1, @@ -10822,11 +10822,11 @@ } }, { - "x": 697.8759999999999, - "y": 218.21599999999998 + "x": 697.876, + "y": 218.216 }, { - "x": 658.5099999999999, + "x": 658.51, "y": 178.85 }, { @@ -10844,7 +10844,7 @@ "y": 0 }, { - "x": 678.1929999999999, + "x": 678.193, "y": 198.533 }, { @@ -10852,7 +10852,7 @@ "y": 0 }, { - "x": 678.1929999999999, + "x": 678.193, "y": 198.533 }, { @@ -10938,140 +10938,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 697.8759999999999, - "y": 201.64999999999998 + "x": 697.876, + "y": 201.65 }, { "body": null, "index": 1, "isInternal": false, - "x": 695.9489999999998, - "y": 207.57999999999998 + "x": 695.949, + "y": 207.58 }, { "body": null, "index": 2, "isInternal": false, - "x": 692.2839999999999, + "x": 692.284, "y": 212.624 }, { "body": null, "index": 3, "isInternal": false, - "x": 687.2399999999999, + "x": 687.24, "y": 216.289 }, { "body": null, "index": 4, "isInternal": false, - "x": 681.3099999999998, - "y": 218.21599999999998 + "x": 681.31, + "y": 218.216 }, { "body": null, "index": 5, "isInternal": false, - "x": 675.0759999999999, - "y": 218.21599999999998 + "x": 675.076, + "y": 218.216 }, { "body": null, "index": 6, "isInternal": false, - "x": 669.1459999999998, + "x": 669.146, "y": 216.289 }, { "body": null, "index": 7, "isInternal": false, - "x": 664.1019999999999, + "x": 664.102, "y": 212.624 }, { "body": null, "index": 8, "isInternal": false, - "x": 660.4369999999999, - "y": 207.57999999999998 + "x": 660.437, + "y": 207.58 }, { "body": null, "index": 9, "isInternal": false, - "x": 658.5099999999999, - "y": 201.64999999999998 + "x": 658.51, + "y": 201.65 }, { "body": null, "index": 10, "isInternal": false, - "x": 658.5099999999999, + "x": 658.51, "y": 195.416 }, { "body": null, "index": 11, "isInternal": false, - "x": 660.4369999999999, + "x": 660.437, "y": 189.486 }, { "body": null, "index": 12, "isInternal": false, - "x": 664.1019999999999, - "y": 184.44199999999998 + "x": 664.102, + "y": 184.442 }, { "body": null, "index": 13, "isInternal": false, - "x": 669.1459999999998, + "x": 669.146, "y": 180.777 }, { "body": null, "index": 14, "isInternal": false, - "x": 675.0759999999999, + "x": 675.076, "y": 178.85 }, { "body": null, "index": 15, "isInternal": false, - "x": 681.3099999999998, + "x": 681.31, "y": 178.85 }, { "body": null, "index": 16, "isInternal": false, - "x": 687.2399999999999, + "x": 687.24, "y": 180.777 }, { "body": null, "index": 17, "isInternal": false, - "x": 692.2839999999999, - "y": 184.44199999999998 + "x": 692.284, + "y": 184.442 }, { "body": null, "index": 18, "isInternal": false, - "x": 695.9489999999998, + "x": 695.949, "y": 189.486 }, { "body": null, "index": 19, "isInternal": false, - "x": 697.8759999999999, + "x": 697.876, "y": 195.416 }, { @@ -11079,14 +11079,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1120.7724680000001, + "area": 1120.77247, "axes": { "#": 1239 }, "bounds": { "#": 1250 }, - "circleRadius": 19.04419581618656, + "circleRadius": 19.0442, "collisionFilter": { "#": 1253 }, @@ -11101,13 +11101,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 34, - "inertia": 799.721573279466, - "inverseInertia": 0.001250435193212608, - "inverseMass": 0.8922417605283286, + "inertia": 799.72157, + "inverseInertia": 0.00125, + "inverseMass": 0.89224, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1207724680000002, + "mass": 1.12077, "motion": 0, "parent": null, "position": { @@ -11171,40 +11171,40 @@ } ], { - "x": -0.9510722943806661, - "y": -0.3089684302020123 + "x": -0.95107, + "y": -0.30897 }, { - "x": -0.8089319902014619, - "y": -0.5879022327128056 + "x": -0.80893, + "y": -0.5879 }, { - "x": -0.5879022327128056, - "y": -0.8089319902014619 + "x": -0.5879, + "y": -0.80893 }, { - "x": -0.3089684302020123, - "y": -0.9510722943806661 + "x": -0.30897, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089684302020123, - "y": -0.9510722943806661 + "x": 0.30897, + "y": -0.95107 }, { - "x": 0.5879022327128056, - "y": -0.8089319902014619 + "x": 0.5879, + "y": -0.80893 }, { - "x": 0.8089319902014619, - "y": -0.5879022327128056 + "x": 0.80893, + "y": -0.5879 }, { - "x": 0.9510722943806661, - "y": -0.3089684302020123 + "x": 0.95107, + "y": -0.30897 }, { "x": 1, @@ -11219,11 +11219,11 @@ } }, { - "x": 755.4959999999998, + "x": 755.496, "y": 216.47 }, { - "x": 717.8759999999999, + "x": 717.876, "y": 178.85 }, { @@ -11241,7 +11241,7 @@ "y": 0 }, { - "x": 736.6859999999998, + "x": 736.686, "y": 197.66 }, { @@ -11249,7 +11249,7 @@ "y": 0 }, { - "x": 736.6859999999998, + "x": 736.686, "y": 197.66 }, { @@ -11335,155 +11335,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 755.4959999999998, + "x": 755.496, "y": 200.639 }, { "body": null, "index": 1, "isInternal": false, - "x": 753.6549999999999, - "y": 206.30599999999998 + "x": 753.655, + "y": 206.306 }, { "body": null, "index": 2, "isInternal": false, - "x": 750.1519999999998, + "x": 750.152, "y": 211.126 }, { "body": null, "index": 3, "isInternal": false, - "x": 745.3319999999998, + "x": 745.332, "y": 214.629 }, { "body": null, "index": 4, "isInternal": false, - "x": 739.6649999999998, + "x": 739.665, "y": 216.47 }, { "body": null, "index": 5, "isInternal": false, - "x": 733.7069999999998, + "x": 733.707, "y": 216.47 }, { "body": null, "index": 6, "isInternal": false, - "x": 728.0399999999998, + "x": 728.04, "y": 214.629 }, { "body": null, "index": 7, "isInternal": false, - "x": 723.2199999999998, + "x": 723.22, "y": 211.126 }, { "body": null, "index": 8, "isInternal": false, - "x": 719.7169999999998, - "y": 206.30599999999998 + "x": 719.717, + "y": 206.306 }, { "body": null, "index": 9, "isInternal": false, - "x": 717.8759999999999, + "x": 717.876, "y": 200.639 }, { "body": null, "index": 10, "isInternal": false, - "x": 717.8759999999999, - "y": 194.68099999999998 + "x": 717.876, + "y": 194.681 }, { "body": null, "index": 11, "isInternal": false, - "x": 719.7169999999998, + "x": 719.717, "y": 189.014 }, { "body": null, "index": 12, "isInternal": false, - "x": 723.2199999999998, + "x": 723.22, "y": 184.194 }, { "body": null, "index": 13, "isInternal": false, - "x": 728.0399999999998, + "x": 728.04, "y": 180.691 }, { "body": null, "index": 14, "isInternal": false, - "x": 733.7069999999998, + "x": 733.707, "y": 178.85 }, { "body": null, "index": 15, "isInternal": false, - "x": 739.6649999999998, + "x": 739.665, "y": 178.85 }, { "body": null, "index": 16, "isInternal": false, - "x": 745.3319999999998, + "x": 745.332, "y": 180.691 }, { "body": null, "index": 17, "isInternal": false, - "x": 750.1519999999998, + "x": 750.152, "y": 184.194 }, { "body": null, "index": 18, "isInternal": false, - "x": 753.6549999999999, + "x": 753.655, "y": 189.014 }, { "body": null, "index": 19, "isInternal": false, - "x": 755.4959999999998, - "y": 194.68099999999998 + "x": 755.496, + "y": 194.681 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 628.0030680000002, + "area": 628.00307, "axes": { "#": 1284 }, "bounds": { "#": 1293 }, - "circleRadius": 14.322573731138545, + "circleRadius": 14.32257, "collisionFilter": { "#": 1296 }, @@ -11498,13 +11498,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 35, - "inertia": 251.1088965588656, - "inverseInertia": 0.003982336005230214, - "inverseMass": 1.5923489087158402, + "inertia": 251.1089, + "inverseInertia": 0.00398, + "inverseMass": 1.59235, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6280030680000003, + "mass": 0.628, "motion": 0, "parent": null, "position": { @@ -11562,32 +11562,32 @@ } ], { - "x": -0.923916516222473, - "y": -0.3825941335819576 + "x": -0.92392, + "y": -0.38259 }, { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3825941335819576, - "y": -0.923916516222473 + "x": -0.38259, + "y": -0.92392 }, { "x": 0, "y": -1 }, { - "x": 0.3825941335819576, - "y": -0.923916516222473 + "x": 0.38259, + "y": -0.92392 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.923916516222473, - "y": -0.3825941335819576 + "x": 0.92392, + "y": -0.38259 }, { "x": 1, @@ -11602,11 +11602,11 @@ } }, { - "x": 48.093999999999994, - "y": 286.31000000000006 + "x": 48.094, + "y": 286.31 }, { - "x": 19.999999999999996, + "x": 20, "y": 258.216 }, { @@ -11625,7 +11625,7 @@ }, { "x": 34.047, - "y": 272.26300000000003 + "y": 272.263 }, { "x": 0, @@ -11633,7 +11633,7 @@ }, { "x": 34.047, - "y": 272.26300000000003 + "y": 272.263 }, { "fillStyle": "#FF6B6B", @@ -11706,14 +11706,14 @@ "body": null, "index": 0, "isInternal": false, - "x": 48.093999999999994, + "x": 48.094, "y": 275.057 }, { "body": null, "index": 1, "isInternal": false, - "x": 45.955999999999996, + "x": 45.956, "y": 280.22 }, { @@ -11727,70 +11727,70 @@ "body": null, "index": 3, "isInternal": false, - "x": 36.840999999999994, - "y": 286.31000000000006 + "x": 36.841, + "y": 286.31 }, { "body": null, "index": 4, "isInternal": false, - "x": 31.252999999999997, - "y": 286.31000000000006 + "x": 31.253, + "y": 286.31 }, { "body": null, "index": 5, "isInternal": false, - "x": 26.089999999999996, + "x": 26.09, "y": 284.172 }, { "body": null, "index": 6, "isInternal": false, - "x": 22.137999999999998, + "x": 22.138, "y": 280.22 }, { "body": null, "index": 7, "isInternal": false, - "x": 19.999999999999996, + "x": 20, "y": 275.057 }, { "body": null, "index": 8, "isInternal": false, - "x": 19.999999999999996, - "y": 269.46900000000005 + "x": 20, + "y": 269.469 }, { "body": null, "index": 9, "isInternal": false, - "x": 22.137999999999998, - "y": 264.30600000000004 + "x": 22.138, + "y": 264.306 }, { "body": null, "index": 10, "isInternal": false, - "x": 26.089999999999996, - "y": 260.35400000000004 + "x": 26.09, + "y": 260.354 }, { "body": null, "index": 11, "isInternal": false, - "x": 31.252999999999997, + "x": 31.253, "y": 258.216 }, { "body": null, "index": 12, "isInternal": false, - "x": 36.840999999999994, + "x": 36.841, "y": 258.216 }, { @@ -11798,35 +11798,35 @@ "index": 13, "isInternal": false, "x": 42.004, - "y": 260.35400000000004 + "y": 260.354 }, { "body": null, "index": 14, "isInternal": false, - "x": 45.955999999999996, - "y": 264.30600000000004 + "x": 45.956, + "y": 264.306 }, { "body": null, "index": 15, "isInternal": false, - "x": 48.093999999999994, - "y": 269.46900000000005 + "x": 48.094, + "y": 269.469 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 536.790174, + "area": 536.79017, "axes": { "#": 1323 }, "bounds": { "#": 1331 }, - "circleRadius": 13.294367283950617, + "circleRadius": 13.29437, "collisionFilter": { "#": 1334 }, @@ -11841,13 +11841,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 36, - "inertia": 183.48032886968383, - "inverseInertia": 0.005450175537401865, - "inverseMass": 1.8629253075709244, + "inertia": 183.48033, + "inverseInertia": 0.00545, + "inverseMass": 1.86293, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.536790174, + "mass": 0.53679, "motion": 0, "parent": null, "position": { @@ -11902,28 +11902,28 @@ } ], { - "x": -0.9009869891740203, - "y": -0.43384610789902656 + "x": -0.90099, + "y": -0.43385 }, { - "x": -0.6234782418052662, - "y": -0.7818407011632318 + "x": -0.62348, + "y": -0.78184 }, { - "x": -0.22243926136633385, - "y": -0.9749465498183989 + "x": -0.22244, + "y": -0.97495 }, { - "x": 0.22243926136633385, - "y": -0.9749465498183989 + "x": 0.22244, + "y": -0.97495 }, { - "x": 0.6234782418052662, - "y": -0.7818407011632318 + "x": 0.62348, + "y": -0.78184 }, { - "x": 0.9009869891740203, - "y": -0.43384610789902656 + "x": 0.90099, + "y": -0.43385 }, { "x": 1, @@ -11938,7 +11938,7 @@ } }, { - "x": 94.01599999999999, + "x": 94.016, "y": 284.804 }, { @@ -11960,7 +11960,7 @@ "y": 0 }, { - "x": 81.05499999999999, + "x": 81.055, "y": 271.51 }, { @@ -11968,7 +11968,7 @@ "y": 0 }, { - "x": 81.05499999999999, + "x": 81.055, "y": 271.51 }, { @@ -12036,7 +12036,7 @@ "body": null, "index": 0, "isInternal": false, - "x": 94.01599999999999, + "x": 94.016, "y": 274.468 }, { @@ -12057,14 +12057,14 @@ "body": null, "index": 3, "isInternal": false, - "x": 81.05499999999999, + "x": 81.055, "y": 284.804 }, { "body": null, "index": 4, "isInternal": false, - "x": 75.28699999999999, + "x": 75.287, "y": 283.488 }, { @@ -12099,14 +12099,14 @@ "body": null, "index": 9, "isInternal": false, - "x": 75.28699999999999, + "x": 75.287, "y": 259.532 }, { "body": null, "index": 10, "isInternal": false, - "x": 81.05499999999999, + "x": 81.055, "y": 258.216 }, { @@ -12127,7 +12127,7 @@ "body": null, "index": 13, "isInternal": false, - "x": 94.01599999999999, + "x": 94.016, "y": 268.552 }, { @@ -12135,14 +12135,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 438.00552799999997, + "area": 438.00553, "axes": { "#": 1359 }, "bounds": { "#": 1367 }, - "circleRadius": 12.008959190672154, + "circleRadius": 12.00896, "collisionFilter": { "#": 1370 }, @@ -12157,13 +12157,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 37, - "inertia": 122.16296885484358, - "inverseInertia": 0.008185786653467954, - "inverseMass": 2.2830762081158027, + "inertia": 122.16297, + "inverseInertia": 0.00819, + "inverseMass": 2.28308, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.438005528, + "mass": 0.43801, "motion": 0, "parent": null, "position": { @@ -12218,28 +12218,28 @@ } ], { - "x": -0.9009529061315026, - "y": -0.43391688251691707 + "x": -0.90095, + "y": -0.43392 }, { - "x": -0.6235308204487997, - "y": -0.7817987694736074 + "x": -0.62353, + "y": -0.7818 }, { - "x": -0.22249452113027474, - "y": -0.9749339403605815 + "x": -0.22249, + "y": -0.97493 }, { - "x": 0.22249452113027474, - "y": -0.9749339403605815 + "x": 0.22249, + "y": -0.97493 }, { - "x": 0.6235308204487997, - "y": -0.7817987694736074 + "x": 0.62353, + "y": -0.7818 }, { - "x": 0.9009529061315026, - "y": -0.43391688251691707 + "x": 0.90095, + "y": -0.43392 }, { "x": 1, @@ -12255,10 +12255,10 @@ }, { "x": 137.432, - "y": 282.23400000000004 + "y": 282.234 }, { - "x": 114.01599999999999, + "x": 114.016, "y": 258.216 }, { @@ -12276,7 +12276,7 @@ "y": 0 }, { - "x": 125.72399999999999, + "x": 125.724, "y": 270.225 }, { @@ -12284,7 +12284,7 @@ "y": 0 }, { - "x": 125.72399999999999, + "x": 125.724, "y": 270.225 }, { @@ -12353,28 +12353,28 @@ "index": 0, "isInternal": false, "x": 137.432, - "y": 272.89700000000005 + "y": 272.897 }, { "body": null, "index": 1, "isInternal": false, "x": 135.113, - "y": 277.71200000000005 + "y": 277.712 }, { "body": null, "index": 2, "isInternal": false, - "x": 130.93399999999997, + "x": 130.934, "y": 281.045 }, { "body": null, "index": 3, "isInternal": false, - "x": 125.72399999999999, - "y": 282.23400000000004 + "x": 125.724, + "y": 282.234 }, { "body": null, @@ -12388,20 +12388,20 @@ "index": 5, "isInternal": false, "x": 116.335, - "y": 277.71200000000005 + "y": 277.712 }, { "body": null, "index": 6, "isInternal": false, - "x": 114.01599999999999, - "y": 272.89700000000005 + "x": 114.016, + "y": 272.897 }, { "body": null, "index": 7, "isInternal": false, - "x": 114.01599999999999, + "x": 114.016, "y": 267.553 }, { @@ -12409,35 +12409,35 @@ "index": 8, "isInternal": false, "x": 116.335, - "y": 262.73800000000006 + "y": 262.738 }, { "body": null, "index": 9, "isInternal": false, "x": 120.514, - "y": 259.40500000000003 + "y": 259.405 }, { "body": null, "index": 10, "isInternal": false, - "x": 125.72399999999999, + "x": 125.724, "y": 258.216 }, { "body": null, "index": 11, "isInternal": false, - "x": 130.93399999999997, - "y": 259.40500000000003 + "x": 130.934, + "y": 259.405 }, { "body": null, "index": 12, "isInternal": false, "x": 135.113, - "y": 262.73800000000006 + "y": 262.738 }, { "body": null, @@ -12451,14 +12451,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 802.396328, + "area": 802.39633, "axes": { "#": 1395 }, "bounds": { "#": 1405 }, - "circleRadius": 16.145361796982165, + "circleRadius": 16.14536, "collisionFilter": { "#": 1408 }, @@ -12473,13 +12473,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 38, - "inertia": 409.9154941824296, - "inverseInertia": 0.0024395272054658127, - "inverseMass": 1.2462669196063418, + "inertia": 409.91549, + "inverseInertia": 0.00244, + "inverseMass": 1.24627, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.802396328, + "mass": 0.8024, "motion": 0, "parent": null, "position": { @@ -12540,36 +12540,36 @@ } ], { - "x": -0.9396788158754413, - "y": -0.3420580696240458 + "x": -0.93968, + "y": -0.34206 }, { - "x": -0.7660385515515891, - "y": -0.6427946309177943 + "x": -0.76604, + "y": -0.64279 }, { - "x": -0.5000517732992366, - "y": -0.8659955103926862 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.17353097513080934, - "y": -0.9848284117906786 + "x": -0.17353, + "y": -0.98483 }, { - "x": 0.17353097513080934, - "y": -0.9848284117906786 + "x": 0.17353, + "y": -0.98483 }, { - "x": 0.5000517732992366, - "y": -0.8659955103926862 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7660385515515891, - "y": -0.6427946309177943 + "x": 0.76604, + "y": -0.64279 }, { - "x": 0.9396788158754413, - "y": -0.3420580696240458 + "x": 0.93968, + "y": -0.34206 }, { "x": 1, @@ -12695,14 +12695,14 @@ "index": 0, "isInternal": false, "x": 189.232, - "y": 277.16499999999996 + "y": 277.165 }, { "body": null, "index": 1, "isInternal": false, "x": 187.314, - "y": 282.43399999999997 + "y": 282.434 }, { "body": null, @@ -12715,7 +12715,7 @@ "body": null, "index": 3, "isInternal": false, - "x": 178.85399999999998, + "x": 178.854, "y": 289.533 }, { @@ -12736,7 +12736,7 @@ "body": null, "index": 6, "isInternal": false, - "x": 162.95399999999998, + "x": 162.954, "y": 286.729 }, { @@ -12744,14 +12744,14 @@ "index": 7, "isInternal": false, "x": 159.35, - "y": 282.43399999999997 + "y": 282.434 }, { "body": null, "index": 8, "isInternal": false, "x": 157.432, - "y": 277.16499999999996 + "y": 277.165 }, { "body": null, @@ -12771,7 +12771,7 @@ "body": null, "index": 11, "isInternal": false, - "x": 162.95399999999998, + "x": 162.954, "y": 261.993 }, { @@ -12779,7 +12779,7 @@ "index": 12, "isInternal": false, "x": 167.81, - "y": 259.18899999999996 + "y": 259.189 }, { "body": null, @@ -12792,8 +12792,8 @@ "body": null, "index": 14, "isInternal": false, - "x": 178.85399999999998, - "y": 259.18899999999996 + "x": 178.854, + "y": 259.189 }, { "body": null, @@ -12821,14 +12821,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1091.045108, + "area": 1091.04511, "axes": { "#": 1437 }, "bounds": { "#": 1448 }, - "circleRadius": 18.78999485596708, + "circleRadius": 18.78999, "collisionFilter": { "#": 1451 }, @@ -12843,13 +12843,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 39, - "inertia": 757.8605778590133, - "inverseInertia": 0.0013195039156477042, - "inverseMass": 0.9165523887762117, + "inertia": 757.86058, + "inverseInertia": 0.00132, + "inverseMass": 0.91655, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.091045108, + "mass": 1.09105, "motion": 0, "parent": null, "position": { @@ -12913,40 +12913,40 @@ } ], { - "x": -0.9510378187801216, - "y": -0.30907453348658226 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8091110339454614, - "y": -0.587655796149163 + "x": -0.80911, + "y": -0.58766 }, { - "x": -0.587655796149163, - "y": -0.8091110339454614 + "x": -0.58766, + "y": -0.80911 }, { - "x": -0.30907453348658226, - "y": -0.9510378187801216 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30907453348658226, - "y": -0.9510378187801216 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.587655796149163, - "y": -0.8091110339454614 + "x": 0.58766, + "y": -0.80911 }, { - "x": 0.8091110339454614, - "y": -0.587655796149163 + "x": 0.80911, + "y": -0.58766 }, { - "x": 0.9510378187801216, - "y": -0.30907453348658226 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -12962,7 +12962,7 @@ }, { "x": 246.35, - "y": 295.33400000000006 + "y": 295.334 }, { "x": 209.232, @@ -12984,7 +12984,7 @@ }, { "x": 227.791, - "y": 276.77500000000003 + "y": 276.775 }, { "x": 0, @@ -12992,7 +12992,7 @@ }, { "x": 227.791, - "y": 276.77500000000003 + "y": 276.775 }, { "fillStyle": "#FF6B6B", @@ -13078,7 +13078,7 @@ "index": 0, "isInternal": false, "x": 246.35, - "y": 279.71400000000006 + "y": 279.714 }, { "body": null, @@ -13099,28 +13099,28 @@ "index": 3, "isInternal": false, "x": 236.321, - "y": 293.51700000000005 + "y": 293.517 }, { "body": null, "index": 4, "isInternal": false, "x": 230.73, - "y": 295.33400000000006 + "y": 295.334 }, { "body": null, "index": 5, "isInternal": false, "x": 224.852, - "y": 295.33400000000006 + "y": 295.334 }, { "body": null, "index": 6, "isInternal": false, "x": 219.261, - "y": 293.51700000000005 + "y": 293.517 }, { "body": null, @@ -13141,7 +13141,7 @@ "index": 9, "isInternal": false, "x": 209.232, - "y": 279.71400000000006 + "y": 279.714 }, { "body": null, @@ -13162,7 +13162,7 @@ "index": 12, "isInternal": false, "x": 214.504, - "y": 263.48800000000006 + "y": 263.488 }, { "body": null, @@ -13197,7 +13197,7 @@ "index": 17, "isInternal": false, "x": 241.078, - "y": 263.48800000000006 + "y": 263.488 }, { "body": null, @@ -13218,14 +13218,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 677.950314, + "area": 677.95031, "axes": { "#": 1482 }, "bounds": { "#": 1491 }, - "circleRadius": 14.881129972565159, + "circleRadius": 14.88113, "collisionFilter": { "#": 1494 }, @@ -13240,13 +13240,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 40, - "inertia": 292.6404130867056, - "inverseInertia": 0.00341716302766328, - "inverseMass": 1.4750343489036277, + "inertia": 292.64041, + "inverseInertia": 0.00342, + "inverseMass": 1.47503, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.677950314, + "mass": 0.67795, "motion": 0, "parent": null, "position": { @@ -13304,32 +13304,32 @@ } ], { - "x": -0.9238951037390043, - "y": -0.3826458379325384 + "x": -0.9239, + "y": -0.38265 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3826458379325384, - "y": -0.9238951037390043 + "x": -0.38265, + "y": -0.9239 }, { "x": 0, "y": -1 }, { - "x": 0.3826458379325384, - "y": -0.9238951037390043 + "x": 0.38265, + "y": -0.9239 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238951037390043, - "y": -0.3826458379325384 + "x": 0.9239, + "y": -0.38265 }, { "x": 1, @@ -13344,8 +13344,8 @@ } }, { - "x": 295.5400000000001, - "y": 287.40600000000006 + "x": 295.54, + "y": 287.406 }, { "x": 266.35, @@ -13366,16 +13366,16 @@ "y": 0 }, { - "x": 280.94500000000005, - "y": 272.81100000000004 + "x": 280.945, + "y": 272.811 }, { "x": 0, "y": 0 }, { - "x": 280.94500000000005, - "y": 272.81100000000004 + "x": 280.945, + "y": 272.811 }, { "fillStyle": "#556270", @@ -13448,36 +13448,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 295.5400000000001, - "y": 275.71400000000006 + "x": 295.54, + "y": 275.714 }, { "body": null, "index": 1, "isInternal": false, - "x": 293.31800000000004, - "y": 281.07900000000006 + "x": 293.318, + "y": 281.079 }, { "body": null, "index": 2, "isInternal": false, - "x": 289.2130000000001, + "x": 289.213, "y": 285.184 }, { "body": null, "index": 3, "isInternal": false, - "x": 283.84800000000007, - "y": 287.40600000000006 + "x": 283.848, + "y": 287.406 }, { "body": null, "index": 4, "isInternal": false, - "x": 278.04200000000003, - "y": 287.40600000000006 + "x": 278.042, + "y": 287.406 }, { "body": null, @@ -13490,15 +13490,15 @@ "body": null, "index": 6, "isInternal": false, - "x": 268.57200000000006, - "y": 281.07900000000006 + "x": 268.572, + "y": 281.079 }, { "body": null, "index": 7, "isInternal": false, "x": 266.35, - "y": 275.71400000000006 + "y": 275.714 }, { "body": null, @@ -13511,7 +13511,7 @@ "body": null, "index": 9, "isInternal": false, - "x": 268.57200000000006, + "x": 268.572, "y": 264.543 }, { @@ -13519,41 +13519,41 @@ "index": 10, "isInternal": false, "x": 272.677, - "y": 260.43800000000005 + "y": 260.438 }, { "body": null, "index": 11, "isInternal": false, - "x": 278.04200000000003, + "x": 278.042, "y": 258.216 }, { "body": null, "index": 12, "isInternal": false, - "x": 283.84800000000007, + "x": 283.848, "y": 258.216 }, { "body": null, "index": 13, "isInternal": false, - "x": 289.2130000000001, - "y": 260.43800000000005 + "x": 289.213, + "y": 260.438 }, { "body": null, "index": 14, "isInternal": false, - "x": 293.31800000000004, + "x": 293.318, "y": 264.543 }, { "body": null, "index": 15, "isInternal": false, - "x": 295.5400000000001, + "x": 295.54, "y": 269.908 }, { @@ -13561,14 +13561,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 460.97596999999996, + "area": 460.97597, "axes": { "#": 1521 }, "bounds": { "#": 1529 }, - "circleRadius": 12.320001714677641, + "circleRadius": 12.32, "collisionFilter": { "#": 1532 }, @@ -13583,13 +13583,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 41, - "inertia": 135.31220425278414, - "inverseInertia": 0.007390316383671093, - "inverseMass": 2.1693104740362066, + "inertia": 135.3122, + "inverseInertia": 0.00739, + "inverseMass": 2.16931, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.46097596999999996, + "mass": 0.46098, "motion": 0, "parent": null, "position": { @@ -13644,28 +13644,28 @@ } ], { - "x": -0.9009673433676825, - "y": -0.4338869048323313 + "x": -0.90097, + "y": -0.43389 }, { - "x": -0.6235156169322131, - "y": -0.7818108949366475 + "x": -0.62352, + "y": -0.78181 }, { - "x": -0.22252763105305415, - "y": -0.9749263835889949 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.22252763105305415, - "y": -0.9749263835889949 + "x": 0.22253, + "y": -0.97493 }, { - "x": 0.6235156169322131, - "y": -0.7818108949366475 + "x": 0.62352, + "y": -0.78181 }, { - "x": 0.9009673433676825, - "y": -0.4338869048323313 + "x": 0.90097, + "y": -0.43389 }, { "x": 1, @@ -13680,11 +13680,11 @@ } }, { - "x": 339.5620000000001, + "x": 339.562, "y": 282.856 }, { - "x": 315.5400000000001, + "x": 315.54, "y": 258.216 }, { @@ -13702,7 +13702,7 @@ "y": 0 }, { - "x": 327.5510000000001, + "x": 327.551, "y": 270.536 }, { @@ -13710,7 +13710,7 @@ "y": 0 }, { - "x": 327.5510000000001, + "x": 327.551, "y": 270.536 }, { @@ -13778,113 +13778,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 339.5620000000001, + "x": 339.562, "y": 273.277 }, { "body": null, "index": 1, "isInternal": false, - "x": 337.1830000000001, + "x": 337.183, "y": 278.217 }, { "body": null, "index": 2, "isInternal": false, - "x": 332.89600000000013, + "x": 332.896, "y": 281.636 }, { "body": null, "index": 3, "isInternal": false, - "x": 327.5510000000001, + "x": 327.551, "y": 282.856 }, { "body": null, "index": 4, "isInternal": false, - "x": 322.2060000000001, + "x": 322.206, "y": 281.636 }, { "body": null, "index": 5, "isInternal": false, - "x": 317.9190000000001, + "x": 317.919, "y": 278.217 }, { "body": null, "index": 6, "isInternal": false, - "x": 315.5400000000001, + "x": 315.54, "y": 273.277 }, { "body": null, "index": 7, "isInternal": false, - "x": 315.5400000000001, - "y": 267.79499999999996 + "x": 315.54, + "y": 267.795 }, { "body": null, "index": 8, "isInternal": false, - "x": 317.9190000000001, + "x": 317.919, "y": 262.855 }, { "body": null, "index": 9, "isInternal": false, - "x": 322.2060000000001, - "y": 259.43600000000004 + "x": 322.206, + "y": 259.436 }, { "body": null, "index": 10, "isInternal": false, - "x": 327.5510000000001, + "x": 327.551, "y": 258.216 }, { "body": null, "index": 11, "isInternal": false, - "x": 332.89600000000013, - "y": 259.43600000000004 + "x": 332.896, + "y": 259.436 }, { "body": null, "index": 12, "isInternal": false, - "x": 337.1830000000001, + "x": 337.183, "y": 262.855 }, { "body": null, "index": 13, "isInternal": false, - "x": 339.5620000000001, - "y": 267.79499999999996 + "x": 339.562, + "y": 267.795 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1205.152204, + "area": 1205.1522, "axes": { "#": 1557 }, "bounds": { "#": 1568 }, - "circleRadius": 19.748585390946502, + "circleRadius": 19.74859, "collisionFilter": { "#": 1571 }, @@ -13899,13 +13899,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 42, - "inertia": 924.671990568659, - "inverseInertia": 0.0010814645735997858, - "inverseMass": 0.8297707100239432, + "inertia": 924.67199, + "inverseInertia": 0.00108, + "inverseMass": 0.82977, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.205152204, + "mass": 1.20515, "motion": 0, "parent": null, "position": { @@ -13969,40 +13969,40 @@ } ], { - "x": -0.9510828167087596, - "y": -0.30893603830134786 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8089600004028265, - "y": -0.5878636897685203 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878636897685203, - "y": -0.8089600004028265 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.30893603830134786, - "y": -0.9510828167087596 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.30893603830134786, - "y": -0.9510828167087596 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5878636897685203, - "y": -0.8089600004028265 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089600004028265, - "y": -0.5878636897685203 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510828167087596, - "y": -0.30893603830134786 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -14017,11 +14017,11 @@ } }, { - "x": 398.5720000000001, + "x": 398.572, "y": 297.226 }, { - "x": 359.5620000000001, + "x": 359.562, "y": 258.216 }, { @@ -14039,7 +14039,7 @@ "y": 0 }, { - "x": 379.0670000000001, + "x": 379.067, "y": 277.721 }, { @@ -14047,7 +14047,7 @@ "y": 0 }, { - "x": 379.0670000000001, + "x": 379.067, "y": 277.721 }, { @@ -14133,140 +14133,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 398.5720000000001, + "x": 398.572, "y": 280.81 }, { "body": null, "index": 1, "isInternal": false, - "x": 396.6630000000001, + "x": 396.663, "y": 286.687 }, { "body": null, "index": 2, "isInternal": false, - "x": 393.0310000000001, + "x": 393.031, "y": 291.685 }, { "body": null, "index": 3, "isInternal": false, - "x": 388.03300000000013, + "x": 388.033, "y": 295.317 }, { "body": null, "index": 4, "isInternal": false, - "x": 382.1560000000001, + "x": 382.156, "y": 297.226 }, { "body": null, "index": 5, "isInternal": false, - "x": 375.9780000000001, + "x": 375.978, "y": 297.226 }, { "body": null, "index": 6, "isInternal": false, - "x": 370.1010000000001, + "x": 370.101, "y": 295.317 }, { "body": null, "index": 7, "isInternal": false, - "x": 365.1030000000001, + "x": 365.103, "y": 291.685 }, { "body": null, "index": 8, "isInternal": false, - "x": 361.4710000000001, + "x": 361.471, "y": 286.687 }, { "body": null, "index": 9, "isInternal": false, - "x": 359.5620000000001, + "x": 359.562, "y": 280.81 }, { "body": null, "index": 10, "isInternal": false, - "x": 359.5620000000001, + "x": 359.562, "y": 274.632 }, { "body": null, "index": 11, "isInternal": false, - "x": 361.4710000000001, + "x": 361.471, "y": 268.755 }, { "body": null, "index": 12, "isInternal": false, - "x": 365.1030000000001, + "x": 365.103, "y": 263.757 }, { "body": null, "index": 13, "isInternal": false, - "x": 370.1010000000001, + "x": 370.101, "y": 260.125 }, { "body": null, "index": 14, "isInternal": false, - "x": 375.9780000000001, + "x": 375.978, "y": 258.216 }, { "body": null, "index": 15, "isInternal": false, - "x": 382.1560000000001, + "x": 382.156, "y": 258.216 }, { "body": null, "index": 16, "isInternal": false, - "x": 388.03300000000013, + "x": 388.033, "y": 260.125 }, { "body": null, "index": 17, "isInternal": false, - "x": 393.0310000000001, + "x": 393.031, "y": 263.757 }, { "body": null, "index": 18, "isInternal": false, - "x": 396.6630000000001, + "x": 396.663, "y": 268.755 }, { "body": null, "index": 19, "isInternal": false, - "x": 398.5720000000001, + "x": 398.572, "y": 274.632 }, { @@ -14274,14 +14274,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 362.584524, + "area": 362.58452, "axes": { "#": 1602 }, "bounds": { "#": 1609 }, - "circleRadius": 10.994041495198903, + "circleRadius": 10.99404, "collisionFilter": { "#": 1612 }, @@ -14296,13 +14296,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 43, - "inertia": 83.73095584960791, - "inverseInertia": 0.011943014263400204, - "inverseMass": 2.7579776129661835, + "inertia": 83.73096, + "inverseInertia": 0.01194, + "inverseMass": 2.75798, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.362584524, + "mass": 0.36258, "motion": 0, "parent": null, "position": { @@ -14354,24 +14354,24 @@ } ], { - "x": -0.8660831831124717, - "y": -0.4998999099117431 + "x": -0.86608, + "y": -0.4999 }, { - "x": -0.4998999099117431, - "y": -0.8660831831124717 + "x": -0.4999, + "y": -0.86608 }, { "x": 0, "y": -1 }, { - "x": 0.4998999099117431, - "y": -0.8660831831124717 + "x": 0.4999, + "y": -0.86608 }, { - "x": 0.8660831831124717, - "y": -0.4998999099117431 + "x": 0.86608, + "y": -0.4999 }, { "x": 1, @@ -14386,11 +14386,11 @@ } }, { - "x": 439.8100000000002, - "y": 279.45400000000006 + "x": 439.81, + "y": 279.454 }, { - "x": 418.5720000000001, + "x": 418.572, "y": 258.216 }, { @@ -14408,16 +14408,16 @@ "y": 0 }, { - "x": 429.19100000000014, - "y": 268.83500000000004 + "x": 429.191, + "y": 268.835 }, { "x": 0, "y": 0 }, { - "x": 429.19100000000014, - "y": 268.83500000000004 + "x": 429.191, + "y": 268.835 }, { "fillStyle": "#FF6B6B", @@ -14478,84 +14478,84 @@ "body": null, "index": 0, "isInternal": false, - "x": 439.8100000000002, - "y": 271.68000000000006 + "x": 439.81, + "y": 271.68 }, { "body": null, "index": 1, "isInternal": false, - "x": 436.96500000000015, - "y": 276.60900000000004 + "x": 436.965, + "y": 276.609 }, { "body": null, "index": 2, "isInternal": false, - "x": 432.0360000000002, - "y": 279.45400000000006 + "x": 432.036, + "y": 279.454 }, { "body": null, "index": 3, "isInternal": false, - "x": 426.3460000000001, - "y": 279.45400000000006 + "x": 426.346, + "y": 279.454 }, { "body": null, "index": 4, "isInternal": false, - "x": 421.41700000000014, - "y": 276.60900000000004 + "x": 421.417, + "y": 276.609 }, { "body": null, "index": 5, "isInternal": false, - "x": 418.5720000000001, - "y": 271.68000000000006 + "x": 418.572, + "y": 271.68 }, { "body": null, "index": 6, "isInternal": false, - "x": 418.5720000000001, + "x": 418.572, "y": 265.99 }, { "body": null, "index": 7, "isInternal": false, - "x": 421.41700000000014, - "y": 261.06100000000004 + "x": 421.417, + "y": 261.061 }, { "body": null, "index": 8, "isInternal": false, - "x": 426.3460000000001, + "x": 426.346, "y": 258.216 }, { "body": null, "index": 9, "isInternal": false, - "x": 432.0360000000002, + "x": 432.036, "y": 258.216 }, { "body": null, "index": 10, "isInternal": false, - "x": 436.96500000000015, - "y": 261.06100000000004 + "x": 436.965, + "y": 261.061 }, { "body": null, "index": 11, "isInternal": false, - "x": 439.8100000000002, + "x": 439.81, "y": 265.99 }, { @@ -14563,14 +14563,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 805.817864, + "area": 805.81786, "axes": { "#": 1635 }, "bounds": { "#": 1645 }, - "circleRadius": 16.1798268175583, + "circleRadius": 16.17983, "collisionFilter": { "#": 1648 }, @@ -14585,13 +14585,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 44, - "inertia": 413.41882770208514, - "inverseInertia": 0.002418854519902545, - "inverseMass": 1.2409752186878795, + "inertia": 413.41883, + "inverseInertia": 0.00242, + "inverseMass": 1.24098, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.805817864, + "mass": 0.80582, "motion": 0, "parent": null, "position": { @@ -14652,36 +14652,36 @@ } ], { - "x": -0.9396790547219881, - "y": -0.34205741348023866 + "x": -0.93968, + "y": -0.34206 }, { - "x": -0.7659992927826746, - "y": -0.6428414139244937 + "x": -0.766, + "y": -0.64284 }, { - "x": -0.5000818959792287, - "y": -0.8659781159554899 + "x": -0.50008, + "y": -0.86598 }, { - "x": -0.17368381518741813, - "y": -0.9848014684909557 + "x": -0.17368, + "y": -0.9848 }, { - "x": 0.17368381518741813, - "y": -0.9848014684909557 + "x": 0.17368, + "y": -0.9848 }, { - "x": 0.5000818959792287, - "y": -0.8659781159554899 + "x": 0.50008, + "y": -0.86598 }, { - "x": 0.7659992927826746, - "y": -0.6428414139244937 + "x": 0.766, + "y": -0.64284 }, { - "x": 0.9396790547219881, - "y": -0.34205741348023866 + "x": 0.93968, + "y": -0.34206 }, { "x": 1, @@ -14696,11 +14696,11 @@ } }, { - "x": 491.6780000000002, + "x": 491.678, "y": 290.576 }, { - "x": 459.8100000000002, + "x": 459.81, "y": 258.216 }, { @@ -14718,7 +14718,7 @@ "y": 0 }, { - "x": 475.7440000000002, + "x": 475.744, "y": 274.396 }, { @@ -14726,7 +14726,7 @@ "y": 0 }, { - "x": 475.7440000000002, + "x": 475.744, "y": 274.396 }, { @@ -14806,126 +14806,126 @@ "body": null, "index": 0, "isInternal": false, - "x": 491.6780000000002, + "x": 491.678, "y": 277.206 }, { "body": null, "index": 1, "isInternal": false, - "x": 489.7560000000002, + "x": 489.756, "y": 282.486 }, { "body": null, "index": 2, "isInternal": false, - "x": 486.1440000000002, + "x": 486.144, "y": 286.79 }, { "body": null, "index": 3, "isInternal": false, - "x": 481.2780000000002, + "x": 481.278, "y": 289.6 }, { "body": null, "index": 4, "isInternal": false, - "x": 475.7440000000002, + "x": 475.744, "y": 290.576 }, { "body": null, "index": 5, "isInternal": false, - "x": 470.2100000000002, + "x": 470.21, "y": 289.6 }, { "body": null, "index": 6, "isInternal": false, - "x": 465.3440000000002, + "x": 465.344, "y": 286.79 }, { "body": null, "index": 7, "isInternal": false, - "x": 461.7320000000002, + "x": 461.732, "y": 282.486 }, { "body": null, "index": 8, "isInternal": false, - "x": 459.8100000000002, + "x": 459.81, "y": 277.206 }, { "body": null, "index": 9, "isInternal": false, - "x": 459.8100000000002, + "x": 459.81, "y": 271.586 }, { "body": null, "index": 10, "isInternal": false, - "x": 461.7320000000002, - "y": 266.30600000000004 + "x": 461.732, + "y": 266.306 }, { "body": null, "index": 11, "isInternal": false, - "x": 465.3440000000002, + "x": 465.344, "y": 262.002 }, { "body": null, "index": 12, "isInternal": false, - "x": 470.2100000000002, + "x": 470.21, "y": 259.192 }, { "body": null, "index": 13, "isInternal": false, - "x": 475.7440000000002, + "x": 475.744, "y": 258.216 }, { "body": null, "index": 14, "isInternal": false, - "x": 481.2780000000002, + "x": 481.278, "y": 259.192 }, { "body": null, "index": 15, "isInternal": false, - "x": 486.1440000000002, + "x": 486.144, "y": 262.002 }, { "body": null, "index": 16, "isInternal": false, - "x": 489.7560000000002, - "y": 266.30600000000004 + "x": 489.756, + "y": 266.306 }, { "body": null, "index": 17, "isInternal": false, - "x": 491.6780000000002, + "x": 491.678, "y": 271.586 }, { @@ -14933,14 +14933,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1175.440884, + "area": 1175.44088, "axes": { "#": 1677 }, "bounds": { "#": 1688 }, - "circleRadius": 19.50347222222222, + "circleRadius": 19.50347, "collisionFilter": { "#": 1691 }, @@ -14955,13 +14955,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 45, - "inertia": 879.6410498592595, - "inverseInertia": 0.00113682734583612, - "inverseMass": 0.8507446130315133, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "inverseMass": 0.85074, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1754408840000001, + "mass": 1.17544, "motion": 0, "parent": null, "position": { @@ -15025,40 +15025,40 @@ } ], { - "x": -0.9510810304000095, - "y": -0.3089415375330036 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8090123548449776, - "y": -0.5877916380046453 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877916380046453, - "y": -0.8090123548449776 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.3089415375330036, - "y": -0.9510810304000095 + "x": -0.30894, + "y": -0.95108 }, { "x": 0, "y": -1 }, { - "x": 0.3089415375330036, - "y": -0.9510810304000095 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5877916380046453, - "y": -0.8090123548449776 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090123548449776, - "y": -0.5877916380046453 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510810304000095, - "y": -0.3089415375330036 + "x": 0.95108, + "y": -0.30894 }, { "x": 1, @@ -15073,11 +15073,11 @@ } }, { - "x": 550.2040000000003, - "y": 296.74199999999996 + "x": 550.204, + "y": 296.742 }, { - "x": 511.6780000000003, + "x": 511.678, "y": 258.216 }, { @@ -15095,7 +15095,7 @@ "y": 0 }, { - "x": 530.9410000000003, + "x": 530.941, "y": 277.479 }, { @@ -15103,7 +15103,7 @@ "y": 0 }, { - "x": 530.9410000000003, + "x": 530.941, "y": 277.479 }, { @@ -15189,140 +15189,140 @@ "body": null, "index": 0, "isInternal": false, - "x": 550.2040000000003, + "x": 550.204, "y": 280.53 }, { "body": null, "index": 1, "isInternal": false, - "x": 548.3190000000003, - "y": 286.33299999999997 + "x": 548.319, + "y": 286.333 }, { "body": null, "index": 2, "isInternal": false, - "x": 544.7320000000003, + "x": 544.732, "y": 291.27 }, { "body": null, "index": 3, "isInternal": false, - "x": 539.7950000000003, - "y": 294.85699999999997 + "x": 539.795, + "y": 294.857 }, { "body": null, "index": 4, "isInternal": false, - "x": 533.9920000000003, - "y": 296.74199999999996 + "x": 533.992, + "y": 296.742 }, { "body": null, "index": 5, "isInternal": false, - "x": 527.8900000000003, - "y": 296.74199999999996 + "x": 527.89, + "y": 296.742 }, { "body": null, "index": 6, "isInternal": false, - "x": 522.0870000000002, - "y": 294.85699999999997 + "x": 522.087, + "y": 294.857 }, { "body": null, "index": 7, "isInternal": false, - "x": 517.1500000000003, + "x": 517.15, "y": 291.27 }, { "body": null, "index": 8, "isInternal": false, - "x": 513.5630000000003, - "y": 286.33299999999997 + "x": 513.563, + "y": 286.333 }, { "body": null, "index": 9, "isInternal": false, - "x": 511.6780000000003, + "x": 511.678, "y": 280.53 }, { "body": null, "index": 10, "isInternal": false, - "x": 511.6780000000003, + "x": 511.678, "y": 274.428 }, { "body": null, "index": 11, "isInternal": false, - "x": 513.5630000000003, + "x": 513.563, "y": 268.625 }, { "body": null, "index": 12, "isInternal": false, - "x": 517.1500000000003, + "x": 517.15, "y": 263.688 }, { "body": null, "index": 13, "isInternal": false, - "x": 522.0870000000002, + "x": 522.087, "y": 260.101 }, { "body": null, "index": 14, "isInternal": false, - "x": 527.8900000000003, + "x": 527.89, "y": 258.216 }, { "body": null, "index": 15, "isInternal": false, - "x": 533.9920000000003, + "x": 533.992, "y": 258.216 }, { "body": null, "index": 16, "isInternal": false, - "x": 539.7950000000003, + "x": 539.795, "y": 260.101 }, { "body": null, "index": 17, "isInternal": false, - "x": 544.7320000000003, + "x": 544.732, "y": 263.688 }, { "body": null, "index": 18, "isInternal": false, - "x": 548.3190000000003, + "x": 548.319, "y": 268.625 }, { "body": null, "index": 19, "isInternal": false, - "x": 550.2040000000003, + "x": 550.204, "y": 274.428 }, { @@ -15337,7 +15337,7 @@ "bounds": { "#": 1730 }, - "circleRadius": 13.68102709190672, + "circleRadius": 13.68103, "collisionFilter": { "#": 1733 }, @@ -15352,13 +15352,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 46, - "inertia": 205.77002535077511, - "inverseInertia": 0.004859794317929956, - "inverseMass": 1.7591348884226479, + "inertia": 205.77003, + "inverseInertia": 0.00486, + "inverseMass": 1.75913, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.56846124, + "mass": 0.56846, "motion": 0, "parent": null, "position": { @@ -15413,28 +15413,28 @@ } ], { - "x": -0.9009636264752368, - "y": -0.43389462288508485 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6234924793998962, - "y": -0.7818293471927041 + "x": -0.62349, + "y": -0.78183 }, { - "x": -0.22254384035750657, - "y": -0.974922683662111 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.22254384035750657, - "y": -0.974922683662111 + "x": 0.22254, + "y": -0.97492 }, { - "x": 0.6234924793998962, - "y": -0.7818293471927041 + "x": 0.62349, + "y": -0.78183 }, { - "x": 0.9009636264752368, - "y": -0.43389462288508485 + "x": 0.90096, + "y": -0.43389 }, { "x": 1, @@ -15449,11 +15449,11 @@ } }, { - "x": 596.8800000000002, + "x": 596.88, "y": 285.578 }, { - "x": 570.2040000000003, + "x": 570.204, "y": 258.216 }, { @@ -15471,7 +15471,7 @@ "y": 0 }, { - "x": 583.5420000000003, + "x": 583.542, "y": 271.897 }, { @@ -15479,7 +15479,7 @@ "y": 0 }, { - "x": 583.5420000000003, + "x": 583.542, "y": 271.897 }, { @@ -15547,113 +15547,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 596.8800000000002, + "x": 596.88, "y": 274.941 }, { "body": null, "index": 1, "isInternal": false, - "x": 594.2380000000003, - "y": 280.42699999999996 + "x": 594.238, + "y": 280.427 }, { "body": null, "index": 2, "isInternal": false, - "x": 589.4780000000003, + "x": 589.478, "y": 284.223 }, { "body": null, "index": 3, "isInternal": false, - "x": 583.5420000000003, + "x": 583.542, "y": 285.578 }, { "body": null, "index": 4, "isInternal": false, - "x": 577.6060000000002, + "x": 577.606, "y": 284.223 }, { "body": null, "index": 5, "isInternal": false, - "x": 572.8460000000002, - "y": 280.42699999999996 + "x": 572.846, + "y": 280.427 }, { "body": null, "index": 6, "isInternal": false, - "x": 570.2040000000003, + "x": 570.204, "y": 274.941 }, { "body": null, "index": 7, "isInternal": false, - "x": 570.2040000000003, - "y": 268.85299999999995 + "x": 570.204, + "y": 268.853 }, { "body": null, "index": 8, "isInternal": false, - "x": 572.8460000000002, - "y": 263.36699999999996 + "x": 572.846, + "y": 263.367 }, { "body": null, "index": 9, "isInternal": false, - "x": 577.6060000000002, + "x": 577.606, "y": 259.571 }, { "body": null, "index": 10, "isInternal": false, - "x": 583.5420000000003, + "x": 583.542, "y": 258.216 }, { "body": null, "index": 11, "isInternal": false, - "x": 589.4780000000003, + "x": 589.478, "y": 259.571 }, { "body": null, "index": 12, "isInternal": false, - "x": 594.2380000000003, - "y": 263.36699999999996 + "x": 594.238, + "y": 263.367 }, { "body": null, "index": 13, "isInternal": false, - "x": 596.8800000000002, - "y": 268.85299999999995 + "x": 596.88, + "y": 268.853 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 366.82313200000004, + "area": 366.82313, "axes": { "#": 1758 }, "bounds": { "#": 1765 }, - "circleRadius": 11.058170438957475, + "circleRadius": 11.05817, "collisionFilter": { "#": 1768 }, @@ -15668,13 +15668,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 47, - "inertia": 85.70002548110048, - "inverseInertia": 0.011668607965822963, - "inverseMass": 2.726109431942803, + "inertia": 85.70003, + "inverseInertia": 0.01167, + "inverseMass": 2.72611, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.36682313200000005, + "mass": 0.36682, "motion": 0, "parent": null, "position": { @@ -15726,24 +15726,24 @@ } ], { - "x": -0.8660197514843452, - "y": -0.5000097899431502 + "x": -0.86602, + "y": -0.50001 }, { - "x": -0.5000097899431502, - "y": -0.8660197514843452 + "x": -0.50001, + "y": -0.86602 }, { "x": 0, "y": -1 }, { - "x": 0.5000097899431502, - "y": -0.8660197514843452 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.8660197514843452, - "y": -0.5000097899431502 + "x": 0.86602, + "y": -0.50001 }, { "x": 1, @@ -15758,11 +15758,11 @@ } }, { - "x": 638.2420000000003, + "x": 638.242, "y": 279.578 }, { - "x": 616.8800000000002, + "x": 616.88, "y": 258.216 }, { @@ -15780,7 +15780,7 @@ "y": 0 }, { - "x": 627.5610000000003, + "x": 627.561, "y": 268.897 }, { @@ -15788,7 +15788,7 @@ "y": 0 }, { - "x": 627.5610000000003, + "x": 627.561, "y": 268.897 }, { @@ -15850,99 +15850,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.2420000000003, + "x": 638.242, "y": 271.759 }, { "body": null, "index": 1, "isInternal": false, - "x": 635.3800000000002, + "x": 635.38, "y": 276.716 }, { "body": null, "index": 2, "isInternal": false, - "x": 630.4230000000002, + "x": 630.423, "y": 279.578 }, { "body": null, "index": 3, "isInternal": false, - "x": 624.6990000000003, + "x": 624.699, "y": 279.578 }, { "body": null, "index": 4, "isInternal": false, - "x": 619.7420000000003, + "x": 619.742, "y": 276.716 }, { "body": null, "index": 5, "isInternal": false, - "x": 616.8800000000002, + "x": 616.88, "y": 271.759 }, { "body": null, "index": 6, "isInternal": false, - "x": 616.8800000000002, - "y": 266.03499999999997 + "x": 616.88, + "y": 266.035 }, { "body": null, "index": 7, "isInternal": false, - "x": 619.7420000000003, + "x": 619.742, "y": 261.078 }, { "body": null, "index": 8, "isInternal": false, - "x": 624.6990000000003, + "x": 624.699, "y": 258.216 }, { "body": null, "index": 9, "isInternal": false, - "x": 630.4230000000002, + "x": 630.423, "y": 258.216 }, { "body": null, "index": 10, "isInternal": false, - "x": 635.3800000000002, + "x": 635.38, "y": 261.078 }, { "body": null, "index": 11, "isInternal": false, - "x": 638.2420000000003, - "y": 266.03499999999997 + "x": 638.242, + "y": 266.035 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 389.07123600000006, + "area": 389.07124, "axes": { "#": 1791 }, "bounds": { "#": 1798 }, - "circleRadius": 11.387988683127572, + "circleRadius": 11.38799, "collisionFilter": { "#": 1801 }, @@ -15957,13 +15957,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 48, - "inertia": 96.41081889936525, - "inverseInertia": 0.010372279910243391, - "inverseMass": 2.5702234127634145, + "inertia": 96.41082, + "inverseInertia": 0.01037, + "inverseMass": 2.57022, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.38907123600000004, + "mass": 0.38907, "motion": 0, "parent": null, "position": { @@ -16015,24 +16015,24 @@ } ], { - "x": -0.8660952066747344, - "y": -0.4998790783530045 + "x": -0.8661, + "y": -0.49988 }, { - "x": -0.4998790783530045, - "y": -0.8660952066747344 + "x": -0.49988, + "y": -0.8661 }, { "x": 0, "y": -1 }, { - "x": 0.4998790783530045, - "y": -0.8660952066747344 + "x": 0.49988, + "y": -0.8661 }, { - "x": 0.8660952066747344, - "y": -0.4998790783530045 + "x": 0.8661, + "y": -0.49988 }, { "x": 1, @@ -16047,11 +16047,11 @@ } }, { - "x": 680.2420000000003, + "x": 680.242, "y": 280.216 }, { - "x": 658.2420000000003, + "x": 658.242, "y": 258.216 }, { @@ -16069,7 +16069,7 @@ "y": 0 }, { - "x": 669.2420000000003, + "x": 669.242, "y": 269.216 }, { @@ -16077,7 +16077,7 @@ "y": 0 }, { - "x": 669.2420000000003, + "x": 669.242, "y": 269.216 }, { @@ -16139,84 +16139,84 @@ "body": null, "index": 0, "isInternal": false, - "x": 680.2420000000003, + "x": 680.242, "y": 272.163 }, { "body": null, "index": 1, "isInternal": false, - "x": 677.2950000000003, + "x": 677.295, "y": 277.269 }, { "body": null, "index": 2, "isInternal": false, - "x": 672.1890000000003, + "x": 672.189, "y": 280.216 }, { "body": null, "index": 3, "isInternal": false, - "x": 666.2950000000003, + "x": 666.295, "y": 280.216 }, { "body": null, "index": 4, "isInternal": false, - "x": 661.1890000000003, + "x": 661.189, "y": 277.269 }, { "body": null, "index": 5, "isInternal": false, - "x": 658.2420000000003, + "x": 658.242, "y": 272.163 }, { "body": null, "index": 6, "isInternal": false, - "x": 658.2420000000003, + "x": 658.242, "y": 266.269 }, { "body": null, "index": 7, "isInternal": false, - "x": 661.1890000000003, + "x": 661.189, "y": 261.163 }, { "body": null, "index": 8, "isInternal": false, - "x": 666.2950000000003, + "x": 666.295, "y": 258.216 }, { "body": null, "index": 9, "isInternal": false, - "x": 672.1890000000003, + "x": 672.189, "y": 258.216 }, { "body": null, "index": 10, "isInternal": false, - "x": 677.2950000000003, + "x": 677.295, "y": 261.163 }, { "body": null, "index": 11, "isInternal": false, - "x": 680.2420000000003, + "x": 680.242, "y": 266.269 }, { @@ -16224,14 +16224,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 815.3892460000001, + "area": 815.38925, "axes": { "#": 1824 }, "bounds": { "#": 1834 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1837 }, @@ -16246,13 +16246,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 49, - "inertia": 423.2982063032686, - "inverseInertia": 0.0023624007498948816, - "inverseMass": 1.2264081294984357, + "inertia": 423.29821, + "inverseInertia": 0.00236, + "inverseMass": 1.22641, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8153892460000001, + "mass": 0.81539, "motion": 0, "parent": null, "position": { @@ -16313,36 +16313,36 @@ } ], { - "x": -0.9397159229781226, - "y": -0.3419561142915492 + "x": -0.93972, + "y": -0.34196 }, { - "x": -0.7660706997750172, - "y": -0.6427563169243967 + "x": -0.76607, + "y": -0.64276 }, { - "x": -0.4999828073287557, - "y": -0.8660353297502684 + "x": -0.49998, + "y": -0.86604 }, { - "x": -0.17354312409985562, - "y": -0.9848262710131479 + "x": -0.17354, + "y": -0.98483 }, { - "x": 0.17354312409985562, - "y": -0.9848262710131479 + "x": 0.17354, + "y": -0.98483 }, { - "x": 0.4999828073287557, - "y": -0.8660353297502684 + "x": 0.49998, + "y": -0.86604 }, { - "x": 0.7660706997750172, - "y": -0.6427563169243967 + "x": 0.76607, + "y": -0.64276 }, { - "x": 0.9397159229781226, - "y": -0.3419561142915492 + "x": 0.93972, + "y": -0.34196 }, { "x": 1, @@ -16357,11 +16357,11 @@ } }, { - "x": 732.2980000000003, - "y": 290.76599999999996 + "x": 732.298, + "y": 290.766 }, { - "x": 700.2420000000003, + "x": 700.242, "y": 258.216 }, { @@ -16379,7 +16379,7 @@ "y": 0 }, { - "x": 716.2700000000003, + "x": 716.27, "y": 274.491 }, { @@ -16387,7 +16387,7 @@ "y": 0 }, { - "x": 716.2700000000003, + "x": 716.27, "y": 274.491 }, { @@ -16467,127 +16467,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 732.2980000000003, + "x": 732.298, "y": 277.317 }, { "body": null, "index": 1, "isInternal": false, - "x": 730.3650000000004, - "y": 282.62899999999996 + "x": 730.365, + "y": 282.629 }, { "body": null, "index": 2, "isInternal": false, - "x": 726.7320000000003, + "x": 726.732, "y": 286.959 }, { "body": null, "index": 3, "isInternal": false, - "x": 721.8370000000003, - "y": 289.78499999999997 + "x": 721.837, + "y": 289.785 }, { "body": null, "index": 4, "isInternal": false, - "x": 716.2700000000003, - "y": 290.76599999999996 + "x": 716.27, + "y": 290.766 }, { "body": null, "index": 5, "isInternal": false, - "x": 710.7030000000003, - "y": 289.78499999999997 + "x": 710.703, + "y": 289.785 }, { "body": null, "index": 6, "isInternal": false, - "x": 705.8080000000003, + "x": 705.808, "y": 286.959 }, { "body": null, "index": 7, "isInternal": false, - "x": 702.1750000000003, - "y": 282.62899999999996 + "x": 702.175, + "y": 282.629 }, { "body": null, "index": 8, "isInternal": false, - "x": 700.2420000000003, + "x": 700.242, "y": 277.317 }, { "body": null, "index": 9, "isInternal": false, - "x": 700.2420000000003, - "y": 271.66499999999996 + "x": 700.242, + "y": 271.665 }, { "body": null, "index": 10, "isInternal": false, - "x": 702.1750000000003, - "y": 266.35299999999995 + "x": 702.175, + "y": 266.353 }, { "body": null, "index": 11, "isInternal": false, - "x": 705.8080000000003, + "x": 705.808, "y": 262.023 }, { "body": null, "index": 12, "isInternal": false, - "x": 710.7030000000003, + "x": 710.703, "y": 259.197 }, { "body": null, "index": 13, "isInternal": false, - "x": 716.2700000000003, + "x": 716.27, "y": 258.216 }, { "body": null, "index": 14, "isInternal": false, - "x": 721.8370000000003, + "x": 721.837, "y": 259.197 }, { "body": null, "index": 15, "isInternal": false, - "x": 726.7320000000003, + "x": 726.732, "y": 262.023 }, { "body": null, "index": 16, "isInternal": false, - "x": 730.3650000000004, - "y": 266.35299999999995 + "x": 730.365, + "y": 266.353 }, { "body": null, "index": 17, "isInternal": false, - "x": 732.2980000000003, - "y": 271.66499999999996 + "x": 732.298, + "y": 271.665 }, [], [], @@ -16686,14 +16686,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1021.4491370845084, + "area": 1021.44914, "axes": { "#": 1870 }, "bounds": { "#": 1873 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1876 }, @@ -16708,13 +16708,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 51, - "inertia": 893.3311389211119, - "inverseInertia": 0.0011194057348182373, - "inverseMass": 0.9790012676052279, + "inertia": 893.33114, + "inverseInertia": 0.00112, + "inverseMass": 0.979, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0214491370845085, + "mass": 1.02145, "motion": 0, "parent": null, "position": { @@ -16770,11 +16770,11 @@ } }, { - "x": 96.20640432098764, - "y": 72.1062242798354 + "x": 96.2064, + "y": 72.10622 }, { - "x": 49.99999999999999, + "x": 50, "y": 50 }, { @@ -16792,16 +16792,16 @@ "y": 0 }, { - "x": 73.10320216049382, - "y": 61.0531121399177 + "x": 73.1032, + "y": 61.05311 }, { "x": 0, "y": 0 }, { - "x": 73.10320216049382, - "y": 61.0531121399177 + "x": 73.1032, + "y": 61.05311 }, { "fillStyle": "#4ECDC4", @@ -16838,43 +16838,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 49.99999999999999, + "x": 50, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 96.20640432098764, + "x": 96.2064, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 96.20640432098764, - "y": 72.1062242798354 + "x": 96.2064, + "y": 72.10622 }, { "body": null, "index": 3, "isInternal": false, - "x": 49.99999999999999, - "y": 72.1062242798354 + "x": 50, + "y": 72.10622 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1125.0402892684995, + "area": 1125.04029, "axes": { "#": 1891 }, "bounds": { "#": 1894 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1897 }, @@ -16889,13 +16889,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 52, - "inertia": 845.5561081099531, - "inverseInertia": 0.0011826536292609496, - "inverseMass": 0.8888570565327927, + "inertia": 845.55611, + "inverseInertia": 0.00118, + "inverseMass": 0.88886, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1250402892684994, + "mass": 1.12504, "motion": 0, "parent": null, "position": { @@ -16951,12 +16951,12 @@ } }, { - "x": 128.68659979423867, - "y": 84.63773148148147 + "x": 128.6866, + "y": 84.63773 }, { - "x": 96.20640432098764, - "y": 49.99999999999999 + "x": 96.2064, + "y": 50 }, { "category": 1, @@ -16973,16 +16973,16 @@ "y": 0 }, { - "x": 112.44650205761316, - "y": 67.31886574074073 + "x": 112.4465, + "y": 67.31887 }, { "x": 0, "y": 0 }, { - "x": 112.44650205761316, - "y": 67.31886574074073 + "x": 112.4465, + "y": 67.31887 }, { "fillStyle": "#4ECDC4", @@ -17019,43 +17019,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 96.20640432098764, - "y": 49.99999999999999 + "x": 96.2064, + "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 128.68659979423867, - "y": 49.99999999999999 + "x": 128.6866, + "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 128.68659979423867, - "y": 84.63773148148147 + "x": 128.6866, + "y": 84.63773 }, { "body": null, "index": 3, "isInternal": false, - "x": 96.20640432098764, - "y": 84.63773148148147 + "x": 96.2064, + "y": 84.63773 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 1912 }, "bounds": { "#": 1915 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1918 }, @@ -17070,13 +17070,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 53, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -17132,11 +17132,11 @@ } }, { - "x": 164.09953703703704, - "y": 92.06893004115227 + "x": 164.09954, + "y": 92.06893 }, { - "x": 128.68659979423867, + "x": 128.6866, "y": 50 }, { @@ -17154,16 +17154,16 @@ "y": 0 }, { - "x": 146.39306841563786, - "y": 71.03446502057614 + "x": 146.39307, + "y": 71.03447 }, { "x": 0, "y": 0 }, { - "x": 146.39306841563786, - "y": 71.03446502057614 + "x": 146.39307, + "y": 71.03447 }, { "fillStyle": "#4ECDC4", @@ -17200,43 +17200,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 128.68659979423867, + "x": 128.6866, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 164.09953703703704, + "x": 164.09954, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 164.09953703703704, - "y": 92.06893004115227 + "x": 164.09954, + "y": 92.06893 }, { "body": null, "index": 3, "isInternal": false, - "x": 128.68659979423867, - "y": 92.06893004115227 + "x": 128.6866, + "y": 92.06893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 1933 }, "bounds": { "#": 1936 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1939 }, @@ -17251,13 +17251,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 54, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -17313,11 +17313,11 @@ } }, { - "x": 205.8634259259259, - "y": 92.27019032921811 + "x": 205.86343, + "y": 92.27019 }, { - "x": 164.09953703703704, + "x": 164.09954, "y": 50 }, { @@ -17335,16 +17335,16 @@ "y": 0 }, { - "x": 184.98148148148147, - "y": 71.13509516460906 + "x": 184.98148, + "y": 71.1351 }, { "x": 0, "y": 0 }, { - "x": 184.98148148148147, - "y": 71.13509516460906 + "x": 184.98148, + "y": 71.1351 }, { "fillStyle": "#FF6B6B", @@ -17381,43 +17381,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 164.09953703703704, + "x": 164.09954, "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 205.8634259259259, + "x": 205.86343, "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 205.8634259259259, - "y": 92.27019032921811 + "x": 205.86343, + "y": 92.27019 }, { "body": null, "index": 3, "isInternal": false, - "x": 164.09953703703704, - "y": 92.27019032921811 + "x": 164.09954, + "y": 92.27019 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2021.6781920000003, + "area": 2021.67819, "axes": { "#": 1954 }, "bounds": { "#": 1962 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1965 }, @@ -17432,13 +17432,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 55, - "inertia": 2612.347668906405, - "inverseInertia": 0.00038279743998187855, - "inverseMass": 0.4946385651074975, + "inertia": 2612.34767, + "inverseInertia": 0.00038, + "inverseMass": 0.49464, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.0216781920000004, + "mass": 2.02168, "motion": 0, "parent": null, "position": { @@ -17493,28 +17493,28 @@ } ], { - "x": 0.6235103580922969, - "y": 0.7818150889766811 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22254274738493746, - "y": 0.9749229331523409 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009679103567836, - "y": 0.43388572747594584 + "x": -0.90097, + "y": 0.43389 }, { - "x": -0.9009679103567836, - "y": -0.43388572747594584 + "x": -0.90097, + "y": -0.43389 }, { - "x": -0.22254274738493746, - "y": -0.9749229331523409 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.6235103580922969, - "y": -0.7818150889766811 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -17529,11 +17529,11 @@ } }, { - "x": 256.187566855507, + "x": 256.18757, "y": 103 }, { - "x": 204.51756685550697, + "x": 204.51757, "y": 50 }, { @@ -17551,7 +17551,7 @@ "y": 0 }, { - "x": 231.6984259259259, + "x": 231.69843, "y": 76.5 }, { @@ -17559,7 +17559,7 @@ "y": 0 }, { - "x": 231.6984259259259, + "x": 231.69843, "y": 76.5 }, { @@ -17606,49 +17606,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 256.187566855507, + "x": 256.18757, "y": 88.293 }, { "body": null, "index": 1, "isInternal": false, - "x": 237.74656685550698, + "x": 237.74657, "y": 103 }, { "body": null, "index": 2, "isInternal": false, - "x": 214.75156685550698, + "x": 214.75157, "y": 97.751 }, { "body": null, "index": 3, "isInternal": false, - "x": 204.51756685550697, + "x": 204.51757, "y": 76.5 }, { "body": null, "index": 4, "isInternal": false, - "x": 214.75156685550698, - "y": 55.248999999999995 + "x": 214.75157, + "y": 55.249 }, { "body": null, "index": 5, "isInternal": false, - "x": 237.74656685550698, + "x": 237.74657, "y": 50 }, { "body": null, "index": 6, "isInternal": false, - "x": 256.187566855507, + "x": 256.18757, "y": 64.707 }, { @@ -17656,14 +17656,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6374.479509999999, + "area": 6374.47951, "axes": { "#": 1983 }, "bounds": { "#": 1991 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1994 }, @@ -17678,13 +17678,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 56, - "inertia": 25971.46101758985, - "inverseInertia": 0.00003850380228215594, - "inverseMass": 0.15687555327948652, + "inertia": 25971.46102, + "inverseInertia": 0.00004, + "inverseMass": 0.15688, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.37447951, + "mass": 6.37448, "motion": 0, "parent": null, "position": { @@ -17739,28 +17739,28 @@ } ], { - "x": 0.6235005124395528, - "y": 0.7818229409448249 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.22252397968610343, - "y": 0.9749272170088692 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009709048657181, - "y": 0.4338795092942846 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009709048657181, - "y": -0.4338795092942846 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22252397968610343, - "y": -0.9749272170088692 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6235005124395528, - "y": -0.7818229409448249 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -17775,12 +17775,12 @@ } }, { - "x": 345.5477742303948, + "x": 345.54777, "y": 144.11 }, { - "x": 253.79777423039482, - "y": 50.00000000000001 + "x": 253.79777, + "y": 50 }, { "category": 1, @@ -17797,7 +17797,7 @@ "y": 0 }, { - "x": 302.062566855507, + "x": 302.06257, "y": 97.055 }, { @@ -17805,7 +17805,7 @@ "y": 0 }, { - "x": 302.062566855507, + "x": 302.06257, "y": 97.055 }, { @@ -17852,49 +17852,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 345.5477742303948, - "y": 117.99600000000001 + "x": 345.54777, + "y": 117.996 }, { "body": null, "index": 1, "isInternal": false, - "x": 312.8027742303948, + "x": 312.80277, "y": 144.11 }, { "body": null, "index": 2, "isInternal": false, - "x": 271.9697742303948, - "y": 134.79000000000002 + "x": 271.96977, + "y": 134.79 }, { "body": null, "index": 3, "isInternal": false, - "x": 253.79777423039482, + "x": 253.79777, "y": 97.055 }, { "body": null, "index": 4, "isInternal": false, - "x": 271.9697742303948, - "y": 59.32000000000001 + "x": 271.96977, + "y": 59.32 }, { "body": null, "index": 5, "isInternal": false, - "x": 312.8027742303948, - "y": 50.00000000000001 + "x": 312.80277, + "y": 50 }, { "body": null, "index": 6, "isInternal": false, - "x": 345.5477742303948, + "x": 345.54777, "y": 76.114 }, { @@ -17902,14 +17902,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 2012 }, "bounds": { "#": 2015 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2018 }, @@ -17924,13 +17924,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 57, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -17986,12 +17986,12 @@ } }, { - "x": 390.6991373991191, - "y": 99.16846707818928 + "x": 390.69914, + "y": 99.16847 }, { - "x": 345.5477742303948, - "y": 49.999999999999986 + "x": 345.54777, + "y": 50 }, { "category": 1, @@ -18008,16 +18008,16 @@ "y": 0 }, { - "x": 368.12345581475694, - "y": 74.58423353909464 + "x": 368.12346, + "y": 74.58423 }, { "x": 0, "y": 0 }, { - "x": 368.12345581475694, - "y": 74.58423353909464 + "x": 368.12346, + "y": 74.58423 }, { "fillStyle": "#C7F464", @@ -18054,43 +18054,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 345.5477742303948, - "y": 49.999999999999986 + "x": 345.54777, + "y": 50 }, { "body": null, "index": 1, "isInternal": false, - "x": 390.6991373991191, - "y": 49.999999999999986 + "x": 390.69914, + "y": 50 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.6991373991191, - "y": 99.16846707818928 + "x": 390.69914, + "y": 99.16847 }, { "body": null, "index": 3, "isInternal": false, - "x": 345.5477742303948, - "y": 99.16846707818928 + "x": 345.54777, + "y": 99.16847 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2739.619887, + "area": 2739.61989, "axes": { "#": 2033 }, "bounds": { "#": 2041 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2044 }, @@ -18105,13 +18105,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 58, - "inertia": 4797.196881714491, - "inverseInertia": 0.0002084550675440708, - "inverseMass": 0.36501414110226893, + "inertia": 4797.19688, + "inverseInertia": 0.00021, + "inverseMass": 0.36501, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.739619887, + "mass": 2.73962, "motion": 0, "parent": null, "position": { @@ -18166,28 +18166,28 @@ } ], { - "x": 0.623481759781332, - "y": 0.7818378957430839 + "x": 0.62348, + "y": 0.78184 }, { - "x": -0.22252614147358962, - "y": 0.9749267235853554 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009716145580845, - "y": 0.4338780355821189 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009716145580845, - "y": -0.4338780355821189 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22252614147358962, - "y": -0.9749267235853554 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.623481759781332, - "y": -0.7818378957430839 + "x": 0.62348, + "y": -0.78184 }, { "x": 1, @@ -18202,11 +18202,11 @@ } }, { - "x": 449.28137432385313, + "x": 449.28137, "y": 111.696 }, { - "x": 389.1323743238531, + "x": 389.13237, "y": 50 }, { @@ -18224,7 +18224,7 @@ "y": 0 }, { - "x": 420.7736373991191, + "x": 420.77364, "y": 80.848 }, { @@ -18232,7 +18232,7 @@ "y": 0 }, { - "x": 420.7736373991191, + "x": 420.77364, "y": 80.848 }, { @@ -18279,49 +18279,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 449.28137432385313, + "x": 449.28137, "y": 94.577 }, { "body": null, "index": 1, "isInternal": false, - "x": 427.81437432385314, + "x": 427.81437, "y": 111.696 }, { "body": null, "index": 2, "isInternal": false, - "x": 401.04537432385314, + "x": 401.04537, "y": 105.586 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.1323743238531, + "x": 389.13237, "y": 80.848 }, { "body": null, "index": 4, "isInternal": false, - "x": 401.04537432385314, + "x": 401.04537, "y": 56.11 }, { "body": null, "index": 5, "isInternal": false, - "x": 427.81437432385314, + "x": 427.81437, "y": 50 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.28137432385313, + "x": 449.28137, "y": 67.119 }, { @@ -18329,14 +18329,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1836.0044999999998, + "area": 1836.0045, "axes": { "#": 2062 }, "bounds": { "#": 2066 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2069 }, @@ -18351,13 +18351,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 59, - "inertia": 2162.441392869351, - "inverseInertia": 0.00046244027851922336, - "inverseMass": 0.5446609744148231, + "inertia": 2162.44139, + "inverseInertia": 0.00046, + "inverseMass": 0.54466, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8360044999999998, + "mass": 1.836, "motion": 0, "parent": null, "position": { @@ -18400,12 +18400,12 @@ } ], { - "x": -0.49997861700756785, - "y": -0.8660377489089028 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.49997861700756785, - "y": -0.8660377489089028 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -18420,11 +18420,11 @@ } }, { - "x": 96.04399999999998, + "x": 96.044, "y": 197.276 }, { - "x": 49.99999999999999, + "x": 50, "y": 144.11 }, { @@ -18442,7 +18442,7 @@ "y": 0 }, { - "x": 73.02199999999999, + "x": 73.022, "y": 170.693 }, { @@ -18450,7 +18450,7 @@ "y": 0 }, { - "x": 73.02199999999999, + "x": 73.022, "y": 170.693 }, { @@ -18494,42 +18494,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 96.04399999999998, + "x": 96.044, "y": 183.985 }, { "body": null, "index": 1, "isInternal": false, - "x": 73.02199999999999, + "x": 73.022, "y": 197.276 }, { "body": null, "index": 2, "isInternal": false, - "x": 49.99999999999999, + "x": 50, "y": 183.985 }, { "body": null, "index": 3, "isInternal": false, - "x": 49.99999999999999, + "x": 50, "y": 157.401 }, { "body": null, "index": 4, "isInternal": false, - "x": 73.02199999999999, + "x": 73.022, "y": 144.11 }, { "body": null, "index": 5, "isInternal": false, - "x": 96.04399999999998, + "x": 96.044, "y": 157.401 }, { @@ -18544,7 +18544,7 @@ "bounds": { "#": 2094 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2097 }, @@ -18559,13 +18559,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 60, - "inertia": 21143.188788922525, - "inverseInertia": 0.00004729655540530038, - "inverseMass": 0.17386742308546824, + "inertia": 21143.18879, + "inverseInertia": 0.00005, + "inverseMass": 0.17387, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.75150872, + "mass": 5.75151, "motion": 0, "parent": null, "position": { @@ -18620,28 +18620,28 @@ } ], { - "x": 0.6234803941237226, - "y": 0.7818389847937538 + "x": 0.62348, + "y": 0.78184 }, { - "x": -0.22250537103534854, - "y": 0.9749314641862892 + "x": -0.22251, + "y": 0.97493 }, { - "x": -0.9009645506959534, - "y": 0.43389270377506817 + "x": -0.90096, + "y": 0.43389 }, { - "x": -0.9009645506959534, - "y": -0.43389270377506817 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.22250537103534854, - "y": -0.9749314641862892 + "x": -0.22251, + "y": -0.97493 }, { - "x": 0.6234803941237226, - "y": -0.7818389847937538 + "x": 0.62348, + "y": -0.78184 }, { "x": 1, @@ -18656,11 +18656,11 @@ } }, { - "x": 180.92582832429306, + "x": 180.92583, "y": 233.502 }, { - "x": 93.77382832429306, + "x": 93.77383, "y": 144.11 }, { @@ -18678,7 +18678,7 @@ "y": 0 }, { - "x": 139.61999999999998, + "x": 139.62, "y": 188.806 }, { @@ -18686,7 +18686,7 @@ "y": 0 }, { - "x": 139.61999999999998, + "x": 139.62, "y": 188.806 }, { @@ -18733,64 +18733,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 180.92582832429306, + "x": 180.92583, "y": 208.698 }, { "body": null, "index": 1, "isInternal": false, - "x": 149.82182832429305, + "x": 149.82183, "y": 233.502 }, { "body": null, "index": 2, "isInternal": false, - "x": 111.03582832429306, + "x": 111.03583, "y": 224.65 }, { "body": null, "index": 3, "isInternal": false, - "x": 93.77382832429306, + "x": 93.77383, "y": 188.806 }, { "body": null, "index": 4, "isInternal": false, - "x": 111.03582832429306, - "y": 152.96200000000002 + "x": 111.03583, + "y": 152.962 }, { "body": null, "index": 5, "isInternal": false, - "x": 149.82182832429305, + "x": 149.82183, "y": 144.11 }, { "body": null, "index": 6, "isInternal": false, - "x": 180.92582832429306, - "y": 168.91400000000002 + "x": 180.92583, + "y": 168.914 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 2115 }, "bounds": { "#": 2118 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2121 }, @@ -18805,13 +18805,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 61, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -18867,11 +18867,11 @@ } }, { - "x": 201.0963530156511, - "y": 166.49978909465023 + "x": 201.09635, + "y": 166.49979 }, { - "x": 180.92582832429306, + "x": 180.92583, "y": 144.11 }, { @@ -18889,16 +18889,16 @@ "y": 0 }, { - "x": 191.01109066997208, - "y": 155.30489454732512 + "x": 191.01109, + "y": 155.30489 }, { "x": 0, "y": 0 }, { - "x": 191.01109066997208, - "y": 155.30489454732512 + "x": 191.01109, + "y": 155.30489 }, { "fillStyle": "#556270", @@ -18935,43 +18935,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 180.92582832429306, + "x": 180.92583, "y": 144.11 }, { "body": null, "index": 1, "isInternal": false, - "x": 201.0963530156511, + "x": 201.09635, "y": 144.11 }, { "body": null, "index": 2, "isInternal": false, - "x": 201.0963530156511, - "y": 166.49978909465023 + "x": 201.09635, + "y": 166.49979 }, { "body": null, "index": 3, "isInternal": false, - "x": 180.92582832429306, - "y": 166.49978909465023 + "x": 180.92583, + "y": 166.49979 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 2136 }, "bounds": { "#": 2139 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2142 }, @@ -18986,13 +18986,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 62, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -19048,11 +19048,11 @@ } }, { - "x": 302.92951488122037, - "y": 173.78283950617288 + "x": 302.92951, + "y": 173.78284 }, { - "x": 201.0963530156511, + "x": 201.09635, "y": 144.11 }, { @@ -19070,16 +19070,16 @@ "y": 0 }, { - "x": 252.01293394843572, - "y": 158.94641975308645 + "x": 252.01293, + "y": 158.94642 }, { "x": 0, "y": 0 }, { - "x": 252.01293394843572, - "y": 158.94641975308645 + "x": 252.01293, + "y": 158.94642 }, { "fillStyle": "#C44D58", @@ -19116,43 +19116,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 201.0963530156511, + "x": 201.09635, "y": 144.11 }, { "body": null, "index": 1, "isInternal": false, - "x": 302.92951488122037, + "x": 302.92951, "y": 144.11 }, { "body": null, "index": 2, "isInternal": false, - "x": 302.92951488122037, - "y": 173.78283950617288 + "x": 302.92951, + "y": 173.78284 }, { "body": null, "index": 3, "isInternal": false, - "x": 201.0963530156511, - "y": 173.78283950617288 + "x": 201.09635, + "y": 173.78284 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 2157 }, "bounds": { "#": 2160 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2163 }, @@ -19167,13 +19167,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 63, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -19229,11 +19229,11 @@ } }, { - "x": 343.0010169388336, - "y": 165.4902726337449 + "x": 343.00102, + "y": 165.49027 }, { - "x": 302.92951488122037, + "x": 302.92951, "y": 144.11 }, { @@ -19251,16 +19251,16 @@ "y": 0 }, { - "x": 322.965265910027, - "y": 154.80013631687245 + "x": 322.96527, + "y": 154.80014 }, { "x": 0, "y": 0 }, { - "x": 322.965265910027, - "y": 154.80013631687245 + "x": 322.96527, + "y": 154.80014 }, { "fillStyle": "#556270", @@ -19297,43 +19297,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 302.92951488122037, + "x": 302.92951, "y": 144.11 }, { "body": null, "index": 1, "isInternal": false, - "x": 343.0010169388336, + "x": 343.00102, "y": 144.11 }, { "body": null, "index": 2, "isInternal": false, - "x": 343.0010169388336, - "y": 165.4902726337449 + "x": 343.00102, + "y": 165.49027 }, { "body": null, "index": 3, "isInternal": false, - "x": 302.92951488122037, - "y": 165.4902726337449 + "x": 302.92951, + "y": 165.49027 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 2178 }, "bounds": { "#": 2183 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2186 }, @@ -19348,13 +19348,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 64, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -19400,16 +19400,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -19424,11 +19424,11 @@ } }, { - "x": 413.2530169388335, - "y": 214.36200000000002 + "x": 413.25302, + "y": 214.362 }, { - "x": 343.0010169388336, + "x": 343.00102, "y": 144.11 }, { @@ -19446,16 +19446,16 @@ "y": 0 }, { - "x": 378.12701693883355, - "y": 179.23600000000002 + "x": 378.12702, + "y": 179.236 }, { "x": 0, "y": 0 }, { - "x": 378.12701693883355, - "y": 179.23600000000002 + "x": 378.12702, + "y": 179.236 }, { "fillStyle": "#C44D58", @@ -19504,56 +19504,56 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.2530169388335, - "y": 193.78600000000003 + "x": 413.25302, + "y": 193.786 }, { "body": null, "index": 1, "isInternal": false, - "x": 392.67701693883356, - "y": 214.36200000000002 + "x": 392.67702, + "y": 214.362 }, { "body": null, "index": 2, "isInternal": false, - "x": 363.57701693883354, - "y": 214.36200000000002 + "x": 363.57702, + "y": 214.362 }, { "body": null, "index": 3, "isInternal": false, - "x": 343.0010169388336, - "y": 193.78600000000003 + "x": 343.00102, + "y": 193.786 }, { "body": null, "index": 4, "isInternal": false, - "x": 343.0010169388336, + "x": 343.00102, "y": 164.686 }, { "body": null, "index": 5, "isInternal": false, - "x": 363.57701693883354, + "x": 363.57702, "y": 144.11 }, { "body": null, "index": 6, "isInternal": false, - "x": 392.67701693883356, + "x": 392.67702, "y": 144.11 }, { "body": null, "index": 7, "isInternal": false, - "x": 413.2530169388335, + "x": 413.25302, "y": 164.686 }, { @@ -19561,14 +19561,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 2205 }, "bounds": { "#": 2208 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2211 }, @@ -19583,13 +19583,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 65, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -19645,11 +19645,11 @@ } }, { - "x": 502.7573036329351, - "y": 166.06584705075448 + "x": 502.7573, + "y": 166.06585 }, { - "x": 413.2530169388335, + "x": 413.25302, "y": 144.11 }, { @@ -19667,16 +19667,16 @@ "y": 0 }, { - "x": 458.0051602858843, - "y": 155.08792352537725 + "x": 458.00516, + "y": 155.08792 }, { "x": 0, "y": 0 }, { - "x": 458.0051602858843, - "y": 155.08792352537725 + "x": 458.00516, + "y": 155.08792 }, { "fillStyle": "#4ECDC4", @@ -19713,43 +19713,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 413.2530169388335, + "x": 413.25302, "y": 144.11 }, { "body": null, "index": 1, "isInternal": false, - "x": 502.7573036329351, + "x": 502.7573, "y": 144.11 }, { "body": null, "index": 2, "isInternal": false, - "x": 502.7573036329351, - "y": 166.06584705075448 + "x": 502.7573, + "y": 166.06585 }, { "body": null, "index": 3, "isInternal": false, - "x": 413.2530169388335, - "y": 166.06584705075448 + "x": 413.25302, + "y": 166.06585 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2731.7103740000002, + "area": 2731.71037, "axes": { "#": 2226 }, "bounds": { "#": 2232 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2235 }, @@ -19764,13 +19764,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 66, - "inertia": 4831.242532460027, - "inverseInertia": 0.00020698608966145373, - "inverseMass": 0.3660710189183474, + "inertia": 4831.24253, + "inverseInertia": 0.00021, + "inverseMass": 0.36607, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.7317103740000004, + "mass": 2.73171, "motion": 0, "parent": null, "position": { @@ -19819,20 +19819,20 @@ } ], { - "x": 0.30903613462444496, - "y": 0.951050297038165 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.809011641765462, - "y": 0.5877926194568556 + "x": -0.80901, + "y": 0.58779 }, { - "x": -0.809011641765462, - "y": -0.5877926194568556 + "x": -0.80901, + "y": -0.58779 }, { - "x": 0.30903613462444496, - "y": -0.951050297038165 + "x": 0.30904, + "y": -0.95105 }, { "x": 1, @@ -19847,11 +19847,11 @@ } }, { - "x": 560.8385250195097, + "x": 560.83853, "y": 208.584 }, { - "x": 499.5205250195097, + "x": 499.52053, "y": 144.11 }, { @@ -19869,7 +19869,7 @@ "y": 0 }, { - "x": 533.4163036329351, + "x": 533.4163, "y": 176.347 }, { @@ -19877,7 +19877,7 @@ "y": 0 }, { - "x": 533.4163036329351, + "x": 533.4163, "y": 176.347 }, { @@ -19918,35 +19918,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 560.8385250195097, + "x": 560.83853, "y": 196.27 }, { "body": null, "index": 1, "isInternal": false, - "x": 522.9425250195097, + "x": 522.94253, "y": 208.584 }, { "body": null, "index": 2, "isInternal": false, - "x": 499.5205250195097, + "x": 499.52053, "y": 176.347 }, { "body": null, "index": 3, "isInternal": false, - "x": 522.9425250195097, + "x": 522.94253, "y": 144.11 }, { "body": null, "index": 4, "isInternal": false, - "x": 560.8385250195097, + "x": 560.83853, "y": 156.424 }, { @@ -19954,14 +19954,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 942.0065703840771, + "area": 942.00657, "axes": { "#": 2251 }, "bounds": { "#": 2254 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2257 }, @@ -19976,13 +19976,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 67, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -20038,8 +20038,8 @@ } }, { - "x": 71.0599279835391, - "y": 278.2318096707819 + "x": 71.05993, + "y": 278.23181 }, { "x": 50, @@ -20060,16 +20060,16 @@ "y": 0 }, { - "x": 60.52996399176955, - "y": 255.86690483539095 + "x": 60.52996, + "y": 255.8669 }, { "x": 0, "y": 0 }, { - "x": 60.52996399176955, - "y": 255.86690483539095 + "x": 60.52996, + "y": 255.8669 }, { "fillStyle": "#4ECDC4", @@ -20113,36 +20113,36 @@ "body": null, "index": 1, "isInternal": false, - "x": 71.0599279835391, + "x": 71.05993, "y": 233.502 }, { "body": null, "index": 2, "isInternal": false, - "x": 71.0599279835391, - "y": 278.2318096707819 + "x": 71.05993, + "y": 278.23181 }, { "body": null, "index": 3, "isInternal": false, "x": 50, - "y": 278.2318096707819 + "y": 278.23181 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2898.415585731765, + "area": 2898.41559, "axes": { "#": 2272 }, "bounds": { "#": 2275 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2278 }, @@ -20157,13 +20157,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 68, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -20219,11 +20219,11 @@ } }, { - "x": 183.25591563786008, - "y": 259.3355048010974 + "x": 183.25592, + "y": 259.3355 }, { - "x": 71.0599279835391, + "x": 71.05993, "y": 233.502 }, { @@ -20241,16 +20241,16 @@ "y": 0 }, { - "x": 127.15792181069959, - "y": 246.4187524005487 + "x": 127.15792, + "y": 246.41875 }, { "x": 0, "y": 0 }, { - "x": 127.15792181069959, - "y": 246.4187524005487 + "x": 127.15792, + "y": 246.41875 }, { "fillStyle": "#C44D58", @@ -20287,43 +20287,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 71.0599279835391, + "x": 71.05993, "y": 233.502 }, { "body": null, "index": 1, "isInternal": false, - "x": 183.25591563786008, + "x": 183.25592, "y": 233.502 }, { "body": null, "index": 2, "isInternal": false, - "x": 183.25591563786008, - "y": 259.3355048010974 + "x": 183.25592, + "y": 259.3355 }, { "body": null, "index": 3, "isInternal": false, - "x": 71.0599279835391, - "y": 259.3355048010974 + "x": 71.05993, + "y": 259.3355 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1542.073807, + "area": 1542.07381, "axes": { "#": 2293 }, "bounds": { "#": 2299 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2302 }, @@ -20338,13 +20338,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 69, - "inertia": 1539.5714792627725, - "inverseInertia": 0.0006495313880969349, - "inverseMass": 0.6484773915883003, + "inertia": 1539.57148, + "inverseInertia": 0.00065, + "inverseMass": 0.64848, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.542073807, + "mass": 1.54207, "motion": 0, "parent": null, "position": { @@ -20393,20 +20393,20 @@ } ], { - "x": 0.3090339581829955, - "y": 0.9510510042525325 + "x": 0.30903, + "y": 0.95105 }, { - "x": -0.8090263110858927, - "y": 0.587772428726248 + "x": -0.80903, + "y": 0.58777 }, { - "x": -0.8090263110858927, - "y": -0.587772428726248 + "x": -0.80903, + "y": -0.58777 }, { - "x": 0.3090339581829955, - "y": -0.9510510042525325 + "x": 0.30903, + "y": -0.95105 }, { "x": 1, @@ -20421,11 +20421,11 @@ } }, { - "x": 226.89416756975916, + "x": 226.89417, "y": 281.944 }, { - "x": 180.82416756975914, + "x": 180.82417, "y": 233.502 }, { @@ -20443,7 +20443,7 @@ "y": 0 }, { - "x": 206.2909156378601, + "x": 206.29092, "y": 257.723 }, { @@ -20451,7 +20451,7 @@ "y": 0 }, { - "x": 206.2909156378601, + "x": 206.29092, "y": 257.723 }, { @@ -20492,50 +20492,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 226.89416756975916, + "x": 226.89417, "y": 272.692 }, { "body": null, "index": 1, "isInternal": false, - "x": 198.42116756975915, + "x": 198.42117, "y": 281.944 }, { "body": null, "index": 2, "isInternal": false, - "x": 180.82416756975914, + "x": 180.82417, "y": 257.723 }, { "body": null, "index": 3, "isInternal": false, - "x": 198.42116756975915, + "x": 198.42117, "y": 233.502 }, { "body": null, "index": 4, "isInternal": false, - "x": 226.89416756975916, - "y": 242.75400000000002 + "x": 226.89417, + "y": 242.754 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4282.393599999999, + "area": 4282.3936, "axes": { "#": 2318 }, "bounds": { "#": 2321 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2324 }, @@ -20550,13 +20550,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 70, - "inertia": 12225.929963547305, - "inverseInertia": 0.00008179336892830146, - "inverseMass": 0.233514266413998, + "inertia": 12225.92996, + "inverseInertia": 0.00008, + "inverseMass": 0.23351, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.2823936, + "mass": 4.28239, "motion": 0, "parent": null, "position": { @@ -20612,12 +20612,12 @@ } }, { - "x": 292.3341675697592, - "y": 298.94199999999995 + "x": 292.33417, + "y": 298.942 }, { - "x": 226.89416756975916, - "y": 233.50199999999998 + "x": 226.89417, + "y": 233.502 }, { "category": 1, @@ -20634,7 +20634,7 @@ "y": 0 }, { - "x": 259.61416756975916, + "x": 259.61417, "y": 266.222 }, { @@ -20642,7 +20642,7 @@ "y": 0 }, { - "x": 259.61416756975916, + "x": 259.61417, "y": 266.222 }, { @@ -20680,43 +20680,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 292.3341675697592, - "y": 298.94199999999995 + "x": 292.33417, + "y": 298.942 }, { "body": null, "index": 1, "isInternal": false, - "x": 226.89416756975916, - "y": 298.94199999999995 + "x": 226.89417, + "y": 298.942 }, { "body": null, "index": 2, "isInternal": false, - "x": 226.89416756975916, - "y": 233.50199999999998 + "x": 226.89417, + "y": 233.502 }, { "body": null, "index": 3, "isInternal": false, - "x": 292.3341675697592, - "y": 233.50199999999998 + "x": 292.33417, + "y": 233.502 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1051.3111283901928, + "area": 1051.31113, "axes": { "#": 2339 }, "bounds": { "#": 2342 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2345 }, @@ -20731,13 +20731,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 71, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -20793,11 +20793,11 @@ } }, { - "x": 321.88252147922424, - "y": 269.0813467078189 + "x": 321.88252, + "y": 269.08135 }, { - "x": 292.3341675697592, + "x": 292.33417, "y": 233.502 }, { @@ -20815,16 +20815,16 @@ "y": 0 }, { - "x": 307.1083445244917, - "y": 251.29167335390946 + "x": 307.10834, + "y": 251.29167 }, { "x": 0, "y": 0 }, { - "x": 307.1083445244917, - "y": 251.29167335390946 + "x": 307.10834, + "y": 251.29167 }, { "fillStyle": "#4ECDC4", @@ -20861,43 +20861,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 292.3341675697592, + "x": 292.33417, "y": 233.502 }, { "body": null, "index": 1, "isInternal": false, - "x": 321.88252147922424, + "x": 321.88252, "y": 233.502 }, { "body": null, "index": 2, "isInternal": false, - "x": 321.88252147922424, - "y": 269.0813467078189 + "x": 321.88252, + "y": 269.08135 }, { "body": null, "index": 3, "isInternal": false, - "x": 292.3341675697592, - "y": 269.0813467078189 + "x": 292.33417, + "y": 269.08135 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6455.586703999999, + "area": 6455.5867, "axes": { "#": 2360 }, "bounds": { "#": 2365 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2368 }, @@ -20912,13 +20912,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 72, - "inertia": 26591.361314189468, - "inverseInertia": 0.00003760619804998054, - "inverseMass": 0.1549045882042575, + "inertia": 26591.36131, + "inverseInertia": 0.00004, + "inverseMass": 0.1549, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.455586704, + "mass": 6.45559, "motion": 0, "parent": null, "position": { @@ -20964,16 +20964,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -20988,12 +20988,12 @@ } }, { - "x": 410.1585214792242, - "y": 321.77799999999996 + "x": 410.15852, + "y": 321.778 }, { - "x": 321.88252147922424, - "y": 233.50199999999998 + "x": 321.88252, + "y": 233.502 }, { "category": 1, @@ -21010,7 +21010,7 @@ "y": 0 }, { - "x": 366.0205214792242, + "x": 366.02052, "y": 277.64 }, { @@ -21018,7 +21018,7 @@ "y": 0 }, { - "x": 366.0205214792242, + "x": 366.02052, "y": 277.64 }, { @@ -21068,71 +21068,71 @@ "body": null, "index": 0, "isInternal": false, - "x": 410.1585214792242, + "x": 410.15852, "y": 295.922 }, { "body": null, "index": 1, "isInternal": false, - "x": 384.3025214792242, - "y": 321.77799999999996 + "x": 384.30252, + "y": 321.778 }, { "body": null, "index": 2, "isInternal": false, - "x": 347.73852147922423, - "y": 321.77799999999996 + "x": 347.73852, + "y": 321.778 }, { "body": null, "index": 3, "isInternal": false, - "x": 321.88252147922424, + "x": 321.88252, "y": 295.922 }, { "body": null, "index": 4, "isInternal": false, - "x": 321.88252147922424, - "y": 259.35799999999995 + "x": 321.88252, + "y": 259.358 }, { "body": null, "index": 5, "isInternal": false, - "x": 347.73852147922423, - "y": 233.50199999999998 + "x": 347.73852, + "y": 233.502 }, { "body": null, "index": 6, "isInternal": false, - "x": 384.3025214792242, - "y": 233.50199999999998 + "x": 384.30252, + "y": 233.502 }, { "body": null, "index": 7, "isInternal": false, - "x": 410.1585214792242, - "y": 259.35799999999995 + "x": 410.15852, + "y": 259.358 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2014.126651, + "area": 2014.12665, "axes": { "#": 2387 }, "bounds": { "#": 2393 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2396 }, @@ -21147,13 +21147,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 73, - "inertia": 2626.4134178244994, - "inverseInertia": 0.00038074736947860864, - "inverseMass": 0.4964931075727074, + "inertia": 2626.41342, + "inverseInertia": 0.00038, + "inverseMass": 0.49649, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.014126651, + "mass": 2.01413, "motion": 0, "parent": null, "position": { @@ -21202,20 +21202,20 @@ } ], { - "x": 0.30901998391348906, - "y": 0.9510555449300041 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090228832045648, - "y": 0.5877771469284709 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090228832045648, - "y": -0.5877771469284709 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30901998391348906, - "y": -0.9510555449300041 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -21230,12 +21230,12 @@ } }, { - "x": 460.0301989771127, + "x": 460.0302, "y": 288.864 }, { - "x": 407.3791989771127, - "y": 233.50199999999998 + "x": 407.3792, + "y": 233.502 }, { "category": 1, @@ -21252,7 +21252,7 @@ "y": 0 }, { - "x": 436.4840214792242, + "x": 436.48402, "y": 261.183 }, { @@ -21260,7 +21260,7 @@ "y": 0 }, { - "x": 436.4840214792242, + "x": 436.48402, "y": 261.183 }, { @@ -21301,35 +21301,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 460.0301989771127, + "x": 460.0302, "y": 278.291 }, { "body": null, "index": 1, "isInternal": false, - "x": 427.4901989771127, + "x": 427.4902, "y": 288.864 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.3791989771127, + "x": 407.3792, "y": 261.183 }, { "body": null, "index": 3, "isInternal": false, - "x": 427.4901989771127, - "y": 233.50199999999998 + "x": 427.4902, + "y": 233.502 }, { "body": null, "index": 4, "isInternal": false, - "x": 460.0301989771127, + "x": 460.0302, "y": 244.075 }, { @@ -21337,14 +21337,14 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4695.386625, + "area": 4695.38663, "axes": { "#": 2412 }, "bounds": { "#": 2420 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2423 }, @@ -21359,13 +21359,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 74, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -21420,28 +21420,28 @@ } ], { - "x": 0.6235000959518373, - "y": 0.7818232730918474 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.2225264190381346, - "y": 0.9749266602314579 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009718651359478, - "y": 0.43387751524301366 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009718651359478, - "y": -0.43387751524301366 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.2225264190381346, - "y": -0.9749266602314579 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235000959518373, - "y": -0.7818232730918474 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -21456,11 +21456,11 @@ } }, { - "x": 536.7230739447771, + "x": 536.72307, "y": 314.272 }, { - "x": 457.97907394477716, + "x": 457.97907, "y": 233.502 }, { @@ -21478,7 +21478,7 @@ "y": 0 }, { - "x": 499.4021989771127, + "x": 499.4022, "y": 273.887 }, { @@ -21486,7 +21486,7 @@ "y": 0 }, { - "x": 499.4021989771127, + "x": 499.4022, "y": 273.887 }, { @@ -21533,49 +21533,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 536.7230739447771, + "x": 536.72307, "y": 291.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 508.6200739447771, + "x": 508.62007, "y": 314.272 }, { "body": null, "index": 2, "isInternal": false, - "x": 473.57507394477716, + "x": 473.57507, "y": 306.273 }, { "body": null, "index": 3, "isInternal": false, - "x": 457.97907394477716, + "x": 457.97907, "y": 273.887 }, { "body": null, "index": 4, "isInternal": false, - "x": 473.57507394477716, + "x": 473.57507, "y": 241.501 }, { "body": null, "index": 5, "isInternal": false, - "x": 508.6200739447771, + "x": 508.62007, "y": 233.502 }, { "body": null, "index": 6, "isInternal": false, - "x": 536.7230739447771, + "x": 536.72307, "y": 255.914 }, [], diff --git a/test/browser/refs/timescale/timescale-10.json b/test/browser/refs/timescale/timescale-10.json index edb48e97..b8ab66b2 100644 --- a/test/browser/refs/timescale/timescale-10.json +++ b/test/browser/refs/timescale/timescale-10.json @@ -1033,18 +1033,18 @@ } ], { - "angle": 0.0003096983155711602, - "anglePrev": 0.0002765219524637194, - "angularSpeed": 0.000033176363107440785, - "angularVelocity": 0.000033176363107440785, - "area": 445.64723200000003, + "angle": 0.00031, + "anglePrev": 0.00028, + "angularSpeed": 0.00003, + "angularVelocity": 0.00003, + "area": 445.64723, "axes": { "#": 97 }, "bounds": { "#": 105 }, - "circleRadius": 12.11321159122085, + "circleRadius": 12.11321, "collisionFilter": { "#": 108 }, @@ -1059,13 +1059,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 5, - "inertia": 126.46280868085778, - "inverseInertia": 0.007907463154037685, - "inverseMass": 2.243927322317577, + "inertia": 126.46281, + "inverseInertia": 0.00791, + "inverseMass": 2.24393, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.44564723200000006, + "mass": 0.44565, "motion": 0, "parent": null, "position": { @@ -1087,7 +1087,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0547399190553577, + "speed": 3.05474, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1123,32 +1123,32 @@ } ], { - "x": -0.9007624588161461, - "y": -0.4343120914589988 + "x": -0.90076, + "y": -0.43431 }, { - "x": -0.6234117570250127, - "y": -0.7818937147739368 + "x": -0.62341, + "y": -0.78189 }, { - "x": -0.22210478477016363, - "y": -0.9750228020832121 + "x": -0.2221, + "y": -0.97502 }, { - "x": 0.2227086679649528, - "y": -0.9748850441017525 + "x": 0.22271, + "y": -0.97489 }, { - "x": 0.6238959397402497, - "y": -0.7815074256688995 + "x": 0.6239, + "y": -0.78151 }, { - "x": 0.9010312974555215, - "y": -0.4337540789498346 + "x": 0.90103, + "y": -0.43375 }, { - "x": 0.9999999520434768, - "y": 0.0003096983106204752 + "x": 1, + "y": 0.00031 }, { "max": { @@ -1159,12 +1159,12 @@ } }, { - "x": 44.53576463497224, - "y": 145.60646005307711 + "x": 44.53576, + "y": 145.60646 }, { - "x": 20.914015558828986, - "y": 118.32572129688864 + "x": 20.91402, + "y": 118.32572 }, { "category": 1, @@ -1181,16 +1181,16 @@ "y": 0 }, { - "x": 32.72484962940957, - "y": 130.43872071599128 + "x": 32.72485, + "y": 130.43872 }, { - "x": 0.017179852004130775, + "x": 0.01718, "y": 0 }, { - "x": 32.72476869442749, - "y": 127.38398079800811 + "x": 32.72477, + "y": 127.38398 }, { "endCol": 0, @@ -1213,8 +1213,8 @@ "yScale": 1 }, { - "x": 0.00008093498207983885, - "y": 3.0547399179831762 + "x": 0.00008, + "y": 3.05474 }, [ { @@ -1264,113 +1264,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 44.534014426095915, - "y": 133.1373781237969 + "x": 44.53401, + "y": 133.13738 }, { "body": null, "index": 1, "isInternal": false, - "x": 42.192510333619495, - "y": 137.9936531968252 + "x": 42.19251, + "y": 137.99365 }, { "body": null, "index": 2, "isInternal": false, - "x": 37.97746932998797, - "y": 141.35434796691442 + "x": 37.97747, + "y": 141.35435 }, { "body": null, "index": 3, "isInternal": false, - "x": 32.72109825377301, - "y": 142.55172013509394 + "x": 32.7211, + "y": 142.55172 }, { "body": null, "index": 4, "isInternal": false, - "x": 27.46546983410694, - "y": 141.35109241827314 + "x": 27.46547, + "y": 141.35109 }, { "body": null, "index": 5, "isInternal": false, - "x": 23.252511241916032, - "y": 137.98778751082202 + "x": 23.25251, + "y": 137.98779 }, { "body": null, "index": 6, "isInternal": false, - "x": 20.914015558828986, - "y": 133.13006304970003 + "x": 20.91402, + "y": 133.13006 }, { "body": null, "index": 7, "isInternal": false, - "x": 20.915684832723223, - "y": 127.74006330818567 + "x": 20.91568, + "y": 127.74006 }, { "body": null, "index": 8, "isInternal": false, - "x": 23.25718892519965, - "y": 122.88378823515737 + "x": 23.25719, + "y": 122.88379 }, { "body": null, "index": 9, "isInternal": false, - "x": 27.47222992883116, - "y": 119.52309346506814 + "x": 27.47223, + "y": 119.52309 }, { "body": null, "index": 10, "isInternal": false, - "x": 32.72860100504613, - "y": 118.32572129688864 + "x": 32.7286, + "y": 118.32572 }, { "body": null, "index": 11, "isInternal": false, - "x": 37.98422942471219, - "y": 119.52634901370938 + "x": 37.98423, + "y": 119.52635 }, { "body": null, "index": 12, "isInternal": false, - "x": 42.1971880169031, - "y": 122.88965392116053 + "x": 42.19719, + "y": 122.88965 }, { "body": null, "index": 13, "isInternal": false, - "x": 44.53568369999016, - "y": 127.74737838228255 + "x": 44.53568, + "y": 127.74738 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 732.475276, + "area": 732.47528, "axes": { "#": 134 }, "bounds": { "#": 143 }, - "circleRadius": 15.467721193415638, + "circleRadius": 15.46772, "collisionFilter": { "#": 146 }, @@ -1385,13 +1385,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 6, - "inertia": 341.60522862031934, - "inverseInertia": 0.002927355661500897, - "inverseMass": 1.3652337939117005, + "inertia": 341.60523, + "inverseInertia": 0.00293, + "inverseMass": 1.36523, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7324752760000001, + "mass": 0.73248, "motion": 0, "parent": null, "position": { @@ -1413,7 +1413,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1452,32 +1452,32 @@ } ], { - "x": -0.9238350355607171, - "y": -0.38279083984668255 + "x": -0.92384, + "y": -0.38279 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38279083984668255, - "y": -0.9238350355607171 + "x": -0.38279, + "y": -0.92384 }, { "x": 0, "y": -1 }, { - "x": 0.38279083984668255, - "y": -0.9238350355607171 + "x": 0.38279, + "y": -0.92384 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238350355607171, - "y": -0.38279083984668255 + "x": 0.92384, + "y": -0.38279 }, { "x": 1, @@ -1492,12 +1492,12 @@ } }, { - "x": 93.96199999999999, - "y": 148.6753333333329 + "x": 93.962, + "y": 148.67533 }, { "x": 63.62, - "y": 118.33333333333292 + "y": 118.33333 }, { "category": 1, @@ -1515,7 +1515,7 @@ }, { "x": 78.791, - "y": 133.5043333333329 + "y": 133.50433 }, { "x": 0, @@ -1523,7 +1523,7 @@ }, { "x": 78.791, - "y": 130.44877777777742 + "y": 130.44878 }, { "endCol": 1, @@ -1547,7 +1547,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -1603,127 +1603,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 93.96199999999999, - "y": 136.5223333333329 + "x": 93.962, + "y": 136.52233 }, { "body": null, "index": 1, "isInternal": false, "x": 91.652, - "y": 142.09733333333293 + "y": 142.09733 }, { "body": null, "index": 2, "isInternal": false, "x": 87.384, - "y": 146.3653333333329 + "y": 146.36533 }, { "body": null, "index": 3, "isInternal": false, "x": 81.809, - "y": 148.6753333333329 + "y": 148.67533 }, { "body": null, "index": 4, "isInternal": false, "x": 75.773, - "y": 148.6753333333329 + "y": 148.67533 }, { "body": null, "index": 5, "isInternal": false, "x": 70.198, - "y": 146.3653333333329 + "y": 146.36533 }, { "body": null, "index": 6, "isInternal": false, - "x": 65.92999999999999, - "y": 142.09733333333293 + "x": 65.93, + "y": 142.09733 }, { "body": null, "index": 7, "isInternal": false, "x": 63.62, - "y": 136.5223333333329 + "y": 136.52233 }, { "body": null, "index": 8, "isInternal": false, "x": 63.62, - "y": 130.4863333333329 + "y": 130.48633 }, { "body": null, "index": 9, "isInternal": false, - "x": 65.92999999999999, - "y": 124.9113333333329 + "x": 65.93, + "y": 124.91133 }, { "body": null, "index": 10, "isInternal": false, "x": 70.198, - "y": 120.6433333333329 + "y": 120.64333 }, { "body": null, "index": 11, "isInternal": false, "x": 75.773, - "y": 118.33333333333292 + "y": 118.33333 }, { "body": null, "index": 12, "isInternal": false, "x": 81.809, - "y": 118.33333333333292 + "y": 118.33333 }, { "body": null, "index": 13, "isInternal": false, "x": 87.384, - "y": 120.6433333333329 + "y": 120.64333 }, { "body": null, "index": 14, "isInternal": false, "x": 91.652, - "y": 124.9113333333329 + "y": 124.91133 }, { "body": null, "index": 15, "isInternal": false, - "x": 93.96199999999999, - "y": 130.4863333333329 + "x": 93.962, + "y": 130.48633 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1023.0280239999998, + "area": 1023.02802, "axes": { "#": 174 }, "bounds": { "#": 185 }, - "circleRadius": 18.19465877914952, + "circleRadius": 18.19466, "collisionFilter": { "#": 188 }, @@ -1738,13 +1738,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 7, - "inertia": 666.3140407130343, - "inverseInertia": 0.0015007938282823555, - "inverseMass": 0.9774903292385275, + "inertia": 666.31404, + "inverseInertia": 0.0015, + "inverseMass": 0.97749, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0230280239999998, + "mass": 1.02303, "motion": 0, "parent": null, "position": { @@ -1766,7 +1766,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1811,40 +1811,40 @@ } ], { - "x": -0.9510624654126439, - "y": -0.3089986842742595 + "x": -0.95106, + "y": -0.309 }, { - "x": -0.8090549880907667, - "y": -0.5877329548744475 + "x": -0.80905, + "y": -0.58773 }, { - "x": -0.5877329548744475, - "y": -0.8090549880907667 + "x": -0.58773, + "y": -0.80905 }, { - "x": -0.3089986842742595, - "y": -0.9510624654126439 + "x": -0.309, + "y": -0.95106 }, { "x": 0, "y": -1 }, { - "x": 0.3089986842742595, - "y": -0.9510624654126439 + "x": 0.309, + "y": -0.95106 }, { - "x": 0.5877329548744475, - "y": -0.8090549880907667 + "x": 0.58773, + "y": -0.80905 }, { - "x": 0.8090549880907667, - "y": -0.5877329548744475 + "x": 0.80905, + "y": -0.58773 }, { - "x": 0.9510624654126439, - "y": -0.3089986842742595 + "x": 0.95106, + "y": -0.309 }, { "x": 1, @@ -1860,11 +1860,11 @@ }, { "x": 149.904, - "y": 154.27533333333292 + "y": 154.27533 }, { - "x": 113.96199999999999, - "y": 118.33333333333292 + "x": 113.962, + "y": 118.33333 }, { "category": 1, @@ -1882,7 +1882,7 @@ }, { "x": 131.933, - "y": 136.30433333333292 + "y": 136.30433 }, { "x": 0, @@ -1890,7 +1890,7 @@ }, { "x": 131.933, - "y": 133.24877777777743 + "y": 133.24878 }, { "endCol": 3, @@ -1914,7 +1914,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -1983,146 +1983,146 @@ "index": 0, "isInternal": false, "x": 149.904, - "y": 139.15033333333292 + "y": 139.15033 }, { "body": null, "index": 1, "isInternal": false, - "x": 148.14499999999998, - "y": 144.56433333333294 + "x": 148.145, + "y": 144.56433 }, { "body": null, "index": 2, "isInternal": false, - "x": 144.79899999999998, - "y": 149.1703333333329 + "x": 144.799, + "y": 149.17033 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.19299999999998, - "y": 152.5163333333329 + "x": 140.193, + "y": 152.51633 }, { "body": null, "index": 4, "isInternal": false, "x": 134.779, - "y": 154.27533333333292 + "y": 154.27533 }, { "body": null, "index": 5, "isInternal": false, "x": 129.087, - "y": 154.27533333333292 + "y": 154.27533 }, { "body": null, "index": 6, "isInternal": false, - "x": 123.67299999999999, - "y": 152.5163333333329 + "x": 123.673, + "y": 152.51633 }, { "body": null, "index": 7, "isInternal": false, "x": 119.067, - "y": 149.1703333333329 + "y": 149.17033 }, { "body": null, "index": 8, "isInternal": false, - "x": 115.72099999999999, - "y": 144.56433333333294 + "x": 115.721, + "y": 144.56433 }, { "body": null, "index": 9, "isInternal": false, - "x": 113.96199999999999, - "y": 139.15033333333292 + "x": 113.962, + "y": 139.15033 }, { "body": null, "index": 10, "isInternal": false, - "x": 113.96199999999999, - "y": 133.45833333333292 + "x": 113.962, + "y": 133.45833 }, { "body": null, "index": 11, "isInternal": false, - "x": 115.72099999999999, - "y": 128.04433333333293 + "x": 115.721, + "y": 128.04433 }, { "body": null, "index": 12, "isInternal": false, "x": 119.067, - "y": 123.43833333333292 + "y": 123.43833 }, { "body": null, "index": 13, "isInternal": false, - "x": 123.67299999999999, - "y": 120.09233333333292 + "x": 123.673, + "y": 120.09233 }, { "body": null, "index": 14, "isInternal": false, "x": 129.087, - "y": 118.33333333333292 + "y": 118.33333 }, { "body": null, "index": 15, "isInternal": false, "x": 134.779, - "y": 118.33333333333292 + "y": 118.33333 }, { "body": null, "index": 16, "isInternal": false, - "x": 140.19299999999998, - "y": 120.09233333333292 + "x": 140.193, + "y": 120.09233 }, { "body": null, "index": 17, "isInternal": false, - "x": 144.79899999999998, - "y": 123.43833333333292 + "x": 144.799, + "y": 123.43833 }, { "body": null, "index": 18, "isInternal": false, - "x": 148.14499999999998, - "y": 128.04433333333293 + "x": 148.145, + "y": 128.04433 }, { "body": null, "index": 19, "isInternal": false, "x": 149.904, - "y": 133.45833333333292 + "y": 133.45833 }, { - "angle": 0.0000031992164923308484, - "anglePrev": 0.0000021965354482319124, - "angularSpeed": 0.000001002681044098936, - "angularVelocity": 0.000001002681044098936, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 574.28005, "axes": { "#": 220 @@ -2130,7 +2130,7 @@ "bounds": { "#": 228 }, - "circleRadius": 13.750814471879288, + "circleRadius": 13.75081, "collisionFilter": { "#": 231 }, @@ -2145,13 +2145,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 8, - "inertia": 210.00413885422935, - "inverseInertia": 0.004761810912184603, - "inverseMass": 1.7413107072063536, + "inertia": 210.00414, + "inverseInertia": 0.00476, + "inverseMass": 1.74131, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5742800499999999, + "mass": 0.57428, "motion": 0, "parent": null, "position": { @@ -2173,7 +2173,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555763200238966, + "speed": 3.05558, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2209,32 +2209,32 @@ } ], { - "x": -0.9009624246756335, - "y": -0.4338971183617182 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.6234962727126481, - "y": -0.7818263220904215 + "x": -0.6235, + "y": -0.78183 }, { - "x": -0.22256432270644022, - "y": -0.9749180079669386 + "x": -0.22256, + "y": -0.97492 }, { - "x": 0.2225705606494238, - "y": -0.9749165838840784 + "x": 0.22257, + "y": -0.97492 }, { - "x": 0.6235012751632126, - "y": -0.7818223326753002 + "x": 0.6235, + "y": -0.78182 }, { - "x": 0.9009652009188248, - "y": -0.43389135360514036 + "x": 0.90097, + "y": -0.43389 }, { - "x": 0.9999999999948823, - "y": 0.000003199216492325391 + "x": 1, + "y": 0 }, { "max": { @@ -2245,12 +2245,12 @@ } }, { - "x": 192.3638811288383, - "y": 143.73948961345212 + "x": 192.36388, + "y": 143.73949 }, { - "x": 165.55186154977056, - "y": 116.2374896135928 + "x": 165.55186, + "y": 116.23749 }, { "category": 1, @@ -2267,16 +2267,16 @@ "y": 0 }, { - "x": 178.95787133930443, - "y": 129.98848961352243 + "x": 178.95787, + "y": 129.98849 }, { "x": 0, "y": 0 }, { - "x": 178.95788818625238, - "y": 126.93291329354497 + "x": 178.95789, + "y": 126.93291 }, { "endCol": 4, @@ -2299,8 +2299,8 @@ "yScale": 1 }, { - "x": -0.000016846947943349733, - "y": 3.0555763199774537 + "x": -0.00002, + "y": 3.05558 }, [ { @@ -2350,113 +2350,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 192.36386154963336, - "y": 133.04853250220307 + "x": 192.36386, + "y": 133.04853 }, { "body": null, "index": 1, "isInternal": false, - "x": 189.70884391236643, - "y": 138.56152400825513 + "x": 189.70884, + "y": 138.56152 }, { "body": null, "index": 2, "isInternal": false, - "x": 184.92383170418077, - "y": 142.3775086999847 + "x": 184.92383, + "y": 142.37751 }, { "body": null, "index": 3, "isInternal": false, - "x": 178.95782734687845, - "y": 143.73948961345212 + "x": 178.95783, + "y": 143.73949 }, { "body": null, "index": 4, "isInternal": false, - "x": 172.99183170424186, - "y": 142.37747052693348 + "x": 172.99183, + "y": 142.37747 }, { "body": null, "index": 5, "isInternal": false, - "x": 168.20684391247647, - "y": 138.56145521870212 + "x": 168.20684, + "y": 138.56146 }, { "body": null, "index": 6, "isInternal": false, - "x": 165.55186154977056, - "y": 133.04844672481047 + "x": 165.55186, + "y": 133.04845 }, { "body": null, "index": 7, "isInternal": false, - "x": 165.5518811289755, - "y": 126.92844672484178 + "x": 165.55188, + "y": 126.92845 }, { "body": null, "index": 8, "isInternal": false, - "x": 168.20689876624243, - "y": 121.41545521878976 + "x": 168.2069, + "y": 121.41546 }, { "body": null, "index": 9, "isInternal": false, - "x": 172.9919109744281, - "y": 117.59947052706022 + "x": 172.99191, + "y": 117.59947 }, { "body": null, "index": 10, "isInternal": false, - "x": 178.95791533173042, - "y": 116.2374896135928 + "x": 178.95792, + "y": 116.23749 }, { "body": null, "index": 11, "isInternal": false, - "x": 184.923910974367, - "y": 117.59950870011141 + "x": 184.92391, + "y": 117.59951 }, { "body": null, "index": 12, "isInternal": false, - "x": 189.7088987661324, - "y": 121.41552400834279 + "x": 189.7089, + "y": 121.41552 }, { "body": null, "index": 13, "isInternal": false, - "x": 192.3638811288383, - "y": 126.92853250223438 + "x": 192.36388, + "y": 126.92853 }, { - "angle": 9.210895771869706e-7, - "anglePrev": 6.311411353667495e-7, - "angularSpeed": 2.8994844182022116e-7, - "angularVelocity": 2.8994844182022116e-7, - "area": 1195.2601479999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1195.26015, "axes": { "#": 257 }, "bounds": { "#": 268 }, - "circleRadius": 19.667052469135804, + "circleRadius": 19.66705, "collisionFilter": { "#": 271 }, @@ -2471,13 +2471,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 9, - "inertia": 909.5546177631703, - "inverseInertia": 0.0010994391985599042, - "inverseMass": 0.8366379500506865, + "inertia": 909.55462, + "inverseInertia": 0.0011, + "inverseMass": 0.83664, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1952601479999998, + "mass": 1.19526, "motion": 0, "parent": null, "position": { @@ -2499,7 +2499,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055524869991036, + "speed": 3.05552, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2544,44 +2544,44 @@ } ], { - "x": -0.9510290067991624, - "y": -0.3091016470784302 + "x": -0.95103, + "y": -0.3091 }, { - "x": -0.8090727690784189, - "y": -0.587708477338705 + "x": -0.80907, + "y": -0.58771 }, { - "x": -0.5877069868807182, - "y": -0.8090738517413518 + "x": -0.58771, + "y": -0.80907 }, { - "x": -0.3090998951120942, - "y": -0.9510295762181596 + "x": -0.3091, + "y": -0.95103 }, { - "x": 9.210895771868404e-7, - "y": -0.9999999999995758 + "x": 0, + "y": -1 }, { - "x": 0.3091016470784302, - "y": -0.9510290067991624 + "x": 0.3091, + "y": -0.95103 }, { - "x": 0.587708477338705, - "y": -0.8090727690784189 + "x": 0.58771, + "y": -0.80907 }, { - "x": 0.8090738517413518, - "y": -0.5877069868807182 + "x": 0.80907, + "y": -0.58771 }, { - "x": 0.9510295762181596, - "y": -0.3090998951120942 + "x": 0.95103, + "y": -0.3091 }, { - "x": 0.9999999999995758, - "y": 9.210895771868404e-7 + "x": 1, + "y": 0 }, { "max": { @@ -2592,12 +2592,12 @@ } }, { - "x": 226.7542020210335, - "y": 170.08967316790785 + "x": 226.7542, + "y": 170.08967 }, { - "x": 187.90418152751406, - "y": 128.18414262958404 + "x": 187.90418, + "y": 128.18414 }, { "category": 1, @@ -2614,16 +2614,16 @@ "y": 0 }, { - "x": 207.32918436169845, - "y": 147.6091454637684 + "x": 207.32918, + "y": 147.60915 }, { - "x": -0.08363926597350804, - "y": 0.19798826124823343 + "x": -0.08364, + "y": 0.19799 }, { - "x": 207.3291695365478, - "y": 144.55362059381335 + "x": 207.32917, + "y": 144.55362 }, { "endCol": 4, @@ -2646,8 +2646,8 @@ "yScale": 1 }, { - "x": 0.000014825150657316044, - "y": 3.0555248699550708 + "x": 0.00001, + "y": 3.05552 }, [ { @@ -2715,155 +2715,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 226.7541815274976, - "y": 150.68616335593217 + "x": 226.75418, + "y": 150.68616 }, { "body": null, "index": 1, "isInternal": false, - "x": 224.85217613728219, - "y": 156.53816160401726 + "x": 224.85218, + "y": 156.53816 }, { "body": null, "index": 2, "isInternal": false, - "x": 221.23617155209982, - "y": 161.51615827335525 + "x": 221.23617, + "y": 161.51616 }, { "body": null, "index": 3, "isInternal": false, - "x": 216.25816822144202, - "y": 165.13215368816978 + "x": 216.25817, + "y": 165.13215 }, { "body": null, "index": 4, "isInternal": false, - "x": 210.40616646953208, - "y": 167.03414829795278 + "x": 210.40617, + "y": 167.03415 }, { "body": null, "index": 5, "isInternal": false, - "x": 204.2521664695347, - "y": 167.03414262956753 + "x": 204.25217, + "y": 167.03414 }, { "body": null, "index": 6, "isInternal": false, - "x": 198.40016822144958, - "y": 165.13213723935215 + "x": 198.40017, + "y": 165.13214 }, { "body": null, "index": 7, "isInternal": false, - "x": 193.4221715521116, - "y": 161.51613265416975 + "x": 193.42217, + "y": 161.51613 }, { "body": null, "index": 8, "isInternal": false, - "x": 189.80617613729706, - "y": 156.53812932351195 + "x": 189.80618, + "y": 156.53813 }, { "body": null, "index": 9, "isInternal": false, - "x": 187.90418152751406, - "y": 150.68612757160204 + "x": 187.90418, + "y": 150.68613 }, { "body": null, "index": 10, "isInternal": false, - "x": 187.9041871958993, - "y": 144.53212757160466 + "x": 187.90419, + "y": 144.53213 }, { "body": null, "index": 11, "isInternal": false, - "x": 189.80619258611472, - "y": 138.68012932351957 + "x": 189.80619, + "y": 138.68013 }, { "body": null, "index": 12, "isInternal": false, - "x": 193.42219717129709, - "y": 133.70213265418158 + "x": 193.4222, + "y": 133.70213 }, { "body": null, "index": 13, "isInternal": false, - "x": 198.40020050195488, - "y": 130.08613723936705 + "x": 198.4002, + "y": 130.08614 }, { "body": null, "index": 14, "isInternal": false, - "x": 204.25220225386482, - "y": 128.18414262958404 + "x": 204.2522, + "y": 128.18414 }, { "body": null, "index": 15, "isInternal": false, - "x": 210.4062022538622, - "y": 128.1841482979693 + "x": 210.4062, + "y": 128.18415 }, { "body": null, "index": 16, "isInternal": false, - "x": 216.25820050194733, - "y": 130.0861536881847 + "x": 216.2582, + "y": 130.08615 }, { "body": null, "index": 17, "isInternal": false, - "x": 221.2361971712853, - "y": 133.70215827336705 + "x": 221.2362, + "y": 133.70216 }, { "body": null, "index": 18, "isInternal": false, - "x": 224.85219258609985, - "y": 138.68016160402485 + "x": 224.85219, + "y": 138.68016 }, { "body": null, "index": 19, "isInternal": false, - "x": 226.75418719588285, - "y": 144.53216335593478 + "x": 226.75419, + "y": 144.53216 }, { - "angle": -0.000011240258654780929, - "anglePrev": -0.000009382478275085583, - "angularSpeed": 0.0000018577803796953458, - "angularVelocity": -0.0000018577803796953458, - "area": 431.46854399999995, + "angle": -0.00001, + "anglePrev": -0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 431.46854, "axes": { "#": 303 }, "bounds": { "#": 310 }, - "circleRadius": 11.99275548696845, + "circleRadius": 11.99276, "collisionFilter": { "#": 313 }, @@ -2878,13 +2878,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 10, - "inertia": 118.56753749026406, - "inverseInertia": 0.008434011713215457, - "inverseMass": 2.3176660591044156, + "inertia": 118.56754, + "inverseInertia": 0.00843, + "inverseMass": 2.31767, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.43146854399999995, + "mass": 0.43147, "motion": 0, "parent": null, "position": { @@ -2906,7 +2906,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555469384586336, + "speed": 3.05555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2939,28 +2939,28 @@ } ], { - "x": -0.8660195178098877, - "y": -0.5000101946683989 + "x": -0.86602, + "y": -0.50001 }, { - "x": -0.5000296631088118, - "y": -0.866008277103221 + "x": -0.50003, + "y": -0.86601 }, { - "x": -0.000011240258654544242, - "y": -0.9999999999368285 + "x": -0.00001, + "y": -1 }, { - "x": 0.5000101946683989, - "y": -0.8660195178098877 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.866008277103221, - "y": -0.5000296631088118 + "x": 0.86601, + "y": -0.50003 }, { - "x": 0.9999999999368285, - "y": -0.000011240258654544242 + "x": 1, + "y": -0.00001 }, { "max": { @@ -2971,12 +2971,12 @@ } }, { - "x": 257.1924895221034, - "y": 165.2607732122663 + "x": 257.19249, + "y": 165.26077 }, { - "x": 234.02441974404118, - "y": 142.09270343420414 + "x": 234.02442, + "y": 142.0927 }, { "category": 1, @@ -2993,16 +2993,16 @@ "y": 0 }, { - "x": 245.60845463307228, - "y": 153.6767383232352 + "x": 245.60845, + "y": 153.67674 }, { "x": 0, "y": 0 }, { - "x": 245.60841040204852, - "y": 150.62119138509672 + "x": 245.60841, + "y": 150.62119 }, { "endCol": 5, @@ -3025,8 +3025,8 @@ "yScale": 1 }, { - "x": 0.00004423102376449606, - "y": 3.055546938138497 + "x": 0.00004, + "y": 3.05555 }, [ { @@ -3070,99 +3070,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 257.1924895221034, - "y": 156.78060811588287 + "x": 257.19249, + "y": 156.78061 }, { "body": null, "index": 1, "isInternal": false, - "x": 254.08854994993, - "y": 162.15664300530617 + "x": 254.08855, + "y": 162.15664 }, { "body": null, "index": 2, "isInternal": false, - "x": 248.71258484003246, - "y": 165.26070343274057 + "x": 248.71258, + "y": 165.2607 }, { "body": null, "index": 3, "isInternal": false, - "x": 242.50458484042463, - "y": 165.2607732122663 + "x": 242.50458, + "y": 165.26077 }, { "body": null, "index": 4, "isInternal": false, - "x": 237.12854995100133, - "y": 162.15683364009294 + "x": 237.12855, + "y": 162.15683 }, { "body": null, "index": 5, "isInternal": false, - "x": 234.02448952356693, - "y": 156.7808685301954 + "x": 234.02449, + "y": 156.78087 }, { "body": null, "index": 6, "isInternal": false, - "x": 234.02441974404118, - "y": 150.57286853058753 + "x": 234.02442, + "y": 150.57287 }, { "body": null, "index": 7, "isInternal": false, - "x": 237.12835931621456, - "y": 145.19683364116426 + "x": 237.12836, + "y": 145.19683 }, { "body": null, "index": 8, "isInternal": false, - "x": 242.5043244261121, - "y": 142.09277321372986 + "x": 242.50432, + "y": 142.09277 }, { "body": null, "index": 9, "isInternal": false, - "x": 248.71232442571994, - "y": 142.09270343420414 + "x": 248.71232, + "y": 142.0927 }, { "body": null, "index": 10, "isInternal": false, - "x": 254.08835931514324, - "y": 145.19664300637749 + "x": 254.08836, + "y": 145.19664 }, { "body": null, "index": 11, "isInternal": false, - "x": 257.1924197425777, - "y": 150.572608116275 + "x": 257.19242, + "y": 150.57261 }, { - "angle": -1.3844366661955285e-7, - "anglePrev": -1.1860249929058797e-7, - "angularSpeed": 1.984116732896488e-8, - "angularVelocity": -1.984116732896488e-8, - "area": 828.5975979999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 828.5976, "axes": { "#": 337 }, "bounds": { "#": 347 }, - "circleRadius": 16.40693587105624, + "circleRadius": 16.40694, "collisionFilter": { "#": 350 }, @@ -3177,13 +3177,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 11, - "inertia": 437.12315220007827, - "inverseInertia": 0.00228768482055209, - "inverseMass": 1.206858434557036, + "inertia": 437.12315, + "inverseInertia": 0.00229, + "inverseMass": 1.20686, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8285975979999999, + "mass": 0.8286, "motion": 0, "parent": null, "position": { @@ -3205,7 +3205,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055552071111703, + "speed": 3.05555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3247,40 +3247,40 @@ } ], { - "x": -0.9396755548564196, - "y": -0.34206702794230204 + "x": -0.93968, + "y": -0.34207 }, { - "x": -0.7660160058390478, - "y": -0.6428214983946874 + "x": -0.76602, + "y": -0.64282 }, { - "x": -0.50004668876824, - "y": -0.865998446333432 + "x": -0.50005, + "y": -0.866 }, { - "x": -0.1737254062759789, - "y": -0.9847941324024254 + "x": -0.17373, + "y": -0.98479 }, { - "x": 0.1737251335989511, - "y": -0.9847941805047521 + "x": 0.17373, + "y": -0.98479 }, { - "x": 0.5000464489842205, - "y": -0.8659985847899929 + "x": 0.50005, + "y": -0.866 }, { - "x": 0.7660158278498881, - "y": -0.6428217104947919 + "x": 0.76602, + "y": -0.64282 }, { - "x": 0.9396754601423566, - "y": -0.34206728812654746 + "x": 0.93968, + "y": -0.34207 }, { - "x": 0.9999999999999902, - "y": -1.3844366661955243e-7 + "x": 1, + "y": 0 }, { "max": { @@ -3291,12 +3291,12 @@ } }, { - "x": 372.80753163381127, - "y": 175.6536233302623 + "x": 372.80753, + "y": 175.65362 }, { - "x": 340.49152875365235, - "y": 139.78407125915163 + "x": 340.49153, + "y": 139.78407 }, { "category": 1, @@ -3313,16 +3313,16 @@ "y": 0 }, { - "x": 356.6495312393854, - "y": 156.1910712591515 + "x": 356.64953, + "y": 156.19107 }, { - "x": 0.20044904084538376, - "y": 0.12468404405940903 + "x": 0.20045, + "y": 0.12468 }, { - "x": 356.6495333306926, - "y": 153.13551918804052 + "x": 356.64953, + "y": 153.13552 }, { "endCol": 7, @@ -3345,8 +3345,8 @@ "yScale": 1 }, { - "x": -0.0000020913071807626693, - "y": 3.055552071110987 + "x": 0, + "y": 3.05555 }, [ { @@ -3408,141 +3408,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 372.80753163381127, - "y": 159.0400690221787 + "x": 372.80753, + "y": 159.04007 }, { "body": null, "index": 1, "isInternal": false, - "x": 370.8585323750387, - "y": 164.39406929200536 + "x": 370.85853, + "y": 164.39407 }, { "body": null, "index": 2, "isInternal": false, - "x": 367.19553297934533, - "y": 168.75906979912446 + "x": 367.19553, + "y": 168.75907 }, { "body": null, "index": 3, "isInternal": false, - "x": 362.26153337377133, - "y": 171.6080704822055 + "x": 362.26153, + "y": 171.60807 }, { "body": null, "index": 4, "isInternal": false, - "x": 356.6495335108305, - "y": 172.5980712591513 + "x": 356.64953, + "y": 172.59807 }, { "body": null, "index": 5, "isInternal": false, - "x": 351.0375333737713, - "y": 171.60807203609718 + "x": 351.03753, + "y": 171.60807 }, { "body": null, "index": 6, "isInternal": false, - "x": 346.1035329793455, - "y": 168.75907271917825 + "x": 346.10353, + "y": 168.75907 }, { "body": null, "index": 7, "isInternal": false, - "x": 342.4405323750389, - "y": 164.3940732262975 + "x": 342.44053, + "y": 164.39407 }, { "body": null, "index": 8, "isInternal": false, - "x": 340.4915316338115, - "y": 159.04007349612428 + "x": 340.49153, + "y": 159.04007 }, { "body": null, "index": 9, "isInternal": false, - "x": 340.4915308449595, - "y": 153.3420734961243 + "x": 340.49153, + "y": 153.34207 }, { "body": null, "index": 10, "isInternal": false, - "x": 342.4405301037321, - "y": 147.98807322629764 + "x": 342.44053, + "y": 147.98807 }, { "body": null, "index": 11, "isInternal": false, - "x": 346.10352949942546, - "y": 143.62307271917854 + "x": 346.10353, + "y": 143.62307 }, { "body": null, "index": 12, "isInternal": false, - "x": 351.03752910499946, - "y": 140.7740720360975 + "x": 351.03753, + "y": 140.77407 }, { "body": null, "index": 13, "isInternal": false, - "x": 356.6495289679403, - "y": 139.78407125915163 + "x": 356.64953, + "y": 139.78407 }, { "body": null, "index": 14, "isInternal": false, - "x": 362.2615291049995, - "y": 140.77407048220576 + "x": 362.26153, + "y": 140.77407 }, { "body": null, "index": 15, "isInternal": false, - "x": 367.1955294994253, - "y": 143.62306979912472 + "x": 367.19553, + "y": 143.62307 }, { "body": null, "index": 16, "isInternal": false, - "x": 370.8585301037319, - "y": 147.9880692920055 + "x": 370.85853, + "y": 147.98807 }, { "body": null, "index": 17, "isInternal": false, - "x": 372.8075308449593, - "y": 153.34206902217872 + "x": 372.80753, + "y": 153.34207 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 783.3593100000002, + "area": 783.35931, "axes": { "#": 380 }, "bounds": { "#": 389 }, - "circleRadius": 15.996013374485596, + "circleRadius": 15.99601, "collisionFilter": { "#": 392 }, @@ -3557,13 +3557,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 12, - "inertia": 390.7154522672976, - "inverseInertia": 0.0025594073492539436, - "inverseMass": 1.2765534119968522, + "inertia": 390.71545, + "inverseInertia": 0.00256, + "inverseMass": 1.27655, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7833593100000001, + "mass": 0.78336, "motion": 0, "parent": null, "position": { @@ -3585,7 +3585,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3624,32 +3624,32 @@ } ], { - "x": -0.9238430135485202, - "y": -0.3827715850446434 + "x": -0.92384, + "y": -0.38277 }, { - "x": -0.7071067811865476, - "y": -0.7071067811865476 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.3827715850446434, - "y": -0.9238430135485202 + "x": -0.38277, + "y": -0.92384 }, { "x": 0, "y": -1 }, { - "x": 0.3827715850446434, - "y": -0.9238430135485202 + "x": 0.38277, + "y": -0.92384 }, { - "x": 0.7071067811865476, - "y": -0.7071067811865476 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238430135485202, - "y": -0.3827715850446434 + "x": 0.92384, + "y": -0.38277 }, { "x": 1, @@ -3664,12 +3664,12 @@ } }, { - "x": 402.4280000000001, - "y": 149.7113333333329 + "x": 402.428, + "y": 149.71133 }, { - "x": 371.05000000000007, - "y": 118.33333333333292 + "x": 371.05, + "y": 118.33333 }, { "category": 1, @@ -3686,16 +3686,16 @@ "y": 0 }, { - "x": 386.7390000000001, - "y": 134.0223333333329 + "x": 386.739, + "y": 134.02233 }, { "x": 0, "y": 0 }, { - "x": 386.7390000000001, - "y": 130.96677777777742 + "x": 386.739, + "y": 130.96678 }, { "endCol": 8, @@ -3719,7 +3719,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -3775,127 +3775,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 402.4280000000001, - "y": 137.14333333333292 + "x": 402.428, + "y": 137.14333 }, { "body": null, "index": 1, "isInternal": false, - "x": 400.0390000000001, - "y": 142.9093333333329 + "x": 400.039, + "y": 142.90933 }, { "body": null, "index": 2, "isInternal": false, - "x": 395.6260000000001, - "y": 147.3223333333329 + "x": 395.626, + "y": 147.32233 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.86000000000007, - "y": 149.7113333333329 + "x": 389.86, + "y": 149.71133 }, { "body": null, "index": 4, "isInternal": false, - "x": 383.6180000000001, - "y": 149.7113333333329 + "x": 383.618, + "y": 149.71133 }, { "body": null, "index": 5, "isInternal": false, - "x": 377.8520000000001, - "y": 147.3223333333329 + "x": 377.852, + "y": 147.32233 }, { "body": null, "index": 6, "isInternal": false, - "x": 373.4390000000001, - "y": 142.9093333333329 + "x": 373.439, + "y": 142.90933 }, { "body": null, "index": 7, "isInternal": false, - "x": 371.05000000000007, - "y": 137.14333333333292 + "x": 371.05, + "y": 137.14333 }, { "body": null, "index": 8, "isInternal": false, - "x": 371.05000000000007, - "y": 130.90133333333293 + "x": 371.05, + "y": 130.90133 }, { "body": null, "index": 9, "isInternal": false, - "x": 373.4390000000001, - "y": 125.13533333333291 + "x": 373.439, + "y": 125.13533 }, { "body": null, "index": 10, "isInternal": false, - "x": 377.8520000000001, - "y": 120.72233333333291 + "x": 377.852, + "y": 120.72233 }, { "body": null, "index": 11, "isInternal": false, - "x": 383.6180000000001, - "y": 118.33333333333292 + "x": 383.618, + "y": 118.33333 }, { "body": null, "index": 12, "isInternal": false, - "x": 389.86000000000007, - "y": 118.33333333333292 + "x": 389.86, + "y": 118.33333 }, { "body": null, "index": 13, "isInternal": false, - "x": 395.6260000000001, - "y": 120.72233333333291 + "x": 395.626, + "y": 120.72233 }, { "body": null, "index": 14, "isInternal": false, - "x": 400.0390000000001, - "y": 125.13533333333291 + "x": 400.039, + "y": 125.13533 }, { "body": null, "index": 15, "isInternal": false, - "x": 402.4280000000001, - "y": 130.90133333333293 + "x": 402.428, + "y": 130.90133 }, { - "angle": -1.2297141428526952e-7, - "anglePrev": -9.837717583927779e-8, - "angularSpeed": 2.4594237598592507e-8, - "angularVelocity": -2.4594238113358927e-8, - "area": 754.4775720000002, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 754.47757, "axes": { "#": 420 }, "bounds": { "#": 429 }, - "circleRadius": 15.698259602194788, + "circleRadius": 15.69826, "collisionFilter": { "#": 432 }, @@ -3910,13 +3910,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 13, - "inertia": 362.43592371593485, - "inverseInertia": 0.002759108395622964, - "inverseMass": 1.32542044603017, + "inertia": 362.43592, + "inverseInertia": 0.00276, + "inverseMass": 1.32542, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7544775720000002, + "mass": 0.75448, "motion": 0, "parent": null, "position": { @@ -3938,7 +3938,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055555555555503, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3977,36 +3977,36 @@ } ], { - "x": -0.9238576602782028, - "y": -0.382736232339302 + "x": -0.92386, + "y": -0.38274 }, { - "x": -0.7071068681404631, - "y": -0.7071066942326211 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.38273645955545654, - "y": -0.9238575661469434 + "x": -0.38274, + "y": -0.92386 }, { - "x": -1.2297141428526917e-7, - "y": -0.9999999999999923 + "x": 0, + "y": -1 }, { - "x": 0.382736232339302, - "y": -0.9238576602782028 + "x": 0.38274, + "y": -0.92386 }, { - "x": 0.7071066942326211, - "y": -0.7071068681404631 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9238575661469434, - "y": -0.38273645955545654 + "x": 0.92386, + "y": -0.38274 }, { - "x": 0.9999999999999923, - "y": -1.2297141428526917e-7 + "x": 1, + "y": 0 }, { "max": { @@ -4017,12 +4017,12 @@ } }, { - "x": 465.1182917603726, - "y": 165.1315627863435 + "x": 465.11829, + "y": 165.13156 }, { - "x": 434.32429023972026, - "y": 131.28200647746547 + "x": 434.32429, + "y": 131.28201 }, { "category": 1, @@ -4039,16 +4039,16 @@ "y": 0 }, { - "x": 449.72129061638157, - "y": 146.67900685412678 + "x": 449.72129, + "y": 146.67901 }, { - "x": 0.22358220920640015, - "y": 0.14018559621985138 + "x": 0.22358, + "y": 0.14019 }, { - "x": 449.7212898490519, - "y": 143.62345129857138 + "x": 449.72129, + "y": 143.62345 }, { "endCol": 9, @@ -4071,8 +4071,8 @@ "yScale": 1 }, { - "x": 7.673296522625606e-7, - "y": 3.055555555555401 + "x": 0, + "y": 3.05556 }, [ { @@ -4128,127 +4128,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 465.1182909930429, - "y": 149.74200496073587 + "x": 465.11829, + "y": 149.742 }, { "body": null, "index": 1, "isInternal": false, - "x": 462.77429168881514, - "y": 155.40000524898088 + "x": 462.77429, + "y": 155.40001 }, { "body": null, "index": 2, "isInternal": false, - "x": 458.4422922215274, - "y": 159.73200578169292 + "x": 458.44229, + "y": 159.73201 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.78429250977234, - "y": 162.0760064774652 + "x": 452.78429, + "y": 162.07601 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.6582925097725, - "y": 162.0760072307881 + "x": 446.65829, + "y": 162.07601 }, { "body": null, "index": 5, "isInternal": false, - "x": 441.0002922215275, - "y": 159.73200792656036 + "x": 441.00029, + "y": 159.73201 }, { "body": null, "index": 6, "isInternal": false, - "x": 436.6682916888153, - "y": 155.40000845927258 + "x": 436.66829, + "y": 155.40001 }, { "body": null, "index": 7, "isInternal": false, - "x": 434.3242909930431, - "y": 149.7420087475176 + "x": 434.32429, + "y": 149.74201 }, { "body": null, "index": 8, "isInternal": false, - "x": 434.32429023972026, - "y": 143.6160087475177 + "x": 434.32429, + "y": 143.61601 }, { "body": null, "index": 9, "isInternal": false, - "x": 436.668289543948, - "y": 137.95800845927272 + "x": 436.66829, + "y": 137.95801 }, { "body": null, "index": 10, "isInternal": false, - "x": 441.00028901123574, - "y": 133.62600792656062 + "x": 441.00029, + "y": 133.62601 }, { "body": null, "index": 11, "isInternal": false, - "x": 446.6582887229908, - "y": 131.28200723078837 + "x": 446.65829, + "y": 131.28201 }, { "body": null, "index": 12, "isInternal": false, - "x": 452.78428872299065, - "y": 131.28200647746547 + "x": 452.78429, + "y": 131.28201 }, { "body": null, "index": 13, "isInternal": false, - "x": 458.44228901123563, - "y": 133.6260057816932 + "x": 458.44229, + "y": 133.62601 }, { "body": null, "index": 14, "isInternal": false, - "x": 462.7742895439478, - "y": 137.958005248981 + "x": 462.77429, + "y": 137.95801 }, { "body": null, "index": 15, "isInternal": false, - "x": 465.11829023972, - "y": 143.61600496073598 + "x": 465.11829, + "y": 143.616 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 546.5734600000001, + "area": 546.57346, "axes": { "#": 460 }, "bounds": { "#": 468 }, - "circleRadius": 13.414909122085048, + "circleRadius": 13.41491, "collisionFilter": { "#": 471 }, @@ -4263,13 +4263,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 14, - "inertia": 190.22932853820927, - "inverseInertia": 0.0052568129619357876, - "inverseMass": 1.8295802361131839, + "inertia": 190.22933, + "inverseInertia": 0.00526, + "inverseMass": 1.82958, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5465734600000001, + "mass": 0.54657, "motion": 0, "parent": null, "position": { @@ -4291,7 +4291,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4327,28 +4327,28 @@ } ], { - "x": -0.9009289164305454, - "y": -0.4339666894351262 + "x": -0.90093, + "y": -0.43397 }, { - "x": -0.6235094308206882, - "y": -0.7818158284900999 + "x": -0.62351, + "y": -0.78182 }, { - "x": -0.22258377112347572, - "y": -0.9749135678779182 + "x": -0.22258, + "y": -0.97491 }, { - "x": 0.22258377112347572, - "y": -0.9749135678779182 + "x": 0.22258, + "y": -0.97491 }, { - "x": 0.6235094308206882, - "y": -0.7818158284900999 + "x": 0.62351, + "y": -0.78182 }, { - "x": 0.9009289164305454, - "y": -0.4339666894351262 + "x": 0.90093, + "y": -0.43397 }, { "x": 1, @@ -4363,12 +4363,12 @@ } }, { - "x": 499.3800000000001, - "y": 145.1633333333329 + "x": 499.38, + "y": 145.16333 }, { - "x": 473.2220000000001, - "y": 118.33333333333292 + "x": 473.222, + "y": 118.33333 }, { "category": 1, @@ -4385,16 +4385,16 @@ "y": 0 }, { - "x": 486.3010000000001, - "y": 131.7483333333329 + "x": 486.301, + "y": 131.74833 }, { "x": 0, "y": 0 }, { - "x": 486.3010000000001, - "y": 128.69277777777742 + "x": 486.301, + "y": 128.69278 }, { "endCol": 10, @@ -4418,7 +4418,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -4468,113 +4468,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 499.3800000000001, - "y": 134.73333333333292 + "x": 499.38, + "y": 134.73333 }, { "body": null, "index": 1, "isInternal": false, - "x": 496.7890000000001, - "y": 140.1123333333329 + "x": 496.789, + "y": 140.11233 }, { "body": null, "index": 2, "isInternal": false, - "x": 492.1220000000001, - "y": 143.83433333333292 + "x": 492.122, + "y": 143.83433 }, { "body": null, "index": 3, "isInternal": false, - "x": 486.3010000000001, - "y": 145.1633333333329 + "x": 486.301, + "y": 145.16333 }, { "body": null, "index": 4, "isInternal": false, - "x": 480.4800000000001, - "y": 143.83433333333292 + "x": 480.48, + "y": 143.83433 }, { "body": null, "index": 5, "isInternal": false, - "x": 475.8130000000001, - "y": 140.1123333333329 + "x": 475.813, + "y": 140.11233 }, { "body": null, "index": 6, "isInternal": false, - "x": 473.2220000000001, - "y": 134.73333333333292 + "x": 473.222, + "y": 134.73333 }, { "body": null, "index": 7, "isInternal": false, - "x": 473.2220000000001, - "y": 128.76333333333292 + "x": 473.222, + "y": 128.76333 }, { "body": null, "index": 8, "isInternal": false, - "x": 475.8130000000001, - "y": 123.3843333333329 + "x": 475.813, + "y": 123.38433 }, { "body": null, "index": 9, "isInternal": false, - "x": 480.4800000000001, - "y": 119.66233333333291 + "x": 480.48, + "y": 119.66233 }, { "body": null, "index": 10, "isInternal": false, - "x": 486.3010000000001, - "y": 118.33333333333292 + "x": 486.301, + "y": 118.33333 }, { "body": null, "index": 11, "isInternal": false, - "x": 492.1220000000001, - "y": 119.66233333333291 + "x": 492.122, + "y": 119.66233 }, { "body": null, "index": 12, "isInternal": false, - "x": 496.7890000000001, - "y": 123.3843333333329 + "x": 496.789, + "y": 123.38433 }, { "body": null, "index": 13, "isInternal": false, - "x": 499.3800000000001, - "y": 128.76333333333292 + "x": 499.38, + "y": 128.76333 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 973.9752019999999, + "area": 973.9752, "axes": { "#": 497 }, "bounds": { "#": 507 }, - "circleRadius": 17.787937242798353, + "circleRadius": 17.78794, "collisionFilter": { "#": 510 }, @@ -4589,13 +4589,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 15, - "inertia": 603.96569072653, - "inverseInertia": 0.0016557231898339578, - "inverseMass": 1.0267201854282941, + "inertia": 603.96569, + "inverseInertia": 0.00166, + "inverseMass": 1.02672, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9739752019999999, + "mass": 0.97398, "motion": 0, "parent": null, "position": { @@ -4617,7 +4617,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555555207, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4659,36 +4659,36 @@ } ], { - "x": -0.9396846715303921, - "y": -0.3420419829360413 + "x": -0.93968, + "y": -0.34204 }, { - "x": -0.7660141089546303, - "y": -0.6428237588036427 + "x": -0.76601, + "y": -0.64282 }, { - "x": -0.5000213741632397, - "y": -0.8660130630538465 + "x": -0.50002, + "y": -0.86601 }, { - "x": -0.17368375845285658, - "y": -0.9848014784969049 + "x": -0.17368, + "y": -0.9848 }, { - "x": 0.17368375845285658, - "y": -0.9848014784969049 + "x": 0.17368, + "y": -0.9848 }, { - "x": 0.5000213741632397, - "y": -0.8660130630538465 + "x": 0.50002, + "y": -0.86601 }, { - "x": 0.7660141089546303, - "y": -0.6428237588036427 + "x": 0.76601, + "y": -0.64282 }, { - "x": 0.9396846715303921, - "y": -0.3420419829360413 + "x": 0.93968, + "y": -0.34204 }, { "x": 1, @@ -4703,12 +4703,12 @@ } }, { - "x": 554.4160000000002, - "y": 153.90933333333297 + "x": 554.416, + "y": 153.90933 }, { - "x": 519.3800000000001, - "y": 118.33333333333296 + "x": 519.38, + "y": 118.33333 }, { "category": 1, @@ -4725,16 +4725,16 @@ "y": 0 }, { - "x": 536.8980000000001, - "y": 136.12133333333298 + "x": 536.898, + "y": 136.12133 }, { "x": 0, "y": 0 }, { - "x": 536.8980000000001, - "y": 133.06577777777747 + "x": 536.898, + "y": 133.06578 }, { "endCol": 11, @@ -4758,7 +4758,7 @@ }, { "x": 0, - "y": 3.0555555555555207 + "y": 3.05556 }, [ { @@ -4820,127 +4820,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 554.4160000000002, - "y": 139.21033333333298 + "x": 554.416, + "y": 139.21033 }, { "body": null, "index": 1, "isInternal": false, - "x": 552.3030000000001, - "y": 145.015333333333 + "x": 552.303, + "y": 145.01533 }, { "body": null, "index": 2, "isInternal": false, - "x": 548.3320000000001, - "y": 149.74733333333296 + "x": 548.332, + "y": 149.74733 }, { "body": null, "index": 3, "isInternal": false, - "x": 542.9820000000001, - "y": 152.83633333333296 + "x": 542.982, + "y": 152.83633 }, { "body": null, "index": 4, "isInternal": false, - "x": 536.8980000000001, - "y": 153.90933333333297 + "x": 536.898, + "y": 153.90933 }, { "body": null, "index": 5, "isInternal": false, - "x": 530.8140000000002, - "y": 152.83633333333296 + "x": 530.814, + "y": 152.83633 }, { "body": null, "index": 6, "isInternal": false, - "x": 525.4640000000002, - "y": 149.74733333333296 + "x": 525.464, + "y": 149.74733 }, { "body": null, "index": 7, "isInternal": false, - "x": 521.4930000000002, - "y": 145.015333333333 + "x": 521.493, + "y": 145.01533 }, { "body": null, "index": 8, "isInternal": false, - "x": 519.3800000000001, - "y": 139.21033333333298 + "x": 519.38, + "y": 139.21033 }, { "body": null, "index": 9, "isInternal": false, - "x": 519.3800000000001, - "y": 133.03233333333296 + "x": 519.38, + "y": 133.03233 }, { "body": null, "index": 10, "isInternal": false, - "x": 521.4930000000002, - "y": 127.22733333333295 + "x": 521.493, + "y": 127.22733 }, { "body": null, "index": 11, "isInternal": false, - "x": 525.4640000000002, - "y": 122.49533333333295 + "x": 525.464, + "y": 122.49533 }, { "body": null, "index": 12, "isInternal": false, - "x": 530.8140000000002, - "y": 119.40633333333295 + "x": 530.814, + "y": 119.40633 }, { "body": null, "index": 13, "isInternal": false, - "x": 536.8980000000001, - "y": 118.33333333333296 + "x": 536.898, + "y": 118.33333 }, { "body": null, "index": 14, "isInternal": false, - "x": 542.9820000000001, - "y": 119.40633333333295 + "x": 542.982, + "y": 119.40633 }, { "body": null, "index": 15, "isInternal": false, - "x": 548.3320000000001, - "y": 122.49533333333295 + "x": 548.332, + "y": 122.49533 }, { "body": null, "index": 16, "isInternal": false, - "x": 552.3030000000001, - "y": 127.22733333333295 + "x": 552.303, + "y": 127.22733 }, { "body": null, "index": 17, "isInternal": false, - "x": 554.4160000000002, - "y": 133.03233333333296 + "x": 554.416, + "y": 133.03233 }, { "angle": 0, @@ -4954,7 +4954,7 @@ "bounds": { "#": 548 }, - "circleRadius": 12.644504458161865, + "circleRadius": 12.6445, "collisionFilter": { "#": 551 }, @@ -4969,13 +4969,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 16, - "inertia": 150.14835557749134, - "inverseInertia": 0.006660079600298396, - "inverseMass": 2.0593487844899734, + "inertia": 150.14836, + "inverseInertia": 0.00666, + "inverseMass": 2.05935, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4855904, + "mass": 0.48559, "motion": 0, "parent": null, "position": { @@ -4997,7 +4997,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5033,28 +5033,28 @@ } ], { - "x": -0.9010093877027451, - "y": -0.43379958883282077 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6233938910669198, - "y": -0.7819079591489303 + "x": -0.62339, + "y": -0.78191 }, { - "x": -0.2226655662703444, - "y": -0.9748948895124575 + "x": -0.22267, + "y": -0.97489 }, { - "x": 0.2226655662703444, - "y": -0.9748948895124575 + "x": 0.22267, + "y": -0.97489 }, { - "x": 0.6233938910669198, - "y": -0.7819079591489303 + "x": 0.62339, + "y": -0.78191 }, { - "x": 0.9010093877027451, - "y": -0.43379958883282077 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -5069,12 +5069,12 @@ } }, { - "x": 599.0700000000002, - "y": 143.6233333333329 + "x": 599.07, + "y": 143.62333 }, { - "x": 574.4160000000002, - "y": 118.33333333333292 + "x": 574.416, + "y": 118.33333 }, { "category": 1, @@ -5091,16 +5091,16 @@ "y": 0 }, { - "x": 586.7430000000002, - "y": 130.97833333333293 + "x": 586.743, + "y": 130.97833 }, { "x": 0, "y": 0 }, { - "x": 586.7430000000002, - "y": 127.92277777777743 + "x": 586.743, + "y": 127.92278 }, { "endCol": 12, @@ -5124,7 +5124,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -5174,113 +5174,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.0700000000002, - "y": 133.79233333333292 + "x": 599.07, + "y": 133.79233 }, { "body": null, "index": 1, "isInternal": false, - "x": 596.6290000000001, - "y": 138.8623333333329 + "x": 596.629, + "y": 138.86233 }, { "body": null, "index": 2, "isInternal": false, - "x": 592.2290000000002, - "y": 142.37033333333292 + "x": 592.229, + "y": 142.37033 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.7430000000002, - "y": 143.6233333333329 + "x": 586.743, + "y": 143.62333 }, { "body": null, "index": 4, "isInternal": false, - "x": 581.2570000000002, - "y": 142.37033333333292 + "x": 581.257, + "y": 142.37033 }, { "body": null, "index": 5, "isInternal": false, - "x": 576.8570000000002, - "y": 138.8623333333329 + "x": 576.857, + "y": 138.86233 }, { "body": null, "index": 6, "isInternal": false, - "x": 574.4160000000002, - "y": 133.79233333333292 + "x": 574.416, + "y": 133.79233 }, { "body": null, "index": 7, "isInternal": false, - "x": 574.4160000000002, - "y": 128.16433333333293 + "x": 574.416, + "y": 128.16433 }, { "body": null, "index": 8, "isInternal": false, - "x": 576.8570000000002, - "y": 123.09433333333291 + "x": 576.857, + "y": 123.09433 }, { "body": null, "index": 9, "isInternal": false, - "x": 581.2570000000002, - "y": 119.58633333333292 + "x": 581.257, + "y": 119.58633 }, { "body": null, "index": 10, "isInternal": false, - "x": 586.7430000000002, - "y": 118.33333333333292 + "x": 586.743, + "y": 118.33333 }, { "body": null, "index": 11, "isInternal": false, - "x": 592.2290000000002, - "y": 119.58633333333292 + "x": 592.229, + "y": 119.58633 }, { "body": null, "index": 12, "isInternal": false, - "x": 596.6290000000001, - "y": 123.09433333333291 + "x": 596.629, + "y": 123.09433 }, { "body": null, "index": 13, "isInternal": false, - "x": 599.0700000000002, - "y": 128.16433333333293 + "x": 599.07, + "y": 128.16433 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1013.2448800000001, + "area": 1013.24488, "axes": { "#": 577 }, "bounds": { "#": 588 }, - "circleRadius": 18.10806755829904, + "circleRadius": 18.10807, "collisionFilter": { "#": 591 }, @@ -5295,13 +5295,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 17, - "inertia": 653.6311476673523, - "inverseInertia": 0.0015299148511645328, - "inverseMass": 0.9869282537109884, + "inertia": 653.63115, + "inverseInertia": 0.00153, + "inverseMass": 0.98693, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.01324488, + "mass": 1.01324, "motion": 0, "parent": null, "position": { @@ -5323,7 +5323,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555555207, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5368,40 +5368,40 @@ } ], { - "x": -0.95103925715127, - "y": -0.3090701075114839 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8089955390833857, - "y": -0.5878147818345351 + "x": -0.809, + "y": -0.58781 }, { - "x": -0.5878147818345351, - "y": -0.8089955390833857 + "x": -0.58781, + "y": -0.809 }, { - "x": -0.3090701075114839, - "y": -0.95103925715127 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.3090701075114839, - "y": -0.95103925715127 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5878147818345351, - "y": -0.8089955390833857 + "x": 0.58781, + "y": -0.809 }, { - "x": 0.8089955390833857, - "y": -0.5878147818345351 + "x": 0.809, + "y": -0.58781 }, { - "x": 0.95103925715127, - "y": -0.3090701075114839 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -5416,12 +5416,12 @@ } }, { - "x": 654.8400000000001, - "y": 154.10333333333298 + "x": 654.84, + "y": 154.10333 }, { - "x": 619.0700000000002, - "y": 118.33333333333296 + "x": 619.07, + "y": 118.33333 }, { "category": 1, @@ -5438,16 +5438,16 @@ "y": 0 }, { - "x": 636.9550000000002, - "y": 136.218333333333 + "x": 636.955, + "y": 136.21833 }, { "x": 0, "y": 0 }, { - "x": 636.9550000000002, - "y": 133.16277777777748 + "x": 636.955, + "y": 133.16278 }, { "endCol": 13, @@ -5471,7 +5471,7 @@ }, { "x": 0, - "y": 3.0555555555555207 + "y": 3.05556 }, [ { @@ -5539,155 +5539,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 654.8400000000001, - "y": 139.051333333333 + "x": 654.84, + "y": 139.05133 }, { "body": null, "index": 1, "isInternal": false, - "x": 653.0890000000002, - "y": 144.439333333333 + "x": 653.089, + "y": 144.43933 }, { "body": null, "index": 2, "isInternal": false, - "x": 649.7590000000001, - "y": 149.022333333333 + "x": 649.759, + "y": 149.02233 }, { "body": null, "index": 3, "isInternal": false, - "x": 645.1760000000002, - "y": 152.35233333333298 + "x": 645.176, + "y": 152.35233 }, { "body": null, "index": 4, "isInternal": false, - "x": 639.7880000000001, - "y": 154.10333333333298 + "x": 639.788, + "y": 154.10333 }, { "body": null, "index": 5, "isInternal": false, - "x": 634.1220000000002, - "y": 154.10333333333298 + "x": 634.122, + "y": 154.10333 }, { "body": null, "index": 6, "isInternal": false, - "x": 628.7340000000002, - "y": 152.35233333333298 + "x": 628.734, + "y": 152.35233 }, { "body": null, "index": 7, "isInternal": false, - "x": 624.1510000000002, - "y": 149.022333333333 + "x": 624.151, + "y": 149.02233 }, { "body": null, "index": 8, "isInternal": false, - "x": 620.8210000000001, - "y": 144.439333333333 + "x": 620.821, + "y": 144.43933 }, { "body": null, "index": 9, "isInternal": false, - "x": 619.0700000000002, - "y": 139.051333333333 + "x": 619.07, + "y": 139.05133 }, { "body": null, "index": 10, "isInternal": false, - "x": 619.0700000000002, - "y": 133.38533333333297 + "x": 619.07, + "y": 133.38533 }, { "body": null, "index": 11, "isInternal": false, - "x": 620.8210000000001, - "y": 127.99733333333296 + "x": 620.821, + "y": 127.99733 }, { "body": null, "index": 12, "isInternal": false, - "x": 624.1510000000002, - "y": 123.41433333333296 + "x": 624.151, + "y": 123.41433 }, { "body": null, "index": 13, "isInternal": false, - "x": 628.7340000000002, - "y": 120.08433333333296 + "x": 628.734, + "y": 120.08433 }, { "body": null, "index": 14, "isInternal": false, - "x": 634.1220000000002, - "y": 118.33333333333296 + "x": 634.122, + "y": 118.33333 }, { "body": null, "index": 15, "isInternal": false, - "x": 639.7880000000001, - "y": 118.33333333333296 + "x": 639.788, + "y": 118.33333 }, { "body": null, "index": 16, "isInternal": false, - "x": 645.1760000000002, - "y": 120.08433333333296 + "x": 645.176, + "y": 120.08433 }, { "body": null, "index": 17, "isInternal": false, - "x": 649.7590000000001, - "y": 123.41433333333296 + "x": 649.759, + "y": 123.41433 }, { "body": null, "index": 18, "isInternal": false, - "x": 653.0890000000002, - "y": 127.99733333333296 + "x": 653.089, + "y": 127.99733 }, { "body": null, "index": 19, "isInternal": false, - "x": 654.8400000000001, - "y": 133.38533333333297 + "x": 654.84, + "y": 133.38533 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1043.5045799999998, + "area": 1043.50458, "axes": { "#": 623 }, "bounds": { "#": 634 }, - "circleRadius": 18.37615740740741, + "circleRadius": 18.37616, "collisionFilter": { "#": 637 }, @@ -5702,13 +5702,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 18, - "inertia": 693.2543810769114, - "inverseInertia": 0.0014424719515606747, - "inverseMass": 0.9583091623804854, + "inertia": 693.25438, + "inverseInertia": 0.00144, + "inverseMass": 0.95831, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0435045799999998, + "mass": 1.0435, "motion": 0, "parent": null, "position": { @@ -5730,7 +5730,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5775,40 +5775,40 @@ } ], { - "x": -0.9510391812432063, - "y": -0.30907034108799836 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8090293436440933, - "y": -0.5877682546061905 + "x": -0.80903, + "y": -0.58777 }, { - "x": -0.5877682546061905, - "y": -0.8090293436440933 + "x": -0.58777, + "y": -0.80903 }, { - "x": -0.30907034108799836, - "y": -0.9510391812432063 + "x": -0.30907, + "y": -0.95104 }, { "x": 0, "y": -1 }, { - "x": 0.30907034108799836, - "y": -0.9510391812432063 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5877682546061905, - "y": -0.8090293436440933 + "x": 0.58777, + "y": -0.80903 }, { - "x": 0.8090293436440933, - "y": -0.5877682546061905 + "x": 0.80903, + "y": -0.58777 }, { - "x": 0.9510391812432063, - "y": -0.30907034108799836 + "x": 0.95104, + "y": -0.30907 }, { "x": 1, @@ -5823,12 +5823,12 @@ } }, { - "x": 711.1400000000001, - "y": 154.63333333333293 + "x": 711.14, + "y": 154.63333 }, { - "x": 674.8400000000001, - "y": 118.33333333333292 + "x": 674.84, + "y": 118.33333 }, { "category": 1, @@ -5845,16 +5845,16 @@ "y": 0 }, { - "x": 692.9900000000001, - "y": 136.48333333333292 + "x": 692.99, + "y": 136.48333 }, { "x": 0, "y": 0 }, { - "x": 692.9900000000001, - "y": 133.42777777777744 + "x": 692.99, + "y": 133.42778 }, { "endCol": 14, @@ -5878,7 +5878,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -5946,155 +5946,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 711.1400000000001, - "y": 139.35833333333292 + "x": 711.14, + "y": 139.35833 }, { "body": null, "index": 1, "isInternal": false, - "x": 709.3630000000002, - "y": 144.82633333333294 + "x": 709.363, + "y": 144.82633 }, { "body": null, "index": 2, "isInternal": false, - "x": 705.9840000000002, - "y": 149.47733333333292 + "x": 705.984, + "y": 149.47733 }, { "body": null, "index": 3, "isInternal": false, - "x": 701.3330000000001, - "y": 152.85633333333294 + "x": 701.333, + "y": 152.85633 }, { "body": null, "index": 4, "isInternal": false, - "x": 695.8650000000001, - "y": 154.63333333333293 + "x": 695.865, + "y": 154.63333 }, { "body": null, "index": 5, "isInternal": false, - "x": 690.1150000000001, - "y": 154.63333333333293 + "x": 690.115, + "y": 154.63333 }, { "body": null, "index": 6, "isInternal": false, - "x": 684.6470000000002, - "y": 152.85633333333294 + "x": 684.647, + "y": 152.85633 }, { "body": null, "index": 7, "isInternal": false, - "x": 679.9960000000001, - "y": 149.47733333333292 + "x": 679.996, + "y": 149.47733 }, { "body": null, "index": 8, "isInternal": false, - "x": 676.6170000000001, - "y": 144.82633333333294 + "x": 676.617, + "y": 144.82633 }, { "body": null, "index": 9, "isInternal": false, - "x": 674.8400000000001, - "y": 139.35833333333292 + "x": 674.84, + "y": 139.35833 }, { "body": null, "index": 10, "isInternal": false, - "x": 674.8400000000001, - "y": 133.60833333333292 + "x": 674.84, + "y": 133.60833 }, { "body": null, "index": 11, "isInternal": false, - "x": 676.6170000000001, - "y": 128.14033333333293 + "x": 676.617, + "y": 128.14033 }, { "body": null, "index": 12, "isInternal": false, - "x": 679.9960000000001, - "y": 123.48933333333292 + "x": 679.996, + "y": 123.48933 }, { "body": null, "index": 13, "isInternal": false, - "x": 684.6470000000002, - "y": 120.11033333333292 + "x": 684.647, + "y": 120.11033 }, { "body": null, "index": 14, "isInternal": false, - "x": 690.1150000000001, - "y": 118.33333333333292 + "x": 690.115, + "y": 118.33333 }, { "body": null, "index": 15, "isInternal": false, - "x": 695.8650000000001, - "y": 118.33333333333292 + "x": 695.865, + "y": 118.33333 }, { "body": null, "index": 16, "isInternal": false, - "x": 701.3330000000001, - "y": 120.11033333333292 + "x": 701.333, + "y": 120.11033 }, { "body": null, "index": 17, "isInternal": false, - "x": 705.9840000000002, - "y": 123.48933333333292 + "x": 705.984, + "y": 123.48933 }, { "body": null, "index": 18, "isInternal": false, - "x": 709.3630000000002, - "y": 128.14033333333293 + "x": 709.363, + "y": 128.14033 }, { "body": null, "index": 19, "isInternal": false, - "x": 711.1400000000001, - "y": 133.60833333333292 + "x": 711.14, + "y": 133.60833 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 804.3326420000001, + "area": 804.33264, "axes": { "#": 669 }, "bounds": { "#": 679 }, - "circleRadius": 16.16482338820302, + "circleRadius": 16.16482, "collisionFilter": { "#": 682 }, @@ -6109,13 +6109,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 19, - "inertia": 411.89626816350983, - "inverseInertia": 0.0024277957274500763, - "inverseMass": 1.243266713027419, + "inertia": 411.89627, + "inverseInertia": 0.00243, + "inverseMass": 1.24327, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8043326420000001, + "mass": 0.80433, "motion": 0, "parent": null, "position": { @@ -6137,7 +6137,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6179,36 +6179,36 @@ } ], { - "x": -0.939689356498254, - "y": -0.3420291117491275 + "x": -0.93969, + "y": -0.34203 }, { - "x": -0.766129298042305, - "y": -0.6426864699689927 + "x": -0.76613, + "y": -0.64269 }, { - "x": -0.4999897122177319, - "y": -0.8660313433568266 + "x": -0.49999, + "y": -0.86603 }, { - "x": -0.17366340060749713, - "y": -0.9848050686757457 + "x": -0.17366, + "y": -0.98481 }, { - "x": 0.17366340060749713, - "y": -0.9848050686757457 + "x": 0.17366, + "y": -0.98481 }, { - "x": 0.4999897122177319, - "y": -0.8660313433568266 + "x": 0.49999, + "y": -0.86603 }, { - "x": 0.766129298042305, - "y": -0.6426864699689927 + "x": 0.76613, + "y": -0.64269 }, { - "x": 0.939689356498254, - "y": -0.3420291117491275 + "x": 0.93969, + "y": -0.34203 }, { "x": 1, @@ -6223,12 +6223,12 @@ } }, { - "x": 762.9780000000001, - "y": 150.6633333333329 + "x": 762.978, + "y": 150.66333 }, { - "x": 731.1400000000001, - "y": 118.33333333333292 + "x": 731.14, + "y": 118.33333 }, { "category": 1, @@ -6245,16 +6245,16 @@ "y": 0 }, { - "x": 747.0590000000001, - "y": 134.4983333333329 + "x": 747.059, + "y": 134.49833 }, { "x": 0, "y": 0 }, { - "x": 747.0590000000001, - "y": 131.44277777777742 + "x": 747.059, + "y": 131.44278 }, { "endCol": 15, @@ -6278,7 +6278,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -6340,141 +6340,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 762.9780000000001, - "y": 137.30533333333292 + "x": 762.978, + "y": 137.30533 }, { "body": null, "index": 1, "isInternal": false, - "x": 761.0580000000001, - "y": 142.5803333333329 + "x": 761.058, + "y": 142.58033 }, { "body": null, "index": 2, "isInternal": false, "x": 757.45, - "y": 146.88133333333292 + "y": 146.88133 }, { "body": null, "index": 3, "isInternal": false, - "x": 752.5880000000001, - "y": 149.6883333333329 + "x": 752.588, + "y": 149.68833 }, { "body": null, "index": 4, "isInternal": false, - "x": 747.0590000000001, - "y": 150.6633333333329 + "x": 747.059, + "y": 150.66333 }, { "body": null, "index": 5, "isInternal": false, - "x": 741.5300000000001, - "y": 149.6883333333329 + "x": 741.53, + "y": 149.68833 }, { "body": null, "index": 6, "isInternal": false, - "x": 736.6680000000001, - "y": 146.88133333333292 + "x": 736.668, + "y": 146.88133 }, { "body": null, "index": 7, "isInternal": false, - "x": 733.0600000000001, - "y": 142.5803333333329 + "x": 733.06, + "y": 142.58033 }, { "body": null, "index": 8, "isInternal": false, - "x": 731.1400000000001, - "y": 137.30533333333292 + "x": 731.14, + "y": 137.30533 }, { "body": null, "index": 9, "isInternal": false, - "x": 731.1400000000001, - "y": 131.69133333333292 + "x": 731.14, + "y": 131.69133 }, { "body": null, "index": 10, "isInternal": false, - "x": 733.0600000000001, - "y": 126.41633333333291 + "x": 733.06, + "y": 126.41633 }, { "body": null, "index": 11, "isInternal": false, - "x": 736.6680000000001, - "y": 122.11533333333291 + "x": 736.668, + "y": 122.11533 }, { "body": null, "index": 12, "isInternal": false, - "x": 741.5300000000001, - "y": 119.30833333333291 + "x": 741.53, + "y": 119.30833 }, { "body": null, "index": 13, "isInternal": false, - "x": 747.0590000000001, - "y": 118.33333333333292 + "x": 747.059, + "y": 118.33333 }, { "body": null, "index": 14, "isInternal": false, - "x": 752.5880000000001, - "y": 119.30833333333291 + "x": 752.588, + "y": 119.30833 }, { "body": null, "index": 15, "isInternal": false, "x": 757.45, - "y": 122.11533333333291 + "y": 122.11533 }, { "body": null, "index": 16, "isInternal": false, - "x": 761.0580000000001, - "y": 126.41633333333291 + "x": 761.058, + "y": 126.41633 }, { "body": null, "index": 17, "isInternal": false, - "x": 762.9780000000001, - "y": 131.69133333333292 + "x": 762.978, + "y": 131.69133 }, { - "angle": 0.0002487209126334297, - "anglePrev": 0.00022207674163698433, - "angularSpeed": 0.000026644170996445367, - "angularVelocity": 0.000026644170996445367, - "area": 580.047414, + "angle": 0.00025, + "anglePrev": 0.00022, + "angularSpeed": 0.00003, + "angularVelocity": 0.00003, + "area": 580.04741, "axes": { "#": 712 }, "bounds": { "#": 720 }, - "circleRadius": 13.81974451303155, + "circleRadius": 13.81974, "collisionFilter": { "#": 723 }, @@ -6489,13 +6489,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 20, - "inertia": 214.24336698195748, - "inverseInertia": 0.004667589079125213, - "inverseMass": 1.7239969972523659, + "inertia": 214.24337, + "inverseInertia": 0.00467, + "inverseMass": 1.724, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.580047414, + "mass": 0.58005, "motion": 0, "parent": null, "position": { @@ -6517,7 +6517,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.054808194545632, + "speed": 3.05481, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6553,32 +6553,32 @@ } ], { - "x": -0.900886677195351, - "y": -0.43405436854375556 + "x": -0.90089, + "y": -0.43405 }, { - "x": -0.6232904018779594, - "y": -0.7819904570561023 + "x": -0.62329, + "y": -0.78199 }, { - "x": -0.22234831856922888, - "y": -0.9749672944409138 + "x": -0.22235, + "y": -0.97497 }, { - "x": 0.2228332805498855, - "y": -0.9748565684650108 + "x": 0.22283, + "y": -0.97486 }, { - "x": 0.6236793195061205, - "y": -0.781680309602578 + "x": 0.62368, + "y": -0.78168 }, { - "x": 0.9011024825223327, - "y": -0.4336061761461531 + "x": 0.9011, + "y": -0.43361 }, { - "x": 0.9999999690689536, - "y": 0.00024872091006903024 + "x": 1, + "y": 0.00025 }, { "max": { @@ -6589,12 +6589,12 @@ } }, { - "x": 47.86162546987121, - "y": 227.87116572168307 + "x": 47.86163, + "y": 227.87117 }, { - "x": 20.91402250457613, - "y": 197.17635838297187 + "x": 20.91402, + "y": 197.17636 }, { "category": 1, @@ -6611,16 +6611,16 @@ "y": 0 }, { - "x": 34.387786904640606, - "y": 210.9963579555048 + "x": 34.38779, + "y": 210.99636 }, { - "x": 0.017179852004130775, + "x": 0.01718, "y": 0 }, { - "x": 34.38771273947449, - "y": 207.94154976185948 + "x": 34.38771, + "y": 207.94155 }, { "endCol": 0, @@ -6643,8 +6643,8 @@ "yScale": 1 }, { - "x": 0.00007416516611868929, - "y": 3.054808193645335 + "x": 0.00007, + "y": 3.05481 }, [ { @@ -6694,113 +6694,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 47.86002167110816, - "y": 214.0747088772132 + "x": 47.86002, + "y": 214.07471 }, { "body": null, "index": 1, "isInternal": false, - "x": 45.19064359106949, - "y": 219.61504511843623 + "x": 45.19064, + "y": 219.61505 }, { "body": null, "index": 2, "isInternal": false, - "x": 40.380689895126785, - "y": 223.4488489009591 + "x": 40.38069, + "y": 223.44885 }, { "body": null, "index": 3, "isInternal": false, - "x": 34.38434958166345, - "y": 224.81635752803774 + "x": 34.38435, + "y": 224.81636 }, { "body": null, "index": 4, "isInternal": false, - "x": 28.388690266051885, - "y": 223.44586623980555 + "x": 28.38869, + "y": 223.44587 }, { "body": null, "index": 5, "isInternal": false, - "x": 23.580644259489407, - "y": 219.60967025956964 + "x": 23.58064, + "y": 219.60967 }, { "body": null, "index": 6, "isInternal": false, - "x": 20.91402250457613, - "y": 214.06800684357052 + "x": 20.91402, + "y": 214.06801 }, { "body": null, "index": 7, "isInternal": false, - "x": 20.91555213817306, - "y": 207.9180070337964 + "x": 20.91555, + "y": 207.91801 }, { "body": null, "index": 8, "isInternal": false, - "x": 23.584930218211717, - "y": 202.37767079257338 + "x": 23.58493, + "y": 202.37767 }, { "body": null, "index": 9, "isInternal": false, - "x": 28.394883914154427, - "y": 198.54386701005052 + "x": 28.39488, + "y": 198.54387 }, { "body": null, "index": 10, "isInternal": false, - "x": 34.39122422761776, - "y": 197.17635838297187 + "x": 34.39122, + "y": 197.17636 }, { "body": null, "index": 11, "isInternal": false, - "x": 40.38688354322932, - "y": 198.54684967120406 + "x": 40.38688, + "y": 198.54685 }, { "body": null, "index": 12, "isInternal": false, - "x": 45.19492954979181, - "y": 202.38304565143997 + "x": 45.19493, + "y": 202.38305 }, { "body": null, "index": 13, "isInternal": false, - "x": 47.86155130470509, - "y": 207.9247090674391 + "x": 47.86155, + "y": 207.92471 }, { - "angle": 0.000012595589766829347, - "anglePrev": 0.000010483311643114609, - "angularSpeed": 0.0000021122781237147387, - "angularVelocity": 0.0000021122781237147387, - "area": 369.23864399999997, + "angle": 0.00001, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 369.23864, "axes": { "#": 749 }, "bounds": { "#": 756 }, - "circleRadius": 11.09400720164609, + "circleRadius": 11.09401, "collisionFilter": { "#": 759 }, @@ -6815,13 +6815,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 21, - "inertia": 86.83240242313165, - "inverseInertia": 0.011516438243030872, - "inverseMass": 2.7082755725860594, + "inertia": 86.8324, + "inverseInertia": 0.01152, + "inverseMass": 2.70828, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.36923864399999995, + "mass": 0.36924, "motion": 0, "parent": null, "position": { @@ -6843,7 +6843,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055500955257989, + "speed": 3.0555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6876,28 +6876,28 @@ } ], { - "x": -0.8660749134629289, - "y": -0.49991423691487286 + "x": -0.86607, + "y": -0.49991 }, { - "x": -0.4998924193076188, - "y": -0.8660875066174177 + "x": -0.49989, + "y": -0.86609 }, { - "x": 0.000012595589766496297, - "y": -0.9999999999206753 + "x": 0.00001, + "y": -1 }, { - "x": 0.49991423691487286, - "y": -0.8660749134629289 + "x": 0.49991, + "y": -0.86607 }, { - "x": 0.8660875066174177, - "y": -0.4998924193076188 + "x": 0.86609, + "y": -0.49989 }, { - "x": 0.9999999999206753, - "y": 0.000012595589766496297 + "x": 1, + "y": 0.00001 }, { "max": { @@ -6908,12 +6908,12 @@ } }, { - "x": 90.59849170249701, - "y": 226.15533451907825 + "x": 90.59849, + "y": 226.15533 }, { - "x": 69.16640120728013, - "y": 201.66776124169797 + "x": 69.1664, + "y": 201.66776 }, { "category": 1, @@ -6930,16 +6930,16 @@ "y": 0 }, { - "x": 79.8824373683683, - "y": 212.38379740278614 + "x": 79.88244, + "y": 212.3838 }, { - "x": 0.08075332447796733, - "y": 0.051826180218307066 + "x": 0.08075, + "y": 0.05183 }, { - "x": 79.88241919532776, - "y": 209.3282964475822 + "x": 79.88242, + "y": 209.3283 }, { "endCol": 1, @@ -6962,8 +6962,8 @@ "yScale": 1 }, { - "x": 0.00001817304054441138, - "y": 3.0555009552039456 + "x": 0.00002, + "y": 3.0555 }, [ { @@ -7007,99 +7007,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 90.59840120558003, - "y": 215.25493237689835 + "x": 90.5984, + "y": 215.25493 }, { "body": null, "index": 1, "isInternal": false, - "x": 87.72733855534432, - "y": 220.22889621456557 + "x": 87.72734, + "y": 220.2289 }, { "body": null, "index": 2, "isInternal": false, - "x": 82.75330239380061, - "y": 223.0998335638743 + "x": 82.7533, + "y": 223.09983 }, { "body": null, "index": 3, "isInternal": false, - "x": 77.01130239425609, - "y": 223.09976123999792 + "x": 77.0113, + "y": 223.09976 }, { "body": null, "index": 4, "isInternal": false, - "x": 72.03733855658888, - "y": 220.22869858976213 + "x": 72.03734, + "y": 220.2287 }, { "body": null, "index": 5, "isInternal": false, - "x": 69.16640120728013, - "y": 215.25466242821847 + "x": 69.1664, + "y": 215.25466 }, { "body": null, "index": 6, "isInternal": false, - "x": 69.16647353115657, - "y": 209.51266242867393 + "x": 69.16647, + "y": 209.51266 }, { "body": null, "index": 7, "isInternal": false, - "x": 72.03753618139228, - "y": 204.53869859100672 + "x": 72.03754, + "y": 204.5387 }, { "body": null, "index": 8, "isInternal": false, - "x": 77.01157234293599, - "y": 201.66776124169797 + "x": 77.01157, + "y": 201.66776 }, { "body": null, "index": 9, "isInternal": false, - "x": 82.75357234248051, - "y": 201.66783356557437 + "x": 82.75357, + "y": 201.66783 }, { "body": null, "index": 10, "isInternal": false, - "x": 87.72753618014772, - "y": 204.53889621581015 + "x": 87.72754, + "y": 204.5389 }, { "body": null, "index": 11, "isInternal": false, - "x": 90.59847352945647, - "y": 209.51293237735382 + "x": 90.59847, + "y": 209.51293 }, { - "angle": 0.000006258062560878014, - "anglePrev": 0.000005319372408030739, - "angularSpeed": 9.386901528472751e-7, - "angularVelocity": 9.386901528472751e-7, - "area": 1186.2008119999998, + "angle": 0.00001, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1186.20081, "axes": { "#": 783 }, "bounds": { "#": 794 }, - "circleRadius": 19.59254972565158, + "circleRadius": 19.59255, "collisionFilter": { "#": 797 }, @@ -7114,13 +7114,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 22, - "inertia": 895.8191409307356, - "inverseInertia": 0.0011162967549019135, - "inverseMass": 0.843027580055307, + "inertia": 895.81914, + "inverseInertia": 0.00112, + "inverseMass": 0.84303, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1862008119999998, + "mass": 1.1862, "motion": 0, "parent": null, "position": { @@ -7142,7 +7142,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555183910808723, + "speed": 3.05552, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7187,44 +7187,44 @@ } ], { - "x": -0.9510680937404519, - "y": -0.30898136039072555 + "x": -0.95107, + "y": -0.30898 }, { - "x": -0.8090074507188261, - "y": -0.587798387783964 + "x": -0.80901, + "y": -0.5878 }, { - "x": -0.5877882620994465, - "y": -0.8090148076136268 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.30896945667926373, - "y": -0.9510719609153248 + "x": -0.30897, + "y": -0.95107 }, { - "x": 0.0000062580625608371675, - "y": -0.9999999999804186 + "x": 0.00001, + "y": -1 }, { - "x": 0.30898136039072555, - "y": -0.9510680937404519 + "x": 0.30898, + "y": -0.95107 }, { - "x": 0.587798387783964, - "y": -0.8090074507188261 + "x": 0.5878, + "y": -0.80901 }, { - "x": 0.8090148076136268, - "y": -0.5877882620994465 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510719609153248, - "y": -0.30896945667926373 + "x": 0.95107, + "y": -0.30897 }, { - "x": 0.9999999999804186, - "y": 0.0000062580625608371675 + "x": 1, + "y": 0.00001 }, { "max": { @@ -7235,12 +7235,12 @@ } }, { - "x": 85.99248970406279, - "y": 264.29547104441514 + "x": 85.99249, + "y": 264.29547 }, { - "x": 47.29042547885447, - "y": 222.53791429227803 + "x": 47.29043, + "y": 222.53791 }, { "category": 1, @@ -7257,16 +7257,16 @@ "y": 0 }, { - "x": 66.64144465943728, - "y": 241.88893347286088 + "x": 66.64144, + "y": 241.88893 }, { - "x": -0.03660927910417396, - "y": 0.1126885572106847 + "x": -0.03661, + "y": 0.11269 }, { - "x": 66.6414187953946, - "y": 238.83341508188948 + "x": 66.64142, + "y": 238.83342 }, { "endCol": 1, @@ -7289,8 +7289,8 @@ "yScale": 1 }, { - "x": 0.000025864042683565458, - "y": 3.0555183909714065 + "x": 0.00003, + "y": 3.05552 }, [ { @@ -7358,155 +7358,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 85.99242547809659, - "y": 244.95405457256942 + "x": 85.99243, + "y": 244.95405 }, { "body": null, "index": 1, "isInternal": false, - "x": 84.09838899362896, - "y": 250.78404271968483 + "x": 84.09839, + "y": 250.78404 }, { "body": null, "index": 2, "isInternal": false, - "x": 80.49535795996728, - "y": 255.74302017178832 + "x": 80.49536, + "y": 255.74302 }, { "body": null, "index": 3, "isInternal": false, - "x": 75.53633541226498, - "y": 259.34598913798555 + "x": 75.53634, + "y": 259.34599 }, { "body": null, "index": 4, "isInternal": false, - "x": 69.70632355960866, - "y": 261.2399526534437 + "x": 69.70632, + "y": 261.23995 }, { "body": null, "index": 5, "isInternal": false, - "x": 63.576323559728685, - "y": 261.2399142915203 + "x": 63.57632, + "y": 261.23991 }, { "body": null, "index": 6, "isInternal": false, - "x": 57.74633541261336, - "y": 259.3458778070526 + "x": 57.74634, + "y": 259.34588 }, { "body": null, "index": 7, "isInternal": false, - "x": 52.78735796050986, - "y": 255.74284677339085 + "x": 52.78736, + "y": 255.74285 }, { "body": null, "index": 8, "isInternal": false, - "x": 49.184388994312656, - "y": 250.7838242256886 + "x": 49.18439, + "y": 250.78382 }, { "body": null, "index": 9, "isInternal": false, - "x": 47.29042547885447, - "y": 244.95381237303224 + "x": 47.29043, + "y": 244.95381 }, { "body": null, "index": 10, "isInternal": false, - "x": 47.29046384077795, - "y": 238.82381237315235 + "x": 47.29046, + "y": 238.82381 }, { "body": null, "index": 11, "isInternal": false, - "x": 49.18450032524562, - "y": 232.99382422603688 + "x": 49.1845, + "y": 232.99382 }, { "body": null, "index": 12, "isInternal": false, - "x": 52.78753135890729, - "y": 228.0348467739334 + "x": 52.78753, + "y": 228.03485 }, { "body": null, "index": 13, "isInternal": false, - "x": 57.74655390660959, - "y": 224.4318778077362 + "x": 57.74655, + "y": 224.43188 }, { "body": null, "index": 14, "isInternal": false, - "x": 63.57656575926592, - "y": 222.53791429227803 + "x": 63.57657, + "y": 222.53791 }, { "body": null, "index": 15, "isInternal": false, - "x": 69.70656575914586, - "y": 222.53795265420155 + "x": 69.70657, + "y": 222.53795 }, { "body": null, "index": 16, "isInternal": false, - "x": 75.53655390626122, - "y": 224.4319891386692 + "x": 75.53655, + "y": 224.43199 }, { "body": null, "index": 17, "isInternal": false, - "x": 80.49553135836472, - "y": 228.03502017233086 + "x": 80.49553, + "y": 228.03502 }, { "body": null, "index": 18, "isInternal": false, - "x": 84.0985003245619, - "y": 232.99404272003312 + "x": 84.0985, + "y": 232.99404 }, { "body": null, "index": 19, "isInternal": false, - "x": 85.99246384002011, - "y": 238.82405457268953 + "x": 85.99246, + "y": 238.82405 }, { - "angle": -4.782038113542481e-7, - "anglePrev": -8.695956752527612e-7, - "angularSpeed": 3.9139186389851306e-7, - "angularVelocity": 3.9139186389851306e-7, - "area": 585.3796979999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 585.3797, "axes": { "#": 829 }, "bounds": { "#": 837 }, - "circleRadius": 13.883273319615911, + "circleRadius": 13.88327, "collisionFilter": { "#": 840 }, @@ -7521,13 +7521,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 23, - "inertia": 218.2004829364277, - "inverseInertia": 0.004582941277409308, - "inverseMass": 1.7082929309242976, + "inertia": 218.20048, + "inverseInertia": 0.00458, + "inverseMass": 1.70829, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.5853796979999999, + "mass": 0.58538, "motion": 0, "parent": null, "position": { @@ -7549,7 +7549,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055567121335165, + "speed": 3.05557, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7585,32 +7585,32 @@ } ], { - "x": -0.9009643875220815, - "y": -0.4338930426003162 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.6235103134786474, - "y": -0.7818151245567965 + "x": -0.62351, + "y": -0.78182 }, { - "x": -0.22253083131330498, - "y": -0.974925653121821 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.222529898886877, - "y": -0.9749258659515582 + "x": 0.22253, + "y": -0.97493 }, { - "x": 0.6235095657444175, - "y": -0.7818157208864553 + "x": 0.62351, + "y": -0.78182 }, { - "x": 0.9009639725430562, - "y": -0.43389390428932567 + "x": 0.90096, + "y": -0.43389 }, { - "x": 0.9999999999998856, - "y": -4.782038113542301e-7 + "x": 1, + "y": 0 }, { "max": { @@ -7621,12 +7621,12 @@ } }, { - "x": 229.31252805855925, - "y": 235.43877841012517 + "x": 229.31253, + "y": 235.43878 }, { - "x": 202.24249900259824, - "y": 204.61721128890466 + "x": 202.2425, + "y": 204.61721 }, { "category": 1, @@ -7643,16 +7643,16 @@ "y": 0 }, { - "x": 215.77750047976826, - "y": 218.50021128890305 + "x": 215.7775, + "y": 218.50021 }, { - "x": -6.75800006323886e-8, - "y": 0.6140821813002798 + "x": 0, + "y": 0.61408 }, { - "x": 215.7774743781473, - "y": 215.44464416767937 + "x": 215.77747, + "y": 215.44464 }, { "endCol": 4, @@ -7675,8 +7675,8 @@ "yScale": 1 }, { - "x": 0.000026101620960616856, - "y": 3.055567121223681 + "x": 0.00003, + "y": 3.05557 }, [ { @@ -7726,105 +7726,105 @@ "body": null, "index": 0, "isInternal": false, - "x": 229.3125019569383, - "y": 221.58920481641408 + "x": 229.3125, + "y": 221.5892 }, { "body": null, "index": 1, "isInternal": false, - "x": 226.63150461909922, - "y": 227.15620609847792 + "x": 226.6315, + "y": 227.15621 }, { "body": null, "index": 2, "isInternal": false, - "x": 221.80150646114086, - "y": 231.0082084082019 + "x": 221.80151, + "y": 231.00821 }, { "body": null, "index": 3, "isInternal": false, - "x": 215.77750711867176, - "y": 232.3832112889015 + "x": 215.77751, + "y": 232.38321 }, { "body": null, "index": 4, "isInternal": false, - "x": 209.75350646114222, - "y": 231.00821416960136 + "x": 209.75351, + "y": 231.00821 }, { "body": null, "index": 5, "isInternal": false, - "x": 204.9235046191017, - "y": 227.15621647932625 + "x": 204.9235, + "y": 227.15622 }, { "body": null, "index": 6, "isInternal": false, - "x": 202.24250195694142, - "y": 221.58921776139127 + "x": 202.2425, + "y": 221.58922 }, { "body": null, "index": 7, "isInternal": false, - "x": 202.24249900259824, - "y": 215.411217761392 + "x": 202.2425, + "y": 215.41122 }, { "body": null, "index": 8, "isInternal": false, - "x": 204.9234963404373, - "y": 209.84421647932817 + "x": 204.9235, + "y": 209.84422 }, { "body": null, "index": 9, "isInternal": false, - "x": 209.75349449839567, - "y": 205.99221416960424 + "x": 209.75349, + "y": 205.99221 }, { "body": null, "index": 10, "isInternal": false, - "x": 215.77749384086476, - "y": 204.61721128890466 + "x": 215.77749, + "y": 204.61721 }, { "body": null, "index": 11, "isInternal": false, - "x": 221.8014944983943, - "y": 205.99220840820473 + "x": 221.80149, + "y": 205.99221 }, { "body": null, "index": 12, "isInternal": false, - "x": 226.63149634043484, - "y": 209.84420609847984 + "x": 226.6315, + "y": 209.84421 }, { "body": null, "index": 13, "isInternal": false, - "x": 229.3124990025951, - "y": 215.41120481641482 + "x": 229.3125, + "y": 215.4112 }, { - "angle": -0.0000280389950519639, - "anglePrev": -0.00001619647670098767, - "angularSpeed": 0.000011842518350976231, - "angularVelocity": -0.000011842518350976231, + "angle": -0.00003, + "anglePrev": -0.00002, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, "area": 1148.07426, "axes": { "#": 866 @@ -7832,7 +7832,7 @@ "bounds": { "#": 877 }, - "circleRadius": 19.274819958847736, + "circleRadius": 19.27482, "collisionFilter": { "#": 880 }, @@ -7847,13 +7847,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 24, - "inertia": 839.1582416552851, - "inverseInertia": 0.0011916703553163535, - "inverseMass": 0.8710237959694349, + "inertia": 839.15824, + "inverseInertia": 0.00119, + "inverseMass": 0.87102, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.14807426, + "mass": 1.14807, "motion": 0, "parent": null, "position": { @@ -7875,7 +7875,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0556080083015127, + "speed": 3.05561, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7920,44 +7920,44 @@ } ], { - "x": -0.9510524810878795, - "y": -0.3090294131900531 + "x": -0.95105, + "y": -0.30903 }, { - "x": -0.8089604834334853, - "y": -0.5878630250688187 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5879083890224409, - "y": -0.8089275159846147 + "x": -0.58791, + "y": -0.80893 }, { - "x": -0.30908274581573913, - "y": -0.9510351498441072 + "x": -0.30908, + "y": -0.95104 }, { - "x": -0.00002803899504828993, - "y": -0.9999999996069076 + "x": -0.00003, + "y": -1 }, { - "x": 0.3090294131900531, - "y": -0.9510524810878795 + "x": 0.30903, + "y": -0.95105 }, { - "x": 0.5878630250688187, - "y": -0.8089604834334853 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089275159846147, - "y": -0.5879083890224409 + "x": 0.80893, + "y": -0.58791 }, { - "x": 0.9510351498441072, - "y": -0.30908274581573913 + "x": 0.95104, + "y": -0.30908 }, { - "x": 0.9999999996069076, - "y": -0.00002803899504828993 + "x": 1, + "y": -0.00003 }, { "max": { @@ -7968,12 +7968,12 @@ } }, { - "x": 286.3672203592304, - "y": 257.25198342333357 + "x": 286.36722, + "y": 257.25198 }, { - "x": 248.29077456510674, - "y": 216.12020636739055 + "x": 248.29077, + "y": 216.12021 }, { "category": 1, @@ -7990,16 +7990,16 @@ "y": 0 }, { - "x": 267.3288590951931, - "y": 235.15829089747697 + "x": 267.32886, + "y": 235.15829 }, { - "x": 0.2819496571721306, - "y": 0.15732032989603598 + "x": 0.28195, + "y": 0.15732 }, { - "x": 267.3285823612421, - "y": 232.1026829017068 + "x": 267.32858, + "y": 232.10268 }, { "endCol": 5, @@ -8022,8 +8022,8 @@ "yScale": 1 }, { - "x": 0.00027673395095462183, - "y": 3.0556079957701803 + "x": 0.00028, + "y": 3.05561 }, [ { @@ -8091,155 +8091,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 286.3669436252794, - "y": 238.17275708990408 + "x": 286.36694, + "y": 238.17276 }, { "body": null, "index": 1, "isInternal": false, - "x": 284.50310445768775, - "y": 243.90880935233605 + "x": 284.5031, + "y": 243.90881 }, { "body": null, "index": 2, "isInternal": false, - "x": 280.958241233299, - "y": 248.786908748656 + "x": 280.95824, + "y": 248.78691 }, { "body": null, "index": 3, "isInternal": false, - "x": 276.08034063345417, - "y": 252.33204552148035 + "x": 276.08034, + "y": 252.33205 }, { "body": null, "index": 4, "isInternal": false, - "x": 270.34439290039563, - "y": 254.19620635242322 + "x": 270.34439, + "y": 254.19621 }, { "body": null, "index": 5, "isInternal": false, - "x": 264.314392902766, - "y": 254.1963754275634 + "x": 264.31439, + "y": 254.19638 }, { "body": null, "index": 6, "isInternal": false, - "x": 258.57834064033403, - "y": 252.33253625997168 + "x": 258.57834, + "y": 252.33254 }, { "body": null, "index": 7, "isInternal": false, - "x": 253.7002412440141, - "y": 248.78767303558303 + "x": 253.70024, + "y": 248.78767 }, { "body": null, "index": 8, "isInternal": false, - "x": 250.15510447118976, - "y": 243.90977243573795 + "x": 250.1551, + "y": 243.90977 }, { "body": null, "index": 9, "isInternal": false, - "x": 248.2909436402469, - "y": 238.17382470267952 + "x": 248.29094, + "y": 238.17382 }, { "body": null, "index": 10, "isInternal": false, - "x": 248.29077456510674, - "y": 232.1438247050499 + "x": 248.29077, + "y": 232.14382 }, { "body": null, "index": 11, "isInternal": false, - "x": 250.15461373269844, - "y": 226.4077724426179 + "x": 250.15461, + "y": 226.40777 }, { "body": null, "index": 12, "isInternal": false, - "x": 253.6994769570871, - "y": 221.52967304629794 + "x": 253.69948, + "y": 221.52967 }, { "body": null, "index": 13, "isInternal": false, - "x": 258.5773775569321, - "y": 217.9845362734736 + "x": 258.57738, + "y": 217.98454 }, { "body": null, "index": 14, "isInternal": false, - "x": 264.31332528999053, - "y": 216.12037544253073 + "x": 264.31333, + "y": 216.12038 }, { "body": null, "index": 15, "isInternal": false, - "x": 270.3433252876202, - "y": 216.12020636739055 + "x": 270.34333, + "y": 216.12021 }, { "body": null, "index": 16, "isInternal": false, - "x": 276.07937755005213, - "y": 217.98404553498227 + "x": 276.07938, + "y": 217.98405 }, { "body": null, "index": 17, "isInternal": false, - "x": 280.957476946372, - "y": 221.52890875937092 + "x": 280.95748, + "y": 221.52891 }, { "body": null, "index": 18, "isInternal": false, - "x": 284.5026137191964, - "y": 226.406809359216 + "x": 284.50261, + "y": 226.40681 }, { "body": null, "index": 19, "isInternal": false, - "x": 286.3667745501393, - "y": 232.14275709227445 + "x": 286.36677, + "y": 232.14276 }, { - "angle": -0.0000040564381810375525, - "anglePrev": -0.0000030341262709724655, - "angularSpeed": 0.0000010223119100650874, - "angularVelocity": -0.0000010223119100650874, - "area": 813.928944, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 813.92894, "axes": { "#": 912 }, "bounds": { "#": 922 }, - "circleRadius": 16.261016803840878, + "circleRadius": 16.26102, "collisionFilter": { "#": 925 }, @@ -8254,13 +8254,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 25, - "inertia": 421.78337188051313, - "inverseInertia": 0.002370885309066403, - "inverseMass": 1.2286084766632897, + "inertia": 421.78337, + "inverseInertia": 0.00237, + "inverseMass": 1.22861, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.813928944, + "mass": 0.81393, "motion": 0, "parent": null, "position": { @@ -8282,7 +8282,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0554894646330317, + "speed": 3.05549, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8324,40 +8324,40 @@ } ], { - "x": -0.9396706763784064, - "y": -0.34208042907267816 + "x": -0.93967, + "y": -0.34208 }, { - "x": -0.7660422552672272, - "y": -0.6427902170577119 + "x": -0.76604, + "y": -0.64279 }, { - "x": -0.4999712596912281, - "y": -0.8660419963735979 + "x": -0.49997, + "y": -0.86604 }, { - "x": -0.1736984220514169, - "y": -0.9847988922500104 + "x": -0.1737, + "y": -0.9848 }, { - "x": 0.17369043249404637, - "y": -0.9848003014114236 + "x": 0.17369, + "y": -0.9848 }, { - "x": 0.4999642335831334, - "y": -0.8660460525501114 + "x": 0.49996, + "y": -0.86605 }, { - "x": 0.7660370403644595, - "y": -0.6427964318426632 + "x": 0.76604, + "y": -0.6428 }, { - "x": 0.9396679010912555, - "y": -0.342088052493439 + "x": 0.93967, + "y": -0.34209 }, { - "x": 0.9999999999917725, - "y": -0.000004056438181026428 + "x": 1, + "y": 0 }, { "max": { @@ -8368,12 +8368,12 @@ } }, { - "x": 311.5817221622859, - "y": 233.18864645505693 + "x": 311.58172, + "y": 233.18865 }, { - "x": 279.5535380202521, - "y": 197.61115699494545 + "x": 279.55354, + "y": 197.61116 }, { "category": 1, @@ -8390,16 +8390,16 @@ "y": 0 }, { - "x": 295.5675494755018, - "y": 213.87215699481163 + "x": 295.56755, + "y": 213.87216 }, { - "x": 0.3294241019441254, - "y": 0.10264882718162394 + "x": 0.32942, + "y": 0.10265 }, { - "x": 295.5673882439673, - "y": 210.81666753443253 + "x": 295.56739, + "y": 210.81667 }, { "endCol": 6, @@ -8422,8 +8422,8 @@ "yScale": 1 }, { - "x": 0.000161231534491435, - "y": 3.055489460379113 + "x": 0.00016, + "y": 3.05549 }, [ { @@ -8485,141 +8485,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 311.58156093075144, - "y": 216.6960920349874 + "x": 311.58156, + "y": 216.69609 }, { "body": null, "index": 1, "isInternal": false, - "x": 309.6495824582848, - "y": 222.00309987198227 + "x": 309.64958, + "y": 222.0031 }, { "body": null, "index": 2, "isInternal": false, - "x": 306.0196000064662, - "y": 226.32911459681725 + "x": 306.0196, + "y": 226.32911 }, { "body": null, "index": 3, "isInternal": false, - "x": 301.1296114578314, - "y": 229.15213443277676 + "x": 301.12961, + "y": 229.15213 }, { "body": null, "index": 4, "isInternal": false, - "x": 295.567615437243, - "y": 230.13315699467782 + "x": 295.56762, + "y": 230.13316 }, { "body": null, "index": 5, "isInternal": false, - "x": 290.00561145792295, - "y": 229.15217955659506 + "x": 290.00561, + "y": 229.15218 }, { "body": null, "index": 6, "isInternal": false, - "x": 285.1156000066382, - "y": 226.329199392601 + "x": 285.1156, + "y": 226.3292 }, { "body": null, "index": 7, "isInternal": false, - "x": 281.48558245851643, - "y": 222.0032141175072 + "x": 281.48558, + "y": 222.00321 }, { "body": null, "index": 8, "isInternal": false, - "x": 279.553560931015, - "y": 216.69622195458945 + "x": 279.55356, + "y": 216.69622 }, { "body": null, "index": 9, "isInternal": false, - "x": 279.5535380202521, - "y": 211.04822195463586 + "x": 279.55354, + "y": 211.04822 }, { "body": null, "index": 10, "isInternal": false, - "x": 281.4855164927188, - "y": 205.741214117641 + "x": 281.48552, + "y": 205.74121 }, { "body": null, "index": 11, "isInternal": false, - "x": 285.11549894453736, - "y": 201.41519939280602 + "x": 285.1155, + "y": 201.4152 }, { "body": null, "index": 12, "isInternal": false, - "x": 290.00548749317215, - "y": 198.5921795568465 + "x": 290.00549, + "y": 198.59218 }, { "body": null, "index": 13, "isInternal": false, - "x": 295.5674835137606, - "y": 197.61115699494545 + "x": 295.56748, + "y": 197.61116 }, { "body": null, "index": 14, "isInternal": false, - "x": 301.1294874930806, - "y": 198.5921344330282 + "x": 301.12949, + "y": 198.59213 }, { "body": null, "index": 15, "isInternal": false, - "x": 306.01949894436535, - "y": 201.41511459702227 + "x": 306.0195, + "y": 201.41511 }, { "body": null, "index": 16, "isInternal": false, - "x": 309.6495164924871, - "y": 205.74109987211605 + "x": 309.64952, + "y": 205.7411 }, { "body": null, "index": 17, "isInternal": false, - "x": 311.58153801998856, - "y": 211.04809203503382 + "x": 311.58154, + "y": 211.04809 }, { - "angle": 0.000008353947741201571, - "anglePrev": 0.000006707912091363996, - "angularSpeed": 0.0000016460356498375759, - "angularVelocity": 0.0000016460356498375759, - "area": 405.9288839999999, + "angle": 0.00001, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 405.92888, "axes": { "#": 955 }, "bounds": { "#": 962 }, - "circleRadius": 11.63198731138546, + "circleRadius": 11.63199, "collisionFilter": { "#": 965 }, @@ -8634,13 +8634,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 26, - "inertia": 104.94637250178351, - "inverseInertia": 0.009528676181570788, - "inverseMass": 2.463485697657327, + "inertia": 104.94637, + "inverseInertia": 0.00953, + "inverseMass": 2.46349, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.40592888399999993, + "mass": 0.40593, "motion": 0, "parent": null, "position": { @@ -8662,7 +8662,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555557869827, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8695,28 +8695,28 @@ } ], { - "x": -0.8659711889063562, - "y": -0.50009389116856 + "x": -0.86597, + "y": -0.50009 }, { - "x": -0.500079422542644, - "y": -0.8659795443019515 + "x": -0.50008, + "y": -0.86598 }, { - "x": 0.000008353947741104404, - "y": -0.9999999999651059 + "x": 0.00001, + "y": -1 }, { - "x": 0.50009389116856, - "y": -0.8659711889063562 + "x": 0.50009, + "y": -0.86597 }, { - "x": 0.8659795443019515, - "y": -0.500079422542644 + "x": 0.86598, + "y": -0.50008 }, { - "x": 0.9999999999651059, - "y": 0.000008353947741104404 + "x": 1, + "y": 0.00001 }, { "max": { @@ -8727,12 +8727,12 @@ } }, { - "x": 335.54176917651006, - "y": 238.30117657890312 + "x": 335.54177, + "y": 238.30118 }, { - "x": 313.0696809954889, - "y": 212.77357071666174 + "x": 313.06968, + "y": 212.77357 }, { "category": 1, @@ -8749,16 +8749,16 @@ "y": 0 }, { - "x": 324.30570614883345, - "y": 224.00959587000628 + "x": 324.30571, + "y": 224.0096 }, { - "x": -0.21020443907002362, - "y": 0.8274270303400348 + "x": -0.2102, + "y": 0.82743 }, { - "x": 324.3056682745014, - "y": 220.95404031445403 + "x": 324.30567, + "y": 220.95404 }, { "endCol": 6, @@ -8781,8 +8781,8 @@ "yScale": 1 }, { - "x": 0.00003787433206525748, - "y": 3.0555555555522522 + "x": 0.00004, + "y": 3.05556 }, [ { @@ -8826,99 +8826,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 335.5416809947048, - "y": 227.02068973485805 + "x": 335.54168, + "y": 227.02069 }, { "body": null, "index": 1, "isInternal": false, - "x": 332.5306374373263, - "y": 232.23466458093944 + "x": 332.53064, + "y": 232.23466 }, { "body": null, "index": 2, "isInternal": false, - "x": 327.3166122837716, - "y": 235.24562102335088 + "x": 327.31661, + "y": 235.24562 }, { "body": null, "index": 3, "isInternal": false, - "x": 321.2946122839817, - "y": 235.24557071587756 + "x": 321.29461, + "y": 235.24557 }, { "body": null, "index": 4, "isInternal": false, - "x": 316.0806374379002, - "y": 232.2345271584991 + "x": 316.08064, + "y": 232.23453 }, { "body": null, "index": 5, "isInternal": false, - "x": 313.0696809954889, - "y": 227.0205020049444 + "x": 313.06968, + "y": 227.0205 }, { "body": null, "index": 6, "isInternal": false, - "x": 313.0697313029621, - "y": 220.9985020051545 + "x": 313.06973, + "y": 220.9985 }, { "body": null, "index": 7, "isInternal": false, - "x": 316.0807748603406, - "y": 215.78452715907318 + "x": 316.08077, + "y": 215.78453 }, { "body": null, "index": 8, "isInternal": false, - "x": 321.2948000138953, - "y": 212.77357071666174 + "x": 321.2948, + "y": 212.77357 }, { "body": null, "index": 9, "isInternal": false, - "x": 327.3168000136852, - "y": 212.77362102413505 + "x": 327.3168, + "y": 212.77362 }, { "body": null, "index": 10, "isInternal": false, - "x": 332.5307748597667, - "y": 215.7846645815135 + "x": 332.53077, + "y": 215.78466 }, { "body": null, "index": 11, "isInternal": false, - "x": 335.541731302178, - "y": 220.99868973506815 + "x": 335.54173, + "y": 220.99869 }, { - "angle": -0.00004322364721627886, - "anglePrev": -0.000034860833166703294, - "angularSpeed": 0.00000920322672430874, - "angularVelocity": -0.000009914229406891562, - "area": 813.045236, + "angle": -0.00004, + "anglePrev": -0.00003, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 813.04524, "axes": { "#": 989 }, "bounds": { "#": 999 }, - "circleRadius": 16.25192901234568, + "circleRadius": 16.25193, "collisionFilter": { "#": 1002 }, @@ -8933,13 +8933,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 27, - "inertia": 420.8679825768214, - "inverseInertia": 0.0023760419927345484, - "inverseMass": 1.2299438650176162, + "inertia": 420.86798, + "inverseInertia": 0.00238, + "inverseMass": 1.22994, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8130452360000001, + "mass": 0.81305, "motion": 0, "parent": null, "position": { @@ -8961,7 +8961,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555357161814056, + "speed": 3.05554, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9003,40 +9003,40 @@ } ], { - "x": -0.939735760772918, - "y": -0.3419015939192809 + "x": -0.93974, + "y": -0.3419 }, { - "x": -0.7660954997320375, - "y": -0.6427267578764084 + "x": -0.7661, + "y": -0.64273 }, { - "x": -0.49994901743568526, - "y": -0.8660548365808556 + "x": -0.49995, + "y": -0.86605 }, { - "x": -0.17368638674726414, - "y": -0.984801014956158 + "x": -0.17369, + "y": -0.9848 }, { - "x": 0.1736012527150819, - "y": -0.9848160259945782 + "x": 0.1736, + "y": -0.98482 }, { - "x": 0.49987414747023284, - "y": -0.8660980525846407 + "x": 0.49987, + "y": -0.8661 }, { - "x": 0.7660399348802615, - "y": -0.6427929823579628 + "x": 0.76604, + "y": -0.64279 }, { - "x": 0.9397062007938125, - "y": -0.3419828302556418 + "x": 0.93971, + "y": -0.34198 }, { - "x": 0.9999999990658579, - "y": -0.000043223647202819836 + "x": 1, + "y": -0.00004 }, { "max": { @@ -9047,12 +9047,12 @@ } }, { - "x": 417.0222724935212, - "y": 276.23057201060874 + "x": 417.02227, + "y": 276.23057 }, { - "x": 385.0118657847361, - "y": 240.67103632912682 + "x": 385.01187, + "y": 240.67104 }, { "category": 1, @@ -9069,16 +9069,16 @@ "y": 0 }, { - "x": 401.01698774691755, - "y": 256.92303631394515 + "x": 401.01699, + "y": 256.92304 }, { - "x": 0.6702543249657223, - "y": 0.34627524708773183 + "x": 0.67025, + "y": 0.34628 }, { - "x": 401.01679819443154, - "y": 253.86750060214982 + "x": 401.0168, + "y": 253.8675 }, { "endCol": 8, @@ -9101,8 +9101,8 @@ "yScale": 1 }, { - "x": 0.0001401382082804048, - "y": 3.055535711887387 + "x": 0.00014, + "y": 3.05554 }, [ { @@ -9164,141 +9164,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 417.022109709099, - "y": 259.74434451683555 + "x": 417.02211, + "y": 259.74434 }, { "body": null, "index": 1, "isInternal": false, - "x": 415.09233896912673, - "y": 265.04842793352 + "x": 415.09234, + "y": 265.04843 }, { "body": null, "index": 2, "isInternal": false, - "x": 411.46452587156625, - "y": 269.37258474487277 + "x": 411.46453, + "y": 269.37258 }, { "body": null, "index": 3, "isInternal": false, - "x": 406.5756478532657, - "y": 272.1947960626478 + "x": 406.57565, + "y": 272.1948 }, { "body": null, "index": 4, "isInternal": false, - "x": 401.0176902176318, - "y": 273.17503629876353 + "x": 401.01769, + "y": 273.17504 }, { "body": null, "index": 5, "isInternal": false, - "x": 395.45964786364965, - "y": 272.1952765367101 + "x": 395.45965, + "y": 272.19528 }, { "body": null, "index": 6, "isInternal": false, - "x": 390.57052589108423, - "y": 269.3734878597574 + "x": 390.57053, + "y": 269.37349 }, { "body": null, "index": 7, "isInternal": false, - "x": 386.94233899542274, - "y": 265.0496446791887 + "x": 386.94234, + "y": 265.04964 }, { "body": null, "index": 8, "isInternal": false, - "x": 385.01210973900095, - "y": 259.74572810578246 + "x": 385.01211, + "y": 259.74573 }, { "body": null, "index": 9, "isInternal": false, - "x": 385.0118657847361, - "y": 254.1017281110547 + "x": 385.01187, + "y": 254.10173 }, { "body": null, "index": 10, "isInternal": false, - "x": 386.9416365247084, - "y": 248.79764469437035 + "x": 386.94164, + "y": 248.79764 }, { "body": null, "index": 11, "isInternal": false, - "x": 390.56944962226885, - "y": 244.47348788301753 + "x": 390.56945, + "y": 244.47349 }, { "body": null, "index": 12, "isInternal": false, - "x": 395.4583276405694, - "y": 241.6512765652425 + "x": 395.45833, + "y": 241.65128 }, { "body": null, "index": 13, "isInternal": false, - "x": 401.0162852762033, - "y": 240.67103632912682 + "x": 401.01629, + "y": 240.67104 }, { "body": null, "index": 14, "isInternal": false, - "x": 406.57432763018545, - "y": 241.65079609118024 + "x": 406.57433, + "y": 241.6508 }, { "body": null, "index": 15, "isInternal": false, - "x": 411.46344960275087, - "y": 244.47258476813286 + "x": 411.46345, + "y": 244.47258 }, { "body": null, "index": 16, "isInternal": false, - "x": 415.09163649841236, - "y": 248.7964279487016 + "x": 415.09164, + "y": 248.79643 }, { "body": null, "index": 17, "isInternal": false, - "x": 417.02186575483415, - "y": 254.10034452210783 + "x": 417.02187, + "y": 254.10034 }, { - "angle": 0.000003910319285506508, - "anglePrev": 0.000003043298576029219, - "angularSpeed": 8.670207094772891e-7, - "angularVelocity": 8.670207094772891e-7, - "area": 1175.440884, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1175.44088, "axes": { "#": 1032 }, "bounds": { "#": 1043 }, - "circleRadius": 19.503557956104252, + "circleRadius": 19.50356, "collisionFilter": { "#": 1046 }, @@ -9313,13 +9313,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 28, - "inertia": 879.6410498592595, - "inverseInertia": 0.00113682734583612, - "inverseMass": 0.8507446130315133, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "inverseMass": 0.85074, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1754408840000001, + "mass": 1.17544, "motion": 0, "parent": null, "position": { @@ -9341,7 +9341,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555212634453204, + "speed": 3.05552, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9386,44 +9386,44 @@ } ], { - "x": -0.9510798223326863, - "y": -0.3089452565611369 + "x": -0.95108, + "y": -0.30895 }, { - "x": -0.8090100563858145, - "y": -0.5877948014967648 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877884745035382, - "y": -0.8090146532917702 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.30893781850014634, - "y": -0.9510822384527908 + "x": -0.30894, + "y": -0.95108 }, { - "x": 0.0000039103192854965435, - "y": -0.9999999999923549 + "x": 0, + "y": -1 }, { - "x": 0.3089452565611369, - "y": -0.9510798223326863 + "x": 0.30895, + "y": -0.95108 }, { - "x": 0.5877948014967648, - "y": -0.8090100563858145 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090146532917702, - "y": -0.5877884745035382 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510822384527908, - "y": -0.30893781850014634 + "x": 0.95108, + "y": -0.30894 }, { - "x": 0.9999999999923549, - "y": 0.0000039103192854965435 + "x": 1, + "y": 0 }, { "max": { @@ -9434,12 +9434,12 @@ } }, { - "x": 463.1057740668685, - "y": 238.76471221214595 + "x": 463.10577, + "y": 238.76471 }, { - "x": 424.57972992183323, - "y": 197.18316708829423 + "x": 424.57973, + "y": 197.18317 }, { "category": 1, @@ -9456,16 +9456,16 @@ "y": 0 }, { - "x": 443.8427418520701, - "y": 216.4461790185311 + "x": 443.84274, + "y": 216.44618 }, { - "x": 0.4152243524496288, + "x": 0.41522, "y": 0 }, { - "x": 443.8427215675086, - "y": 213.39065775515311 + "x": 443.84272, + "y": 213.39066 }, { "endCol": 9, @@ -9488,8 +9488,8 @@ "yScale": 1 }, { - "x": 0.00002028456151492719, - "y": 3.0555212633779893 + "x": 0.00002, + "y": 3.05552 }, [ { @@ -9557,155 +9557,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 463.1057299215387, - "y": 219.49725434298819 + "x": 463.10573, + "y": 219.49725 }, { "body": null, "index": 1, "isInternal": false, - "x": 461.22070722997034, - "y": 225.30024697199198 + "x": 461.22071, + "y": 225.30025 }, { "body": null, "index": 2, "isInternal": false, - "x": 457.6336879247514, - "y": 230.23723294563894 + "x": 457.63369, + "y": 230.23723 }, { "body": null, "index": 3, "isInternal": false, - "x": 452.6966738984739, - "y": 233.82421364036523 + "x": 452.69667, + "y": 233.82421 }, { "body": null, "index": 4, "isInternal": false, - "x": 446.8936665275664, - "y": 235.70919094876797 + "x": 446.89367, + "y": 235.70919 }, { "body": null, "index": 5, "isInternal": false, - "x": 440.7916665276131, - "y": 235.7091670879997 + "x": 440.79167, + "y": 235.70917 }, { "body": null, "index": 6, "isInternal": false, - "x": 434.9886738986092, - "y": 233.82414439643128 + "x": 434.98867, + "y": 233.82414 }, { "body": null, "index": 7, "isInternal": false, - "x": 430.05168792496227, - "y": 230.2371250912124 + "x": 430.05169, + "y": 230.23713 }, { "body": null, "index": 8, "isInternal": false, - "x": 426.464707230236, - "y": 225.30011106493487 + "x": 426.46471, + "y": 225.30011 }, { "body": null, "index": 9, "isInternal": false, - "x": 424.57972992183323, - "y": 219.49710369402734 + "x": 424.57973, + "y": 219.4971 }, { "body": null, "index": 10, "isInternal": false, - "x": 424.57975378260153, - "y": 213.395103694074 + "x": 424.57975, + "y": 213.3951 }, { "body": null, "index": 11, "isInternal": false, - "x": 426.46477647416987, - "y": 207.5921110650702 + "x": 426.46478, + "y": 207.59211 }, { "body": null, "index": 12, "isInternal": false, - "x": 430.0517957793888, - "y": 202.65512509142326 + "x": 430.0518, + "y": 202.65513 }, { "body": null, "index": 13, "isInternal": false, - "x": 434.98880980566634, - "y": 199.06814439669697 + "x": 434.98881, + "y": 199.06814 }, { "body": null, "index": 14, "isInternal": false, - "x": 440.79181717657383, - "y": 197.18316708829423 + "x": 440.79182, + "y": 197.18317 }, { "body": null, "index": 15, "isInternal": false, - "x": 446.89381717652714, - "y": 197.1831909490625 + "x": 446.89382, + "y": 197.18319 }, { "body": null, "index": 16, "isInternal": false, - "x": 452.696809805531, - "y": 199.06821364063092 + "x": 452.69681, + "y": 199.06821 }, { "body": null, "index": 17, "isInternal": false, - "x": 457.63379577917794, - "y": 202.6552329458498 + "x": 457.6338, + "y": 202.65523 }, { "body": null, "index": 18, "isInternal": false, - "x": 461.2207764739042, - "y": 207.59224697212733 + "x": 461.22078, + "y": 207.59225 }, { "body": null, "index": 19, "isInternal": false, - "x": 463.105753782307, - "y": 213.39525434303485 + "x": 463.10575, + "y": 213.39525 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 324.43099600000005, + "area": 324.431, "axes": { "#": 1078 }, "bounds": { "#": 1085 }, - "circleRadius": 10.399219821673526, + "circleRadius": 10.39922, "collisionFilter": { "#": 1088 }, @@ -9720,13 +9720,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 29, - "inertia": 67.03663440105248, - "inverseInertia": 0.014917216667194436, - "inverseMass": 3.082319545078238, + "inertia": 67.03663, + "inverseInertia": 0.01492, + "inverseMass": 3.08232, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.3244309960000001, + "mass": 0.32443, "motion": 0, "parent": null, "position": { @@ -9748,7 +9748,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9781,24 +9781,24 @@ } ], { - "x": -0.8659473272702323, - "y": -0.5001352081123076 + "x": -0.86595, + "y": -0.50014 }, { - "x": -0.5001352081123076, - "y": -0.8659473272702323 + "x": -0.50014, + "y": -0.86595 }, { "x": 0, "y": -1 }, { - "x": 0.5001352081123076, - "y": -0.8659473272702323 + "x": 0.50014, + "y": -0.86595 }, { - "x": 0.8659473272702323, - "y": -0.5001352081123076 + "x": 0.86595, + "y": -0.50014 }, { "x": 1, @@ -9814,11 +9814,11 @@ }, { "x": 497.352, - "y": 217.27333333333289 + "y": 217.27333 }, { - "x": 477.26199999999994, - "y": 197.1833333333329 + "x": 477.262, + "y": 197.18333 }, { "category": 1, @@ -9835,16 +9835,16 @@ "y": 0 }, { - "x": 487.30699999999996, - "y": 207.2283333333329 + "x": 487.307, + "y": 207.22833 }, { "x": 0, "y": 0 }, { - "x": 487.30699999999996, - "y": 204.1727777777774 + "x": 487.307, + "y": 204.17278 }, { "endCol": 10, @@ -9868,7 +9868,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -9913,98 +9913,98 @@ "index": 0, "isInternal": false, "x": 497.352, - "y": 209.9203333333329 + "y": 209.92033 }, { "body": null, "index": 1, "isInternal": false, - "x": 494.65999999999997, - "y": 214.5813333333329 + "x": 494.66, + "y": 214.58133 }, { "body": null, "index": 2, "isInternal": false, - "x": 489.99899999999997, - "y": 217.27333333333289 + "x": 489.999, + "y": 217.27333 }, { "body": null, "index": 3, "isInternal": false, - "x": 484.61499999999995, - "y": 217.27333333333289 + "x": 484.615, + "y": 217.27333 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.95399999999995, - "y": 214.5813333333329 + "x": 479.954, + "y": 214.58133 }, { "body": null, "index": 5, "isInternal": false, - "x": 477.26199999999994, - "y": 209.9203333333329 + "x": 477.262, + "y": 209.92033 }, { "body": null, "index": 6, "isInternal": false, - "x": 477.26199999999994, - "y": 204.5363333333329 + "x": 477.262, + "y": 204.53633 }, { "body": null, "index": 7, "isInternal": false, - "x": 479.95399999999995, - "y": 199.8753333333329 + "x": 479.954, + "y": 199.87533 }, { "body": null, "index": 8, "isInternal": false, - "x": 484.61499999999995, - "y": 197.1833333333329 + "x": 484.615, + "y": 197.18333 }, { "body": null, "index": 9, "isInternal": false, - "x": 489.99899999999997, - "y": 197.1833333333329 + "x": 489.999, + "y": 197.18333 }, { "body": null, "index": 10, "isInternal": false, - "x": 494.65999999999997, - "y": 199.8753333333329 + "x": 494.66, + "y": 199.87533 }, { "body": null, "index": 11, "isInternal": false, "x": 497.352, - "y": 204.5363333333329 + "y": 204.53633 }, { - "angle": -0.000003259887958760072, - "anglePrev": -0.0000026149748309138138, - "angularSpeed": 6.449131278462582e-7, - "angularVelocity": -6.449131278462582e-7, - "area": 722.1773659999999, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 722.17737, "axes": { "#": 1112 }, "bounds": { "#": 1121 }, - "circleRadius": 15.358667695473251, + "circleRadius": 15.35867, "collisionFilter": { "#": 1124 }, @@ -10019,13 +10019,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 30, - "inertia": 332.0674558099107, - "inverseInertia": 0.0030114363286851023, - "inverseMass": 1.3847013865012214, + "inertia": 332.06746, + "inverseInertia": 0.00301, + "inverseMass": 1.3847, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.7221773659999999, + "mass": 0.72218, "motion": 0, "parent": null, "position": { @@ -10047,7 +10047,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055563116518251, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10086,36 +10086,36 @@ } ], { - "x": -0.9238513114535443, - "y": -0.3827515569211532 + "x": -0.92385, + "y": -0.38275 }, { - "x": -0.7071090862716721, - "y": -0.7071044760939089 + "x": -0.70711, + "y": -0.7071 }, { - "x": -0.38275758021655, - "y": -0.9238488159795258 + "x": -0.38276, + "y": -0.92385 }, { - "x": -0.0000032598879587542986, - "y": -0.9999999999946866 + "x": 0, + "y": -1 }, { - "x": 0.3827515569211532, - "y": -0.9238513114535443 + "x": 0.38275, + "y": -0.92385 }, { - "x": 0.7071044760939089, - "y": -0.7071090862716721 + "x": 0.7071, + "y": -0.70711 }, { - "x": 0.9238488159795258, - "y": -0.38275758021655 + "x": 0.92385, + "y": -0.38276 }, { - "x": 0.9999999999946866, - "y": -0.0000032598879587542986 + "x": 1, + "y": 0 }, { "max": { @@ -10126,12 +10126,12 @@ } }, { - "x": 565.2863480222045, - "y": 263.9898576424382 + "x": 565.28635, + "y": 263.98986 }, { - "x": 535.1583284891159, - "y": 233.86183810934966 + "x": 535.15833, + "y": 233.86184 }, { "category": 1, @@ -10148,16 +10148,16 @@ "y": 0 }, { - "x": 550.2223382556602, - "y": 248.92584787589394 + "x": 550.22234, + "y": 248.92585 }, { "x": 0, "y": 0 }, { - "x": 550.2223200653849, - "y": 245.87028475942984 + "x": 550.22232, + "y": 245.87028 }, { "endCol": 11, @@ -10180,8 +10180,8 @@ "yScale": 1 }, { - "x": 0.000018190275341112283, - "y": 3.055563116464106 + "x": 0.00002, + "y": 3.05556 }, [ { @@ -10237,127 +10237,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 565.2863480222045, - "y": 251.92179876892584 + "x": 565.28635, + "y": 251.9218 }, { "body": null, "index": 1, "isInternal": false, - "x": 562.9923660722163, - "y": 257.45880624707934 + "x": 562.99237, + "y": 257.45881 }, { "body": null, "index": 2, "isInternal": false, - "x": 558.7553798843842, - "y": 261.6958200592022 + "x": 558.75538, + "y": 261.69582 }, { "body": null, "index": 3, "isInternal": false, - "x": 553.2183873625967, - "y": 263.98983810918963 + "x": 553.21839, + "y": 263.98984 }, { "body": null, "index": 4, "isInternal": false, - "x": 547.2263873626285, - "y": 263.9898576424382 + "x": 547.22639, + "y": 263.98986 }, { "body": null, "index": 5, "isInternal": false, - "x": 541.6893798844749, - "y": 261.69587569245004 + "x": 541.68938, + "y": 261.69588 }, { "body": null, "index": 6, "isInternal": false, - "x": 537.4523660723521, - "y": 257.4588895046178 + "x": 537.45237, + "y": 257.45889 }, { "body": null, "index": 7, "isInternal": false, - "x": 535.1583480223646, - "y": 251.92189698283022 + "x": 535.15835, + "y": 251.9219 }, { "body": null, "index": 8, "isInternal": false, - "x": 535.1583284891159, - "y": 245.92989698286203 + "x": 535.15833, + "y": 245.9299 }, { "body": null, "index": 9, "isInternal": false, - "x": 537.4523104391042, - "y": 240.3928895047085 + "x": 537.45231, + "y": 240.39289 }, { "body": null, "index": 10, "isInternal": false, - "x": 541.6892966269363, - "y": 236.1558756925857 + "x": 541.6893, + "y": 236.15588 }, { "body": null, "index": 11, "isInternal": false, - "x": 547.2262891487238, - "y": 233.86185764259832 + "x": 547.22629, + "y": 233.86186 }, { "body": null, "index": 12, "isInternal": false, - "x": 553.218289148692, - "y": 233.86183810934966 + "x": 553.21829, + "y": 233.86184 }, { "body": null, "index": 13, "isInternal": false, - "x": 558.7552966268456, - "y": 236.15582005933783 + "x": 558.7553, + "y": 236.15582 }, { "body": null, "index": 14, "isInternal": false, - "x": 562.9923104389684, - "y": 240.39280624717009 + "x": 562.99231, + "y": 240.39281 }, { "body": null, "index": 15, "isInternal": false, - "x": 565.2863284889557, - "y": 245.92979876895765 + "x": 565.28633, + "y": 245.9298 }, { - "angle": -0.0000016431429949939924, - "anglePrev": -0.0000012324358218324446, - "angularSpeed": 4.1070717316154784e-7, - "angularVelocity": -4.1070717316154784e-7, - "area": 486.2764840000001, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 486.27648, "axes": { "#": 1152 }, "bounds": { "#": 1160 }, - "circleRadius": 12.653506515775035, + "circleRadius": 12.65351, "collisionFilter": { "#": 1163 }, @@ -10372,13 +10372,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 31, - "inertia": 150.57294030609683, - "inverseInertia": 0.006641299545370631, - "inverseMass": 2.0564432640752575, + "inertia": 150.57294, + "inverseInertia": 0.00664, + "inverseMass": 2.05644, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4862764840000001, + "mass": 0.48628, "motion": 0, "parent": null, "position": { @@ -10400,7 +10400,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055565856075056, + "speed": 3.05557, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10436,32 +10436,32 @@ } ], { - "x": -0.9009715276384245, - "y": -0.4338782160755288 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.6234612006716209, - "y": -0.7818542902978155 + "x": -0.62346, + "y": -0.78185 }, { - "x": -0.2226817502991749, - "y": -0.9748911929460106 + "x": -0.22268, + "y": -0.97489 }, { - "x": 0.2226785465267033, - "y": -0.9748919247366625 + "x": 0.22268, + "y": -0.97489 }, { - "x": 0.6234586312714538, - "y": -0.7818563391654026 + "x": 0.62346, + "y": -0.78186 }, { - "x": 0.9009701017856566, - "y": -0.4338811769232946 + "x": 0.90097, + "y": -0.43388 }, { - "x": 0.9999999999986499, - "y": -0.0000016431429949932527 + "x": 1, + "y": 0 }, { "max": { @@ -10472,12 +10472,12 @@ } }, { - "x": 599.4901546577554, - "y": 225.54694039997176 + "x": 599.49015, + "y": 225.54694 }, { - "x": 574.8181453335108, - "y": 197.18337454393094 + "x": 574.81815, + "y": 197.18337 }, { "category": 1, @@ -10494,16 +10494,16 @@ "y": 0 }, { - "x": 587.1541499605848, - "y": 209.83737454391382 + "x": 587.15415, + "y": 209.83737 }, { - "x": 0.5214166184110381, + "x": 0.52142, "y": 0 }, { - "x": 587.1541498904884, - "y": 206.78180868783878 + "x": 587.15415, + "y": 206.78181 }, { "endCol": 12, @@ -10526,8 +10526,8 @@ "yScale": 1 }, { - "x": 7.00964619682054e-8, - "y": 3.055565856075055 + "x": 0, + "y": 3.05557 }, [ { @@ -10577,113 +10577,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 599.4901545876589, - "y": 212.65335427409804 + "x": 599.49015, + "y": 212.65335 }, { "body": null, "index": 1, "isInternal": false, - "x": 597.0471629233266, - "y": 217.72635828828953 + "x": 597.04716, + "y": 217.72636 }, { "body": null, "index": 2, "isInternal": false, - "x": 592.6441686924077, - "y": 221.23736552304342 + "x": 592.64417, + "y": 221.23737 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.1541707529161, - "y": 222.4913745438967 + "x": 587.15417, + "y": 222.49137 }, { "body": null, "index": 4, "isInternal": false, - "x": 581.6641686924223, - "y": 221.23738356475346 + "x": 581.66417, + "y": 221.23738 }, { "body": null, "index": 5, "isInternal": false, - "x": 577.2611629233533, - "y": 217.72639079951682 + "x": 577.26116, + "y": 217.72639 }, { "body": null, "index": 6, "isInternal": false, - "x": 574.8181545876921, - "y": 212.653394813722 + "x": 574.81815, + "y": 212.65339 }, { "body": null, "index": 7, "isInternal": false, - "x": 574.8181453335108, - "y": 207.02139481372961 + "x": 574.81815, + "y": 207.02139 }, { "body": null, "index": 8, "isInternal": false, - "x": 577.2611369978431, - "y": 201.94839079953812 + "x": 577.26114, + "y": 201.94839 }, { "body": null, "index": 9, "isInternal": false, - "x": 581.664131228762, - "y": 198.43738356478423 + "x": 581.66413, + "y": 198.43738 }, { "body": null, "index": 10, "isInternal": false, - "x": 587.1541291682536, - "y": 197.18337454393094 + "x": 587.15413, + "y": 197.18337 }, { "body": null, "index": 11, "isInternal": false, - "x": 592.6441312287474, - "y": 198.4373655230742 + "x": 592.64413, + "y": 198.43737 }, { "body": null, "index": 12, "isInternal": false, - "x": 597.0471369978164, - "y": 201.94835828831083 + "x": 597.04714, + "y": 201.94836 }, { "body": null, "index": 13, "isInternal": false, - "x": 599.4901453334776, - "y": 207.02135427410565 + "x": 599.49015, + "y": 207.02135 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 555.028152, + "area": 555.02815, "axes": { "#": 1189 }, "bounds": { "#": 1197 }, - "circleRadius": 13.518304183813443, + "circleRadius": 13.5183, "collisionFilter": { "#": 1200 }, @@ -10698,13 +10698,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 32, - "inertia": 196.15998479488022, - "inverseInertia": 0.005097879677374955, - "inverseMass": 1.8017104112585627, + "inertia": 196.15998, + "inverseInertia": 0.0051, + "inverseMass": 1.80171, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.555028152, + "mass": 0.55503, "motion": 0, "parent": null, "position": { @@ -10726,7 +10726,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10762,28 +10762,28 @@ } ], { - "x": -0.901008887984407, - "y": -0.4338006267550824 + "x": -0.90101, + "y": -0.4338 }, { - "x": -0.6234578160368234, - "y": -0.781856989239461 + "x": -0.62346, + "y": -0.78186 }, { - "x": -0.22241855165218072, - "y": -0.9749512746188632 + "x": -0.22242, + "y": -0.97495 }, { - "x": 0.22241855165218072, - "y": -0.9749512746188632 + "x": 0.22242, + "y": -0.97495 }, { - "x": 0.6234578160368234, - "y": -0.781856989239461 + "x": 0.62346, + "y": -0.78186 }, { - "x": 0.901008887984407, - "y": -0.4338006267550824 + "x": 0.90101, + "y": -0.4338 }, { "x": 1, @@ -10798,12 +10798,12 @@ } }, { - "x": 638.5099999999999, - "y": 224.2193333333329 + "x": 638.51, + "y": 224.21933 }, { - "x": 612.1519999999999, - "y": 197.1833333333329 + "x": 612.152, + "y": 197.18333 }, { "category": 1, @@ -10820,16 +10820,16 @@ "y": 0 }, { - "x": 625.3309999999999, - "y": 210.7013333333329 + "x": 625.331, + "y": 210.70133 }, { "x": 0, "y": 0 }, { - "x": 625.3309999999999, - "y": 207.64577777777743 + "x": 625.331, + "y": 207.64578 }, { "endCol": 13, @@ -10853,7 +10853,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -10903,113 +10903,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 638.5099999999999, - "y": 213.70933333333292 + "x": 638.51, + "y": 213.70933 }, { "body": null, "index": 1, "isInternal": false, - "x": 635.8999999999999, - "y": 219.1303333333329 + "x": 635.9, + "y": 219.13033 }, { "body": null, "index": 2, "isInternal": false, - "x": 631.1959999999999, - "y": 222.88133333333292 + "x": 631.196, + "y": 222.88133 }, { "body": null, "index": 3, "isInternal": false, - "x": 625.3309999999999, - "y": 224.2193333333329 + "x": 625.331, + "y": 224.21933 }, { "body": null, "index": 4, "isInternal": false, - "x": 619.4659999999999, - "y": 222.88133333333292 + "x": 619.466, + "y": 222.88133 }, { "body": null, "index": 5, "isInternal": false, "x": 614.762, - "y": 219.1303333333329 + "y": 219.13033 }, { "body": null, "index": 6, "isInternal": false, - "x": 612.1519999999999, - "y": 213.70933333333292 + "x": 612.152, + "y": 213.70933 }, { "body": null, "index": 7, "isInternal": false, - "x": 612.1519999999999, - "y": 207.6933333333329 + "x": 612.152, + "y": 207.69333 }, { "body": null, "index": 8, "isInternal": false, "x": 614.762, - "y": 202.2723333333329 + "y": 202.27233 }, { "body": null, "index": 9, "isInternal": false, - "x": 619.4659999999999, - "y": 198.5213333333329 + "x": 619.466, + "y": 198.52133 }, { "body": null, "index": 10, "isInternal": false, - "x": 625.3309999999999, - "y": 197.1833333333329 + "x": 625.331, + "y": 197.18333 }, { "body": null, "index": 11, "isInternal": false, - "x": 631.1959999999999, - "y": 198.5213333333329 + "x": 631.196, + "y": 198.52133 }, { "body": null, "index": 12, "isInternal": false, - "x": 635.8999999999999, - "y": 202.2723333333329 + "x": 635.9, + "y": 202.27233 }, { "body": null, "index": 13, "isInternal": false, - "x": 638.5099999999999, - "y": 207.6933333333329 + "x": 638.51, + "y": 207.69333 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1227.1883159999998, + "area": 1227.18832, "axes": { "#": 1226 }, "bounds": { "#": 1237 }, - "circleRadius": 19.928369341563787, + "circleRadius": 19.92837, "collisionFilter": { "#": 1240 }, @@ -11024,13 +11024,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 33, - "inertia": 958.7962512746001, - "inverseInertia": 0.001042974457472716, - "inverseMass": 0.8148708612704882, + "inertia": 958.79625, + "inverseInertia": 0.00104, + "inverseMass": 0.81487, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.227188316, + "mass": 1.22719, "motion": 0, "parent": null, "position": { @@ -11052,7 +11052,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11097,40 +11097,40 @@ } ], { - "x": -0.9510458539268092, - "y": -0.30904980784434416 + "x": -0.95105, + "y": -0.30905 }, { - "x": -0.80899262671849, - "y": -0.5878187900323687 + "x": -0.80899, + "y": -0.58782 }, { - "x": -0.5878187900323687, - "y": -0.80899262671849 + "x": -0.58782, + "y": -0.80899 }, { - "x": -0.30904980784434416, - "y": -0.9510458539268092 + "x": -0.30905, + "y": -0.95105 }, { "x": 0, "y": -1 }, { - "x": 0.30904980784434416, - "y": -0.9510458539268092 + "x": 0.30905, + "y": -0.95105 }, { - "x": 0.5878187900323687, - "y": -0.80899262671849 + "x": 0.58782, + "y": -0.80899 }, { - "x": 0.80899262671849, - "y": -0.5878187900323687 + "x": 0.80899, + "y": -0.58782 }, { - "x": 0.9510458539268092, - "y": -0.30904980784434416 + "x": 0.95105, + "y": -0.30905 }, { "x": 1, @@ -11145,12 +11145,12 @@ } }, { - "x": 697.8759999999999, - "y": 236.5493333333329 + "x": 697.876, + "y": 236.54933 }, { - "x": 658.5099999999999, - "y": 197.1833333333329 + "x": 658.51, + "y": 197.18333 }, { "category": 1, @@ -11167,16 +11167,16 @@ "y": 0 }, { - "x": 678.1929999999999, - "y": 216.8663333333329 + "x": 678.193, + "y": 216.86633 }, { "x": 0, "y": 0 }, { - "x": 678.1929999999999, - "y": 213.81077777777742 + "x": 678.193, + "y": 213.81078 }, { "endCol": 14, @@ -11200,7 +11200,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -11268,155 +11268,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 697.8759999999999, - "y": 219.9833333333329 + "x": 697.876, + "y": 219.98333 }, { "body": null, "index": 1, "isInternal": false, - "x": 695.9489999999998, - "y": 225.9133333333329 + "x": 695.949, + "y": 225.91333 }, { "body": null, "index": 2, "isInternal": false, - "x": 692.2839999999999, - "y": 230.9573333333329 + "x": 692.284, + "y": 230.95733 }, { "body": null, "index": 3, "isInternal": false, - "x": 687.2399999999999, - "y": 234.6223333333329 + "x": 687.24, + "y": 234.62233 }, { "body": null, "index": 4, "isInternal": false, - "x": 681.3099999999998, - "y": 236.5493333333329 + "x": 681.31, + "y": 236.54933 }, { "body": null, "index": 5, "isInternal": false, - "x": 675.0759999999999, - "y": 236.5493333333329 + "x": 675.076, + "y": 236.54933 }, { "body": null, "index": 6, "isInternal": false, - "x": 669.1459999999998, - "y": 234.6223333333329 + "x": 669.146, + "y": 234.62233 }, { "body": null, "index": 7, "isInternal": false, - "x": 664.1019999999999, - "y": 230.9573333333329 + "x": 664.102, + "y": 230.95733 }, { "body": null, "index": 8, "isInternal": false, - "x": 660.4369999999999, - "y": 225.9133333333329 + "x": 660.437, + "y": 225.91333 }, { "body": null, "index": 9, "isInternal": false, - "x": 658.5099999999999, - "y": 219.9833333333329 + "x": 658.51, + "y": 219.98333 }, { "body": null, "index": 10, "isInternal": false, - "x": 658.5099999999999, - "y": 213.7493333333329 + "x": 658.51, + "y": 213.74933 }, { "body": null, "index": 11, "isInternal": false, - "x": 660.4369999999999, - "y": 207.8193333333329 + "x": 660.437, + "y": 207.81933 }, { "body": null, "index": 12, "isInternal": false, - "x": 664.1019999999999, - "y": 202.7753333333329 + "x": 664.102, + "y": 202.77533 }, { "body": null, "index": 13, "isInternal": false, - "x": 669.1459999999998, - "y": 199.1103333333329 + "x": 669.146, + "y": 199.11033 }, { "body": null, "index": 14, "isInternal": false, - "x": 675.0759999999999, - "y": 197.1833333333329 + "x": 675.076, + "y": 197.18333 }, { "body": null, "index": 15, "isInternal": false, - "x": 681.3099999999998, - "y": 197.1833333333329 + "x": 681.31, + "y": 197.18333 }, { "body": null, "index": 16, "isInternal": false, - "x": 687.2399999999999, - "y": 199.1103333333329 + "x": 687.24, + "y": 199.11033 }, { "body": null, "index": 17, "isInternal": false, - "x": 692.2839999999999, - "y": 202.7753333333329 + "x": 692.284, + "y": 202.77533 }, { "body": null, "index": 18, "isInternal": false, - "x": 695.9489999999998, - "y": 207.8193333333329 + "x": 695.949, + "y": 207.81933 }, { "body": null, "index": 19, "isInternal": false, - "x": 697.8759999999999, - "y": 213.7493333333329 + "x": 697.876, + "y": 213.74933 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1120.7724680000001, + "area": 1120.77247, "axes": { "#": 1272 }, "bounds": { "#": 1283 }, - "circleRadius": 19.04419581618656, + "circleRadius": 19.0442, "collisionFilter": { "#": 1286 }, @@ -11431,13 +11431,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 34, - "inertia": 799.721573279466, - "inverseInertia": 0.001250435193212608, - "inverseMass": 0.8922417605283286, + "inertia": 799.72157, + "inverseInertia": 0.00125, + "inverseMass": 0.89224, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1207724680000002, + "mass": 1.12077, "motion": 0, "parent": null, "position": { @@ -11459,7 +11459,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11504,40 +11504,40 @@ } ], { - "x": -0.9510722943806661, - "y": -0.3089684302020123 + "x": -0.95107, + "y": -0.30897 }, { - "x": -0.8089319902014619, - "y": -0.5879022327128056 + "x": -0.80893, + "y": -0.5879 }, { - "x": -0.5879022327128056, - "y": -0.8089319902014619 + "x": -0.5879, + "y": -0.80893 }, { - "x": -0.3089684302020123, - "y": -0.9510722943806661 + "x": -0.30897, + "y": -0.95107 }, { "x": 0, "y": -1 }, { - "x": 0.3089684302020123, - "y": -0.9510722943806661 + "x": 0.30897, + "y": -0.95107 }, { - "x": 0.5879022327128056, - "y": -0.8089319902014619 + "x": 0.5879, + "y": -0.80893 }, { - "x": 0.8089319902014619, - "y": -0.5879022327128056 + "x": 0.80893, + "y": -0.5879 }, { - "x": 0.9510722943806661, - "y": -0.3089684302020123 + "x": 0.95107, + "y": -0.30897 }, { "x": 1, @@ -11552,12 +11552,12 @@ } }, { - "x": 755.4959999999998, - "y": 234.80333333333292 + "x": 755.496, + "y": 234.80333 }, { - "x": 717.8759999999999, - "y": 197.1833333333329 + "x": 717.876, + "y": 197.18333 }, { "category": 1, @@ -11574,16 +11574,16 @@ "y": 0 }, { - "x": 736.6859999999998, - "y": 215.9933333333329 + "x": 736.686, + "y": 215.99333 }, { "x": 0, "y": 0 }, { - "x": 736.6859999999998, - "y": 212.93777777777743 + "x": 736.686, + "y": 212.93778 }, { "endCol": 15, @@ -11607,7 +11607,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -11675,155 +11675,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 755.4959999999998, - "y": 218.97233333333293 + "x": 755.496, + "y": 218.97233 }, { "body": null, "index": 1, "isInternal": false, - "x": 753.6549999999999, - "y": 224.6393333333329 + "x": 753.655, + "y": 224.63933 }, { "body": null, "index": 2, "isInternal": false, - "x": 750.1519999999998, - "y": 229.45933333333292 + "x": 750.152, + "y": 229.45933 }, { "body": null, "index": 3, "isInternal": false, - "x": 745.3319999999998, - "y": 232.9623333333329 + "x": 745.332, + "y": 232.96233 }, { "body": null, "index": 4, "isInternal": false, - "x": 739.6649999999998, - "y": 234.80333333333292 + "x": 739.665, + "y": 234.80333 }, { "body": null, "index": 5, "isInternal": false, - "x": 733.7069999999998, - "y": 234.80333333333292 + "x": 733.707, + "y": 234.80333 }, { "body": null, "index": 6, "isInternal": false, - "x": 728.0399999999998, - "y": 232.9623333333329 + "x": 728.04, + "y": 232.96233 }, { "body": null, "index": 7, "isInternal": false, - "x": 723.2199999999998, - "y": 229.45933333333292 + "x": 723.22, + "y": 229.45933 }, { "body": null, "index": 8, "isInternal": false, - "x": 719.7169999999998, - "y": 224.6393333333329 + "x": 719.717, + "y": 224.63933 }, { "body": null, "index": 9, "isInternal": false, - "x": 717.8759999999999, - "y": 218.97233333333293 + "x": 717.876, + "y": 218.97233 }, { "body": null, "index": 10, "isInternal": false, - "x": 717.8759999999999, - "y": 213.0143333333329 + "x": 717.876, + "y": 213.01433 }, { "body": null, "index": 11, "isInternal": false, - "x": 719.7169999999998, - "y": 207.34733333333293 + "x": 719.717, + "y": 207.34733 }, { "body": null, "index": 12, "isInternal": false, - "x": 723.2199999999998, - "y": 202.5273333333329 + "x": 723.22, + "y": 202.52733 }, { "body": null, "index": 13, "isInternal": false, - "x": 728.0399999999998, - "y": 199.02433333333292 + "x": 728.04, + "y": 199.02433 }, { "body": null, "index": 14, "isInternal": false, - "x": 733.7069999999998, - "y": 197.1833333333329 + "x": 733.707, + "y": 197.18333 }, { "body": null, "index": 15, "isInternal": false, - "x": 739.6649999999998, - "y": 197.1833333333329 + "x": 739.665, + "y": 197.18333 }, { "body": null, "index": 16, "isInternal": false, - "x": 745.3319999999998, - "y": 199.02433333333292 + "x": 745.332, + "y": 199.02433 }, { "body": null, "index": 17, "isInternal": false, - "x": 750.1519999999998, - "y": 202.5273333333329 + "x": 750.152, + "y": 202.52733 }, { "body": null, "index": 18, "isInternal": false, - "x": 753.6549999999999, - "y": 207.34733333333293 + "x": 753.655, + "y": 207.34733 }, { "body": null, "index": 19, "isInternal": false, - "x": 755.4959999999998, - "y": 213.0143333333329 + "x": 755.496, + "y": 213.01433 }, { - "angle": 0.0014795774340376796, - "anglePrev": 0.0011054952128655296, - "angularSpeed": 0.00032500336345254446, - "angularVelocity": 0.00037310717425286617, - "area": 628.0030680000002, + "angle": 0.00148, + "anglePrev": 0.00111, + "angularSpeed": 0.00033, + "angularVelocity": 0.00037, + "area": 628.00307, "axes": { "#": 1318 }, "bounds": { "#": 1327 }, - "circleRadius": 14.322573731138545, + "circleRadius": 14.32257, "collisionFilter": { "#": 1330 }, @@ -11838,13 +11838,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 35, - "inertia": 251.1088965588656, - "inverseInertia": 0.003982336005230214, - "inverseMass": 1.5923489087158402, + "inertia": 251.1089, + "inverseInertia": 0.00398, + "inverseMass": 1.59235, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.6280030680000003, + "mass": 0.628, "motion": 0, "parent": null, "position": { @@ -11866,7 +11866,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0480263618483763, + "speed": 3.04803, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11905,36 +11905,36 @@ } ], { - "x": -0.9233494274871166, - "y": -0.38396072033375234 + "x": -0.92335, + "y": -0.38396 }, { - "x": -0.7060597883503251, - "y": -0.7081522260606787 + "x": -0.70606, + "y": -0.70815 }, { - "x": -0.3812267092746041, - "y": -0.9244815823669267 + "x": -0.38123, + "y": -0.92448 }, { - "x": 0.0014795768942017348, - "y": -0.9999989054255084 + "x": 0.00148, + "y": -1 }, { - "x": 0.38396072033375234, - "y": -0.9233494274871166 + "x": 0.38396, + "y": -0.92335 }, { - "x": 0.7081522260606787, - "y": -0.7060597883503251 + "x": 0.70815, + "y": -0.70606 }, { - "x": 0.9244815823669267, - "y": -0.3812267092746041 + "x": 0.92448, + "y": -0.38123 }, { - "x": 0.9999989054255084, - "y": 0.0014795768942017348 + "x": 1, + "y": 0.00148 }, { "max": { @@ -11945,12 +11945,12 @@ } }, { - "x": 48.53126245606558, - "y": 307.66675945182095 + "x": 48.53126, + "y": 307.66676 }, { - "x": 20.428161716136927, - "y": 276.5164960876101 + "x": 20.42816, + "y": 276.5165 }, { "category": 1, @@ -11967,16 +11967,16 @@ "y": 0 }, { - "x": 34.47928027849143, - "y": 290.56761464996464 + "x": 34.47928, + "y": 290.56761 }, { - "x": 0.2744820985173577, - "y": -0.00006000890668423659 + "x": 0.27448, + "y": -0.00006 }, { - "x": 34.47831747084362, - "y": 287.52179027854027 + "x": 34.47832, + "y": 287.52179 }, { "endCol": 1, @@ -11999,8 +11999,8 @@ "yScale": 1 }, { - "x": 0.0010245945132894008, - "y": 3.045784418357357 + "x": 0.00102, + "y": 3.04578 }, [ { @@ -12056,127 +12056,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 48.52213096516114, - "y": 293.3823952083563 + "x": 48.52213, + "y": 293.3824 }, { "body": null, "index": 1, "isInternal": false, - "x": 46.376494249856634, - "y": 298.54222622166844 + "x": 46.37649, + "y": 298.54223 }, { "body": null, "index": 2, "isInternal": false, - "x": 42.41865128772915, - "y": 302.4883746080242 + "x": 42.41865, + "y": 302.48837 }, { "body": null, "index": 3, "isInternal": false, - "x": 37.252493603617445, - "y": 304.61873321231917 + "x": 37.25249, + "y": 304.61873 }, { "body": null, "index": 4, "isInternal": false, - "x": 31.664499720099716, - "y": 304.61046533663443 + "x": 31.6645, + "y": 304.61047 }, { "body": null, "index": 5, "isInternal": false, - "x": 26.50466870678762, - "y": 302.46482862132984 + "x": 26.50467, + "y": 302.46483 }, { "body": null, "index": 6, "isInternal": false, - "x": 22.558520320431896, - "y": 298.5069856592023 + "x": 22.55852, + "y": 298.50699 }, { "body": null, "index": 7, "isInternal": false, - "x": 20.428161716136927, - "y": 293.34082797509063 + "x": 20.42816, + "y": 293.34083 }, { "body": null, "index": 8, "isInternal": false, - "x": 20.436429591821724, - "y": 287.752834091573 + "x": 20.43643, + "y": 287.75283 }, { "body": null, "index": 9, "isInternal": false, - "x": 22.582066307126226, - "y": 282.59300307826084 + "x": 22.58207, + "y": 282.593 }, { "body": null, "index": 10, "isInternal": false, - "x": 26.539909269253712, - "y": 278.6468546919051 + "x": 26.53991, + "y": 278.64685 }, { "body": null, "index": 11, "isInternal": false, - "x": 31.706066953365415, - "y": 276.5164960876101 + "x": 31.70607, + "y": 276.5165 }, { "body": null, "index": 12, "isInternal": false, - "x": 37.294060836883155, - "y": 276.52476396329484 + "x": 37.29406, + "y": 276.52476 }, { "body": null, "index": 13, "isInternal": false, - "x": 42.453891850195255, - "y": 278.67040067859944 + "x": 42.45389, + "y": 278.6704 }, { "body": null, "index": 14, "isInternal": false, - "x": 46.40004023655097, - "y": 282.62824364072696 + "x": 46.40004, + "y": 282.62824 }, { "body": null, "index": 15, "isInternal": false, - "x": 48.53039884084596, - "y": 287.79440132483865 + "x": 48.5304, + "y": 287.7944 }, { - "angle": 0.000007502259848701328, - "anglePrev": 0.000006437192140225425, - "angularSpeed": 0.0000010650677084759033, - "angularVelocity": 0.0000010650677084759033, - "area": 536.790174, + "angle": 0.00001, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 536.79017, "axes": { "#": 1358 }, "bounds": { "#": 1366 }, - "circleRadius": 13.294367283950617, + "circleRadius": 13.29437, "collisionFilter": { "#": 1369 }, @@ -12191,13 +12191,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 36, - "inertia": 183.48032886968383, - "inverseInertia": 0.005450175537401865, - "inverseMass": 1.8629253075709244, + "inertia": 183.48033, + "inverseInertia": 0.00545, + "inverseMass": 1.86293, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.536790174, + "mass": 0.53679, "motion": 0, "parent": null, "position": { @@ -12219,7 +12219,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055541287973743, + "speed": 3.05554, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12255,32 +12255,32 @@ } ], { - "x": -0.900983734322429, - "y": -0.43385286732533024 + "x": -0.90098, + "y": -0.43385 }, { - "x": -0.62347237621562, - "y": -0.7818453786370093 + "x": -0.62347, + "y": -0.78185 }, { - "x": -0.22243194705771857, - "y": -0.974948218588101 + "x": -0.22243, + "y": -0.97495 }, { - "x": 0.22244657566242912, - "y": -0.9749448809938223 + "x": 0.22245, + "y": -0.97494 }, { - "x": 0.6234841073598208, - "y": -0.7818360236454496 + "x": 0.62348, + "y": -0.78184 }, { - "x": 0.9009902439749004, - "y": -0.43383934844830413 + "x": 0.90099, + "y": -0.43384 }, { - "x": 0.9999999999718578, - "y": 0.000007502259848630951 + "x": 1, + "y": 0.00001 }, { "max": { @@ -12291,12 +12291,12 @@ } }, { - "x": 99.34633758765946, - "y": 337.66604878849984 + "x": 99.34634, + "y": 337.66605 }, { - "x": 73.4242161589216, - "y": 308.0225075022457 + "x": 73.42422, + "y": 308.02251 }, { "category": 1, @@ -12313,16 +12313,16 @@ "y": 0 }, { - "x": 86.3852383502415, - "y": 321.31650750187157 + "x": 86.38524, + "y": 321.31651 }, { - "x": 0.10016605639746803, - "y": 0.831643589397438 + "x": 0.10017, + "y": 0.83164 }, { - "x": 86.38516130414342, - "y": 318.2609662148692 + "x": 86.38516, + "y": 318.26097 }, { "endCol": 2, @@ -12345,8 +12345,8 @@ "yScale": 1 }, { - "x": 0.00007704609807035467, - "y": 3.0555412870023764 + "x": 0.00008, + "y": 3.05554 }, [ { @@ -12396,113 +12396,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 99.34621615819212, - "y": 324.2746047385783 + "x": 99.34622, + "y": 324.2746 }, { "body": null, "index": 1, "isInternal": false, - "x": 96.77917616371711, - "y": 329.60558548012716 + "x": 96.77918, + "y": 329.60559 }, { "body": null, "index": 2, "isInternal": false, - "x": 92.15314848801069, - "y": 333.29455077456936 + "x": 92.15315, + "y": 333.29455 }, { "body": null, "index": 3, "isInternal": false, - "x": 86.38513861519904, - "y": 334.61050750149747 + "x": 86.38514, + "y": 334.61051 }, { "body": null, "index": 4, "isInternal": false, - "x": 80.61714848833535, - "y": 333.29446422849975 + "x": 80.61715, + "y": 333.29446 }, { "body": null, "index": 5, "isInternal": false, - "x": 75.99117616430213, - "y": 329.60542952314944 + "x": 75.99118, + "y": 329.60543 }, { "body": null, "index": 6, "isInternal": false, - "x": 73.4242161589216, - "y": 324.2744102649984 + "x": 73.42422, + "y": 324.27441 }, { "body": null, "index": 7, "isInternal": false, - "x": 73.42426054229087, - "y": 318.3584102651649 + "x": 73.42426, + "y": 318.35841 }, { "body": null, "index": 8, "isInternal": false, - "x": 75.9913005367659, - "y": 313.027429523616 + "x": 75.9913, + "y": 313.02743 }, { "body": null, "index": 9, "isInternal": false, - "x": 80.6173282124723, - "y": 309.3384642291738 + "x": 80.61733, + "y": 309.33846 }, { "body": null, "index": 10, "isInternal": false, - "x": 86.38533808528395, - "y": 308.0225075022457 + "x": 86.38534, + "y": 308.02251 }, { "body": null, "index": 11, "isInternal": false, - "x": 92.15332821214764, - "y": 309.3385507752434 + "x": 92.15333, + "y": 309.33855 }, { "body": null, "index": 12, "isInternal": false, - "x": 96.77930053618088, - "y": 313.0275854805937 + "x": 96.7793, + "y": 313.02759 }, { "body": null, "index": 13, "isInternal": false, - "x": 99.34626054156139, - "y": 318.3586047387448 + "x": 99.34626, + "y": 318.3586 }, { - "angle": 0.000004267740474660309, - "anglePrev": 0.000010948473159593928, - "angularSpeed": 0.0000066975015590218645, - "angularVelocity": -0.000008860858981297963, - "area": 438.00552799999997, + "angle": 0, + "anglePrev": 0.00001, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 438.00553, "axes": { "#": 1395 }, "bounds": { "#": 1403 }, - "circleRadius": 12.008959190672154, + "circleRadius": 12.00896, "collisionFilter": { "#": 1406 }, @@ -12517,13 +12517,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 37, - "inertia": 122.16296885484358, - "inverseInertia": 0.008185786653467954, - "inverseMass": 2.2830762081158027, + "inertia": 122.16297, + "inverseInertia": 0.00819, + "inverseMass": 2.28308, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.438005528, + "mass": 0.43801, "motion": 0, "parent": null, "position": { @@ -12545,7 +12545,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0553563363548872, + "speed": 3.05536, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12581,32 +12581,32 @@ } ], { - "x": -0.9009510542786553, - "y": -0.4339207275461487 + "x": -0.90095, + "y": -0.43392 }, { - "x": -0.6235274839288698, - "y": -0.781801430534207 + "x": -0.62353, + "y": -0.7818 }, { - "x": -0.22249036036321118, - "y": -0.9749348899005759 + "x": -0.22249, + "y": -0.97493 }, { - "x": 0.22249868189328587, - "y": -0.9749329908028294 + "x": 0.2225, + "y": -0.97493 }, { - "x": 0.6235341569573726, - "y": -0.7817961083987678 + "x": 0.62353, + "y": -0.7818 }, { - "x": 0.9009547579679397, - "y": -0.4339130374797822 + "x": 0.90095, + "y": -0.43391 }, { - "x": 0.9999999999908932, - "y": 0.000004267740474647356 + "x": 1, + "y": 0 }, { "max": { @@ -12617,12 +12617,12 @@ } }, { - "x": 134.86288636377657, - "y": 343.5734368343818 + "x": 134.86289, + "y": 343.57344 }, { - "x": 111.44682398023895, - "y": 316.500080498502 + "x": 111.44682, + "y": 316.50008 }, { "category": 1, @@ -12639,16 +12639,16 @@ "y": 0 }, { - "x": 123.15483538353486, - "y": 328.5090804983926 + "x": 123.15484, + "y": 328.50908 }, { - "x": -0.9135884816741477, - "y": 1.1849492648542352 + "x": -0.91359, + "y": 1.18495 }, { - "x": 123.15479580659057, - "y": 325.45372378597824 + "x": 123.1548, + "y": 325.45372 }, { "endCol": 2, @@ -12671,8 +12671,8 @@ "yScale": 1 }, { - "x": 0.00003957715723856836, - "y": 3.0553068134701675 + "x": 0.00004, + "y": 3.05531 }, [ { @@ -12722,113 +12722,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 134.86282398002558, - "y": 331.18113046507375 + "x": 134.86282, + "y": 331.18113 }, { "body": null, "index": 1, "isInternal": false, - "x": 132.54380343087635, - "y": 335.9961205681398 + "x": 132.5438, + "y": 335.99612 }, { "body": null, "index": 2, "isInternal": false, - "x": 128.3647892065354, - "y": 339.329102733222 + "x": 128.36479, + "y": 339.3291 }, { "body": null, "index": 3, "isInternal": false, - "x": 123.15478413223948, - "y": 340.51808049828327 + "x": 123.15478, + "y": 340.51808 }, { "body": null, "index": 4, "isInternal": false, - "x": 117.94478920663038, - "y": 339.3290582633663 + "x": 117.94479, + "y": 339.32906 }, { "body": null, "index": 5, "isInternal": false, - "x": 113.76580343104743, - "y": 335.9960404285092 + "x": 113.7658, + "y": 335.99604 }, { "body": null, "index": 6, "isInternal": false, - "x": 111.44682398023895, - "y": 331.1810305316628 + "x": 111.44682, + "y": 331.18103 }, { "body": null, "index": 7, "isInternal": false, - "x": 111.44684678704404, - "y": 325.8370305317115 + "x": 111.44685, + "y": 325.83703 }, { "body": null, "index": 8, "isInternal": false, - "x": 113.76586733619331, - "y": 321.02204042864554 + "x": 113.76587, + "y": 321.02204 }, { "body": null, "index": 9, "isInternal": false, - "x": 117.94488156053424, - "y": 317.68905826356325 + "x": 117.94488, + "y": 317.68906 }, { "body": null, "index": 10, "isInternal": false, - "x": 123.15488663483023, - "y": 316.500080498502 + "x": 123.15489, + "y": 316.50008 }, { "body": null, "index": 11, "isInternal": false, - "x": 128.36488156043933, - "y": 317.68910273341896 + "x": 128.36488, + "y": 317.6891 }, { "body": null, "index": 12, "isInternal": false, - "x": 132.54386733602223, - "y": 321.0221205682761 + "x": 132.54387, + "y": 321.02212 }, { "body": null, "index": 13, "isInternal": false, - "x": 134.8628467868307, - "y": 325.8371304651224 + "x": 134.86285, + "y": 325.83713 }, { - "angle": 0.00006324883892259597, - "anglePrev": 0.000034353781047147254, - "angularSpeed": 0.000022838899045787196, - "angularVelocity": 0.00002802199819124204, - "area": 802.396328, + "angle": 0.00006, + "anglePrev": 0.00003, + "angularSpeed": 0.00002, + "angularVelocity": 0.00003, + "area": 802.39633, "axes": { "#": 1432 }, "bounds": { "#": 1442 }, - "circleRadius": 16.145361796982165, + "circleRadius": 16.14536, "collisionFilter": { "#": 1445 }, @@ -12843,13 +12843,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 38, - "inertia": 409.9154941824296, - "inverseInertia": 0.0024395272054658127, - "inverseMass": 1.2462669196063418, + "inertia": 409.91549, + "inverseInertia": 0.00244, + "inverseMass": 1.24627, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.802396328, + "mass": 0.8024, "motion": 0, "parent": null, "position": { @@ -12871,7 +12871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055648977909024, + "speed": 3.05565, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12913,40 +12913,40 @@ } ], { - "x": -0.9396571792201551, - "y": -0.34211750253388323 + "x": -0.93966, + "y": -0.34212 }, { - "x": -0.7659978940053088, - "y": -0.642843080680995 + "x": -0.766, + "y": -0.64284 }, { - "x": -0.4999969990885213, - "y": -0.8660271363545567 + "x": -0.5, + "y": -0.86603 }, { - "x": -0.1734686855301692, - "y": -0.9848393854535041 + "x": -0.17347, + "y": -0.98484 }, { - "x": 0.17359326403725356, - "y": -0.9848174341881306 + "x": 0.17359, + "y": -0.98482 }, { - "x": 0.5001065455095374, - "y": -0.8659638809664743 + "x": 0.50011, + "y": -0.86596 }, { - "x": 0.766079206033397, - "y": -0.6427461785831484 + "x": 0.76608, + "y": -0.64275 }, { - "x": 0.9397004487716218, - "y": -0.3419986353458338 + "x": 0.9397, + "y": -0.342 }, { - "x": 0.9999999979997922, - "y": 0.0000632488388804257 + "x": 1, + "y": 0.00006 }, { "max": { @@ -12957,12 +12957,12 @@ } }, { - "x": 167.6160100917336, - "y": 343.7652280170599 + "x": 167.61601, + "y": 343.76523 }, { - "x": 135.8148418995816, - "y": 308.41957921204084 + "x": 135.81484, + "y": 308.41958 }, { "category": 1, @@ -12979,16 +12979,16 @@ "y": 0 }, { - "x": 151.7150192175225, - "y": 324.56457917974745 + "x": 151.71502, + "y": 324.56458 }, { - "x": -0.1121012297147242, - "y": 1.6317619607104494 + "x": -0.1121, + "y": 1.63176 }, { - "x": 151.71401423601517, - "y": 321.5089305090248 + "x": 151.71401, + "y": 321.50893 }, { "endCol": 3, @@ -13011,8 +13011,8 @@ "yScale": 1 }, { - "x": 0.0010049813910768535, - "y": 3.0556759091491017 + "x": 0.001, + "y": 3.05568 }, [ { @@ -13074,141 +13074,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 167.61484183597497, - "y": 327.36958483067707 + "x": 167.61484, + "y": 327.36958 }, { "body": null, "index": 1, "isInternal": false, - "x": 165.69650858167932, - "y": 332.638463508865 + "x": 165.69651, + "y": 332.63846 }, { "body": null, "index": 2, "isInternal": false, - "x": 162.09223693512507, - "y": 336.9332355514588 + "x": 162.09224, + "y": 336.93324 }, { "body": null, "index": 3, "isInternal": false, - "x": 157.23605959509385, - "y": 339.7369284094887 + "x": 157.23606, + "y": 339.73693 }, { "body": null, "index": 4, "isInternal": false, - "x": 151.71399806501873, - "y": 340.7095791474542 + "x": 151.714, + "y": 340.70958 }, { "body": null, "index": 5, "isInternal": false, - "x": 146.19205961718416, - "y": 339.7362298893121 + "x": 146.19206, + "y": 339.73623 }, { "body": null, "index": 6, "isInternal": false, - "x": 141.33623697664135, - "y": 336.93192275855904 + "x": 141.33624, + "y": 336.93192 }, { "body": null, "index": 7, "isInternal": false, - "x": 137.7325086376131, - "y": 332.63669481833455 + "x": 137.73251, + "y": 332.63669 }, { "body": null, "index": 8, "isInternal": false, - "x": 135.8148418995816, - "y": 327.3675735176006 + "x": 135.81484, + "y": 327.36757 }, { "body": null, "index": 9, "isInternal": false, - "x": 135.81519659907002, - "y": 321.75957352881784 + "x": 135.8152, + "y": 321.75957 }, { "body": null, "index": 10, "isInternal": false, - "x": 137.73352985336567, - "y": 316.4906948506299 + "x": 137.73353, + "y": 316.49069 }, { "body": null, "index": 11, "isInternal": false, - "x": 141.33780149991992, - "y": 312.19592280803613 + "x": 141.3378, + "y": 312.19592 }, { "body": null, "index": 12, "isInternal": false, - "x": 146.19397883995114, - "y": 309.3922299500063 + "x": 146.19398, + "y": 309.39223 }, { "body": null, "index": 13, "isInternal": false, - "x": 151.71604037002626, - "y": 308.41957921204084 + "x": 151.71604, + "y": 308.41958 }, { "body": null, "index": 14, "isInternal": false, - "x": 157.23797881786084, - "y": 309.39292847018294 + "x": 157.23798, + "y": 309.39293 }, { "body": null, "index": 15, "isInternal": false, - "x": 162.09380145840365, - "y": 312.197235600936 + "x": 162.0938, + "y": 312.19724 }, { "body": null, "index": 16, "isInternal": false, - "x": 165.69752979743188, - "y": 316.4924635411605 + "x": 165.69753, + "y": 316.49246 }, { "body": null, "index": 17, "isInternal": false, - "x": 167.61519653546338, - "y": 321.7615848418943 + "x": 167.6152, + "y": 321.76158 }, { - "angle": -0.0000030154087052504766, - "anglePrev": -0.0000026648216103951702, - "angularSpeed": 3.505870948553064e-7, - "angularVelocity": -3.505870948553064e-7, - "area": 1091.045108, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1091.04511, "axes": { "#": 1475 }, "bounds": { "#": 1486 }, - "circleRadius": 18.78999485596708, + "circleRadius": 18.78999, "collisionFilter": { "#": 1489 }, @@ -13223,13 +13223,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 39, - "inertia": 757.8605778590133, - "inverseInertia": 0.0013195039156477042, - "inverseMass": 0.9165523887762117, + "inertia": 757.86058, + "inverseInertia": 0.00132, + "inverseMass": 0.91655, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.091045108, + "mass": 1.09105, "motion": 0, "parent": null, "position": { @@ -13251,7 +13251,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055548917809964, + "speed": 3.05555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13296,44 +13296,44 @@ } ], { - "x": -0.9510387507618362, - "y": -0.30907166571745937 + "x": -0.95104, + "y": -0.30907 }, { - "x": -0.8091128059641861, - "y": -0.5876533563460353 + "x": -0.80911, + "y": -0.58765 }, { - "x": -0.5876582359469459, - "y": -0.8091092619193794 + "x": -0.58766, + "y": -0.80911 }, { - "x": -0.30907740125289496, - "y": -0.9510368867897586 + "x": -0.30908, + "y": -0.95104 }, { - "x": -0.000003015408705245906, - "y": -0.9999999999954532 + "x": 0, + "y": -1 }, { - "x": 0.30907166571745937, - "y": -0.9510387507618362 + "x": 0.30907, + "y": -0.95104 }, { - "x": 0.5876533563460353, - "y": -0.8091128059641861 + "x": 0.58765, + "y": -0.80911 }, { - "x": 0.8091092619193794, - "y": -0.5876582359469459 + "x": 0.80911, + "y": -0.58766 }, { - "x": 0.9510368867897586, - "y": -0.30907740125289496 + "x": 0.95104, + "y": -0.30908 }, { - "x": 0.9999999999954532, - "y": -0.000003015408705245906 + "x": 1, + "y": 0 }, { "max": { @@ -13344,12 +13344,12 @@ } }, { - "x": 210.1877636334037, - "y": 373.04487370471065 + "x": 210.18776, + "y": 373.04487 }, { - "x": 173.06972872816775, - "y": 332.8713070625453 + "x": 173.06973, + "y": 332.87131 }, { "category": 1, @@ -13366,16 +13366,16 @@ "y": 0 }, { - "x": 191.62873759036958, - "y": 351.43031592474716 + "x": 191.62874, + "y": 351.43032 }, { - "x": -0.255675536948943, - "y": 1.2128650616537262 + "x": -0.25568, + "y": 1.21287 }, { - "x": 191.62872040953724, - "y": 348.3747670069855 + "x": 191.62872, + "y": 348.37477 }, { "endCol": 4, @@ -13398,8 +13398,8 @@ "yScale": 1 }, { - "x": 0.000017180832344365626, - "y": 3.0555489177616613 + "x": 0.00002, + "y": 3.05555 }, [ { @@ -13467,155 +13467,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 210.18774645257136, - "y": 354.36925996176365 + "x": 210.18775, + "y": 354.36926 }, { "body": null, "index": 1, "isInternal": false, - "x": 208.3707633117297, - "y": 359.9602654407359 + "x": 208.37076, + "y": 359.96027 }, { "body": null, "index": 2, "isInternal": false, - "x": 204.9157776560446, - "y": 364.7172758589513 + "x": 204.91578, + "y": 364.71728 }, { "body": null, "index": 3, "isInternal": false, - "x": 200.15878807430332, - "y": 368.17229020323475 + "x": 200.15879, + "y": 368.17229 }, { "body": null, "index": 4, "isInternal": false, - "x": 194.56779355332634, - "y": 369.98930706237667 + "x": 194.56779, + "y": 369.98931 }, { "body": null, "index": 5, "isInternal": false, - "x": 188.6897935533531, - "y": 369.989324786949 + "x": 188.68979, + "y": 369.98932 }, { "body": null, "index": 6, "isInternal": false, - "x": 183.09878807438088, - "y": 368.1723416461073 + "x": 183.09879, + "y": 368.17234 }, { "body": null, "index": 7, "isInternal": false, - "x": 178.34177765616542, - "y": 364.7173559904222 + "x": 178.34178, + "y": 364.71736 }, { "body": null, "index": 8, "isInternal": false, - "x": 174.88676331188194, - "y": 359.9603664086809 + "x": 174.88676, + "y": 359.96037 }, { "body": null, "index": 9, "isInternal": false, - "x": 173.0697464527401, - "y": 354.369371887704 + "x": 173.06975, + "y": 354.36937 }, { "body": null, "index": 10, "isInternal": false, - "x": 173.06972872816775, - "y": 348.4913718877307 + "x": 173.06973, + "y": 348.49137 }, { "body": null, "index": 11, "isInternal": false, - "x": 174.88671186900942, - "y": 342.90036640875843 + "x": 174.88671, + "y": 342.90037 }, { "body": null, "index": 12, "isInternal": false, - "x": 178.3416975246945, - "y": 338.1433559905431 + "x": 178.3417, + "y": 338.14336 }, { "body": null, "index": 13, "isInternal": false, - "x": 183.0986871064358, - "y": 334.6883416462596 + "x": 183.09869, + "y": 334.68834 }, { "body": null, "index": 14, "isInternal": false, - "x": 188.68968162741277, - "y": 332.87132478711777 + "x": 188.68968, + "y": 332.87132 }, { "body": null, "index": 15, "isInternal": false, - "x": 194.567681627386, - "y": 332.8713070625453 + "x": 194.56768, + "y": 332.87131 }, { "body": null, "index": 16, "isInternal": false, - "x": 200.15868710635823, - "y": 334.688290203387 + "x": 200.15869, + "y": 334.68829 }, { "body": null, "index": 17, "isInternal": false, - "x": 204.9156975245737, - "y": 338.1432758590722 + "x": 204.9157, + "y": 338.14328 }, { "body": null, "index": 18, "isInternal": false, - "x": 208.37071186885717, - "y": 342.9002654408134 + "x": 208.37071, + "y": 342.90027 }, { "body": null, "index": 19, "isInternal": false, - "x": 210.187728727999, - "y": 348.4912599617903 + "x": 210.18773, + "y": 348.49126 }, { - "angle": -0.000011709161341223684, - "anglePrev": -0.000010066880090779932, - "angularSpeed": 0.000001642281250443752, - "angularVelocity": -0.000001642281250443752, - "area": 677.950314, + "angle": -0.00001, + "anglePrev": -0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 677.95031, "axes": { "#": 1521 }, "bounds": { "#": 1530 }, - "circleRadius": 14.881129972565159, + "circleRadius": 14.88113, "collisionFilter": { "#": 1533 }, @@ -13630,13 +13630,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 40, - "inertia": 292.6404130867056, - "inverseInertia": 0.00341716302766328, - "inverseMass": 1.4750343489036277, + "inertia": 292.64041, + "inverseInertia": 0.00342, + "inverseMass": 1.47503, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.677950314, + "mass": 0.67795, "motion": 0, "parent": null, "position": { @@ -13658,7 +13658,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055834695002028, + "speed": 3.05583, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13697,36 +13697,36 @@ } ], { - "x": -0.9238995841375219, - "y": -0.38263501986947535 + "x": -0.9239, + "y": -0.38264 }, { - "x": -0.70711506076546, - "y": -0.7070985015106875 + "x": -0.70712, + "y": -0.7071 }, { - "x": -0.382656655943139, - "y": -0.9238906232138162 + "x": -0.38266, + "y": -0.92389 }, { - "x": -0.00001170916134095612, - "y": -0.9999999999314477 + "x": -0.00001, + "y": -1 }, { - "x": 0.38263501986947535, - "y": -0.9238995841375219 + "x": 0.38264, + "y": -0.9239 }, { - "x": 0.7070985015106875, - "y": -0.70711506076546 + "x": 0.7071, + "y": -0.70712 }, { - "x": 0.9238906232138162, - "y": -0.382656655943139 + "x": 0.92389, + "y": -0.38266 }, { - "x": 0.9999999999314477, - "y": -0.00001170916134095612 + "x": 1, + "y": -0.00001 }, { "max": { @@ -13737,12 +13737,12 @@ } }, { - "x": 310.6105410293098, - "y": 328.0850724221686 + "x": 310.61054, + "y": 328.08507 }, { - "x": 281.419948009644, - "y": 295.8391697908817 + "x": 281.41995, + "y": 295.83917 }, { "category": 1, @@ -13759,16 +13759,16 @@ "y": 0 }, { - "x": 296.01498200033876, - "y": 310.4342037815765 + "x": 296.01498, + "y": 310.4342 }, { - "x": 0.665376746527547, - "y": 0.36254381610954606 + "x": 0.66538, + "y": 0.36254 }, { - "x": 296.0144569620625, - "y": 307.3783691316792 + "x": 296.01446, + "y": 307.37837 }, { "endCol": 6, @@ -13791,8 +13791,8 @@ "yScale": 1 }, { - "x": 0.0005250382762369554, - "y": 3.0558346498972986 + "x": 0.00053, + "y": 3.05583 }, [ { @@ -13848,127 +13848,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 310.61001599103355, - "y": 313.3370328861677 + "x": 310.61002, + "y": 313.33703 }, { "body": null, "index": 1, "isInternal": false, - "x": 308.38807881083653, - "y": 318.7020589035564 + "x": 308.38808, + "y": 318.70206 }, { "body": null, "index": 2, "isInternal": false, - "x": 304.2831268772253, - "y": 322.80710696938223 + "x": 304.28313, + "y": 322.80711 }, { "body": null, "index": 3, "isInternal": false, - "x": 298.9181528953496, - "y": 325.02916978888067 + "x": 298.91815, + "y": 325.02917 }, { "body": null, "index": 4, "isInternal": false, - "x": 293.11215289574756, - "y": 325.0292377722713 + "x": 293.11215, + "y": 325.02924 }, { "body": null, "index": 5, "isInternal": false, - "x": 287.74712687835887, - "y": 322.8073005920743 + "x": 287.74713, + "y": 322.8073 }, { "body": null, "index": 6, "isInternal": false, - "x": 283.64207881253304, - "y": 318.702348658463 + "x": 283.64208, + "y": 318.70235 }, { "body": null, "index": 7, "isInternal": false, - "x": 281.4200159930346, - "y": 313.33737467658733 + "x": 281.42002, + "y": 313.33737 }, { "body": null, "index": 8, "isInternal": false, - "x": 281.419948009644, - "y": 307.5313746769853 + "x": 281.41995, + "y": 307.53137 }, { "body": null, "index": 9, "isInternal": false, - "x": 283.641885189841, - "y": 302.1663486595966 + "x": 283.64189, + "y": 302.16635 }, { "body": null, "index": 10, "isInternal": false, - "x": 287.7468371234522, - "y": 298.0613005937708 + "x": 287.74684, + "y": 298.0613 }, { "body": null, "index": 11, "isInternal": false, - "x": 293.11181110532794, - "y": 295.83923777427236 + "x": 293.11181, + "y": 295.83924 }, { "body": null, "index": 12, "isInternal": false, - "x": 298.91781110492997, - "y": 295.8391697908817 + "x": 298.91781, + "y": 295.83917 }, { "body": null, "index": 13, "isInternal": false, - "x": 304.28283712231865, - "y": 298.06110697107874 + "x": 304.28284, + "y": 298.06111 }, { "body": null, "index": 14, "isInternal": false, - "x": 308.3878851881445, - "y": 302.16605890469003 + "x": 308.38789, + "y": 302.16606 }, { "body": null, "index": 15, "isInternal": false, - "x": 310.6099480076429, - "y": 307.5310328865657 + "x": 310.60995, + "y": 307.53103 }, { - "angle": -0.00001838791211655256, - "anglePrev": -0.000018287550748569996, - "angularSpeed": 1.0036136798256422e-7, - "angularVelocity": -1.0036136798256422e-7, - "area": 460.97596999999996, + "angle": -0.00002, + "anglePrev": -0.00002, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 460.97597, "axes": { "#": 1561 }, "bounds": { "#": 1569 }, - "circleRadius": 12.320001714677641, + "circleRadius": 12.32, "collisionFilter": { "#": 1572 }, @@ -13983,13 +13983,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 41, - "inertia": 135.31220425278414, - "inverseInertia": 0.007390316383671093, - "inverseMass": 2.1693104740362066, + "inertia": 135.3122, + "inverseInertia": 0.00739, + "inverseMass": 2.16931, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.46097596999999996, + "mass": 0.46098, "motion": 0, "parent": null, "position": { @@ -14011,7 +14011,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055694472039552, + "speed": 3.05569, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14047,32 +14047,32 @@ } ], { - "x": -0.9009753214896412, - "y": -0.4338703378506507 + "x": -0.90098, + "y": -0.43387 }, { - "x": -0.6235299926968302, - "y": -0.7817994296541098 + "x": -0.62353, + "y": -0.7818 }, { - "x": -0.22254555787609467, - "y": -0.9749222916056532 + "x": -0.22255, + "y": -0.97492 }, { - "x": 0.22250970415477364, - "y": -0.9749304752426993 + "x": 0.22251, + "y": -0.97493 }, { - "x": 0.6235012409567763, - "y": -0.7818223599548434 + "x": 0.6235, + "y": -0.78182 }, { - "x": 0.9009593649410929, - "y": -0.4339034716673083 + "x": 0.90096, + "y": -0.4339 }, { - "x": 0.9999999998309426, - "y": -0.000018387912115516354 + "x": 1, + "y": -0.00002 }, { "max": { @@ -14083,12 +14083,12 @@ } }, { - "x": 335.47938730405554, - "y": 327.67817255909654 + "x": 335.47939, + "y": 327.67817 }, { - "x": 311.45694011780785, - "y": 299.98247811085554 + "x": 311.45694, + "y": 299.98248 }, { "category": 1, @@ -14105,16 +14105,16 @@ "y": 0 }, { - "x": 323.4679905170444, - "y": 312.30247810877273 + "x": 323.46799, + "y": 312.30248 }, { - "x": 0.9534760571490516, - "y": 0.44039259712069523 + "x": 0.95348, + "y": 0.44039 }, { - "x": 323.4676441292699, - "y": 309.2467836563661 + "x": 323.46764, + "y": 309.24678 }, { "endCol": 6, @@ -14137,8 +14137,8 @@ "yScale": 1 }, { - "x": 0.00034638777452755676, - "y": 3.0556944524066187 + "x": 0.00035, + "y": 3.05569 }, [ { @@ -14188,113 +14188,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 335.479040916281, - "y": 315.0432572510969 + "x": 335.47904, + "y": 315.04326 }, { "body": null, "index": 1, "isInternal": false, - "x": 333.10013175296905, - "y": 319.98330099510474 + "x": 333.10013, + "y": 319.9833 }, { "body": null, "index": 2, "isInternal": false, - "x": 328.8131946219654, - "y": 323.402379823506 + "x": 328.81319, + "y": 323.40238 }, { "body": null, "index": 3, "isInternal": false, - "x": 323.4682170561217, - "y": 324.6224781066899 + "x": 323.46822, + "y": 324.62248 }, { "body": null, "index": 4, "isInternal": false, - "x": 318.12319462377246, - "y": 323.4025763902866 + "x": 318.12319, + "y": 323.40258 }, { "body": null, "index": 5, "isInternal": false, - "x": 313.8361317562257, - "y": 319.9836552198436 + "x": 313.83613, + "y": 319.98366 }, { "body": null, "index": 6, "isInternal": false, - "x": 311.457040920342, - "y": 315.0436989655218 + "x": 311.45704, + "y": 315.0437 }, { "body": null, "index": 7, "isInternal": false, - "x": 311.45694011780785, - "y": 309.56169896644843 + "x": 311.45694, + "y": 309.5617 }, { "body": null, "index": 8, "isInternal": false, - "x": 313.8358492811198, - "y": 304.6216552224407 + "x": 313.83585, + "y": 304.62166 }, { "body": null, "index": 9, "isInternal": false, - "x": 318.12278641212345, - "y": 301.2025763940395 + "x": 318.12279, + "y": 301.20258 }, { "body": null, "index": 10, "isInternal": false, - "x": 323.46776397796714, - "y": 299.98247811085554 + "x": 323.46776, + "y": 299.98248 }, { "body": null, "index": 11, "isInternal": false, - "x": 328.8127864103164, - "y": 301.20237982725894 + "x": 328.81279, + "y": 301.20238 }, { "body": null, "index": 12, "isInternal": false, - "x": 333.09984927786314, - "y": 304.62130099770184 + "x": 333.09985, + "y": 304.6213 }, { "body": null, "index": 13, "isInternal": false, - "x": 335.47894011374683, - "y": 309.5612572520236 + "x": 335.47894, + "y": 309.56126 }, { - "angle": -6.95056338668869e-8, - "anglePrev": -4.7327983874088586e-8, - "angularSpeed": 2.2177649992798317e-8, - "angularVelocity": -2.2177649992798317e-8, - "area": 1205.152204, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1205.1522, "axes": { "#": 1598 }, "bounds": { "#": 1609 }, - "circleRadius": 19.748585390946502, + "circleRadius": 19.74859, "collisionFilter": { "#": 1612 }, @@ -14309,13 +14309,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 42, - "inertia": 924.671990568659, - "inverseInertia": 0.0010814645735997858, - "inverseMass": 0.8297707100239432, + "inertia": 924.67199, + "inverseInertia": 0.00108, + "inverseMass": 0.82977, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.205152204, + "mass": 1.20515, "motion": 0, "parent": null, "position": { @@ -14337,7 +14337,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0556179560673145, + "speed": 3.05562, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14382,44 +14382,44 @@ } ], { - "x": -0.9510828381815524, - "y": -0.30893597219573316 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.8089600412626629, - "y": -0.5878636335412416 + "x": -0.80896, + "y": -0.58786 }, { - "x": -0.5878637459957967, - "y": -0.8089599595429859 + "x": -0.58786, + "y": -0.80896 }, { - "x": -0.3089361044069613, - "y": -0.9510827952359623 + "x": -0.30894, + "y": -0.95108 }, { - "x": -6.950563386688682e-8, - "y": -0.9999999999999977 + "x": 0, + "y": -1 }, { - "x": 0.30893597219573316, - "y": -0.9510828381815524 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5878636335412416, - "y": -0.8089600412626629 + "x": 0.58786, + "y": -0.80896 }, { - "x": 0.8089599595429859, - "y": -0.5878637459957967 + "x": 0.80896, + "y": -0.58786 }, { - "x": 0.9510827952359623, - "y": -0.3089361044069613 + "x": 0.95108, + "y": -0.30894 }, { - "x": 0.9999999999999977, - "y": -6.950563386688682e-8 + "x": 1, + "y": 0 }, { "max": { @@ -14430,12 +14430,12 @@ } }, { - "x": 478.2013948778333, - "y": 385.06386542590496 + "x": 478.20139, + "y": 385.06387 }, { - "x": 439.1912716378618, - "y": 342.9982470428999 + "x": 439.19127, + "y": 342.99825 }, { "category": 1, @@ -14452,16 +14452,16 @@ "y": 0 }, { - "x": 458.6962718525647, - "y": 362.50324725760277 + "x": 458.69627, + "y": 362.50325 }, { - "x": 0.8165144496833201, - "y": 1.5986222615809689 + "x": 0.81651, + "y": 1.59862 }, { - "x": 458.6961490419989, - "y": 359.44762930400344 + "x": 458.69615, + "y": 359.44763 }, { "endCol": 9, @@ -14484,8 +14484,8 @@ "yScale": 1 }, { - "x": 0.00012281056575602634, - "y": 3.05561795359933 + "x": 0.00012, + "y": 3.05562 }, [ { @@ -14553,155 +14553,155 @@ "body": null, "index": 0, "isInternal": false, - "x": 478.20127206726755, - "y": 365.5922459018954 + "x": 478.20127, + "y": 365.59225 }, { "body": null, "index": 1, "isInternal": false, - "x": 476.2922724757522, - "y": 371.46924603458166 + "x": 476.29227, + "y": 371.46925 }, { "body": null, "index": 2, "isInternal": false, - "x": 472.66027282314127, - "y": 376.4672462870261 + "x": 472.66027, + "y": 376.46725 }, { "body": null, "index": 3, "isInternal": false, - "x": 467.6622730755857, - "y": 380.09924663441524 + "x": 467.66227, + "y": 380.09925 }, { "body": null, "index": 4, "isInternal": false, - "x": 461.7852732082721, - "y": 382.0082470428998 + "x": 461.78527, + "y": 382.00825 }, { "body": null, "index": 5, "isInternal": false, - "x": 455.60727320827203, - "y": 382.00824747230564 + "x": 455.60727, + "y": 382.00825 }, { "body": null, "index": 6, "isInternal": false, - "x": 449.7302730755858, - "y": 380.0992478807903 + "x": 449.73027, + "y": 380.09925 }, { "body": null, "index": 7, "isInternal": false, - "x": 444.73227282314133, - "y": 376.46724822817936 + "x": 444.73227, + "y": 376.46725 }, { "body": null, "index": 8, "isInternal": false, - "x": 441.1002724757522, - "y": 371.4692484806238 + "x": 441.10027, + "y": 371.46925 }, { "body": null, "index": 9, "isInternal": false, - "x": 439.1912720672676, - "y": 365.5922486133102 + "x": 439.19127, + "y": 365.59225 }, { "body": null, "index": 10, "isInternal": false, - "x": 439.1912716378618, - "y": 359.4142486133101 + "x": 439.19127, + "y": 359.41425 }, { "body": null, "index": 11, "isInternal": false, - "x": 441.10027122937714, - "y": 353.5372484806239 + "x": 441.10027, + "y": 353.53725 }, { "body": null, "index": 12, "isInternal": false, - "x": 444.7322708819881, - "y": 348.5392482281794 + "x": 444.73227, + "y": 348.53925 }, { "body": null, "index": 13, "isInternal": false, - "x": 449.73027062954367, - "y": 344.9072478807903 + "x": 449.73027, + "y": 344.90725 }, { "body": null, "index": 14, "isInternal": false, - "x": 455.60727049685727, - "y": 342.9982474723057 + "x": 455.60727, + "y": 342.99825 }, { "body": null, "index": 15, "isInternal": false, - "x": 461.7852704968573, - "y": 342.9982470428999 + "x": 461.78527, + "y": 342.99825 }, { "body": null, "index": 16, "isInternal": false, - "x": 467.66227062954357, - "y": 344.90724663441523 + "x": 467.66227, + "y": 344.90725 }, { "body": null, "index": 17, "isInternal": false, - "x": 472.660270881988, - "y": 348.5392462870262 + "x": 472.66027, + "y": 348.53925 }, { "body": null, "index": 18, "isInternal": false, - "x": 476.29227122937715, - "y": 353.53724603458176 + "x": 476.29227, + "y": 353.53725 }, { "body": null, "index": 19, "isInternal": false, - "x": 478.20127163786174, - "y": 359.41424590189536 + "x": 478.20127, + "y": 359.41425 }, { - "angle": 0.000008654673330572173, - "anglePrev": 0.0000064641686209247465, - "angularSpeed": 0.0000021905047096474267, - "angularVelocity": 0.0000021905047096474267, - "area": 362.584524, + "angle": 0.00001, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 362.58452, "axes": { "#": 1644 }, "bounds": { "#": 1651 }, - "circleRadius": 10.994041495198903, + "circleRadius": 10.99404, "collisionFilter": { "#": 1654 }, @@ -14716,13 +14716,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 43, - "inertia": 83.73095584960791, - "inverseInertia": 0.011943014263400204, - "inverseMass": 2.7579776129661835, + "inertia": 83.73096, + "inverseInertia": 0.01194, + "inverseMass": 2.75798, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.362584524, + "mass": 0.36258, "motion": 0, "parent": null, "position": { @@ -14744,7 +14744,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055594786678106, + "speed": 3.05559, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14777,28 +14777,28 @@ } ], { - "x": -0.8660788566096171, - "y": -0.49990740556004787 + "x": -0.86608, + "y": -0.49991 }, { - "x": -0.49989241422599406, - "y": -0.8660875095504534 + "x": -0.49989, + "y": -0.86609 }, { - "x": 0.000008654673330464127, - "y": -0.9999999999625482 + "x": 0.00001, + "y": -1 }, { - "x": 0.49990740556004787, - "y": -0.8660788566096171 + "x": 0.49991, + "y": -0.86608 }, { - "x": 0.8660875095504534, - "y": -0.49989241422599406 + "x": 0.86609, + "y": -0.49989 }, { - "x": 0.9999999999625482, - "y": 0.000008654673330464127 + "x": 1, + "y": 0.00001 }, { "max": { @@ -14809,12 +14809,12 @@ } }, { - "x": 441.735298296746, - "y": 359.87855648045235 + "x": 441.7353, + "y": 359.87856 }, { - "x": 420.4969629401939, - "y": 335.5849124628737 + "x": 420.49696, + "y": 335.58491 }, { "category": 1, @@ -14831,16 +14831,16 @@ "y": 0 }, { - "x": 431.11598756234173, - "y": 346.20393708502155 + "x": 431.11599, + "y": 346.20394 }, { - "x": 0.9114168898344581, - "y": 1.1725512264952733 + "x": 0.91142, + "y": 1.17255 }, { - "x": 431.1157014500853, - "y": 343.1483423117386 + "x": 431.1157, + "y": 343.14834 }, { "endCol": 9, @@ -14863,8 +14863,8 @@ "yScale": 1 }, { - "x": 0.00028611225644681326, - "y": 3.0555947732829685 + "x": 0.00029, + "y": 3.05559 }, [ { @@ -14908,99 +14908,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 441.73496293939843, - "y": 349.0490289888911 + "x": 441.73496, + "y": 349.04903 }, { "body": null, "index": 1, "isInternal": false, - "x": 438.8899202806201, - "y": 353.978004366161 + "x": 438.88992, + "y": 353.978 }, { "body": null, "index": 2, "isInternal": false, - "x": 433.9608956582591, - "y": 356.8229617071694 + "x": 433.9609, + "y": 356.82296 }, { "body": null, "index": 3, "isInternal": false, - "x": 428.27089565847217, - "y": 356.82291246207825 + "x": 428.2709, + "y": 356.82291 }, { "body": null, "index": 4, "isInternal": false, - "x": 423.3419202812023, - "y": 353.97786980329994 + "x": 423.34192, + "y": 353.97787 }, { "body": null, "index": 5, "isInternal": false, - "x": 420.4969629401939, - "y": 349.04884518093894 + "x": 420.49696, + "y": 349.04885 }, { "body": null, "index": 6, "isInternal": false, - "x": 420.49701218528503, - "y": 343.358845181152 + "x": 420.49701, + "y": 343.35885 }, { "body": null, "index": 7, "isInternal": false, - "x": 423.34205484406334, - "y": 338.4298698038821 + "x": 423.34205, + "y": 338.42987 }, { "body": null, "index": 8, "isInternal": false, - "x": 428.27107946642434, - "y": 335.5849124628737 + "x": 428.27108, + "y": 335.58491 }, { "body": null, "index": 9, "isInternal": false, - "x": 433.9610794662113, - "y": 335.58496170796485 + "x": 433.96108, + "y": 335.58496 }, { "body": null, "index": 10, "isInternal": false, - "x": 438.89005484348115, - "y": 338.43000436674316 + "x": 438.89005, + "y": 338.43 }, { "body": null, "index": 11, "isInternal": false, - "x": 441.73501218448956, - "y": 343.35902898910416 + "x": 441.73501, + "y": 343.35903 }, { - "angle": -0.000010665749810565671, - "anglePrev": -0.000008477775081319437, - "angularSpeed": 0.0000021879747292462344, - "angularVelocity": -0.0000021879747292462344, - "area": 805.817864, + "angle": -0.00001, + "anglePrev": -0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 805.81786, "axes": { "#": 1678 }, "bounds": { "#": 1688 }, - "circleRadius": 16.1798268175583, + "circleRadius": 16.17983, "collisionFilter": { "#": 1691 }, @@ -15015,13 +15015,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 44, - "inertia": 413.41882770208514, - "inverseInertia": 0.002418854519902545, - "inverseMass": 1.2409752186878795, + "inertia": 413.41883, + "inverseInertia": 0.00242, + "inverseMass": 1.24098, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.805817864, + "mass": 0.80582, "motion": 0, "parent": null, "position": { @@ -15043,7 +15043,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555859257126663, + "speed": 3.05559, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15085,40 +15085,40 @@ } ], { - "x": -0.9396827029673327, - "y": -0.34204739107908305 + "x": -0.93968, + "y": -0.34205 }, { - "x": -0.7660061491247939, - "y": -0.6428332439311175 + "x": -0.76601, + "y": -0.64283 }, { - "x": -0.5000911322567106, - "y": -0.8659727821578468 + "x": -0.50009, + "y": -0.86597 }, { - "x": -0.17369431882361494, - "y": -0.9847996159668224 + "x": -0.17369, + "y": -0.9848 }, { - "x": 0.17367331153146331, - "y": -0.9848033209030601 + "x": 0.17367, + "y": -0.9848 }, { - "x": 0.5000726596448586, - "y": -0.8659834496546209 + "x": 0.50007, + "y": -0.86598 }, { - "x": 0.7659924363534164, - "y": -0.6428495838447411 + "x": 0.76599, + "y": -0.64285 }, { - "x": 0.9396754063697471, - "y": -0.3420674358424823 + "x": 0.93968, + "y": -0.34207 }, { - "x": 0.9999999999431209, - "y": -0.000010665749810363454 + "x": 1, + "y": -0.00001 }, { "max": { @@ -15129,12 +15129,12 @@ } }, { - "x": 519.2080921643192, - "y": 382.0951695911181 + "x": 519.20809, + "y": 382.09517 }, { - "x": 487.34002146601625, - "y": 346.67958366726475 + "x": 487.34002, + "y": 346.67958 }, { "category": 1, @@ -15151,16 +15151,16 @@ "y": 0 }, { - "x": 503.274051435867, - "y": 362.8595836663446 + "x": 503.27405, + "y": 362.85958 }, { - "x": 1.106915396687711, - "y": 2.150553067666182 + "x": 1.10692, + "y": 2.15055 }, { - "x": 503.27404067726553, - "y": 359.80399774065086 + "x": 503.27404, + "y": 359.804 }, { "endCol": 10, @@ -15183,8 +15183,8 @@ "yScale": 1 }, { - "x": 0.000010758601490579167, - "y": 3.055585925693726 + "x": 0.00001, + "y": 3.05559 }, [ { @@ -15246,141 +15246,141 @@ "body": null, "index": 0, "isInternal": false, - "x": 519.2080814057177, - "y": 365.66941371812726 + "x": 519.20808, + "y": 365.66941 }, { "body": null, "index": 1, "isInternal": false, - "x": 517.2861377209857, - "y": 370.949434217398 + "x": 517.28614, + "y": 370.94943 }, { "body": null, "index": 2, "isInternal": false, - "x": 513.6741836265786, - "y": 375.25347274184156 + "x": 513.67418, + "y": 375.25347 }, { "body": null, "index": 3, "isInternal": false, - "x": 508.8082135976123, - "y": 378.06352464122034 + "x": 508.80821, + "y": 378.06352 }, { "body": null, "index": 4, "isInternal": false, - "x": 503.2742240076989, - "y": 379.0395836654244 + "x": 503.27422, + "y": 379.03958 }, { "body": null, "index": 5, "isInternal": false, - "x": 497.7402135982419, - "y": 378.06364268973925 + "x": 497.74021, + "y": 378.06364 }, { "body": null, "index": 6, "isInternal": false, - "x": 492.87418362776174, - "y": 375.25369458943766 + "x": 492.87418, + "y": 375.25369 }, { "body": null, "index": 7, "isInternal": false, - "x": 489.26213772258, - "y": 370.9497331143707 + "x": 489.26214, + "y": 370.94973 }, { "body": null, "index": 8, "isInternal": false, - "x": 487.34008140753025, - "y": 365.66975361424227 + "x": 487.34008, + "y": 365.66975 }, { "body": null, "index": 9, "isInternal": false, - "x": 487.34002146601625, - "y": 360.0497536145619 + "x": 487.34002, + "y": 360.04975 }, { "body": null, "index": 10, "isInternal": false, - "x": 489.261965150748, - "y": 354.76973311529116 + "x": 489.26197, + "y": 354.76973 }, { "body": null, "index": 11, "isInternal": false, - "x": 492.87391924515543, - "y": 350.4656945908476 + "x": 492.87392, + "y": 350.46569 }, { "body": null, "index": 12, "isInternal": false, - "x": 497.73988927412177, - "y": 347.6556426914688 + "x": 497.73989, + "y": 347.65564 }, { "body": null, "index": 13, "isInternal": false, - "x": 503.27387886403517, - "y": 346.67958366726475 + "x": 503.27388, + "y": 346.67958 }, { "body": null, "index": 14, "isInternal": false, - "x": 508.80788927349215, - "y": 347.6555246429499 + "x": 508.80789, + "y": 347.65552 }, { "body": null, "index": 15, "isInternal": false, - "x": 513.6739192439721, - "y": 350.4654727432515 + "x": 513.67392, + "y": 350.46547 }, { "body": null, "index": 16, "isInternal": false, - "x": 517.285965149154, - "y": 354.76943421831845 + "x": 517.28597, + "y": 354.76943 }, { "body": null, "index": 17, "isInternal": false, - "x": 519.2080214642039, - "y": 360.0494137184469 + "x": 519.20802, + "y": 360.04941 }, { - "angle": 6.47993681723842e-7, - "anglePrev": 5.761301436012588e-7, - "angularSpeed": 7.186353812258322e-8, - "angularVelocity": 7.186353812258322e-8, - "area": 1175.440884, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1175.44088, "axes": { "#": 1721 }, "bounds": { "#": 1732 }, - "circleRadius": 19.50347222222222, + "circleRadius": 19.50347, "collisionFilter": { "#": 1735 }, @@ -15395,13 +15395,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 45, - "inertia": 879.6410498592595, - "inverseInertia": 0.00113682734583612, - "inverseMass": 0.8507446130315133, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "inverseMass": 0.85074, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1754408840000001, + "mass": 1.17544, "motion": 0, "parent": null, "position": { @@ -15423,7 +15423,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555539446914306, + "speed": 3.05555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15468,44 +15468,44 @@ } ], { - "x": -0.9510808302076453, - "y": -0.3089421538274374 + "x": -0.95108, + "y": -0.30894 }, { - "x": -0.80901197395954, - "y": -0.5877921622394158 + "x": -0.80901, + "y": -0.58779 }, { - "x": -0.5877911137696273, - "y": -0.8090127357300753 + "x": -0.58779, + "y": -0.80901 }, { - "x": -0.3089409212384403, - "y": -0.9510812305919741 + "x": -0.30894, + "y": -0.95108 }, { - "x": 6.479936817237968e-7, - "y": -0.9999999999997903 + "x": 0, + "y": -1 }, { - "x": 0.3089421538274374, - "y": -0.9510808302076453 + "x": 0.30894, + "y": -0.95108 }, { - "x": 0.5877921622394158, - "y": -0.80901197395954 + "x": 0.58779, + "y": -0.80901 }, { - "x": 0.8090127357300753, - "y": -0.5877911137696273 + "x": 0.80901, + "y": -0.58779 }, { - "x": 0.9510812305919741, - "y": -0.3089409212384403 + "x": 0.95108, + "y": -0.30894 }, { - "x": 0.9999999999997903, - "y": 6.479936817237968e-7 + "x": 1, + "y": 0 }, { "max": { @@ -15516,12 +15516,12 @@ } }, { - "x": 625.1799810836428, - "y": 350.0972114008448 + "x": 625.17998, + "y": 350.09721 }, { - "x": 586.6539766251688, - "y": 308.5156535021041 + "x": 586.65398, + "y": 308.51565 }, { "category": 1, @@ -15538,16 +15538,16 @@ "y": 0 }, { - "x": 605.9169791066181, - "y": 327.77865547912876 + "x": 605.91698, + "y": 327.77866 }, { - "x": 0.8739911154979645, - "y": 1.0589333121598017 + "x": 0.87399, + "y": 1.05893 }, { - "x": 605.9169796110427, - "y": 324.7231015344374 + "x": 605.91698, + "y": 324.7231 }, { "endCol": 13, @@ -15570,8 +15570,8 @@ "yScale": 1 }, { - "x": -5.044246336183278e-7, - "y": 3.055553944691389 + "x": 0, + "y": 3.05555 }, [ { @@ -15639,147 +15639,147 @@ "body": null, "index": 0, "isInternal": false, - "x": 625.1799771295853, - "y": 330.82966796143035 + "x": 625.17998, + "y": 330.82967 }, { "body": null, "index": 1, "isInternal": false, - "x": 623.2949733692784, - "y": 336.63266673996105 + "x": 623.29497, + "y": 336.63267 }, { "body": null, "index": 2, "isInternal": false, - "x": 619.7079701701344, - "y": 341.5696644156067 + "x": 619.70797, + "y": 341.56966 }, { "body": null, "index": 3, "isInternal": false, - "x": 614.7709678457821, - "y": 345.1566612164612 + "x": 614.77097, + "y": 345.15666 }, { "body": null, "index": 4, "isInternal": false, - "x": 608.9679666243152, - "y": 347.0416574561534 + "x": 608.96797, + "y": 347.04166 }, { "body": null, "index": 5, "isInternal": false, - "x": 602.8659666243165, - "y": 347.041653502096 + "x": 602.86597, + "y": 347.04165 }, { "body": null, "index": 6, "isInternal": false, - "x": 597.0629678457856, - "y": 345.15664974178907 + "x": 597.06297, + "y": 345.15665 }, { "body": null, "index": 7, "isInternal": false, - "x": 592.1259701701401, - "y": 341.56964654264505 + "x": 592.12597, + "y": 341.56965 }, { "body": null, "index": 8, "isInternal": false, - "x": 588.5389733692858, - "y": 336.6326442182926 + "x": 588.53897, + "y": 336.63264 }, { "body": null, "index": 9, "isInternal": false, - "x": 586.6539771295934, - "y": 330.8296429968258 + "x": 586.65398, + "y": 330.82964 }, { "body": null, "index": 10, "isInternal": false, - "x": 586.6539810836509, - "y": 324.72764299682717 + "x": 586.65398, + "y": 324.72764 }, { "body": null, "index": 11, "isInternal": false, - "x": 588.5389848439579, - "y": 318.92464421829646 + "x": 588.53898, + "y": 318.92464 }, { "body": null, "index": 12, "isInternal": false, - "x": 592.1259880431019, - "y": 313.9876465426508 + "x": 592.12599, + "y": 313.98765 }, { "body": null, "index": 13, "isInternal": false, - "x": 597.0629903674541, - "y": 310.4006497417963 + "x": 597.06299, + "y": 310.40065 }, { "body": null, "index": 14, "isInternal": false, - "x": 602.8659915889211, - "y": 308.5156535021041 + "x": 602.86599, + "y": 308.51565 }, { "body": null, "index": 15, "isInternal": false, - "x": 608.9679915889199, - "y": 308.51565745616153 + "x": 608.96799, + "y": 308.51566 }, { "body": null, "index": 16, "isInternal": false, - "x": 614.7709903674506, - "y": 310.40066121646845 + "x": 614.77099, + "y": 310.40066 }, { "body": null, "index": 17, "isInternal": false, - "x": 619.7079880430962, - "y": 313.98766441561247 + "x": 619.70799, + "y": 313.98766 }, { "body": null, "index": 18, "isInternal": false, - "x": 623.2949848439505, - "y": 318.9246667399649 + "x": 623.29498, + "y": 318.92467 }, { "body": null, "index": 19, "isInternal": false, - "x": 625.1799810836428, - "y": 324.72766796143173 + "x": 625.17998, + "y": 324.72767 }, { - "angle": 0.0000016214648183626327, - "anglePrev": 0.000001308376002804531, - "angularSpeed": 3.1308881555810175e-7, - "angularVelocity": 3.1308881555810175e-7, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 568.46124, "axes": { "#": 1767 @@ -15787,7 +15787,7 @@ "bounds": { "#": 1775 }, - "circleRadius": 13.68102709190672, + "circleRadius": 13.68103, "collisionFilter": { "#": 1778 }, @@ -15802,13 +15802,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 46, - "inertia": 205.77002535077511, - "inverseInertia": 0.004859794317929956, - "inverseMass": 1.7591348884226479, + "inertia": 205.77003, + "inverseInertia": 0.00486, + "inverseMass": 1.75913, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.56846124, + "mass": 0.56846, "motion": 0, "parent": null, "position": { @@ -15830,7 +15830,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055561462812788, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -15866,32 +15866,32 @@ } ], { - "x": -0.9009629229291871, - "y": -0.43389608376533745 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.6234912116902961, - "y": -0.7818303581627963 + "x": -0.62349, + "y": -0.78183 }, { - "x": -0.2225422595543818, - "y": -0.9749230445078374 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.22254542116004625, - "y": -0.974922322813822 + "x": 0.22255, + "y": -0.97492 }, { - "x": 0.6234937471078571, - "y": -0.7818283362205566 + "x": 0.62349, + "y": -0.78183 }, { - "x": 0.9009643300189186, - "y": -0.4338931620036915 + "x": 0.90096, + "y": -0.43389 }, { - "x": 0.9999999999986856, - "y": 0.0000016214648183619225 + "x": 1, + "y": 0 }, { "max": { @@ -15902,12 +15902,12 @@ } }, { - "x": 618.9735240552465, - "y": 292.892297909175 + "x": 618.97352, + "y": 292.8923 }, { - "x": 592.2975141838041, - "y": 265.53029790921096 + "x": 592.29751, + "y": 265.5303 }, { "category": 1, @@ -15924,16 +15924,16 @@ "y": 0 }, { - "x": 605.6355191195253, - "y": 279.211297909193 + "x": 605.63552, + "y": 279.2113 }, { "x": 0, "y": 0 }, { - "x": 605.6355215748636, - "y": 276.1557364463812 + "x": 605.63552, + "y": 276.15574 }, { "endCol": 12, @@ -15956,8 +15956,8 @@ "yScale": 1 }, { - "x": -0.0000024553382900194265, - "y": 3.0555614628118013 + "x": 0, + "y": 3.05556 }, [ { @@ -16007,113 +16007,113 @@ "body": null, "index": 0, "isInternal": false, - "x": 618.9735141837688, - "y": 282.25531953628666 + "x": 618.97351, + "y": 282.25532 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.3315052884163, - "y": 287.7413152523694 + "x": 616.33151, + "y": 287.74132 }, { "body": null, "index": 2, "isInternal": false, - "x": 611.5714991333422, - "y": 291.537307534192 + "x": 611.5715, + "y": 291.53731 }, { "body": null, "index": 3, "isInternal": false, - "x": 605.6354969362652, - "y": 292.892297909175 + "x": 605.6355, + "y": 292.8923 }, { "body": null, "index": 4, "isInternal": false, - "x": 599.6994991333576, - "y": 291.53728828416166 + "x": 599.6995, + "y": 291.53729 }, { "body": null, "index": 5, "isInternal": false, - "x": 594.9395052884444, - "y": 287.7412805659941 + "x": 594.93951, + "y": 287.74128 }, { "body": null, "index": 6, "isInternal": false, - "x": 592.2975141838041, - "y": 282.2552762820913 + "x": 592.29751, + "y": 282.25528 }, { "body": null, "index": 7, "isInternal": false, - "x": 592.2975240552818, - "y": 276.16727628209924 + "x": 592.29752, + "y": 276.16728 }, { "body": null, "index": 8, "isInternal": false, - "x": 594.9395329506342, - "y": 270.6812805660165 + "x": 594.93953, + "y": 270.68128 }, { "body": null, "index": 9, "isInternal": false, - "x": 599.6995391057084, - "y": 266.8852882841941 + "x": 599.69954, + "y": 266.88529 }, { "body": null, "index": 10, "isInternal": false, - "x": 605.6355413027853, - "y": 265.53029790921096 + "x": 605.63554, + "y": 265.5303 }, { "body": null, "index": 11, "isInternal": false, - "x": 611.571539105693, - "y": 266.88530753422435 + "x": 611.57154, + "y": 266.88531 }, { "body": null, "index": 12, "isInternal": false, - "x": 616.3315329506062, - "y": 270.6813152523918 + "x": 616.33153, + "y": 270.68132 }, { "body": null, "index": 13, "isInternal": false, - "x": 618.9735240552465, - "y": 276.1673195362946 + "x": 618.97352, + "y": 276.16732 }, { - "angle": 0.0000028140923899390285, - "anglePrev": 0.0000022558346200717173, - "angularSpeed": 5.582577698673114e-7, - "angularVelocity": 5.582577698673114e-7, - "area": 366.82313200000004, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 366.82313, "axes": { "#": 1804 }, "bounds": { "#": 1811 }, - "circleRadius": 11.058170438957475, + "circleRadius": 11.05817, "collisionFilter": { "#": 1814 }, @@ -16128,13 +16128,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 47, - "inertia": 85.70002548110048, - "inverseInertia": 0.011668607965822963, - "inverseMass": 2.726109431942803, + "inertia": 85.70003, + "inverseInertia": 0.01167, + "inverseMass": 2.72611, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.36682313200000005, + "mass": 0.36682, "motion": 0, "parent": null, "position": { @@ -16156,7 +16156,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555448664357368, + "speed": 3.05554, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16189,28 +16189,28 @@ } ], { - "x": -0.866018344407171, - "y": -0.5000122270007624 + "x": -0.86602, + "y": -0.50001 }, { - "x": -0.500007352881578, - "y": -0.8660211585546606 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.000002814092389935314, - "y": -0.9999999999960402 + "x": 0, + "y": -1 }, { - "x": 0.5000122270007624, - "y": -0.866018344407171 + "x": 0.50001, + "y": -0.86602 }, { - "x": 0.8660211585546606, - "y": -0.500007352881578 + "x": 0.86602, + "y": -0.50001 }, { - "x": 0.9999999999960402, - "y": 0.000002814092389935314 + "x": 1, + "y": 0 }, { "max": { @@ -16221,12 +16221,12 @@ } }, { - "x": 641.5149945727002, - "y": 302.5430526890782 + "x": 641.51499, + "y": 302.54305 }, { - "x": 620.1529730435441, - "y": 278.1254917148671 + "x": 620.15297, + "y": 278.12549 }, { "category": 1, @@ -16243,16 +16243,16 @@ "y": 0 }, { - "x": 630.8339810974343, - "y": 288.8064997687572 + "x": 630.83398, + "y": 288.8065 }, { - "x": 0.1737065198422766, - "y": 0.08365524271625793 + "x": 0.17371, + "y": 0.08366 }, { - "x": 630.8339756760586, - "y": 285.75095490232627 + "x": 630.83398, + "y": 285.75095 }, { "endCol": 13, @@ -16275,8 +16275,8 @@ "yScale": 1 }, { - "x": 0.0000054213757039178745, - "y": 3.0555448664309273 + "x": 0.00001, + "y": 3.05554 }, [ { @@ -16320,99 +16320,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 641.5149730434596, - "y": 291.66852982606673 + "x": 641.51497, + "y": 291.66853 }, { "body": null, "index": 1, "isInternal": false, - "x": 638.6529590940149, - "y": 296.6255217721146 + "x": 638.65296, + "y": 296.62552 }, { "body": null, "index": 2, "isInternal": false, - "x": 633.695951040102, - "y": 299.4875078226473 + "x": 633.69595, + "y": 299.48751 }, { "body": null, "index": 3, "isInternal": false, - "x": 627.9719510401248, - "y": 299.4874917147825 + "x": 627.97195, + "y": 299.48749 }, { "body": null, "index": 4, "isInternal": false, - "x": 623.0149590940769, - "y": 296.62547776533785 + "x": 623.01496, + "y": 296.62548 }, { "body": null, "index": 5, "isInternal": false, - "x": 620.1529730435441, - "y": 291.6684697114251 + "x": 620.15297, + "y": 291.66847 }, { "body": null, "index": 6, "isInternal": false, - "x": 620.152989151409, - "y": 285.94446971144765 + "x": 620.15299, + "y": 285.94447 }, { "body": null, "index": 7, "isInternal": false, - "x": 623.0150031008536, - "y": 280.9874777653998 + "x": 623.015, + "y": 280.98748 }, { "body": null, "index": 8, "isInternal": false, - "x": 627.9720111547665, - "y": 278.1254917148671 + "x": 627.97201, + "y": 278.12549 }, { "body": null, "index": 9, "isInternal": false, - "x": 633.6960111547437, - "y": 278.1255078227319 + "x": 633.69601, + "y": 278.12551 }, { "body": null, "index": 10, "isInternal": false, - "x": 638.6530031007917, - "y": 280.98752177217654 + "x": 638.653, + "y": 280.98752 }, { "body": null, "index": 11, "isInternal": false, - "x": 641.5149891513245, - "y": 285.9445298260893 + "x": 641.51499, + "y": 285.94453 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 389.07123600000006, + "area": 389.07124, "axes": { "#": 1838 }, "bounds": { "#": 1845 }, - "circleRadius": 11.387988683127572, + "circleRadius": 11.38799, "collisionFilter": { "#": 1848 }, @@ -16427,13 +16427,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 48, - "inertia": 96.41081889936525, - "inverseInertia": 0.010372279910243391, - "inverseMass": 2.5702234127634145, + "inertia": 96.41082, + "inverseInertia": 0.01037, + "inverseMass": 2.57022, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.38907123600000004, + "mass": 0.38907, "motion": 0, "parent": null, "position": { @@ -16455,7 +16455,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16488,24 +16488,24 @@ } ], { - "x": -0.8660952066747344, - "y": -0.4998790783530045 + "x": -0.8661, + "y": -0.49988 }, { - "x": -0.4998790783530045, - "y": -0.8660952066747344 + "x": -0.49988, + "y": -0.8661 }, { "x": 0, "y": -1 }, { - "x": 0.4998790783530045, - "y": -0.8660952066747344 + "x": 0.49988, + "y": -0.8661 }, { - "x": 0.8660952066747344, - "y": -0.4998790783530045 + "x": 0.8661, + "y": -0.49988 }, { "x": 1, @@ -16520,12 +16520,12 @@ } }, { - "x": 680.2420000000003, - "y": 298.5493333333329 + "x": 680.242, + "y": 298.54933 }, { - "x": 658.2420000000003, - "y": 276.5493333333329 + "x": 658.242, + "y": 276.54933 }, { "category": 1, @@ -16542,16 +16542,16 @@ "y": 0 }, { - "x": 669.2420000000003, - "y": 287.5493333333329 + "x": 669.242, + "y": 287.54933 }, { "x": 0, "y": 0 }, { - "x": 669.2420000000003, - "y": 284.49377777777744 + "x": 669.242, + "y": 284.49378 }, { "endCol": 14, @@ -16575,7 +16575,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -16619,99 +16619,99 @@ "body": null, "index": 0, "isInternal": false, - "x": 680.2420000000003, - "y": 290.4963333333329 + "x": 680.242, + "y": 290.49633 }, { "body": null, "index": 1, "isInternal": false, - "x": 677.2950000000003, - "y": 295.6023333333329 + "x": 677.295, + "y": 295.60233 }, { "body": null, "index": 2, "isInternal": false, - "x": 672.1890000000003, - "y": 298.5493333333329 + "x": 672.189, + "y": 298.54933 }, { "body": null, "index": 3, "isInternal": false, - "x": 666.2950000000003, - "y": 298.5493333333329 + "x": 666.295, + "y": 298.54933 }, { "body": null, "index": 4, "isInternal": false, - "x": 661.1890000000003, - "y": 295.6023333333329 + "x": 661.189, + "y": 295.60233 }, { "body": null, "index": 5, "isInternal": false, - "x": 658.2420000000003, - "y": 290.4963333333329 + "x": 658.242, + "y": 290.49633 }, { "body": null, "index": 6, "isInternal": false, - "x": 658.2420000000003, - "y": 284.6023333333329 + "x": 658.242, + "y": 284.60233 }, { "body": null, "index": 7, "isInternal": false, - "x": 661.1890000000003, - "y": 279.4963333333329 + "x": 661.189, + "y": 279.49633 }, { "body": null, "index": 8, "isInternal": false, - "x": 666.2950000000003, - "y": 276.5493333333329 + "x": 666.295, + "y": 276.54933 }, { "body": null, "index": 9, "isInternal": false, - "x": 672.1890000000003, - "y": 276.5493333333329 + "x": 672.189, + "y": 276.54933 }, { "body": null, "index": 10, "isInternal": false, - "x": 677.2950000000003, - "y": 279.4963333333329 + "x": 677.295, + "y": 279.49633 }, { "body": null, "index": 11, "isInternal": false, - "x": 680.2420000000003, - "y": 284.6023333333329 + "x": 680.242, + "y": 284.60233 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 815.3892460000001, + "area": 815.38925, "axes": { "#": 1872 }, "bounds": { "#": 1882 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1885 }, @@ -16726,13 +16726,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 49, - "inertia": 423.2982063032686, - "inverseInertia": 0.0023624007498948816, - "inverseMass": 1.2264081294984357, + "inertia": 423.29821, + "inverseInertia": 0.00236, + "inverseMass": 1.22641, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8153892460000001, + "mass": 0.81539, "motion": 0, "parent": null, "position": { @@ -16754,7 +16754,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -16796,36 +16796,36 @@ } ], { - "x": -0.9397159229781226, - "y": -0.3419561142915492 + "x": -0.93972, + "y": -0.34196 }, { - "x": -0.7660706997750172, - "y": -0.6427563169243967 + "x": -0.76607, + "y": -0.64276 }, { - "x": -0.4999828073287557, - "y": -0.8660353297502684 + "x": -0.49998, + "y": -0.86604 }, { - "x": -0.17354312409985562, - "y": -0.9848262710131479 + "x": -0.17354, + "y": -0.98483 }, { - "x": 0.17354312409985562, - "y": -0.9848262710131479 + "x": 0.17354, + "y": -0.98483 }, { - "x": 0.4999828073287557, - "y": -0.8660353297502684 + "x": 0.49998, + "y": -0.86604 }, { - "x": 0.7660706997750172, - "y": -0.6427563169243967 + "x": 0.76607, + "y": -0.64276 }, { - "x": 0.9397159229781226, - "y": -0.3419561142915492 + "x": 0.93972, + "y": -0.34196 }, { "x": 1, @@ -16840,12 +16840,12 @@ } }, { - "x": 732.2980000000003, - "y": 309.0993333333329 + "x": 732.298, + "y": 309.09933 }, { - "x": 700.2420000000003, - "y": 276.5493333333329 + "x": 700.242, + "y": 276.54933 }, { "category": 1, @@ -16862,16 +16862,16 @@ "y": 0 }, { - "x": 716.2700000000003, - "y": 292.8243333333329 + "x": 716.27, + "y": 292.82433 }, { "x": 0, "y": 0 }, { - "x": 716.2700000000003, - "y": 289.7687777777774 + "x": 716.27, + "y": 289.76878 }, { "endCol": 15, @@ -16895,7 +16895,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -16957,127 +16957,127 @@ "body": null, "index": 0, "isInternal": false, - "x": 732.2980000000003, - "y": 295.6503333333329 + "x": 732.298, + "y": 295.65033 }, { "body": null, "index": 1, "isInternal": false, - "x": 730.3650000000004, - "y": 300.9623333333329 + "x": 730.365, + "y": 300.96233 }, { "body": null, "index": 2, "isInternal": false, - "x": 726.7320000000003, - "y": 305.2923333333329 + "x": 726.732, + "y": 305.29233 }, { "body": null, "index": 3, "isInternal": false, - "x": 721.8370000000003, - "y": 308.1183333333329 + "x": 721.837, + "y": 308.11833 }, { "body": null, "index": 4, "isInternal": false, - "x": 716.2700000000003, - "y": 309.0993333333329 + "x": 716.27, + "y": 309.09933 }, { "body": null, "index": 5, "isInternal": false, - "x": 710.7030000000003, - "y": 308.1183333333329 + "x": 710.703, + "y": 308.11833 }, { "body": null, "index": 6, "isInternal": false, - "x": 705.8080000000003, - "y": 305.2923333333329 + "x": 705.808, + "y": 305.29233 }, { "body": null, "index": 7, "isInternal": false, - "x": 702.1750000000003, - "y": 300.9623333333329 + "x": 702.175, + "y": 300.96233 }, { "body": null, "index": 8, "isInternal": false, - "x": 700.2420000000003, - "y": 295.6503333333329 + "x": 700.242, + "y": 295.65033 }, { "body": null, "index": 9, "isInternal": false, - "x": 700.2420000000003, - "y": 289.9983333333329 + "x": 700.242, + "y": 289.99833 }, { "body": null, "index": 10, "isInternal": false, - "x": 702.1750000000003, - "y": 284.68633333333287 + "x": 702.175, + "y": 284.68633 }, { "body": null, "index": 11, "isInternal": false, - "x": 705.8080000000003, - "y": 280.35633333333294 + "x": 705.808, + "y": 280.35633 }, { "body": null, "index": 12, "isInternal": false, - "x": 710.7030000000003, - "y": 277.5303333333329 + "x": 710.703, + "y": 277.53033 }, { "body": null, "index": 13, "isInternal": false, - "x": 716.2700000000003, - "y": 276.5493333333329 + "x": 716.27, + "y": 276.54933 }, { "body": null, "index": 14, "isInternal": false, - "x": 721.8370000000003, - "y": 277.5303333333329 + "x": 721.837, + "y": 277.53033 }, { "body": null, "index": 15, "isInternal": false, - "x": 726.7320000000003, - "y": 280.35633333333294 + "x": 726.732, + "y": 280.35633 }, { "body": null, "index": 16, "isInternal": false, - "x": 730.3650000000004, - "y": 284.68633333333287 + "x": 730.365, + "y": 284.68633 }, { "body": null, "index": 17, "isInternal": false, - "x": 732.2980000000003, - "y": 289.9983333333329 + "x": 732.298, + "y": 289.99833 }, [], [], @@ -17172,18 +17172,18 @@ } ], { - "angle": -8.995484633795943e-10, - "anglePrev": -6.001361111522694e-10, - "angularSpeed": 2.994123522273249e-10, - "angularVelocity": -2.994123522273249e-10, - "area": 1021.4491370845084, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1021.44914, "axes": { "#": 1919 }, "bounds": { "#": 1922 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1925 }, @@ -17198,13 +17198,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 51, - "inertia": 893.3311389211119, - "inverseInertia": 0.0011194057348182373, - "inverseMass": 0.9790012676052279, + "inertia": 893.33114, + "inverseInertia": 0.00112, + "inverseMass": 0.979, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0214491370845085, + "mass": 1.02145, "motion": 0, "parent": null, "position": { @@ -17226,7 +17226,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555444908924, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17247,12 +17247,12 @@ } ], { - "x": 8.995484633795943e-10, + "x": 0, "y": 1 }, { "x": -1, - "y": 8.995484633795943e-10 + "y": 0 }, { "max": { @@ -17263,12 +17263,12 @@ } }, { - "x": 87.98390439928724, - "y": 93.49511314520731 + "x": 87.9839, + "y": 93.49511 }, { - "x": 41.77750005839725, - "y": 68.33333327931616 + "x": 41.7775, + "y": 68.33333 }, { "category": 1, @@ -17285,16 +17285,16 @@ "y": 0 }, { - "x": 64.88070222885062, - "y": 79.38644544001629 + "x": 64.8807, + "y": 79.38645 }, { - "x": -0.46880733476961245, - "y": 9.203631607329127e-14 + "x": -0.46881, + "y": 0 }, { - "x": 64.88070222886734, - "y": 76.3308898955254 + "x": 64.8807, + "y": 76.33089 }, { "endCol": 1, @@ -17317,8 +17317,8 @@ "yScale": 1 }, { - "x": -1.6711965145077556e-11, - "y": 3.0555555444908924 + "x": 0, + "y": 3.05556 }, [ { @@ -17338,43 +17338,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 41.77750005841396, - "y": 68.33333332088108 + "x": 41.7775, + "y": 68.33333 }, { "body": null, "index": 1, "isInternal": false, - "x": 87.98390437940165, - "y": 68.33333327931616 + "x": 87.9839, + "y": 68.33333 }, { "body": null, "index": 2, "isInternal": false, - "x": 87.98390439928724, - "y": 90.43955755915152 + "x": 87.9839, + "y": 90.43956 }, { "body": null, "index": 3, "isInternal": false, - "x": 41.777500078299596, - "y": 90.43955760071643 + "x": 41.7775, + "y": 90.43956 }, { - "angle": -6.830008135104618e-10, - "anglePrev": -4.5637549123900344e-10, - "angularSpeed": 2.2662532227145832e-10, - "angularVelocity": -2.2662532227145832e-10, - "area": 1125.0402892684995, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1125.04029, "axes": { "#": 1941 }, "bounds": { "#": 1944 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1947 }, @@ -17389,13 +17389,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 52, - "inertia": 845.5561081099531, - "inverseInertia": 0.0011826536292609496, - "inverseMass": 0.8888570565327927, + "inertia": 845.55611, + "inverseInertia": 0.00118, + "inverseMass": 0.88886, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.1250402892684994, + "mass": 1.12504, "motion": 0, "parent": null, "position": { @@ -17417,7 +17417,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555654810638, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17438,12 +17438,12 @@ } ], { - "x": 6.830008135104618e-10, + "x": 0, "y": 1 }, { "x": -1, - "y": 6.830008135104618e-10 + "y": 0 }, { "max": { @@ -17454,12 +17454,12 @@ } }, { - "x": 123.79154453509686, - "y": 102.97106485559803 + "x": 123.79154, + "y": 102.97106 }, { - "x": 91.31134903818825, - "y": 68.33333335193264 + "x": 91.31135, + "y": 68.33333 }, { "category": 1, @@ -17476,16 +17476,16 @@ "y": 0 }, { - "x": 107.55144678664256, - "y": 85.65219910376531 + "x": 107.55145, + "y": 85.6522 }, { "x": 0, "y": 0 }, { - "x": 107.55144678663132, - "y": 82.59664353828425 + "x": 107.55145, + "y": 82.59664 }, { "endCol": 2, @@ -17508,8 +17508,8 @@ "yScale": 1 }, { - "x": 1.1240786079724785e-11, - "y": 3.0555555654810638 + "x": 0, + "y": 3.05556 }, [ { @@ -17529,43 +17529,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 91.31134903818825, - "y": 68.33333337411663 + "x": 91.31135, + "y": 68.33333 }, { "body": null, "index": 1, "isInternal": false, - "x": 123.79154451143928, - "y": 68.33333335193264 + "x": 123.79154, + "y": 68.33333 }, { "body": null, "index": 2, "isInternal": false, - "x": 123.79154453509686, - "y": 102.97106483341406 + "x": 123.79154, + "y": 102.97106 }, { "body": null, "index": 3, "isInternal": false, - "x": 91.31134906184583, - "y": 102.97106485559803 + "x": 91.31135, + "y": 102.97106 }, { - "angle": -7.0092850543454345e-12, - "anglePrev": -5.296558076321455e-12, - "angularSpeed": 1.7337855807380153e-12, - "angularVelocity": -1.7235847533768434e-12, - "area": 1489.7843794189994, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1489.78438, "axes": { "#": 1963 }, "bounds": { "#": 1966 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1969 }, @@ -17580,13 +17580,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 53, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -17608,7 +17608,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055555555618546, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17629,12 +17629,12 @@ } ], { - "x": 7.0092850543454345e-12, + "x": 0, "y": 1 }, { "x": -1, - "y": 7.0092850543454345e-12 + "y": 0 }, { "max": { @@ -17645,12 +17645,12 @@ } }, { - "x": 160.58501368879706, - "y": 113.45781893051358 + "x": 160.58501, + "y": 113.45782 }, { - "x": 125.17207644568332, - "y": 68.33333333349462 + "x": 125.17208, + "y": 68.33333 }, { "category": 1, @@ -17667,16 +17667,16 @@ "y": 0 }, { - "x": 142.87854506725046, - "y": 89.36779835419479 + "x": 142.87855, + "y": 89.3678 }, { - "x": -0.00322581586172941, - "y": 6.6881468808610545e-15 + "x": -0.00323, + "y": 0 }, { - "x": 142.87854506727177, - "y": 86.31224279857604 + "x": 142.87855, + "y": 86.31224 }, { "endCol": 3, @@ -17699,8 +17699,8 @@ "yScale": 1 }, { - "x": -2.0747847884194925e-11, - "y": 3.0555555556188096 + "x": 0, + "y": 3.05556 }, [ { @@ -17720,43 +17720,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 125.17207644570381, - "y": 68.33333333374283 + "x": 125.17208, + "y": 68.33333 }, { "body": null, "index": 1, "isInternal": false, - "x": 160.58501368850222, - "y": 68.33333333349462 + "x": 160.58501, + "y": 68.33333 }, { "body": null, "index": 2, "isInternal": false, - "x": 160.58501368879706, - "y": 110.40226337464681 + "x": 160.58501, + "y": 110.40226 }, { "body": null, "index": 3, "isInternal": false, - "x": 125.17207644599868, - "y": 110.40226337489504 + "x": 125.17208, + "y": 110.40226 }, { - "angle": -2.073319484911775e-12, - "anglePrev": -1.3613935253328287e-12, - "angularSpeed": 7.152233355957731e-13, - "angularVelocity": -7.023568285716902e-13, - "area": 1765.3675322216507, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1765.36753, "axes": { "#": 1985 }, "bounds": { "#": 1988 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 1991 }, @@ -17771,13 +17771,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 54, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -17799,7 +17799,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555734264, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -17820,12 +17820,12 @@ } ], { - "x": 2.073319484911775e-12, + "x": 0, "y": 1 }, { "x": -1, - "y": 2.073319484911775e-12 + "y": 0 }, { "max": { @@ -17836,12 +17836,12 @@ } }, { - "x": 202.2880826672287, - "y": 113.65907921821406 + "x": 202.28808, + "y": 113.65908 }, { - "x": 160.52419377825075, - "y": 68.333333333336 + "x": 160.52419, + "y": 68.33333 }, { "category": 1, @@ -17858,16 +17858,16 @@ "y": 0 }, { - "x": 181.40613822273903, - "y": 89.4684284979883 + "x": 181.40614, + "y": 89.46843 }, { - "x": -0.0093237903487898, - "y": 2.8224053361347046e-13 + "x": -0.00932, + "y": 0 }, { - "x": 181.4061382227394, - "y": 86.41287294241484 + "x": 181.40614, + "y": 86.41287 }, { "endCol": 4, @@ -17890,8 +17890,8 @@ "yScale": 1 }, { - "x": -8.526512829121202e-13, - "y": 3.055555555573406 + "x": 0, + "y": 3.05556 }, [ { @@ -17911,43 +17911,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 160.52419377825075, - "y": 68.33333333342259 + "x": 160.52419, + "y": 68.33333 }, { "body": null, "index": 1, "isInternal": false, - "x": 202.2880826671396, - "y": 68.333333333336 + "x": 202.28808, + "y": 68.33333 }, { "body": null, "index": 2, "isInternal": false, - "x": 202.28808266722731, - "y": 110.60352366255407 + "x": 202.28808, + "y": 110.60352 }, { "body": null, "index": 3, "isInternal": false, - "x": 160.52419377833846, - "y": 110.60352366264064 + "x": 160.52419, + "y": 110.60352 }, { - "angle": -3.60341225571813e-13, - "anglePrev": -3.2962268609777225e-13, - "angularSpeed": 6.077076801978601e-14, - "angularVelocity": -3.1963442499276424e-14, - "area": 2021.6781920000003, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2021.67819, "axes": { "#": 2007 }, "bounds": { "#": 2015 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2018 }, @@ -17962,13 +17962,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 55, - "inertia": 2612.347668906405, - "inverseInertia": 0.00038279743998187855, - "inverseMass": 0.4946385651074975, + "inertia": 2612.34767, + "inverseInertia": 0.00038, + "inverseMass": 0.49464, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.0216781920000004, + "mass": 2.02168, "motion": 0, "parent": null, "position": { @@ -17990,7 +17990,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555577234, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18026,32 +18026,32 @@ } ], { - "x": 0.6235103580925787, - "y": 0.7818150889764564 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22254274738458615, - "y": 0.9749229331524211 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009679103566273, - "y": 0.43388572747627047 + "x": -0.90097, + "y": 0.43389 }, { - "x": -0.9009679103569399, - "y": -0.4338857274756212 + "x": -0.90097, + "y": -0.43389 }, { - "x": -0.22254274738528876, - "y": -0.9749229331522608 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.6235103580920152, - "y": -0.7818150889769058 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, - "y": -3.60341225571813e-13 + "y": 0 }, { "max": { @@ -18062,12 +18062,12 @@ } }, { - "x": 253.87977367687023, - "y": 123.20917697483932 + "x": 253.87977, + "y": 123.20918 }, { - "x": 202.20977367686166, - "y": 67.15362141928166 + "x": 202.20977, + "y": 67.15362 }, { "category": 1, @@ -18084,16 +18084,16 @@ "y": 0 }, { - "x": 229.3906327472806, - "y": 93.6536214192838 + "x": 229.39063, + "y": 93.65362 }, { "x": 0, "y": 0 }, { - "x": 229.39063274727744, - "y": 90.59806586372613 + "x": 229.39063, + "y": 90.59807 }, { "endCol": 5, @@ -18116,8 +18116,8 @@ "yScale": 1 }, { - "x": 3.467448550509289e-12, - "y": 3.055555555557717 + "x": 0, + "y": 3.05556 }, [ { @@ -18146,64 +18146,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 253.8797736768659, - "y": 105.44662141927498 + "x": 253.87977, + "y": 105.44662 }, { "body": null, "index": 1, "isInternal": false, - "x": 235.43877367687122, - "y": 120.1536214192816 + "x": 235.43877, + "y": 120.15362 }, { "body": null, "index": 2, "isInternal": false, - "x": 212.4437736768693, - "y": 114.90462141928991 + "x": 212.44377, + "y": 114.90462 }, { "body": null, "index": 3, "isInternal": false, - "x": 202.20977367686166, - "y": 93.65362141929359 + "x": 202.20977, + "y": 93.65362 }, { "body": null, "index": 4, "isInternal": false, - "x": 212.44377367685402, - "y": 72.40262141928993 + "x": 212.44377, + "y": 72.40262 }, { "body": null, "index": 5, "isInternal": false, - "x": 235.43877367685212, - "y": 67.15362141928166 + "x": 235.43877, + "y": 67.15362 }, { "body": null, "index": 6, "isInternal": false, - "x": 253.87977367685744, - "y": 81.86062141927496 + "x": 253.87977, + "y": 81.86062 }, { - "angle": -2.054959374089116e-14, - "anglePrev": -9.367731788508316e-15, - "angularSpeed": 1.0312272361693421e-14, - "angularVelocity": -1.0981012914306925e-14, - "area": 6374.479509999999, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6374.47951, "axes": { "#": 2037 }, "bounds": { "#": 2045 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2048 }, @@ -18218,13 +18218,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 56, - "inertia": 25971.46101758985, - "inverseInertia": 0.00003850380228215594, - "inverseMass": 0.15687555327948652, + "inertia": 25971.46102, + "inverseInertia": 0.00004, + "inverseMass": 0.15688, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.37447951, + "mass": 6.37448, "motion": 0, "parent": null, "position": { @@ -18246,7 +18246,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555563165, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18282,32 +18282,32 @@ } ], { - "x": 0.6235005124395689, - "y": 0.7818229409448121 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.2225239796860834, - "y": 0.9749272170088739 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009709048657092, - "y": 0.4338795092943031 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.900970904865727, - "y": -0.4338795092942661 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22252397968612347, - "y": -0.9749272170088645 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6235005124395367, - "y": -0.7818229409448376 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, - "y": -2.054959374089116e-14 + "y": 0 }, { "max": { @@ -18318,12 +18318,12 @@ } }, { - "x": 345.54984746484695, - "y": 153.0728068441373 + "x": 345.54985, + "y": 153.07281 }, { - "x": 253.79984746484274, - "y": 55.90725128858103 + "x": 253.79985, + "y": 55.90725 }, { "category": 1, @@ -18340,16 +18340,16 @@ "y": 0 }, { - "x": 302.064640089955, - "y": 102.96225128858117 + "x": 302.06464, + "y": 102.96225 }, { "x": 0, "y": 0 }, { - "x": 302.06464008995135, - "y": 99.90669573302493 + "x": 302.06464, + "y": 99.9067 }, { "endCol": 7, @@ -18372,8 +18372,8 @@ "yScale": 1 }, { - "x": 3.524291969370097e-12, - "y": 3.055555555556225 + "x": 0, + "y": 3.05556 }, [ { @@ -18402,64 +18402,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 345.54984746484325, - "y": 123.90325128858028 + "x": 345.54985, + "y": 123.90325 }, { "body": null, "index": 1, "isInternal": false, - "x": 312.80484746484376, - "y": 150.01725128858098 + "x": 312.80485, + "y": 150.01725 }, { "body": null, "index": 2, "isInternal": false, - "x": 271.9718474648436, - "y": 140.69725128858184 + "x": 271.97185, + "y": 140.69725 }, { "body": null, "index": 3, "isInternal": false, - "x": 253.79984746484274, - "y": 102.96225128858217 + "x": 253.79985, + "y": 102.96225 }, { "body": null, "index": 4, "isInternal": false, - "x": 271.971847464842, - "y": 65.22725128858185 + "x": 271.97185, + "y": 65.22725 }, { "body": null, "index": 5, "isInternal": false, - "x": 312.8048474648418, - "y": 55.90725128858103 + "x": 312.80485, + "y": 55.90725 }, { "body": null, "index": 6, "isInternal": false, - "x": 345.54984746484234, - "y": 82.02125128858027 + "x": 345.54985, + "y": 82.02125 }, { - "angle": -1.0627437970640595e-29, - "anglePrev": 1.0898985913662426e-14, - "angularSpeed": 7.503903191516715e-31, - "angularVelocity": -1.445238963457496e-14, - "area": 2220.023313496789, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2220.02331, "axes": { "#": 2067 }, "bounds": { "#": 2070 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2073 }, @@ -18474,13 +18474,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 57, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -18502,7 +18502,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18523,12 +18523,12 @@ } ], { - "x": 1.0627437970640595e-29, + "x": 0, "y": 1 }, { "x": -1, - "y": 1.0627437970640595e-29 + "y": 0 }, { "max": { @@ -18539,12 +18539,12 @@ } }, { - "x": 390.632867013767, - "y": 120.55735596707767 + "x": 390.63287, + "y": 120.55736 }, { - "x": 345.4815038450427, - "y": 68.33333333333296 + "x": 345.4815, + "y": 68.33333 }, { "category": 1, @@ -18561,16 +18561,16 @@ "y": 0 }, { - "x": 368.05718542940485, - "y": 92.91756687242754 + "x": 368.05719, + "y": 92.91757 }, { "x": 0, "y": 0 }, { - "x": 368.0571854294018, - "y": 89.86201131687203 + "x": 368.05719, + "y": 89.86201 }, { "endCol": 8, @@ -18593,8 +18593,8 @@ "yScale": 1 }, { - "x": 3.751665644813329e-12, - "y": 3.055555555555543 + "x": 0, + "y": 3.05556 }, [ { @@ -18614,43 +18614,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 345.4815038450427, - "y": 68.33333333333296 + "x": 345.4815, + "y": 68.33333 }, { "body": null, "index": 1, "isInternal": false, - "x": 390.632867013767, - "y": 68.33333333333296 + "x": 390.63287, + "y": 68.33333 }, { "body": null, "index": 2, "isInternal": false, - "x": 390.632867013767, - "y": 117.50180041152218 + "x": 390.63287, + "y": 117.5018 }, { "body": null, "index": 3, "isInternal": false, - "x": 345.4815038450427, - "y": 117.50180041152218 + "x": 345.4815, + "y": 117.5018 }, { - "angle": 1.0407982281211463e-58, - "anglePrev": 8.860729948835662e-59, - "angularSpeed": 1.5472523323758014e-59, - "angularVelocity": 1.5472523323758014e-59, - "area": 2739.619887, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2739.61989, "axes": { "#": 2089 }, "bounds": { "#": 2097 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2100 }, @@ -18665,13 +18665,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 58, - "inertia": 4797.196881714491, - "inverseInertia": 0.0002084550675440708, - "inverseMass": 0.36501414110226893, + "inertia": 4797.19688, + "inverseInertia": 0.00021, + "inverseMass": 0.36501, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.739619887, + "mass": 2.73962, "motion": 0, "parent": null, "position": { @@ -18693,7 +18693,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555555555554923, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18729,32 +18729,32 @@ } ], { - "x": 0.623481759781332, - "y": 0.7818378957430839 + "x": 0.62348, + "y": 0.78184 }, { - "x": -0.22252614147358962, - "y": 0.9749267235853554 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009716145580845, - "y": 0.4338780355821189 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009716145580845, - "y": -0.4338780355821189 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22252614147358962, - "y": -0.9749267235853554 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.623481759781332, - "y": -0.7818378957430839 + "x": 0.62348, + "y": -0.78184 }, { "x": 1, - "y": 1.0407982281211463e-58 + "y": 0 }, { "max": { @@ -18765,12 +18765,12 @@ } }, { - "x": 455.7199006148059, - "y": 127.85338233183447 + "x": 455.7199, + "y": 127.85338 }, { - "x": 395.5709006148059, - "y": 66.15738233183454 + "x": 395.5709, + "y": 66.15738 }, { "category": 1, @@ -18787,16 +18787,16 @@ "y": 0 }, { - "x": 427.21216369007186, - "y": 97.00538233183447 + "x": 427.21216, + "y": 97.00538 }, { "x": 0, "y": 0 }, { - "x": 427.21216369007186, - "y": 93.94982677627898 + "x": 427.21216, + "y": 93.94983 }, { "endCol": 9, @@ -18820,7 +18820,7 @@ }, { "x": 0, - "y": 3.0555555555554923 + "y": 3.05556 }, [ { @@ -18849,64 +18849,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 455.7199006148059, - "y": 110.73438233183447 + "x": 455.7199, + "y": 110.73438 }, { "body": null, "index": 1, "isInternal": false, - "x": 434.2529006148059, - "y": 127.85338233183447 + "x": 434.2529, + "y": 127.85338 }, { "body": null, "index": 2, "isInternal": false, - "x": 407.4839006148059, - "y": 121.74338233183447 + "x": 407.4839, + "y": 121.74338 }, { "body": null, "index": 3, "isInternal": false, - "x": 395.5709006148059, - "y": 97.00538233183447 + "x": 395.5709, + "y": 97.00538 }, { "body": null, "index": 4, "isInternal": false, - "x": 407.4839006148059, - "y": 72.26738233183453 + "x": 407.4839, + "y": 72.26738 }, { "body": null, "index": 5, "isInternal": false, - "x": 434.2529006148059, - "y": 66.15738233183454 + "x": 434.2529, + "y": 66.15738 }, { "body": null, "index": 6, "isInternal": false, - "x": 455.7199006148059, - "y": 83.27638233183447 + "x": 455.7199, + "y": 83.27638 }, { - "angle": 3.814547179912883e-7, - "anglePrev": 3.175720790839275e-7, - "angularSpeed": 6.38826389073608e-8, - "angularVelocity": 6.38826389073608e-8, - "area": 1836.0044999999998, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1836.0045, "axes": { "#": 2119 }, "bounds": { "#": 2123 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2126 }, @@ -18921,13 +18921,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 59, - "inertia": 2162.441392869351, - "inverseInertia": 0.00046244027851922336, - "inverseMass": 0.5446609744148231, + "inertia": 2162.44139, + "inverseInertia": 0.00046, + "inverseMass": 0.54466, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.8360044999999998, + "mass": 1.836, "motion": 0, "parent": null, "position": { @@ -18949,7 +18949,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.05552987577207, + "speed": 3.05553, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -18973,16 +18973,16 @@ } ], { - "x": -0.4999782866533463, - "y": -0.8660379396280421 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999789473617169, - "y": -0.8660375581896373 + "x": 0.49998, + "y": -0.86604 }, { - "x": 0.9999999999999275, - "y": 3.814547179912792e-7 + "x": 1, + "y": 0 }, { "max": { @@ -18993,12 +18993,12 @@ } }, { - "x": 89.97212842068888, - "y": 205.09185627737176 + "x": 89.97213, + "y": 205.09186 }, { - "x": 43.92811828009997, - "y": 151.92585627737563 + "x": 43.92812, + "y": 151.92586 }, { "category": 1, @@ -19015,16 +19015,16 @@ "y": 0 }, { - "x": 66.95012335039442, - "y": 178.5088562773737 + "x": 66.95012, + "y": 178.50886 }, { "x": 0, "y": 0 }, { - "x": 66.95013250869798, - "y": 175.45332640161536 + "x": 66.95013, + "y": 175.45333 }, { "endCol": 1, @@ -19047,8 +19047,8 @@ "yScale": 1 }, { - "x": -0.000009158303555523162, - "y": 3.055529875758345 + "x": -0.00001, + "y": 3.05553 }, [ { @@ -19074,49 +19074,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 89.97211828009664, - "y": 191.80086505922327 + "x": 89.97212, + "y": 191.80087 }, { "body": null, "index": 1, "isInternal": false, - "x": 66.95011321018363, - "y": 205.09185627737176 + "x": 66.95011, + "y": 205.09186 }, { "body": null, "index": 2, "isInternal": false, - "x": 43.92811828009997, - "y": 191.80084749552216 + "x": 43.92812, + "y": 191.80085 }, { "body": null, "index": 3, "isInternal": false, - "x": 43.928128420692204, - "y": 165.21684749552412 + "x": 43.92813, + "y": 165.21685 }, { "body": null, "index": 4, "isInternal": false, - "x": 66.95013349060521, - "y": 151.92585627737563 + "x": 66.95013, + "y": 151.92586 }, { "body": null, "index": 5, "isInternal": false, - "x": 89.97212842068888, - "y": 165.21686505922523 + "x": 89.97213, + "y": 165.21687 }, { - "angle": 4.97757446868658e-9, - "anglePrev": -5.653331804104498e-9, - "angularSpeed": 2.524843037207591e-8, - "angularVelocity": 1.0585341208757965e-8, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, "area": 5751.50872, "axes": { "#": 2144 @@ -19124,7 +19124,7 @@ "bounds": { "#": 2152 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2155 }, @@ -19139,13 +19139,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 60, - "inertia": 21143.188788922525, - "inverseInertia": 0.00004729655540530038, - "inverseMass": 0.17386742308546824, + "inertia": 21143.18879, + "inverseInertia": 0.00005, + "inverseMass": 0.17387, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.75150872, + "mass": 5.75151, "motion": 0, "parent": null, "position": { @@ -19167,7 +19167,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555538194937073, + "speed": 3.05555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19203,32 +19203,32 @@ } ], { - "x": 0.623480390232061, - "y": 0.7818389878971741 + "x": 0.62348, + "y": 0.78184 }, { - "x": -0.22250537588814254, - "y": 0.9749314630787523 + "x": -0.22251, + "y": 0.97493 }, { - "x": -0.9009645528556867, - "y": 0.43389269929045 + "x": -0.90096, + "y": 0.43389 }, { - "x": -0.9009645485362202, - "y": -0.4338927082596863 + "x": -0.90096, + "y": -0.43389 }, { - "x": -0.2225053661825546, - "y": -0.9749314652938265 + "x": -0.22251, + "y": -0.97493 }, { - "x": 0.6234803980153845, - "y": -0.7818389816903338 + "x": 0.62348, + "y": -0.78184 }, { "x": 1, - "y": 4.9775744686865866e-9 + "y": 0 }, { "max": { @@ -19239,12 +19239,12 @@ } }, { - "x": 183.32091868902188, - "y": 247.04476792964974 + "x": 183.32092, + "y": 247.04477 }, { - "x": 96.1689153569012, - "y": 154.59721411015775 + "x": 96.16892, + "y": 154.59721 }, { "category": 1, @@ -19261,16 +19261,16 @@ "y": 0 }, { - "x": 142.0150902657149, - "y": 199.29321405937742 + "x": 142.01509, + "y": 199.29321 }, { - "x": -0.030979645335728202, - "y": -8.665894996207891e-10 + "x": -0.03098, + "y": 0 }, { - "x": 142.01509349882164, - "y": 196.23765704499988 + "x": 142.01509, + "y": 196.23766 }, { "endCol": 3, @@ -19293,8 +19293,8 @@ "yScale": 1 }, { - "x": -0.000003233106752986714, - "y": 3.0555570103215928 + "x": 0, + "y": 3.05556 }, [ { @@ -19323,64 +19323,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 183.32091849099402, - "y": 219.18521426498023 + "x": 183.32092, + "y": 219.18521 }, { "body": null, "index": 1, "isInternal": false, - "x": 152.21691836753024, - "y": 243.98921411015775 + "x": 152.21692, + "y": 243.98921 }, { "body": null, "index": 2, "isInternal": false, - "x": 113.4309184115918, - "y": 235.1372139170976 + "x": 113.43092, + "y": 235.13721 }, { "body": null, "index": 3, "isInternal": false, - "x": 96.16891859000795, - "y": 199.2932138311747 + "x": 96.16892, + "y": 199.29321 }, { "body": null, "index": 4, "isInternal": false, - "x": 113.43091876842415, - "y": 163.44921391709755 + "x": 113.43092, + "y": 163.44921 }, { "body": null, "index": 5, "isInternal": false, - "x": 152.21691881248566, - "y": 154.59721411015775 + "x": 152.21692, + "y": 154.59721 }, { "body": null, "index": 6, "isInternal": false, - "x": 183.32091868902188, - "y": 179.40121426498024 + "x": 183.32092, + "y": 179.40121 }, { - "angle": 0.000013350677442033196, - "anglePrev": 0.000011258217659601407, - "angularSpeed": 7.406133196725195e-7, - "angularVelocity": 0.0000020907460510454556, - "area": 451.6137937679406, + "angle": 0.00001, + "anglePrev": 0.00001, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 451.61379, "axes": { "#": 2174 }, "bounds": { "#": 2177 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2180 }, @@ -19395,13 +19395,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 61, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -19423,7 +19423,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055619201404217, + "speed": 3.05562, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19444,12 +19444,12 @@ } ], { - "x": -0.000013350677441636593, - "y": 0.9999999999108798 + "x": -0.00001, + "y": 1 }, { - "x": -0.9999999999108798, - "y": -0.000013350677441636593 + "x": -1, + "y": -0.00001 }, { "max": { @@ -19460,12 +19460,12 @@ } }, { - "x": 203.4417754684617, - "y": 195.89128130608503 + "x": 203.44178, + "y": 195.89128 }, { - "x": 183.27091862216378, - "y": 170.4456037220377 + "x": 183.27092, + "y": 170.4456 }, { "category": 1, @@ -19482,16 +19482,16 @@ "y": 0 }, { - "x": 193.35633042637008, - "y": 181.64063291344965 + "x": 193.35633, + "y": 181.64063 }, { - "x": -0.031002336969675137, - "y": 0.5686092673565918 + "x": -0.031, + "y": 0.56861 }, { - "x": 193.35629718848455, - "y": 178.58505440055893 + "x": 193.3563, + "y": 178.58505 }, { "endCol": 4, @@ -19514,8 +19514,8 @@ "yScale": 1 }, { - "x": 0.00003323788553188933, - "y": 3.0555785645449873 + "x": 0.00003, + "y": 3.05558 }, [ { @@ -19535,43 +19535,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 183.27121754101597, - "y": 170.4456037220377 + "x": 183.27122, + "y": 170.4456 }, { "body": null, "index": 1, "isInternal": false, - "x": 203.44174223057638, - "y": 170.4458730122067 + "x": 203.44174, + "y": 170.44587 }, { "body": null, "index": 2, "isInternal": false, - "x": 203.44144331172419, - "y": 192.8356621048616 + "x": 203.44144, + "y": 192.83566 }, { "body": null, "index": 3, "isInternal": false, - "x": 183.27091862216378, - "y": 192.8353928146926 + "x": 183.27092, + "y": 192.83539 }, { - "angle": -0.000001495565158234666, - "anglePrev": -7.42813104889815e-7, - "angularSpeed": 7.52752053344851e-7, - "angularVelocity": -7.52752053344851e-7, - "area": 3021.679068443158, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 3021.67907, "axes": { "#": 2196 }, "bounds": { "#": 2199 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2202 }, @@ -19586,13 +19586,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 62, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -19614,7 +19614,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055481295369163, + "speed": 3.05548, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19635,12 +19635,12 @@ } ], { - "x": 0.0000014955651582341082, - "y": 0.9999999999988816 + "x": 0, + "y": 1 }, { - "x": -0.9999999999988816, - "y": 0.0000014955651582341082 + "x": -1, + "y": 0 }, { "max": { @@ -19651,12 +19651,12 @@ } }, { - "x": 311.820052237073, - "y": 197.25346504241364 + "x": 311.82005, + "y": 197.25347 }, { - "x": 209.9868459939527, - "y": 167.58047323814512 + "x": 209.98685, + "y": 167.58047 }, { "category": 1, @@ -19673,16 +19673,16 @@ "y": 0 }, { - "x": 260.90344911551284, - "y": 182.41696914027938 + "x": 260.90345, + "y": 182.41697 }, { "x": 0, "y": 0 }, { - "x": 260.90342385187324, - "y": 179.36148784501466 + "x": 260.90342, + "y": 179.36149 }, { "endCol": 6, @@ -19705,8 +19705,8 @@ "yScale": 1 }, { - "x": 0.000025263639599870658, - "y": 3.055481295264719 + "x": 0.00003, + "y": 3.05548 }, [ { @@ -19726,43 +19726,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 209.9868459939527, - "y": 167.58062553627397 + "x": 209.98685, + "y": 167.58063 }, { "body": null, "index": 1, "isInternal": false, - "x": 311.8200078594081, - "y": 167.58047323814512 + "x": 311.82001, + "y": 167.58047 }, { "body": null, "index": 2, "isInternal": false, - "x": 311.820052237073, - "y": 197.25331274428478 + "x": 311.82005, + "y": 197.25331 }, { "body": null, "index": 3, "isInternal": false, - "x": 209.98689037161762, - "y": 197.25346504241364 + "x": 209.98689, + "y": 197.25347 }, { - "angle": -0.000003558432828082798, - "anglePrev": -0.000002460857135521275, - "angularSpeed": 0.0000010975756925615231, - "angularVelocity": -0.0000010975756925615231, - "area": 856.7396388354374, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 856.73964, "axes": { "#": 2218 }, "bounds": { "#": 2221 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2224 }, @@ -19777,13 +19777,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 63, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -19805,7 +19805,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055565171611211, + "speed": 3.05557, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -19826,12 +19826,12 @@ } ], { - "x": 0.0000035584328280752883, - "y": 0.999999999993669 + "x": 0, + "y": 1 }, { - "x": -0.999999999993669, - "y": 0.0000035584328280752883 + "x": -1, + "y": 0 }, { "max": { @@ -19842,12 +19842,12 @@ } }, { - "x": 353.17652660417906, - "y": 209.94293650369596 + "x": 353.17653, + "y": 209.94294 }, { - "x": 313.1049413031755, - "y": 185.50695610673523 + "x": 313.10494, + "y": 185.50696 }, { "category": 1, @@ -19864,16 +19864,16 @@ "y": 0 }, { - "x": 333.14073753536735, - "y": 196.1971637194142 + "x": 333.14074, + "y": 196.19716 }, { - "x": 0.2686810379811868, - "y": 0.40408212530873844 + "x": 0.26868, + "y": 0.40408 }, { - "x": 333.1407446987475, - "y": 193.14159854781138 + "x": 333.14074, + "y": 193.1416 }, { "endCol": 7, @@ -19896,8 +19896,8 @@ "yScale": 1 }, { - "x": -0.000007163380132624297, - "y": 3.0555651716028143 + "x": -0.00001, + "y": 3.05557 }, [ { @@ -19917,43 +19917,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 313.10494846655564, - "y": 185.50709869848362 + "x": 313.10495, + "y": 185.5071 }, { "body": null, "index": 1, "isInternal": false, - "x": 353.1764505239151, - "y": 185.50695610673523 + "x": 353.17645, + "y": 185.50696 }, { "body": null, "index": 2, "isInternal": false, - "x": 353.17652660417906, - "y": 206.88722874034477 + "x": 353.17653, + "y": 206.88723 }, { "body": null, "index": 3, "isInternal": false, - "x": 313.1050245468196, - "y": 206.88737133209315 + "x": 313.10502, + "y": 206.88737 }, { - "angle": -0.0000018632341731670777, - "anglePrev": -0.0000015763213535579655, - "angularSpeed": 3.5848882141489393e-7, - "angularVelocity": -4.19043273795828e-7, - "area": 4088.5999519999996, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4088.59995, "axes": { "#": 2240 }, "bounds": { "#": 2245 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2248 }, @@ -19968,13 +19968,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 64, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -19996,7 +19996,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555372223825614, + "speed": 3.05554, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20023,20 +20023,20 @@ } ], { - "x": -0.7071080986908389, - "y": -0.7071054636798013 + "x": -0.70711, + "y": -0.70711 }, { - "x": -0.0000018632341731659994, - "y": -0.9999999999982643 + "x": 0, + "y": -1 }, { - "x": 0.7071054636798013, - "y": -0.7071080986908389 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.9999999999982643, - "y": -0.0000018632341731659994 + "x": 1, + "y": 0 }, { "max": { @@ -20047,12 +20047,12 @@ } }, { - "x": 423.69769768005915, - "y": 243.7730636872634 + "x": 423.6977, + "y": 243.77306 }, { - "x": 353.44562500454606, - "y": 170.4654722449441 + "x": 353.44563, + "y": 170.46547 }, { "category": 1, @@ -20069,16 +20069,16 @@ "y": 0 }, { - "x": 388.57165211454225, - "y": 205.59149935494034 + "x": 388.57165, + "y": 205.5915 }, { - "x": 0.3172521742296611, - "y": 0.3535750651030445 + "x": 0.31725, + "y": 0.35358 }, { - "x": 388.5716389820287, - "y": 202.5359621326036 + "x": 388.57164, + "y": 202.53596 }, { "endCol": 8, @@ -20101,8 +20101,8 @@ "yScale": 1 }, { - "x": 0.00002295887065884017, - "y": 3.055537222318435 + "x": 0.00002, + "y": 3.05554 }, [ { @@ -20134,71 +20134,71 @@ "body": null, "index": 0, "isInternal": false, - "x": 423.69767922453843, - "y": 220.1414339069515 + "x": 423.69768, + "y": 220.14143 }, { "body": null, "index": 1, "isInternal": false, - "x": 403.1217175624805, - "y": 240.71747224482215 + "x": 403.12172, + "y": 240.71747 }, { "body": null, "index": 2, "isInternal": false, - "x": 374.021717562531, - "y": 240.71752646493658 + "x": 374.02172, + "y": 240.71753 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.44567922466047, - "y": 220.1415648028787 + "x": 353.44568, + "y": 220.14156 }, { "body": null, "index": 4, "isInternal": false, - "x": 353.44562500454606, - "y": 191.04156480292917 + "x": 353.44563, + "y": 191.04156 }, { "body": null, "index": 5, "isInternal": false, - "x": 374.021586666604, - "y": 170.46552646505853 + "x": 374.02159, + "y": 170.46553 }, { "body": null, "index": 6, "isInternal": false, - "x": 403.12158666655347, - "y": 170.4654722449441 + "x": 403.12159, + "y": 170.46547 }, { "body": null, "index": 7, "isInternal": false, - "x": 423.697625004424, - "y": 191.041433907002 + "x": 423.69763, + "y": 191.04143 }, { - "angle": -2.636400732362123e-7, - "anglePrev": -2.2564434960018918e-7, - "angularSpeed": 3.7995723596831e-8, - "angularVelocity": -3.7995723620643e-8, - "area": 1965.14242904257, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1965.14243, "axes": { "#": 2268 }, "bounds": { "#": 2271 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2274 }, @@ -20213,13 +20213,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 65, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -20241,7 +20241,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555573343035647, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20262,12 +20262,12 @@ } ], { - "x": 2.6364007323620916e-7, - "y": 0.9999999999999651 + "x": 0, + "y": 1 }, { - "x": -0.9999999999999651, - "y": 2.6364007323620916e-7 + "x": -1, + "y": 0 }, { "max": { @@ -20278,12 +20278,12 @@ } }, { - "x": 514.9552423315506, - "y": 187.03741806868737 + "x": 514.95524, + "y": 187.03742 }, { - "x": 425.45094828778906, - "y": 162.02599008671393 + "x": 425.45095, + "y": 162.02599 }, { "category": 1, @@ -20300,16 +20300,16 @@ "y": 0 }, { - "x": 470.2030945290588, - "y": 173.00392541054907 + "x": 470.20309, + "y": 173.00393 }, { - "x": 0.34811592532953173, - "y": 0.14018355538362037 + "x": 0.34812, + "y": 0.14018 }, { - "x": 470.20309296783677, - "y": 169.9483680762459 + "x": 470.20309, + "y": 169.94837 }, { "endCol": 10, @@ -20332,8 +20332,8 @@ "yScale": 1 }, { - "x": 0.0000015612220067851013, - "y": 3.0555573343031597 + "x": 0, + "y": 3.05556 }, [ { @@ -20353,43 +20353,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 425.45094828778906, - "y": 162.02601368363057 + "x": 425.45095, + "y": 162.02601 }, { "body": null, "index": 1, "isInternal": false, - "x": 514.9552349818875, - "y": 162.02599008671393 + "x": 514.95523, + "y": 162.02599 }, { "body": null, "index": 2, "isInternal": false, - "x": 514.9552407703286, - "y": 183.98183713746758 + "x": 514.95524, + "y": 183.98184 }, { "body": null, "index": 3, "isInternal": false, - "x": 425.4509540762301, - "y": 183.9818607343842 + "x": 425.45095, + "y": 183.98186 }, { - "angle": -1.2102300621025807e-7, - "anglePrev": -9.086478782464503e-8, - "angularSpeed": 3.015821838561304e-8, - "angularVelocity": -3.015821838561304e-8, - "area": 2731.7103740000002, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2731.71037, "axes": { "#": 2290 }, "bounds": { "#": 2296 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2299 }, @@ -20404,13 +20404,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 66, - "inertia": 4831.242532460027, - "inverseInertia": 0.00020698608966145373, - "inverseMass": 0.3660710189183474, + "inertia": 4831.24253, + "inverseInertia": 0.00021, + "inverseMass": 0.36607, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.7317103740000004, + "mass": 2.73171, "motion": 0, "parent": null, "position": { @@ -20432,7 +20432,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055553736304581, + "speed": 3.05555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20462,24 +20462,24 @@ } ], { - "x": 0.3090362497234089, - "y": 0.9510502596376759 + "x": 0.30904, + "y": 0.95105 }, { - "x": -0.8090115706290263, - "y": 0.5877927173658722 + "x": -0.80901, + "y": 0.58779 }, { - "x": -0.8090117129018862, - "y": -0.5877925215478306 + "x": -0.80901, + "y": -0.58779 }, { - "x": 0.3090360195254768, - "y": -0.9510503344386401 + "x": 0.30904, + "y": -0.95105 }, { - "x": 0.9999999999999928, - "y": -1.2102300621025778e-7 + "x": 1, + "y": 0 }, { "max": { @@ -20490,12 +20490,12 @@ } }, { - "x": 568.9940797507587, - "y": 231.7028329222517 + "x": 568.99408, + "y": 231.70283 }, { - "x": 507.67607730053305, - "y": 164.1732791859476 + "x": 507.67608, + "y": 164.17328 }, { "category": 1, @@ -20512,16 +20512,16 @@ "y": 0 }, { - "x": 541.5718559139583, - "y": 196.4102779183792 + "x": 541.57186, + "y": 196.41028 }, { - "x": -0.051173039924577716, - "y": 0.3416585009557303 + "x": -0.05117, + "y": 0.34166 }, { - "x": 541.5718558748736, - "y": 193.35472418207462 + "x": 541.57186, + "y": 193.35472 }, { "endCol": 11, @@ -20544,8 +20544,8 @@ "yScale": 1 }, { - "x": 3.908473900082754e-8, - "y": 3.0555537363045806 + "x": 0, + "y": 3.05555 }, [ { @@ -20568,50 +20568,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 568.994079711674, - "y": 216.33327459965943 + "x": 568.99408, + "y": 216.33327 }, { "body": null, "index": 1, "isInternal": false, - "x": 531.0980812019518, - "y": 228.64727918594713 + "x": 531.09808, + "y": 228.64728 }, { "body": null, "index": 2, "isInternal": false, - "x": 507.67607730053305, - "y": 196.41028202054818 + "x": 507.67608, + "y": 196.41028 }, { "body": null, "index": 3, "isInternal": false, - "x": 531.0980733991141, - "y": 164.1732791859476 + "x": 531.09807, + "y": 164.17328 }, { "body": null, "index": 4, "isInternal": false, - "x": 568.9940748893915, - "y": 176.4872745996597 + "x": 568.99407, + "y": 176.48727 }, { - "angle": 0.00006954359685401811, - "anglePrev": 0.000054687899100483206, - "angularSpeed": 0.000015486681265783946, - "angularVelocity": 0.000015971812256470648, - "area": 942.0065703840771, + "angle": 0.00007, + "anglePrev": 0.00005, + "angularSpeed": 0.00002, + "angularVelocity": 0.00002, + "area": 942.00657, "axes": { "#": 2316 }, "bounds": { "#": 2319 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2322 }, @@ -20626,13 +20626,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 67, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -20654,7 +20654,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.054564247856244, + "speed": 3.05456, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20675,12 +20675,12 @@ } ], { - "x": -0.00006954359679796233, - "y": 0.999999997581844 + "x": -0.00007, + "y": 1 }, { - "x": -0.999999997581844, - "y": -0.00006954359679796233 + "x": -1, + "y": -0.00007 }, { "max": { @@ -20691,12 +20691,12 @@ } }, { - "x": 69.9581427231613, - "y": 331.0030748413011 + "x": 69.95814, + "y": 331.00307 }, { - "x": 48.89368082635955, - "y": 283.21723677928213 + "x": 48.89368, + "y": 283.21724 }, { "category": 1, @@ -20713,16 +20713,16 @@ "y": 0 }, { - "x": 59.42520012859029, - "y": 305.5828738521614 + "x": 59.4252, + "y": 305.58287 }, { - "x": 0.7803268002160271, - "y": 0.9731974613880804 + "x": 0.78033, + "y": 0.9732 }, { - "x": 59.4235300709421, - "y": 302.52844766247523 + "x": 59.42353, + "y": 302.52845 }, { "endCol": 1, @@ -20745,8 +20745,8 @@ "yScale": 1 }, { - "x": 0.0017049740571479788, - "y": 3.0544653181748913 + "x": 0.0017, + "y": 3.05447 }, [ { @@ -20766,43 +20766,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 48.89679149820813, - "y": 283.21723677928213 + "x": 48.89679, + "y": 283.21724 }, { "body": null, "index": 1, "isInternal": false, - "x": 69.95671943082105, - "y": 283.2187013624224 + "x": 69.95672, + "y": 283.2187 }, { "body": null, "index": 2, "isInternal": false, - "x": 69.95360875897246, - "y": 327.94851092504064 + "x": 69.95361, + "y": 327.94851 }, { "body": null, "index": 3, "isInternal": false, - "x": 48.89368082635955, - "y": 327.9470463419004 + "x": 48.89368, + "y": 327.94705 }, { - "angle": 0.000034149044266440077, - "anglePrev": 0.000019665684427893415, - "angularSpeed": 0.000012797545426865099, - "angularVelocity": 0.000014634673499192535, - "area": 2898.415585731765, + "angle": 0.00003, + "anglePrev": 0.00002, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 2898.41559, "axes": { "#": 2338 }, "bounds": { "#": 2341 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2344 }, @@ -20817,13 +20817,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 68, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -20845,7 +20845,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055182085978689, + "speed": 3.05518, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -20866,12 +20866,12 @@ } ], { - "x": -0.00003414904425980288, - "y": 0.9999999994169214 + "x": -0.00003, + "y": 1 }, { - "x": -0.9999999994169214, - "y": -0.00003414904425980288 + "x": -1, + "y": -0.00003 }, { "max": { @@ -20882,12 +20882,12 @@ } }, { - "x": 182.3890436850798, - "y": 311.527741194356 + "x": 182.38904, + "y": 311.52774 }, { - "x": 70.19055345803999, - "y": 282.6352233663325 + "x": 70.19055, + "y": 282.63522 }, { "category": 1, @@ -20904,16 +20904,16 @@ "y": 0 }, { - "x": 126.28898834724036, - "y": 295.55389145222375 + "x": 126.28899, + "y": 295.55389 }, { - "x": 1.1397392051324693, - "y": 1.6105919494290508 + "x": 1.13974, + "y": 1.61059 }, { - "x": 126.28714622181124, - "y": 292.4987455695634 + "x": 126.28715, + "y": 292.49875 }, { "endCol": 3, @@ -20936,8 +20936,8 @@ "yScale": 1 }, { - "x": 0.0018307773371475378, - "y": 3.0551331656112097 + "x": 0.00183, + "y": 3.05513 }, [ { @@ -20957,43 +20957,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 70.19143564753884, - "y": 282.6352233663325 + "x": 70.19144, + "y": 282.63522 }, { "body": null, "index": 1, "isInternal": false, - "x": 182.38742323644064, - "y": 282.63905475208065 + "x": 182.38742, + "y": 282.63905 }, { "body": null, "index": 2, "isInternal": false, - "x": 182.3865410469418, - "y": 308.47255953811504 + "x": 182.38654, + "y": 308.47256 }, { "body": null, "index": 3, "isInternal": false, - "x": 70.19055345803999, - "y": 308.46872815236685 + "x": 70.19055, + "y": 308.46873 }, { - "angle": 0.0000447410044755704, - "anglePrev": 0.00004423432481331581, - "angularSpeed": 0.0000067206514857884835, - "angularVelocity": 8.723204110247941e-7, - "area": 1542.073807, + "angle": 0.00004, + "anglePrev": 0.00004, + "angularSpeed": 0.00001, + "angularVelocity": 0, + "area": 1542.07381, "axes": { "#": 2360 }, "bounds": { "#": 2366 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2369 }, @@ -21008,13 +21008,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 69, - "inertia": 1539.5714792627725, - "inverseInertia": 0.0006495313880969349, - "inverseMass": 0.6484773915883003, + "inertia": 1539.57148, + "inverseInertia": 0.00065, + "inverseMass": 0.64848, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.542073807, + "mass": 1.54207, "motion": 0, "parent": null, "position": { @@ -21036,7 +21036,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.05486485595167, + "speed": 3.05486, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21066,24 +21066,24 @@ } ], { - "x": 0.3089914068964664, - "y": 0.9510648297903471 + "x": 0.30899, + "y": 0.95106 }, { - "x": -0.8090526078050106, - "y": 0.5877362314881661 + "x": -0.80905, + "y": 0.58774 }, { - "x": -0.8090000127472999, - "y": -0.5878086247877522 + "x": -0.809, + "y": -0.58781 }, { - "x": 0.30907650885091353, - "y": -0.951037176810944 + "x": 0.30908, + "y": -0.95104 }, { - "x": 0.9999999989991211, - "y": 0.000044741004460643623 + "x": 1, + "y": 0.00004 }, { "max": { @@ -21094,12 +21094,12 @@ } }, { - "x": 215.0155808739006, - "y": 291.4985070422757 + "x": 215.01558, + "y": 291.49851 }, { - "x": 168.9438802978139, - "y": 240.00164240875114 + "x": 168.94388, + "y": 240.00164 }, { "category": 1, @@ -21116,16 +21116,16 @@ "y": 0 }, { - "x": 194.41062834042572, - "y": 264.2229944849424 + "x": 194.41063, + "y": 264.22299 }, { "x": 0, "y": 0 }, { - "x": 194.40936426986187, - "y": 261.1681387710646 + "x": 194.40936, + "y": 261.16814 }, { "endCol": 4, @@ -21148,8 +21148,8 @@ "yScale": 1 }, { - "x": 0.0013018340308121878, - "y": 3.0549004737886207 + "x": 0.0013, + "y": 3.0549 }, [ { @@ -21172,50 +21172,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.01321052360765, - "y": 279.1929162801469 + "x": 215.01321, + "y": 279.19292 }, { "body": null, "index": 1, "isInternal": false, - "x": 186.53979660833238, - "y": 288.4436423602667 + "x": 186.5398, + "y": 288.44364 }, { "body": null, "index": 2, "isInternal": false, - "x": 168.9438802978139, - "y": 264.2218550770534 + "x": 168.94388, + "y": 264.22186 }, { "body": null, "index": 3, "isInternal": false, - "x": 186.54196395207046, - "y": 240.00164240875114 + "x": 186.54196, + "y": 240.00164 }, { "body": null, "index": 4, "isInternal": false, - "x": 215.01454997979917, - "y": 249.25491631011104 + "x": 215.01455, + "y": 249.25492 }, { - "angle": 0.00005047097859638551, - "anglePrev": 0.00003675981731952783, - "angularSpeed": 0.000012552066774710342, - "angularVelocity": 0.000013852457333363971, - "area": 4282.393599999999, + "angle": 0.00005, + "anglePrev": 0.00004, + "angularSpeed": 0.00001, + "angularVelocity": 0.00001, + "area": 4282.3936, "axes": { "#": 2386 }, "bounds": { "#": 2389 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2392 }, @@ -21230,13 +21230,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 70, - "inertia": 12225.929963547305, - "inverseInertia": 0.00008179336892830146, - "inverseMass": 0.233514266413998, + "inertia": 12225.92996, + "inverseInertia": 0.00008, + "inverseMass": 0.23351, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.2823936, + "mass": 4.28239, "motion": 0, "parent": null, "position": { @@ -21258,7 +21258,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0554252309555547, + "speed": 3.05543, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21279,12 +21279,12 @@ } ], { - "x": 0.000050470978574957886, - "y": -0.99999999872634 + "x": 0.00005, + "y": -1 }, { - "x": 0.99999999872634, - "y": 0.000050470978574957886 + "x": 1, + "y": 0.00005 }, { "max": { @@ -21295,12 +21295,12 @@ } }, { - "x": 280.8214621161359, - "y": 324.3042824493025 + "x": 280.82146, + "y": 324.30428 }, { - "x": 215.37736897772558, - "y": 255.80555458309067 + "x": 215.37737, + "y": 255.80555 }, { "category": 1, @@ -21317,16 +21317,16 @@ "y": 0 }, { - "x": 248.09902034647044, - "y": 288.5272059518356 + "x": 248.09902, + "y": 288.52721 }, { - "x": 0.3872093870406734, - "y": 0.5511511137740652 + "x": 0.38721, + "y": 0.55115 }, { - "x": 248.09791422725795, - "y": 285.4717918353762 + "x": 248.09791, + "y": 285.47179 }, { "endCol": 5, @@ -21349,8 +21349,8 @@ "yScale": 1 }, { - "x": 0.0010925207302534545, - "y": 3.0553979985840556 + "x": 0.00109, + "y": 3.0554 }, [ { @@ -21370,43 +21370,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 280.8173688943773, - "y": 321.24885732058044 + "x": 280.81737, + "y": 321.24886 }, { "body": null, "index": 1, "isInternal": false, - "x": 215.37736897772558, - "y": 321.24555449974247 + "x": 215.37737, + "y": 321.24555 }, { "body": null, "index": 2, "isInternal": false, - "x": 215.38067179856355, - "y": 255.80555458309067 + "x": 215.38067, + "y": 255.80555 }, { "body": null, "index": 3, "isInternal": false, - "x": 280.82067171521527, - "y": 255.80885740392867 + "x": 280.82067, + "y": 255.80886 }, { - "angle": 6.433285279603971e-7, - "anglePrev": 5.718475804092418e-7, - "angularSpeed": 7.148094755115523e-8, - "angularVelocity": 7.148094755115523e-8, - "area": 1051.3111283901928, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 1051.31113, "axes": { "#": 2408 }, "bounds": { "#": 2411 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2414 }, @@ -21421,13 +21421,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 71, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -21449,7 +21449,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555571061785844, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21470,12 +21470,12 @@ } ], { - "x": -6.433285279603527e-7, - "y": 0.9999999999997932 + "x": 0, + "y": 1 }, { - "x": -0.9999999999997932, - "y": -6.433285279603527e-7 + "x": -1, + "y": 0 }, { "max": { @@ -21486,12 +21486,12 @@ } }, { - "x": 320.187779627905, - "y": 276.8293164882587 + "x": 320.18778, + "y": 276.82932 }, { - "x": 290.63940282923727, - "y": 241.24995077114824 + "x": 290.6394, + "y": 241.24995 }, { "category": 1, @@ -21508,16 +21508,16 @@ "y": 0 }, { - "x": 305.41359122857114, - "y": 259.0396336297035 + "x": 305.41359, + "y": 259.03963 }, { "x": 0, "y": 0 }, { - "x": 305.41359277919383, - "y": 255.9840765235253 + "x": 305.41359, + "y": 255.98408 }, { "endCol": 6, @@ -21540,8 +21540,8 @@ "yScale": 1 }, { - "x": -0.0000015506226986872207, - "y": 3.055557106178191 + "x": 0, + "y": 3.05556 }, [ { @@ -21561,43 +21561,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 290.6394257184461, - "y": 241.24995077114824 + "x": 290.63943, + "y": 241.24995 }, { "body": null, "index": 1, "isInternal": false, - "x": 320.187779627905, - "y": 241.2499697804472 + "x": 320.18778, + "y": 241.24997 }, { "body": null, "index": 2, "isInternal": false, - "x": 320.1877567386962, - "y": 276.8293164882587 + "x": 320.18776, + "y": 276.82932 }, { "body": null, "index": 3, "isInternal": false, - "x": 290.63940282923727, - "y": 276.82929747895975 + "x": 290.6394, + "y": 276.8293 }, { - "angle": 4.814687997401094e-7, - "anglePrev": 4.28597564181723e-7, - "angularSpeed": 5.287123555838646e-8, - "angularVelocity": 5.287123555838646e-8, - "area": 6455.586703999999, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 6455.5867, "axes": { "#": 2430 }, "bounds": { "#": 2435 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2438 }, @@ -21612,13 +21612,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 72, - "inertia": 26591.361314189468, - "inverseInertia": 0.00003760619804998054, - "inverseMass": 0.1549045882042575, + "inertia": 26591.36131, + "inverseInertia": 0.00004, + "inverseMass": 0.1549, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.455586704, + "mass": 6.45559, "motion": 0, "parent": null, "position": { @@ -21640,7 +21640,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055577501178856, + "speed": 3.05558, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21667,20 +21667,20 @@ } ], { - "x": -0.7071064407366122, - "y": -0.7071071216363188 + "x": -0.70711, + "y": -0.70711 }, { - "x": 4.814687997400909e-7, - "y": -0.999999999999884 + "x": 0, + "y": -1 }, { - "x": 0.7071071216363188, - "y": -0.7071064407366122 + "x": 0.70711, + "y": -0.70711 }, { - "x": 0.999999999999884, - "y": 4.814687997400909e-7 + "x": 1, + "y": 0 }, { "max": { @@ -21691,12 +21691,12 @@ } }, { - "x": 424.3794924588497, - "y": 365.5314518861404 + "x": 424.37949, + "y": 365.53145 }, { - "x": 336.10316421863, - "y": 274.19985679633663 + "x": 336.10316, + "y": 274.19986 }, { "category": 1, @@ -21713,16 +21713,16 @@ "y": 0 }, { - "x": 380.24117302083744, - "y": 318.3378655985441 + "x": 380.24117, + "y": 318.33787 }, { - "x": 1.153770100944363, - "y": 0.7124133034289063 + "x": 1.15377, + "y": 0.71241 }, { - "x": 380.2408623850326, - "y": 315.2822881131552 + "x": 380.24086, + "y": 315.28229 }, { "endCol": 8, @@ -21745,8 +21745,8 @@ "yScale": 1 }, { - "x": 0.00031063580485124476, - "y": 3.0555774853889437 + "x": 0.00031, + "y": 3.05558 }, [ { @@ -21778,71 +21778,71 @@ "body": null, "index": 0, "isInternal": false, - "x": 424.3791642186197, - "y": 336.619886849612 + "x": 424.37916, + "y": 336.61989 }, { "body": null, "index": 1, "isInternal": false, - "x": 398.5231517697655, - "y": 362.4758744007515 + "x": 398.52315, + "y": 362.47587 }, { "body": null, "index": 2, "isInternal": false, - "x": 361.9591517697696, - "y": 362.47585679632635 + "x": 361.95915, + "y": 362.47586 }, { "body": null, "index": 3, "isInternal": false, - "x": 336.10316421863, - "y": 336.6198443474722 + "x": 336.10316, + "y": 336.61984 }, { "body": null, "index": 4, "isInternal": false, - "x": 336.1031818230552, - "y": 300.05584434747624 + "x": 336.10318, + "y": 300.05584 }, { "body": null, "index": 5, "isInternal": false, - "x": 361.9591942719094, - "y": 274.19985679633663 + "x": 361.95919, + "y": 274.19986 }, { "body": null, "index": 6, "isInternal": false, - "x": 398.52319427190525, - "y": 274.19987440076187 + "x": 398.52319, + "y": 274.19987 }, { "body": null, "index": 7, "isInternal": false, - "x": 424.37918182304486, - "y": 300.055886849616 + "x": 424.37918, + "y": 300.05589 }, { - "angle": -0.000002946558017154733, - "anglePrev": -0.0000025696884447948347, - "angularSpeed": 3.7686957235989826e-7, - "angularVelocity": -3.7686957235989826e-7, - "area": 2014.126651, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 2014.12665, "axes": { "#": 2458 }, "bounds": { "#": 2464 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2467 }, @@ -21857,13 +21857,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 73, - "inertia": 2626.4134178244994, - "inverseInertia": 0.00038074736947860864, - "inverseMass": 0.4964931075727074, + "inertia": 2626.41342, + "inverseInertia": 0.00038, + "inverseMass": 0.49649, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.014126651, + "mass": 2.01413, "motion": 0, "parent": null, "position": { @@ -21885,7 +21885,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0555285909020005, + "speed": 3.05553, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -21915,24 +21915,24 @@ } ], { - "x": 0.309022786252488, - "y": 0.9510546343805639 + "x": 0.30902, + "y": 0.95105 }, { - "x": -0.8090211512815881, - "y": 0.5877795307587821 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090246151205169, - "y": -0.5877747630930571 + "x": -0.80902, + "y": -0.58777 }, { - "x": 0.30901718157180663, - "y": -0.951056455471186 + "x": 0.30902, + "y": -0.95106 }, { - "x": 0.9999999999956587, - "y": -0.000002946558017150469 + "x": 1, + "y": 0 }, { "max": { @@ -21943,12 +21943,12 @@ } }, { - "x": 471.01477658350194, - "y": 291.2216366870499 + "x": 471.01478, + "y": 291.22164 }, { - "x": 418.363726174016, - "y": 235.85963668729005 + "x": 418.36373, + "y": 235.85964 }, { "category": 1, @@ -21965,16 +21965,16 @@ "y": 0 }, { - "x": 447.4685486760011, - "y": 263.54061018635014 + "x": 447.46855, + "y": 263.54061 }, { "x": 0, "y": 0 }, { - "x": 447.4685336710858, - "y": 260.485081595485 + "x": 447.46853, + "y": 260.48508 }, { "endCol": 9, @@ -21997,8 +21997,8 @@ "yScale": 1 }, { - "x": 0.000015004915269400954, - "y": 3.0555285908651575 + "x": 0.00002, + "y": 3.05553 }, [ { @@ -22021,50 +22021,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 471.01477658350194, - "y": 280.64854080609797 + "x": 471.01478, + "y": 280.64854 }, { "body": null, "index": 1, "isInternal": false, - "x": 438.4748077376011, - "y": 291.2216366870499 + "x": 438.47481, + "y": 291.22164 }, { "body": null, "index": 2, "isInternal": false, - "x": 418.363726174016, - "y": 263.5406959453982 + "x": 418.36373, + "y": 263.5407 }, { "body": null, "index": 3, "isInternal": false, - "x": 438.4746446102561, - "y": 235.85963668729005 + "x": 438.47464, + "y": 235.85964 }, { "body": null, "index": 4, "isInternal": false, - "x": 471.0146757640728, - "y": 246.43254080624627 + "x": 471.01468, + "y": 246.43254 }, { - "angle": -0.0000015217654438060743, - "anglePrev": -0.0000012591183083334117, - "angularSpeed": 2.626471354726626e-7, - "angularVelocity": -2.626471354726626e-7, - "area": 4695.386625, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 4695.38663, "axes": { "#": 2484 }, "bounds": { "#": 2492 }, - "circleRadius": 16.275420096021946, + "circleRadius": 16.27542, "collisionFilter": { "#": 2495 }, @@ -22079,13 +22079,13 @@ "frictionAir": 0, "frictionStatic": 0.5, "id": 74, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -22107,7 +22107,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.055557119331376, + "speed": 3.05556, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -22143,32 +22143,32 @@ } ], { - "x": 0.6235012857027553, - "y": 0.781822324270042 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.22252493542817509, - "y": 0.9749269988633438 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009712048750951, - "y": 0.4338788863103614 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009725253947143, - "y": -0.43387614417466097 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.2225279026475787, - "y": -0.9749263215973141 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.623498906199475, - "y": -0.7818242219118424 + "x": 0.6235, + "y": -0.78182 }, { - "x": 0.9999999999988419, - "y": -0.0000015217654438054873 + "x": 1, + "y": 0 }, { "max": { @@ -22179,12 +22179,12 @@ } }, { - "x": 542.6104147303942, - "y": 340.0693578660501 + "x": 542.61041, + "y": 340.06936 }, { - "x": 463.8663762861424, - "y": 256.24380074683216 + "x": 463.86638, + "y": 256.2438 }, { "category": 1, @@ -22201,16 +22201,16 @@ "y": 0 }, { - "x": 505.28950131843, - "y": 296.62881477422917 + "x": 505.2895, + "y": 296.62881 }, { - "x": -0.7532873681577694, - "y": 0.5567112403329115 + "x": -0.75329, + "y": 0.55671 }, { - "x": 505.2894902247774, - "y": 293.57325765491794 + "x": 505.28949, + "y": 293.57326 }, { "endCol": 11, @@ -22233,8 +22233,8 @@ "yScale": 1 }, { - "x": 0.00001109365257434547, - "y": 3.0555571193112376 + "x": 0.00001, + "y": 3.05556 }, [ { @@ -22263,50 +22263,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 542.6104036367416, - "y": 314.6017579805905 + "x": 542.6104, + "y": 314.60176 }, { "body": null, "index": 1, "isInternal": false, - "x": 514.5074377425811, - "y": 337.01380074673887 + "x": 514.50744, + "y": 337.0138 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.4624255700199, - "y": 329.0148540770181 + "x": 479.46243, + "y": 329.01485 }, { "body": null, "index": 3, "isInternal": false, - "x": 463.8663762861424, - "y": 296.62887781050944 + "x": 463.86638, + "y": 296.62888 }, { "body": null, "index": 4, "isInternal": false, - "x": 479.4623270022287, - "y": 264.242854077093 + "x": 479.46233, + "y": 264.24285 }, { "body": null, "index": 5, "isInternal": false, - "x": 514.5073148295863, - "y": 256.24380074683216 + "x": 514.50731, + "y": 256.2438 }, { "body": null, "index": 6, "isInternal": false, - "x": 542.6103489353609, - "y": 278.6557579806321 + "x": 542.61035, + "y": 278.65576 }, [], [], diff --git a/test/browser/refs/views/views-0.json b/test/browser/refs/views/views-0.json index 76baf925..0068b27c 100644 --- a/test/browser/refs/views/views-0.json +++ b/test/browser/refs/views/views-0.json @@ -1039,7 +1039,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1534.906434764454, + "area": 1534.90643, "axes": { "#": 93 }, @@ -1060,13 +1060,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1122,12 +1122,12 @@ } }, { - "x": 56.40316358024691, - "y": 62.164094650205755 + "x": 56.40316, + "y": 62.16409 }, { - "x": 19.999999999999996, - "y": 19.999999999999993 + "x": 20, + "y": 20 }, { "category": 1, @@ -1144,16 +1144,16 @@ "y": 0 }, { - "x": 38.201581790123456, - "y": 41.08204732510288 + "x": 38.20158, + "y": 41.08205 }, { "x": 0, "y": 0 }, { - "x": 38.201581790123456, - "y": 41.08204732510288 + "x": 38.20158, + "y": 41.08205 }, { "fillStyle": "#C44D58", @@ -1190,36 +1190,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 19.999999999999996, - "y": 19.999999999999993 + "x": 20, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 56.40316358024691, - "y": 19.999999999999993 + "x": 56.40316, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.40316358024691, - "y": 62.164094650205755 + "x": 56.40316, + "y": 62.16409 }, { "body": null, "index": 3, "isInternal": false, - "x": 19.999999999999996, - "y": 62.164094650205755 + "x": 20, + "y": 62.16409 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.52878634164, + "area": 2220.52879, "axes": { "#": 114 }, @@ -1240,13 +1240,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1302,11 +1302,11 @@ } }, { - "x": 101.7190072016461, - "y": 69.0011574074074 + "x": 101.71901, + "y": 69.00116 }, { - "x": 56.40316358024691, + "x": 56.40316, "y": 20 }, { @@ -1324,16 +1324,16 @@ "y": 0 }, { - "x": 79.0610853909465, - "y": 44.5005787037037 + "x": 79.06109, + "y": 44.50058 }, { "x": 0, "y": 0 }, { - "x": 79.0610853909465, - "y": 44.5005787037037 + "x": 79.06109, + "y": 44.50058 }, { "fillStyle": "#C7F464", @@ -1370,36 +1370,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 56.40316358024691, + "x": 56.40316, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 101.7190072016461, - "y": 69.0011574074074 + "x": 101.71901, + "y": 69.00116 }, { "body": null, "index": 3, "isInternal": false, - "x": 56.40316358024691, - "y": 69.0011574074074 + "x": 56.40316, + "y": 69.00116 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1140.197701571206, + "area": 1140.1977, "axes": { "#": 135 }, @@ -1420,13 +1420,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1482,11 +1482,11 @@ } }, { - "x": 140.93981481481484, - "y": 49.07124485596708 + "x": 140.93981, + "y": 49.07124 }, { - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { @@ -1504,16 +1504,16 @@ "y": 0 }, { - "x": 121.32941100823047, - "y": 34.53562242798354 + "x": 121.32941, + "y": 34.53562 }, { "x": 0, "y": 0 }, { - "x": 121.32941100823047, - "y": 34.53562242798354 + "x": 121.32941, + "y": 34.53562 }, { "fillStyle": "#C7F464", @@ -1550,36 +1550,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 101.7190072016461, + "x": 101.71901, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 140.93981481481484, - "y": 49.07124485596708 + "x": 140.93981, + "y": 49.07124 }, { "body": null, "index": 3, "isInternal": false, - "x": 101.7190072016461, - "y": 49.07124485596708 + "x": 101.71901, + "y": 49.07124 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 752.4076041785743, + "area": 752.4076, "axes": { "#": 156 }, @@ -1600,13 +1600,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1662,11 +1662,11 @@ } }, { - "x": 165.81712962962968, - "y": 50.24472736625515 + "x": 165.81713, + "y": 50.24473 }, { - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { @@ -1684,16 +1684,16 @@ "y": 0 }, { - "x": 153.37847222222226, - "y": 35.122363683127574 + "x": 153.37847, + "y": 35.12236 }, { "x": 0, "y": 0 }, { - "x": 153.37847222222226, - "y": 35.122363683127574 + "x": 153.37847, + "y": 35.12236 }, { "fillStyle": "#C7F464", @@ -1730,36 +1730,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 140.93981481481484, + "x": 140.93981, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 165.81712962962968, + "x": 165.81713, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.81712962962968, - "y": 50.24472736625515 + "x": 165.81713, + "y": 50.24473 }, { "body": null, "index": 3, "isInternal": false, - "x": 140.93981481481484, - "y": 50.24472736625515 + "x": 140.93981, + "y": 50.24473 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2027.2541820000001, + "area": 2027.25418, "axes": { "#": 177 }, @@ -1780,13 +1780,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -1829,12 +1829,12 @@ } ], { - "x": -0.500008582084709, - "y": -0.8660204488588239 + "x": -0.50001, + "y": -0.86602 }, { - "x": 0.500008582084709, - "y": -0.8660204488588239 + "x": 0.50001, + "y": -0.86602 }, { "x": 1, @@ -1849,12 +1849,12 @@ } }, { - "x": 214.19912962962968, + "x": 214.19913, "y": 75.868 }, { - "x": 165.81712962962968, - "y": 19.999999999999996 + "x": 165.81713, + "y": 20 }, { "category": 1, @@ -1871,7 +1871,7 @@ "y": 0 }, { - "x": 190.00812962962968, + "x": 190.00813, "y": 47.934 }, { @@ -1879,7 +1879,7 @@ "y": 0 }, { - "x": 190.00812962962968, + "x": 190.00813, "y": 47.934 }, { @@ -1923,42 +1923,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 214.19912962962968, - "y": 61.900999999999996 + "x": 214.19913, + "y": 61.901 }, { "body": null, "index": 1, "isInternal": false, - "x": 190.00812962962968, + "x": 190.00813, "y": 75.868 }, { "body": null, "index": 2, "isInternal": false, - "x": 165.81712962962968, - "y": 61.900999999999996 + "x": 165.81713, + "y": 61.901 }, { "body": null, "index": 3, "isInternal": false, - "x": 165.81712962962968, + "x": 165.81713, "y": 33.967 }, { "body": null, "index": 4, "isInternal": false, - "x": 190.00812962962968, - "y": 19.999999999999996 + "x": 190.00813, + "y": 20 }, { "body": null, "index": 5, "isInternal": false, - "x": 214.19912962962968, + "x": 214.19913, "y": 33.967 }, { @@ -1987,13 +1987,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2042,20 +2042,20 @@ } ], { - "x": 0.30902000749156683, - "y": 0.95105553726894 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090188345853124, - "y": 0.5877827194518592 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090188345853124, - "y": -0.5877827194518592 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.30902000749156683, - "y": -0.95105553726894 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -2070,11 +2070,11 @@ } }, { - "x": 291.5277437444547, + "x": 291.52774, "y": 105.84 }, { - "x": 209.8897437444547, + "x": 209.88974, "y": 20 }, { @@ -2092,7 +2092,7 @@ "y": 0 }, { - "x": 255.0181296296297, + "x": 255.01813, "y": 62.92 }, { @@ -2100,7 +2100,7 @@ "y": 0 }, { - "x": 255.0181296296297, + "x": 255.01813, "y": 62.92 }, { @@ -2141,50 +2141,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 291.5277437444547, + "x": 291.52774, "y": 89.446 }, { "body": null, "index": 1, "isInternal": false, - "x": 241.0727437444547, + "x": 241.07274, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 209.8897437444547, + "x": 209.88974, "y": 62.92 }, { "body": null, "index": 3, "isInternal": false, - "x": 241.0727437444547, + "x": 241.07274, "y": 20 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.5277437444547, - "y": 36.394000000000005 + "x": 291.52774, + "y": 36.394 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3079.0178339999993, + "area": 3079.01783, "axes": { "#": 226 }, "bounds": { "#": 240 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 243 }, @@ -2199,13 +2199,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2278,52 +2278,52 @@ } ], { - "x": -0.9709437470087438, - "y": -0.23930783552700582 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.885418252251326, - "y": -0.46479513614086726 + "x": -0.88542, + "y": -0.4648 }, { - "x": -0.7485358222247293, - "y": -0.6630943544069339 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680780310049566, - "y": -0.8229746962632154 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3545747323306568, - "y": -0.9350276783029703 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12051249760074473, - "y": -0.9927118101050428 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12051249760074473, - "y": -0.9927118101050428 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3545747323306568, - "y": -0.9350276783029703 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680780310049566, - "y": -0.8229746962632154 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485358222247293, - "y": -0.6630943544069339 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.885418252251326, - "y": -0.46479513614086726 + "x": 0.88542, + "y": -0.4648 }, { - "x": 0.9709437470087438, - "y": -0.23930783552700582 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -2338,12 +2338,12 @@ } }, { - "x": 353.98774374445475, + "x": 353.98774, "y": 82.918 }, { - "x": 291.5277437444547, - "y": 20.000000000000004 + "x": 291.52774, + "y": 20 }, { "category": 1, @@ -2360,7 +2360,7 @@ "y": 0 }, { - "x": 322.75774374445473, + "x": 322.75774, "y": 51.459 }, { @@ -2368,7 +2368,7 @@ "y": 0 }, { - "x": 322.75774374445473, + "x": 322.75774, "y": 51.459 }, { @@ -2472,182 +2472,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.98774374445475, - "y": 55.251000000000005 + "x": 353.98774, + "y": 55.251 }, { "body": null, "index": 1, "isInternal": false, - "x": 352.17274374445475, + "x": 352.17274, "y": 62.615 }, { "body": null, "index": 2, "isInternal": false, - "x": 348.6477437444547, + "x": 348.64774, "y": 69.33 }, { "body": null, "index": 3, "isInternal": false, - "x": 343.6187437444547, + "x": 343.61874, "y": 75.007 }, { "body": null, "index": 4, "isInternal": false, - "x": 337.37774374445473, + "x": 337.37774, "y": 79.315 }, { "body": null, "index": 5, "isInternal": false, - "x": 330.2867437444547, + "x": 330.28674, "y": 82.004 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.75774374445473, + "x": 322.75774, "y": 82.918 }, { "body": null, "index": 7, "isInternal": false, - "x": 315.22874374445473, + "x": 315.22874, "y": 82.004 }, { "body": null, "index": 8, "isInternal": false, - "x": 308.1377437444547, + "x": 308.13774, "y": 79.315 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.89674374445474, + "x": 301.89674, "y": 75.007 }, { "body": null, "index": 10, "isInternal": false, - "x": 296.86774374445474, + "x": 296.86774, "y": 69.33 }, { "body": null, "index": 11, "isInternal": false, - "x": 293.3427437444547, + "x": 293.34274, "y": 62.615 }, { "body": null, "index": 12, "isInternal": false, - "x": 291.5277437444547, - "y": 55.251000000000005 + "x": 291.52774, + "y": 55.251 }, { "body": null, "index": 13, "isInternal": false, - "x": 291.5277437444547, + "x": 291.52774, "y": 47.667 }, { "body": null, "index": 14, "isInternal": false, - "x": 293.3427437444547, - "y": 40.303000000000004 + "x": 293.34274, + "y": 40.303 }, { "body": null, "index": 15, "isInternal": false, - "x": 296.86774374445474, - "y": 33.58800000000001 + "x": 296.86774, + "y": 33.588 }, { "body": null, "index": 16, "isInternal": false, - "x": 301.89674374445474, - "y": 27.911000000000005 + "x": 301.89674, + "y": 27.911 }, { "body": null, "index": 17, "isInternal": false, - "x": 308.1377437444547, + "x": 308.13774, "y": 23.603 }, { "body": null, "index": 18, "isInternal": false, - "x": 315.22874374445473, + "x": 315.22874, "y": 20.914 }, { "body": null, "index": 19, "isInternal": false, - "x": 322.75774374445473, - "y": 20.000000000000004 + "x": 322.75774, + "y": 20 }, { "body": null, "index": 20, "isInternal": false, - "x": 330.2867437444547, + "x": 330.28674, "y": 20.914 }, { "body": null, "index": 21, "isInternal": false, - "x": 337.37774374445473, + "x": 337.37774, "y": 23.603 }, { "body": null, "index": 22, "isInternal": false, - "x": 343.6187437444547, - "y": 27.911000000000005 + "x": 343.61874, + "y": 27.911 }, { "body": null, "index": 23, "isInternal": false, - "x": 348.6477437444547, - "y": 33.58800000000001 + "x": 348.64774, + "y": 33.588 }, { "body": null, "index": 24, "isInternal": false, - "x": 352.17274374445475, - "y": 40.303000000000004 + "x": 352.17274, + "y": 40.303 }, { "body": null, "index": 25, "isInternal": false, - "x": 353.98774374445475, + "x": 353.98774, "y": 47.667 }, { @@ -2655,7 +2655,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1329.4167625219097, + "area": 1329.41676, "axes": { "#": 280 }, @@ -2676,13 +2676,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2738,11 +2738,11 @@ } }, { - "x": 402.76539292140944, - "y": 47.25462962962963 + "x": 402.76539, + "y": 47.25463 }, { - "x": 353.98774374445475, + "x": 353.98774, "y": 20 }, { @@ -2760,16 +2760,16 @@ "y": 0 }, { - "x": 378.3765683329321, - "y": 33.62731481481482 + "x": 378.37657, + "y": 33.62731 }, { "x": 0, "y": 0 }, { - "x": 378.3765683329321, - "y": 33.62731481481482 + "x": 378.37657, + "y": 33.62731 }, { "fillStyle": "#4ECDC4", @@ -2806,36 +2806,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.98774374445475, + "x": 353.98774, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 402.76539292140944, + "x": 402.76539, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 402.76539292140944, - "y": 47.25462962962963 + "x": 402.76539, + "y": 47.25463 }, { "body": null, "index": 3, "isInternal": false, - "x": 353.98774374445475, - "y": 47.25462962962963 + "x": 353.98774, + "y": 47.25463 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2858.632357296012, + "area": 2858.63236, "axes": { "#": 301 }, @@ -2856,13 +2856,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -2918,12 +2918,12 @@ } }, { - "x": 511.6199882574863, - "y": 46.261016803840874 + "x": 511.61999, + "y": 46.26102 }, { - "x": 402.76539292140944, - "y": 19.999999999999996 + "x": 402.76539, + "y": 20 }, { "category": 1, @@ -2940,16 +2940,16 @@ "y": 0 }, { - "x": 457.19269058944786, - "y": 33.13050840192044 + "x": 457.19269, + "y": 33.13051 }, { "x": 0, "y": 0 }, { - "x": 457.19269058944786, - "y": 33.13050840192044 + "x": 457.19269, + "y": 33.13051 }, { "fillStyle": "#C7F464", @@ -2986,36 +2986,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 402.76539292140944, - "y": 19.999999999999996 + "x": 402.76539, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 511.6199882574863, - "y": 19.999999999999996 + "x": 511.61999, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 511.6199882574863, - "y": 46.261016803840874 + "x": 511.61999, + "y": 46.26102 }, { "body": null, "index": 3, "isInternal": false, - "x": 402.76539292140944, - "y": 46.261016803840874 + "x": 402.76539, + "y": 46.26102 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 926.8394636035856, + "area": 926.83946, "axes": { "#": 322 }, @@ -3036,13 +3036,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3098,11 +3098,11 @@ } }, { - "x": 550.3757752945232, - "y": 43.914866255144034 + "x": 550.37578, + "y": 43.91487 }, { - "x": 511.6199882574862, + "x": 511.61999, "y": 20 }, { @@ -3120,16 +3120,16 @@ "y": 0 }, { - "x": 530.9978817760048, - "y": 31.957433127572017 + "x": 530.99788, + "y": 31.95743 }, { "x": 0, "y": 0 }, { - "x": 530.9978817760048, - "y": 31.957433127572017 + "x": 530.99788, + "y": 31.95743 }, { "fillStyle": "#C44D58", @@ -3166,36 +3166,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 511.6199882574862, + "x": 511.61999, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 550.3757752945232, + "x": 550.37578, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 550.3757752945232, - "y": 43.914866255144034 + "x": 550.37578, + "y": 43.91487 }, { "body": null, "index": 3, "isInternal": false, - "x": 511.6199882574862, - "y": 43.914866255144034 + "x": 511.61999, + "y": 43.91487 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1290.4501361223834, + "area": 1290.45014, "axes": { "#": 343 }, @@ -3216,13 +3216,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3278,12 +3278,12 @@ } }, { - "x": 586.1460942245644, - "y": 56.076003086419746 + "x": 586.14609, + "y": 56.076 }, { - "x": 550.3757752945232, - "y": 19.999999999999996 + "x": 550.37578, + "y": 20 }, { "category": 1, @@ -3300,16 +3300,16 @@ "y": 0 }, { - "x": 568.2609347595438, - "y": 38.03800154320987 + "x": 568.26093, + "y": 38.038 }, { "x": 0, "y": 0 }, { - "x": 568.2609347595438, - "y": 38.03800154320987 + "x": 568.26093, + "y": 38.038 }, { "fillStyle": "#4ECDC4", @@ -3346,36 +3346,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 550.3757752945232, - "y": 19.999999999999996 + "x": 550.37578, + "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 586.1460942245644, - "y": 19.999999999999996 + "x": 586.14609, + "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.1460942245644, - "y": 56.076003086419746 + "x": 586.14609, + "y": 56.076 }, { "body": null, "index": 3, "isInternal": false, - "x": 550.3757752945232, - "y": 56.076003086419746 + "x": 550.37578, + "y": 56.076 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1148.2925932011974, + "area": 1148.29259, "axes": { "#": 364 }, @@ -3396,13 +3396,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3458,11 +3458,11 @@ } }, { - "x": 616.7010067760048, - "y": 57.58127572016461 + "x": 616.70101, + "y": 57.58128 }, { - "x": 586.1460942245644, + "x": 586.14609, "y": 20 }, { @@ -3480,16 +3480,16 @@ "y": 0 }, { - "x": 601.4235505002846, - "y": 38.790637860082306 + "x": 601.42355, + "y": 38.79064 }, { "x": 0, "y": 0 }, { - "x": 601.4235505002846, - "y": 38.790637860082306 + "x": 601.42355, + "y": 38.79064 }, { "fillStyle": "#C44D58", @@ -3526,36 +3526,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 586.1460942245644, + "x": 586.14609, "y": 20 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.7010067760048, + "x": 616.70101, "y": 20 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.7010067760048, - "y": 57.58127572016461 + "x": 616.70101, + "y": 57.58128 }, { "body": null, "index": 3, "isInternal": false, - "x": 586.1460942245644, - "y": 57.58127572016461 + "x": 586.14609, + "y": 57.58128 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1926.7878890000002, + "area": 1926.78789, "axes": { "#": 385 }, @@ -3576,13 +3576,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3637,28 +3637,28 @@ } ], { - "x": 0.6234921001781484, - "y": 0.7818296496139309 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22251820971292155, - "y": 0.9749285339685962 + "x": -0.22252, + "y": 0.97493 }, { - "x": -0.9009815501548849, - "y": 0.43385740316433524 + "x": -0.90098, + "y": 0.43386 }, { - "x": -0.9009815501548849, - "y": -0.43385740316433524 + "x": -0.90098, + "y": -0.43386 }, { - "x": -0.22251820971292155, - "y": -0.9749285339685962 + "x": -0.22252, + "y": -0.97493 }, { - "x": 0.6234921001781484, - "y": -0.7818296496139309 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -3673,12 +3673,12 @@ } }, { - "x": 665.8303156438957, - "y": 71.74000000000001 + "x": 665.83032, + "y": 71.74 }, { - "x": 615.3873156438957, - "y": 20.000000000000004 + "x": 615.38732, + "y": 20 }, { "category": 1, @@ -3695,16 +3695,16 @@ "y": 0 }, { - "x": 641.9225067760048, - "y": 45.870000000000005 + "x": 641.92251, + "y": 45.87 }, { "x": 0, "y": 0 }, { - "x": 641.9225067760048, - "y": 45.870000000000005 + "x": 641.92251, + "y": 45.87 }, { "fillStyle": "#C7F464", @@ -3750,57 +3750,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 665.8303156438957, + "x": 665.83032, "y": 57.383 }, { "body": null, "index": 1, "isInternal": false, - "x": 647.8273156438956, - "y": 71.74000000000001 + "x": 647.82732, + "y": 71.74 }, { "body": null, "index": 2, "isInternal": false, - "x": 625.3773156438957, + "x": 625.37732, "y": 66.616 }, { "body": null, "index": 3, "isInternal": false, - "x": 615.3873156438957, - "y": 45.870000000000005 + "x": 615.38732, + "y": 45.87 }, { "body": null, "index": 4, "isInternal": false, - "x": 625.3773156438957, - "y": 25.124000000000006 + "x": 625.37732, + "y": 25.124 }, { "body": null, "index": 5, "isInternal": false, - "x": 647.8273156438956, - "y": 20.000000000000004 + "x": 647.82732, + "y": 20 }, { "body": null, "index": 6, "isInternal": false, - "x": 665.8303156438957, - "y": 34.357000000000006 + "x": 665.83032, + "y": 34.357 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1690.1965440000001, + "area": 1690.19654, "axes": { "#": 414 }, @@ -3821,13 +3821,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1904.509571566363, - "inverseInertia": 0.0005250695585517853, - "inverseMass": 0.5916471688158889, + "inertia": 1904.50957, + "inverseInertia": 0.00053, + "inverseMass": 0.59165, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.6901965440000002, + "mass": 1.6902, "motion": 0, "parent": null, "position": { @@ -3883,12 +3883,12 @@ } }, { - "x": 706.9423156438958, - "y": 61.111999999999995 + "x": 706.94232, + "y": 61.112 }, { - "x": 665.8303156438957, - "y": 19.999999999999996 + "x": 665.83032, + "y": 20 }, { "category": 1, @@ -3905,7 +3905,7 @@ "y": 0 }, { - "x": 686.3863156438957, + "x": 686.38632, "y": 40.556 }, { @@ -3913,7 +3913,7 @@ "y": 0 }, { - "x": 686.3863156438957, + "x": 686.38632, "y": 40.556 }, { @@ -3951,36 +3951,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 706.9423156438958, - "y": 61.111999999999995 + "x": 706.94232, + "y": 61.112 }, { "body": null, "index": 1, "isInternal": false, - "x": 665.8303156438957, - "y": 61.111999999999995 + "x": 665.83032, + "y": 61.112 }, { "body": null, "index": 2, "isInternal": false, - "x": 665.8303156438957, - "y": 19.999999999999996 + "x": 665.83032, + "y": 20 }, { "body": null, "index": 3, "isInternal": false, - "x": 706.9423156438958, - "y": 19.999999999999996 + "x": 706.94232, + "y": 20 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 435 }, @@ -4001,13 +4001,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4056,20 +4056,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4084,12 +4084,12 @@ } }, { - "x": 741.8472729237214, - "y": 58.74600000000001 + "x": 741.84727, + "y": 58.746 }, { - "x": 704.9972729237214, - "y": 20.000000000000004 + "x": 704.99727, + "y": 20 }, { "category": 1, @@ -4106,16 +4106,16 @@ "y": 0 }, { - "x": 725.3673156438958, - "y": 39.373000000000005 + "x": 725.36732, + "y": 39.373 }, { "x": 0, "y": 0 }, { - "x": 725.3673156438958, - "y": 39.373000000000005 + "x": 725.36732, + "y": 39.373 }, { "fillStyle": "#C44D58", @@ -4155,43 +4155,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 741.8472729237214, - "y": 51.346000000000004 + "x": 741.84727, + "y": 51.346 }, { "body": null, "index": 1, "isInternal": false, - "x": 719.0722729237215, - "y": 58.74600000000001 + "x": 719.07227, + "y": 58.746 }, { "body": null, "index": 2, "isInternal": false, - "x": 704.9972729237214, - "y": 39.373000000000005 + "x": 704.99727, + "y": 39.373 }, { "body": null, "index": 3, "isInternal": false, - "x": 719.0722729237215, - "y": 20.000000000000004 + "x": 719.07227, + "y": 20 }, { "body": null, "index": 4, "isInternal": false, - "x": 741.8472729237214, - "y": 27.400000000000006 + "x": 741.84727, + "y": 27.4 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1201.454244, + "area": 1201.45424, "axes": { "#": 460 }, @@ -4212,13 +4212,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4274,11 +4274,11 @@ } }, { - "x": 54.662000000000006, + "x": 54.662, "y": 140.502 }, { - "x": 20.000000000000004, + "x": 20, "y": 105.84 }, { @@ -4342,28 +4342,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 54.662000000000006, + "x": 54.662, "y": 140.502 }, { "body": null, "index": 1, "isInternal": false, - "x": 20.000000000000004, + "x": 20, "y": 140.502 }, { "body": null, "index": 2, "isInternal": false, - "x": 20.000000000000004, + "x": 20, "y": 105.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 54.662000000000006, + "x": 54.662, "y": 105.84 }, { @@ -4371,7 +4371,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1990.733346252218, + "area": 1990.73335, "axes": { "#": 481 }, @@ -4392,13 +4392,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4454,11 +4454,11 @@ } }, { - "x": 149.48573113854596, - "y": 126.8340414951989 + "x": 149.48573, + "y": 126.83404 }, { - "x": 54.662000000000006, + "x": 54.662, "y": 105.84 }, { @@ -4476,16 +4476,16 @@ "y": 0 }, { - "x": 102.07386556927298, - "y": 116.33702074759945 + "x": 102.07387, + "y": 116.33702 }, { "x": 0, "y": 0 }, { - "x": 102.07386556927298, - "y": 116.33702074759945 + "x": 102.07387, + "y": 116.33702 }, { "fillStyle": "#FF6B6B", @@ -4522,29 +4522,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 54.662000000000006, + "x": 54.662, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 149.48573113854596, + "x": 149.48573, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 149.48573113854596, - "y": 126.8340414951989 + "x": 149.48573, + "y": 126.83404 }, { "body": null, "index": 3, "isInternal": false, - "x": 54.662000000000006, - "y": 126.8340414951989 + "x": 54.662, + "y": 126.83404 }, { "angle": 0, @@ -4558,7 +4558,7 @@ "bounds": { "#": 516 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 519 }, @@ -4573,13 +4573,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4652,52 +4652,52 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -4712,11 +4712,11 @@ } }, { - "x": 245.79973113854598, - "y": 202.85999999999999 + "x": 245.79973, + "y": 202.86 }, { - "x": 149.485731138546, + "x": 149.48573, "y": 105.84 }, { @@ -4734,7 +4734,7 @@ "y": 0 }, { - "x": 197.64273113854597, + "x": 197.64273, "y": 154.35 }, { @@ -4742,7 +4742,7 @@ "y": 0 }, { - "x": 197.64273113854597, + "x": 197.64273, "y": 154.35 }, { @@ -4846,182 +4846,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.79973113854598, + "x": 245.79973, "y": 160.197 }, { "body": null, "index": 1, "isInternal": false, - "x": 243.00073113854597, + "x": 243.00073, "y": 171.552 }, { "body": null, "index": 2, "isInternal": false, - "x": 237.56573113854597, - "y": 181.90699999999998 + "x": 237.56573, + "y": 181.907 }, { "body": null, "index": 3, "isInternal": false, - "x": 229.81073113854598, + "x": 229.81073, "y": 190.661 }, { "body": null, "index": 4, "isInternal": false, - "x": 220.18673113854598, + "x": 220.18673, "y": 197.304 }, { "body": null, "index": 5, "isInternal": false, - "x": 209.25173113854598, + "x": 209.25173, "y": 201.451 }, { "body": null, "index": 6, "isInternal": false, - "x": 197.64273113854597, - "y": 202.85999999999999 + "x": 197.64273, + "y": 202.86 }, { "body": null, "index": 7, "isInternal": false, - "x": 186.03373113854596, + "x": 186.03373, "y": 201.451 }, { "body": null, "index": 8, "isInternal": false, - "x": 175.098731138546, + "x": 175.09873, "y": 197.304 }, { "body": null, "index": 9, "isInternal": false, - "x": 165.47473113854596, + "x": 165.47473, "y": 190.661 }, { "body": null, "index": 10, "isInternal": false, - "x": 157.71973113854597, - "y": 181.90699999999998 + "x": 157.71973, + "y": 181.907 }, { "body": null, "index": 11, "isInternal": false, - "x": 152.28473113854596, + "x": 152.28473, "y": 171.552 }, { "body": null, "index": 12, "isInternal": false, - "x": 149.485731138546, + "x": 149.48573, "y": 160.197 }, { "body": null, "index": 13, "isInternal": false, - "x": 149.485731138546, + "x": 149.48573, "y": 148.503 }, { "body": null, "index": 14, "isInternal": false, - "x": 152.28473113854596, + "x": 152.28473, "y": 137.148 }, { "body": null, "index": 15, "isInternal": false, - "x": 157.71973113854597, - "y": 126.79299999999999 + "x": 157.71973, + "y": 126.793 }, { "body": null, "index": 16, "isInternal": false, - "x": 165.47473113854596, - "y": 118.03899999999999 + "x": 165.47473, + "y": 118.039 }, { "body": null, "index": 17, "isInternal": false, - "x": 175.098731138546, - "y": 111.39599999999999 + "x": 175.09873, + "y": 111.396 }, { "body": null, "index": 18, "isInternal": false, - "x": 186.03373113854596, + "x": 186.03373, "y": 107.249 }, { "body": null, "index": 19, "isInternal": false, - "x": 197.64273113854597, + "x": 197.64273, "y": 105.84 }, { "body": null, "index": 20, "isInternal": false, - "x": 209.25173113854598, + "x": 209.25173, "y": 107.249 }, { "body": null, "index": 21, "isInternal": false, - "x": 220.18673113854598, - "y": 111.39599999999999 + "x": 220.18673, + "y": 111.396 }, { "body": null, "index": 22, "isInternal": false, - "x": 229.81073113854598, - "y": 118.03899999999999 + "x": 229.81073, + "y": 118.039 }, { "body": null, "index": 23, "isInternal": false, - "x": 237.56573113854597, - "y": 126.79299999999999 + "x": 237.56573, + "y": 126.793 }, { "body": null, "index": 24, "isInternal": false, - "x": 243.00073113854597, + "x": 243.00073, "y": 137.148 }, { "body": null, "index": 25, "isInternal": false, - "x": 245.79973113854598, + "x": 245.79973, "y": 148.503 }, { @@ -5029,7 +5029,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2034.763772651268, + "area": 2034.76377, "axes": { "#": 556 }, @@ -5050,13 +5050,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5112,11 +5112,11 @@ } }, { - "x": 330.03241289437585, - "y": 129.99646433470508 + "x": 330.03241, + "y": 129.99646 }, { - "x": 245.79973113854598, + "x": 245.79973, "y": 105.84 }, { @@ -5134,16 +5134,16 @@ "y": 0 }, { - "x": 287.91607201646093, - "y": 117.91823216735254 + "x": 287.91607, + "y": 117.91823 }, { "x": 0, "y": 0 }, { - "x": 287.91607201646093, - "y": 117.91823216735254 + "x": 287.91607, + "y": 117.91823 }, { "fillStyle": "#556270", @@ -5180,36 +5180,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 245.79973113854598, + "x": 245.79973, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 330.03241289437585, + "x": 330.03241, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 330.03241289437585, - "y": 129.99646433470508 + "x": 330.03241, + "y": 129.99646 }, { "body": null, "index": 3, "isInternal": false, - "x": 245.79973113854598, - "y": 129.99646433470508 + "x": 245.79973, + "y": 129.99646 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1030.4556949326513, + "area": 1030.45569, "axes": { "#": 577 }, @@ -5230,13 +5230,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5292,11 +5292,11 @@ } }, { - "x": 379.41898696845, - "y": 126.7050977366255 + "x": 379.41899, + "y": 126.7051 }, { - "x": 330.03241289437585, + "x": 330.03241, "y": 105.84 }, { @@ -5314,16 +5314,16 @@ "y": 0 }, { - "x": 354.7256999314129, - "y": 116.27254886831275 + "x": 354.7257, + "y": 116.27255 }, { "x": 0, "y": 0 }, { - "x": 354.7256999314129, - "y": 116.27254886831275 + "x": 354.7257, + "y": 116.27255 }, { "fillStyle": "#C7F464", @@ -5360,43 +5360,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 330.03241289437585, + "x": 330.03241, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 379.41898696845, + "x": 379.41899, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 379.41898696845, - "y": 126.7050977366255 + "x": 379.41899, + "y": 126.7051 }, { "body": null, "index": 3, "isInternal": false, - "x": 330.03241289437585, - "y": 126.7050977366255 + "x": 330.03241, + "y": 126.7051 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2157.165332, + "area": 2157.16533, "axes": { "#": 598 }, "bounds": { "#": 612 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 615 }, @@ -5411,13 +5411,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5490,52 +5490,52 @@ } ], { - "x": -0.9709433940705979, - "y": -0.2393092674984975 + "x": -0.97094, + "y": -0.23931 }, { - "x": -0.8854643472565572, - "y": -0.46470731620829797 + "x": -0.88546, + "y": -0.46471 }, { - "x": -0.7485032926619368, - "y": -0.6631310736756638 + "x": -0.7485, + "y": -0.66313 }, { - "x": -0.5680789542040116, - "y": -0.8229740590021511 + "x": -0.56808, + "y": -0.82297 }, { - "x": -0.3546257389378823, - "y": -0.9350083343386629 + "x": -0.35463, + "y": -0.93501 }, { - "x": -0.12050542549813427, - "y": -0.9927126686133876 + "x": -0.12051, + "y": -0.99271 }, { - "x": 0.12050542549813427, - "y": -0.9927126686133876 + "x": 0.12051, + "y": -0.99271 }, { - "x": 0.3546257389378823, - "y": -0.9350083343386629 + "x": 0.35463, + "y": -0.93501 }, { - "x": 0.5680789542040116, - "y": -0.8229740590021511 + "x": 0.56808, + "y": -0.82297 }, { - "x": 0.7485032926619368, - "y": -0.6631310736756638 + "x": 0.7485, + "y": -0.66313 }, { - "x": 0.8854643472565572, - "y": -0.46470731620829797 + "x": 0.88546, + "y": -0.46471 }, { - "x": 0.9709433940705979, - "y": -0.2393092674984975 + "x": 0.97094, + "y": -0.23931 }, { "x": 1, @@ -5550,11 +5550,11 @@ } }, { - "x": 431.69898696844996, + "x": 431.69899, "y": 158.504 }, { - "x": 379.41898696845, + "x": 379.41899, "y": 105.84 }, { @@ -5572,7 +5572,7 @@ "y": 0 }, { - "x": 405.55898696845, + "x": 405.55899, "y": 132.172 }, { @@ -5580,7 +5580,7 @@ "y": 0 }, { - "x": 405.55898696845, + "x": 405.55899, "y": 132.172 }, { @@ -5684,182 +5684,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 431.69898696844996, + "x": 431.69899, "y": 135.346 }, { "body": null, "index": 1, "isInternal": false, - "x": 430.17998696844995, - "y": 141.50900000000001 + "x": 430.17999, + "y": 141.509 }, { "body": null, "index": 2, "isInternal": false, - "x": 427.22998696844996, + "x": 427.22999, "y": 147.13 }, { "body": null, "index": 3, "isInternal": false, - "x": 423.01998696845, + "x": 423.01999, "y": 151.882 }, { "body": null, "index": 4, "isInternal": false, - "x": 417.79598696845, + "x": 417.79599, "y": 155.488 }, { "body": null, "index": 5, "isInternal": false, - "x": 411.86098696845, + "x": 411.86099, "y": 157.739 }, { "body": null, "index": 6, "isInternal": false, - "x": 405.55898696845, + "x": 405.55899, "y": 158.504 }, { "body": null, "index": 7, "isInternal": false, - "x": 399.25698696844995, + "x": 399.25699, "y": 157.739 }, { "body": null, "index": 8, "isInternal": false, - "x": 393.32198696844995, + "x": 393.32199, "y": 155.488 }, { "body": null, "index": 9, "isInternal": false, - "x": 388.09798696844996, + "x": 388.09799, "y": 151.882 }, { "body": null, "index": 10, "isInternal": false, - "x": 383.88798696845, + "x": 383.88799, "y": 147.13 }, { "body": null, "index": 11, "isInternal": false, - "x": 380.93798696845, - "y": 141.50900000000001 + "x": 380.93799, + "y": 141.509 }, { "body": null, "index": 12, "isInternal": false, - "x": 379.41898696845, + "x": 379.41899, "y": 135.346 }, { "body": null, "index": 13, "isInternal": false, - "x": 379.41898696845, + "x": 379.41899, "y": 128.998 }, { "body": null, "index": 14, "isInternal": false, - "x": 380.93798696845, + "x": 380.93799, "y": 122.835 }, { "body": null, "index": 15, "isInternal": false, - "x": 383.88798696845, + "x": 383.88799, "y": 117.214 }, { "body": null, "index": 16, "isInternal": false, - "x": 388.09798696844996, - "y": 112.46199999999999 + "x": 388.09799, + "y": 112.462 }, { "body": null, "index": 17, "isInternal": false, - "x": 393.32198696844995, + "x": 393.32199, "y": 108.856 }, { "body": null, "index": 18, "isInternal": false, - "x": 399.25698696844995, - "y": 106.60499999999999 + "x": 399.25699, + "y": 106.605 }, { "body": null, "index": 19, "isInternal": false, - "x": 405.55898696845, + "x": 405.55899, "y": 105.84 }, { "body": null, "index": 20, "isInternal": false, - "x": 411.86098696845, - "y": 106.60499999999999 + "x": 411.86099, + "y": 106.605 }, { "body": null, "index": 21, "isInternal": false, - "x": 417.79598696845, + "x": 417.79599, "y": 108.856 }, { "body": null, "index": 22, "isInternal": false, - "x": 423.01998696845, - "y": 112.46199999999999 + "x": 423.01999, + "y": 112.462 }, { "body": null, "index": 23, "isInternal": false, - "x": 427.22998696844996, + "x": 427.22999, "y": 117.214 }, { "body": null, "index": 24, "isInternal": false, - "x": 430.17998696844995, + "x": 430.17999, "y": 122.835 }, { "body": null, "index": 25, "isInternal": false, - "x": 431.69898696844996, + "x": 431.69899, "y": 128.998 }, { @@ -5867,7 +5867,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2399.6281959999997, + "area": 2399.6282, "axes": { "#": 652 }, @@ -5888,13 +5888,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -5950,11 +5950,11 @@ } }, { - "x": 480.68498696844995, + "x": 480.68499, "y": 154.826 }, { - "x": 431.69898696844996, + "x": 431.69899, "y": 105.84 }, { @@ -5972,7 +5972,7 @@ "y": 0 }, { - "x": 456.19198696844995, + "x": 456.19199, "y": 130.333 }, { @@ -5980,7 +5980,7 @@ "y": 0 }, { - "x": 456.19198696844995, + "x": 456.19199, "y": 130.333 }, { @@ -6018,28 +6018,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 480.68498696844995, + "x": 480.68499, "y": 154.826 }, { "body": null, "index": 1, "isInternal": false, - "x": 431.69898696844996, + "x": 431.69899, "y": 154.826 }, { "body": null, "index": 2, "isInternal": false, - "x": 431.69898696844996, + "x": 431.69899, "y": 105.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.68498696844995, + "x": 480.68499, "y": 105.84 }, { @@ -6047,7 +6047,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1489.7843794189994, + "area": 1489.78438, "axes": { "#": 673 }, @@ -6068,13 +6068,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6130,11 +6130,11 @@ } }, { - "x": 516.0979242112483, - "y": 147.90893004115227 + "x": 516.09792, + "y": 147.90893 }, { - "x": 480.68498696844995, + "x": 480.68499, "y": 105.84 }, { @@ -6152,16 +6152,16 @@ "y": 0 }, { - "x": 498.3914555898491, - "y": 126.87446502057614 + "x": 498.39146, + "y": 126.87447 }, { "x": 0, "y": 0 }, { - "x": 498.3914555898491, - "y": 126.87446502057614 + "x": 498.39146, + "y": 126.87447 }, { "fillStyle": "#4ECDC4", @@ -6198,36 +6198,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 480.68498696844995, + "x": 480.68499, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 516.0979242112483, + "x": 516.09792, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 516.0979242112483, - "y": 147.90893004115227 + "x": 516.09792, + "y": 147.90893 }, { "body": null, "index": 3, "isInternal": false, - "x": 480.68498696844995, - "y": 147.90893004115227 + "x": 480.68499, + "y": 147.90893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1765.3675322216507, + "area": 1765.36753, "axes": { "#": 694 }, @@ -6248,13 +6248,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6310,11 +6310,11 @@ } }, { - "x": 557.8618131001372, - "y": 148.1101903292181 + "x": 557.86181, + "y": 148.11019 }, { - "x": 516.0979242112483, + "x": 516.09792, "y": 105.84 }, { @@ -6332,16 +6332,16 @@ "y": 0 }, { - "x": 536.9798686556927, - "y": 126.97509516460906 + "x": 536.97987, + "y": 126.9751 }, { "x": 0, "y": 0 }, { - "x": 536.9798686556927, - "y": 126.97509516460906 + "x": 536.97987, + "y": 126.9751 }, { "fillStyle": "#FF6B6B", @@ -6378,36 +6378,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 516.0979242112483, + "x": 516.09792, "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 557.8618131001372, + "x": 557.86181, "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 557.8618131001372, - "y": 148.1101903292181 + "x": 557.86181, + "y": 148.11019 }, { "body": null, "index": 3, "isInternal": false, - "x": 516.0979242112483, - "y": 148.1101903292181 + "x": 516.09792, + "y": 148.11019 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1919.5457599999997, + "area": 1919.54576, "axes": { "#": 715 }, @@ -6428,13 +6428,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6477,12 +6477,12 @@ } ], { - "x": -0.4999772266722585, - "y": -0.8660385515721092 + "x": -0.49998, + "y": -0.86604 }, { - "x": 0.4999772266722585, - "y": -0.8660385515721092 + "x": 0.49998, + "y": -0.86604 }, { "x": 1, @@ -6497,12 +6497,12 @@ } }, { - "x": 604.9418131001371, - "y": 160.20200000000003 + "x": 604.94181, + "y": 160.202 }, { - "x": 557.8618131001372, - "y": 105.84000000000002 + "x": 557.86181, + "y": 105.84 }, { "category": 1, @@ -6519,16 +6519,16 @@ "y": 0 }, { - "x": 581.4018131001371, - "y": 133.02100000000002 + "x": 581.40181, + "y": 133.021 }, { "x": 0, "y": 0 }, { - "x": 581.4018131001371, - "y": 133.02100000000002 + "x": 581.40181, + "y": 133.021 }, { "fillStyle": "#FF6B6B", @@ -6571,50 +6571,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 604.9418131001371, - "y": 146.61200000000002 + "x": 604.94181, + "y": 146.612 }, { "body": null, "index": 1, "isInternal": false, - "x": 581.4018131001371, - "y": 160.20200000000003 + "x": 581.40181, + "y": 160.202 }, { "body": null, "index": 2, "isInternal": false, - "x": 557.8618131001372, - "y": 146.61200000000002 + "x": 557.86181, + "y": 146.612 }, { "body": null, "index": 3, "isInternal": false, - "x": 557.8618131001372, - "y": 119.43000000000002 + "x": 557.86181, + "y": 119.43 }, { "body": null, "index": 4, "isInternal": false, - "x": 581.4018131001371, - "y": 105.84000000000002 + "x": 581.40181, + "y": 105.84 }, { "body": null, "index": 5, "isInternal": false, - "x": 604.9418131001371, - "y": 119.43000000000002 + "x": 604.94181, + "y": 119.43 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6052.328004, + "area": 6052.328, "axes": { "#": 739 }, @@ -6635,13 +6635,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -6684,12 +6684,12 @@ } ], { - "x": -0.4999896834528559, - "y": -0.8660313599637792 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999896834528559, - "y": -0.8660313599637792 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -6704,12 +6704,12 @@ } }, { - "x": 688.539813100137, - "y": 202.37000000000003 + "x": 688.53981, + "y": 202.37 }, { - "x": 604.9418131001371, - "y": 105.84000000000002 + "x": 604.94181, + "y": 105.84 }, { "category": 1, @@ -6726,16 +6726,16 @@ "y": 0 }, { - "x": 646.7408131001371, - "y": 154.10500000000002 + "x": 646.74081, + "y": 154.105 }, { "x": 0, "y": 0 }, { - "x": 646.7408131001371, - "y": 154.10500000000002 + "x": 646.74081, + "y": 154.105 }, { "fillStyle": "#4ECDC4", @@ -6778,50 +6778,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 688.539813100137, - "y": 178.23800000000003 + "x": 688.53981, + "y": 178.238 }, { "body": null, "index": 1, "isInternal": false, - "x": 646.7408131001371, - "y": 202.37000000000003 + "x": 646.74081, + "y": 202.37 }, { "body": null, "index": 2, "isInternal": false, - "x": 604.9418131001371, - "y": 178.23800000000003 + "x": 604.94181, + "y": 178.238 }, { "body": null, "index": 3, "isInternal": false, - "x": 604.9418131001371, - "y": 129.97200000000004 + "x": 604.94181, + "y": 129.972 }, { "body": null, "index": 4, "isInternal": false, - "x": 646.7408131001371, - "y": 105.84000000000002 + "x": 646.74081, + "y": 105.84 }, { "body": null, "index": 5, "isInternal": false, - "x": 688.539813100137, - "y": 129.97200000000004 + "x": 688.53981, + "y": 129.972 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2220.023313496789, + "area": 2220.02331, "axes": { "#": 763 }, @@ -6842,13 +6842,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -6904,12 +6904,12 @@ } }, { - "x": 733.6911762688612, - "y": 155.00846707818928 + "x": 733.69118, + "y": 155.00847 }, { - "x": 688.539813100137, - "y": 105.83999999999999 + "x": 688.53981, + "y": 105.84 }, { "category": 1, @@ -6926,16 +6926,16 @@ "y": 0 }, { - "x": 711.1154946844991, - "y": 130.42423353909464 + "x": 711.11549, + "y": 130.42423 }, { "x": 0, "y": 0 }, { - "x": 711.1154946844991, - "y": 130.42423353909464 + "x": 711.11549, + "y": 130.42423 }, { "fillStyle": "#C7F464", @@ -6972,36 +6972,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 688.539813100137, - "y": 105.83999999999999 + "x": 688.53981, + "y": 105.84 }, { "body": null, "index": 1, "isInternal": false, - "x": 733.6911762688612, - "y": 105.83999999999999 + "x": 733.69118, + "y": 105.84 }, { "body": null, "index": 2, "isInternal": false, - "x": 733.6911762688612, - "y": 155.00846707818928 + "x": 733.69118, + "y": 155.00847 }, { "body": null, "index": 3, "isInternal": false, - "x": 688.539813100137, - "y": 155.00846707818928 + "x": 688.53981, + "y": 155.00847 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2601.1074479999997, + "area": 2601.10745, "axes": { "#": 784 }, @@ -7022,13 +7022,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7071,12 +7071,12 @@ } ], { - "x": -0.4999869137730785, - "y": -0.8660329589892477 + "x": -0.49999, + "y": -0.86603 }, { - "x": 0.4999869137730785, - "y": -0.8660329589892477 + "x": 0.49999, + "y": -0.86603 }, { "x": 1, @@ -7091,11 +7091,11 @@ } }, { - "x": 788.4951762688613, - "y": 169.12199999999999 + "x": 788.49518, + "y": 169.122 }, { - "x": 733.6911762688612, + "x": 733.69118, "y": 105.84 }, { @@ -7113,7 +7113,7 @@ "y": 0 }, { - "x": 761.0931762688613, + "x": 761.09318, "y": 137.481 }, { @@ -7121,7 +7121,7 @@ "y": 0 }, { - "x": 761.0931762688613, + "x": 761.09318, "y": 137.481 }, { @@ -7165,42 +7165,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 788.4951762688613, + "x": 788.49518, "y": 153.302 }, { "body": null, "index": 1, "isInternal": false, - "x": 761.0931762688613, - "y": 169.12199999999999 + "x": 761.09318, + "y": 169.122 }, { "body": null, "index": 2, "isInternal": false, - "x": 733.6911762688612, + "x": 733.69118, "y": 153.302 }, { "body": null, "index": 3, "isInternal": false, - "x": 733.6911762688612, + "x": 733.69118, "y": 121.66 }, { "body": null, "index": 4, "isInternal": false, - "x": 761.0931762688613, + "x": 761.09318, "y": 105.84 }, { "body": null, "index": 5, "isInternal": false, - "x": 788.4951762688613, + "x": 788.49518, "y": 121.66 }, { @@ -7208,7 +7208,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1413.3088360000002, + "area": 1413.30884, "axes": { "#": 808 }, @@ -7229,13 +7229,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7291,11 +7291,11 @@ } }, { - "x": 826.0891762688614, + "x": 826.08918, "y": 143.434 }, { - "x": 788.4951762688613, + "x": 788.49518, "y": 105.84 }, { @@ -7313,7 +7313,7 @@ "y": 0 }, { - "x": 807.2921762688613, + "x": 807.29218, "y": 124.637 }, { @@ -7321,7 +7321,7 @@ "y": 0 }, { - "x": 807.2921762688613, + "x": 807.29218, "y": 124.637 }, { @@ -7359,28 +7359,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 826.0891762688614, + "x": 826.08918, "y": 143.434 }, { "body": null, "index": 1, "isInternal": false, - "x": 788.4951762688613, + "x": 788.49518, "y": 143.434 }, { "body": null, "index": 2, "isInternal": false, - "x": 788.4951762688613, + "x": 788.49518, "y": 105.84 }, { "body": null, "index": 3, "isInternal": false, - "x": 826.0891762688614, + "x": 826.08918, "y": 105.84 }, { @@ -7388,7 +7388,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5460.808751999999, + "area": 5460.80875, "axes": { "#": 829 }, @@ -7409,13 +7409,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7458,12 +7458,12 @@ } ], { - "x": -0.49999811726960197, - "y": -0.8660264907766121 + "x": -0.5, + "y": -0.86603 }, { - "x": 0.49999811726960197, - "y": -0.8660264907766121 + "x": 0.5, + "y": -0.86603 }, { "x": 1, @@ -7478,11 +7478,11 @@ } }, { - "x": 905.4971762688613, + "x": 905.49718, "y": 197.532 }, { - "x": 826.0891762688614, + "x": 826.08918, "y": 105.84 }, { @@ -7500,7 +7500,7 @@ "y": 0 }, { - "x": 865.7931762688613, + "x": 865.79318, "y": 151.686 }, { @@ -7508,7 +7508,7 @@ "y": 0 }, { - "x": 865.7931762688613, + "x": 865.79318, "y": 151.686 }, { @@ -7552,42 +7552,42 @@ "body": null, "index": 0, "isInternal": false, - "x": 905.4971762688613, + "x": 905.49718, "y": 174.609 }, { "body": null, "index": 1, "isInternal": false, - "x": 865.7931762688613, + "x": 865.79318, "y": 197.532 }, { "body": null, "index": 2, "isInternal": false, - "x": 826.0891762688614, + "x": 826.08918, "y": 174.609 }, { "body": null, "index": 3, "isInternal": false, - "x": 826.0891762688614, + "x": 826.08918, "y": 128.763 }, { "body": null, "index": 4, "isInternal": false, - "x": 865.7931762688613, + "x": 865.79318, "y": 105.84 }, { "body": null, "index": 5, "isInternal": false, - "x": 905.4971762688613, + "x": 905.49718, "y": 128.763 }, { @@ -7595,7 +7595,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 451.6137937679406, + "area": 451.61379, "axes": { "#": 853 }, @@ -7616,13 +7616,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -7678,12 +7678,12 @@ } }, { - "x": 40.170524691358025, - "y": 225.2497890946502 + "x": 40.17052, + "y": 225.24979 }, { "x": 20, - "y": 202.85999999999999 + "y": 202.86 }, { "category": 1, @@ -7700,16 +7700,16 @@ "y": 0 }, { - "x": 30.085262345679013, - "y": 214.0548945473251 + "x": 30.08526, + "y": 214.05489 }, { "x": 0, "y": 0 }, { - "x": 30.085262345679013, - "y": 214.0548945473251 + "x": 30.08526, + "y": 214.05489 }, { "fillStyle": "#556270", @@ -7747,35 +7747,35 @@ "index": 0, "isInternal": false, "x": 20, - "y": 202.85999999999999 + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 40.170524691358025, - "y": 202.85999999999999 + "x": 40.17052, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 40.170524691358025, - "y": 225.2497890946502 + "x": 40.17052, + "y": 225.24979 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 225.2497890946502 + "y": 225.24979 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3021.679068443158, + "area": 3021.67907, "axes": { "#": 874 }, @@ -7796,13 +7796,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -7858,12 +7858,12 @@ } }, { - "x": 142.0036865569273, - "y": 232.53283950617285 + "x": 142.00369, + "y": 232.53284 }, { - "x": 40.170524691358025, - "y": 202.85999999999999 + "x": 40.17052, + "y": 202.86 }, { "category": 1, @@ -7880,16 +7880,16 @@ "y": 0 }, { - "x": 91.08710562414267, - "y": 217.69641975308642 + "x": 91.08711, + "y": 217.69642 }, { "x": 0, "y": 0 }, { - "x": 91.08710562414267, - "y": 217.69641975308642 + "x": 91.08711, + "y": 217.69642 }, { "fillStyle": "#C44D58", @@ -7926,36 +7926,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 40.170524691358025, - "y": 202.85999999999999 + "x": 40.17052, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 142.0036865569273, - "y": 202.85999999999999 + "x": 142.00369, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 142.0036865569273, - "y": 232.53283950617285 + "x": 142.00369, + "y": 232.53284 }, { "body": null, "index": 3, "isInternal": false, - "x": 40.170524691358025, - "y": 232.53283950617285 + "x": 40.17052, + "y": 232.53284 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 856.7396388354374, + "area": 856.73964, "axes": { "#": 895 }, @@ -7976,13 +7976,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8038,12 +8038,12 @@ } }, { - "x": 182.07518861454045, - "y": 224.24027263374484 + "x": 182.07519, + "y": 224.24027 }, { - "x": 142.0036865569273, - "y": 202.85999999999999 + "x": 142.00369, + "y": 202.86 }, { "category": 1, @@ -8060,16 +8060,16 @@ "y": 0 }, { - "x": 162.03943758573388, - "y": 213.5501363168724 + "x": 162.03944, + "y": 213.55014 }, { "x": 0, "y": 0 }, { - "x": 162.03943758573388, - "y": 213.5501363168724 + "x": 162.03944, + "y": 213.55014 }, { "fillStyle": "#556270", @@ -8106,36 +8106,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 142.0036865569273, - "y": 202.85999999999999 + "x": 142.00369, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 182.07518861454045, - "y": 202.85999999999999 + "x": 182.07519, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 182.07518861454045, - "y": 224.24027263374484 + "x": 182.07519, + "y": 224.24027 }, { "body": null, "index": 3, "isInternal": false, - "x": 142.0036865569273, - "y": 224.24027263374484 + "x": 142.00369, + "y": 224.24027 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4088.5999519999996, + "area": 4088.59995, "axes": { "#": 916 }, @@ -8156,13 +8156,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8208,16 +8208,16 @@ } ], { - "x": -0.7071067811865475, - "y": -0.7071067811865475 + "x": -0.70711, + "y": -0.70711 }, { "x": 0, "y": -1 }, { - "x": 0.7071067811865475, - "y": -0.7071067811865475 + "x": 0.70711, + "y": -0.70711 }, { "x": 1, @@ -8232,12 +8232,12 @@ } }, { - "x": 252.32718861454046, - "y": 273.11199999999997 + "x": 252.32719, + "y": 273.112 }, { - "x": 182.07518861454045, - "y": 202.85999999999999 + "x": 182.07519, + "y": 202.86 }, { "category": 1, @@ -8254,7 +8254,7 @@ "y": 0 }, { - "x": 217.20118861454046, + "x": 217.20119, "y": 237.986 }, { @@ -8262,7 +8262,7 @@ "y": 0 }, { - "x": 217.20118861454046, + "x": 217.20119, "y": 237.986 }, { @@ -8312,64 +8312,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.32718861454046, + "x": 252.32719, "y": 252.536 }, { "body": null, "index": 1, "isInternal": false, - "x": 231.75118861454047, - "y": 273.11199999999997 + "x": 231.75119, + "y": 273.112 }, { "body": null, "index": 2, "isInternal": false, - "x": 202.65118861454044, - "y": 273.11199999999997 + "x": 202.65119, + "y": 273.112 }, { "body": null, "index": 3, "isInternal": false, - "x": 182.07518861454045, + "x": 182.07519, "y": 252.536 }, { "body": null, "index": 4, "isInternal": false, - "x": 182.07518861454045, - "y": 223.43599999999998 + "x": 182.07519, + "y": 223.436 }, { "body": null, "index": 5, "isInternal": false, - "x": 202.65118861454044, - "y": 202.85999999999999 + "x": 202.65119, + "y": 202.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 231.75118861454047, - "y": 202.85999999999999 + "x": 231.75119, + "y": 202.86 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.32718861454046, - "y": 223.43599999999998 + "x": 252.32719, + "y": 223.436 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1965.14242904257, + "area": 1965.14243, "axes": { "#": 943 }, @@ -8390,13 +8390,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8452,12 +8452,12 @@ } }, { - "x": 341.831475308642, - "y": 224.81584705075446 + "x": 341.83148, + "y": 224.81585 }, { - "x": 252.32718861454046, - "y": 202.85999999999999 + "x": 252.32719, + "y": 202.86 }, { "category": 1, @@ -8474,16 +8474,16 @@ "y": 0 }, { - "x": 297.0793319615912, - "y": 213.83792352537722 + "x": 297.07933, + "y": 213.83792 }, { "x": 0, "y": 0 }, { - "x": 297.0793319615912, - "y": 213.83792352537722 + "x": 297.07933, + "y": 213.83792 }, { "fillStyle": "#4ECDC4", @@ -8520,36 +8520,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.32718861454046, - "y": 202.85999999999999 + "x": 252.32719, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 341.831475308642, - "y": 202.85999999999999 + "x": 341.83148, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 341.831475308642, - "y": 224.81584705075446 + "x": 341.83148, + "y": 224.81585 }, { "body": null, "index": 3, "isInternal": false, - "x": 252.32718861454046, - "y": 224.81584705075446 + "x": 252.32719, + "y": 224.81585 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2297.860096, + "area": 2297.8601, "axes": { "#": 964 }, @@ -8570,13 +8570,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 3520.107347192753, - "inverseInertia": 0.00028408224561602904, - "inverseMass": 0.43518750412209606, + "inertia": 3520.10735, + "inverseInertia": 0.00028, + "inverseMass": 0.43519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.297860096, + "mass": 2.29786, "motion": 0, "parent": null, "position": { @@ -8632,12 +8632,12 @@ } }, { - "x": 389.767475308642, - "y": 250.79599999999996 + "x": 389.76748, + "y": 250.796 }, { - "x": 341.831475308642, - "y": 202.85999999999999 + "x": 341.83148, + "y": 202.86 }, { "category": 1, @@ -8654,16 +8654,16 @@ "y": 0 }, { - "x": 365.799475308642, - "y": 226.82799999999997 + "x": 365.79948, + "y": 226.828 }, { "x": 0, "y": 0 }, { - "x": 365.799475308642, - "y": 226.82799999999997 + "x": 365.79948, + "y": 226.828 }, { "fillStyle": "#4ECDC4", @@ -8700,36 +8700,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.767475308642, - "y": 250.79599999999996 + "x": 389.76748, + "y": 250.796 }, { "body": null, "index": 1, "isInternal": false, - "x": 341.831475308642, - "y": 250.79599999999996 + "x": 341.83148, + "y": 250.796 }, { "body": null, "index": 2, "isInternal": false, - "x": 341.831475308642, - "y": 202.85999999999999 + "x": 341.83148, + "y": 202.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.767475308642, - "y": 202.85999999999999 + "x": 389.76748, + "y": 202.86 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 942.0065703840771, + "area": 942.00657, "axes": { "#": 985 }, @@ -8750,13 +8750,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -8812,12 +8812,12 @@ } }, { - "x": 410.8274032921811, - "y": 247.58980967078188 + "x": 410.8274, + "y": 247.58981 }, { - "x": 389.767475308642, - "y": 202.85999999999999 + "x": 389.76748, + "y": 202.86 }, { "category": 1, @@ -8834,16 +8834,16 @@ "y": 0 }, { - "x": 400.29743930041155, - "y": 225.22490483539093 + "x": 400.29744, + "y": 225.2249 }, { "x": 0, "y": 0 }, { - "x": 400.29743930041155, - "y": 225.22490483539093 + "x": 400.29744, + "y": 225.2249 }, { "fillStyle": "#4ECDC4", @@ -8880,36 +8880,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.767475308642, - "y": 202.85999999999999 + "x": 389.76748, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 410.8274032921811, - "y": 202.85999999999999 + "x": 410.8274, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 410.8274032921811, - "y": 247.58980967078188 + "x": 410.8274, + "y": 247.58981 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.767475308642, - "y": 247.58980967078188 + "x": 389.76748, + "y": 247.58981 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2898.415585731765, + "area": 2898.41559, "axes": { "#": 1006 }, @@ -8930,13 +8930,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -8992,12 +8992,12 @@ } }, { - "x": 523.0233909465021, - "y": 228.69350480109736 + "x": 523.02339, + "y": 228.6935 }, { - "x": 410.8274032921811, - "y": 202.85999999999999 + "x": 410.8274, + "y": 202.86 }, { "category": 1, @@ -9014,16 +9014,16 @@ "y": 0 }, { - "x": 466.9253971193416, - "y": 215.77675240054867 + "x": 466.9254, + "y": 215.77675 }, { "x": 0, "y": 0 }, { - "x": 466.9253971193416, - "y": 215.77675240054867 + "x": 466.9254, + "y": 215.77675 }, { "fillStyle": "#C44D58", @@ -9060,36 +9060,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 410.8274032921811, - "y": 202.85999999999999 + "x": 410.8274, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 523.0233909465021, - "y": 202.85999999999999 + "x": 523.02339, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 523.0233909465021, - "y": 228.69350480109736 + "x": 523.02339, + "y": 228.6935 }, { "body": null, "index": 3, "isInternal": false, - "x": 410.8274032921811, - "y": 228.69350480109736 + "x": 410.8274, + "y": 228.6935 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1297.1522559999999, + "area": 1297.15226, "axes": { "#": 1027 }, @@ -9110,13 +9110,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1121.7359834972597, - "inverseInertia": 0.0008914753691704523, - "inverseMass": 0.7709195241919234, + "inertia": 1121.73598, + "inverseInertia": 0.00089, + "inverseMass": 0.77092, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.297152256, + "mass": 1.29715, "motion": 0, "parent": null, "position": { @@ -9172,12 +9172,12 @@ } }, { - "x": 559.0393909465022, + "x": 559.03939, "y": 238.876 }, { - "x": 523.0233909465021, - "y": 202.85999999999999 + "x": 523.02339, + "y": 202.86 }, { "category": 1, @@ -9194,7 +9194,7 @@ "y": 0 }, { - "x": 541.0313909465021, + "x": 541.03139, "y": 220.868 }, { @@ -9202,7 +9202,7 @@ "y": 0 }, { - "x": 541.0313909465021, + "x": 541.03139, "y": 220.868 }, { @@ -9240,43 +9240,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 559.0393909465022, + "x": 559.03939, "y": 238.876 }, { "body": null, "index": 1, "isInternal": false, - "x": 523.0233909465021, + "x": 523.02339, "y": 238.876 }, { "body": null, "index": 2, "isInternal": false, - "x": 523.0233909465021, - "y": 202.85999999999999 + "x": 523.02339, + "y": 202.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 559.0393909465022, - "y": 202.85999999999999 + "x": 559.03939, + "y": 202.86 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6661.542482000001, + "area": 6661.54248, "axes": { "#": 1048 }, "bounds": { "#": 1062 }, - "circleRadius": 46.273148148148145, + "circleRadius": 46.27315, "collisionFilter": { "#": 1065 }, @@ -9291,13 +9291,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 28251.272419191544, - "inverseInertia": 0.00003539663577491412, - "inverseMass": 0.15011538284144801, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "inverseMass": 0.15012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.661542482000001, + "mass": 6.66154, "motion": 0, "parent": null, "position": { @@ -9370,52 +9370,52 @@ } ], { - "x": -0.9709335210486909, - "y": -0.23934932150309357 + "x": -0.97093, + "y": -0.23935 }, { - "x": -0.8854504735162902, - "y": -0.46473375060326466 + "x": -0.88545, + "y": -0.46473 }, { - "x": -0.7485309706272006, - "y": -0.6630998311053178 + "x": -0.74853, + "y": -0.6631 }, { - "x": -0.5680534091439667, - "y": -0.822991691549749 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35463801958119895, - "y": -0.9350036764994698 + "x": -0.35464, + "y": -0.935 }, { - "x": -0.12048128629971751, - "y": -0.992715598573713 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12048128629971751, - "y": -0.992715598573713 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.35463801958119895, - "y": -0.9350036764994698 + "x": 0.35464, + "y": -0.935 }, { - "x": 0.5680534091439667, - "y": -0.822991691549749 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.7485309706272006, - "y": -0.6630998311053178 + "x": 0.74853, + "y": -0.6631 }, { - "x": 0.8854504735162902, - "y": -0.46473375060326466 + "x": 0.88545, + "y": -0.46473 }, { - "x": 0.9709335210486909, - "y": -0.23934932150309357 + "x": 0.97093, + "y": -0.23935 }, { "x": 1, @@ -9430,12 +9430,12 @@ } }, { - "x": 650.9113909465023, - "y": 295.40599999999995 + "x": 650.91139, + "y": 295.406 }, { - "x": 559.0393909465022, - "y": 202.85999999999999 + "x": 559.03939, + "y": 202.86 }, { "category": 1, @@ -9452,16 +9452,16 @@ "y": 0 }, { - "x": 604.9753909465022, - "y": 249.13299999999998 + "x": 604.97539, + "y": 249.133 }, { "x": 0, "y": 0 }, { - "x": 604.9753909465022, - "y": 249.13299999999998 + "x": 604.97539, + "y": 249.133 }, { "fillStyle": "#FF6B6B", @@ -9564,190 +9564,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 650.9113909465023, - "y": 254.71099999999998 + "x": 650.91139, + "y": 254.711 }, { "body": null, "index": 1, "isInternal": false, - "x": 648.2413909465022, + "x": 648.24139, "y": 265.542 }, { "body": null, "index": 2, "isInternal": false, - "x": 643.0573909465022, + "x": 643.05739, "y": 275.419 }, { "body": null, "index": 3, "isInternal": false, - "x": 635.6603909465022, + "x": 635.66039, "y": 283.769 }, { "body": null, "index": 4, "isInternal": false, - "x": 626.4793909465022, + "x": 626.47939, "y": 290.106 }, { "body": null, "index": 5, "isInternal": false, - "x": 616.0493909465022, + "x": 616.04939, "y": 294.062 }, { "body": null, "index": 6, "isInternal": false, - "x": 604.9753909465022, - "y": 295.40599999999995 + "x": 604.97539, + "y": 295.406 }, { "body": null, "index": 7, "isInternal": false, - "x": 593.9013909465023, + "x": 593.90139, "y": 294.062 }, { "body": null, "index": 8, "isInternal": false, - "x": 583.4713909465022, + "x": 583.47139, "y": 290.106 }, { "body": null, "index": 9, "isInternal": false, - "x": 574.2903909465023, + "x": 574.29039, "y": 283.769 }, { "body": null, "index": 10, "isInternal": false, - "x": 566.8933909465022, + "x": 566.89339, "y": 275.419 }, { "body": null, "index": 11, "isInternal": false, - "x": 561.7093909465023, + "x": 561.70939, "y": 265.542 }, { "body": null, "index": 12, "isInternal": false, - "x": 559.0393909465022, - "y": 254.71099999999998 + "x": 559.03939, + "y": 254.711 }, { "body": null, "index": 13, "isInternal": false, - "x": 559.0393909465022, - "y": 243.55499999999998 + "x": 559.03939, + "y": 243.555 }, { "body": null, "index": 14, "isInternal": false, - "x": 561.7093909465023, + "x": 561.70939, "y": 232.724 }, { "body": null, "index": 15, "isInternal": false, - "x": 566.8933909465022, - "y": 222.84699999999998 + "x": 566.89339, + "y": 222.847 }, { "body": null, "index": 16, "isInternal": false, - "x": 574.2903909465023, - "y": 214.49699999999999 + "x": 574.29039, + "y": 214.497 }, { "body": null, "index": 17, "isInternal": false, - "x": 583.4713909465022, + "x": 583.47139, "y": 208.16 }, { "body": null, "index": 18, "isInternal": false, - "x": 593.9013909465023, - "y": 204.20399999999998 + "x": 593.90139, + "y": 204.204 }, { "body": null, "index": 19, "isInternal": false, - "x": 604.9753909465022, - "y": 202.85999999999999 + "x": 604.97539, + "y": 202.86 }, { "body": null, "index": 20, "isInternal": false, - "x": 616.0493909465022, - "y": 204.20399999999998 + "x": 616.04939, + "y": 204.204 }, { "body": null, "index": 21, "isInternal": false, - "x": 626.4793909465022, + "x": 626.47939, "y": 208.16 }, { "body": null, "index": 22, "isInternal": false, - "x": 635.6603909465022, - "y": 214.49699999999999 + "x": 635.66039, + "y": 214.497 }, { "body": null, "index": 23, "isInternal": false, - "x": 643.0573909465022, - "y": 222.84699999999998 + "x": 643.05739, + "y": 222.847 }, { "body": null, "index": 24, "isInternal": false, - "x": 648.2413909465022, + "x": 648.24139, "y": 232.724 }, { "body": null, "index": 25, "isInternal": false, - "x": 650.9113909465023, - "y": 243.55499999999998 + "x": 650.91139, + "y": 243.555 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1051.3111283901928, + "area": 1051.31113, "axes": { "#": 1102 }, @@ -9768,13 +9768,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -9830,12 +9830,12 @@ } }, { - "x": 680.4597448559673, - "y": 238.43934670781894 + "x": 680.45974, + "y": 238.43935 }, { - "x": 650.9113909465023, - "y": 202.85999999999999 + "x": 650.91139, + "y": 202.86 }, { "category": 1, @@ -9852,16 +9852,16 @@ "y": 0 }, { - "x": 665.6855679012348, - "y": 220.64967335390946 + "x": 665.68557, + "y": 220.64967 }, { "x": 0, "y": 0 }, { - "x": 665.6855679012348, - "y": 220.64967335390946 + "x": 665.68557, + "y": 220.64967 }, { "fillStyle": "#4ECDC4", @@ -9898,36 +9898,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 650.9113909465023, - "y": 202.85999999999999 + "x": 650.91139, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 680.4597448559673, - "y": 202.85999999999999 + "x": 680.45974, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 680.4597448559673, - "y": 238.43934670781894 + "x": 680.45974, + "y": 238.43935 }, { "body": null, "index": 3, "isInternal": false, - "x": 650.9113909465023, - "y": 238.43934670781894 + "x": 650.91139, + "y": 238.43935 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 6245.524001, + "area": 6245.524, "axes": { "#": 1123 }, @@ -9948,13 +9948,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 24931.28629116745, - "inverseInertia": 0.00004011024494770155, - "inverseMass": 0.16011466769479796, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "inverseMass": 0.16011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.245524001, + "mass": 6.24552, "motion": 0, "parent": null, "position": { @@ -10009,28 +10009,28 @@ } ], { - "x": 0.6235088590146987, - "y": 0.7818162845133048 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22254054198130854, - "y": 0.9749234365706189 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009716362849914, - "y": 0.4338779904649981 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009716362849914, - "y": -0.4338779904649981 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22254054198130854, - "y": -0.9749234365706189 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.6235088590146987, - "y": -0.7818162845133048 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -10045,12 +10045,12 @@ } }, { - "x": 768.9112071911729, + "x": 768.91121, "y": 296.014 }, { - "x": 678.0942071911729, - "y": 202.85999999999999 + "x": 678.09421, + "y": 202.86 }, { "category": 1, @@ -10067,16 +10067,16 @@ "y": 0 }, { - "x": 725.8682448559673, - "y": 249.43699999999998 + "x": 725.86824, + "y": 249.437 }, { "x": 0, "y": 0 }, { - "x": 725.8682448559673, - "y": 249.43699999999998 + "x": 725.86824, + "y": 249.437 }, { "fillStyle": "#556270", @@ -10122,57 +10122,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 768.9112071911729, - "y": 270.16499999999996 + "x": 768.91121, + "y": 270.165 }, { "body": null, "index": 1, "isInternal": false, - "x": 736.4992071911729, + "x": 736.49921, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 696.0812071911729, + "x": 696.08121, "y": 286.788 }, { "body": null, "index": 3, "isInternal": false, - "x": 678.0942071911729, - "y": 249.43699999999998 + "x": 678.09421, + "y": 249.437 }, { "body": null, "index": 4, "isInternal": false, - "x": 696.0812071911729, - "y": 212.08599999999998 + "x": 696.08121, + "y": 212.086 }, { "body": null, "index": 5, "isInternal": false, - "x": 736.4992071911729, - "y": 202.85999999999999 + "x": 736.49921, + "y": 202.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 768.9112071911729, - "y": 228.70899999999997 + "x": 768.91121, + "y": 228.709 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1694.1455999999998, + "area": 1694.1456, "axes": { "#": 1152 }, @@ -10193,13 +10193,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1913.4195426662397, - "inverseInertia": 0.0005226245356554463, - "inverseMass": 0.590268038355145, + "inertia": 1913.41954, + "inverseInertia": 0.00052, + "inverseMass": 0.59027, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.6941456, + "mass": 1.69415, "motion": 0, "parent": null, "position": { @@ -10255,12 +10255,12 @@ } }, { - "x": 810.071207191173, + "x": 810.07121, "y": 244.02 }, { - "x": 768.9112071911729, - "y": 202.85999999999999 + "x": 768.91121, + "y": 202.86 }, { "category": 1, @@ -10277,7 +10277,7 @@ "y": 0 }, { - "x": 789.491207191173, + "x": 789.49121, "y": 223.44 }, { @@ -10285,7 +10285,7 @@ "y": 0 }, { - "x": 789.491207191173, + "x": 789.49121, "y": 223.44 }, { @@ -10323,36 +10323,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 810.071207191173, + "x": 810.07121, "y": 244.02 }, { "body": null, "index": 1, "isInternal": false, - "x": 768.9112071911729, + "x": 768.91121, "y": 244.02 }, { "body": null, "index": 2, "isInternal": false, - "x": 768.9112071911729, - "y": 202.85999999999999 + "x": 768.91121, + "y": 202.86 }, { "body": null, "index": 3, "isInternal": false, - "x": 810.071207191173, - "y": 202.85999999999999 + "x": 810.07121, + "y": 202.86 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4695.386625, + "area": 4695.38663, "axes": { "#": 1173 }, @@ -10373,13 +10373,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -10434,28 +10434,28 @@ } ], { - "x": 0.6235000959518373, - "y": 0.7818232730918474 + "x": 0.6235, + "y": 0.78182 }, { - "x": -0.2225264190381346, - "y": 0.9749266602314579 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009718651359478, - "y": 0.43387751524301366 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009718651359478, - "y": -0.43387751524301366 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.2225264190381346, - "y": -0.9749266602314579 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235000959518373, - "y": -0.7818232730918474 + "x": 0.6235, + "y": -0.78182 }, { "x": 1, @@ -10470,12 +10470,12 @@ } }, { - "x": 886.7640821588376, + "x": 886.76408, "y": 283.63 }, { - "x": 808.0200821588376, - "y": 202.85999999999999 + "x": 808.02008, + "y": 202.86 }, { "category": 1, @@ -10492,16 +10492,16 @@ "y": 0 }, { - "x": 849.4432071911731, - "y": 243.24499999999998 + "x": 849.44321, + "y": 243.245 }, { "x": 0, "y": 0 }, { - "x": 849.4432071911731, - "y": 243.24499999999998 + "x": 849.44321, + "y": 243.245 }, { "fillStyle": "#4ECDC4", @@ -10547,49 +10547,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 886.7640821588376, - "y": 261.21799999999996 + "x": 886.76408, + "y": 261.218 }, { "body": null, "index": 1, "isInternal": false, - "x": 858.6610821588375, + "x": 858.66108, "y": 283.63 }, { "body": null, "index": 2, "isInternal": false, - "x": 823.6160821588376, + "x": 823.61608, "y": 275.631 }, { "body": null, "index": 3, "isInternal": false, - "x": 808.0200821588376, - "y": 243.24499999999998 + "x": 808.02008, + "y": 243.245 }, { "body": null, "index": 4, "isInternal": false, - "x": 823.6160821588376, - "y": 210.85899999999998 + "x": 823.61608, + "y": 210.859 }, { "body": null, "index": 5, "isInternal": false, - "x": 858.6610821588375, - "y": 202.85999999999999 + "x": 858.66108, + "y": 202.86 }, { "body": null, "index": 6, "isInternal": false, - "x": 886.7640821588376, + "x": 886.76408, "y": 225.272 }, { @@ -10597,7 +10597,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2533.681298803042, + "area": 2533.6813, "axes": { "#": 1202 }, @@ -10618,13 +10618,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 9087.287047208478, - "inverseInertia": 0.00011004384419739331, - "inverseMass": 0.3946826305551604, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "inverseMass": 0.39468, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.533681298803042, + "mass": 2.53368, "motion": 0, "parent": null, "position": { @@ -10680,12 +10680,12 @@ } }, { - "x": 987.3911397720063, - "y": 228.03892661179694 + "x": 987.39114, + "y": 228.03893 }, { - "x": 886.7640821588376, - "y": 202.85999999999999 + "x": 886.76408, + "y": 202.86 }, { "category": 1, @@ -10702,16 +10702,16 @@ "y": 0 }, { - "x": 937.077610965422, - "y": 215.44946330589846 + "x": 937.07761, + "y": 215.44946 }, { "x": 0, "y": 0 }, { - "x": 937.077610965422, - "y": 215.44946330589846 + "x": 937.07761, + "y": 215.44946 }, { "fillStyle": "#556270", @@ -10748,36 +10748,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 886.7640821588376, - "y": 202.85999999999999 + "x": 886.76408, + "y": 202.86 }, { "body": null, "index": 1, "isInternal": false, - "x": 987.3911397720063, - "y": 202.85999999999999 + "x": 987.39114, + "y": 202.86 }, { "body": null, "index": 2, "isInternal": false, - "x": 987.3911397720063, - "y": 228.03892661179694 + "x": 987.39114, + "y": 228.03893 }, { "body": null, "index": 3, "isInternal": false, - "x": 886.7640821588376, - "y": 228.03892661179694 + "x": 886.76408, + "y": 228.03893 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2082.1047164947227, + "area": 2082.10472, "axes": { "#": 1223 }, @@ -10798,13 +10798,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2917.86500075833, - "inverseInertia": 0.0003427163353136995, - "inverseMass": 0.4802832403566742, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "inverseMass": 0.48028, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.082104716494723, + "mass": 2.0821, "motion": 0, "parent": null, "position": { @@ -10860,8 +10860,8 @@ } }, { - "x": 62.57741769547325, - "y": 344.91562037037033 + "x": 62.57742, + "y": 344.91562 }, { "x": 20, @@ -10882,16 +10882,16 @@ "y": 0 }, { - "x": 41.28870884773663, - "y": 320.4648101851852 + "x": 41.28871, + "y": 320.46481 }, { "x": 0, "y": 0 }, { - "x": 41.28870884773663, - "y": 320.4648101851852 + "x": 41.28871, + "y": 320.46481 }, { "fillStyle": "#FF6B6B", @@ -10935,29 +10935,29 @@ "body": null, "index": 1, "isInternal": false, - "x": 62.57741769547325, + "x": 62.57742, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 62.57741769547325, - "y": 344.91562037037033 + "x": 62.57742, + "y": 344.91562 }, { "body": null, "index": 3, "isInternal": false, "x": 20, - "y": 344.91562037037033 + "y": 344.91562 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2570.1808866424026, + "area": 2570.18089, "axes": { "#": 1244 }, @@ -10978,13 +10978,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 7426.992944977438, - "inverseInertia": 0.00013464399487227974, - "inverseMass": 0.38907767355875333, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "inverseMass": 0.38908, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5701808866424027, + "mass": 2.57018, "motion": 0, "parent": null, "position": { @@ -11040,11 +11040,11 @@ } }, { - "x": 151.03540809327845, - "y": 325.0693840877915 + "x": 151.03541, + "y": 325.06938 }, { - "x": 62.577417695473244, + "x": 62.57742, "y": 296.014 }, { @@ -11062,16 +11062,16 @@ "y": 0 }, { - "x": 106.80641289437585, - "y": 310.54169204389575 + "x": 106.80641, + "y": 310.54169 }, { "x": 0, "y": 0 }, { - "x": 106.80641289437585, - "y": 310.54169204389575 + "x": 106.80641, + "y": 310.54169 }, { "fillStyle": "#FF6B6B", @@ -11108,36 +11108,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 62.577417695473244, + "x": 62.57742, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 151.03540809327845, + "x": 151.03541, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 151.03540809327845, - "y": 325.0693840877915 + "x": 151.03541, + "y": 325.06938 }, { "body": null, "index": 3, "isInternal": false, - "x": 62.577417695473244, - "y": 325.0693840877915 + "x": 62.57742, + "y": 325.06938 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2248.277056, + "area": 2248.27706, "axes": { "#": 1265 }, @@ -11158,13 +11158,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 3369.8331470240178, - "inverseInertia": 0.00029675059754312303, - "inverseMass": 0.44478503987366225, + "inertia": 3369.83315, + "inverseInertia": 0.0003, + "inverseMass": 0.44479, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.248277056, + "mass": 2.24828, "motion": 0, "parent": null, "position": { @@ -11220,11 +11220,11 @@ } }, { - "x": 198.45140809327845, - "y": 343.42999999999995 + "x": 198.45141, + "y": 343.43 }, { - "x": 151.03540809327845, + "x": 151.03541, "y": 296.014 }, { @@ -11242,7 +11242,7 @@ "y": 0 }, { - "x": 174.74340809327845, + "x": 174.74341, "y": 319.722 }, { @@ -11250,7 +11250,7 @@ "y": 0 }, { - "x": 174.74340809327845, + "x": 174.74341, "y": 319.722 }, { @@ -11288,28 +11288,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 198.45140809327845, - "y": 343.42999999999995 + "x": 198.45141, + "y": 343.43 }, { "body": null, "index": 1, "isInternal": false, - "x": 151.03540809327845, - "y": 343.42999999999995 + "x": 151.03541, + "y": 343.43 }, { "body": null, "index": 2, "isInternal": false, - "x": 151.03540809327845, + "x": 151.03541, "y": 296.014 }, { "body": null, "index": 3, "isInternal": false, - "x": 198.45140809327845, + "x": 198.45141, "y": 296.014 }, { @@ -11317,7 +11317,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 4167.4330549999995, + "area": 4167.43305, "axes": { "#": 1286 }, @@ -11338,13 +11338,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 11100.542061550868, - "inverseInertia": 0.00009008569081177725, - "inverseMass": 0.23995586415004816, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "inverseMass": 0.23996, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.167433054999999, + "mass": 4.16743, "motion": 0, "parent": null, "position": { @@ -11399,28 +11399,28 @@ } ], { - "x": 0.6235095584460711, - "y": 0.7818157267069941 + "x": 0.62351, + "y": 0.78182 }, { - "x": -0.22252973145772786, - "y": 0.974925904167774 + "x": -0.22253, + "y": 0.97493 }, { - "x": -0.9009725986708983, - "y": 0.43387599201178284 + "x": -0.90097, + "y": 0.43388 }, { - "x": -0.9009725986708983, - "y": -0.43387599201178284 + "x": -0.90097, + "y": -0.43388 }, { - "x": -0.22252973145772786, - "y": -0.974925904167774 + "x": -0.22253, + "y": -0.97493 }, { - "x": 0.6235095584460711, - "y": -0.7818157267069941 + "x": 0.62351, + "y": -0.78182 }, { "x": 1, @@ -11435,11 +11435,11 @@ } }, { - "x": 270.7041179511755, - "y": 372.10800000000006 + "x": 270.70412, + "y": 372.108 }, { - "x": 196.5191179511755, + "x": 196.51912, "y": 296.014 }, { @@ -11457,16 +11457,16 @@ "y": 0 }, { - "x": 235.54390809327845, - "y": 334.06100000000004 + "x": 235.54391, + "y": 334.061 }, { "x": 0, "y": 0 }, { - "x": 235.54390809327845, - "y": 334.06100000000004 + "x": 235.54391, + "y": 334.061 }, { "fillStyle": "#FF6B6B", @@ -11512,49 +11512,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 270.7041179511755, - "y": 350.99300000000005 + "x": 270.70412, + "y": 350.993 }, { "body": null, "index": 1, "isInternal": false, - "x": 244.2281179511755, - "y": 372.10800000000006 + "x": 244.22812, + "y": 372.108 }, { "body": null, "index": 2, "isInternal": false, - "x": 211.2121179511755, - "y": 364.57200000000006 + "x": 211.21212, + "y": 364.572 }, { "body": null, "index": 3, "isInternal": false, - "x": 196.5191179511755, - "y": 334.06100000000004 + "x": 196.51912, + "y": 334.061 }, { "body": null, "index": 4, "isInternal": false, - "x": 211.2121179511755, + "x": 211.21212, "y": 303.55 }, { "body": null, "index": 5, "isInternal": false, - "x": 244.2281179511755, + "x": 244.22812, "y": 296.014 }, { "body": null, "index": 6, "isInternal": false, - "x": 270.7041179511755, + "x": 270.70412, "y": 317.129 }, { @@ -11562,7 +11562,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1687.7661798887366, + "area": 1687.76618, "axes": { "#": 1315 }, @@ -11583,13 +11583,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1980.3012000583947, - "inverseInertia": 0.0005049736878261308, - "inverseMass": 0.5924991340127004, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "inverseMass": 0.5925, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6877661798887367, + "mass": 1.68777, "motion": 0, "parent": null, "position": { @@ -11645,11 +11645,11 @@ } }, { - "x": 306.2144060170191, - "y": 343.54293518518523 + "x": 306.21441, + "y": 343.54294 }, { - "x": 270.7041179511755, + "x": 270.70412, "y": 296.014 }, { @@ -11667,16 +11667,16 @@ "y": 0 }, { - "x": 288.4592619840973, - "y": 319.7784675925926 + "x": 288.45926, + "y": 319.77847 }, { "x": 0, "y": 0 }, { - "x": 288.4592619840973, - "y": 319.7784675925926 + "x": 288.45926, + "y": 319.77847 }, { "fillStyle": "#556270", @@ -11713,36 +11713,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 270.7041179511755, + "x": 270.70412, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.2144060170191, + "x": 306.21441, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 306.2144060170191, - "y": 343.54293518518523 + "x": 306.21441, + "y": 343.54294 }, { "body": null, "index": 3, "isInternal": false, - "x": 270.7041179511755, - "y": 343.54293518518523 + "x": 270.70412, + "y": 343.54294 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 888.874596, + "area": 888.8746, "axes": { "#": 1336 }, @@ -11763,13 +11763,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 526.7320316094421, - "inverseInertia": 0.0018984985533241191, - "inverseMass": 1.125018089728374, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "inverseMass": 1.12502, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.888874596, + "mass": 0.88887, "motion": 0, "parent": null, "position": { @@ -11825,11 +11825,11 @@ } }, { - "x": 336.02840601701905, + "x": 336.02841, "y": 325.828 }, { - "x": 306.2144060170191, + "x": 306.21441, "y": 296.014 }, { @@ -11847,7 +11847,7 @@ "y": 0 }, { - "x": 321.12140601701907, + "x": 321.12141, "y": 310.921 }, { @@ -11855,7 +11855,7 @@ "y": 0 }, { - "x": 321.12140601701907, + "x": 321.12141, "y": 310.921 }, { @@ -11893,28 +11893,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.02840601701905, + "x": 336.02841, "y": 325.828 }, { "body": null, "index": 1, "isInternal": false, - "x": 306.2144060170191, + "x": 306.21441, "y": 325.828 }, { "body": null, "index": 2, "isInternal": false, - "x": 306.2144060170191, + "x": 306.21441, "y": 296.014 }, { "body": null, "index": 3, "isInternal": false, - "x": 336.02840601701905, + "x": 336.02841, "y": 296.014 }, { @@ -11922,7 +11922,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1624.121534624581, + "area": 1624.12153, "axes": { "#": 1357 }, @@ -11943,13 +11943,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1766.6812602831346, - "inverseInertia": 0.0005660330601116675, - "inverseMass": 0.6157174686013581, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "inverseMass": 0.61572, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.624121534624581, + "mass": 1.62412, "motion": 0, "parent": null, "position": { @@ -12005,11 +12005,11 @@ } }, { - "x": 378.3176292680479, - "y": 334.4190925925926 + "x": 378.31763, + "y": 334.41909 }, { - "x": 336.02840601701905, + "x": 336.02841, "y": 296.014 }, { @@ -12027,16 +12027,16 @@ "y": 0 }, { - "x": 357.17301764253347, - "y": 315.2165462962963 + "x": 357.17302, + "y": 315.21655 }, { "x": 0, "y": 0 }, { - "x": 357.17301764253347, - "y": 315.2165462962963 + "x": 357.17302, + "y": 315.21655 }, { "fillStyle": "#C7F464", @@ -12073,36 +12073,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 336.02840601701905, + "x": 336.02841, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 378.3176292680479, + "x": 378.31763, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 378.3176292680479, - "y": 334.4190925925926 + "x": 378.31763, + "y": 334.41909 }, { "body": null, "index": 3, "isInternal": false, - "x": 336.02840601701905, - "y": 334.4190925925926 + "x": 336.02841, + "y": 334.41909 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 925.4335858447538, + "area": 925.43359, "axes": { "#": 1378 }, @@ -12123,13 +12123,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 658.9066011822378, - "inverseInertia": 0.001517665778739746, - "inverseMass": 1.080574570985751, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "inverseMass": 1.08057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9254335858447538, + "mass": 0.92543, "motion": 0, "parent": null, "position": { @@ -12185,11 +12185,11 @@ } }, { - "x": 418.33126095529065, - "y": 319.14195781893005 + "x": 418.33126, + "y": 319.14196 }, { - "x": 378.3176292680479, + "x": 378.31763, "y": 296.014 }, { @@ -12207,16 +12207,16 @@ "y": 0 }, { - "x": 398.32444511166926, - "y": 307.57797890946506 + "x": 398.32445, + "y": 307.57798 }, { "x": 0, "y": 0 }, { - "x": 398.32444511166926, - "y": 307.57797890946506 + "x": 398.32445, + "y": 307.57798 }, { "fillStyle": "#C44D58", @@ -12253,36 +12253,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 378.3176292680479, + "x": 378.31763, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 418.33126095529065, + "x": 418.33126, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 418.33126095529065, - "y": 319.14195781893005 + "x": 418.33126, + "y": 319.14196 }, { "body": null, "index": 3, "isInternal": false, - "x": 378.3176292680479, - "y": 319.14195781893005 + "x": 378.31763, + "y": 319.14196 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5929.347511999999, + "area": 5929.34751, "axes": { "#": 1399 }, @@ -12304,13 +12304,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 22382.17146584697, - "inverseInertia": 0.00004467841744157413, - "inverseMass": 0.1686526212161066, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "inverseMass": 0.16865, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.929347512, + "mass": 5.92935, "motion": 0, "parent": null, "position": { @@ -12383,52 +12383,52 @@ } ], { - "x": -0.9709364586220396, - "y": -0.23933740476259086 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.885455576089853, - "y": -0.4647240286141727 + "x": -0.88546, + "y": -0.46472 }, { - "x": -0.7484830648246673, - "y": -0.6631539049652597 + "x": -0.74848, + "y": -0.66315 }, { - "x": -0.5681125845628812, - "y": -0.8229508437697133 + "x": -0.56811, + "y": -0.82295 }, { - "x": -0.3546198602355774, - "y": -0.9350105639651882 + "x": -0.35462, + "y": -0.93501 }, { - "x": -0.12047891877198527, - "y": -0.9927158859067047 + "x": -0.12048, + "y": -0.99272 }, { - "x": 0.12047891877198527, - "y": -0.9927158859067047 + "x": 0.12048, + "y": -0.99272 }, { - "x": 0.3546198602355774, - "y": -0.9350105639651882 + "x": 0.35462, + "y": -0.93501 }, { - "x": 0.5681125845628812, - "y": -0.8229508437697133 + "x": 0.56811, + "y": -0.82295 }, { - "x": 0.7484830648246673, - "y": -0.6631539049652597 + "x": 0.74848, + "y": -0.66315 }, { - "x": 0.885455576089853, - "y": -0.4647240286141727 + "x": 0.88546, + "y": -0.46472 }, { - "x": 0.9709364586220396, - "y": -0.23933740476259086 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -12443,11 +12443,11 @@ } }, { - "x": 505.0072609552907, + "x": 505.00726, "y": 383.326 }, { - "x": 418.33126095529065, + "x": 418.33126, "y": 296.014 }, { @@ -12465,7 +12465,7 @@ "y": 0 }, { - "x": 461.66926095529067, + "x": 461.66926, "y": 339.67 }, { @@ -12473,7 +12473,7 @@ "y": 0 }, { - "x": 461.66926095529067, + "x": 461.66926, "y": 339.67 }, { @@ -12577,182 +12577,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.0072609552907, + "x": 505.00726, "y": 344.932 }, { "body": null, "index": 1, "isInternal": false, - "x": 502.4882609552907, + "x": 502.48826, "y": 355.151 }, { "body": null, "index": 2, "isInternal": false, - "x": 497.59726095529066, + "x": 497.59726, "y": 364.47 }, { "body": null, "index": 3, "isInternal": false, - "x": 490.6182609552907, - "y": 372.34700000000004 + "x": 490.61826, + "y": 372.347 }, { "body": null, "index": 4, "isInternal": false, - "x": 481.9572609552907, + "x": 481.95726, "y": 378.326 }, { "body": null, "index": 5, "isInternal": false, - "x": 472.11726095529065, + "x": 472.11726, "y": 382.058 }, { "body": null, "index": 6, "isInternal": false, - "x": 461.66926095529067, + "x": 461.66926, "y": 383.326 }, { "body": null, "index": 7, "isInternal": false, - "x": 451.2212609552907, + "x": 451.22126, "y": 382.058 }, { "body": null, "index": 8, "isInternal": false, - "x": 441.38126095529066, + "x": 441.38126, "y": 378.326 }, { "body": null, "index": 9, "isInternal": false, - "x": 432.72026095529066, - "y": 372.34700000000004 + "x": 432.72026, + "y": 372.347 }, { "body": null, "index": 10, "isInternal": false, - "x": 425.74126095529067, + "x": 425.74126, "y": 364.47 }, { "body": null, "index": 11, "isInternal": false, - "x": 420.85026095529065, + "x": 420.85026, "y": 355.151 }, { "body": null, "index": 12, "isInternal": false, - "x": 418.33126095529065, + "x": 418.33126, "y": 344.932 }, { "body": null, "index": 13, "isInternal": false, - "x": 418.33126095529065, + "x": 418.33126, "y": 334.408 }, { "body": null, "index": 14, "isInternal": false, - "x": 420.85026095529065, + "x": 420.85026, "y": 324.189 }, { "body": null, "index": 15, "isInternal": false, - "x": 425.74126095529067, + "x": 425.74126, "y": 314.87 }, { "body": null, "index": 16, "isInternal": false, - "x": 432.72026095529066, + "x": 432.72026, "y": 306.993 }, { "body": null, "index": 17, "isInternal": false, - "x": 441.38126095529066, + "x": 441.38126, "y": 301.014 }, { "body": null, "index": 18, "isInternal": false, - "x": 451.2212609552907, - "y": 297.28200000000004 + "x": 451.22126, + "y": 297.282 }, { "body": null, "index": 19, "isInternal": false, - "x": 461.66926095529067, + "x": 461.66926, "y": 296.014 }, { "body": null, "index": 20, "isInternal": false, - "x": 472.11726095529065, - "y": 297.28200000000004 + "x": 472.11726, + "y": 297.282 }, { "body": null, "index": 21, "isInternal": false, - "x": 481.9572609552907, + "x": 481.95726, "y": 301.014 }, { "body": null, "index": 22, "isInternal": false, - "x": 490.6182609552907, + "x": 490.61826, "y": 306.993 }, { "body": null, "index": 23, "isInternal": false, - "x": 497.59726095529066, + "x": 497.59726, "y": 314.87 }, { "body": null, "index": 24, "isInternal": false, - "x": 502.4882609552907, + "x": 502.48826, "y": 324.189 }, { "body": null, "index": 25, "isInternal": false, - "x": 505.0072609552907, + "x": 505.00726, "y": 334.408 }, { @@ -12760,7 +12760,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 2550.166396822507, + "area": 2550.1664, "axes": { "#": 1453 }, @@ -12781,13 +12781,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 10939.165130883785, - "inverseInertia": 0.00009141465441240754, - "inverseMass": 0.392131274745834, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "inverseMass": 0.39213, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5501663968225072, + "mass": 2.55017, "motion": 0, "parent": null, "position": { @@ -12843,11 +12843,11 @@ } }, { - "x": 616.1010538222316, - "y": 318.9690754458162 + "x": 616.10105, + "y": 318.96908 }, { - "x": 505.00726095529063, + "x": 505.00726, "y": 296.014 }, { @@ -12865,16 +12865,16 @@ "y": 0 }, { - "x": 560.5541573887612, - "y": 307.4915377229081 + "x": 560.55416, + "y": 307.49154 }, { "x": 0, "y": 0 }, { - "x": 560.5541573887612, - "y": 307.4915377229081 + "x": 560.55416, + "y": 307.49154 }, { "fillStyle": "#FF6B6B", @@ -12911,43 +12911,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.00726095529063, + "x": 505.00726, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.1010538222316, + "x": 616.10105, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.1010538222316, - "y": 318.9690754458162 + "x": 616.10105, + "y": 318.96908 }, { "body": null, "index": 3, "isInternal": false, - "x": 505.00726095529063, - "y": 318.9690754458162 + "x": 505.00726, + "y": 318.96908 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 5174.381305999998, + "area": 5174.38131, "axes": { "#": 1474 }, "bounds": { "#": 1488 }, - "circleRadius": 40.782407407407405, + "circleRadius": 40.78241, "collisionFilter": { "#": 1491 }, @@ -12962,13 +12962,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17045.3242729355, - "inverseInertia": 0.000058667115039154525, - "inverseMass": 0.1932598200369272, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "inverseMass": 0.19326, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.174381305999998, + "mass": 5.17438, "motion": 0, "parent": null, "position": { @@ -13041,52 +13041,52 @@ } ], { - "x": -0.9709389264723081, - "y": -0.23932739304309056 + "x": -0.97094, + "y": -0.23933 }, { - "x": -0.8854449940324717, - "y": -0.46474419043473386 + "x": -0.88544, + "y": -0.46474 }, { - "x": -0.748536249103088, - "y": -0.6630938725238529 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680775563568219, - "y": -0.8229750239002773 + "x": -0.56808, + "y": -0.82298 }, { - "x": -0.35456531449559353, - "y": -0.9350312496150279 + "x": -0.35457, + "y": -0.93503 }, { - "x": -0.12052880622175748, - "y": -0.9927098301471373 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12052880622175748, - "y": -0.9927098301471373 + "x": 0.12053, + "y": -0.99271 }, { - "x": 0.35456531449559353, - "y": -0.9350312496150279 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680775563568219, - "y": -0.8229750239002773 + "x": 0.56808, + "y": -0.82298 }, { - "x": 0.748536249103088, - "y": -0.6630938725238529 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854449940324717, - "y": -0.46474419043473386 + "x": 0.88544, + "y": -0.46474 }, { - "x": 0.9709389264723081, - "y": -0.23932739304309056 + "x": 0.97094, + "y": -0.23933 }, { "x": 1, @@ -13101,11 +13101,11 @@ } }, { - "x": 697.0710538222316, + "x": 697.07105, "y": 377.578 }, { - "x": 616.1010538222316, + "x": 616.10105, "y": 296.014 }, { @@ -13123,7 +13123,7 @@ "y": 0 }, { - "x": 656.5860538222316, + "x": 656.58605, "y": 336.796 }, { @@ -13131,7 +13131,7 @@ "y": 0 }, { - "x": 656.5860538222316, + "x": 656.58605, "y": 336.796 }, { @@ -13235,182 +13235,182 @@ "body": null, "index": 0, "isInternal": false, - "x": 697.0710538222316, + "x": 697.07105, "y": 341.712 }, { "body": null, "index": 1, "isInternal": false, - "x": 694.7180538222316, + "x": 694.71805, "y": 351.258 }, { "body": null, "index": 2, "isInternal": false, - "x": 690.1490538222316, - "y": 359.96299999999997 + "x": 690.14905, + "y": 359.963 }, { "body": null, "index": 3, "isInternal": false, - "x": 683.6300538222316, + "x": 683.63005, "y": 367.322 }, { "body": null, "index": 4, "isInternal": false, - "x": 675.5390538222316, + "x": 675.53905, "y": 372.907 }, { "body": null, "index": 5, "isInternal": false, - "x": 666.3460538222316, + "x": 666.34605, "y": 376.393 }, { "body": null, "index": 6, "isInternal": false, - "x": 656.5860538222316, + "x": 656.58605, "y": 377.578 }, { "body": null, "index": 7, "isInternal": false, - "x": 646.8260538222316, + "x": 646.82605, "y": 376.393 }, { "body": null, "index": 8, "isInternal": false, - "x": 637.6330538222317, + "x": 637.63305, "y": 372.907 }, { "body": null, "index": 9, "isInternal": false, - "x": 629.5420538222317, + "x": 629.54205, "y": 367.322 }, { "body": null, "index": 10, "isInternal": false, - "x": 623.0230538222316, - "y": 359.96299999999997 + "x": 623.02305, + "y": 359.963 }, { "body": null, "index": 11, "isInternal": false, - "x": 618.4540538222317, + "x": 618.45405, "y": 351.258 }, { "body": null, "index": 12, "isInternal": false, - "x": 616.1010538222316, + "x": 616.10105, "y": 341.712 }, { "body": null, "index": 13, "isInternal": false, - "x": 616.1010538222316, + "x": 616.10105, "y": 331.88 }, { "body": null, "index": 14, "isInternal": false, - "x": 618.4540538222317, + "x": 618.45405, "y": 322.334 }, { "body": null, "index": 15, "isInternal": false, - "x": 623.0230538222316, - "y": 313.62899999999996 + "x": 623.02305, + "y": 313.629 }, { "body": null, "index": 16, "isInternal": false, - "x": 629.5420538222317, + "x": 629.54205, "y": 306.27 }, { "body": null, "index": 17, "isInternal": false, - "x": 637.6330538222317, + "x": 637.63305, "y": 300.685 }, { "body": null, "index": 18, "isInternal": false, - "x": 646.8260538222316, + "x": 646.82605, "y": 297.199 }, { "body": null, "index": 19, "isInternal": false, - "x": 656.5860538222316, + "x": 656.58605, "y": 296.014 }, { "body": null, "index": 20, "isInternal": false, - "x": 666.3460538222316, + "x": 666.34605, "y": 297.199 }, { "body": null, "index": 21, "isInternal": false, - "x": 675.5390538222316, + "x": 675.53905, "y": 300.685 }, { "body": null, "index": 22, "isInternal": false, - "x": 683.6300538222316, + "x": 683.63005, "y": 306.27 }, { "body": null, "index": 23, "isInternal": false, - "x": 690.1490538222316, - "y": 313.62899999999996 + "x": 690.14905, + "y": 313.629 }, { "body": null, "index": 24, "isInternal": false, - "x": 694.7180538222316, + "x": 694.71805, "y": 322.334 }, { "body": null, "index": 25, "isInternal": false, - "x": 697.0710538222316, + "x": 697.07105, "y": 331.88 }, { @@ -13418,7 +13418,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1308.2034644955884, + "area": 1308.20346, "axes": { "#": 1528 }, @@ -13439,13 +13439,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1149.8579054087725, - "inverseInertia": 0.0008696726745940854, - "inverseMass": 0.7644070873834413, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "inverseMass": 0.76441, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3082034644955884, + "mass": 1.3082, "motion": 0, "parent": null, "position": { @@ -13501,11 +13501,11 @@ } }, { - "x": 735.5731114354004, - "y": 329.99149485596706 + "x": 735.57311, + "y": 329.99149 }, { - "x": 697.0710538222316, + "x": 697.07105, "y": 296.014 }, { @@ -13523,16 +13523,16 @@ "y": 0 }, { - "x": 716.322082628816, - "y": 313.00274742798354 + "x": 716.32208, + "y": 313.00275 }, { "x": 0, "y": 0 }, { - "x": 716.322082628816, - "y": 313.00274742798354 + "x": 716.32208, + "y": 313.00275 }, { "fillStyle": "#FF6B6B", @@ -13569,36 +13569,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 697.0710538222316, + "x": 697.07105, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 735.5731114354004, + "x": 735.57311, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 735.5731114354004, - "y": 329.99149485596706 + "x": 735.57311, + "y": 329.99149 }, { "body": null, "index": 3, "isInternal": false, - "x": 697.0710538222316, - "y": 329.99149485596706 + "x": 697.07105, + "y": 329.99149 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3803.7767479999993, + "area": 3803.77675, "axes": { "#": 1549 }, @@ -13619,13 +13619,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 9247.768748441516, - "inverseInertia": 0.00010813419184692798, - "inverseMass": 0.2628966067805618, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "inverseMass": 0.2629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.8037767479999993, + "mass": 3.80378, "motion": 0, "parent": null, "position": { @@ -13680,28 +13680,28 @@ } ], { - "x": 0.623488113338336, - "y": 0.7818328290151305 + "x": 0.62349, + "y": 0.78183 }, { - "x": -0.22254280104331042, - "y": 0.9749229209039029 + "x": -0.22254, + "y": 0.97492 }, { - "x": -0.9009618424321717, - "y": 0.43389832735472317 + "x": -0.90096, + "y": 0.4339 }, { - "x": -0.9009618424321717, - "y": -0.43389832735472317 + "x": -0.90096, + "y": -0.4339 }, { - "x": -0.22254280104331042, - "y": -0.9749229209039029 + "x": -0.22254, + "y": -0.97492 }, { - "x": 0.623488113338336, - "y": -0.7818328290151305 + "x": 0.62349, + "y": -0.78183 }, { "x": 1, @@ -13716,11 +13716,11 @@ } }, { - "x": 804.6017507639486, + "x": 804.60175, "y": 368.712 }, { - "x": 733.7267507639486, + "x": 733.72675, "y": 296.014 }, { @@ -13738,7 +13738,7 @@ "y": 0 }, { - "x": 771.0106114354004, + "x": 771.01061, "y": 332.363 }, { @@ -13746,7 +13746,7 @@ "y": 0 }, { - "x": 771.0106114354004, + "x": 771.01061, "y": 332.363 }, { @@ -13793,49 +13793,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 804.6017507639486, + "x": 804.60175, "y": 348.54 }, { "body": null, "index": 1, "isInternal": false, - "x": 779.3067507639487, + "x": 779.30675, "y": 368.712 }, { "body": null, "index": 2, "isInternal": false, - "x": 747.7647507639487, + "x": 747.76475, "y": 361.512 }, { "body": null, "index": 3, "isInternal": false, - "x": 733.7267507639486, + "x": 733.72675, "y": 332.363 }, { "body": null, "index": 4, "isInternal": false, - "x": 747.7647507639487, + "x": 747.76475, "y": 303.214 }, { "body": null, "index": 5, "isInternal": false, - "x": 779.3067507639487, + "x": 779.30675, "y": 296.014 }, { "body": null, "index": 6, "isInternal": false, - "x": 804.6017507639486, + "x": 804.60175, "y": 316.186 }, { @@ -13843,7 +13843,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1519.5385669833, + "area": 1519.53857, "axes": { "#": 1578 }, @@ -13864,13 +13864,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1623.6987742797708, - "inverseInertia": 0.0006158777821604092, - "inverseMass": 0.6580945174595165, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "inverseMass": 0.65809, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5195385669833, + "mass": 1.51954, "motion": 0, "parent": null, "position": { @@ -13926,11 +13926,11 @@ } }, { - "x": 837.6605213400803, - "y": 341.97876337448565 + "x": 837.66052, + "y": 341.97876 }, { - "x": 804.6017507639486, + "x": 804.60175, "y": 296.014 }, { @@ -13948,16 +13948,16 @@ "y": 0 }, { - "x": 821.1311360520144, - "y": 318.99638168724283 + "x": 821.13114, + "y": 318.99638 }, { "x": 0, "y": 0 }, { - "x": 821.1311360520144, - "y": 318.99638168724283 + "x": 821.13114, + "y": 318.99638 }, { "fillStyle": "#556270", @@ -13994,36 +13994,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 804.6017507639486, + "x": 804.60175, "y": 296.014 }, { "body": null, "index": 1, "isInternal": false, - "x": 837.6605213400803, + "x": 837.66052, "y": 296.014 }, { "body": null, "index": 2, "isInternal": false, - "x": 837.6605213400803, - "y": 341.97876337448565 + "x": 837.66052, + "y": 341.97876 }, { "body": null, "index": 3, "isInternal": false, - "x": 804.6017507639486, - "y": 341.97876337448565 + "x": 804.60175, + "y": 341.97876 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 3306.4800040000005, + "area": 3306.48, "axes": { "#": 1599 }, @@ -14044,13 +14044,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 7288.540011234562, - "inverseInertia": 0.00013720168901571494, - "inverseMass": 0.302436427496992, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "inverseMass": 0.30244, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.3064800040000004, + "mass": 3.30648, "motion": 0, "parent": null, "position": { @@ -14106,11 +14106,11 @@ } }, { - "x": 895.1625213400803, - "y": 353.51599999999996 + "x": 895.16252, + "y": 353.516 }, { - "x": 837.6605213400803, + "x": 837.66052, "y": 296.014 }, { @@ -14128,7 +14128,7 @@ "y": 0 }, { - "x": 866.4115213400803, + "x": 866.41152, "y": 324.765 }, { @@ -14136,7 +14136,7 @@ "y": 0 }, { - "x": 866.4115213400803, + "x": 866.41152, "y": 324.765 }, { @@ -14174,28 +14174,28 @@ "body": null, "index": 0, "isInternal": false, - "x": 895.1625213400803, - "y": 353.51599999999996 + "x": 895.16252, + "y": 353.516 }, { "body": null, "index": 1, "isInternal": false, - "x": 837.6605213400803, - "y": 353.51599999999996 + "x": 837.66052, + "y": 353.516 }, { "body": null, "index": 2, "isInternal": false, - "x": 837.6605213400803, + "x": 837.66052, "y": 296.014 }, { "body": null, "index": 3, "isInternal": false, - "x": 895.1625213400803, + "x": 895.16252, "y": 296.014 }, [], diff --git a/test/browser/refs/views/views-10.json b/test/browser/refs/views/views-10.json index 45606b4d..3c87de05 100644 --- a/test/browser/refs/views/views-10.json +++ b/test/browser/refs/views/views-10.json @@ -1075,11 +1075,11 @@ } ], { - "angle": 0.07445967011819259, - "anglePrev": 0.05835635109961011, - "angularSpeed": 0.013964360576911297, - "angularVelocity": 0.01599753454302246, - "area": 1534.906434764454, + "angle": 0.07446, + "anglePrev": 0.05836, + "angularSpeed": 0.01396, + "angularVelocity": 0.016, + "area": 1534.90643, "axes": { "#": 97 }, @@ -1100,13 +1100,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1587.6055011053381, - "inverseInertia": 0.0006298793997021113, - "inverseMass": 0.6515055102713538, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "inverseMass": 0.65151, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5349064347644539, + "mass": 1.53491, "motion": 0, "parent": null, "position": { @@ -1128,7 +1128,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2087669783591408, + "speed": 1.20877, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1149,12 +1149,12 @@ } ], { - "x": -0.07439088544462749, - "y": 0.9972291593022962 + "x": -0.07439, + "y": 0.99723 }, { - "x": -0.9972291593022962, - "y": -0.07439088544462749 + "x": -0.99723, + "y": -0.07439 }, { "max": { @@ -1165,12 +1165,12 @@ } }, { - "x": 59.86821653554023, - "y": 73.82205705894815 + "x": 59.86822, + "y": 73.82206 }, { - "x": 20.140906681524932, - "y": 27.892868010098887 + "x": 20.14091, + "y": 27.89287 }, { "category": 1, @@ -1187,16 +1187,16 @@ "y": 0 }, { - "x": 39.86036695556168, - "y": 50.27053212634254 + "x": 39.86037, + "y": 50.27053 }, { "x": 0, "y": 0 }, { - "x": 39.555883779613346, - "y": 49.32462403724448 + "x": 39.55588, + "y": 49.32462 }, { "endCol": 1, @@ -1219,8 +1219,8 @@ "yScale": 1 }, { - "x": 0.3112337967524468, - "y": 0.9340047986645743 + "x": 0.31123, + "y": 0.934 }, [ { @@ -1240,36 +1240,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 23.27753101652481, - "y": 27.892868010098887 + "x": 23.27753, + "y": 27.89287 }, { "body": null, "index": 1, "isInternal": false, - "x": 59.57982722959841, - "y": 30.600931581819083 + "x": 59.57983, + "y": 30.60093 }, { "body": null, "index": 2, "isInternal": false, - "x": 56.443202894598514, - "y": 72.64819624258622 + "x": 56.4432, + "y": 72.6482 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.140906681524932, - "y": 69.94013267086602 + "x": 20.14091, + "y": 69.94013 }, { - "angle": 0.06898784932673126, - "anglePrev": 0.05334525777426746, - "angularSpeed": 0.01353673657723852, - "angularVelocity": 0.01567281611548263, - "area": 2220.52878634164, + "angle": 0.06899, + "anglePrev": 0.05335, + "angularSpeed": 0.01354, + "angularVelocity": 0.01567, + "area": 2220.52879, "axes": { "#": 119 }, @@ -1290,13 +1290,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 3297.2181257907896, - "inverseInertia": 0.00030328597073333284, - "inverseMass": 0.45034318228655684, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "inverseMass": 0.45034, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.22052878634164, + "mass": 2.22053, "motion": 0, "parent": null, "position": { @@ -1318,7 +1318,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9959156495863588, + "speed": 1.99592, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1339,12 +1339,12 @@ } ], { - "x": -0.06893313976696294, - "y": 0.9976212819712039 + "x": -0.06893, + "y": 0.99762 }, { - "x": -0.9976212819712039, - "y": -0.06893313976696294 + "x": -0.99762, + "y": -0.06893 }, { "max": { @@ -1355,12 +1355,12 @@ } }, { - "x": 104.67078844758146, - "y": 86.19859353077695 + "x": 104.67079, + "y": 86.19859 }, { - "x": 55.92234308112925, - "y": 32.2009505936972 + "x": 55.92234, + "y": 32.20095 }, { "category": 1, @@ -1377,16 +1377,16 @@ "y": 0 }, { - "x": 80.21526990087655, - "y": 58.20513102012832 + "x": 80.21527, + "y": 58.20513 }, { - "x": 0.04507970940676982, - "y": 0.00551995514406558 + "x": 0.04508, + "y": 0.00552 }, { - "x": 80.05164459286439, - "y": 56.34211550750092 + "x": 80.05164, + "y": 56.34212 }, { "endCol": 2, @@ -1409,8 +1409,8 @@ "yScale": 1 }, { - "x": 0.16634553563514487, - "y": 1.862301479488373 + "x": 0.16635, + "y": 1.8623 }, [ { @@ -1430,36 +1430,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 59.30014671343701, - "y": 32.2009505936972 + "x": 59.30015, + "y": 32.20095 }, { "body": null, "index": 1, "isInternal": false, - "x": 104.50819672062384, - "y": 35.32471397570894 + "x": 104.5082, + "y": 35.32471 }, { "body": null, "index": 2, "isInternal": false, - "x": 101.1303930883161, - "y": 84.20931144655945 + "x": 101.13039, + "y": 84.20931 }, { "body": null, "index": 3, "isInternal": false, - "x": 55.92234308112925, - "y": 81.08554806454774 + "x": 55.92234, + "y": 81.08555 }, { - "angle": 0.04185054699428338, - "anglePrev": 0.03346385267264878, - "angularSpeed": 0.00902763701597345, - "angularVelocity": 0.0086644407328091, - "area": 1140.197701571206, + "angle": 0.04185, + "anglePrev": 0.03346, + "angularSpeed": 0.00903, + "angularVelocity": 0.00866, + "area": 1140.1977, "axes": { "#": 141 }, @@ -1480,13 +1480,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 905.8524982789938, - "inverseInertia": 0.0011039324855866431, - "inverseMass": 0.8770408838940722, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "inverseMass": 0.87704, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.140197701571206, + "mass": 1.1402, "motion": 0, "parent": null, "position": { @@ -1508,7 +1508,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.5018674977003648, + "speed": 2.50187, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1529,12 +1529,12 @@ } ], { - "x": -0.04183833141313979, - "y": 0.9991243936690586 + "x": -0.04184, + "y": 0.99912 }, { - "x": -0.9991243936690586, - "y": -0.04183833141313979 + "x": -0.99912, + "y": -0.04184 }, { "max": { @@ -1545,12 +1545,12 @@ } }, { - "x": 143.79435411121392, - "y": 68.55680090177142 + "x": 143.79435, + "y": 68.5568 }, { - "x": 103.06389701762347, - "y": 35.38976452116489 + "x": 103.0639, + "y": 35.38976 }, { "category": 1, @@ -1567,16 +1567,16 @@ "y": 0 }, { - "x": 123.26527601892072, - "y": 50.73312603973169 + "x": 123.26528, + "y": 50.73313 }, { - "x": 0.012478893434547157, - "y": 0.02553052864631064 + "x": 0.01248, + "y": 0.02553 }, { - "x": 122.88515380533971, - "y": 48.334110623004975 + "x": 122.88515, + "y": 48.33411 }, { "endCol": 2, @@ -1599,8 +1599,8 @@ "yScale": 1 }, { - "x": 0.3878075627132773, - "y": 2.4047255791483195 + "x": 0.38781, + "y": 2.40473 }, [ { @@ -1620,36 +1620,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 104.28018939449996, - "y": 35.38976452116489 + "x": 104.28019, + "y": 35.38976 }, { "body": null, "index": 1, "isInternal": false, - "x": 143.4666550202179, - "y": 37.03069766837564 + "x": 143.46666, + "y": 37.0307 }, { "body": null, "index": 2, "isInternal": false, - "x": 142.25036264334142, - "y": 66.0764875582985 + "x": 142.25036, + "y": 66.07649 }, { "body": null, "index": 3, "isInternal": false, - "x": 103.06389701762347, - "y": 64.43555441108775 + "x": 103.0639, + "y": 64.43555 }, { - "angle": 0.03280565133427562, - "anglePrev": 0.01903907162932177, - "angularSpeed": 0.011965226105519299, - "angularVelocity": 0.01361328392156047, - "area": 752.4076041785743, + "angle": 0.03281, + "anglePrev": 0.01904, + "angularSpeed": 0.01197, + "angularVelocity": 0.01361, + "area": 752.4076, "axes": { "#": 163 }, @@ -1670,13 +1670,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 384.6368682420571, - "inverseInertia": 0.002599854778795377, - "inverseMass": 1.3290668441498934, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "inverseMass": 1.32907, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.7524076041785743, + "mass": 0.75241, "motion": 0, "parent": null, "position": { @@ -1698,7 +1698,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.818300919673157, + "speed": 2.8183, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1719,12 +1719,12 @@ } ], { - "x": -0.03279976735174861, - "y": 0.9994619428781024 + "x": -0.0328, + "y": 0.99946 }, { - "x": -0.9994619428781024, - "y": -0.03279976735174861 + "x": -0.99946, + "y": -0.0328 }, { "max": { @@ -1735,12 +1735,12 @@ } }, { - "x": 168.37393860282344, - "y": 70.78690526126698 + "x": 168.37394, + "y": 70.78691 }, { - "x": 142.2478992789022, - "y": 36.93715201952571 + "x": 142.2479, + "y": 36.93715 }, { "category": 1, @@ -1757,16 +1757,16 @@ "y": 0 }, { - "x": 155.17587398871984, - "y": 52.45936407630472 + "x": 155.17587, + "y": 52.45936 }, { "x": 0, "y": 0 }, { - "x": 154.89400363993232, - "y": 49.7374391703069 + "x": 154.894, + "y": 49.73744 }, { "endCol": 3, @@ -1789,8 +1789,8 @@ "yScale": 1 }, { - "x": 0.2702239786980556, - "y": 2.713271731797356 + "x": 0.27022, + "y": 2.71327 }, [ { @@ -1810,36 +1810,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 143.23991930013247, - "y": 36.93715201952571 + "x": 143.23992, + "y": 36.93715 }, { "body": null, "index": 1, "isInternal": false, - "x": 168.1038486985375, - "y": 37.75312215778784 + "x": 168.10385, + "y": 37.75312 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.11182867730722, - "y": 67.98157613308373 + "x": 167.11183, + "y": 67.98158 }, { "body": null, "index": 3, "isInternal": false, - "x": 142.2478992789022, - "y": 67.16560599482159 + "x": 142.2479, + "y": 67.16561 }, { - "angle": 0.014263491998978941, - "anglePrev": 0.009496150569933883, - "angularSpeed": 0.004596865390569766, - "angularVelocity": 0.004978462539297299, - "area": 2027.2541820000001, + "angle": 0.01426, + "anglePrev": 0.0095, + "angularSpeed": 0.0046, + "angularVelocity": 0.00498, + "area": 2027.25418, "axes": { "#": 185 }, @@ -1860,13 +1860,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 2636.411960994776, - "inverseInertia": 0.00037930339218407964, - "inverseMass": 0.49327805505545624, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "inverseMass": 0.49328, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.027254182, + "mass": 2.02725, "motion": 0, "parent": null, "position": { @@ -1888,7 +1888,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9118860967597024, + "speed": 2.91189, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1912,16 +1912,16 @@ } ], { - "x": -0.48760566337162187, - "y": -0.8730639822188984 + "x": -0.48761, + "y": -0.87306 }, { - "x": 0.5123097771744258, - "y": -0.8588007290469023 + "x": 0.51231, + "y": -0.8588 }, { - "x": 0.999898278122601, - "y": 0.0142630083593043 + "x": 0.9999, + "y": 0.01426 }, { "max": { @@ -1932,12 +1932,12 @@ } }, { - "x": 216.06929914926823, - "y": 94.4127882912804 + "x": 216.0693, + "y": 94.41279 }, { - "x": 167.06946023728378, - "y": 35.647239760864295 + "x": 167.06946, + "y": 35.64724 }, { "category": 1, @@ -1954,16 +1954,16 @@ "y": 0 }, { - "x": 191.457210921102, - "y": 63.57839826194102 + "x": 191.45721, + "y": 63.5784 }, { "x": 0, "y": 0 }, { - "x": 191.20922307866473, - "y": 60.66983934574698 + "x": 191.20922, + "y": 60.66984 }, { "endCol": 4, @@ -1986,8 +1986,8 @@ "yScale": 1 }, { - "x": 0.24582640799965816, - "y": 2.895824456909885 + "x": 0.24583, + "y": 2.89582 }, [ { @@ -2013,49 +2013,49 @@ "body": null, "index": 0, "isInternal": false, - "x": 215.4465387294114, - "y": 77.88901394769934 + "x": 215.44654, + "y": 77.88901 }, { "body": null, "index": 1, "isInternal": false, - "x": 191.05878804559316, - "y": 91.50955676301774 + "x": 191.05879, + "y": 91.50956 }, { "body": null, "index": 2, "isInternal": false, - "x": 167.06946023728378, - "y": 77.19894107725946 + "x": 167.06946, + "y": 77.19894 }, { "body": null, "index": 3, "isInternal": false, - "x": 167.46788311279258, - "y": 49.267782576182725 + "x": 167.46788, + "y": 49.26778 }, { "body": null, "index": 4, "isInternal": false, - "x": 191.85563379661082, - "y": 35.647239760864295 + "x": 191.85563, + "y": 35.64724 }, { "body": null, "index": 5, "isInternal": false, - "x": 215.8449616049202, - "y": 49.957855446622574 + "x": 215.84496, + "y": 49.95786 }, { - "angle": -0.003945049221952362, - "anglePrev": -0.0034570638351636785, - "angularSpeed": 0.0008240257332086331, - "angularVelocity": -0.0005382718157323518, + "angle": -0.00395, + "anglePrev": -0.00346, + "angularSpeed": 0.00082, + "angularVelocity": -0.00054, "area": 4842.27229, "axes": { "#": 210 @@ -2077,13 +2077,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 15180.565500975656, - "inverseInertia": 0.00006587369883788124, - "inverseMass": 0.20651461547611563, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "inverseMass": 0.20651, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.84227229, + "mass": 4.84227, "motion": 0, "parent": null, "position": { @@ -2105,7 +2105,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.995501922552666, + "speed": 2.9955, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2135,24 +2135,24 @@ } ], { - "x": 0.31276955396675266, - "y": 0.9498290404654083 + "x": 0.31277, + "y": 0.94983 }, { - "x": -0.8066937133009743, - "y": 0.5909697563502601 + "x": -0.80669, + "y": 0.59097 }, { - "x": -0.8113313647914389, - "y": -0.5845865346598919 + "x": -0.81133, + "y": -0.58459 }, { - "x": 0.3052656516165043, - "y": -0.9522672324212103 + "x": 0.30527, + "y": -0.95227 }, { - "x": 0.9999922183034106, - "y": -0.0039450389888883615 + "x": 0.99999, + "y": -0.00395 }, { "max": { @@ -2163,12 +2163,12 @@ } }, { - "x": 291.9664134495021, - "y": 130.8147532298421 + "x": 291.96641, + "y": 130.81475 }, { - "x": 210.06402707288447, - "y": 41.98421552575341 + "x": 210.06403, + "y": 41.98422 }, { "category": 1, @@ -2185,16 +2185,16 @@ "y": 0 }, { - "x": 255.19206178265293, - "y": 84.8488664443037 + "x": 255.19206, + "y": 84.84887 }, { "x": 0, "y": 0 }, { - "x": 255.01273139404233, - "y": 81.86468676982692 + "x": 255.01273, + "y": 81.86469 }, { "endCol": 6, @@ -2217,8 +2217,8 @@ "yScale": 1 }, { - "x": 0.18065804113712147, - "y": 2.9914817407357503 + "x": 0.18066, + "y": 2.99148 }, [ { @@ -2241,50 +2241,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 291.8060378949577, - "y": 111.23062817586771 + "x": 291.80604, + "y": 111.23063 }, { "body": null, "index": 1, "isInternal": false, - "x": 241.41610548964275, - "y": 127.82354754491817 + "x": 241.41611, + "y": 127.82355 }, { "body": null, "index": 2, "isInternal": false, - "x": 210.06402707288447, - "y": 85.02689968612631 + "x": 210.06403, + "y": 85.0269 }, { "body": null, "index": 3, "isInternal": false, - "x": 241.0774633428366, - "y": 41.98421552575341 + "x": 241.07746, + "y": 41.98422 }, { "body": null, "index": 4, "isInternal": false, - "x": 291.59674568651917, - "y": 58.17904101043517 + "x": 291.59675, + "y": 58.17904 }, { - "angle": -0.0003528163697920424, - "anglePrev": -0.00022804792135504854, - "angularSpeed": 0.0001247684484369939, - "angularVelocity": -0.0001247684484369939, - "area": 3079.0178339999993, + "angle": -0.00035, + "anglePrev": -0.00023, + "angularSpeed": 0.00012, + "angularVelocity": -0.00012, + "area": 3079.01783, "axes": { "#": 236 }, "bounds": { "#": 250 }, - "circleRadius": 31.459233539094647, + "circleRadius": 31.45923, "collisionFilter": { "#": 253 }, @@ -2299,13 +2299,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 6035.493938702403, - "inverseInertia": 0.0001656865221233234, - "inverseMass": 0.3247788918133302, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "inverseMass": 0.32478, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 3.079017833999999, + "mass": 3.07902, "motion": 0, "parent": null, "position": { @@ -2327,7 +2327,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9303315130230945, + "speed": 2.93033, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2381,56 +2381,56 @@ } ], { - "x": -0.971028118297543, - "y": -0.23896525579157432 + "x": -0.97103, + "y": -0.23897 }, { - "x": -0.8855821844723922, - "y": -0.46448271716513384 + "x": -0.88558, + "y": -0.46448 }, { - "x": -0.7487697261741857, - "y": -0.6628302174501661 + "x": -0.74877, + "y": -0.66283 }, { - "x": -0.5683683545866954, - "y": -0.8227742178170219 + "x": -0.56837, + "y": -0.82277 }, { - "x": -0.3549046033263034, - "y": -0.9349025203398476 + "x": -0.3549, + "y": -0.9349 }, { - "x": -0.12086273506990822, - "y": -0.9926692295379269 + "x": -0.12086, + "y": -0.99267 }, { - "x": 0.12016224513025908, - "y": -0.9927542670999986 + "x": 0.12016, + "y": -0.99275 }, { - "x": 0.35424481719776385, - "y": -0.9351527198744185 + "x": 0.35424, + "y": -0.93515 }, { - "x": 0.567787636709211, - "y": -0.823175072266021 + "x": 0.56779, + "y": -0.82318 }, { - "x": 0.7483018250979903, - "y": -0.6633584088221212 + "x": 0.7483, + "y": -0.66336 }, { - "x": 0.885254209813936, - "y": -0.4651074972591857 + "x": 0.88525, + "y": -0.46511 }, { - "x": 0.9708592548574596, - "y": -0.23965038547354403 + "x": 0.97086, + "y": -0.23965 }, { - "x": 0.9999999377603049, - "y": -0.0003528163624723146 + "x": 1, + "y": -0.00035 }, { "max": { @@ -2441,12 +2441,12 @@ } }, { - "x": 353.39690439896094, - "y": 106.7717258057096 + "x": 353.3969, + "y": 106.77173 }, { - "x": 290.82416814690777, - "y": 40.92546596848775 + "x": 290.82417, + "y": 40.92547 }, { "category": 1, @@ -2463,16 +2463,16 @@ "y": 0 }, { - "x": 322.0555040828086, - "y": 72.3844640104892 + "x": 322.0555, + "y": 72.38446 }, { - "x": -0.033094734660577094, - "y": 0.15033754430226576 + "x": -0.03309, + "y": 0.15034 }, { - "x": 321.94543970255717, - "y": 69.45620025727023 + "x": 321.94544, + "y": 69.4562 }, { "endCol": 7, @@ -2495,8 +2495,8 @@ "yScale": 1 }, { - "x": 0.11006438025144348, - "y": 2.928263753218976 + "x": 0.11006, + "y": 2.92826 }, [ { @@ -2582,190 +2582,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 353.2868400187095, - "y": 76.16544531947626 + "x": 353.28684, + "y": 76.16545 }, { "body": null, "index": 1, "isInternal": false, - "x": 351.4744382713677, - "y": 83.53008522284104 + "x": 351.47444, + "y": 83.53009 }, { "body": null, "index": 2, "isInternal": false, - "x": 347.9518076526367, - "y": 90.24632848257919 + "x": 347.95181, + "y": 90.24633 }, { "body": null, "index": 3, "isInternal": false, - "x": 342.9248109041298, - "y": 95.92510244273133 + "x": 342.92481, + "y": 95.9251 }, { "body": null, "index": 4, "isInternal": false, - "x": 336.68533122545733, - "y": 100.23530410152088 + "x": 336.68533, + "y": 100.2353 }, { "body": null, "index": 5, "isInternal": false, - "x": 329.59528038999764, - "y": 102.92680575498466 + "x": 329.59528, + "y": 102.92681 }, { "body": null, "index": 6, "isInternal": false, - "x": 322.0666033327556, - "y": 103.84346205249062 + "x": 322.0666, + "y": 103.84346 }, { "body": null, "index": 7, "isInternal": false, - "x": 314.53728132720306, - "y": 102.93211846377075 + "x": 314.53728, + "y": 102.93212 }, { "body": null, "index": 8, "isInternal": false, - "x": 307.44533304534605, - "y": 100.24562045195957 + "x": 307.44533, + "y": 100.24562 }, { "body": null, "index": 9, "isInternal": false, - "x": 301.2028135008944, - "y": 95.9398226470064 + "x": 301.20281, + "y": 95.93982 }, { "body": null, "index": 10, "isInternal": false, - "x": 296.1718108754081, - "y": 90.26459731382799 + "x": 296.17181, + "y": 90.2646 }, { "body": null, "index": 11, "isInternal": false, - "x": 292.64444193292894, - "y": 83.55084140944527 + "x": 292.64444, + "y": 83.55084 }, { "body": null, "index": 12, "isInternal": false, - "x": 290.82684390620085, - "y": 76.18748222947629 + "x": 290.82684, + "y": 76.18748 }, { "body": null, "index": 13, "isInternal": false, - "x": 290.82416814690777, - "y": 68.60348270150212 + "x": 290.82417, + "y": 68.60348 }, { "body": null, "index": 14, "isInternal": false, - "x": 292.63656989424953, - "y": 61.23884279813735 + "x": 292.63657, + "y": 61.23884 }, { "body": null, "index": 15, "isInternal": false, - "x": 296.15920051298053, - "y": 54.52259953839919 + "x": 296.1592, + "y": 54.5226 }, { "body": null, "index": 16, "isInternal": false, - "x": 301.18619726148745, - "y": 48.843825578247056 + "x": 301.1862, + "y": 48.84383 }, { "body": null, "index": 17, "isInternal": false, - "x": 307.4256769401599, - "y": 44.53362391945747 + "x": 307.42568, + "y": 44.53362 }, { "body": null, "index": 18, "isInternal": false, - "x": 314.5157277756196, - "y": 41.842122265993716 + "x": 314.51573, + "y": 41.84212 }, { "body": null, "index": 19, "isInternal": false, - "x": 322.04440483286163, - "y": 40.92546596848775 + "x": 322.0444, + "y": 40.92547 }, { "body": null, "index": 20, "isInternal": false, - "x": 329.5737268384142, - "y": 41.83680955720761 + "x": 329.57373, + "y": 41.83681 }, { "body": null, "index": 21, "isInternal": false, - "x": 336.6656751202712, - "y": 44.52330756901878 + "x": 336.66568, + "y": 44.52331 }, { "body": null, "index": 22, "isInternal": false, - "x": 342.9081946647228, - "y": 48.82910537397199 + "x": 342.90819, + "y": 48.82911 }, { "body": null, "index": 23, "isInternal": false, - "x": 347.93919729020917, - "y": 54.50433070715038 + "x": 347.9392, + "y": 54.50433 }, { "body": null, "index": 24, "isInternal": false, - "x": 351.4665662326883, - "y": 61.21808661153311 + "x": 351.46657, + "y": 61.21809 }, { "body": null, "index": 25, "isInternal": false, - "x": 353.2841642594164, - "y": 68.5814457915021 + "x": 353.28416, + "y": 68.58145 }, { - "angle": 0.002014009142289523, - "anglePrev": 0.0016318587895234023, - "angularSpeed": 0.0003802943192530492, - "angularVelocity": 0.000350153020848678, - "area": 1329.4167625219097, + "angle": 0.00201, + "anglePrev": 0.00163, + "angularSpeed": 0.00038, + "angularVelocity": 0.00035, + "area": 1329.41676, "axes": { "#": 291 }, @@ -2786,13 +2786,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1383.5124568270019, - "inverseInertia": 0.0007227979734229763, - "inverseMass": 0.7522095615095113, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "inverseMass": 0.75221, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3294167625219098, + "mass": 1.32942, "motion": 0, "parent": null, "position": { @@ -2814,7 +2814,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.891019398798657, + "speed": 2.89102, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2835,12 +2835,12 @@ } ], { - "x": -0.0020140077807414667, - "y": 0.9999979718842729 + "x": -0.00201, + "y": 1 }, { - "x": -0.9999979718842729, - "y": -0.0020140077807414667 + "x": -1, + "y": -0.00201 }, { "max": { @@ -2851,12 +2851,12 @@ } }, { - "x": 401.4978365164123, - "y": 67.10808984780826 + "x": 401.49784, + "y": 67.10809 }, { - "x": 352.66459960159926, - "y": 36.86425763943551 + "x": 352.6646, + "y": 36.86426 }, { "category": 1, @@ -2873,16 +2873,16 @@ "y": 0 }, { - "x": 377.081615873226, - "y": 50.54066409896317 + "x": 377.08162, + "y": 50.54066 }, { - "x": 0.0026686088037196913, - "y": 0.0000047603913042024375 + "x": 0.00267, + "y": 0 }, { - "x": 377.0824479848197, - "y": 47.64954637237944 + "x": 377.08245, + "y": 47.64955 }, { "endCol": 8, @@ -2905,8 +2905,8 @@ "yScale": 1 }, { - "x": -0.0013420808641626536, - "y": 2.8900207943853573 + "x": -0.00134, + "y": 2.89002 }, [ { @@ -2926,36 +2926,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 352.72028626617504, - "y": 36.86425763943551 + "x": 352.72029, + "y": 36.86426 }, { "body": null, "index": 1, "isInternal": false, - "x": 401.4978365164123, - "y": 36.96249620440417 + "x": 401.49784, + "y": 36.9625 }, { "body": null, "index": 2, "isInternal": false, - "x": 401.44294548027693, - "y": 64.21707055849082 + "x": 401.44295, + "y": 64.21707 }, { "body": null, "index": 3, "isInternal": false, - "x": 352.6653952300397, - "y": 64.11883199352215 + "x": 352.6654, + "y": 64.11883 }, { - "angle": 0.0002397042586295687, - "anglePrev": 0.00012683434866586022, - "angularSpeed": 0.00007627594922206422, - "angularVelocity": 0.00010697599906221697, - "area": 2858.632357296012, + "angle": 0.00024, + "anglePrev": 0.00013, + "angularSpeed": 0.00008, + "angularVelocity": 0.00011, + "area": 2858.63236, "axes": { "#": 313 }, @@ -2976,13 +2976,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 11948.096005138343, - "inverseInertia": 0.00008369534355682652, - "inverseMass": 0.3498176313046084, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "inverseMass": 0.34982, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.858632357296012, + "mass": 2.85863, "motion": 0, "parent": null, "position": { @@ -3004,7 +3004,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.904423596344377, + "speed": 2.90442, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3025,12 +3025,12 @@ } ], { - "x": -0.00023970425633407553, - "y": 0.9999999712709342 + "x": -0.00024, + "y": 1 }, { - "x": -0.9999999712709342, - "y": -0.00023970425633407553 + "x": -1, + "y": -0.00024 }, { "max": { @@ -3041,12 +3041,12 @@ } }, { - "x": 510.3041740576686, - "y": 66.89341329274617 + "x": 510.30417, + "y": 66.89341 }, { - "x": 401.4401160311097, - "y": 37.7018824681489 + "x": 401.44012, + "y": 37.70188 }, { "category": 1, @@ -3063,16 +3063,16 @@ "y": 0 }, { - "x": 455.8705595742545, - "y": 50.845436947753896 + "x": 455.87056, + "y": 50.84544 }, { - "x": 0.0025353259596692253, - "y": -0.0000015795019659883575 + "x": 0.00254, + "y": 0 }, { - "x": 455.86737232947934, - "y": 47.93829866820848 + "x": 455.86737, + "y": 47.9383 }, { "endCol": 10, @@ -3095,8 +3095,8 @@ "yScale": 1 }, { - "x": 0.0034244077299945275, - "y": 2.9076484116189363 + "x": 0.00342, + "y": 2.90765 }, [ { @@ -3116,36 +3116,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 401.44641090861325, - "y": 37.7018824681489 + "x": 401.44641, + "y": 37.70188 }, { "body": null, "index": 1, "isInternal": false, - "x": 510.3010031173993, - "y": 37.72797537797247 + "x": 510.301, + "y": 37.72798 }, { "body": null, "index": 2, "isInternal": false, - "x": 510.2947082398958, - "y": 63.988991427358876 + "x": 510.29471, + "y": 63.98899 }, { "body": null, "index": 3, "isInternal": false, - "x": 401.4401160311097, - "y": 63.96289851753531 + "x": 401.44012, + "y": 63.9629 }, { - "angle": 0.0013197634636950648, - "anglePrev": 0.0006989811101104764, - "angularSpeed": 0.0003819785234120505, - "angularVelocity": -0.0005144863693162366, - "area": 926.8394636035856, + "angle": 0.00132, + "anglePrev": 0.0007, + "angularSpeed": 0.00038, + "angularVelocity": -0.00051, + "area": 926.83946, "axes": { "#": 335 }, @@ -3166,13 +3166,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 640.733963254663, - "inverseInertia": 0.001560710150154074, - "inverseMass": 1.0789354999105925, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "inverseMass": 1.07894, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9268394636035856, + "mass": 0.92684, "motion": 0, "parent": null, "position": { @@ -3194,7 +3194,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9159836565704227, + "speed": 2.91598, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3215,12 +3215,12 @@ } ], { - "x": -0.0013197630805731313, - "y": 0.9999991291123261 + "x": -0.00132, + "y": 1 }, { - "x": -0.9999991291123261, - "y": -0.0013197630805731313 + "x": -1, + "y": -0.00132 }, { "max": { @@ -3231,12 +3231,12 @@ } }, { - "x": 549.0456050999973, - "y": 64.64694069255583 + "x": 549.04561, + "y": 64.64694 }, { - "x": 510.24532538166636, - "y": 37.76499197131285 + "x": 510.24533, + "y": 37.76499 }, { "category": 1, @@ -3253,16 +3253,16 @@ "y": 0 }, { - "x": 529.6389830029966, - "y": 49.747988913748756 + "x": 529.63898, + "y": 49.74799 }, { "x": 0, "y": 0 }, { - "x": 529.6260164851954, - "y": 46.84055345303018 + "x": 529.62602, + "y": 46.84055 }, { "endCol": 11, @@ -3285,8 +3285,8 @@ "yScale": 1 }, { - "x": 0.012956809550018988, - "y": 2.94793641393742 + "x": 0.01296, + "y": 2.94794 }, [ { @@ -3306,36 +3306,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 510.2768873392268, - "y": 37.76499197131285 + "x": 510.27689, + "y": 37.76499 }, { "body": null, "index": 1, "isInternal": false, - "x": 549.0326406243266, - "y": 37.816140428202885 + "x": 549.03264, + "y": 37.81614 }, { "body": null, "index": 2, "isInternal": false, - "x": 549.0010786667663, - "y": 61.73098585618466 + "x": 549.00108, + "y": 61.73099 }, { "body": null, "index": 3, "isInternal": false, - "x": 510.24532538166636, - "y": 61.67983739929464 + "x": 510.24533, + "y": 61.67984 }, { - "angle": -0.0006428344899314241, - "anglePrev": -0.00047952066097481594, - "angularSpeed": 0.00016331382895660814, - "angularVelocity": -0.00016331382895660814, - "area": 1290.4501361223834, + "angle": -0.00064, + "anglePrev": -0.00048, + "angularSpeed": 0.00016, + "angularVelocity": -0.00016, + "area": 1290.45014, "axes": { "#": 357 }, @@ -3356,13 +3356,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1110.2145636383336, - "inverseInertia": 0.0009007267898944285, - "inverseMass": 0.7749233945643617, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "inverseMass": 0.77492, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.2904501361223835, + "mass": 1.29045, "motion": 0, "parent": null, "position": { @@ -3384,7 +3384,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8792453183859594, + "speed": 2.87925, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3405,12 +3405,12 @@ } ], { - "x": 0.0006428344456576799, - "y": 0.9999997933819162 + "x": 0.00064, + "y": 1 }, { - "x": -0.9999997933819162, - "y": 0.0006428344456576799 + "x": -1, + "y": 0.00064 }, { "max": { @@ -3421,12 +3421,12 @@ } }, { - "x": 584.8744863650361, - "y": 76.5886212369089 + "x": 584.87449, + "y": 76.58862 }, { - "x": 549.0753194704051, - "y": 37.61039146488355 + "x": 549.07532, + "y": 37.61039 }, { "category": 1, @@ -3443,16 +3443,16 @@ "y": 0 }, { - "x": 566.9720706887512, - "y": 55.65988647768632 + "x": 566.97207, + "y": 55.65989 }, { - "x": 0.0037272632879857847, + "x": 0.00373, "y": 0 }, { - "x": 566.9664062308123, - "y": 52.78064673126649 + "x": 566.96641, + "y": 52.78065 }, { "endCol": 12, @@ -3475,8 +3475,8 @@ "yScale": 1 }, { - "x": 0.005664457938929672, - "y": 2.879239746419829 + "x": 0.00566, + "y": 2.87924 }, [ { @@ -3496,36 +3496,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 549.0753194704051, - "y": 37.63338585802394 + "x": 549.07532, + "y": 37.63339 }, { "body": null, "index": 1, "isInternal": false, - "x": 584.8456310096516, - "y": 37.61039146488355 + "x": 584.84563, + "y": 37.61039 }, { "body": null, "index": 2, "isInternal": false, - "x": 584.8688219070972, - "y": 73.68638709734869 + "x": 584.86882, + "y": 73.68639 }, { "body": null, "index": 3, "isInternal": false, - "x": 549.0985103678507, - "y": 73.70938149048908 + "x": 549.09851, + "y": 73.70938 }, { - "angle": -0.0019137993573372758, - "anglePrev": -0.0013956296441222996, - "angularSpeed": 0.000939523336371687, - "angularVelocity": -0.0005368046761495494, - "area": 1148.2925932011974, + "angle": -0.00191, + "anglePrev": -0.0014, + "angularSpeed": 0.00094, + "angularVelocity": -0.00054, + "area": 1148.29259, "axes": { "#": 379 }, @@ -3546,13 +3546,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 897.9475703967067, - "inverseInertia": 0.001113650766445314, - "inverseMass": 0.8708581818961412, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "inverseMass": 0.87086, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.1482925932011974, + "mass": 1.14829, "motion": 0, "parent": null, "position": { @@ -3574,7 +3574,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.899966703635072, + "speed": 2.89997, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3595,12 +3595,12 @@ } ], { - "x": 0.0019137981890816435, - "y": 0.9999981686865689 + "x": 0.00191, + "y": 1 }, { - "x": -0.9999981686865689, - "y": 0.0019137981890816435 + "x": -1, + "y": 0.00191 }, { "max": { @@ -3611,12 +3611,12 @@ } }, { - "x": 615.5454431094741, - "y": 78.3159119685451 + "x": 615.54544, + "y": 78.31591 }, { - "x": 584.9180102696346, - "y": 37.776262505111596 + "x": 584.91801, + "y": 37.77626 }, { "category": 1, @@ -3633,16 +3633,16 @@ "y": 0 }, { - "x": 600.2320533228566, - "y": 56.59610392180066 + "x": 600.23205, + "y": 56.5961 }, { "x": 0, "y": 0 }, { - "x": 600.2326651983644, - "y": 53.6745096086202 + "x": 600.23267, + "y": 53.67451 }, { "endCol": 12, @@ -3665,8 +3665,8 @@ "yScale": 1 }, { - "x": -0.0006137060879609635, - "y": 2.9206377981506932 + "x": -0.00061, + "y": 2.92064 }, [ { @@ -3686,36 +3686,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 584.918663536239, - "y": 37.834738441420086 + "x": 584.91866, + "y": 37.83474 }, { "body": null, "index": 1, "isInternal": false, - "x": 615.4735201320574, - "y": 37.776262505111596 + "x": 615.47352, + "y": 37.77626 }, { "body": null, "index": 2, "isInternal": false, - "x": 615.5454431094741, - "y": 75.35746940218122 + "x": 615.54544, + "y": 75.35747 }, { "body": null, "index": 3, "isInternal": false, - "x": 584.9905865136558, - "y": 75.4159453384897 + "x": 584.99059, + "y": 75.41595 }, { - "angle": -0.00024045459191298946, - "anglePrev": -0.00014491586335403154, - "angularSpeed": 0.00037326069438534576, - "angularVelocity": -0.00010782137727696065, - "area": 1926.7878890000002, + "angle": -0.00024, + "anglePrev": -0.00014, + "angularSpeed": 0.00037, + "angularVelocity": -0.00011, + "area": 1926.78789, "axes": { "#": 401 }, @@ -3736,13 +3736,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 2372.8743306802635, - "inverseInertia": 0.0004214298191313472, - "inverseMass": 0.5189984874354792, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "inverseMass": 0.519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9267878890000003, + "mass": 1.92679, "motion": 0, "parent": null, "position": { @@ -3764,7 +3764,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.92459745768852, + "speed": 2.9246, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3800,32 +3800,32 @@ } ], { - "x": 0.6236800766810191, - "y": 0.7816797054747924 + "x": 0.62368, + "y": 0.78168 }, { - "x": -0.22228377723957624, - "y": 0.9749820113089811 + "x": -0.22228, + "y": 0.97498 }, { - "x": -0.9008772011044033, - "y": 0.4340740357707385 + "x": -0.90088, + "y": 0.43407 }, { - "x": -0.9010858471120454, - "y": -0.43364074547298653 + "x": -0.90109, + "y": -0.43364 }, { - "x": -0.22275262932061765, - "y": -0.9748750002593929 + "x": -0.22275, + "y": -0.97488 }, { - "x": 0.6233040876259557, - "y": -0.7819795485489217 + "x": 0.6233, + "y": -0.78198 }, { - "x": 0.9999999710907947, - "y": -0.00024045458959587242 + "x": 1, + "y": -0.00024 }, { "max": { @@ -3836,12 +3836,12 @@ } }, { - "x": 665.9304813681198, - "y": 92.41013524153173 + "x": 665.93048, + "y": 92.41014 }, { - "x": 615.4802457155978, - "y": 37.745542693716665 + "x": 615.48025, + "y": 37.74554 }, { "category": 1, @@ -3858,16 +3858,16 @@ "y": 0 }, { - "x": 642.0154360805955, - "y": 63.616961784228494 + "x": 642.01544, + "y": 63.61696 }, { - "x": 0.006512532585316241, - "y": 0.000025501997583152724 + "x": 0.00651, + "y": 0.00003 }, { - "x": 642.0109919910219, - "y": 60.70525702051552 + "x": 642.01099, + "y": 60.70526 }, { "endCol": 13, @@ -3890,8 +3890,8 @@ "yScale": 1 }, { - "x": 0.0044451805299559055, - "y": 2.9122748104369762 + "x": 0.00445, + "y": 2.91227 }, [ { @@ -3920,57 +3920,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 665.9260126110206, - "y": 75.12421270902735 + "x": 665.92601, + "y": 75.12421 }, { "body": null, "index": 1, "isInternal": false, - "x": 647.9264653380159, - "y": 89.48554119795438 + "x": 647.92647, + "y": 89.48554 }, { "body": null, "index": 2, "isInternal": false, - "x": 625.4752338977106, - "y": 84.36693955162157 + "x": 625.47523, + "y": 84.36694 }, { "body": null, "index": 3, "isInternal": false, - "x": 615.4802457155978, - "y": 63.62334229272202 + "x": 615.48025, + "y": 63.62334 }, { "body": null, "index": 4, "isInternal": false, - "x": 625.465256955879, - "y": 42.87494075112231 + "x": 625.46526, + "y": 42.87494 }, { "body": null, "index": 5, "isInternal": false, - "x": 647.9140242175501, - "y": 37.745542693716665 + "x": 647.91402, + "y": 37.74554 }, { "body": null, "index": 6, "isInternal": false, - "x": 665.9204759036407, - "y": 52.09821337469071 + "x": 665.92048, + "y": 52.09821 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 1690.1965440000001, + "area": 1690.19654, "axes": { "#": 431 }, @@ -3991,13 +3991,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1904.509571566363, - "inverseInertia": 0.0005250695585517853, - "inverseMass": 0.5916471688158889, + "inertia": 1904.50957, + "inverseInertia": 0.00053, + "inverseMass": 0.59165, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.6901965440000002, + "mass": 1.6902, "motion": 0, "parent": null, "position": { @@ -4019,7 +4019,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4056,12 +4056,12 @@ } }, { - "x": 710.4548049732069, - "y": 81.75502548206143 + "x": 710.4548, + "y": 81.75503 }, { - "x": 669.3428049732069, - "y": 37.735754767025774 + "x": 669.3428, + "y": 37.73575 }, { "category": 1, @@ -4078,16 +4078,16 @@ "y": 0 }, { - "x": 689.8988049732069, - "y": 58.29175476702577 + "x": 689.8988, + "y": 58.29175 }, { - "x": 0.12553557275601596, + "x": 0.12554, "y": 0 }, { - "x": 689.8988049732069, - "y": 55.38448405199012 + "x": 689.8988, + "y": 55.38448 }, { "endCol": 14, @@ -4111,7 +4111,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -4131,36 +4131,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 710.4548049732069, - "y": 78.84775476702578 + "x": 710.4548, + "y": 78.84775 }, { "body": null, "index": 1, "isInternal": false, - "x": 669.3428049732069, - "y": 78.84775476702578 + "x": 669.3428, + "y": 78.84775 }, { "body": null, "index": 2, "isInternal": false, - "x": 669.3428049732069, - "y": 37.735754767025774 + "x": 669.3428, + "y": 37.73575 }, { "body": null, "index": 3, "isInternal": false, - "x": 710.4548049732069, - "y": 37.735754767025774 + "x": 710.4548, + "y": 37.73575 }, { "angle": 0, "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 986.5801250000001, + "area": 986.58013, "axes": { "#": 453 }, @@ -4181,13 +4181,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 630.1649741806023, - "inverseInertia": 0.0015868860393269094, - "inverseMass": 1.013602417745847, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "inverseMass": 1.0136, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.9865801250000001, + "mass": 0.98658, "motion": 0, "parent": null, "position": { @@ -4209,7 +4209,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.907270715035651, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4239,20 +4239,20 @@ } ], { - "x": 0.3090152538128884, - "y": 0.9510570818362881 + "x": 0.30902, + "y": 0.95106 }, { - "x": -0.8090231185086703, - "y": 0.5877768230531943 + "x": -0.80902, + "y": 0.58778 }, { - "x": -0.8090231185086703, - "y": -0.5877768230531943 + "x": -0.80902, + "y": -0.58778 }, { - "x": 0.3090152538128884, - "y": -0.9510570818362881 + "x": 0.30902, + "y": -0.95106 }, { "x": 1, @@ -4267,12 +4267,12 @@ } }, { - "x": 749.6424419788154, - "y": 79.38902548206144 + "x": 749.64244, + "y": 79.38903 }, { - "x": 712.7924419788154, - "y": 37.73575476702578 + "x": 712.79244, + "y": 37.73575 }, { "category": 1, @@ -4289,16 +4289,16 @@ "y": 0 }, { - "x": 733.1624846989898, - "y": 57.10875476702578 + "x": 733.16248, + "y": 57.10875 }, { - "x": 0.14650463713809028, + "x": 0.1465, "y": 0 }, { - "x": 733.1624846989898, - "y": 54.20148405199013 + "x": 733.16248, + "y": 54.20148 }, { "endCol": 15, @@ -4322,7 +4322,7 @@ }, { "x": 0, - "y": 2.907270715035651 + "y": 2.90727 }, [ { @@ -4345,43 +4345,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 749.6424419788154, - "y": 69.08175476702579 + "x": 749.64244, + "y": 69.08175 }, { "body": null, "index": 1, "isInternal": false, - "x": 726.8674419788155, - "y": 76.48175476702579 + "x": 726.86744, + "y": 76.48175 }, { "body": null, "index": 2, "isInternal": false, - "x": 712.7924419788154, - "y": 57.10875476702578 + "x": 712.79244, + "y": 57.10875 }, { "body": null, "index": 3, "isInternal": false, - "x": 726.8674419788155, - "y": 37.73575476702578 + "x": 726.86744, + "y": 37.73575 }, { "body": null, "index": 4, "isInternal": false, - "x": 749.6424419788154, - "y": 45.13575476702578 + "x": 749.64244, + "y": 45.13575 }, { - "angle": 0.13230360320329246, - "anglePrev": 0.10208218942577174, - "angularSpeed": 0.026968771046798096, - "angularVelocity": 0.031361339566139707, - "area": 1201.454244, + "angle": 0.1323, + "anglePrev": 0.10208, + "angularSpeed": 0.02697, + "angularVelocity": 0.03136, + "area": 1201.45424, "axes": { "#": 479 }, @@ -4402,13 +4402,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 962.328200283741, - "inverseInertia": 0.0010391465195607398, - "inverseMass": 0.8323246640427199, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "inverseMass": 0.83232, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.201454244, + "mass": 1.20145, "motion": 0, "parent": null, "position": { @@ -4430,7 +4430,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.154918606629944, + "speed": 1.15492, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4451,12 +4451,12 @@ } ], { - "x": 0.13191796179680995, - "y": -0.9912606374487869 + "x": 0.13192, + "y": -0.99126 }, { - "x": 0.9912606374487869, - "y": 0.13191796179680995 + "x": 0.99126, + "y": 0.13192 }, { "max": { @@ -4467,12 +4467,12 @@ } }, { - "x": 59.54945080031621, - "y": 152.09314023424668 + "x": 59.54945, + "y": 152.09314 }, { - "x": 20.20000001456668, - "y": 112.08483816381698 + "x": 20.2, + "y": 112.08484 }, { "category": 1, @@ -4489,16 +4489,16 @@ "y": 0 }, { - "x": 39.66580831809214, - "y": 131.55064646734237 + "x": 39.66581, + "y": 131.55065 }, { "x": 0, "y": 0 }, { - "x": 39.20676993557409, - "y": 130.5755497457747 + "x": 39.20677, + "y": 130.57555 }, { "endCol": 1, @@ -4521,8 +4521,8 @@ "yScale": 1 }, { - "x": 0.4669285441220765, - "y": 1.0181399635333435 + "x": 0.46693, + "y": 1.01814 }, [ { @@ -4542,36 +4542,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 54.55907622981654, - "y": 151.01645477086785 + "x": 54.55908, + "y": 151.01645 }, { "body": null, "index": 1, "isInternal": false, - "x": 20.20000001456668, - "y": 146.44391437906683 + "x": 20.2, + "y": 146.44391 }, { "body": null, "index": 2, "isInternal": false, - "x": 24.772540406367717, - "y": 112.08483816381698 + "x": 24.77254, + "y": 112.08484 }, { "body": null, "index": 3, "isInternal": false, - "x": 59.13161662161758, - "y": 116.65737855561802 + "x": 59.13162, + "y": 116.65738 }, { - "angle": 0.03722716059855076, - "anglePrev": 0.0276947455669049, - "angularSpeed": 0.006773985823846691, - "angularVelocity": 0.00990208891845959, - "area": 1990.733346252218, + "angle": 0.03723, + "anglePrev": 0.02769, + "angularSpeed": 0.00677, + "angularVelocity": 0.0099, + "area": 1990.73335, "axes": { "#": 501 }, @@ -4592,13 +4592,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 6259.057922456878, - "inverseInertia": 0.00015976845275901655, - "inverseMass": 0.502327447260887, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "inverseMass": 0.50233, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.990733346252218, + "mass": 1.99073, "motion": 0, "parent": null, "position": { @@ -4620,7 +4620,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6048250612583117, + "speed": 2.60483, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4641,12 +4641,12 @@ } ], { - "x": -0.03721856257966967, - "y": 0.9993071492786907 + "x": -0.03722, + "y": 0.99931 }, { - "x": -0.9993071492786907, - "y": -0.03721856257966967 + "x": -0.99931, + "y": -0.03722 }, { "max": { @@ -4657,12 +4657,12 @@ } }, { - "x": 153.9736525009763, - "y": 146.95954472749943 + "x": 153.97365, + "y": 146.95954 }, { - "x": 57.95919055172799, - "y": 119.88970753701926 + "x": 57.95919, + "y": 119.88971 }, { "category": 1, @@ -4679,16 +4679,16 @@ "y": 0 }, { - "x": 105.72889079933731, - "y": 132.144056901931 + "x": 105.72889, + "y": 132.14406 }, { - "x": 0.025357407992031157, - "y": 0.00007211245127516093 + "x": 0.02536, + "y": 0.00007 }, { - "x": 105.07996683936015, - "y": 129.72214866431074 + "x": 105.07997, + "y": 129.72215 }, { "endCol": 3, @@ -4711,8 +4711,8 @@ "yScale": 1 }, { - "x": 0.6441620624769939, - "y": 2.3959306320145117 + "x": 0.64416, + "y": 2.39593 }, [ { @@ -4732,35 +4732,35 @@ "body": null, "index": 0, "isInternal": false, - "x": 58.740558598917225, - "y": 119.88970753701926 + "x": 58.74056, + "y": 119.88971 }, { "body": null, "index": 1, "isInternal": false, - "x": 153.49859104694661, - "y": 123.41891050843701 + "x": 153.49859, + "y": 123.41891 }, { "body": null, "index": 2, "isInternal": false, - "x": 152.71722299975735, - "y": 144.3984062668428 + "x": 152.71722, + "y": 144.39841 }, { "body": null, "index": 3, "isInternal": false, - "x": 57.95919055172799, - "y": 140.86920329542508 + "x": 57.95919, + "y": 140.8692 }, { "angle": 0, - "anglePrev": -0.00018734796864322486, + "anglePrev": -0.00019, "angularSpeed": 0, - "angularVelocity": 0.00022627560619819376, + "angularVelocity": 0.00023, "area": 7321.24308, "axes": { "#": 523 @@ -4768,7 +4768,7 @@ "bounds": { "#": 537 }, - "circleRadius": 48.51041666666667, + "circleRadius": 48.51042, "collisionFilter": { "#": 540 }, @@ -4783,13 +4783,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 34123.85299763073, - "inverseInertia": 0.000029305014298046337, - "inverseMass": 0.13658882638820946, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "inverseMass": 0.13659, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 7.32124308, + "mass": 7.32124, "motion": 0, "parent": null, "position": { @@ -4811,7 +4811,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9072707150356862, + "speed": 2.90727, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4865,52 +4865,52 @@ } ], { - "x": -0.9709369719547335, - "y": -0.23933532228104787 + "x": -0.97094, + "y": -0.23934 }, { - "x": -0.8854462875363226, - "y": -0.46474172600288854 + "x": -0.88545, + "y": -0.46474 }, { - "x": -0.7485263350981186, - "y": -0.6631050638206433 + "x": -0.74853, + "y": -0.66311 }, { - "x": -0.5680666256773447, - "y": -0.8229825689475785 + "x": -0.56807, + "y": -0.82298 }, { - "x": -0.35459752508424713, - "y": -0.9350190346747635 + "x": -0.3546, + "y": -0.93502 }, { - "x": -0.12048714586593073, - "y": -0.9927148874078006 + "x": -0.12049, + "y": -0.99271 }, { - "x": 0.12048714586593073, - "y": -0.9927148874078006 + "x": 0.12049, + "y": -0.99271 }, { - "x": 0.35459752508424713, - "y": -0.9350190346747635 + "x": 0.3546, + "y": -0.93502 }, { - "x": 0.5680666256773447, - "y": -0.8229825689475785 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7485263350981186, - "y": -0.6631050638206433 + "x": 0.74853, + "y": -0.66311 }, { - "x": 0.8854462875363226, - "y": -0.46474172600288854 + "x": 0.88545, + "y": -0.46474 }, { - "x": 0.9709369719547335, - "y": -0.23933532228104787 + "x": 0.97094, + "y": -0.23934 }, { "x": 1, @@ -4925,12 +4925,12 @@ } }, { - "x": 243.1521692891995, - "y": 224.8926438935728 + "x": 243.15217, + "y": 224.89264 }, { - "x": 146.8381692891995, - "y": 124.96537317853712 + "x": 146.83817, + "y": 124.96537 }, { "category": 1, @@ -4947,16 +4947,16 @@ "y": 0 }, { - "x": 194.99516928919948, - "y": 173.47537317853713 + "x": 194.99517, + "y": 173.47537 }, { - "x": -2.118049479477182, - "y": 1.1116947292089308 + "x": -2.11805, + "y": 1.11169 }, { - "x": 194.98673423815075, - "y": 170.55203163487045 + "x": 194.98673, + "y": 170.55203 }, { "endCol": 5, @@ -4979,8 +4979,8 @@ "yScale": 1 }, { - "x": 0.01018770694670934, - "y": 2.926680780432747 + "x": 0.01019, + "y": 2.92668 }, [ { @@ -5066,190 +5066,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 243.1521692891995, - "y": 179.32237317853713 + "x": 243.15217, + "y": 179.32237 }, { "body": null, "index": 1, "isInternal": false, - "x": 240.35316928919949, - "y": 190.67737317853712 + "x": 240.35317, + "y": 190.67737 }, { "body": null, "index": 2, "isInternal": false, - "x": 234.91816928919948, - "y": 201.0323731785371 + "x": 234.91817, + "y": 201.03237 }, { "body": null, "index": 3, "isInternal": false, - "x": 227.1631692891995, - "y": 209.78637317853713 + "x": 227.16317, + "y": 209.78637 }, { "body": null, "index": 4, "isInternal": false, - "x": 217.5391692891995, - "y": 216.42937317853713 + "x": 217.53917, + "y": 216.42937 }, { "body": null, "index": 5, "isInternal": false, - "x": 206.6041692891995, - "y": 220.57637317853712 + "x": 206.60417, + "y": 220.57637 }, { "body": null, "index": 6, "isInternal": false, - "x": 194.99516928919948, - "y": 221.98537317853712 + "x": 194.99517, + "y": 221.98537 }, { "body": null, "index": 7, "isInternal": false, - "x": 183.38616928919947, - "y": 220.57637317853712 + "x": 183.38617, + "y": 220.57637 }, { "body": null, "index": 8, "isInternal": false, - "x": 172.4511692891995, - "y": 216.42937317853713 + "x": 172.45117, + "y": 216.42937 }, { "body": null, "index": 9, "isInternal": false, - "x": 162.82716928919947, - "y": 209.78637317853713 + "x": 162.82717, + "y": 209.78637 }, { "body": null, "index": 10, "isInternal": false, - "x": 155.07216928919948, - "y": 201.0323731785371 + "x": 155.07217, + "y": 201.03237 }, { "body": null, "index": 11, "isInternal": false, - "x": 149.63716928919948, - "y": 190.67737317853712 + "x": 149.63717, + "y": 190.67737 }, { "body": null, "index": 12, "isInternal": false, - "x": 146.8381692891995, - "y": 179.32237317853713 + "x": 146.83817, + "y": 179.32237 }, { "body": null, "index": 13, "isInternal": false, - "x": 146.8381692891995, - "y": 167.62837317853712 + "x": 146.83817, + "y": 167.62837 }, { "body": null, "index": 14, "isInternal": false, - "x": 149.63716928919948, - "y": 156.27337317853713 + "x": 149.63717, + "y": 156.27337 }, { "body": null, "index": 15, "isInternal": false, - "x": 155.07216928919948, - "y": 145.9183731785371 + "x": 155.07217, + "y": 145.91837 }, { "body": null, "index": 16, "isInternal": false, - "x": 162.82716928919947, - "y": 137.1643731785371 + "x": 162.82717, + "y": 137.16437 }, { "body": null, "index": 17, "isInternal": false, - "x": 172.4511692891995, - "y": 130.5213731785371 + "x": 172.45117, + "y": 130.52137 }, { "body": null, "index": 18, "isInternal": false, - "x": 183.38616928919947, - "y": 126.37437317853711 + "x": 183.38617, + "y": 126.37437 }, { "body": null, "index": 19, "isInternal": false, - "x": 194.99516928919948, - "y": 124.96537317853712 + "x": 194.99517, + "y": 124.96537 }, { "body": null, "index": 20, "isInternal": false, - "x": 206.6041692891995, - "y": 126.37437317853711 + "x": 206.60417, + "y": 126.37437 }, { "body": null, "index": 21, "isInternal": false, - "x": 217.5391692891995, - "y": 130.5213731785371 + "x": 217.53917, + "y": 130.52137 }, { "body": null, "index": 22, "isInternal": false, - "x": 227.1631692891995, - "y": 137.1643731785371 + "x": 227.16317, + "y": 137.16437 }, { "body": null, "index": 23, "isInternal": false, - "x": 234.91816928919948, - "y": 145.9183731785371 + "x": 234.91817, + "y": 145.91837 }, { "body": null, "index": 24, "isInternal": false, - "x": 240.35316928919949, - "y": 156.27337317853713 + "x": 240.35317, + "y": 156.27337 }, { "body": null, "index": 25, "isInternal": false, - "x": 243.1521692891995, - "y": 167.62837317853712 + "x": 243.15217, + "y": 167.62837 }, { - "angle": -0.0013006844829861548, - "anglePrev": -0.0008405833942600145, - "angularSpeed": 0.0005633073955357284, - "angularVelocity": -0.00023282382139927027, - "area": 2034.763772651268, + "angle": -0.0013, + "anglePrev": -0.00084, + "angularSpeed": 0.00056, + "angularVelocity": -0.00023, + "area": 2034.76377, "axes": { "#": 578 }, @@ -5270,13 +5270,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 5208.099585450403, - "inverseInertia": 0.00019200861726869587, - "inverseMass": 0.49145754089036797, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "inverseMass": 0.49146, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.034763772651268, + "mass": 2.03476, "motion": 0, "parent": null, "position": { @@ -5298,7 +5298,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.962259843787818, + "speed": 2.96226, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5319,12 +5319,12 @@ } ], { - "x": 0.0013006841162408265, - "y": 0.9999991541100572 + "x": 0.0013, + "y": 1 }, { - "x": -0.9999991541100572, - "y": 0.0013006841162408265 + "x": -1, + "y": 0.0013 }, { "max": { @@ -5335,12 +5335,12 @@ } }, { - "x": 322.15887615765973, - "y": 154.7885690648458 + "x": 322.15888, + "y": 154.78857 }, { - "x": 237.885211662627, - "y": 127.56032087514848 + "x": 237.88521, + "y": 127.56032 }, { "category": 1, @@ -5357,16 +5357,16 @@ "y": 0 }, { - "x": 280.0172268794852, - "y": 139.69332288125997 + "x": 280.01723, + "y": 139.69332 }, { - "x": 1.414472593771558, - "y": 1.134502672179659 + "x": 1.41447, + "y": 1.1345 }, { - "x": 279.96083976013466, - "y": 136.69950803606125 + "x": 279.96084, + "y": 136.69951 }, { "endCol": 6, @@ -5389,8 +5389,8 @@ "yScale": 1 }, { - "x": 0.050080923006191824, - "y": 2.9818000037735715 + "x": 0.05008, + "y": 2.9818 }, [ { @@ -5410,36 +5410,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 237.885211662627, - "y": 127.66988098637665 + "x": 237.88521, + "y": 127.66988 }, { "body": null, "index": 1, "isInternal": false, - "x": 322.11782216687857, - "y": 127.56032087514848 + "x": 322.11782, + "y": 127.56032 }, { "body": null, "index": 2, "isInternal": false, - "x": 322.14924209634324, - "y": 151.71676477614332 + "x": 322.14924, + "y": 151.71676 }, { "body": null, "index": 3, "isInternal": false, - "x": 237.91663159209168, - "y": 151.8263248873715 + "x": 237.91663, + "y": 151.82632 }, { - "angle": 0.00010535303592766992, - "anglePrev": 0.00011209467683956417, - "angularSpeed": 0.000006741640911894256, - "angularVelocity": -0.000006741640911894256, - "area": 1030.4556949326513, + "angle": 0.00011, + "anglePrev": 0.00011, + "angularSpeed": 0.00001, + "angularVelocity": -0.00001, + "area": 1030.45569, "axes": { "#": 600 }, @@ -5460,13 +5460,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 987.3091418462254, - "inverseInertia": 0.0010128539862702408, - "inverseMass": 0.9704444401807669, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "inverseMass": 0.97044, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0304556949326513, + "mass": 1.03046, "motion": 0, "parent": null, "position": { @@ -5488,7 +5488,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8796990416810497, + "speed": 2.8797, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5509,12 +5509,12 @@ } ], { - "x": -0.00010535303573277975, - "y": 0.9999999944503689 + "x": -0.00011, + "y": 1 }, { - "x": -0.9999999944503689, - "y": -0.00010535303573277975 + "x": -1, + "y": -0.00011 }, { "max": { @@ -5525,12 +5525,12 @@ } }, { - "x": 380.2248433029487, - "y": 130.5577505060009 + "x": 380.22484, + "y": 130.55775 }, { - "x": 330.83607130156446, - "y": 109.68744985966585 + "x": 330.83607, + "y": 109.68745 }, { "category": 1, @@ -5547,16 +5547,16 @@ "y": 0 }, { - "x": 355.5304573022566, - "y": 120.12260018283338 + "x": 355.53046, + "y": 120.1226 }, { "x": 0, "y": 0 }, { - "x": 355.4851221887682, - "y": 117.24325801870218 + "x": 355.48512, + "y": 117.24326 }, { "endCol": 7, @@ -5579,8 +5579,8 @@ "yScale": 1 }, { - "x": 0.04533511348841102, - "y": 2.8793421641312014 + "x": 0.04534, + "y": 2.87934 }, [ { @@ -5600,43 +5600,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 330.83826950295185, - "y": 109.68744985966585 + "x": 330.83827, + "y": 109.68745 }, { "body": null, "index": 1, "isInternal": false, - "x": 380.2248433029487, - "y": 109.692652885169 + "x": 380.22484, + "y": 109.69265 }, { "body": null, "index": 2, "isInternal": false, - "x": 380.22264510156134, - "y": 130.5577505060009 + "x": 380.22265, + "y": 130.55775 }, { "body": null, "index": 3, "isInternal": false, - "x": 330.83607130156446, - "y": 130.55254748049776 + "x": 330.83607, + "y": 130.55255 }, { - "angle": -0.00023787570373766324, - "anglePrev": 0.000030901141015768, - "angularSpeed": 0.00026877684475343124, - "angularVelocity": -0.00026877684475343124, - "area": 2157.165332, + "angle": -0.00024, + "anglePrev": 0.00003, + "angularSpeed": 0.00027, + "angularVelocity": -0.00027, + "area": 2157.16533, "axes": { "#": 622 }, "bounds": { "#": 636 }, - "circleRadius": 26.331661522633745, + "circleRadius": 26.33166, "collisionFilter": { "#": 639 }, @@ -5651,13 +5651,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 2962.4789523118793, - "inverseInertia": 0.00033755514084568035, - "inverseMass": 0.46357132907974996, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "inverseMass": 0.46357, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 2.157165332, + "mass": 2.15717, "motion": 0, "parent": null, "position": { @@ -5679,7 +5679,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9249457468256908, + "speed": 2.92495, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5733,56 +5733,56 @@ } ], { - "x": -0.9710002924601351, - "y": -0.23907829688688217 + "x": -0.971, + "y": -0.23908 }, { - "x": -0.8855748647834559, - "y": -0.46449667260784916 + "x": -0.88557, + "y": -0.4645 }, { - "x": -0.7486610142542968, - "y": -0.6629530041682649 + "x": -0.74866, + "y": -0.66295 }, { - "x": -0.5682747036632771, - "y": -0.8228389035384839 + "x": -0.56827, + "y": -0.82284 }, { - "x": -0.354848144668094, - "y": -0.9349239510385918 + "x": -0.35485, + "y": -0.93492 }, { - "x": -0.12074156431117224, - "y": -0.9926839752145145 + "x": -0.12074, + "y": -0.99268 }, { - "x": 0.12026927986631487, - "y": -0.9927413058397632 + "x": 0.12027, + "y": -0.99274 }, { - "x": 0.35440331314122636, - "y": -0.9350926647314276 + "x": 0.3544, + "y": -0.93509 }, { - "x": 0.5678831726000837, - "y": -0.8231091678979547 + "x": 0.56788, + "y": -0.82311 }, { - "x": 0.7483455287156301, - "y": -0.6633091056598903 + "x": 0.74835, + "y": -0.66331 }, { - "x": 0.885353779625791, - "y": -0.4649179335133529 + "x": 0.88535, + "y": -0.46492 }, { - "x": 0.9708864407403744, - "y": -0.2395402245688338 + "x": 0.97089, + "y": -0.23954 }, { - "x": 0.9999999717075749, - "y": -0.00023787570149430307 + "x": 1, + "y": -0.00024 }, { "max": { @@ -5793,12 +5793,12 @@ } }, { - "x": 364.5224454428324, - "y": 202.3785692771521 + "x": 364.52245, + "y": 202.37857 }, { - "x": 312.2188074667759, - "y": 146.78970873439243 + "x": 312.21881, + "y": 146.78971 }, { "category": 1, @@ -5815,16 +5815,16 @@ "y": 0 }, { - "x": 338.35956174468845, - "y": 173.12170798939633 + "x": 338.35956, + "y": 173.12171 }, { - "x": -3.7969206810292513, - "y": 5.782884893154236 + "x": -3.79692, + "y": 5.78288 }, { - "x": 338.33743232445704, - "y": 170.19684595664438 + "x": 338.33743, + "y": 170.19685 }, { "endCol": 7, @@ -5847,8 +5847,8 @@ "yScale": 1 }, { - "x": 0.022129420231426025, - "y": 2.9248620327519586 + "x": 0.02213, + "y": 2.92486 }, [ { @@ -5934,190 +5934,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 364.500316022601, - "y": 176.28948982875912 + "x": 364.50032, + "y": 176.28949 }, { "body": null, "index": 1, "isInternal": false, - "x": 362.9827820935255, - "y": 182.45285098758347 + "x": 362.98278, + "y": 182.45285 }, { "body": null, "index": 2, "isInternal": false, - "x": 360.0341192763062, - "y": 188.07455256187114 + "x": 360.03412, + "y": 188.07455 }, { "body": null, "index": 3, "isInternal": false, - "x": 355.8252497807509, - "y": 192.82755388412886 + "x": 355.82525, + "y": 192.82755 }, { "body": null, "index": 4, "isInternal": false, - "x": 350.60210770833015, - "y": 196.43479644477097 + "x": 350.60211, + "y": 196.4348 }, { "body": null, "index": 5, "isInternal": false, - "x": 344.6676433344497, - "y": 198.6872081733731 + "x": 344.66764, + "y": 198.68721 }, { "body": null, "index": 6, "isInternal": false, - "x": 338.36582548766023, - "y": 199.45370724440016 + "x": 338.36583, + "y": 199.45371 }, { "body": null, "index": 7, "isInternal": false, - "x": 332.0636436910474, - "y": 198.6902063587147 + "x": 332.06364, + "y": 198.69021 }, { "body": null, "index": 8, "isInternal": false, - "x": 326.12810840075883, - "y": 196.44061821468932 + "x": 326.12811, + "y": 196.44062 }, { "body": null, "index": 9, "isInternal": false, - "x": 320.90325076877895, - "y": 192.83586097937643 + "x": 320.90325, + "y": 192.83586 }, { "body": null, "index": 10, "isInternal": false, - "x": 316.6921205025566, - "y": 188.08486257052533 + "x": 316.69212, + "y": 188.08486 }, { "body": null, "index": 11, "isInternal": false, - "x": 313.74078348670105, - "y": 182.46456446287647 + "x": 313.74078, + "y": 182.46456 }, { "body": null, "index": 12, "isInternal": false, - "x": 312.22031750172897, - "y": 176.30192597043325 + "x": 312.22032, + "y": 176.30193 }, { "body": null, "index": 13, "isInternal": false, - "x": 312.2188074667759, - "y": 169.95392615003354 + "x": 312.21881, + "y": 169.95393 }, { "body": null, "index": 14, "isInternal": false, - "x": 313.7363413958514, - "y": 163.79056499120918 + "x": 313.73634, + "y": 163.79056 }, { "body": null, "index": 15, "isInternal": false, - "x": 316.68500421307067, - "y": 158.16886341692148 + "x": 316.685, + "y": 158.16886 }, { "body": null, "index": 16, "isInternal": false, - "x": 320.893873708626, - "y": 153.4158620946638 + "x": 320.89387, + "y": 153.41586 }, { "body": null, "index": 17, "isInternal": false, - "x": 326.11701578104675, - "y": 149.80861953402166 + "x": 326.11702, + "y": 149.80862 }, { "body": null, "index": 18, "isInternal": false, - "x": 332.0514801549272, - "y": 147.55620780541952 + "x": 332.05148, + "y": 147.55621 }, { "body": null, "index": 19, "isInternal": false, - "x": 338.35329800171667, - "y": 146.78970873439243 + "x": 338.3533, + "y": 146.78971 }, { "body": null, "index": 20, "isInternal": false, - "x": 344.6554797983295, - "y": 147.55320962007792 + "x": 344.65548, + "y": 147.55321 }, { "body": null, "index": 21, "isInternal": false, - "x": 350.59101508861806, - "y": 149.8027977641033 + "x": 350.59102, + "y": 149.8028 }, { "body": null, "index": 22, "isInternal": false, - "x": 355.81587272059795, - "y": 153.4075549994162 + "x": 355.81587, + "y": 153.40755 }, { "body": null, "index": 23, "isInternal": false, - "x": 360.0270029868203, - "y": 158.1585534082673 + "x": 360.027, + "y": 158.15855 }, { "body": null, "index": 24, "isInternal": false, - "x": 362.97834000267585, - "y": 163.7788515159162 + "x": 362.97834, + "y": 163.77885 }, { "body": null, "index": 25, "isInternal": false, - "x": 364.4988059876479, - "y": 169.9414900083594 + "x": 364.49881, + "y": 169.94149 }, { - "angle": -0.0008495201470976394, - "anglePrev": -0.0005513761301964651, - "angularSpeed": 0.00029814401690117433, - "angularVelocity": -0.00029814401690117433, - "area": 2399.6281959999997, + "angle": -0.00085, + "anglePrev": -0.00055, + "angularSpeed": 0.0003, + "angularVelocity": -0.0003, + "area": 2399.6282, "axes": { "#": 677 }, @@ -6138,13 +6138,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 3838.8103193588086, - "inverseInertia": 0.00026049737205224263, - "inverseMass": 0.41673122597364254, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "inverseMass": 0.41673, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.3996281959999997, + "mass": 2.39963, "motion": 0, "parent": null, "position": { @@ -6166,7 +6166,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.913939010411184, + "speed": 2.91394, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6187,12 +6187,12 @@ } ], { - "x": -0.0008495200449167256, - "y": -0.9999996391577818 + "x": -0.00085, + "y": -1 }, { - "x": 0.9999996391577818, - "y": -0.0008495200449167256 + "x": 1, + "y": -0.00085 }, { "max": { @@ -6203,12 +6203,12 @@ } }, { - "x": 438.87718938822377, - "y": 175.51944056110096 + "x": 438.87719, + "y": 175.51944 }, { - "x": 389.8397282053289, - "y": 123.57792133430448 + "x": 389.83973, + "y": 123.57792 }, { "category": 1, @@ -6225,16 +6225,16 @@ "y": 0 }, { - "x": 414.36339093187206, - "y": 148.09171979065616 + "x": 414.36339, + "y": 148.09172 }, { - "x": -2.159210721364285, - "y": 0.0006923272542776652 + "x": -2.15921, + "y": 0.00069 }, { - "x": 414.3732552020635, - "y": 145.17779747656306 + "x": 414.37326, + "y": 145.1778 }, { "endCol": 9, @@ -6257,8 +6257,8 @@ "yScale": 1 }, { - "x": -0.009864270191451965, - "y": 2.9139223140931025 + "x": -0.00986, + "y": 2.91392 }, [ { @@ -6278,36 +6278,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 438.87718938822377, - "y": 172.56390365808755 + "x": 438.87719, + "y": 172.5639 }, { "body": null, "index": 1, "isInternal": false, - "x": 389.89120706444066, - "y": 172.60551824700786 + "x": 389.89121, + "y": 172.60552 }, { "body": null, "index": 2, "isInternal": false, - "x": 389.84959247552035, - "y": 123.61953592322476 + "x": 389.84959, + "y": 123.61954 }, { "body": null, "index": 3, "isInternal": false, - "x": 438.83557479930346, - "y": 123.57792133430448 + "x": 438.83557, + "y": 123.57792 }, { - "angle": -0.0013661209211364965, - "anglePrev": -0.0011167764456289206, - "angularSpeed": 0.00024934447550757584, - "angularVelocity": -0.00024934447550757584, - "area": 1489.7843794189994, + "angle": -0.00137, + "anglePrev": -0.00112, + "angularSpeed": 0.00025, + "angularVelocity": -0.00025, + "area": 1489.78438, "axes": { "#": 699 }, @@ -6328,13 +6328,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1501.6385932144133, - "inverseInertia": 0.0006659391976996251, - "inverseMass": 0.6712380756670235, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "inverseMass": 0.67124, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.4897843794189993, + "mass": 1.48978, "motion": 0, "parent": null, "position": { @@ -6356,7 +6356,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.88605352875307, + "speed": 2.88605, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6377,12 +6377,12 @@ } ], { - "x": 0.0013661204962077266, - "y": 0.9999990668569595 + "x": 0.00137, + "y": 1 }, { - "x": -0.9999990668569595, - "y": 0.0013661204962077266 + "x": -1, + "y": 0.00137 }, { "max": { @@ -6393,12 +6393,12 @@ } }, { - "x": 479.37860978025986, - "y": 168.46972010825976 + "x": 479.37861, + "y": 168.46972 }, { - "x": 443.8940346876776, - "y": 123.46643238737802 + "x": 443.89403, + "y": 123.46643 }, { "category": 1, @@ -6415,16 +6415,16 @@ "y": 0 }, { - "x": 461.6434220677373, - "y": 144.52506694948866 + "x": 461.64342, + "y": 144.52507 }, { - "x": -1.4398076097813277, - "y": -0.00015487256791276994 + "x": -1.43981, + "y": -0.00015 }, { - "x": 461.65762173527435, - "y": 141.6390483528282 + "x": 461.65762, + "y": 141.63905 }, { "endCol": 10, @@ -6447,8 +6447,8 @@ "yScale": 1 }, { - "x": -0.014199667537094455, - "y": 2.886018596660438 + "x": -0.0142, + "y": 2.88602 }, [ { @@ -6468,36 +6468,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 443.9082343552147, - "y": 123.51481072677635 + "x": 443.90823, + "y": 123.51481 }, { "body": null, "index": 1, "isInternal": false, - "x": 479.32113855267704, - "y": 123.46643238737802 + "x": 479.32114, + "y": 123.46643 }, { "body": null, "index": 2, "isInternal": false, - "x": 479.37860978025986, - "y": 165.535323172201 + "x": 479.37861, + "y": 165.53532 }, { "body": null, "index": 3, "isInternal": false, - "x": 443.9657055827975, - "y": 165.58370151159932 + "x": 443.96571, + "y": 165.5837 }, { - "angle": -0.0025950897565930947, - "anglePrev": -0.002086388563185361, - "angularSpeed": 0.0005087011934077335, - "angularVelocity": -0.0005087011934077335, - "area": 1765.3675322216507, + "angle": -0.0026, + "anglePrev": -0.00209, + "angularSpeed": 0.00051, + "angularVelocity": -0.00051, + "area": 1765.36753, "axes": { "#": 721 }, @@ -6518,13 +6518,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 2077.83252799514, - "inverseInertia": 0.00048127074079684396, - "inverseMass": 0.5664542831721485, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "inverseMass": 0.56645, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.7653675322216507, + "mass": 1.76537, "motion": 0, "parent": null, "position": { @@ -6546,7 +6546,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.899070271726653, + "speed": 2.89907, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6567,12 +6567,12 @@ } ], { - "x": 0.0025950868438260406, - "y": 0.9999966327564674 + "x": 0.0026, + "y": 1 }, { - "x": -0.9999966327564674, - "y": 0.0025950868438260406 + "x": -1, + "y": 0.0026 }, { "max": { @@ -6583,12 +6583,12 @@ } }, { - "x": 525.9769450177212, - "y": 168.72844079384265 + "x": 525.97695, + "y": 168.72844 }, { - "x": 484.0804029855508, - "y": 123.45103363270455 + "x": 484.0804, + "y": 123.45103 }, { "category": 1, @@ -6605,16 +6605,16 @@ "y": 0 }, { - "x": 505.0402234804643, - "y": 144.64024808960244 + "x": 505.04022, + "y": 144.64025 }, { - "x": -0.9596682566979133, - "y": -0.0002931151503039826 + "x": -0.95967, + "y": -0.00029 }, { - "x": 505.06332243812113, - "y": 141.74126984226004 + "x": 505.06332, + "y": 141.74127 }, { "endCol": 10, @@ -6637,8 +6637,8 @@ "yScale": 1 }, { - "x": -0.023098957656817447, - "y": 2.898978247342401 + "x": -0.0231, + "y": 2.89898 }, [ { @@ -6658,36 +6658,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 484.1035019432076, - "y": 123.55941455130713 + "x": 484.1035, + "y": 123.55941 }, { "body": null, "index": 1, "isInternal": false, - "x": 525.8672502029117, - "y": 123.45103363270455 + "x": 525.86725, + "y": 123.45103 }, { "body": null, "index": 2, "isInternal": false, - "x": 525.9769450177212, - "y": 165.7210816278977 + "x": 525.97695, + "y": 165.72108 }, { "body": null, "index": 3, "isInternal": false, - "x": 484.2131967580169, - "y": 165.82946254650025 + "x": 484.2132, + "y": 165.82946 }, { - "angle": -0.004080940539773731, - "anglePrev": -0.0034392690628233516, - "angularSpeed": 0.0006416714769503791, - "angularVelocity": -0.0006416714769503791, - "area": 1919.5457599999997, + "angle": -0.00408, + "anglePrev": -0.00344, + "angularSpeed": 0.00064, + "angularVelocity": -0.00064, + "area": 1919.54576, "axes": { "#": 743 }, @@ -6708,13 +6708,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 2363.7078785121025, - "inverseInertia": 0.000423064122724622, - "inverseMass": 0.5209565829782563, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "inverseMass": 0.52096, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.9195457599999999, + "mass": 1.91955, "motion": 0, "parent": null, "position": { @@ -6736,7 +6736,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8854768025288835, + "speed": 2.88548, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6760,16 +6760,16 @@ } ], { - "x": -0.5035073053729247, - "y": -0.8639909683764615 + "x": -0.50351, + "y": -0.86399 }, { - "x": 0.4964388213245725, - "y": -0.8680717117161857 + "x": 0.49644, + "y": -0.86807 }, { - "x": 0.999991672973712, - "y": -0.004080929212401057 + "x": 0.99999, + "y": -0.00408 }, { "max": { @@ -6780,12 +6780,12 @@ } }, { - "x": 577.4002015858842, - "y": 180.66275383682068 + "x": 577.4002, + "y": 180.66275 }, { - "x": 530.1723292617183, - "y": 123.415971275758 + "x": 530.17233, + "y": 123.41597 }, { "category": 1, @@ -6802,16 +6802,16 @@ "y": 0 }, { - "x": 553.8049336951572, - "y": 150.5967449388565 + "x": 553.80493, + "y": 150.59674 }, { - "x": -0.6411776574151048, + "x": -0.64118, "y": 0 }, { - "x": 553.8422702378689, - "y": 147.71150970399077 + "x": 553.84227, + "y": 147.71151 }, { "endCol": 12, @@ -6834,8 +6834,8 @@ "yScale": 1 }, { - "x": -0.03733654271178238, - "y": 2.885235234865719 + "x": -0.03734, + "y": 2.88524 }, [ { @@ -6861,50 +6861,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 577.4002015858842, - "y": 164.09156669258232 + "x": 577.4002, + "y": 164.09157 }, { "body": null, "index": 1, "isInternal": false, - "x": 553.9158574320794, - "y": 177.77751860195497 + "x": 553.91586, + "y": 177.77752 }, { "body": null, "index": 2, "isInternal": false, - "x": 530.3205936222819, - "y": 164.28369683990215 + "x": 530.32059, + "y": 164.2837 }, { "body": null, "index": 3, "isInternal": false, - "x": 530.2096658044301, - "y": 137.10192318513066 + "x": 530.20967, + "y": 137.10192 }, { "body": null, "index": 4, "isInternal": false, - "x": 553.6940099582349, - "y": 123.415971275758 + "x": 553.69401, + "y": 123.41597 }, { "body": null, "index": 5, "isInternal": false, - "x": 577.2892737680324, - "y": 136.90979303781083 + "x": 577.28927, + "y": 136.90979 }, { - "angle": 0.005008128159418267, - "anglePrev": 0.004048259329408996, - "angularSpeed": 0.0009598688300092714, - "angularVelocity": 0.0009598688300092714, - "area": 6052.328004, + "angle": 0.00501, + "anglePrev": 0.00405, + "angularSpeed": 0.00096, + "angularVelocity": 0.00096, + "area": 6052.328, "axes": { "#": 768 }, @@ -6925,13 +6925,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 23498.58850002505, - "inverseInertia": 0.000042555747550493684, - "inverseMass": 0.16522567834048274, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "inverseMass": 0.16523, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.0523280040000005, + "mass": 6.05233, "motion": 0, "parent": null, "position": { @@ -6953,7 +6953,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7852865788064722, + "speed": 2.78529, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6977,16 +6977,16 @@ } ], { - "x": -0.4956462353480794, - "y": -0.8685245013154643 + "x": -0.49565, + "y": -0.86852 }, { - "x": 0.5043205911687654, - "y": -0.8635164974238692 + "x": 0.50432, + "y": -0.86352 }, { - "x": 0.9999874593523808, - "y": 0.005008107224343937 + "x": 0.99999, + "y": 0.00501 }, { "max": { @@ -6997,12 +6997,12 @@ } }, { - "x": 670.7501021070988, - "y": 210.9161252054058 + "x": 670.7501, + "y": 210.91613 }, { - "x": 586.9114291768682, - "y": 114.38733575412046 + "x": 586.91143, + "y": 114.38734 }, { "category": 1, @@ -7019,16 +7019,16 @@ "y": 0 }, { - "x": 628.8307656419835, - "y": 162.6517304797631 + "x": 628.83077, + "y": 162.65173 }, { "x": 0, "y": 0 }, { - "x": 628.9408926765071, - "y": 159.86862190079128 + "x": 628.94089, + "y": 159.86862 }, { "endCol": 13, @@ -7051,8 +7051,8 @@ "yScale": 1 }, { - "x": -0.11012703452369578, - "y": 2.7831085789718086 + "x": -0.11013, + "y": 2.78311 }, [ { @@ -7078,50 +7078,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 670.5083808038087, - "y": 186.99376171018446 + "x": 670.50838, + "y": 186.99376 }, { "body": null, "index": 1, "isInternal": false, - "x": 628.5890493468007, - "y": 210.9161252054058 + "x": 628.58905, + "y": 210.91613 }, { "body": null, "index": 2, "isInternal": false, - "x": 586.9114291768682, - "y": 186.5750939624438 + "x": 586.91143, + "y": 186.57509 }, { "body": null, "index": 3, "isInternal": false, - "x": 587.1531504801583, - "y": 138.3096992493418 + "x": 587.15315, + "y": 138.3097 }, { "body": null, "index": 4, "isInternal": false, - "x": 629.0724819371662, - "y": 114.38733575412046 + "x": 629.07248, + "y": 114.38734 }, { "body": null, "index": 5, "isInternal": false, - "x": 670.7501021070988, - "y": 138.72836699708245 + "x": 670.7501, + "y": 138.72837 }, { - "angle": -0.017660925529244538, - "anglePrev": -0.01558000692610701, - "angularSpeed": 0.0020809186031375284, - "angularVelocity": -0.0020809186031375284, - "area": 2220.023313496789, + "angle": -0.01766, + "anglePrev": -0.01558, + "angularSpeed": 0.00208, + "angularVelocity": -0.00208, + "area": 2220.02331, "axes": { "#": 793 }, @@ -7142,13 +7142,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 3297.610605343488, - "inverseInertia": 0.00030324987382669986, - "inverseMass": 0.4504457200608792, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "inverseMass": 0.45045, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.220023313496789, + "mass": 2.22002, "motion": 0, "parent": null, "position": { @@ -7170,7 +7170,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8500143975633456, + "speed": 2.85001, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7191,12 +7191,12 @@ } ], { - "x": 0.01766000744538066, - "y": 0.999844049908299 + "x": 0.01766, + "y": 0.99984 }, { - "x": -0.999844049908299, - "y": 0.01766000744538066 + "x": -0.99984, + "y": 0.01766 }, { "max": { @@ -7207,12 +7207,12 @@ } }, { - "x": 719.3926414151871, - "y": 175.45461658352605 + "x": 719.39264, + "y": 175.45462 }, { - "x": 673.3532248487793, - "y": 122.64655533922108 + "x": 673.35322, + "y": 122.64656 }, { "category": 1, @@ -7229,16 +7229,16 @@ "y": 0 }, { - "x": 696.3863227630987, - "y": 147.6256416697052 + "x": 696.38632, + "y": 147.62564 }, { - "x": -0.12387817773643622, - "y": -0.0011028472199483706 + "x": -0.12388, + "y": -0.0011 }, { - "x": 696.4131020253301, - "y": 144.77575308636852 + "x": 696.4131, + "y": 144.77575 }, { "endCol": 14, @@ -7261,8 +7261,8 @@ "yScale": 1 }, { - "x": -0.026779262231355006, - "y": 2.8498885833366723 + "x": -0.02678, + "y": 2.84989 }, [ { @@ -7282,36 +7282,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 673.3800041110106, - "y": 123.44392874894983 + "x": 673.38, + "y": 123.44393 }, { "body": null, "index": 1, "isInternal": false, - "x": 718.5243259205082, - "y": 122.64655533922108 + "x": 718.52433, + "y": 122.64656 }, { "body": null, "index": 2, "isInternal": false, - "x": 719.3926414151871, - "y": 171.80735459046065 + "x": 719.39264, + "y": 171.80735 }, { "body": null, "index": 3, "isInternal": false, - "x": 674.2483196056895, - "y": 172.60472800018937 + "x": 674.24832, + "y": 172.60473 }, { - "angle": -0.034179723068709846, - "anglePrev": -0.030668757048791438, - "angularSpeed": 0.00351096601991841, - "angularVelocity": -0.00351096601991841, - "area": 2601.1074479999997, + "angle": -0.03418, + "anglePrev": -0.03067, + "angularSpeed": 0.00351, + "angularVelocity": -0.00351, + "area": 2601.10745, "axes": { "#": 815 }, @@ -7332,13 +7332,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 4340.237035670594, - "inverseInertia": 0.00023040216278083844, - "inverseMass": 0.3844516306963418, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "inverseMass": 0.38445, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.6011074479999996, + "mass": 2.60111, "motion": 0, "parent": null, "position": { @@ -7360,7 +7360,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.726177411206227, + "speed": 2.72618, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7384,16 +7384,16 @@ } ], { - "x": -0.5292898899918653, - "y": -0.8484410482481378 + "x": -0.52929, + "y": -0.84844 }, { - "x": 0.47009988297143224, - "y": -0.8826132222158498 + "x": 0.4701, + "y": -0.88261 }, { - "x": 0.9994159301305989, - "y": -0.03417306836076663 + "x": 0.99942, + "y": -0.03417 }, { "max": { @@ -7404,12 +7404,12 @@ } }, { - "x": 776.4061897177519, - "y": 184.97316085654597 + "x": 776.40619, + "y": 184.97316 }, { - "x": 720.5528948538026, - "y": 121.72812196602136 + "x": 720.55289, + "y": 121.72812 }, { "category": 1, @@ -7426,16 +7426,16 @@ "y": 0 }, { - "x": 748.4795422857773, - "y": 153.35064141128368 + "x": 748.47954, + "y": 153.35064 }, { "x": 0, "y": 0 }, { - "x": 748.4635428355894, - "y": 150.62451094944498 + "x": 748.46354, + "y": 150.62451 }, { "endCol": 16, @@ -7458,8 +7458,8 @@ "yScale": 1 }, { - "x": 0.015999450187907768, - "y": 2.7261304618386792 + "x": 0.016, + "y": 2.72613 }, [ { @@ -7485,50 +7485,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 776.4061897177519, - "y": 168.22599042265813 + "x": 776.40619, + "y": 168.22599 }, { "body": null, "index": 1, "isInternal": false, - "x": 749.5608123417803, - "y": 184.97316085654597 + "x": 749.56081, + "y": 184.97316 }, { "body": null, "index": 2, "isInternal": false, - "x": 721.634199082874, - "y": 170.09881126110156 + "x": 721.6342, + "y": 170.09881 }, { "body": null, "index": 3, "isInternal": false, - "x": 720.5528948538026, - "y": 138.47529239990916 + "x": 720.55289, + "y": 138.47529 }, { "body": null, "index": 4, "isInternal": false, - "x": 747.3982722297742, - "y": 121.72812196602136 + "x": 747.39827, + "y": 121.72812 }, { "body": null, "index": 5, "isInternal": false, - "x": 775.3248854886805, - "y": 136.60247156146576 + "x": 775.32489, + "y": 136.60247 }, { - "angle": 0.03133881447139186, - "anglePrev": 0.02825356554589312, - "angularSpeed": 0.003085248925498743, - "angularVelocity": 0.003085248925498743, - "area": 1413.3088360000002, + "angle": 0.03134, + "anglePrev": 0.02825, + "angularSpeed": 0.00309, + "angularVelocity": 0.00309, + "area": 1413.30884, "axes": { "#": 840 }, @@ -7549,13 +7549,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1331.62791061045, - "inverseInertia": 0.0007509605288624329, - "inverseMass": 0.7075594339523396, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "inverseMass": 0.70756, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.4133088360000001, + "mass": 1.41331, "motion": 0, "parent": null, "position": { @@ -7577,7 +7577,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.6193177080654597, + "speed": 2.61932, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7598,12 +7598,12 @@ } ], { - "x": 0.031333684970459075, - "y": -0.9995089795425413 + "x": 0.03133, + "y": -0.99951 }, { - "x": 0.9995089795425413, - "y": 0.031333684970459075 + "x": 0.99951, + "y": 0.03133 }, { "max": { @@ -7614,12 +7614,12 @@ } }, { - "x": 889.3674148914052, - "y": 136.1800747303695 + "x": 889.36741, + "y": 136.18007 }, { - "x": 850.6139157617032, - "y": 97.42657560066777 + "x": 850.61392, + "y": 97.42658 }, { "category": 1, @@ -7636,16 +7636,16 @@ "y": 0 }, { - "x": 869.9906653265542, - "y": 116.80332516551864 + "x": 869.99067, + "y": 116.80333 }, { "x": 0, "y": 0 }, { - "x": 869.91527273965, - "y": 114.18509270570435 + "x": 869.91527, + "y": 114.18509 }, { "endCol": 18, @@ -7668,8 +7668,8 @@ "yScale": 1 }, { - "x": 0.07539258690411657, - "y": 2.618232459814292 + "x": 0.07539, + "y": 2.61823 }, [ { @@ -7689,36 +7689,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 888.1894563386256, - "y": 136.1800747303695 + "x": 888.18946, + "y": 136.18007 }, { "body": null, "index": 1, "isInternal": false, - "x": 850.6139157617032, - "y": 135.00211617759007 + "x": 850.61392, + "y": 135.00212 }, { "body": null, "index": 2, "isInternal": false, - "x": 851.7918743144828, - "y": 97.42657560066777 + "x": 851.79187, + "y": 97.42658 }, { "body": null, "index": 3, "isInternal": false, - "x": 889.3674148914052, - "y": 98.60453415344722 + "x": 889.36741, + "y": 98.60453 }, { - "angle": 0.011178114895911875, - "anglePrev": 0.010108145403217257, - "angularSpeed": 0.0010699694926946182, - "angularVelocity": 0.0010699694926946182, - "area": 5460.808751999999, + "angle": 0.01118, + "anglePrev": 0.01011, + "angularSpeed": 0.00107, + "angularVelocity": 0.00107, + "area": 5460.80875, "axes": { "#": 862 }, @@ -7739,13 +7739,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 19129.816192447524, - "inverseInertia": 0.00005227441758665728, - "inverseMass": 0.1831230583993175, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "inverseMass": 0.18312, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 5.460808751999999, + "mass": 5.46081, "motion": 0, "parent": null, "position": { @@ -7767,7 +7767,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7371306875102985, + "speed": 2.73713, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7791,16 +7791,16 @@ } ], { - "x": -0.4902865381289931, - "y": -0.8715613062369668 + "x": -0.49029, + "y": -0.87156 }, { - "x": 0.509647222169664, - "y": -0.8603834662141904 + "x": 0.50965, + "y": -0.86038 }, { - "x": 0.9999375255242078, - "y": 0.011177882112652845 + "x": 0.99994, + "y": 0.01118 }, { "max": { @@ -7811,12 +7811,12 @@ } }, { - "x": 926.1970364750063, - "y": 229.29263932229605 + "x": 926.19704, + "y": 229.29264 }, { - "x": 846.2815362648438, - "y": 137.60636773193033 + "x": 846.28154, + "y": 137.60637 }, { "category": 1, @@ -7833,16 +7833,16 @@ "y": 0 }, { - "x": 886.239286369925, - "y": 183.44950352711322 + "x": 886.23929, + "y": 183.4495 }, { "x": 0, "y": 0 }, { - "x": 886.1882546300752, - "y": 180.7128486051257 + "x": 886.18825, + "y": 180.71285 }, { "endCol": 19, @@ -7865,8 +7865,8 @@ "yScale": 1 }, { - "x": 0.05103173984978298, - "y": 2.736654921987517 + "x": 0.05103, + "y": 2.73665 }, [ { @@ -7892,50 +7892,50 @@ "body": null, "index": 0, "isInternal": false, - "x": 925.6845752916697, - "y": 206.81487805610536 + "x": 925.68458, + "y": 206.81488 }, { "body": null, "index": 1, "isInternal": false, - "x": 885.7268251865884, - "y": 229.29263932229605 + "x": 885.72683, + "y": 229.29264 }, { "body": null, "index": 2, "isInternal": false, - "x": 846.2815362648438, - "y": 205.9272647933039 + "x": 846.28154, + "y": 205.92726 }, { "body": null, "index": 3, "isInternal": false, - "x": 846.7939974481803, - "y": 160.0841289981211 + "x": 846.794, + "y": 160.08413 }, { "body": null, "index": 4, "isInternal": false, - "x": 886.7517475532617, - "y": 137.60636773193033 + "x": 886.75175, + "y": 137.60637 }, { "body": null, "index": 5, "isInternal": false, - "x": 926.1970364750063, - "y": 160.97174226092255 + "x": 926.19704, + "y": 160.97174 }, { - "angle": 0.13440851826616196, - "anglePrev": 0.10984352126118403, - "angularSpeed": 0.02363269279401294, - "angularVelocity": 0.030870480793110583, - "area": 451.6137937679406, + "angle": 0.13441, + "anglePrev": 0.10984, + "angularSpeed": 0.02363, + "angularVelocity": 0.03087, + "area": 451.61379, "axes": { "#": 887 }, @@ -7956,13 +7956,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 136.71143203852228, - "inverseInertia": 0.007314677237220527, - "inverseMass": 2.214281347911718, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "inverseMass": 2.21428, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.4516137937679406, + "mass": 0.45161, "motion": 0, "parent": null, "position": { @@ -7984,7 +7984,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0632795153551964, + "speed": 1.06328, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8005,12 +8005,12 @@ } ], { - "x": -0.13400418746082696, - "y": 0.9909807655766903 + "x": -0.134, + "y": 0.99098 }, { - "x": -0.9909807655766903, - "y": -0.13400418746082696 + "x": -0.99098, + "y": -0.134 }, { "max": { @@ -8021,12 +8021,12 @@ } }, { - "x": 43.30416830411217, - "y": 234.86520251750267 + "x": 43.30417, + "y": 234.8652 }, { - "x": 20.063449862993124, - "y": 208.94138079261393 + "x": 20.06345, + "y": 208.94138 }, { "category": 1, @@ -8043,16 +8043,16 @@ "y": 0 }, { - "x": 31.557913610879826, - "y": 221.38677334763446 + "x": 31.55791, + "y": 221.38677 }, { "x": 0, "y": 0 }, { - "x": 31.25347012955839, - "y": 220.75658274955455 + "x": 31.25347, + "y": 220.75658 }, { "endCol": 0, @@ -8075,8 +8075,8 @@ "yScale": 1 }, { - "x": 0.30999595782224176, - "y": 0.8053459730792554 + "x": 0.31, + "y": 0.80535 }, [ { @@ -8096,36 +8096,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 23.063775358041017, - "y": 208.94138079261393 + "x": 23.06378, + "y": 208.94138 }, { "body": null, "index": 1, "isInternal": false, - "x": 43.052377358766535, - "y": 211.64431556453792 + "x": 43.05238, + "y": 211.64432 }, { "body": null, "index": 2, "isInternal": false, - "x": 40.05205186371864, - "y": 233.832165902655 + "x": 40.05205, + "y": 233.83217 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.063449862993124, - "y": 231.129231130731 + "x": 20.06345, + "y": 231.12923 }, { - "angle": 0.04493079868590327, - "anglePrev": 0.03373448581853147, - "angularSpeed": 0.009982582778609975, - "angularVelocity": 0.011192961800323566, - "area": 3021.679068443158, + "angle": 0.04493, + "anglePrev": 0.03373, + "angularSpeed": 0.00998, + "angularVelocity": 0.01119, + "area": 3021.67907, "axes": { "#": 909 }, @@ -8146,13 +8146,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 11331.770164825675, - "inverseInertia": 0.00008824746579347726, - "inverseMass": 0.33094182980697023, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "inverseMass": 0.33094, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 3.021679068443158, + "mass": 3.02168, "motion": 0, "parent": null, "position": { @@ -8174,7 +8174,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.106859349893301, + "speed": 2.10686, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8195,12 +8195,12 @@ } ], { - "x": -0.044915682670414195, - "y": 0.9989907814640989 + "x": -0.04492, + "y": 0.99899 }, { - "x": -0.9989907814640989, - "y": -0.044915682670414195 + "x": -0.99899, + "y": -0.04492 }, { "max": { @@ -8211,12 +8211,12 @@ } }, { - "x": 144.1907618279458, - "y": 251.3975564072614 + "x": 144.19076, + "y": 251.39756 }, { - "x": 40.92297655939227, - "y": 215.08385787386507 + "x": 40.92298, + "y": 215.08386 }, { "category": 1, @@ -8233,16 +8233,16 @@ "y": 0 }, { - "x": 92.45455945650954, - "y": 232.1922574289697 + "x": 92.45456, + "y": 232.19226 }, { - "x": -0.06279039138825475, - "y": 0.07188833633964138 + "x": -0.06279, + "y": 0.07189 }, { - "x": 92.22062973561735, - "y": 230.18959022467283 + "x": 92.22063, + "y": 230.18959 }, { "endCol": 3, @@ -8265,8 +8265,8 @@ "yScale": 1 }, { - "x": 0.23312502762256315, - "y": 2.0030210603721628 + "x": 0.23313, + "y": 2.00302 }, [ { @@ -8286,36 +8286,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 42.255752402581656, - "y": 215.08385787386507 + "x": 42.25575, + "y": 215.08386 }, { "body": null, "index": 1, "isInternal": false, - "x": 143.98614235362678, - "y": 219.65776385754393 + "x": 143.98614, + "y": 219.65776 }, { "body": null, "index": 2, "isInternal": false, - "x": 142.65336651043737, - "y": 249.30065698407432 + "x": 142.65337, + "y": 249.30066 }, { "body": null, "index": 3, "isInternal": false, - "x": 40.92297655939227, - "y": 244.72675100039547 + "x": 40.92298, + "y": 244.72675 }, { - "angle": 0.040393783799153295, - "anglePrev": 0.028042637441147083, - "angularSpeed": 0.01102990065065427, - "angularVelocity": 0.012330308577055731, - "area": 856.7396388354374, + "angle": 0.04039, + "anglePrev": 0.02804, + "angularSpeed": 0.01103, + "angularVelocity": 0.01233, + "area": 856.73964, "axes": { "#": 931 }, @@ -8336,13 +8336,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 589.1059801208658, - "inverseInertia": 0.0016974874364623356, - "inverseMass": 1.1672157498855729, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "inverseMass": 1.16722, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.8567396388354375, + "mass": 0.85674, "motion": 0, "parent": null, "position": { @@ -8364,7 +8364,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.835433726697396, + "speed": 2.83543, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8385,12 +8385,12 @@ } ], { - "x": -0.04038279989009396, - "y": 0.9991842820386221 + "x": -0.04038, + "y": 0.99918 }, { - "x": -0.9991842820386221, - "y": -0.04038279989009396 + "x": -0.99918, + "y": -0.04038 }, { "max": { @@ -8401,12 +8401,12 @@ } }, { - "x": 183.91826369813904, - "y": 245.29975807923884 + "x": 183.91826, + "y": 245.29976 }, { - "x": 142.79557792564358, - "y": 219.49187732046366 + "x": 142.79558, + "y": 219.49188 }, { "category": 1, @@ -8423,16 +8423,16 @@ "y": 0 }, { - "x": 163.24668306814834, - "y": 230.98239322557689 + "x": 163.24668, + "y": 230.98239 }, { "x": 0, "y": 0 }, { - "x": 162.99731170296621, - "y": 228.1602951898449 + "x": 162.99731, + "y": 228.1603 }, { "endCol": 3, @@ -8455,8 +8455,8 @@ "yScale": 1 }, { - "x": 0.24708804219324065, - "y": 2.8199754517842734 + "x": 0.24709, + "y": 2.81998 }, [ { @@ -8476,36 +8476,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 143.65897319700775, - "y": 219.49187732046366 + "x": 143.65897, + "y": 219.49188 }, { "body": null, "index": 1, "isInternal": false, - "x": 183.6977882106531, - "y": 221.1100767693518 + "x": 183.69779, + "y": 221.11008 }, { "body": null, "index": 2, "isInternal": false, - "x": 182.83439293928893, - "y": 242.47290913069014 + "x": 182.83439, + "y": 242.47291 }, { "body": null, "index": 3, "isInternal": false, - "x": 142.79557792564358, - "y": 240.854709681802 + "x": 142.79558, + "y": 240.85471 }, { - "angle": -0.002047130337295934, - "anglePrev": -0.0009430054597307729, - "angularSpeed": 0.0009217780960512713, - "angularVelocity": -0.0011113826788291755, - "area": 4088.5999519999996, + "angle": -0.00205, + "anglePrev": -0.00094, + "angularSpeed": 0.00092, + "angularVelocity": -0.00111, + "area": 4088.59995, "axes": { "#": 953 }, @@ -8526,13 +8526,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 10666.41244015019, - "inverseInertia": 0.00009375223446599814, - "inverseMass": 0.24458250054785502, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "inverseMass": 0.24458, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.088599952, + "mass": 4.0886, "motion": 0, "parent": null, "position": { @@ -8554,7 +8554,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 3.0117744416589125, + "speed": 3.01177, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8581,20 +8581,20 @@ } ], { - "x": -0.7085528382682338, - "y": -0.7056577608033728 + "x": -0.70855, + "y": -0.70566 }, { - "x": -0.0020471289074635085, - "y": -0.9999979046294227 + "x": -0.00205, + "y": -1 }, { - "x": 0.7056577608033728, - "y": -0.7085528382682338 + "x": 0.70566, + "y": -0.70855 }, { - "x": 0.9999979046294227, - "y": -0.0020471289074635085 + "x": 1, + "y": -0.00205 }, { "max": { @@ -8605,12 +8605,12 @@ } }, { - "x": 252.9602173651271, - "y": 294.3414112882476 + "x": 252.96022, + "y": 294.34141 }, { - "x": 182.53397111875563, - "y": 221.02040215336874 + "x": 182.53397, + "y": 221.0204 }, { "category": 1, @@ -8627,16 +8627,16 @@ "y": 0 }, { - "x": 217.6896832423723, - "y": 256.17611427698546 + "x": 217.68968, + "y": 256.17611 }, { - "x": -0.030447506648581864, - "y": 0.03120759480159667 + "x": -0.03045, + "y": 0.03121 }, { - "x": 217.55985853795926, - "y": 253.15126839044336 + "x": 217.55986, + "y": 253.15127 }, { "endCol": 5, @@ -8659,8 +8659,8 @@ "yScale": 1 }, { - "x": 0.12852890060085542, - "y": 3.0248243656535294 + "x": 0.12853, + "y": 3.02482 }, [ { @@ -8692,64 +8692,64 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.84539536598896, - "y": 270.6541763393399 + "x": 252.8454, + "y": 270.65418 }, { "body": null, "index": 1, "isInternal": false, - "x": 232.31156020473395, - "y": 291.27225494939495 + "x": 232.31156, + "y": 291.27225 }, { "body": null, "index": 2, "isInternal": false, - "x": 203.21162118001774, - "y": 291.3318264006022 + "x": 203.21162, + "y": 291.33183 }, { "body": null, "index": 3, "isInternal": false, - "x": 182.5935425699628, - "y": 270.7979912393471 + "x": 182.59354, + "y": 270.79799 }, { "body": null, "index": 4, "isInternal": false, - "x": 182.53397111875563, - "y": 241.69805221463085 + "x": 182.53397, + "y": 241.69805 }, { "body": null, "index": 5, "isInternal": false, - "x": 203.06780628001064, - "y": 221.0799736045759 + "x": 203.06781, + "y": 221.07997 }, { "body": null, "index": 6, "isInternal": false, - "x": 232.16774530472685, - "y": 221.02040215336874 + "x": 232.16775, + "y": 221.0204 }, { "body": null, "index": 7, "isInternal": false, - "x": 252.7858239147818, - "y": 241.55423731462375 + "x": 252.78582, + "y": 241.55424 }, { - "angle": -0.003735889568813916, - "anglePrev": -0.002778084681984021, - "angularSpeed": 0.0008791895439084474, - "angularVelocity": -0.0009422793819580683, - "area": 1965.14242904257, + "angle": -0.00374, + "anglePrev": -0.00278, + "angularSpeed": 0.00088, + "angularVelocity": -0.00094, + "area": 1965.14243, "axes": { "#": 981 }, @@ -8770,13 +8770,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 5563.368364654239, - "inverseInertia": 0.00017974722047048015, - "inverseMass": 0.508868968081467, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "inverseMass": 0.50887, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.96514242904257, + "mass": 1.96514, "motion": 0, "parent": null, "position": { @@ -8798,7 +8798,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9380553627736874, + "speed": 2.93806, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8819,12 +8819,12 @@ } ], { - "x": 0.003735880878598598, - "y": 0.9999930215726813 + "x": 0.00374, + "y": 0.99999 }, { - "x": -0.9999930215726813, - "y": 0.003735880878598598 + "x": -0.99999, + "y": 0.00374 }, { "max": { @@ -8835,12 +8835,12 @@ } }, { - "x": 342.08549167810276, - "y": 245.70073486516907 + "x": 342.08549, + "y": 245.70073 }, { - "x": 252.40471840890356, - "y": 220.47414740479675 + "x": 252.40472, + "y": 220.47415 }, { "category": 1, @@ -8857,16 +8857,16 @@ "y": 0 }, { - "x": 297.19756167095983, - "y": 231.6191829981391 + "x": 297.19756, + "y": 231.61918 }, { - "x": 0.051490596450663645, - "y": -0.00131435610606123 + "x": 0.05149, + "y": -0.00131 }, { - "x": 297.08956317321673, - "y": 228.67564569025612 + "x": 297.08956, + "y": 228.67565 }, { "endCol": 7, @@ -8889,8 +8889,8 @@ "yScale": 1 }, { - "x": 0.10440093919203264, - "y": 2.943650682801234 + "x": 0.1044, + "y": 2.94365 }, [ { @@ -8910,36 +8910,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 252.40471840890356, - "y": 220.80852475800984 + "x": 252.40472, + "y": 220.80852 }, { "body": null, "index": 1, "isInternal": false, - "x": 341.9083805038457, - "y": 220.47414740479675 + "x": 341.90838, + "y": 220.47415 }, { "body": null, "index": 2, "isInternal": false, - "x": 341.99040493301607, - "y": 242.42984123826838 + "x": 341.9904, + "y": 242.42984 }, { "body": null, "index": 3, "isInternal": false, - "x": 252.48674283807392, - "y": 242.76421859148147 + "x": 252.48674, + "y": 242.76422 }, { - "angle": 0.0010373306515137977, - "anglePrev": 0.001163820338076076, - "angularSpeed": 0.000049124306917853456, - "angularVelocity": -0.0001546834295603199, - "area": 2297.860096, + "angle": 0.00104, + "anglePrev": 0.00116, + "angularSpeed": 0.00005, + "angularVelocity": -0.00015, + "area": 2297.8601, "axes": { "#": 1003 }, @@ -8960,13 +8960,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 3520.107347192753, - "inverseInertia": 0.00028408224561602904, - "inverseMass": 0.43518750412209606, + "inertia": 3520.10735, + "inverseInertia": 0.00028, + "inverseMass": 0.43519, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.297860096, + "mass": 2.29786, "motion": 0, "parent": null, "position": { @@ -8988,7 +8988,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8977239714034506, + "speed": 2.89772, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9009,12 +9009,12 @@ } ], { - "x": 0.001037330465476356, - "y": -0.999999461972608 + "x": 0.00104, + "y": -1 }, { - "x": 0.999999461972608, - "y": 0.001037330465476356 + "x": 1, + "y": 0.00104 }, { "max": { @@ -9025,12 +9025,12 @@ } }, { - "x": 389.7989519511678, - "y": 271.4325266265845 + "x": 389.79895, + "y": 271.43253 }, { - "x": 341.7118244865161, - "y": 220.5508786333705 + "x": 341.71182, + "y": 220.55088 }, { "category": 1, @@ -9047,16 +9047,16 @@ "y": 0 }, { - "x": 365.70467432767214, - "y": 244.54372847452652 + "x": 365.70467, + "y": 244.54373 }, { - "x": 0.17233477587513718, - "y": 0.0015099768151500734 + "x": 0.17233, + "y": 0.00151 }, { - "x": 365.5755996503121, - "y": 241.645873677875 + "x": 365.5756, + "y": 241.64587 }, { "endCol": 8, @@ -9079,8 +9079,8 @@ "yScale": 1 }, { - "x": 0.12548612549647942, - "y": 2.897648029053613 + "x": 0.12549, + "y": 2.89765 }, [ { @@ -9100,36 +9100,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.647798695635, - "y": 268.53657831568256 + "x": 389.6478, + "y": 268.53658 }, { "body": null, "index": 1, "isInternal": false, - "x": 341.7118244865161, - "y": 268.4868528424894 + "x": 341.71182, + "y": 268.48685 }, { "body": null, "index": 2, "isInternal": false, - "x": 341.76154995970927, - "y": 220.5508786333705 + "x": 341.76155, + "y": 220.55088 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.6975241688282, - "y": 220.6006041065636 + "x": 389.69752, + "y": 220.6006 }, { - "angle": -0.00026934813409845053, - "anglePrev": -0.00043489992515129, - "angularSpeed": 0.0002458436795260174, - "angularVelocity": 0.00010447499236071922, - "area": 942.0065703840771, + "angle": -0.00027, + "anglePrev": -0.00043, + "angularSpeed": 0.00025, + "angularVelocity": 0.0001, + "area": 942.00657, "axes": { "#": 1025 }, @@ -9150,13 +9150,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 767.5081553931885, - "inverseInertia": 0.0013029177513921109, - "inverseMass": 1.0615637209327295, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "inverseMass": 1.06156, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9420065703840771, + "mass": 0.94201, "motion": 0, "parent": null, "position": { @@ -9178,7 +9178,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.902167995697787, + "speed": 2.90217, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9199,12 +9199,12 @@ } ], { - "x": 0.00026934813084165385, - "y": 0.9999999637257916 + "x": 0.00027, + "y": 1 }, { - "x": -0.9999999637257916, - "y": 0.00026934813084165385 + "x": -1, + "y": 0.00027 }, { "max": { @@ -9215,12 +9215,12 @@ } }, { - "x": 410.6962230449797, - "y": 268.2122259658619 + "x": 410.69622, + "y": 268.21223 }, { - "x": 389.5096893319207, - "y": 220.57683936314683 + "x": 389.50969, + "y": 220.57684 }, { "category": 1, @@ -9237,16 +9237,16 @@ "y": 0 }, { - "x": 400.04567688703787, - "y": 242.94457961338756 + "x": 400.04568, + "y": 242.94458 }, { - "x": 0.2802248154470754, - "y": -0.00013582863241432493 + "x": 0.28022, + "y": -0.00014 }, { - "x": 399.9026400484496, - "y": 240.04689701671006 + "x": 399.90264, + "y": 240.0469 }, { "endCol": 8, @@ -9269,8 +9269,8 @@ "yScale": 1 }, { - "x": 0.1354432285374969, - "y": 2.8970503589685563 + "x": 0.13544, + "y": 2.89705 }, [ { @@ -9290,36 +9290,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 389.5096893319207, - "y": 220.58251181538486 + "x": 389.50969, + "y": 220.58251 }, { "body": null, "index": 1, "isInternal": false, - "x": 410.5696165515274, - "y": 220.57683936314683 + "x": 410.56962, + "y": 220.57684 }, { "body": null, "index": 2, "isInternal": false, - "x": 410.58166444215516, - "y": 265.3066474113903 + "x": 410.58166, + "y": 265.30665 }, { "body": null, "index": 3, "isInternal": false, - "x": 389.5217372225483, - "y": 265.3123198636283 + "x": 389.52174, + "y": 265.31232 }, { - "angle": -0.0004085147876125065, - "anglePrev": -0.0004097828707945261, - "angularSpeed": 0.000024044855249679683, - "angularVelocity": -0.0000034642674880907653, - "area": 2898.415585731765, + "angle": -0.00041, + "anglePrev": -0.00041, + "angularSpeed": 0.00002, + "angularVelocity": 0, + "area": 2898.41559, "axes": { "#": 1047 }, @@ -9340,13 +9340,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 12806.465328273802, - "inverseInertia": 0.00007808555868981462, - "inverseMass": 0.34501608565823705, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "inverseMass": 0.34502, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.8984155857317653, + "mass": 2.89842, "motion": 0, "parent": null, "position": { @@ -9368,7 +9368,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.903867354945089, + "speed": 2.90387, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9389,12 +9389,12 @@ } ], { - "x": 0.0004085147762500536, - "y": 0.9999999165578353 + "x": 0.00041, + "y": 1 }, { - "x": -0.9999999165578353, - "y": 0.0004085147762500536 + "x": -1, + "y": 0.00041 }, { "max": { @@ -9405,12 +9405,12 @@ } }, { - "x": 522.767299802646, - "y": 249.2968937804748 + "x": 522.7673, + "y": 249.29689 }, { - "x": 410.4429174159961, - "y": 220.51608247720444 + "x": 410.44292, + "y": 220.51608 }, { "category": 1, @@ -9427,16 +9427,16 @@ "y": 0 }, { - "x": 466.5461832464353, - "y": 233.45575065934773 + "x": 466.54618, + "y": 233.45575 }, { - "x": 0.3728627948583894, - "y": -0.000912835670555867 + "x": 0.37286, + "y": -0.00091 }, { - "x": 466.40034419107667, - "y": 230.5563863441465 + "x": 466.40034, + "y": 230.55639 }, { "endCol": 10, @@ -9459,8 +9459,8 @@ "yScale": 1 }, { - "x": 0.1483070349665354, - "y": 2.899569797147592 + "x": 0.14831, + "y": 2.89957 }, [ { @@ -9480,36 +9480,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 410.4429174159961, - "y": 220.56191619599718 + "x": 410.44292, + "y": 220.56192 }, { "body": null, "index": 1, "isInternal": false, - "x": 522.6388957084408, - "y": 220.51608247720444 + "x": 522.6389, + "y": 220.51608 }, { "body": null, "index": 2, "isInternal": false, - "x": 522.6494490768746, - "y": 246.34958512269827 + "x": 522.64945, + "y": 246.34959 }, { "body": null, "index": 3, "isInternal": false, - "x": 410.4534707844296, - "y": 246.39541884149102 + "x": 410.45347, + "y": 246.39542 }, { - "angle": 0.0023322782413373578, - "anglePrev": 0.002741350031257132, - "angularSpeed": 0.0004276004912070715, - "angularVelocity": -0.00045201661393751017, - "area": 1297.1522559999999, + "angle": 0.00233, + "anglePrev": 0.00274, + "angularSpeed": 0.00043, + "angularVelocity": -0.00045, + "area": 1297.15226, "axes": { "#": 1069 }, @@ -9530,13 +9530,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1121.7359834972597, - "inverseInertia": 0.0008914753691704523, - "inverseMass": 0.7709195241919234, + "inertia": 1121.73598, + "inverseInertia": 0.00089, + "inverseMass": 0.77092, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.297152256, + "mass": 1.29715, "motion": 0, "parent": null, "position": { @@ -9558,7 +9558,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.893961839077161, + "speed": 2.89396, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9579,12 +9579,12 @@ } ], { - "x": 0.002332276126924877, - "y": -0.9999972802403352 + "x": 0.00233, + "y": -1 }, { - "x": 0.9999972802403352, - "y": 0.002332276126924877 + "x": 1, + "y": 0.00233 }, { "max": { @@ -9595,12 +9595,12 @@ } }, { - "x": 558.7817056681528, - "y": 255.56800254024796 + "x": 558.78171, + "y": 255.568 }, { - "x": 522.560774690553, - "y": 216.57667132479654 + "x": 522.56077, + "y": 216.57667 }, { "category": 1, @@ -9617,16 +9617,16 @@ "y": 0 }, { - "x": 540.6107253416146, - "y": 234.62662197585817 + "x": 540.61073, + "y": 234.62662 }, { - "x": 0.40116852532014974, - "y": 0.0011506367675472888 + "x": 0.40117, + "y": 0.00115 }, { - "x": 540.461581426799, - "y": 231.73556265165087 + "x": 540.46158, + "y": 231.73556 }, { "endCol": 11, @@ -9649,8 +9649,8 @@ "yScale": 1 }, { - "x": 0.1511353407589695, - "y": 2.8906793814075513 + "x": 0.15114, + "y": 2.89068 }, [ { @@ -9670,43 +9670,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 558.5766767356889, - "y": 252.6765726269198 + "x": 558.57668, + "y": 252.67657 }, { "body": null, "index": 1, "isInternal": false, - "x": 522.560774690553, - "y": 252.5925733699325 + "x": 522.56077, + "y": 252.59257 }, { "body": null, "index": 2, "isInternal": false, - "x": 522.6447739475403, - "y": 216.57667132479654 + "x": 522.64477, + "y": 216.57667 }, { "body": null, "index": 3, "isInternal": false, - "x": 558.6606759926763, - "y": 216.66067058178385 + "x": 558.66068, + "y": 216.66067 }, { - "angle": -0.0031162707564446235, - "anglePrev": -0.0026585286186129207, - "angularSpeed": 0.0004577421378317029, - "angularVelocity": -0.0004577421378317029, - "area": 6661.542482000001, + "angle": -0.00312, + "anglePrev": -0.00266, + "angularSpeed": 0.00046, + "angularVelocity": -0.00046, + "area": 6661.54248, "axes": { "#": 1091 }, "bounds": { "#": 1105 }, - "circleRadius": 46.273148148148145, + "circleRadius": 46.27315, "collisionFilter": { "#": 1108 }, @@ -9721,13 +9721,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 28251.272419191544, - "inverseInertia": 0.00003539663577491412, - "inverseMass": 0.15011538284144801, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "inverseMass": 0.15012, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 6.661542482000001, + "mass": 6.66154, "motion": 0, "parent": null, "position": { @@ -9749,7 +9749,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.902501684262926, + "speed": 2.9025, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9803,56 +9803,56 @@ } ], { - "x": -0.9716746826991208, - "y": -0.2363224724852951 + "x": -0.97167, + "y": -0.23632 }, { - "x": -0.8868944080040307, - "y": -0.46197219510613446 + "x": -0.88689, + "y": -0.46197 }, { - "x": -0.7505937313520973, - "y": -0.6607639899804892 + "x": -0.75059, + "y": -0.66076 }, { - "x": -0.5706153117123376, - "y": -0.8212174900959139 + "x": -0.57062, + "y": -0.82122 }, { - "x": -0.35755001751056886, - "y": -0.9338939902249034 + "x": -0.35755, + "y": -0.93389 }, { - "x": -0.12357426687695133, - "y": -0.9923353266743172 + "x": -0.12357, + "y": -0.99234 }, { - "x": 0.11738713571237896, - "y": -0.99308623007735 + "x": 0.11739, + "y": -0.99309 }, { - "x": 0.35172257771394316, - "y": -0.9361042828265768 + "x": 0.35172, + "y": -0.9361 }, { - "x": 0.5654859901319297, - "y": -0.8247579008196958 + "x": 0.56549, + "y": -0.82476 }, { - "x": 0.7464609408165712, - "y": -0.6654292327777909 + "x": 0.74646, + "y": -0.66543 }, { - "x": 0.8839979402989626, - "y": -0.4674907930079394 + "x": 0.884, + "y": -0.46749 }, { - "x": 0.9701829305312101, - "y": -0.24237384616718272 + "x": 0.97018, + "y": -0.24237 }, { - "x": 0.9999951444322157, - "y": -0.00311626571268836 + "x": 1, + "y": -0.00312 }, { "max": { @@ -9863,12 +9863,12 @@ } }, { - "x": 633.6802605272638, - "y": 340.7522728841481 + "x": 633.68026, + "y": 340.75227 }, { - "x": 541.7134760504183, - "y": 245.3048504465004 + "x": 541.71348, + "y": 245.30485 }, { "category": 1, @@ -9885,16 +9885,16 @@ "y": 0 }, { - "x": 587.7271010424803, - "y": 291.5776257648122 + "x": 587.7271, + "y": 291.57763 }, { - "x": -0.28999539975207084, - "y": 0.9887692769097483 + "x": -0.29, + "y": 0.98877 }, { - "x": 587.7875665497587, - "y": 288.6757539637881 + "x": 587.78757, + "y": 288.67575 }, { "endCol": 13, @@ -9917,8 +9917,8 @@ "yScale": 1 }, { - "x": -0.0604655072784476, - "y": 2.9018718010240705 + "x": -0.06047, + "y": 2.90187 }, [ { @@ -10004,190 +10004,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 633.6802605272638, - "y": 297.012449898677 + "x": 633.68026, + "y": 297.01245 }, { "body": null, "index": 1, "isInternal": false, - "x": 631.044025765564, - "y": 307.8517177374752 + "x": 631.04403, + "y": 307.85172 }, { "body": null, "index": 2, "isInternal": false, - "x": 625.8908302932716, - "y": 317.7448245004867 + "x": 625.89083, + "y": 317.74482 }, { "body": null, "index": 3, "isInternal": false, - "x": 618.5198870286074, - "y": 326.11783497397255 + "x": 618.51989, + "y": 326.11783 }, { "body": null, "index": 4, "isInternal": false, - "x": 609.3586793833967, - "y": 332.4834146397477 + "x": 609.35868, + "y": 332.48341 }, { "body": null, "index": 5, "isInternal": false, - "x": 598.941057974128, - "y": 336.4718980825049 + "x": 598.94106, + "y": 336.4719 }, { "body": null, "index": 6, "isInternal": false, - "x": 587.8713000058036, - "y": 337.85040108312404 + "x": 587.8713, + "y": 337.8504 }, { "body": null, "index": 7, "isInternal": false, - "x": 576.7931655152431, - "y": 336.5409171355096 + "x": 576.79317, + "y": 336.54092 }, { "body": null, "index": 8, "isInternal": false, - "x": 566.3508882116557, - "y": 332.6174389955191 + "x": 566.35089, + "y": 332.61744 }, { "body": null, "index": 9, "isInternal": false, - "x": 557.1501850148024, - "y": 326.3090802007602 + "x": 557.15019, + "y": 326.30908 }, { "body": null, "index": 10, "isInternal": false, - "x": 549.7272001127362, - "y": 317.982171762228 + "x": 549.7272, + "y": 317.98217 }, { "body": null, "index": 11, "isInternal": false, - "x": 544.5124459275555, - "y": 308.1213744421255 + "x": 544.51245, + "y": 308.12137 }, { "body": null, "index": 12, "isInternal": false, - "x": 541.8087066179874, - "y": 297.2987474622331 + "x": 541.80871, + "y": 297.29875 }, { "body": null, "index": 13, "isInternal": false, - "x": 541.7739415576967, - "y": 286.14280163094736 + "x": 541.77394, + "y": 286.1428 }, { "body": null, "index": 14, "isInternal": false, - "x": 544.4101763193966, - "y": 275.30353379214915 + "x": 544.41018, + "y": 275.30353 }, { "body": null, "index": 15, "isInternal": false, - "x": 549.563371791689, - "y": 265.4104270291377 + "x": 549.56337, + "y": 265.41043 }, { "body": null, "index": 16, "isInternal": false, - "x": 556.9343150563532, - "y": 257.03741655565193 + "x": 556.93432, + "y": 257.03742 }, { "body": null, "index": 17, "isInternal": false, - "x": 566.0955227015638, - "y": 250.67183688987677 + "x": 566.09552, + "y": 250.67184 }, { "body": null, "index": 18, "isInternal": false, - "x": 576.5131441108326, - "y": 246.68335344711957 + "x": 576.51314, + "y": 246.68335 }, { "body": null, "index": 19, "isInternal": false, - "x": 587.582902079157, - "y": 245.3048504465004 + "x": 587.5829, + "y": 245.30485 }, { "body": null, "index": 20, "isInternal": false, - "x": 598.6610365697175, - "y": 246.61433439411502 + "x": 598.66104, + "y": 246.61433 }, { "body": null, "index": 21, "isInternal": false, - "x": 609.1033138733048, - "y": 250.5378125341055 + "x": 609.10331, + "y": 250.53781 }, { "body": null, "index": 22, "isInternal": false, - "x": 618.3040170701581, - "y": 256.8461713288643 + "x": 618.30402, + "y": 256.84617 }, { "body": null, "index": 23, "isInternal": false, - "x": 625.7270019722243, - "y": 265.1730797673965 + "x": 625.727, + "y": 265.17308 }, { "body": null, "index": 24, "isInternal": false, - "x": 630.941756157405, - "y": 275.03387708749887 + "x": 630.94176, + "y": 275.03388 }, { "body": null, "index": 25, "isInternal": false, - "x": 633.6454954669732, - "y": 285.85650406739126 + "x": 633.6455, + "y": 285.8565 }, { - "angle": 0.021202818635086624, - "anglePrev": 0.017120435187225766, - "angularSpeed": 0.004082383447860858, - "angularVelocity": 0.004082383447860858, - "area": 1051.3111283901928, + "angle": 0.0212, + "anglePrev": 0.01712, + "angularSpeed": 0.00408, + "angularVelocity": 0.00408, + "area": 1051.31113, "axes": { "#": 1146 }, @@ -10208,13 +10208,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 749.5831282341722, - "inverseInertia": 0.0013340748508517612, - "inverseMass": 0.9511932034156603, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "inverseMass": 0.95119, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.0513111283901928, + "mass": 1.05131, "motion": 0, "parent": null, "position": { @@ -10236,7 +10236,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.892136320843546, + "speed": 2.89214, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10257,12 +10257,12 @@ } ], { - "x": -0.021201230015974765, - "y": 0.9997752286618276 + "x": -0.0212, + "y": 0.99978 }, { - "x": -0.9997752286618276, - "y": -0.021201230015974765 + "x": -0.99978, + "y": -0.0212 }, { "max": { @@ -10273,12 +10273,12 @@ } }, { - "x": 653.6047669689929, - "y": 251.7019629950224 + "x": 653.60477, + "y": 251.70196 }, { - "x": 623.0146856148411, - "y": 212.627002230666 + "x": 623.01469, + "y": 212.627 }, { "category": 1, @@ -10295,16 +10295,16 @@ "y": 0 }, { - "x": 638.4567478690996, - "y": 230.72590769980408 + "x": 638.45675, + "y": 230.72591 }, { - "x": -0.49568434966651065, - "y": 0.1106299566858554 + "x": -0.49568, + "y": 0.11063 }, { - "x": 638.7507910234647, - "y": 227.84875787372386 + "x": 638.75079, + "y": 227.84876 }, { "endCol": 13, @@ -10327,8 +10327,8 @@ "yScale": 1 }, { - "x": -0.29404315436514367, - "y": 2.87714982608022 + "x": -0.29404, + "y": 2.87715 }, [ { @@ -10348,36 +10348,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 624.0630546825768, - "y": 212.627002230666 + "x": 624.06305, + "y": 212.627 }, { "body": null, "index": 1, "isInternal": false, - "x": 653.6047669689929, - "y": 213.25346367849403 + "x": 653.60477, + "y": 213.25346 }, { "body": null, "index": 2, "isInternal": false, - "x": 652.8504410556224, - "y": 248.82481316894217 + "x": 652.85044, + "y": 248.82481 }, { "body": null, "index": 3, "isInternal": false, - "x": 623.3087287692063, - "y": 248.19835172111414 + "x": 623.30873, + "y": 248.19835 }, { - "angle": -0.029737821030243354, - "anglePrev": -0.024962294968339908, - "angularSpeed": 0.0047755260619034455, - "angularVelocity": -0.0047755260619034455, - "area": 6245.524001, + "angle": -0.02974, + "anglePrev": -0.02496, + "angularSpeed": 0.00478, + "angularVelocity": -0.00478, + "area": 6245.524, "axes": { "#": 1168 }, @@ -10398,13 +10398,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 24931.28629116745, - "inverseInertia": 0.00004011024494770155, - "inverseMass": 0.16011466769479796, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "inverseMass": 0.16011, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 6.245524001, + "mass": 6.24552, "motion": 0, "parent": null, "position": { @@ -10426,7 +10426,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7275651638900396, + "speed": 2.72757, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10462,32 +10462,32 @@ } ], { - "x": 0.6464792692038969, - "y": 0.7629315529518987 + "x": 0.64648, + "y": 0.76293 }, { - "x": -0.19345432297572965, - "y": 0.9811092828640458 + "x": -0.19345, + "y": 0.98111 }, { - "x": -0.8876725995098825, - "y": 0.4604751416519334 + "x": -0.88767, + "y": 0.46048 }, { - "x": -0.9134739683211672, - "y": -0.4068971727593834 + "x": -0.91347, + "y": -0.4069 }, { - "x": -0.2514299744319495, - "y": -0.9678754919705064 + "x": -0.25143, + "y": -0.96788 }, { - "x": 0.599987096881956, - "y": -0.8000096771759467 + "x": 0.59999, + "y": -0.80001 }, { - "x": 0.999557863584797, - "y": -0.029733438176516865 + "x": 0.99956, + "y": -0.02973 }, { "max": { @@ -10498,12 +10498,12 @@ } }, { - "x": 733.7750552724428, - "y": 323.2194460012919 + "x": 733.77506, + "y": 323.21945 }, { - "x": 642.1936958401824, - "y": 227.38556806801134 + "x": 642.1937, + "y": 227.38557 }, { "category": 1, @@ -10520,16 +10520,16 @@ "y": 0 }, { - "x": 690.134809091781, - "y": 274.25806974155114 + "x": 690.13481, + "y": 274.25807 }, { - "x": -0.6077757682805036, - "y": 0.7694614092313545 + "x": -0.60778, + "y": 0.76946 }, { - "x": 690.323007320338, - "y": 271.53700503264866 + "x": 690.32301, + "y": 271.53701 }, { "endCol": 15, @@ -10552,8 +10552,8 @@ "yScale": 1 }, { - "x": -0.18819822855699045, - "y": 2.7210647089024746 + "x": -0.1882, + "y": 2.72106 }, [ { @@ -10582,57 +10582,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 733.7750552724428, - "y": 293.6970898784088 + "x": 733.77506, + "y": 293.69709 }, { "body": null, "index": 1, "isInternal": false, - "x": 702.1459654413571, - "y": 320.4983812923894 + "x": 702.14597, + "y": 320.49838 }, { "body": null, "index": 2, "isInternal": false, - "x": 661.4715150103704, - "y": 312.4782265471746 + "x": 661.47152, + "y": 312.47823 }, { "body": null, "index": 3, "isInternal": false, - "x": 642.3818940687394, - "y": 275.6785561368999 + "x": 642.38189, + "y": 275.67856 }, { "body": null, "index": 4, "isInternal": false, - "x": 659.2503677117081, - "y": 237.80925502166312 + "x": 659.25037, + "y": 237.80926 }, { "body": null, "index": 5, "isInternal": false, - "x": 699.376176741462, - "y": 227.38556806801134 + "x": 699.37618, + "y": 227.38557 }, { "body": null, "index": 6, "isInternal": false, - "x": 732.5424258593971, - "y": 252.25941908563752 + "x": 732.54243, + "y": 252.25942 }, { - "angle": -0.17264182097219136, - "anglePrev": -0.1449910286118084, - "angularSpeed": 0.02765079236038295, - "angularVelocity": -0.02765079236038295, - "area": 1694.1455999999998, + "angle": -0.17264, + "anglePrev": -0.14499, + "angularSpeed": 0.02765, + "angularVelocity": -0.02765, + "area": 1694.1456, "axes": { "#": 1198 }, @@ -10653,13 +10653,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1913.4195426662397, - "inverseInertia": 0.0005226245356554463, - "inverseMass": 0.590268038355145, + "inertia": 1913.41954, + "inverseInertia": 0.00052, + "inverseMass": 0.59027, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 1.6941456, + "mass": 1.69415, "motion": 0, "parent": null, "position": { @@ -10681,7 +10681,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.9403723744940646, + "speed": 1.94037, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10702,12 +10702,12 @@ } ], { - "x": -0.17178549416550587, - "y": -0.9851343786480671 + "x": -0.17179, + "y": -0.98513 }, { - "x": 0.9851343786480671, - "y": -0.17178549416550587 + "x": 0.98513, + "y": -0.17179 }, { "max": { @@ -10718,12 +10718,12 @@ } }, { - "x": 777.9517542011863, - "y": 259.47852642189383 + "x": 777.95175, + "y": 259.47853 }, { - "x": 729.806989329101, - "y": 209.99197080076962 + "x": 729.80699, + "y": 209.99197 }, { "category": 1, @@ -10740,16 +10740,16 @@ "y": 0 }, { - "x": 754.142343218683, - "y": 233.80138178327303 + "x": 754.14234, + "y": 233.80138 }, { - "x": -0.23971779890706052, - "y": -0.04200588940050792 + "x": -0.23972, + "y": -0.04201 }, { - "x": 754.6682861257616, - "y": 231.9336481271557 + "x": 754.66829, + "y": 231.93365 }, { "endCol": 16, @@ -10772,8 +10772,8 @@ "yScale": 1 }, { - "x": -0.5259429070785814, - "y": 1.867733656117345 + "x": -0.52594, + "y": 1.86773 }, [ { @@ -10793,36 +10793,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 777.9517542011863, - "y": 250.54010182592415 + "x": 777.95175, + "y": 250.5401 }, { "body": null, "index": 1, "isInternal": false, - "x": 737.4036231760318, - "y": 257.61079276577647 + "x": 737.40362, + "y": 257.61079 }, { "body": null, "index": 2, "isInternal": false, - "x": 730.3329322361797, - "y": 217.0626617406219 + "x": 730.33293, + "y": 217.06266 }, { "body": null, "index": 3, "isInternal": false, - "x": 770.8810632613341, - "y": 209.99197080076962 + "x": 770.88106, + "y": 209.99197 }, { - "angle": 0.011439896323971126, - "anglePrev": 0.010535225931758464, - "angularSpeed": 0.000904670392212662, - "angularVelocity": 0.000904670392212662, - "area": 4695.386625, + "angle": 0.01144, + "anglePrev": 0.01054, + "angularSpeed": 0.0009, + "angularVelocity": 0.0009, + "area": 4695.38663, "axes": { "#": 1220 }, @@ -10843,13 +10843,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 14091.253878598987, - "inverseInertia": 0.00007096600548221932, - "inverseMass": 0.21297500714331483, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "inverseMass": 0.21298, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.695386625, + "mass": 4.69539, "motion": 0, "parent": null, "position": { @@ -10871,7 +10871,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.78587341892262, + "speed": 2.78587, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10907,32 +10907,32 @@ } ], { - "x": 0.6145155151809749, - "y": 0.7889047354413973 + "x": 0.61452, + "y": 0.7889 }, { - "x": -0.23366467469309415, - "y": 0.9723172423651504 + "x": -0.23366, + "y": 0.97232 }, { - "x": -0.90587631566063, - "y": 0.42354232459710933 + "x": -0.90588, + "y": 0.42354 }, { - "x": -0.8959495046028965, - "y": -0.4441559244249977 + "x": -0.89595, + "y": -0.44416 }, { - "x": -0.21135904139507922, - "y": -0.9774084896401062 + "x": -0.21136, + "y": -0.97741 }, { - "x": 0.632403079389446, - "y": -0.7746394936864154 + "x": 0.6324, + "y": -0.77464 }, { - "x": 0.999934565099682, - "y": 0.011439646800057407 + "x": 0.99993, + "y": 0.01144 }, { "max": { @@ -10943,12 +10943,12 @@ } }, { - "x": 951.6812026411636, - "y": 338.9742749825948 + "x": 951.6812, + "y": 338.97427 }, { - "x": 872.716236477969, - "y": 255.42376226980636 + "x": 872.71624, + "y": 255.42376 }, { "category": 1, @@ -10965,16 +10965,16 @@ "y": 0 }, { - "x": 914.1366509922472, - "y": 295.70067044748 + "x": 914.13665, + "y": 295.70067 }, { - "x": 0.9616453007243483, - "y": 0.647346642240987 + "x": 0.96165, + "y": 0.64735 }, { - "x": 914.1161369951993, - "y": 292.91487255779293 + "x": 914.11614, + "y": 292.91487 }, { "endCol": 19, @@ -10997,8 +10997,8 @@ "yScale": 1 }, { - "x": 0.02051399704780465, - "y": 2.785797889687034 + "x": 0.02051, + "y": 2.7858 }, [ { @@ -11027,57 +11027,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 951.2494791002409, - "y": 314.0994320139157 + "x": 951.24948, + "y": 314.09943 }, { "body": null, "index": 1, "isInternal": false, - "x": 922.8919326531617, - "y": 336.18847709290776 + "x": 922.89193, + "y": 336.18848 }, { "body": null, "index": 2, "isInternal": false, - "x": 887.9407315539969, - "y": 327.78909808456746 + "x": 887.94073, + "y": 327.7891 }, { "body": null, "index": 3, "isInternal": false, - "x": 872.716236477969, - "y": 295.2268045277554 + "x": 872.71624, + "y": 295.2268 }, { "body": null, "index": 4, "isInternal": false, - "x": 888.6817003565302, - "y": 263.0213364339306 + "x": 888.6817, + "y": 263.02134 }, { "body": null, "index": 5, "isInternal": false, - "x": 923.8159129252022, - "y": 255.42376226980636 + "x": 923.81591, + "y": 255.42376 }, { "body": null, "index": 6, "isInternal": false, - "x": 951.6606886441158, - "y": 278.15578413684256 + "x": 951.66069, + "y": 278.15578 }, { - "angle": 0.004633469188033407, - "anglePrev": 0.0041472198984108645, - "angularSpeed": 0.00048624928962254265, - "angularVelocity": 0.00048624928962254265, - "area": 2533.681298803042, + "angle": 0.00463, + "anglePrev": 0.00415, + "angularSpeed": 0.00049, + "angularVelocity": 0.00049, + "area": 2533.6813, "axes": { "#": 1250 }, @@ -11098,13 +11098,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 9087.287047208478, - "inverseInertia": 0.00011004384419739331, - "inverseMass": 0.3946826305551604, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "inverseMass": 0.39468, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.533681298803042, + "mass": 2.53368, "motion": 0, "parent": null, "position": { @@ -11126,7 +11126,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8271124807312877, + "speed": 2.82711, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11147,12 +11147,12 @@ } ], { - "x": -0.0046334526086978505, - "y": 0.9999892655008468 + "x": -0.00463, + "y": 0.99999 }, { - "x": -0.9999892655008468, - "y": -0.0046334526086978505 + "x": -0.99999, + "y": -0.00463 }, { "max": { @@ -11163,12 +11163,12 @@ } }, { - "x": 1042.6516480672617, - "y": 272.22779913640716 + "x": 1042.65165, + "y": 272.2278 }, { - "x": 941.8564573268185, - "y": 243.75626802472547 + "x": 941.85646, + "y": 243.75627 }, { "category": 1, @@ -11185,16 +11185,16 @@ "y": 0 }, { - "x": 992.2277787244673, - "y": 256.5787215403424 + "x": 992.22778, + "y": 256.57872 }, { - "x": 1.4926784031575835, - "y": 1.002040984954575 + "x": 1.49268, + "y": 1.00204 }, { - "x": 992.1752307793219, - "y": 253.7520974598946 + "x": 992.17523, + "y": 253.7521 }, { "endCol": 21, @@ -11217,8 +11217,8 @@ "yScale": 1 }, { - "x": 0.052547945145411175, - "y": 2.8266240804478424 + "x": 0.05255, + "y": 2.82662 }, [ { @@ -11238,36 +11238,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 941.973122690012, - "y": 243.75626802472547 + "x": 941.97312, + "y": 243.75627 }, { "body": null, "index": 1, "isInternal": false, - "x": 1042.5991001221164, - "y": 244.2225187273288 + "x": 1042.5991, + "y": 244.22252 }, { "body": null, "index": 2, "isInternal": false, - "x": 1042.4824347589226, - "y": 269.4011750559593 + "x": 1042.48243, + "y": 269.40118 }, { "body": null, "index": 3, "isInternal": false, - "x": 941.8564573268185, - "y": 268.934924353356 + "x": 941.85646, + "y": 268.93492 }, { - "angle": 0.06722815882383285, - "anglePrev": 0.054404860161809274, - "angularSpeed": 0.01221406545691453, - "angularVelocity": 0.013102545883339568, - "area": 2082.1047164947227, + "angle": 0.06723, + "anglePrev": 0.0544, + "angularSpeed": 0.01221, + "angularVelocity": 0.0131, + "area": 2082.10472, "axes": { "#": 1272 }, @@ -11288,13 +11288,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 2917.86500075833, - "inverseInertia": 0.0003427163353136995, - "inverseMass": 0.4802832403566742, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "inverseMass": 0.48028, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.082104716494723, + "mass": 2.0821, "motion": 0, "parent": null, "position": { @@ -11316,7 +11316,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.256491202722829, + "speed": 1.25649, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11337,12 +11337,12 @@ } ], { - "x": -0.06717752925150484, - "y": 0.9977410383279137 + "x": -0.06718, + "y": 0.99774 }, { - "x": -0.9977410383279137, - "y": -0.06717752925150484 + "x": -0.99774, + "y": -0.06718 }, { "max": { @@ -11353,12 +11353,12 @@ } }, { - "x": 66.21401758807141, - "y": 356.6951619859122 + "x": 66.21402, + "y": 356.69516 }, { - "x": 20.180174177060916, - "y": 303.81607996232856 + "x": 20.18017, + "y": 303.81608 }, { "category": 1, @@ -11375,16 +11375,16 @@ "y": 0 }, { - "x": 43.063337663900576, - "y": 329.6417795657995 + "x": 43.06334, + "y": 329.64178 }, { "x": 0, "y": 0 }, { - "x": 42.754099395580255, - "y": 328.6542271106857 + "x": 42.7541, + "y": 328.65423 }, { "endCol": 1, @@ -11407,8 +11407,8 @@ "yScale": 1 }, { - "x": 0.2996675536897442, - "y": 1.013850788119953 + "x": 0.29967, + "y": 1.01385 }, [ { @@ -11428,36 +11428,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 23.46526420993744, - "y": 303.81607996232856 + "x": 23.46526, + "y": 303.81608 }, { "body": null, "index": 1, "isInternal": false, - "x": 65.94650115074023, - "y": 306.67632568501966 + "x": 65.9465, + "y": 306.67633 }, { "body": null, "index": 2, "isInternal": false, - "x": 62.66141111786369, - "y": 355.4674791692704 + "x": 62.66141, + "y": 355.46748 }, { "body": null, "index": 3, "isInternal": false, - "x": 20.180174177060916, - "y": 352.6072334465793 + "x": 20.18017, + "y": 352.60723 }, { - "angle": 0.05677132588051166, - "anglePrev": 0.044958688709466, - "angularSpeed": 0.010763657341847784, - "angularVelocity": 0.01171574057898974, - "area": 2570.1808866424026, + "angle": 0.05677, + "anglePrev": 0.04496, + "angularSpeed": 0.01076, + "angularVelocity": 0.01172, + "area": 2570.18089, "axes": { "#": 1294 }, @@ -11478,13 +11478,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 7426.992944977438, - "inverseInertia": 0.00013464399487227974, - "inverseMass": 0.38907767355875333, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "inverseMass": 0.38908, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5701808866424027, + "mass": 2.57018, "motion": 0, "parent": null, "position": { @@ -11506,7 +11506,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.265547464563466, + "speed": 2.26555, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11527,12 +11527,12 @@ } ], { - "x": -0.05674083528724258, - "y": 0.9983889410499829 + "x": -0.05674, + "y": 0.99839 }, { - "x": -0.9983889410499829, - "y": -0.05674083528724258 + "x": -0.99839, + "y": -0.05674 }, { "max": { @@ -11543,12 +11543,12 @@ } }, { - "x": 154.39232611033833, - "y": 344.4639403360362 + "x": 154.39233, + "y": 344.46394 }, { - "x": 64.10070856907119, - "y": 308.19443625128434 + "x": 64.10071, + "y": 308.19444 }, { "category": 1, @@ -11565,16 +11565,16 @@ "y": 0 }, { - "x": 109.0827616307748, - "y": 325.2083134583908 + "x": 109.08276, + "y": 325.20831 }, { - "x": 0.02535185186785176, - "y": 0.004168131419813799 + "x": 0.02535, + "y": 0.00417 }, { - "x": 108.70522007337591, - "y": 323.09957680099814 + "x": 108.70522, + "y": 323.09958 }, { "endCol": 3, @@ -11597,8 +11597,8 @@ "yScale": 1 }, { - "x": 0.36808911436311575, - "y": 2.1050324983839346 + "x": 0.36809, + "y": 2.10503 }, [ { @@ -11618,36 +11618,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 65.74933533180409, - "y": 308.19443625128434 + "x": 65.74934, + "y": 308.19444 }, { "body": null, "index": 1, "isInternal": false, - "x": 154.06481469247836, - "y": 313.2136165142867 + "x": 154.06481, + "y": 313.21362 }, { "body": null, "index": 2, "isInternal": false, - "x": 152.4161879297455, - "y": 342.2221906654973 + "x": 152.41619, + "y": 342.22219 }, { "body": null, "index": 3, "isInternal": false, - "x": 64.10070856907119, - "y": 337.20301040249495 + "x": 64.10071, + "y": 337.20301 }, { - "angle": 0.03146318074977658, - "anglePrev": 0.02105583909934935, - "angularSpeed": 0.008880071404821254, - "angularVelocity": 0.010516259214790161, - "area": 2248.277056, + "angle": 0.03146, + "anglePrev": 0.02106, + "angularSpeed": 0.00888, + "angularVelocity": 0.01052, + "area": 2248.27706, "axes": { "#": 1316 }, @@ -11668,13 +11668,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 3369.8331470240178, - "inverseInertia": 0.00029675059754312303, - "inverseMass": 0.44478503987366225, + "inertia": 3369.83315, + "inverseInertia": 0.0003, + "inverseMass": 0.44479, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 2.248277056, + "mass": 2.24828, "motion": 0, "parent": null, "position": { @@ -11696,7 +11696,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8821235575287165, + "speed": 2.88212, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11717,12 +11717,12 @@ } ], { - "x": 0.031457989939817854, - "y": -0.999505074959075 + "x": 0.03146, + "y": -0.99951 }, { - "x": 0.999505074959075, - "y": 0.031457989939817854 + "x": 0.99951, + "y": 0.03146 }, { "max": { @@ -11733,12 +11733,12 @@ } }, { - "x": 201.62971736168177, - "y": 364.59882428638514 + "x": 201.62972, + "y": 364.59882 }, { - "x": 152.49749243936284, - "y": 312.8432527090112 + "x": 152.49749, + "y": 312.84325 }, { "category": 1, @@ -11755,16 +11755,16 @@ "y": 0 }, { - "x": 176.93956478198578, - "y": 337.2853250516342 + "x": 176.93956, + "y": 337.28533 }, { - "x": 0.041155616778280925, - "y": 0.0006664143465081032 + "x": 0.04116, + "y": 0.00067 }, { - "x": 176.6704009702522, - "y": 334.39851711243364 + "x": 176.6704, + "y": 334.39852 }, { "endCol": 4, @@ -11787,8 +11787,8 @@ "yScale": 1 }, { - "x": 0.279969636735359, - "y": 2.891042452318004 + "x": 0.27997, + "y": 2.89104 }, [ { @@ -11808,36 +11808,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 199.8900250736223, - "y": 361.72739739425714 + "x": 199.89003, + "y": 361.7274 }, { "body": null, "index": 1, "isInternal": false, - "x": 152.49749243936284, - "y": 360.2357853432707 + "x": 152.49749, + "y": 360.23579 }, { "body": null, "index": 2, "isInternal": false, - "x": 153.98910449034926, - "y": 312.8432527090112 + "x": 153.9891, + "y": 312.84325 }, { "body": null, "index": 3, "isInternal": false, - "x": 201.38163712460872, - "y": 314.33486475999763 + "x": 201.38164, + "y": 314.33486 }, { - "angle": -0.0019667117595435876, - "anglePrev": -0.0008442988893928206, - "angularSpeed": 0.000809733737747048, - "angularVelocity": -0.0011253448291301791, - "area": 4167.4330549999995, + "angle": -0.00197, + "anglePrev": -0.00084, + "angularSpeed": 0.00081, + "angularVelocity": -0.00113, + "area": 4167.43305, "axes": { "#": 1338 }, @@ -11858,13 +11858,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 11100.542061550868, - "inverseInertia": 0.00009008569081177725, - "inverseMass": 0.23995586415004816, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "inverseMass": 0.23996, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 4.167433054999999, + "mass": 4.16743, "motion": 0, "parent": null, "position": { @@ -11886,7 +11886,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9603202011306062, + "speed": 2.96032, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -11922,32 +11922,32 @@ } ], { - "x": 0.6250459577852366, - "y": 0.7805879519031381 + "x": 0.62505, + "y": 0.78059 }, { - "x": -0.22061190408601444, - "y": 0.9753616702411178 + "x": -0.22061, + "y": 0.97536 }, { - "x": -0.9001175477450809, - "y": 0.43564710516814226 + "x": -0.90012, + "y": 0.43565 }, { - "x": -0.9018241646762404, - "y": -0.43210320064308877 + "x": -0.90182, + "y": -0.4321 }, { - "x": -0.224446698094699, - "y": -0.9744863671259785 + "x": -0.22445, + "y": -0.97449 }, { - "x": 0.6219707474006786, - "y": -0.7830404774836617 + "x": 0.62197, + "y": -0.78304 }, { - "x": 0.9999980660230507, - "y": -0.0019667104916850212 + "x": 1, + "y": -0.00197 }, { "max": { @@ -11958,12 +11958,12 @@ } }, { - "x": 274.42865055407464, - "y": 392.94884489126395 + "x": 274.42865, + "y": 392.94884 }, { - "x": 200.1094860110172, - "y": 313.89639557332345 + "x": 200.10949, + "y": 313.8964 }, { "category": 1, @@ -11980,16 +11980,16 @@ "y": 0 }, { - "x": 239.13420068007554, - "y": 351.960401317942 + "x": 239.1342, + "y": 351.9604 }, { - "x": 0.05662665093967504, - "y": 0.004434554667975945 + "x": 0.05663, + "y": 0.00443 }, { - "x": 239.00121532623697, - "y": 348.979598070177 + "x": 239.00122, + "y": 348.9796 }, { "endCol": 5, @@ -12012,8 +12012,8 @@ "yScale": 1 }, { - "x": 0.13139877205969697, - "y": 2.980989844936289 + "x": 0.1314, + "y": 2.98099 }, [ { @@ -12042,57 +12042,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 274.3276428809825, - "y": 368.8232186182269 + "x": 274.32764, + "y": 368.82322 }, { "body": null, "index": 1, "isInternal": false, - "x": 247.89322117698805, - "y": 389.99024840928155 + "x": 247.89322, + "y": 389.99025 }, { "body": null, "index": 2, "isInternal": false, - "x": 214.8624638989056, - "y": 382.51919589732535 + "x": 214.86246, + "y": 382.5192 }, { "body": null, "index": 3, "isInternal": false, - "x": 200.1094860110172, - "y": 352.03715178215026 + "x": 200.10949, + "y": 352.03715 }, { "body": null, "index": 4, "isInternal": false, - "x": 214.742451291282, - "y": 321.49731391246667 + "x": 214.74245, + "y": 321.49731 }, { "body": null, "index": 5, "isInternal": false, - "x": 247.7435663088338, - "y": 313.89639557332345 + "x": 247.74357, + "y": 313.8964 }, { "body": null, "index": 6, "isInternal": false, - "x": 274.26104219689216, - "y": 334.9592841104224 + "x": 274.26104, + "y": 334.95928 }, { - "angle": -0.0017431587187402549, - "anglePrev": -0.0007578602120147323, - "angularSpeed": 0.0009499166661225214, - "angularVelocity": -0.0009826133177112226, - "area": 1687.7661798887366, + "angle": -0.00174, + "anglePrev": -0.00076, + "angularSpeed": 0.00095, + "angularVelocity": -0.00098, + "area": 1687.76618, "axes": { "#": 1368 }, @@ -12113,13 +12113,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1980.3012000583947, - "inverseInertia": 0.0005049736878261308, - "inverseMass": 0.5924991340127004, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "inverseMass": 0.5925, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.6877661798887367, + "mass": 1.68777, "motion": 0, "parent": null, "position": { @@ -12141,7 +12141,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9096025580560694, + "speed": 2.9096, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12162,12 +12162,12 @@ } ], { - "x": 0.0017431578359460346, - "y": 0.9999984806992251 + "x": 0.00174, + "y": 1 }, { - "x": -0.9999984806992251, - "y": 0.0017431578359460346 + "x": -1, + "y": 0.00174 }, { "max": { @@ -12178,12 +12178,12 @@ } }, { - "x": 309.83311722879176, - "y": 364.24046263111063 + "x": 309.83312, + "y": 364.24046 }, { - "x": 274.15821228466126, - "y": 313.74124771728646 + "x": 274.15821, + "y": 313.74125 }, { "category": 1, @@ -12200,16 +12200,16 @@ "y": 0 }, { - "x": 291.9547545600801, - "y": 337.5366292229544 + "x": 291.95475, + "y": 337.53663 }, { - "x": 0.06354037008532114, - "y": -0.00009692770590290902 + "x": 0.06354, + "y": -0.0001 }, { - "x": 291.8350166384125, - "y": 334.6136999508591 + "x": 291.83502, + "y": 334.6137 }, { "endCol": 6, @@ -12232,8 +12232,8 @@ "yScale": 1 }, { - "x": 0.11886920659782163, - "y": 2.922811426954979 + "x": 0.11887, + "y": 2.92281 }, [ { @@ -12253,36 +12253,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 274.15821228466126, - "y": 313.8031477541851 + "x": 274.15821, + "y": 313.80315 }, { "body": null, "index": 1, "isInternal": false, - "x": 309.6684463996968, - "y": 313.74124771728646 + "x": 309.66845, + "y": 313.74125 }, { "body": null, "index": 2, "isInternal": false, - "x": 309.751296835499, - "y": 361.2701106917237 + "x": 309.7513, + "y": 361.27011 }, { "body": null, "index": 3, "isInternal": false, - "x": 274.24106272046345, - "y": 361.3320107286223 + "x": 274.24106, + "y": 361.33201 }, { - "angle": 0.0012304495126803632, - "anglePrev": 0.002010440451543523, - "angularSpeed": 0.0009093215849850551, - "angularVelocity": -0.0008270701485718606, - "area": 888.874596, + "angle": 0.00123, + "anglePrev": 0.00201, + "angularSpeed": 0.00091, + "angularVelocity": -0.00083, + "area": 888.8746, "axes": { "#": 1390 }, @@ -12303,13 +12303,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 55, - "inertia": 526.7320316094421, - "inverseInertia": 0.0018984985533241191, - "inverseMass": 1.125018089728374, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "inverseMass": 1.12502, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 0.888874596, + "mass": 0.88887, "motion": 0, "parent": null, "position": { @@ -12331,7 +12331,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.930435343794055, + "speed": 2.93044, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12352,12 +12352,12 @@ } ], { - "x": 0.0012304492021957287, - "y": -0.9999992429970938 + "x": 0.00123, + "y": -1 }, { - "x": 0.9999992429970938, - "y": 0.0012304492021957287 + "x": 1, + "y": 0.00123 }, { "max": { @@ -12368,12 +12368,12 @@ } }, { - "x": 339.5982687865267, - "y": 346.5316915071004 + "x": 339.59827, + "y": 346.53169 }, { - "x": 309.664336900207, - "y": 313.751777436921 + "x": 309.66434, + "y": 313.75178 }, { "category": 1, @@ -12390,16 +12390,16 @@ "y": 0 }, { - "x": 324.58966792182184, - "y": 328.6771084585358 + "x": 324.58967, + "y": 328.67711 }, { - "x": 0.05565570292671088, - "y": -0.00007155501227893003 + "x": 0.05566, + "y": -0.00007 }, { - "x": 324.4756772360079, - "y": 325.78363660386367 + "x": 324.47568, + "y": 325.78364 }, { "endCol": 7, @@ -12422,8 +12422,8 @@ "yScale": 1 }, { - "x": 0.11564017374087143, - "y": 2.893695615192712 + "x": 0.11564, + "y": 2.8937 }, [ { @@ -12443,36 +12443,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 339.4783143309224, - "y": 343.6024394801507 + "x": 339.47831, + "y": 343.60244 }, { "body": null, "index": 1, "isInternal": false, - "x": 309.664336900207, - "y": 343.5657548676364 + "x": 309.66434, + "y": 343.56575 }, { "body": null, "index": 2, "isInternal": false, - "x": 309.7010215127213, - "y": 313.751777436921 + "x": 309.70102, + "y": 313.75178 }, { "body": null, "index": 3, "isInternal": false, - "x": 339.5149989434367, - "y": 313.7884620494353 + "x": 339.515, + "y": 313.78846 }, { - "angle": 0.0018137321209400542, - "anglePrev": 0.0013671117499532547, - "angularSpeed": 0.0004466203709867994, - "angularVelocity": 0.0004466203709867994, - "area": 1624.121534624581, + "angle": 0.00181, + "anglePrev": 0.00137, + "angularSpeed": 0.00045, + "angularVelocity": 0.00045, + "area": 1624.12153, "axes": { "#": 1412 }, @@ -12493,13 +12493,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 56, - "inertia": 1766.6812602831346, - "inverseInertia": 0.0005660330601116675, - "inverseMass": 0.6157174686013581, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "inverseMass": 0.61572, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.624121534624581, + "mass": 1.62412, "motion": 0, "parent": null, "position": { @@ -12521,7 +12521,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8892466338157514, + "speed": 2.88925, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12542,12 +12542,12 @@ } ], { - "x": -0.0018137311265240363, - "y": 0.9999983551883477 + "x": -0.00181, + "y": 1 }, { - "x": -0.9999983551883477, - "y": -0.0018137311265240363 + "x": -1, + "y": -0.00181 }, { "max": { @@ -12558,12 +12558,12 @@ } }, { - "x": 382.24900272544687, - "y": 355.0088817150074 + "x": 382.249, + "y": 355.00888 }, { - "x": 339.8706274773379, - "y": 313.6379706220448 + "x": 339.87063, + "y": 313.63797 }, { "category": 1, @@ -12580,16 +12580,16 @@ "y": 0 }, { - "x": 361.0500325798749, - "y": 332.87883597403265 + "x": 361.05003, + "y": 332.87884 }, { - "x": 0.09109220443264873, + "x": 0.09109, "y": 0 }, { - "x": 361.03046753683986, - "y": 329.98965558504574 + "x": 361.03047, + "y": 329.98966 }, { "endCol": 7, @@ -12612,8 +12612,8 @@ "yScale": 1 }, { - "x": 0.019565043035034934, - "y": 2.8891803889869334 + "x": 0.01957, + "y": 2.88918 }, [ { @@ -12633,36 +12633,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 339.94028398919016, - "y": 313.6379706220448 + "x": 339.94028, + "y": 313.63797 }, { "body": null, "index": 1, "isInternal": false, - "x": 382.22943768241186, - "y": 313.7146719025717 + "x": 382.22944, + "y": 313.71467 }, { "body": null, "index": 2, "isInternal": false, - "x": 382.1597811705596, - "y": 352.1197013260205 + "x": 382.15978, + "y": 352.1197 }, { "body": null, "index": 3, "isInternal": false, - "x": 339.8706274773379, - "y": 352.0430000454936 + "x": 339.87063, + "y": 352.043 }, { - "angle": -0.0030361912916911584, - "anglePrev": -0.001905906516008805, - "angularSpeed": 0.0011302847756823533, - "angularVelocity": -0.0011302847756823533, - "area": 925.4335858447538, + "angle": -0.00304, + "anglePrev": -0.00191, + "angularSpeed": 0.00113, + "angularVelocity": -0.00113, + "area": 925.43359, "axes": { "#": 1434 }, @@ -12683,13 +12683,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 57, - "inertia": 658.9066011822378, - "inverseInertia": 0.001517665778739746, - "inverseMass": 1.080574570985751, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "inverseMass": 1.08057, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 0.9254335858447538, + "mass": 0.92543, "motion": 0, "parent": null, "position": { @@ -12711,7 +12711,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.870814404895625, + "speed": 2.87081, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12732,12 +12732,12 @@ } ], { - "x": 0.0030361866268598815, - "y": 0.999995390774761 + "x": 0.00304, + "y": 1 }, { - "x": -0.999995390774761, - "y": 0.0030361866268598815 + "x": -1, + "y": 0.00304 }, { "max": { @@ -12748,12 +12748,12 @@ } }, { - "x": 423.5142835564444, - "y": 335.72056813728915 + "x": 423.51428, + "y": 335.72057 }, { - "x": 383.4306155048064, - "y": 312.47122806690504 + "x": 383.43062, + "y": 312.47123 }, { "category": 1, @@ -12770,16 +12770,16 @@ "y": 0 }, { - "x": 403.4724495306254, - "y": 324.0958981020971 + "x": 403.47245, + "y": 324.0959 }, { "x": 0, "y": 0 }, { - "x": 403.4665092550265, - "y": 321.22508984300316 + "x": 403.46651, + "y": 321.22509 }, { "endCol": 8, @@ -12802,8 +12802,8 @@ "yScale": 1 }, { - "x": 0.005940275598887297, - "y": 2.8708082590939488 + "x": 0.00594, + "y": 2.87081 }, [ { @@ -12823,36 +12823,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 383.4306155048064, - "y": 312.592716920326 + "x": 383.43062, + "y": 312.59272 }, { "body": null, "index": 1, "isInternal": false, - "x": 423.44406276020806, - "y": 312.47122806690504 + "x": 423.44406, + "y": 312.47123 }, { "body": null, "index": 2, "isInternal": false, - "x": 423.5142835564444, - "y": 335.5990792838682 + "x": 423.51428, + "y": 335.59908 }, { "body": null, "index": 3, "isInternal": false, - "x": 383.50083630104274, - "y": 335.72056813728915 + "x": 383.50084, + "y": 335.72057 }, { - "angle": -0.00005015320501374066, - "anglePrev": -0.00001695455662432588, - "angularSpeed": 0.00003319864838941478, - "angularVelocity": -0.00003319864838941478, - "area": 5929.347511999999, + "angle": -0.00005, + "anglePrev": -0.00002, + "angularSpeed": 0.00003, + "angularVelocity": -0.00003, + "area": 5929.34751, "axes": { "#": 1456 }, @@ -12874,13 +12874,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 58, - "inertia": 22382.17146584697, - "inverseInertia": 0.00004467841744157413, - "inverseMass": 0.1686526212161066, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "inverseMass": 0.16865, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.929347512, + "mass": 5.92935, "motion": 0, "parent": null, "position": { @@ -12902,7 +12902,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9170723346609937, + "speed": 2.91707, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -12956,56 +12956,56 @@ } ], { - "x": -0.9709484609388433, - "y": -0.23928870888633874 + "x": -0.97095, + "y": -0.23929 }, { - "x": -0.8854788823757126, - "y": -0.4646796195946828 + "x": -0.88548, + "y": -0.46468 }, { - "x": -0.7485163231770586, - "y": -0.6631163653066459 + "x": -0.74852, + "y": -0.66312 }, { - "x": -0.5681538574707484, - "y": -0.8229223500677986 + "x": -0.56815, + "y": -0.82292 }, { - "x": -0.3546667535660669, - "y": -0.9349927774667067 + "x": -0.35467, + "y": -0.93499 }, { - "x": -0.1205287065037877, - "y": -0.9927098422542832 + "x": -0.12053, + "y": -0.99271 }, { - "x": 0.12042913073713693, - "y": -0.9927219270621042 + "x": 0.12043, + "y": -0.99272 }, { - "x": 0.35457296601309707, - "y": -0.9350283481117966 + "x": 0.35457, + "y": -0.93503 }, { - "x": 0.5680713102260153, - "y": -0.8229793354016235 + "x": 0.56807, + "y": -0.82298 }, { - "x": 0.7484498045895837, - "y": -0.6631914429558133 + "x": 0.74845, + "y": -0.66319 }, { - "x": 0.8854322675767683, - "y": -0.46476843646472193 + "x": 0.88543, + "y": -0.46477 }, { - "x": 0.9709244538629965, - "y": -0.23938610003682706 + "x": 0.97092, + "y": -0.23939 }, { - "x": 0.999999998742328, - "y": -0.00005015320499271523 + "x": 1, + "y": -0.00005 }, { "max": { @@ -13016,12 +13016,12 @@ } }, { - "x": 503.97818035099203, - "y": 409.0961017355416 + "x": 503.97818, + "y": 409.0961 }, { - "x": 417.2826682446243, - "y": 318.86709128690546 + "x": 417.28267, + "y": 318.86709 }, { "category": 1, @@ -13038,16 +13038,16 @@ "y": 0 }, { - "x": 460.63991649933234, - "y": 362.5230912320005 + "x": 460.63992, + "y": 362.52309 }, { - "x": 0.16652616275015286, - "y": 0.6319223008848586 + "x": 0.16653, + "y": 0.63192 }, { - "x": 460.6589009023807, - "y": 359.6060806735545 + "x": 460.6589, + "y": 359.60608 }, { "endCol": 10, @@ -13070,8 +13070,8 @@ "yScale": 1 }, { - "x": -0.01898440304834253, - "y": 2.9170105584459987 + "x": -0.01898, + "y": 2.91701 }, [ { @@ -13157,190 +13157,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 503.97818035099203, - "y": 367.78291768578464 + "x": 503.97818, + "y": 367.78292 }, { "body": null, "index": 1, "isInternal": false, - "x": 501.45969286976197, - "y": 378.0020440088559 + "x": 501.45969, + "y": 378.00204 }, { "body": null, "index": 2, "isInternal": false, - "x": 496.56916025363046, - "y": 387.3212892964613 + "x": 496.56916, + "y": 387.32129 }, { "body": null, "index": 3, "isInternal": false, - "x": 489.5905553192036, - "y": 395.1986393057723 + "x": 489.59056, + "y": 395.19864 }, { "body": null, "index": 4, "isInternal": false, - "x": 480.9298551961089, - "y": 401.17807367516104 + "x": 480.92986, + "y": 401.17807 }, { "body": null, "index": 5, "isInternal": false, - "x": 471.0900423802454, - "y": 404.91056717800456 + "x": 471.09004, + "y": 404.91057 }, { "body": null, "index": 6, "isInternal": false, - "x": 460.6421059876495, - "y": 406.1790911770956 + "x": 460.64211, + "y": 406.17909 }, { "body": null, "index": 7, "isInternal": false, - "x": 450.19404240652574, - "y": 404.91161517937604 + "x": 450.19404, + "y": 404.91162 }, { "body": null, "index": 8, "isInternal": false, - "x": 440.3538552471402, - "y": 401.18010869160685 + "x": 440.35386, + "y": 401.18011 }, { "body": null, "index": 9, "isInternal": false, - "x": 431.69255539202027, - "y": 395.2015430760349 + "x": 431.69256, + "y": 395.20154 }, { "body": null, "index": 10, "isInternal": false, - "x": 424.71316034400184, - "y": 387.3248931051593 + "x": 424.71316, + "y": 387.32489 }, { "body": null, "index": 11, "isInternal": false, - "x": 419.82169297243576, - "y": 378.0061384162051 + "x": 419.82169, + "y": 378.00614 }, { "body": null, "index": 12, "isInternal": false, - "x": 417.302180460002, - "y": 367.78726476498065 + "x": 417.30218, + "y": 367.78726 }, { "body": null, "index": 13, "isInternal": false, - "x": 417.30165264767265, - "y": 357.2632647782164 + "x": 417.30165, + "y": 357.26326 }, { "body": null, "index": 14, "isInternal": false, - "x": 419.8201401289027, - "y": 347.0441384551452 + "x": 419.82014, + "y": 347.04414 }, { "body": null, "index": 15, "isInternal": false, - "x": 424.71067274503423, - "y": 337.72489316753973 + "x": 424.71067, + "y": 337.72489 }, { "body": null, "index": 16, "isInternal": false, - "x": 431.6892776794611, - "y": 329.84754315822875 + "x": 431.68928, + "y": 329.84754 }, { "body": null, "index": 17, "isInternal": false, - "x": 440.34997780255577, - "y": 323.86810878884 + "x": 440.34998, + "y": 323.86811 }, { "body": null, "index": 18, "isInternal": false, - "x": 450.1897906184193, - "y": 320.1356152859965 + "x": 450.18979, + "y": 320.13562 }, { "body": null, "index": 19, "isInternal": false, - "x": 460.6377270110152, - "y": 318.86709128690546 + "x": 460.63773, + "y": 318.86709 }, { "body": null, "index": 20, "isInternal": false, - "x": 471.08579059213895, - "y": 320.134567284625 + "x": 471.08579, + "y": 320.13457 }, { "body": null, "index": 21, "isInternal": false, - "x": 480.9259777515245, - "y": 323.8660737723942 + "x": 480.92598, + "y": 323.86607 }, { "body": null, "index": 22, "isInternal": false, - "x": 489.5872776066444, - "y": 329.84463938796614 + "x": 489.58728, + "y": 329.84464 }, { "body": null, "index": 23, "isInternal": false, - "x": 496.56667265466285, - "y": 337.7212893588418 + "x": 496.56667, + "y": 337.72129 }, { "body": null, "index": 24, "isInternal": false, - "x": 501.45814002622893, - "y": 347.04004404779596 + "x": 501.45814, + "y": 347.04004 }, { "body": null, "index": 25, "isInternal": false, - "x": 503.9776525386627, - "y": 357.2589176990204 + "x": 503.97765, + "y": 357.25892 }, { - "angle": -0.0008359626462211726, - "anglePrev": -0.0007400882958783672, - "angularSpeed": 0.0000958743503428054, - "angularVelocity": -0.0000958743503428054, - "area": 2550.166396822507, + "angle": -0.00084, + "anglePrev": -0.00074, + "angularSpeed": 0.0001, + "angularVelocity": -0.0001, + "area": 2550.1664, "axes": { "#": 1511 }, @@ -13361,13 +13361,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 59, - "inertia": 10939.165130883785, - "inverseInertia": 0.00009141465441240754, - "inverseMass": 0.392131274745834, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "inverseMass": 0.39213, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 2.5501663968225072, + "mass": 2.55017, "motion": 0, "parent": null, "position": { @@ -13389,7 +13389,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.9041111824106722, + "speed": 2.90411, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13410,12 +13410,12 @@ } ], { - "x": 0.0008359625488547193, - "y": 0.9999996505832474 + "x": 0.00084, + "y": 1 }, { - "x": -0.9999996505832474, - "y": 0.0008359625488547193 + "x": -1, + "y": 0.00084 }, { "max": { @@ -13426,12 +13426,12 @@ } }, { - "x": 616.4630833801775, - "y": 364.1307391748624 + "x": 616.46308, + "y": 364.13074 }, { - "x": 505.33033359177574, - "y": 338.1787578574561 + "x": 505.33033, + "y": 338.17876 }, { "category": 1, @@ -13448,16 +13448,16 @@ "y": 0 }, { - "x": 560.9066115640337, - "y": 349.70272669504374 + "x": 560.90661, + "y": 349.70273 }, { - "x": 0.21105094739607166, - "y": 1.0333095382922728 + "x": 0.21105, + "y": 1.03331 }, { - "x": 560.9264177201478, - "y": 346.7986830528127 + "x": 560.92642, + "y": 346.79868 }, { "endCol": 12, @@ -13480,8 +13480,8 @@ "yScale": 1 }, { - "x": -0.01980615611414123, - "y": 2.9040436422310694 + "x": -0.01981, + "y": 2.90404 }, [ { @@ -13501,43 +13501,43 @@ "body": null, "index": 0, "isInternal": false, - "x": 505.3501397478899, - "y": 338.2716281077031 + "x": 505.35014, + "y": 338.27163 }, { "body": null, "index": 1, "isInternal": false, - "x": 616.4438937967986, - "y": 338.1787578574561 + "x": 616.44389, + "y": 338.17876 }, { "body": null, "index": 2, "isInternal": false, - "x": 616.4630833801775, - "y": 361.13382528238435 + "x": 616.46308, + "y": 361.13383 }, { "body": null, "index": 3, "isInternal": false, - "x": 505.3693293312688, - "y": 361.22669553263137 + "x": 505.36933, + "y": 361.2267 }, { - "angle": -0.004729738261435024, - "anglePrev": -0.004206631518666418, - "angularSpeed": 0.0005231067427686056, - "angularVelocity": -0.0005231067427686056, - "area": 5174.381305999998, + "angle": -0.00473, + "anglePrev": -0.00421, + "angularSpeed": 0.00052, + "angularVelocity": -0.00052, + "area": 5174.38131, "axes": { "#": 1533 }, "bounds": { "#": 1547 }, - "circleRadius": 40.782407407407405, + "circleRadius": 40.78241, "collisionFilter": { "#": 1550 }, @@ -13552,13 +13552,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 60, - "inertia": 17045.3242729355, - "inverseInertia": 0.000058667115039154525, - "inverseMass": 0.1932598200369272, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "inverseMass": 0.19326, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 5.174381305999998, + "mass": 5.17438, "motion": 0, "parent": null, "position": { @@ -13580,7 +13580,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.8870283504437544, + "speed": 2.88703, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -13634,56 +13634,56 @@ } ], { - "x": -0.9720600180423126, - "y": -0.234732446252279 + "x": -0.97206, + "y": -0.23473 }, { - "x": -0.8876332003447669, - "y": -0.4605510847297038 + "x": -0.88763, + "y": -0.46055 }, { - "x": -0.7516641253486183, - "y": -0.6595460883546321 + "x": -0.75166, + "y": -0.65955 }, { - "x": -0.5719636442468733, - "y": -0.8202789706312335 + "x": -0.57196, + "y": -0.82028 }, { - "x": -0.35898378520304075, - "y": -0.9333437962301442 + "x": -0.35898, + "y": -0.93334 }, { - "x": -0.12522269824437132, - "y": -0.9921286589169768 + "x": -0.12522, + "y": -0.99213 }, { - "x": 0.115832217923668, - "y": -0.9932687940788656 + "x": 0.11583, + "y": -0.99327 }, { - "x": 0.3501389120265041, - "y": -0.9366977859933776 + "x": 0.35014, + "y": -0.9367 }, { - "x": 0.5641787603546481, - "y": -0.8256526669033973 + "x": 0.56418, + "y": -0.82565 }, { - "x": 0.7453916278154858, - "y": -0.666626823029632 + "x": 0.74539, + "y": -0.66663 }, { - "x": 0.8832369799771378, - "y": -0.4689268996345435 + "x": 0.88324, + "y": -0.46893 }, { - "x": 0.9697961146273102, - "y": -0.24391698598862036 + "x": 0.9698, + "y": -0.24392 }, { - "x": 0.9999888148088406, - "y": -0.004729720627079677 + "x": 0.99999, + "y": -0.00473 }, { "max": { @@ -13694,12 +13694,12 @@ } }, { - "x": 654.6666797081068, - "y": 453.3228755775938 + "x": 654.66668, + "y": 453.32288 }, { - "x": 573.6323608862882, - "y": 368.87282024075637 + "x": 573.63236, + "y": 368.87282 }, { "category": 1, @@ -13716,16 +13716,16 @@ "y": 0 }, { - "x": 614.1588812339684, - "y": 409.6543640862906 + "x": 614.15888, + "y": 409.65436 }, { - "x": -0.8130450456858971, - "y": 1.8377065330412674 + "x": -0.81305, + "y": 1.83771 }, { - "x": 614.1776031075101, - "y": 406.7673964405216 + "x": 614.1776, + "y": 406.7674 }, { "endCol": 13, @@ -13748,8 +13748,8 @@ "yScale": 1 }, { - "x": -0.018721873541708192, - "y": 2.8869676457690123 + "x": -0.01872, + "y": 2.88697 }, [ { @@ -13835,190 +13835,190 @@ "body": null, "index": 0, "isInternal": false, - "x": 654.6666797081068, - "y": 414.37882636030355 + "x": 654.66668, + "y": 414.37883 }, { "body": null, "index": 1, "isInternal": false, - "x": 652.3588559399677, - "y": 423.93584861910426 + "x": 652.35886, + "y": 423.93585 }, { "body": null, "index": 2, "isInternal": false, - "x": 647.831079263165, - "y": 432.66236134556027 + "x": 647.83108, + "y": 432.66236 }, { "body": null, "index": 3, "isInternal": false, - "x": 641.346958193521, - "y": 440.05211208250654 + "x": 641.34696, + "y": 440.05211 }, { "body": null, "index": 4, "isInternal": false, - "x": 633.2824641826047, - "y": 445.67531778280755 + "x": 633.28246, + "y": 445.67532 }, { "body": null, "index": 5, "isInternal": false, - "x": 624.1060548141731, - "y": 449.2047591129559 + "x": 624.10605, + "y": 449.20476 }, { "body": null, "index": 6, "isInternal": false, - "x": 614.3517687005818, - "y": 450.4359079318248 + "x": 614.35177, + "y": 450.43591 }, { "body": null, "index": 7, "isInternal": false, - "x": 604.5862731491045, - "y": 449.2970832595966 + "x": 604.58627, + "y": 449.29708 }, { "body": null, "index": 8, "isInternal": false, - "x": 595.3768881684609, - "y": 445.85460257289765 + "x": 595.37689, + "y": 445.8546 }, { "body": null, "index": 9, "isInternal": false, - "x": 587.2595631781403, - "y": 440.30793321178396 + "x": 587.25956, + "y": 440.30793 }, { "body": null, "index": 10, "isInternal": false, - "x": 580.7058300803068, - "y": 432.97984857237356 + "x": 580.70583, + "y": 432.97985 }, { "body": null, "index": 11, "isInternal": false, - "x": 576.0957089673865, - "y": 424.2965560330079 + "x": 576.09571, + "y": 424.29656 }, { "body": null, "index": 12, "isInternal": false, - "x": 573.6975853730353, - "y": 414.7617918394782 + "x": 573.69759, + "y": 414.76179 }, { "body": null, "index": 13, "isInternal": false, - "x": 573.6510827598299, - "y": 404.9299018122777 + "x": 573.65108, + "y": 404.9299 }, { "body": null, "index": 14, "isInternal": false, - "x": 575.958906527969, - "y": 395.372879553477 + "x": 575.95891, + "y": 395.37288 }, { "body": null, "index": 15, "isInternal": false, - "x": 580.4866832047718, - "y": 386.64636682702087 + "x": 580.48668, + "y": 386.64637 }, { "body": null, "index": 16, "isInternal": false, - "x": 586.9708042744157, - "y": 379.2566160900746 + "x": 586.9708, + "y": 379.25662 }, { "body": null, "index": 17, "isInternal": false, - "x": 595.035298285332, - "y": 373.6334103897736 + "x": 595.0353, + "y": 373.63341 }, { "body": null, "index": 18, "isInternal": false, - "x": 604.2117076537636, - "y": 370.10396905962534 + "x": 604.21171, + "y": 370.10397 }, { "body": null, "index": 19, "isInternal": false, - "x": 613.9659937673549, - "y": 368.87282024075637 + "x": 613.96599, + "y": 368.87282 }, { "body": null, "index": 20, "isInternal": false, - "x": 623.7314893188322, - "y": 370.01164491298465 + "x": 623.73149, + "y": 370.01164 }, { "body": null, "index": 21, "isInternal": false, - "x": 632.9408742994758, - "y": 373.4541255996836 + "x": 632.94087, + "y": 373.45413 }, { "body": null, "index": 22, "isInternal": false, - "x": 641.0581992897964, - "y": 379.0007949607972 + "x": 641.0582, + "y": 379.00079 }, { "body": null, "index": 23, "isInternal": false, - "x": 647.61193238763, - "y": 386.3288796002076 + "x": 647.61193, + "y": 386.32888 }, { "body": null, "index": 24, "isInternal": false, - "x": 652.2220535005503, - "y": 395.01217213957335 + "x": 652.22205, + "y": 395.01217 }, { "body": null, "index": 25, "isInternal": false, - "x": 654.6201770949015, - "y": 404.54693633310296 + "x": 654.62018, + "y": 404.54694 }, { - "angle": 0.013694963789867126, - "anglePrev": 0.01149399947001169, - "angularSpeed": 0.0022009643198554352, - "angularVelocity": 0.0022009643198554352, - "area": 1308.2034644955884, + "angle": 0.01369, + "anglePrev": 0.01149, + "angularSpeed": 0.0022, + "angularVelocity": 0.0022, + "area": 1308.20346, "axes": { "#": 1588 }, @@ -14039,13 +14039,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 61, - "inertia": 1149.8579054087725, - "inverseInertia": 0.0008696726745940854, - "inverseMass": 0.7644070873834413, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "inverseMass": 0.76441, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.3082034644955884, + "mass": 1.3082, "motion": 0, "parent": null, "position": { @@ -14067,7 +14067,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.766887659352146, + "speed": 2.76689, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14088,12 +14088,12 @@ } ], { - "x": -0.013694535707497619, - "y": 0.9999062254490447 + "x": -0.01369, + "y": 0.99991 }, { - "x": -0.9999062254490447, - "y": -0.013694535707497619 + "x": -0.99991, + "y": -0.01369 }, { "max": { @@ -14104,12 +14104,12 @@ } }, { - "x": 705.6711980256081, - "y": 358.55088888021436 + "x": 705.6712, + "y": 358.55089 }, { - "x": 666.7001308253062, - "y": 321.28243445358623 + "x": 666.70013, + "y": 321.28243 }, { "category": 1, @@ -14126,16 +14126,16 @@ "y": 0 }, { - "x": 686.182007383587, - "y": 338.5332226708063 + "x": 686.18201, + "y": 338.53322 }, { - "x": -0.2850622436133901, - "y": 0.842928081476599 + "x": -0.28506, + "y": 0.84293 }, { - "x": 686.1746932998467, - "y": 335.76634467861834 + "x": 686.17469, + "y": 335.76634 }, { "endCol": 14, @@ -14158,8 +14158,8 @@ "yScale": 1 }, { - "x": 0.007314083740330943, - "y": 2.7668779921879887 + "x": 0.00731, + "y": 2.76688 }, [ { @@ -14179,36 +14179,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 667.1654368418626, - "y": 321.28243445358623 + "x": 667.16544, + "y": 321.28243 }, { "body": null, "index": 1, "isInternal": false, - "x": 705.6638839418678, - "y": 321.8097022563819 + "x": 705.66388, + "y": 321.8097 }, { "body": null, "index": 2, "isInternal": false, - "x": 705.1985779253114, - "y": 355.7840108880264 + "x": 705.19858, + "y": 355.78401 }, { "body": null, "index": 3, "isInternal": false, - "x": 666.7001308253062, - "y": 355.2567430852307 + "x": 666.70013, + "y": 355.25674 }, { - "angle": -0.02536740234968998, - "anglePrev": -0.022903849378023824, - "angularSpeed": 0.0024635529716661533, - "angularVelocity": -0.0024635529716661533, - "area": 3803.7767479999993, + "angle": -0.02537, + "anglePrev": -0.0229, + "angularSpeed": 0.00246, + "angularVelocity": -0.00246, + "area": 3803.77675, "axes": { "#": 1610 }, @@ -14229,13 +14229,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 62, - "inertia": 9247.768748441516, - "inverseInertia": 0.00010813419184692798, - "inverseMass": 0.2628966067805618, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "inverseMass": 0.2629, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.8037767479999993, + "mass": 3.80378, "motion": 0, "parent": null, "position": { @@ -14257,7 +14257,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7806870432933857, + "speed": 2.78069, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14293,32 +14293,32 @@ } ], { - "x": 0.6431184561037276, - "y": 0.7657667082204332 + "x": 0.64312, + "y": 0.76577 }, { - "x": -0.1977425915381009, - "y": 0.9802539811149946 + "x": -0.19774, + "y": 0.98025 }, { - "x": -0.8896662782156863, - "y": 0.4566113373601765 + "x": -0.88967, + "y": 0.45661 }, { - "x": -0.9116776641963065, - "y": -0.4109061165346246 + "x": -0.91168, + "y": -0.41091 }, { - "x": -0.24719981080003606, - "y": -0.9689645264613286 + "x": -0.2472, + "y": -0.96896 }, { - "x": 0.6034565743060056, - "y": -0.7973958633745604 + "x": 0.60346, + "y": -0.7974 }, { - "x": 0.9996782647027619, - "y": -0.025364681761754437 + "x": 0.99968, + "y": -0.02536 }, { "max": { @@ -14329,12 +14329,12 @@ } }, { - "x": 759.5907382982798, - "y": 431.6659065200382 + "x": 759.59074, + "y": 431.66591 }, { - "x": 688.2945687216442, - "y": 356.2108125787605 + "x": 688.29457, + "y": 356.21081 }, { "category": 1, @@ -14351,16 +14351,16 @@ "y": 0 }, { - "x": 725.5664338591007, - "y": 392.758546756361 + "x": 725.56643, + "y": 392.75855 }, { - "x": -0.40232965013989697, - "y": 1.0453732706684444 + "x": -0.40233, + "y": 1.04537 }, { - "x": 725.5327857501335, - "y": 389.97806330244464 + "x": 725.53279, + "y": 389.97806 }, { "endCol": 15, @@ -14383,8 +14383,8 @@ "yScale": 1 }, { - "x": 0.033648108967198595, - "y": 2.7804834539163585 + "x": 0.03365, + "y": 2.78048 }, [ { @@ -14413,57 +14413,57 @@ "body": null, "index": 0, "isInternal": false, - "x": 759.5570901893126, - "y": 408.07831348537417 + "x": 759.55709, + "y": 408.07831 }, { "body": null, "index": 1, "isInternal": false, - "x": 734.7818848441542, - "y": 428.88542306612186 + "x": 734.78188, + "y": 428.88542 }, { "body": null, "index": 2, "isInternal": false, - "x": 703.067407310215, - "y": 422.4877923523912 + "x": 703.06741, + "y": 422.48779 }, { "body": null, "index": 3, "isInternal": false, - "x": 688.2945687216442, - "y": 393.70424001714196 + "x": 688.29457, + "y": 393.70424 }, { "body": null, "index": 4, "isInternal": false, - "x": 701.5886970928682, - "y": 364.2085488767497 + "x": 701.5887, + "y": 364.20855 }, { "body": null, "index": 5, "isInternal": false, - "x": 732.937923209438, - "y": 356.2108125787605 + "x": 732.93792, + "y": 356.21081 }, { "body": null, "index": 6, "isInternal": false, - "x": 758.7364412755926, - "y": 375.734722909181 + "x": 758.73644, + "y": 375.73472 }, { - "angle": 0.016883102366961524, - "anglePrev": 0.015469018388628191, - "angularSpeed": 0.0014140839783333336, - "angularVelocity": 0.0014140839783333336, - "area": 1519.5385669833, + "angle": 0.01688, + "anglePrev": 0.01547, + "angularSpeed": 0.00141, + "angularVelocity": 0.00141, + "area": 1519.53857, "axes": { "#": 1640 }, @@ -14484,13 +14484,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 63, - "inertia": 1623.6987742797708, - "inverseInertia": 0.0006158777821604092, - "inverseMass": 0.6580945174595165, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "inverseMass": 0.65809, "isSleeping": false, "isStatic": false, "label": "Rectangle Body", - "mass": 1.5195385669833, + "mass": 1.51954, "motion": 0, "parent": null, "position": { @@ -14512,7 +14512,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.7299753672403977, + "speed": 2.72998, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14533,12 +14533,12 @@ } ], { - "x": -0.016882300320880235, - "y": 0.9998574838125062 + "x": -0.01688, + "y": 0.99986 }, { - "x": -0.9998574838125062, - "y": -0.016882300320880235 + "x": -0.99986, + "y": -0.01688 }, { "max": { @@ -14549,12 +14549,12 @@ } }, { - "x": 865.5032220133618, - "y": 391.26371704251216 + "x": 865.50322, + "y": 391.26372 }, { - "x": 831.6404369900313, - "y": 342.01761719846934 + "x": 831.64044, + "y": 342.01762 }, { "category": 1, @@ -14571,16 +14571,16 @@ "y": 0 }, { - "x": 848.5881969605357, - "y": 365.27577757084725 + "x": 848.5882, + "y": 365.27578 }, { - "x": -0.06700131070715622, - "y": 1.2270321192086358 + "x": -0.067, + "y": 1.22703 }, { - "x": 848.6209318782143, - "y": 362.54599847156027 + "x": 848.62093, + "y": 362.546 }, { "endCol": 18, @@ -14603,8 +14603,8 @@ "yScale": 1 }, { - "x": -0.032734917678600366, - "y": 2.729779099286959 + "x": -0.03273, + "y": 2.72978 }, [ { @@ -14624,36 +14624,36 @@ "body": null, "index": 0, "isInternal": false, - "x": 832.449162847176, - "y": 342.01761719846934 + "x": 832.44916, + "y": 342.01762 }, { "body": null, "index": 1, "isInternal": false, - "x": 865.5032220133618, - "y": 342.57572529157454 + "x": 865.50322, + "y": 342.57573 }, { "body": null, "index": 2, "isInternal": false, - "x": 864.7272310738955, - "y": 388.53393794322517 + "x": 864.72723, + "y": 388.53394 }, { "body": null, "index": 3, "isInternal": false, - "x": 831.6731719077098, - "y": 387.97582985011996 + "x": 831.67317, + "y": 387.97583 }, { - "angle": 0.005622695580706375, - "anglePrev": 0.0051665836263583035, - "angularSpeed": 0.00045611195434807153, - "angularVelocity": 0.00045611195434807153, - "area": 3306.4800040000005, + "angle": 0.00562, + "anglePrev": 0.00517, + "angularSpeed": 0.00046, + "angularVelocity": 0.00046, + "area": 3306.48, "axes": { "#": 1662 }, @@ -14674,13 +14674,13 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 64, - "inertia": 7288.540011234562, - "inverseInertia": 0.00013720168901571494, - "inverseMass": 0.302436427496992, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "inverseMass": 0.30244, "isSleeping": false, "isStatic": false, "label": "Polygon Body", - "mass": 3.3064800040000004, + "mass": 3.30648, "motion": 0, "parent": null, "position": { @@ -14702,7 +14702,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 2.860446570010434, + "speed": 2.86045, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -14723,12 +14723,12 @@ } ], { - "x": 0.005622665954108971, - "y": -0.9999841926888491 + "x": 0.00562, + "y": -0.99998 }, { - "x": 0.9999841926888491, - "y": 0.005622665954108971 + "x": 0.99998, + "y": 0.00562 }, { "max": { @@ -14739,12 +14739,12 @@ } }, { - "x": 1018.5806250877922, - "y": 419.5421746393976 + "x": 1018.58063, + "y": 419.54217 }, { - "x": 960.7443365847234, - "y": 358.8573471659183 + "x": 960.74434, + "y": 358.85735 }, { "category": 1, @@ -14761,16 +14761,16 @@ "y": 0 }, { - "x": 989.6684222949483, - "y": 387.769549958762 + "x": 989.66842, + "y": 387.76955 }, { - "x": 2.963781537834867, - "y": 1.839518120240474 + "x": 2.96378, + "y": 1.83952 }, { - "x": 989.6803052123292, - "y": 384.9091280709701 + "x": 989.68031, + "y": 384.90913 }, { "endCol": 21, @@ -14793,8 +14793,8 @@ "yScale": 1 }, { - "x": -0.011882917380912659, - "y": 2.8604218877918997 + "x": -0.01188, + "y": 2.86042 }, [ { @@ -14814,29 +14814,29 @@ "body": null, "index": 0, "isInternal": false, - "x": 1018.2573105500987, - "y": 416.6817527516057 + "x": 1018.25731, + "y": 416.68175 }, { "body": null, "index": 1, "isInternal": false, - "x": 960.7562195021044, - "y": 416.3584382139125 + "x": 960.75622, + "y": 416.35844 }, { "body": null, "index": 2, "isInternal": false, - "x": 961.0795340397979, - "y": 358.8573471659183 + "x": 961.07953, + "y": 358.85735 }, { "body": null, "index": 3, "isInternal": false, - "x": 1018.5806250877922, - "y": 359.1806617036115 + "x": 1018.58063, + "y": 359.18066 }, [], [], diff --git a/test/browser/refs/wreckingBall/wreckingBall-0.json b/test/browser/refs/wreckingBall/wreckingBall-0.json index 4505e175..a45e4cd9 100644 --- a/test/browser/refs/wreckingBall/wreckingBall-0.json +++ b/test/browser/refs/wreckingBall/wreckingBall-0.json @@ -823,7 +823,7 @@ "anglePrev": 0, "angularSpeed": 0, "angularVelocity": 0, - "area": 7777.744665999999, + "area": 7777.74467, "axes": { "#": 87 }, @@ -837,7 +837,7 @@ "constraintImpulse": { "#": 105 }, - "density": 0.04000000000000001, + "density": 0.04, "force": { "#": 106 }, @@ -845,13 +845,13 @@ "frictionAir": 0.005, "frictionStatic": 0.5, "id": 55, - "inertia": 1540478.934925965, - "inverseInertia": 6.491487662231874e-7, - "inverseMass": 0.00321429939829295, + "inertia": 1540478.93493, + "inverseInertia": 0, + "inverseMass": 0.00321, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 311.10978664, + "mass": 311.10979, "motion": 0, "parent": null, "position": { @@ -924,52 +924,52 @@ } ], { - "x": -0.970952042258738, - "y": -0.239274176696078 + "x": -0.97095, + "y": -0.23927 }, { - "x": -0.8854431390332113, - "y": -0.46474772461951164 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.748538767034939, - "y": -0.6630910301352396 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680489228149688, - "y": -0.8229947881297631 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35459420851145496, - "y": -0.9350202924483163 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12054195746334154, - "y": -0.992708233314757 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12054195746334154, - "y": -0.992708233314757 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.35459420851145496, - "y": -0.9350202924483163 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680489228149688, - "y": -0.8229947881297631 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.748538767034939, - "y": -0.6630910301352396 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854431390332113, - "y": -0.46474772461951164 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.970952042258738, - "y": -0.239274176696078 + "x": 0.97095, + "y": -0.23927 }, { "x": 1, @@ -1531,8 +1531,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1711,8 +1711,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1891,8 +1891,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2071,8 +2071,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2251,8 +2251,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2431,8 +2431,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2611,8 +2611,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2791,8 +2791,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2971,8 +2971,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3151,8 +3151,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3331,8 +3331,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3511,8 +3511,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3691,8 +3691,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3871,8 +3871,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4051,8 +4051,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4231,8 +4231,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4411,8 +4411,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4591,8 +4591,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4771,8 +4771,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4951,8 +4951,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5131,8 +5131,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5311,8 +5311,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5491,8 +5491,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5671,8 +5671,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5851,8 +5851,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6031,8 +6031,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6211,8 +6211,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6391,8 +6391,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6571,8 +6571,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6751,8 +6751,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6931,8 +6931,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7111,8 +7111,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7291,8 +7291,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7471,8 +7471,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7651,8 +7651,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7831,8 +7831,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8011,8 +8011,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8191,8 +8191,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8371,8 +8371,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8551,8 +8551,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8731,8 +8731,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8911,8 +8911,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9091,8 +9091,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9271,8 +9271,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9451,8 +9451,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9631,8 +9631,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9811,8 +9811,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9991,8 +9991,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10171,8 +10171,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10351,8 +10351,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10546,7 +10546,7 @@ "bodyB": null, "id": 56, "label": "Constraint", - "length": 360.5551275463989, + "length": 360.55513, "pointA": { "#": 1203 }, diff --git a/test/browser/refs/wreckingBall/wreckingBall-10.json b/test/browser/refs/wreckingBall/wreckingBall-10.json index f0844858..5cec7285 100644 --- a/test/browser/refs/wreckingBall/wreckingBall-10.json +++ b/test/browser/refs/wreckingBall/wreckingBall-10.json @@ -859,11 +859,11 @@ "y": 605.25 }, { - "angle": -2.999894364326032e-20, - "anglePrev": -2.6093491624039745e-20, - "angularSpeed": 3.905452019220577e-21, - "angularVelocity": -3.905452019220577e-21, - "area": 7777.744665999999, + "angle": 0, + "anglePrev": 0, + "angularSpeed": 0, + "angularVelocity": 0, + "area": 7777.74467, "axes": { "#": 91 }, @@ -877,7 +877,7 @@ "constraintImpulse": { "#": 109 }, - "density": 0.04000000000000001, + "density": 0.04, "force": { "#": 110 }, @@ -885,13 +885,13 @@ "frictionAir": 0.005, "frictionStatic": 0.5, "id": 55, - "inertia": 1540478.934925965, - "inverseInertia": 6.491487662231874e-7, - "inverseMass": 0.00321429939829295, + "inertia": 1540478.93493, + "inverseInertia": 0, + "inverseMass": 0.00321, "isSleeping": false, "isStatic": false, "label": "Circle Body", - "mass": 311.10978664, + "mass": 311.10979, "motion": 0, "parent": null, "position": { @@ -913,7 +913,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6450825044006987, + "speed": 1.64508, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -967,56 +967,56 @@ } ], { - "x": -0.970952042258738, - "y": -0.239274176696078 + "x": -0.97095, + "y": -0.23927 }, { - "x": -0.8854431390332113, - "y": -0.46474772461951164 + "x": -0.88544, + "y": -0.46475 }, { - "x": -0.748538767034939, - "y": -0.6630910301352396 + "x": -0.74854, + "y": -0.66309 }, { - "x": -0.5680489228149688, - "y": -0.8229947881297631 + "x": -0.56805, + "y": -0.82299 }, { - "x": -0.35459420851145496, - "y": -0.9350202924483163 + "x": -0.35459, + "y": -0.93502 }, { - "x": -0.12054195746334154, - "y": -0.992708233314757 + "x": -0.12054, + "y": -0.99271 }, { - "x": 0.12054195746334154, - "y": -0.992708233314757 + "x": 0.12054, + "y": -0.99271 }, { - "x": 0.35459420851145496, - "y": -0.9350202924483163 + "x": 0.35459, + "y": -0.93502 }, { - "x": 0.5680489228149688, - "y": -0.8229947881297631 + "x": 0.56805, + "y": -0.82299 }, { - "x": 0.748538767034939, - "y": -0.6630910301352396 + "x": 0.74854, + "y": -0.66309 }, { - "x": 0.8854431390332113, - "y": -0.46474772461951164 + "x": 0.88544, + "y": -0.46475 }, { - "x": 0.970952042258738, - "y": -0.239274176696078 + "x": 0.97095, + "y": -0.23927 }, { "x": 1, - "y": -2.999894364326032e-20 + "y": 0 }, { "max": { @@ -1027,12 +1027,12 @@ } }, { - "x": 157.8120147216171, - "y": 455.58626038355806 + "x": 157.81201, + "y": 455.58626 }, { - "x": 58.54201472161704, - "y": 355.58626038355806 + "x": 58.54201, + "y": 355.58626 }, { "category": 1, @@ -1049,16 +1049,16 @@ "y": 0 }, { - "x": 108.17701472161701, - "y": 405.58626038355806 + "x": 108.17701, + "y": 405.58626 }, { "x": 0, "y": 0 }, { - "x": 106.80322693284627, - "y": 404.71751031534814 + "x": 106.80323, + "y": 404.71751 }, { "endCol": 3, @@ -1081,8 +1081,8 @@ "yScale": 1 }, { - "x": 1.241846380642599, - "y": 1.0789411537105025 + "x": 1.24185, + "y": 1.07894 }, [ { @@ -1168,183 +1168,183 @@ "body": null, "index": 0, "isInternal": false, - "x": 157.8120147216171, - "y": 411.61326038355804 + "x": 157.81201, + "y": 411.61326 }, { "body": null, "index": 1, "isInternal": false, - "x": 154.9280147216171, - "y": 423.3162603835581 + "x": 154.92801, + "y": 423.31626 }, { "body": null, "index": 2, "isInternal": false, - "x": 149.3260147216171, - "y": 433.9892603835581 + "x": 149.32601, + "y": 433.98926 }, { "body": null, "index": 3, "isInternal": false, - "x": 141.3330147216171, - "y": 443.01226038355804 + "x": 141.33301, + "y": 443.01226 }, { "body": null, "index": 4, "isInternal": false, - "x": 131.41301472161706, - "y": 449.8592603835581 + "x": 131.41301, + "y": 449.85926 }, { "body": null, "index": 5, "isInternal": false, - "x": 120.14301472161702, - "y": 454.1332603835581 + "x": 120.14301, + "y": 454.13326 }, { "body": null, "index": 6, "isInternal": false, - "x": 108.17701472161701, - "y": 455.58626038355806 + "x": 108.17701, + "y": 455.58626 }, { "body": null, "index": 7, "isInternal": false, - "x": 96.21101472161703, - "y": 454.1332603835581 + "x": 96.21101, + "y": 454.13326 }, { "body": null, "index": 8, "isInternal": false, - "x": 84.94101472161702, - "y": 449.8592603835581 + "x": 84.94101, + "y": 449.85926 }, { "body": null, "index": 9, "isInternal": false, - "x": 75.02101472161701, - "y": 443.01226038355804 + "x": 75.02101, + "y": 443.01226 }, { "body": null, "index": 10, "isInternal": false, - "x": 67.02801472161704, - "y": 433.9892603835581 + "x": 67.02801, + "y": 433.98926 }, { "body": null, "index": 11, "isInternal": false, - "x": 61.426014721617044, - "y": 423.3162603835581 + "x": 61.42601, + "y": 423.31626 }, { "body": null, "index": 12, "isInternal": false, - "x": 58.54201472161704, - "y": 411.61326038355804 + "x": 58.54201, + "y": 411.61326 }, { "body": null, "index": 13, "isInternal": false, - "x": 58.54201472161704, - "y": 399.55926038355807 + "x": 58.54201, + "y": 399.55926 }, { "body": null, "index": 14, "isInternal": false, - "x": 61.426014721617044, - "y": 387.85626038355804 + "x": 61.42601, + "y": 387.85626 }, { "body": null, "index": 15, "isInternal": false, - "x": 67.02801472161704, - "y": 377.18326038355804 + "x": 67.02801, + "y": 377.18326 }, { "body": null, "index": 16, "isInternal": false, - "x": 75.02101472161701, - "y": 368.16026038355807 + "x": 75.02101, + "y": 368.16026 }, { "body": null, "index": 17, "isInternal": false, - "x": 84.94101472161702, - "y": 361.31326038355803 + "x": 84.94101, + "y": 361.31326 }, { "body": null, "index": 18, "isInternal": false, - "x": 96.21101472161703, - "y": 357.03926038355803 + "x": 96.21101, + "y": 357.03926 }, { "body": null, "index": 19, "isInternal": false, - "x": 108.17701472161701, - "y": 355.58626038355806 + "x": 108.17701, + "y": 355.58626 }, { "body": null, "index": 20, "isInternal": false, - "x": 120.14301472161702, - "y": 357.03926038355803 + "x": 120.14301, + "y": 357.03926 }, { "body": null, "index": 21, "isInternal": false, - "x": 131.41301472161706, - "y": 361.31326038355803 + "x": 131.41301, + "y": 361.31326 }, { "body": null, "index": 22, "isInternal": false, - "x": 141.3330147216171, - "y": 368.16026038355807 + "x": 141.33301, + "y": 368.16026 }, { "body": null, "index": 23, "isInternal": false, - "x": 149.3260147216171, - "y": 377.18326038355804 + "x": 149.32601, + "y": 377.18326 }, { "body": null, "index": 24, "isInternal": false, - "x": 154.9280147216171, - "y": 387.85626038355804 + "x": 154.92801, + "y": 387.85626 }, { "body": null, "index": 25, "isInternal": false, - "x": 157.8120147216171, - "y": 399.55926038355807 + "x": 157.81201, + "y": 399.55926 }, { "max": { @@ -1581,8 +1581,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 5, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1609,7 +1609,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.776150802718386, + "speed": 1.77615, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1647,11 +1647,11 @@ }, { "x": 440, - "y": 234.99998009414637 + "y": 234.99998 }, { "x": 400, - "y": 193.223829291428 + "y": 193.22383 }, { "category": 1, @@ -1669,7 +1669,7 @@ }, { "x": 420, - "y": 213.223829291428 + "y": 213.22383 }, { "x": 0, @@ -1677,7 +1677,7 @@ }, { "x": 420, - "y": 212.07773849417427 + "y": 212.07774 }, { "endCol": 9, @@ -1701,7 +1701,7 @@ }, { "x": 0, - "y": 1.150983619630864 + "y": 1.15098 }, [ { @@ -1722,28 +1722,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 233.223829291428 + "y": 233.22383 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 233.223829291428 + "y": 233.22383 }, { "angle": 0, @@ -1771,8 +1771,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 6, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1799,7 +1799,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.776150802718386, + "speed": 1.77615, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -1837,11 +1837,11 @@ }, { "x": 480, - "y": 234.99998009414637 + "y": 234.99998 }, { "x": 440, - "y": 193.223829291428 + "y": 193.22383 }, { "category": 1, @@ -1859,7 +1859,7 @@ }, { "x": 460, - "y": 213.223829291428 + "y": 213.22383 }, { "x": 0, @@ -1867,7 +1867,7 @@ }, { "x": 460, - "y": 212.07773849417427 + "y": 212.07774 }, { "endCol": 10, @@ -1891,7 +1891,7 @@ }, { "x": 0, - "y": 1.150983619630864 + "y": 1.15098 }, [ { @@ -1912,28 +1912,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 233.223829291428 + "y": 233.22383 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 233.223829291428 + "y": 233.22383 }, { "angle": 0, @@ -1961,8 +1961,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 7, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -1989,7 +1989,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.776150802718386, + "speed": 1.77615, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2027,11 +2027,11 @@ }, { "x": 520, - "y": 234.99998009414637 + "y": 234.99998 }, { "x": 480, - "y": 193.223829291428 + "y": 193.22383 }, { "category": 1, @@ -2049,7 +2049,7 @@ }, { "x": 500, - "y": 213.223829291428 + "y": 213.22383 }, { "x": 0, @@ -2057,7 +2057,7 @@ }, { "x": 500, - "y": 212.07773849417427 + "y": 212.07774 }, { "endCol": 10, @@ -2081,7 +2081,7 @@ }, { "x": 0, - "y": 1.150983619630864 + "y": 1.15098 }, [ { @@ -2102,28 +2102,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 233.223829291428 + "y": 233.22383 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 233.223829291428 + "y": 233.22383 }, { "angle": 0, @@ -2151,8 +2151,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 8, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2179,7 +2179,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.776150802718386, + "speed": 1.77615, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2217,11 +2217,11 @@ }, { "x": 560, - "y": 234.99998009414637 + "y": 234.99998 }, { "x": 520, - "y": 193.223829291428 + "y": 193.22383 }, { "category": 1, @@ -2239,7 +2239,7 @@ }, { "x": 540, - "y": 213.223829291428 + "y": 213.22383 }, { "x": 0, @@ -2247,7 +2247,7 @@ }, { "x": 540, - "y": 212.07773849417427 + "y": 212.07774 }, { "endCol": 11, @@ -2271,7 +2271,7 @@ }, { "x": 0, - "y": 1.150983619630864 + "y": 1.15098 }, [ { @@ -2292,28 +2292,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 233.223829291428 + "y": 233.22383 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 233.223829291428 + "y": 233.22383 }, { "angle": 0, @@ -2341,8 +2341,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 9, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2369,7 +2369,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.776150802718386, + "speed": 1.77615, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2407,11 +2407,11 @@ }, { "x": 600, - "y": 234.99998009414637 + "y": 234.99998 }, { "x": 560, - "y": 193.223829291428 + "y": 193.22383 }, { "category": 1, @@ -2429,7 +2429,7 @@ }, { "x": 580, - "y": 213.223829291428 + "y": 213.22383 }, { "x": 0, @@ -2437,7 +2437,7 @@ }, { "x": 580, - "y": 212.07773849417427 + "y": 212.07774 }, { "endCol": 12, @@ -2461,7 +2461,7 @@ }, { "x": 0, - "y": 1.150983619630864 + "y": 1.15098 }, [ { @@ -2482,28 +2482,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 193.223829291428 + "y": 193.22383 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 233.223829291428 + "y": 233.22383 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 233.223829291428 + "y": 233.22383 }, { "angle": 0, @@ -2531,8 +2531,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 10, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2559,7 +2559,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.754754519615883, + "speed": 1.75475, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2597,11 +2597,11 @@ }, { "x": 440, - "y": 274.73013360919066 + "y": 274.73013 }, { "x": 400, - "y": 232.97537908957494 + "y": 232.97538 }, { "category": 1, @@ -2619,7 +2619,7 @@ }, { "x": 420, - "y": 252.97537908957494 + "y": 252.97538 }, { "x": 0, @@ -2627,7 +2627,7 @@ }, { "x": 420, - "y": 251.8329579091041 + "y": 251.83296 }, { "endCol": 9, @@ -2651,7 +2651,7 @@ }, { "x": 0, - "y": 1.1375283580937037 + "y": 1.13753 }, [ { @@ -2672,28 +2672,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 272.9753790895748 + "y": 272.97538 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 272.9753790895748 + "y": 272.97538 }, { "angle": 0, @@ -2721,8 +2721,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 11, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2749,7 +2749,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.754754519615883, + "speed": 1.75475, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2787,11 +2787,11 @@ }, { "x": 480, - "y": 274.73013360919066 + "y": 274.73013 }, { "x": 440, - "y": 232.97537908957494 + "y": 232.97538 }, { "category": 1, @@ -2809,7 +2809,7 @@ }, { "x": 460, - "y": 252.97537908957494 + "y": 252.97538 }, { "x": 0, @@ -2817,7 +2817,7 @@ }, { "x": 460, - "y": 251.8329579091041 + "y": 251.83296 }, { "endCol": 10, @@ -2841,7 +2841,7 @@ }, { "x": 0, - "y": 1.1375283580937037 + "y": 1.13753 }, [ { @@ -2862,28 +2862,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 272.9753790895748 + "y": 272.97538 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 272.9753790895748 + "y": 272.97538 }, { "angle": 0, @@ -2911,8 +2911,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 12, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -2939,7 +2939,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.754754519615883, + "speed": 1.75475, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -2977,11 +2977,11 @@ }, { "x": 520, - "y": 274.73013360919066 + "y": 274.73013 }, { "x": 480, - "y": 232.97537908957494 + "y": 232.97538 }, { "category": 1, @@ -2999,7 +2999,7 @@ }, { "x": 500, - "y": 252.97537908957494 + "y": 252.97538 }, { "x": 0, @@ -3007,7 +3007,7 @@ }, { "x": 500, - "y": 251.8329579091041 + "y": 251.83296 }, { "endCol": 10, @@ -3031,7 +3031,7 @@ }, { "x": 0, - "y": 1.1375283580937037 + "y": 1.13753 }, [ { @@ -3052,28 +3052,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 272.9753790895748 + "y": 272.97538 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 272.9753790895748 + "y": 272.97538 }, { "angle": 0, @@ -3101,8 +3101,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 13, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3129,7 +3129,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.754754519615883, + "speed": 1.75475, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3167,11 +3167,11 @@ }, { "x": 560, - "y": 274.73013360919066 + "y": 274.73013 }, { "x": 520, - "y": 232.97537908957494 + "y": 232.97538 }, { "category": 1, @@ -3189,7 +3189,7 @@ }, { "x": 540, - "y": 252.97537908957494 + "y": 252.97538 }, { "x": 0, @@ -3197,7 +3197,7 @@ }, { "x": 540, - "y": 251.8329579091041 + "y": 251.83296 }, { "endCol": 11, @@ -3221,7 +3221,7 @@ }, { "x": 0, - "y": 1.1375283580937037 + "y": 1.13753 }, [ { @@ -3242,28 +3242,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 272.9753790895748 + "y": 272.97538 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 272.9753790895748 + "y": 272.97538 }, { "angle": 0, @@ -3291,8 +3291,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 14, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3319,7 +3319,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.754754519615883, + "speed": 1.75475, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3357,11 +3357,11 @@ }, { "x": 600, - "y": 274.73013360919066 + "y": 274.73013 }, { "x": 560, - "y": 232.97537908957494 + "y": 232.97538 }, { "category": 1, @@ -3379,7 +3379,7 @@ }, { "x": 580, - "y": 252.97537908957494 + "y": 252.97538 }, { "x": 0, @@ -3387,7 +3387,7 @@ }, { "x": 580, - "y": 251.8329579091041 + "y": 251.83296 }, { "endCol": 12, @@ -3411,7 +3411,7 @@ }, { "x": 0, - "y": 1.1375283580937037 + "y": 1.13753 }, [ { @@ -3432,28 +3432,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 232.97537908957494 + "y": 232.97538 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 272.9753790895748 + "y": 272.97538 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 272.9753790895748 + "y": 272.97538 }, { "angle": 0, @@ -3481,8 +3481,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 15, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3509,7 +3509,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6140312103053436, + "speed": 1.61403, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3547,11 +3547,11 @@ }, { "x": 440, - "y": 313.963227414678 + "y": 313.96323 }, { "x": 400, - "y": 272.3491962043726 + "y": 272.3492 }, { "category": 1, @@ -3569,7 +3569,7 @@ }, { "x": 420, - "y": 292.3491962043726 + "y": 292.3492 }, { "x": 0, @@ -3577,7 +3577,7 @@ }, { "x": 420, - "y": 291.2471849789767 + "y": 291.24718 }, { "endCol": 9, @@ -3601,7 +3601,7 @@ }, { "x": 0, - "y": 1.1287849974754636 + "y": 1.12878 }, [ { @@ -3622,28 +3622,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 312.3491962043726 + "y": 312.3492 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 312.3491962043726 + "y": 312.3492 }, { "angle": 0, @@ -3671,8 +3671,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 16, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3699,7 +3699,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6140312103053436, + "speed": 1.61403, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3737,11 +3737,11 @@ }, { "x": 480, - "y": 313.963227414678 + "y": 313.96323 }, { "x": 440, - "y": 272.3491962043726 + "y": 272.3492 }, { "category": 1, @@ -3759,7 +3759,7 @@ }, { "x": 460, - "y": 292.3491962043726 + "y": 292.3492 }, { "x": 0, @@ -3767,7 +3767,7 @@ }, { "x": 460, - "y": 291.2471849789767 + "y": 291.24718 }, { "endCol": 10, @@ -3791,7 +3791,7 @@ }, { "x": 0, - "y": 1.1287849974754636 + "y": 1.12878 }, [ { @@ -3812,28 +3812,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 312.3491962043726 + "y": 312.3492 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 312.3491962043726 + "y": 312.3492 }, { "angle": 0, @@ -3861,8 +3861,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 17, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -3889,7 +3889,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6140312103053436, + "speed": 1.61403, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -3927,11 +3927,11 @@ }, { "x": 520, - "y": 313.963227414678 + "y": 313.96323 }, { "x": 480, - "y": 272.3491962043726 + "y": 272.3492 }, { "category": 1, @@ -3949,7 +3949,7 @@ }, { "x": 500, - "y": 292.3491962043726 + "y": 292.3492 }, { "x": 0, @@ -3957,7 +3957,7 @@ }, { "x": 500, - "y": 291.2471849789767 + "y": 291.24718 }, { "endCol": 10, @@ -3981,7 +3981,7 @@ }, { "x": 0, - "y": 1.1287849974754636 + "y": 1.12878 }, [ { @@ -4002,28 +4002,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 312.3491962043726 + "y": 312.3492 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 312.3491962043726 + "y": 312.3492 }, { "angle": 0, @@ -4051,8 +4051,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 18, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4079,7 +4079,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6140312103053436, + "speed": 1.61403, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4117,11 +4117,11 @@ }, { "x": 560, - "y": 313.963227414678 + "y": 313.96323 }, { "x": 520, - "y": 272.3491962043726 + "y": 272.3492 }, { "category": 1, @@ -4139,7 +4139,7 @@ }, { "x": 540, - "y": 292.3491962043726 + "y": 292.3492 }, { "x": 0, @@ -4147,7 +4147,7 @@ }, { "x": 540, - "y": 291.2471849789767 + "y": 291.24718 }, { "endCol": 11, @@ -4171,7 +4171,7 @@ }, { "x": 0, - "y": 1.1287849974754636 + "y": 1.12878 }, [ { @@ -4192,28 +4192,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 312.3491962043726 + "y": 312.3492 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 312.3491962043726 + "y": 312.3492 }, { "angle": 0, @@ -4241,8 +4241,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 19, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4269,7 +4269,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.6140312103053436, + "speed": 1.61403, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4307,11 +4307,11 @@ }, { "x": 600, - "y": 313.963227414678 + "y": 313.96323 }, { "x": 560, - "y": 272.3491962043726 + "y": 272.3492 }, { "category": 1, @@ -4329,7 +4329,7 @@ }, { "x": 580, - "y": 292.3491962043726 + "y": 292.3492 }, { "x": 0, @@ -4337,7 +4337,7 @@ }, { "x": 580, - "y": 291.2471849789767 + "y": 291.24718 }, { "endCol": 12, @@ -4361,7 +4361,7 @@ }, { "x": 0, - "y": 1.1287849974754636 + "y": 1.12878 }, [ { @@ -4382,28 +4382,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 272.3491962043726 + "y": 272.3492 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 312.3491962043726 + "y": 312.3492 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 312.3491962043726 + "y": 312.3492 }, { "angle": 0, @@ -4431,8 +4431,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 20, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4459,7 +4459,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4771756394552389, + "speed": 1.47718, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4497,11 +4497,11 @@ }, { "x": 440, - "y": 352.8687007751279 + "y": 352.8687 }, { "x": 400, - "y": 311.3915251356726 + "y": 311.39153 }, { "category": 1, @@ -4519,7 +4519,7 @@ }, { "x": 420, - "y": 331.3915251356726 + "y": 331.39153 }, { "x": 0, @@ -4527,7 +4527,7 @@ }, { "x": 420, - "y": 330.3549042277475 + "y": 330.3549 }, { "endCol": 9, @@ -4551,7 +4551,7 @@ }, { "x": 0, - "y": 1.0819308963363028 + "y": 1.08193 }, [ { @@ -4572,28 +4572,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 351.3915251356726 + "y": 351.39153 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 351.3915251356726 + "y": 351.39153 }, { "angle": 0, @@ -4621,8 +4621,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 21, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4649,7 +4649,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4771756394552389, + "speed": 1.47718, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4687,11 +4687,11 @@ }, { "x": 480, - "y": 352.8687007751279 + "y": 352.8687 }, { "x": 440, - "y": 311.3915251356726 + "y": 311.39153 }, { "category": 1, @@ -4709,7 +4709,7 @@ }, { "x": 460, - "y": 331.3915251356726 + "y": 331.39153 }, { "x": 0, @@ -4717,7 +4717,7 @@ }, { "x": 460, - "y": 330.3549042277475 + "y": 330.3549 }, { "endCol": 10, @@ -4741,7 +4741,7 @@ }, { "x": 0, - "y": 1.0819308963363028 + "y": 1.08193 }, [ { @@ -4762,28 +4762,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 351.3915251356726 + "y": 351.39153 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 351.3915251356726 + "y": 351.39153 }, { "angle": 0, @@ -4811,8 +4811,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 22, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -4839,7 +4839,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4771756394552389, + "speed": 1.47718, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -4877,11 +4877,11 @@ }, { "x": 520, - "y": 352.8687007751279 + "y": 352.8687 }, { "x": 480, - "y": 311.3915251356726 + "y": 311.39153 }, { "category": 1, @@ -4899,7 +4899,7 @@ }, { "x": 500, - "y": 331.3915251356726 + "y": 331.39153 }, { "x": 0, @@ -4907,7 +4907,7 @@ }, { "x": 500, - "y": 330.3549042277475 + "y": 330.3549 }, { "endCol": 10, @@ -4931,7 +4931,7 @@ }, { "x": 0, - "y": 1.0819308963363028 + "y": 1.08193 }, [ { @@ -4952,28 +4952,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 351.3915251356726 + "y": 351.39153 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 351.3915251356726 + "y": 351.39153 }, { "angle": 0, @@ -5001,8 +5001,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 23, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5029,7 +5029,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4771756394552389, + "speed": 1.47718, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5067,11 +5067,11 @@ }, { "x": 560, - "y": 352.8687007751279 + "y": 352.8687 }, { "x": 520, - "y": 311.3915251356726 + "y": 311.39153 }, { "category": 1, @@ -5089,7 +5089,7 @@ }, { "x": 540, - "y": 331.3915251356726 + "y": 331.39153 }, { "x": 0, @@ -5097,7 +5097,7 @@ }, { "x": 540, - "y": 330.3549042277475 + "y": 330.3549 }, { "endCol": 11, @@ -5121,7 +5121,7 @@ }, { "x": 0, - "y": 1.0819308963363028 + "y": 1.08193 }, [ { @@ -5142,28 +5142,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 351.3915251356726 + "y": 351.39153 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 351.3915251356726 + "y": 351.39153 }, { "angle": 0, @@ -5191,8 +5191,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 24, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5219,7 +5219,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4771756394552389, + "speed": 1.47718, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5257,11 +5257,11 @@ }, { "x": 600, - "y": 352.8687007751279 + "y": 352.8687 }, { "x": 560, - "y": 311.3915251356726 + "y": 311.39153 }, { "category": 1, @@ -5279,7 +5279,7 @@ }, { "x": 580, - "y": 331.3915251356726 + "y": 331.39153 }, { "x": 0, @@ -5287,7 +5287,7 @@ }, { "x": 580, - "y": 330.3549042277475 + "y": 330.3549 }, { "endCol": 12, @@ -5311,7 +5311,7 @@ }, { "x": 0, - "y": 1.0819308963363028 + "y": 1.08193 }, [ { @@ -5332,28 +5332,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 311.3915251356726 + "y": 311.39153 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 351.3915251356726 + "y": 351.39153 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 351.3915251356726 + "y": 351.39153 }, { "angle": 0, @@ -5381,8 +5381,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 25, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5409,7 +5409,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4144256349320627, + "speed": 1.41443, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5447,11 +5447,11 @@ }, { "x": 440, - "y": 391.56757122841424 + "y": 391.56757 }, { "x": 400, - "y": 350.1531455934822 + "y": 350.15315 }, { "category": 1, @@ -5469,7 +5469,7 @@ }, { "x": 420, - "y": 370.1531455934822 + "y": 370.15315 }, { "x": 0, @@ -5477,7 +5477,7 @@ }, { "x": 420, - "y": 369.1505071768656 + "y": 369.15051 }, { "endCol": 9, @@ -5501,7 +5501,7 @@ }, { "x": 0, - "y": 0.9573284282054146 + "y": 0.95733 }, [ { @@ -5522,28 +5522,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 390.1531455934822 + "y": 390.15315 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 390.1531455934822 + "y": 390.15315 }, { "angle": 0, @@ -5571,8 +5571,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 26, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5599,7 +5599,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4144256349320627, + "speed": 1.41443, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5637,11 +5637,11 @@ }, { "x": 480, - "y": 391.56757122841424 + "y": 391.56757 }, { "x": 440, - "y": 350.1531455934822 + "y": 350.15315 }, { "category": 1, @@ -5659,7 +5659,7 @@ }, { "x": 460, - "y": 370.1531455934822 + "y": 370.15315 }, { "x": 0, @@ -5667,7 +5667,7 @@ }, { "x": 460, - "y": 369.1505071768656 + "y": 369.15051 }, { "endCol": 10, @@ -5691,7 +5691,7 @@ }, { "x": 0, - "y": 0.9573284282054146 + "y": 0.95733 }, [ { @@ -5712,28 +5712,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 390.1531455934822 + "y": 390.15315 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 390.1531455934822 + "y": 390.15315 }, { "angle": 0, @@ -5761,8 +5761,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 27, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5789,7 +5789,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4144256349320627, + "speed": 1.41443, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -5827,11 +5827,11 @@ }, { "x": 520, - "y": 391.56757122841424 + "y": 391.56757 }, { "x": 480, - "y": 350.1531455934822 + "y": 350.15315 }, { "category": 1, @@ -5849,7 +5849,7 @@ }, { "x": 500, - "y": 370.1531455934822 + "y": 370.15315 }, { "x": 0, @@ -5857,7 +5857,7 @@ }, { "x": 500, - "y": 369.1505071768656 + "y": 369.15051 }, { "endCol": 10, @@ -5881,7 +5881,7 @@ }, { "x": 0, - "y": 0.9573284282054146 + "y": 0.95733 }, [ { @@ -5902,28 +5902,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 390.1531455934822 + "y": 390.15315 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 390.1531455934822 + "y": 390.15315 }, { "angle": 0, @@ -5951,8 +5951,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 28, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -5979,7 +5979,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4144256349320627, + "speed": 1.41443, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6017,11 +6017,11 @@ }, { "x": 560, - "y": 391.56757122841424 + "y": 391.56757 }, { "x": 520, - "y": 350.1531455934822 + "y": 350.15315 }, { "category": 1, @@ -6039,7 +6039,7 @@ }, { "x": 540, - "y": 370.1531455934822 + "y": 370.15315 }, { "x": 0, @@ -6047,7 +6047,7 @@ }, { "x": 540, - "y": 369.1505071768656 + "y": 369.15051 }, { "endCol": 11, @@ -6071,7 +6071,7 @@ }, { "x": 0, - "y": 0.9573284282054146 + "y": 0.95733 }, [ { @@ -6092,28 +6092,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 390.1531455934822 + "y": 390.15315 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 390.1531455934822 + "y": 390.15315 }, { "angle": 0, @@ -6141,8 +6141,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 29, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6169,7 +6169,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.4144256349320627, + "speed": 1.41443, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6207,11 +6207,11 @@ }, { "x": 600, - "y": 391.56757122841424 + "y": 391.56757 }, { "x": 560, - "y": 350.1531455934822 + "y": 350.15315 }, { "category": 1, @@ -6229,7 +6229,7 @@ }, { "x": 580, - "y": 370.1531455934822 + "y": 370.15315 }, { "x": 0, @@ -6237,7 +6237,7 @@ }, { "x": 580, - "y": 369.1505071768656 + "y": 369.15051 }, { "endCol": 12, @@ -6261,7 +6261,7 @@ }, { "x": 0, - "y": 0.9573284282054146 + "y": 0.95733 }, [ { @@ -6282,28 +6282,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 350.1531455934822 + "y": 350.15315 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 390.1531455934822 + "y": 390.15315 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 390.1531455934822 + "y": 390.15315 }, { "angle": 0, @@ -6331,8 +6331,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 30, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6359,7 +6359,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2588149980577692, + "speed": 1.25881, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6397,11 +6397,11 @@ }, { "x": 440, - "y": 429.9341854463855 + "y": 429.93419 }, { "x": 400, - "y": 388.6753704483278 + "y": 388.67537 }, { "category": 1, @@ -6419,7 +6419,7 @@ }, { "x": 420, - "y": 408.6753704483278 + "y": 408.67537 }, { "x": 0, @@ -6427,7 +6427,7 @@ }, { "x": 420, - "y": 407.76667268364565 + "y": 407.76667 }, { "endCol": 9, @@ -6451,7 +6451,7 @@ }, { "x": 0, - "y": 0.8438568799842301 + "y": 0.84386 }, [ { @@ -6472,28 +6472,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 428.6753704483278 + "y": 428.67537 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 428.6753704483278 + "y": 428.67537 }, { "angle": 0, @@ -6521,8 +6521,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 31, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6549,7 +6549,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2588149980577692, + "speed": 1.25881, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6587,11 +6587,11 @@ }, { "x": 480, - "y": 429.9341854463855 + "y": 429.93419 }, { "x": 440, - "y": 388.6753704483278 + "y": 388.67537 }, { "category": 1, @@ -6609,7 +6609,7 @@ }, { "x": 460, - "y": 408.6753704483278 + "y": 408.67537 }, { "x": 0, @@ -6617,7 +6617,7 @@ }, { "x": 460, - "y": 407.76667268364565 + "y": 407.76667 }, { "endCol": 10, @@ -6641,7 +6641,7 @@ }, { "x": 0, - "y": 0.8438568799842301 + "y": 0.84386 }, [ { @@ -6662,28 +6662,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 428.6753704483278 + "y": 428.67537 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 428.6753704483278 + "y": 428.67537 }, { "angle": 0, @@ -6711,8 +6711,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 32, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6739,7 +6739,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2588149980577692, + "speed": 1.25881, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6777,11 +6777,11 @@ }, { "x": 520, - "y": 429.9341854463855 + "y": 429.93419 }, { "x": 480, - "y": 388.6753704483278 + "y": 388.67537 }, { "category": 1, @@ -6799,7 +6799,7 @@ }, { "x": 500, - "y": 408.6753704483278 + "y": 408.67537 }, { "x": 0, @@ -6807,7 +6807,7 @@ }, { "x": 500, - "y": 407.76667268364565 + "y": 407.76667 }, { "endCol": 10, @@ -6831,7 +6831,7 @@ }, { "x": 0, - "y": 0.8438568799842301 + "y": 0.84386 }, [ { @@ -6852,28 +6852,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 428.6753704483278 + "y": 428.67537 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 428.6753704483278 + "y": 428.67537 }, { "angle": 0, @@ -6901,8 +6901,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 33, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -6929,7 +6929,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2588149980577692, + "speed": 1.25881, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -6967,11 +6967,11 @@ }, { "x": 560, - "y": 429.9341854463855 + "y": 429.93419 }, { "x": 520, - "y": 388.6753704483278 + "y": 388.67537 }, { "category": 1, @@ -6989,7 +6989,7 @@ }, { "x": 540, - "y": 408.6753704483278 + "y": 408.67537 }, { "x": 0, @@ -6997,7 +6997,7 @@ }, { "x": 540, - "y": 407.76667268364565 + "y": 407.76667 }, { "endCol": 11, @@ -7021,7 +7021,7 @@ }, { "x": 0, - "y": 0.8438568799842301 + "y": 0.84386 }, [ { @@ -7042,28 +7042,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 428.6753704483278 + "y": 428.67537 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 428.6753704483278 + "y": 428.67537 }, { "angle": 0, @@ -7091,8 +7091,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 34, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7119,7 +7119,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.2588149980577692, + "speed": 1.25881, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7157,11 +7157,11 @@ }, { "x": 600, - "y": 429.9341854463855 + "y": 429.93419 }, { "x": 560, - "y": 388.6753704483278 + "y": 388.67537 }, { "category": 1, @@ -7179,7 +7179,7 @@ }, { "x": 580, - "y": 408.6753704483278 + "y": 408.67537 }, { "x": 0, @@ -7187,7 +7187,7 @@ }, { "x": 580, - "y": 407.76667268364565 + "y": 407.76667 }, { "endCol": 12, @@ -7211,7 +7211,7 @@ }, { "x": 0, - "y": 0.8438568799842301 + "y": 0.84386 }, [ { @@ -7232,28 +7232,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 388.6753704483278 + "y": 388.67537 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 428.6753704483278 + "y": 428.67537 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 428.6753704483278 + "y": 428.67537 }, { "angle": 0, @@ -7281,8 +7281,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 35, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7309,7 +7309,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0817916866392865, + "speed": 1.08179, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7347,11 +7347,11 @@ }, { "x": 440, - "y": 468.07042989761095 + "y": 468.07043 }, { "x": 400, - "y": 426.98863821097166 + "y": 426.98864 }, { "category": 1, @@ -7369,7 +7369,7 @@ }, { "x": 420, - "y": 446.98863821097166 + "y": 446.98864 }, { "x": 0, @@ -7377,7 +7377,7 @@ }, { "x": 420, - "y": 446.20903566247597 + "y": 446.20904 }, { "endCol": 9, @@ -7401,7 +7401,7 @@ }, { "x": 0, - "y": 0.6939301065108907 + "y": 0.69393 }, [ { @@ -7422,28 +7422,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 466.98863821097166 + "y": 466.98864 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 466.98863821097166 + "y": 466.98864 }, { "angle": 0, @@ -7471,8 +7471,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 36, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7499,7 +7499,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0817916866392865, + "speed": 1.08179, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7537,11 +7537,11 @@ }, { "x": 480, - "y": 468.07042989761095 + "y": 468.07043 }, { "x": 440, - "y": 426.98863821097166 + "y": 426.98864 }, { "category": 1, @@ -7559,7 +7559,7 @@ }, { "x": 460, - "y": 446.98863821097166 + "y": 446.98864 }, { "x": 0, @@ -7567,7 +7567,7 @@ }, { "x": 460, - "y": 446.20903566247597 + "y": 446.20904 }, { "endCol": 10, @@ -7591,7 +7591,7 @@ }, { "x": 0, - "y": 0.6939301065108907 + "y": 0.69393 }, [ { @@ -7612,28 +7612,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 466.98863821097166 + "y": 466.98864 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 466.98863821097166 + "y": 466.98864 }, { "angle": 0, @@ -7661,8 +7661,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 37, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7689,7 +7689,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0817916866392865, + "speed": 1.08179, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7727,11 +7727,11 @@ }, { "x": 520, - "y": 468.07042989761095 + "y": 468.07043 }, { "x": 480, - "y": 426.98863821097166 + "y": 426.98864 }, { "category": 1, @@ -7749,7 +7749,7 @@ }, { "x": 500, - "y": 446.98863821097166 + "y": 446.98864 }, { "x": 0, @@ -7757,7 +7757,7 @@ }, { "x": 500, - "y": 446.20903566247597 + "y": 446.20904 }, { "endCol": 10, @@ -7781,7 +7781,7 @@ }, { "x": 0, - "y": 0.6939301065108907 + "y": 0.69393 }, [ { @@ -7802,28 +7802,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 466.98863821097166 + "y": 466.98864 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 466.98863821097166 + "y": 466.98864 }, { "angle": 0, @@ -7851,8 +7851,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 38, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -7879,7 +7879,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0817916866392865, + "speed": 1.08179, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -7917,11 +7917,11 @@ }, { "x": 560, - "y": 468.07042989761095 + "y": 468.07043 }, { "x": 520, - "y": 426.98863821097166 + "y": 426.98864 }, { "category": 1, @@ -7939,7 +7939,7 @@ }, { "x": 540, - "y": 446.98863821097166 + "y": 446.98864 }, { "x": 0, @@ -7947,7 +7947,7 @@ }, { "x": 540, - "y": 446.20903566247597 + "y": 446.20904 }, { "endCol": 11, @@ -7971,7 +7971,7 @@ }, { "x": 0, - "y": 0.6939301065108907 + "y": 0.69393 }, [ { @@ -7992,28 +7992,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 466.98863821097166 + "y": 466.98864 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 466.98863821097166 + "y": 466.98864 }, { "angle": 0, @@ -8041,8 +8041,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 39, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8069,7 +8069,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 1.0817916866392865, + "speed": 1.08179, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8107,11 +8107,11 @@ }, { "x": 600, - "y": 468.07042989761095 + "y": 468.07043 }, { "x": 560, - "y": 426.98863821097166 + "y": 426.98864 }, { "category": 1, @@ -8129,7 +8129,7 @@ }, { "x": 580, - "y": 446.98863821097166 + "y": 446.98864 }, { "x": 0, @@ -8137,7 +8137,7 @@ }, { "x": 580, - "y": 446.20903566247597 + "y": 446.20904 }, { "endCol": 12, @@ -8161,7 +8161,7 @@ }, { "x": 0, - "y": 0.6939301065108907 + "y": 0.69393 }, [ { @@ -8182,28 +8182,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 426.98863821097166 + "y": 426.98864 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 466.98863821097166 + "y": 466.98864 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 466.98863821097166 + "y": 466.98864 }, { "angle": 0, @@ -8231,8 +8231,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 40, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8259,7 +8259,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8835776602881522, + "speed": 0.88358, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8297,11 +8297,11 @@ }, { "x": 440, - "y": 505.99728913928493 + "y": 505.99729 }, { "x": 400, - "y": 465.1137114789968 + "y": 465.11371 }, { "category": 1, @@ -8319,7 +8319,7 @@ }, { "x": 420, - "y": 485.1137114789968 + "y": 485.11371 }, { "x": 0, @@ -8327,7 +8327,7 @@ }, { "x": 420, - "y": 484.49906099759767 + "y": 484.49906 }, { "endCol": 9, @@ -8351,7 +8351,7 @@ }, { "x": 0, - "y": 0.5089443145832888 + "y": 0.50894 }, [ { @@ -8372,28 +8372,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 505.1137114789968 + "y": 505.11371 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 505.1137114789968 + "y": 505.11371 }, { "angle": 0, @@ -8421,8 +8421,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 41, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8449,7 +8449,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8835776602881522, + "speed": 0.88358, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8487,11 +8487,11 @@ }, { "x": 480, - "y": 505.99728913928493 + "y": 505.99729 }, { "x": 440, - "y": 465.1137114789968 + "y": 465.11371 }, { "category": 1, @@ -8509,7 +8509,7 @@ }, { "x": 460, - "y": 485.1137114789968 + "y": 485.11371 }, { "x": 0, @@ -8517,7 +8517,7 @@ }, { "x": 460, - "y": 484.49906099759767 + "y": 484.49906 }, { "endCol": 10, @@ -8541,7 +8541,7 @@ }, { "x": 0, - "y": 0.5089443145832888 + "y": 0.50894 }, [ { @@ -8562,28 +8562,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 505.1137114789968 + "y": 505.11371 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 505.1137114789968 + "y": 505.11371 }, { "angle": 0, @@ -8611,8 +8611,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 42, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8639,7 +8639,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8835776602881522, + "speed": 0.88358, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8677,11 +8677,11 @@ }, { "x": 520, - "y": 505.99728913928493 + "y": 505.99729 }, { "x": 480, - "y": 465.1137114789968 + "y": 465.11371 }, { "category": 1, @@ -8699,7 +8699,7 @@ }, { "x": 500, - "y": 485.1137114789968 + "y": 485.11371 }, { "x": 0, @@ -8707,7 +8707,7 @@ }, { "x": 500, - "y": 484.49906099759767 + "y": 484.49906 }, { "endCol": 10, @@ -8731,7 +8731,7 @@ }, { "x": 0, - "y": 0.5089443145832888 + "y": 0.50894 }, [ { @@ -8752,28 +8752,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 505.1137114789968 + "y": 505.11371 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 505.1137114789968 + "y": 505.11371 }, { "angle": 0, @@ -8801,8 +8801,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 43, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -8829,7 +8829,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8835776602881522, + "speed": 0.88358, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -8867,11 +8867,11 @@ }, { "x": 560, - "y": 505.99728913928493 + "y": 505.99729 }, { "x": 520, - "y": 465.1137114789968 + "y": 465.11371 }, { "category": 1, @@ -8889,7 +8889,7 @@ }, { "x": 540, - "y": 485.1137114789968 + "y": 485.11371 }, { "x": 0, @@ -8897,7 +8897,7 @@ }, { "x": 540, - "y": 484.49906099759767 + "y": 484.49906 }, { "endCol": 11, @@ -8921,7 +8921,7 @@ }, { "x": 0, - "y": 0.5089443145832888 + "y": 0.50894 }, [ { @@ -8942,28 +8942,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 505.1137114789968 + "y": 505.11371 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 505.1137114789968 + "y": 505.11371 }, { "angle": 0, @@ -8991,8 +8991,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 44, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9019,7 +9019,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.8835776602881522, + "speed": 0.88358, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9057,11 +9057,11 @@ }, { "x": 600, - "y": 505.99728913928493 + "y": 505.99729 }, { "x": 560, - "y": 465.1137114789968 + "y": 465.11371 }, { "category": 1, @@ -9079,7 +9079,7 @@ }, { "x": 580, - "y": 485.1137114789968 + "y": 485.11371 }, { "x": 0, @@ -9087,7 +9087,7 @@ }, { "x": 580, - "y": 484.49906099759767 + "y": 484.49906 }, { "endCol": 12, @@ -9111,7 +9111,7 @@ }, { "x": 0, - "y": 0.5089443145832888 + "y": 0.50894 }, [ { @@ -9132,28 +9132,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 465.1137114789968 + "y": 465.11371 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 505.1137114789968 + "y": 505.11371 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 505.1137114789968 + "y": 505.11371 }, { "angle": 0, @@ -9181,8 +9181,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 45, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9209,7 +9209,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6683698044662363, + "speed": 0.66837, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9247,11 +9247,11 @@ }, { "x": 440, - "y": 543.7365342391327 + "y": 543.73653 }, { "x": 400, - "y": 503.06816443466636 + "y": 503.06816 }, { "category": 1, @@ -9269,7 +9269,7 @@ }, { "x": 420, - "y": 523.0681644346664 + "y": 523.06816 }, { "x": 0, @@ -9277,7 +9277,7 @@ }, { "x": 420, - "y": 522.6517256848247 + "y": 522.65173 }, { "endCol": 9, @@ -9301,7 +9301,7 @@ }, { "x": 0, - "y": 0.2930979968527936 + "y": 0.2931 }, [ { @@ -9322,28 +9322,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 543.0681644346664 + "y": 543.06816 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 543.0681644346664 + "y": 543.06816 }, { "angle": 0, @@ -9371,8 +9371,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 46, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9399,7 +9399,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6683698044662363, + "speed": 0.66837, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9437,11 +9437,11 @@ }, { "x": 480, - "y": 543.7365342391327 + "y": 543.73653 }, { "x": 440, - "y": 503.06816443466636 + "y": 503.06816 }, { "category": 1, @@ -9459,7 +9459,7 @@ }, { "x": 460, - "y": 523.0681644346664 + "y": 523.06816 }, { "x": 0, @@ -9467,7 +9467,7 @@ }, { "x": 460, - "y": 522.6517256848247 + "y": 522.65173 }, { "endCol": 10, @@ -9491,7 +9491,7 @@ }, { "x": 0, - "y": 0.2930979968527936 + "y": 0.2931 }, [ { @@ -9512,28 +9512,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 543.0681644346664 + "y": 543.06816 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 543.0681644346664 + "y": 543.06816 }, { "angle": 0, @@ -9561,8 +9561,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 47, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9589,7 +9589,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6683698044662363, + "speed": 0.66837, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9627,11 +9627,11 @@ }, { "x": 520, - "y": 543.7365342391327 + "y": 543.73653 }, { "x": 480, - "y": 503.06816443466636 + "y": 503.06816 }, { "category": 1, @@ -9649,7 +9649,7 @@ }, { "x": 500, - "y": 523.0681644346664 + "y": 523.06816 }, { "x": 0, @@ -9657,7 +9657,7 @@ }, { "x": 500, - "y": 522.6517256848247 + "y": 522.65173 }, { "endCol": 10, @@ -9681,7 +9681,7 @@ }, { "x": 0, - "y": 0.2930979968527936 + "y": 0.2931 }, [ { @@ -9702,28 +9702,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 543.0681644346664 + "y": 543.06816 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 543.0681644346664 + "y": 543.06816 }, { "angle": 0, @@ -9751,8 +9751,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 48, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9779,7 +9779,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6683698044662363, + "speed": 0.66837, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -9817,11 +9817,11 @@ }, { "x": 560, - "y": 543.7365342391327 + "y": 543.73653 }, { "x": 520, - "y": 503.06816443466636 + "y": 503.06816 }, { "category": 1, @@ -9839,7 +9839,7 @@ }, { "x": 540, - "y": 523.0681644346664 + "y": 523.06816 }, { "x": 0, @@ -9847,7 +9847,7 @@ }, { "x": 540, - "y": 522.6517256848247 + "y": 522.65173 }, { "endCol": 11, @@ -9871,7 +9871,7 @@ }, { "x": 0, - "y": 0.2930979968527936 + "y": 0.2931 }, [ { @@ -9892,28 +9892,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 543.0681644346664 + "y": 543.06816 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 543.0681644346664 + "y": 543.06816 }, { "angle": 0, @@ -9941,8 +9941,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 49, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -9969,7 +9969,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.6683698044662363, + "speed": 0.66837, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10007,11 +10007,11 @@ }, { "x": 600, - "y": 543.7365342391327 + "y": 543.73653 }, { "x": 560, - "y": 503.06816443466636 + "y": 503.06816 }, { "category": 1, @@ -10029,7 +10029,7 @@ }, { "x": 580, - "y": 523.0681644346664 + "y": 523.06816 }, { "x": 0, @@ -10037,7 +10037,7 @@ }, { "x": 580, - "y": 522.6517256848247 + "y": 522.65173 }, { "endCol": 12, @@ -10061,7 +10061,7 @@ }, { "x": 0, - "y": 0.2930979968527936 + "y": 0.2931 }, [ { @@ -10082,28 +10082,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 503.06816443466636 + "y": 503.06816 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 543.0681644346664 + "y": 543.06816 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 543.0681644346664 + "y": 543.06816 }, { "angle": 0, @@ -10131,8 +10131,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 50, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10159,7 +10159,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.44785086013528214, + "speed": 0.44785, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10197,11 +10197,11 @@ }, { "x": 440, - "y": 581.3379239522501 + "y": 581.33792 }, { "x": 400, - "y": 540.8900730921148 + "y": 540.89007 }, { "category": 1, @@ -10219,7 +10219,7 @@ }, { "x": 420, - "y": 560.8900730921148 + "y": 560.89007 }, { "x": 0, @@ -10227,7 +10227,7 @@ }, { "x": 420, - "y": 560.6995346242295 + "y": 560.69953 }, { "endCol": 9, @@ -10251,7 +10251,7 @@ }, { "x": 0, - "y": 0.05379242926164807 + "y": 0.05379 }, [ { @@ -10272,28 +10272,28 @@ "index": 0, "isInternal": false, "x": 400, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 1, "isInternal": false, "x": 440, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 2, "isInternal": false, "x": 440, - "y": 580.8900730921148 + "y": 580.89007 }, { "body": null, "index": 3, "isInternal": false, "x": 400, - "y": 580.8900730921148 + "y": 580.89007 }, { "angle": 0, @@ -10321,8 +10321,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 51, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10349,7 +10349,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.44785086013528214, + "speed": 0.44785, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10387,11 +10387,11 @@ }, { "x": 480, - "y": 581.3379239522501 + "y": 581.33792 }, { "x": 440, - "y": 540.8900730921148 + "y": 540.89007 }, { "category": 1, @@ -10409,7 +10409,7 @@ }, { "x": 460, - "y": 560.8900730921148 + "y": 560.89007 }, { "x": 0, @@ -10417,7 +10417,7 @@ }, { "x": 460, - "y": 560.6995346242295 + "y": 560.69953 }, { "endCol": 10, @@ -10441,7 +10441,7 @@ }, { "x": 0, - "y": 0.05379242926164807 + "y": 0.05379 }, [ { @@ -10462,28 +10462,28 @@ "index": 0, "isInternal": false, "x": 440, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 1, "isInternal": false, "x": 480, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 2, "isInternal": false, "x": 480, - "y": 580.8900730921148 + "y": 580.89007 }, { "body": null, "index": 3, "isInternal": false, "x": 440, - "y": 580.8900730921148 + "y": 580.89007 }, { "angle": 0, @@ -10511,8 +10511,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 52, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10539,7 +10539,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.44785086013528214, + "speed": 0.44785, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10577,11 +10577,11 @@ }, { "x": 520, - "y": 581.3379239522501 + "y": 581.33792 }, { "x": 480, - "y": 540.8900730921148 + "y": 540.89007 }, { "category": 1, @@ -10599,7 +10599,7 @@ }, { "x": 500, - "y": 560.8900730921148 + "y": 560.89007 }, { "x": 0, @@ -10607,7 +10607,7 @@ }, { "x": 500, - "y": 560.6995346242295 + "y": 560.69953 }, { "endCol": 10, @@ -10631,7 +10631,7 @@ }, { "x": 0, - "y": 0.05379242926164807 + "y": 0.05379 }, [ { @@ -10652,28 +10652,28 @@ "index": 0, "isInternal": false, "x": 480, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 1, "isInternal": false, "x": 520, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 2, "isInternal": false, "x": 520, - "y": 580.8900730921148 + "y": 580.89007 }, { "body": null, "index": 3, "isInternal": false, "x": 480, - "y": 580.8900730921148 + "y": 580.89007 }, { "angle": 0, @@ -10701,8 +10701,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 53, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10729,7 +10729,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.44785086013528214, + "speed": 0.44785, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10767,11 +10767,11 @@ }, { "x": 560, - "y": 581.3379239522501 + "y": 581.33792 }, { "x": 520, - "y": 540.8900730921148 + "y": 540.89007 }, { "category": 1, @@ -10789,7 +10789,7 @@ }, { "x": 540, - "y": 560.8900730921148 + "y": 560.89007 }, { "x": 0, @@ -10797,7 +10797,7 @@ }, { "x": 540, - "y": 560.6995346242295 + "y": 560.69953 }, { "endCol": 11, @@ -10821,7 +10821,7 @@ }, { "x": 0, - "y": 0.05379242926164807 + "y": 0.05379 }, [ { @@ -10842,28 +10842,28 @@ "index": 0, "isInternal": false, "x": 520, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 1, "isInternal": false, "x": 560, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 2, "isInternal": false, "x": 560, - "y": 580.8900730921148 + "y": 580.89007 }, { "body": null, "index": 3, "isInternal": false, "x": 520, - "y": 580.8900730921148 + "y": 580.89007 }, { "angle": 0, @@ -10891,8 +10891,8 @@ "frictionAir": 0.01, "frictionStatic": 0.5, "id": 54, - "inertia": 1706.6666666666667, - "inverseInertia": 0.0005859375, + "inertia": 1706.66667, + "inverseInertia": 0.00059, "inverseMass": 0.625, "isSleeping": false, "isStatic": false, @@ -10919,7 +10919,7 @@ "sleepCounter": 0, "sleepThreshold": 60, "slop": 0.05, - "speed": 0.44785086013528214, + "speed": 0.44785, "timeScale": 1, "torque": 0, "totalContacts": 0, @@ -10957,11 +10957,11 @@ }, { "x": 600, - "y": 581.3379239522501 + "y": 581.33792 }, { "x": 560, - "y": 540.8900730921148 + "y": 540.89007 }, { "category": 1, @@ -10979,7 +10979,7 @@ }, { "x": 580, - "y": 560.8900730921148 + "y": 560.89007 }, { "x": 0, @@ -10987,7 +10987,7 @@ }, { "x": 580, - "y": 560.6995346242295 + "y": 560.69953 }, { "endCol": 12, @@ -11011,7 +11011,7 @@ }, { "x": 0, - "y": 0.05379242926164807 + "y": 0.05379 }, [ { @@ -11032,28 +11032,28 @@ "index": 0, "isInternal": false, "x": 560, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 1, "isInternal": false, "x": 600, - "y": 540.8900730921148 + "y": 540.89007 }, { "body": null, "index": 2, "isInternal": false, "x": 600, - "y": 580.8900730921148 + "y": 580.89007 }, { "body": null, "index": 3, "isInternal": false, "x": 560, - "y": 580.8900730921148 + "y": 580.89007 }, [], [], @@ -11091,12 +11091,12 @@ "visible": true }, { - "angleB": -2.999894364326032e-20, + "angleB": 0, "angularStiffness": 0, "bodyB": null, "id": 56, "label": "Constraint", - "length": 360.5551275463989, + "length": 360.55513, "pointA": { "#": 1258 }, From c1f71b993c8bc09a0abe702108e67fa29e7037e8 Mon Sep 17 00:00:00 2001 From: liabru Date: Wed, 5 Aug 2015 00:02:52 +0100 Subject: [PATCH 10/10] use different port for test server, fix test precision limiter --- Gruntfile.js | 5 ++--- package.json | 2 +- test/browser/TestDemo.js | 6 ++++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 6d217a06..4fccedc1 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -69,7 +69,7 @@ module.exports = function(grunt) { }, serve: { options: { - port: 9000 + port: 8000 } } }, @@ -139,8 +139,7 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-shell'); grunt.registerTask('default', ['test', 'build']); - grunt.registerTask('test', ['jshint', 'test:demo']); - grunt.registerTask('test:all', ['build:dev', 'connect:serve', 'test']); + grunt.registerTask('test', ['build:dev', 'connect:serve', 'jshint', 'test:demo']); grunt.registerTask('dev', ['build:dev', 'connect:watch', 'watch']); grunt.registerTask('test:demo', function() { diff --git a/package.json b/package.json index 51fe18d3..20b9a7b6 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ }, "scripts": { "dev": "npm install && grunt dev", - "test": "grunt test:all" + "test": "grunt test" }, "dependencies": {} } diff --git a/test/browser/TestDemo.js b/test/browser/TestDemo.js index df72418c..8603e45d 100644 --- a/test/browser/TestDemo.js +++ b/test/browser/TestDemo.js @@ -6,7 +6,7 @@ var system = require('system'); var demo, frames = 10, - testUrl = 'http://localhost:9000/demo/dev.html', + testUrl = 'http://localhost:8000/demo/dev.html', refsPath = 'test/browser/refs', diffsPath = 'test/browser/diffs'; @@ -71,6 +71,9 @@ var test = function(status) { return engine.world; }, demo, frames); + worldEnd = resurrect.resurrect(resurrect.stringify(worldEnd, precisionLimiter)); + worldStart = resurrect.resurrect(resurrect.stringify(worldStart, precisionLimiter)); + if (fs.exists(worldStartPath)) { var worldStartRef = resurrect.resurrect(fs.read(worldStartPath)); var worldStartDiff = compare(worldStartRef, worldStart); @@ -145,7 +148,6 @@ var test = function(status) { }; var precisionLimiter = function(key, value) { - // limit precision of floats if (typeof value === 'number') { return parseFloat(value.toFixed(5)); }